{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Automated RAG evaluation data generation" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "\n", "from langchain_community.llms import Ollama\n", "from langchain.document_loaders import DirectoryLoader\n", "from langchain.text_splitter import RecursiveCharacterTextSplitter\n", "from langchain_openai import ChatOpenAI, OpenAIEmbeddings\n", "from langchain_community.embeddings import OllamaEmbeddings\n", "\n", "\n", "from ragas.testset.generator import TestsetGenerator\n", "from ragas.testset.evolutions import simple, reasoning, multi_context" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "pd.set_option(\"display.max_colwidth\", None)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Load & chunk data to create document objects" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "loader = DirectoryLoader(\"./paul_graham\")\n", "text_splitter = RecursiveCharacterTextSplitter(chunk_size=1024, chunk_overlap=20)\n", "documents = loader.load_and_split(text_splitter)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "180" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(documents)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Add `filename` attribute to document \n", "The `filename` attribute in metadata is used to identify chunks belonging to the same document. For instance, pages belonging to the same research publication can be identified using the filename." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'lc': 1,\n", " 'type': 'constructor',\n", " 'id': ['langchain', 'schema', 'document', 'Document'],\n", " 'kwargs': {'page_content': 'How to Do Great Work\\n\\nJuly 2023\\n\\nIf you collected lists of techniques for doing great work in a lot of different fields, what would the intersection look like? I decided to find out by making it.\\n\\nPartly my goal was to create a guide that could be used by someone working in any field. But I was also curious about the shape of the intersection. And one thing this exercise shows is that it does have a definite shape; it\\'s not just a point labelled \"work hard.\"\\n\\nThe following recipe assumes you\\'re very ambitious.\\n\\nThe first step is to decide what to work on. The work you choose needs to have three qualities: it has to be something you have a natural aptitude for, that you have a deep interest in, and that offers scope to do great work.\\n\\nIn practice you don\\'t have to worry much about the third criterion. Ambitious people are if anything already too conservative about it. So all you need to do is find something you have an aptitude for and great interest in. [1]',\n", " 'metadata': {'source': 'paul_graham/how_to_do_great_things.txt',\n", " 'filename': 'paul_graham/how_to_do_great_things.txt'}}}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "for document in documents:\n", " document.metadata['filename'] = document.metadata['source']\n", "\n", "documents[0].to_json()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Setting up the Generator, Critic & embedding models" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Hello! How can I assist you today?\n", "Hello! It's nice to meet you. How can I help or chat with you today?\n", "Embedding dimension: 768\n" ] } ], "source": [ "generator_llm = Ollama(model=\"phi3\")\n", "critic_llm = Ollama(model=\"llama3\")\n", "\n", "ollama_emb = OllamaEmbeddings(\n", " model=\"nomic-embed-text\",\n", ")\n", "\n", "print(generator_llm.invoke('Say hello'))\n", "print(critic_llm.invoke('Say hello'))\n", "\n", "r2 = ollama_emb.embed_query(\n", " \"What is the second letter of Greek alphabet\"\n", ")\n", "\n", "print(f'Embedding dimension: {len(r2)}')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Create a test generator object" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "67875e9d504341109d8d10b3cabbe485", "version_major": 2, "version_minor": 0 }, "text/plain": [ "embedding nodes: 0%| | 0/360 [00:00)), docstore=InMemoryDocumentStore(splitter=, nodes=[Node(page_content='How to Do Great Work\\n\\nJuly 2023\\n\\nIf you collected lists of techniques for doing great work in a lot of different fields, what would the intersection look like? I decided to find out by making it.\\n\\nPartly my goal was to create a guide that could be used by someone working in any field. But I was also curious about the shape of the intersection. And one thing this exercise shows is that it does have a definite shape; it\\'s not just a point labelled \"work hard.\"\\n\\nThe following recipe assumes you\\'re very ambitious.\\n\\nThe first step is to decide what to work on. The work you choose needs to have three qualities: it has to be something you have a natural aptitude for, that you have a deep interest in, and that offers scope to do great work.\\n\\nIn practice you don\\'t have to worry much about the third criterion. Ambitious people are if anything already too conservative about it. So all you need to do is find something you have an aptitude for and great interest in. [1]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5aca51fd-22c4-45c3-b7b3-50ed488de038'), Node(page_content='That sounds straightforward, but it\\'s often quite difficult. When you\\'re young you don\\'t know what you\\'re good at or what different kinds of work are like. Some kinds of work you end up doing may not even exist yet. So while some people know what they want to do at 14, most have to figure it out.\\n\\nThe way to figure out what to work on is by working. If you\\'re not sure what to work on, guess. But pick something and get going. You\\'ll probably guess wrong some of the time, but that\\'s fine. It\\'s good to know about multiple things; some of the biggest discoveries come from noticing connections between different fields.\\n\\nDevelop a habit of working on your own projects. Don\\'t let \"work\" mean something other people tell you to do. If you do manage to do great work one day, it will probably be on a project of your own. It may be within some bigger project, but you\\'ll be driving your part of it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ea8d692d-2d93-41a6-b814-721f8a0eba80'), Node(page_content=\"What should your projects be? Whatever seems to you excitingly ambitious. As you grow older and your taste in projects evolves, exciting and important will converge. At 7 it may seem excitingly ambitious to build huge things out of Lego, then at 14 to teach yourself calculus, till at 21 you're starting to explore unanswered questions in physics. But always preserve excitingness.\\n\\nThere's a kind of excited curiosity that's both the engine and the rudder of great work. It will not only drive you, but if you let it have its way, will also show you what to work on.\\n\\nWhat are you excessively curious about — curious to a degree that would bore most other people? That's what you're looking for.\\n\\nOnce you've found something you're excessively interested in, the next step is to learn enough about it to get you to one of the frontiers of knowledge. Knowledge expands fractally, and from a distance its edges look smooth, but once you learn enough to get close to one, they turn out to be full of gaps.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='defa86f2-201a-493b-9e51-4c52b6d22f82'), Node(page_content=\"The next step is to notice them. This takes some skill, because your brain wants to ignore such gaps in order to make a simpler model of the world. Many discoveries have come from asking questions about things that everyone else took for granted. [2]\\n\\nIf the answers seem strange, so much the better. Great work often has a tincture of strangeness. You see this from painting to math. It would be affected to try to manufacture it, but if it appears, embrace it.\\n\\nBoldly chase outlier ideas, even if other people aren't interested in them — in fact, especially if they aren't. If you're excited about some possibility that everyone else ignores, and you have enough expertise to say precisely what they're all overlooking, that's as good a bet as you'll find. [3]\\n\\nFour steps: choose a field, learn enough to get to the frontier, notice gaps, explore promising ones. This is how practically everyone who's done great work has done it, from painters to physicists.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7a41dd22-0f90-4920-9659-427308ab5374'), Node(page_content=\"Steps two and four will require hard work. It may not be possible to prove that you have to work hard to do great things, but the empirical evidence is on the scale of the evidence for mortality. That's why it's essential to work on something you're deeply interested in. Interest will drive you to work harder than mere diligence ever could.\\n\\nThe three most powerful motives are curiosity, delight, and the desire to do something impressive. Sometimes they converge, and that combination is the most powerful of all.\\n\\nThe big prize is to discover a new fractal bud. You notice a crack in the surface of knowledge, pry it open, and there's a whole world inside.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='fbe6561c-75ae-48bf-8f1e-285cae90085e'), Node(page_content=\"Let's talk a little more about the complicated business of figuring out what to work on. The main reason it's hard is that you can't tell what most kinds of work are like except by doing them. Which means the four steps overlap: you may have to work at something for years before you know how much you like it or how good you are at it. And in the meantime you're not doing, and thus not learning about, most other kinds of work. So in the worst case you choose late based on very incomplete information. [4]\\n\\nThe nature of ambition exacerbates this problem. Ambition comes in two forms, one that precedes interest in the subject and one that grows out of it. Most people who do great work have a mix, and the more you have of the former, the harder it will be to decide what to do.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e1a13047-9806-4639-a2a6-9404cfd2b86b'), Node(page_content=\"The educational systems in most countries pretend it's easy. They expect you to commit to a field long before you could know what it's really like. And as a result an ambitious person on an optimal trajectory will often read to the system as an instance of breakage.\\n\\nIt would be better if they at least admitted it — if they admitted that the system not only can't do much to help you figure out what to work on, but is designed on the assumption that you'll somehow magically guess as a teenager. They don't tell you, but I will: when it comes to figuring out what to work on, you're on your own. Some people get lucky and do guess correctly, but the rest will find themselves scrambling diagonally across tracks laid down on the assumption that everyone does.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd2f5b64-32e8-42f0-ba14-4f22a0d37803'), Node(page_content=\"What should you do if you're young and ambitious but don't know what to work on? What you should not do is drift along passively, assuming the problem will solve itself. You need to take action. But there is no systematic procedure you can follow. When you read biographies of people who've done great work, it's remarkable how much luck is involved. They discover what to work on as a result of a chance meeting, or by reading a book they happen to pick up. So you need to make yourself a big target for luck, and the way to do that is to be curious. Try lots of things, meet lots of people, read lots of books, ask lots of questions. [5]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ed92cc5f-6350-4ac8-9097-605342ed58f1', wins=1), Node(page_content=\"When in doubt, optimize for interestingness. Fields change as you learn more about them. What mathematicians do, for example, is very different from what you do in high school math classes. So you need to give different types of work a chance to show you what they're like. But a field should become increasingly interesting as you learn more about it. If it doesn't, it's probably not for you.\\n\\nDon't worry if you find you're interested in different things than other people. The stranger your tastes in interestingness, the better. Strange tastes are often strong ones, and a strong taste for work means you'll be productive. And you're more likely to find new things if you're looking where few have looked before.\\n\\nOne sign that you're suited for some kind of work is when you like even the parts that other people find tedious or frightening.\\n\\nBut fields aren't people; you don't owe them any loyalty. If in the course of working on one thing you discover another that's more exciting, don't be afraid to switch.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dbdc198-e1f6-446b-9b95-bbd6be77492e'), Node(page_content=\"If you're making something for people, make sure it's something they actually want. The best way to do this is to make something you yourself want. Write the story you want to read; build the tool you want to use. Since your friends probably have similar interests, this will also get you your initial audience.\\n\\nThis should follow from the excitingness rule. Obviously the most exciting story to write will be the one you want to read. The reason I mention this case explicitly is that so many people get it wrong. Instead of making what they want, they try to make what some imaginary, more sophisticated audience wants. And once you go down that route, you're lost. [6]\\n\\nThere are a lot of forces that will lead you astray when you're trying to figure out what to work on. Pretentiousness, fashion, fear, money, politics, other people's wishes, eminent frauds. But if you stick to what you find genuinely interesting, you'll be proof against all of them. If you're interested, you're not astray.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebd76502-a324-4fe9-86db-58b4f1184052'), Node(page_content=\"Following your interests may sound like a rather passive strategy, but in practice it usually means following them past all sorts of obstacles. You usually have to risk rejection and failure. So it does take a good deal of boldness.\\n\\nBut while you need boldness, you don't usually need much planning. In most cases the recipe for doing great work is simply: work hard on excitingly ambitious projects, and something good will come of it. Instead of making a plan and then executing it, you just try to preserve certain invariants.\\n\\nThe trouble with planning is that it only works for achievements you can describe in advance. You can win a gold medal or get rich by deciding to as a child and then tenaciously pursuing that goal, but you can't discover natural selection that way.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa'), Node(page_content='I think for most people who want to do great work, the right strategy is not to plan too much. At each stage do whatever seems most interesting and gives you the best options for the future. I call this approach \"staying upwind.\" This is how most people who\\'ve done great work seem to have done it.\\n\\nEven when you\\'ve found something exciting to work on, working on it is not always straightforward. There will be times when some new idea makes you leap out of bed in the morning and get straight to work. But there will also be plenty of times when things aren\\'t like that.\\n\\nYou don\\'t just put out your sail and get blown forward by inspiration. There are headwinds and currents and hidden shoals. So there\\'s a technique to working, just as there is to sailing.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2f6da706-f47d-4336-b3f6-78ff254eae9c'), Node(page_content=\"For example, while you must work hard, it's possible to work too hard, and if you do that you'll find you get diminishing returns: fatigue will make you stupid, and eventually even damage your health. The point at which work yields diminishing returns depends on the type. Some of the hardest types you might only be able to do for four or five hours a day.\\n\\nIdeally those hours will be contiguous. To the extent you can, try to arrange your life so you have big blocks of time to work in. You'll shy away from hard tasks if you know you might be interrupted.\\n\\nIt will probably be harder to start working than to keep working. You'll often have to trick yourself to get over that initial threshold. Don't worry about this; it's the nature of work, not a flaw in your character. Work has a sort of activation energy, both per day and per project. And since this threshold is fake in the sense that it's higher than the energy required to keep going, it's ok to tell yourself a lie of corresponding magnitude to get over it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='29ad26ae-8a90-4634-aff2-b4f662e421e0'), Node(page_content='It\\'s usually a mistake to lie to yourself if you want to do great work, but this is one of the rare cases where it isn\\'t. When I\\'m reluctant to start work in the morning, I often trick myself by saying \"I\\'ll just read over what I\\'ve got so far.\" Five minutes later I\\'ve found something that seems mistaken or incomplete, and I\\'m off.\\n\\nSimilar techniques work for starting new projects. It\\'s ok to lie to yourself about how much work a project will entail, for example. Lots of great things began with someone saying \"How hard could it be?\"\\n\\nThis is one case where the young have an advantage. They\\'re more optimistic, and even though one of the sources of their optimism is ignorance, in this case ignorance can sometimes beat knowledge.\\n\\nTry to finish what you start, though, even if it turns out to be more work than you expected. Finishing things is not just an exercise in tidiness or self-discipline. In many projects a lot of the best work happens in what was meant to be the final stage.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd668cf0-3881-44b4-ad84-628203f14f72'), Node(page_content=\"Another permissible lie is to exaggerate the importance of what you're working on, at least in your own mind. If that helps you discover something new, it may turn out not to have been a lie after all. [7]\\n\\nSince there are two senses of starting work — per day and per project — there are also two forms of procrastination. Per-project procrastination is far the more dangerous. You put off starting that ambitious project from year to year because the time isn't quite right. When you're procrastinating in units of years, you can get a lot not done. [8]\\n\\nOne reason per-project procrastination is so dangerous is that it usually camouflages itself as work. You're not just sitting around doing nothing; you're working industriously on something else. So per-project procrastination doesn't set off the alarms that per-day procrastination does. You're too busy to notice it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='25f94528-87d2-4c1a-9f75-3670e66aefd6'), Node(page_content=\"The way to beat it is to stop occasionally and ask yourself: Am I working on what I most want to work on? When you're young it's ok if the answer is sometimes no, but this gets increasingly dangerous as you get older. [9]\\n\\nGreat work usually entails spending what would seem to most people an unreasonable amount of time on a problem. You can't think of this time as a cost, or it will seem too high. You have to find the work sufficiently engaging as it's happening.\\n\\nThere may be some jobs where you have to work diligently for years at things you hate before you get to the good part, but this is not how great work happens. Great work happens by focusing consistently on something you're genuinely interested in. When you pause to take stock, you're surprised how far you've come.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7fae8eb9-3a0f-4651-9d30-3973508310f4'), Node(page_content=\"The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='1f84089c-1ae3-4652-9f00-ba02164c24d3', wins=1), Node(page_content=\"Something that grows exponentially can become so valuable that it's worth making an extraordinary effort to get it started. But since we underrate exponential growth early on, this too is mostly done unconsciously: people push through the initial, unrewarding phase of learning something new because they know from experience that learning new things always takes an initial push, or they grow their audience one fan at a time because they have nothing better to do. If people consciously realized they could invest in exponential growth, many more would do it.\\n\\nWork doesn't just happen when you're trying to. There's a kind of undirected thinking you do when walking or taking a shower or lying in bed that can be very powerful. By letting your mind wander a little, you'll often solve problems you were unable to solve by frontal attack.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='857bbce1-c4c8-4095-b9ac-c988d50addfc'), Node(page_content=\"You have to be working hard in the normal way to benefit from this phenomenon, though. You can't just walk around daydreaming. The daydreaming has to be interleaved with deliberate work that feeds it questions. [10]\\n\\nEveryone knows to avoid distractions at work, but it's also important to avoid them in the other half of the cycle. When you let your mind wander, it wanders to whatever you care about most at that moment. So avoid the kind of distraction that pushes your work out of the top spot, or you'll waste this valuable type of thinking on the distraction instead. (Exception: Don't avoid love.)\\n\\nConsciously cultivate your taste in the work done in your field. Until you know which is the best and what makes it so, you don't know what you're aiming for.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f41b7677-9e6c-46e2-92fd-993606e5835e'), Node(page_content=\"And that is what you're aiming for, because if you don't try to be the best, you won't even be good. This observation has been made by so many people in so many different fields that it might be worth thinking about why it's true. It could be because ambition is a phenomenon where almost all the error is in one direction — where almost all the shells that miss the target miss by falling short. Or it could be because ambition to be the best is a qualitatively different thing from ambition to be good. Or maybe being good is simply too vague a standard. Probably all three are true. [11]\\n\\nFortunately there's a kind of economy of scale here. Though it might seem like you'd be taking on a heavy burden by trying to be the best, in practice you often end up net ahead. It's exciting, and also strangely liberating. It simplifies things. In some ways it's easier to try to be the best than to try merely to be good.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cb188bc-4106-4204-a6c7-ea3752f34543'), Node(page_content=\"One way to aim high is to try to make something that people will care about in a hundred years. Not because their opinions matter more than your contemporaries', but because something that still seems good in a hundred years is more likely to be genuinely good.\\n\\nDon't try to work in a distinctive style. Just try to do the best job you can; you won't be able to help doing it in a distinctive way.\\n\\nStyle is doing things in a distinctive way without trying to. Trying to is affectation.\\n\\nAffectation is in effect to pretend that someone other than you is doing the work. You adopt an impressive but fake persona, and while you're pleased with the impressiveness, the fakeness is what shows in the work. [12]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b2c1b809-e821-452c-a352-4b82293e0d98'), Node(page_content='The temptation to be someone else is greatest for the young. They often feel like nobodies. But you never need to worry about that problem, because it\\'s self-solving if you work on sufficiently ambitious projects. If you succeed at an ambitious project, you\\'re not a nobody; you\\'re the person who did it. So just do the work and your identity will take care of itself.\\n\\n\"Avoid affectation\" is a useful rule so far as it goes, but how would you express this idea positively? How would you say what to be, instead of what not to be? The best answer is earnest. If you\\'re earnest you avoid not just affectation but a whole set of similar vices.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='a49d877b-69b4-4171-880a-9931fd094a4d'), Node(page_content=\"The core of being earnest is being intellectually honest. We're taught as children to be honest as an unselfish virtue — as a kind of sacrifice. But in fact it's a source of power too. To see new ideas, you need an exceptionally sharp eye for the truth. You're trying to see more truth than others have seen so far. And how can you have a sharp eye for the truth if you're intellectually dishonest?\\n\\nOne way to avoid intellectual dishonesty is to maintain a slight positive pressure in the opposite direction. Be aggressively willing to admit that you're mistaken. Once you've admitted you were mistaken about something, you're free. Till then you have to carry it. [13]\\n\\nAnother more subtle component of earnestness is informality. Informality is much more important than its grammatically negative name implies. It's not merely the absence of something. It means focusing on what matters instead of what doesn't.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88e2775e-93a9-47b0-a512-2fb4080c590b', wins=2), Node(page_content='What formality and affectation have in common is that as well as doing the work, you\\'re trying to seem a certain way as you\\'re doing it. But any energy that goes into how you seem comes out of being good. That\\'s one reason nerds have an advantage in doing great work: they expend little effort on seeming anything. In fact that\\'s basically the definition of a nerd.\\n\\nNerds have a kind of innocent boldness that\\'s exactly what you need in doing great work. It\\'s not learned; it\\'s preserved from childhood. So hold onto it. Be the one who puts things out there rather than the one who sits back and offers sophisticated-sounding criticisms of them. \"It\\'s easy to criticize\" is true in the most literal sense, and the route to great work is never easy.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6546e3fd-326b-413e-a345-374e27163847'), Node(page_content=\"There may be some jobs where it's an advantage to be cynical and pessimistic, but if you want to do great work it's an advantage to be optimistic, even though that means you'll risk looking like a fool sometimes. There's an old tradition of doing the opposite. The Old Testament says it's better to keep quiet lest you look like a fool. But that's advice for seeming smart. If you actually want to discover new things, it's better to take the risk of telling people your ideas.\\n\\nSome people are naturally earnest, and with others it takes a conscious effort. Either kind of earnestness will suffice. But I doubt it would be possible to do great work without being earnest. It's so hard to do even if you are. You don't have enough margin for error to accommodate the distortions introduced by being affected, intellectually dishonest, orthodox, fashionable, or cool. [14]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='531a5c72-e191-4563-863a-a797751b1fc6', wins=1), Node(page_content=\"Great work is consistent not only with who did it, but with itself. It's usually all of a piece. So if you face a decision in the middle of working on something, ask which choice is more consistent.\\n\\nYou may have to throw things away and redo them. You won't necessarily have to, but you have to be willing to. And that can take some effort; when there's something you need to redo, status quo bias and laziness will combine to keep you in denial about it. To beat this ask: If I'd already made the change, would I want to revert to what I have now?\\n\\nHave the confidence to cut. Don't keep something that doesn't fit just because you're proud of it, or because it cost you a lot of effort.\\n\\nIndeed, in some kinds of work it's good to strip whatever you're doing to its essence. The result will be more concentrated; you'll understand it better; and you won't be able to lie to yourself about whether there's anything real there.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c333306a-d7e5-4c78-b4ce-bebcee166ce5'), Node(page_content='Mathematical elegance may sound like a mere metaphor, drawn from the arts. That\\'s what I thought when I first heard the term \"elegant\" applied to a proof. But now I suspect it\\'s conceptually prior — that the main ingredient in artistic elegance is mathematical elegance. At any rate it\\'s a useful standard well beyond math.\\n\\nElegance can be a long-term bet, though. Laborious solutions will often have more prestige in the short term. They cost a lot of effort and they\\'re hard to understand, both of which impress people, at least temporarily.\\n\\nWhereas some of the very best work will seem like it took comparatively little effort, because it was in a sense already there. It didn\\'t have to be built, just seen. It\\'s a very good sign when it\\'s hard to say whether you\\'re creating something or discovering it.\\n\\nWhen you\\'re doing work that could be seen as either creation or discovery, err on the side of discovery. Try thinking of yourself as a mere conduit through which the ideas take their natural shape.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c75308b1-0b08-4e09-a009-df856bef3945', wins=1), Node(page_content=\"(Strangely enough, one exception is the problem of choosing a problem to work on. This is usually seen as search, but in the best case it's more like creating something. In the best case you create the field in the process of exploring it.)\\n\\nSimilarly, if you're trying to build a powerful tool, make it gratuitously unrestrictive. A powerful tool almost by definition will be used in ways you didn't expect, so err on the side of eliminating restrictions, even if you don't know what the benefit will be.\\n\\nGreat work will often be tool-like in the sense of being something others build on. So it's a good sign if you're creating ideas that others could use, or exposing questions that others could answer. The best ideas have implications in many different areas.\\n\\nIf you express your ideas in the most general form, they'll be truer than you intended.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4f2c5ade-5e17-4002-a1a4-2187f5d88171'), Node(page_content='True by itself is not enough, of course. Great ideas have to be true and new. And it takes a certain amount of ability to see new ideas even once you\\'ve learned enough to get to one of the frontiers of knowledge.\\n\\nIn English we give this ability names like originality, creativity, and imagination. And it seems reasonable to give it a separate name, because it does seem to some extent a separate skill. It\\'s possible to have a great deal of ability in other respects — to have a great deal of what\\'s often called \"technical ability\" — and yet not have much of this.\\n\\nI\\'ve never liked the term \"creative process.\" It seems misleading. Originality isn\\'t a process, but a habit of mind. Original thinkers throw off new ideas about whatever they focus on, like an angle grinder throwing off sparks. They can\\'t help it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='599933be-8cc7-47b3-9079-771faeffc324'), Node(page_content=\"If the thing they're focused on is something they don't understand very well, these new ideas might not be good. One of the most original thinkers I know decided to focus on dating after he got divorced. He knew roughly as much about dating as the average 15 year old, and the results were spectacularly colorful. But to see originality separated from expertise like that made its nature all the more clear.\\n\\nI don't know if it's possible to cultivate originality, but there are definitely ways to make the most of however much you have. For example, you're much more likely to have original ideas when you're working on something. Original ideas don't come from trying to have original ideas. They come from trying to build or understand something slightly too difficult. [15]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='df268d9c-bb83-4274-adec-131a05765453'), Node(page_content=\"Talking or writing about the things you're interested in is a good way to generate new ideas. When you try to put ideas into words, a missing idea creates a sort of vacuum that draws it out of you. Indeed, there's a kind of thinking that can only be done by writing.\\n\\nChanging your context can help. If you visit a new place, you'll often find you have new ideas there. The journey itself often dislodges them. But you may not have to go far to get this benefit. Sometimes it's enough just to go for a walk. [16]\\n\\nIt also helps to travel in topic space. You'll have more new ideas if you explore lots of different topics, partly because it gives the angle grinder more surface area to work on, and partly because analogies are an especially fruitful source of new ideas.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7390fd94-b307-468e-9888-4ba2fc15eb38'), Node(page_content=\"Don't divide your attention evenly between many topics though, or you'll spread yourself too thin. You want to distribute it according to something more like a power law. [17] Be professionally curious about a few topics and idly curious about many more.\\n\\nCuriosity and originality are closely related. Curiosity feeds originality by giving it new things to work on. But the relationship is closer than that. Curiosity is itself a kind of originality; it's roughly to questions what originality is to answers. And since questions at their best are a big component of answers, curiosity at its best is a creative force.\\n\\nHaving new ideas is a strange game, because it usually consists of seeing things that were right under your nose. Once you've seen a new idea, it tends to seem obvious. Why did no one think of this before?\\n\\nWhen an idea seems simultaneously novel and obvious, it's probably a good one.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b'), Node(page_content=\"Seeing something obvious sounds easy. And yet empirically having new ideas is hard. What's the source of this apparent contradiction? It's that seeing the new idea usually requires you to change the way you look at the world. We see the world through models that both help and constrain us. When you fix a broken model, new ideas become obvious. But noticing and fixing a broken model is hard. That's how new ideas can be both obvious and yet hard to discover: they're easy to see after you do something hard.\\n\\nOne way to discover broken models is to be stricter than other people. Broken models of the world leave a trail of clues where they bash against reality. Most people don't want to see these clues. It would be an understatement to say that they're attached to their current model; it's what they think in; so they'll tend to ignore the trail of clues left by its breakage, however conspicuous it may seem in retrospect.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6f83f951-f81a-4afc-9dbc-91e43bbaea88', wins=1), Node(page_content=\"To find new ideas you have to seize on signs of breakage instead of looking away. That's what Einstein did. He was able to see the wild implications of Maxwell's equations not so much because he was looking for new ideas as because he was stricter.\\n\\nThe other thing you need is a willingness to break rules. Paradoxical as it sounds, if you want to fix your model of the world, it helps to be the sort of person who's comfortable breaking rules. From the point of view of the old model, which everyone including you initially shares, the new model usually breaks at least implicit rules.\\n\\nFew understand the degree of rule-breaking required, because new ideas seem much more conservative once they succeed. They seem perfectly reasonable once you're using the new model of the world they brought with them. But they didn't at the time; it took the greater part of a century for the heliocentric model to be generally accepted, even among astronomers, because it felt so wrong.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c9a8c206-a7da-456c-82a6-635ab33aa7b3'), Node(page_content=\"Indeed, if you think about it, a good new idea has to seem bad to most people, or someone would have already explored it. So what you're looking for is ideas that seem crazy, but the right kind of crazy. How do you recognize these? You can't with certainty. Often ideas that seem bad are bad. But ideas that are the right kind of crazy tend to be exciting; they're rich in implications; whereas ideas that are merely bad tend to be depressing.\\n\\nThere are two ways to be comfortable breaking rules: to enjoy breaking them, and to be indifferent to them. I call these two cases being aggressively and passively independent-minded.\\n\\nThe aggressively independent-minded are the naughty ones. Rules don't merely fail to stop them; breaking rules gives them additional energy. For this sort of person, delight at the sheer audacity of a project sometimes supplies enough activation energy to get it started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f5be2dd9-c85c-418c-a716-eb0b78880cae'), Node(page_content=\"The other way to break rules is not to care about them, or perhaps even to know they exist. This is why novices and outsiders often make new discoveries; their ignorance of a field's assumptions acts as a source of temporary passive independent-mindedness. Aspies also seem to have a kind of immunity to conventional beliefs. Several I know say that this helps them to have new ideas.\\n\\nStrictness plus rule-breaking sounds like a strange combination. In popular culture they're opposed. But popular culture has a broken model in this respect. It implicitly assumes that issues are trivial ones, and in trivial matters strictness and rule-breaking are opposed. But in questions that really matter, only rule-breakers can be truly strict.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2362524-ba22-4fb7-8c77-d289a352850b'), Node(page_content=\"An overlooked idea often doesn't lose till the semifinals. You do see it, subconsciously, but then another part of your subconscious shoots it down because it would be too weird, too risky, too much work, too controversial. This suggests an exciting possibility: if you could turn off such filters, you could see more new ideas.\\n\\nOne way to do that is to ask what would be good ideas for someone else to explore. Then your subconscious won't shoot them down to protect you.\\n\\nYou could also discover overlooked ideas by working in the other direction: by starting from what's obscuring them. Every cherished but mistaken principle is surrounded by a dead zone of valuable ideas that are unexplored because they contradict it.\\n\\nReligions are collections of cherished but mistaken principles. So anything that can be described either literally or metaphorically as a religion will have valuable unexplored ideas in its shadow. Copernicus and Darwin both made discoveries of this type. [18]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='018ff54f-2f81-408b-8b62-20443ab66da9'), Node(page_content=\"What are people in your field religious about, in the sense of being too attached to some principle that might not be as self-evident as they think? What becomes possible if you discard it?\\n\\nPeople show much more originality in solving problems than in deciding which problems to solve. Even the smartest can be surprisingly conservative when deciding what to work on. People who'd never dream of being fashionable in any other way get sucked into working on fashionable problems.\\n\\nOne reason people are more conservative when choosing problems than solutions is that problems are bigger bets. A problem could occupy you for years, while exploring a solution might only take days. But even so I think most people are too conservative. They're not merely responding to risk, but to fashion as well. Unfashionable problems are undervalued.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88ff37b8-75c7-48aa-9441-f8cba80464b1'), Node(page_content=\"One of the most interesting kinds of unfashionable problem is the problem that people think has been fully explored, but hasn't. Great work often takes something that already exists and shows its latent potential. Durer and Watt both did this. So if you're interested in a field that others think is tapped out, don't let their skepticism deter you. People are often wrong about this.\\n\\nWorking on an unfashionable problem can be very pleasing. There's no hype or hurry. Opportunists and critics are both occupied elsewhere. The existing work often has an old-school solidity. And there's a satisfying sense of economy in cultivating ideas that would otherwise be wasted.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='963e48ca-37ea-4002-b0b2-78fa521f3597'), Node(page_content='But the most common type of overlooked problem is not explicitly unfashionable in the sense of being out of fashion. It just doesn\\'t seem to matter as much as it actually does. How do you find these? By being self-indulgent — by letting your curiosity have its way, and tuning out, at least temporarily, the little voice in your head that says you should only be working on \"important\" problems.\\n\\nYou do need to work on important problems, but almost everyone is too conservative about what counts as one. And if there\\'s an important but overlooked problem in your neighborhood, it\\'s probably already on your subconscious radar screen. So try asking yourself: if you were going to take a break from \"serious\" work to work on something just because it would be really interesting, what would you do? The answer is probably more important than it seems.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='263b1659-4c96-4db0-a5b9-6e766bc7a928', wins=2), Node(page_content=\"Originality in choosing problems seems to matter even more than originality in solving them. That's what distinguishes the people who discover whole new fields. So what might seem to be merely the initial step — deciding what to work on — is in a sense the key to the whole game.\\n\\nFew grasp this. One of the biggest misconceptions about new ideas is about the ratio of question to answer in their composition. People think big ideas are answers, but often the real insight was in the question.\\n\\nPart of the reason we underrate questions is the way they're used in schools. In schools they tend to exist only briefly before being answered, like unstable particles. But a really good question can be much more than that. A really good question is a partial discovery. How do new species arise? Is the force that makes objects fall to earth the same as the one that keeps planets in their orbits? By even asking such questions you were already in excitingly novel territory.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f3a439f9-a726-4007-90d3-d7e4ac34c811'), Node(page_content=\"Unanswered questions can be uncomfortable things to carry around with you. But the more you're carrying, the greater the chance of noticing a solution — or perhaps even more excitingly, noticing that two unanswered questions are the same.\\n\\nSometimes you carry a question for a long time. Great work often comes from returning to a question you first noticed years before — in your childhood, even — and couldn't stop thinking about. People talk a lot about the importance of keeping your youthful dreams alive, but it's just as important to keep your youthful questions alive. [19]\\n\\nThis is one of the places where actual expertise differs most from the popular picture of it. In the popular picture, experts are certain. But actually the more puzzled you are, the better, so long as (a) the things you're puzzled about matter, and (b) no one else understands them either.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ac0c284a-93cc-4f20-8f95-644471bc59e2'), Node(page_content=\"Think about what's happening at the moment just before a new idea is discovered. Often someone with sufficient expertise is puzzled about something. Which means that originality consists partly of puzzlement — of confusion! You have to be comfortable enough with the world being full of puzzles that you're willing to see them, but not so comfortable that you don't want to solve them. [20]\\n\\nIt's a great thing to be rich in unanswered questions. And this is one of those situations where the rich get richer, because the best way to acquire new questions is to try answering existing ones. Questions don't just lead to answers, but also to more questions.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='43d899d8-1f03-4594-89b0-c8d98a5b6feb'), Node(page_content=\"The best questions grow in the answering. You notice a thread protruding from the current paradigm and try pulling on it, and it just gets longer and longer. So don't require a question to be obviously big before you try answering it. You can rarely predict that. It's hard enough even to notice the thread, let alone to predict how much will unravel if you pull on it.\\n\\nIt's better to be promiscuously curious — to pull a little bit on a lot of threads, and see what happens. Big things start small. The initial versions of big things were often just experiments, or side projects, or talks, which then grew into something bigger. So start lots of small things.\\n\\nBeing prolific is underrated. The more different things you try, the greater the chance of discovering something new. Understand, though, that trying lots of things will mean trying lots of things that don't work. You can't have a lot of good ideas without also having a lot of bad ones. [21]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='36d31bd1-f966-4b1b-97de-447c6e1a6413'), Node(page_content=\"Though it sounds more responsible to begin by studying everything that's been done before, you'll learn faster and have more fun by trying stuff. And you'll understand previous work better when you do look at it. So err on the side of starting. Which is easier when starting means starting small; those two ideas fit together like two puzzle pieces.\\n\\nHow do you get from starting small to doing something great? By making successive versions. Great things are almost always made in successive versions. You start with something small and evolve it, and the final version is both cleverer and more ambitious than anything you could have planned.\\n\\nIt's particularly useful to make successive versions when you're making something for people — to get an initial version in front of them quickly, and then evolve it based on their response.\\n\\nBegin by trying the simplest thing that could possibly work. Surprisingly often, it does. If it doesn't, this will at least get you started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2351f0d2-96fe-4a21-845f-11bf4e69dbd6'), Node(page_content='Don\\'t try to cram too much new stuff into any one version. There are names for doing this with the first version (taking too long to ship) and the second (the second system effect), but these are both merely instances of a more general principle.\\n\\nAn early version of a new project will sometimes be dismissed as a toy. It\\'s a good sign when people do this. That means it has everything a new idea needs except scale, and that tends to follow. [22]\\n\\nThe alternative to starting with something small and evolving it is to plan in advance what you\\'re going to do. And planning does usually seem the more responsible choice. It sounds more organized to say \"we\\'re going to do x and then y and then z\" than \"we\\'re going to try x and see what happens.\" And it is more organized; it just doesn\\'t work as well.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='55306b2a-343d-4e44-8b24-25e471975cd3'), Node(page_content=\"Planning per se isn't good. It's sometimes necessary, but it's a necessary evil — a response to unforgiving conditions. It's something you have to do because you're working with inflexible media, or because you need to coordinate the efforts of a lot of people. If you keep projects small and use flexible media, you don't have to plan as much, and your designs can evolve instead.\\n\\nTake as much risk as you can afford. In an efficient market, risk is proportionate to reward, so don't look for certainty, but for a bet with high expected value. If you're not failing occasionally, you're probably being too conservative.\\n\\nThough conservatism is usually associated with the old, it's the young who tend to make this mistake. Inexperience makes them fear risk, but it's when you're young that you can afford the most.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8776ddf1-1e65-458c-9cc2-63a7fe40f800'), Node(page_content=\"Even a project that fails can be valuable. In the process of working on it, you'll have crossed territory few others have seen, and encountered questions few others have asked. And there's probably no better source of questions than the ones you encounter in trying to do something slightly too hard.\\n\\nUse the advantages of youth when you have them, and the advantages of age once you have those. The advantages of youth are energy, time, optimism, and freedom. The advantages of age are knowledge, efficiency, money, and power. With effort you can acquire some of the latter when young and keep some of the former when old.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c325c260-d37e-4bb0-a8b8-7d2633f1c55e'), Node(page_content='The old also have the advantage of knowing which advantages they have. The young often have them without realizing it. The biggest is probably time. The young have no idea how rich they are in time. The best way to turn this time to advantage is to use it in slightly frivolous ways: to learn about something you don\\'t need to know about, just out of curiosity, or to try building something just because it would be cool, or to become freakishly good at something.\\n\\nThat \"slightly\" is an important qualification. Spend time lavishly when you\\'re young, but don\\'t simply waste it. There\\'s a big difference between doing something you worry might be a waste of time and doing something you know for sure will be. The former is at least a bet, and possibly a better one than you think. [23]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62'), Node(page_content=\"The most subtle advantage of youth, or more precisely of inexperience, is that you're seeing everything with fresh eyes. When your brain embraces an idea for the first time, sometimes the two don't fit together perfectly. Usually the problem is with your brain, but occasionally it's with the idea. A piece of it sticks out awkwardly and jabs you when you think about it. People who are used to the idea have learned to ignore it, but you have the opportunity not to. [24]\\n\\nSo when you're learning about something for the first time, pay attention to things that seem wrong or missing. You'll be tempted to ignore them, since there's a 99% chance the problem is with you. And you may have to set aside your misgivings temporarily to keep progressing. But don't forget about them. When you've gotten further into the subject, come back and check if they're still there. If they're still viable in the light of your present knowledge, they probably represent an undiscovered idea.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7'), Node(page_content=\"One of the most valuable kinds of knowledge you get from experience is to know what you don't have to worry about. The young know all the things that could matter, but not their relative importance. So they worry equally about everything, when they should worry much more about a few things and hardly at all about the rest.\\n\\nBut what you don't know is only half the problem with inexperience. The other half is what you do know that ain't so. You arrive at adulthood with your head full of nonsense — bad habits you've acquired and false things you've been taught — and you won't be able to do great work till you clear away at least the nonsense in the way of whatever type of work you want to do.\\n\\nMuch of the nonsense left in your head is left there by schools. We're so used to schools that we unconsciously treat going to school as identical with learning, but in fact schools have all sorts of strange qualities that warp our ideas about learning and thinking.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebcb18af-82cb-4367-bb8f-60de302902d8'), Node(page_content=\"For example, schools induce passivity. Since you were a small child, there was an authority at the front of the class telling all of you what you had to learn and then measuring whether you did. But neither classes nor tests are intrinsic to learning; they're just artifacts of the way schools are usually designed.\\n\\nThe sooner you overcome this passivity, the better. If you're still in school, try thinking of your education as your project, and your teachers as working for you rather than vice versa. That may seem a stretch, but it's not merely some weird thought experiment. It's the truth, economically, and in the best case it's the truth intellectually as well. The best teachers don't want to be your bosses. They'd prefer it if you pushed ahead, using them as a source of advice, rather than being pulled by them through the material.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='16440cdc-9b76-475c-bd3a-8e43dae9a434'), Node(page_content='Schools also give you a misleading impression of what work is like. In school they tell you what the problems are, and they\\'re almost always soluble using no more than you\\'ve been taught so far. In real life you have to figure out what the problems are, and you often don\\'t know if they\\'re soluble at all.\\n\\nBut perhaps the worst thing schools do to you is train you to win by hacking the test. You can\\'t do great work by doing that. You can\\'t trick God. So stop looking for that kind of shortcut. The way to beat the system is to focus on problems and solutions that others have overlooked, not to skimp on the work itself.\\n\\nDon\\'t think of yourself as dependent on some gatekeeper giving you a \"big break.\" Even if this were true, the best way to get it would be to focus on doing good work rather than chasing influential people.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c0f04-9f7c-4c8f-b6e9-23539e87f9a1'), Node(page_content=\"And don't take rejection by committees to heart. The qualities that impress admissions officers and prize committees are quite different from those required to do great work. The decisions of selection committees are only meaningful to the extent that they're part of a feedback loop, and very few are.\\n\\nPeople new to a field will often copy existing work. There's nothing inherently bad about that. There's no better way to learn how something works than by trying to reproduce it. Nor does copying necessarily make your work unoriginal. Originality is the presence of new ideas, not the absence of old ones.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c8acb19e-fb92-4e15-a633-895f474f5fd1'), Node(page_content='There\\'s a good way to copy and a bad way. If you\\'re going to copy something, do it openly instead of furtively, or worse still, unconsciously. This is what\\'s meant by the famously misattributed phrase \"Great artists steal.\" The really dangerous kind of copying, the kind that gives copying a bad name, is the kind that\\'s done without realizing it, because you\\'re nothing more than a train running on tracks laid down by someone else. But at the other extreme, copying can be a sign of superiority rather than subordination. [25]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5358b733-dcf2-4681-99ff-dd89b89c6718', wins=1), Node(page_content=\"In many fields it's almost inevitable that your early work will be in some sense based on other people's. Projects rarely arise in a vacuum. They're usually a reaction to previous work. When you're first starting out, you don't have any previous work; if you're going to react to something, it has to be someone else's. Once you're established, you can react to your own. But while the former gets called derivative and the latter doesn't, structurally the two cases are more similar than they seem.\\n\\nOddly enough, the very novelty of the most novel ideas sometimes makes them seem at first to be more derivative than they are. New discoveries often have to be conceived initially as variations of existing things, even by their discoverers, because there isn't yet the conceptual vocabulary to express them.\\n\\nThere are definitely some dangers to copying, though. One is that you'll tend to copy old things — things that were in their day at the frontier of knowledge, but no longer are.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f087a707-515e-4c49-9772-187a7075ed75'), Node(page_content=\"And when you do copy something, don't copy every feature of it. Some will make you ridiculous if you do. Don't copy the manner of an eminent 50 year old professor if you're 18, for example, or the idiom of a Renaissance poem hundreds of years later.\\n\\nSome of the features of things you admire are flaws they succeeded despite. Indeed, the features that are easiest to imitate are the most likely to be the flaws.\\n\\nThis is particularly true for behavior. Some talented people are jerks, and this sometimes makes it seem to the inexperienced that being a jerk is part of being talented. It isn't; being talented is merely how they get away with it.\\n\\nOne of the most powerful kinds of copying is to copy something from one field into another. History is so full of chance discoveries of this type that it's probably worth giving chance a hand by deliberately learning about other kinds of work. You can take ideas from quite distant fields if you let them be metaphors.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='daf67766-a44c-4c3b-bd77-dc6d1045d490'), Node(page_content=\"Negative examples can be as inspiring as positive ones. In fact you can sometimes learn more from things done badly than from things done well; sometimes it only becomes clear what's needed when it's missing.\\n\\nIf a lot of the best people in your field are collected in one place, it's usually a good idea to visit for a while. It will increase your ambition, and also, by showing you that these people are human, increase your self-confidence. [26]\\n\\nIf you're earnest you'll probably get a warmer welcome than you might expect. Most people who are very good at something are happy to talk about it with anyone who's genuinely interested. If they're really good at their work, then they probably have a hobbyist's interest in it, and hobbyists always want to talk about their hobbies.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='18f9beba-e410-4473-97ad-959d232cd009'), Node(page_content=\"It may take some effort to find the people who are really good, though. Doing great work has such prestige that in some places, particularly universities, there's a polite fiction that everyone is engaged in it. And that is far from true. People within universities can't say so openly, but the quality of the work being done in different departments varies immensely. Some departments have people doing great work; others have in the past; others never have.\\n\\nSeek out the best colleagues. There are a lot of projects that can't be done alone, and even if you're working on one that can be, it's good to have other people to encourage you and to bounce ideas off.\\n\\nColleagues don't just affect your work, though; they also affect you. So work with people you want to become like, because you will.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e4ed843d-1771-424a-91fc-5b74bcd2bc37'), Node(page_content=\"Quality is more important than quantity in colleagues. It's better to have one or two great ones than a building full of pretty good ones. In fact it's not merely better, but necessary, judging from history: the degree to which great work happens in clusters suggests that one's colleagues often make the difference between doing great work and not.\\n\\nHow do you know when you have sufficiently good colleagues? In my experience, when you do, you know. Which means if you're unsure, you probably don't. But it may be possible to give a more concrete answer than that. Here's an attempt: sufficiently good colleagues offer surprising insights. They can see and do things that you can't. So if you have a handful of colleagues good enough to keep you on your toes in this sense, you're probably over the threshold.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6c16f93b-75ea-4884-8959-b8d243716257'), Node(page_content=\"Most of us can benefit from collaborating with colleagues, but some projects require people on a larger scale, and starting one of those is not for everyone. If you want to run a project like that, you'll have to become a manager, and managing well takes aptitude and interest like any other kind of work. If you don't have them, there is no middle path: you must either force yourself to learn management as a second language, or avoid such projects. [27]\\n\\nHusband your morale. It's the basis of everything when you're working on ambitious projects. You have to nurture and protect it like a living organism.\\n\\nMorale starts with your view of life. You're more likely to do great work if you're an optimist, and more likely to if you think of yourself as lucky than if you think of yourself as a victim.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='41972435-555e-4d47-977a-b91de1f27a90'), Node(page_content=\"Indeed, work can to some extent protect you from your problems. If you choose work that's pure, its very difficulties will serve as a refuge from the difficulties of everyday life. If this is escapism, it's a very productive form of it, and one that has been used by some of the greatest minds in history.\\n\\nMorale compounds via work: high morale helps you do good work, which increases your morale and helps you do even better work. But this cycle also operates in the other direction: if you're not doing good work, that can demoralize you and make it even harder to. Since it matters so much for this cycle to be running in the right direction, it can be a good idea to switch to easier work when you're stuck, just so you start to get something done.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2821136-b037-4332-bbbd-de2fcbeae316', wins=1), Node(page_content='One of the biggest mistakes ambitious people make is to allow setbacks to destroy their morale all at once, like a balloon bursting. You can inoculate yourself against this by explicitly considering setbacks a part of your process. Solving hard problems always involves some backtracking.\\n\\nDoing great work is a depth-first search whose root node is the desire to. So \"If at first you don\\'t succeed, try, try again\" isn\\'t quite right. It should be: If at first you don\\'t succeed, either try again, or backtrack and then try again.\\n\\n\"Never give up\" is also not quite right. Obviously there are times when it\\'s the right choice to eject. A more precise version would be: Never let setbacks panic you into backtracking more than you need to. Corollary: Never abandon the root node.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4593e897-c389-4639-98bd-7c159e1b3eae'), Node(page_content=\"It's not necessarily a bad sign if work is a struggle, any more than it's a bad sign to be out of breath while running. It depends how fast you're running. So learn to distinguish good pain from bad. Good pain is a sign of effort; bad pain is a sign of damage.\\n\\nAn audience is a critical component of morale. If you're a scholar, your audience may be your peers; in the arts, it may be an audience in the traditional sense. Either way it doesn't need to be big. The value of an audience doesn't grow anything like linearly with its size. Which is bad news if you're famous, but good news if you're just starting out, because it means a small but dedicated audience can be enough to sustain you. If a handful of people genuinely love what you're doing, that's enough.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b00c903d-199c-47b5-9884-f47a81649533'), Node(page_content=\"To the extent you can, avoid letting intermediaries come between you and your audience. In some types of work this is inevitable, but it's so liberating to escape it that you might be better off switching to an adjacent type if that will let you go direct. [28]\\n\\nThe people you spend time with will also have a big effect on your morale. You'll find there are some who increase your energy and others who decrease it, and the effect someone has is not always what you'd expect. Seek out the people who increase your energy and avoid those who decrease it. Though of course if there's someone you need to take care of, that takes precedence.\\n\\nDon't marry someone who doesn't understand that you need to work, or sees your work as competition for your attention. If you're ambitious, you need to work; it's almost like a medical condition; so someone who won't let you work either doesn't understand you, or does and doesn't care.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='53911edb-1d5b-42d8-8f83-00572631b56a', wins=1), Node(page_content=\"Ultimately morale is physical. You think with your body, so it's important to take care of it. That means exercising regularly, eating and sleeping well, and avoiding the more dangerous kinds of drugs. Running and walking are particularly good forms of exercise because they're good for thinking. [29]\\n\\nPeople who do great work are not necessarily happier than everyone else, but they're happier than they'd be if they didn't. In fact, if you're smart and ambitious, it's dangerous not to be productive. People who are smart and ambitious but don't achieve much tend to become bitter.\\n\\nIt's ok to want to impress other people, but choose the right people. The opinion of people you respect is signal. Fame, which is the opinion of a much larger group you might or might not respect, just adds noise.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cc70f37-da0e-44f9-a413-70a2f96e884a'), Node(page_content='The prestige of a type of work is at best a trailing indicator and sometimes completely mistaken. If you do anything well enough, you\\'ll make it prestigious. So the question to ask about a type of work is not how much prestige it has, but how well it could be done.\\n\\nCompetition can be an effective motivator, but don\\'t let it choose the problem for you; don\\'t let yourself get drawn into chasing something just because others are. In fact, don\\'t let competitors make you do anything much more specific than work harder.\\n\\nCuriosity is the best guide. Your curiosity never lies, and it knows more than you do about what\\'s worth paying attention to.\\n\\nNotice how often that word has come up. If you asked an oracle the secret to doing great work and the oracle replied with a single word, my bet would be on \"curiosity.\"\\n\\nThat doesn\\'t translate directly to advice. It\\'s not enough just to be curious, and you can\\'t command curiosity anyway. But you can nurture it and let it drive you.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c6cc7-ee83-4bdb-a16f-fb64224418df'), Node(page_content=\"Curiosity is the key to all four steps in doing great work: it will choose the field for you, get you to the frontier, cause you to notice the gaps in it, and drive you to explore them. The whole process is a kind of dance with curiosity.\\n\\nBelieve it or not, I tried to make this essay as short as I could. But its length at least means it acts as a filter. If you made it this far, you must be interested in doing great work. And if so you're already further along than you might realize, because the set of people willing to want to is small.\\n\\nThe factors in doing great work are factors in the literal, mathematical sense, and they are: ability, interest, effort, and luck. Luck by definition you can't do anything about, so we can ignore that. And we can assume effort, if you do in fact want to do great work. So the problem boils down to ability and interest. Can you find a kind of work where your ability and interest will combine to yield an explosion of new ideas?\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='518b39aa-59f8-4cb7-9c23-4ac7197f8250', wins=1), Node(page_content=\"Here there are grounds for optimism. There are so many different ways to do great work, and even more that are still undiscovered. Out of all those different types of work, the one you're most suited for is probably a pretty close match. Probably a comically close match. It's just a question of finding it, and how far into it your ability and interest can take you. And you can only answer that by trying.\\n\\nMany more people could try to do great work than do. What holds them back is a combination of modesty and fear. It seems presumptuous to try to be Newton or Shakespeare. It also seems hard; surely if you tried something like that, you'd fail. Presumably the calculation is rarely explicit. Few people consciously decide not to try to do great work. But that's what's going on subconsciously; they shy away from the question.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4bd8c91f-16e5-4aab-a361-b2e98eee6b10'), Node(page_content=\"So I'm going to pull a sneaky trick on you. Do you want to do great work, or not? Now you have to decide consciously. Sorry about that. I wouldn't have done it to a general audience. But we already know you're interested.\\n\\nDon't worry about being presumptuous. You don't have to tell anyone. And if it's too hard and you fail, so what? Lots of people have worse problems than that. In fact you'll be lucky if it's the worst problem you have.\\n\\nYes, you'll have to work hard. But again, lots of people have to work hard. And if you're working on something you find very interesting, which you necessarily will if you're on the right path, the work will probably feel less burdensome than a lot of your peers'.\\n\\nThe discoveries are out there, waiting to be made. Why not by you?\\n\\nNotes\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5098c334-acd7-4051-8409-88ae99b130c4'), Node(page_content='Notes\\n\\n[1] I don\\'t think you could give a precise definition of what counts as great work. Doing great work means doing something important so well that you expand people\\'s ideas of what\\'s possible. But there\\'s no threshold for importance. It\\'s a matter of degree, and often hard to judge at the time anyway. So I\\'d rather people focused on developing their interests rather than worrying about whether they\\'re important or not. Just try to do something amazing, and leave it to future generations to say if you succeeded.\\n\\n[2] A lot of standup comedy is based on noticing anomalies in everyday life. \"Did you ever notice...?\" New ideas come from doing this about nontrivial things. Which may help explain why people\\'s reaction to a new idea is often the first half of laughing: Ha!\\n\\n[3] That second qualifier is critical. If you\\'re excited about something most authorities discount, but you can\\'t give a more precise explanation than \"they don\\'t get it,\" then you\\'re starting to drift into the territory of cranks.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='85fcc3b5-ead2-41ce-bd52-c45b5555894f'), Node(page_content=\"[4] Finding something to work on is not simply a matter of finding a match between the current version of you and a list of known problems. You'll often have to coevolve with the problem. That's why it can sometimes be so hard to figure out what to work on. The search space is huge. It's the cartesian product of all possible types of work, both known and yet to be discovered, and all possible future versions of you.\\n\\nThere's no way you could search this whole space, so you have to rely on heuristics to generate promising paths through it and hope the best matches will be clustered. Which they will not always be; different types of work have been collected together as much by accidents of history as by the intrinsic similarities between them.\\n\\n[5] There are many reasons curious people are more likely to do great work, but one of the more subtle is that, by casting a wide net, they're more likely to find the right thing to work on in the first place.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2e5f7714-e0a8-4be5-ab6f-433a316b1c41'), Node(page_content=\"[6] It can also be dangerous to make things for an audience you feel is less sophisticated than you, if that causes you to talk down to them. You can make a lot of money doing that, if you do it in a sufficiently cynical way, but it's not the route to great work. Not that anyone using this m.o. would care.\\n\\n[7] This idea I learned from Hardy's A Mathematician's Apology, which I recommend to anyone ambitious to do great work, in any field.\\n\\n[8] Just as we overestimate what we can do in a day and underestimate what we can do over several years, we overestimate the damage done by procrastinating for a day and underestimate the damage done by procrastinating for several years.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f43e912a-048c-44f0-8a64-9b58b1fa4f58'), Node(page_content=\"[9] You can't usually get paid for doing exactly what you want, especially early on. There are two options: get paid for doing work close to what you want and hope to push it closer, or get paid for doing something else entirely and do your own projects on the side. Both can work, but both have drawbacks: in the first approach your work is compromised by default, and in the second you have to fight to get time to do it.\\n\\n[10] If you set your life up right, it will deliver the focus-relax cycle automatically. The perfect setup is an office you work in and that you walk to and from.\\n\\n[11] There may be some very unworldly people who do great work without consciously trying to. If you want to expand this rule to cover that case, it becomes: Don't try to be anything except the best.\\n\\n[12] This gets more complicated in work like acting, where the goal is to adopt a fake persona. But even here it's possible to be affected. Perhaps the rule in such fields should be to avoid unintentional affectation.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='af0eafcf-c1b7-46cd-b1b2-223f4aed0984'), Node(page_content='[13] It\\'s safe to have beliefs that you treat as unquestionable if and only if they\\'re also unfalsifiable. For example, it\\'s safe to have the principle that everyone should be treated equally under the law, because a sentence with a \"should\" in it isn\\'t really a statement about the world and is therefore hard to disprove. And if there\\'s no evidence that could disprove one of your principles, there can\\'t be any facts you\\'d need to ignore in order to preserve it.\\n\\n[14] Affectation is easier to cure than intellectual dishonesty. Affectation is often a shortcoming of the young that burns off in time, while intellectual dishonesty is more of a character flaw.\\n\\n[15] Obviously you don\\'t have to be working at the exact moment you have the idea, but you\\'ll probably have been working fairly recently.\\n\\n[16] Some say psychoactive drugs have a similar effect. I\\'m skeptical, but also almost totally ignorant of their effects.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6afc67d5-0fd7-48a8-829f-201370a6be57'), Node(page_content=\"[17] For example you might give the nth most important topic (m-1)/m^n of your attention, for some m > 1. You couldn't allocate your attention so precisely, of course, but this at least gives an idea of a reasonable distribution.\\n\\n[18] The principles defining a religion have to be mistaken. Otherwise anyone might adopt them, and there would be nothing to distinguish the adherents of the religion from everyone else.\\n\\n[19] It might be a good exercise to try writing down a list of questions you wondered about in your youth. You might find you're now in a position to do something about some of them.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='875a91c1-a9d8-4c9b-a094-4e865ec91c81'), Node(page_content='[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they\\'re generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling\\'s \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you\\'re wasting time is to ask if you\\'re producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don\\'t.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dc1d1d4-e75c-4e42-9567-9d7f2e048319', wins=1), Node(page_content=\"[24] Another related advantage is that if you haven't said anything publicly yet, you won't be biased toward evidence that supports your earlier conclusions. With sufficient integrity you could achieve eternal youth in this respect, but few manage to. For most people, having previously published opinions has an effect similar to ideology, just in quantity 1.\\n\\n[25] In the early 1630s Daniel Mytens made a painting of Henrietta Maria handing a laurel wreath to Charles I. Van Dyck then painted his own version to show how much better he was.\\n\\n[26] I'm being deliberately vague about what a place is. As of this writing, being in the same physical place has advantages that are hard to duplicate, but that could change.\\n\\n[27] This is false when the work the other people have to do is very constrained, as with SETI@home or Bitcoin. It may be possible to expand the area in which it's false by defining similarly restricted protocols with more freedom of action in the nodes.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2cbfecc-dc00-438a-ab59-b82bfd683a65'), Node(page_content='[28] Corollary: Building something that enables people to go around intermediaries and engage directly with their audience is probably a good idea.\\n\\n[29] It may be helpful always to walk or run the same route, because that frees attention for thinking. It feels that way to me, and there is some historical evidence for it.\\n\\nThanks to Trevor Blackwell, Daniel Gackle, Pam Graham, Tom Howard, Patrick Hsu, Steve Huffman, Jessica Livingston, Henry Lloyd-Baker, Bob Metcalfe, Ben Miller, Robert Morris, Michael Nielsen, Courtenay Pipkin, Joris Poort, Mieke Roos, Rajat Suri, Harj Taggar, Garry Tan, and my younger son for suggestions and for reading drafts.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='d64ee58e-fa36-495b-8ef7-df70c6375e80'), Node(page_content='What I Worked On\\n\\nFebruary 2021\\n\\nBefore college the two main things I worked on, outside of school, were writing and programming. I didn\\'t write essays. I wrote what beginning writers were supposed to write then, and probably still are: short stories. My stories were awful. They had hardly any plot, just characters with strong feelings, which I imagined made them deep.\\n\\nThe first programs I tried writing were on the IBM 1401 that our school district used for what was then called \"data processing.\" This was in 9th grade, so I was 13 or 14. The school district\\'s 1401 happened to be in the basement of our junior high school, and my friend Rich Draves and I got permission to use it. It was like a mini Bond villain\\'s lair down there, with all these alien-looking machines — CPU, disk drives, printer, card reader — sitting up on a raised floor under bright fluorescent lights.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8941624d-30a5-4c1f-936b-72b3c0e8feb1', wins=1), Node(page_content='The language we used was an early version of Fortran. You had to type programs on punch cards, then stack them in the card reader and press a button to load the program into memory and run it. The result would ordinarily be to print something on the spectacularly loud printer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2ddb6920-17bc-405e-9cbe-5b2852d92feb'), Node(page_content=\"I was puzzled by the 1401. I couldn't figure out what to do with it. And in retrospect there's not much I could have done with it. The only form of input to programs was data stored on punched cards, and I didn't have any data stored on punched cards. The only other option was to do things that didn't rely on any input, like calculate approximations of pi, but I didn't know enough math to do anything interesting of that type. So I'm not surprised I can't remember any programs I wrote, because they can't have done much. My clearest memory is of the moment I learned it was possible for programs not to terminate, when one of mine didn't. On a machine without time-sharing, this was a social as well as a technical error, as the data center manager's expression made clear.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2cae8c4f-333e-4615-8808-6e9ab6f79097', wins=1), Node(page_content='With microcomputers, everything changed. Now you could have a computer sitting right in front of you, on a desk, that could respond to your keystrokes as it was running instead of just churning through a stack of punch cards and then stopping. [1]\\n\\nThe first of my friends to get a microcomputer built it himself. It was sold as a kit by Heathkit. I remember vividly how impressed and envious I felt watching him sitting in front of it, typing programs right into the computer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d0f65811-4213-4ff8-bf54-07ee86007f73'), Node(page_content=\"Computers were expensive in those days and it took me years of nagging before I convinced my father to buy one, a TRS-80, in about 1980. The gold standard then was the Apple II, but a TRS-80 was good enough. This was when I really started programming. I wrote simple games, a program to predict how high my model rockets would fly, and a word processor that my father used to write at least one book. There was only room in memory for about 2 pages of text, so he'd write 2 pages at a time and then print them out, but it was a lot better than a typewriter.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0cc36135-748a-47b8-9a05-cf6d0a8ea13b', wins=1), Node(page_content=\"Though I liked programming, I didn't plan to study it in college. In college I was going to study philosophy, which sounded much more powerful. It seemed, to my naive high school self, to be the study of the ultimate truths, compared to which the things studied in other fields would be mere domain knowledge. What I discovered when I got to college was that the other fields took up so much of the space of ideas that there wasn't much left for these supposed ultimate truths. All that seemed left for philosophy were edge cases that people in other fields felt could safely be ignored.\\n\\nI couldn't have put this into words when I was 18. All I knew at the time was that I kept taking philosophy courses and they kept being boring. So I decided to switch to AI.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8ced309b-74f2-4240-917b-e28b30dc433b'), Node(page_content=\"AI was in the air in the mid 1980s, but there were two things especially that made me want to work on it: a novel by Heinlein called The Moon is a Harsh Mistress, which featured an intelligent computer called Mike, and a PBS documentary that showed Terry Winograd using SHRDLU. I haven't tried rereading The Moon is a Harsh Mistress, so I don't know how well it has aged, but when I read it I was drawn entirely into its world. It seemed only a matter of time before we'd have Mike, and when I saw Winograd using SHRDLU, it seemed like that time would be a few years at most. All you had to do was teach SHRDLU more words.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01436d32-d282-4de9-9b73-7faec7d1b772'), Node(page_content=\"There weren't any classes in AI at Cornell then, not even graduate classes, so I started trying to teach myself. Which meant learning Lisp, since in those days Lisp was regarded as the language of AI. The commonly used programming languages then were pretty primitive, and programmers' ideas correspondingly so. The default language at Cornell was a Pascal-like language called PL/I, and the situation was similar elsewhere. Learning Lisp expanded my concept of a program so fast that it was years before I started to have a sense of where the new limits were. This was more like it; this was what I had expected college to do. It wasn't happening in a class, like it was supposed to, but that was ok. For the next couple years I was on a roll. I knew what I was going to do.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c7dd7bbf-08ac-408f-b975-8274b58b91ca'), Node(page_content='For my undergraduate thesis, I reverse-engineered SHRDLU. My God did I love working on that program. It was a pleasing bit of code, but what made it even more exciting was my belief — hard to imagine now, but not unique in 1985 — that it was already climbing the lower slopes of intelligence.\\n\\nI had gotten into a program at Cornell that didn\\'t make you choose a major. You could take whatever classes you liked, and choose whatever you liked to put on your degree. I of course chose \"Artificial Intelligence.\" When I got the actual physical diploma, I was dismayed to find that the quotes had been included, which made them read as scare-quotes. At the time this bothered me, but now it seems amusingly accurate, for reasons I was about to discover.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d7d640a0-9b5e-4e18-a7fe-7655b8ae5979'), Node(page_content='I applied to 3 grad schools: MIT and Yale, which were renowned for AI at the time, and Harvard, which I\\'d visited because Rich Draves went there, and was also home to Bill Woods, who\\'d invented the type of parser I used in my SHRDLU clone. Only Harvard accepted me, so that was where I went.\\n\\nI don\\'t remember the moment it happened, or if there even was a specific moment, but during the first year of grad school I realized that AI, as practiced at the time, was a hoax. By which I mean the sort of AI in which a program that\\'s told \"the dog is sitting on the chair\" translates this into some formal representation and adds it to the list of things it knows.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='90c72e6c-8c79-4feb-86ae-f8f685cf5e7c'), Node(page_content=\"What these programs really showed was that there's a subset of natural language that's a formal language. But a very proper subset. It was clear that there was an unbridgeable gap between what they could do and actually understanding natural language. It was not, in fact, simply a matter of teaching SHRDLU more words. That whole way of doing AI, with explicit data structures representing concepts, was not going to work. Its brokenness did, as so often happens, generate a lot of opportunities to write papers about various band-aids that could be applied to it, but it was never going to get us Mike.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d5b018a6-f262-4758-b059-4da34cd51a58'), Node(page_content=\"So I looked around to see what I could salvage from the wreckage of my plans, and there was Lisp. I knew from experience that Lisp was interesting for its own sake and not just for its association with AI, even though that was the main reason people cared about it at the time. So I decided to focus on Lisp. In fact, I decided to write a book about Lisp hacking. It's scary to think how little I knew about Lisp hacking when I started writing that book. But there's nothing like writing a book about something to help you learn it. The book, On Lisp, wasn't published till 1993, but I wrote much of it in grad school.\\n\\nComputer Science is an uneasy alliance between two halves, theory and systems. The theory people prove things, and the systems people build things. I wanted to build things. I had plenty of respect for theory — indeed, a sneaking suspicion that it was the more admirable of the two halves — but building things seemed so much more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d52b4a20-0c6f-455d-9362-e99f3f87f0b4'), Node(page_content=\"The problem with systems work, though, was that it didn't last. Any program you wrote today, no matter how good, would be obsolete in a couple decades at best. People might mention your software in footnotes, but no one would actually use it. And indeed, it would seem very feeble work. Only people with a sense of the history of the field would even realize that, in its time, it had been good.\\n\\nThere were some surplus Xerox Dandelions floating around the computer lab at one point. Anyone who wanted one to play around with could have one. I was briefly tempted, but they were so slow by present standards; what was the point? No one else wanted one either, so off they went. That was what happened to systems work.\\n\\nI wanted not just to build things, but to build things that would last.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a7e3201d-8d1c-4f50-87cc-0674b17ce7c8'), Node(page_content=\"In this dissatisfied state I went in 1988 to visit Rich Draves at CMU, where he was in grad school. One day I went to visit the Carnegie Institute, where I'd spent a lot of time as a kid. While looking at a painting there I realized something that might seem obvious, but was a big surprise to me. There, right on the wall, was something you could make that would last. Paintings didn't become obsolete. Some of the best ones were hundreds of years old.\\n\\nAnd moreover this was something you could make a living doing. Not as easily as you could by writing software, of course, but I thought if you were really industrious and lived really cheaply, it had to be possible to make enough to survive. And as an artist you could be truly independent. You wouldn't have a boss, or even need to get research funding.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='88ce0eef-afcd-4066-b99a-ab84ade3eb18'), Node(page_content=\"I had always liked looking at paintings. Could I make them? I had no idea. I'd never imagined it was even possible. I knew intellectually that people made art — that it didn't just appear spontaneously — but it was as if the people who made it were a different species. They either lived long ago or were mysterious geniuses doing strange things in profiles in Life magazine. The idea of actually being able to make art, to put that verb before that noun, seemed almost miraculous.\\n\\nThat fall I started taking art classes at Harvard. Grad students could take classes in any department, and my advisor, Tom Cheatham, was very easy going. If he even knew about the strange classes I was taking, he never said anything.\\n\\nSo now I was in a PhD program in computer science, yet planning to be an artist, yet also genuinely in love with Lisp hacking and working away at On Lisp. In other words, like many a grad student, I was working energetically on multiple projects that were not my thesis.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f8eaf30-eedb-4747-97bb-c5c699392270'), Node(page_content='I didn\\'t see a way out of this situation. I didn\\'t want to drop out of grad school, but how else was I going to get out? I remember when my friend Robert Morris got kicked out of Cornell for writing the internet worm of 1988, I was envious that he\\'d found such a spectacular way to get out of grad school.\\n\\nThen one day in April 1990 a crack appeared in the wall. I ran into professor Cheatham and he asked if I was far enough along to graduate that June. I didn\\'t have a word of my dissertation written, but in what must have been the quickest bit of thinking in my life, I decided to take a shot at writing one in the 5 weeks or so that remained before the deadline, reusing parts of On Lisp where I could, and I was able to respond, with no perceptible delay \"Yes, I think so. I\\'ll give you something to read in a few days.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c14d29a3-c37e-4821-ae34-c407c6676ee1'), Node(page_content=\"I picked applications of continuations as the topic. In retrospect I should have written about macros and embedded languages. There's a whole world there that's barely been explored. But all I wanted was to get out of grad school, and my rapidly written dissertation sufficed, just barely.\\n\\nMeanwhile I was applying to art schools. I applied to two: RISD in the US, and the Accademia di Belli Arti in Florence, which, because it was the oldest art school, I imagined would be good. RISD accepted me, and I never heard back from the Accademia, so off to Providence I went.\\n\\nI'd applied for the BFA program at RISD, which meant in effect that I had to go to college again. This was not as strange as it sounds, because I was only 25, and art schools are full of people of different ages. RISD counted me as a transfer sophomore and said I had to do the foundation that summer. The foundation means the classes that everyone has to take in fundamental subjects like drawing, color, and design.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='48b6ee95-ea42-4980-9ad5-1dd6a2062500'), Node(page_content=\"Toward the end of the summer I got a big surprise: a letter from the Accademia, which had been delayed because they'd sent it to Cambridge England instead of Cambridge Massachusetts, inviting me to take the entrance exam in Florence that fall. This was now only weeks away. My nice landlady let me leave my stuff in her attic. I had some money saved from consulting work I'd done in grad school; there was probably enough to last a year if I lived cheaply. Now all I had to do was learn Italian.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='92b5cdd8-6d6d-4d9c-9510-48a3096427b8'), Node(page_content=\"Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01fdd3e3-243a-4e82-9c18-5d7492d029c1', wins=1), Node(page_content=\"I'm only up to age 25 and already there are such conspicuous patterns. Here I was, yet again about to attend some august institution in the hopes of learning about some prestigious subject, and yet again about to be disappointed. The students and faculty in the painting department at the Accademia were the nicest people you could imagine, but they had long since arrived at an arrangement whereby the students wouldn't require the faculty to teach anything, and in return the faculty wouldn't require the students to learn anything. And at the same time all involved would adhere outwardly to the conventions of a 19th century atelier. We actually had one of those little stoves, fed with kindling, that you see in 19th century studio paintings, and a nude model sitting as close to it as possible without getting burned. Except hardly anyone else painted her besides me. The rest of the students spent their time chatting or occasionally trying to imitate things they'd seen in American art magazines.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f488de3-2fec-444b-9cd1-58ffd491a687'), Node(page_content=\"Our model turned out to live just down the street from me. She made a living from a combination of modelling and making fakes for a local antique dealer. She'd copy an obscure old painting out of a book, and then he'd take the copy and maltreat it to make it look old. [3]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e8486722-e708-4b69-a5ef-1469253415c8'), Node(page_content=\"While I was a student at the Accademia I started painting still lives in my bedroom at night. These paintings were tiny, because the room was, and because I painted them on leftover scraps of canvas, which was all I could afford at the time. Painting still lives is different from painting people, because the subject, as its name suggests, can't move. People can't sit for more than about 15 minutes at a time, and when they do they don't sit very still. So the traditional m.o. for painting people is to know how to paint a generic person, which you then modify to match the specific person you're painting. Whereas a still life you can, if you want, copy pixel by pixel from what you're seeing. You don't want to stop there, of course, or you get merely photographic accuracy, and what makes a still life interesting is that it's been through a head. You want to emphasize the visual cues that tell you, for example, that the reason the color changes suddenly at a certain point is that it's the edge of an object. By\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee'), Node(page_content='of an object. By subtly emphasizing such things you can make paintings that are more realistic than photographs not just in some metaphorical sense, but in the strict information-theoretic sense. [4]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='00ad760e-6fbb-43ca-a51c-519425b2aaff'), Node(page_content='I liked painting still lives because I was curious about what I was seeing. In everyday life, we aren\\'t consciously aware of much we\\'re seeing. Most visual perception is handled by low-level processes that merely tell your brain \"that\\'s a water droplet\" without telling you details like where the lightest and darkest points are, or \"that\\'s a bush\" without telling you the shape and position of every leaf. This is a feature of brains, not a bug. In everyday life it would be distracting to notice every leaf on every bush. But when you have to paint something, you have to look more closely, and when you do there\\'s a lot to see. You can still be noticing new things after days of trying to paint something people usually take for granted, just as you can after days of trying to write an essay about something people usually take for granted.\\n\\nThis is not the only way to paint. I\\'m not 100% sure it\\'s even a good way to paint. But it seemed a good enough bet to be worth trying.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f7f0e91c-4312-46dc-b4d1-ff380e0f7227'), Node(page_content=\"Our teacher, professor Ulivi, was a nice guy. He could see I worked hard, and gave me a good grade, which he wrote down in a sort of passport each student had. But the Accademia wasn't teaching me anything except Italian, and my money was running out, so at the end of the first year I went back to the US.\\n\\nI wanted to go back to RISD, but I was now broke and RISD was very expensive, so I decided to get a job for a year and then return to RISD the next fall. I got one at a company called Interleaf, which made software for creating documents. You mean like Microsoft Word? Exactly. That was how I learned that low end software tends to eat high end software. But Interleaf still had a few years to live yet. [5]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='395264d3-3625-46d0-8636-110e597f48b7'), Node(page_content=\"Interleaf had done something pretty bold. Inspired by Emacs, they'd added a scripting language, and even made the scripting language a dialect of Lisp. Now they wanted a Lisp hacker to write things in it. This was the closest thing I've had to a normal job, and I hereby apologize to my boss and coworkers, because I was a bad employee. Their Lisp was the thinnest icing on a giant C cake, and since I didn't know C and didn't want to learn it, I never understood most of the software. Plus I was terribly irresponsible. This was back when a programming job meant showing up every day during certain working hours. That seemed unnatural to me, and on this point the rest of the world is coming around to my way of thinking, but at the time it caused a lot of friction. Toward the end of the year I spent much of my time surreptitiously working on On Lisp, which I had by this time gotten a contract to publish.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='32082230-290a-46db-a914-19f705defd46'), Node(page_content='The good part was that I got paid huge amounts of money, especially by art student standards. In Florence, after paying my part of the rent, my budget for everything else had been $7 a day. Now I was getting paid more than 4 times that every hour, even when I was just sitting in a meeting. By living cheaply I not only managed to save enough to go back to RISD, but also paid off my college loans.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='b102bff3-51da-44e2-9679-ed6445de3808'), Node(page_content=\"I learned some useful things at Interleaf, though they were mostly about what not to do. I learned that it's better for technology companies to be run by product people than sales people (though sales is a real skill and people who are good at it are really good at it), that it leads to bugs when code is edited by too many people, that cheap office space is no bargain if it's depressing, that planned meetings are inferior to corridor conversations, that big, bureaucratic customers are a dangerous source of money, and that there's not much overlap between conventional office hours and the optimal time for hacking, or conventional offices and the optimal place for it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='17ed5227-f4f7-4c2b-a28e-4265a141653e'), Node(page_content='But the most important thing I learned, and which I used in both Viaweb and Y Combinator, is that the low end eats the high end: that it\\'s good to be the \"entry level\" option, even though that will be less prestigious, because if you\\'re not, someone else will be, and will squash you against the ceiling. Which in turn means that prestige is a danger sign.\\n\\nWhen I left to go back to RISD the next fall, I arranged to do freelance work for the group that did projects for customers, and this was how I survived for the next several years. When I came back to visit for a project later on, someone told me about a new thing called HTML, which was, as he described it, a derivative of SGML. Markup language enthusiasts were an occupational hazard at Interleaf and I ignored him, but this HTML thing later became a big part of my life.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='03c17beb-1dbd-4c5a-9445-4d4f0c57379f'), Node(page_content='In the fall of 1992 I moved back to Providence to continue at RISD. The foundation had merely been intro stuff, and the Accademia had been a (very civilized) joke. Now I was going to see what real art school was like. But alas it was more like the Accademia than not. Better organized, certainly, and a lot more expensive, but it was now becoming clear that art school did not bear the same relationship to art that medical school bore to medicine. At least not the painting department. The textile department, which my next door neighbor belonged to, seemed to be pretty rigorous. No doubt illustration and architecture were too. But painting was post-rigorous. Painting students were supposed to express themselves, which to the more worldly ones meant to try to cook up some sort of distinctive signature style.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad27e028-f220-4b7e-a914-a2c67860e511'), Node(page_content='A signature style is the visual equivalent of what in show business is known as a \"schtick\": something that immediately identifies the work as yours and no one else\\'s. For example, when you see a painting that looks like a certain kind of cartoon, you know it\\'s by Roy Lichtenstein. So if you see a big painting of this type hanging in the apartment of a hedge fund manager, you know he paid millions of dollars for it. That\\'s not always why artists have a signature style, but it\\'s usually why buyers pay a lot for such work. [6]\\n\\nThere were plenty of earnest students too: kids who \"could draw\" in high school, and now had come to what was supposed to be the best art school in the country, to learn to draw even better. They tended to be confused and demoralized by what they found at RISD, but they kept going, because painting was what they did. I was not one of the kids who could draw in high school, but at RISD I was definitely closer to their tribe than the tribe of signature style seekers.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d996dddb-ee2a-4347-b6ff-0adf7c382d19'), Node(page_content=\"I learned a lot in the color class I took at RISD, but otherwise I was basically teaching myself to paint, and I could do that for free. So in 1993 I dropped out. I hung around Providence for a bit, and then my college friend Nancy Parmet did me a big favor. A rent-controlled apartment in a building her mother owned in New York was becoming vacant. Did I want it? It wasn't much more than my current place, and New York was supposed to be where the artists were. So yes, I wanted it! [7]\\n\\nAsterix comics begin by zooming in on a tiny corner of Roman Gaul that turns out not to be controlled by the Romans. You can do something similar on a map of New York City: if you zoom in on the Upper East Side, there's a tiny corner that's not rich, or at least wasn't in 1993. It's called Yorkville, and that was my new home. Now I was a New York artist — in the strictly technical sense of making paintings and living in New York.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6849fc6-388f-4476-905f-c07b44d846ff'), Node(page_content=\"I was nervous about money, because I could sense that Interleaf was on the way down. Freelance Lisp hacking work was very rare, and I didn't want to have to program in another language, which in those days would have meant C++ if I was lucky. So with my unerring nose for financial opportunity, I decided to write another book on Lisp. This would be a popular book, the sort of book that could be used as a textbook. I imagined myself living frugally off the royalties and spending all my time painting. (The painting on the cover of this book, ANSI Common Lisp, is one that I painted around this time.)\\n\\nThe best thing about New York for me was the presence of Idelle and Julian Weber. Idelle Weber was a painter, one of the early photorealists, and I'd taken her painting class at Harvard. I've never known a teacher more beloved by her students. Large numbers of former students kept in touch with her, including me. After I moved to New York I became her de facto studio assistant.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='dd3809f5-9bbd-440d-b993-2b25e729584d'), Node(page_content=\"She liked to paint on big, square canvases, 4 to 5 feet on a side. One day in late 1994 as I was stretching one of these monsters there was something on the radio about a famous fund manager. He wasn't that much older than me, and was super rich. The thought suddenly occurred to me: why don't I become rich? Then I'll be able to work on whatever I want.\\n\\nMeanwhile I'd been hearing more and more about this new thing called the World Wide Web. Robert Morris showed it to me when I visited him in Cambridge, where he was now in grad school at Harvard. It seemed to me that the web would be a big deal. I'd seen what graphical user interfaces had done for the popularity of microcomputers. It seemed like the web would do the same for the internet.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6097a0d7-807d-4820-9ecd-7e8e373cc23d'), Node(page_content=\"If I wanted to get rich, here was the next train leaving the station. I was right about that part. What I got wrong was the idea. I decided we should start a company to put art galleries online. I can't honestly say, after reading so many Y Combinator applications, that this was the worst startup idea ever, but it was up there. Art galleries didn't want to be online, and still don't, not the fancy ones. That's not how they sell. I wrote some software to generate web sites for galleries, and Robert wrote some to resize images and set up an http server to serve the pages. Then we tried to sign up galleries. To call this a difficult sale would be an understatement. It was difficult to give away. A few galleries let us make sites for them for free, but none paid us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8821373c-c593-4754-bce4-07fdf2b9bed1'), Node(page_content='Then some online stores started to appear, and I realized that except for the order buttons they were identical to the sites we\\'d been generating for galleries. This impressive-sounding thing called an \"internet storefront\" was something we already knew how to build.\\n\\nSo in the summer of 1995, after I submitted the camera-ready copy of ANSI Common Lisp to the publishers, we started trying to write software to build online stores. At first this was going to be normal desktop software, which in those days meant Windows software. That was an alarming prospect, because neither of us knew how to write Windows software or wanted to learn. We lived in the Unix world. But we decided we\\'d at least try writing a prototype store builder on Unix. Robert wrote a shopping cart, and I wrote a new site generator for stores — in Lisp, of course.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5190c08b-1add-44df-a89c-71da5b21a81f'), Node(page_content=\"We were working out of Robert's apartment in Cambridge. His roommate was away for big chunks of time, during which I got to sleep in his room. For some reason there was no bed frame or sheets, just a mattress on the floor. One morning as I was lying on this mattress I had an idea that made me sit up like a capital L. What if we ran the software on the server, and let users control it by clicking on links? Then we'd never have to write anything to run on users' computers. We could generate the sites on the same server we'd serve them from. Users wouldn't need anything more than a browser.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0c153247-5ff8-48f7-bd31-5139f0fc7302'), Node(page_content=\"This kind of software, known as a web app, is common now, but at the time it wasn't clear that it was even possible. To find out, we decided to try making a version of our store builder that you could control through the browser. A couple days later, on August 12, we had one that worked. The UI was horrible, but it proved you could build a whole store through the browser, without any client software or typing anything into the command line on the server.\\n\\nNow we felt like we were really onto something. I had visions of a whole new generation of software working this way. You wouldn't need versions, or ports, or any of that crap. At Interleaf there had been a whole group called Release Engineering that seemed to be at least as big as the group that actually wrote the software. Now you could just update the software right on the server.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='4ed7e80d-dc07-49eb-8d99-cb33fb56d042'), Node(page_content=\"We started a new company we called Viaweb, after the fact that our software worked via the web, and we got $10,000 in seed funding from Idelle's husband Julian. In return for that and doing the initial legal work and giving us business advice, we gave him 10% of the company. Ten years later this deal became the model for Y Combinator's. We knew founders needed something like this, because we'd needed it ourselves.\\n\\nAt this stage I had a negative net worth, because the thousand dollars or so I had in the bank was more than counterbalanced by what I owed the government in taxes. (Had I diligently set aside the proper proportion of the money I'd made consulting for Interleaf? No, I had not.) So although Robert had his graduate student stipend, I needed that seed funding to live on.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e'), Node(page_content=\"We originally hoped to launch in September, but we got more ambitious about the software as we worked on it. Eventually we managed to build a WYSIWYG site builder, in the sense that as you were creating pages, they looked exactly like the static ones that would be generated later, except that instead of leading to static pages, the links all referred to closures stored in a hash table on the server.\\n\\nIt helped to have studied art, because the main goal of an online store builder is to make users look legit, and the key to looking legit is high production values. If you get page layouts and fonts and colors right, you can make a guy running a store out of his bedroom look more legit than a big company.\\n\\n(If you're curious why my site looks so old-fashioned, it's because it's still made with this software. It may look clunky today, but in 1996 it was the last word in slick.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1f39257d-0248-4959-b47d-f2447a171058'), Node(page_content='In September, Robert rebelled. \"We\\'ve been working on this for a month,\" he said, \"and it\\'s still not done.\" This is funny in retrospect, because he would still be working on it almost 3 years later. But I decided it might be prudent to recruit more programmers, and I asked Robert who else in grad school with him was really good. He recommended Trevor Blackwell, which surprised me at first, because at that point I knew Trevor mainly for his plan to reduce everything in his life to a stack of notecards, which he carried around with him. But Rtm was right, as usual. Trevor turned out to be a frighteningly effective hacker.\\n\\nIt was a lot of fun working with Robert and Trevor. They\\'re the two most independent-minded people I know, and in completely different ways. If you could see inside Rtm\\'s brain it would look like a colonial New England church, and if you could see inside Trevor\\'s it would look like the worst excesses of Austrian Rococo.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a5d7623b-6552-4ca9-a712-8cb0986696fe'), Node(page_content=\"We opened for business, with 6 stores, in January 1996. It was just as well we waited a few months, because although we worried we were late, we were actually almost fatally early. There was a lot of talk in the press then about ecommerce, but not many people actually wanted online stores. [8]\\n\\nThere were three main parts to the software: the editor, which people used to build sites and which I wrote, the shopping cart, which Robert wrote, and the manager, which kept track of orders and statistics, and which Trevor wrote. In its time, the editor was one of the best general-purpose site builders. I kept the code tight and didn't have to integrate with any other software except Robert's and Trevor's, so it was quite fun to work on. If all I'd had to do was work on this software, the next 3 years would have been the easiest of my life. Unfortunately I had to do a lot more, all of it stuff I was worse at than programming, and the next 3 years were instead the most stressful.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6e31fe4b-e85c-4ad7-a092-be367364b972', wins=1), Node(page_content=\"There were a lot of startups making ecommerce software in the second half of the 90s. We were determined to be the Microsoft Word, not the Interleaf. Which meant being easy to use and inexpensive. It was lucky for us that we were poor, because that caused us to make Viaweb even more inexpensive than we realized. We charged $100 a month for a small store and $300 a month for a big one. This low price was a big attraction, and a constant thorn in the sides of competitors, but it wasn't because of some clever insight that we set the price low. We had no idea what businesses paid for things. $300 a month seemed like a lot of money to us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7a732a06-6878-41be-9947-1c07a23ea4a7'), Node(page_content='We did a lot of things right by accident like that. For example, we did what\\'s now called \"doing things that don\\'t scale,\" although at the time we would have described it as \"being so lame that we\\'re driven to the most desperate measures to get users.\" The most common of which was building stores for them. This seemed particularly humiliating, since the whole raison d\\'etre of our software was that people could use it to make their own stores. But anything to get users.\\n\\nWe learned a lot more about retail than we wanted to know. For example, that if you could only have a small image of a man\\'s shirt (and all images were small then by present standards), it was better to have a closeup of the collar than a picture of the whole shirt. The reason I remember learning this was that it meant I had to rescan about 30 images of men\\'s shirts. My first set of scans were so beautiful too.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f865fd1-57c6-4f67-ac9d-4f0d17bd751b'), Node(page_content='Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we\\'d have so many users that I couldn\\'t scan their images for them, but in the meantime there was nothing more important to do.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0df392b3-eb59-4359-b340-6e211caa3aae', wins=1), Node(page_content=\"Another thing I didn't get at the time is that growth rate is the ultimate test of a startup. Our growth rate was fine. We had about 70 stores at the end of 1996 and about 500 at the end of 1997. I mistakenly thought the thing that mattered was the absolute number of users. And that is the thing that matters in the sense that that's how much money you're making, and if you're not making enough, you might go out of business. But in the long term the growth rate takes care of the absolute number. If we'd been a startup I was advising at Y Combinator, I would have said: Stop being so stressed out, because you're doing fine. You're growing 7x a year. Just don't hire too many more people and you'll soon be profitable, and then you'll control your own destiny.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d57da0e4-fee3-4442-aa88-7c461dc9c4b4', wins=1), Node(page_content=\"Alas I hired lots more people, partly because our investors wanted me to, and partly because that's what startups did during the Internet Bubble. A company with just a handful of employees would have seemed amateurish. So we didn't reach breakeven until about when Yahoo bought us in the summer of 1998. Which in turn meant we were at the mercy of investors for the entire life of the company. And since both we and our investors were noobs at startups, the result was a mess even by startup standards.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9bc68607-b275-4e2e-877a-8b9f23e349c2'), Node(page_content=\"It was a huge relief when Yahoo bought us. In principle our Viaweb stock was valuable. It was a share in a business that was profitable and growing rapidly. But it didn't feel very valuable to me; I had no idea how to value a business, but I was all too keenly aware of the near-death experiences we seemed to have every few months. Nor had I changed my grad student lifestyle significantly since we started. So when Yahoo bought us it felt like going from rags to riches. Since we were going to California, I bought a car, a yellow 1998 VW GTI. I remember thinking that its leather seats alone were by far the most luxurious thing I owned.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5d19d396-aa70-4bf0-992e-069c632de8ad'), Node(page_content=\"The next year, from the summer of 1998 to the summer of 1999, must have been the least productive of my life. I didn't realize it at the time, but I was worn out from the effort and stress of running Viaweb. For a while after I got to California I tried to continue my usual m.o. of programming till 3 in the morning, but fatigue combined with Yahoo's prematurely aged culture and grim cube farm in Santa Clara gradually dragged me down. After a few months it felt disconcertingly like working at Interleaf.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='56272a9f-8b83-4b82-a1a2-598765c2b068'), Node(page_content=\"Yahoo had given us a lot of options when they bought us. At the time I thought Yahoo was so overvalued that they'd never be worth anything, but to my astonishment the stock went up 5x in the next year. I hung on till the first chunk of options vested, then in the summer of 1999 I left. It had been so long since I'd painted anything that I'd half forgotten why I was doing this. My brain had been entirely full of software and men's shirts for 4 years. But I had done this to get rich so I could paint, I reminded myself, and now I was rich, so I should go paint.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='fd511710-4a0b-4af9-834f-8c2d984a6dd0'), Node(page_content='When I said I was leaving, my boss at Yahoo had a long conversation with me about my plans. I told him all about the kinds of pictures I wanted to paint. At the time I was touched that he took such an interest in me. Now I realize it was because he thought I was lying. My options at that point were worth about $2 million a month. If I was leaving that kind of money on the table, it could only be to go and start some new startup, and if I did, I might take people with me. This was the height of the Internet Bubble, and Yahoo was ground zero of it. My boss was at that moment a billionaire. Leaving then to start a new startup must have seemed to him an insanely, and yet also plausibly, ambitious plan.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8'), Node(page_content=\"But I really was quitting to paint, and I started immediately. There was no time to lose. I'd already burned 4 years getting rich. Now when I talk to founders who are leaving after selling their companies, my advice is always the same: take a vacation. That's what I should have done, just gone off somewhere and done nothing for a month or two, but the idea never occurred to me.\\n\\nSo I tried to paint, but I just didn't seem to have any energy or ambition. Part of the problem was that I didn't know many people in California. I'd compounded this problem by buying a house up in the Santa Cruz Mountains, with a beautiful view but miles from anywhere. I stuck it out for a few more months, then in desperation I went back to New York, where unless you understand about rent control you'll be surprised to hear I still had my apartment, sealed up like a tomb of my old life. Idelle was in New York at least, and there were other people trying to paint there, even though I didn't know any of them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='07e153a7-98c9-45f5-9873-0415175e5887'), Node(page_content=\"When I got back to New York I resumed my old life, except now I was rich. It was as weird as it sounds. I resumed all my old patterns, except now there were doors where there hadn't been. Now when I was tired of walking, all I had to do was raise my hand, and (unless it was raining) a taxi would stop to pick me up. Now when I walked past charming little restaurants I could go in and order lunch. It was exciting for a while. Painting started to go better. I experimented with a new kind of still life where I'd paint one painting in the old way, then photograph it and print it, blown up, on canvas, and then use that as the underpainting for a second still life, painted from the same objects (which hopefully hadn't rotted yet).\\n\\nMeanwhile I looked for an apartment to buy. Now I could actually choose what neighborhood to live in. Where, I asked myself and various real estate agents, is the Cambridge of New York? Aided by occasional visits to actual Cambridge, I gradually realized there wasn't one. Huh.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6f53cbc-6f54-4287-ad99-52473f5e3cfa'), Node(page_content='Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='209c154b-eaa4-4d0c-9ee3-9de983548416', wins=1), Node(page_content=\"I got so excited about this idea that I couldn't think about anything else. It seemed obvious that this was the future. I didn't particularly want to start another company, but it was clear that this idea would have to be embodied as one, so I decided to move to Cambridge and start it. I hoped to lure Robert into working on it with me, but there I ran into a hitch. Robert was now a postdoc at MIT, and though he'd made a lot of money the last time I'd lured him into working on one of my schemes, it had also been a huge time sink. So while he agreed that it sounded like a plausible idea, he firmly refused to work on it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='725c5f11-2423-4e18-bc97-752009c281de'), Node(page_content='Hmph. Well, I\\'d do it myself then. I recruited Dan Giffin, who had worked for Viaweb, and two undergrads who wanted summer jobs, and we got to work trying to build what it\\'s now clear is about twenty companies and several open source projects worth of software. The language for defining applications would of course be a dialect of Lisp. But I wasn\\'t so naive as to assume I could spring an overt Lisp on a general audience; we\\'d hide the parentheses, like Dylan did.\\n\\nBy then there was a name for the kind of company Viaweb was, an \"application service provider,\" or ASP. This name didn\\'t last long before it was replaced by \"software as a service,\" but it was current for long enough that I named this new company after it: it was going to be called Aspra.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9b17eb54-1f33-4904-bc1a-b18254f2f85a', wins=1), Node(page_content=\"I started working on the application builder, Dan worked on network infrastructure, and the two undergrads worked on the first two services (images and phone calls). But about halfway through the summer I realized I really didn't want to run a company — especially not a big one, which it was looking like this would have to be. I'd only started Viaweb because I needed the money. Now that I didn't need money anymore, why was I doing this? If this vision had to be realized as a company, then screw the vision. I'd build a subset that could be done as an open source project.\\n\\nMuch to my surprise, the time I spent working on this stuff was not wasted after all. After we started Y Combinator, I would often encounter startups working on parts of this new architecture, and it was very useful to have spent so much time thinking about it and even trying to write some of it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1185a7b9-b8da-441e-89b1-12b8a81c2502', wins=1), Node(page_content=\"The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='33017a92-fecc-4bf1-ae08-cc414c62cbf7'), Node(page_content=\"Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a746d02f-1466-434d-addd-04b936502bec', wins=1), Node(page_content=\"In the print era, the channel for publishing essays had been vanishingly small. Except for a few officially anointed thinkers who went to the right parties in New York, the only people allowed to publish essays were specialists writing about their specialties. There were so many essays that had never been written, because there had been no way to publish them. Now they could be, and I was going to write them. [12]\\n\\nI've worked on several different things, but to the extent there was a turning point where I figured out what to work on, it was when I started publishing essays online. From then on I knew that whatever else I did, I'd always write essays too.\\n\\nI knew that online essays would be a marginal medium at first. Socially they'd seem more like rants posted by nutjobs on their GeoCities sites than the genteel and beautifully typeset compositions published in The New Yorker. But by this point I knew enough to find that encouraging instead of discouraging.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881', wins=1), Node(page_content=\"One of the most conspicuous patterns I've noticed in my life is how well it has worked, for me at least, to work on things that weren't prestigious. Still life has always been the least prestigious form of painting. Viaweb and Y Combinator both seemed lame when we started them. I still get the glassy eye from strangers when they ask what I'm writing, and I explain that it's an essay I'm going to publish on my web site. Even Lisp, though prestigious intellectually in something like the way Latin is, also seems about as hip.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='836f9505-8112-4300-a484-655731655443'), Node(page_content=\"It's not that unprestigious types of work are good per se. But when you find yourself drawn to some kind of work despite its current lack of prestige, it's a sign both that there's something real to be discovered there, and that you have the right kind of motives. Impure motives are a big danger for the ambitious. If anything is going to lead you astray, it will be the desire to impress people. So while working on things that aren't prestigious doesn't guarantee you're on the right track, it at least guarantees you're not on the most common type of wrong one.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad36fb50-0350-45a4-925e-29f0980a9cba', wins=1), Node(page_content=\"Over the next several years I wrote lots of essays about all kinds of different topics. O'Reilly reprinted a collection of them as a book, called Hackers & Painters after one of the essays in it. I also worked on spam filters, and did some more painting. I used to have dinners for a group of friends every thursday night, which taught me how to cook for groups. And I bought another building in Cambridge, a former candy factory (and later, twas said, porn studio), to use as an office.\\n\\nOne night in October 2003 there was a big party at my house. It was a clever idea of my friend Maria Daniels, who was one of the thursday diners. Three separate hosts would all invite their friends to one party. So for every guest, two thirds of the other guests would be people they didn't know but would probably like. One of the guests was someone I didn't know but would turn out to like a lot: a woman called Jessica Livingston. A couple days later I asked her out.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='271b9209-34c1-4eb9-a7d4-5c8cb047c3a7'), Node(page_content='Jessica was in charge of marketing at a Boston investment bank. This bank thought it understood startups, but over the next year, as she met friends of mine from the startup world, she was surprised how different reality was. And how colorful their stories were. So she decided to compile a book of interviews with startup founders.\\n\\nWhen the bank had financial problems and she had to fire half her staff, she started looking for a new job. In early 2005 she interviewed for a marketing job at a Boston VC firm. It took them weeks to make up their minds, and during this time I started telling her about all the things that needed to be fixed about venture capital. They should make a larger number of smaller investments instead of a handful of giant ones, they should be funding younger, more technical founders instead of MBAs, they should let the founders remain as CEO, and so on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc'), Node(page_content=\"One of my tricks for writing essays had always been to give talks. The prospect of having to stand up in front of a group of people and tell them something that won't waste their time is a great spur to the imagination. When the Harvard Computer Society, the undergrad computer club, asked me to give a talk, I decided I would tell them how to start a startup. Maybe they'd be able to avoid the worst of the mistakes we'd made.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce520b00-c87c-4bfe-a179-0fa11c9d5273', wins=1), Node(page_content='So I gave this talk, in the course of which I told them that the best sources of seed funding were successful startup founders, because then they\\'d be sources of advice too. Whereupon it seemed they were all looking expectantly at me. Horrified at the prospect of having my inbox flooded by business plans (if I\\'d only known), I blurted out \"But not me!\" and went on with the talk. But afterward it occurred to me that I should really stop procrastinating about angel investing. I\\'d been meaning to since Yahoo bought us, and now it was 7 years later and I still hadn\\'t done one angel investment.\\n\\nMeanwhile I had been scheming with Robert and Trevor about projects we could work on together. I missed working with them, and it seemed like there had to be something we could collaborate on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e9a82e89-0d8f-480b-9f26-1acfffaab9a1'), Node(page_content=\"As Jessica and I were walking home from dinner on March 11, at the corner of Garden and Walker streets, these three threads converged. Screw the VCs who were taking so long to make up their minds. We'd start our own investment firm and actually implement the ideas we'd been talking about. I'd fund it, and Jessica could quit her job and work for it, and we'd get Robert and Trevor as partners too. [13]\\n\\nOnce again, ignorance worked in our favor. We had no idea how to be angel investors, and in Boston in 2005 there were no Ron Conways to learn from. So we just made what seemed like the obvious choices, and some of the things we did turned out to be novel.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='073bc744-8e07-42e7-8595-39496927fe88'), Node(page_content=\"There are multiple components to Y Combinator, and we didn't figure them all out at once. The part we got first was to be an angel firm. In those days, those two words didn't go together. There were VC firms, which were organized companies with people whose job it was to make investments, but they only did big, million dollar investments. And there were angels, who did smaller investments, but these were individuals who were usually focused on other things and made investments on the side. And neither of them helped founders enough in the beginning. We knew how helpless founders were in some respects, because we remembered how helpless we'd been. For example, one thing Julian had done for us that seemed to us like magic was to get us set up as a company. We were fine writing fairly difficult software, but actually getting incorporated, with bylaws and stock and all that stuff, how on earth did you do that? Our plan was not only to make seed investments, but to do for startups everything Julian had done for\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7ffe9bfd-9225-407c-9048-5ae1b0f25fc6'), Node(page_content='Julian had done for us.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='83ef6c3c-2575-48c1-bf79-8376e2afe2e1'), Node(page_content='YC was not organized as a fund. It was cheap enough to run that we funded it with our own money. That went right by 99% of readers, but professional investors are thinking \"Wow, that means they got all the returns.\" But once again, this was not due to any particular insight on our part. We didn\\'t know how VC firms were organized. It never occurred to us to try to raise a fund, and if it had, we wouldn\\'t have known where to start. [14]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f4142432-6daa-4c6b-ad89-00e3712c373c', wins=1), Node(page_content=\"The most distinctive thing about YC is the batch model: to fund a bunch of startups all at once, twice a year, and then to spend three months focusing intensively on trying to help them. That part we discovered by accident, not merely implicitly but explicitly due to our ignorance about investing. We needed to get experience as investors. What better way, we thought, than to fund a whole bunch of startups at once? We knew undergrads got temporary jobs at tech companies during the summer. Why not organize a summer program where they'd start startups instead? We wouldn't feel guilty for being in a sense fake investors, because they would in a similar sense be fake founders. So while we probably wouldn't make much money out of it, we'd at least get to practice being investors on them, and they for their part would probably have a more interesting summer than they would working at Microsoft.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4c983c2-a43c-49f6-9ca0-db73867728a9', wins=1), Node(page_content='We\\'d use the building I owned in Cambridge as our headquarters. We\\'d all have dinner there once a week — on tuesdays, since I was already cooking for the thursday diners on thursdays — and after dinner we\\'d bring in experts on startups to give talks.\\n\\nWe knew undergrads were deciding then about summer jobs, so in a matter of days we cooked up something we called the Summer Founders Program, and I posted an announcement on my site, inviting undergrads to apply. I had never imagined that writing essays would be a way to get \"deal flow,\" as investors call it, but it turned out to be the perfect source. [15] We got 225 applications for the Summer Founders Program, and we were surprised to find that a lot of them were from people who\\'d already graduated, or were about to that spring. Already this SFP thing was starting to feel more serious than we\\'d intended.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0198787d-a061-45f0-92d5-e45f6e7ae912'), Node(page_content=\"We invited about 20 of the 225 groups to interview in person, and from those we picked 8 to fund. They were an impressive group. That first batch included reddit, Justin Kan and Emmett Shear, who went on to found Twitch, Aaron Swartz, who had already helped write the RSS spec and would a few years later become a martyr for open access, and Sam Altman, who would later become the second president of YC. I don't think it was entirely luck that the first batch was so good. You had to be pretty bold to sign up for a weird thing like the Summer Founders Program instead of a summer job at a legit place like Microsoft or Goldman Sachs.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='745dd18f-832f-4d1e-b688-319f7c617464'), Node(page_content='The deal for startups was based on a combination of the deal we did with Julian ($10k for 10%) and what Robert said MIT grad students got for the summer ($6k). We invested $6k per founder, which in the typical two-founder case was $12k, in return for 6%. That had to be fair, because it was twice as good as the deal we ourselves had taken. Plus that first summer, which was really hot, Jessica brought the founders free air conditioners. [16]\\n\\nFairly quickly I realized that we had stumbled upon the way to scale startup funding. Funding startups in batches was more convenient for us, because it meant we could do things for a lot of startups at once, but being part of a batch was better for the startups too. It solved one of the biggest problems faced by founders: the isolation. Now you not only had colleagues, but colleagues who understood the problems you were facing and could tell you how they were solving them.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='bf8387d0-b094-4f59-8c13-ca1014ea67ac'), Node(page_content='As YC grew, we started to notice other advantages of scale. The alumni became a tight community, dedicated to helping one another, and especially the current batch, whose shoes they remembered being in. We also noticed that the startups were becoming one another\\'s customers. We used to refer jokingly to the \"YC GDP,\" but as YC grows this becomes less and less of a joke. Now lots of startups get their initial set of customers almost entirely from among their batchmates.\\n\\nI had not originally intended YC to be a full-time job. I was going to do three things: hack, write essays, and work on YC. As YC grew, and I grew more excited about it, it started to take up a lot more than a third of my attention. But for the first few years I was still able to work on other things.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='526ba90a-5223-4530-a966-baea4886bdc1', wins=1), Node(page_content=\"In the summer of 2006, Robert and I started working on a new version of Arc. This one was reasonably fast, because it was compiled into Scheme. To test this new Arc, I wrote Hacker News in it. It was originally meant to be a news aggregator for startup founders and was called Startup News, but after a few months I got tired of reading about nothing but startups. Plus it wasn't startup founders we wanted to reach. It was future startup founders. So I changed the name to Hacker News and the topic to whatever engaged one's intellectual curiosity.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='aa1dfbc4-133a-4f2d-99fe-c0ebce320d09'), Node(page_content=\"HN was no doubt good for YC, but it was also by far the biggest source of stress for me. If all I'd had to do was select and help founders, life would have been so easy. And that implies that HN was a mistake. Surely the biggest source of stress in one's work should at least be something close to the core of the work. Whereas I was like someone who was in pain while running a marathon not from the exertion of running, but because I had a blister from an ill-fitting shoe. When I was dealing with some urgent problem during YC, there was about a 60% chance it had to do with HN, and a 40% chance it had do with everything else combined. [17]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c8505964-4597-440a-9044-033cf10ca40e'), Node(page_content=\"As well as HN, I wrote all of YC's internal software in Arc. But while I continued to work a good deal in Arc, I gradually stopped working on Arc, partly because I didn't have time to, and partly because it was a lot less attractive to mess around with the language now that we had all this infrastructure depending on it. So now my three projects were reduced to two: writing essays and working on YC.\\n\\nYC was different from other kinds of work I've done. Instead of deciding for myself what to work on, the problems came to me. Every 6 months there was a new batch of startups, and their problems, whatever they were, became our problems. It was very engaging work, because their problems were quite varied, and the good founders were very effective. If you were trying to learn the most you could about startups in the shortest possible time, you couldn't have picked a better way to do it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='251faa7a-72ec-4bd9-ad69-1af024efbbc4'), Node(page_content='There were parts of the job I didn\\'t like. Disputes between cofounders, figuring out when people were lying to us, fighting with people who maltreated the startups, and so on. But I worked hard even at the parts I didn\\'t like. I was haunted by something Kevin Hale once said about companies: \"No one works harder than the boss.\" He meant it both descriptively and prescriptively, and it was the second part that scared me. I wanted YC to be good, so if how hard I worked set the upper bound on how hard everyone else worked, I\\'d better work very hard.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='454a991d-29ac-4982-a8e5-72a02f0ef5a2'), Node(page_content='One day in 2010, when he was visiting California for interviews, Robert Morris did something astonishing: he offered me unsolicited advice. I can only remember him doing that once before. One day at Viaweb, when I was bent over double from a kidney stone, he suggested that it would be a good idea for him to take me to the hospital. That was what it took for Rtm to offer unsolicited advice. So I remember his exact words very clearly. \"You know,\" he said, \"you should make sure Y Combinator isn\\'t the last cool thing you do.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edd1ff8d-62c3-4e10-95c6-6ef7b27a4531'), Node(page_content=\"At the time I didn't understand what he meant, but gradually it dawned on me that he was saying I should quit. This seemed strange advice, because YC was doing great. But if there was one thing rarer than Rtm offering advice, it was Rtm being wrong. So this set me thinking. It was true that on my current trajectory, YC would be the last thing I did, because it was only taking up more of my attention. It had already eaten Arc, and was in the process of eating essays too. Either YC was my life's work or I'd have to leave eventually. And it wasn't, so I would.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='71c27b46-b79b-48ef-ad7e-3a0400ece844'), Node(page_content=\"In the summer of 2012 my mother had a stroke, and the cause turned out to be a blood clot caused by colon cancer. The stroke destroyed her balance, and she was put in a nursing home, but she really wanted to get out of it and back to her house, and my sister and I were determined to help her do it. I used to fly up to Oregon to visit her regularly, and I had a lot of time to think on those flights. On one of them I realized I was ready to hand YC over to someone else.\\n\\nI asked Jessica if she wanted to be president, but she didn't, so we decided we'd try to recruit Sam Altman. We talked to Robert and Trevor and we agreed to make it a complete changing of the guard. Up till that point YC had been controlled by the original LLC we four had started. But we wanted YC to last for a long time, and to do that it couldn't be controlled by the founders. So if Sam said yes, we'd let him reorganize YC. Robert and I would retire, and Jessica and Trevor would become ordinary partners.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='949a121e-1e69-45a4-98cd-e7f7c47c8bf9'), Node(page_content=\"When we asked Sam if he wanted to be president of YC, initially he said no. He wanted to start a startup to make nuclear reactors. But I kept at it, and in October 2013 he finally agreed. We decided he'd take over starting with the winter 2014 batch. For the rest of 2013 I left running YC more and more to Sam, partly so he could learn the job, and partly because I was focused on my mother, whose cancer had returned.\\n\\nShe died on January 15, 2014. We knew this was coming, but it was still hard when it did.\\n\\nI kept working on YC till March, to help get that batch of startups through Demo Day, then I checked out pretty completely. (I still talk to alumni and to new startups working on things I'm interested in, but that only takes a few hours a week.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ee41cd68-792e-4ebf-aa6c-672740604a7e'), Node(page_content=\"What should I do next? Rtm's advice hadn't included anything about that. I wanted to do something completely different, so I decided I'd paint. I wanted to see how good I could get if I really focused on it. So the day after I stopped working on YC, I started painting. I was rusty and it took a while to get back into shape, but it was at least completely engaging. [18]\\n\\nI spent most of the rest of 2014 painting. I'd never been able to work so uninterruptedly before, and I got to be better than I had been. Not good enough, but better. Then in November, right in the middle of a painting, I ran out of steam. Up till that point I'd always been curious to see how the painting I was working on would turn out, but suddenly finishing this one seemed like a chore. So I stopped working on it and cleaned my brushes and haven't painted since. So far anyway.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='70bcf8a8-1e2c-4cbd-a93f-ade0c453e437'), Node(page_content=\"I realize that sounds rather wimpy. But attention is a zero sum game. If you can choose what to work on, and you choose a project that's not the best one (or at least a good one) for you, then it's getting in the way of another project that is. And at 50 there was some opportunity cost to screwing around.\\n\\nI started writing essays again, and wrote a bunch of new ones over the next few months. I even wrote a couple that weren't about startups. Then in March 2015 I started working on Lisp again.\\n\\nThe distinctive thing about Lisp is that its core is a language defined by writing an interpreter in itself. It wasn't originally intended as a programming language in the ordinary sense. It was meant to be a formal model of computation, an alternative to the Turing machine. If you want to write an interpreter for a language in itself, what's the minimum set of predefined operators you need? The Lisp that John McCarthy invented, or more accurately discovered, is an answer to that question. [19]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='de347d59-7d93-4174-b095-30666d86c163'), Node(page_content=\"McCarthy didn't realize this Lisp could even be used to program computers till his grad student Steve Russell suggested it. Russell translated McCarthy's interpreter into IBM 704 machine language, and from that point Lisp started also to be a programming language in the ordinary sense. But its origins as a model of computation gave it a power and elegance that other languages couldn't match. It was this that attracted me in college, though I didn't understand why at the time.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d8717b54-2764-42ab-a7b9-7dc8f36ee9b4'), Node(page_content=\"McCarthy's 1960 Lisp did nothing more than interpret Lisp expressions. It was missing a lot of things you'd want in a programming language. So these had to be added, and when they were, they weren't defined using McCarthy's original axiomatic approach. That wouldn't have been feasible at the time. McCarthy tested his interpreter by hand-simulating the execution of programs. But it was already getting close to the limit of interpreters you could test that way — indeed, there was a bug in it that McCarthy had overlooked. To test a more complicated interpreter, you'd have had to run it, and computers then weren't powerful enough.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ab5cf714-67cb-4e35-a7a5-cef31b3093c2'), Node(page_content=\"Now they are, though. Now you could continue using McCarthy's axiomatic approach till you'd defined a complete programming language. And as long as every change you made to McCarthy's Lisp was a discoveredness-preserving transformation, you could, in principle, end up with a complete language that had this quality. Harder to do than to talk about, of course, but if it was possible in principle, why not try? So I decided to take a shot at it. It took 4 years, from March 26, 2015 to October 12, 2019. It was fortunate that I had a precisely defined goal, or it would have been hard to keep at it for so long.\\n\\nI wrote this new Lisp, called Bel, in itself in Arc. That may sound like a contradiction, but it's an indication of the sort of trickery I had to engage in to make this work. By means of an egregious collection of hacks I managed to make something close enough to an interpreter written in itself that could actually run. Not fast, but fast enough to test.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ccc691c6-2730-445f-a301-3e6d29614239'), Node(page_content='I had to ban myself from writing essays during most of this time, or I\\'d never have finished. In late 2015 I spent 3 months writing essays, and when I went back to working on Bel I could barely understand the code. Not so much because it was badly written as because the problem is so convoluted. When you\\'re working on an interpreter written in itself, it\\'s hard to keep track of what\\'s happening at what level, and errors can be practically encrypted by the time you get them.\\n\\nSo I said no more essays till Bel was done. But I told few people about Bel while I was working on it. So for years it must have seemed that I was doing nothing, when in fact I was working harder than I\\'d ever worked on anything. Occasionally after wrestling for hours with some gruesome bug I\\'d check Twitter or HN and see someone asking \"Does Paul Graham still code?\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6c6c1376-f7e2-4435-84ea-1324fd16912e'), Node(page_content=\"Working on Bel was hard but satisfying. I worked on it so intensively that at any given time I had a decent chunk of the code in my head and could write more there. I remember taking the boys to the coast on a sunny day in 2015 and figuring out how to deal with some problem involving continuations while I watched them play in the tide pools. It felt like I was doing life right. I remember that because I was slightly dismayed at how novel it felt. The good news is that I had more moments like this over the next few years.\\n\\nIn the summer of 2016 we moved to England. We wanted our kids to see what it was like living in another country, and since I was a British citizen by birth, that seemed the obvious choice. We only meant to stay for a year, but we liked it so much that we still live there. So most of Bel was written in England.\\n\\nIn the fall of 2019, Bel was finally finished. Like McCarthy's original Lisp, it's a spec rather than an implementation, although like McCarthy's Lisp it's a spec expressed as code.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f927fda-431c-4163-9b61-6b3c9eff403b'), Node(page_content=\"Now that I could write essays again, I wrote a bunch about topics I'd had stacked up. I kept writing essays through 2020, but I also started to think about other things I could work on. How should I choose what to do? Well, how had I chosen what to work on in the past? I wrote an essay for myself to answer that question, and I was surprised how long and messy the answer turned out to be. If this surprised me, who'd lived it, then I thought perhaps it would be interesting to other people, and encouraging to those with similarly messy lives. So I wrote a more detailed version for others to read, and this is the last sentence of it.\\n\\nNotes\\n\\n[1] My experience skipped a step in the evolution of computers: time-sharing machines with interactive OSes. I went straight from batch processing to microcomputers, which made microcomputers seem all the more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6af9ede9-1b89-44db-a81f-20ce45d1802a'), Node(page_content=\"[2] Italian words for abstract concepts can nearly always be predicted from their English cognates (except for occasional traps like polluzione). It's the everyday words that differ. So if you string together a lot of abstract concepts with a few simple verbs, you can make a little Italian go a long way.\\n\\n[3] I lived at Piazza San Felice 4, so my walk to the Accademia went straight down the spine of old Florence: past the Pitti, across the bridge, past Orsanmichele, between the Duomo and the Baptistery, and then up Via Ricasoli to Piazza San Marco. I saw Florence at street level in every possible condition, from empty dark winter evenings to sweltering summer days when the streets were packed with tourists.\\n\\n[4] You can of course paint people like still lives if you want to, and they're willing. That sort of portrait is arguably the apex of still life painting, though the long sitting does tend to produce pained expressions in the sitters.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='67d6eed8-0267-4500-a3b2-8c7ed2ac83a6'), Node(page_content=\"[5] Interleaf was one of many companies that had smart people and built impressive technology, and yet got crushed by Moore's Law. In the 1990s the exponential growth in the power of commodity (i.e. Intel) processors rolled up high-end, special-purpose hardware and software companies like a bulldozer.\\n\\n[6] The signature style seekers at RISD weren't specifically mercenary. In the art world, money and coolness are tightly coupled. Anything expensive comes to be seen as cool, and anything seen as cool will soon become equally expensive.\\n\\n[7] Technically the apartment wasn't rent-controlled but rent-stabilized, but this is a refinement only New Yorkers would know or care about. The point is that it was really cheap, less than half market price.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edacd5b2-60d6-434b-ac59-273dd42896e8'), Node(page_content=\"[8] Most software you can launch as soon as it's done. But when the software is an online store builder and you're hosting the stores, if you don't have any users yet, that fact will be painfully obvious. So before we could launch publicly we had to launch privately, in the sense of recruiting an initial set of users and making sure they had decent-looking stores.\\n\\n[9] We'd had a code editor in Viaweb for users to define their own page styles. They didn't know it, but they were editing Lisp expressions underneath. But this wasn't an app editor, because the code ran when the merchants' sites were generated, not when shoppers visited them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='46a2d3c9-dcd7-4d1d-a520-af1518532c01'), Node(page_content=\"[10] This was the first instance of what is now a familiar experience, and so was what happened next, when I read the comments and found they were full of angry people. How could I claim that Lisp was better than other languages? Weren't they all Turing complete? People who see the responses to essays I write sometimes tell me how sorry they feel for me, but I'm not exaggerating when I reply that it has always been like this, since the very beginning. It comes with the territory. An essay must tell readers things they don't already know, and some people dislike being told such things.\\n\\n[11] People put plenty of stuff on the internet in the 90s of course, but putting something online is not the same as publishing it online. Publishing online means you treat the online version as the (or at least a) primary version.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4bd607d-62be-4ee7-a34d-3bd5305da820', wins=1), Node(page_content=\"[12] There is a general lesson here that our experience with Y Combinator also teaches: Customs continue to constrain you long after the restrictions that caused them have disappeared. Customary VC practice had once, like the customs about publishing essays, been based on real constraints. Startups had once been much more expensive to start, and proportionally rare. Now they could be cheap and common, but the VCs' customs still reflected the old world, just as customs about writing essays still reflected the constraints of the print era.\\n\\nWhich in turn implies that people who are independent-minded (i.e. less influenced by custom) will have an advantage in fields affected by rapid change (where customs are more likely to be obsolete).\\n\\nHere's an interesting point, though: you can't always predict which fields will be affected by rapid change. Obviously software and venture capital will be, but who would have predicted that essay writing would be?\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6d435c9f-7f32-4be9-931b-854ce5d29546', wins=1), Node(page_content=\"[13] Y Combinator was not the original name. At first we were called Cambridge Seed. But we didn't want a regional name, in case someone copied us in Silicon Valley, so we renamed ourselves after one of the coolest tricks in the lambda calculus, the Y combinator.\\n\\nI picked orange as our color partly because it's the warmest, and partly because no VC used it. In 2005 all the VCs used staid colors like maroon, navy blue, and forest green, because they were trying to appeal to LPs, not founders. The YC logo itself is an inside joke: the Viaweb logo had been a white V on a red circle, so I made the YC logo a white Y on an orange square.\\n\\n[14] YC did become a fund for a couple years starting in 2009, because it was getting so big I could no longer afford to fund it personally. But after Heroku got bought we had enough money to go back to being self-funded.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e', wins=1), Node(page_content='[15] I\\'ve never liked the term \"deal flow,\" because it implies that the number of new startups at any given time is fixed. This is not only false, but it\\'s the purpose of YC to falsify it, by causing startups to be founded that would not otherwise have existed.\\n\\n[16] She reports that they were all different shapes and sizes, because there was a run on air conditioners and she had to get whatever she could, but that they were all heavier than she could carry now.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='27b2bd1d-8de5-4424-ba1f-323592eaf441'), Node(page_content=\"[17] Another problem with HN was a bizarre edge case that occurs when you both write essays and run a forum. When you run a forum, you're assumed to see if not every conversation, at least every conversation involving you. And when you write essays, people post highly imaginative misinterpretations of them on forums. Individually these two phenomena are tedious but bearable, but the combination is disastrous. You actually have to respond to the misinterpretations, because the assumption that you're present in the conversation means that not responding to any sufficiently upvoted misinterpretation reads as a tacit admission that it's correct. But that in turn encourages more; anyone who wants to pick a fight with you senses that now is their chance.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edabe432-0c59-4ba5-aa37-d5cddb072669'), Node(page_content=\"[18] The worst thing about leaving YC was not working with Jessica anymore. We'd been working on YC almost the whole time we'd known each other, and we'd neither tried nor wanted to separate it from our personal lives, so leaving was like pulling up a deeply rooted tree.\\n\\n[19] One way to get more precise about the concept of invented vs discovered is to talk about space aliens. Any sufficiently advanced alien civilization would certainly know about the Pythagorean theorem, for example. I believe, though with less certainty, that they would also know about the Lisp in McCarthy's 1960 paper.\\n\\nBut if so there's no reason to suppose that this is the limit of the language that might be known to them. Presumably aliens need numbers and errors and I/O too. So it seems likely there exists at least one path out of McCarthy's Lisp along which discoveredness is preserved.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e508308d-e2bf-46db-a3c4-c98d86a7d9d4'), Node(page_content='Thanks to Trevor Blackwell, John Collison, Patrick Collison, Daniel Gackle, Ralph Hazell, Jessica Livingston, Robert Morris, and Harj Taggar for reading drafts of this.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='cf0b9256-68dd-4e82-86f0-7a7464e0d0fe')], node_embeddings_list=[[-0.4864840507507324, 1.4953278303146362, -2.483095169067383, -0.13090671598911285, 0.5388283133506775, 0.03263700380921364, 1.6049073934555054, 0.36927375197410583, 0.376899778842926, -0.32016417384147644, 0.07661844789981842, -0.5045113563537598, 0.9932118654251099, 0.46091392636299133, 0.7749782800674438, 0.9791772365570068, 0.8240299224853516, -0.8413733839988708, 0.6601390242576599, 1.3214250802993774, -0.0014541863929480314, -0.4771997928619385, 0.07429936528205872, 0.03984106332063675, -0.09612180292606354, -0.12854205071926117, -1.0106065273284912, -0.13552778959274292, -1.2062469720840454, -1.2566789388656616, 0.09926658868789673, -0.5969429612159729, 0.0797877088189125, -0.5030465722084045, -0.863521158695221, 0.22742527723312378, 1.751513957977295, 1.4107850790023804, 0.6539307832717896, -0.049645375460386276, 1.7124297618865967, -0.6065614223480225, -0.09038663655519485, -1.2873902320861816, 0.6141224503517151, -0.7533595561981201, 1.3934601545333862, -0.8361425399780273, 0.12231005728244781, -0.02527104876935482, -0.8479353785514832, -0.388369083404541, 0.9572935104370117, 0.6533073782920837, 0.3450480103492737, 0.10119814425706863, 0.5645934343338013, 0.3290162682533264, 0.7490019202232361, -0.8425675630569458, 0.8562667965888977, 0.2986101508140564, -0.16312725841999054, 0.956280529499054, 0.18660210072994232, -0.7380489706993103, 0.19443431496620178, -0.042870186269283295, -0.9188985228538513, -0.32503587007522583, 0.37486231327056885, -0.12768426537513733, 0.10120801627635956, 0.5478570461273193, -1.463741660118103, 0.7016229033470154, 0.8774287104606628, 0.6986828446388245, 0.242282435297966, 0.918313205242157, -0.18654917180538177, -0.5197450518608093, 0.6731451153755188, -0.34729307889938354, 0.5859284996986389, -0.20247028768062592, 0.5007225871086121, -0.4599517583847046, -0.6350828409194946, 1.3337548971176147, 0.6650770306587219, 0.27963149547576904, 0.745192289352417, 0.1925511658191681, -0.706494152545929, -0.456095814704895, 0.3918251693248749, 0.5511340498924255, -0.8179551959037781, -0.5342932343482971, -1.003893494606018, -0.8676432967185974, 0.4654110372066498, 0.14215533435344696, -0.26477742195129395, 1.1163444519042969, 0.9311187267303467, -0.2409319430589676, -0.7403976917266846, -0.14410300552845, -0.11927824467420578, 0.24945108592510223, -0.831882119178772, -1.1742546558380127, -0.6094582676887512, 1.3488527536392212, 1.680446982383728, -0.43459680676460266, 1.1821043491363525, 1.0273462533950806, 0.4146674871444702, -0.9667333364486694, -0.2677384614944458, 0.8891524076461792, 0.4087006151676178, 0.14999008178710938, -0.7848932147026062, -1.168020248413086, 0.04931287094950676, -0.007302671205252409, 0.3466438353061676, 0.08718530088663101, -0.25867927074432373, 0.6377221345901489, -1.0164848566055298, 0.940284013748169, -0.4555308520793915, -0.4656195640563965, 0.10037780553102493, -0.4937652349472046, 0.41780993342399597, -0.38811758160591125, -0.299204021692276, -0.3402453064918518, 0.21063047647476196, -0.37330830097198486, 0.1334509402513504, -0.8741703629493713, -0.6385286450386047, 0.08279707282781601, -1.0080052614212036, 0.27800291776657104, 0.6665276885032654, 0.19590061902999878, -0.03686940297484398, -0.06524474173784256, 0.35422196984291077, 0.45578640699386597, 0.49152231216430664, 0.3231486976146698, 1.0174719095230103, -0.21855074167251587, -0.9000975489616394, 0.6486086249351501, 0.7941189408302307, -0.7382852435112, 0.3381063640117645, 0.49302586913108826, 0.5660306215286255, 1.0242059230804443, -0.22204113006591797, -0.8297144770622253, -0.26603496074676514, 0.15612533688545227, -0.13804891705513, -0.5354702472686768, 1.7772196531295776, -0.41576120257377625, -1.4959434270858765, -0.9221198558807373, 0.8635861277580261, -0.5337693095207214, 0.5428102016448975, -0.12925800681114197, -0.006798029411584139, -0.6638987064361572, 0.7628021240234375, 0.1651991903781891, -0.8000989556312561, -0.5578874945640564, -0.28020697832107544, 0.04170459136366844, -0.5740565061569214, 0.10696211457252502, -0.7794063091278076, -0.07896891236305237, 0.2929765582084656, -1.9465612173080444, -0.4136141538619995, -0.17718680202960968, -0.5294054746627808, -0.18766257166862488, -0.5769191980361938, 0.9238768815994263, -0.5683004260063171, 1.148861289024353, -0.9523991346359253, 0.9919272661209106, -0.5582164525985718, 0.5712845921516418, 0.6332875490188599, 0.03987528011202812, -0.6593706011772156, 0.8304091095924377, -0.29218727350234985, -1.5043035745620728, -0.06861027330160141, 0.604152500629425, -0.8428583741188049, 0.02139166370034218, 0.11010527610778809, -0.0374000184237957, 0.3474631607532501, 0.134092777967453, 0.24004912376403809, 0.06575784832239151, -0.6132557988166809, -0.449791818857193, -1.0398544073104858, 0.06678025424480438, -0.5211718082427979, -0.7613722681999207, 0.6515987515449524, -0.1048809140920639, -0.7440483570098877, -0.14736463129520416, 0.12449736148118973, 1.358614444732666, 0.3712126910686493, 1.3060123920440674, 0.32902052998542786, 0.4818570613861084, 0.16507375240325928, -0.403365820646286, -0.2599639594554901, 1.0439560413360596, 0.5630043148994446, -0.03142046555876732, 0.23179379105567932, 1.161116361618042, 1.357587456703186, -0.27601414918899536, 0.9227680563926697, 0.07535906136035919, -0.1400170624256134, -0.7634768486022949, -0.9875643253326416, 0.49662089347839355, -0.3044302761554718, 1.8602900505065918, 0.6348282098770142, -1.1338945627212524, 0.258952260017395, 0.05048736184835434, -0.41620317101478577, -0.46701309084892273, -0.6092929244041443, -0.8003408908843994, -0.4618443250656128, -0.21072936058044434, -0.6562128663063049, 0.37345728278160095, -0.1380358338356018, 0.44051072001457214, -0.7580539584159851, -1.3042107820510864, -0.6466823220252991, 0.057890791445970535, -0.25264856219291687, 1.4553565979003906, 0.495835542678833, -1.2061182260513306, -0.36699068546295166, 0.3047058582305908, 0.6620574593544006, 0.610964834690094, -0.009077725000679493, 0.6451467871665955, 0.35781168937683105, -1.033898115158081, 0.05771877244114876, 0.09978344291448593, -0.01823464408516884, -0.11920860409736633, -0.34799909591674805, 0.6403312087059021, 1.4997375011444092, -1.1170541048049927, -0.43419477343559265, -0.6393699049949646, 0.5955172181129456, 1.83098566532135, 0.44622448086738586, 0.7924044728279114, 0.07948658615350723, -0.21424907445907593, -0.03365898132324219, -0.7351117134094238, -1.1587777137756348, -0.14470358192920685, -0.8133431077003479, -1.1081510782241821, -0.6399529576301575, -0.5836365222930908, -0.04823201149702072, 0.3113213777542114, -0.38585320115089417, -0.02064032480120659, 1.514155626296997, -0.20877645909786224, -0.4331432282924652, -0.6479352712631226, 0.5128329992294312, -0.5013390183448792, 0.1703261137008667, 1.700183391571045, -0.7974804639816284, -0.6085972189903259, 0.16185623407363892, 0.4215621054172516, -0.1978544294834137, 1.1134042739868164, 0.05850605666637421, -1.341753363609314, -0.9876771569252014, 0.2342088371515274, 1.4850772619247437, -0.29661092162132263, 0.48468950390815735, -0.22470246255397797, 0.7247509956359863, 0.6032288074493408, -0.5868939161300659, -1.0654345750808716, 1.4457513093948364, -0.3439600169658661, -0.4960450232028961, -0.17079654335975647, 0.5452933311462402, 0.42754805088043213, -0.3220060169696808, -0.9048166871070862, -0.4495933949947357, -0.7373155951499939, 0.10886538028717041, 0.5721672177314758, -0.22332359850406647, 1.2284318208694458, -0.4999241232872009, -0.19005508720874786, 0.7815330624580383, 0.8681657314300537, -0.3793509900569916, -0.8809196352958679, 0.3760776221752167, 0.7392125129699707, 1.3769245147705078, -0.17826591432094574, 0.17852512001991272, 0.9797710180282593, 0.6399626731872559, -0.1204434409737587, 0.46684926748275757, 1.1811004877090454, -0.38026729226112366, 0.6723397970199585, -1.269701600074768, 0.016828233376145363, -0.013311827555298805, -0.7737100124359131, -0.2618798315525055, 0.9120712876319885, -0.6972975134849548, -0.867381751537323, 0.6442795991897583, 0.23807421326637268, -0.019191332161426544, -0.12437578290700912, 0.28963401913642883, 0.4819529056549072, -0.156572625041008, -0.12950283288955688, -0.3729536235332489, -0.03210362792015076, 0.01254374347627163, -1.102274775505066, -0.08934585750102997, 0.18384571373462677, -0.08077319711446762, 1.3221306800842285, -0.621619462966919, 0.12974736094474792, -1.1539034843444824, -0.13277393579483032, 0.5453199744224548, -0.7359796166419983, 0.3887213468551636, 0.03783005475997925, 0.1337936967611313, 0.3154546022415161, 0.11973193287849426, 2.170264482498169, -0.08577362447977066, -0.10385073721408844, 0.4783230721950531, -0.021054813638329506, -0.2103542685508728, -0.9993698596954346, -0.39852601289749146, 0.07840584218502045, -0.311281681060791, -0.12490491569042206, 0.5241817235946655, -0.09970910102128983, 1.703011393547058, 1.1719911098480225, 0.5574577450752258, 0.11698168516159058, 0.06578563153743744, -0.6458771228790283, -0.2881545424461365, 0.5147825479507446, -0.6344001293182373, -0.6870360374450684, -0.401914119720459, 0.18223480880260468, -0.7134068012237549, 0.38949429988861084, 0.683576226234436, 0.40536344051361084, -0.006641748361289501, 0.3234425485134125, 0.2646399736404419, 0.8518924713134766, 1.0499662160873413, 1.4853832721710205, 0.19854964315891266, -0.9766244292259216, -0.5216121077537537, 0.14666278660297394, -0.5127107501029968, 0.15583264827728271, 0.42920199036598206, 1.196698546409607, 1.034114956855774, -1.3651326894760132, -0.07042748481035233, 0.2790479063987732, 0.6284422278404236, 0.5966250896453857, 1.1302331686019897, -0.9467818737030029, -0.052118606865406036, 0.4411720931529999, 0.5663307905197144, -0.17442145943641663, -0.24892474710941315, 0.3761994242668152, -0.6440271735191345, 0.8194637894630432, -0.8886706233024597, 0.452502965927124, -0.7640030980110168, -0.8166048526763916, 0.13193413615226746, -0.8551043272018433, -0.16186925768852234, 0.48991820216178894, 0.7327815890312195, 1.2326518297195435, -0.2560814321041107, -0.861160933971405, 0.09156633168458939, -0.9370567202568054, 0.6710080504417419, -0.5694254040718079, -0.6655397415161133, -0.8271812200546265, -0.39884480834007263, -0.4058659076690674, 0.1791781485080719, -0.43065014481544495, -0.28494206070899963, -0.7286369204521179, -1.3619372844696045, 0.6563009023666382, 1.2224546670913696, 1.7455487251281738, 1.1589974164962769, -0.44041937589645386, 0.41388386487960815, 0.0012405912857502699, -1.3806440830230713, -0.09402249753475189, 0.8506878614425659, -0.02931027300655842, 0.3702852725982666, -1.4281792640686035, -0.4547490179538727, 0.06478706747293472, 0.007101014256477356, -0.5073710083961487, 1.0537631511688232, 0.699770987033844, 1.1404316425323486, -0.21720319986343384, -0.7101011872291565, 0.7401707768440247, -0.7416391968727112, 0.7974838018417358, 0.7599862813949585, -0.032167382538318634, -1.4077223539352417, -0.7132616639137268, -1.3464022874832153, 0.3726373314857483, -0.4093955159187317, -0.7578126788139343, 0.9836755990982056, 0.6008113622665405, 0.8755245804786682, 0.5445013642311096, -1.207647442817688, 0.26085853576660156, 0.06888733804225922, -0.3390505611896515, -0.8218275308609009, 0.02165374904870987, 0.3732382357120514, -0.14445346593856812, 0.23948442935943604, 0.39477118849754333, 0.040843892842531204, -0.6245413422584534, -0.16595597565174103, 0.04144813120365143, 0.31525734066963196, 0.5413529276847839, 0.05178333818912506, -0.7409623861312866, -0.051476411521434784, -0.5970669388771057, -0.450377494096756, -0.4719521999359131, 1.1608638763427734, 0.05060403794050217, -0.7776395678520203, -0.22644439339637756, 0.20142270624637604, -0.9119824171066284, 0.20337475836277008, -0.6210832595825195, 0.633095920085907, 0.7724893093109131, 0.09968167543411255, -0.5874606370925903, -0.29977351427078247, 0.03867649659514427, 0.04668499156832695, 0.4471057057380676, 0.31716665625572205, -1.7476564645767212, 0.00022490054834634066, 0.17692694067955017, -0.686568558216095, -0.6285669803619385, -0.05823054909706116, 0.13873380422592163, -1.1641279458999634, -0.6990417838096619, -0.3869599401950836, 0.8934739828109741, 0.9007747173309326, -0.9428307414054871, 0.4952140748500824, 1.3800077438354492, -1.618570327758789, 0.7026103138923645, -0.5327660441398621, -1.6226803064346313, -0.32584404945373535, -0.7362183928489685, 0.5861504673957825, -0.5209220051765442, 0.45349442958831787, -0.3442174196243286, 1.155558705329895, -1.4392129182815552, -1.7026771306991577, -1.2527408599853516, -0.3043428659439087, 1.5757249593734741, 0.5375774502754211, -0.3168468475341797, 1.6441760063171387, 1.422086477279663, -0.3701988160610199, -0.8100652098655701, 0.21271643042564392, -1.0588411092758179, -0.018628206104040146, 0.5888960957527161, 0.42660462856292725, 0.6234060525894165, 0.8501317501068115, 0.3700736463069916, 1.5171966552734375, -0.2632322609424591, 1.4128687381744385, -0.9273568391799927, -0.8189752101898193, 0.5682811737060547, 0.6821929216384888, -1.4808132648468018, -1.3075262308120728, -0.3991391062736511, -0.5632664561271667, -0.33524152636528015, -0.09572520107030869, 0.26891690492630005, -0.2835579514503479, -0.11138652265071869, -0.8638671636581421, 0.8083613514900208, -0.9339322447776794, 0.1427474319934845, -0.0031674527563154697, -0.3786966800689697, -0.03400310128927231, 1.0078201293945312, -0.28335508704185486, -2.029181480407715, -0.1163470670580864, 0.19117650389671326, 0.5940204858779907, -1.0862820148468018, 0.17665429413318634, 0.2528420686721802, 0.27239465713500977, -0.17994074523448944, 2.1409494876861572, 0.8216951489448547, -0.6055282354354858, -0.26278671622276306, 0.23389559984207153, -0.41914528608322144, 0.2729293406009674, -0.9524579644203186, -0.8105363845825195, -0.7522731423377991, 1.013993740081787, 0.2345469444990158, 0.5389344692230225, -0.25316640734672546, 0.39761894941329956, -0.2399633824825287, 0.011293256655335426, 1.5864683389663696, -1.0937626361846924, -0.36979544162750244, 0.5917309522628784, 0.08077359199523926, -0.6819072961807251, 0.27771416306495667, 0.5732125639915466, 0.61294025182724, -1.2371845245361328, 0.7193108797073364, 0.4108108580112457, -0.9333896636962891, 0.6148304343223572, 0.43206506967544556, -0.5029415488243103, -0.17245350778102875, -0.45186108350753784, -1.7772626876831055, -0.2665807008743286, -0.1840539425611496, -0.426052451133728, 1.034081220626831, -1.0003129243850708, -0.3953058421611786, 0.7386963367462158, -0.7327293157577515, -0.13644543290138245, -0.6374603509902954, 0.2577351927757263, -0.15362760424613953, -0.4327804148197174, 1.2466089725494385, 0.28286808729171753, 1.3237837553024292, 0.07075303047895432, 0.21751610934734344, -1.5321215391159058, -0.1418807953596115, -0.45741209387779236, -0.30032992362976074, -0.2629093825817108, 0.054488275200128555, 1.1303176879882812, -0.04624050855636597, -0.8897368907928467, -0.23950664699077606, 0.13743874430656433, 0.9924253225326538, 0.12109889835119247, -0.6786760091781616, 0.48097091913223267, 0.49176719784736633, 0.15034602582454681, 0.09690239280462265, -0.4726406931877136, -0.646044909954071, -0.39116230607032776, -0.5770983695983887, 0.11890588700771332, -0.25356990098953247, 0.7826312780380249, 0.43924763798713684, -0.21402406692504883, -0.3667421340942383, -1.2852896451950073, 0.8288066387176514, -0.47107937932014465, -0.7125102281570435, 0.02994934283196926, -0.31071484088897705, -0.09900836646556854, -0.20278987288475037, 0.5238033533096313, 0.4074316620826721, -0.36703482270240784, -0.05883868783712387, -1.2347214221954346, -0.6211671233177185, -0.2126273214817047, 0.2643027901649475, 1.0639921426773071, -0.019644614309072495, -0.195327490568161, 0.04137634485960007, -0.9405891299247742, 0.07086382806301117, 0.17125330865383148, 0.43744030594825745, 0.6838149428367615, 1.2986122369766235, 2.0996789932250977, 0.5884167551994324, 0.20228005945682526, -0.4811590909957886, 0.7988602519035339, -0.532646894454956, -0.35231730341911316, -0.7695010304450989, -0.7009415030479431, -0.39163246750831604], [-0.2762235105037689, 1.0435179471969604, -2.147933006286621, 0.17702092230319977, 0.4676657021045685, -0.17406833171844482, 1.0754215717315674, -0.1986594945192337, 0.03638250008225441, -0.5488455891609192, -1.0492887496948242, -0.21867531538009644, 0.6868480443954468, 0.5931729078292847, -0.06991837173700333, 0.2988024353981018, 0.8736750483512878, -0.5168519616127014, 0.5584871768951416, 1.122403860092163, 0.44882744550704956, -0.8136898279190063, 0.3054348826408386, 0.07413244247436523, -0.16741672158241272, 0.02150951512157917, -1.4033187627792358, -0.6280221343040466, -0.7395836710929871, -0.937179684638977, 0.5416960716247559, -1.2958731651306152, 0.286794513463974, 0.020528770983219147, -0.9370978474617004, -1.0245035886764526, 1.222577452659607, 1.1457678079605103, 0.9215420484542847, 0.315981924533844, 1.560907006263733, -0.22851651906967163, 0.06862188130617142, -1.3104591369628906, -0.11360728740692139, -0.37366148829460144, 0.8356195688247681, -1.1418182849884033, 0.26620572805404663, 0.06606942415237427, 0.12958109378814697, -0.5726176500320435, 0.4822477102279663, 1.177152156829834, 0.9044185280799866, -0.37794968485832214, 0.3986935317516327, 0.2430546134710312, 0.7013170719146729, -0.11224061250686646, 1.5856280326843262, 0.4902336299419403, -0.7472681403160095, 1.5452443361282349, -0.17273958027362823, -0.45807763934135437, -0.15327085554599762, -0.17386522889137268, 0.3580778241157532, 0.19921933114528656, 0.7662603855133057, 0.22445276379585266, -0.1263090968132019, 0.7572992444038391, -1.3925268650054932, 0.5292388200759888, 0.5424891114234924, 0.6076132655143738, 0.43336737155914307, 0.9932827949523926, 0.39540916681289673, 0.03523635491728783, 0.3637565076351166, -0.32457202672958374, 0.03027627058327198, -0.23367834091186523, 0.1011764332652092, 0.1691635698080063, -0.2564716637134552, 1.917168140411377, 0.7053709626197815, -0.15163420140743256, -0.24908021092414856, -0.1941699981689453, -0.3549090027809143, -0.6743176579475403, 0.6422973275184631, 0.48472678661346436, -0.8488268852233887, -0.8885774612426758, -0.7712924480438232, -0.5819073915481567, -0.3925069570541382, -0.26628240942955017, 0.36407244205474854, 1.2617264986038208, -0.26471081376075745, -0.8662840723991394, -0.28924259543418884, 0.07268410921096802, -0.8701607584953308, -0.02933628298342228, -0.8742074370384216, -0.5897912383079529, -0.6483034491539001, 1.1810640096664429, 0.8855341076850891, -0.5284353494644165, 0.8733596205711365, 0.5858824253082275, -0.36969897150993347, -0.6537447571754456, -0.693209171295166, 0.6939261555671692, 0.5696896910667419, 0.992433488368988, -0.4603581428527832, -0.8321208357810974, 0.35519489645957947, -0.09910981357097626, 0.46007177233695984, 0.028178295120596886, -0.3780938386917114, 1.1898322105407715, -0.7141819596290588, 1.233057975769043, -0.7085003852844238, -0.5793725848197937, -0.09041060507297516, 0.47430935502052307, 0.7506034970283508, -0.16685596108436584, -0.6031367778778076, -0.7475606799125671, 0.5222858190536499, -0.45633402466773987, -0.38295653462409973, -0.4645574986934662, -0.7880285382270813, 0.37265247106552124, -1.022291898727417, 0.6139141917228699, 0.3619597554206848, 0.6345071792602539, 0.406679630279541, -0.03402864187955856, 0.04392712935805321, 0.03396403044462204, 0.9067963361740112, 0.4219152331352234, 0.5078160166740417, -0.0367269404232502, -0.7368472218513489, 1.2974371910095215, 0.4119081497192383, -0.3024914562702179, -0.38621053099632263, 1.373828411102295, 0.18685749173164368, 0.9678274989128113, -0.9153609275817871, 0.34008151292800903, -0.7315624356269836, 0.35045602917671204, 0.5127485394477844, -0.2073451578617096, 1.0623242855072021, -0.30001118779182434, -1.1843314170837402, -0.7621354460716248, 0.8719851970672607, -0.5297222137451172, -0.3276306092739105, -0.5053360462188721, 0.10218438506126404, -0.09255043417215347, 0.4837804138660431, -0.5009375810623169, -1.2976456880569458, -0.5108283758163452, -0.44907528162002563, -0.3826083838939667, -0.521337628364563, 0.3665682077407837, -0.09790810197591782, -0.6941621899604797, 0.014517505653202534, -1.0349246263504028, -0.28082016110420227, 0.1376040279865265, -0.5323244333267212, -0.27229830622673035, -0.6817211508750916, 0.5964270234107971, -0.32075512409210205, 1.7278969287872314, -1.213127851486206, 0.754491925239563, -0.5594972968101501, 0.04744010046124458, 1.3652361631393433, -0.39029932022094727, -0.9625536799430847, 0.787190854549408, 0.29716041684150696, -1.638767123222351, 0.017138736322522163, 0.2549121379852295, -0.46535465121269226, 0.26275238394737244, 0.020476682111620903, 0.6726825833320618, 0.790407121181488, 0.2706238329410553, 0.3091830313205719, 0.21481910347938538, -0.986110270023346, -0.07905810326337814, -0.3572339117527008, 0.5393883585929871, -0.12977546453475952, -0.7793175578117371, 1.1137893199920654, 0.7425740361213684, -0.9360461831092834, -0.07774105668067932, -0.0503075011074543, -0.3017916977405548, -0.052580732852220535, 1.6790940761566162, 0.5552127957344055, 0.1764427274465561, 0.27044010162353516, -0.7549957036972046, -0.7949334383010864, 0.4919065833091736, 1.3662703037261963, -0.407819002866745, 0.43830862641334534, 1.6993573904037476, 1.1992107629776, 0.1377868503332138, 0.1215856522321701, 0.4438161253929138, -0.05240321159362793, -0.5634496212005615, -0.7863461971282959, 0.34546276926994324, -1.0506172180175781, 1.0068838596343994, 0.6986384391784668, -0.735052764415741, -0.8421558141708374, 0.1438516080379486, -0.1515084207057953, -0.578880250453949, -0.8708451986312866, -0.38435158133506775, -0.3300357460975647, -0.04915918782353401, 0.1723911166191101, -0.022562328726053238, -0.029402798041701317, 0.21788261830806732, -0.9054563045501709, -0.7481980323791504, -0.23460374772548676, 0.6905785799026489, -0.15270397067070007, 1.288449764251709, -0.5917378067970276, -1.5346674919128418, -0.2819984555244446, 0.061902642250061035, 0.8594236969947815, 0.2729814052581787, -0.6170285940170288, -0.11593996733427048, 0.32282623648643494, -0.34302404522895813, 0.6633561253547668, 0.04462987929582596, 0.4348137676715851, 0.017683817073702812, 0.025532543659210205, 0.8104696273803711, 0.9549503922462463, -0.7910693883895874, -1.4875832796096802, -0.05836310237646103, 0.1759985089302063, 1.0051599740982056, 0.6051481366157532, 0.6548299193382263, 0.20201575756072998, -0.6423584222793579, -0.8680848479270935, -0.10372292995452881, -0.7151662707328796, -0.6489991545677185, -0.8457215428352356, -0.715534508228302, -0.23710547387599945, -0.1068524494767189, -0.03278028592467308, 1.0171564817428589, 0.06959261745214462, 0.6896021962165833, 1.3978790044784546, -0.5672703981399536, -0.6061393618583679, -0.1300804615020752, 0.3184666335582733, -1.1271706819534302, 0.5954163074493408, 1.3206405639648438, -1.5060230493545532, -0.6460133194923401, -0.4422643780708313, 0.03681860864162445, -0.5730381608009338, 0.2123924046754837, -0.3311940133571625, -1.1054514646530151, -0.8132855892181396, -0.1899007111787796, 1.001909852027893, -0.5232822895050049, 0.3192318379878998, -0.5945964455604553, 0.2968616485595703, 0.8749769926071167, -0.17431806027889252, -0.42200618982315063, 0.4689674973487854, -0.7449824810028076, -0.769957423210144, -0.5218564867973328, 0.25933778285980225, 1.5799952745437622, -0.45882710814476013, -0.5617051720619202, -0.7480464577674866, 0.4190049469470978, -0.21595542132854462, 0.3527986705303192, -0.2863916754722595, 0.7623932957649231, -0.0027284277603030205, -0.1729700118303299, 0.8004288077354431, -0.11178229004144669, -0.18529869616031647, -1.2415571212768555, 0.3869352638721466, 0.49797555804252625, 0.9276190996170044, -0.18568868935108185, 0.755973756313324, 0.32934603095054626, 0.16104422509670258, 0.2121131867170334, 0.5857518911361694, 1.1674331426620483, -0.03676112741231918, -0.36383670568466187, -0.5896072387695312, -0.6619505286216736, -0.018521619960665703, -0.6746865510940552, 0.13586625456809998, 0.2822858393192291, -0.9299793243408203, -0.6642640829086304, 0.7846919298171997, 0.6515389680862427, -0.03240605816245079, -0.08476271480321884, 0.12402061372995377, 0.8537225127220154, -0.16936571896076202, -0.29546573758125305, -0.2760045826435089, 0.3766329288482666, 0.6409080028533936, -1.5674262046813965, 0.28945937752723694, 0.255682110786438, 0.2669807970523834, 0.5434024930000305, -0.8712978363037109, 0.11624662578105927, -0.4316636025905609, 0.3645147979259491, 0.7678184509277344, 0.029643375426530838, 0.17946885526180267, -0.04125203564763069, 0.1556069254875183, -0.2757226526737213, -0.0009713852778077126, 1.2906922101974487, -0.34439000487327576, 0.10170125216245651, -0.16375622153282166, -0.14707794785499573, -0.6718043088912964, -0.1478005349636078, -0.45539596676826477, 0.48428118228912354, -0.18099655210971832, 0.7917231321334839, 0.40884625911712646, -0.22421365976333618, 0.9982113838195801, -0.004923101980239153, 0.7484694123268127, 0.9320806264877319, 0.27514851093292236, -1.432821273803711, -0.4181910753250122, 0.15149396657943726, -0.25633588433265686, -1.2022221088409424, -0.7795764207839966, 0.18536770343780518, 0.31146496534347534, 0.1936621516942978, 0.027174359187483788, 0.6568194031715393, 0.4829258918762207, 0.060606949031353, 0.03578454256057739, 0.6012817025184631, 0.9215062260627747, 1.0010809898376465, 0.4110986888408661, -0.143641859292984, -1.1087698936462402, 0.875560998916626, -1.2190407514572144, 0.09938657283782959, 0.46377718448638916, -0.07816727459430695, 0.9879717230796814, -1.2367697954177856, -0.3341219425201416, 0.625045657157898, -0.03579201176762581, 0.4767037630081177, 0.6615999341011047, -0.48928430676460266, 0.36733463406562805, 0.5950943827629089, -0.2960995137691498, -0.5438185930252075, 0.3246203064918518, -0.15124687552452087, 0.040042806416749954, 0.743457019329071, -0.9852390289306641, 0.9047005772590637, -0.9020677804946899, -0.4366312623023987, -0.5283105373382568, -0.46307000517845154, 0.42792338132858276, 0.17534495890140533, -0.08231165260076523, 1.2524513006210327, -0.05874139443039894, -1.0363754034042358, -0.05980587378144264, -0.5312548875808716, 0.5199055075645447, -0.42625850439071655, -0.5723546147346497, -0.14504240453243256, -0.5885515213012695, 0.2698417901992798, 0.9218564033508301, -0.6785215735435486, -0.1781175434589386, -0.24496671557426453, -1.6866037845611572, 0.013640522956848145, 0.27014878392219543, 1.1194919347763062, 0.6333684325218201, -0.4151111841201782, 0.4590245187282562, 0.6538079380989075, -1.1724302768707275, 0.1351732462644577, 0.3366554379463196, -0.4300615191459656, -0.42835062742233276, -1.287503957748413, -0.5059044361114502, 1.0661108493804932, 0.807515025138855, -0.13012942671775818, 0.2980881929397583, 1.0550698041915894, 1.4484394788742065, -0.26129716634750366, -0.13152047991752625, 0.7205493450164795, -0.35648924112319946, 0.23053069412708282, 0.6570132970809937, -0.008349809795618057, -0.3678499758243561, -0.7074211835861206, -1.8485291004180908, 0.7129113078117371, -0.519183337688446, -0.6190979480743408, 1.1408069133758545, 0.6176238059997559, 0.7867937684059143, 0.20219603180885315, -0.5444259643554688, 0.2820621132850647, 0.12122189998626709, 0.1360563039779663, -1.5216646194458008, 0.27906641364097595, 0.506258487701416, -0.4165571331977844, 0.15797750651836395, -0.10242167115211487, -0.1912005990743637, -0.6846937537193298, -0.2155650109052658, 0.48054346442222595, 0.35689398646354675, 0.28129222989082336, 0.48466014862060547, -0.3540821075439453, 0.3330104947090149, -0.5787815451622009, -0.9055835008621216, 0.2824101448059082, 0.6702770590782166, 0.5127533674240112, -0.622739851474762, -0.19960016012191772, -0.012654340825974941, -0.03917400911450386, -0.16835783421993256, -0.7701234817504883, 1.013226866722107, 0.23178087174892426, -0.2112000584602356, -0.3894290030002594, -0.5127435922622681, -0.31206586956977844, -0.5716086030006409, 0.36741235852241516, 0.3718002438545227, -1.5295112133026123, 0.013336212374269962, 0.36746373772621155, -0.8094426989555359, -0.2686251401901245, -0.10070651024580002, 0.5963056087493896, -0.9319296479225159, -0.5529571175575256, -0.7326639294624329, 0.6081287264823914, 0.737280547618866, -0.4040399491786957, 0.6978673934936523, 0.7727034687995911, -1.409510612487793, 0.44052091240882874, 0.30862048268318176, -0.8307693004608154, 0.08769655972719193, -1.272884726524353, 0.754736602306366, -0.16507290303707123, 0.23800736665725708, -0.061387017369270325, 1.6221545934677124, -1.3637794256210327, -0.5103985071182251, -0.98374342918396, 0.10340876877307892, 1.1313689947128296, 1.0435782670974731, -0.19796739518642426, 1.0952953100204468, 0.7303349375724792, -1.017189860343933, -0.028401857241988182, -0.10565095394849777, -0.6615384221076965, 0.4383907616138458, 0.4558967351913452, 0.3688057065010071, 0.4640614986419678, 1.494846224784851, 0.1931179016828537, 0.6166942119598389, 0.4229682683944702, 1.3507643938064575, -1.2228933572769165, -0.32641321420669556, 0.24100039899349213, 0.5139521956443787, -0.7440794706344604, -1.1815953254699707, -0.1045801118016243, -0.7589271664619446, -0.7573317885398865, 0.3972143232822418, 0.27664873003959656, -0.608190655708313, -0.29785048961639404, -0.040723297744989395, 0.5170796513557434, -0.4233982264995575, 0.36507776379585266, 0.36523979902267456, -0.20566248893737793, -0.39831969141960144, 0.62625652551651, -0.4921216666698456, -1.837116003036499, 0.40285688638687134, 0.6305745840072632, 0.48441725969314575, -0.6745423078536987, 0.36442285776138306, 0.49986422061920166, 0.1225128173828125, -0.5913260579109192, 1.4407618045806885, 1.3125909566879272, -0.9261640906333923, 0.07208440452814102, 0.5946183800697327, 0.29107168316841125, 0.08718232810497284, -0.7867512106895447, -1.043257474899292, -0.8161843419075012, 0.7998484373092651, 0.5085076689720154, 0.13694727420806885, -0.4299597442150116, 0.18988071382045746, 0.10666681826114655, 0.17549192905426025, 1.0603926181793213, -1.1690526008605957, -0.5264047384262085, 0.45648589730262756, 0.17067596316337585, 0.2044835090637207, 0.8313398361206055, 0.3921031951904297, 0.8484909534454346, -0.6007767915725708, 0.07813427597284317, 1.0489864349365234, -0.8333816528320312, 0.14057795703411102, 0.022272519767284393, -0.8520503044128418, 0.3815549910068512, -0.15956465899944305, -1.6466693878173828, 0.1313883513212204, -0.6255310773849487, -0.96354740858078, 0.2688208222389221, -1.1019372940063477, -0.7384890913963318, 0.4322347342967987, -0.11941927671432495, 0.036213867366313934, -0.6296105980873108, 0.4298686683177948, 0.006603708956390619, 0.2927655875682831, 1.2613826990127563, -0.4415152370929718, 0.8011163473129272, -0.3162899613380432, -0.3427336812019348, -1.7419034242630005, 0.4552565813064575, -0.07053724676370621, 0.3840051591396332, -0.6466817855834961, -0.08200104534626007, -0.16534258425235748, -0.20568497478961945, -0.49233341217041016, 0.4930437505245209, -0.38738712668418884, 0.3392791450023651, 0.6558170914649963, -0.319947749376297, -0.9171062111854553, 0.3178272247314453, 0.7039527893066406, -0.15048128366470337, -0.7037985324859619, -0.37274256348609924, -0.3240579068660736, -0.06992074847221375, 0.9478099346160889, 0.048167407512664795, 1.0039992332458496, 0.16811442375183105, -0.40129774808883667, -0.31423085927963257, -0.9295132160186768, 0.5617550611495972, -0.9760094285011292, 0.5315940380096436, -0.6186608076095581, -0.39129725098609924, -0.21295146644115448, -0.6033167839050293, 0.6972644329071045, 0.8647212386131287, -0.09541777521371841, 0.07909313589334488, -0.9700567722320557, -0.8174899220466614, -0.4017753601074219, 0.04471824690699577, 1.1843539476394653, 0.3203049302101135, -0.03442711755633354, -0.038286514580249786, -0.88640958070755, 0.27989116311073303, -0.028285518288612366, -0.3017543852329254, -0.0950838252902031, 0.9656713604927063, 1.7933372259140015, 0.48112210631370544, 0.42965537309646606, 0.07469786703586578, 0.5968982577323914, -0.24530011415481567, -0.2842484414577484, -0.4399813115596771, -0.8960545659065247, 0.3499375879764557], [0.10801251232624054, 1.7401522397994995, -2.004685163497925, -0.013756264932453632, 0.46990564465522766, -0.09817343950271606, 1.0337167978286743, -0.7275130748748779, 0.06275860220193863, -0.9594452381134033, -0.041161082684993744, 0.002737252041697502, 1.0470868349075317, 0.9073339104652405, 0.06230712682008743, 0.2721346616744995, 0.6164716482162476, -0.5832828879356384, 0.4377419948577881, 0.6583498120307922, -0.05294511839747429, -0.7676753401756287, 0.3792605400085449, 0.6497117280960083, -0.5750406384468079, 0.11493223160505295, -1.1959681510925293, -0.355874627828598, -0.42068973183631897, -0.28657102584838867, 0.617831826210022, -0.5199248194694519, -0.09212622046470642, 0.796649158000946, -0.9034935832023621, -0.9956817030906677, 1.2648956775665283, 1.1272697448730469, 0.5215920805931091, 0.9303048253059387, 1.961841344833374, -0.13033883273601532, -0.26226767897605896, -1.2785544395446777, 0.20684336125850677, -0.03878951817750931, 0.9396726489067078, -1.1952977180480957, 1.079596757888794, -0.2160481959581375, 0.16004779934883118, -0.371097594499588, 0.2386314570903778, 1.130516529083252, 1.0556528568267822, 0.24282494187355042, 0.23902598023414612, -0.38138964772224426, 1.1875102519989014, -0.30475884675979614, 1.088246464729309, -0.4114841818809509, 0.04692479968070984, 1.03854238986969, -0.01849622093141079, -0.7731118202209473, -0.18290138244628906, -0.054048653692007065, 0.3973965048789978, -0.31569191813468933, 0.8083475828170776, -0.40772777795791626, -0.5355914235115051, 0.607290506362915, -1.4212182760238647, 0.43492385745048523, 0.9969441890716553, 0.7605239152908325, 0.011025622487068176, 0.6093167066574097, -0.02329808659851551, -0.2535631060600281, 0.7433437705039978, -0.48467499017715454, -0.2570962607860565, -0.32314810156822205, -0.11344855278730392, 0.2023288607597351, -0.33540791273117065, 1.5074325799942017, 0.8763335943222046, -0.16716663539409637, 0.3543393909931183, -0.33623939752578735, 0.11790471524000168, -0.1457562893629074, 1.1417365074157715, 0.02808462455868721, -0.5720534920692444, -0.7655102014541626, -0.792769193649292, -0.49629002809524536, 0.36323001980781555, -0.17114640772342682, 0.20714043080806732, 1.512047290802002, 0.0009512528777122498, -0.40133482217788696, -0.29975777864456177, -0.25598809123039246, -0.6401874423027039, -0.3543626070022583, -1.1671040058135986, -1.1768426895141602, -0.6768673658370972, 0.9605981707572937, 0.785286545753479, -0.17791502177715302, 0.5244778990745544, 0.9009268283843994, 0.01819670759141445, -0.5757376551628113, -0.12253886461257935, 0.3224334716796875, 0.387971967458725, 0.384628027677536, -0.1739397495985031, -0.6393897533416748, -0.2890353500843048, 0.26819658279418945, 0.8214815855026245, -0.10562773793935776, -0.6168711185455322, 0.8173802495002747, -0.28828299045562744, 1.228018879890442, -0.8340940475463867, -0.04660706967115402, 0.3593929409980774, -0.03898192197084427, 0.5136744976043701, -0.8579070568084717, -0.7633877396583557, -0.49234798550605774, -0.2947230637073517, -0.17913416028022766, 0.11236213147640228, -0.16316808760166168, -0.7053623795509338, -0.2889974117279053, -1.0708112716674805, 0.4124296307563782, 0.7504978775978088, 0.11623312532901764, 0.11777595430612564, -0.4069848358631134, -0.11274606734514236, -0.036096516996622086, 0.47387465834617615, 0.21128080785274506, 0.38859453797340393, 0.2780325412750244, -1.11577308177948, 1.531077265739441, -0.014412112534046173, -0.2923133969306946, -0.07846318185329437, 0.7512256503105164, 0.17025789618492126, 1.0332809686660767, -0.8297569751739502, -0.31964603066444397, -0.37630075216293335, 0.2468092441558838, 0.7946517467498779, -0.902556836605072, 1.7031571865081787, -0.8692577481269836, -0.6985952258110046, -1.4133952856063843, 0.6264949440956116, -0.7505237460136414, 0.37732893228530884, -0.10295719653367996, -0.10911288857460022, -0.5864593982696533, 0.2353944480419159, -0.7103467583656311, -0.8502374887466431, 0.3109040856361389, -0.24498458206653595, -0.4034404754638672, -0.8538030982017517, 0.07205609232187271, -0.2909931540489197, -0.7112600207328796, 0.6529890894889832, -0.7724153995513916, -1.2493230104446411, -0.10407561808824539, 0.11412355303764343, -0.45475736260414124, -0.7403374910354614, 0.3752003312110901, -0.5344462394714355, 1.3770086765289307, -1.3175843954086304, 0.8744733929634094, -0.4042850434780121, 0.3822861611843109, 0.9417547583580017, -0.19853194057941437, -0.32560184597969055, 0.8140034079551697, -0.22872687876224518, -1.341357946395874, 0.8273959159851074, 0.2700549364089966, -0.5059314966201782, 0.4126582741737366, 0.6338122487068176, 0.10626190155744553, 0.18265976011753082, 0.05084032565355301, 0.6049526929855347, -0.2111956626176834, -0.3948642909526825, -0.8485051393508911, -0.30226826667785645, 0.6413218379020691, -0.5846388339996338, -1.177329421043396, 1.1982091665267944, 0.7965415120124817, -0.5674648284912109, 0.39337870478630066, -0.11471656709909439, 0.2070888727903366, 0.21035675704479218, 0.6619669795036316, 0.6380754113197327, 0.6249905824661255, 0.09116952121257782, -0.7682010531425476, -0.8708110451698303, -0.2560720443725586, 0.4169076979160309, 0.41615456342697144, 0.3269367516040802, 0.8974785804748535, 1.0648773908615112, 0.10369407385587692, 0.1445799022912979, 0.987510085105896, 0.38433486223220825, -0.7161148190498352, -0.8677762150764465, 0.4417758584022522, -0.8190637826919556, 0.6375711560249329, 1.039402961730957, -0.7823986411094666, -0.49345189332962036, -0.3289353549480438, 0.07798880338668823, -0.3394383192062378, -1.0905482769012451, -0.8244019746780396, -0.5032138228416443, -0.008694642223417759, 0.007830934599041939, 0.8861221671104431, -0.15216746926307678, 0.5764645934104919, -0.33377012610435486, -0.14516404271125793, -0.2683849334716797, 0.5561696290969849, 0.025772955268621445, 0.9186933636665344, -0.5569642186164856, -1.2386317253112793, -0.5361276865005493, 0.5771404504776001, 0.35496577620506287, 0.02576231025159359, 0.052800845354795456, 0.35074323415756226, 0.29581794142723083, -0.6537510752677917, 0.2731890380382538, -0.16892191767692566, 0.06690704077482224, -0.04349164664745331, 0.011032402515411377, 0.5366957187652588, 0.23649117350578308, -0.6834043860435486, -0.8222976326942444, -0.007139451336115599, 0.35363543033599854, 0.5184109807014465, 0.1928253173828125, 0.6825733780860901, -0.3045707643032074, -0.10357116162776947, -0.6443458199501038, -0.06737066060304642, -1.137366533279419, -0.012035202234983444, -1.1167898178100586, -1.1685371398925781, -0.019353477284312248, 0.09815815091133118, -0.25492480397224426, 0.7408860921859741, -0.48711898922920227, 0.9044485092163086, 0.8972805142402649, -0.8493083715438843, -0.6182687878608704, -0.3122641146183014, 0.07758362591266632, -1.0421996116638184, 0.5607411861419678, 1.1039438247680664, -0.42242130637168884, -0.7920158505439758, -0.041192006319761276, 0.23801745474338531, 0.30481860041618347, -0.47042980790138245, -0.4561900794506073, -1.4186221361160278, -0.737011730670929, 0.23527905344963074, 1.098156452178955, -0.2905939817428589, 0.4218972623348236, -0.5900270938873291, 0.7805193662643433, 1.0995358228683472, 0.031505733728408813, -0.9009912014007568, 0.2454940229654312, -0.5770244598388672, -0.5268307328224182, -0.1506161093711853, 1.351220726966858, 0.6452804207801819, -0.7073574662208557, -0.2869483530521393, -0.21308736503124237, -0.11972580850124359, -0.44463226199150085, 0.46407562494277954, -0.1309611052274704, 0.48656198382377625, -0.5893849730491638, -0.3361823558807373, 0.15127301216125488, -0.12886810302734375, -0.3050435781478882, -1.7562625408172607, 0.11956152319908142, -0.08256423473358154, 1.0796821117401123, 0.2602229416370392, 0.3797282576560974, 0.02091595157980919, 0.2722172439098358, 0.28837350010871887, -0.22750426828861237, 1.3126158714294434, 0.24354209005832672, 0.24104365706443787, -0.8451530337333679, -0.6258048415184021, -0.13075995445251465, -1.0786837339401245, 0.027880549430847168, 0.2605611979961395, -0.6628673076629639, -0.3449086844921112, 0.9223315119743347, 0.32291293144226074, -0.3343217372894287, -0.13160528242588043, 0.3409169316291809, 0.025871388614177704, 0.06577689945697784, -0.09256428480148315, -0.4311670660972595, -0.4276534616947174, -0.10644099116325378, -1.6818304061889648, -0.22990165650844574, 0.3223208785057068, 0.2132495939731598, 0.7453029751777649, -1.2918957471847534, 0.3808995187282562, -0.7912184000015259, 0.5450199246406555, 0.7460896968841553, 0.01996104046702385, 0.6355336904525757, -0.09285186231136322, 0.05010610073804855, -0.24443523585796356, 0.13749198615550995, 1.3882039785385132, -0.44234102964401245, -0.16063635051250458, -0.33362969756126404, -0.20869790017604828, -0.24662631750106812, -0.8572916984558105, -0.3187721073627472, 0.038675080984830856, -0.3701474964618683, -0.20343232154846191, 0.3282511532306671, 0.09861112385988235, 1.1134803295135498, 0.3710140883922577, 0.5801358819007874, -0.2816110849380493, -0.634441614151001, -0.44802114367485046, -0.09773337095975876, -0.022662481293082237, -0.24158433079719543, 0.03419005498290062, -0.4585174322128296, 0.3439682126045227, 0.28189417719841003, 0.5950731635093689, 0.7359358668327332, 0.9311003684997559, 0.40898844599723816, 0.2680285573005676, -0.3138572573661804, 0.24801446497440338, 0.45715054869651794, 1.2755014896392822, 0.005973958410322666, 0.016802119091153145, -0.9432833790779114, 1.1459347009658813, -1.535841941833496, -0.0013031763955950737, 0.25520938634872437, 0.22471995651721954, 1.636498212814331, -1.7709736824035645, -0.6002069115638733, 0.27009040117263794, 0.5187397599220276, 0.058323848992586136, 0.21238034963607788, -0.6634615659713745, -0.30559858679771423, 0.721740186214447, 0.12489597499370575, -0.049410950392484665, 0.43211573362350464, -0.7939012050628662, -0.37689757347106934, 0.6266393661499023, -0.6827001571655273, 0.327294260263443, -0.394898384809494, 0.10623566061258316, -0.5883302688598633, -0.2110442966222763, 0.3156891167163849, 0.3466353416442871, -0.1988985389471054, 0.2973625957965851, -0.9410373568534851, -0.9579915404319763, 0.030708782374858856, -0.5836580991744995, 0.5566057562828064, -0.5715861916542053, 0.13908806443214417, -0.6285477876663208, -0.9823972582817078, -0.029419776052236557, 0.9172491431236267, -0.44280990958213806, -0.46748629212379456, 0.03266741707921028, -1.3130459785461426, -0.30391383171081543, 0.49524497985839844, 1.2200661897659302, 1.0066163539886475, -0.36572200059890747, 1.182149887084961, 0.6659702658653259, -1.3205769062042236, 0.006272770464420319, 0.3695535659790039, -0.4000898599624634, -0.6173727512359619, -1.392958402633667, -1.1210384368896484, 0.22945457696914673, 0.03151427581906319, 0.09704206138849258, 0.618180513381958, 0.9033966660499573, 1.3970578908920288, -0.022139428183436394, -0.8767309784889221, 1.3358255624771118, -0.41851356625556946, 0.6863635778427124, 0.948106586933136, -0.7170662879943848, -0.5349456071853638, -0.4348243474960327, -1.2362866401672363, 1.4556320905685425, -0.08008792251348495, -0.6863674521446228, 1.2079120874404907, 0.44913753867149353, 0.25276291370391846, 0.2440376579761505, -0.7053561806678772, 0.023744763806462288, 0.16696318984031677, 0.5823046565055847, -1.1198527812957764, 0.13075894117355347, 0.8936587572097778, 0.07643261551856995, 0.03480914607644081, 0.35109543800354004, -0.17440146207809448, 0.021161291748285294, 0.6180580258369446, -0.29909607768058777, 0.5905869603157043, 1.0578397512435913, 1.1830121278762817, -0.9151061773300171, 0.44486042857170105, -0.6839634776115417, -0.4599032700061798, 0.05466612055897713, 0.4701465368270874, 0.1403607726097107, -0.21517124772071838, 0.24372999370098114, -0.4117335379123688, -0.6898625493049622, -0.5081716179847717, -1.0494604110717773, 0.6559800505638123, 0.16188335418701172, -0.45316964387893677, 0.010348235256969929, -0.06762449443340302, -0.6298923492431641, 0.11395513266324997, 0.3974166214466095, 0.4552866816520691, -1.4533677101135254, 0.2518029808998108, 0.4275006949901581, -0.3116087019443512, 0.04663268104195595, 0.002955838805064559, 0.05312925949692726, -1.0363030433654785, -0.9954673647880554, -1.049862265586853, 0.40802326798439026, 0.7952602505683899, -0.38218164443969727, 0.10834471881389618, 0.9291192293167114, -1.31931471824646, 0.15606819093227386, 0.035494960844516754, -1.110870361328125, 0.06836442649364471, -1.3262085914611816, 0.9970922470092773, -0.01894642785191536, 0.38345175981521606, 0.09538228064775467, 1.2597792148590088, -0.8955082297325134, -0.729472815990448, -1.0431795120239258, 0.03536071255803108, 1.0215129852294922, 1.274376630783081, -0.5197412371635437, 0.884963870048523, 0.0902925655245781, -0.3064115345478058, -0.5738537907600403, -0.20084501802921295, -0.5982933640480042, 0.42901936173439026, 0.12001208961009979, 0.2739903926849365, 0.30975890159606934, 0.6353069543838501, 0.6312077045440674, 1.0753393173217773, -0.023620540276169777, 1.320803165435791, -1.1154483556747437, -0.11627896875143051, 0.43464216589927673, 0.39162319898605347, -1.2366714477539062, -1.1019419431686401, -0.16668638586997986, -0.5098460912704468, -0.5198227167129517, 0.269309937953949, 0.6133402585983276, -0.5925387740135193, 0.02746567130088806, -0.3722062110900879, 0.4054059386253357, -0.13296225666999817, 0.08089376240968704, -0.31518790125846863, -0.02888556197285652, -0.2027217298746109, 0.4293847978115082, 0.14140260219573975, -1.6945128440856934, -0.12096085399389267, 0.6072260141372681, 0.3002909719944, -0.8209370970726013, 0.5617448091506958, 0.45964619517326355, 0.5385533571243286, -0.5153942704200745, 1.6742804050445557, 0.9171797633171082, -0.5163480043411255, -0.1009453758597374, 0.49926355481147766, 0.09723276644945145, 0.5463661551475525, -1.3209342956542969, 0.4617544710636139, -0.9750621914863586, 0.8820978403091431, 0.6482841372489929, 0.4992206394672394, -0.3331625759601593, 0.4376950263977051, -0.3864971101284027, 0.3330962061882019, 0.568320095539093, -1.2264131307601929, -0.2757630944252014, 0.8823752403259277, 0.4439452588558197, -0.5393132567405701, 0.18164031207561493, 0.41483303904533386, 0.5316603779792786, -0.5040627121925354, 0.04802648723125458, 1.0137578248977661, -0.6151056885719299, 0.5535139441490173, 0.11976093798875809, -0.6868206262588501, 0.2605084180831909, -0.5458053350448608, -0.8469961285591125, -0.43180879950523376, -0.7393752932548523, -1.5558979511260986, 0.4943247139453888, -1.1138986349105835, -0.8502416610717773, 0.4136356711387634, -0.27209874987602234, -0.12560568749904633, -0.03488307073712349, 0.11678367853164673, -0.25203123688697815, -0.32788437604904175, 0.7118555307388306, -0.5496906042098999, 1.200585126876831, 0.2631281018257141, 0.024570157751441002, -0.9931600093841553, 0.11211524158716202, 1.0037070512771606, -0.2403661012649536, -0.2147376984357834, 0.6082332730293274, -0.0022877678275108337, 0.13183265924453735, 0.23164524137973785, 0.039705466479063034, -0.054880138486623764, 0.7428910136222839, 0.7404381632804871, -0.3402714729309082, 0.0028741154819726944, 0.08290069550275803, 0.3493387699127197, -0.18852366507053375, -0.2506430149078369, -0.693641722202301, -0.1162959560751915, -0.42433908581733704, 0.05701172724366188, -0.5838339924812317, 0.46727070212364197, 0.42421942949295044, -0.736735463142395, 0.03290907293558121, -0.795698881149292, 0.5687485337257385, -0.7042875289916992, 0.8362991213798523, 0.2916830778121948, 0.12072327733039856, 0.05686409771442413, -0.5818049907684326, 0.5294286608695984, 0.6459257006645203, 0.03884623199701309, 0.14437063038349152, -0.782994270324707, -0.8032065629959106, -0.5650615692138672, 0.5371084809303284, 1.6286554336547852, 0.28220224380493164, 0.20231737196445465, 0.3451188802719116, -0.5822598934173584, 0.383114755153656, -0.0554957278072834, 0.07330925017595291, 0.3262375593185425, 1.4966890811920166, 1.8064745664596558, 0.5958225131034851, 0.6060192584991455, 0.2368721216917038, 0.548785388469696, -0.6195372939109802, -0.8588204383850098, -0.5887480974197388, -0.3174104392528534, -0.0767427384853363], [0.2624015212059021, 1.478757619857788, -2.4849510192871094, -0.3478687107563019, 1.043252944946289, 0.8166347146034241, 1.3748162984848022, 0.05148276314139366, 0.6020443439483643, -0.46565842628479004, 0.0519840307533741, -0.1789296567440033, 0.718146026134491, 1.1136423349380493, -0.10148387402296066, 0.8411595225334167, 0.7561543583869934, -0.9999678730964661, 0.8331830501556396, 0.7293510437011719, -0.3187803030014038, -0.008703858591616154, 0.30912813544273376, 0.13834969699382782, -0.6564419865608215, -0.08616037666797638, -1.3353486061096191, -0.32994967699050903, -0.1576271653175354, -1.3836101293563843, 1.066054105758667, -0.5544627904891968, -0.4900217354297638, -0.24361561238765717, -0.7317301034927368, -0.5431115627288818, 1.6287397146224976, 1.308882474899292, 0.8404388427734375, 1.0196775197982788, 1.5892982482910156, -0.16608360409736633, -0.05397574603557587, -1.5804626941680908, 0.12278886884450912, -0.45654740929603577, 0.6548374891281128, -1.08904230594635, 0.6682493090629578, -0.550342857837677, 0.36558082699775696, 0.44251829385757446, 0.8014483451843262, 0.8619442582130432, 0.17619486153125763, 0.5399944186210632, -0.048969198018312454, -0.17937082052230835, 2.0705766677856445, -0.6231793761253357, 1.1514588594436646, 0.16530002653598785, 0.10013396292924881, 0.24468675255775452, 0.33505427837371826, 0.029211068525910378, -0.7622979283332825, 0.9677170515060425, 0.3689159154891968, -1.1224136352539062, 0.5476427674293518, 0.28843414783477783, 0.06386956572532654, 0.7236948609352112, -1.8876762390136719, 0.8281145095825195, 0.5627033114433289, 1.043967604637146, 0.13995444774627686, 0.849648654460907, -0.38961854577064514, -0.19371679425239563, 0.8960064649581909, -0.19408728182315826, 0.6995401978492737, -0.41886165738105774, 0.3931300938129425, -0.771913468837738, -0.4092974066734314, 1.3020496368408203, 0.03943462669849396, -0.09989827871322632, 0.37519586086273193, -0.448026567697525, 0.13841426372528076, -0.41087499260902405, 0.5429008603096008, 0.008024636656045914, -0.9044497013092041, -1.0733882188796997, -0.9620575308799744, -0.843664824962616, -0.5152467489242554, -0.29681187868118286, -0.7091808319091797, 1.5514250993728638, 0.319512277841568, 0.37527748942375183, 0.19737392663955688, 0.30594614148139954, -0.7138950824737549, -0.4859659969806671, -0.487746000289917, -0.9115239381790161, -0.8098945021629333, 0.44589248299598694, 1.040587306022644, -0.401591956615448, 0.75066077709198, 1.2183631658554077, -0.5162286758422852, 0.46717071533203125, -0.3324207365512848, 0.5446309447288513, 0.2709965705871582, 0.65218186378479, -0.7129713296890259, -0.8893372416496277, 0.5049474835395813, -0.1405859887599945, 0.7702723145484924, 0.1059018224477768, -0.3238271176815033, 0.9899681210517883, -0.7852070331573486, 0.924942672252655, -0.043105050921440125, -0.27982082962989807, 0.32816800475120544, -0.2752861976623535, 0.11282496154308319, -0.25346052646636963, -0.5545422434806824, -0.5159963965415955, -0.02264379896223545, -1.1150853633880615, -0.08845128864049911, -0.11211808770895004, -0.7848736643791199, -0.03278520330786705, -0.5588028430938721, 0.6323474049568176, 0.6354861855506897, 0.8185372948646545, 0.5147333741188049, -0.34586429595947266, 0.3499945402145386, 0.14142154157161713, 0.5281873941421509, 0.1156000867486, 0.470119446516037, -0.1318068504333496, -0.9280646443367004, 1.1468929052352905, 0.042547378689050674, -0.5052033066749573, 0.9580056667327881, 0.48998603224754333, 0.3767263889312744, 0.674286961555481, -1.0010074377059937, 0.07227948307991028, -0.6469976902008057, 0.21925824880599976, -0.26446011662483215, -0.23892736434936523, 0.787628173828125, -1.514567494392395, -1.3394633531570435, -0.5245693325996399, 0.6887292861938477, -0.8274527788162231, 0.35356074571609497, 0.4743536114692688, 0.7488804459571838, -0.5430992841720581, 0.3391479551792145, 0.05589867755770683, -0.6011093854904175, -0.8797019720077515, -0.41957953572273254, -0.5728978514671326, -0.8890525102615356, 0.04113377258181572, -0.04897518828511238, -0.47351208329200745, 0.2826786935329437, -1.3771278858184814, -0.6952084898948669, -0.40771743655204773, -0.4475068151950836, -0.5709606409072876, -1.1429575681686401, 0.872765839099884, -0.3192250728607178, 0.8634790778160095, -1.055463433265686, 1.0756175518035889, -0.7020883560180664, -0.03565725311636925, 0.4080994129180908, -0.0948449969291687, 0.06660331785678864, 0.6086380481719971, -0.7858341932296753, -1.2567836046218872, 1.0164008140563965, -0.0015497393906116486, -0.28163111209869385, 0.39672866463661194, 0.2737213373184204, 0.4585283696651459, 0.05062964931130409, -0.07019808888435364, 0.4521341919898987, 0.18854759633541107, -1.2088500261306763, -0.8597833514213562, -0.5546852350234985, 0.25594794750213623, -0.5893504619598389, -0.7092527151107788, 0.8212499618530273, 0.14181070029735565, -0.2058515101671219, 0.15085969865322113, -0.5040002465248108, -0.3079420328140259, 0.6390330195426941, 1.2936152219772339, 0.27955362200737, 0.4609842896461487, -0.31908687949180603, 0.10924877971410751, -0.1705697625875473, 0.6726192831993103, 0.7081126570701599, -0.11808700114488602, 0.08477992564439774, 1.444206953048706, 0.834803581237793, 0.29696762561798096, 0.4177016019821167, 0.05097868666052818, -0.3547806739807129, -0.6036457419395447, -1.042223334312439, 0.6233624815940857, -0.18610981106758118, 1.201638102531433, 0.5498614311218262, -0.6532349586486816, 0.11215724796056747, -0.11009734123945236, -0.4689174294471741, -0.4869863986968994, -0.810358464717865, 0.2156832069158554, -0.40469831228256226, -0.19602803885936737, 0.012266958132386208, 0.5294481515884399, -0.27372249960899353, 0.49235227704048157, -0.8539975881576538, -0.07805421948432922, 0.02234080620110035, 0.46101638674736023, 0.23854520916938782, 0.8905319571495056, -0.5038647055625916, -1.1299684047698975, -0.4345601499080658, -0.281109482049942, 0.9681785702705383, -0.05611153319478035, 0.4387713074684143, -0.403389573097229, 0.31162673234939575, -0.48775389790534973, 0.27014732360839844, -0.010148432105779648, -0.02742084674537182, 0.45489779114723206, -0.6194477081298828, 0.3055984377861023, 1.424221158027649, -0.5769718885421753, -0.7579941749572754, -0.5111896395683289, 0.824682891368866, 0.895017147064209, 1.2308685779571533, 1.4416857957839966, 0.3577919006347656, 0.12836073338985443, -0.2030058652162552, -0.44081494212150574, -0.8184372186660767, -0.7991872429847717, -0.5078191757202148, -0.6762086153030396, -0.37806978821754456, -0.06338418275117874, 0.14669662714004517, 0.6616639494895935, -0.1269146353006363, 0.8908211588859558, 1.542635440826416, -0.2066839188337326, -0.8120040893554688, 0.2221103310585022, -0.1496739536523819, -1.0251048803329468, 0.5724160671234131, 0.7044910192489624, -1.022097110748291, -0.8514164686203003, -0.656618595123291, 0.06214884668588638, 0.6756892204284668, 0.10004988312721252, -0.30732882022857666, -1.1848045587539673, -0.9576493501663208, -0.4601729214191437, 1.1796609163284302, -0.20242874324321747, 0.0791732668876648, -0.811670184135437, 0.07148965448141098, 0.15801948308944702, -0.7398173809051514, -0.8123195767402649, 0.7488853335380554, -0.7628440856933594, -0.38228097558021545, 0.2112068384885788, 0.25813010334968567, -0.15257516503334045, -0.6153128147125244, -0.14316925406455994, 0.13699625432491302, -0.07161487638950348, -0.2165609449148178, 0.7302780151367188, 0.13510718941688538, 1.077891230583191, 0.20974351465702057, -0.5175093412399292, 1.1168718338012695, -0.15983113646507263, -0.1535727083683014, -1.2018568515777588, 0.33737656474113464, -0.09076416492462158, 1.5068105459213257, 0.11303569376468658, 0.9752611517906189, 0.2808680534362793, 0.2745416760444641, 0.13526737689971924, 0.3585244417190552, 1.4154791831970215, 0.3229539394378662, -0.548845648765564, -0.34975412487983704, 0.005903742276132107, -0.005199737381190062, -0.7417136430740356, -0.7784575819969177, 0.38512396812438965, -0.43923717737197876, -1.271399736404419, 0.9204506874084473, 0.36010998487472534, -0.5579041838645935, -0.7065880298614502, -0.19038650393486023, 0.8326646089553833, 0.022538527846336365, 0.17455706000328064, -0.8377483487129211, 0.3479725122451782, -0.1850261688232422, -1.4240025281906128, 0.06573644280433655, 0.7894104719161987, 0.08159443736076355, 0.5071418881416321, -1.0388679504394531, 0.22272305190563202, -0.10918329656124115, 0.6941282153129578, 0.32049527764320374, -0.5549417734146118, 0.17449960112571716, 0.07603368908166885, 0.5532093644142151, 0.12868660688400269, 0.23960816860198975, 1.5379014015197754, -0.02558302879333496, -0.06141955405473709, 0.5762155055999756, -0.13075514137744904, -0.0031811995431780815, -0.5605348348617554, -0.6525914072990417, -0.0013317442499101162, -0.04918481037020683, 0.31172654032707214, -0.07259504497051239, -0.6218045949935913, 1.494405746459961, 1.3380173444747925, 0.40031424164772034, 0.7493155598640442, -0.3464108407497406, -0.4895746111869812, 0.34534889459609985, 0.6723459959030151, -0.0318727008998394, -0.9032614231109619, -0.3327111601829529, 0.030449645593762398, -0.4134844243526459, 0.5031440854072571, 0.09358684718608856, 0.8588635921478271, 0.15310679376125336, 0.38500139117240906, -0.34839004278182983, 0.03229888156056404, 0.6341962218284607, 1.7246989011764526, -0.05989157781004906, -0.13558828830718994, -0.7307185530662537, 0.7970162630081177, -1.3367395401000977, -0.2544417083263397, 0.5190500617027283, 0.7090532183647156, 1.2749872207641602, -1.9146728515625, -0.7873866558074951, 0.3929021656513214, 0.3968425393104553, 0.6621072888374329, 0.3840138018131256, 0.12471947073936462, -0.19467857480049133, 0.49765151739120483, 0.5520491003990173, -0.2880251407623291, -0.253378689289093, 0.07637662440538406, -0.08675935864448547, -0.12954504787921906, -0.7790033221244812, 0.7258589863777161, -0.519189178943634, -0.2740902006626129, -0.8343279361724854, -0.32784178853034973, 0.18866494297981262, 0.7330381274223328, 0.28151631355285645, 1.177242398262024, -0.07632016390562057, -0.4079296290874481, 0.601882815361023, -0.5507228374481201, 0.3021993041038513, 0.06080891191959381, -0.7437050342559814, -0.455559104681015, -1.1417838335037231, -0.19828657805919647, 0.4555739760398865, -0.8919369578361511, 0.07347877323627472, -0.43353062868118286, -1.4097758531570435, 0.004637557547539473, 0.9251989722251892, 1.156551718711853, 0.9232827425003052, 0.2176039218902588, 0.186819925904274, 0.9178867340087891, -0.842926561832428, -0.11287675052881241, 0.1718108206987381, -0.14195869863033295, 0.09658334404230118, -1.7123476266860962, -0.4114535450935364, 0.3179496228694916, 0.11964063346385956, -0.3033916652202606, 0.2901507318019867, 1.1561264991760254, 1.0083332061767578, -0.14297108352184296, -0.580247163772583, 0.28890660405158997, -0.9925051331520081, 0.1397813856601715, 0.5132163763046265, -0.7966015934944153, -0.0999758318066597, -0.4853486716747284, -0.9773833155632019, 0.7350562810897827, -0.7436516284942627, -0.7808681130409241, 1.1829878091812134, -0.08733881264925003, 0.2799917161464691, 0.4213060736656189, -0.3354288637638092, 0.3018556535243988, 0.6963522434234619, -0.276234894990921, -0.9527466297149658, 0.10575124621391296, 0.5261749625205994, 0.49660754203796387, -0.05304047837853432, 0.7627595067024231, 0.5634832382202148, -0.28247642517089844, 0.22735081613063812, -0.009191320277750492, 0.6713594794273376, 0.9824463725090027, 0.6881142258644104, -0.8824561238288879, -0.19361896812915802, -0.7750246524810791, -0.879105806350708, 0.12318813800811768, 0.37964314222335815, -0.3498540222644806, -1.1669528484344482, -0.5222716927528381, -0.40528419613838196, -0.031277988106012344, 0.14455293118953705, -0.7082638740539551, 0.8129667639732361, 0.014895768836140633, -0.13244351744651794, 0.034440502524375916, -0.4902280867099762, -0.18021342158317566, 0.055744484066963196, -0.01838049665093422, 0.34267616271972656, -1.6444225311279297, -0.19834646582603455, 0.05604953318834305, -0.5203763842582703, 0.11412648111581802, 0.33228057622909546, 0.5249267816543579, -1.4267339706420898, -1.3222347497940063, -1.0348318815231323, 0.1716352254152298, 0.7071461081504822, -1.464162826538086, 0.1250821053981781, 1.6059556007385254, -1.9071565866470337, -0.33553948998451233, 0.4710334539413452, -1.4549973011016846, -0.18928441405296326, -1.604570984840393, 1.1021896600723267, -0.18877866864204407, 0.19570624828338623, -0.5113556981086731, 1.4349619150161743, -0.9874256253242493, -1.6347509622573853, -0.4798542857170105, -0.13557526469230652, 0.5465113520622253, 1.0988726615905762, -0.6374061107635498, 1.138185977935791, 0.65234375, -0.4379740059375763, -0.8048437833786011, 0.30853116512298584, -0.9512988924980164, 0.6991510987281799, 0.2931666672229767, 0.1159379780292511, 0.19047145545482635, 1.2239283323287964, -0.3952083885669708, 0.9401617646217346, 0.19939498603343964, 1.1688776016235352, -1.1620045900344849, -0.1556577980518341, -0.1308588683605194, 0.47757020592689514, -1.3290661573410034, -0.21819891035556793, -0.6731084585189819, -0.6344332695007324, -1.249241828918457, 0.690073549747467, 0.5188474655151367, -1.0487686395645142, -0.1652234047651291, -0.11560361832380295, 0.447224885225296, -0.3570307195186615, 0.0783017948269844, -0.14669835567474365, -0.08075596392154694, 0.29100722074508667, 0.4492504596710205, -0.1945137232542038, -1.7481226921081543, 0.2535116970539093, 0.26583898067474365, 0.6029338240623474, -0.6094457507133484, 0.8043069839477539, 0.6658835411071777, -0.38022056221961975, -0.6025951504707336, 1.7169848680496216, 0.8446548581123352, -0.3196799159049988, -0.22220748662948608, 0.17401356995105743, 0.39259371161460876, 0.6761637926101685, -0.44305482506752014, 0.4683360159397125, -0.8297353386878967, 0.772311806678772, 0.39460307359695435, 0.3208118677139282, -0.6426733136177063, -0.02278665080666542, -0.5331943035125732, 0.3274219036102295, 0.04595963656902313, -0.955920934677124, 0.13010366261005402, 0.9787425994873047, 0.20758050680160522, -0.6988789439201355, 0.7844803929328918, 0.5968615412712097, -0.10753010213375092, -0.0830683708190918, 0.62876296043396, 0.44874587655067444, -1.1596921682357788, 0.4372084140777588, 0.638005793094635, -0.15090565383434296, -0.2666245698928833, -0.8264731168746948, -0.8080670833587646, -0.016283484175801277, -0.18941710889339447, -0.9537336826324463, 0.48750460147857666, -0.9268849492073059, -0.8438416123390198, 0.6442979574203491, -0.302682101726532, -0.19134852290153503, -0.20073439180850983, 0.5658091306686401, -0.4339909255504608, 0.4971258044242859, 0.9435189962387085, -0.6871581077575684, 0.5872192978858948, 0.34914880990982056, -0.38513118028640747, -1.0468546152114868, -0.45968103408813477, -0.31249284744262695, 0.36859437823295593, -0.3926648199558258, 0.260883629322052, 0.6392585635185242, 0.10460298508405685, -0.6328880190849304, 0.23876963555812836, 0.12305634468793869, 0.15584653615951538, -0.43483954668045044, -0.15759970247745514, 0.3791789710521698, 0.35733333230018616, 0.6197731494903564, -0.04080818593502045, -1.2194416522979736, -0.4086208641529083, 0.3368340730667114, -0.36427047848701477, 0.2983398139476776, -0.11842961609363556, 1.0452642440795898, 0.01580449938774109, 0.08224038034677505, -0.23825882375240326, -0.8899075388908386, -0.23957347869873047, -0.3986341953277588, 0.4456826448440552, -0.06360075622797012, -0.5032121539115906, 0.008643228560686111, -1.1531285047531128, 0.33130916953086853, -0.24838887155056, 0.14796172082424164, -0.2026737928390503, -0.9385685324668884, -1.0307823419570923, -0.28809601068496704, 0.35795655846595764, 0.9331397414207458, 0.24334529042243958, 0.13753753900527954, -0.3800719976425171, -0.7074911594390869, 0.5862389802932739, 0.08566340059041977, -0.09532129019498825, 0.2986864745616913, 1.1780906915664673, 1.7674169540405273, 0.2937249541282654, 0.4372052252292633, -0.0651395320892334, 0.40185144543647766, 0.3766496479511261, -0.3758625090122223, -0.42873767018318176, -0.2439148724079132, 0.3065917491912842], [-0.22785523533821106, 2.2373828887939453, -2.2456398010253906, 0.4039178192615509, 1.0387638807296753, -0.11745643615722656, 1.0879347324371338, -0.061171337962150574, -0.21780507266521454, -0.15630672872066498, -0.47304943203926086, -0.38628050684928894, 0.35573649406433105, 0.6189746856689453, 0.04966402053833008, 0.7730790972709656, 0.8258230686187744, -0.41605350375175476, 1.0061343908309937, 1.3454910516738892, 0.1671840101480484, -0.42834052443504333, 0.10946690291166306, 0.20513346791267395, -0.8351485729217529, 0.3865463137626648, -0.7504324316978455, -0.6073112487792969, -0.6499089598655701, -1.12537682056427, 0.9982943534851074, -0.6764819622039795, 0.37343183159828186, 0.06117478758096695, -0.7907814383506775, -0.5771318674087524, 1.6982972621917725, 1.694701075553894, 0.37593355774879456, 0.4299807548522949, 1.2656840085983276, -0.47502750158309937, 0.06333303451538086, -1.613202691078186, -0.45652511715888977, -0.05063660815358162, 0.9907670021057129, -0.7896416187286377, 0.11879066377878189, -0.3696594834327698, 0.33121055364608765, -0.31715908646583557, 1.1016967296600342, 0.5559731125831604, 0.4234812557697296, 0.3370603621006012, 0.4151964783668518, -0.32297733426094055, 0.7522987127304077, -0.37494972348213196, 1.323598861694336, -0.3735935389995575, -0.3726560175418854, 0.3168726861476898, 0.5787918567657471, -0.7958365678787231, 0.9602218270301819, 0.06519154459238052, -0.19409680366516113, -0.08878346532583237, 0.3467271029949188, 0.09259974956512451, -0.6883520483970642, -0.1808028221130371, -1.4201687574386597, 0.12185791879892349, 1.1777855157852173, 1.0398036241531372, 0.19258713722229004, 0.7513161301612854, -0.3234427273273468, -0.10868306457996368, 0.9617471694946289, -0.05418969318270683, 0.346606582403183, -0.22006560862064362, -0.031655699014663696, -0.48713770508766174, -0.2068920135498047, 1.6697067022323608, 0.1238255575299263, 0.25098344683647156, 0.4620455205440521, -0.36308005452156067, -0.022850699722766876, -0.6870232820510864, 0.22523684799671173, 0.1846543252468109, -0.5707270503044128, -0.21202591061592102, -1.1479065418243408, -1.418201208114624, 0.52789306640625, -0.28137555718421936, -0.06044241040945053, 1.2523077726364136, 0.5107556581497192, 0.03099033422768116, -0.6808274388313293, 0.012660758569836617, -0.44523385167121887, 0.327173113822937, -0.7778862118721008, -1.2376118898391724, -0.2320006638765335, 0.78693687915802, 1.2697993516921997, 0.17065081000328064, 0.0079941526055336, 0.8590127825737, 0.30191272497177124, -0.20837071537971497, -0.23785966634750366, 1.3643471002578735, -0.2902359366416931, 0.26249760389328003, -0.7015889883041382, -0.31122463941574097, -0.0499800406396389, 0.056275609880685806, 0.5543016791343689, 0.6328334808349609, -0.23826216161251068, 0.8704175353050232, -0.49474313855171204, 0.8045950531959534, -0.8202505111694336, -0.040825482457876205, -0.36539867520332336, -0.3312375843524933, 0.2515961229801178, -0.5990952253341675, -0.5639703869819641, 0.027106909081339836, -0.783245861530304, -0.4375079572200775, 0.2244163304567337, -0.09656219929456711, -0.7461557984352112, 0.029319074004888535, -1.1512269973754883, 0.26073595881462097, 0.7936707735061646, -0.1108248233795166, 0.5877388715744019, 0.02898314595222473, 0.4267706573009491, 0.19675005972385406, 0.173061341047287, 0.6443688869476318, 0.8950648903846741, -0.08364826440811157, -1.2384164333343506, 0.9267991185188293, 0.5905659794807434, -0.005758625455200672, 0.7864751815795898, 0.6371635794639587, 0.4106811285018921, 0.7701586484909058, -0.6394748091697693, -0.8000850677490234, -0.5670034289360046, 0.6700995564460754, 0.22765451669692993, 0.04039822891354561, 0.657564640045166, -0.3825187087059021, -1.7282981872558594, -1.2009201049804688, 0.8305754661560059, -0.6803281307220459, 0.04719000309705734, 0.6090233325958252, 0.23843327164649963, -0.4381226897239685, 0.45305389165878296, -0.1429382562637329, -0.29509857296943665, -0.20584693551063538, -0.8415999412536621, -0.09151758253574371, -0.24340040981769562, 0.3680608868598938, -0.13700321316719055, -0.47340208292007446, 0.39216476678848267, -1.4327318668365479, -0.7093251347541809, -0.2233094573020935, 0.20894896984100342, -0.5785483121871948, -0.693469226360321, 0.17641426622867584, -0.6479983925819397, 1.1649354696273804, -1.6401363611221313, 1.0612270832061768, -0.719397246837616, 0.6104215383529663, 0.3585023283958435, 0.18409806489944458, -0.4097810983657837, 0.8869937658309937, -0.003151940181851387, -1.9291714429855347, 0.2914007604122162, 0.41503047943115234, -0.4114908277988434, 0.4555265009403229, 0.14920751750469208, 0.35501906275749207, 0.10180817544460297, -0.09668587893247604, 0.4678270220756531, 0.13471975922584534, -0.5889852643013, -1.2965023517608643, -0.5481626987457275, 0.07369954138994217, -0.3475653827190399, -1.2513482570648193, 1.3173245191574097, 0.209189772605896, -0.8095027804374695, 0.47465750575065613, -0.23481255769729614, 0.25462159514427185, 0.21581405401229858, 1.524114966392517, 0.3839344382286072, -0.22387300431728363, 0.34418973326683044, -0.6807446479797363, -0.5712338089942932, 0.738266110420227, 0.3405890166759491, 0.0004492737352848053, 0.005168125033378601, 1.2309365272521973, 1.2280027866363525, -0.4383864998817444, 0.15749689936637878, 0.22917580604553223, -0.11135576665401459, -0.8419535756111145, -0.7102165222167969, 0.11398406326770782, -0.7441355586051941, 1.7042020559310913, 1.2807896137237549, -0.8806345462799072, -0.2472328096628189, 0.12979747354984283, -0.4990723729133606, -0.18466344475746155, -0.9382440447807312, -0.7368553280830383, -0.468222051858902, 0.4400516450405121, -0.3618190586566925, 0.5173205137252808, -0.3201025724411011, 0.17253142595291138, -0.561395525932312, -0.561120867729187, -0.028090575709939003, 0.08333232998847961, -0.032432787120342255, 0.6592358350753784, -0.07771491259336472, -1.6923094987869263, -0.25250402092933655, 0.3384104073047638, 0.40801510214805603, -0.051035404205322266, 0.19047430157661438, -0.10251335054636002, 0.18840017914772034, -0.12188772857189178, 0.18307951092720032, -0.07939623296260834, -0.13656778633594513, -0.06420347094535828, -0.4572482705116272, 0.751613199710846, 0.7964110970497131, -1.4375678300857544, -0.10237818211317062, -0.21322119235992432, 0.6144965291023254, 1.4580918550491333, 0.4532800018787384, 1.2205331325531006, -0.1574595868587494, 0.1318710744380951, -0.41426992416381836, -0.8730002045631409, -1.5337077379226685, -0.25328513979911804, -0.6585462093353271, -0.9961957931518555, 0.11334224790334702, 0.3800256550312042, 0.2329310029745102, 0.09445065259933472, -0.6522655487060547, 0.5999457836151123, 1.2106988430023193, -0.25038468837738037, -0.7876133322715759, -0.2670644223690033, -0.5368695259094238, -0.9697149991989136, 0.6671193838119507, 1.25532066822052, -1.4191025495529175, -0.6917511224746704, 0.28731489181518555, 0.33742162585258484, 1.1755023002624512, 0.3711440861225128, 0.2203143686056137, -1.0666007995605469, -0.9707087278366089, -0.13176363706588745, 0.9916465282440186, -0.47089672088623047, -0.4248453676700592, -0.3691237270832062, 0.5684471130371094, 0.3692469596862793, -0.7938137650489807, -0.31105339527130127, 0.834223747253418, -0.42786967754364014, -0.8009086847305298, 0.2896675169467926, 0.6664333343505859, -0.06061217561364174, -0.6309053897857666, -0.7034061551094055, -0.8021005392074585, -0.35134798288345337, -0.059238821268081665, 0.3877880275249481, 0.22573091089725494, 0.6255958080291748, -0.32770997285842896, -0.29150140285491943, 0.643143355846405, 0.2102525681257248, -0.16475924849510193, -1.1775397062301636, 0.40160512924194336, 0.44887495040893555, 0.8748040199279785, 0.22998543083667755, 0.3831334412097931, 0.5868667960166931, 0.3024653494358063, 0.013214340433478355, 0.6185821294784546, 1.3439040184020996, 1.0275715589523315, 0.37387004494667053, -0.40235358476638794, -0.33980000019073486, -0.4987275004386902, -0.23505094647407532, -0.048826664686203, 0.38468384742736816, -0.4338268041610718, -0.6301988363265991, 0.7159565091133118, 0.2809445261955261, -0.7637959718704224, -0.1553489714860916, 0.22177529335021973, 0.6448743343353271, -0.1816481500864029, -0.20270395278930664, -0.660963237285614, -0.3120761811733246, -0.25419753789901733, -1.2251139879226685, -0.27979186177253723, 0.3992200791835785, -0.07934024930000305, 0.9750484228134155, -0.8373006582260132, 0.5144224166870117, -1.1992701292037964, 0.8619219064712524, 0.5308647155761719, -0.1908080279827118, 0.16122180223464966, 0.0034679267555475235, 0.32791686058044434, 0.4081834554672241, 0.3463399410247803, 1.001857876777649, 0.12229528278112411, 0.2771366238594055, 0.48293814063072205, -0.5336170196533203, -0.15507951378822327, -1.344577670097351, -0.5770959854125977, 0.12171752005815506, -0.6862106919288635, -0.35818105936050415, 0.3081471621990204, -0.2167980968952179, 0.6121984720230103, 0.8398903608322144, 0.1955101490020752, 0.7753261923789978, -0.10122480243444443, -0.41777852177619934, -0.33269309997558594, 0.13795585930347443, -0.22062155604362488, -0.21612298488616943, 0.2788400948047638, 0.780462384223938, -0.08182253688573837, 0.6348367929458618, 0.2780235707759857, 0.6660827398300171, 0.14638078212738037, 0.608199417591095, -0.09329154342412949, 0.43260204792022705, 1.0097886323928833, 1.4630616903305054, -0.004486028105020523, -0.5588210225105286, -0.8541399836540222, 0.5827996730804443, -1.4147005081176758, 0.27169710397720337, 0.2775648236274719, 0.7650831937789917, 1.5924240350723267, -1.4296770095825195, 0.024846158921718597, 0.8151515126228333, 0.5080351233482361, 0.7830361127853394, 0.45957353711128235, -0.6802054643630981, -0.23567259311676025, 0.5539263486862183, 0.4990188777446747, -0.201370969414711, 0.031061163172125816, 0.11705554276704788, -0.3592835068702698, 0.676120400428772, -0.8242924809455872, 0.1832466572523117, -0.39754432439804077, -0.35605213046073914, -0.3017062842845917, -0.869106113910675, 0.3011229634284973, 0.5058380961418152, 0.7926794290542603, 0.8871760368347168, -0.008831813931465149, -1.2816401720046997, -0.04390927031636238, -0.7897673845291138, 0.262423574924469, -0.5269729495048523, -1.1324187517166138, -0.9064223766326904, -0.975821316242218, -0.3381868600845337, 0.07346390187740326, -0.1823660433292389, -0.3484361171722412, -0.7252933979034424, -1.053511619567871, 0.5903090238571167, 1.1240233182907104, 1.0815178155899048, 1.2436503171920776, -0.08844584971666336, 1.2112510204315186, -0.07083891332149506, -0.9564362168312073, -0.21427389979362488, 0.4003485143184662, -0.0661611258983612, 0.058248016983270645, -1.3436353206634521, -0.6340950131416321, 0.4714076817035675, 0.3050670027732849, -0.3202850818634033, 1.1198039054870605, 1.2631739377975464, 1.030511498451233, -0.03188025578856468, -0.40522706508636475, 0.5286447405815125, -0.2601882815361023, 0.4125155508518219, 0.7643907070159912, -0.09843427687883377, -0.1317296326160431, -0.6893662810325623, -1.2082099914550781, 1.0282814502716064, -0.38580945134162903, 0.08351331949234009, 0.9014619588851929, -0.18340040743350983, 0.752819836139679, 0.18440182507038116, -0.572883129119873, 0.4942838251590729, 0.21766670048236847, -0.855937659740448, -0.8478487730026245, -0.259954035282135, 0.3068452775478363, -0.02540876530110836, -0.08002474159002304, -0.12645210325717926, 0.09135639667510986, 0.33650660514831543, -0.1317652016878128, -0.16257542371749878, 0.3609243929386139, 0.5876141786575317, 0.3676932454109192, -0.8410636186599731, -0.3502233326435089, -0.7978652715682983, -0.49398908019065857, -0.0011064107529819012, 0.5370075702667236, 0.43492192029953003, -0.6158583760261536, -0.030067339539527893, -0.608780026435852, -0.5227062106132507, -0.20613296329975128, -0.11372826993465424, 0.725375771522522, 0.5665811896324158, 0.21150177717208862, -0.6520248651504517, -0.667655885219574, -0.1759267896413803, 0.00135841965675354, 0.13258874416351318, 0.596627414226532, -0.9785099029541016, -0.19970624148845673, 0.26574668288230896, -0.349173903465271, 0.18168634176254272, -0.11250142008066177, 0.4113949239253998, -0.7173133492469788, -0.9050090312957764, -0.7571355104446411, -0.05439654737710953, 0.6891889572143555, -0.5716102719306946, 0.7194176316261292, 0.5658722519874573, -1.7777851819992065, 0.40875443816185, -0.4140724241733551, -1.8564372062683105, 0.20718428492546082, -1.2322415113449097, 0.8898681998252869, 0.014213060960173607, -0.14009533822536469, -0.05138031020760536, 1.0494617223739624, -1.4758667945861816, -0.9621855020523071, -0.9361824989318848, -0.418047159910202, 1.1094287633895874, 0.850042998790741, -0.3838527798652649, 1.376530408859253, 0.39087605476379395, -0.12416452914476395, -0.7102813720703125, 0.3994019627571106, -0.3975943624973297, 0.53331458568573, 0.3883848488330841, 0.1137750893831253, 0.3804532289505005, 0.7829322814941406, 0.17566461861133575, 1.0241636037826538, 0.040135834366083145, 1.437720775604248, -1.0993973016738892, -0.49947401881217957, 0.3249814808368683, 0.8260900378227234, -1.3328232765197754, -1.2086108922958374, -0.4666571319103241, -0.681257963180542, -0.6169041991233826, -0.09526293724775314, 0.5952696800231934, -0.18727031350135803, -0.33590078353881836, -0.32517746090888977, 0.7967218160629272, -0.9823150038719177, 0.16991585493087769, 0.5272596478462219, -0.3392471373081207, -0.5543686151504517, 0.16436506807804108, -0.2265574038028717, -1.5293238162994385, 0.286716490983963, -0.3584386110305786, 0.15837813913822174, -0.7491689324378967, 0.5346406698226929, 0.39795994758605957, 0.3394485116004944, -0.047064971178770065, 1.3778786659240723, 0.5624397993087769, -0.3553043305873871, -0.3246922194957733, -0.03311822563409805, -0.39619356393814087, -0.361591637134552, -0.8569578528404236, -0.4018113315105438, -0.8431091904640198, 1.2672182321548462, 0.07544556260108948, 0.08424710482358932, -0.5047550797462463, 0.42975592613220215, -0.6449558138847351, 0.18752285838127136, 0.4737573564052582, -0.8028111457824707, -0.1956975758075714, 1.209696650505066, 0.5173267722129822, -0.7870743274688721, 0.24643678963184357, 0.29795947670936584, 0.49633538722991943, -0.5833953022956848, 0.15127168595790863, 1.0107226371765137, -0.5652956366539001, -0.12134787440299988, -0.17238961160182953, -0.4170668125152588, -0.10677313804626465, -0.34982946515083313, -1.5665847063064575, -0.24645264446735382, -0.5636792182922363, -0.5325038433074951, 1.1282145977020264, -1.253427505493164, -0.37121883034706116, 0.3741675913333893, -0.04232078418135643, 0.26854291558265686, 0.1369909644126892, -0.10202227532863617, -0.3672889471054077, 0.340505450963974, 1.0550708770751953, -0.29288455843925476, 1.0701528787612915, 0.2617706060409546, 0.26335248351097107, -0.7948395609855652, -0.1477934718132019, -0.17801421880722046, 0.028010301291942596, -0.1461229771375656, 0.1400335282087326, 0.6812500357627869, 0.16310171782970428, -0.6949052810668945, -0.016715796664357185, -0.22329162061214447, 0.41105377674102783, -0.48476114869117737, 0.022644754499197006, 0.5008945465087891, 0.4706219732761383, 0.4112304449081421, -0.25457388162612915, -0.8354753255844116, -0.6752229332923889, -0.5314415693283081, -0.7362421154975891, 0.06391126662492752, -0.5500633120536804, 1.151565670967102, 0.2927199900150299, -0.413712739944458, -0.49549710750579834, -0.5633295178413391, 0.6058862805366516, -0.005080765578895807, 0.04150596633553505, -0.24057906866073608, 0.3801710307598114, 0.15292701125144958, -0.7512966990470886, 0.5423058271408081, 0.6582276821136475, -0.39334720373153687, 0.18535862863063812, -1.2157025337219238, -0.8664947748184204, -0.4907052218914032, 0.6293572783470154, 2.192929983139038, 0.7340728044509888, 0.021966028958559036, -0.19479504227638245, -0.8613547682762146, -0.4868135452270508, 0.17566965520381927, 0.7177695035934448, -0.17515714466571808, 1.5901761054992676, 2.3413054943084717, 0.40558990836143494, 0.40250280499458313, -0.04108231142163277, 0.5087684988975525, -0.7433497905731201, -0.34147557616233826, -0.9038982391357422, -0.10477621853351593, 0.42237383127212524], [-0.17672094702720642, 1.621644377708435, -2.274167060852051, 0.4035872519016266, 0.384313702583313, 0.4594663381576538, 1.4124928712844849, -0.4941955804824829, -0.4209184944629669, -0.30006319284439087, -0.7752721309661865, 0.04752945154905319, 0.7782857418060303, 0.19357255101203918, 0.7556052207946777, 1.0532811880111694, 0.9120571613311768, -0.5455566048622131, 0.7457415461540222, 1.0691030025482178, 0.02881619520485401, -0.2779920697212219, 0.2840351164340973, -0.14054080843925476, -0.6868820786476135, 0.10131917148828506, -1.4494373798370361, -1.0033546686172485, -0.635256826877594, -0.8047274947166443, 0.3527170419692993, -0.1812538504600525, 0.2250131517648697, 0.04734416678547859, -1.1464118957519531, -0.7365709543228149, 1.8949440717697144, 0.9517704248428345, 0.6520074605941772, 0.6554428339004517, 1.0794038772583008, -0.9507446885108948, 0.45174655318260193, -1.245727777481079, 0.7819578647613525, -0.19849224388599396, 0.8180361390113831, -0.6016074419021606, 0.4932107627391815, -0.725473165512085, 0.3994295597076416, -0.2100500613451004, 0.15582218766212463, 0.8113975524902344, 0.6298880577087402, 0.03170875087380409, 0.40494152903556824, 0.3293026089668274, 0.4678110182285309, -0.6314868927001953, 1.2135289907455444, -0.13608084619045258, -0.1261187046766281, 1.5204734802246094, 0.2078344076871872, -0.7189492583274841, 0.32267627120018005, 0.5933084487915039, 0.2993795871734619, -0.4071042835712433, 0.7255382537841797, 0.4722817838191986, -0.4519162178039551, 0.9087212085723877, -1.5260109901428223, 0.7315530180931091, 0.9958367347717285, 0.6104435324668884, 0.14101985096931458, 0.6987362504005432, 0.07204294949769974, -0.23342975974082947, 0.7984232902526855, 0.09455779194831848, -0.07481686025857925, 0.2679775655269623, 0.8630573749542236, -0.2942022681236267, -0.06266313791275024, 1.410448670387268, 0.5876668095588684, 0.6340188384056091, 0.5578529238700867, -0.5865656137466431, -0.44935712218284607, -0.38140642642974854, 0.5229847431182861, 0.42069122195243835, -1.3778409957885742, -0.813398540019989, -0.9012076258659363, -0.7917594909667969, -0.04102421551942825, -0.1412895768880844, 0.5602254867553711, 1.2617332935333252, 0.45408278703689575, 0.06672004610300064, -0.5973274111747742, 0.21495206654071808, -0.6430007815361023, 0.07338336110115051, -1.0570656061172485, -0.7134658098220825, -1.0913310050964355, 1.0581395626068115, 0.7509440183639526, -0.259839802980423, 0.3944483995437622, 0.8185912370681763, -0.448466956615448, -0.649453341960907, 0.225660040974617, 0.8203412890434265, 0.7478656768798828, 0.49789103865623474, -0.6451820731163025, -0.7548779249191284, 0.15579931437969208, 0.4905361831188202, 0.497760146856308, -0.21501874923706055, 0.1404886096715927, 1.0141605138778687, -1.076125144958496, 1.4987527132034302, -0.9201064109802246, -0.9069100618362427, -0.5336041450500488, 0.29911887645721436, 1.0022563934326172, 0.024627361446619034, -0.035226114094257355, -0.48040324449539185, 0.010248793289065361, -0.4656359851360321, -0.07753001153469086, -0.27715134620666504, -0.9584395885467529, 0.24474453926086426, -0.9040161967277527, 0.9041545391082764, 0.10487519204616547, 0.7347759008407593, 0.36988893151283264, -0.0722104087471962, 0.2115197777748108, 0.4713189899921417, 0.44279736280441284, -0.06927560269832611, 0.9622827768325806, -0.0030493754893541336, -1.164194107055664, 1.0652683973312378, 0.4324782192707062, -0.3484989106655121, -0.15353259444236755, 0.9549651145935059, 0.07385013997554779, 0.5795741677284241, -0.1706533133983612, -0.1339409053325653, -0.8706281185150146, 0.5690674781799316, 0.3351391851902008, -0.06584782153367996, 1.8708980083465576, -0.5023415684700012, -1.745489239692688, -1.2192944288253784, 0.42906418442726135, -0.7910353541374207, -0.22541138529777527, 0.16147840023040771, 0.03593318164348602, -0.8949916958808899, 0.7601486444473267, -0.5107277035713196, -0.5069928765296936, -1.080614686012268, -0.21723297238349915, -0.3500916659832001, -0.7601171731948853, 0.10623271018266678, -0.21275442838668823, -0.7723716497421265, 0.4460251033306122, -1.570190668106079, -0.41208693385124207, -0.17766010761260986, -0.23852145671844482, -0.5799693465232849, -0.8290969729423523, 0.8330252766609192, -0.011396314948797226, 1.115666151046753, -0.9006977081298828, 1.118242859840393, -0.6287444233894348, 0.03168186545372009, 1.1937310695648193, 0.2561441957950592, -0.9192126393318176, 1.1953223943710327, 0.13194260001182556, -1.7445112466812134, 0.8767375349998474, 0.7096145749092102, -0.14244908094406128, 0.3661361634731293, 0.15978915989398956, 0.12623360753059387, 0.2714722752571106, -0.05696553364396095, 0.014565303921699524, -0.48992353677749634, -0.6549461483955383, -0.7589261531829834, -0.6192569732666016, 0.4925718605518341, -0.7835414409637451, -1.4424089193344116, 1.3022106885910034, 0.6132326126098633, -0.9971462488174438, 0.003561088815331459, 0.09761645644903183, 0.20759153366088867, 0.3705812692642212, 1.5896081924438477, 0.2919814884662628, 0.24466830492019653, -0.4638054370880127, -0.6112381815910339, -0.2687491476535797, 0.23822227120399475, 1.265608787536621, 0.4333534240722656, 0.27850988507270813, 1.2821680307388306, 1.062999963760376, 0.1538589894771576, 0.5637555122375488, -0.10873405635356903, -0.43637919425964355, -0.6752830147743225, -1.112574577331543, 0.530585527420044, -0.535300612449646, 1.3609321117401123, 0.7543901801109314, -0.5647104382514954, 0.2071121335029602, 0.12215876579284668, -0.09686890989542007, -0.22251062095165253, -0.7451666593551636, -0.13548371195793152, 0.06599050760269165, -0.2967747449874878, -0.4123019874095917, 0.7306304574012756, -0.5947848558425903, 0.2592189908027649, -0.6760563254356384, -0.5667694211006165, -1.3332529067993164, 0.43069350719451904, -0.17397016286849976, 1.022047519683838, 0.05600109323859215, -1.3636418581008911, -0.7355663776397705, -0.05567963793873787, 0.668621301651001, 0.23113077878952026, 0.3388499617576599, 0.13149189949035645, 0.5873106122016907, -0.5563694834709167, 0.5114798545837402, -0.21615596115589142, -0.23426276445388794, -0.20943768322467804, 0.04221830144524574, 0.4361480176448822, 0.9592086672782898, -0.5326777696609497, -0.8887330293655396, -0.08838757872581482, 0.32800209522247314, 1.3151488304138184, 0.5986949801445007, 0.44583994150161743, 0.3506544828414917, -0.8531807661056519, -0.7096635699272156, -0.439167320728302, -1.1625043153762817, -0.7016194462776184, -1.0009536743164062, -1.0856831073760986, -0.10598666220903397, 0.05614222586154938, -0.02632240392267704, 0.6418297290802002, -0.29575926065444946, 0.6719126105308533, 1.9306538105010986, -0.12414267659187317, -0.4533098340034485, 0.04339456930756569, -0.3611205816268921, -0.9146994948387146, 0.1548391729593277, 1.2869495153427124, -1.1850471496582031, -0.9243360757827759, -0.059701696038246155, 0.6508095860481262, 0.24179749190807343, -0.2238229215145111, -0.20008130371570587, -1.4263900518417358, -0.3742203712463379, -0.21475890278816223, 1.615312099456787, -0.45433640480041504, -0.3824353516101837, -0.20793265104293823, 0.6053348183631897, 1.0818042755126953, -0.4613765776157379, -0.6795815825462341, 0.8983929753303528, -0.5074393153190613, -0.6674280762672424, 0.25895383954048157, 0.43235570192337036, 0.7507489323616028, -0.7326796650886536, -0.5059598684310913, -0.39870622754096985, 0.18819914758205414, -0.0422525629401207, 0.5057674646377563, -0.21507062017917633, 1.295356273651123, -0.3898327052593231, -0.17342303693294525, 0.6133860945701599, -0.5604179501533508, 0.21746811270713806, -1.0939052104949951, 0.3259452283382416, 0.33903366327285767, 1.1190154552459717, 0.07106717675924301, 0.3625059425830841, 0.23847438395023346, 0.6711313128471375, -0.18836797773838043, 0.36385205388069153, 1.2080860137939453, 0.43435442447662354, 0.07555446028709412, -0.8043442964553833, -0.32252129912376404, 0.048852983862161636, -0.3669002652168274, 0.11053802073001862, 0.9038928747177124, -1.149665355682373, -1.0418907403945923, 0.760492205619812, 0.5037440061569214, -0.3152388632297516, -0.377229243516922, -0.414554625749588, 0.7111827731132507, -0.28892549872398376, 0.19771568477153778, -0.970137357711792, -0.04645948112010956, 0.04300058260560036, -1.3380776643753052, 0.12231703847646713, 0.6618890166282654, 0.45942530035972595, 0.25327593088150024, -1.0110735893249512, 0.4014015197753906, -0.7621094584465027, 0.4506908059120178, 0.7297048568725586, 0.5493136048316956, 0.18752454221248627, 0.0738459974527359, -0.254395455121994, -0.02400893345475197, 0.0610659122467041, 1.813439965248108, -0.49400466680526733, 0.3960399031639099, 0.38737285137176514, -0.37298867106437683, -0.6456005573272705, -0.6203044652938843, -0.3779016435146332, -0.05838238447904587, -0.05698086693882942, 0.10105618089437485, 0.4577978551387787, -0.8269091844558716, 1.660125732421875, 0.4971850514411926, 0.6336691379547119, 0.8483002185821533, -0.07691136747598648, -0.8489494919776917, -0.3246220648288727, 0.4684239327907562, 0.036262672394514084, -0.7522971630096436, -0.5840819478034973, 0.08409802615642548, -0.020554518327116966, 0.2873615324497223, 0.3511892557144165, 1.3022618293762207, 0.5006539821624756, 0.7309169769287109, -0.052676159888505936, 0.5853807330131531, 0.9384487867355347, 0.6134957075119019, 0.2801113426685333, -0.25894567370414734, -0.9930904507637024, 0.863281786441803, -0.811209499835968, -0.46123746037483215, 0.2808692157268524, -0.2279597520828247, 1.4238858222961426, -1.2751785516738892, -0.6291172504425049, 0.6251279711723328, 0.4948138892650604, 0.3362131714820862, 0.7858352065086365, -0.5932830572128296, -0.5526740550994873, 0.8109477162361145, 0.2870769202709198, -0.39765334129333496, -0.053268127143383026, 0.33694908022880554, -0.5447695851325989, 0.3768480122089386, -0.6943851709365845, 0.2891412079334259, -0.8161470890045166, 0.6001183986663818, -0.5557524561882019, -0.6833103895187378, -0.3063233494758606, 0.39231258630752563, 0.654050886631012, 1.2657290697097778, -0.24361105263233185, -1.2479197978973389, 0.34734734892845154, -0.7009727358818054, 0.29866963624954224, -1.065300464630127, -0.2938941419124603, -0.8728664517402649, -0.09849037975072861, 0.10683559626340866, 0.7607333660125732, -0.29042765498161316, -0.4300994575023651, -0.5604560375213623, -1.5680922269821167, 0.5784745812416077, 0.6087546944618225, 1.5022138357162476, 0.4784398078918457, 0.1765984743833542, 0.7247817516326904, 0.5773820281028748, -0.7570422887802124, -0.2432907521724701, 0.47681763768196106, -0.18023110926151276, 0.295930415391922, -1.4919335842132568, -0.03836807608604431, 0.5759286284446716, 0.18645797669887543, -0.3262290060520172, 0.7410531640052795, 1.0195975303649902, 1.1009430885314941, -0.4120155870914459, -0.24971537292003632, 0.5524557828903198, -0.07171134650707245, 0.1402348130941391, 0.36255353689193726, 0.2765149474143982, -0.8585891723632812, -0.4612407386302948, -0.8981433510780334, 0.6773684024810791, 0.26108822226524353, -0.598041296005249, 0.5827190279960632, 0.1612267643213272, 1.5498688220977783, 0.7372630834579468, -0.03460770845413208, 0.6936190724372864, -0.14372645318508148, -0.36772772669792175, -1.0830944776535034, 0.5902937054634094, -0.14672839641571045, 0.1791212260723114, -0.4269416630268097, 0.3725645840167999, -0.22534531354904175, -0.06028739735484123, -0.23603187501430511, 0.3950091302394867, 0.3910825848579407, 0.9062830805778503, 0.6192708611488342, -0.5611864328384399, 0.1360102742910385, -0.9019784927368164, -0.6523467898368835, -0.31108152866363525, 0.012072283774614334, -0.07599187642335892, -0.33983808755874634, 0.3206765949726105, -0.2982216477394104, -0.9587849974632263, 0.19878335297107697, -0.7118752002716064, 0.7035545110702515, 0.2456919252872467, 0.27063533663749695, -0.016169890761375427, -0.2248014658689499, 0.10115034133195877, -0.2126585990190506, 0.6063427329063416, 0.11813722550868988, -1.218124270439148, -0.14309270679950714, 0.3369000256061554, -0.8286210894584656, -0.21056243777275085, -0.2000841349363327, 0.09848268330097198, -0.8457618355751038, -0.9775633811950684, -0.5999213457107544, 0.39645177125930786, 0.6285902857780457, -0.6467127203941345, 0.4145409166812897, 0.9095190167427063, -1.3968205451965332, 0.2969128489494324, -0.16292904317378998, -0.9054487943649292, -0.18177221715450287, -0.7828019857406616, 1.1237536668777466, 0.07354189455509186, 0.11642570793628693, 0.42301324009895325, 0.9758509397506714, -1.7529877424240112, -1.3993269205093384, -0.9197384715080261, 0.13245373964309692, 1.0678025484085083, 0.6514393091201782, -0.4037073254585266, 0.864725649356842, 1.1428323984146118, -0.6345378160476685, -0.28981420397758484, -0.18779145181179047, -1.0034691095352173, 0.5082188844680786, 0.6355360150337219, 0.1632813811302185, 0.4454038441181183, 1.1446596384048462, -0.0784306526184082, 0.7492548823356628, 0.19844353199005127, 1.2192716598510742, -1.2009333372116089, -0.4096483290195465, 0.2747323215007782, 0.6617680191993713, -1.2617946863174438, -1.0070991516113281, -0.6135569214820862, -0.6263745427131653, -0.5498185753822327, 0.2798953354358673, 0.508453905582428, -0.8183160424232483, -0.756921112537384, -1.1447710990905762, 0.36157557368278503, -0.5895327925682068, -0.2303004413843155, -0.24611704051494598, -0.4852203130722046, -0.5534419417381287, 0.5230114459991455, 0.05006246268749237, -2.046889066696167, 0.11317754536867142, -0.11490461230278015, 0.3078150749206543, -0.9126355051994324, 0.47834235429763794, 0.020322300493717194, 0.3208328187465668, -0.4337858557701111, 1.1763752698898315, 0.8633029460906982, -0.30897384881973267, -0.4137845039367676, 0.09050966799259186, 0.415031760931015, 0.18720079958438873, -1.1262657642364502, -0.6818907260894775, -1.1898150444030762, 0.9454784393310547, 0.5725075006484985, -0.04057908430695534, 0.31797724962234497, 0.2903331518173218, -0.2786630392074585, 0.7966693043708801, 0.8681538105010986, -1.2792531251907349, -0.4065851867198944, 0.574900209903717, 0.39759352803230286, -0.6269723176956177, 0.2140411138534546, 0.5357787013053894, 0.6853694915771484, -0.9596107602119446, 0.28282907605171204, 0.5029609799385071, -0.6981082558631897, -0.048038091510534286, 0.33587977290153503, -0.2798900306224823, 0.11938376724720001, -0.38726314902305603, -1.3705730438232422, -0.17890416085720062, -0.18538247048854828, -0.4953806698322296, 0.5297460556030273, -1.5113966464996338, -0.7555738091468811, 0.7259737253189087, -0.2754901647567749, -0.3599949777126312, -0.3780193626880646, 0.4376867115497589, -0.30926257371902466, -0.17068341374397278, 1.1211299896240234, -0.15019868314266205, 1.0933077335357666, 0.12372332066297531, 0.16023454070091248, -1.4398189783096313, -0.8530095815658569, 0.34197723865509033, 0.8183348178863525, -0.2898850739002228, 0.41416051983833313, -0.06291097402572632, -0.5211632251739502, -1.015488624572754, -0.2013387531042099, 0.0028494475409388542, 0.09674163162708282, 0.05892609432339668, -0.4833894968032837, -0.42172348499298096, 0.3724115788936615, 1.025126338005066, -0.7568652629852295, -1.0816134214401245, -0.9806352257728577, -0.030974017456173897, -0.43847113847732544, 0.43270066380500793, -0.6580321192741394, 1.1325007677078247, 0.43991512060165405, -0.03159681707620621, -0.44413477182388306, -0.6769497990608215, 1.1363445520401, -0.46175578236579895, 0.1922561079263687, 0.08510585129261017, -0.1566716432571411, 0.13914740085601807, -0.8373937010765076, -0.16212362051010132, 0.36205536127090454, 0.1247391626238823, -0.11481288075447083, -0.9666321873664856, -0.9213067293167114, -0.3844809830188751, 0.43658894300460815, 1.12208890914917, 0.3153340518474579, -0.023747775703668594, -0.007308878004550934, -0.9531449675559998, 0.3328474164009094, -0.39151695370674133, -0.11357565224170685, 0.0841764286160469, 1.7333825826644897, 2.1333484649658203, 0.831139862537384, 0.4526994526386261, -0.629386842250824, 0.3331376314163208, -0.6586752533912659, -0.175201416015625, -0.35302209854125977, -0.568543016910553, -0.2309112399816513], [-0.6581152677536011, 1.6396565437316895, -2.0918335914611816, 0.21144556999206543, 1.988892674446106, 0.8692334294319153, 1.7479602098464966, 0.007288071326911449, 0.7443130612373352, -0.6643525958061218, -0.8148419857025146, 0.0009867050684988499, 0.23365418612957, 0.6420363783836365, 0.17292553186416626, 0.2910539209842682, 0.44178301095962524, -0.11875453591346741, 0.6033714413642883, 1.0447782278060913, 0.5562571883201599, -0.09175687283277512, -0.002002950757741928, 0.8667835593223572, -0.043135955929756165, 0.27421313524246216, -1.3533529043197632, -0.4085557162761688, -1.148576021194458, -1.077439546585083, 1.2231637239456177, -0.8302479386329651, 0.3157443106174469, -0.18784290552139282, -1.9789751768112183, -0.4917010962963104, 0.9419385194778442, 0.7265887260437012, 0.35737115144729614, 0.3456543982028961, 1.526041865348816, -0.05362454429268837, -0.2858382761478424, -1.7358548641204834, -0.8027259111404419, 0.4575214684009552, 1.07957923412323, -0.970197856426239, 0.01466461829841137, -0.053149253129959106, 0.3152987062931061, -0.6516901850700378, 1.1984084844589233, 1.1165733337402344, 0.908905029296875, -0.31695011258125305, 0.6134877800941467, 0.04814188554883003, 0.18932677805423737, -0.6376225352287292, 1.31403648853302, 0.2269701212644577, -1.3410485982894897, 0.2230507880449295, -0.3338388204574585, 0.39297008514404297, -0.031457725912332535, 0.5866495370864868, 0.37174224853515625, 0.09879516810178757, 0.982003927230835, 0.610760509967804, -0.8074008226394653, -0.017712360247969627, -1.0464398860931396, -0.26738014817237854, 0.41705241799354553, 0.5839055776596069, 0.7924792766571045, 1.2276469469070435, -0.35434356331825256, 0.24041114747524261, -0.046741221100091934, 0.15855644643306732, 0.2120853215456009, 0.5975332856178284, 0.3614216446876526, -0.6894967555999756, -0.7201101183891296, 1.727138638496399, 0.26971662044525146, -0.01373034343123436, 0.6476876139640808, -0.5264800190925598, -0.16968683898448944, -0.7948935627937317, 0.03327731788158417, -0.25332218408584595, -0.46048256754875183, -0.9129361510276794, -0.5677998661994934, -0.9182329773902893, 0.0036889472976326942, -0.29568052291870117, 0.31468307971954346, 1.221415638923645, 0.08505845814943314, -0.4512940049171448, -0.1066618338227272, -0.4705670177936554, -0.0197521410882473, 0.8978608846664429, -0.8004733324050903, -0.544815719127655, -0.24225062131881714, 0.872047483921051, 0.6640069484710693, -0.11565695703029633, 0.7196035981178284, 0.012874136678874493, -0.2921285927295685, 0.18882186710834503, -0.8144233822822571, 0.9922434687614441, 0.5660260915756226, 0.6803079843521118, -0.39412474632263184, -0.5032685399055481, 0.915925920009613, -0.18606993556022644, 0.7875991463661194, 0.036083489656448364, 0.042570073157548904, 0.9560336470603943, -0.4758816659450531, 1.514431357383728, -0.20694942772388458, -0.6872221827507019, -0.12378933280706406, -0.07290240377187729, -0.027457384392619133, 0.2292357087135315, -0.23877397179603577, -1.078084111213684, 0.48669853806495667, -0.6522760987281799, 0.5626681447029114, 0.48015767335891724, -0.34652575850486755, -0.015156403183937073, -1.134990930557251, 0.5096065998077393, 0.07355474680662155, 0.9275142550468445, 0.4105859100818634, 0.18579019606113434, 1.19817316532135, 0.3920058012008667, 0.6262179017066956, 0.48459577560424805, 0.9465669989585876, 0.10777980089187622, -1.4264730215072632, 1.2354944944381714, -0.1781725138425827, -0.14001084864139557, 0.7918780446052551, 0.7553600072860718, -0.10740560293197632, 0.8709064722061157, -0.4516354501247406, -0.7891861200332642, -0.6671082973480225, 0.7474825382232666, 0.08423222601413727, -0.0808676928281784, 1.279272437095642, -0.5557361841201782, -1.5509603023529053, -0.7259911894798279, 1.097446322441101, -0.4807933270931244, 0.7506093978881836, -0.12738710641860962, 0.9357742667198181, -0.6485020518302917, -0.20274317264556885, -0.2957143783569336, -0.10169155150651932, -0.7800664305686951, -0.8847349882125854, -0.5479387640953064, -1.1233819723129272, -0.28002315759658813, -0.12967030704021454, -0.6134681105613708, 0.384316086769104, -0.9378303289413452, -0.6014409065246582, 0.5301374793052673, 0.2474128156900406, -0.34644097089767456, -0.8024130463600159, -0.39129534363746643, -0.5358843207359314, 0.3044261932373047, -1.0719411373138428, 1.0461825132369995, -1.00257408618927, 0.4438139498233795, 1.0608363151550293, 0.13487029075622559, -1.1454194784164429, 1.1915688514709473, 0.3782971203327179, -1.6498253345489502, 0.7013893723487854, 0.25823473930358887, 0.015639981254935265, -0.23266510665416718, 0.1887558400630951, 0.14287212491035461, 0.5157338380813599, 0.22496266663074493, 0.505422830581665, -0.04491134732961655, -1.2849950790405273, -1.1077110767364502, -0.6498677730560303, 0.41077202558517456, 0.09820220619440079, -1.334010362625122, 0.8311668038368225, 0.6471247673034668, -0.8897184133529663, 0.12615251541137695, -0.21325771510601044, -0.13713116943836212, 0.7203191518783569, 1.3846596479415894, 0.07539670914411545, 0.9236953854560852, 0.42353588342666626, -0.3835046589374542, -0.34953996539115906, 0.11125072091817856, 1.476477861404419, -0.26900938153266907, 0.15365146100521088, 1.0636173486709595, 0.57392418384552, 0.14467507600784302, -0.2551376521587372, -0.4032003879547119, -0.3683132827281952, -0.990772545337677, -0.6292861104011536, -0.3688407838344574, -0.25829049944877625, 1.898073434829712, 0.7074134349822998, -0.5515446662902832, -0.8386452794075012, 0.20120809972286224, -0.330753356218338, -0.3209131062030792, -0.5170084238052368, -0.6074069142341614, 0.04345569387078285, -0.002529754303395748, 0.01077295746654272, 0.2421169877052307, 0.18091124296188354, 0.747439444065094, -0.3129713833332062, -0.7956451177597046, -0.801705539226532, -0.030621889978647232, 0.1532469093799591, 0.7134752869606018, -0.15084101259708405, -0.9073165655136108, 0.05995254963636398, -0.040614936500787735, 1.4766643047332764, -0.5490111112594604, 0.21282552182674408, 0.04521356523036957, 0.9452296495437622, 0.09237750619649887, 0.4234088063240051, 0.43172532320022583, -0.09129589796066284, 0.2833346724510193, 0.19148853421211243, 0.634295642375946, 0.6983973979949951, -1.187738299369812, -1.231213092803955, -0.11421467363834381, 0.2751219868659973, 1.6655490398406982, 0.6458724737167358, 0.8969991207122803, -0.21200738847255707, -0.16705168783664703, -0.7400158643722534, -0.3845461308956146, -0.4828025698661804, -0.5653649568557739, -1.0880398750305176, -0.7179571390151978, -0.0609130784869194, -0.3315350413322449, 0.5396719574928284, 0.11340634524822235, -0.7334431409835815, 1.0302125215530396, 0.6367818713188171, -0.4976157546043396, -0.964978039264679, -0.30024921894073486, -0.30188775062561035, -0.9579609036445618, 0.5057946443557739, 1.3898637294769287, -1.4518625736236572, -1.2591711282730103, -0.2072848081588745, -0.037904705852270126, 1.1325910091400146, -0.06904638558626175, 0.3085000216960907, -1.1013015508651733, -0.5281079411506653, -0.5554431676864624, 1.1294457912445068, -0.0839659720659256, -0.8122780919075012, -1.3915657997131348, 0.18951639533042908, 0.7086938619613647, -0.6247121095657349, 0.2966194450855255, 0.8214610815048218, -0.5829710960388184, -0.41960862278938293, -0.6356569528579712, 0.13567228615283966, 1.0104910135269165, -0.6808119416236877, -0.40949463844299316, -0.5662455558776855, -0.49295544624328613, -0.5681283473968506, 0.8570418357849121, 0.6466465592384338, 0.7528921961784363, 0.6941189169883728, -0.38182318210601807, 1.626700758934021, -0.6815651655197144, 0.2882443070411682, -1.3664920330047607, 0.39740461111068726, 0.6911579966545105, 1.1379272937774658, -0.28814342617988586, 0.41881823539733887, 0.041022107005119324, -0.3532048165798187, 0.009773443453013897, 0.3824272155761719, 1.0041112899780273, 0.47531431913375854, -0.6530548930168152, 0.28856533765792847, -0.27501481771469116, -0.9197410941123962, -1.1796811819076538, -0.4639698266983032, 0.669352650642395, -0.6607048511505127, -0.4538109302520752, 1.6408473253250122, 0.622808039188385, 0.009979795664548874, -0.3493759036064148, -0.3318824768066406, 1.345896601676941, 0.20054635405540466, -0.5010256171226501, -0.16708339750766754, 0.380031943321228, 0.05158940330147743, -0.7321094274520874, -0.5368868112564087, -0.19873039424419403, 0.6729457974433899, 0.8990111947059631, -1.0907222032546997, -0.17310269176959991, -0.25513318181037903, 0.6299825310707092, 0.35570093989372253, 0.02495594508945942, -0.22520489990711212, -0.20054301619529724, 0.07024449110031128, 0.02091214619576931, 0.5397087931632996, 1.0816036462783813, -0.08383605629205704, -0.4250226318836212, 0.09748802334070206, 0.3893337845802307, 0.1302809715270996, -0.06272342056035995, -0.4915623962879181, 0.092011958360672, -0.9751074314117432, -0.2649708390235901, -0.15330065786838531, -0.3852986991405487, 1.212648630142212, 0.10145675390958786, 0.41055747866630554, 1.1496647596359253, 0.5221176147460938, -1.3051589727401733, 0.11340637505054474, 0.004885035566985607, -0.4315088987350464, -0.7101557850837708, 0.21523422002792358, 0.26444101333618164, -0.032384879887104034, 0.15977998077869415, 0.32174357771873474, 0.9128842353820801, -0.38956350088119507, 0.6578835248947144, 0.2694575786590576, 0.5917918682098389, 0.9446987509727478, 0.9907920956611633, 0.6985624432563782, -0.2569906711578369, -1.1338565349578857, 0.6751337051391602, -1.0385656356811523, 0.20308510959148407, 0.8081520795822144, 0.3800327181816101, 0.8402061462402344, -2.5167124271392822, -1.0465526580810547, 0.2023410052061081, 0.12040463835000992, 0.39183178544044495, 0.8657310009002686, -0.39043110609054565, -0.5415728092193604, 0.19034601747989655, -0.07418972998857498, -0.43121641874313354, 0.45442333817481995, -0.15435287356376648, -0.17240199446678162, 0.28777337074279785, -0.6267033219337463, 0.2057761251926422, -0.6123049855232239, -0.5363758206367493, 0.13426774740219116, -0.22765617072582245, 0.023654330521821976, 0.7745926380157471, 0.7321226596832275, 0.6808139681816101, -1.2068984508514404, -1.1506491899490356, 0.6981436610221863, -0.2230987399816513, -0.1076788380742073, 0.007249295711517334, -0.4409750699996948, -0.6454651355743408, -0.5244570970535278, -0.7496327757835388, 0.9617720246315002, -0.26270872354507446, -0.9568430185317993, -0.6293336749076843, -1.403826117515564, -0.7274718284606934, 0.3307349383831024, 1.1179611682891846, 1.4143266677856445, 0.5182601809501648, 0.23173105716705322, -0.12761026620864868, -0.932005763053894, 0.21672481298446655, 0.42410770058631897, 0.10393192619085312, -0.3816944658756256, -0.9535780549049377, -0.6067425012588501, 0.7222273945808411, 1.112208604812622, -0.23356148600578308, 0.6685919761657715, 1.3128118515014648, 0.9919762015342712, -0.3573344647884369, -1.4228472709655762, 0.7491172552108765, -0.11735163629055023, 0.40030452609062195, 0.7705652117729187, -0.3132505714893341, -0.5013763904571533, 0.21995648741722107, -1.631919503211975, 0.706847608089447, -0.5675978064537048, -1.146405577659607, 0.7148941159248352, 0.28319644927978516, 0.7690178155899048, 0.8350341320037842, -0.8492114543914795, 0.3049406111240387, 0.5664389729499817, -0.5158408284187317, -0.6322757005691528, 0.4975210428237915, 0.2641817033290863, 0.4927695393562317, -0.2157207727432251, 0.6818507313728333, 0.13822327554225922, -1.2769142389297485, 0.04507329314947128, 0.5643845200538635, 0.1408894956111908, 0.6996368765830994, 0.6571593880653381, -1.1718829870224, 0.39087724685668945, -0.60269695520401, -0.42654964327812195, -0.6420485973358154, 0.16514547169208527, 0.9191845655441284, -0.15798072516918182, 0.12386025488376617, -0.4065704047679901, -0.7121105790138245, -0.7174025774002075, -0.8157095909118652, 0.43816670775413513, 0.5793955326080322, -0.6873641610145569, 0.02234232984483242, -0.8435823321342468, -0.4181007444858551, -0.634009599685669, -0.3518305718898773, 0.3161231279373169, -1.3110215663909912, -0.42548874020576477, 0.1963663399219513, -0.545257031917572, -0.6561908721923828, -0.2969011068344116, 0.43229421973228455, -0.4727764129638672, -1.1313577890396118, -1.021220088005066, 0.6602450609207153, 0.7088720202445984, -0.8553982973098755, 0.5135540962219238, 0.090912826359272, -1.7144170999526978, 0.11504613608121872, -0.5746828317642212, -1.0062119960784912, -0.03330615535378456, -1.024814486503601, 0.9582509398460388, -0.21479836106300354, -0.004597063641995192, -0.07655398547649384, 1.455157995223999, -1.4572057723999023, -0.9930209517478943, -0.944467306137085, -0.019029885530471802, 1.1680593490600586, 0.5338999032974243, -0.6168878078460693, 1.7325602769851685, 0.3274848759174347, -1.0771112442016602, -0.5103893876075745, 0.5814847946166992, -1.0276274681091309, 0.38284817337989807, 0.4684281051158905, 0.6862058639526367, 0.5805323719978333, 1.606066107749939, 0.10107779502868652, 0.5140860080718994, 0.15267519652843475, 0.30327144265174866, -0.5604091286659241, -0.8523921966552734, -0.4066084027290344, 0.6738668084144592, -1.4037044048309326, -0.867386519908905, -0.2009590119123459, -0.1287134289741516, -1.1773762702941895, 0.5444958806037903, 0.43523845076560974, -0.9748692512512207, 0.4151756167411804, 0.5346125364303589, 0.3019174039363861, -0.15331634879112244, 1.1079885959625244, 0.7701334953308105, -1.2048759460449219, -0.16088242828845978, -0.14449657499790192, -0.2821897268295288, -0.9922645092010498, 0.170105442404747, -0.11981365829706192, 0.24211017787456512, -0.025116760283708572, 0.16097526252269745, 0.6778253316879272, -0.5662406086921692, -0.5006389021873474, 1.4298062324523926, 0.8695401549339294, -0.5552879571914673, -0.35635238885879517, 0.8462905287742615, -0.10818566381931305, 0.8644427061080933, 0.0522179938852787, 0.5161607265472412, -0.3394297659397125, 0.7696083188056946, 0.3404395878314972, 0.07135429978370667, -0.34423479437828064, 0.16552422940731049, -0.6872947216033936, 0.5744602084159851, 0.2137278914451599, -0.8396568894386292, -0.6430959701538086, 1.2607755661010742, 0.13866645097732544, 0.00965836551040411, 0.40581220388412476, 0.37013810873031616, 0.5122069716453552, -0.08073817193508148, 0.4329625070095062, 0.6509307026863098, -1.1614587306976318, 0.07907421886920929, -0.23275204002857208, 0.11419246345758438, 0.28231361508369446, 0.02779802680015564, -1.9185917377471924, 0.7027381658554077, -0.8600049614906311, -0.55577152967453, 0.7679347991943359, -0.7801126837730408, -0.6932699084281921, -0.03110515885055065, 0.14121192693710327, 0.25118324160575867, 0.03290870785713196, -0.5970875024795532, -0.19157004356384277, 0.7183504104614258, 0.13556469976902008, -0.8479203581809998, 1.3544224500656128, -0.35772058367729187, -0.05882987752556801, -0.5068572163581848, -0.24334834516048431, -0.16549701988697052, 0.8450995683670044, -0.127470925450325, -0.38415008783340454, 0.9920724630355835, -0.3463003635406494, -0.80471271276474, 0.20748279988765717, -0.14100483059883118, 0.20388759672641754, -0.3104933798313141, -0.29032304883003235, -0.28514546155929565, 0.3649105131626129, 0.5975886583328247, -0.7322986721992493, -0.37438684701919556, -0.49564212560653687, 0.20674599707126617, -0.5265288949012756, 0.7640729546546936, -0.5595723986625671, 1.1949005126953125, -0.03643948584794998, -0.6021814942359924, -0.3427211046218872, -0.06800267100334167, 0.5456691384315491, 0.07258205860853195, 0.5696225762367249, -0.28956639766693115, -0.22331811487674713, -1.1343809366226196, -0.7791057229042053, 0.04974576085805893, 0.9079607129096985, 0.02514035440981388, -0.3339470624923706, -0.8469246029853821, -0.4850563704967499, -0.812861442565918, -0.15560492873191833, 0.753617525100708, 0.2555370628833771, 0.12512587010860443, 0.0892556831240654, -0.6474204659461975, 0.5251177549362183, -0.10454187542200089, 0.45586398243904114, 0.4096349775791168, 1.0810012817382812, 1.3183454275131226, 0.20346562564373016, 0.09976989030838013, -0.4208381175994873, 0.9278064370155334, -0.7007107734680176, -0.2463027536869049, -0.8064283132553101, -0.3816251754760742, 0.10385258495807648], [-0.27454328536987305, 1.425248146057129, -2.473788022994995, 0.18851768970489502, 0.747577428817749, 0.24007061123847961, 1.9964004755020142, -0.6006693243980408, 0.5000813007354736, -0.4443661570549011, -0.8832708597183228, -0.2886675298213959, 0.4508390724658966, 0.5978891849517822, 0.1739782840013504, 1.035631537437439, 0.5739539265632629, -0.7612840533256531, 0.10249457508325577, 1.0397311449050903, 0.38166627287864685, -0.8832384347915649, -0.1657762974500656, 0.9842340350151062, -0.48326271772384644, -0.0017935093492269516, -1.3307781219482422, -0.42761433124542236, -0.9005762338638306, -0.8043467998504639, 0.5658870935440063, -0.9161427617073059, 0.13711169362068176, 0.2258627712726593, -1.2307945489883423, -0.013796673156321049, 2.2469382286071777, 0.629023015499115, 1.312562108039856, 0.12630338966846466, 1.4421058893203735, -0.25249141454696655, 0.532541811466217, -1.6288481950759888, 0.42093899846076965, -0.4086221158504486, 1.607401967048645, -0.5808631777763367, 0.5682916641235352, -0.41656479239463806, -0.09461664408445358, -0.6416246294975281, 0.4859810769557953, 0.2939690351486206, 1.066848635673523, 0.4546400010585785, 0.864008903503418, -0.18475943803787231, 0.36261993646621704, -0.5559713840484619, 1.5450283288955688, -0.4326685667037964, -0.452117919921875, 0.7016952633857727, 0.04077203944325447, -0.3652760982513428, 0.0018812473863363266, 0.41167527437210083, -0.23031693696975708, 0.05330197885632515, 1.1890476942062378, 0.1916859745979309, -0.1379489302635193, 0.4557284414768219, -0.9527162909507751, 0.48207512497901917, 0.2994747459888458, 1.16520094871521, 0.4341644048690796, 0.4805445671081543, -0.1838318556547165, -0.2311563342809677, 1.317625641822815, -0.19113211333751678, -0.41630613803863525, -0.14840221405029297, 0.8415820598602295, -0.09493211656808853, -0.44754865765571594, 0.6623340845108032, 0.6861459612846375, 0.45643705129623413, 0.737109899520874, -0.11122877150774002, 0.045752547681331635, -0.3706904351711273, 0.42969512939453125, 0.10708053410053253, -0.7015456557273865, -1.1579780578613281, -0.4994562566280365, -0.7754604816436768, -0.15890353918075562, -0.3537745773792267, 0.3184329867362976, 1.4330556392669678, 0.245415598154068, 0.36686187982559204, -0.2800128161907196, -0.06078847125172615, -0.6196436285972595, 0.34080180525779724, -0.8927160501480103, -2.128944158554077, -0.9649144411087036, 0.9117366671562195, 1.0711191892623901, 0.6920451521873474, 0.6496323347091675, 0.5355376601219177, -0.636315107345581, 0.09535837173461914, 0.4079660177230835, 0.7294147610664368, 0.5938639640808105, 0.5923471450805664, -0.5392408967018127, -0.8402851223945618, 0.40718185901641846, 0.24776223301887512, 0.8975234031677246, -0.2778395712375641, -0.2765229642391205, 1.2921383380889893, -0.6354930400848389, 0.9262838959693909, -0.5607758164405823, -0.5787657499313354, -0.2511771619319916, -0.11594871431589127, 0.6489545702934265, -0.44700491428375244, 0.020072804763913155, -0.022362466901540756, 0.024602385237812996, -0.2867301404476166, -0.09466928243637085, -0.2905648350715637, -0.6631776094436646, -0.39743974804878235, -1.1704050302505493, 0.5172235369682312, 0.028794893994927406, 0.3533609211444855, 0.5477669835090637, -0.1806195229291916, 0.27119189500808716, 0.04471024125814438, 1.0191235542297363, -0.47458338737487793, 0.3317815363407135, -0.09445103257894516, -1.275453805923462, 0.9032799005508423, -0.46362489461898804, -0.07540750503540039, 0.30942925810813904, 1.3545984029769897, 0.1952441781759262, 0.8842577934265137, -0.6429494023323059, -0.5701197385787964, -0.550195038318634, 0.38712072372436523, 0.2998899519443512, -0.6003699898719788, 1.3275424242019653, -0.23364095389842987, -1.7680678367614746, -1.4452210664749146, 0.5515474677085876, -1.0133411884307861, 0.35576096177101135, -0.1424977034330368, 0.23622502386569977, -0.29681020975112915, 0.8142991662025452, -0.2904830873012543, -0.26558464765548706, -0.28266632556915283, 0.04429549723863602, -0.633459746837616, -0.5848469138145447, -0.22546742856502533, -0.028946325182914734, 0.12918037176132202, 0.8433138728141785, -1.1651191711425781, -0.8881934881210327, -0.3118138909339905, -0.5239109396934509, -0.29025518894195557, -0.619945764541626, 0.42429089546203613, -0.05795690789818764, 0.5367283225059509, -0.8440421223640442, 1.0844193696975708, -0.39964327216148376, 0.5358250737190247, 1.325459599494934, -0.2618407607078552, -0.8514742851257324, 0.6486230492591858, -0.33718204498291016, -1.3047142028808594, 0.2569555640220642, 0.13472643494606018, -0.3715941309928894, 0.25885486602783203, -0.0640893280506134, 0.392205148935318, 0.0783151239156723, -0.1859387904405594, 0.5042192339897156, -0.046528566628694534, -0.22482632100582123, -1.1861050128936768, -0.6245672106742859, 0.5606610178947449, -1.175590991973877, -1.176238775253296, 0.8610309958457947, 0.6593891382217407, -0.43399399518966675, -0.12367048859596252, -0.14137764275074005, 0.5419302582740784, 0.14935114979743958, 1.7682645320892334, 0.3828936815261841, 0.9676015973091125, 0.27608945965766907, -0.11882670968770981, 0.1908598095178604, 0.5390812754631042, 0.7329879999160767, 0.315986692905426, -0.38663890957832336, 1.07125723361969, 1.4591532945632935, 0.6792522072792053, 0.41146233677864075, 0.03535105660557747, -0.22893552482128143, -0.8155779242515564, -1.2413264513015747, 0.5441871285438538, -0.15195664763450623, 1.370805263519287, 0.44565701484680176, -0.49772465229034424, -0.49018827080726624, 0.5197749137878418, 0.13809582591056824, -0.06819126009941101, -0.6898052096366882, -0.6618720889091492, -0.6810809969902039, -0.1800168752670288, -0.29350194334983826, 0.3319132626056671, 0.3576008379459381, 0.7791083455085754, -0.45399370789527893, -0.6296060681343079, -0.5494325160980225, 0.38567182421684265, 0.039976853877305984, 1.0458025932312012, 0.10345398634672165, -1.6282073259353638, 0.17492012679576874, 0.30707064270973206, 0.7746044397354126, -0.1964452564716339, 0.06732071936130524, -0.32496029138565063, 0.6858394145965576, -0.6354727149009705, 0.24709928035736084, -0.2734098732471466, -0.6493735313415527, 0.43783286213874817, 0.02084643766283989, 0.6984687447547913, 1.0356274843215942, -1.0462663173675537, -1.3430275917053223, 0.3282996714115143, 0.4254671037197113, 1.3282039165496826, 0.32040369510650635, 1.7226717472076416, -0.6618586778640747, -0.05256873741745949, -0.5222612619400024, -0.9737938046455383, -1.2628543376922607, -1.1423736810684204, -0.532518208026886, -0.9129317402839661, -0.5410722494125366, -0.3700718283653259, -0.2625488042831421, 0.8624935150146484, -0.4825930893421173, 0.1791190356016159, 1.838229775428772, -0.20559807121753693, -0.6624566912651062, 0.049977824091911316, -0.15025272965431213, -0.14236664772033691, 0.34510836005210876, 1.7092748880386353, -1.18328058719635, -0.4910675287246704, -0.2124335616827011, 0.16030941903591156, 0.2740347385406494, 0.5415363311767578, -0.09337466955184937, -1.3960171937942505, -1.0935815572738647, -0.38786566257476807, 1.2191587686538696, -0.011452202685177326, -0.23762251436710358, -0.5315608978271484, 0.10712356865406036, 0.8472549319267273, -0.8234347105026245, -0.3229411542415619, 0.9074970483779907, -0.2811811566352844, -0.5718308687210083, -0.14113451540470123, 0.3820496201515198, 0.2560393214225769, -1.3925957679748535, -0.7763330340385437, -0.7643254995346069, -0.46983519196510315, -0.2671373188495636, 0.787003755569458, -0.19155898690223694, 1.2505412101745605, -0.4803999066352844, -0.45357996225357056, 0.5479021668434143, 0.12716221809387207, -0.3700968623161316, -0.4207545518875122, 0.4365848898887634, 0.7015870809555054, 1.3090624809265137, -0.5151556730270386, 0.5560107231140137, 0.7855034470558167, -0.014665277674794197, -0.03623589128255844, 0.6379216313362122, 1.0049247741699219, -0.39462727308273315, -0.012431547045707703, -0.25556233525276184, -0.6096992492675781, 0.009861811995506287, -0.6254783868789673, 0.07841984182596207, 0.2656395733356476, -1.151702880859375, -0.5849944353103638, 1.1201571226119995, 0.16904519498348236, -0.19762152433395386, -0.5721360445022583, 0.7407260537147522, 0.9445149898529053, 0.08363979309797287, 0.2680281400680542, -0.6335284113883972, -0.16180039942264557, 0.2474054992198944, -1.506066918373108, -0.01728067360818386, 0.6143786907196045, 0.12791720032691956, 0.9730930924415588, -0.811971127986908, 0.10831339657306671, -1.0749422311782837, 0.9767677783966064, 0.695914626121521, 0.019915126264095306, 0.3035047650337219, -0.09276293218135834, -0.04307720437645912, -0.2413501888513565, 0.49949735403060913, 1.9311468601226807, 0.023499445989727974, -0.33397409319877625, -0.0706402063369751, -0.2147853523492813, -0.3961041271686554, -0.5973381400108337, -0.2090451717376709, 0.3810751438140869, -0.5566296577453613, -0.2096259891986847, 0.3041226863861084, -0.1453997939825058, 1.1134778261184692, 0.2142602503299713, 0.3835349678993225, 0.13281862437725067, 0.33409151434898376, -1.108399748802185, 0.04780171439051628, 0.6216959953308105, -0.08466114848852158, -1.1490384340286255, -0.3861519694328308, 0.4135529398918152, 0.47161105275154114, 0.13914088904857635, 0.3456834554672241, 0.8803189396858215, 0.7073302268981934, 0.43794262409210205, -0.18146871030330658, 1.0409377813339233, 0.5917208194732666, 1.2670918703079224, 0.030098911374807358, -0.24668213725090027, -0.33401793241500854, 0.2506087124347687, -1.5602327585220337, 0.27943727374076843, 0.6051269173622131, -0.23101404309272766, 1.2293899059295654, -2.108853578567505, -1.167397141456604, 0.07508737593889236, 0.37854307889938354, 0.26508980989456177, 0.8187055587768555, -0.6412606835365295, 0.3356730341911316, 0.638616681098938, 0.01065896824002266, -0.5354845523834229, 0.12249456346035004, -0.38179776072502136, 0.10716325789690018, 0.22443924844264984, -0.9926148056983948, 0.48401984572410583, -0.2992400825023651, -0.1682147979736328, -0.41218042373657227, -0.7823048830032349, -0.00534213799983263, 0.503109872341156, -0.06421828269958496, 1.7314485311508179, -0.41604670882225037, -0.8105464577674866, -0.1391807645559311, -0.7543358206748962, 0.450236052274704, -0.7111301422119141, 0.12284629791975021, -0.9224792122840881, 0.2471843808889389, -0.002190595492720604, 0.29387956857681274, -0.06320270895957947, -0.22502046823501587, -0.4731811285018921, -1.2668333053588867, 0.09471014887094498, 1.0348786115646362, 1.3644509315490723, 0.5335782766342163, -0.1240929439663887, 0.9941956400871277, 0.3287806510925293, -0.887189507484436, -0.29699015617370605, 0.09107483178377151, -0.24298587441444397, 0.26169368624687195, -1.29612398147583, 0.040930453687906265, -0.23294474184513092, 0.02242649719119072, -0.10189793258905411, 0.7885066270828247, 1.210290551185608, 0.8537927269935608, 0.06712044030427933, -0.5454643368721008, 1.1694236993789673, -0.3014961779117584, 1.0431874990463257, 0.7981936931610107, -0.43874114751815796, -1.3224811553955078, -0.591907262802124, -1.1454987525939941, 0.20491871237754822, -0.2284993976354599, -0.4833020269870758, 1.1447694301605225, 0.2738354206085205, 0.7837026715278625, 0.05704944208264351, -0.37322527170181274, 0.6304904222488403, -0.20568184554576874, 0.01750589907169342, -1.1618742942810059, 0.3608757555484772, 0.10114121437072754, -0.1612694263458252, 0.23633208870887756, 0.5783504843711853, 0.02735128253698349, -0.2978568971157074, -0.1199134811758995, 0.7575226426124573, -0.023732688277959824, 0.9751861095428467, 0.5821990966796875, -0.5248481035232544, 0.3577549457550049, -0.5746115446090698, -0.7693359851837158, 0.06743663549423218, 0.27994468808174133, 0.2002672702074051, -0.22657456994056702, -0.2006121724843979, -0.26709964871406555, -0.26992830634117126, 0.16878212988376617, -0.676616370677948, 0.5425662994384766, 0.1629818081855774, 0.3710450530052185, -0.27034592628479004, -0.1551169604063034, 0.18562845885753632, -0.2379283607006073, 0.33685943484306335, 0.4753641188144684, -1.188109278678894, 0.01703527569770813, 0.5705560445785522, -0.7935360074043274, -0.4318634271621704, -0.12977062165737152, 0.5051866769790649, -1.0627940893173218, -1.3307684659957886, -1.055600881576538, 0.547513484954834, 0.6038030982017517, -0.5246458649635315, 0.6753920912742615, 0.550494909286499, -1.220957636833191, 0.35867229104042053, 0.4694640636444092, -1.2689796686172485, -0.3209938108921051, -0.5236920714378357, 0.2792767584323883, -0.0032407157123088837, 0.2821144461631775, 0.21042056381702423, 1.0185285806655884, -1.8295326232910156, -1.937091588973999, -1.124551773071289, -0.617756724357605, 0.5919860005378723, 0.6422494053840637, -0.9717826247215271, 0.6299955248832703, 0.488127201795578, -0.45444223284721375, -0.9874730110168457, 0.20733879506587982, -0.49238258600234985, 0.1683253049850464, -0.5012680888175964, 0.7376731634140015, 0.19269080460071564, 0.7078273892402649, 0.3121352791786194, 0.9203892350196838, 0.2501837909221649, 0.9574254751205444, -1.2000864744186401, -0.25715044140815735, 0.2650505304336548, 0.39985644817352295, -1.868503451347351, -1.0173779726028442, -0.6048519611358643, -0.5168826580047607, -1.0382161140441895, 0.029716383665800095, 0.5943052172660828, -1.3019477128982544, 0.04907919093966484, -0.7655948996543884, 0.5205225944519043, -0.4835059642791748, 0.44918668270111084, -0.0961957797408104, -0.05138147622346878, -0.2779037654399872, -0.037953078746795654, -0.2438279688358307, -1.5727367401123047, -0.15489034354686737, 0.24585068225860596, 0.6600902676582336, -1.1509792804718018, 0.6861390471458435, 0.3580750823020935, 0.44752123951911926, -0.5917017459869385, 1.5869972705841064, 0.36278849840164185, -0.3876418173313141, -0.0009035961702466011, 0.48610278964042664, -0.004454853944480419, 0.9031898379325867, -0.8302504420280457, -0.047643423080444336, -0.7187725305557251, 0.4340156316757202, 0.3022669851779938, 0.29095515608787537, -0.2562728524208069, 0.17871008813381195, -0.17333468794822693, 0.3706655204296112, 0.638883650302887, -0.7741885781288147, -0.4974518418312073, 0.5916680097579956, 0.034728050231933594, -0.587908148765564, 0.20187370479106903, 0.45588988065719604, 0.1724061220884323, -0.7009902000427246, 0.8209311366081238, 0.028700904920697212, -0.8280840516090393, 0.5015048384666443, -0.3075910806655884, -0.5460540652275085, -0.338985800743103, 0.13245336711406708, -0.8982371687889099, -0.043968964368104935, -0.5201408863067627, -0.30953919887542725, 0.8737525939941406, -1.619057536125183, -0.7480952739715576, 0.5955162644386292, -0.5788583755493164, -0.4483410716056824, -0.05225008726119995, 0.2435772567987442, 0.3996870517730713, -0.15963150560855865, 0.7775701284408569, -0.5481452345848083, 1.519425392150879, -0.12976707518100739, -0.2176464945077896, -1.599205493927002, -0.38047999143600464, 0.4803895652294159, 0.020843110978603363, -0.3111215829849243, 0.11030600219964981, 0.18438920378684998, -0.5659557580947876, -0.630122721195221, 0.032110318541526794, 0.6605083346366882, 0.5604189038276672, 0.19880782067775726, -0.018161065876483917, 0.32863855361938477, 0.46263840794563293, 1.1899651288986206, -0.6630096435546875, -0.6593703031539917, -0.7752782702445984, -0.09416479617357254, -0.4791030287742615, 0.538923442363739, 0.45019155740737915, 0.7449751496315002, 0.2455090582370758, -0.18384557962417603, -0.5544754266738892, -1.0295262336730957, -0.429593563079834, -0.1302286833524704, 0.21445733308792114, 0.22149860858917236, -0.3111080825328827, 0.021465929225087166, -0.861899733543396, -0.14638489484786987, 0.5300970077514648, -0.07304376363754272, 0.37914490699768066, -0.9697610139846802, -0.4197864830493927, -0.22127065062522888, 0.2581969201564789, 1.2375156879425049, -0.0552690327167511, 0.4665910005569458, 0.03661464899778366, -0.9676557779312134, 0.7278875112533569, -0.004708103835582733, -0.08895399421453476, 0.36869871616363525, 1.1615257263183594, 2.283677339553833, 0.8413439989089966, 0.12064892053604126, -0.3865496516227722, 0.07218039035797119, -0.4303421676158905, -0.13036197423934937, -0.2688993513584137, -0.11474040150642395, -0.3926011621952057], [-0.10231316089630127, 1.542541742324829, -2.5506792068481445, 0.013770210556685925, 1.2372721433639526, 0.5622664093971252, 1.1710025072097778, -0.9833927154541016, 0.1498948037624359, -0.3079138994216919, -0.3785657584667206, 0.4632406234741211, 0.6828749179840088, 0.4239039719104767, -0.45974239706993103, 0.7621223330497742, 0.764174222946167, -0.4301944375038147, 0.8106884360313416, 0.5587571859359741, -0.38365012407302856, 0.18004631996154785, 0.792761504650116, -0.05460880696773529, -0.8478711247444153, 0.36871448159217834, -1.2890188694000244, -0.3753182590007782, -0.3124174475669861, -0.9001851081848145, -0.05127725377678871, -0.22348536550998688, -0.010182750411331654, 0.5973308086395264, -1.102583885192871, -0.7767161726951599, 1.0224993228912354, 1.5099375247955322, 0.7008718848228455, 1.1153331995010376, 1.5115242004394531, 0.08390673995018005, 0.2979271709918976, -1.6554392576217651, 0.723034679889679, -0.010783819481730461, 1.0885413885116577, -0.5856197476387024, 0.7545608878135681, -0.3287335932254791, 0.07870077341794968, -0.5825939178466797, 0.3568214476108551, 1.0353864431381226, 0.938971757888794, -0.2800944149494171, 0.44765397906303406, 0.43912073969841003, 1.0784560441970825, -0.8654992580413818, 1.0047310590744019, -0.127078577876091, -0.2456158697605133, 0.838921070098877, -0.11633844673633575, -0.013134530745446682, -0.2689526081085205, 0.19662906229496002, -0.3315935730934143, -0.2791432738304138, 0.3744652271270752, 0.31373801827430725, -0.9511387944221497, 0.8101162314414978, -1.186665654182434, 0.6297048926353455, 0.7611989378929138, 0.28999945521354675, 0.2186119109392166, 0.25517287850379944, -0.11349886655807495, 0.08669935911893845, 0.5192532539367676, 0.035532526671886444, 0.5262278318405151, 0.11843375116586685, 0.6235029697418213, -0.7701300382614136, -0.4527175724506378, 1.4729357957839966, 0.1048300713300705, 0.05931166559457779, 0.7939170002937317, -0.41254153847694397, -0.8020449280738831, -0.4894216060638428, 0.6362111568450928, -0.11138636618852615, -1.1058419942855835, -1.09734308719635, -0.45135369896888733, -0.6384994983673096, 0.259846031665802, 0.36946073174476624, 0.04388076066970825, 1.076377034187317, -0.1404271274805069, 0.0741674154996872, -0.3683939278125763, 0.05495676025748253, -0.020158806815743446, 0.6962958574295044, -1.1231826543807983, -1.2435716390609741, -0.426788866519928, 1.2117348909378052, 1.0080504417419434, -0.6785250902175903, 0.6132621765136719, 1.0413048267364502, -0.2725670635700226, -0.27276936173439026, -0.22333978116512299, 0.6949103474617004, 0.4352472424507141, 0.651987612247467, -0.4928848147392273, -0.6242700815200806, 0.18361616134643555, -0.2150023877620697, 0.5492573976516724, -0.2766513526439667, -0.3070913851261139, 1.100867748260498, -1.0243871212005615, 1.3780319690704346, -0.465109258890152, -0.3676786720752716, 0.10224078595638275, -0.24221384525299072, 0.8622627258300781, -0.37735283374786377, -0.2501908540725708, -0.658111035823822, -0.06965436041355133, -0.12603361904621124, -0.21702317893505096, -0.22171999514102936, -0.4089087247848511, 0.3007877469062805, -0.8146853446960449, 1.0381641387939453, 0.36342111229896545, 0.572378933429718, 0.13966664671897888, -0.3910057842731476, 0.31160110235214233, 0.4819345474243164, 1.0633087158203125, -0.286376953125, 1.0811105966567993, -0.16222122311592102, -0.9859532713890076, 0.945068895816803, 0.6298798322677612, -0.16987749934196472, 0.18016240000724792, 0.8748063445091248, -0.07519809901714325, 0.7374365925788879, -0.9230512976646423, -0.24188455939292908, -0.1223180964589119, 0.055103760212659836, 0.5046265721321106, -0.7511190176010132, 1.0255671739578247, -0.7083187103271484, -0.9875540137290955, -1.2366834878921509, 0.12454628944396973, -0.7122258543968201, 0.25384119153022766, -0.20629337430000305, 0.9651548266410828, -0.5340790152549744, 0.038932204246520996, -0.10718107968568802, -1.1991050243377686, -0.8907564878463745, -0.6217089891433716, -0.7304518222808838, -1.1152387857437134, 0.21884861588478088, -0.6517482995986938, -0.5078680515289307, 0.24859540164470673, -0.9185852408409119, -0.6684621572494507, -0.4868849217891693, -0.48254844546318054, -0.2011757344007492, -1.175481915473938, 0.5747261643409729, -0.6006377339363098, 1.1641041040420532, -1.072034239768982, 0.9367864727973938, -0.6275250315666199, -0.14257913827896118, 1.0604329109191895, -0.022112812846899033, -0.30105921626091003, 0.8900443911552429, -0.12390142679214478, -1.169551968574524, 0.7359105348587036, 0.3674589991569519, -0.5237475037574768, 0.6366515159606934, 0.8875514268875122, -0.17835716903209686, 0.37832990288734436, 0.05626624450087547, 0.33793261647224426, -0.31086742877960205, -0.5590149164199829, -0.500451385974884, -0.6186354756355286, 0.15344814956188202, -0.323744535446167, -1.2546131610870361, 1.1128665208816528, 0.2933349311351776, -0.9001065492630005, 0.009009882807731628, 0.29597607254981995, -0.06082524359226227, 0.8123360276222229, 0.91533362865448, 0.301168829202652, 0.708925724029541, -0.46245452761650085, -0.24760958552360535, -0.7188349962234497, -0.04996161162853241, 1.2519092559814453, -0.039388809353113174, 0.21923215687274933, 1.5847285985946655, 1.2612569332122803, -0.13160733878612518, 0.10082478076219559, 0.7669843435287476, -0.1704980880022049, -0.893307626247406, -0.8012451529502869, 0.09899440407752991, -0.2967660427093506, 1.1355485916137695, 1.0471404790878296, -1.1951130628585815, 0.0756956934928894, 0.06576573848724365, 0.23449182510375977, -0.23210817575454712, -0.8790729641914368, 0.4227767884731293, -0.2950938045978546, 0.37890490889549255, -0.11291307955980301, 0.5149054527282715, -0.15805242955684662, 1.0213947296142578, -0.6982010006904602, -0.3518829047679901, -0.6107677221298218, 0.9321362376213074, 0.18050290644168854, 0.4681689441204071, 0.14338427782058716, -1.604533314704895, -1.031211018562317, 0.1114993467926979, 0.9869373440742493, 0.3990553617477417, 0.18813714385032654, -0.21920625865459442, 0.025228600949048996, -0.11942527443170547, 0.2552604377269745, -0.17545486986637115, 0.29564592242240906, -0.1384926289319992, 0.16741999983787537, 0.12490396201610565, 1.1198104619979858, -0.6858652830123901, -0.8614170551300049, 0.13930542767047882, 0.19448663294315338, 1.525374412536621, 0.7330523729324341, 1.1587047576904297, 0.06768381595611572, -0.07266384363174438, -0.8443458676338196, -0.9565651416778564, -0.6795392036437988, -0.4303591847419739, -1.3113727569580078, -0.8221682906150818, -0.1656128615140915, -0.55936199426651, -0.09720733016729355, 0.6690772771835327, -0.5879802703857422, 0.9274789690971375, 1.5463922023773193, -0.7789992690086365, -0.6651318669319153, -0.05892867222428322, 0.4395228624343872, -0.9051902294158936, 0.8236761689186096, 1.84831964969635, -1.0919811725616455, -0.5457037687301636, -0.6144863367080688, -0.16474387049674988, 0.4446415901184082, -0.020250754430890083, -0.41060671210289, -1.8632646799087524, -1.1042113304138184, -0.21932528913021088, 1.7312614917755127, -0.18162395060062408, 0.03912055119872093, -0.7200474739074707, 0.6599632501602173, 0.4607388377189636, -0.7686264514923096, -1.0631790161132812, 0.19647951424121857, 0.044099994003772736, -0.36838632822036743, -0.34212827682495117, 0.6643418073654175, 0.7577449679374695, -0.5689123868942261, -0.9387974739074707, -0.20941196382045746, 0.32425016164779663, -0.44323062896728516, -0.1592494547367096, 0.5313073396682739, 0.5729627013206482, -0.4962719976902008, -0.15714192390441895, 0.09878645092248917, -0.8122641444206238, -0.014000770635902882, -1.3217641115188599, 0.1454285830259323, 0.32762351632118225, 1.1397291421890259, 0.21541288495063782, 0.27942073345184326, 0.16170242428779602, 0.0653095617890358, -0.21413572132587433, 0.3824671506881714, 1.4677616357803345, 0.0968833640217781, -0.20568901300430298, -0.4631725549697876, -0.45684221386909485, -0.37969258427619934, -1.070909857749939, -0.4569498598575592, 0.7219296097755432, -0.5487783551216125, -0.8021495342254639, 0.7812312841415405, 0.5312719345092773, -0.352776437997818, 0.022265251725912094, 0.16864950954914093, 1.36404287815094, -0.5969666838645935, 0.12551578879356384, -0.7331348657608032, -0.0887996107339859, -0.06338667869567871, -1.3067954778671265, -0.01719859056174755, 0.5497382879257202, 0.6907269954681396, 0.4764687716960907, -1.0307122468948364, -0.2841529846191406, -0.5874122381210327, 0.12901939451694489, 0.20666776597499847, -0.08399499207735062, 0.06683816760778427, -0.2527499198913574, -0.38235077261924744, -0.2763349115848541, -0.04451845958828926, 0.8099690675735474, -0.7226864695549011, -0.16078747808933258, -0.421735018491745, -0.013569526374340057, -0.5876710414886475, -0.21350660920143127, -0.35397741198539734, -0.22176241874694824, 0.10328330844640732, 0.15161888301372528, 0.17505960166454315, -0.22549806535243988, 1.3397938013076782, 0.16507376730442047, 0.5567508339881897, 0.6023733019828796, -0.1666577309370041, -1.033624291419983, 0.32829979062080383, 0.688874363899231, -0.40866225957870483, -0.5758578777313232, -0.5424262285232544, 0.3932817876338959, -0.453635573387146, 0.4818716049194336, 0.35679197311401367, 0.9649537801742554, 0.31783828139305115, -0.0311411265283823, -0.5730422735214233, -0.2233525663614273, 0.30160167813301086, 1.0901328325271606, -0.2754804790019989, -0.09268797934055328, -1.2909021377563477, 0.3277031481266022, -1.1064784526824951, 0.21449647843837738, 0.9402879476547241, 0.17463965713977814, 1.5316561460494995, -1.9385480880737305, -0.530474066734314, 0.5879806280136108, 0.18471533060073853, 0.544795572757721, 0.33414652943611145, -0.4558317959308624, -0.404636412858963, 0.5872147679328918, -0.0040379236452281475, 0.07860153913497925, 0.13993483781814575, -0.17041023075580597, -0.3180626332759857, 0.3715268671512604, -0.444863885641098, 0.8071303963661194, -0.4712575376033783, -0.236494243144989, 0.18375618755817413, -0.36825937032699585, 0.37709417939186096, 0.48847898840904236, 0.15499845147132874, 0.23617017269134521, -0.7237904667854309, -0.6926307082176208, 0.7848001718521118, -0.0032785525545477867, 0.3889795243740082, -0.5996139645576477, -0.06568867713212967, -0.05742857977747917, -0.38202378153800964, -0.3360244631767273, 0.5791136622428894, -0.2892870604991913, -0.23548899590969086, -0.5113545060157776, -1.5420078039169312, 0.02063687890768051, 0.5218178629875183, 1.131056547164917, 0.491170734167099, -0.46287938952445984, 0.3044077455997467, 0.49470627307891846, -1.3692916631698608, 0.25185850262641907, -0.3278457820415497, -0.42320147156715393, -0.1937026083469391, -1.4921913146972656, -0.16021472215652466, 0.021147506311535835, 0.6954541206359863, -0.01055359560996294, 0.6064412593841553, 1.3094336986541748, 1.7628625631332397, -0.5567868947982788, -0.6697114109992981, 0.7414041757583618, -0.37405872344970703, -0.04736978933215141, 0.5947000980377197, -0.5397692322731018, -0.4372890591621399, -0.6372461318969727, -1.2026474475860596, 1.2542550563812256, -0.8802140355110168, -0.9853997826576233, 1.1265109777450562, 0.2109367549419403, 0.7281823754310608, 0.9126255512237549, -0.49580323696136475, 0.5049984455108643, 0.3734165132045746, -0.7737831473350525, -1.2983771562576294, 1.0880351066589355, 0.035630300641059875, 0.39841461181640625, -0.5003156065940857, 0.3175101578235626, 0.22790409624576569, -0.6711214184761047, 0.29877883195877075, 0.09810654819011688, 0.24119725823402405, 0.7790305018424988, 0.8906238675117493, -0.3474443256855011, 0.17594687640666962, -0.3380889892578125, -0.17808935046195984, -0.03397656977176666, 0.5956985354423523, -0.4026908278465271, -0.1748562753200531, -0.17582154273986816, -0.14316070079803467, -0.24385017156600952, -0.5544984936714172, -0.3557758629322052, 0.6142158508300781, 0.3305511176586151, 0.2797183692455292, -0.26503708958625793, -0.38660910725593567, -0.5863239169120789, -0.020095383748412132, -0.014618908055126667, 0.2307777851819992, -1.3416123390197754, 0.13984133303165436, 0.43040338158607483, -0.5588451623916626, -0.272504061460495, -0.6167787313461304, -0.11988294869661331, -1.3602426052093506, -0.945042073726654, -0.8792372345924377, -0.020984122529625893, 0.6616271734237671, -1.5229853391647339, 0.32758721709251404, 0.9598925113677979, -1.3961480855941772, 0.07414960116147995, 0.4627076983451843, -1.607606291770935, -0.2701992392539978, -1.2757964134216309, 1.5566531419754028, -0.030643846839666367, -0.03216054290533066, 0.18140672147274017, 0.6325477957725525, -0.9557703733444214, -1.357481598854065, -0.6582772731781006, 0.23560455441474915, 0.8833414316177368, 0.9673000574111938, -0.4287685751914978, 1.246781826019287, 1.0405534505844116, -0.8495060801506042, -0.6080679297447205, 0.15687815845012665, -1.0468999147415161, 0.5808387994766235, 0.22291123867034912, 0.1998300999403, 0.20388686656951904, 1.1699297428131104, 0.31060725450515747, 1.2345633506774902, 0.24783524870872498, 0.9884822368621826, -0.9889090657234192, -0.6905050873756409, -0.1682056039571762, 0.5721977949142456, -1.4590911865234375, -1.344221591949463, -0.17662836611270905, -0.8422954082489014, -0.8720694780349731, 0.6875048875808716, 0.468600869178772, -0.29717808961868286, 0.4505036771297455, -0.3565726578235626, 0.5957347750663757, -0.5679238438606262, 0.36896440386772156, -0.16046357154846191, -0.4259026050567627, -0.314787358045578, 0.23775869607925415, -0.13212712109088898, -1.0563921928405762, 0.22726784646511078, -0.21258646249771118, 0.43681198358535767, -0.3643760681152344, 0.9410406947135925, 1.0715736150741577, 0.5488640666007996, -0.26743853092193604, 1.3162517547607422, 1.3982576131820679, -0.03836870566010475, -0.1872359663248062, 0.814820408821106, 0.509753942489624, 0.768521785736084, -0.7204880714416504, -0.12821219861507416, -1.011518955230713, 0.7026308178901672, 0.5050060153007507, 0.24486373364925385, -0.05056528002023697, 0.0544915497303009, -0.12523813545703888, 0.17313963174819946, 0.5205854177474976, -1.1925253868103027, 0.12609200179576874, 0.983284592628479, 0.051209427416324615, -0.11633514612913132, 0.09831403940916061, 0.7051864266395569, 0.22666507959365845, -0.5739220380783081, 0.5311790108680725, 0.968930721282959, -0.9394833445549011, 0.4768018424510956, 0.041474226862192154, -0.19579121470451355, 0.193698912858963, -0.5787867903709412, -1.0476593971252441, -0.11306217312812805, -0.5519726872444153, -0.7485575079917908, 0.6102635860443115, -0.9818041324615479, -1.2752563953399658, 0.016918767243623734, -0.08363431692123413, -0.49797818064689636, -0.07990339398384094, 0.0737743228673935, 0.1138148233294487, 0.9072331786155701, 0.8419924974441528, -0.3928593099117279, 1.3123260736465454, 0.2579287886619568, -0.20670375227928162, -0.840013861656189, -0.510047972202301, 0.3029838800430298, -0.5252906084060669, -0.17613661289215088, 0.6152767539024353, 0.2730642855167389, 0.4264106750488281, -0.10901393741369247, 0.20321249961853027, -0.02613331377506256, 0.3865772783756256, 0.3827623426914215, -0.35024744272232056, -0.07350252568721771, 0.24549318850040436, 0.48904454708099365, -0.22958187758922577, -0.3687293231487274, -0.35881054401397705, 0.29008811712265015, -0.5874639749526978, 0.33941149711608887, -0.626034677028656, 1.1880614757537842, 0.4938359260559082, -0.3051072359085083, -0.6594597697257996, -0.653170645236969, 0.5531207323074341, -0.5670992732048035, 0.9048628211021423, -0.20669645071029663, -0.019692618399858475, -0.3180420994758606, -1.0417417287826538, 0.7642834186553955, 0.5779191255569458, -0.12159989774227142, -0.0037934044376015663, -1.2632064819335938, -0.41582420468330383, -0.46182867884635925, 0.717191219329834, 0.9226292967796326, 0.15292513370513916, 0.12685425579547882, -0.2537633776664734, -1.3269237279891968, 0.5053715109825134, -0.3277422785758972, 0.4282628893852234, 0.28540122509002686, 1.5336966514587402, 1.6879991292953491, 0.5692395567893982, 0.5159778594970703, -0.12402727454900742, 0.7566080093383789, -0.16173724830150604, -0.6294638514518738, -0.45296141505241394, -0.402966171503067, 0.7261004447937012], [-0.5504437685012817, 1.6988457441329956, -2.4347567558288574, -0.09955545514822006, 0.9236358404159546, 0.34286391735076904, 1.1964350938796997, -0.3242260217666626, -0.22195957601070404, -0.7027676701545715, -0.1476317197084427, 0.3379792273044586, 0.2751501500606537, 1.1706074476242065, 0.9123806357383728, 0.897379457950592, 0.9562603831291199, -0.13769812881946564, 0.5283569693565369, 1.6610535383224487, -0.9517268538475037, -0.9164197444915771, -0.10789318382740021, -0.08491668105125427, -0.7345659732818604, -0.11060842871665955, -1.8143551349639893, -0.5817765593528748, -0.9156638979911804, -0.9867561459541321, 0.21527370810508728, -0.295510858297348, -0.49505600333213806, 0.260782927274704, -1.3040486574172974, -0.47153759002685547, 0.3287571370601654, 0.42163917422294617, 0.1567041575908661, 1.0629537105560303, 1.7504345178604126, 0.18072117865085602, -0.4136602580547333, -1.3577938079833984, 0.07841046899557114, -0.6107240319252014, 1.6713573932647705, -0.5535105466842651, -0.17470411956310272, -1.0064283609390259, 0.6623156666755676, -0.9049625396728516, 0.3650875687599182, 0.3475257158279419, 0.8119980096817017, 0.1426817625761032, -0.10406515002250671, -0.037887219339609146, 0.7338320016860962, -0.39071157574653625, 0.27867403626441956, 0.8095948100090027, -0.3059232831001282, 1.36448335647583, -0.34816473722457886, 0.07969595491886139, -0.8839495778083801, 1.078170657157898, -0.15081210434436798, -0.700598418712616, 1.1580523252487183, -0.3947907090187073, -0.2040833681821823, -0.271232932806015, -1.40916907787323, 0.10330571234226227, 0.18250393867492676, 0.3929603397846222, 0.7761706709861755, 0.22314518690109253, 0.06158037111163139, -0.02229228802025318, 0.914658784866333, -0.7737895250320435, 0.0020392099395394325, -0.2217862755060196, 0.8373197913169861, -0.46396276354789734, -0.6739827990531921, 1.217921495437622, 0.8514751195907593, -0.33418914675712585, 1.0842992067337036, -0.9585481286048889, -0.21167123317718506, -0.9172548055648804, -0.2629491984844208, -0.3602893352508545, -0.46294209361076355, -0.7801081538200378, -0.3576008677482605, -0.636303186416626, 0.1705806702375412, -0.4616509974002838, -0.6844292283058167, 0.9141449928283691, 0.43281108140945435, 0.07235179841518402, -0.021181747317314148, -0.028456728905439377, -0.2196047306060791, -0.03056037798523903, -1.2211273908615112, -1.1706455945968628, -0.7161030173301697, 0.806367039680481, 1.2175956964492798, 0.3830437958240509, 0.5981156229972839, 0.7160210013389587, -0.16160069406032562, -0.11418352276086807, -0.004570509307086468, 0.14294150471687317, 0.5889280438423157, 0.07568424940109253, -0.5264231562614441, -0.23634928464889526, 0.033398646861314774, -0.31840839982032776, -0.4152161478996277, -0.28199535608291626, -0.2729857563972473, 0.5328395962715149, -0.5872698426246643, 1.8781616687774658, 0.1683129221200943, -0.5240161418914795, -0.13347628712654114, -0.08621957153081894, 0.6018090844154358, -0.2921738922595978, 0.18594543635845184, -1.2398982048034668, -0.4967271089553833, -0.25572243332862854, -0.10160931944847107, -0.01303035020828247, -0.5416425466537476, 0.3281210958957672, -0.6687162518501282, 0.37599658966064453, 0.7230812907218933, 1.0529108047485352, 0.02942262962460518, -0.5032589435577393, 0.7480480074882507, 0.06699782609939575, 0.8083342909812927, -0.31616246700286865, 0.5590718984603882, -0.5019392371177673, -1.3005530834197998, 0.8017234802246094, 0.32404330372810364, -0.11592186242341995, 0.41480860114097595, 1.6034148931503296, -0.27851295471191406, 0.8374485373497009, -0.7128769159317017, 0.45527133345603943, -1.5822551250457764, 0.5227130055427551, 0.02374323643743992, -0.9671816825866699, 1.3527302742004395, -0.48090028762817383, -1.3786026239395142, -0.7508375644683838, 0.9525460600852966, -0.7960389852523804, -0.007741612382233143, -0.5131558179855347, 0.628607451915741, -0.351875364780426, 0.3109595775604248, -0.5331376194953918, 0.36444079875946045, -0.4015820026397705, -0.7770418524742126, -0.5665847063064575, -0.7373068332672119, 0.11921676993370056, -0.28282877802848816, -0.46478942036628723, 0.8873735070228577, -1.1105695962905884, -0.28044161200523376, 0.25529512763023376, 0.26033368706703186, -0.05829012393951416, -0.36041539907455444, 0.424457848072052, -0.4702688753604889, 0.47449058294296265, -0.5737406015396118, 0.3714025020599365, -0.748053789138794, -0.4163599908351898, 0.8529875874519348, 0.01703258790075779, -0.7336828708648682, 0.7715087532997131, -0.1740194857120514, -0.7774103283882141, 0.8174789547920227, 0.16705870628356934, -0.7474225759506226, -0.020482895895838737, 0.22257238626480103, 0.06401965022087097, -0.4049835503101349, -0.032326262444257736, 0.38679584860801697, -0.28900834918022156, -0.9286813735961914, -0.6057255864143372, -0.804553747177124, 0.41732102632522583, -1.2400627136230469, -1.2616387605667114, 0.31008732318878174, 0.6540287137031555, -0.4803992211818695, -0.1919018030166626, 0.1650664061307907, 0.3053862750530243, 0.9207254648208618, 0.5569131374359131, -0.1323503702878952, 0.40029585361480713, -0.4189484119415283, 0.27404317259788513, -0.5544177889823914, 0.3322477340698242, 0.40416035056114197, -0.6472058892250061, -0.09809400886297226, 1.2337186336517334, 0.9730891585350037, 0.5310215950012207, 0.7901497483253479, -0.36719053983688354, -0.04480467736721039, -0.8736417293548584, -0.7380337119102478, 0.2337130457162857, -0.25961488485336304, 1.584839105606079, 0.3398831784725189, -0.4510171115398407, -0.28286290168762207, -0.43357518315315247, -0.3472122251987457, -0.3451229929924011, -0.446447491645813, -0.6038488149642944, -0.5792033076286316, 0.012421153485774994, -0.9225979447364807, 0.27119752764701843, 0.2006719559431076, 0.22139237821102142, -0.16029150784015656, -0.3298788368701935, 0.09792481362819672, 0.21172770857810974, 0.17854885756969452, 1.2759450674057007, -0.38528263568878174, -1.3291338682174683, -0.3350982367992401, -0.46447402238845825, 0.48898327350616455, -0.48686710000038147, -0.14161449670791626, 0.20840580761432648, 0.697212815284729, -1.1400986909866333, 0.09326688200235367, -0.10611899942159653, -0.37185850739479065, -0.19046345353126526, 0.2987547516822815, 0.740350067615509, 0.6847918033599854, -0.42270374298095703, -0.4507676064968109, -0.0948338508605957, 0.202593594789505, 1.0718934535980225, 0.8611963987350464, 1.2582298517227173, -0.48036855459213257, 0.25559869408607483, 0.3058697283267975, 0.17619436979293823, -0.2571813464164734, -0.995954155921936, -0.7107735276222229, -0.7075791358947754, -0.4871407449245453, 0.034369051456451416, 0.6050713658332825, 1.3959531784057617, -0.3638356029987335, 1.2651845216751099, 0.7017500996589661, -0.8636437654495239, -1.3522135019302368, 0.15514080226421356, 0.44812825322151184, -0.0015246113762259483, 0.457279235124588, 1.2386459112167358, -0.2111176699399948, -0.7755663990974426, -0.010411020368337631, -0.8901336193084717, 0.6124408841133118, 0.20402821898460388, -0.22150753438472748, -1.5317378044128418, -0.5747197270393372, -0.3692266643047333, 1.7573490142822266, 0.3921319842338562, -0.3625742197036743, -0.14614172279834747, 0.022888433188199997, 0.5708303451538086, 0.12190134078264236, -0.585429310798645, 0.6022192239761353, 0.008900880813598633, -0.6567378044128418, 0.08792215585708618, 0.8175268173217773, 0.5620852112770081, -0.7445506453514099, -0.895983874797821, -0.32014572620391846, -0.34423545002937317, -0.9321059584617615, 0.24509869515895844, 0.16872327029705048, 0.7525082230567932, -0.7413657903671265, -0.3797591030597687, 0.7762516736984253, 0.09277883917093277, 0.23473377525806427, -1.4716757535934448, 0.33485162258148193, 0.47322750091552734, 1.2131224870681763, 0.19083328545093536, 0.1315062791109085, 0.636528730392456, 0.1435973346233368, -0.12811757624149323, 0.5326734781265259, 0.01566297747194767, 0.04217839986085892, -0.20871730148792267, -0.3666320741176605, 0.3200606405735016, -0.07722119987010956, -0.44894540309906006, 0.16593687236309052, 0.7762595415115356, -1.1411840915679932, -0.5408492684364319, 0.6880658864974976, 0.5477315187454224, -0.5844806432723999, -0.7499300241470337, 0.7050067782402039, 0.46284881234169006, -1.114670753479004, 0.32452264428138733, -0.5909906625747681, -0.1840941607952118, 0.3131815195083618, -1.4361908435821533, -0.2429606169462204, -0.1328931450843811, 0.4138181209564209, 0.7469090223312378, -1.2263190746307373, -0.3168322443962097, 0.0016717934049665928, 0.28508588671684265, 0.9916803240776062, 0.16140389442443848, 0.6927906274795532, 0.29383185505867004, -0.2733875811100006, -0.38089999556541443, 0.14049378037452698, 1.7634669542312622, 0.1856893002986908, -0.04622581601142883, 0.28107109665870667, 0.49240803718566895, -0.2742401957511902, -0.06437642872333527, 0.08267434686422348, -0.22822542488574982, -0.5071195960044861, 0.190407395362854, -0.09172419458627701, 0.18111003935337067, 1.3471488952636719, 0.23998531699180603, 0.4507794678211212, 0.3142945170402527, -0.5730406641960144, -0.7904426455497742, 0.15963563323020935, 0.23615524172782898, -0.4156394898891449, -0.8682800531387329, 0.05225125700235367, 0.20516633987426758, 0.44922956824302673, 0.603977620601654, 0.4823031723499298, 1.869663953781128, 0.11646996438503265, -0.21538382768630981, -0.0170203298330307, 0.34672632813453674, 0.9566695094108582, 1.2901005744934082, 0.41261985898017883, -0.03609290346503258, -1.1297932863235474, 0.8507664203643799, -0.500283420085907, 0.009566066786646843, 0.7507582306861877, 0.10096427798271179, 1.0199041366577148, -0.9118465185165405, -0.4770265221595764, 0.5063832998275757, -0.007537243887782097, -0.07822060585021973, 0.17997244000434875, -0.4053542912006378, -0.2759513854980469, 0.23146240413188934, 0.12871888279914856, 0.45255374908447266, 0.8782485127449036, -0.6151639819145203, 0.45780959725379944, 0.16609813272953033, -0.5438476800918579, 0.5198086500167847, -0.529620349407196, 0.6460844874382019, -0.27046361565589905, -0.22240778803825378, 0.03580596297979355, 0.7994433045387268, 0.015012710355222225, 1.5441277027130127, -0.4387739598751068, -0.7679281234741211, 0.39429739117622375, -0.4565463066101074, 0.49148446321487427, -0.7147799730300903, 0.3334307372570038, 0.16059240698814392, -0.0837029367685318, -0.22624339163303375, -0.26316338777542114, -0.8718962669372559, -0.9581984877586365, -0.7628484964370728, -0.7899670600891113, 0.33991119265556335, 0.9752700328826904, 1.206581473350525, 1.0247141122817993, 0.5960108041763306, 0.7144023776054382, 0.6207512617111206, -0.7080824971199036, -0.5608307123184204, -0.14724406599998474, -0.7662475109100342, 0.30566754937171936, -1.3151988983154297, -0.301540732383728, 0.679844081401825, 0.8192260265350342, -0.013321724720299244, 0.6369622349739075, 0.8421425819396973, 1.2717005014419556, -0.5058252811431885, -0.9130959510803223, 0.6090035438537598, -0.42022502422332764, 0.7784875631332397, 0.6034804582595825, -0.8740461468696594, -0.4821685254573822, -1.1314469575881958, -1.4184004068374634, 1.1445306539535522, 0.020984752103686333, -0.2161659300327301, 1.195000171661377, 0.668705940246582, -0.5336891412734985, 0.7485933899879456, -0.08602040261030197, 0.30007311701774597, 0.2849707305431366, -0.15334369242191315, -0.4138699173927307, 0.5529584288597107, 0.2746056616306305, 0.7050802111625671, -0.11680078506469727, 0.9495900869369507, -0.6123939156532288, -0.0511857308447361, 0.5849425196647644, 0.18850725889205933, 0.366794228553772, 1.3086202144622803, 0.728536069393158, -0.24457786977291107, 0.5363046526908875, -0.06781528890132904, -0.4582426846027374, -0.19637930393218994, 0.5344889760017395, -0.0740995705127716, -0.4929695725440979, -0.1376267820596695, 0.2886516749858856, -0.438800573348999, -0.23662438988685608, -0.8525302410125732, 0.558769166469574, 0.2904717028141022, 0.3264968991279602, 0.2828105688095093, -0.1729932576417923, -0.30374157428741455, -0.1727915108203888, 0.10709346830844879, 0.6321166753768921, -1.201332926750183, 0.10589326173067093, 0.20087899267673492, -0.5744897127151489, -0.11646297574043274, 0.4078391194343567, -0.5085281133651733, -0.945101797580719, -0.757643461227417, -0.8608863949775696, 0.1747441589832306, 0.4770706593990326, -0.7518993020057678, 0.8373271822929382, 0.2008899301290512, -1.5325531959533691, -0.0364542230963707, 0.1619102656841278, -1.2164652347564697, -0.6155609488487244, -1.323028564453125, 0.966626763343811, 0.6047762632369995, 0.402078777551651, -0.29514986276626587, 0.8271195888519287, -1.5960347652435303, -1.3415566682815552, -1.2116798162460327, -0.03814031928777695, 0.9474483132362366, 0.4258292019367218, -0.5363762974739075, 1.1480724811553955, -0.03082229383289814, -0.4549078345298767, -0.5774925351142883, 0.4462273418903351, -0.5761388540267944, 0.4799702763557434, -0.11946440488100052, 0.6181394457817078, -0.3621458411216736, 1.3071480989456177, 0.19965499639511108, 1.6381449699401855, 0.19250988960266113, 1.2445061206817627, -0.6907202005386353, 0.3157598376274109, -0.7905004620552063, 0.695820152759552, -1.2361822128295898, -0.3872195780277252, -0.055356938391923904, -1.0293117761611938, -0.7479600310325623, 0.5135972499847412, 0.7178340554237366, -0.9256037473678589, -0.6092715859413147, -0.9981293082237244, 0.5777417421340942, -0.8129792809486389, 0.29986900091171265, -0.5376174449920654, -0.4906492233276367, -0.035214588046073914, -0.05671007186174393, -0.23636631667613983, -0.8970663547515869, 0.1286071538925171, 0.7354360222816467, 0.03674684464931488, -0.5733070373535156, 0.9759699106216431, 1.020867109298706, 0.586301326751709, -1.3409051895141602, 1.466450572013855, 0.9388426542282104, -0.14439062774181366, -0.19991447031497955, 0.2899887263774872, 0.24870966374874115, 0.3832384943962097, -0.49500542879104614, -0.30376026034355164, -0.3763745427131653, 0.7558353543281555, -0.030981458723545074, 0.16042596101760864, -0.10441979020833969, 0.036605849862098694, -0.3224185109138489, -0.19108568131923676, 0.9434860944747925, -0.8989689350128174, 0.12261945754289627, 1.2693437337875366, -0.006271610036492348, -0.3464325964450836, -0.3026454746723175, 0.4701710343360901, -0.14513376355171204, -0.41036754846572876, 1.0700443983078003, 0.9217126965522766, -1.1109453439712524, 0.22074764966964722, 0.19524599611759186, 0.030648328363895416, 0.135538250207901, -0.2614927291870117, -1.4409860372543335, -0.5100566744804382, -0.20875991880893707, -1.1907442808151245, 0.5528069138526917, -1.241154670715332, -0.5978883504867554, 0.15648230910301208, 0.2952360510826111, -0.15484073758125305, -0.08348984271287918, 0.2064276933670044, -0.33008724451065063, -0.04120873287320137, 0.4939925968647003, -0.24721656739711761, 0.9556857347488403, 0.047906018793582916, 0.22730380296707153, -0.6024202108383179, -0.4273228943347931, 0.3663718104362488, 0.3721833825111389, -0.03347228094935417, -0.2300073802471161, 0.7444348335266113, -0.11378500610589981, -1.0071905851364136, 0.1524752527475357, 0.5805057287216187, 0.8348162174224854, -0.7125467658042908, -0.5287206768989563, 0.01111016608774662, 0.3026379346847534, 0.8490278720855713, -0.033945824950933456, -0.5035400986671448, -0.7923649549484253, 0.32146283984184265, -1.1829739809036255, 0.7913932800292969, -0.30255740880966187, 0.2532350718975067, 0.7935570478439331, -0.584807813167572, 0.153462752699852, 0.01788582094013691, 0.21010136604309082, -0.07162296772003174, 0.10756196081638336, 0.3868451416492462, -0.17841389775276184, 0.18389278650283813, -0.8639879822731018, 0.7157042622566223, 0.5731704235076904, -0.3295125365257263, -0.1996798813343048, -0.7642883062362671, -0.7882051467895508, -0.6414603590965271, 0.23672063648700714, 0.3828791677951813, 0.057707011699676514, 0.2574450969696045, 0.026418685913085938, -0.6606862545013428, 0.00016190065070986748, 0.4206637740135193, -0.6119818687438965, 0.3743831217288971, 1.4700182676315308, 1.0845836400985718, 0.19785867631435394, 0.4998818337917328, -0.6077418923377991, 0.23938484489917755, -0.259286105632782, -0.3503479063510895, 0.1384253054857254, -0.17287683486938477, 0.23879434168338776], [-0.26269057393074036, 2.0114192962646484, -2.2336983680725098, 0.4929974377155304, 0.6928521990776062, 0.3636435866355896, 1.491621494293213, -0.5336926579475403, 0.4684593081474304, -0.6953877210617065, -0.5014642477035522, -0.6642090082168579, 0.9079687595367432, 0.9542452692985535, 0.43884792923927307, 0.8040472865104675, 0.8979049921035767, -0.6204701066017151, 0.6565388441085815, 0.9153786897659302, -0.04164694622159004, -0.43873006105422974, 0.23863442242145538, 0.5939335823059082, -0.4104519188404083, 0.363055944442749, -0.703499436378479, -0.9149930477142334, -1.2014180421829224, -1.362367868423462, 0.5098375082015991, -0.32799679040908813, 0.2617669105529785, 0.107327900826931, -1.160182237625122, -0.016792774200439453, 1.2377567291259766, 1.011857032775879, 0.54903244972229, -0.2792036235332489, 1.9158673286437988, -0.4021987318992615, 0.003141420427709818, -1.7142643928527832, 0.34084951877593994, -0.19737836718559265, 1.2263822555541992, -1.2867348194122314, 0.11037658900022507, -0.5939464569091797, 0.5458009243011475, -0.2548089921474457, 0.6962236166000366, 0.6242616176605225, 0.7642725110054016, -0.19377441704273224, 0.2564209997653961, 0.1234837993979454, 0.5186502933502197, -0.1948477327823639, 1.3379642963409424, -0.16702833771705627, -0.16639673709869385, 0.526890218257904, 0.528293251991272, -0.6074504256248474, -0.2604891359806061, 0.2683236598968506, -0.4072893559932709, 0.23851189017295837, 0.6705740094184875, 0.16182848811149597, -0.8496447205543518, -0.17836865782737732, -1.4012296199798584, 0.6680701971054077, 0.5436201095581055, 0.7200532555580139, 0.414384663105011, 0.6665703058242798, -0.7430622577667236, -0.5872821807861328, 0.7042810916900635, -0.181522399187088, 0.4720442295074463, -0.12632428109645844, 0.023060154169797897, -0.29092341661453247, -0.5276744365692139, 1.511279821395874, 0.3041727542877197, 0.3873533308506012, 0.7182657122612, -0.2967642545700073, -0.16927766799926758, -0.01007022149860859, 0.11829552054405212, -0.5794825553894043, -0.7536958456039429, -0.8282163143157959, -0.059288427233695984, -0.7268345952033997, 0.4687325954437256, 0.5678189396858215, -0.21822497248649597, 0.791469931602478, 0.5359109044075012, -0.2423679232597351, -0.8424282073974609, -0.22770872712135315, -0.2877729535102844, 0.29914653301239014, -0.9612720012664795, -1.5803552865982056, -0.6913624405860901, 1.095920205116272, 1.5164291858673096, -0.024105418473482132, 0.6817717552185059, 0.6143604516983032, -0.33906981348991394, -0.3932625651359558, 0.35416027903556824, 0.47609376907348633, 0.5570744276046753, 0.8954012393951416, -0.9800295233726501, -1.1690316200256348, 0.6085212230682373, 0.0840839296579361, 0.7517768740653992, 0.16701993346214294, -0.5617154836654663, 0.9189208745956421, -0.7236605882644653, 1.152702808380127, -0.7122853398323059, -0.4367685317993164, 0.16812396049499512, -0.561413049697876, 0.4990890622138977, -0.5374579429626465, -0.37514275312423706, -0.7236433625221252, -0.04498446732759476, -0.7692813873291016, 0.4493982195854187, -0.2609812915325165, -0.7759830951690674, 0.20168116688728333, -1.243154764175415, 0.03669073432683945, 0.5598572492599487, 0.8554090261459351, 0.4597587585449219, 0.010767445899546146, 0.542873203754425, 0.45654749870300293, 0.3651176691055298, 0.25362104177474976, 1.1331787109375, -0.03313804417848587, -0.9156506061553955, 0.782070517539978, 0.22695326805114746, -0.02498757839202881, 1.160386323928833, 0.979955792427063, -0.11647126823663712, 1.0946993827819824, 0.0822807103395462, -0.5901702642440796, -0.31976190209388733, 1.134545922279358, 0.456643283367157, -0.9332370758056641, 1.412773847579956, -0.39645814895629883, -2.1313581466674805, -1.348833680152893, 0.8572283387184143, -0.35299593210220337, 0.08373171836137772, 0.020030293613672256, -0.05336323380470276, -0.9692203998565674, 0.5827077627182007, 0.2571190595626831, -0.922582745552063, -0.7166142463684082, -0.23030471801757812, 0.027305006980895996, -1.023283839225769, 0.021501077339053154, -0.376489520072937, -0.6680989265441895, 0.3850119113922119, -1.4471001625061035, -0.7181569337844849, 0.45343393087387085, -0.07897671312093735, -0.37234580516815186, -0.5979475378990173, 0.27567827701568604, -0.41234371066093445, 1.0653630495071411, -1.5178043842315674, 0.9889734983444214, -0.3510042428970337, 0.562024712562561, 0.8564882278442383, -0.07798640429973602, -1.1416232585906982, 0.5673927068710327, 0.13341644406318665, -1.712676763534546, 0.6617212295532227, 0.5069401860237122, -0.5126201510429382, 0.03879540041089058, -0.33995527029037476, -0.2381402552127838, -0.20595629513263702, 0.4376299977302551, 0.5732395648956299, 0.2999749183654785, -0.6179823279380798, -0.7602820992469788, -0.5855077505111694, 0.09390889108181, -0.5471364259719849, -1.0863393545150757, 0.6762786507606506, 0.5127570629119873, -0.6575967073440552, 0.11385641992092133, 0.2628142237663269, 0.9297724366188049, 0.23842522501945496, 1.6646445989608765, 0.24326887726783752, 0.4703977704048157, 0.38419467210769653, -0.21149605512619019, -0.7294315099716187, 0.9872545003890991, 0.6088828444480896, 0.12560918927192688, 0.08354247361421585, 1.544917106628418, 0.9481974244117737, -0.15398208796977997, 0.5374734997749329, -0.30019059777259827, 0.03424731642007828, -0.5352964997291565, -0.9765655994415283, 0.033719491213560104, -0.7397266626358032, 1.8434094190597534, 0.9310778975486755, -1.2165923118591309, -0.23742039501667023, -0.0973464623093605, -0.19457823038101196, 0.07834912836551666, -0.3944268822669983, -0.5132687091827393, -0.352963924407959, 0.44035351276397705, -0.13941314816474915, 0.3098851442337036, -0.0067077623680233955, 0.7887827157974243, -0.8618192672729492, -0.9172731637954712, -0.5157670974731445, 0.03567681089043617, 0.19271983206272125, 1.2079596519470215, 0.38298654556274414, -1.5997685194015503, -0.4073837399482727, 0.3194635510444641, 1.0650583505630493, 0.17898809909820557, 0.2806265652179718, 0.36520206928253174, 0.19696828722953796, -0.30562102794647217, 0.12868425250053406, 0.3082641363143921, 0.13601332902908325, 0.4948658049106598, -0.3599897027015686, 0.6268380880355835, 0.7479705810546875, -1.9244191646575928, -0.5736370086669922, 0.05416953191161156, 0.5655966997146606, 1.8464305400848389, 0.7616503238677979, 1.050661563873291, -0.17166171967983246, -0.013963605277240276, -0.6606816649436951, -0.7489047646522522, -1.28086519241333, -0.6414490938186646, -0.7100054025650024, -0.8051431775093079, -0.11534818261861801, 0.3308711647987366, -0.1252979040145874, 0.29994073510169983, -0.366788387298584, 0.4449195861816406, 1.807259440422058, -0.2906961441040039, -0.6291738152503967, -0.3849119246006012, -0.32694947719573975, -0.6559039354324341, 0.5653226971626282, 1.2212014198303223, -1.1476718187332153, -0.6899683475494385, 0.6188065409660339, 0.09340991079807281, 0.4588963985443115, 0.5139611959457397, -0.09632362425327301, -1.2984614372253418, -1.1991820335388184, 0.02246735990047455, 1.543149471282959, -0.11128281056880951, -0.4544670581817627, -0.6735665798187256, 0.2882290780544281, 0.06685100495815277, -0.4539496600627899, -0.28703802824020386, 0.6430302262306213, -0.9718316793441772, -0.24039748311042786, -0.48293426632881165, 0.2983151376247406, 0.4081823229789734, -0.8059329986572266, -0.6595480442047119, -0.6585550308227539, -0.5005329847335815, -0.36671361327171326, 0.665229320526123, 0.0683252140879631, 1.6246418952941895, -0.2122282087802887, 0.19425857067108154, 0.9030159711837769, 0.7064982652664185, -0.3999911844730377, -0.7417800426483154, 0.448916494846344, 0.7999135851860046, 0.7578120231628418, -0.09655455499887466, 0.29192453622817993, 0.5272811651229858, 0.5097281336784363, 0.22246187925338745, 0.5474591851234436, 1.4145066738128662, 0.30490177869796753, 0.15792900323867798, -1.1957672834396362, -0.09061700105667114, -0.20761840045452118, -0.9072245359420776, 0.3103591799736023, 0.7179979681968689, -0.41357529163360596, -0.5353257656097412, 1.187492847442627, 0.1025998443365097, -0.5551974177360535, -0.10467939078807831, 0.014925525523722172, 1.093205213546753, 0.10820549726486206, -0.030265217646956444, -0.28525441884994507, -0.08461356163024902, 0.31014344096183777, -1.19462251663208, -0.22996553778648376, 0.09453420341014862, 0.3955349326133728, 1.0817584991455078, -0.45719271898269653, 0.07088581472635269, -1.0951324701309204, -0.00497552752494812, 0.5417134761810303, -0.3889732360839844, 0.35304439067840576, -0.08185270428657532, -0.41778379678726196, -0.11441948264837265, 0.5820696949958801, 1.3497884273529053, -0.5046313405036926, -0.31583866477012634, -0.06516920775175095, -0.3127886652946472, -0.2433624267578125, -0.7980043888092041, -0.5441420078277588, 0.23852887749671936, -0.8647211194038391, -0.14836350083351135, -0.04748857766389847, -0.5078795552253723, 1.4456119537353516, 0.41131722927093506, 0.3820263147354126, 0.05804537981748581, -0.25519609451293945, -0.6375430226325989, 0.06576407700777054, 0.26777973771095276, -0.10134708881378174, -0.42008620500564575, -0.37401172518730164, 0.5327736139297485, -0.4030492901802063, 0.42235565185546875, 0.4336407780647278, 0.6585126519203186, -0.15215378999710083, 0.3402481973171234, 0.05102530121803284, 0.6321139931678772, 1.1357605457305908, 0.9784810543060303, 0.6010862588882446, -0.25714921951293945, -0.29162442684173584, 0.4238853454589844, -0.940781831741333, 0.3523573577404022, 0.9756699800491333, 0.5146024823188782, 0.8901586532592773, -1.4842360019683838, -0.8927700519561768, 0.7749748229980469, 0.505622386932373, 0.6231623291969299, 1.0429720878601074, -0.44319793581962585, 0.5473634004592896, 0.43196922540664673, 0.1984228491783142, 0.03968214616179466, 0.1667291522026062, -0.07857357710599899, -0.5052698254585266, 0.7268751263618469, -1.138807773590088, 0.49565669894218445, -0.6466060876846313, -0.682146430015564, -0.4496658444404602, -0.9018077850341797, 0.06151410937309265, 0.44083887338638306, 0.6514855623245239, 0.911104679107666, -0.5127918720245361, -0.8086066842079163, -0.20865553617477417, -0.5726895928382874, 0.474854439496994, -0.6245242357254028, -0.12042311578989029, -1.1166762113571167, -0.1970173418521881, -0.5050241947174072, 0.565375566482544, -0.3600369095802307, -0.8022246360778809, -0.6725780963897705, -1.3095595836639404, -0.04646521434187889, 1.0824575424194336, 1.5022475719451904, 0.6873831748962402, -0.24990767240524292, 0.37346935272216797, -0.2734885811805725, -1.189269781112671, 0.142356276512146, 0.7872583866119385, 0.21416157484054565, -0.037625752389431, -1.027363657951355, -0.43616968393325806, -0.002361040562391281, 0.004517490044236183, -0.23113776743412018, 0.9400039911270142, 0.7231108546257019, 0.8489489555358887, -0.3742603063583374, -0.678591787815094, -0.06410536170005798, -0.5805956125259399, 0.7174372673034668, 0.7786324620246887, -0.852377712726593, -0.5462737083435059, -0.6342540383338928, -0.8559633493423462, 0.8455460071563721, -0.8122730255126953, -0.8621054887771606, 1.0793702602386475, 0.26369673013687134, 0.13317489624023438, 0.43068528175354004, -0.8127452731132507, 0.6316298842430115, 0.016963263973593712, -0.25353896617889404, -1.3015968799591064, 0.09746788442134857, 0.43248414993286133, -0.14706745743751526, -0.4206162095069885, 0.3716297149658203, -0.1017417311668396, 0.05605969950556755, -0.4918431043624878, 0.3191552460193634, 0.5933464765548706, 0.9977996349334717, -0.004427550360560417, -0.6514534950256348, 0.2421913892030716, -0.6656690239906311, -0.8186299800872803, -0.06654669344425201, 0.6612812876701355, 0.22170360386371613, -0.8193974494934082, -0.07570675760507584, -0.20454207062721252, -0.4672602415084839, -0.30332744121551514, -0.43303075432777405, 0.5719465017318726, 0.4846835434436798, 0.561267077922821, -0.25568825006484985, -0.1257420927286148, -0.4288538992404938, -0.763357400894165, 0.2044440507888794, 0.5988982915878296, -1.3184314966201782, -0.26289260387420654, 0.4825974106788635, -0.744732677936554, -1.0398002862930298, -0.025688057765364647, 0.10788464546203613, -1.4252009391784668, -0.9772909283638, -1.2436251640319824, 0.7232221364974976, 0.427232563495636, -0.9106371402740479, 0.6702471971511841, 0.5538550615310669, -1.5415964126586914, 0.4775247573852539, -0.5404620170593262, -1.4360486268997192, 0.17468306422233582, -0.8880102634429932, 0.6353490352630615, -0.3064448833465576, -0.3013104200363159, 0.010254180058836937, 0.999243974685669, -1.4851853847503662, -1.279937982559204, -0.9238395094871521, -0.4377080798149109, 1.5659878253936768, 0.46344733238220215, -0.6017889380455017, 1.669480800628662, 0.9765470623970032, -0.4136342406272888, -0.07313628494739532, 0.33301445841789246, -0.6679912209510803, -0.09925080090761185, 0.5788660049438477, 0.6094176769256592, 0.6274701356887817, 1.1108403205871582, 0.31605714559555054, 0.9744268655776978, 0.167551651597023, 1.088139295578003, -0.8186361789703369, -0.7822808027267456, 0.4050236642360687, 0.9482909440994263, -0.7633578777313232, -0.4900081157684326, -0.6162055730819702, -0.5087133646011353, -1.1487654447555542, -0.2494555413722992, 0.6232054233551025, -0.5316593050956726, 0.5059218406677246, -0.46667641401290894, 0.811269998550415, -0.6045956015586853, 0.4088911712169647, 0.35318055748939514, -0.15030185878276825, -0.4096721410751343, 0.22459127008914948, -0.32819753885269165, -1.590163230895996, 0.47039973735809326, 0.3027569651603699, -0.29890328645706177, -0.18418382108211517, 0.07116229832172394, 0.3494841158390045, 0.30574703216552734, -0.42006707191467285, 1.959320068359375, 0.6042090058326721, -0.6981472373008728, -0.1137780100107193, 0.40550678968429565, -0.10263322293758392, 0.4044750928878784, -0.3431853652000427, -0.3488963842391968, -0.7827485799789429, 0.9006261229515076, 0.2958064675331116, 0.17868191003799438, -0.3764718174934387, 0.5081087350845337, -0.5308345556259155, 0.2790171205997467, 1.3510868549346924, -0.9979552030563354, -0.25343579053878784, 1.4925488233566284, 0.11515539884567261, -0.6519705057144165, 0.4761820435523987, 0.40391770005226135, -0.1075267642736435, -0.7067677974700928, 0.33249062299728394, 0.7960066795349121, -0.8441070318222046, 0.5632385015487671, -0.4890797436237335, -0.4522758722305298, 0.06478658318519592, -0.6285920739173889, -1.513300895690918, -0.02899783104658127, -0.2703174352645874, -0.8868210911750793, 1.011546015739441, -1.2070021629333496, -0.40099868178367615, 0.7622008323669434, -0.15376709401607513, -0.03395049646496773, -0.162305548787117, -0.050955332815647125, 0.027334697544574738, -0.19035673141479492, 1.1491109132766724, -0.38267815113067627, 1.4485032558441162, -0.021464388817548752, -0.023627422749996185, -1.134710431098938, -0.1095079705119133, 0.2388937920331955, -0.05797616019845009, -0.3349906802177429, 0.10004738718271255, 1.0610406398773193, -0.08137556910514832, -0.6003401279449463, 0.19261473417282104, -0.15207186341285706, 0.39023858308792114, 0.10568058490753174, -0.14575359225273132, 0.5054386854171753, 0.7049840092658997, 0.5127711296081543, -0.6231209635734558, -0.4235053062438965, -0.6322464346885681, 0.3018656373023987, -0.5205928087234497, -0.058527104556560516, 0.08264818787574768, 0.9780523777008057, 0.503089189529419, -0.24727141857147217, -0.8233237266540527, -1.032639741897583, 0.4773940443992615, 0.19891777634620667, -0.18938995897769928, -0.36934906244277954, -0.08274690806865692, -0.5103470683097839, -0.7747089862823486, 0.05011153966188431, 0.47865891456604004, -0.2244039922952652, 0.5621212720870972, -1.1973400115966797, -0.8326431512832642, -0.4847605526447296, 0.41086632013320923, 1.4962728023529053, 0.6089668869972229, 0.30829280614852905, 0.39090055227279663, -1.3175266981124878, -0.12171228229999542, 0.07084901630878448, 0.8511179089546204, 0.3987749516963959, 1.3806633949279785, 2.122384786605835, 0.29429003596305847, 0.07181181758642197, -0.2171260118484497, 0.48199158906936646, -0.6847634315490723, -0.3570733070373535, -0.6663975715637207, -0.5373631715774536, -0.7365257740020752], [0.16929972171783447, 1.4101616144180298, -3.0822412967681885, -0.3959779143333435, 0.3171832859516144, 0.4027473032474518, 1.1384221315383911, -1.129006266593933, 0.10062458366155624, -0.970025360584259, -0.11561718583106995, -0.21165087819099426, 0.3884228765964508, 1.2441200017929077, 0.7955259680747986, 0.9754440784454346, 1.107479453086853, -0.6606162786483765, 0.45860496163368225, 0.21131333708763123, 0.08712107688188553, -0.8118746280670166, 0.5310503244400024, 0.7717674970626831, -0.6558167338371277, -0.29048678278923035, -0.9122682213783264, -0.37997502088546753, -1.2976000308990479, -1.5631163120269775, 0.6094422936439514, -0.6751211285591125, -0.5918026566505432, -0.9823375940322876, -1.5797522068023682, -0.786465048789978, 0.8719318509101868, 0.5876774787902832, 0.4215773344039917, -0.09860426187515259, 1.19271981716156, -0.51641845703125, 0.19555895030498505, -1.1168158054351807, 0.8702453374862671, -0.7299513816833496, 1.76693856716156, -1.1473180055618286, -0.2873325049877167, -0.4113541543483734, 0.3810955882072449, -0.5424908995628357, 0.2243167757987976, 0.30924543738365173, 0.5441774725914001, -0.3165150582790375, 1.1570676565170288, 0.5833053588867188, 0.33819580078125, -0.3861781656742096, 1.3117581605911255, -0.40788090229034424, 0.2664754390716553, 0.874168336391449, -0.0937063992023468, -0.584723949432373, -0.34747952222824097, 0.22970591485500336, -0.05410327389836311, -0.08111545443534851, 1.2916240692138672, -0.32804960012435913, -0.3910471200942993, -0.25868117809295654, -1.8146042823791504, 0.7787150740623474, 0.9474179148674011, 0.3403931260108948, -0.18741676211357117, 0.5077787041664124, 0.21403953433036804, -0.7118709087371826, -0.2062217742204666, -0.4002017080783844, 0.8269836902618408, 0.4009975790977478, 1.091957688331604, -0.3989965617656708, -1.1852951049804688, 1.2334119081497192, 0.32665756344795227, -0.5833746790885925, 1.0540999174118042, -0.39210015535354614, -0.0711640864610672, -0.4292597472667694, 0.1164344772696495, -0.254478394985199, -0.911028265953064, -1.0211910009384155, -0.6210671067237854, -0.9725121855735779, 0.051263172179460526, -0.0667872279882431, 0.38428178429603577, 1.1864739656448364, 0.7891483902931213, -0.5658130645751953, -0.5436538457870483, -0.4670662581920624, -0.30728498101234436, 0.40750303864479065, -0.5917841792106628, -0.8023138046264648, -0.828959584236145, 1.5297750234603882, 1.8529456853866577, -0.4558458626270294, 0.6939961314201355, 1.5220916271209717, -0.47900885343551636, -0.6383665204048157, -0.40283605456352234, 0.85679692029953, 0.9896119832992554, 1.046937346458435, -0.9882315993309021, -0.6583964824676514, 0.561352550983429, -0.18184687197208405, 0.7386539578437805, -0.07988999783992767, -0.4461783170700073, 1.098158359527588, -1.0249496698379517, 0.6498847007751465, -0.12462998181581497, 0.04135879874229431, 0.8857417106628418, 0.36782342195510864, 0.15522170066833496, -0.8186819553375244, -0.3256031274795532, -0.6230951547622681, 0.16083136200904846, 0.34408146142959595, -0.07264763861894608, -0.04757281020283699, -0.5721502304077148, -0.11791862547397614, -0.5346806049346924, 0.5083780288696289, 0.4152297377586365, 1.065128207206726, 0.2239614576101303, -0.20107485353946686, 0.009750776924192905, 0.1592094451189041, 0.8649749159812927, 0.20751558244228363, 1.445747971534729, -0.08872710168361664, -0.4488685429096222, 0.5498854517936707, 0.5133881568908691, -0.44514986872673035, 0.136947900056839, 0.7387660145759583, 0.18465514481067657, 0.6556522250175476, -0.8208406567573547, -0.6932047009468079, -0.5415316820144653, 0.15434181690216064, 0.4768821895122528, -0.33837562799453735, 1.7054173946380615, -0.7487560510635376, -1.8281599283218384, -1.1038204431533813, 0.20021022856235504, -0.1362723708152771, 0.681069552898407, 0.07219855487346649, 0.08846043050289154, -0.4865931272506714, 0.2130812406539917, -0.41146257519721985, -0.9079980254173279, -0.6377514600753784, -0.3148641586303711, -0.3235219120979309, -0.5631729960441589, 0.32384607195854187, -0.6701923608779907, -0.6870296001434326, 1.0925631523132324, -1.307889461517334, -0.37786582112312317, 0.1843688189983368, -0.12690649926662445, 0.1499357670545578, -0.7035434246063232, 0.21932241320610046, -0.43963921070098877, 1.504140019416809, -0.3098110258579254, 0.9571660757064819, -0.2879191040992737, -0.25334852933883667, 0.8341786861419678, 0.6144946813583374, -0.9816992282867432, 0.02289498783648014, 0.13834019005298615, -1.837928056716919, 0.6068100929260254, 0.9312645196914673, -0.5648164749145508, -0.14049988985061646, 0.22898131608963013, 0.559136152267456, 0.3361155092716217, 0.00940363947302103, 0.32658445835113525, -0.3386511206626892, -1.1617541313171387, -0.5683713555335999, -0.20941102504730225, -0.1452711671590805, -0.33935147523880005, -0.5186963081359863, 0.21963709592819214, 0.34055793285369873, -0.4765728712081909, 0.06003076955676079, 0.6460596323013306, 1.1063547134399414, 0.3918803632259369, 1.0367244482040405, 0.6856208443641663, -0.11611419171094894, -0.333476722240448, -0.6229157447814941, -0.5523785352706909, 1.6271579265594482, 1.0836553573608398, 0.03980432078242302, 0.14159469306468964, 1.5744788646697998, 1.8852440118789673, -0.33981695771217346, 0.47607240080833435, -0.1388060450553894, -0.23627698421478271, -0.23980584740638733, -1.1310296058654785, 0.558284342288971, -0.8522430658340454, 1.2022182941436768, 0.804244875907898, -0.9002599716186523, 0.07095666974782944, -0.4169601500034332, 0.5827407836914062, -0.36292240023612976, -0.6861838698387146, 0.4208104610443115, -0.04718296229839325, -0.25131452083587646, -0.153213769197464, 0.06551478803157806, -0.0008138539269566536, 0.6574157476425171, -1.0505810976028442, -1.008886456489563, -0.5461398363113403, 0.43294423818588257, -0.020019829273223877, 1.6883264780044556, -0.17108634114265442, -2.167924165725708, -0.36756131052970886, 0.4198002219200134, 0.8358104228973389, 0.38608527183532715, -0.45997557044029236, 0.80601567029953, 0.20249372720718384, -0.9426900744438171, 0.7835072875022888, 0.2857104539871216, 0.16208331286907196, -0.014790000393986702, -0.025771310552954674, 0.27321064472198486, 1.263859748840332, -0.5077283978462219, -0.575555145740509, -0.43432071805000305, 0.04598259925842285, 1.466101884841919, 0.15053729712963104, 1.1585001945495605, -0.08399134129285812, 0.5016459822654724, -0.07221788167953491, -0.38202622532844543, -0.23683632910251617, -0.8738523125648499, -0.6999766230583191, -0.274402379989624, -0.2190876007080078, 0.014157038182020187, -0.43547943234443665, 1.0497618913650513, 0.09604883193969727, 0.3857101798057556, 1.2286652326583862, 0.1516154557466507, -0.855198085308075, 0.19103631377220154, 0.02021515928208828, -0.6590859889984131, 0.42060908675193787, 0.9010944962501526, -1.2333927154541016, -0.43038469552993774, -0.27389079332351685, 0.3933463394641876, 0.14693264663219452, 0.14109653234481812, 0.5720295906066895, -1.0380254983901978, -0.500953197479248, 0.07434285432100296, 1.7084065675735474, -0.18150685727596283, -0.10825556516647339, -0.1606757789850235, 0.8327076435089111, 0.027736375108361244, -0.5381829142570496, -0.8332752585411072, 0.7823852300643921, -0.3577013909816742, 0.17113010585308075, 0.3354690968990326, 0.3959420621395111, 0.9481950402259827, -0.6659355759620667, -0.27667298913002014, -0.7181344628334045, -0.15112680196762085, -0.22940295934677124, 0.4792536795139313, 0.03968040645122528, 1.1097912788391113, 0.24017761647701263, 0.4988463521003723, 0.48184657096862793, 0.9285743236541748, -0.11547920107841492, -1.1862002611160278, 0.6341949105262756, 0.4194563031196594, 1.5052001476287842, 0.31221169233322144, 0.15331856906414032, 0.7995601296424866, 0.30328473448753357, -0.1423197239637375, -0.10437901318073273, 0.9136380553245544, 0.04669030383229256, -0.03588982671499252, -0.25842612981796265, -0.018218034878373146, 0.5565174221992493, -0.6987921595573425, 0.5087830424308777, 0.43891069293022156, -1.1582564115524292, -0.27022817730903625, 1.245129942893982, 0.46002593636512756, -0.7024285793304443, -0.42351478338241577, 0.5597983598709106, -0.11717800050973892, -0.24914364516735077, 0.2502003312110901, 0.07273554056882858, 0.1401969939470291, 0.4993569254875183, -0.9552090167999268, -0.1143757700920105, 1.098607063293457, -0.1551102101802826, 0.6955353021621704, -0.7675998210906982, -0.02156871370971203, -1.3795193433761597, 0.423726350069046, 0.36215415596961975, -0.507342517375946, 0.6384831666946411, -0.30910035967826843, -0.36528778076171875, -0.25248053669929504, 0.6545921564102173, 1.356984257698059, -0.5933350324630737, -0.11423857510089874, -0.2889280617237091, -0.33195871114730835, -0.22108852863311768, -0.306016206741333, -0.7221257090568542, 0.3982258141040802, -0.8052533268928528, 0.7648022174835205, 0.21107079088687897, -0.049360062927007675, 0.8268499374389648, 0.3373260796070099, 0.5894221067428589, 0.049157194793224335, 0.2373746931552887, -1.399300217628479, 0.30608534812927246, 0.3590940535068512, -0.5129749774932861, -0.7213110327720642, -0.22311550378799438, 0.31649303436279297, -0.1098281666636467, 0.12227089703083038, 0.8654654026031494, 0.8863031268119812, 0.11438194662332535, 0.1420644223690033, -0.545226514339447, 0.8578542470932007, 1.473433256149292, 1.4843316078186035, 1.3599532842636108, -0.5810451507568359, 0.003036783542484045, 0.3217774033546448, -1.26633620262146, -0.2634502351284027, 0.6004208922386169, 0.807145893573761, 1.348612666130066, -1.8215254545211792, -0.6712039113044739, 0.4735735356807709, 0.5988741517066956, 0.2757609486579895, 1.0827550888061523, -0.20688007771968842, -0.2048252522945404, 0.16865520179271698, -0.0014264564961194992, 0.4319404661655426, 0.12328983098268509, -0.49170053005218506, -0.5000820159912109, 0.8181315660476685, -1.023725986480713, 1.0906426906585693, -1.0011295080184937, -0.49789077043533325, -0.03891478851437569, -0.6906682252883911, 0.591384768486023, 0.9757914543151855, 0.49339014291763306, 1.4457751512527466, -0.019768906757235527, -0.9828906655311584, -0.46058669686317444, -1.095821738243103, 0.7211762070655823, -0.4938296675682068, 0.1049651950597763, -0.824246883392334, -0.3279697895050049, -0.46296387910842896, 0.5869256258010864, -0.48608070611953735, -0.6780022382736206, 0.0736382007598877, -1.4828810691833496, 0.4438602328300476, 0.4891706705093384, 0.6300000548362732, 0.1350964456796646, -0.796352744102478, 0.21109560132026672, 0.07022249698638916, -1.0667511224746704, -0.07503850013017654, 0.6316882967948914, 0.016515957191586494, 0.17798149585723877, -1.232384443283081, -0.807341992855072, 0.605688214302063, -0.06389254331588745, -0.24887917935848236, 0.03127853944897652, 0.8835394978523254, 1.6083565950393677, -0.8408352136611938, -0.27684882283210754, -0.01878528669476509, -0.29396966099739075, 0.8019323348999023, -0.0073944199830293655, -0.028099622577428818, -1.352612853050232, -0.8491153717041016, -1.6040881872177124, 0.7764459252357483, -0.6391651034355164, -0.5986232757568359, 1.0665044784545898, 0.5501449704170227, 0.6873553395271301, 0.7745851874351501, -0.42687246203422546, 0.27630674839019775, 0.5459844470024109, -1.170095682144165, -0.8005552291870117, 0.30599287152290344, 0.8337897658348083, 0.2515328824520111, -0.36244261264801025, 1.004014492034912, 0.3451218605041504, -0.08814848959445953, -0.35095831751823425, 0.39917683601379395, -0.24512577056884766, 0.4539095461368561, 0.11341513693332672, 0.030038509517908096, -0.11396002024412155, -0.7175747752189636, -0.7626832723617554, 0.23830486834049225, 0.3928702175617218, 0.14485570788383484, -0.2965206503868103, -0.6639001369476318, -0.2353346198797226, -0.21839550137519836, 0.18666352331638336, -0.3990607261657715, 1.27420175075531, 0.8274683356285095, -0.02382243238389492, -0.16388177871704102, -0.3784768283367157, 0.28814300894737244, -0.42257779836654663, 0.21776391565799713, 0.09730749577283859, -2.152337074279785, 0.014469554647803307, 0.559123158454895, -1.2912198305130005, -0.8723791241645813, -0.24290211498737335, 0.04961560294032097, -1.4999951124191284, -0.9457247853279114, -0.8455987572669983, 0.4596710503101349, 1.0518056154251099, -0.745298445224762, -0.0996503159403801, 0.8879314064979553, -1.0479782819747925, 0.1228090450167656, -0.33726802468299866, -0.4013060927391052, -0.12364931404590607, -0.7430512309074402, 0.3759456276893616, 0.6880264282226562, 0.31624966859817505, -0.004075328819453716, 0.9964417815208435, -1.828176498413086, -1.0124846696853638, -1.0178145170211792, -0.6787549257278442, 0.9384507536888123, 0.8715365529060364, -1.1996163129806519, 0.9920644760131836, 1.2372958660125732, 0.007589858025312424, -0.14194656908512115, 0.3278225362300873, 0.02962728962302208, 0.5200198888778687, -0.1068175882101059, 0.6224192976951599, 0.2772268056869507, 0.6302675008773804, 0.24816009402275085, 1.2238889932632446, 0.6655367612838745, 0.9645123481750488, -0.5779192447662354, -0.5211672782897949, 0.07323861867189407, 1.1498188972473145, -1.473427653312683, -0.49523860216140747, -0.207221120595932, -1.2483936548233032, -1.1848325729370117, -0.31296205520629883, 0.3888109028339386, -0.47048139572143555, -0.016078099608421326, -1.1709089279174805, 0.7868117094039917, -0.8862394094467163, 0.12222666293382645, -0.06136227771639824, -0.05431602895259857, 0.3848222494125366, 1.1114439964294434, -0.9397552013397217, -0.8430331349372864, 0.1748633235692978, -0.25192663073539734, -0.3946431577205658, -1.1464331150054932, 0.16342796385288239, -0.17855700850486755, 0.07399271428585052, -0.6890990138053894, 1.7410866022109985, 0.6029654145240784, -0.29266631603240967, 0.14110079407691956, 0.3234487473964691, 0.4454096257686615, 0.27824243903160095, -0.6791248321533203, -0.9890503287315369, -0.678091824054718, 1.6865664720535278, 0.6413828730583191, 0.7091473937034607, 0.17398323118686676, -0.1957857757806778, -0.07509731501340866, 0.13959690928459167, 1.0246057510375977, -1.883447289466858, -0.22508738934993744, 0.6872912645339966, 0.11201488971710205, -0.20026259124279022, 0.31544506549835205, 0.5895508527755737, 0.37791943550109863, -0.48625072836875916, 0.752541720867157, 0.3717937171459198, -0.8306861519813538, 1.2316107749938965, -0.08526117354631424, -0.28524813055992126, -0.28817853331565857, -0.1696341335773468, -0.9341937303543091, -0.12414462864398956, -0.2186303287744522, -0.7730350494384766, 0.3666325509548187, -1.384461760520935, 0.26834338903427124, 0.5454273819923401, -0.8840712904930115, -0.12584124505519867, -0.11289827525615692, 1.1145379543304443, -0.031465958803892136, -0.4937208592891693, 0.5905942916870117, 0.09629732370376587, 1.2449297904968262, 0.3210165798664093, 0.15043754875659943, -1.6953856945037842, -0.2573888897895813, -0.02974294312298298, -0.7122797966003418, -0.13562829792499542, -0.37498632073402405, 0.3546619713306427, -0.2843400835990906, -0.8351455330848694, 0.6032931208610535, -0.14287599921226501, -0.1862923502922058, 0.09234710782766342, -0.8068573474884033, -0.2461022436618805, 1.19815194606781, 0.6329699158668518, 0.18228018283843994, -0.5850820541381836, -0.8364099860191345, 0.812301754951477, -0.7765295505523682, 0.44738635420799255, -0.47775155305862427, 0.6441017985343933, -0.40743425488471985, -0.05928266793489456, -0.5972024202346802, -0.9506908655166626, 0.338937371969223, -0.735546350479126, -0.1327277272939682, 0.01696551777422428, -0.34953489899635315, -0.15978200733661652, -1.3249653577804565, 0.47850877046585083, 0.6941253542900085, -0.07010604441165924, -0.21010762453079224, -1.0846644639968872, -0.8630236387252808, -0.04159722849726677, -0.17960357666015625, 0.0476071760058403, 0.3982005715370178, 0.3850715160369873, 0.10139204561710358, -1.0156716108322144, 0.03942758962512016, 0.4062829613685608, -0.0024155848659574986, 0.33640339970588684, 0.9053518772125244, 1.414316177368164, 0.6837261319160461, 0.18389669060707092, -0.45035117864608765, -0.013592347502708435, -0.8553619980812073, -0.18809325993061066, -0.6290979981422424, -0.3913171589374542, -0.22772128880023956], [0.5282629132270813, 1.6232267618179321, -2.8511526584625244, -0.1685606986284256, 0.5842646360397339, -0.03017278201878071, 0.9437267184257507, -0.13223887979984283, 0.15241269767284393, -0.27334100008010864, -0.8732209205627441, -0.06864295154809952, -0.42386868596076965, 0.12076998502016068, 0.7348502278327942, 0.5215221047401428, 0.8771207332611084, -0.7366580963134766, 0.34650182723999023, 0.5196231603622437, -0.15973010659217834, -0.04995044693350792, 0.3016519844532013, -0.20240335166454315, -0.4907805621623993, 0.9147211909294128, -0.8931825757026672, -0.1492389291524887, -0.18548917770385742, -1.361373782157898, 1.0211137533187866, -0.7030619382858276, 0.23840248584747314, -0.7158133387565613, -1.6537432670593262, -0.05980653315782547, 1.2262660264968872, 1.2223715782165527, 0.7218245267868042, 0.5329490900039673, 0.6273571848869324, -0.6017782688140869, 0.5821639895439148, -1.3426768779754639, -0.33701035380363464, 0.43110087513923645, 0.7352538108825684, 0.40950244665145874, -0.34647026658058167, -0.3394204080104828, 0.8051391839981079, -1.0086721181869507, 0.06543061137199402, 0.6451385021209717, 1.5031908750534058, -0.9225350618362427, -0.057535722851753235, -0.37174537777900696, 0.3042508065700531, -0.9560897946357727, 1.438683032989502, 0.5178950428962708, -0.4876239001750946, 0.7859818339347839, 0.24882830679416656, -0.5515839457511902, 0.45297807455062866, 0.5356830954551697, 0.11878112703561783, -0.5120239853858948, 0.4152301847934723, 0.3676033914089203, -0.8251270651817322, 0.14226971566677094, -0.6083292365074158, 0.5440050363540649, 0.46671295166015625, 0.9287704825401306, 0.7160620093345642, 0.9518672227859497, -0.12606702744960785, -0.19569048285484314, 0.6850468516349792, -0.11308244615793228, 0.9026884436607361, 0.07609743624925613, 0.8419991731643677, -0.5519885420799255, -0.013645418919622898, 2.042081117630005, 0.25890785455703735, -0.059522807598114014, 0.6742025017738342, -0.20634731650352478, -0.47209882736206055, -0.6211192011833191, 0.4528493583202362, 0.3093309998512268, -1.3676661252975464, -0.3371962010860443, -0.772699773311615, -1.3122822046279907, 0.3741820156574249, -0.6659296154975891, -0.37091878056526184, 0.8316687941551208, -0.16761276125907898, -0.22406423091888428, -0.4074912965297699, -0.22379744052886963, -0.06292359530925751, 0.7253360152244568, -0.7497643232345581, -1.5245648622512817, -0.2479410469532013, 0.7254437804222107, 1.4707913398742676, -0.34042617678642273, 0.062090251594781876, 0.5747948288917542, -0.2288903146982193, -0.4319941997528076, -0.4783633053302765, 1.2663216590881348, 0.19842518866062164, 0.4115808606147766, -0.7126296758651733, 0.25749120116233826, 0.571013331413269, -0.3198258578777313, 0.21264095604419708, 0.2699510455131531, -0.6987191438674927, 0.8312110304832458, -0.8269022703170776, 1.2322319746017456, -0.30349865555763245, -0.248849019408226, -0.5448383092880249, 0.14261308312416077, 0.5732617378234863, -0.13124430179595947, -0.09973060339689255, -0.26371392607688904, -0.6154563426971436, -0.27908438444137573, -0.19934885203838348, -0.5592212080955505, -0.5199173092842102, 0.6530314087867737, -0.7246450185775757, 0.7126919031143188, -0.12428274750709534, 0.23973233997821808, 0.7702597379684448, -0.4149557054042816, -0.11539050936698914, 0.324923574924469, 0.2874956727027893, 0.736910879611969, 0.7568473219871521, -0.2934744358062744, -0.9689946174621582, 0.40740352869033813, 0.6449424624443054, -0.4343240559101105, -0.4460417330265045, 1.533677577972412, 0.002925530541688204, 0.8422108292579651, -0.3969722092151642, -0.7580869197845459, -0.22423461079597473, -0.4042585790157318, -0.210385262966156, 0.48527979850769043, 1.373586893081665, -0.7673208713531494, -1.440949559211731, -1.1111549139022827, 0.5004854202270508, -0.1548081934452057, 0.46663767099380493, -0.06209971755743027, 0.38121530413627625, -0.5986777544021606, 0.7193583250045776, -0.41199880838394165, -0.41626811027526855, -0.3314880132675171, -0.6498023271560669, -0.1542624682188034, -0.16504333913326263, 0.35184216499328613, -0.46118471026420593, -0.873323380947113, 0.9788697957992554, -0.9519496560096741, -0.07444626837968826, -0.7915846109390259, 0.031711943447589874, -0.4664197266101837, -0.4137677252292633, 0.38251861929893494, -0.6020734906196594, 0.911523699760437, -0.8685393929481506, 0.7963494658470154, -0.7014105319976807, -0.5468330979347229, 0.8350479602813721, 0.1354185938835144, -0.38229891657829285, 0.23770597577095032, 0.21665365993976593, -1.2661327123641968, -0.06114200875163078, 0.5232771635055542, -0.5537495613098145, 0.5341600179672241, 0.5339253544807434, 0.18155667185783386, 0.8683897256851196, -0.0025402086321264505, 0.4118506908416748, -0.521475613117218, -0.8466241359710693, -0.4068705439567566, -0.36419349908828735, -0.4008499085903168, -0.07049200683832169, -0.8396075963973999, 0.8921579122543335, 0.18861974775791168, -0.7644494771957397, 0.2787136137485504, -0.5857254266738892, 0.5080357789993286, -0.048950809985399246, 0.8444715142250061, 0.6375975608825684, 0.5445282459259033, -0.28837910294532776, -0.2812599837779999, -1.056612253189087, 0.6658169031143188, -0.11254191398620605, -1.012096881866455, 0.3662482798099518, 0.8065603375434875, 0.5015037059783936, -0.22449390590190887, 0.4708613455295563, -0.05741839110851288, -0.06459805369377136, -0.4083150327205658, -0.8306195139884949, -0.07615025341510773, -0.6741278767585754, 1.5616382360458374, 0.6966391205787659, -0.2985006868839264, 0.2036903202533722, 0.3411486744880676, -0.5321729183197021, -0.4452359080314636, -0.3741142451763153, -0.2152635157108307, -0.7684791684150696, -0.15258939564228058, -0.06000099703669548, 0.43668332695961, 0.1054985523223877, 0.7599144577980042, -0.26881712675094604, -0.9055840373039246, 0.17899321019649506, -0.220280259847641, 0.11390602588653564, 0.36566299200057983, -0.3518903851509094, -1.3638770580291748, -0.3436795473098755, 0.4253186583518982, 0.6316262483596802, -0.2046075463294983, -0.05874112248420715, -0.20085509121418, 0.4371323585510254, 0.012377124279737473, 0.20632487535476685, 0.15133801102638245, -0.2889293432235718, 0.8813958168029785, -0.39581114053726196, 0.29670417308807373, 1.4073495864868164, -0.34860628843307495, -0.698214590549469, -0.5094029307365417, 0.4070991277694702, 1.2665891647338867, 0.14619077742099762, 1.1975141763687134, 0.2476244419813156, 0.1427074670791626, -0.35039037466049194, -0.2650146782398224, -1.2159385681152344, -0.25366005301475525, -1.1856082677841187, -0.9988745450973511, 0.3740127682685852, 0.5875067114830017, 0.0008813384920358658, 0.851545512676239, -0.311345636844635, 0.18487992882728577, 1.3277643918991089, -0.6396785378456116, 0.07995540648698807, -0.18176032602787018, 0.06394737213850021, -0.5603997707366943, -0.010502945631742477, 1.0732313394546509, -1.2775886058807373, -0.25553515553474426, -0.5634902715682983, 0.5399630069732666, 0.9559435844421387, -0.07742604613304138, 0.36509114503860474, -1.6514285802841187, -0.9834167957305908, 0.13505740463733673, 0.6182674169540405, 0.25636816024780273, -0.05807334929704666, -0.27917927503585815, 0.41798555850982666, 0.9629608988761902, -0.47368282079696655, -0.5820030570030212, 0.6760753393173218, -0.28742659091949463, -1.1399847269058228, 0.21314886212348938, 0.43732258677482605, 0.3082354962825775, -0.6142244935035706, -0.7687952518463135, -0.6687250137329102, -0.38545092940330505, 0.2084779292345047, 0.16425380110740662, 0.10045839101076126, 1.1414276361465454, -0.03349582850933075, -0.2980635464191437, 0.8547637462615967, 0.3029005825519562, 0.4548579454421997, -1.2557398080825806, 0.2592044770717621, 0.656879186630249, 1.0500404834747314, 0.39929258823394775, 0.4802609384059906, 0.07960773259401321, 0.5037857294082642, -0.7492687106132507, 0.633728563785553, 1.461267113685608, 0.278312623500824, 0.24156232178211212, -0.5778475403785706, -0.39980652928352356, -0.08148077875375748, 0.11692992597818375, -0.4219822585582733, 0.1840590536594391, -0.647505521774292, -0.6878513097763062, 1.1760838031768799, 0.34367868304252625, 0.07022538781166077, -0.3758651912212372, 0.3466182053089142, 0.9238764047622681, -0.35809335112571716, -0.22909200191497803, -0.41606688499450684, -0.07666719704866409, 0.6676979064941406, -1.025256633758545, -0.1540081948041916, 0.3885449469089508, 0.12487111240625381, 0.42260295152664185, -0.4439740777015686, 0.6781728863716125, -0.34642642736434937, 0.6110095381736755, 0.6192811727523804, -0.4231191575527191, -0.056416574865579605, 0.45416438579559326, -0.15690448880195618, -0.39772310853004456, -0.1831478625535965, 0.1704087257385254, -1.0923773050308228, -0.205749049782753, 0.7196674346923828, 0.0861923024058342, 0.015926387161016464, 0.1289701610803604, -0.30978643894195557, 0.3919442892074585, -0.5018953680992126, 0.404379665851593, -0.1834843009710312, -0.6223249435424805, 0.5989074110984802, 0.3426710069179535, 0.0658775344491005, 0.6076812148094177, -0.23041602969169617, -1.125138759613037, 0.5311988592147827, 0.3324602544307709, -0.19288723170757294, -0.5042257308959961, 0.12238489836454391, 0.6977643966674805, -0.19686970114707947, 0.5894811749458313, 0.07527667284011841, 0.7983503937721252, 0.25999027490615845, -0.060638878494501114, 0.5864912271499634, 0.9213356971740723, 0.47007128596305847, 1.383198618888855, -0.4471982419490814, -1.309687614440918, -0.3529498279094696, 0.12073035538196564, -0.9860404133796692, 0.4493895471096039, 0.7942984104156494, -0.32921892404556274, 1.8512024879455566, -1.6923191547393799, 0.10211130976676941, 0.9234803915023804, 0.36384716629981995, 0.48269033432006836, 0.3857229948043823, -0.6841370463371277, 0.008817414753139019, 0.5389615297317505, -0.13664188981056213, -0.3400774300098419, 0.2812061309814453, 0.729200541973114, -0.2893422842025757, 0.6782357692718506, -0.9771151542663574, 0.5523521304130554, -0.49076855182647705, -0.38730674982070923, 0.3901885151863098, -0.7017860412597656, -0.31376275420188904, 0.9081708788871765, 0.16131290793418884, 1.484609603881836, 0.4330753684043884, -0.9297013282775879, -0.10924152284860611, -0.7833751440048218, 0.142558753490448, 0.0336630754172802, -0.5344159603118896, -0.7729257345199585, 0.22657836973667145, 0.3992893397808075, 0.8532532453536987, 0.16890034079551697, -0.1453808844089508, -0.0758950337767601, -0.7565610408782959, 1.116017460823059, 0.913547158241272, 0.8835686445236206, -0.20570741593837738, -0.4447692632675171, -0.01863809861242771, 0.6852023005485535, -0.6595548391342163, -0.9392226338386536, -0.07668501883745193, -0.3653327226638794, -0.07838544249534607, -0.7504892945289612, -0.5326364636421204, 0.3269282281398773, 0.17394863069057465, 0.07822252064943314, 0.502050518989563, 1.1592403650283813, 1.4785254001617432, -0.4682069718837738, -0.3844435214996338, 0.4004110097885132, -0.43993502855300903, -0.040680304169654846, 0.4374649226665497, -0.566335141658783, 0.3540346622467041, -0.6450782418251038, -1.5660245418548584, 0.4233303666114807, -0.13555674254894257, -0.8068929314613342, 0.9128360748291016, 0.5979050993919373, 1.5476773977279663, 0.4015450179576874, -1.047390103340149, -0.04646507650613785, -0.16216549277305603, -0.12918463349342346, -0.5503699779510498, 0.7439938187599182, -0.23863539099693298, 0.8728013038635254, -0.0625731348991394, -0.5293327569961548, 0.1959470510482788, 0.5477011203765869, -0.479904443025589, -0.34719526767730713, 0.03944535553455353, 0.26744115352630615, -0.14578138291835785, -0.6574145555496216, 0.45881426334381104, -0.21795685589313507, -0.3430945873260498, -0.28041499853134155, 1.0455645322799683, -0.24988003075122833, 0.5995488166809082, 0.4516233205795288, -0.7607564926147461, -0.29605403542518616, -0.3465270698070526, 0.27167370915412903, 0.6883445382118225, 0.20355045795440674, 0.8010972738265991, -1.131006121635437, -0.5259138941764832, -0.32468974590301514, -0.003408293705433607, 0.5736336708068848, 1.1401431560516357, -0.7933183908462524, 0.5995977520942688, 0.31582772731781006, -1.1569355726242065, -0.28330692648887634, -0.10481670498847961, -0.14432187378406525, -1.1424707174301147, -0.46599915623664856, -0.8848447203636169, 0.12224536389112473, 0.5575668215751648, -0.2614862620830536, 0.7469624876976013, 0.6238872408866882, -1.3494302034378052, 0.19377176463603973, 0.24099135398864746, -1.2126654386520386, 0.036441005766391754, -0.9675673842430115, 0.4766846001148224, 0.4010196626186371, 0.055978529155254364, -0.3933889865875244, 0.18965478241443634, -1.7103346586227417, -0.9442280530929565, -1.1688958406448364, -0.09941194206476212, 0.6582918167114258, 0.39920011162757874, -0.9849667549133301, 1.349670171737671, 0.4181320369243622, -0.48878979682922363, 0.03398580849170685, -0.1670379787683487, -0.22084061801433563, 0.9906129837036133, 0.17158257961273193, 0.11060687899589539, 0.3911585509777069, 0.4443073272705078, -0.20000961422920227, 0.8914147615432739, 0.6908685564994812, 1.2373297214508057, -0.4561700224876404, -0.18386077880859375, 0.5088130235671997, 1.1770622730255127, -0.8544993996620178, -0.7058643102645874, -0.5994321703910828, -0.5341870784759521, -0.6251339912414551, 0.12000110745429993, 1.113840937614441, -0.38299646973609924, 0.040130868554115295, -0.7295875549316406, 0.9594566822052002, -0.4340982735157013, 0.09760113060474396, -0.2231166511774063, -0.26311036944389343, -0.40513938665390015, 0.24630679190158844, -0.15586106479167938, -1.7174389362335205, 0.2829558253288269, -0.20436856150627136, -0.1930062472820282, -0.5950860977172852, 0.6549185514450073, 0.3046253025531769, 0.7043965458869934, -0.3808496296405792, 1.4637342691421509, 0.7033870816230774, -0.4898015558719635, -0.294930100440979, -0.09097958356142044, 0.05273183062672615, -0.19840854406356812, -0.6729416251182556, -0.9546105861663818, -1.075169324874878, 1.600809931755066, 0.3232937455177307, -0.17247943580150604, -0.592583954334259, 0.2530187666416168, 0.16053706407546997, 0.35640135407447815, -0.014135732315480709, -1.5348094701766968, -0.9296132922172546, 0.8332113027572632, 0.3490377962589264, -0.12617437541484833, -0.07109982520341873, 0.49490851163864136, 0.663955807685852, -0.11033948510885239, 0.36658987402915955, 0.46376359462738037, -0.6093508005142212, -0.18113143742084503, -0.04424704611301422, -0.27164334058761597, -0.07493767142295837, 0.017780238762497902, -0.565884530544281, 0.2609569728374481, -0.16964565217494965, -0.25563183426856995, 0.9157506823539734, -0.9832145571708679, 0.2456086128950119, -0.02453056536614895, -0.1556132733821869, 0.31339213252067566, -0.36211538314819336, 0.7462096214294434, 0.22949697077274323, 0.583916187286377, 0.4924665093421936, -0.11482715606689453, 1.2313393354415894, -0.09468292444944382, 0.4698166251182556, -1.2927016019821167, 0.4201149344444275, -0.03975125029683113, -0.13005274534225464, -0.1530470997095108, 0.23797017335891724, 1.0086311101913452, 0.0032948097214102745, -0.06489043682813644, 0.27918073534965515, -0.06263265758752823, 0.1499708890914917, -0.16790322959423065, -0.8574004173278809, 0.5576984286308289, 0.48796162009239197, 1.0227421522140503, -0.357403963804245, -1.271079659461975, -0.6028629541397095, 0.3980792164802551, -0.6611301302909851, 0.7213061451911926, -0.5830022692680359, 1.1871662139892578, -0.0379893034696579, 0.0004154574126005173, -0.6836216449737549, 0.0506233312189579, 0.018925268203020096, -0.004851434845477343, -0.12462779134511948, -0.9691595435142517, 0.7246516942977905, -0.8750758171081543, -0.8686232566833496, -0.7465183734893799, 0.07559032738208771, -0.5183427929878235, -0.3734823763370514, -0.9082202315330505, -0.8697099089622498, -0.642543375492096, -0.09972009807825089, 0.7379918098449707, -0.13851124048233032, -0.2077605128288269, -0.9553146958351135, -0.6718056797981262, -0.292205810546875, -0.03828881308436394, -0.11871056258678436, -0.525571346282959, 0.8031128644943237, 1.892031192779541, 0.5415928363800049, 0.19909320771694183, -0.7125316858291626, 0.5363519191741943, -1.0637565851211548, 0.01567050628364086, -0.5987042784690857, -0.5080622434616089, -0.19254004955291748], [0.6358144283294678, 1.2439895868301392, -2.5517003536224365, -0.3331723213195801, 0.3549256920814514, 0.29693663120269775, 0.8737603425979614, -0.5344955921173096, -0.37961599230766296, -0.24281610548496246, -0.6464278101921082, -0.7490995526313782, 0.27598342299461365, 1.0957391262054443, 0.7511743307113647, 0.8195441961288452, 1.514665126800537, -0.7715020775794983, 0.3179202973842621, 1.0617215633392334, 0.19058506190776825, -0.7346155643463135, 0.15770898759365082, 0.08205154538154602, -0.17927438020706177, 0.6027950644493103, -1.7761355638504028, -0.766471803188324, -0.6055748462677002, -0.9127917885780334, 1.0336599349975586, -0.7803210616111755, -0.2765287458896637, -0.2647882103919983, -1.1875592470169067, -0.17892134189605713, 1.5901776552200317, 0.3681119680404663, 0.779373049736023, -0.07451581954956055, 1.3674952983856201, -0.11094674468040466, -0.07763492316007614, -1.0111606121063232, -0.21174739301204681, -0.34597519040107727, 0.3088412582874298, -0.2368272989988327, 0.2316695749759674, -0.5218692421913147, 0.8469379544258118, -0.4203417897224426, 0.05886581167578697, 1.1834107637405396, 1.4559152126312256, -0.40067702531814575, 0.14233751595020294, -0.07935411483049393, 0.7635942697525024, -0.760449230670929, 1.2606754302978516, -0.05157012492418289, -0.14501778781414032, 1.1607006788253784, -0.2890964448451996, -0.5123867988586426, -0.10851284116506577, 0.6276516318321228, 0.3665522038936615, 0.14285695552825928, 0.8273539543151855, 0.7267860770225525, -0.16848261654376984, 0.5788809061050415, -0.7258867621421814, 0.3990717828273773, 0.5787389874458313, 1.038668155670166, -0.05004119873046875, 0.8305784463882446, -0.19364893436431885, 0.1369723528623581, 0.10974591225385666, -0.2753390967845917, 0.4324730336666107, -0.010172867216169834, 0.5847464799880981, -0.570787250995636, -0.6701101064682007, 1.9993741512298584, 0.14786042273044586, -0.28137296438217163, 0.2711644470691681, -0.36387133598327637, -0.4790099859237671, -0.4458273947238922, 0.2515234053134918, 0.5441283583641052, -1.077621579170227, -0.44485941529273987, -0.42841389775276184, -0.4433414041996002, -0.23803254961967468, -0.5207685828208923, -0.12318312376737595, 0.9081166386604309, 0.561543345451355, -0.41255828738212585, -0.4468938708305359, -0.29744845628738403, -0.392494797706604, 0.5136638879776001, -0.9675231575965881, -1.0170284509658813, -0.6094841361045837, 1.14211106300354, 1.639076590538025, -0.7636558413505554, 0.7089719176292419, 0.5944957733154297, -0.5834812521934509, -0.7432635426521301, -0.5982111096382141, -0.11198652535676956, 1.0486308336257935, 0.7448509931564331, -0.7140852808952332, -0.4970702826976776, 0.40958619117736816, -0.35793712735176086, 0.3539491891860962, 0.302890419960022, -0.6765826344490051, 0.9314281940460205, -0.766031801700592, 1.3351529836654663, -0.1867162585258484, -0.5443379282951355, 0.23853056132793427, 0.2594095468521118, 0.23265400528907776, 0.07449551671743393, -0.36034172773361206, -0.16618433594703674, 0.20816640555858612, -0.4936138391494751, -0.020505232736468315, -0.37387815117836, -0.8776880502700806, 0.5373461842536926, -0.7674164772033691, 0.28741273283958435, 0.6122225522994995, 1.139527678489685, 0.30767759680747986, 0.05832713842391968, -0.12838852405548096, 0.06387072056531906, 0.7261581420898438, -0.12639856338500977, 0.4871602952480316, 0.36101070046424866, -0.8708975315093994, 0.5426876544952393, 0.37303459644317627, -0.5923373103141785, -0.4872087836265564, 1.2100318670272827, -0.04114712029695511, 0.3382180333137512, -0.25855639576911926, -0.36031490564346313, -0.5137773752212524, 0.20452551543712616, 0.5499405264854431, -0.8250439763069153, 1.3117601871490479, -0.26130226254463196, -1.1101233959197998, -0.8862547278404236, 0.7011932134628296, 0.17195439338684082, 0.5604786276817322, -0.048114113509655, -0.010256553068757057, -0.7228820323944092, 0.4484715163707733, -0.4296245574951172, -0.8856084942817688, -0.5203465819358826, -0.18760070204734802, -0.20435908436775208, -0.400210976600647, 0.6762340664863586, -0.9448055028915405, -0.9827843904495239, 0.42120853066444397, -0.7856794595718384, -0.0009163473732769489, 0.2522353529930115, 0.07784799486398697, -0.586465060710907, -0.9864205718040466, 0.39301928877830505, -0.5394814610481262, 1.459145188331604, -1.4756700992584229, 0.7350525259971619, -0.7799158096313477, -0.4219863712787628, 0.9617011547088623, 0.22251209616661072, -0.6150119304656982, 0.6201176047325134, 0.45003706216812134, -1.087813138961792, 0.2103847861289978, 0.7321033477783203, -0.4851878583431244, -0.028211086988449097, -0.11354697495698929, -0.0554836243391037, 0.9511890411376953, -0.3702549338340759, 0.5095800161361694, -0.19375737011432648, -0.6260300278663635, -0.4500471353530884, -0.903954803943634, -0.2985292077064514, -0.4134468734264374, -0.9503284692764282, 0.7193939685821533, 0.2657243609428406, -0.4085308015346527, -0.08230599761009216, -0.5819078087806702, 0.4831694960594177, 0.40678849816322327, 1.5653263330459595, 0.3516695499420166, 0.574353039264679, -0.35093310475349426, -0.22778409719467163, -0.8281764388084412, 0.4275149405002594, 0.4911552965641022, -0.44162803888320923, 0.38186073303222656, 0.7418912649154663, 1.2390819787979126, 0.26821741461753845, 0.530493438243866, 0.014204222708940506, 0.026094159111380577, -0.2589748203754425, -0.9763257503509521, 0.27427834272384644, -0.2769296169281006, 1.2676825523376465, 0.5758411288261414, -1.1943140029907227, -0.1316298544406891, 0.09987253695726395, -0.07772906869649887, -0.5085663199424744, -0.5768461227416992, -0.46321386098861694, -0.4014051556587219, 0.1135491281747818, 0.21908223628997803, 0.36479178071022034, -0.09993298351764679, 0.479617178440094, -0.4790586233139038, -1.0544984340667725, -0.5062369704246521, 0.5682671666145325, -0.19074007868766785, 1.2487744092941284, -0.5375664830207825, -1.4296592473983765, -0.40020751953125, 0.3771010935306549, 0.5973208546638489, -0.2567860186100006, -0.7968371510505676, 0.11069739609956741, -0.10136362165212631, -0.25449520349502563, 0.5075969696044922, 0.3968101739883423, 0.5995320677757263, 0.05160330608487129, 0.09539823234081268, 0.4817815124988556, 0.9150925278663635, -0.8212217688560486, -0.8739755153656006, -0.6575671434402466, 0.297446608543396, 1.0190706253051758, 0.36078283190727234, 0.8715600967407227, 0.49050185084342957, 0.3534814119338989, -0.09964101761579514, 0.49610933661460876, -1.0659503936767578, -0.7965732216835022, -0.7937098145484924, -1.3224115371704102, -0.2389668971300125, -0.32517415285110474, 0.2552519142627716, 0.650496244430542, -0.07272391766309738, 0.11135361343622208, 1.534313440322876, -0.4701348543167114, -0.6972801089286804, 0.10937788337469101, -0.017112670466303825, -0.6944504976272583, 0.4863497316837311, 1.2129989862442017, -1.1471649408340454, -0.4868408739566803, -0.3116022050380707, 0.21453386545181274, -0.01157393865287304, 0.15434256196022034, -0.08267606794834137, -1.1573127508163452, -0.025639090687036514, -0.41946521401405334, 1.2613097429275513, -0.1153738796710968, -0.43451380729675293, -0.2442512810230255, 0.1904660016298294, 1.1428120136260986, 0.11201369762420654, -0.0910283774137497, 0.604637861251831, -0.8298274278640747, -0.36515524983406067, -0.001454292330890894, 0.6983041763305664, 0.30537039041519165, -0.6903519034385681, -0.38481366634368896, -0.44550174474716187, 0.15679886937141418, -0.41776925325393677, 1.0166772603988647, -0.03972269967198372, 0.9172707200050354, 0.730566143989563, -0.04042527824640274, 1.3552414178848267, -0.04180275276303291, 0.1789996325969696, -1.5463923215866089, 0.0440177321434021, 0.6074672937393188, 1.289053201675415, 0.4022291600704193, 0.4073910415172577, 0.3652211129665375, 0.2859830856323242, 0.25873199105262756, 0.34642836451530457, 1.4635009765625, -0.3324078321456909, -0.2640073597431183, -0.8345947861671448, -0.17312756180763245, 0.49283576011657715, -0.5038012862205505, 0.10571122169494629, 0.40734076499938965, -0.9205392003059387, -0.6124093532562256, 1.0202897787094116, 0.5651392936706543, -0.190519317984581, -0.30073410272598267, 0.5197485089302063, 0.6410068273544312, -0.32656189799308777, 0.3523159325122833, -0.3382169008255005, -0.019628500565886497, 0.7419619560241699, -0.9116501808166504, -0.11660368740558624, 0.3985241651535034, 0.25039899349212646, 0.2215544879436493, -1.1005477905273438, 0.6351248025894165, -0.6967925429344177, 0.4886408746242523, 0.6457164883613586, -0.41566532850265503, -0.26233622431755066, -0.19324378669261932, -0.3678933382034302, -0.4117855727672577, -0.11451300978660583, 1.1361122131347656, -0.8388757705688477, -0.003810744732618332, 0.16889502108097076, -0.4287286102771759, -0.03302459791302681, -0.5681619644165039, 0.10420253127813339, 0.018733320757746696, -0.3061307966709137, 0.28949257731437683, -0.12010101228952408, -0.28582999110221863, 0.9874975681304932, 0.38689878582954407, 0.41887134313583374, 0.33644190430641174, -0.06173355132341385, -1.2321646213531494, 0.26433050632476807, 0.3327901363372803, 0.29385489225387573, -0.5466154217720032, -0.3218599259853363, 0.18971215188503265, 0.2431110292673111, 0.32123681902885437, -0.18137751519680023, 0.5773425698280334, 0.42270809412002563, 0.08299166709184647, -0.005475040525197983, 0.5442029237747192, 0.7967174053192139, 1.0974897146224976, 0.31037604808807373, -0.5107350945472717, -0.6920328140258789, 0.7599009275436401, -1.1053725481033325, 0.3677870035171509, 0.6243224143981934, 0.3077906370162964, 1.452190637588501, -1.414576768875122, -0.3339058458805084, 1.1383452415466309, -0.02856897935271263, 0.1723535805940628, 0.9221097826957703, -0.29484930634498596, 0.19147072732448578, 0.7251675128936768, -0.04227123409509659, -0.3312089443206787, 0.28484925627708435, -0.2568439245223999, 0.1247042566537857, 0.707419216632843, -0.8706649541854858, 1.0892256498336792, -0.9065878391265869, 0.10057529807090759, 0.37098589539527893, -0.595517635345459, 0.0033118044957518578, 0.9668292999267578, 0.23405961692333221, 2.0897200107574463, -0.044692233204841614, -1.0099889039993286, -0.33169856667518616, -1.05536949634552, 0.1105763167142868, -0.40325650572776794, -0.07456421852111816, -1.0089918375015259, -0.10340932011604309, -0.17330974340438843, 1.236624836921692, -0.17315317690372467, -0.3295123279094696, -0.23740200698375702, -1.3204163312911987, 0.8375997543334961, 0.5611581802368164, 0.8501497507095337, 0.08309689909219742, 0.2600792348384857, -0.22276929020881653, 0.6457537412643433, -0.803598165512085, -0.4168379306793213, 0.4536695182323456, 0.10178090631961823, -0.4045838713645935, -0.9817925095558167, -0.7376807332038879, 0.48425719141960144, 0.6174507141113281, 0.2804722785949707, -0.13721057772636414, 1.2959504127502441, 1.4206558465957642, -0.4971480369567871, -0.36437830328941345, 0.2375422716140747, -0.43931180238723755, 0.3604864776134491, 0.06438001245260239, 0.014769896864891052, -0.4667840898036957, -0.2578728199005127, -1.8778860569000244, 0.7254621982574463, 0.04039423167705536, -0.647962749004364, 0.9022120833396912, 0.5083907842636108, 0.8983566164970398, 0.343403697013855, -0.17335934937000275, 0.2680499851703644, -0.3805578351020813, 0.28289666771888733, -1.0661827325820923, 0.44932445883750916, 0.37774139642715454, 0.22929534316062927, -0.03427205607295036, 0.5294992327690125, -0.02796429954469204, 0.2571409046649933, -0.25353607535362244, 0.312057226896286, 0.3098283112049103, 0.2899710536003113, 0.36159849166870117, -0.9084604382514954, 0.30210891366004944, 0.20306162536144257, -1.2015718221664429, -0.3122355043888092, 0.06207922473549843, 0.20694346725940704, -0.10975635051727295, -0.17580220103263855, -0.6764608025550842, -0.2112409621477127, -0.15833128988742828, -0.3303886651992798, 1.1021825075149536, -0.1783955693244934, -0.060295332223176956, -0.119082510471344, -0.26175767183303833, -0.1990475058555603, -0.7852910161018372, 0.2575516104698181, 0.42806681990623474, -1.3749271631240845, 0.4464503526687622, 0.044432323426008224, -1.307815670967102, -0.08908350020647049, 0.06941116601228714, -0.22991852462291718, -0.887955367565155, -1.3770097494125366, -0.5461810827255249, 0.2413392812013626, 0.5913599729537964, 0.18548917770385742, 0.9698053598403931, 0.6039881110191345, -1.0282772779464722, 0.2513272762298584, 0.08431645482778549, -0.39323073625564575, -0.5659304261207581, -1.3987494707107544, 0.9688037633895874, 0.16237930953502655, 0.33771812915802, 0.053981952369213104, 0.46548962593078613, -1.7569442987442017, -1.079461693763733, -0.7865216135978699, -0.6738104820251465, 0.8282499313354492, 1.0810184478759766, -1.0311949253082275, 0.9775528311729431, 0.4882471263408661, -0.10501887649297714, 0.4616177976131439, 0.1364404857158661, -0.35298681259155273, 0.667799174785614, 0.5086526870727539, 0.1935177743434906, 0.33970293402671814, 0.7667389512062073, 0.14807632565498352, 1.1171622276306152, 0.49725115299224854, 0.9919506907463074, -0.8068721294403076, 0.0367405079305172, 0.12000873684883118, 0.888752818107605, -0.759666919708252, -0.5284726023674011, -0.2629527747631073, -0.7574398517608643, -0.6381853818893433, 0.07703474164009094, 0.8887221217155457, -0.7279006242752075, -0.3858165144920349, -0.9338157773017883, -0.009210814721882343, -0.44232213497161865, 0.16825395822525024, -0.021302901208400726, -0.3699137270450592, -0.029482970014214516, -0.016064990311861038, 0.13102921843528748, -1.6792227029800415, 0.5432923436164856, 0.2594987750053406, -0.2290014922618866, -0.48774588108062744, 0.04015057906508446, 0.35022470355033875, 0.34959736466407776, -0.921046793460846, 1.2992233037948608, 1.166338562965393, -0.3496823012828827, -0.23683665692806244, 0.17138850688934326, 0.19379019737243652, 0.7091178894042969, -0.6571555733680725, -0.7051215767860413, -0.8479861617088318, 1.521591067314148, 0.5752334594726562, 0.4290917217731476, -0.10900019854307175, 0.3590586185455322, -0.1948472559452057, 0.5129032731056213, 1.0497218370437622, -1.845421314239502, -0.48032549023628235, 0.892267107963562, 0.5477249026298523, -0.4100226163864136, 0.666359007358551, 0.8484897017478943, 0.37598469853401184, -0.4356555640697479, 0.5315659642219543, 0.8000906109809875, -1.07918381690979, 0.1722540557384491, 0.07195910066366196, -0.5453694462776184, 0.01713947020471096, -0.10452780872583389, -1.2628161907196045, 0.263040155172348, -0.24586473405361176, -1.2590500116348267, -0.04637924209237099, -1.1447136402130127, -0.273425817489624, 0.3943072259426117, -0.11115789413452148, -0.4059869349002838, -0.30351555347442627, 1.0854320526123047, -0.42286795377731323, 0.09063706547021866, 0.15780837833881378, -0.15056924521923065, 1.021140694618225, -0.4239732325077057, 0.1713642179965973, -1.6741896867752075, -0.041530758142471313, 0.48344138264656067, 0.331180214881897, -0.33085307478904724, 0.03912918642163277, 0.4545123279094696, -0.24725428223609924, -0.5471403002738953, -0.16926723718643188, -0.3238980770111084, -0.3628655970096588, -0.5787107348442078, -0.8156455755233765, 0.10060302168130875, -0.1225171834230423, 0.708730936050415, -0.16518259048461914, -0.9924581050872803, -0.12102866917848587, 0.4795481562614441, -0.4622722864151001, 1.0159865617752075, -0.5144180655479431, 0.4417477548122406, -0.027138765901327133, 0.02364754118025303, -0.14622259140014648, -0.16675874590873718, 0.3006170690059662, -0.03296886384487152, 0.30412158370018005, -0.3398270010948181, -0.1329679936170578, -0.44603997468948364, -1.0634087324142456, 0.07806043326854706, 0.21886536478996277, -0.32974711060523987, 0.06151226907968521, -0.9421772360801697, -0.9721459746360779, -0.5306875109672546, -0.18040968477725983, 0.5190033912658691, 0.1668255776166916, -0.31894734501838684, -0.14098721742630005, -1.0151668787002563, 0.6395937204360962, 0.1170126423239708, -0.15748964250087738, -0.22580507397651672, 1.3275666236877441, 1.7592430114746094, 0.671608567237854, 0.18354961276054382, -0.2499343603849411, 0.169184148311615, -1.0514997243881226, -0.5035713315010071, -0.6103329062461853, -0.3973672688007355, -0.19403167068958282], [0.8913699984550476, 1.7378484010696411, -2.3055267333984375, -0.7541120648384094, 0.7060104012489319, -0.18602517247200012, 1.349100112915039, -0.3970383107662201, -0.19346076250076294, -0.9383531212806702, -1.0003197193145752, -0.5026552081108093, 0.06803261488676071, 0.9337188601493835, 0.35512575507164, 0.5987035036087036, 1.2695376873016357, -0.1213163360953331, 0.13716639578342438, 0.521019697189331, 0.41854166984558105, -0.8378854990005493, 0.3463168144226074, 0.0784609392285347, 0.3153357207775116, 0.7909010052680969, -1.1547534465789795, -1.160088300704956, -0.9897585511207581, -0.7046907544136047, 1.1862223148345947, -0.6353041529655457, 0.09226186573505402, -0.6439980864524841, -1.2046138048171997, -1.5900847911834717, 1.425357699394226, 1.2139792442321777, 0.41745302081108093, 0.06838709115982056, 1.259320855140686, -0.7885478138923645, 0.2379438430070877, -1.6946916580200195, -0.9954556822776794, -0.22412286698818207, 0.6607784032821655, 0.09358394891023636, -0.3460289239883423, -0.8611909747123718, 0.8874953389167786, -0.5452931523323059, 0.6305255889892578, 1.1227517127990723, 0.9605259895324707, -0.9680730700492859, 0.016344327479600906, -0.6218119263648987, 0.18086479604244232, -0.0644194632768631, 1.386039137840271, 0.699296236038208, -0.55142742395401, 1.2531068325042725, 0.006143223028630018, -0.8580607175827026, 0.06615771353244781, 0.49365323781967163, 0.04904348403215408, 0.7438593506813049, -0.013345584273338318, 0.549801766872406, -0.19253499805927277, 0.3089815676212311, -1.1130740642547607, 0.17248770594596863, 0.8490884900093079, 0.9302887320518494, 0.334812730550766, 0.7701945304870605, 0.2658489942550659, 0.37084612250328064, 0.6266513466835022, -0.051463428884744644, 0.7371729612350464, -0.36589315533638, 0.40387916564941406, -0.15942052006721497, -0.42133307456970215, 1.466940999031067, 0.12377532571554184, -0.5160478353500366, 0.7088815569877625, 0.24750731885433197, -0.6860157251358032, -0.5758151412010193, 0.15425923466682434, 0.028941692784428596, -1.0712807178497314, 0.01770324632525444, -0.8709589242935181, -0.7615352272987366, -0.13367155194282532, 0.26384881138801575, -0.627188503742218, 1.2637583017349243, 0.5649892687797546, -0.3831440806388855, -0.3059323728084564, -0.1583789885044098, -0.10487698018550873, 0.7274715900421143, -1.4900693893432617, -1.002395749092102, -0.021867146715521812, 1.1120753288269043, 1.5394816398620605, -0.7578985095024109, 0.5367583632469177, 0.3543476462364197, -0.9895948171615601, -0.9907037615776062, -0.3796980679035187, 0.6172290444374084, 0.26886487007141113, 0.5298639535903931, -0.44655755162239075, -0.19901424646377563, 0.3387387990951538, -0.08768688142299652, 0.7983332276344299, 0.12428003549575806, -0.8580807447433472, 0.7475330829620361, -0.7621252536773682, 1.350935459136963, -0.5147169828414917, -0.8801290988922119, -0.15768858790397644, 0.28197216987609863, -0.06491564959287643, 0.26481199264526367, -0.5231205224990845, -0.7678371667861938, -0.1496831327676773, -0.27804815769195557, 0.0853482112288475, -0.19042731821537018, -0.765383780002594, 0.1743556410074234, -0.9437412619590759, 0.14255446195602417, 0.3790622353553772, 0.9246425628662109, 0.585536003112793, -0.5746858716011047, -0.562934160232544, -0.2944452166557312, 0.14676779508590698, 0.41513699293136597, 0.7196233868598938, -0.04341062903404236, -1.393489122390747, 1.2009319067001343, 0.20192310214042664, -0.9092013835906982, -0.001955387182533741, 1.3909872770309448, -0.5585278868675232, 0.41788366436958313, 0.2480548471212387, -0.984287440776825, -0.4718625545501709, 0.06032513082027435, 0.47324150800704956, -0.3380677402019501, 0.6499307751655579, -0.36874204874038696, -0.9705155491828918, -0.7886980772018433, 0.7174561619758606, -0.16492217779159546, 0.17580468952655792, 0.016223039478063583, -0.09588003903627396, -1.1651145219802856, 0.08745771646499634, -0.8092997670173645, -0.658206045627594, -0.2555049955844879, -1.0298823118209839, 0.04038205370306969, -0.17227108776569366, 0.41253623366355896, -0.6047770977020264, -1.1143232583999634, 0.27675798535346985, -0.9469994902610779, -0.1039169654250145, 0.10512898862361908, -0.07511366158723831, -0.36428359150886536, -1.3384984731674194, 0.10717035830020905, -0.12035264819860458, 0.7193917036056519, -1.2921006679534912, 0.770207405090332, -0.5927860140800476, -0.7457613945007324, 1.1666733026504517, 0.20144742727279663, -0.3599279522895813, 0.7405065298080444, 0.3251052796840668, -1.6449607610702515, -0.021220285445451736, 0.7790067791938782, -0.7014991044998169, -0.009496885351836681, 0.1659967303276062, -0.023958006873726845, 1.672978162765503, 0.4672296941280365, 0.7683281302452087, -0.2766222059726715, -0.3826819956302643, -0.4068097770214081, -0.7920375466346741, -0.32338204979896545, -0.1747092306613922, -1.2151618003845215, 0.2117040902376175, -0.08543073385953903, -0.9432520270347595, 0.4488680362701416, 0.18774265050888062, 0.20980463922023773, 0.3746863603591919, 0.7229803204536438, 0.2591606080532074, 0.7067131400108337, -0.7224551439285278, -0.211997389793396, -0.7352244853973389, -0.15666133165359497, 0.48957905173301697, -0.22642746567726135, 0.4867461919784546, 0.9981966614723206, 0.8530920743942261, -0.11704712361097336, -0.08540478348731995, -0.3690020442008972, 0.37538477778434753, -0.39769038558006287, -0.7631992101669312, -0.3635822534561157, -0.3860630989074707, 1.6274988651275635, 0.7882596254348755, -0.994354784488678, 0.4607807993888855, 0.0675194188952446, -0.13828182220458984, -0.15421690046787262, -0.8422175049781799, -0.35031065344810486, 0.2647970914840698, -0.14271238446235657, -0.10023718327283859, 0.20058561861515045, 0.21787302196025848, 0.5442959666252136, -0.46912336349487305, -0.7701863050460815, -0.41458311676979065, -0.029848521575331688, -0.37950050830841064, 1.065511703491211, 0.005510070361196995, -1.418949007987976, -0.6818097829818726, 0.2589391767978668, 0.525071382522583, -0.05481255427002907, -0.6109985709190369, 0.23502376675605774, 0.030100692063570023, -0.446687251329422, 0.568718433380127, 0.14085742831230164, -0.1580393761396408, 0.879850447177887, -0.11470922827720642, 0.49073144793510437, 0.8503913283348083, -0.5714831948280334, -0.48212140798568726, -0.6049574613571167, 1.208038091659546, 1.5614302158355713, 0.6399955153465271, 1.7863223552703857, 0.7146025896072388, -0.26957762241363525, -0.2798800468444824, -0.5066392421722412, -0.8197265863418579, -0.8857371211051941, -1.009718656539917, -0.6148656606674194, 0.5084603428840637, 0.7224730253219604, 0.5232752561569214, 0.5063661932945251, -0.14741374552249908, 0.5918586254119873, 1.271007776260376, 0.07666820287704468, -0.6240354180335999, 0.3978300988674164, -0.4943723678588867, -0.916944146156311, 0.3630312979221344, 0.9370750188827515, -1.2931941747665405, -0.43602287769317627, 0.4019140303134918, 0.02266061305999756, 0.4164589047431946, -0.5130179524421692, 0.5501143336296082, -1.5663458108901978, -1.0152854919433594, -0.453948438167572, 1.3870396614074707, -0.0017915188800543547, -0.5200271606445312, -0.031218716874718666, 0.4169663190841675, 0.8709995746612549, 0.6530522704124451, -0.5395250916481018, 0.9154775142669678, -1.238786220550537, -0.5276440978050232, -0.11407288163900375, 0.6811766028404236, 0.3741912841796875, -0.4606873393058777, -0.6544368863105774, -0.6518288254737854, -0.32595276832580566, 0.2770649790763855, 0.5684312582015991, -0.12743906676769257, 1.2408217191696167, 0.7427777051925659, -0.24235382676124573, 0.570228099822998, 0.2989856004714966, -0.23141752183437347, -1.3488614559173584, 0.4971219003200531, 0.32026419043540955, 1.091836929321289, 0.8897293210029602, -0.028963664546608925, -0.029059674590826035, -0.286973774433136, -0.019175661727786064, 0.25105541944503784, 1.1947767734527588, 0.48251092433929443, 0.06105252355337143, -0.7863543629646301, -0.47333192825317383, 0.17573761940002441, 0.04827194660902023, -0.3319362699985504, 0.7733578085899353, -0.6714543104171753, -0.7641770839691162, 0.7061965465545654, 0.08724724501371384, -0.17841275036334991, 0.04387335479259491, -0.10219649970531464, 0.39153626561164856, -0.6789893507957458, 0.012913629412651062, -0.4890577495098114, -0.18973146378993988, 0.48123642802238464, -0.5089981555938721, -0.4468183219432831, 0.5153235793113708, 0.6450312733650208, 0.7410792112350464, -0.8563901782035828, 0.46278852224349976, -0.6632112264633179, 0.9162367582321167, 0.13706155121326447, -0.2572477459907532, 0.151563361287117, 0.4799099862575531, -0.7289667725563049, 0.33890435099601746, 0.27274462580680847, 1.0833582878112793, -0.7489359974861145, 0.8753601908683777, 0.47205135226249695, -0.3732970952987671, 0.19513723254203796, 0.38592422008514404, -0.22993424534797668, 0.638239324092865, -0.1689947247505188, -0.03923961892724037, -0.08836168050765991, -0.1804850995540619, 0.6139649748802185, 0.7033701539039612, 0.24136534333229065, 0.9770304560661316, -0.22303688526153564, -1.4843803644180298, 0.3830033540725708, 0.6748286485671997, -0.007895240560173988, -0.5845018625259399, -0.2759828269481659, -0.019358772784471512, 0.06554754078388214, 0.9689454436302185, 0.152427539229393, 0.7965729236602783, 0.24335481226444244, -0.18341736495494843, 0.10324081778526306, 0.7247920632362366, 0.7057753801345825, 0.5546377897262573, -0.09807553887367249, -1.447099208831787, -0.7722687125205994, 0.5206040740013123, -0.3987002670764923, 0.5525725483894348, 0.29887092113494873, 0.2004896104335785, 1.2148003578186035, -1.2629188299179077, 0.46234142780303955, 0.6680520176887512, 0.1246630921959877, 0.647970974445343, 0.7730740308761597, -0.07374142110347748, -0.3341886103153229, 0.4832248091697693, 0.3595735728740692, -0.4307704567909241, -0.49425265192985535, -0.2763773202896118, -0.3648250102996826, 0.6396977305412292, -0.5738548636436462, 0.024096062406897545, -1.0017273426055908, -0.5295014977455139, 0.3205699026584625, -0.4379885196685791, 0.49707603454589844, 0.8117730617523193, 0.4155644476413727, 1.5972630977630615, 0.1601366251707077, -0.8872804641723633, -0.455457866191864, -0.6657041311264038, 0.9311821460723877, -0.833957314491272, -0.1756879836320877, -1.101116418838501, -0.5356668829917908, -0.16222819685935974, 0.8516557216644287, -0.4209659993648529, -0.2844267189502716, -0.3502655327320099, -0.8380461931228638, 0.7013880610466003, 0.910142183303833, 0.8962969183921814, 0.6758405566215515, 0.37478727102279663, -0.15352463722229004, 0.4273649752140045, -0.11495356261730194, -0.5398867130279541, 0.11622034013271332, -0.38275837898254395, -0.11494371294975281, -0.6652233600616455, -0.7232229113578796, 0.7358915209770203, 0.734248161315918, 0.44778844714164734, 0.3506163954734802, 0.36921122670173645, 1.0420838594436646, -0.2090648114681244, -0.39135172963142395, 0.03469313681125641, -0.5725078582763672, 0.8322287797927856, 0.32118743658065796, -0.11406350135803223, -0.2975514829158783, -0.10094214230775833, -1.4575694799423218, 0.3257657587528229, -0.3731728792190552, -1.1780362129211426, 0.9346336126327515, 0.6396148800849915, 0.2699906826019287, 0.5805137753486633, -0.24534165859222412, 0.19132304191589355, -0.09748221188783646, -0.44325023889541626, -0.9793424606323242, 0.46499326825141907, 0.4813758432865143, -0.31984853744506836, -0.41467994451522827, -0.1384110450744629, 0.3561270534992218, -0.07052313536405563, -0.46171072125434875, -0.23569989204406738, 0.5621100664138794, 0.6822329759597778, -0.44531142711639404, -0.7301889657974243, 0.6909453868865967, 0.19543172419071198, -0.04522079601883888, -0.18666468560695648, 0.730877161026001, 0.5635621547698975, 0.43798333406448364, 0.17517594993114471, -0.8503175377845764, -0.26739874482154846, -0.05868593975901604, -0.354198157787323, 0.945786714553833, 0.3974517583847046, 0.06533879041671753, -0.7832220196723938, -0.6287528276443481, 0.09607543051242828, -0.7076398134231567, 0.5834692120552063, 1.0171993970870972, -1.2232600450515747, 0.16562993824481964, 0.07649075984954834, -0.6907128095626831, 0.10264845937490463, -0.3498172163963318, -0.49741432070732117, -0.790151059627533, -0.985318660736084, -0.15569010376930237, 0.2799031436443329, 0.20468086004257202, -0.05573740974068642, 0.982772707939148, 0.7529550194740295, -1.0165101289749146, 0.1350286900997162, -0.011571228504180908, -0.8786577582359314, -0.1600421816110611, -1.1013938188552856, 0.8211843371391296, -0.3747549057006836, 0.6133813261985779, -0.36288437247276306, 1.0755324363708496, -1.5283653736114502, -0.7744671106338501, -1.156713604927063, 0.3762564957141876, 0.42208433151245117, 1.1567919254302979, -1.2947221994400024, 1.19792902469635, 0.45085465908050537, -0.5577513575553894, 0.191306471824646, -0.48145291209220886, -0.25323620438575745, 0.6512122750282288, 0.44371920824050903, 0.6928382515907288, 0.19187140464782715, 0.8160338997840881, 0.153778538107872, 0.9664729833602905, 0.30886322259902954, 1.3457996845245361, -0.9307011961936951, 0.01501499954611063, 0.4465496838092804, 0.9524150490760803, -0.6175209879875183, -0.5420951247215271, 0.06445128470659256, -0.429208368062973, -0.9230215549468994, 0.3623304069042206, 1.1738455295562744, -0.7216712832450867, 0.4074177145957947, -0.35842737555503845, 0.3399367332458496, -0.9489379525184631, 1.118515968322754, 0.0476544052362442, -0.4069465696811676, -0.29367971420288086, -0.12596012651920319, -0.4390687048435211, -1.434456467628479, 0.05808534845709801, 0.45259028673171997, -0.5523822903633118, -0.9484094381332397, 0.2994271516799927, 0.3228543698787689, 0.6134087443351746, -0.6458325982093811, 0.9082740545272827, 0.4861936867237091, -0.7724004983901978, -0.12557215988636017, 0.2474605292081833, 0.16382093727588654, 0.3031148314476013, -0.5293582081794739, -0.7161017656326294, -1.679877519607544, 1.172871470451355, 0.3982206881046295, 0.1957545280456543, -0.6716163754463196, 0.19442418217658997, -0.39079806208610535, 0.329924076795578, 1.3480204343795776, -1.145321011543274, -0.7236579060554504, 0.9114865660667419, 0.5104880928993225, -0.4622671604156494, 0.35176244378089905, 1.0680603981018066, 0.6065831184387207, -0.08658374100923538, 0.11145805567502975, 0.6107749342918396, -0.5968903303146362, 0.904288113117218, 0.20267491042613983, 0.25723156332969666, 0.030290931463241577, -0.3797614872455597, -1.6485092639923096, 0.14509359002113342, -0.611045777797699, -0.5335115194320679, 0.383465051651001, -1.140418291091919, -0.11191031336784363, 0.40748509764671326, 0.11749330163002014, 0.2003621608018875, -0.03812215104699135, 0.4484793245792389, -0.8003684282302856, 0.7141209244728088, 0.5841391086578369, 0.11170599609613419, 0.7590853571891785, -0.16503967344760895, -0.150737926363945, -1.4913231134414673, -0.1570160686969757, 0.45480579137802124, 0.5125664472579956, -0.4771724045276642, -0.1818920224905014, 0.8693300485610962, -0.4127328097820282, -0.08059894293546677, -0.19141831994056702, -0.9977365732192993, 0.16519273817539215, -0.6178665161132812, -0.8593533039093018, 0.49434125423431396, 0.14681139588356018, 1.0043948888778687, -0.6085758805274963, -1.3166842460632324, -1.0785294771194458, 0.7590958476066589, -0.42448845505714417, 1.1226938962936401, -0.25897687673568726, 1.0703709125518799, -0.04388560727238655, -0.047876276075839996, -0.29559728503227234, -0.2909562587738037, 0.6286367177963257, -0.12176871299743652, 0.2774636149406433, -0.019595906138420105, 0.26632386445999146, -0.34321868419647217, -0.6976439356803894, -0.026247022673487663, 0.11628513038158417, -0.4845993220806122, 0.03222104534506798, -0.6234474182128906, -0.9774419069290161, -0.8928912281990051, -0.17129185795783997, 1.3077657222747803, 0.34707605838775635, 0.12906785309314728, 0.034975823014974594, -1.3373180627822876, -0.01795428805053234, 0.40020260214805603, -0.886678159236908, -0.06633341312408447, 1.489339828491211, 1.3989914655685425, 0.44462835788726807, 0.2264980673789978, -0.11256567388772964, 0.8555609583854675, -0.731156587600708, 0.26789072155952454, -1.1883536577224731, -0.05011110380291939, -0.43024730682373047], [0.38617831468582153, 1.48563551902771, -2.437533378601074, -0.34590286016464233, 0.9808434844017029, 0.023377761244773865, 1.846603274345398, -0.6154314279556274, 0.4199925363063812, -0.5051085948944092, -0.5181677341461182, -0.8254944086074829, 0.04138365015387535, 0.7055740356445312, 0.19605578482151031, 0.5286830067634583, 1.384753704071045, -0.3806757926940918, 0.47467514872550964, 1.456534504890442, 0.5167080760002136, -0.49539750814437866, 0.05900140851736069, -0.16595377027988434, -0.1793506145477295, 0.0916009321808815, -1.2120301723480225, -0.8817811012268066, -0.9173277616500854, -0.46324706077575684, 0.5964342951774597, -0.9386832118034363, -0.2667962908744812, -0.348084956407547, -1.4167814254760742, -0.39364492893218994, 1.5788192749023438, 1.115721344947815, 0.5798823237419128, -0.20157518982887268, 1.8822492361068726, -0.5234207510948181, 0.5643120408058167, -1.537546157836914, 0.12043315172195435, -0.537926971912384, 0.5583755373954773, -0.789177656173706, -0.03140610456466675, -0.34554073214530945, 0.5040091872215271, -0.9666668176651001, 0.492995947599411, 0.8796382546424866, 0.8633916974067688, -0.26175639033317566, 0.5101714730262756, 0.20454426109790802, 0.2295796275138855, -0.9012109637260437, 1.304155707359314, 0.27137503027915955, -0.2093910425901413, 1.1527858972549438, -0.07590873539447784, -0.4523542821407318, -0.08253451436758041, 0.2304966151714325, -1.174681305885315, 0.5065271258354187, 0.1148173063993454, -0.04172405228018761, -0.6156381964683533, 0.24551023542881012, -1.0614315271377563, 0.835575520992279, 0.47929033637046814, 0.49084916710853577, 0.7339455485343933, 0.8197098970413208, -0.7185752987861633, -0.6087784767150879, 0.1748037189245224, -0.7014462947845459, 0.01059647835791111, 0.24460414052009583, 0.7010740637779236, -0.6089053153991699, -0.7510234117507935, 1.9173486232757568, 0.35121163725852966, 0.11448303610086441, 0.2811397910118103, 0.019602790474891663, -0.4523455798625946, -0.941430926322937, 0.9341944456100464, 0.18776829540729523, -1.2250508069992065, -0.30399850010871887, -1.3655320405960083, -0.9765754342079163, 0.05191933363676071, -0.026754140853881836, -0.10770289599895477, 1.0508031845092773, 0.617986261844635, -0.7553985118865967, -0.5639901161193848, -0.07351063936948776, -0.4633345305919647, -0.10372402518987656, -0.6691278219223022, -0.9907609820365906, -0.1168130561709404, 1.8779805898666382, 1.299603819847107, -0.2049073427915573, 0.2663704752922058, 0.7771225571632385, -0.19439885020256042, -0.5796508193016052, -0.5455191731452942, 0.6276376843452454, 0.4439205527305603, 0.3730281591415405, -0.5722305178642273, -0.30946752429008484, -0.27612796425819397, 0.30700060725212097, 0.7041693329811096, 0.3296336233615875, -0.18538540601730347, 1.009043574333191, -1.094872236251831, 1.4692668914794922, -0.9242660999298096, -0.2553626298904419, -0.4031372666358948, 0.00522086676210165, 0.6928163766860962, -0.0850568413734436, -0.4364303946495056, 0.06856989115476608, 0.4313875138759613, -0.6315233707427979, -0.0542399100959301, -0.23184122145175934, -0.7976127862930298, 0.4278038442134857, -1.130829930305481, 0.5452008843421936, 0.534246027469635, 0.6211087703704834, 0.34575173258781433, -0.22919844090938568, 0.06761251389980316, 0.2727018892765045, 0.4744742214679718, 0.08249235153198242, 1.1252833604812622, -0.18154677748680115, -0.9082026481628418, 1.182396411895752, 0.34078559279441833, 0.15411068499088287, -0.28605207800865173, 1.034732699394226, 0.4773235619068146, 1.0426284074783325, -0.43711167573928833, -0.7553830146789551, -0.10090954601764679, 0.22115816175937653, 0.2431911826133728, -0.46128368377685547, 1.2029961347579956, 0.010775575414299965, -1.6923508644104004, -0.9306754469871521, 0.46078842878341675, -0.6860076189041138, 0.3976761996746063, -0.19344420731067657, 0.7066640257835388, -0.4257509410381317, 0.8798708915710449, -0.3373226523399353, -0.4159725606441498, -0.5014632344245911, -0.9884420037269592, -0.25105154514312744, -0.4868205487728119, 0.35105255246162415, -0.4408798813819885, -0.8093105554580688, 0.48663654923439026, -1.3914296627044678, -0.2845930755138397, -0.15101191401481628, -0.49303120374679565, -0.2784130275249481, -0.9648770093917847, 0.4609927833080292, -0.6375251412391663, 1.0787817239761353, -1.3841910362243652, 1.0995121002197266, -0.38145703077316284, 0.14750880002975464, 1.0965808629989624, 0.10487987846136093, -0.6855744123458862, 0.8633438348770142, -0.3472152352333069, -1.2198371887207031, -0.025164218619465828, 0.37472182512283325, -0.4936450719833374, 0.37301456928253174, 0.1725267916917801, 0.15640409290790558, 0.7230570912361145, 0.19411465525627136, 0.6412382125854492, -0.3496626317501068, -0.9781731963157654, -0.5920968055725098, -0.8986081480979919, 0.5821306109428406, -0.3988072872161865, -0.5335614085197449, 0.37856051325798035, -0.06920439004898071, -1.072512149810791, -1.7210841178894043e-05, -0.2950846254825592, 0.6941792964935303, 0.383868545293808, 1.3803482055664062, 0.9501574039459229, 0.09652295708656311, 0.05214676633477211, -0.6310020685195923, -0.8417701125144958, 0.9662083983421326, 0.8436211943626404, -0.2053397297859192, -0.24061600863933563, 0.8130329251289368, 1.4425125122070312, -0.14762037992477417, 0.3771393895149231, 0.40115025639533997, -0.28423574566841125, -1.089234471321106, -0.4098004996776581, 0.6646834015846252, -0.4222484529018402, 1.382560133934021, 0.8585498332977295, -0.5633418560028076, -0.4261057674884796, -0.21950657665729523, -0.5822968482971191, -0.24201828241348267, -1.006330132484436, -0.3751603662967682, -0.29312169551849365, -0.030725345015525818, 0.11673489958047867, 0.4570985734462738, 0.2785445749759674, 0.5146393179893494, -0.07683751732110977, -0.9064144492149353, -0.3506612777709961, 0.2918896973133087, 0.1722971647977829, 1.015601396560669, -0.026907160878181458, -1.6975904703140259, -0.0009888315107673407, 0.13004599511623383, 0.7746536135673523, 0.4295509159564972, -0.3994118869304657, 0.1325792819261551, 0.04263812676072121, -0.24484284222126007, 0.4382924437522888, 0.1766224503517151, -0.13253453373908997, 0.20354413986206055, -0.6296511292457581, 0.8346594572067261, 1.145371913909912, -1.167689323425293, -0.7496680021286011, -0.3734170198440552, 0.2602887749671936, 1.6039748191833496, 0.5239627361297607, 0.9435205459594727, 0.2685442566871643, -0.3520587980747223, -0.3043820559978485, -0.032022424042224884, -1.1010643243789673, -0.6249038577079773, -0.3252545893192291, -1.0561001300811768, -0.2242731899023056, -0.24672900140285492, 0.0694139152765274, 0.6030623316764832, -0.38073259592056274, 0.4390539526939392, 1.5146043300628662, -0.3958836495876312, -0.34644678235054016, 0.2504054307937622, 0.17365646362304688, -0.6997710466384888, 0.05707278102636337, 1.1505955457687378, -1.022451400756836, -0.7154358625411987, -0.31516557931900024, 0.5829870104789734, 0.5297279357910156, -0.11757608503103256, 0.5640925168991089, -1.859628677368164, -0.670680582523346, -0.3659370541572571, 1.3258405923843384, -0.5094713568687439, -0.15764164924621582, -0.3392273485660553, 0.13957074284553528, 0.9199427962303162, -0.3672716021537781, -0.5455644726753235, 0.8690212368965149, -0.48903268575668335, -0.7219529747962952, -0.1322767436504364, 0.5144235491752625, 0.7715868949890137, -0.3848249316215515, -0.4596341550350189, -0.7316585183143616, -0.5766631960868835, -0.3073839843273163, 0.46572479605674744, -0.2220887541770935, 0.5466582775115967, 0.17346477508544922, 0.3548968434333801, 0.6714382171630859, 0.6843281388282776, -0.4059765040874481, -0.9524338245391846, 0.07794854044914246, 0.8307563662528992, 1.1566035747528076, 0.2149200737476349, 0.3550342619419098, 0.7045952677726746, 0.10568004101514816, 1.112725019454956, 0.5534102320671082, 1.154318928718567, -0.28573355078697205, -0.22042635083198547, -0.7687734961509705, -0.25582191348075867, 0.05277499556541443, -0.14063064754009247, -0.18879255652427673, 0.16034245491027832, -0.9535959959030151, -0.9015564322471619, 0.9581417441368103, 0.7575202584266663, -0.23474520444869995, -0.5107262134552002, 0.5079891085624695, 0.1755456179380417, -0.08699148148298264, 0.38874751329421997, -0.5309665203094482, -0.05642811954021454, -0.015923356637358665, -1.2148417234420776, -0.35372889041900635, 0.686254620552063, 0.6928856372833252, 0.8094851970672607, -0.5614439845085144, 0.7820767760276794, -1.0673694610595703, 0.5867405533790588, 0.6364836096763611, -0.503552258014679, 0.25023382902145386, -0.05401746556162834, -0.5698136687278748, -0.17637062072753906, -0.1087222769856453, 0.9849066138267517, -0.9322993755340576, -0.09557217359542847, 0.2853280007839203, -0.4586007297039032, -0.22228780388832092, -0.5139912366867065, -0.298705518245697, 0.2616112530231476, -0.3347112834453583, 0.5358377695083618, 0.29094699025154114, -0.26927071809768677, 1.5329515933990479, 0.4226081371307373, 0.012576214969158173, 0.7094882726669312, 0.7338969707489014, -1.2693860530853271, 0.09777689725160599, 0.220565527677536, -0.1889936923980713, -0.885262131690979, -0.21361544728279114, 0.48004350066185, -0.6600780487060547, 0.5961093306541443, 0.21815374493598938, 0.48200738430023193, 0.31496796011924744, 0.13068798184394836, 0.3163221478462219, 0.8033883571624756, 1.1085835695266724, 0.9121147394180298, 0.14035092294216156, -0.8080419898033142, -0.3973745107650757, 0.13049061596393585, -1.4077552556991577, 0.3625073730945587, 0.7753920555114746, 0.3599702715873718, 1.3112843036651611, -1.4674456119537354, -0.5032567381858826, 0.5726309418678284, 0.29668113589286804, 0.8224745988845825, 0.9562662839889526, -0.6366238594055176, 0.15565472841262817, 0.5693874359130859, 0.07234436273574829, -0.6319422125816345, 0.4052915871143341, -0.20090055465698242, -0.7365095615386963, 0.2569323480129242, -0.9470497369766235, 0.5945621132850647, -0.025632474571466446, -0.6239302158355713, -0.14592081308364868, -0.9482000470161438, 0.16389359533786774, 0.31878483295440674, 0.5038381814956665, 2.026522397994995, -0.528113842010498, -0.9736077785491943, -0.007701309397816658, -1.0096204280853271, 0.25777485966682434, -0.5906752347946167, -0.43192389607429504, -0.729729413986206, 0.08311256021261215, -0.440502792596817, 0.8347567915916443, -0.22384367883205414, -0.5428155064582825, -0.5505965352058411, -1.196987509727478, 0.3520931303501129, 1.5522935390472412, 1.2244997024536133, 0.3169459104537964, -0.251657098531723, 0.45997175574302673, 0.28723177313804626, -0.8396236300468445, -0.35922059416770935, 0.23015232384204865, 0.13260596990585327, -0.00546632707118988, -1.1659839153289795, -0.7092186212539673, 0.5900591015815735, 0.40099769830703735, -0.16675949096679688, 0.9217649102210999, 1.3044192790985107, 0.9183385968208313, -0.4236249625682831, -0.3818928301334381, 0.38567695021629333, -0.6199917793273926, 0.4509182870388031, 0.8333762288093567, 0.022208325564861298, -1.1452006101608276, -0.6633715033531189, -0.9436110854148865, 0.5263415575027466, -0.23912300169467926, -0.9099996089935303, 1.466617465019226, 0.19942152500152588, 1.0638147592544556, 0.05837385728955269, -0.4470594823360443, 0.41922464966773987, -0.04147526994347572, 0.0033373553305864334, -1.144217610359192, 0.46715807914733887, 0.03347208723425865, -0.28328147530555725, -0.16584423184394836, 0.3510565161705017, 0.2628248929977417, 0.13969938457012177, 0.22179217636585236, 0.17067986726760864, 0.3970376253128052, -0.0683380737900734, -0.08143221586942673, -0.7843679189682007, 0.4212404191493988, -0.6411397457122803, -0.6207751035690308, 0.44619107246398926, 0.49316340684890747, 0.6638614535331726, -0.15958906710147858, -0.4260590970516205, -0.3960783779621124, -0.4363689720630646, -0.26089996099472046, 0.03443211689591408, 0.5612810850143433, 0.09753178805112839, 0.31714364886283875, -0.6410512924194336, -0.8868372440338135, -0.32851359248161316, -0.36098065972328186, 0.3814801573753357, 0.4893004298210144, -0.7761828899383545, 0.8267933130264282, 0.3757534921169281, -1.346042275428772, 0.34510043263435364, -0.5482414364814758, 0.28328055143356323, -0.94826740026474, -0.8232879042625427, -0.6421098113059998, 0.319399356842041, 0.40683430433273315, -0.5500730276107788, 1.2106685638427734, 0.851676344871521, -1.072363257408142, 0.4286487400531769, 0.056321822106838226, -0.6675920486450195, -0.15703117847442627, -0.8666642904281616, 0.6553717255592346, -0.03264366462826729, 0.6371857523918152, -0.5150893330574036, 1.7708638906478882, -1.5657718181610107, -1.1351090669631958, -1.1012966632843018, -0.48129716515541077, 1.348645567893982, 0.6740400791168213, -0.5417579412460327, 1.55141019821167, 0.4332934319972992, -0.37092724442481995, -0.19848394393920898, -0.19809603691101074, -0.4486660063266754, 0.11214735358953476, 0.4157518148422241, 0.755413293838501, 0.265652596950531, 0.8400713205337524, 0.15031707286834717, 0.8551929593086243, 0.3536970019340515, 1.1520421504974365, -0.7377668619155884, -0.4962274134159088, 0.67662513256073, 1.141656517982483, -0.8883094787597656, -1.3509119749069214, 0.07962431013584137, -0.5855759382247925, -0.7504224181175232, 0.010997457429766655, 0.5261212587356567, -0.27747124433517456, 0.29550373554229736, -0.5349626541137695, 0.39041557908058167, -0.5538346767425537, 0.2834344506263733, 0.3787389397621155, -0.5692672729492188, -0.9326086640357971, 0.4352043569087982, 0.019813179969787598, -2.0400590896606445, -0.19476871192455292, 0.2217884063720703, 0.2748597264289856, -0.9631636142730713, 0.723273754119873, 0.26465022563934326, 0.24796591699123383, -0.928719162940979, 1.831276774406433, 0.648521363735199, -0.6013936996459961, -0.09895090758800507, 0.4770621657371521, 0.3238699734210968, -0.028314605355262756, -1.0844281911849976, -0.610683023929596, -0.5302436947822571, 1.0866484642028809, 0.6686657071113586, 0.5781750679016113, -0.11200615763664246, 0.056450147181749344, 0.14151129126548767, -0.050536610186100006, 0.8884975910186768, -1.0295586585998535, -0.10073478519916534, 0.802046537399292, 0.25991296768188477, 0.09336449950933456, 0.11426091194152832, 0.8044854998588562, 0.5356305837631226, -1.1193467378616333, 0.21267719566822052, 0.22531747817993164, -0.7165660262107849, 0.7224134206771851, 0.22229596972465515, -0.38044148683547974, 0.13116604089736938, -0.3000544309616089, -1.106665849685669, 0.19378933310508728, -0.6328067779541016, -0.8087222576141357, 0.49216559529304504, -0.9703896045684814, -0.6124650835990906, 0.26234447956085205, 0.07306740432977676, 0.13408440351486206, -0.6823686361312866, 0.842372715473175, -0.1427888125181198, 0.09220343083143234, 1.0900667905807495, -0.008123229257762432, 1.6002135276794434, -0.49128836393356323, 0.3426190912723541, -1.6138867139816284, 0.27150505781173706, 0.35380280017852783, 0.24619849026203156, -0.22762037813663483, -0.20138025283813477, 0.4722098112106323, -0.051791712641716, -0.5892987251281738, -0.378377765417099, 0.1150154247879982, 0.12297994643449783, -0.030373353511095047, -1.2987785339355469, -0.08718402683734894, 0.26320067048072815, 0.9234421849250793, -0.020569531247019768, -0.6684070229530334, -0.9155912399291992, 0.23569168150424957, -0.6831536889076233, 0.6396180391311646, -0.6399670243263245, 0.41012704372406006, 0.6320397853851318, -0.4942606985569, -0.7826765179634094, -0.595834493637085, 0.9819990992546082, 0.18983829021453857, 0.1381787359714508, -0.4508000612258911, -0.12865839898586273, -0.08821304142475128, -0.915049135684967, 0.5985240936279297, 0.5098671913146973, -0.5325279831886292, 0.4960523247718811, -1.5376607179641724, -0.5186719298362732, -0.6442906856536865, -0.12966659665107727, 0.940662682056427, -0.1260342001914978, -0.155926913022995, 0.14745785295963287, -1.0728716850280762, 0.24088382720947266, 0.5831632018089294, -0.6602495312690735, 0.20057417452335358, 1.5183035135269165, 2.2311904430389404, 0.4484383165836334, -0.1595427244901657, -0.57815021276474, 0.29628780484199524, -0.8730894327163696, -0.1721130758523941, -0.8406224846839905, -0.7067888379096985, -0.4219820201396942], [0.7998701333999634, 1.7986658811569214, -2.743407726287842, -0.24230735003948212, 0.9534332752227783, 0.24091725051403046, 1.7064011096954346, -0.3409430682659149, 0.05650847777724266, -0.25539323687553406, 0.1227121502161026, 0.06601251661777496, 1.7660269737243652, 0.9851018786430359, 0.25398603081703186, 0.566478967666626, -0.02257576957345009, -0.7657016515731812, 0.3503440022468567, 0.8212364315986633, 0.510863721370697, 0.051796335726976395, 0.38390710949897766, 0.036433953791856766, -0.3446310758590698, 1.0381295680999756, -1.6083498001098633, -0.9339393377304077, -0.7395435571670532, -1.0210754871368408, 1.17326021194458, 0.20619851350784302, -0.5570310354232788, 0.3140009343624115, -1.6404377222061157, -0.0017782773356884718, 1.6318349838256836, 0.44743478298187256, 0.65504390001297, 0.5105332136154175, 1.6541506052017212, -0.20376260578632355, 0.42711949348449707, -0.4106318950653076, 0.004043250344693661, 0.020591462031006813, 0.5837726593017578, -0.14590799808502197, 0.2125484049320221, -0.282539039850235, 0.211678147315979, -0.5968566536903381, 0.10885286331176758, 1.2681818008422852, 0.9104905724525452, 0.48258736729621887, -0.04141993820667267, -0.4261474609375, 0.6592069268226624, -1.011250376701355, 1.3551536798477173, 0.2725311815738678, -0.10481879115104675, 0.8608505725860596, 0.3570690453052521, -0.5751456618309021, 0.4860825836658478, 0.40973031520843506, -0.024246834218502045, -0.1700390875339508, 0.5473964214324951, -0.049094002693891525, -1.1821694374084473, 0.03818976506590843, -0.8408995866775513, 0.5394043922424316, 0.5230528116226196, 0.5906153917312622, 0.34985798597335815, 1.0817251205444336, -0.1167793869972229, 0.2095521092414856, 0.056544117629528046, -0.29499372839927673, 0.7007165551185608, 0.2942960858345032, -0.021724870428442955, -0.8813791871070862, -1.0913962125778198, 1.601536750793457, 0.7676013112068176, -0.05828769877552986, 0.4191523790359497, -0.547633707523346, -0.8346008658409119, -1.374326229095459, -0.0028020236641168594, -0.6715551018714905, -0.9248345494270325, -0.7779697775840759, -0.9293174147605896, -0.20806784927845, 0.2491936832666397, -0.12681140005588531, 0.15695936977863312, 1.3780434131622314, -0.17387820780277252, -0.3876855671405792, -0.4529622197151184, -0.07170937210321426, -0.5099340677261353, -0.21956028044223785, -0.9177122712135315, -1.2478257417678833, -0.5004096031188965, 0.991168200969696, 1.2060612440109253, -0.1290816068649292, 0.39464330673217773, 0.5445940494537354, -0.6042179465293884, -0.16939744353294373, -0.35758382081985474, -0.08743877708911896, 0.31065282225608826, 0.8172101378440857, -0.4389847218990326, -0.27537962794303894, 0.14972834289073944, -0.2159125804901123, 0.8320485353469849, 0.18148474395275116, -0.7559400796890259, 0.9467660188674927, -0.2174631953239441, 1.6809169054031372, -0.8788813352584839, -0.1794176697731018, 0.054116811603307724, 0.23792825639247894, 0.3887081444263458, -0.10241900384426117, 0.0952918529510498, 0.3117222785949707, -0.41873398423194885, 0.33542895317077637, 0.33983030915260315, -0.6028457283973694, -0.2340831309556961, 0.056948527693748474, -1.0213828086853027, 0.38680732250213623, -0.07120159268379211, 0.5099081993103027, 0.31437572836875916, 0.1656261682510376, 0.5225070714950562, -0.16450950503349304, 0.6792722344398499, 0.43173953890800476, 0.40787893533706665, 0.044791195541620255, -0.8754953742027283, 0.9365984201431274, 0.10737583041191101, -0.4999462366104126, 0.43434467911720276, 0.3894805610179901, -0.8592984080314636, 0.7943141460418701, -0.6147679090499878, -0.634635865688324, -0.3060877025127411, 0.020869864150881767, -0.3995265066623688, -0.1768311709165573, 1.9239413738250732, -0.6791166067123413, -1.0762625932693481, -1.8532230854034424, 0.6517337560653687, -0.599609911441803, 0.2868506610393524, 0.44777044653892517, 1.0882118940353394, -0.5714032649993896, 0.2170082926750183, 0.23312881588935852, -0.6643626093864441, -0.9263960719108582, -0.8288955092430115, -0.6793582439422607, -0.4509597420692444, 0.8791781067848206, -0.6444188952445984, -0.6276821494102478, 1.3118326663970947, -1.8221243619918823, -0.07634539902210236, -0.2306782752275467, 0.020239681005477905, -0.18368835747241974, -1.1775377988815308, 0.14111900329589844, -0.2262841910123825, 1.0462316274642944, -0.8387264609336853, 0.6273966431617737, -0.7820100784301758, -0.02981686405837536, 1.3951977491378784, 0.00447919312864542, -0.8035318851470947, 0.8087434768676758, -0.03326813504099846, -1.8942389488220215, 0.3053043782711029, 0.42697224020957947, -0.3184052109718323, -0.012813802808523178, 0.0846644714474678, -0.23498088121414185, -0.31169164180755615, 0.7121758460998535, 0.7557374238967896, -0.3880349397659302, -0.15967978537082672, -0.8491629958152771, -0.8016102313995361, 0.46068474650382996, -1.1300511360168457, -0.8204930424690247, 0.5002448558807373, -0.13748204708099365, -0.6386234760284424, 0.10507150739431381, 0.015206604264676571, 0.47253626585006714, 0.3879885673522949, 1.2676148414611816, 0.5348492860794067, 0.18326200544834137, -0.6622141003608704, -0.14961937069892883, -0.5545752048492432, -0.43527671694755554, 1.1646960973739624, -0.3242834210395813, -0.5406484007835388, 1.5234116315841675, 1.0980184078216553, 0.041977740824222565, 0.90468829870224, 0.14430952072143555, 0.5173866748809814, -0.6639602184295654, -0.4668736755847931, 0.1394481062889099, -0.2695522606372833, 0.8163546323776245, 1.0183833837509155, -0.8304077386856079, -0.09107028692960739, -0.3567734956741333, -0.6724267601966858, -0.7281071543693542, -0.610942542552948, -0.37584900856018066, -0.4410459101200104, 0.02061467431485653, 0.0022417083382606506, 0.3614308834075928, -0.9819027781486511, 0.6852307319641113, -0.727279007434845, -0.3244680166244507, -0.2518666684627533, 0.059133853763341904, 0.5239742398262024, 0.23752209544181824, 0.002585143782198429, -1.1881579160690308, -0.8039926290512085, 0.29315993189811707, 1.1887434720993042, 0.44502460956573486, 0.01493292860686779, 0.46272093057632446, 0.3114403784275055, -0.09598114341497421, 0.33449625968933105, -0.0063146683387458324, -0.12876367568969727, -0.07508879899978638, 0.08862382173538208, 0.8824001550674438, 1.0886837244033813, -0.6285104751586914, -0.7987892031669617, -0.5319778323173523, 0.5243653059005737, 1.0351027250289917, 1.1582437753677368, 1.0864508152008057, -0.12994173169136047, 0.35908228158950806, -0.5837275385856628, -0.030158277601003647, -0.3936030864715576, -0.6935646533966064, -0.3151787519454956, -0.5202456116676331, -0.3025958836078644, -0.04802614450454712, 0.11393860727548599, 0.1736019104719162, -0.2651349604129791, 0.6317731142044067, 1.395131230354309, -0.3639748692512512, -0.8321073651313782, -0.7451940178871155, -0.12751281261444092, -0.7007027268409729, 0.22795559465885162, 0.4805009961128235, -0.7272565960884094, -0.5925469994544983, -0.049493346363306046, 0.534436047077179, 0.968885600566864, -0.32832300662994385, 0.30274271965026855, -1.5537117719650269, -0.20824246108531952, -0.2723073661327362, 0.9001396894454956, -0.004229946993291378, -0.008318296633660793, -0.1566706895828247, -0.4386684000492096, 1.0625087022781372, 0.15017732977867126, -0.7930523753166199, 0.5018211007118225, -0.07756620645523071, -0.9429003000259399, -0.2686273455619812, 0.27889591455459595, 1.0236083269119263, -0.47061705589294434, -0.305306613445282, -0.16423623263835907, -0.1372995227575302, -0.016755491495132446, 0.5459805130958557, -0.0987541526556015, 0.8317604660987854, -0.059271179139614105, -0.7908069491386414, 0.5163245797157288, 0.12327511608600616, -0.10672162473201752, -0.76873779296875, 0.31156736612319946, 0.8257635235786438, 0.940621554851532, 0.6307348012924194, 0.6934441328048706, 0.7546018958091736, -0.23294535279273987, -0.5857431888580322, 0.7330621480941772, 1.020749807357788, 0.4024950861930847, -0.04893902689218521, -0.1633274108171463, 0.42146655917167664, -0.15269729495048523, -0.531572699546814, 0.16779182851314545, 0.23634107410907745, -0.24696044623851776, -0.718756914138794, 0.4645726680755615, 0.6130914688110352, -0.16917315125465393, -0.6508974432945251, 0.21582461893558502, 0.7630685567855835, 0.05347045511007309, 0.0674886479973793, -0.4242912232875824, -0.03875931724905968, -0.38090601563453674, -1.1500097513198853, 0.27184465527534485, 0.8997752070426941, -0.2759530544281006, 0.9013567566871643, -0.5948525071144104, -0.3224104046821594, -0.6321043372154236, 0.41758525371551514, 0.5415975451469421, -0.18818168342113495, 0.5912284255027771, 0.08834318816661835, -0.1969461739063263, -0.27969294786453247, 0.26449525356292725, 1.0352028608322144, -0.7396438717842102, -0.2301207184791565, 0.5037351846694946, 0.03782273083925247, 0.4013119339942932, -0.8775623440742493, -0.6951342821121216, -0.030570680275559425, -0.6461881399154663, 0.3403726816177368, -0.002258762251585722, 0.2084498554468155, 0.8480995893478394, 0.8716696500778198, -0.1414971798658371, 0.5047438144683838, -0.6499055027961731, -0.7164623141288757, 0.15128189325332642, 0.652756929397583, -0.17777694761753082, -0.3455227017402649, -0.7014653086662292, 0.28220391273498535, 0.2953612804412842, 1.1793255805969238, 0.08004332333803177, 1.1348503828048706, 1.0043857097625732, -0.26450982689857483, -0.5260048508644104, 0.5699000954627991, 1.5856760740280151, 1.5191630125045776, 0.25073373317718506, -0.5179501175880432, -0.6384169459342957, 0.7019636631011963, -0.5445066690444946, 0.6783753037452698, 1.2213002443313599, -0.27851295471191406, 1.610228180885315, -1.3369264602661133, -0.30510029196739197, 0.9806814789772034, 0.9302427768707275, 0.8766884207725525, 0.01875940151512623, 0.1674046665430069, -0.2943591773509979, 0.34071311354637146, 0.26332616806030273, -0.2681907117366791, 0.33835068345069885, 0.014780059456825256, -0.37031129002571106, 0.6985533237457275, -1.318082571029663, 0.4798167943954468, -0.7292213439941406, -0.0741933062672615, -0.30734071135520935, -0.5704063773155212, 0.03930249810218811, 0.5740531086921692, 0.1760101467370987, 1.0568443536758423, -0.10343775898218155, -1.7966673374176025, -0.027310334146022797, -0.7854881882667542, 0.14061489701271057, -0.03476559370756149, -0.4904209077358246, -0.6667832136154175, -0.5490939021110535, -0.39256078004837036, 0.31637895107269287, -0.07655581831932068, 0.15543723106384277, -0.29856353998184204, -1.7185924053192139, -0.5616719126701355, 0.9666920304298401, 1.282284140586853, 0.7368438839912415, 0.018383368849754333, -0.34706154465675354, 0.38032248616218567, -1.1114643812179565, -0.4323577284812927, 0.449867844581604, -0.02890353463590145, 0.30097517371177673, -1.1292787790298462, -0.6220539212226868, 0.6912280321121216, 0.042534880340099335, 0.19847986102104187, 0.9689904451370239, 1.0191305875778198, 1.31111478805542, -0.7340764403343201, -0.9018258452415466, 0.12806732952594757, -0.6311502456665039, 0.44823944568634033, 0.792314887046814, -0.558223307132721, -0.4440614581108093, -0.845036506652832, -1.1580349206924438, 1.0418341159820557, -0.5651825666427612, -1.1418452262878418, 1.1898013353347778, 0.8037095069885254, 0.47418928146362305, 0.42193880677223206, -0.884714663028717, -0.09911049902439117, 0.7203643321990967, 0.09571518003940582, -0.7880941033363342, 0.3064960241317749, 0.6401360630989075, 0.010837347246706486, -0.3704812824726105, 0.1518685519695282, -0.30040594935417175, -0.26249685883522034, 0.5355527997016907, 0.3355221748352051, -0.04833042249083519, 0.9467447400093079, 0.9115912914276123, -0.8137122988700867, 0.12408645451068878, -0.6744290590286255, -0.06819991767406464, -0.37935319542884827, 0.19306160509586334, -0.03159530460834503, 0.23123297095298767, -0.1236853152513504, -0.5583124160766602, -0.5096368193626404, -0.5287874341011047, -0.05493750795722008, 1.5192580223083496, -0.29662463068962097, 0.3959203064441681, -0.7188582420349121, -0.21614040434360504, -0.22380192577838898, -0.09749098122119904, 0.5124212503433228, 1.1715309619903564, -1.4696823358535767, 0.2520197927951813, 0.5490394234657288, -0.6999961137771606, 0.19280318915843964, -0.2763189375400543, -0.15849743783473969, -1.4333668947219849, -1.3426519632339478, -0.4592670202255249, -0.01014222577214241, 0.9061001539230347, -0.28998011350631714, 0.5767534971237183, -0.07574362307786942, -1.836490511894226, 0.7812434434890747, 0.45082396268844604, -1.3732796907424927, -0.5368853211402893, -1.664038896560669, 0.7151618003845215, -0.9243975281715393, -0.6031238436698914, 0.02352367714047432, 0.9574592113494873, -1.5541036128997803, -0.8855659365653992, -1.2618412971496582, 0.060907330363988876, 1.6114776134490967, 1.5571725368499756, -1.813278079032898, 1.3928160667419434, 0.07779978215694427, -0.8093145489692688, -0.11113256216049194, 0.8734574317932129, -1.0101747512817383, -0.24959801137447357, 0.43612995743751526, 0.24417001008987427, -0.1437021791934967, 0.9480010271072388, -0.2512684464454651, 1.3789770603179932, 0.3688226044178009, 1.0474077463150024, -0.9583378434181213, -0.5369808673858643, -0.09803435951471329, 1.1813302040100098, -1.1646639108657837, -0.4390714764595032, -0.2590496838092804, -0.7953241467475891, -1.2816765308380127, 0.31859341263771057, -0.24509499967098236, -1.1637004613876343, 0.49416303634643555, -0.8825221657752991, 0.8265672922134399, -0.5753212571144104, 0.34758836030960083, -0.4444618225097656, -0.27434900403022766, -0.30906006693840027, 0.18801170587539673, -0.054111238569021225, -1.1308852434158325, -0.2266910821199417, 0.43459561467170715, -0.31432363390922546, -0.6469797492027283, 0.5277359485626221, 0.869256854057312, -0.2892254889011383, -0.9280980229377747, 1.2603981494903564, 1.1448843479156494, 0.42058199644088745, -0.4669809639453888, 0.480953186750412, 0.191341370344162, 0.5040805339813232, -0.5418692231178284, -0.3933199942111969, -0.2896936535835266, 0.5350598096847534, 0.3515099883079529, 0.6278715133666992, -0.12975916266441345, 0.22878700494766235, -0.5182243585586548, 0.7885328531265259, 0.4398966431617737, -0.6108158230781555, -0.44805875420570374, 1.1564476490020752, 0.4802716374397278, 0.21777507662773132, -0.0822344645857811, 0.8373404145240784, 0.5005601644515991, -0.48884955048561096, 0.14580410718917847, 0.4537462890148163, -0.7703120112419128, 0.7000391483306885, 0.2704766094684601, 0.6137365698814392, 0.010862989351153374, -0.5444737076759338, -0.9562037587165833, -0.9113837480545044, -0.30367904901504517, -0.7003291845321655, 0.23422406613826752, -1.3096604347229004, -0.7034512758255005, -0.029788436368107796, 0.04003360867500305, 0.26324543356895447, 0.4984726905822754, -0.3516036868095398, -0.35833314061164856, -0.41728076338768005, 0.8728955388069153, -0.30609917640686035, 0.32849249243736267, -0.13762593269348145, -0.5803995728492737, -0.3893751800060272, -0.20771630108356476, -0.11844310164451599, 0.3178749680519104, -0.5327504277229309, -0.6886278390884399, 0.07858913391828537, -0.5327871441841125, -1.0835903882980347, -0.14931242167949677, 0.35516664385795593, 0.2389475256204605, -0.1237703338265419, -1.4278604984283447, 0.5384157299995422, 1.1796013116836548, -0.36544016003608704, -0.6369223594665527, -0.7735869884490967, -1.089131474494934, 0.7681206464767456, -0.3420078754425049, 0.7301173806190491, -0.884426474571228, 0.5834882855415344, 0.9790217280387878, -0.6502793431282043, -0.08259985595941544, -0.511810839176178, 0.8302934169769287, -0.13625216484069824, 0.6118712425231934, 0.018010681495070457, 0.6619779467582703, -0.6160621643066406, -1.1361007690429688, -0.1694633811712265, 0.5526328086853027, -0.0252202358096838, 0.625722348690033, -1.196022391319275, -0.9785856604576111, -0.0706099420785904, 0.746983528137207, 0.45547178387641907, 0.11621531844139099, -0.20700013637542725, -0.3245905339717865, -1.0166895389556885, -0.1292269378900528, 0.06612692773342133, -0.07393155992031097, 0.04441018030047417, 1.706327199935913, 1.6128101348876953, 0.17363721132278442, -0.2644115090370178, -0.2499338835477829, 0.8011996150016785, -1.2361934185028076, -0.09528457373380661, -0.45639681816101074, -0.1946360319852829, 0.4231894910335541], [0.17974981665611267, 2.5534701347351074, -2.851006507873535, 0.22735512256622314, 1.4354698657989502, 0.6204962730407715, 1.16908597946167, -0.1265755593776703, 0.40156787633895874, -0.6621720194816589, -0.30006924271583557, 0.25640979409217834, 1.09389066696167, 1.0969064235687256, 0.37333908677101135, 0.57274329662323, 0.3967881202697754, -0.8560584783554077, 0.3776210844516754, 0.7194836139678955, 0.32699108123779297, -0.31736642122268677, 0.3141865134239197, 0.1334676891565323, -0.6987326741218567, 0.5786443948745728, -0.9320130944252014, -0.47155946493148804, -0.5391885638237, -0.9937498569488525, 2.08219575881958, -0.6048064827919006, -0.3038909137248993, 0.5064741373062134, -1.9676673412322998, -0.6760667562484741, 1.4369235038757324, 0.4088168144226074, 0.6115415692329407, 0.389845609664917, 1.2942965030670166, -0.26454469561576843, 0.6428079009056091, -0.8779078125953674, -0.33837252855300903, 0.3685864806175232, 0.970349133014679, -0.6273768544197083, 0.3515613079071045, -0.6802532076835632, 0.5876399278640747, -0.15680527687072754, 0.3116009831428528, 1.3037492036819458, 0.919120192527771, 0.003486890345811844, 1.082369089126587, -0.34924083948135376, 0.15192903578281403, -0.290316641330719, 1.1151564121246338, -0.28776830434799194, 0.44957131147384644, 0.10694772005081177, 0.3177274465560913, -0.26969295740127563, 0.21227680146694183, 0.36721643805503845, 0.5644056797027588, 0.17406779527664185, 0.6374768018722534, -0.17508795857429504, -0.9958392381668091, -0.11505824327468872, -0.7740058302879333, 0.7240562438964844, 0.8064152002334595, 0.5958976149559021, 0.1860874891281128, 0.7908660769462585, -0.7362762093544006, -0.02845907211303711, 0.2558225095272064, -0.4142008125782013, 0.7941757440567017, 0.5459257364273071, 0.16844013333320618, -1.3063970804214478, -0.6965376138687134, 1.6308636665344238, 0.8806555271148682, -0.035687122493982315, 0.022178124636411667, -0.3332268297672272, -0.6049376130104065, -1.2992008924484253, 0.25516119599342346, -0.5713396668434143, -0.704277515411377, -0.5883870720863342, -0.767937421798706, -0.13803938031196594, 0.24351748824119568, 0.009110960178077221, 0.19982050359249115, 1.2901129722595215, 0.3544773757457733, -0.4095563590526581, -0.7268736362457275, 0.3791574239730835, -0.07302187383174896, 0.1902206987142563, -0.6807429790496826, -1.3845360279083252, -0.8241376876831055, 0.8006969690322876, 1.277933120727539, 0.3651743531227112, 0.7990747690200806, 0.6458405256271362, -0.4935935139656067, 0.012351732701063156, -0.33754414319992065, 0.37467944622039795, 0.6393247842788696, 0.9482293128967285, -0.4624934792518616, -0.4290986657142639, 0.34407979249954224, -0.18651938438415527, 0.3354337811470032, -0.243070587515831, -0.050154224038124084, 0.7067902088165283, -0.35498911142349243, 1.3761351108551025, -0.913455069065094, -0.3627973794937134, 0.07776510715484619, 0.19184686243534088, 0.21599248051643372, -0.17695637047290802, -0.0768592357635498, 0.17871764302253723, -0.154770627617836, -0.04307524859905243, 0.6815119385719299, -0.3684563636779785, -0.7481963038444519, 0.04661843925714493, -1.6659538745880127, 0.6209321618080139, -0.475151002407074, 0.7693681120872498, 0.7039677500724792, -0.3033785820007324, 0.5479076504707336, 0.018217414617538452, 0.6911925077438354, 0.14996376633644104, 0.3034631609916687, 0.40556883811950684, -1.1360723972320557, 0.7371852397918701, 0.549399733543396, -0.609866201877594, 0.9123971462249756, 0.39082804322242737, -0.3820594549179077, 0.5019269585609436, -1.0577785968780518, -0.6947075724601746, -0.41465944051742554, 0.2904190421104431, 0.07234865427017212, 0.17788824439048767, 1.5462175607681274, -0.642681360244751, -1.1843185424804688, -1.722034215927124, 0.45204371213912964, -0.48201191425323486, 0.004722909070551395, 0.5575405359268188, 1.0901196002960205, -0.266666442155838, 0.21553421020507812, 0.20773287117481232, -0.5996850728988647, -0.938417911529541, -0.7798843383789062, -0.21240635216236115, -0.9848135709762573, 0.3810957074165344, -0.6116982102394104, -0.1995571106672287, 0.887675404548645, -1.0174953937530518, -0.12844061851501465, -0.09484279900789261, -0.013437099754810333, -0.39654430747032166, -1.0691313743591309, -0.1408335566520691, -0.3384582996368408, 0.7735369801521301, -1.1124814748764038, 1.0123242139816284, -0.4589318633079529, 0.1369665116071701, 1.440381407737732, -0.16621635854244232, -1.0721001625061035, 0.5162116885185242, -0.4353528320789337, -2.0063846111297607, 0.6351503729820251, 0.3110451102256775, -0.5368891954421997, 0.32011428475379944, 0.07265239953994751, 0.394641637802124, -0.17991821467876434, 0.4000172019004822, 0.6995142698287964, -1.1124019622802734, -0.4835076928138733, -1.5705556869506836, -0.32717087864875793, 0.4858001172542572, -0.7027531266212463, -0.904679536819458, 0.9002336263656616, 0.2556419372558594, -0.7727574110031128, 0.009861531667411327, -0.13168743252754211, 0.20060622692108154, 0.38133758306503296, 1.523794174194336, 0.6236032843589783, 0.411010205745697, -0.6971442103385925, -0.1506061553955078, -0.6322988271713257, -0.01799406111240387, 0.7767104506492615, -0.40295663475990295, -0.42777207493782043, 1.2277042865753174, 0.8805761337280273, -0.2227630615234375, 0.56756192445755, -0.5775939226150513, 0.13673527538776398, -1.0236330032348633, -0.48456740379333496, 0.06410621851682663, -0.49046769738197327, 1.1747212409973145, 0.9740167856216431, -1.3663303852081299, -0.17033331096172333, -0.056160688400268555, 0.1550883650779724, -0.1745034158229828, -0.5360596179962158, -0.2897063195705414, -0.20515750348567963, 0.037127092480659485, -0.009978408925235271, 0.13625475764274597, -0.8665109872817993, 0.32587766647338867, -0.8034510612487793, -0.39468246698379517, -0.05412705987691879, 0.19442424178123474, 0.3233051300048828, 0.25360533595085144, -0.5228216052055359, -1.2124886512756348, -0.9334815740585327, 0.21169865131378174, 1.3291839361190796, 0.16266706585884094, 0.5409641265869141, 0.49008095264434814, 0.07490108907222748, -0.22724448144435883, 0.4388541579246521, 0.19392089545726776, -0.22884684801101685, -0.036188118159770966, -0.030968721956014633, 0.8070081472396851, 1.0932718515396118, -1.1517629623413086, -0.7406632900238037, -0.12698397040367126, 1.268007516860962, 0.6870458722114563, 1.0682446956634521, 0.7739114165306091, -0.2118278592824936, 0.13986194133758545, -0.2613373398780823, -0.45606544613838196, -0.5659922957420349, -0.9338297843933105, -0.2065344601869583, -0.12631581723690033, -1.0087567567825317, 0.302217960357666, -0.0023386646062135696, -0.1588059812784195, -0.1647404432296753, 0.35083574056625366, 1.6371409893035889, -0.39042022824287415, -1.0949510335922241, -0.7486640214920044, -0.45744431018829346, -0.8335117101669312, 0.5133793950080872, 0.6051830053329468, -0.7925251126289368, -0.4975038766860962, 0.5117895603179932, 0.23185884952545166, 0.6221411824226379, -0.38702476024627686, 0.5295413732528687, -1.4645216464996338, -0.8952542543411255, -0.646754264831543, 1.351905107498169, 0.6361063718795776, -0.32019904255867004, -0.6950266361236572, -0.12759289145469666, 0.5281959772109985, -0.1809263825416565, -0.330338716506958, 0.6801515817642212, -0.2192922979593277, -0.7907797694206238, -0.20966380834579468, 0.20791344344615936, 0.7043471932411194, -0.9060957431793213, -0.14909793436527252, -0.13563144207000732, 0.0953855887055397, -0.0339345708489418, 0.7683698534965515, 0.9374675750732422, 0.4416942596435547, -0.12299371510744095, -0.9060351252555847, 0.12061136215925217, -0.34960466623306274, -0.19247287511825562, -1.1748135089874268, 0.4621712565422058, 0.9614266157150269, 0.7398189306259155, 0.6234707236289978, 0.3502840995788574, 0.9849671721458435, -0.034586772322654724, -0.7110838890075684, 0.3503277897834778, 1.0839059352874756, 0.4377134442329407, 0.07290304452180862, -0.07326430082321167, 0.38030993938446045, 0.23590952157974243, -0.7186129093170166, 0.10500170290470123, 0.3554441034793854, -0.2531367540359497, -0.3977547883987427, 0.529933750629425, 0.41390693187713623, -0.49982544779777527, -0.5865429639816284, 0.06116248667240143, 1.1233552694320679, 0.505878210067749, 0.39717650413513184, -0.256592333316803, -0.5686262845993042, -0.3543265461921692, -0.842917263507843, -0.3435564637184143, 0.1858540177345276, 0.2991461753845215, 0.9093098044395447, -0.8710035681724548, -0.57784104347229, -0.9432927370071411, 0.7256687879562378, 0.5498594045639038, 0.09484114497900009, 0.7213202714920044, 0.10389313101768494, 0.005205690860748291, -0.03179537504911423, 0.5723568797111511, 1.121157169342041, -0.38273733854293823, -0.27614307403564453, 0.19845019280910492, 0.10273483395576477, -0.13605238497257233, -0.8188373446464539, -0.26181328296661377, 0.0409327931702137, -0.7008458375930786, -0.5882760286331177, 0.1445550173521042, 0.18458081781864166, 0.9244149923324585, 0.8114888668060303, 0.2045111060142517, 0.6765648126602173, -0.7115538716316223, -1.0044808387756348, -0.085394948720932, 0.799527108669281, -0.2499440610408783, -0.2509169578552246, -0.5060081481933594, 0.5092150568962097, 0.3256814777851105, 0.7446578741073608, -0.029990628361701965, 0.8386159539222717, 0.7520661354064941, 0.1260930299758911, -0.6898794174194336, 0.9329427480697632, 1.1856626272201538, 1.434457540512085, 0.8918392658233643, -0.43255484104156494, -0.6036460399627686, 0.8503372669219971, -0.6618221402168274, 0.6781842708587646, 1.0479811429977417, 0.21634116768836975, 1.8114413022994995, -1.1796079874038696, -0.7886968851089478, 1.0957088470458984, 0.48854684829711914, 0.44916313886642456, 0.12374268472194672, 0.14452676475048065, -0.5608556270599365, 0.39770716428756714, 0.5521559715270996, 0.07978930324316025, 0.3129703998565674, -0.16179291903972626, -0.01023537665605545, 0.5011795163154602, -0.6782413721084595, 0.3963696360588074, -0.9238763451576233, 0.014102326706051826, -0.317817747592926, -0.4601931869983673, 0.2566886246204376, 0.587407648563385, 0.2742268443107605, 0.6200272440910339, -0.47798699140548706, -1.3663843870162964, 0.11436563730239868, -1.3541784286499023, 0.2930338382720947, -0.6091064214706421, -0.862113356590271, -0.26864656805992126, -0.3979630470275879, -0.4653463363647461, 0.38815128803253174, 0.06296680122613907, -0.4158381223678589, -0.06423325836658478, -1.116389513015747, -0.3204697370529175, 0.7400600910186768, 1.3287267684936523, 0.5566631555557251, 0.0011472105979919434, 0.17446401715278625, 0.5990592241287231, -1.1955697536468506, -0.09795752912759781, 0.09260288625955582, 0.014204081147909164, 0.23828953504562378, -0.8731385469436646, -0.7053835391998291, 0.4664626717567444, 0.4375291168689728, -0.07464128732681274, 0.8046377897262573, 0.8907897472381592, 0.9952405095100403, -0.6319879293441772, -0.5338212847709656, -0.46738070249557495, -0.294735848903656, 0.5660625100135803, 0.75400710105896, -0.41574275493621826, -0.40298593044281006, -0.36284103989601135, -1.579253911972046, 1.3207283020019531, 0.07132658362388611, -0.5361096262931824, 0.25424033403396606, 0.639507532119751, 0.813937246799469, -0.039214130491018295, -0.5711205005645752, 0.032859332859516144, 0.1962365061044693, 0.009653091430664062, -0.48463380336761475, 0.4228029251098633, 0.06935203075408936, -0.22761133313179016, -0.3141506314277649, 0.06089191511273384, -0.30895155668258667, -0.3181213140487671, 0.07343453168869019, 0.7882051467895508, -0.20932075381278992, 0.7398816347122192, 0.1470911204814911, -0.9071078300476074, 0.3634299635887146, -0.669520914554596, -0.1504705846309662, -0.10402828454971313, 0.4981324374675751, -0.002465873956680298, 0.001566283404827118, -0.35400545597076416, -0.6508017778396606, -0.43077629804611206, -0.6340051889419556, -0.02812967263162136, 1.098335862159729, -0.3660375475883484, 0.516755998134613, -0.364753782749176, 0.1565297693014145, -0.22717435657978058, -0.3560670018196106, 0.5515310764312744, 0.6041451692581177, -1.2351932525634766, -0.24963097274303436, 0.2982006072998047, -0.3998405933380127, -0.0656772032380104, -0.1906828135251999, 0.5706397891044617, -1.7232294082641602, -1.019230604171753, -0.9578360319137573, -0.5816156268119812, 1.067613124847412, -0.5538185238838196, 0.7016558647155762, -0.026102788746356964, -1.8312348127365112, 0.6930679082870483, 0.19297334551811218, -1.87245774269104, -0.23251643776893616, -1.578683614730835, 0.6519376039505005, -1.1909756660461426, -0.3787844181060791, -0.03165781497955322, 1.6267989873886108, -2.2710423469543457, -1.2272326946258545, -1.0015987157821655, -0.3702026903629303, 1.2925219535827637, 0.6409088373184204, -1.3247581720352173, 0.9307369589805603, 0.3915548622608185, -0.5670374035835266, -0.34319087862968445, 0.7911659479141235, -0.9892697334289551, 0.06730320304632187, 0.09758178889751434, 0.49718594551086426, -0.2611885964870453, 0.7907532453536987, -0.29422175884246826, 0.954952597618103, -0.05966119095683098, 0.7798082828521729, -0.2833411693572998, -0.6022292971611023, 0.5049647688865662, 1.193284034729004, -1.0296491384506226, -0.6529865264892578, -0.762786865234375, -0.71329665184021, -1.514709711074829, 0.1911599487066269, 0.46169036626815796, -0.9196491837501526, 0.15179996192455292, -0.7203023433685303, 0.8031977415084839, -0.7593886852264404, -0.14559906721115112, 0.058722712099552155, -0.0920485258102417, 0.10495930165052414, -0.2430325150489807, 0.20998790860176086, -1.4322195053100586, -0.10459505766630173, 0.3254375457763672, 0.19190937280654907, -0.22851379215717316, 0.6497186422348022, 1.179704189300537, -0.18114179372787476, -0.7134701013565063, 1.2021763324737549, 0.9781484603881836, 0.10817025601863861, -0.6100382208824158, 0.28672656416893005, -0.0026000365614891052, 0.7567758560180664, -0.7063002586364746, -0.11892584711313248, -0.7170623540878296, 0.4407230019569397, 0.41073039174079895, 0.03622063621878624, -0.18977269530296326, -0.35768041014671326, -0.571304202079773, 0.9207248687744141, 0.45483070611953735, -0.4944891631603241, -0.24812251329421997, 1.1989468336105347, 0.4446774125099182, -0.20802776515483856, -0.32057082653045654, 0.33558040857315063, 0.33685576915740967, 0.06848248839378357, 0.26493531465530396, 0.5862247347831726, -0.8180976510047913, 0.6521322727203369, -0.04466647654771805, 0.36725735664367676, -0.022317707538604736, -0.6721487045288086, -1.324756383895874, -0.3633052110671997, -0.349892795085907, -0.6944955587387085, 0.662889838218689, -1.4344991445541382, -0.6161419749259949, 0.1915120929479599, 0.3544226288795471, -0.08403241634368896, 0.07946383208036423, -0.23646539449691772, -0.3166840672492981, -0.03435099869966507, 1.091662883758545, -0.5979149341583252, 0.922730565071106, 0.4792167842388153, -0.5341132879257202, -0.5390572547912598, -0.3895307183265686, 0.2701474130153656, 0.34879451990127563, -0.3786279559135437, -0.5293091535568237, 0.32475435733795166, -0.4823301434516907, -0.7453258037567139, 0.3165399432182312, 0.09145832806825638, 0.11743272095918655, 0.1877763420343399, -0.7016794681549072, 1.0900694131851196, 1.5747853517532349, 0.27847936749458313, -0.7673514485359192, -0.9211968183517456, -0.8903771638870239, 0.19556117057800293, -0.3140108585357666, 0.6147931814193726, -0.4735533595085144, 1.2631809711456299, 0.507520854473114, -0.2480871081352234, -0.7993546724319458, -0.3019847273826599, 0.32219043374061584, 0.3176671862602234, 0.6123141646385193, -0.17151571810245514, 0.4692060649394989, -0.49901294708251953, -1.2800289392471313, 0.007545972242951393, 0.3223324418067932, 0.09356074035167694, 0.5194991230964661, -0.681820273399353, -0.710350513458252, -0.3176020383834839, 0.5368899703025818, 1.003478765487671, 0.4959506690502167, 0.19128219783306122, -0.37163037061691284, -1.076294183731079, -0.03150862455368042, 0.02590293437242508, 0.1919039487838745, -0.06960636377334595, 1.8786954879760742, 1.5211155414581299, 0.8216391801834106, 0.06628676503896713, -0.10361133515834808, 0.6849864721298218, -0.7286837697029114, -0.3217996060848236, -0.9412881731987, -0.3654676079750061, 0.35077667236328125], [0.03597282990813255, 1.5644361972808838, -2.0824456214904785, -0.03580111637711525, 0.20133887231349945, -0.21522587537765503, 2.089434862136841, -0.7032407522201538, 0.5316605567932129, -1.1843500137329102, -0.29676008224487305, -0.17795027792453766, 0.2684856653213501, 0.7945030331611633, 0.21366137266159058, 1.744667649269104, 0.8099814057350159, -0.43747347593307495, 0.23402221500873566, 0.4795045256614685, -0.5183221101760864, 0.09353013336658478, 0.36673274636268616, -0.16308799386024475, -0.1449020653963089, 1.0807263851165771, -1.0496599674224854, -0.2955073416233063, -0.8706651329994202, -0.8583686947822571, 0.5879886150360107, -0.4381639063358307, -0.2931012511253357, -0.2974391281604767, -1.649061918258667, -0.4961056411266327, 1.1778959035873413, 1.044690489768982, 0.18413281440734863, 0.6307650804519653, 1.8801848888397217, -0.5053853988647461, 0.503487229347229, -1.853340983390808, 0.07517287135124207, -0.07614007592201233, 1.189509630203247, -0.9539983868598938, -0.3248988091945648, -0.08027001470327377, 0.8176323175430298, -0.2918647229671478, 0.7034425735473633, 0.7583647966384888, 1.3866554498672485, -0.7135798931121826, 1.1345716714859009, -0.17323331534862518, 0.6380676031112671, -0.9045591354370117, 1.883923053741455, 0.07465219497680664, -0.3921775221824646, 1.281251072883606, -0.22495923936367035, -1.0433460474014282, -0.3729100525379181, 0.2180260419845581, -0.6308855414390564, 0.18709836900234222, -0.09488595277070999, 0.14288724958896637, -0.4589729607105255, 1.0340344905853271, -1.4259779453277588, 0.43050631880760193, 1.0695728063583374, 0.5302525758743286, 0.652101457118988, 0.5727896690368652, -0.2688598930835724, -0.18354757130146027, 0.34201177954673767, -1.0790413618087769, 0.384029358625412, 0.7255169749259949, 0.5972636342048645, -1.1452580690383911, -0.27219104766845703, 1.5758510828018188, 0.5846494436264038, -0.5349611639976501, 0.4695851504802704, -0.2058248072862625, 0.1793651580810547, -0.1864718794822693, 0.8345175981521606, -0.22347111999988556, -0.766941249370575, -0.3590952157974243, -0.76882404088974, -0.37878555059432983, 0.1528298258781433, -0.16484597325325012, -0.0027850684709846973, 0.9285728335380554, 0.2519669830799103, -0.19484733045101166, 0.08544925600290298, 0.09454533457756042, -0.18134064972400665, 0.29443004727363586, -0.6863011717796326, -1.320900797843933, -0.6176305413246155, 0.9384986758232117, 1.3372544050216675, -0.004716992378234863, 1.002545952796936, 0.9215106964111328, -1.007228970527649, -0.22543534636497498, 0.009836461395025253, 0.7217788100242615, 0.5960741639137268, 0.48678654432296753, -1.1593719720840454, -0.9219552278518677, -0.013788387179374695, -0.19078652560710907, 0.8392856121063232, -0.10481622070074081, -0.28738296031951904, 1.5144085884094238, -1.6440997123718262, 1.3541877269744873, -0.2773972451686859, -0.19230785965919495, 0.09694628417491913, -0.2747212052345276, 0.6597422361373901, -0.06148982420563698, -0.8359341621398926, -0.4694620966911316, -0.4341123104095459, -0.39481261372566223, -0.034521762281656265, -0.4751073718070984, -0.9640884399414062, 0.38562875986099243, -0.7091708183288574, 0.6090498566627502, 0.2153610736131668, 0.36772066354751587, 0.9042027592658997, -0.6545352935791016, -0.18680799007415771, 0.4787535071372986, 0.7783039808273315, 0.21992957592010498, 1.5463008880615234, 0.030858103185892105, -1.1065138578414917, 0.7285277247428894, 0.861504077911377, -0.11777996271848679, 0.4558829367160797, 0.9221218824386597, 0.14838047325611115, 0.42004746198654175, -0.5372975468635559, -1.0374269485473633, -0.7643002271652222, 0.10051801800727844, 0.1589181125164032, 0.0057635121047496796, 1.3096823692321777, -0.7434956431388855, -1.3406225442886353, -1.040404200553894, 0.6529053449630737, -0.3510589003562927, -0.09337866306304932, 0.1912999451160431, 0.3151428997516632, -0.931771457195282, 0.4826696813106537, -0.10486999899148941, -0.7240336537361145, -0.22169534862041473, -0.19586169719696045, -0.2266773134469986, -0.15056417882442474, -0.3341440260410309, -1.1630481481552124, -0.6570578813552856, 0.26654741168022156, -1.258212924003601, -0.19824086129665375, 0.071462482213974, -0.5084933042526245, -0.10809635370969772, -1.3602180480957031, 0.5445874333381653, -0.6404201984405518, 1.0207107067108154, -0.7640066742897034, 0.8503262400627136, -0.785700798034668, -0.5347713232040405, 0.9274687767028809, 0.12375866621732712, -0.741804301738739, 0.7111219167709351, -0.03202446177601814, -1.4387257099151611, -0.10930902510881424, 0.02482772432267666, -0.6429131031036377, 0.6976845860481262, 0.031772613525390625, 0.35988521575927734, 0.5538610219955444, 0.1512642204761505, 0.11761178821325302, -0.07520417124032974, -0.6455870866775513, -0.6963742971420288, -0.21618212759494781, 0.06413459032773972, -0.45358946919441223, -1.2939187288284302, 0.784644603729248, 0.6721291542053223, -1.0467299222946167, 0.26041141152381897, -0.1356612741947174, 0.9973035454750061, 0.0656658411026001, 0.9365142583847046, 1.2000434398651123, 0.8046106100082397, -0.31348106265068054, -0.5682368278503418, -1.044626235961914, 0.7656755447387695, 0.8257191777229309, -0.16921141743659973, -0.13337211310863495, 0.6418788433074951, 1.5459157228469849, -0.1659352332353592, 0.6350354552268982, 0.07758048176765442, 0.0476442351937294, -1.2155218124389648, -1.120450496673584, 0.18442374467849731, -0.26320043206214905, 1.3681427240371704, 0.5776615142822266, -0.9779420495033264, 0.4397066533565521, 0.19098712503910065, -0.24681304395198822, -0.01885678991675377, -0.7999303340911865, 0.21183952689170837, 0.07981083542108536, -0.3882617652416229, 0.11454268544912338, 0.01848486065864563, -0.2557518184185028, 0.6076902151107788, -0.30715176463127136, -0.8541407585144043, -0.6180291175842285, 0.27775755524635315, -0.06457935273647308, 1.1458839178085327, 0.2011856734752655, -2.014038324356079, 0.06048790365457535, -0.3835294246673584, 0.9057693481445312, 0.025572100654244423, -0.47746509313583374, 0.29009515047073364, 0.5941057205200195, -0.5257839560508728, 0.29977017641067505, 0.09805899858474731, -0.3592507839202881, 0.5677393078804016, -0.04024358466267586, 0.0902840718626976, 1.5208063125610352, -0.4991898834705353, -1.0009020566940308, 0.44320547580718994, 1.0807522535324097, 1.9836527109146118, 0.7850472331047058, 1.6052089929580688, -0.27470266819000244, 0.28124353289604187, -0.5243617296218872, -0.19083240628242493, -1.2062827348709106, -0.6326372027397156, -0.6786976456642151, -0.7906637787818909, -0.06269046664237976, 0.12243509292602539, 0.396179735660553, 1.1242057085037231, -0.3016754388809204, 0.029209300875663757, 1.2349494695663452, 0.11292381584644318, 0.0743257999420166, 0.5384932160377502, 0.08762622624635696, -0.826423704624176, -0.2312086522579193, 1.1848053932189941, -1.0023609399795532, -0.6294550895690918, 0.11273904889822006, 0.09365824609994888, 0.7669008374214172, 0.1413564682006836, 0.12597918510437012, -2.017881155014038, -0.7934243083000183, 0.19571447372436523, 1.6704355478286743, -0.2796561121940613, -0.09427908807992935, -0.33441853523254395, 0.7436700463294983, 0.6275312900543213, -0.20894204080104828, -1.4100862741470337, 0.9049285054206848, -0.22909387946128845, -1.0209511518478394, 0.12160646170377731, 0.5030229091644287, 0.8126904368400574, -0.5054435729980469, -0.6762477159500122, -0.531435489654541, -0.6390476226806641, 0.1386222094297409, 0.5875226259231567, -0.20406575500965118, 0.9004214406013489, 0.09008544683456421, -0.06078866124153137, 0.5428285002708435, 0.0884125754237175, -0.45020854473114014, -1.2251574993133545, 0.5115000009536743, 0.00040138140320777893, 1.2486037015914917, 0.5751742124557495, 0.2474854588508606, 0.24810104072093964, 0.24279743432998657, 0.3748719394207001, -0.009109941311180592, 1.240208387374878, 0.1701703667640686, 0.9098321795463562, -0.3880736529827118, -0.012846441008150578, -0.001602410338819027, -0.30230000615119934, -0.48345446586608887, 0.8524736166000366, -1.4529372453689575, -0.628515362739563, 1.149442434310913, 0.5057438611984253, -0.14902600646018982, -0.2732001841068268, 0.4711735248565674, 1.005873203277588, 0.21500656008720398, -0.4281306266784668, -0.6563535928726196, -0.8927717804908752, 0.13677039742469788, -1.1787121295928955, 0.23789335787296295, 1.001785397529602, 0.21505850553512573, 0.818473219871521, -0.32958388328552246, 0.14507396519184113, -1.0632269382476807, 0.4794621467590332, 0.8941329121589661, -0.5013859272003174, 0.3664328455924988, 0.49239662289619446, -0.08292687684297562, -0.004970367066562176, 0.6259562969207764, 1.0101242065429688, -0.9236982464790344, 0.25330790877342224, 0.708269476890564, -0.7265477776527405, -0.3986387252807617, -0.2604030966758728, -0.8820714354515076, 0.14503556489944458, -0.3437040448188782, 0.014375997707247734, -0.17618194222450256, -0.31396758556365967, 1.2565350532531738, 0.3180087208747864, 0.21474991738796234, 0.05156407132744789, -0.5548840165138245, -0.38814085721969604, 0.36630889773368835, 0.07047316431999207, -0.29838618636131287, -1.0488381385803223, -1.0461294651031494, 0.49732810258865356, -0.3433097004890442, 0.8216984868049622, -0.1531381607055664, 0.2701999843120575, -0.10244593024253845, 0.12643565237522125, 0.2837885916233063, 0.8524888753890991, 0.2963797450065613, 1.1968400478363037, 0.06966284662485123, -0.6984184384346008, -0.4426904022693634, 0.3290267884731293, -0.9097811579704285, 0.8838645219802856, 0.14777790009975433, 0.3471551835536957, 1.2975544929504395, -1.3045406341552734, 0.04473976045846939, 0.5470048189163208, 0.5526426434516907, 0.7986351847648621, 1.0849977731704712, -0.5943892598152161, -0.2608155608177185, 0.48883816599845886, -0.21209773421287537, 0.4331410825252533, 0.03441349044442177, 0.06462486833333969, -0.5580511689186096, 0.22896495461463928, -0.9098548889160156, 0.33063364028930664, -0.28987735509872437, -0.7836727499961853, -0.24443571269512177, -1.0188345909118652, -0.31855687499046326, 0.5606188178062439, 0.20363183319568634, 1.901313304901123, -0.15629981458187103, -0.8025803565979004, 0.09516313672065735, -0.6820786595344543, 0.8614878058433533, -0.7820156216621399, -0.5006053447723389, -0.9072892665863037, -0.24248389899730682, -0.12488451600074768, 0.3607187867164612, -0.8633164763450623, -0.6870905160903931, -0.187530979514122, -0.8505861759185791, 0.3326111137866974, 0.7679113149642944, 1.1146504878997803, 0.1188831478357315, -0.7892550826072693, 0.4782158434391022, -0.09680107235908508, -0.3687998354434967, -0.4902189373970032, 0.31540733575820923, -0.09653395414352417, 0.027371609583497047, -1.3581441640853882, -0.6698557734489441, 0.45032986998558044, 0.4439442753791809, -0.11688753217458725, 1.0588780641555786, 1.1066886186599731, 1.128345012664795, -0.4726390540599823, -0.2935134768486023, 0.2997700870037079, -0.37913650274276733, -0.010498509742319584, 0.22246986627578735, -0.23568663001060486, -0.30369576811790466, -0.65101557970047, -1.2139613628387451, 0.3501245379447937, -0.13607755303382874, -0.6508437991142273, 0.8178021907806396, 0.630646824836731, 0.6258779764175415, 0.41229134798049927, -0.7453706860542297, 0.43504101037979126, 0.14497312903404236, -0.9513497948646545, -0.7263599634170532, 0.5735490918159485, 0.35578054189682007, 0.4562699496746063, -0.014323852956295013, 0.2571091055870056, 0.045473791658878326, 0.05861912667751312, -0.6758546233177185, 0.5087673664093018, 0.24744541943073273, 0.7965136766433716, -0.3161652386188507, -0.5305554270744324, 0.19865307211875916, -0.35582828521728516, 0.00671660341322422, 0.28947094082832336, 1.105675220489502, -0.3188314735889435, 0.18195201456546783, -0.6074918508529663, -0.5405337810516357, -0.5098872780799866, -0.7464559078216553, -0.2700824439525604, 0.655707836151123, 0.37800487875938416, 0.5407971143722534, -0.7847204208374023, -0.17093800008296967, 0.44201794266700745, 0.0025813353713601828, 0.4422759413719177, 0.05913843214511871, -0.8979513049125671, -0.1816282868385315, 0.5970066785812378, -0.5230851173400879, 0.07116769254207611, -0.12845194339752197, -0.2525347173213959, -1.4354795217514038, -1.0901433229446411, -0.9473419785499573, 0.17579278349876404, 0.7457313537597656, -1.0737930536270142, 0.9549959897994995, 0.6352105736732483, -1.3601919412612915, 0.511660635471344, 0.19984975457191467, -1.4506099224090576, -0.32044968008995056, -1.5438412427902222, 0.7922843098640442, 0.24119062721729279, 0.5423014760017395, -0.2854093015193939, 0.8710741400718689, -1.2450240850448608, -0.8822925090789795, -0.7065232992172241, -0.19602513313293457, 0.581928551197052, 0.6760416626930237, -0.9035550355911255, 1.03835928440094, 0.9554638266563416, -0.7540158033370972, -0.47256550192832947, -0.3788639008998871, -0.5227175951004028, 0.5193644762039185, -0.14307783544063568, 0.9662619829177856, 0.5620966553688049, 0.5024125576019287, 0.5031545162200928, 1.0076960325241089, 0.34273993968963623, 1.12770676612854, -0.8516929745674133, -0.4136107861995697, 0.34275534749031067, 1.2398920059204102, -0.7722883820533752, -0.8893226385116577, -0.183841735124588, -0.6657826900482178, -1.2981244325637817, 0.43800804018974304, 1.2354848384857178, -0.2526127099990845, 0.20984585583209991, -1.0597411394119263, 0.4912897050380707, -1.3317725658416748, 0.308033287525177, -0.5043310523033142, -0.4062120020389557, -0.40606579184532166, 0.21640704572200775, -0.3220703601837158, -0.8856378197669983, 0.033751390874385834, 0.44071558117866516, -0.09674011915922165, -0.7415403723716736, 0.8746040463447571, 0.4023773670196533, 0.7615509629249573, -0.5078614354133606, 1.620158076286316, 0.9373247027397156, -0.2577134668827057, 0.2560836970806122, -0.09437523037195206, 0.026009781286120415, 0.2482946217060089, -0.7217459082603455, -0.5342651009559631, -1.46317458152771, 1.1500238180160522, 0.21211855113506317, 0.13023853302001953, -0.6567361950874329, 0.18341709673404694, -0.24571551382541656, 0.3677620589733124, 0.6925351619720459, -1.2312015295028687, -0.46492666006088257, 0.5482768416404724, 0.23405785858631134, -0.2553585469722748, 0.06007261574268341, 0.3181609511375427, 0.2762075662612915, -0.49062466621398926, 0.12314864248037338, 0.505989670753479, -1.019543170928955, 0.4393720328807831, 0.07097465544939041, -0.2121477872133255, -0.10136638581752777, -0.5092065334320068, -1.2730967998504639, 0.30066704750061035, -0.5075381398200989, -1.0624765157699585, 0.6795816421508789, -1.3687069416046143, 0.02639917843043804, 0.2912401854991913, -0.2622995674610138, -0.24978917837142944, -0.05831038951873779, 0.7824112176895142, 0.11720867455005646, 0.08144082874059677, 1.1405680179595947, -0.4040023386478424, 1.3822177648544312, 0.41031941771507263, 0.17142631113529205, -1.178123950958252, -0.4648509919643402, 0.14896972477436066, -0.4204350709915161, 0.04580559581518173, -0.061751872301101685, 0.42669060826301575, -0.4390307068824768, -0.07376378029584885, -0.1482015997171402, 0.5834776759147644, 0.09960795193910599, 0.006418648175895214, -0.4986060559749603, 0.6338694095611572, 1.1360608339309692, 0.5766484141349792, 0.002327151596546173, -0.8205289840698242, -0.5595187544822693, 0.48649725317955017, -0.5794574618339539, 0.6698092818260193, -0.03783934935927391, 1.0770983695983887, -0.15715496242046356, -0.2785811424255371, -0.7517103552818298, -0.7667440176010132, -0.026251930743455887, 0.17806780338287354, 0.2785325348377228, -0.35089072585105896, -0.22984519600868225, -0.05394182354211807, -0.6428567171096802, 0.06858891993761063, -0.13412977755069733, -0.2016046643257141, -0.18689186871051788, -1.4008280038833618, -1.0295593738555908, -0.16020093858242035, -0.45215779542922974, 1.0773627758026123, 0.32318171858787537, 0.12513409554958344, -0.4554589092731476, -1.4445507526397705, -0.23196718096733093, 0.35417863726615906, -1.1248522996902466, 0.30388081073760986, 1.2342803478240967, 1.778123140335083, 0.8306286931037903, 0.1067931205034256, -0.5312548875808716, 0.5459620356559753, -0.23253460228443146, 0.1791975051164627, -0.5452834963798523, -0.1751798540353775, -0.16183939576148987], [-0.28775379061698914, 1.6365820169448853, -2.1061136722564697, 0.7371761798858643, 0.9194611310958862, 0.8419415950775146, 1.0671097040176392, -0.12865743041038513, -0.11451692879199982, -0.086463563144207, -0.024720316752791405, -0.037626542150974274, 0.9201013445854187, 0.6065061688423157, 1.11990487575531, 0.38320595026016235, 0.6795989274978638, -0.3431828022003174, 1.006448745727539, 1.1356624364852905, -0.4649266004562378, -1.1410754919052124, -0.3882480263710022, -0.7822344899177551, -0.22849346697330475, 0.6622926592826843, -1.7200731039047241, -0.5203911662101746, -1.637873888015747, -0.8892760276794434, 0.69507896900177, -0.01758766546845436, 0.21451421082019806, -0.438551664352417, -1.0478330850601196, 0.05781317502260208, 1.5462855100631714, 1.7923051118850708, 1.4557989835739136, -0.03973126783967018, 1.586472988128662, -0.39215147495269775, 0.2819829285144806, -0.8966035842895508, -0.3311801552772522, -0.6477994918823242, 1.0531784296035767, -0.042704831808805466, 0.4467218518257141, -0.9331889748573303, 0.13733071088790894, -1.2943278551101685, 0.6093951463699341, 0.32033148407936096, 1.689271092414856, -0.32638469338417053, 0.36723411083221436, 0.42820367217063904, -0.3299791216850281, -1.2903071641921997, 0.8453119397163391, -0.41246816515922546, -0.17684952914714813, 1.1632272005081177, 0.17471164464950562, -0.3723805248737335, -0.13872338831424713, 0.5208297371864319, -0.2480056881904602, -0.16942882537841797, 1.0556221008300781, -0.176923468708992, -0.8757433295249939, 0.6903428435325623, -1.3763279914855957, -0.11920007318258286, 0.12157398462295532, 0.5209108591079712, 0.4159240424633026, 0.11255602538585663, 0.33391982316970825, -0.9074199795722961, 0.22381970286369324, 0.005948746111243963, -0.17143699526786804, 0.21910807490348816, 0.7132577896118164, 0.11594682931900024, -0.4142921268939972, 1.4754472970962524, 0.7849063277244568, 0.1655370593070984, 0.6046944260597229, 0.10122280567884445, -1.2489405870437622, -0.5300172567367554, 0.4541449546813965, -0.01968921720981598, -1.1560999155044556, 0.14802061021327972, 0.01504054106771946, 0.09772699326276779, 0.48201972246170044, 0.847717821598053, 0.005657228175550699, 0.8065346479415894, 0.9068278670310974, 0.4548003673553467, -0.2822626233100891, -0.5576552748680115, 0.014772315509617329, 0.45011889934539795, -0.9976243376731873, -1.046709418296814, -1.4791427850723267, 1.2014834880828857, 1.3462145328521729, 0.23933114111423492, 0.4374561309814453, 0.8944715857505798, -0.15311464667320251, -0.5567761063575745, 0.17647133767604828, 0.7641564607620239, 0.7446303367614746, 0.38802778720855713, -0.8990898132324219, -0.9652231335639954, 0.32308119535446167, 0.5720903873443604, 0.3921965956687927, -0.6334148645401001, -0.2429257035255432, 0.8286266326904297, -0.962444007396698, 1.745849370956421, -0.4317333996295929, -0.896203339099884, -0.3254488706588745, -0.6598726511001587, 0.46273350715637207, 0.11364723742008209, -0.17928466200828552, -0.3070181608200073, 0.01793801039457321, -0.7160071134567261, 0.6099675893783569, 0.18565630912780762, -1.032045602798462, 0.5703482031822205, -0.653180718421936, 0.42083966732025146, 0.3443361520767212, 0.6179835796356201, -0.23642325401306152, -0.3070738613605499, 0.8044977784156799, 0.3286440074443817, 0.35166066884994507, 0.1825183928012848, 0.9655631184577942, -0.1575777381658554, -0.5956442356109619, 0.4411914646625519, 0.18644459545612335, -0.7210705280303955, 0.16127893328666687, 1.113607406616211, 0.5717892050743103, 1.4583112001419067, -0.10755650699138641, -0.33921849727630615, -0.39050984382629395, 0.6999205946922302, 0.8471238017082214, -0.6839771866798401, 1.1384010314941406, -0.07433577626943588, -2.331056594848633, -1.1500732898712158, 0.26393750309944153, -0.2962988615036011, 0.40441179275512695, -0.3244074881076813, 0.42424866557121277, -0.9705125689506531, 0.3355753719806671, -0.1525021344423294, -0.32077139616012573, -0.8586128950119019, -0.07832533121109009, -0.3723646402359009, -0.4190608561038971, -0.1951415240764618, -0.37854909896850586, -0.30033859610557556, 0.520839512348175, -2.069235324859619, -0.3834022283554077, 0.410176545381546, 0.0047107720747590065, -0.2031143456697464, -1.1152722835540771, 0.5403915047645569, -0.12453431636095047, 1.2034401893615723, -1.3196855783462524, 1.23009192943573, -0.7224399447441101, 0.5704479217529297, 1.0303094387054443, 0.1482231467962265, -0.8886518478393555, 0.5763124823570251, 0.1076352670788765, -0.9835926294326782, 0.15992462635040283, 0.10164306312799454, 0.005796365439891815, 0.36032596230506897, -0.3381231427192688, -0.3422246277332306, 0.2603762149810791, 0.20972608029842377, 0.27118945121765137, -0.4051935076713562, -0.6629860997200012, -0.4979388117790222, -1.1912226676940918, 0.18176046013832092, -0.8553500771522522, -1.1619017124176025, 0.7450481653213501, 0.4352187216281891, -1.1768112182617188, 0.5740596055984497, 0.3377394676208496, 0.5246608257293701, 0.18758128583431244, 1.6099215745925903, -0.2821958661079407, 0.4516471028327942, -0.27871543169021606, 0.354194700717926, -0.4482853412628174, 0.3412328362464905, 0.8639428019523621, -0.21634092926979065, -0.11514730751514435, 1.2343618869781494, 1.0131404399871826, 0.37018176913261414, 0.6493145227432251, -0.10073404014110565, -0.050213564187288284, -0.9182757139205933, -0.6065819263458252, 0.7377575635910034, -0.01613980531692505, 2.0284035205841064, 0.9039748311042786, -0.7122235894203186, 0.1436597853899002, -0.10231460630893707, 0.042689207941293716, -0.0618545301258564, -0.8075048327445984, -1.1417465209960938, -0.22313977777957916, 0.31616446375846863, -0.6104639768600464, 1.1087762117385864, -0.46616318821907043, 0.25680777430534363, -0.3033551275730133, -0.6492854356765747, -1.1976522207260132, 0.9336404800415039, 0.060092225670814514, 0.7487271428108215, -0.4496314227581024, -1.1820704936981201, -0.35859620571136475, -0.29301267862319946, 0.7726864218711853, 0.3231784403324127, 0.7335788011550903, -0.15344780683517456, 0.5243748426437378, -0.21760421991348267, 0.22336460649967194, -0.5228245258331299, 0.42544010281562805, -0.06732968986034393, 0.14302317798137665, 0.43929028511047363, 1.2828731536865234, -0.8929614424705505, -0.48302364349365234, -0.4191450774669647, 0.344432532787323, 1.9484686851501465, 0.12836593389511108, 0.4100046157836914, -0.16688595712184906, 0.35507673025131226, -0.03573915362358093, -0.09345307946205139, -1.2569695711135864, -0.8993554711341858, -0.7906755208969116, -0.12975886464118958, -0.6341806650161743, 0.10275829583406448, 0.027085628360509872, 0.13538195192813873, -0.6199333667755127, 0.7068692445755005, 1.414279580116272, 0.20364247262477875, -0.8105369210243225, -0.49672067165374756, -0.2060426026582718, -0.5651489496231079, 1.0278568267822266, 1.0272393226623535, -1.0923614501953125, -0.46435946226119995, 0.22084346413612366, -0.5952425599098206, 0.6655948162078857, 0.1428019255399704, 0.11052722483873367, -0.8388282656669617, -0.8876752853393555, -0.32765263319015503, 1.096105933189392, -0.11212573945522308, -0.5244642496109009, -0.2884644567966461, 0.37220144271850586, 0.5528163313865662, -0.44347694516181946, -0.547463059425354, 1.2326539754867554, -0.22885142266750336, -0.830841064453125, -0.024798035621643066, 0.8715574741363525, 0.6214520931243896, -0.46963104605674744, -0.635514497756958, -0.37847900390625, -0.3268243670463562, -1.0618374347686768, 0.3482787013053894, -0.07210315763950348, 1.0412232875823975, -0.0263057854026556, 0.1758493334054947, 0.7887506484985352, 0.05949108675122261, 0.3318978548049927, -1.421579360961914, 0.18502779304981232, 0.8889727592468262, 0.8805332183837891, -0.13271287083625793, 0.10244195908308029, 0.4056605398654938, 0.47385281324386597, -0.05271149054169655, 0.14251205325126648, 0.18307748436927795, 0.413893461227417, 0.4306374788284302, -0.4733974039554596, 0.23427079617977142, -0.09856561571359634, -0.625995397567749, 0.6708315014839172, 0.5770532488822937, -0.8122356534004211, 0.09468715637922287, 0.30356502532958984, -0.02988762967288494, -0.7106636762619019, -0.6553558111190796, -0.31829512119293213, 1.210325837135315, -0.6164993047714233, 0.2613564729690552, -0.16634929180145264, 0.12033119797706604, 0.1808518022298813, -1.1400187015533447, -0.16241641342639923, 0.09921189397573471, 0.7709927558898926, 0.9987260699272156, -0.7292863726615906, 0.2829790413379669, -0.7263444066047668, 0.42099735140800476, 0.12361130118370056, -0.2873140275478363, 0.08559375256299973, 0.6015241742134094, -0.30731359124183655, 0.086632139980793, 0.5196290016174316, 1.46147620677948, -0.5903193354606628, -0.006669769063591957, 0.16570018231868744, 0.2081492394208908, -0.9060525894165039, -0.13230817019939423, -0.3835490942001343, -0.12099528312683105, -0.4018656015396118, -0.25314319133758545, 0.3633551597595215, -0.37389180064201355, 1.7788163423538208, 1.3118054866790771, 0.3077641427516937, 0.3511882722377777, 0.4801163971424103, -1.1818164587020874, -0.3030959367752075, 0.33144569396972656, 0.22415918111801147, -0.594392716884613, -0.585536777973175, 0.1570807248353958, -0.13399076461791992, 0.7877799868583679, 0.5324079394340515, 0.7613143920898438, 0.5983237028121948, 0.2821881175041199, 0.12177804857492447, 1.128106713294983, 1.422425389289856, 0.24470195174217224, 0.6367777585983276, 0.11984241753816605, -1.0618911981582642, 0.04150725528597832, -0.3400457203388214, -0.18791450560092926, 1.1350513696670532, 0.5054102540016174, 1.2921233177185059, -2.138878583908081, -0.21374447643756866, 0.9190651178359985, 0.8320674300193787, 0.12987004220485687, 0.9830609560012817, -0.6298448443412781, -0.1798957884311676, 0.7557693123817444, 0.16340042650699615, 0.1987893432378769, -0.31098058819770813, -0.07249755412340164, -0.6657128930091858, 0.22293350100517273, -0.516989529132843, 0.8582946062088013, -0.9023743271827698, 0.0819660872220993, 0.08396807312965393, -1.621987223625183, -0.4122365415096283, -0.06272969394922256, 0.40963849425315857, 1.0701262950897217, -0.8395653367042542, -0.6814038753509521, -0.03317109867930412, -0.612181544303894, 0.25403547286987305, -0.21847018599510193, -0.05043353885412216, -0.5336998701095581, 0.26006218791007996, -0.5837659239768982, 0.7887845039367676, -0.5320619940757751, -0.5889376997947693, -1.2400034666061401, -1.1787748336791992, 0.3219371736049652, 0.9590534567832947, 0.984691858291626, 0.8289424180984497, 0.07350995391607285, -0.4389995336532593, -0.0388774499297142, -0.871235191822052, -0.43552446365356445, 0.2769036889076233, 0.32657045125961304, 0.9757012724876404, -0.9037570357322693, -0.6302939057350159, -0.011155284009873867, 0.6367171406745911, -0.18780624866485596, 0.7393816709518433, 1.4095953702926636, 1.623499870300293, -0.6059987545013428, -0.2149832397699356, 0.5317087173461914, 0.2987510561943054, 0.11064261943101883, 0.7525129318237305, 0.10522276163101196, -1.1317869424819946, -0.9389976263046265, -1.0957274436950684, 0.7733033895492554, 0.14954040944576263, -0.936642050743103, 0.7861090898513794, -0.3101820945739746, 0.6172553300857544, 0.5128659009933472, -0.37539657950401306, 0.5499218702316284, -0.2599748969078064, 0.02972843125462532, -0.824999213218689, 0.9794179201126099, -0.11231569945812225, 0.020592430606484413, 0.082712322473526, 0.6073463559150696, 0.13570141792297363, -0.1961592137813568, -0.13174548745155334, 1.1364786624908447, -0.6964209675788879, 0.42994585633277893, 0.7441651821136475, -1.0098443031311035, -0.06430473178625107, -0.26805180311203003, -0.5079792141914368, 0.054737359285354614, 0.8535948991775513, 0.0772470086812973, -0.48607638478279114, 0.2343485802412033, -0.6315668225288391, -1.1378000974655151, -0.21857866644859314, -0.6947318315505981, -0.18324419856071472, 0.5227506160736084, 0.06289117783308029, 0.6698912978172302, -0.1699509620666504, 0.04452985152602196, -0.8039484024047852, -0.3150775134563446, -0.31147778034210205, -1.0976471900939941, -0.05519946292042732, 0.2528591752052307, -1.3296072483062744, -0.5492103099822998, -0.4828537404537201, -0.11999896168708801, -0.29366394877433777, -1.7986441850662231, -1.1459625959396362, -0.10948217660188675, 0.6920411586761475, -1.1129506826400757, 0.8525949120521545, -0.08464115113019943, -1.3784867525100708, 0.08986793458461761, -0.26070651412010193, -1.196905493736267, 0.11931219696998596, -0.4813616871833801, 0.7866464853286743, -0.6897967457771301, 0.269707590341568, -1.0907299518585205, 0.72662353515625, -2.2369203567504883, -1.909042239189148, -1.1653032302856445, 0.4960334300994873, 1.2149524688720703, 0.5425902605056763, -0.6133431196212769, 1.12376070022583, 0.7535567879676819, 0.06619279831647873, -0.4386567175388336, 0.4686932861804962, -0.3347887098789215, -0.04806727543473244, 0.8017273545265198, 0.5189047455787659, 0.7372758984565735, 0.7537882328033447, -0.10577528923749924, 1.3326267004013062, 0.24570617079734802, 0.6692363619804382, -0.7529191374778748, -0.21733959019184113, 0.25231459736824036, 0.8619715571403503, -0.61154705286026, -1.5114651918411255, -0.1305103600025177, -0.11881799250841141, -0.4237377941608429, -0.39450502395629883, 0.23079174757003784, -0.6486577987670898, -0.14864321053028107, -0.8058608174324036, 0.07257883995771408, -0.5765514969825745, 0.38471168279647827, -0.22959508001804352, -0.7293609380722046, -0.5637949109077454, 0.29975786805152893, 0.045081451535224915, -1.3485020399093628, 0.14916598796844482, -0.37126898765563965, 0.02179133892059326, -0.028487784788012505, -0.033755138516426086, 0.9473444223403931, 0.46504485607147217, -0.698722779750824, 1.3735487461090088, 0.6145844459533691, -0.604766845703125, 0.2789565622806549, 0.11377792060375214, -0.4853416085243225, 0.4632648825645447, -0.6312204599380493, 0.0734073594212532, -1.2908399105072021, 0.7069618701934814, 0.4219745695590973, -0.09916868060827255, 0.8323653936386108, -0.05182560160756111, -0.888620913028717, 1.0365842580795288, 0.5489115118980408, -0.8203865885734558, -0.31745848059654236, 1.600164771080017, -0.1178940162062645, -0.8638229370117188, -0.22044160962104797, -0.3061547875404358, 0.11958315968513489, -0.946910560131073, 1.099827527999878, 0.505864679813385, -0.7579770088195801, 0.6233853101730347, 0.3372243344783783, 0.09803654253482819, -0.040611766278743744, -0.3649115264415741, -1.5001647472381592, 0.06981221586465836, -0.7696580290794373, -0.954485297203064, -0.10131275653839111, -1.89443039894104, -0.9603428840637207, 0.8078324198722839, -0.06930292397737503, -0.6666055917739868, -0.14827416837215424, -0.10840008407831192, 0.6583273410797119, -0.3261374533176422, 0.6134731769561768, -0.35715875029563904, 1.1646547317504883, -0.499545693397522, 0.4700932204723358, -0.8133773803710938, -0.35163453221321106, 0.2254873663187027, 0.4187299311161041, -0.22422127425670624, -0.17941002547740936, 0.44487616419792175, -0.5905160903930664, -1.219107985496521, 0.10705038160085678, 0.7831684947013855, -0.23849965631961823, 0.04529417306184769, -0.8900520205497742, -0.1479269415140152, 0.31713712215423584, 1.339459776878357, -0.06634404510259628, -0.23138532042503357, -0.7576087713241577, 0.1812390834093094, -0.7715078592300415, 0.6819149851799011, -0.6830770373344421, 0.5974650979042053, 0.4234198033809662, -1.1607588529586792, -0.4871685206890106, -0.6554819941520691, 0.727375328540802, -0.36718618869781494, -0.21476656198501587, 0.8349728584289551, 0.17360959947109222, 0.14727860689163208, -1.0440986156463623, 0.027035217732191086, 0.30292800068855286, 0.2230033427476883, 0.047093119472265244, -1.2808741331100464, -0.2500225007534027, -0.5794899463653564, 0.5768272876739502, 0.938632071018219, 0.8965821862220764, 0.3940795660018921, 0.36976495385169983, -1.4596000909805298, 0.8012756109237671, 0.0397217683494091, 0.23458391427993774, 0.22353798151016235, 1.409896731376648, 1.8104791641235352, 0.8729486465454102, 0.07312421500682831, -0.7570836544036865, 0.728749692440033, -0.9738569259643555, -0.280661016702652, -0.13656778633594513, -0.9463114142417908, -0.7714447379112244], [-0.37081530690193176, 1.7691588401794434, -2.9353299140930176, -0.6081176400184631, 0.001981433480978012, 0.25810670852661133, 1.6382832527160645, 0.5919187664985657, 0.11418531835079193, -0.4647561013698578, -0.6640365123748779, 0.43519556522369385, 0.43038973212242126, 1.4916678667068481, 1.2496082782745361, 0.01226949691772461, 0.3697751462459564, -0.5722693800926208, 0.6826551556587219, 1.9142701625823975, -0.6345639228820801, -1.4390732049942017, -0.2439032793045044, 0.05548612400889397, -0.04029552638530731, 0.05392327159643173, -1.4989447593688965, -0.5688801407814026, -1.2387925386428833, -1.9082391262054443, 0.7503457069396973, -0.6899264454841614, -0.11714176833629608, 0.1937842220067978, -0.9246042966842651, -0.6233881711959839, 1.1924593448638916, 0.9721937775611877, 0.7495318055152893, -0.032811373472213745, 2.2740867137908936, -0.1583244800567627, 0.3451155126094818, -1.059995412826538, 0.16554462909698486, 0.09758143126964569, 0.9337689876556396, -0.9746219515800476, -0.502978503704071, -0.199894979596138, -0.010057075880467892, -1.161598801612854, 0.8680908679962158, 0.28059592843055725, 1.176857829093933, -0.28768131136894226, 0.8181624412536621, 0.6906242370605469, 0.43403053283691406, -0.6150317788124084, 0.47690993547439575, 0.5401620864868164, -0.419623464345932, 1.7452472448349, -0.24554060399532318, -0.7498436570167542, -0.473113089799881, 0.591343343257904, 0.09799621999263763, -0.23902194201946259, 0.3378444015979767, -0.25141581892967224, -0.16147594153881073, 0.14198525249958038, -1.1325018405914307, 0.167199969291687, -0.11004988104104996, -0.08143730461597443, 0.513103187084198, 0.45706063508987427, -0.3469935953617096, -0.1699221134185791, 0.7086388468742371, -0.247345969080925, 0.9545711874961853, 0.33998870849609375, 0.5131994485855103, 0.5801197290420532, -0.45794588327407837, 1.745200514793396, 0.5986310243606567, -0.4129120111465454, 0.2484852820634842, -0.11099722236394882, -0.7594183683395386, -0.8259685635566711, -0.3500683307647705, -0.5695300102233887, -0.45336830615997314, -0.5993584394454956, -0.5300028920173645, -0.30890944600105286, -0.22260791063308716, -0.3953348994255066, -0.883544385433197, 1.184219479560852, -0.06761724501848221, 0.038193922489881516, -0.6438242793083191, -0.6233416199684143, -0.40371742844581604, 0.4700855314731598, -1.2631241083145142, -0.5379543900489807, -0.9882264137268066, 1.4829753637313843, 1.1897975206375122, 0.15902526676654816, 0.05629076436161995, 0.5457465052604675, -0.22564782202243805, -0.9053683280944824, 0.2598061263561249, 0.8654447197914124, 0.3530058264732361, -0.05838755890727043, -0.7555152773857117, -1.0185470581054688, 0.4300502836704254, -0.1324416995048523, 0.11728379875421524, -0.2274775356054306, -0.1262710988521576, 0.7153869271278381, -0.6921207308769226, 1.3102198839187622, -0.34622836112976074, -1.3939350843429565, -0.5687101483345032, -0.1322157084941864, 0.5450040102005005, -0.9594866037368774, -0.8104197382926941, -0.45981350541114807, -0.24895036220550537, -0.9287713766098022, 0.9507396221160889, -0.36363258957862854, -0.9317713975906372, 0.3456166982650757, -0.4328966438770294, 0.1436806619167328, 0.7080725431442261, 0.8028989434242249, 0.18503394722938538, -0.6099935173988342, 0.02255503460764885, -0.23059676587581635, 0.2069750428199768, 0.17056721448898315, 1.0619463920593262, 0.051736291497945786, -0.3724040687084198, 0.7271413803100586, 0.725068986415863, -0.6238527894020081, 0.4077354669570923, 1.2427473068237305, -0.4529391825199127, 0.45229265093803406, 0.403473436832428, 0.05264701694250107, -0.6199114918708801, 0.7618309855461121, 0.48858311772346497, -1.3693885803222656, 0.9525048136711121, -1.0560489892959595, -1.1537736654281616, -1.3000799417495728, 0.4318903088569641, -0.9052721261978149, 0.11325307935476303, -0.5483019351959229, 0.6182363033294678, -0.41350963711738586, 0.9192529320716858, -0.8377445936203003, -0.3305874764919281, -0.3745618462562561, -0.14396442472934723, -0.1151285320520401, -0.4985138475894928, 0.10685015469789505, -0.16859525442123413, -0.0017148926854133606, 0.7170659303665161, -1.3251982927322388, -0.3506147563457489, 0.5819145441055298, 0.2706322968006134, -0.44074907898902893, -1.0303682088851929, 0.7573756575584412, -0.9360969066619873, 0.830637514591217, -0.6062952280044556, 0.8511916995048523, -1.1184773445129395, 0.11488541215658188, 1.098757266998291, -0.28503599762916565, -0.7107465863227844, 0.2687748074531555, 0.3174165189266205, -0.8342331051826477, -0.17369145154953003, 0.006423003971576691, -0.42720574140548706, 0.6140437722206116, -0.08255083113908768, 0.3681100606918335, 0.4111212193965912, 0.5278588533401489, 0.46162185072898865, -0.30849677324295044, -0.5212018489837646, -0.04584473744034767, -0.5213871002197266, 0.5560283660888672, -0.558419406414032, -1.578478455543518, 0.04360279440879822, 0.4682764410972595, -1.241310954093933, 0.0689673200249672, 0.5613552927970886, 0.33736029267311096, 0.230056494474411, 0.8661445379257202, 0.913662850856781, 1.106268048286438, -0.18239903450012207, -0.8005877733230591, -0.41803961992263794, 0.906190812587738, 0.8312483429908752, -0.2154916226863861, 0.0005999244749546051, 1.3158804178237915, 0.8481705784797668, 0.18663010001182556, 0.42085495591163635, -0.3089746832847595, 0.18880359828472137, -1.0145987272262573, -0.42963907122612, 0.9465025067329407, -0.43249690532684326, 2.2516682147979736, 1.2381314039230347, -1.4664239883422852, -0.3148774206638336, 0.319027841091156, -0.7667285799980164, -0.3374207615852356, -0.6532233357429504, -0.13612540066242218, -0.4254230558872223, 0.11627772450447083, 0.0310836024582386, 0.6625509262084961, -0.3842278718948364, 0.5506724119186401, -0.2893943786621094, -0.5655182003974915, -0.2563108503818512, 0.9001717567443848, -0.16096128523349762, 1.5348318815231323, 0.09231889247894287, -2.095343828201294, 0.0033695874735713005, 0.1893099993467331, 0.45442095398902893, 0.3629399240016937, 0.17001543939113617, -0.0807299017906189, 0.3332856297492981, -0.6378160119056702, 0.2824586033821106, -0.263348251581192, -0.29664137959480286, -0.20339082181453705, -0.2661018371582031, 0.5554718971252441, 0.8517674803733826, -0.16234412789344788, -0.4541010558605194, -0.327351838350296, 0.41252633929252625, 1.084180474281311, 0.8144843578338623, 1.0308642387390137, -0.12260103970766068, -0.32989510893821716, 0.2847435176372528, -1.1448034048080444, -0.4347638487815857, -0.9785125255584717, -1.3306509256362915, -1.0469977855682373, 0.15753833949565887, 0.020037904381752014, 0.18613436818122864, 0.7496630549430847, -0.1882636845111847, 1.0392881631851196, 0.8054189682006836, -0.0697418600320816, -0.3292310833930969, -0.3302677869796753, 0.4017353653907776, 0.19869787991046906, 0.3806149363517761, 1.0982029438018799, -1.0202754735946655, -0.7721350193023682, -0.7568647861480713, -0.28972893953323364, 0.4022205173969269, 0.48868319392204285, -0.08591678738594055, -1.6056143045425415, -0.2551361918449402, 0.5297535061836243, 1.0668166875839233, -0.14022064208984375, 0.007834481075406075, -0.3320310711860657, 0.6777034401893616, 0.43596959114074707, 0.34361857175827026, -0.7270129323005676, 1.4952112436294556, -0.4403669834136963, -0.3263344466686249, 0.010905064642429352, 0.05869925394654274, 1.373576045036316, -0.501533567905426, -0.3169991374015808, -0.41808730363845825, -0.7521241307258606, -0.5401511192321777, 0.7135800123214722, -0.013361876830458641, 1.131570816040039, 0.2399616688489914, 0.1594352275133133, 1.3557718992233276, 0.3782382309436798, -0.19715960323810577, -2.0828301906585693, 0.8106377720832825, 1.2656373977661133, 0.9240629076957703, 0.16541272401809692, 0.5820589065551758, 0.5612357258796692, 0.3734363317489624, -0.04890890419483185, 0.07252602279186249, 0.48138415813446045, -0.37514758110046387, 0.24944430589675903, -0.31203532218933105, 0.10703291743993759, -0.07125525921583176, -0.22467324137687683, -0.20009776949882507, 0.5119684338569641, -1.5193488597869873, -0.6255496144294739, 0.5202793478965759, 0.11208949238061905, -0.8180305361747742, -0.12506969273090363, 0.4691663682460785, 0.3948214054107666, -0.3183309733867645, 0.8130155801773071, -0.18346327543258667, 0.17402273416519165, -0.304281085729599, -1.892533302307129, 0.14214633405208588, -0.005530667491257191, -0.48331665992736816, 0.5784686207771301, -0.7181364297866821, -0.26157665252685547, -0.11416763812303543, 0.9334515929222107, 0.27598893642425537, -0.378689169883728, 0.4258510172367096, -0.0803346186876297, 0.5043810606002808, -0.4872654378414154, 0.150221049785614, 0.9178441762924194, -0.2700008749961853, 0.13863568007946014, 0.5494892597198486, 0.21689416468143463, 0.02773435041308403, 0.37418287992477417, -0.20314523577690125, 0.38370510935783386, -0.5408257246017456, 0.28629645705223083, 0.38213011622428894, 0.2286403328180313, 1.387453556060791, 0.14014601707458496, 0.3284280598163605, 0.5575615167617798, -0.2694619297981262, -1.8156688213348389, 0.36228376626968384, 0.2522474229335785, 0.3922395706176758, -0.9603133201599121, -0.06032317876815796, 0.6168875694274902, -0.025430861860513687, 0.7067226767539978, 0.17768995463848114, 0.8789620399475098, 0.28491121530532837, -1.0217920541763306, -0.04072954133152962, 1.2650785446166992, 0.9436925649642944, 1.4833046197891235, -0.32288435101509094, -0.8424920439720154, -1.12115478515625, 0.2673787474632263, -0.9486635327339172, -0.1301218718290329, 0.5124531388282776, 0.01429081428796053, 1.1261675357818604, -1.5394489765167236, -0.05744033306837082, 0.8117567300796509, -0.047464095056056976, 0.46152475476264954, 0.1934479922056198, 0.3287763297557831, -0.3526234030723572, 0.4299449026584625, -0.26979491114616394, 0.03833211958408356, 0.28473812341690063, -0.2439790517091751, -0.022588610649108887, 1.063872218132019, -0.8806912899017334, 0.2039964646100998, -0.17884038388729095, -0.4462180435657501, -0.10987786203622818, -0.8813746571540833, 0.5666110515594482, -0.43409281969070435, 0.5146914720535278, 1.8938897848129272, -0.016096465289592743, -1.0972511768341064, 0.25104478001594543, -1.1496297121047974, 1.0258692502975464, -0.524582028388977, -0.26849064230918884, -0.3173534870147705, 0.1323150396347046, -0.8052237033843994, 0.5443627834320068, -1.2114416360855103, -0.2216307818889618, -0.7490965723991394, -1.0673047304153442, 0.7686409950256348, 0.52157062292099, 1.2526692152023315, 0.8289296627044678, -0.021042760461568832, 0.04326285049319267, 0.5109070539474487, -0.4017782211303711, -0.6166050434112549, 0.08745496720075607, -0.31315550208091736, 0.7020887136459351, -1.2494291067123413, -0.25645554065704346, 0.4218091070652008, 0.38493022322654724, 0.5748347640037537, 1.3013070821762085, 1.1429671049118042, 2.1892309188842773, -0.6287941336631775, -0.39852115511894226, -0.15812461078166962, -0.6868590712547302, 0.780049741268158, 0.8032482266426086, -0.9318267703056335, -1.0271252393722534, -0.9182759523391724, -0.9622198939323425, 0.6938914060592651, -0.6439119577407837, -0.7091494202613831, 1.748382806777954, 0.5691695213317871, 0.33460843563079834, 0.569008469581604, -0.7962943315505981, 0.3791573643684387, -0.27175140380859375, -0.1067805364727974, -1.1753085851669312, 0.7403972744941711, 0.23102617263793945, 0.3349076807498932, 0.3239513337612152, 0.6271689534187317, -0.3136979639530182, -0.12737111747264862, 0.7889791131019592, 0.40342918038368225, 0.8180778622627258, 0.31351086497306824, 0.28382909297943115, -0.5906009674072266, -0.28668013215065, -0.8727368116378784, -0.30233004689216614, -0.3086502254009247, 0.9069324135780334, -0.3802492022514343, -0.894178032875061, -0.5839646458625793, -0.3629089295864105, -0.36927422881126404, 0.23165464401245117, -0.8513492941856384, 1.0207035541534424, -0.42170608043670654, -0.31478700041770935, -0.03946319967508316, -0.48786646127700806, -0.2522737383842468, -0.045329347252845764, -0.1525050699710846, -0.01892789453268051, -1.775591254234314, 0.10564927011728287, -0.07733899354934692, -1.138338565826416, 0.2208409160375595, 0.07935107499361038, -0.0944683700799942, -1.2489311695098877, -0.5542457699775696, -0.9515981674194336, 0.328921914100647, 0.8130122423171997, -0.6728956699371338, 1.127216100692749, 0.5816655158996582, -1.1743429899215698, 0.3110850155353546, -0.5352941155433655, -0.5194490551948547, -0.8331954479217529, -1.469322681427002, 0.9193122386932373, -0.6796011328697205, 0.6918540596961975, -0.12591128051280975, 0.8404159545898438, -1.1005362272262573, -0.7123515009880066, -0.7018448710441589, -0.09121452271938324, 0.772009015083313, 0.4381406307220459, -0.6858547329902649, 1.5845873355865479, 0.9832070469856262, -0.3350878953933716, 0.05701546370983124, 0.6662681698799133, -0.44446516036987305, 0.19889670610427856, 0.09269337356090546, 0.7977603077888489, 0.4968157112598419, 1.128279447555542, 0.021978341042995453, 1.2923388481140137, 0.5822916626930237, 0.5324717164039612, -0.32297903299331665, 0.4016832709312439, -0.09663555026054382, 0.9467164874076843, -0.5339424014091492, -0.5570205450057983, -0.05472754314541817, -0.7038038969039917, -0.679445743560791, -0.04416337609291077, 0.2747398912906647, -1.4781253337860107, -0.020261920988559723, -1.0761016607284546, 0.9862310290336609, -1.167135238647461, 0.6606630086898804, -0.5336005091667175, -0.3052003085613251, -0.35345369577407837, 0.43118804693222046, -0.1417551338672638, -0.8909218907356262, 0.24630068242549896, 0.5147097706794739, 0.16085223853588104, -1.0680404901504517, 0.38909274339675903, 1.500409483909607, 0.45449069142341614, -1.0500946044921875, 1.868550419807434, 0.6687649488449097, -0.24207580089569092, 0.18548236787319183, -0.14323033392429352, 0.6805738806724548, 0.6547496914863586, -1.1154836416244507, 0.0815105214715004, -1.2727419137954712, 0.927192747592926, -0.44413650035858154, -0.08779215067625046, -0.8355165719985962, -0.062418319284915924, -0.16830025613307953, 0.2917476296424866, 0.9613510966300964, -0.5189769268035889, -0.24937430024147034, 0.9486685991287231, 0.014689730480313301, -0.03641735389828682, -0.002837616950273514, 0.9689722657203674, -0.07564598321914673, -0.8061964511871338, 0.6951403021812439, 0.26176345348358154, -0.8199928402900696, 0.7274096608161926, 0.9046626687049866, -0.08346530795097351, 0.03270302712917328, -0.5309700965881348, -1.46121084690094, 0.23520369827747345, -0.7091416716575623, -0.6909871697425842, 0.544823408126831, -0.7714313268661499, -0.4040580093860626, 0.4927985966205597, 0.8390418887138367, -0.6287755370140076, -0.02127969264984131, -0.06894755363464355, -0.8122812509536743, -1.0316212177276611, 1.5356411933898926, -0.21110183000564575, 2.1473708152770996, 0.02329602837562561, 0.6900224089622498, -1.0667668581008911, -0.09938263893127441, -0.22978027164936066, 0.44295763969421387, 0.2459067702293396, 0.05153419077396393, 0.5293300747871399, -0.862177848815918, -0.19826139509677887, 0.08531950414180756, 0.25657472014427185, 0.44313791394233704, -0.052993275225162506, -1.2197387218475342, 0.2139759063720703, 0.6406848430633545, 0.31226804852485657, -0.20491711795330048, -0.7084100246429443, -1.1197715997695923, 0.7033692598342896, -0.3463691473007202, 0.3891754448413849, -0.08657031506299973, 0.3410405218601227, 0.060446787625551224, -0.49012428522109985, -0.16351428627967834, -0.6999216675758362, 0.41292548179626465, -0.4149501919746399, 0.4880247116088867, 0.2677432894706726, 0.3010753095149994, 0.017056070268154144, -0.4301202893257141, 0.11733588576316833, 0.03047635592520237, -0.5295091271400452, -0.09649114310741425, -1.109056830406189, -0.8401820063591003, -0.5610905289649963, 0.7390492558479309, -0.09593625366687775, 0.4195305109024048, -0.028452176600694656, 0.3508226275444031, -1.4580739736557007, -0.10267338901758194, 0.3092375695705414, -0.37826046347618103, 0.45524561405181885, 1.171463966369629, 1.6652836799621582, 0.3891347348690033, -0.1386769562959671, -0.45325586199760437, 0.7406321167945862, -0.397672563791275, -0.14659109711647034, -0.23375527560710907, -0.9624246954917908, -0.4473665952682495], [-0.2660030424594879, 0.5169986486434937, -1.8136500120162964, -1.0038013458251953, 0.5608078837394714, 0.1942720115184784, 1.022495985031128, 0.5085186958312988, 0.05441991984844208, 0.1840435415506363, -1.0973360538482666, 0.7236887812614441, 0.17701466381549835, 1.1531811952590942, 0.6564359664916992, 1.7719097137451172, 0.7319284081459045, -0.6692825555801392, 0.37713247537612915, 1.67587411403656, -0.27590253949165344, -0.44871649146080017, -0.07661380618810654, 0.8380119204521179, -0.026637397706508636, -0.2766604721546173, -1.0285100936889648, -0.5955503582954407, -1.4550487995147705, -1.1423449516296387, 0.42948824167251587, -0.03547989949584007, 0.829985499382019, 0.9654435515403748, -1.1198780536651611, 0.2557434141635895, 0.7054511904716492, 1.8115181922912598, 0.9627755880355835, 0.5866503119468689, 1.5640161037445068, 0.07596027851104736, 0.10484420508146286, -1.5292348861694336, -0.6695379018783569, -0.7317020893096924, 0.8674051761627197, -1.189716100692749, 0.6841955184936523, -0.25840356945991516, 0.5653988122940063, -1.2755368947982788, 0.1522783637046814, 0.49315330386161804, 1.7534908056259155, -1.1049270629882812, 0.797166645526886, 0.4195269048213959, -0.18894073367118835, -0.5425865650177002, 0.5735137462615967, 0.007533084601163864, -0.6857747435569763, 1.6534727811813354, 0.6419671177864075, -0.44492802023887634, -0.4266597032546997, 0.4560074508190155, -0.1751197725534439, 0.115043506026268, 0.8331315517425537, 0.4476078748703003, -0.7438600063323975, 0.5857361555099487, -1.1612452268600464, -0.11235588043928146, 0.5132369995117188, 0.25812986493110657, 1.284895658493042, -0.1902584731578827, -0.3588119447231293, -0.29613763093948364, 0.8763607144355774, -0.6288920640945435, 0.43442538380622864, 0.3537796437740326, 0.6634334921836853, -0.6951018571853638, -0.651534378528595, 0.6887964010238647, 0.8459024429321289, 0.04331060126423836, 0.23578768968582153, -1.0495564937591553, 0.14476057887077332, -0.5666710138320923, 0.12867073714733124, 0.39043012261390686, -0.9674418568611145, -0.604841947555542, -0.5394454598426819, -0.09978511929512024, -0.37498438358306885, -0.06425587832927704, -0.6873173117637634, 0.9929776191711426, 0.2504105865955353, 0.5585203170776367, 0.05011073499917984, -0.29961344599723816, 0.3129650950431824, 0.6083093285560608, -0.3333019018173218, -1.2350765466690063, -0.10873060673475266, 0.9730703234672546, 0.8434517979621887, -0.45889759063720703, 0.7609685063362122, 0.5804144144058228, 0.25604334473609924, 0.3533269762992859, -0.00978370662778616, 1.0292960405349731, 0.6869054436683655, 0.44213032722473145, -0.9118576049804688, -0.3283618092536926, 0.10971226543188095, -0.29727277159690857, 0.12259510904550552, -0.45934465527534485, 0.06388090550899506, 0.6124584674835205, -0.6532242894172668, 0.960788369178772, -0.2444951832294464, -0.9862377047538757, -0.09119624644517899, -0.27487310767173767, 0.8613286018371582, 0.22954365611076355, -0.9771079421043396, -0.7082914113998413, -0.9658006429672241, -0.9802242517471313, 0.1586235612630844, -0.47102415561676025, -0.22433528304100037, 0.7402671575546265, -0.8320215940475464, -0.035433441400527954, 0.7802154421806335, 0.7360290884971619, 0.34135574102401733, 0.024252399802207947, 0.24540501832962036, -0.04470013827085495, 0.3032285273075104, -0.059539347887039185, 0.683230996131897, -0.09278559684753418, -0.8955672979354858, 0.7594965696334839, 0.1488935649394989, -0.39145398139953613, 0.23089063167572021, 1.1733769178390503, -0.19809919595718384, 0.8369134068489075, 0.28617948293685913, -0.4264407753944397, -0.9959376454353333, 0.8629820346832275, 0.485679030418396, -0.69648677110672, 0.8450661897659302, -0.47367432713508606, -1.320346713066101, -0.8820706009864807, 0.6659635305404663, -0.7672532200813293, 0.5895887017250061, 0.08889247477054596, 0.06746311485767365, -0.8174536824226379, 0.5353104472160339, -0.08691110461950302, -0.5627652406692505, -0.4529780447483063, -0.5814895629882812, -0.6730977296829224, -0.7857767343521118, -0.13282150030136108, -0.7414737939834595, -0.45764490962028503, 0.3682016432285309, -0.8242930173873901, -0.6048378348350525, -0.0005927905440330505, 0.05532967299222946, -0.336373895406723, -0.42005762457847595, 0.810782253742218, -0.5646077394485474, 0.8439634442329407, -0.957263708114624, 0.22518645226955414, -0.3704580068588257, -0.3756183385848999, 1.430661678314209, -0.31598085165023804, -0.6421663165092468, 0.007162046153098345, -0.39765214920043945, -0.9805271625518799, 0.26034045219421387, 0.28859031200408936, -0.7781209945678711, 0.2115372121334076, -0.378513365983963, -0.19663240015506744, 0.32414954900741577, 0.09074217081069946, 0.12163568288087845, -0.12837542593479156, -0.14615516364574432, -0.45529472827911377, -1.0845167636871338, -0.1023375540971756, -0.8168536424636841, -0.8302849531173706, 0.9642910361289978, 0.3021230101585388, -1.1024396419525146, 0.6839702129364014, -0.5160762071609497, 1.0653139352798462, -0.25344282388687134, 1.3861238956451416, 0.7423017024993896, 1.0865107774734497, 0.26640579104423523, -0.025282062590122223, -0.8957992196083069, 0.1940344125032425, 0.7302687168121338, -0.4679216742515564, 0.13007445633411407, 0.6130484938621521, 0.984534740447998, -0.07890234142541885, -0.2848742604255676, -1.0968008041381836, 0.3840453624725342, -0.6995187401771545, -0.8460994958877563, 0.5356665253639221, -0.35176733136177063, 2.050513505935669, 0.5467084646224976, -1.5183727741241455, -0.007027474232017994, 0.3879404067993164, -0.4923149347305298, -0.34078413248062134, -0.671237051486969, -0.7474463582038879, 0.21848087012767792, 0.494197279214859, -0.0909605324268341, 0.9093632698059082, -0.8550547957420349, 0.7471249103546143, -0.15379995107650757, -0.3116343915462494, 0.025811780244112015, 0.205037921667099, -0.20518581569194794, 2.041862964630127, -0.025087282061576843, -1.1888318061828613, 0.49998074769973755, -0.10572139173746109, 0.6148669123649597, 0.04816734418272972, 0.23863941431045532, 0.2787930965423584, 0.4348314702510834, -0.33000773191452026, 0.4473828971385956, -0.07679535448551178, -0.4007018506526947, 0.3457326889038086, 0.18551458418369293, 0.45184263586997986, 0.8646541237831116, -0.5746065974235535, -0.90299391746521, 0.4830213487148285, 0.8243387937545776, 1.2249417304992676, 0.20529183745384216, 0.7433717250823975, -0.16438859701156616, 0.10944323986768723, -0.8223639726638794, -0.5943968296051025, -0.4636046290397644, -0.9239126443862915, -0.7476054430007935, -0.9783945083618164, 0.03781671077013016, 1.038750410079956, 0.29081031680107117, 0.798467755317688, -0.37203070521354675, 0.0024178382009267807, 1.421875, -0.7422256469726562, -0.5417179465293884, 0.09662657231092453, 0.24093014001846313, 0.5056753158569336, 0.6731916069984436, 0.31222569942474365, -0.9499028921127319, -0.29336023330688477, 0.054742634296417236, -0.09860608726739883, 0.3768514394760132, -0.027846748009324074, -0.29772016406059265, -1.8644553422927856, -1.0622583627700806, 0.18908093869686127, 1.0729795694351196, -0.4057575464248657, -0.6875746250152588, 0.5290939211845398, 0.2839353680610657, 0.054734013974666595, 0.3521696627140045, -0.8841450214385986, 0.5038936138153076, -0.8070884346961975, -1.2532758712768555, -0.09072494506835938, 0.597923994064331, 0.8450713753700256, -0.652712881565094, -1.1169846057891846, -0.32539302110671997, -0.6701648235321045, -0.9939460158348083, -0.5446760058403015, 0.0595407634973526, 0.9077613353729248, -0.4205209016799927, 0.002023502951487899, 1.2969688177108765, -0.4022303521633148, 0.010763236321508884, -1.3832484483718872, 1.0916520357131958, 0.1613970845937729, 0.884037971496582, 0.3290785551071167, -0.20245973765850067, 1.1349138021469116, 0.17945550382137299, -0.1840572953224182, 0.22834588587284088, 1.0970531702041626, -0.2607683837413788, -0.5955701470375061, -0.5751575231552124, 0.26698794960975647, -0.19525332748889923, -0.601103663444519, -0.4701377749443054, 0.4537096321582794, -1.239226222038269, -0.4115374982357025, 1.3551980257034302, 0.2502557039260864, -0.28939276933670044, 0.44960319995880127, 1.042801856994629, 0.3198886513710022, -0.2873341739177704, 0.21114106476306915, -0.4483819603919983, 0.042567621916532516, 0.15394793450832367, -0.8529157638549805, -0.07990585267543793, -0.41622915863990784, 0.12238562852144241, 0.6783363819122314, -1.2434977293014526, 0.0758325457572937, -0.021826311945915222, 1.2241215705871582, 0.47377076745033264, -0.5696666240692139, 0.5282676815986633, -0.09552206844091415, 0.2017926722764969, -0.1328052580356598, -0.7340127825737, 1.4790879487991333, -0.005425311625003815, -0.24506957828998566, -0.1858472377061844, -0.306361585855484, 0.698554277420044, -0.1810096949338913, -0.38497963547706604, 0.4921751022338867, -0.6292313933372498, -0.0013118656352162361, 0.10496804118156433, 0.23260311782360077, 0.831822395324707, 0.1338927298784256, 0.7948625087738037, 0.6300117373466492, -0.3366665244102478, -0.1529378741979599, -0.6128740310668945, 0.34998819231987, -0.07877881824970245, -0.857017993927002, -0.12622860074043274, 0.6679669618606567, 0.15174297988414764, 0.5020031332969666, 0.290660560131073, 1.3660706281661987, -0.13739651441574097, -0.0681794062256813, 0.5276390910148621, 1.0652714967727661, 0.37003928422927856, 1.0865564346313477, 0.1375129520893097, -1.137876033782959, -0.19607970118522644, 0.8276941180229187, -0.8488451838493347, 0.19161319732666016, 0.48324957489967346, 0.40129169821739197, 1.2353899478912354, -1.6439481973648071, -0.8529923558235168, 0.5564520359039307, 0.1397036463022232, 0.30796265602111816, 1.252285122871399, -0.015215311199426651, 0.17492356896400452, 0.30397364497184753, -0.10783708840608597, -0.2221374213695526, 0.7730727791786194, 0.33129093050956726, 0.30972376465797424, 0.918064296245575, -1.056854009628296, 0.7648187279701233, -0.7780184745788574, -0.07111728936433792, 0.4252933859825134, -0.5615943670272827, -0.015571804717183113, 0.38278719782829285, 0.25980138778686523, 1.432533621788025, -1.0787845849990845, -0.7948650121688843, 0.6474558711051941, -1.173663854598999, -0.08582963049411774, -0.6255320906639099, -0.47731998562812805, -0.35821568965911865, -0.18874666094779968, -0.18386481702327728, -0.21098899841308594, -0.7013658285140991, -0.5794859528541565, -0.5783801078796387, -0.8341494798660278, 0.4905470609664917, 0.9033621549606323, 1.557504653930664, -0.5128047466278076, 0.020236505195498466, 0.08586982637643814, 0.40350136160850525, -0.6841021776199341, -0.056676723062992096, -0.048331305384635925, 0.2276788353919983, -0.2240411937236786, -1.2641980648040771, -0.549662709236145, 0.37700554728507996, 0.09134622663259506, -0.510248064994812, 0.472611665725708, 0.4378078579902649, 0.8641008734703064, -0.11845582723617554, -0.8568677306175232, 0.6557433009147644, -0.3525933027267456, 0.4589587152004242, 0.9429015517234802, -1.3133796453475952, -0.820937991142273, -0.9118828773498535, -1.1986134052276611, 0.6358237862586975, 0.2915484607219696, -0.5342434048652649, 1.212548851966858, 0.554545521736145, 0.44492360949516296, 0.9371321797370911, -1.2059110403060913, 0.25814077258110046, -0.3646490275859833, -0.40830716490745544, -1.7655376195907593, 1.1263190507888794, 0.5608116984367371, 0.2087230533361435, -0.23224611580371857, 0.12409548461437225, -0.44300442934036255, 0.009766551665961742, -0.9943661689758301, 1.0522723197937012, 0.5533103346824646, 0.9049335718154907, -0.3342013955116272, -0.28531238436698914, -0.3362971842288971, -0.9306595325469971, -0.566498875617981, -0.2545432448387146, 1.3641475439071655, 0.03505729138851166, 0.09698875993490219, -0.3611033856868744, -0.08568232506513596, -0.5907272696495056, -0.6570875644683838, -0.4926285147666931, 0.22012700140476227, 0.3570074737071991, -0.24591076374053955, -0.22930000722408295, 0.46976858377456665, -0.007749849930405617, -0.10044009983539581, 0.36459872126579285, 0.08283005654811859, -1.3421896696090698, 0.3521723747253418, -0.03557388484477997, -1.0908669233322144, -0.4488500654697418, -0.31637752056121826, -0.4114476144313812, -0.9875587821006775, -0.4985702335834503, -1.9448813199996948, 0.9933617115020752, 0.8078666925430298, -0.8552855849266052, 0.9756001234054565, 0.3077164888381958, -1.261850118637085, -0.2973635494709015, -0.10910478979349136, -0.7623297572135925, -0.4942493140697479, -1.0477334260940552, 0.17804266512393951, 0.628944993019104, 0.33574333786964417, -0.20501063764095306, 0.2520366609096527, -1.49660325050354, -0.5097548961639404, -0.596141517162323, -0.566223680973053, 0.6869027614593506, 0.36709678173065186, -0.4404151737689972, 1.1483423709869385, 0.6906683444976807, 0.3261885643005371, 0.06560970097780228, -0.1426423043012619, -0.7011374235153198, 0.7915517687797546, 0.6593140363693237, 0.37225010991096497, -0.016806185245513916, 0.9354159832000732, 0.1225380152463913, 0.8095089197158813, 0.8311992883682251, 0.6478132605552673, -0.1015373170375824, -0.3088197708129883, -0.2417403757572174, 1.4759935140609741, -0.6492127776145935, -0.6769955158233643, -0.6079485416412354, -1.1063350439071655, -0.9829199314117432, -0.7277279496192932, 1.3978954553604126, -0.7840586304664612, -0.433801531791687, -0.7174078226089478, 0.45024484395980835, -0.9117026925086975, 1.5069347620010376, 0.42270904779434204, -0.46049070358276367, 0.36368927359580994, 0.10839834809303284, -0.3419187366962433, -0.6232585310935974, 0.8760153651237488, 0.4132315218448639, -0.2885448932647705, 0.07893963158130646, 0.0847376212477684, 0.5349367260932922, 0.37441280484199524, -0.44239410758018494, 1.9393810033798218, 0.6915857195854187, 0.16518759727478027, 0.048298828303813934, 0.5511053204536438, 0.37437379360198975, 0.6886245608329773, -0.5605112314224243, -0.5003998279571533, -0.6370638012886047, 0.842428982257843, -0.5561941862106323, 0.2525319755077362, -0.8442595601081848, -0.15291006863117218, -0.4154745638370514, 0.670355498790741, 1.0982030630111694, -1.0810259580612183, -0.07439775764942169, 0.9094720482826233, -0.6049157381057739, -0.004835896193981171, -0.15093056857585907, 0.6624516248703003, -0.33018046617507935, -0.06227347254753113, 1.3304853439331055, 0.7366217970848083, -0.8972615003585815, 0.3846006989479065, 0.355051726102829, 0.13787049055099487, -0.17468926310539246, -0.18652625381946564, -0.9231517314910889, 0.0987493023276329, 0.1484174132347107, -1.1701918840408325, 0.6232871413230896, -1.1085678339004517, -0.7962214946746826, -0.0172492116689682, -0.3725554645061493, -0.5067257881164551, -0.4474713206291199, -0.45645079016685486, -0.1585882008075714, -0.38138508796691895, 0.47272980213165283, -0.3426523506641388, 1.309013843536377, -0.13349425792694092, -0.04473094269633293, -1.0696022510528564, -0.12817886471748352, 0.19989606738090515, 0.3723512887954712, -0.16259025037288666, -0.2852625846862793, 0.9035022258758545, 0.09148666262626648, -0.8927236199378967, -0.3036516308784485, -0.31685662269592285, -0.20859138667583466, -0.3644644021987915, -0.21399931609630585, 0.040949299931526184, 1.0490729808807373, 1.0980297327041626, 0.7048647403717041, -1.0412667989730835, -0.6872120499610901, -0.2252800166606903, -0.6994669437408447, 0.9125115871429443, 0.2758055329322815, 0.5657142400741577, 0.21786940097808838, -0.17589835822582245, -0.021680396050214767, -0.0484115406870842, 0.439240425825119, 0.045431531965732574, 0.4922029972076416, 0.5574375987052917, -0.041467733681201935, 0.09444049745798111, -0.5813080668449402, 0.6313037276268005, -0.25007107853889465, 0.06375593692064285, 0.06287574768066406, -0.7779520750045776, -0.5919661521911621, -0.39512741565704346, 0.29663902521133423, 1.0553981065750122, 0.8942986726760864, -0.05579163879156113, 0.18685197830200195, -1.2381762266159058, 0.5211899876594543, -0.0621173195540905, -0.4139135777950287, -0.22526969015598297, 0.5373762249946594, 1.0197316408157349, 0.27434495091438293, 0.05566622316837311, -0.20141837000846863, -0.11351125687360764, -0.3842257559299469, -0.45510271191596985, -0.9752432107925415, -0.3530494272708893, -0.1903584599494934], [0.38498058915138245, 0.8477745056152344, -2.666747570037842, -1.0466417074203491, 1.4858349561691284, -0.033301543444395065, 1.1331743001937866, 0.31832143664360046, 0.8321809768676758, 0.7950726747512817, -0.3919226825237274, -0.4064694941043854, -0.04676933214068413, 1.2741339206695557, 0.8611035943031311, 0.5624397993087769, 0.6215924620628357, -1.135305643081665, 0.8163381814956665, 1.2048332691192627, -0.06614615023136139, 0.002717326395213604, -1.314380168914795, 0.026980450376868248, 0.5425735712051392, 0.8075462579727173, -1.409798502922058, -0.01440754160284996, -0.5769913196563721, -0.6686378121376038, 0.4579665958881378, -1.3322086334228516, 0.35320520401000977, 1.3997730016708374, -1.8003722429275513, -0.33905747532844543, 1.3243192434310913, 1.540400743484497, 0.539577066898346, -0.07804188877344131, 2.014233112335205, 0.5690619349479675, -0.4449789524078369, -0.872448742389679, -0.42534130811691284, 0.13271795213222504, -0.4175681471824646, -0.6662288308143616, 0.4038139879703522, -0.5768283009529114, 0.561273455619812, -1.0363050699234009, 0.6950674057006836, 0.695608377456665, 0.8563533425331116, -0.3506969213485718, 0.4950273633003235, 0.9398349523544312, 0.3573967218399048, -0.37010157108306885, 0.6214407682418823, -0.5485000014305115, -0.44059374928474426, 1.0653165578842163, 0.018726233392953873, 0.20647187530994415, -0.7716876864433289, 0.5366835594177246, 0.24198421835899353, -0.42544880509376526, 0.7319338917732239, -0.4805328845977783, -0.3930802345275879, 0.5638512372970581, -0.8270836472511292, 0.1414014995098114, 0.9013266563415527, 0.6474785208702087, 0.6427106857299805, 0.026391008868813515, -0.6726537346839905, 0.29117780923843384, 1.6072461605072021, -0.4106771945953369, 0.30594879388809204, 0.1640116423368454, 0.16482079029083252, -0.752274215221405, 0.26441898941993713, 1.446046233177185, 0.900784969329834, 0.6787002682685852, 0.09594863653182983, -0.2749066650867462, 0.12629838287830353, -0.35985326766967773, -0.28635814785957336, -0.3769606351852417, -1.2633404731750488, -0.4452941119670868, -1.0878316164016724, -0.654829740524292, -0.03613905608654022, 0.24737873673439026, -0.4904705286026001, 1.3565765619277954, 0.04021672531962395, 0.41445329785346985, -0.33869293332099915, -0.33213356137275696, -0.5886976718902588, 0.7815259099006653, -0.5596820116043091, -0.4340052902698517, -0.05379364639520645, 1.239163875579834, 0.5275267362594604, -0.8085996508598328, 0.2782582640647888, 1.1962366104125977, 0.29583740234375, -0.206883504986763, -0.10238099843263626, 1.158823847770691, 0.9389784336090088, 0.3706047534942627, 0.003012001048773527, -0.6727284789085388, -0.14210422337055206, -0.39387452602386475, -0.34196093678474426, -0.6181981563568115, 0.37423470616340637, 0.11152727156877518, -1.035496473312378, 0.9174805879592896, -0.15287038683891296, -0.937551736831665, 0.2329913228750229, 0.06176231801509857, 0.4577995240688324, 0.01895475573837757, -0.05987715348601341, -0.947616696357727, 0.0077034058049321175, -0.49680861830711365, 0.12514573335647583, -0.33628636598587036, -0.10650258511304855, 0.6415460109710693, -1.0027258396148682, -0.4580971300601959, 1.3619297742843628, 1.036683440208435, -0.29940053820610046, -0.4863617718219757, 0.16005061566829681, -0.4893445372581482, 0.8091374635696411, 0.6871536374092102, 0.5683306455612183, 0.49720174074172974, -1.2515419721603394, 1.756652593612671, 0.1529219150543213, -0.01932533085346222, 0.1258205771446228, 0.946608304977417, -0.26015281677246094, 0.630099356174469, -0.5104109644889832, -0.45146000385284424, -0.25583982467651367, 0.7489207983016968, 0.8284514546394348, -0.4596976339817047, 0.7635964751243591, -0.6110326647758484, -0.612028181552887, -0.6548120975494385, 0.7047761082649231, 0.21507614850997925, 0.5055899024009705, 0.08021658658981323, 0.3488549590110779, -0.752956211566925, 0.4567036032676697, -0.9974684119224548, 0.012873650528490543, -0.1491738259792328, -1.1117236614227295, 0.0689406469464302, -1.5519039630889893, 0.28823432326316833, 0.09309056401252747, -0.4143848717212677, 0.42072126269340515, -1.333075761795044, -0.6401029825210571, 0.8887134790420532, 0.029129520058631897, -0.5681784152984619, -0.09374640136957169, 0.020838294178247452, -0.7791480422019958, 0.5002221465110779, -1.1484705209732056, 0.5656701326370239, -0.5429680943489075, 0.11137790232896805, 1.6250807046890259, -0.27030402421951294, -0.2643046975135803, -0.04834888130426407, 0.2339010089635849, -0.5128438472747803, 0.5883771181106567, 0.29100292921066284, -0.5344502925872803, 0.4391407370567322, -0.18554194271564484, 0.3070002794265747, 0.3581698536872864, -0.5187311172485352, -0.12164914608001709, -0.4473121762275696, -0.015582219697535038, -0.7620205879211426, -1.009142279624939, -0.3161066770553589, -1.4440858364105225, -1.745220422744751, 0.4378563463687897, 0.3394742012023926, -0.9074970483779907, 0.05130744352936745, -0.002075136173516512, 0.5509770512580872, 0.044477708637714386, 1.2045642137527466, 0.45653173327445984, 1.9134622812271118, -0.31698426604270935, -0.19422666728496552, -1.5908825397491455, 0.5914236307144165, 0.75603848695755, -0.5570054054260254, 0.1667238026857376, 0.45835739374160767, 0.9734030961990356, 0.1557488888502121, 0.1367952525615692, -0.560998797416687, -0.06441657245159149, -0.6311628222465515, -0.4359641671180725, 0.5155434012413025, -0.18203367292881012, 1.7221182584762573, 1.1949034929275513, -1.976070761680603, -0.2298361212015152, 0.12755313515663147, -0.528249979019165, 0.23879827558994293, -0.7045286893844604, -0.3894185721874237, -0.04392264410853386, 0.5846378207206726, 0.1868770569562912, 0.8431611061096191, -0.7772135138511658, 0.5280781388282776, -0.21493187546730042, -0.1633104681968689, -0.5097192525863647, -0.3207561671733856, -0.6067590713500977, 1.5015404224395752, -0.6487501859664917, -0.477642685174942, -0.09769310802221298, 0.01583024114370346, 0.0658835619688034, -0.08165346831083298, 0.05379103124141693, 0.8262473940849304, 0.3427714705467224, -0.031463924795389175, 0.6438851952552795, 0.06900563091039658, -0.2657114863395691, 0.6616650819778442, 0.15131452679634094, 0.9556049108505249, 1.1079479455947876, -0.46715953946113586, -0.18905656039714813, -0.5840219855308533, 0.8038531541824341, 0.41578784584999084, 0.6266187429428101, 0.7510857582092285, -0.08928626775741577, -0.40729132294654846, 0.37886252999305725, -1.4781385660171509, -0.0976317748427391, -0.9221776127815247, -1.264265775680542, -0.8521767854690552, 0.2843579053878784, 0.3562301695346832, 0.05668516457080841, 0.1395595371723175, -0.6287189722061157, 0.6017053723335266, 1.3173983097076416, -0.22336208820343018, -0.3813343346118927, 0.16419030725955963, -0.7504013180732727, -0.4063856303691864, 0.028547346591949463, 0.16738317906856537, -0.6245307922363281, 0.25337889790534973, -0.22436705231666565, -0.4893178939819336, 0.8479005098342896, 0.045720793306827545, 0.030945362523198128, -0.840014636516571, -0.9374721050262451, 0.6798499226570129, 0.6655757427215576, 0.2399919331073761, -0.625616729259491, -0.173199862241745, 1.3662731647491455, 0.5144771337509155, 0.6141737103462219, -0.5271021723747253, 1.3306752443313599, -0.7626994252204895, -1.2695680856704712, -0.9720796346664429, 0.688654363155365, 1.1496331691741943, -0.44785064458847046, -0.1530718356370926, -0.08318722993135452, -1.0587354898452759, -0.5830208659172058, -0.27749815583229065, 0.5692156553268433, 0.9600686430931091, 0.16599313914775848, -0.8289068341255188, 1.2944648265838623, -0.26661327481269836, 0.31500446796417236, -1.5084306001663208, 0.3373676538467407, 0.5648759603500366, 0.5486988425254822, -0.23209211230278015, 0.07671026885509491, 1.2219829559326172, 0.07987920194864273, -0.3986019790172577, -0.11383794993162155, 1.3938878774642944, -0.5683620572090149, -0.9938187003135681, -0.43124523758888245, 0.2786344289779663, 0.39316701889038086, -0.21943911910057068, 0.1220955103635788, 0.2929856777191162, -0.5114671587944031, 0.4600071609020233, 1.0787094831466675, 0.0676959753036499, -0.6076127290725708, -0.4020741581916809, 0.141413614153862, 0.046756286174058914, 0.06238477677106857, 1.0245850086212158, -0.8506225943565369, -0.4117370843887329, 0.6537638902664185, -1.3895478248596191, -0.2763325870037079, 0.1332133710384369, -0.5310049057006836, 0.30906468629837036, -0.8674600720405579, 0.2151193469762802, 0.4003315269947052, 1.1897510290145874, -0.3931611478328705, 0.12893816828727722, 0.46773096919059753, 0.09645520150661469, 1.0579142570495605, -0.0024588368833065033, 0.2111215889453888, 1.2458852529525757, -0.6237940788269043, -0.1849859207868576, -0.10002187639474869, 0.17556659877300262, 0.3762950301170349, -0.8946007490158081, -0.015231595374643803, -0.6637422442436218, 0.04898015037178993, -0.5638264417648315, -0.1730721890926361, -0.42514747381210327, 0.4626710116863251, 0.9378321170806885, 0.3567921817302704, 0.6600643992424011, -0.7616814970970154, -0.6970614790916443, 0.756880521774292, 0.1919613778591156, -0.13311384618282318, -0.1947345733642578, -0.1920345276594162, 0.4970778822898865, 0.615959107875824, 0.18442027270793915, 0.18579451739788055, 1.1608760356903076, -0.46675530076026917, -0.6955916285514832, -0.2592131793498993, -0.020802229642868042, 0.8065929412841797, 0.7550696134567261, 0.052313245832920074, -0.47461745142936707, -0.8669780492782593, 0.25938767194747925, -0.39685913920402527, -0.09688066691160202, 1.1316263675689697, 0.8343411684036255, 0.9576730132102966, -1.8049495220184326, -1.0579116344451904, 0.8374481797218323, -0.09158290922641754, 0.1976572424173355, 0.5095705986022949, 0.4676801860332489, 0.2112036645412445, 0.47163158655166626, 0.03414858877658844, -0.13751479983329773, -0.19737884402275085, -0.19997917115688324, 0.10136505216360092, 0.8648913502693176, -0.10919174551963806, 1.1222882270812988, -0.5496350526809692, 0.061993323266506195, 0.23095834255218506, -0.4275583326816559, -0.27428558468818665, 0.38802120089530945, -0.1149977594614029, 1.147668480873108, -0.7864685654640198, -0.6474774479866028, 0.04418906942009926, -0.2472507655620575, -0.40636274218559265, 0.44590604305267334, -0.24437926709651947, -0.3696185052394867, -0.036550264805555344, -0.6057697534561157, 0.5439329147338867, -0.23188024759292603, -0.23180854320526123, -0.8358711004257202, -1.1419841051101685, 0.4440889060497284, 0.388576477766037, 0.7687505483627319, 0.11226716637611389, 0.6024997234344482, 0.4232965409755707, -0.013233326375484467, -0.19678351283073425, 0.4747426509857178, -0.584284245967865, -0.32260411977767944, -0.02382604219019413, -1.4989804029464722, -0.9684926867485046, 0.41122522950172424, 0.46255242824554443, -0.11529728025197983, 0.5222962498664856, 0.8826437592506409, 1.4039521217346191, 0.43998757004737854, -0.49755367636680603, 0.3609521687030792, -0.1063951775431633, 1.0277308225631714, 0.6247286796569824, -0.0013817483559250832, -0.6065016388893127, -1.3225598335266113, -1.2167024612426758, 0.5892977714538574, -0.022891227155923843, -1.6579091548919678, 0.906780481338501, 0.5805593729019165, 0.07643453776836395, 1.0948004722595215, -0.02496509626507759, 0.4580199718475342, -0.1192966029047966, -0.3933354914188385, -1.1508327722549438, 0.6189714074134827, -0.06148475781083107, 0.5477012991905212, -0.09409483522176743, 0.8672662377357483, -0.011301608756184578, 0.7172553539276123, 0.8480778336524963, 0.6409918665885925, 1.2110192775726318, -0.4860716164112091, 0.6942254900932312, -0.2172834277153015, -0.14035579562187195, -0.7523976564407349, -1.4485565423965454, -1.3934612274169922, 0.3187068700790405, -0.6715885996818542, -0.6783575415611267, -0.32586392760276794, -0.6429780125617981, -0.6994114518165588, -0.5611933469772339, 0.6367633938789368, 0.8742473721504211, 0.027186697348952293, -0.4594593346118927, -0.9622414112091064, -0.18852578103542328, -0.46713852882385254, -0.5298980474472046, -0.553763747215271, 0.5977160930633545, -1.5507227182388306, 0.366132527589798, -0.026884673163294792, -0.4108620584011078, 0.3915334939956665, -1.0689165592193604, -0.0028864878695458174, -0.8016063570976257, -1.3420982360839844, -1.3236966133117676, 0.08927152305841446, 1.4913673400878906, 0.017986087128520012, 0.8919916152954102, 0.6901822686195374, -1.2628158330917358, 0.06362500786781311, -0.2662183940410614, -1.2671921253204346, 0.09823229908943176, -1.048008680343628, 0.3708512783050537, -0.5476408004760742, 0.15502852201461792, -0.1656743288040161, 0.6048164963722229, -1.4225990772247314, -0.6892884373664856, -0.3305858075618744, -0.40367037057876587, 0.7081342935562134, 0.9785377383232117, -1.2371429204940796, 1.607354998588562, 0.7219067215919495, 0.6978744864463806, -0.3485722541809082, 0.19336803257465363, -0.7396193146705627, 0.8492804169654846, -0.2639103829860687, -0.3121875822544098, 1.0370168685913086, 0.5818876624107361, 0.050287727266550064, 0.6491165161132812, 0.2602594196796417, -0.4716170132160187, -0.4483836591243744, -0.09774965792894363, -0.7656734585762024, 1.024421215057373, -0.6415332555770874, -0.8243322372436523, -0.5360927581787109, -0.4183410108089447, -1.016819715499878, -0.5015531778335571, 0.6384271383285522, -0.585050106048584, -0.7935870289802551, -0.08430919796228409, -0.04880937188863754, 0.2950870394706726, 1.0051020383834839, 0.2205069214105606, -0.1838306486606598, -0.0633690282702446, 0.07066496461629868, 0.7882154583930969, -0.6831448078155518, 0.7801647782325745, 0.7849733233451843, -0.3422906994819641, -0.3333795964717865, 0.020701471716165543, 1.5831646919250488, 0.45700693130493164, -0.06547871232032776, 1.588207721710205, 0.7846248745918274, 0.10059963911771774, -0.2029774934053421, 0.2693018913269043, 0.4753198027610779, 0.6899654865264893, -0.5050898790359497, 0.65876704454422, -0.742737352848053, 1.1372660398483276, 0.34064340591430664, -0.6226291060447693, -1.1520583629608154, -0.6672013401985168, -0.6842959523200989, 0.25324195623397827, 0.43919914960861206, -1.700846791267395, 0.1498289704322815, 0.722693681716919, -0.33856725692749023, 0.03960245102643967, -0.4972297251224518, 1.6874550580978394, -0.32024306058883667, -0.06243233010172844, 0.5936113595962524, -0.107950858771801, -0.4421713650226593, 0.7639362812042236, 0.4342431128025055, 0.44106221199035645, -0.6021807789802551, -0.3642055094242096, -1.1473809480667114, -0.33062708377838135, -0.08709259331226349, -0.9738045334815979, 0.20664265751838684, -0.7216300964355469, -1.3893052339553833, 0.7346757650375366, 0.43674206733703613, -0.22974391281604767, -0.21057243645191193, -0.4065712094306946, -0.41568607091903687, -0.4416252672672272, 0.1448468118906021, -0.6100507378578186, 1.0688704252243042, -0.3067609965801239, 0.244066521525383, -1.271080732345581, -0.6380565166473389, 0.3445875644683838, 0.20159341394901276, 0.15193502604961395, -0.24694034457206726, 0.15890197455883026, -0.8485349416732788, -1.0306779146194458, -0.007156726438552141, 0.9102832078933716, -0.5001605749130249, -0.1091175451874733, -1.6997581720352173, -0.08920435607433319, 0.4417203366756439, 1.3609989881515503, -0.6346187591552734, -0.9297557473182678, -0.761080801486969, 0.3046077489852905, -0.9275761842727661, 0.7366471290588379, -0.1902359277009964, 0.881888747215271, 0.7895835041999817, -0.5653547644615173, -0.08195801824331284, 0.637723445892334, 0.37796249985694885, -0.36207619309425354, 0.8783352971076965, 0.48520734906196594, 0.23169668018817902, -0.6608421802520752, -0.480467826128006, 0.24771662056446075, -1.175126552581787, 0.16194261610507965, -0.07032115012407303, -0.2659519910812378, -0.6247453093528748, -0.8217701315879822, 0.9506067037582397, 0.7306979298591614, -0.13958029448986053, -0.3967551589012146, 0.9516667127609253, -1.1308720111846924, 0.4770546555519104, -0.38712364435195923, -0.0675068125128746, 0.21122555434703827, 0.36152565479278564, 1.6269785165786743, 0.30341681838035583, -0.04437847062945366, 0.19139106571674347, 0.42033687233924866, -0.03867499157786369, -0.19593122601509094, -1.0271962881088257, -0.3850017189979553, -0.49361738562583923], [-0.4039975702762604, 1.567246437072754, -2.454486131668091, -0.5325807929039001, 0.5764238238334656, 0.4017532467842102, 0.7741941213607788, -0.14197401702404022, -0.3552495241165161, -0.08753342926502228, -0.9303935766220093, 0.0029481202363967896, -0.33598634600639343, 1.6173219680786133, 0.747900664806366, 0.9200094938278198, 0.4641093313694, -0.8951345086097717, 1.56911301612854, 0.8908112049102783, 0.017243029549717903, -0.8655163049697876, 0.2086361199617386, -0.4424656927585602, 0.22916279733181, -0.3552764356136322, -1.362306833267212, -0.730455219745636, -1.0361543893814087, -1.4208428859710693, 0.9504685401916504, -0.41520199179649353, -0.21087898313999176, 0.08418735861778259, -1.5045535564422607, -0.12229745090007782, 1.9611575603485107, 1.2454845905303955, 0.9031251072883606, 0.21070532500743866, 0.9971327781677246, -0.18461330235004425, -0.10014206916093826, -0.7597801685333252, 0.23168182373046875, 0.050428688526153564, 0.23529836535453796, -0.825527548789978, -0.6680246591567993, -0.47272032499313354, 0.33397823572158813, -1.42233145236969, 0.46014389395713806, 0.6379274129867554, 1.6140719652175903, -0.728411078453064, 0.2463342249393463, 0.6997942328453064, 0.6183819770812988, -0.45303571224212646, 0.7877586483955383, 0.09241613745689392, -0.7315456867218018, 0.9259798526763916, -0.28557145595550537, -0.15705068409442902, 0.32439982891082764, 0.40022844076156616, -0.10038051009178162, 0.15369433164596558, -0.13378863036632538, 0.2358972430229187, -0.5133141279220581, 0.43185171484947205, -0.9522096514701843, 0.024854427203536034, 0.3325309157371521, 0.8098448514938354, 0.3053109645843506, 0.44465211033821106, -0.08012189716100693, -0.19430828094482422, 0.011382689699530602, -0.07142001390457153, 1.3355447053909302, 0.19816572964191437, 0.9501034021377563, -0.5408794283866882, -0.9778209328651428, 1.8918840885162354, 0.7143443822860718, 0.3704602122306824, 0.14957928657531738, -0.2125500589609146, 0.10295538604259491, -0.6137621402740479, 0.07757971435785294, -0.8248592615127563, -0.8144166469573975, -0.9405831098556519, -0.5653049945831299, -0.9285401105880737, -0.1658596247434616, -0.29611051082611084, -0.19261297583580017, 1.6039694547653198, 0.14626441895961761, -0.01772366836667061, -0.552929162979126, -0.08225864917039871, -0.07851818203926086, 0.4251571297645569, -0.5013488531112671, -0.3876660466194153, -0.6602245569229126, 1.0347275733947754, 1.6329545974731445, -0.4698294401168823, 0.0498335100710392, 1.5440582036972046, -0.4259217381477356, -0.41471850872039795, -1.2052381038665771, 0.5323293209075928, 0.022712405771017075, 0.5142934322357178, -0.37762895226478577, -0.26475468277931213, 0.03945711627602577, -0.048219989985227585, 0.2513516843318939, -0.28202709555625916, -0.10242238640785217, 0.3809608817100525, -0.8448432087898254, 1.7354048490524292, 0.040460534393787384, -0.7328086495399475, 0.14013373851776123, -0.4383299648761749, 0.38260677456855774, 0.23408930003643036, -0.8558709621429443, -0.8754010796546936, 0.08414161950349808, -0.8716900944709778, 0.2501450181007385, -0.1641089767217636, -0.711392879486084, 0.4123947024345398, -0.6817701458930969, 0.19573554396629333, 0.17040643095970154, 0.013058941811323166, 0.38589322566986084, 0.43256306648254395, 0.3869653046131134, -0.034955598413944244, 0.36550453305244446, 0.39804768562316895, 0.4770476222038269, -0.16131888329982758, -0.8248659372329712, 0.8762059807777405, 0.30886679887771606, 0.05846641957759857, 0.5298073887825012, 0.4716569185256958, 0.4755428433418274, 0.5564373135566711, -0.25946909189224243, 0.058958977460861206, -0.7897709012031555, 0.29668956995010376, 0.2087996006011963, -1.0234540700912476, 1.4751344919204712, -0.3473563492298126, -1.0735329389572144, -1.3485556840896606, -0.594321608543396, -0.16601209342479706, 0.565222978591919, 0.18457773327827454, 0.5408768653869629, -0.9528020620346069, 0.2861503064632416, -0.034295909106731415, -0.48740753531455994, -1.075920820236206, -0.7676175832748413, -0.07219544053077698, -0.6208111643791199, 0.2802962362766266, -0.4215170443058014, -1.3346527814865112, 0.5365539789199829, -1.0874031782150269, -0.22191457450389862, -0.524188756942749, -0.4956459105014801, -0.6620922684669495, -0.38381722569465637, 0.5058380961418152, -0.6951536536216736, 0.9563895463943481, -0.35257309675216675, 0.8019141554832458, -1.0650408267974854, -0.04747883975505829, 1.132233738899231, 0.5013578534126282, -0.77092045545578, 0.6629058122634888, 0.6155647039413452, -1.754852056503296, 0.11093633621931076, -0.17049291729927063, -0.5374531149864197, 0.07160115242004395, 0.23707105219364166, -0.2723887860774994, 0.33096590638160706, 0.3650367259979248, 0.48103007674217224, -0.03736283257603645, -0.8080278635025024, -0.08132879436016083, -0.7636566758155823, -0.0567723885178566, -0.9651663899421692, -0.2889307141304016, 0.9113168120384216, 0.17769229412078857, -1.0399328470230103, 0.11844993382692337, 0.5672493577003479, 0.9541136622428894, 0.5937155485153198, 1.5589210987091064, 0.5430312752723694, 1.297218680381775, -0.3647877871990204, -0.35009947419166565, -0.9628210663795471, 0.2020605355501175, 0.26502227783203125, -0.8060773611068726, -0.10853633284568787, 0.8863605260848999, 1.133660912513733, 0.16687354445457458, -0.21369428932666779, -0.8489271402359009, -0.12384507060050964, -0.4675901532173157, -0.28123167157173157, -0.0930938720703125, 0.03809366375207901, 1.3274437189102173, 0.24032604694366455, -1.6340638399124146, -0.2616470754146576, -0.06077263504266739, 0.027282148599624634, -0.05800097435712814, -1.0677059888839722, -0.02965952828526497, -0.37190067768096924, 0.11418486386537552, 0.44543418288230896, 0.6858100295066833, -0.514374315738678, 0.265575110912323, -0.3443578779697418, -1.3437672853469849, -0.5254268050193787, 1.0245872735977173, -0.07892392575740814, 1.180762529373169, -0.3695715665817261, -1.1273137331008911, -0.5608668923377991, -0.4284776747226715, 1.3601948022842407, 0.9892288446426392, 0.4077052175998688, 0.3767029643058777, 0.27268776297569275, -0.39005303382873535, 0.11620977520942688, -0.022231247276067734, -0.6558383107185364, -0.3584860563278198, -0.18912214040756226, 0.5720157027244568, 1.351871371269226, -0.8508009314537048, -0.4921340346336365, -0.14960886538028717, -0.14047300815582275, 1.3507925271987915, 0.478259414434433, 1.3430159091949463, -0.10775198042392731, 0.30185773968696594, -0.1572149097919464, 0.007214600220322609, -0.8879612684249878, -0.7336682677268982, -0.9259184002876282, -0.4815343916416168, 0.16235876083374023, 0.41120776534080505, 0.58030104637146, 0.3918047547340393, -0.2571081221103668, -0.2395165115594864, 1.109815001487732, 0.33196327090263367, -0.6456356048583984, 0.15872278809547424, 0.07809879630804062, -0.44679224491119385, -0.16345377266407013, 0.5375540852546692, -0.7812602519989014, -0.5322491526603699, -0.3647499978542328, 0.27057355642318726, 0.8485561013221741, -0.3201504051685333, 0.026914376765489578, -1.0431052446365356, -1.0354970693588257, -0.033055420964956284, 1.4310106039047241, 0.01465071551501751, 0.12357978522777557, -0.41067445278167725, 0.36449337005615234, 1.1424480676651, -0.6694301962852478, 0.14788781106472015, 0.4836737811565399, -0.058514710515737534, -0.9616433382034302, -0.3316357433795929, -0.16178172826766968, 0.4642423391342163, -0.4052486717700958, -0.07525541633367538, -0.13578926026821136, -0.7767823338508606, -0.7350539565086365, 0.6452937722206116, -0.1728658676147461, 1.1274386644363403, 0.13500671088695526, -0.1322687864303589, 1.4387929439544678, 0.5294972658157349, 0.5208969116210938, -1.254626989364624, 0.3430858850479126, 0.26400792598724365, 0.7085919976234436, 1.127393364906311, -0.1874728798866272, 0.9043378233909607, 0.48870915174484253, -0.054510097950696945, 0.15439455211162567, 1.2792612314224243, -0.3513813316822052, -0.09666134417057037, -1.1600996255874634, 0.5694308876991272, -0.18490839004516602, -1.2596819400787354, -0.46692025661468506, -0.03846561536192894, -0.9548551440238953, -1.2396724224090576, 1.0850461721420288, 0.03554524853825569, -0.1611175835132599, -0.27477365732192993, 0.6332583427429199, 0.724865198135376, -0.6727511286735535, 0.7172505259513855, -0.7203074097633362, 0.2442987710237503, 0.586006760597229, -0.7819197773933411, 0.28628626465797424, 0.14947904646396637, 0.04129519686102867, 1.1416200399398804, -0.9459152221679688, 0.20694434642791748, 0.23553010821342468, 0.42579320073127747, -0.01754683442413807, -0.24629448354244232, 0.37335026264190674, 0.13206711411476135, -0.2820214629173279, -0.6960124373435974, 0.16349220275878906, 0.6585639715194702, -0.22128458321094513, 0.4003664553165436, 0.40863561630249023, -0.06850827485322952, -0.42491650581359863, -0.6664323210716248, -0.5046391487121582, 0.27483227849006653, -0.3756282329559326, -0.012315968051552773, 0.515313446521759, 0.34181344509124756, 1.2640315294265747, 0.9764572978019714, 0.5228299498558044, 0.8418210744857788, -0.248914897441864, -1.2240043878555298, 0.5824313759803772, 0.2336786538362503, -0.2866970896720886, -0.16156324744224548, 0.3149951994419098, 0.3847567141056061, -0.645534336566925, 0.5506976842880249, 0.40096113085746765, 1.4034453630447388, -0.003375008702278137, 0.04335856810212135, -0.2786387801170349, 0.3842129707336426, 0.6950293779373169, 1.3586347103118896, 0.5633189678192139, -0.2536986470222473, -1.285900354385376, 0.7140961289405823, -1.1041148900985718, 0.041824761778116226, 0.5470398664474487, -0.03526601940393448, 1.4073195457458496, -1.2305330038070679, -0.3095359206199646, 0.26829293370246887, 0.6061891913414001, 0.11233169585466385, 0.2136332243680954, 0.04938485100865364, -0.5476744174957275, 0.3461918532848358, -0.024585027247667313, -0.3442721962928772, -0.34680941700935364, 0.5226778984069824, -0.40611034631729126, 0.7618846893310547, -0.23675484955310822, 0.7724860906600952, -0.6086682677268982, 0.11969837546348572, 0.476201593875885, -0.4870820641517639, 0.11639101058244705, 0.36080026626586914, 0.5020052790641785, 1.8524823188781738, -0.2466898262500763, -0.9044588804244995, 0.16496048867702484, -0.5189434289932251, 0.21099461615085602, -0.2502317726612091, -0.5686947703361511, -0.21708214282989502, -0.39827263355255127, -0.15437966585159302, 0.5276404023170471, 0.14584973454475403, -0.6518329977989197, -0.318987637758255, -1.7239928245544434, 0.09201716631650925, 0.8116918206214905, 1.0519570112228394, 1.0218157768249512, -0.023713624104857445, -0.6829685568809509, 0.31295230984687805, -0.861161470413208, 0.09104073792695999, 0.11844158172607422, -0.13736893236637115, -0.03521313890814781, -1.327728271484375, -0.6674505472183228, 0.9066374897956848, -0.10811369121074677, 0.5661900639533997, 1.0631568431854248, 1.8952594995498657, 1.1382008790969849, -0.41283610463142395, -0.6496155858039856, -0.17172065377235413, -0.6078734397888184, 1.0476537942886353, 1.2059553861618042, 0.3851783871650696, -0.8828200101852417, -0.531592607498169, -1.3995320796966553, 1.185154676437378, 0.05966871976852417, -1.5045808553695679, 0.739669680595398, 0.46880999207496643, 0.7458485960960388, 0.5144268274307251, -0.7926559448242188, 0.8684523105621338, 0.2922024130821228, -0.67107754945755, -1.0329662561416626, 0.5559304356575012, -0.13739052414894104, 0.515920102596283, -0.24987530708312988, 0.643001139163971, 0.3570767343044281, -0.12528148293495178, 0.2682400941848755, 0.40099456906318665, 0.44871318340301514, 0.8048309683799744, -0.07766012102365494, -1.5389714241027832, -0.035143159329891205, -0.7359646558761597, -0.09518631547689438, -0.1726517677307129, 0.7702917456626892, 0.029391175135970116, -0.20077575743198395, -0.8201618790626526, -0.4217565357685089, -0.7241798639297485, -0.0445694662630558, -0.3614499270915985, 1.164170265197754, 0.17311088740825653, -0.4910274147987366, -0.6118150353431702, -0.5163955092430115, -0.013072491623461246, -0.7647776007652283, 0.6215550899505615, 0.18364061415195465, -1.3444983959197998, 0.3681757152080536, 0.2590543031692505, -1.3962959051132202, -0.3218008875846863, -0.692467987537384, 0.4244857430458069, -1.4580979347229004, -1.1846081018447876, -0.40584880113601685, -0.19751764833927155, 0.6692866086959839, -0.6189976930618286, 0.3799407184123993, 0.43729227781295776, -1.3895344734191895, 0.32004761695861816, 0.10841149091720581, -0.36068466305732727, -0.3525806963443756, -1.1340219974517822, 0.5488413572311401, 0.06633763760328293, 0.2665778398513794, -0.27936363220214844, 0.13206133246421814, -1.453223466873169, -0.7343607544898987, -0.7581297755241394, -0.6787225604057312, 0.8203120231628418, 0.479677677154541, -0.9319786429405212, 1.4909268617630005, 0.802114725112915, -0.7575095891952515, 0.2651524245738983, -0.3805404603481293, -0.4601183235645294, -0.2019815742969513, 1.234565258026123, 0.794358491897583, -0.06775301694869995, 1.214990258216858, 0.6300133466720581, 0.8639834523200989, 0.6839208602905273, 1.0464754104614258, -0.6587956547737122, -0.5413029193878174, 0.05363094434142113, 0.6871927976608276, -0.8675839900970459, -0.49811020493507385, -0.4837811291217804, -0.7094342708587646, -0.8167668581008911, 0.11392885446548462, 0.30740177631378174, -0.6177374124526978, 0.6386317014694214, -0.4921976625919342, 1.0242197513580322, -1.2415666580200195, 0.07212020456790924, -0.41477638483047485, -0.7631187438964844, 0.4149789810180664, 0.3981505334377289, 0.5161483287811279, -1.5587645769119263, 0.510187566280365, 0.3262835443019867, -0.3127075135707855, -0.3227311372756958, 0.17868541181087494, 0.8026725053787231, 0.08412285149097443, -0.5939019322395325, 1.4135234355926514, 1.162975549697876, 0.4477703273296356, -0.31307923793792725, 0.2841331660747528, -0.036438390612602234, 0.6525664925575256, -0.16646254062652588, -0.26767411828041077, -0.6154961585998535, 1.599366545677185, 0.10970529168844223, 0.8558030128479004, -0.3473285734653473, 0.2609885632991791, -0.37685132026672363, 0.11157603561878204, 0.877159595489502, -0.6937670707702637, -0.7878459095954895, 1.0469093322753906, -0.5374360084533691, 0.08155490458011627, 0.6568354964256287, 0.5501248240470886, 0.315615177154541, -0.8397009968757629, 0.14829102158546448, 0.73785799741745, -0.6646761298179626, 0.7061139941215515, 0.2796149253845215, -0.2632487118244171, -0.5424882769584656, -0.1443479359149933, -0.5777239203453064, 0.04692975431680679, 0.01610640250146389, -0.6826488375663757, 0.7018227577209473, -0.8798500299453735, -0.8219815492630005, 0.18613694608211517, -0.28000572323799133, -0.7381503582000732, -0.25370684266090393, 0.6438646912574768, -0.17403395473957062, 0.06516223400831223, 0.5488022565841675, 0.17517930269241333, 1.0099555253982544, -0.4278407096862793, 0.20799893140792847, -1.4298772811889648, 0.2900615632534027, 0.4497114419937134, 0.7258549928665161, -0.10819076001644135, 0.21986213326454163, 1.2448430061340332, -0.8256425261497498, -0.8037031292915344, 0.6489945650100708, -0.22675564885139465, 0.4332936704158783, 0.21146170794963837, -0.7471565008163452, 0.10970499366521835, 0.6061800718307495, 1.1520099639892578, -0.13080672919750214, -0.28591683506965637, -0.6437861323356628, 0.3598332405090332, -0.4684072732925415, 0.3129107356071472, -0.3610188961029053, 1.1858800649642944, 0.8586834669113159, -0.5954038500785828, -0.5590359568595886, -0.2659120261669159, 0.45832714438438416, -0.5654654502868652, 0.1180390864610672, -0.16326002776622772, 0.36897698044776917, -0.40472865104675293, -0.5164494514465332, 0.2460404485464096, -0.0729692131280899, -0.4786686897277832, 0.2076711505651474, -1.309252381324768, -0.7410976886749268, -0.5002172589302063, 0.2825775742530823, -0.1691828966140747, 0.1332462877035141, -0.1994689702987671, -0.1710391640663147, -0.9459012150764465, -0.66248619556427, -0.037155598402023315, -0.14749455451965332, -0.02970055863261223, 0.9347957968711853, 1.46122407913208, 0.6748156547546387, -0.23951251804828644, -0.5496573448181152, 0.9322878122329712, -1.1339020729064941, -0.490321546792984, -0.1823890507221222, -0.6758778095245361, -0.34642666578292847], [-0.294297456741333, 0.9849588871002197, -2.4829342365264893, -0.35062623023986816, 1.2614811658859253, 0.32577645778656006, 1.340859293937683, -0.010169191285967827, 0.4539296627044678, 0.022292256355285645, -0.30646955966949463, -0.4606895446777344, -0.05950310081243515, 1.270057201385498, 1.1390721797943115, 0.5391178727149963, 1.1112853288650513, -0.6219075918197632, 0.5893509984016418, 0.6903173327445984, -0.6112375259399414, -0.6391729712486267, -0.022335929796099663, 0.40376564860343933, 0.036744337528944016, 0.5672711133956909, -1.8369044065475464, 0.014313464052975178, -1.0729660987854004, -0.9552651047706604, 0.3360471725463867, -1.1511493921279907, -0.06834288686513901, 1.0962802171707153, -1.5811002254486084, 0.031734999269247055, 1.957174301147461, 0.8091030716896057, 1.157585859298706, 0.30605900287628174, 2.0114455223083496, -0.003364583943039179, -0.5345317721366882, -1.146445870399475, -0.34996965527534485, -0.3411642611026764, 0.4957444369792938, -0.6816248893737793, 0.40048134326934814, -1.2264341115951538, 0.4859485924243927, -1.279980182647705, 0.8593239188194275, 0.7290857434272766, 1.67877995967865, -0.7767730355262756, 0.2857377529144287, 0.33195412158966064, 0.6528258919715881, -0.45701688528060913, 0.6526766419410706, -0.1940673589706421, -0.08654502034187317, 0.6933984160423279, 0.06944729387760162, -0.05775342881679535, -0.1834525316953659, 0.29254472255706787, 0.09422563016414642, -0.27999427914619446, 1.0313868522644043, 0.35851889848709106, -0.8044200539588928, 0.7612705230712891, -1.3842946290969849, 0.3977181613445282, 0.4886569678783417, 0.6645155549049377, 0.41459423303604126, 0.08128035068511963, -0.2486003041267395, -0.37433570623397827, 0.7721210718154907, -0.10716038197278976, -0.07090055197477341, 0.05329081416130066, 0.5567120313644409, -0.37482860684394836, -0.4430778920650482, 1.278422474861145, 0.49194252490997314, -0.15286986529827118, 0.034965574741363525, -0.15750712156295776, -0.5718221068382263, -0.33653077483177185, 0.003519628196954727, -0.5720184445381165, -1.1692434549331665, -0.287375807762146, -0.051065851002931595, -0.6588159203529358, -0.469814270734787, 0.15820001065731049, -1.1649837493896484, 1.1154847145080566, 0.23261012136936188, -0.6340736150741577, -0.26056402921676636, -0.19634641706943512, -0.3946586549282074, 0.5314737558364868, -0.7989981770515442, -0.843295693397522, -1.0019395351409912, 1.112951397895813, 0.8082189559936523, 0.08277805894613266, 0.5412709712982178, 1.0100234746932983, 0.32864999771118164, 0.05681268498301506, 0.010749970562756062, 0.7345442175865173, 0.52118980884552, 0.5181697607040405, -0.6838564276695251, -0.7558575868606567, 0.3054923117160797, -0.654350757598877, 0.7417227625846863, -0.692611813545227, 0.03770720586180687, 0.11886462569236755, -0.6677979826927185, 1.4412262439727783, 0.08678670972585678, -0.8582194447517395, 0.3796501159667969, -0.6127179861068726, 1.2155394554138184, -0.02924969419836998, -0.07955145090818405, -1.0542758703231812, -0.005696096923202276, -1.1712886095046997, 0.028824878856539726, -0.3706335723400116, -0.6578758358955383, 0.12732148170471191, -1.4962050914764404, 0.1986396461725235, 1.1990330219268799, 0.709351122379303, 0.5073480010032654, -0.015971677377820015, 0.040015242993831635, -0.05274417623877525, 0.7046456933021545, 0.03220728039741516, 0.5938267111778259, 0.281513512134552, -0.967643678188324, 0.7800909876823425, 0.11034785956144333, 0.1347183734178543, 0.20503848791122437, 1.3799721002578735, -0.2629888355731964, 0.5587570667266846, 0.0007447856478393078, 0.07203620672225952, 0.05041872337460518, 0.6921157240867615, 0.43999356031417847, -1.1059561967849731, 0.8096775412559509, -0.848170816898346, -1.3687057495117188, -1.1398831605911255, 0.3182772696018219, -0.2440148890018463, 0.33630144596099854, 0.18294717371463776, 0.3088099956512451, -0.7211920619010925, 0.5858455300331116, -0.6836537718772888, -0.41887032985687256, -0.6808134913444519, -0.14300522208213806, -0.07497849315404892, -1.0872621536254883, 0.00832337699830532, 0.2032497525215149, -0.6291077136993408, 0.4465736150741577, -1.0358242988586426, -0.1805913746356964, 1.1095941066741943, -0.21227560937404633, -0.21420538425445557, 0.17195236682891846, 0.5976065993309021, -0.6251026391983032, 0.7118856906890869, -0.4235232174396515, 0.8818439245223999, -0.4978562891483307, -0.18958905339241028, 1.0575860738754272, -0.4115425944328308, -0.2778879404067993, 0.06927180290222168, 0.5643416047096252, -1.162723422050476, 0.4379170536994934, 0.47338250279426575, -0.44152411818504333, 0.10834793746471405, -0.01438521221280098, 0.31606802344322205, 0.5037183165550232, -0.2096351534128189, 0.48317617177963257, 0.0677647590637207, -0.5572630167007446, -0.3076072037220001, -0.4600396156311035, -0.36600327491760254, -1.2508363723754883, -0.7361400127410889, 0.5867645144462585, 0.8608503341674805, -1.2786777019500732, 0.09974811226129532, 0.426354318857193, 0.641211986541748, 0.2535374164581299, 1.0854425430297852, 0.33857834339141846, 1.5361266136169434, -0.41111475229263306, -0.35870835185050964, -1.0090947151184082, 1.243775725364685, 0.807427704334259, -0.9826040863990784, 0.24371230602264404, 0.7409947514533997, 0.7598940134048462, 0.08578101545572281, 0.446550577878952, -0.5180661082267761, -0.36467376351356506, -0.30676281452178955, -1.394495964050293, 0.1676512062549591, 0.13599161803722382, 1.921829342842102, 1.2259734869003296, -1.5526167154312134, -0.266715943813324, 0.05379871651530266, 0.21806158125400543, -0.4141782820224762, -0.6530058979988098, -0.32654884457588196, 0.20521794259548187, 0.40974223613739014, 0.18734009563922882, 0.7607566714286804, -0.8190310597419739, 0.5651307702064514, -0.5032110214233398, -0.27753978967666626, -0.48091697692871094, 0.28209972381591797, -0.42410364747047424, 1.3617377281188965, -0.5408918261528015, -1.2790883779525757, 0.24854817986488342, 0.09232733398675919, 0.43811318278312683, 0.03417529910802841, -0.35757318139076233, 0.2075733244419098, 0.2539278566837311, -0.5426950454711914, 0.3257889747619629, 0.37861600518226624, 0.43242761492729187, 0.13578641414642334, 0.2718867361545563, 0.6765018701553345, 0.832183837890625, -0.5445266366004944, -0.6144790649414062, -0.42482462525367737, 0.3875982463359833, 1.4837777614593506, 0.11525435000658035, 1.0575026273727417, 0.7140464186668396, -0.12336879223585129, 0.10140789300203323, -0.6215750575065613, -0.38744306564331055, -1.1458619832992554, -0.8581308126449585, -0.8983962535858154, 0.208890900015831, 0.011652063578367233, 0.008127579465508461, 0.14120110869407654, -0.3363781273365021, 0.38906601071357727, 1.5752089023590088, -0.23328334093093872, -0.5041293501853943, 0.11726244539022446, -0.9643484950065613, -0.7473412156105042, 0.38894692063331604, 1.1114099025726318, -1.0013525485992432, -0.25292330980300903, -0.014621978625655174, -0.37123748660087585, 0.48242896795272827, -0.3130612373352051, -0.2858305275440216, -0.9149788022041321, -0.3421505391597748, 0.5180373787879944, 1.1914409399032593, -0.059424735605716705, -0.3009405732154846, -0.4010140597820282, 0.2185618132352829, 0.5564079880714417, -0.21476882696151733, -0.6475265026092529, 1.3530287742614746, -0.8882684111595154, -0.7969688177108765, -0.358165979385376, 0.5838065147399902, 0.6334252953529358, -0.5681118965148926, -0.4608999490737915, -0.30657047033309937, -0.705007791519165, -0.4647473990917206, -0.14665254950523376, 0.06151456758379936, 1.5235332250595093, 0.080681212246418, 0.3444789946079254, 1.292126178741455, -0.19369402527809143, 0.1226814016699791, -1.7483323812484741, 0.5359993577003479, 0.8820922374725342, 0.8264431357383728, -0.056913841515779495, -0.16390225291252136, 0.3883691132068634, 0.3870411217212677, 0.324941486120224, 0.2649611234664917, 1.1195954084396362, -0.5044069290161133, 0.06657465547323227, -0.5433419346809387, 0.5773540139198303, -0.24211625754833221, -0.7925764918327332, 0.45644205808639526, -0.13149183988571167, -0.946688175201416, -0.36276593804359436, 1.1661540269851685, -0.4192174971103668, -0.01212373748421669, -0.6501342058181763, 0.2656014561653137, 0.8512361645698547, -0.8638709187507629, 0.8601223230361938, -0.43659108877182007, -0.07080432772636414, 0.3122963309288025, -1.1496670246124268, 0.06930308043956757, -0.07057192176580429, -0.4216388463973999, 0.5850290060043335, -0.6754624843597412, 0.5144742727279663, 0.40636956691741943, 1.0328540802001953, 0.045147303491830826, -0.785398542881012, 0.4894663393497467, -0.04451780021190643, 0.22321942448616028, -0.15566571056842804, 0.6457779407501221, 0.921263575553894, -0.6515629887580872, 0.08333070576190948, -0.348125159740448, -0.09171368181705475, -0.09852451086044312, -0.5057462453842163, 0.2654823660850525, 0.10868332535028458, -0.37852558493614197, -0.12666796147823334, -0.1337822824716568, -0.18688957393169403, 1.1941111087799072, 0.3760424256324768, 0.21984437108039856, 0.22302812337875366, -0.22353853285312653, -1.1239542961120605, 0.6503067016601562, 0.18730077147483826, 0.05306687206029892, -0.8435320258140564, 0.2798854410648346, 0.3260034918785095, -0.11193385720252991, 0.2708168923854828, -0.10050348192453384, 0.8159232139587402, -0.5234367847442627, -0.680482804775238, -0.29223984479904175, 0.41958096623420715, 0.7229635715484619, 1.0879924297332764, 0.1807544231414795, -0.465326189994812, -0.9011367559432983, 0.5644262433052063, -1.2322642803192139, -0.08532629907131195, 1.3602302074432373, 0.6863709688186646, 1.5947662591934204, -1.5751111507415771, -0.9180880188941956, 0.574115514755249, -0.055583782494068146, 0.38550886511802673, 0.8004748225212097, 0.009224208071827888, -0.02673451416194439, 0.2990119457244873, -0.19221371412277222, -0.1304648220539093, -0.6501814126968384, 0.2142970710992813, 0.05112231522798538, 0.7971874475479126, -0.8962085247039795, 0.849563717842102, -0.6886099576950073, 0.06147921830415726, 0.08371727168560028, -0.47633492946624756, 0.013942766934633255, 0.5146242380142212, -0.2144792526960373, 1.903415322303772, -0.8693971037864685, -0.9472066164016724, 0.16989430785179138, -1.0218989849090576, 0.5870518088340759, 0.3546561896800995, -0.49619337916374207, -0.2676297724246979, 0.14957775175571442, -0.5666429400444031, 1.02489173412323, -0.6898539066314697, -0.5849893093109131, -1.2127848863601685, -1.4451854228973389, 0.9738461971282959, 0.9096874594688416, 1.0077296495437622, -0.22537174820899963, 0.03820088878273964, 0.13025391101837158, -0.08228164166212082, -0.29023271799087524, 0.423575222492218, -0.13565801084041595, -0.2270747870206833, 0.09925075620412827, -1.9476937055587769, -0.25265663862228394, 0.19101901352405548, 0.2390020191669464, 0.012512763030827045, 0.7266431450843811, 0.8195861577987671, 1.4550570249557495, 0.09571398049592972, -0.30964425206184387, 0.0943063497543335, -0.7041123509407043, 0.5463906526565552, 0.856090784072876, -0.3038899004459381, -0.7617571949958801, -0.2707825005054474, -0.8039973378181458, 0.3740907907485962, -0.3646966218948364, -1.4660612344741821, 1.0388156175613403, 0.22693851590156555, 0.6903011798858643, 0.0548708550632, -0.3549013137817383, 0.6623106598854065, 0.17172963917255402, -0.26916924118995667, -1.2306557893753052, 0.7869227528572083, 0.43661361932754517, 0.2897043228149414, 0.4080413281917572, 0.9256974458694458, -0.0732736811041832, 0.3533158302307129, 0.3655758798122406, 0.7627233862876892, 0.6244168877601624, 0.313075453042984, 0.3876994848251343, -0.4741816818714142, 0.24821633100509644, -0.08068184554576874, -1.4023172855377197, -0.5491117835044861, 0.500394344329834, -0.1441572606563568, -0.9142904281616211, -0.7153770327568054, -0.26053276658058167, -0.3274611830711365, -0.5280057787895203, -0.303016722202301, 0.8256589770317078, 0.022441616281867027, -0.38779217004776, 0.015396837145090103, -0.390908420085907, 0.21827588975429535, -0.33591121435165405, 0.41844773292541504, 0.8474816679954529, -2.096083641052246, -0.2281646728515625, -0.00809661764651537, -1.0608603954315186, -0.7409272789955139, -0.7073086500167847, 0.5627982020378113, -0.8126484751701355, -1.3231780529022217, -1.0069375038146973, -0.4237821698188782, 1.1222596168518066, -0.434542179107666, 1.1520304679870605, 0.6385204792022705, -1.7981914281845093, 0.6249082684516907, -0.3629106283187866, -1.1686615943908691, -0.4256244897842407, -1.086061954498291, 0.37490326166152954, -0.3185631036758423, 0.11847055703401566, -0.5364798903465271, 0.672408401966095, -1.9681025743484497, -1.2371457815170288, -1.0294474363327026, -0.39334240555763245, 0.6621471643447876, 0.6150094866752625, -0.699198842048645, 2.213083267211914, 0.3635847568511963, 0.03689894452691078, 0.51919025182724, 0.4505397379398346, -0.19790449738502502, 0.19036409258842468, -0.05005311220884323, 0.9854609966278076, 0.8376280665397644, 0.5936527848243713, 0.302194207906723, 0.9720754027366638, 0.3642639219760895, -0.260974258184433, -0.5202882289886475, -0.2645062208175659, -0.12308533489704132, 1.0067505836486816, -0.47209006547927856, -0.8243107795715332, -0.4099988639354706, 0.197118878364563, -1.2200393676757812, -0.29320472478866577, 0.26190197467803955, -0.5074003338813782, 0.22311994433403015, -0.23383967578411102, 0.12803760170936584, -0.46403056383132935, 0.783579409122467, 0.08380821347236633, -0.17978709936141968, -0.44670674204826355, 0.7097876667976379, 0.11974149197340012, -1.125821828842163, 0.41411536931991577, 0.49385055899620056, -0.2858787775039673, -0.435291588306427, -0.25365403294563293, 1.0354466438293457, 0.242187038064003, -0.31683284044265747, 1.3419044017791748, 0.39558809995651245, 0.026815146207809448, -0.1930892914533615, 0.594946563243866, 0.6155312657356262, 0.7459695339202881, 0.02748921513557434, 0.14824801683425903, -0.9520297646522522, 1.3178194761276245, -0.05967262387275696, 0.3985149562358856, -0.567038893699646, 0.19630679488182068, -0.7724217772483826, 0.550002932548523, 0.7246047258377075, -1.883915662765503, -0.28574109077453613, 0.9838868975639343, -0.04134387895464897, -0.22357122600078583, -0.15857218205928802, 1.4656673669815063, -0.6783026456832886, -0.2727908790111542, 0.5131208896636963, 0.01670638471841812, -0.833112359046936, 0.5311478972434998, 0.3021025061607361, 0.03947567939758301, -0.41755884885787964, -0.47329598665237427, -1.2935523986816406, 0.06680058687925339, -0.28392133116722107, -0.32199564576148987, 0.8985700011253357, -0.754708468914032, -1.157322645187378, 0.3085322678089142, 0.4902791976928711, -1.04570472240448, 0.415479451417923, -0.2558830976486206, -0.13294164836406708, -0.3814654052257538, 0.5428376197814941, -1.0232514142990112, 1.2385926246643066, 0.25488343834877014, 0.478882372379303, -0.7464762330055237, -0.3585323691368103, 0.2655653655529022, 0.3005198538303375, 0.08439383655786514, -0.4417092204093933, 1.4086132049560547, -0.3107270300388336, -1.0150545835494995, 0.43514445424079895, 0.14545349776744843, -0.26906463503837585, 0.41448974609375, -1.0630682706832886, 0.0024972744286060333, 0.40691304206848145, 1.1610480546951294, -0.502266526222229, -1.0862034559249878, -0.9459079504013062, -0.1128949373960495, -0.5569848418235779, 0.8059195280075073, 0.0885547325015068, 0.3906518220901489, -0.04563690721988678, -0.3571245074272156, -0.04053832218050957, 0.08333522826433182, 0.25686508417129517, -0.043954815715551376, 0.5142253041267395, 0.624173104763031, -0.27651020884513855, -0.2516382038593292, -0.5830267667770386, 0.004406759515404701, -0.5939382910728455, 0.02211647294461727, 0.21315138041973114, -0.4615631699562073, -0.9036324620246887, -0.7770985960960388, 0.8610363602638245, 0.5282672047615051, -0.06500931829214096, -0.16598257422447205, 0.601161777973175, -0.7464743852615356, 0.7074688076972961, -0.13892638683319092, 0.18787281215190887, 0.4548701345920563, 0.23814068734645844, 1.333891749382019, 0.8501226305961609, 0.4345804750919342, -0.6333063244819641, 0.2256319224834442, -0.7353410720825195, -0.3133803606033325, -0.4921853244304657, -0.38040077686309814, -0.43821388483047485], [0.380515456199646, 0.8804630637168884, -1.4909257888793945, -0.6855615973472595, 0.9061470627784729, -0.7268432974815369, 1.2823817729949951, 0.21898317337036133, 0.2627768814563751, -0.2525000274181366, -1.1043661832809448, -0.21538974344730377, 0.5861181616783142, 0.7929779887199402, 0.502707302570343, 0.9689315557479858, 0.9376448392868042, -0.8000574707984924, 1.054359793663025, 1.4539192914962769, 0.35133615136146545, -0.4979341924190521, -0.0013332185335457325, -0.18221430480480194, -0.23708690702915192, -0.45113417506217957, -0.7293152213096619, -0.19685649871826172, -0.9820813536643982, -1.0188915729522705, 1.0389575958251953, -0.5845215320587158, 0.2930868864059448, -0.5682390332221985, -1.3696377277374268, -0.2220178246498108, 1.828224539756775, 0.8636540174484253, 0.7139690518379211, 0.10388868302106857, 1.810598611831665, -0.17397554218769073, -0.5505977272987366, -2.340137004852295, 0.4043519198894501, -0.10110463947057724, 1.620195746421814, -1.2682005167007446, 0.14595988392829895, -0.6567569375038147, 0.22148169577121735, -0.44075214862823486, -0.010679122060537338, 1.0661025047302246, 0.7114951014518738, -1.0142728090286255, 1.153212547302246, 0.38948750495910645, 0.6360083222389221, -0.8896535038948059, 0.27577340602874756, -0.07662127166986465, -0.7466456890106201, 1.175345540046692, -0.6793477535247803, -0.370024710893631, 0.4205104112625122, 0.46266865730285645, -0.22402392327785492, 0.038834989070892334, 0.2243669033050537, 0.9807053804397583, -0.2892197072505951, 0.8385677933692932, -1.5426074266433716, 0.3242179751396179, 0.6891577839851379, 0.6984122395515442, 0.5239061713218689, 0.558983325958252, -0.8169179558753967, -0.12844742834568024, 0.4177889823913574, 0.28155630826950073, 0.19998124241828918, 0.5990858674049377, 1.0669690370559692, -0.5544193387031555, -0.1349601447582245, 1.9012364149093628, 0.35734620690345764, -0.31525397300720215, 0.7896724343299866, 0.08556165546178818, -0.36465537548065186, -0.505314290523529, 0.6121199131011963, 0.10121165961027145, -1.19119131565094, -0.2673873007297516, -0.6668723225593567, -0.9460668563842773, -0.0007552066817879677, -0.0841992124915123, -0.06960447877645493, 1.2058618068695068, 0.6953808665275574, -0.34107038378715515, -0.7915000319480896, -0.06913016736507416, -0.19290447235107422, -0.18011866509914398, -0.33414366841316223, -0.4546630382537842, -0.5267885327339172, 0.5305677652359009, 1.6493406295776367, -0.869827151298523, 0.27036532759666443, 0.7425394058227539, -0.1404602825641632, -0.7384419441223145, -0.06280124187469482, 0.32236871123313904, 0.3593987226486206, -0.32623758912086487, -1.1682515144348145, -0.2516798973083496, 0.7485212087631226, 0.010609176009893417, 0.3623979389667511, 0.1464129090309143, -0.034834131598472595, 1.097908854484558, -0.7403415441513062, 0.8699283599853516, -0.2796073257923126, -0.7846060395240784, -0.26970601081848145, -0.6058712005615234, 0.6073203086853027, 0.0013697431422770023, -0.4059005081653595, -0.018668660894036293, 0.1448889672756195, -0.5691009163856506, 0.3855118751525879, -0.10874725878238678, -0.8647156953811646, 0.3301503658294678, -0.6121878623962402, -0.3887997567653656, 0.0713413879275322, 0.16158710420131683, 0.5900927186012268, -0.23168794810771942, 0.4801318943500519, 0.18833917379379272, 0.3329924941062927, 0.3231028616428375, 0.5452026724815369, -0.35682782530784607, -0.8622092604637146, 0.6241135597229004, 0.6633266806602478, -0.5281600952148438, 0.06118909269571304, 0.9574565291404724, 0.4730546772480011, 0.6407048106193542, -0.02396230213344097, -0.4106181859970093, -0.32198652625083923, 0.49778440594673157, 0.3420783281326294, -0.18301276862621307, 1.2500168085098267, -0.7153200507164001, -1.0957117080688477, -0.9634302854537964, 0.9227604866027832, 0.5852691531181335, 0.8322737812995911, -0.1464492231607437, 0.5185145735740662, -0.3831997513771057, 0.6353046298027039, -0.013508561998605728, -0.4222088158130646, -0.5947442650794983, -0.3205353617668152, -0.24232681095600128, -0.42575013637542725, 0.4284968376159668, -0.3998948037624359, -0.8261156678199768, 0.5683667063713074, -1.1815776824951172, -1.1405763626098633, -0.18585845828056335, -0.24012848734855652, -0.3439912796020508, -0.38472771644592285, 0.521886944770813, -0.43908968567848206, 0.5807127356529236, -1.0579438209533691, 0.30181798338890076, -1.1726102828979492, -0.0839628204703331, 1.2295342683792114, 0.33507728576660156, -0.5610499978065491, 0.30615147948265076, -0.24707244336605072, -0.9782696962356567, 0.7350807785987854, 1.1426507234573364, -0.44268056750297546, 0.09705371409654617, -0.3358612358570099, 0.12507212162017822, 0.8843255043029785, 0.3870847225189209, 0.8814881443977356, -0.5246861577033997, -0.3227291405200958, -1.2732045650482178, -0.7827884554862976, -0.3084464967250824, 0.06648648530244827, -0.8350538015365601, 0.4869662821292877, 0.1055218055844307, -0.7360489368438721, 0.4449334740638733, -0.08869795501232147, 0.8745348453521729, 0.46119824051856995, 1.0279731750488281, 0.5121182203292847, 0.6251653432846069, -0.008415904827415943, -0.33679598569869995, -0.39728716015815735, 0.5832586884498596, 0.993827223777771, -0.491152286529541, 1.0124990940093994, 1.2139900922775269, 0.9752500653266907, -0.3843807578086853, 0.2985367476940155, -0.6568841338157654, -0.27916619181632996, -1.0253945589065552, -0.1877128630876541, 0.5564565658569336, -0.3529767394065857, 1.9145365953445435, 0.10897457599639893, -1.0663623809814453, -0.3109776973724365, 0.7690114974975586, -0.5470817685127258, -0.6306325197219849, -0.8592293858528137, -0.9052028059959412, -0.012885666452348232, 0.19559191167354584, 0.11656305193901062, 0.33720386028289795, -0.00418481370434165, 0.9084384441375732, -0.2804130017757416, -0.8068053722381592, -0.8207371234893799, -0.5410204529762268, -0.3339082896709442, 1.2243402004241943, 0.22421300411224365, -0.6776334643363953, -0.7124641537666321, 0.5848150849342346, 0.29638180136680603, 0.38150742650032043, -0.7163451910018921, -0.1955324113368988, -0.05124673992395401, 0.5580536723136902, -0.17403288185596466, 0.27072590589523315, -0.3838023245334625, -0.2496391385793686, 0.07920364290475845, 0.46341267228126526, 1.218241810798645, -0.9877119064331055, -1.1007274389266968, -0.07891333848237991, -0.08397480845451355, 1.6293941736221313, 0.37559717893600464, 1.0169485807418823, 0.7747072577476501, 0.14352552592754364, -0.5358700156211853, -0.17308825254440308, -0.7152697443962097, -0.46817710995674133, -0.3110097050666809, -0.6445677876472473, -0.06455469876527786, -0.06762337684631348, -0.3678143322467804, 0.09005807340145111, -0.11847279220819473, 0.014550640247762203, 0.8147478699684143, -0.3264904320240021, -0.45383980870246887, 0.15668520331382751, 0.053137823939323425, -0.9461759924888611, 0.27675795555114746, 1.169603705406189, -0.7974447011947632, -0.5182260870933533, 0.1561117321252823, 0.32179075479507446, -0.09441564232110977, 0.2986644208431244, 0.5698422193527222, -1.3831018209457397, -0.9465277791023254, -0.45971086621284485, 1.4294030666351318, -0.5291990041732788, 0.4961625337600708, 0.19985730946063995, -0.09663521498441696, 0.7932934761047363, 0.4320952594280243, -0.4880329966545105, 1.0107359886169434, 0.0920543298125267, -0.24329113960266113, -0.41172415018081665, 0.4526417851448059, 0.606206476688385, -0.26000142097473145, -0.26160237193107605, -0.33627477288246155, -0.6361537575721741, 0.20060399174690247, 0.17523443698883057, -0.2838890254497528, 0.939533531665802, 0.15049636363983154, 0.4345155954360962, 1.2349021434783936, -0.7701282501220703, 0.5982180237770081, -1.4709185361862183, 0.6453903913497925, 0.8395342826843262, 1.3864845037460327, -0.011748791672289371, -0.06423340737819672, 0.42093583941459656, 0.26443782448768616, -0.31291311979293823, -0.06800166517496109, 1.3633674383163452, -0.17536306381225586, 0.8445192575454712, -0.41747304797172546, 0.2562689781188965, 0.3817981779575348, -0.8054807186126709, 0.4828464984893799, 0.32449963688850403, -1.3870880603790283, -1.0882009267807007, 0.7623897194862366, 0.11332903802394867, -0.19427365064620972, -0.3356446921825409, -0.1729428470134735, 0.7293646335601807, 0.09503158181905746, 0.0398421473801136, -0.7988200187683105, -0.3145158290863037, 0.10507123172283173, -0.5993289351463318, -0.3213527500629425, -0.22124381363391876, 0.09124349802732468, 0.6250158548355103, -1.114362359046936, 0.3836635947227478, -0.6768244504928589, 0.26747316122055054, 0.4519061744213104, -1.0416250228881836, 0.27780681848526, -0.6481860280036926, -0.021282827481627464, -0.06357023119926453, -0.5949326753616333, 1.1796358823776245, -0.24407628178596497, -0.26227614283561707, -0.2120063155889511, -0.01277270819991827, -0.1208273321390152, -0.6291250586509705, -0.2079911231994629, -0.12660180032253265, -0.6410158276557922, 0.010513583198189735, 0.3330850899219513, 0.4793277084827423, 1.9251688718795776, 0.05010282248258591, 0.2544618546962738, -0.1428215503692627, 0.3376884460449219, -1.3067963123321533, 0.29155436158180237, 0.2890368402004242, 0.40345874428749084, -0.07342074811458588, -0.24257011711597443, 0.30945390462875366, -0.4294366240501404, 0.15785279870033264, -0.7935309410095215, 0.2719648778438568, -0.32791948318481445, 0.10370580852031708, 0.26346078515052795, 0.5525121092796326, 1.0425935983657837, 0.47702136635780334, -0.2015419453382492, -0.691848635673523, -0.7813102006912231, -0.15673498809337616, -1.0384663343429565, 0.6745771169662476, 0.8027405142784119, 0.14303939044475555, 1.45142662525177, -1.4439972639083862, -0.44035524129867554, 0.4207761585712433, 0.4754331409931183, 0.4793415665626526, 0.8878300189971924, -0.07416758686304092, 0.6468927264213562, 0.8814554214477539, 0.3243592381477356, -0.4149910807609558, 0.16816464066505432, 0.8173760771751404, -0.11745614558458328, 0.4950670897960663, -0.6254593729972839, 0.3322930634021759, -1.1486597061157227, 0.28271108865737915, 0.19735582172870636, -0.23713542520999908, 0.2130281627178192, 0.3350238800048828, 0.9529521465301514, 1.4990915060043335, -0.8236428499221802, -0.8511589765548706, 0.5840552449226379, -0.9817056655883789, -0.054718952625989914, -1.0795010328292847, -0.43009814620018005, -0.7449175715446472, -0.6532590985298157, -0.32353565096855164, 0.6102994084358215, -0.26191776990890503, 0.12904921174049377, -0.5604975819587708, -0.6968564987182617, 0.856582522392273, 0.45664918422698975, 1.3425110578536987, 0.6427993178367615, 0.3436552882194519, 0.2949742078781128, 1.0623104572296143, -0.7546831369400024, -0.24014966189861298, 0.19517642259597778, 0.004160200245678425, -0.417176216840744, -0.656920850276947, -1.0542649030685425, 0.42655158042907715, 0.752954363822937, -0.31986016035079956, -0.18901130557060242, 1.0564343929290771, 1.1290156841278076, -0.5084846019744873, -0.29130348563194275, 0.28874167799949646, -0.6897023320198059, 0.14555616676807404, -0.12736818194389343, -0.2547672390937805, -0.32517534494400024, -0.5586408972740173, -0.9736126661300659, 1.0599088668823242, 0.21176068484783173, -0.6232684254646301, 0.5288231372833252, 0.10362985730171204, 1.1036792993545532, 0.7774884700775146, -0.7943432927131653, 0.6767989993095398, -0.41107168793678284, -0.0712549090385437, -0.9401594996452332, 0.4457865357398987, -0.2342931479215622, 0.15965934097766876, -0.03236541897058487, 0.13908639550209045, 0.6062063574790955, -0.045884065330028534, -0.1813979297876358, 0.14268898963928223, 0.9427304863929749, 0.3307819962501526, -0.2715981900691986, -0.3622024357318878, 0.06637313216924667, -0.5412538647651672, -0.7742016911506653, -0.9612538814544678, 1.0783880949020386, 0.2844058871269226, 0.025058791041374207, -0.40080526471138, 0.368123859167099, -1.0514799356460571, -0.4336882531642914, -0.8126972913742065, 0.4282751977443695, -0.79441899061203, 0.08440425992012024, -0.7950516939163208, -0.15237665176391602, -0.5641865134239197, -0.34908974170684814, 0.5007704496383667, 0.3170030415058136, -1.7322074174880981, 0.4517403841018677, 0.11776524037122726, -0.6082342267036438, -0.2900397777557373, -0.6543685793876648, 0.1107943058013916, -1.3670426607131958, -0.9732155799865723, -1.3689405918121338, 0.09624088555574417, 0.7370638251304626, -0.5470309853553772, 0.6268671154975891, 1.2096343040466309, -1.11283278465271, 0.5687495470046997, -0.5508925914764404, -0.7967149019241333, -0.22969818115234375, -0.6286446452140808, 0.852053165435791, 0.3979422152042389, 0.6688953638076782, -0.007479977793991566, 0.762019693851471, -1.034530758857727, -0.9425898790359497, -0.7108405828475952, -0.7912149429321289, 1.232108235359192, 0.8550269603729248, -0.6128141283988953, 1.8068584203720093, 0.8022470474243164, -0.3943129777908325, -0.1758069097995758, 0.16587455570697784, -1.265580415725708, 0.4651687443256378, 0.6143988370895386, 0.13684237003326416, 0.4038436710834503, 1.297255039215088, 0.4725302457809448, 0.4025717079639435, 0.512048602104187, 0.763553261756897, 0.1437598615884781, -0.2201586812734604, -0.15290409326553345, 0.38759511709213257, -0.9897051453590393, -0.729276716709137, 0.1391787976026535, -0.5387192964553833, -1.0969864130020142, 0.5278986096382141, 0.372945636510849, -0.7993736267089844, 0.157024547457695, -0.796604335308075, 0.7295801639556885, -0.737803041934967, 0.717494785785675, 0.15721778571605682, -0.40380388498306274, -0.3222275376319885, 0.6991022229194641, 0.12866665422916412, -1.706404209136963, 0.46125537157058716, -0.025702357292175293, -0.6242182850837708, -0.015784963965415955, 0.5879354476928711, -0.2723785638809204, 0.36959192156791687, -0.6058239340782166, 1.1473171710968018, 1.730825662612915, -0.6526924967765808, -0.4145863950252533, 0.4341963231563568, 0.4252454340457916, 0.3611930310726166, -0.06805938482284546, -0.6874803304672241, -1.026660442352295, 1.2459497451782227, 0.4818025529384613, 0.2424306571483612, -0.6674546599388123, 0.010486011393368244, 0.036629870533943176, 0.27340421080589294, 1.235921859741211, -1.1624847650527954, -0.373965322971344, 0.8974652886390686, 0.21238337457180023, 0.18683011829853058, 0.863360583782196, 1.0079559087753296, 0.299417108297348, -0.5423943400382996, 0.15514689683914185, 0.9038910269737244, -0.6228816509246826, 0.5174164175987244, 0.4764711260795593, 0.023560473695397377, -0.0846969410777092, -0.949072003364563, -1.3680810928344727, 0.027259964495897293, -0.09300407767295837, -0.5861075520515442, 0.35085752606391907, -1.3860527276992798, -0.42122820019721985, 0.20628497004508972, 0.12633836269378662, -0.5107364058494568, -0.9291707873344421, 0.044725947082042694, -0.5594902634620667, 0.1427750438451767, 0.6296548843383789, -0.007627992425113916, 1.1292445659637451, -0.4531199336051941, -0.33722248673439026, -1.4888266324996948, -0.5820279121398926, 0.1420775055885315, 0.17508697509765625, -0.4429945945739746, 0.062009476125240326, 0.834658145904541, -0.03644571080803871, -0.472348153591156, -0.06414664536714554, -0.2567155659198761, -0.09425817430019379, -0.3805507719516754, -0.9785142540931702, 0.12304040789604187, 0.35453346371650696, 0.2157105952501297, 0.18181227147579193, -0.8870770335197449, -1.2922558784484863, 0.2929213345050812, -0.34977513551712036, 0.01307774893939495, -0.5650293231010437, 0.5785147547721863, 0.6212148070335388, -0.053207483142614365, -0.28636232018470764, -0.6859336495399475, 0.435686320066452, 0.3359244763851166, 0.26862961053848267, 0.14893804490566254, -0.046275749802589417, -0.5079648494720459, -1.185544490814209, 0.3566269278526306, -0.39490294456481934, -0.6293763518333435, 0.228080153465271, -1.495822548866272, -0.7986130118370056, -0.8882039785385132, 0.014116769656538963, 0.9018784761428833, -0.06460661441087723, -0.09510685503482819, -0.2892525792121887, -1.1246072053909302, 0.4533941149711609, 0.2452293187379837, -0.03403860330581665, 0.5063837766647339, 1.4682809114456177, 1.7461470365524292, 0.8350427746772766, 0.19246292114257812, -0.13674624264240265, 0.3460860848426819, -0.4961531460285187, -0.325196772813797, -0.9871131777763367, 0.15585869550704956, -0.40213626623153687], [0.6463314890861511, 2.217033863067627, -1.9859415292739868, -0.8176897764205933, 0.8060814738273621, 0.1432967633008957, 2.0467770099639893, -0.03600826486945152, 0.3088098466396332, 0.2834240794181824, -0.5967426300048828, -0.3326491415500641, 1.704366683959961, 1.1165496110916138, 0.2297755628824234, 0.5368732810020447, 0.7432666420936584, -0.15761835873126984, 1.7061123847961426, 1.266566276550293, -0.6787086129188538, -0.20638218522071838, -0.3044768273830414, 0.13159514963626862, 0.1985756754875183, 0.44229552149772644, -0.8708475828170776, -0.07677987962961197, -1.0285520553588867, -1.229278802871704, 0.5060560703277588, -0.7436637878417969, 0.35495415329933167, 0.2435232400894165, -0.8678478598594666, -0.34761419892311096, 1.6437677145004272, 1.7919447422027588, 1.129785418510437, 0.32698938250541687, 2.466961145401001, 0.1861858367919922, -0.19483253359794617, -1.0848863124847412, 0.45992955565452576, 1.073733925819397, 0.07313542813062668, -1.6277852058410645, 0.2179228663444519, -0.09478945285081863, 0.3802812993526459, -0.17953671514987946, 1.226615071296692, 0.9613892436027527, 0.6265912652015686, 0.6035524606704712, 1.0501114130020142, 0.8942671418190002, 1.237517237663269, 0.45843595266342163, 0.5846251845359802, 0.2566106617450714, 0.2535499930381775, 0.30404582619667053, 0.7757208347320557, -0.49613383412361145, 0.4726012647151947, 0.05451377481222153, 0.293274462223053, -0.044943612068891525, 0.12178964167833328, -0.28162336349487305, -0.5971421599388123, 0.47316259145736694, -1.4078806638717651, 0.6970593929290771, 1.0756813287734985, 0.9960713386535645, 0.11286008358001709, 0.23660925030708313, -1.0638138055801392, -0.16980883479118347, 0.3992581069469452, -0.3818866014480591, 0.5558611154556274, -0.2806702256202698, 0.1448182314634323, -0.29741954803466797, -0.7296959757804871, 2.2687900066375732, 0.20745787024497986, -0.16552069783210754, -0.20736010372638702, -0.1234801709651947, -0.24552439153194427, -0.3353898525238037, 0.064927838742733, -0.2618619501590729, -0.9144207835197449, -0.4662512540817261, -0.4420839846134186, -0.31961292028427124, 0.07942222058773041, 0.6882199048995972, 0.18864946067333221, 2.1417574882507324, -0.026336882263422012, -0.13240104913711548, -1.497281789779663, -0.2437809258699417, -0.4808898866176605, -0.26208460330963135, -1.0660439729690552, -0.6731483340263367, -0.7221249341964722, 0.6743668913841248, 1.3331880569458008, -0.13372120261192322, -0.014708630740642548, 1.1166611909866333, -0.45739543437957764, -0.13213318586349487, 0.30545657873153687, 0.034869011491537094, 0.5476132035255432, 0.7756628394126892, -0.6168256998062134, -0.09308545291423798, 0.38129329681396484, -0.12274198234081268, 0.6607900857925415, 0.21133574843406677, 0.14719276130199432, 0.4941917955875397, -0.7286136150360107, 0.8751069903373718, -0.06262173503637314, -0.676918089389801, -0.06732091307640076, -0.6190927028656006, 0.1686353236436844, -1.0453755855560303, -0.9027175903320312, -0.9237833023071289, -0.356152206659317, -0.9177513122558594, 0.814233124256134, 0.09549464285373688, -0.521445095539093, 0.29452234506607056, -0.6016185283660889, -0.06829048693180084, -0.06276160478591919, 0.25779709219932556, 0.1554265171289444, -0.09090617299079895, 0.5752056241035461, 0.7717650532722473, 0.753940224647522, 0.5608004927635193, 0.38833168148994446, 0.329290509223938, -0.8262737393379211, -0.11822310090065002, -0.2382439225912094, -0.37630775570869446, 0.6876444816589355, -0.10352355986833572, 0.07243753969669342, 0.799547553062439, -0.5661849975585938, -0.34628981351852417, -0.16331689059734344, 0.77735435962677, 0.4399683177471161, -1.0162278413772583, 1.6659643650054932, -0.5927095413208008, -1.1586556434631348, -1.8158483505249023, -0.06059974804520607, -0.4050838053226471, 0.44067713618278503, -0.1315373182296753, 0.03229500353336334, -0.804429829120636, -0.1285933405160904, -0.05138123407959938, -0.4459565281867981, -0.7494386434555054, -0.5848419070243835, 0.3603503406047821, -1.8247826099395752, 0.5744513869285583, -0.24428382515907288, -0.6672115325927734, 0.7235956192016602, -0.7775393128395081, -1.6008366346359253, 0.632860004901886, 0.4525028169155121, -0.16047652065753937, -0.8395864963531494, 0.5478984713554382, -0.6621560454368591, 1.0985876321792603, -1.1848607063293457, 0.5598607063293457, -0.6381790637969971, 0.24412588775157928, 0.6260877251625061, 0.9449611306190491, -0.5170143246650696, 0.7884307503700256, 0.1546315997838974, -0.9928730130195618, 0.24625420570373535, 0.061031829565763474, -0.2155001163482666, 0.2823575735092163, 0.19468113780021667, -0.40525543689727783, 0.2570341229438782, 0.4931272566318512, 0.3742339015007019, 0.11057081073522568, -1.1689672470092773, -0.271377295255661, -0.8052434325218201, -0.12042688578367233, -0.601125180721283, -1.200927972793579, 1.0380345582962036, 0.8484737277030945, -0.839139461517334, 1.0032784938812256, -0.21813753247261047, -0.15360873937606812, 0.5017044544219971, 1.2728040218353271, 0.5716321468353271, -0.015748921781778336, -0.38700851798057556, -0.9083914160728455, -0.580584704875946, 0.46064674854278564, 0.5163466930389404, -0.4190610349178314, 0.8905637264251709, 1.1212167739868164, 0.6458556056022644, -0.3932957947254181, 0.13458389043807983, 0.2305212765932083, 0.16878214478492737, -1.2335708141326904, -0.3400450646877289, -0.20226150751113892, -0.06876112520694733, 1.8642133474349976, 0.6509633660316467, -1.7395864725112915, -0.22159022092819214, -0.5100565552711487, -0.20082315802574158, -0.44005778431892395, -0.7066136002540588, -0.503054678440094, 0.1454107165336609, 0.8182635307312012, -0.008511872962117195, 0.48372605443000793, -0.6621459126472473, 0.2573443651199341, -0.6828444600105286, -0.36615321040153503, -0.30109158158302307, 0.1340627670288086, -0.241446390748024, 1.1526457071304321, 0.6827200651168823, -1.3034453392028809, -1.2397664785385132, -0.05005471408367157, 0.6549842953681946, 0.5785756707191467, -0.3864629566669464, 1.1216105222702026, 0.4470759928226471, 0.03778820484876633, 0.6332193613052368, 0.596998929977417, -0.18368354439735413, -0.4362822473049164, -0.7511812448501587, 1.021031141281128, 0.6720985770225525, -1.7194703817367554, -0.47715112566947937, -0.6021714806556702, 0.5470523238182068, 1.6248024702072144, 0.9447598457336426, 0.6848503947257996, -0.21505597233772278, 0.42972350120544434, -0.48238101601600647, -0.15394073724746704, -0.4648478925228119, -0.5898407697677612, 0.30542248487472534, -0.6148120760917664, -0.24196399748325348, 0.117125004529953, -0.3090571165084839, 0.10054240375757217, -0.43936899304389954, 0.3887973427772522, 1.1210694313049316, -0.4214249551296234, -0.9190340042114258, -0.9596695303916931, 0.11099953949451447, -1.6177698373794556, 0.7261480689048767, 0.33456388115882874, -0.7093393206596375, -0.3602796494960785, 0.12339404970407486, -0.4532383680343628, 1.0824036598205566, -0.13558568060398102, 0.12245312333106995, -0.6623136401176453, -1.0126051902770996, -0.06393910199403763, 1.0852603912353516, 0.02700675278902054, 0.03901980072259903, -0.5233587622642517, 0.5678070783615112, 0.5167310833930969, 0.11896359920501709, -0.7175685167312622, 0.7237058877944946, -0.08873584866523743, -0.7045019865036011, -0.34841838479042053, 0.27270832657814026, 0.3916851282119751, -0.1572946459054947, -0.06996288150548935, 0.40070173144340515, -0.40387266874313354, -0.039145294576883316, 0.5931557416915894, 0.40859538316726685, 0.7484725117683411, 0.08354688435792923, -0.13115759193897247, 1.0985316038131714, 0.2415717989206314, 0.2504545748233795, -1.868651270866394, 0.9924039244651794, 0.8310431838035583, 0.10767021030187607, 0.757088303565979, -0.31673845648765564, 0.26177892088890076, 0.016235314309597015, -0.2130182832479477, -0.2936716079711914, 1.0609238147735596, 0.19879774749279022, 0.2559848427772522, -0.5425148010253906, 0.2552800178527832, -0.043569013476371765, -0.5972480177879333, 0.014562204480171204, 0.7872418761253357, -0.7768417000770569, -0.59972083568573, 0.5281020402908325, 0.6639194488525391, -0.7561144232749939, -0.7868679165840149, 0.4703467786312103, 0.454534113407135, 1.0250616073608398, 0.21543702483177185, -0.18067598342895508, -0.24449659883975983, -0.48285624384880066, -1.1783932447433472, -0.8626779913902283, 0.23471952974796295, -0.3608139455318451, 0.8430357575416565, -1.2309625148773193, -0.7108620405197144, -0.8301861882209778, -0.23631367087364197, 0.17127902805805206, 0.05893121659755707, 0.2817160487174988, -0.36000093817710876, 0.47506287693977356, -0.2953501343727112, 0.1864432692527771, 0.7424114942550659, 0.30117589235305786, -0.23107144236564636, -0.10864199697971344, 0.3944902718067169, -0.4908546805381775, -1.1061880588531494, -0.42229005694389343, 0.045183561742305756, -0.4087408185005188, 0.4363477826118469, -0.35837045311927795, -0.052891191095113754, 1.288167953491211, 0.9907382130622864, 0.4440658986568451, 0.8650945425033569, -0.6745599508285522, -0.21271875500679016, 0.3691418170928955, 0.6729266047477722, -0.1711277812719345, -0.2836666405200958, -0.31279176473617554, 0.6415077447891235, -0.37355443835258484, 0.7815470099449158, 0.3278253674507141, 1.1394346952438354, 0.2684757113456726, 0.13906338810920715, 0.244298055768013, 0.06638690829277039, 0.6500811576843262, 1.2748961448669434, 0.10011375695466995, -0.3679466247558594, -1.164178729057312, 0.8933787941932678, -1.009009838104248, 0.15666474401950836, 0.8847855925559998, 0.5075422525405884, 0.48941099643707275, -1.7044190168380737, -0.8095146417617798, 1.1034772396087646, 0.6624854207038879, 0.966373085975647, 0.5417951345443726, 0.5596033334732056, -0.9665563106536865, 0.3094058334827423, 0.6618585586547852, -0.22156426310539246, 0.4965750277042389, 0.13722649216651917, -0.6817378997802734, 0.6191042065620422, -0.3574286699295044, 0.5435844659805298, -0.7026324272155762, -0.4687332808971405, -0.3491796553134918, -1.105125069618225, 0.04446062818169594, 0.37529730796813965, -0.12143371254205704, 0.6056402921676636, -0.8761627078056335, -0.7470559477806091, 0.46278366446495056, -0.24469560384750366, 0.12282456457614899, 0.20930486917495728, -0.5739787220954895, -1.1989829540252686, -1.2387027740478516, -0.6431583166122437, 0.9990772008895874, -1.0371171236038208, -0.08042097091674805, -0.22879736125469208, -1.2625707387924194, -0.23140749335289001, 0.2844516634941101, 0.9807982444763184, 1.2365617752075195, 0.23250362277030945, 0.5897045135498047, 0.13663247227668762, -0.7470679879188538, 0.4325753152370453, 0.9413686990737915, -0.18042650818824768, -0.551015317440033, -1.800924301147461, -0.3551774322986603, 0.9953967332839966, 0.49371206760406494, -0.5375394225120544, 0.5245325565338135, 1.3226126432418823, 1.4217760562896729, 0.04048401489853859, -0.9882636070251465, 0.17182782292366028, -0.7251960039138794, -0.04103038087487221, 0.9357579350471497, -0.4030340313911438, -1.0485578775405884, -0.5748511552810669, -0.6548388004302979, 1.5627117156982422, -0.009392746724188328, -1.6595138311386108, 0.856390118598938, 0.8917071223258972, 0.017647290602326393, 0.8516604900360107, -1.1831207275390625, -0.031415536999702454, 0.20909656584262848, -0.4564570486545563, -1.2539441585540771, -0.23897022008895874, 0.2686026096343994, 0.8155367970466614, -0.23586808145046234, 0.30455929040908813, 0.24588948488235474, 0.740100085735321, 0.933753252029419, 0.2008397877216339, 0.1429673433303833, 0.7381823062896729, 1.0414724349975586, -1.128177285194397, -0.008953837677836418, -1.0853757858276367, -0.3692270517349243, -0.3001747727394104, 0.9439622759819031, 0.3815084397792816, -0.9423444867134094, -0.15140952169895172, -0.44149935245513916, -0.2170800268650055, -0.09654160588979721, 0.35368797183036804, 0.8195263147354126, 0.061877232044935226, -0.5530726313591003, 0.037726499140262604, -0.06361953169107437, -0.4644519090652466, -0.1351979821920395, -0.1916673481464386, 0.574018657207489, -1.2713842391967773, -0.36292558908462524, 0.3932623863220215, -0.11107853800058365, 0.15056072175502777, -1.263227939605713, -0.686356246471405, -1.5352368354797363, -1.4008805751800537, -1.013907551765442, -0.11253616213798523, 0.8739627599716187, -0.4627775549888611, 0.3319421410560608, 0.41509106755256653, -1.9169350862503052, 0.4908704161643982, -0.1254025250673294, -1.6762933731079102, -0.06915536522865295, -1.07826566696167, 0.9314826726913452, -0.2710459232330322, 0.10596346110105515, -0.2658955454826355, 0.847135603427887, -1.2168883085250854, -0.8796564340591431, -0.6278655529022217, -0.0544106587767601, 0.857149064540863, 1.0482587814331055, -0.8008912205696106, 1.5990229845046997, 0.59039705991745, -0.1803482472896576, -0.22434104979038239, -0.052649207413196564, -0.7959849238395691, 0.17856289446353912, 0.8464606404304504, -0.37453028559684753, 0.6721672415733337, 0.4283737540245056, 0.18171414732933044, 0.8224841952323914, -0.31511786580085754, 0.15771454572677612, -0.9977979063987732, -0.7377743721008301, -0.13355191051959991, 0.14140769839286804, -1.344067096710205, -0.42971113324165344, -0.25185465812683105, -0.5995156764984131, -0.2940041124820709, 0.4428596496582031, 0.6902731657028198, -0.7317230701446533, 0.14338289201259613, -0.18510869145393372, 0.1693216860294342, -0.5878351926803589, 0.06985463947057724, -0.0704444870352745, -0.25889289379119873, 0.525638997554779, 0.38954058289527893, -0.19230397045612335, -1.0344003438949585, 1.1649433374404907, 0.3592066764831543, -0.18216708302497864, -1.238384485244751, 0.35061895847320557, 1.0082550048828125, -0.6258347630500793, -0.3242955505847931, 1.445150375366211, 1.2838953733444214, -0.24087008833885193, -0.41072744131088257, 0.46798789501190186, -0.6222303509712219, 0.44950228929519653, -0.44202670454978943, 0.2051253318786621, -1.0598137378692627, 1.0662342309951782, 0.7725053429603577, 0.47198033332824707, -0.9145038723945618, -0.2684936821460724, -0.9847790598869324, 0.10958503931760788, 0.40840965509414673, -1.2036606073379517, -0.1391471028327942, 1.6168004274368286, -0.0802844986319542, 0.019691279157996178, 0.11022749543190002, 0.6161277890205383, 0.42207205295562744, -0.5191524624824524, -0.1310022473335266, 0.769042432308197, -0.176613911986351, 0.926643431186676, 0.2580007314682007, -0.18411779403686523, -0.0474766343832016, -1.1397470235824585, -0.9586920738220215, -0.3458692133426666, -0.4513362646102905, -1.2274380922317505, 0.9817428588867188, -1.0553486347198486, -0.27006351947784424, 0.32405000925064087, -0.1572224199771881, 0.05501244217157364, -0.3187451958656311, -0.23517219722270966, -0.11839045584201813, -0.07158688455820084, 0.477676123380661, -0.5314221382141113, 1.1059088706970215, 0.9849990606307983, -0.16324257850646973, -0.7313565611839294, -0.4292270839214325, 0.42243728041648865, 0.24659182131290436, -0.20713922381401062, 0.32596057653427124, 0.9435040354728699, 0.1226930245757103, -0.7291116714477539, 0.10548391938209534, 0.32198286056518555, 0.2980825901031494, -0.05201631039381027, -1.3878673315048218, -0.5103015303611755, 0.6772058606147766, 0.066433846950531, -0.19040492177009583, 0.128299281001091, -1.1137304306030273, 0.24700525403022766, 0.3209737539291382, 0.6161863207817078, -0.762077271938324, -0.1826244443655014, 0.717457115650177, -0.2773754298686981, 0.2710660994052887, -0.6472508907318115, 0.6680856347084045, -1.1680668592453003, 0.4962693154811859, -0.08364148437976837, 0.1216108500957489, -0.3954448401927948, -0.859531044960022, 0.49166545271873474, -1.0904077291488647, -0.3611580729484558, 0.29466062784194946, -0.7154354453086853, -0.8879500031471252, -0.946110188961029, 0.4124904274940491, 0.7763676643371582, 0.07902983576059341, 0.33195269107818604, 0.05252554640173912, -1.6396851539611816, -0.16571645438671112, 0.7552091479301453, -0.230988010764122, 0.8935613036155701, 1.0741219520568848, 1.6486124992370605, 0.6511510610580444, 0.11750242114067078, -0.48044073581695557, 0.3805791437625885, -0.4249834716320038, -0.7117263674736023, -1.1272122859954834, -0.38590872287750244, -0.7347943186759949], [0.7535638213157654, 1.9117498397827148, -1.6695785522460938, -0.63681560754776, 1.0812509059906006, -0.5016387104988098, 0.9615110754966736, -0.091621533036232, -0.461860716342926, -0.5832445621490479, 0.21216246485710144, -0.3810831308364868, 0.7782860398292542, 0.8551731705665588, 0.26162776350975037, 1.053710699081421, 0.9853198528289795, -0.9402648210525513, 0.7066128253936768, 0.734872579574585, 0.2644524872303009, -0.7691105008125305, 0.5166924595832825, 0.04677795246243477, -0.1565219759941101, -0.0018105348572134972, -0.778416633605957, -0.5468343496322632, -0.5179755687713623, -0.6405246257781982, 0.2895210087299347, -0.6931818723678589, -0.2617810070514679, 0.1290433555841446, -2.10400128364563, -0.7653036117553711, 0.9845274686813354, 1.3088467121124268, -0.13807129859924316, 0.21939833462238312, 1.3047131299972534, -0.07297404855489731, -0.08923261612653732, -1.3795520067214966, 0.2019791603088379, -0.6278102993965149, 1.4392621517181396, -0.6869413256645203, 0.3550947606563568, -0.762820303440094, 0.6400864720344543, -0.5329416990280151, 0.37758785486221313, 0.2256946712732315, 1.0332454442977905, 0.362307071685791, 0.5747786164283752, 0.09257857501506805, 1.0094624757766724, -1.053580403327942, 0.48278629779815674, 0.6327385902404785, -0.5225409269332886, 0.8583354353904724, -0.0007934896275401115, 0.5348697304725647, -0.28222882747650146, 0.1791837513446808, 0.17530180513858795, 0.03306994214653969, 0.8507807850837708, -0.0013055512681603432, 0.1337636262178421, 0.2947595715522766, -1.2108715772628784, 0.5806492567062378, 0.49518728256225586, 0.9122148752212524, 0.19478775560855865, 0.5855432748794556, 0.2113782912492752, -0.33171969652175903, 0.5607782006263733, -0.7849369645118713, 0.4903273284435272, 0.20872117578983307, 0.7338047623634338, -0.5462627410888672, 0.08401001989841461, 1.714412808418274, 0.22780083119869232, 0.010716388002038002, 0.49991971254348755, 0.06827285140752792, -0.7593399286270142, -0.5763429403305054, 0.8159151673316956, -0.16974380612373352, -0.9363662600517273, -0.7740476727485657, -0.4868435859680176, -0.4305419325828552, -0.48724380135536194, 0.2789436876773834, -0.420498251914978, 1.1198170185089111, 0.40797585248947144, 0.0649193599820137, -0.7030882239341736, 0.38031119108200073, -0.5252141952514648, -0.5558071732521057, -0.7697855830192566, -0.8371348977088928, -0.7081188559532166, 0.7726935744285583, 1.6570355892181396, -0.33998528122901917, 0.7729536294937134, 1.0913087129592896, -0.2728719711303711, 0.09392036497592926, -0.25252628326416016, 0.041106536984443665, 0.7120424509048462, 1.0585911273956299, -0.7936335802078247, -0.9221293926239014, 0.027014559134840965, -0.5742104053497314, -0.3446612060070038, -0.159025639295578, -0.4114490747451782, 0.7647839784622192, -0.22347135841846466, 0.7739152908325195, -0.5087864398956299, -0.46332335472106934, 0.5673921704292297, -0.1555006355047226, 0.5098618865013123, -0.00291277258656919, -0.5801079869270325, 0.0894533097743988, 0.2820790708065033, -0.04781423136591911, -0.10214045643806458, -0.4016677439212799, -0.6098678112030029, 0.31679201126098633, -0.9637584090232849, 0.4620279371738434, -0.17343178391456604, 0.7043792605400085, 0.34652769565582275, 0.2306821644306183, 0.16648371517658234, 0.48757341504096985, 0.5839377641677856, -0.36949509382247925, 0.799917995929718, 0.20228832960128784, -1.0012459754943848, 0.5253630876541138, -0.05385981500148773, -0.9039281010627747, 0.5751678347587585, 1.0034316778182983, 0.4800838530063629, 0.2634213864803314, -0.8528563976287842, -0.48636671900749207, -0.39854538440704346, 0.3074810802936554, 0.27258265018463135, -0.49020126461982727, 2.068108320236206, -0.7153941988945007, -0.8875502943992615, -0.8872898817062378, 0.21487484872341156, -0.8867482542991638, 0.30650565028190613, -0.34446534514427185, 0.32042261958122253, -0.5077788233757019, 0.4841030538082123, -0.46541792154312134, -0.6648093461990356, -0.34787213802337646, -0.2908247709274292, -0.15411825478076935, -0.6971225142478943, 0.9233537316322327, -0.9733275175094604, -0.6541680693626404, 0.6052546501159668, -1.2559318542480469, -0.2526837885379791, -0.24301770329475403, -0.7162014245986938, 0.05701020732522011, -0.9559584856033325, 0.7527267336845398, -0.19838207960128784, 0.8687087297439575, -0.9252411723136902, 0.9889011383056641, -0.237166628241539, -0.5310733914375305, 1.3766839504241943, -0.19416776299476624, -0.0779314860701561, 0.7069308757781982, -0.3112272620201111, -0.8537226915359497, 0.5564134120941162, 0.1901538372039795, -0.530671238899231, 0.6134459972381592, 0.30639272928237915, 0.12440348416566849, -0.4128260314464569, 0.3667096495628357, 0.004510114900767803, -0.3966793417930603, -1.1549806594848633, -0.5352473855018616, -1.0287659168243408, -0.05172056332230568, -0.1576703041791916, -1.3835278749465942, 0.8565059900283813, 0.10457388311624527, -0.15814052522182465, 0.10294963419437408, -0.5384092330932617, 0.10971696674823761, 0.6904995441436768, 1.3938385248184204, 0.47258496284484863, 0.16118647158145905, -0.455969899892807, 0.12686321139335632, -1.0244606733322144, 0.5707628726959229, 0.682338535785675, -0.2556244134902954, 0.16030187904834747, 1.5786644220352173, 0.869488537311554, 0.15846841037273407, 0.493533194065094, -0.4720028340816498, -0.06247125193476677, -0.8018210530281067, -0.6380189657211304, 0.38388803601264954, -0.48796460032463074, 0.7516100406646729, -0.04656428098678589, -0.7633256316184998, -0.3073592185974121, -0.008227270096540451, -0.5235620141029358, -0.2833225131034851, -0.16599905490875244, -0.653556764125824, -0.6576089262962341, 0.24689881503582, -0.505079984664917, 0.5099807381629944, 0.47106099128723145, 0.4358310401439667, -0.7793297171592712, -0.28117674589157104, -0.33664214611053467, 0.6723239421844482, -0.21359287202358246, 0.5066220164299011, 0.017376577481627464, -1.7715038061141968, -0.7385351657867432, 0.6225942969322205, 0.9378416538238525, -0.09960315376520157, -0.6016668081283569, 0.019133679568767548, 0.35359880328178406, -0.6898414492607117, 0.045811958611011505, 0.1523696482181549, -0.13814085721969604, -0.03949180990457535, -0.29403865337371826, 0.43977007269859314, 0.596062421798706, -0.7447607517242432, 0.12296821922063828, -0.6657362580299377, 0.5777091383934021, 1.2529090642929077, 0.5012194514274597, 1.218967318534851, 0.08297336846590042, -0.028187543153762817, -0.26488804817199707, -0.6235183477401733, -0.5641897320747375, -0.49088677763938904, -1.257942795753479, -0.5769439935684204, -0.09217863529920578, -0.4869633615016937, -0.6980041265487671, 0.9229900240898132, 0.1970800757408142, 0.23365822434425354, 1.2288153171539307, -0.8838627338409424, -0.6510854959487915, -0.5004246830940247, 0.4031071960926056, -0.8054494261741638, 0.3905586004257202, 1.303396224975586, -0.8836987614631653, -0.281470388174057, 0.08495815843343735, -0.22901910543441772, -0.13699333369731903, 0.7520512342453003, -0.22277535498142242, -0.9901431798934937, -0.9497789144515991, -0.5222926735877991, 1.6405450105667114, -0.48675215244293213, 0.244264155626297, -0.37512558698654175, 0.7507225275039673, -0.05945957079529762, -0.04401259124279022, -0.6010438799858093, 0.33132946491241455, -0.15017728507518768, -0.860112726688385, 0.16184432804584503, 0.5881518721580505, 0.7753109931945801, -0.4585076570510864, 0.023073852062225342, -0.4215788245201111, -0.07882490754127502, -0.0345420204102993, 0.3356077969074249, 0.19226087629795074, 1.084675908088684, -0.5889919996261597, -0.3983779549598694, 0.5955767631530762, 0.01647571101784706, -0.04907279089093208, -1.354291319847107, 0.27254098653793335, 0.9117833375930786, 1.4179835319519043, -0.15263092517852783, -0.2309899628162384, -0.01786552183330059, 0.34311869740486145, 0.09776079654693604, 0.39875033497810364, 1.234438180923462, 0.08050059527158737, -0.3871787488460541, -0.578345775604248, 0.21795110404491425, 0.08401303738355637, -0.6791945695877075, 0.0626227930188179, 0.28843802213668823, -0.7350505590438843, -0.46389734745025635, 0.701327383518219, 0.3999786972999573, -0.36033734679222107, -0.4548895061016083, 0.3847426176071167, 0.32106107473373413, -0.28996074199676514, 0.4040450155735016, -0.876906156539917, 0.188741996884346, -0.06831616163253784, -0.5361198782920837, -0.4212976396083832, 0.13377004861831665, 0.5097289085388184, 0.7142461538314819, -1.0886367559432983, -0.46898776292800903, -0.5359156131744385, 0.596531093120575, 0.4435517191886902, -1.0737265348434448, 0.6623729467391968, -0.13071367144584656, -0.3904396593570709, -0.43182238936424255, 0.20173116028308868, 1.1334257125854492, -0.8153356909751892, -0.46401047706604004, 0.21129947900772095, -0.4494021534919739, -0.06617662310600281, -0.5075027346611023, -0.13293449580669403, 0.08831220120191574, -0.26350486278533936, 0.03281271457672119, 0.04207871854305267, 0.03913242369890213, 1.3061705827713013, 0.6223005652427673, 0.659832775592804, 0.5220588445663452, 0.3366571068763733, -1.1101562976837158, -0.10338606685400009, 0.7786939144134521, -0.2164076417684555, -1.0290133953094482, -0.011912651360034943, 0.3453280031681061, -0.29058974981307983, 0.207534059882164, 0.18814533948898315, 0.5229686498641968, 0.39125677943229675, -0.18104495108127594, 0.001776757650077343, 0.12413008511066437, 0.5725439190864563, 1.448377013206482, 0.5122185945510864, -0.5652239918708801, -1.1568408012390137, 0.2009659856557846, -0.9031093120574951, 0.32416343688964844, 0.6321048736572266, 0.3940335214138031, 1.4180086851119995, -1.1020193099975586, -0.5876950025558472, 0.4530557096004486, 0.7210266590118408, 0.11367104202508926, 0.5112661123275757, -0.6174802184104919, -0.6625370383262634, 1.1699070930480957, 0.8873853087425232, 0.15386328101158142, -0.17614932358264923, 0.15294869244098663, 0.018017485737800598, 0.5156971216201782, -0.7156246304512024, 0.9184337258338928, -0.11291014403104782, -0.3212163746356964, 0.06287313252687454, 0.1180395632982254, 0.36984947323799133, 0.4448559284210205, 0.4230399429798126, 1.449851632118225, -0.6859295964241028, -0.7441350817680359, 0.12712246179580688, -0.7266960144042969, 0.6656122207641602, -0.26601505279541016, -0.19410298764705658, -0.09911781549453735, -0.9316328763961792, -0.45878368616104126, 0.3051290512084961, -0.23345647752285004, -0.2676098346710205, -0.31043148040771484, -0.922606348991394, 0.0011541559360921383, 0.3602994680404663, 0.9645581841468811, 0.293317586183548, -0.1592669039964676, 0.8051292300224304, 0.5513259172439575, -0.8585522174835205, 0.30810192227363586, 0.3071098327636719, -0.19913707673549652, 0.04032045602798462, -1.3502839803695679, -0.4614638686180115, -0.027755143120884895, 0.5674855709075928, 0.07486680895090103, 0.4007592499256134, 0.9469889998435974, 1.227467656135559, -0.12027261406183243, -0.18756745755672455, 0.7881416082382202, -0.6832625865936279, 0.2938081920146942, 0.7856616973876953, -0.5176202058792114, -0.0958779975771904, -1.1213593482971191, -1.469735860824585, 1.0148223638534546, -0.2906418740749359, -0.6683081984519958, 0.9821029901504517, 0.5686379075050354, 0.183048814535141, 0.7816236019134521, -0.24922271072864532, 0.37600383162498474, 0.6964736580848694, -0.7130527496337891, -1.2123641967773438, 0.14491403102874756, 0.3760713040828705, 0.12574748694896698, 0.1175563707947731, 0.27581000328063965, 0.5135581493377686, -0.9877010583877563, 0.24590612947940826, 0.1637285053730011, 0.018844572827219963, 0.9368706345558167, 0.6303209066390991, -0.7758406400680542, 0.2799413502216339, -0.4345111548900604, -0.9799968600273132, -0.2696574926376343, 0.7200864553451538, -0.29990795254707336, -0.13703759014606476, -0.8497818112373352, 0.09550422430038452, -0.09874864667654037, 0.28900521993637085, -0.6379825472831726, 0.9421029090881348, 0.6231908798217773, 0.0048542506992816925, -0.17981241643428802, -0.06309769302606583, -0.4146697521209717, -0.25740939378738403, 0.5428737998008728, 0.2026429921388626, -0.9317506551742554, 0.43833494186401367, 0.20553629100322723, 0.10808364301919937, -0.002782699652016163, -0.13171261548995972, 0.4808514416217804, -1.3637902736663818, -0.9223806858062744, -0.43685171008110046, 0.7182719707489014, 1.3227394819259644, -0.7772480845451355, 0.22131074965000153, 0.7162004113197327, -1.4855564832687378, 0.1002935990691185, 0.2525774836540222, -1.4121803045272827, 0.08528806269168854, -0.9392976760864258, 1.1326531171798706, 0.11466526985168457, 0.5116981267929077, -0.26071155071258545, 0.9033222198486328, -1.555173397064209, -1.3879470825195312, -0.4647885859012604, -0.031743183732032776, 0.8586589097976685, 0.9642615914344788, -0.3955176770687103, 0.7597141265869141, 0.6009649038314819, -0.2052137702703476, -0.3382401466369629, 0.3424065113067627, -0.6029096841812134, 0.3367588520050049, 0.3813924491405487, 0.7042654752731323, -0.022528184577822685, 1.0909782648086548, 0.05787046626210213, 1.1331883668899536, 0.05494026094675064, 1.1740188598632812, -0.6824368834495544, 0.19387204945087433, 0.18170040845870972, 0.39267122745513916, -1.4697223901748657, -1.0226151943206787, -0.38389718532562256, -1.2792630195617676, -0.5932184457778931, 0.6498018503189087, 0.8276950716972351, -0.5168827772140503, -0.12722915410995483, -0.44607144594192505, 0.26794376969337463, -1.2127774953842163, 0.17839600145816803, -0.07160890847444534, 0.2352837324142456, 0.37816014885902405, 0.21294309198856354, -0.18611189723014832, -1.3228319883346558, -0.5573621988296509, 0.3433396518230438, 0.1929270327091217, -0.5663954019546509, 1.0672553777694702, 0.5235937833786011, 0.19965305924415588, -0.5598524212837219, 1.4329150915145874, 1.1024398803710938, -0.5308791995048523, -0.4718465209007263, 0.6876365542411804, 0.3637597858905792, 0.5274492502212524, -0.9828736186027527, -0.8471313714981079, -0.31109899282455444, 1.022303581237793, 0.21639679372310638, 0.22047115862369537, -0.41772156953811646, -0.1631782054901123, 0.2840471863746643, -0.06755571067333221, 0.8288448452949524, -0.6925379037857056, 0.13588517904281616, 1.1015554666519165, 0.06094367802143097, -0.4049447178840637, 0.5533140897750854, 0.6359117031097412, -0.23940400779247284, -0.533444881439209, 0.9281613230705261, 0.3869423270225525, -1.2250869274139404, -0.041538089513778687, 0.22355681657791138, -0.5559988021850586, 0.0018913624808192253, -0.41020047664642334, -1.9455320835113525, -0.1135346069931984, -0.40163713693618774, -1.5292253494262695, -0.025592368096113205, -1.3483076095581055, -0.6889318227767944, 0.923907995223999, -0.5769832134246826, -0.8116152882575989, -0.18391577899456024, 0.4030109643936157, 0.39844247698783875, 0.6193679571151733, 0.8134317994117737, -0.5847507119178772, 0.7682149410247803, 0.3365603983402252, 0.06151743605732918, -0.9144759178161621, -0.28020158410072327, 0.3754218816757202, 0.2509397566318512, -0.49464887380599976, -0.4727519452571869, 0.20773357152938843, 0.21513624489307404, -0.48728764057159424, -0.019815918058156967, -0.40039169788360596, 0.9913003444671631, 0.22109360992908478, 0.3070097863674164, -0.01643386483192444, 0.5002360939979553, 0.7279480695724487, -0.11534847319126129, -0.8062735795974731, -0.7495446801185608, 0.21615147590637207, -0.8478332757949829, 1.0802834033966064, -0.30030882358551025, 0.5260644555091858, 0.5324903130531311, 0.006968694739043713, -0.801292896270752, -0.9057397842407227, 0.3630606532096863, -0.4440251290798187, 0.22634950280189514, -0.2608267068862915, -0.08625400811433792, -0.04956753924489021, -0.7022660374641418, 0.5107126832008362, -0.1535748392343521, -0.7373414039611816, 0.09316281974315643, -1.135910987854004, -0.9069554209709167, -0.7063965797424316, 0.28038373589515686, 1.1553188562393188, 0.3689801096916199, -0.07165682315826416, -0.22921122610569, -1.0891262292861938, -0.042200203984975815, -0.0214866790920496, 0.005715488456189632, 0.055847734212875366, 0.7679404020309448, 1.737564206123352, 0.6953933238983154, 0.19066771864891052, -0.1706135869026184, 0.3886670768260956, -0.21603283286094666, 0.23775379359722137, -0.4968268871307373, -0.11673882603645325, 0.12133656442165375], [0.5640549063682556, 1.1389379501342773, -2.1276042461395264, -0.28609490394592285, 0.7042540311813354, 0.23937225341796875, 0.5447288751602173, 0.09483520686626434, 0.42095813155174255, -0.8950446844100952, -0.008732324466109276, -0.5013962388038635, 1.0367152690887451, 0.7014316320419312, 0.19651001691818237, -0.41618046164512634, 0.07972367107868195, -0.8252811431884766, 0.6594791412353516, 1.4509246349334717, -0.3174809217453003, -0.552151620388031, 0.36655548214912415, 1.059190034866333, -0.03023596853017807, -0.2660433351993561, -1.7543827295303345, -0.80734783411026, -0.7430166602134705, -0.7991920113563538, 0.8646371960639954, -1.3013826608657837, -0.10522414743900299, -0.0029858851339668036, -1.217947006225586, -0.6771913766860962, 1.4195139408111572, 0.3255036175251007, 0.5712358355522156, 0.3084537386894226, 1.1064162254333496, 0.191915363073349, 0.25786247849464417, -1.9242390394210815, 0.7085512280464172, 0.4018876254558563, 0.758240282535553, -0.9586529731750488, 0.09346305578947067, -0.8701497912406921, 0.6644817590713501, -0.7916948795318604, 0.36764487624168396, 0.3617798089981079, 1.7145906686782837, 1.0079848766326904, 0.34938350319862366, 0.5057464241981506, 0.925902247428894, -0.5326868891716003, 0.2717078626155853, 0.3038228452205658, -0.013899065554141998, 0.9121122360229492, 0.506791889667511, -0.052658166736364365, -0.09774459153413773, 1.1686418056488037, 0.5851137638092041, -0.07696890830993652, 0.9304167032241821, -0.4123225212097168, -1.1554771661758423, 1.2113507986068726, -0.9578521251678467, 0.3066241443157196, 0.21491149067878723, 0.40567946434020996, -0.16047273576259613, 0.499931275844574, -0.5562044978141785, -0.46374523639678955, 0.7558009624481201, -0.17138902842998505, 0.9520137906074524, 0.3714205324649811, 0.1772167980670929, -0.26998502016067505, -0.5239136219024658, 1.824265718460083, 0.0630275085568428, 0.22267776727676392, 0.09070952236652374, 0.15772339701652527, -0.13527047634124756, -0.32180336117744446, 0.272391676902771, -0.2999175190925598, -0.5947311520576477, -0.6407411694526672, -0.7660523653030396, -0.5015101432800293, -0.20456819236278534, -1.0835437774658203, 0.4269205629825592, 0.8121801614761353, 0.20323042571544647, -0.18410080671310425, -0.6007434725761414, 0.26475846767425537, -0.11662949621677399, -0.2486260086297989, -0.770673394203186, -1.247866153717041, -0.7814152836799622, 0.24124029278755188, 1.0325977802276611, -0.502795398235321, 0.6971182823181152, 0.3995457887649536, -0.7366854548454285, -0.1467750519514084, 0.338117390871048, 0.29540738463401794, 0.24180342257022858, 0.8180651068687439, 0.09279235452413559, -1.3499428033828735, 0.1820620894432068, -0.5610482692718506, 0.34406334161758423, -0.21862702071666718, 0.5977519154548645, 0.49722304940223694, -0.21133637428283691, 0.5127721428871155, 0.30500510334968567, -1.1743110418319702, 0.42973563075065613, 0.07409746199846268, 0.6788187026977539, -0.10534662008285522, -0.1787770688533783, -0.13104432821273804, -0.4652719795703888, -0.8380548357963562, 0.6150928139686584, 0.100380539894104, -0.6336897611618042, 0.2637259364128113, -0.4294903576374054, -0.09048934280872345, 0.19764617085456848, 0.7781780958175659, -0.015885546803474426, -0.07215406000614166, -0.058031339198350906, 0.6794940233230591, 0.3630271255970001, -0.0789409950375557, 1.1073837280273438, 0.20208221673965454, -0.07987336069345474, 0.8793171048164368, -0.40881261229515076, -0.3564496338367462, -0.22789904475212097, 0.3721354901790619, 0.21808680891990662, -0.06715597212314606, -0.5798251032829285, -0.36359256505966187, -0.5322594046592712, 0.8480453491210938, 0.7369809150695801, -0.6908475756645203, 1.8069837093353271, -1.1968982219696045, -1.2166571617126465, -1.2070304155349731, -0.2979305684566498, -0.6063947081565857, 0.29027923941612244, -0.1715508997440338, 0.7358249425888062, -0.2719154357910156, 0.34528395533561707, -0.02139504998922348, -0.5195942521095276, -0.9975832104682922, -0.1446697860956192, 0.5454510450363159, -1.0687214136123657, 0.3338444232940674, -0.5732674598693848, -1.2536462545394897, 0.13876639306545258, -0.573771595954895, -0.5286414623260498, -0.3325536549091339, -0.32258033752441406, 0.1674504429101944, -1.1719298362731934, -0.0643853172659874, -0.28626760840415955, 1.1143090724945068, -1.2757166624069214, 1.1547236442565918, -0.7624929547309875, 0.33137357234954834, 1.5357167720794678, -0.10492290556430817, -1.1684726476669312, 1.059543251991272, -0.22308462858200073, -1.749906063079834, 0.615737795829773, 0.5285334587097168, -0.5810425877571106, 0.23764827847480774, 0.3992873430252075, 0.379120409488678, -0.09261268377304077, -0.23319083452224731, 0.3123742341995239, -0.7636294960975647, -0.45575740933418274, -0.9711589217185974, -0.6669912338256836, 0.4635580778121948, -0.4792138934135437, -1.5333235263824463, 1.0751148462295532, 0.2711871564388275, -1.1987022161483765, 0.6232507228851318, 0.09339794516563416, 0.47966548800468445, 0.26687127351760864, 1.3949511051177979, 0.3269234597682953, 0.23022010922431946, 0.1892411708831787, -0.31038111448287964, -1.1727752685546875, 0.2469344139099121, 1.0998913049697876, -0.5578466653823853, 0.4605313241481781, 0.5895100235939026, 0.7419750690460205, -0.12839893996715546, 0.2832680344581604, -0.0169671680778265, 0.00803949125111103, -0.16067682206630707, -0.3284073770046234, 1.1142407655715942, -0.5807023048400879, 1.1518288850784302, 0.3034060001373291, -0.8183757662773132, -0.5154639482498169, -0.19926586747169495, 0.5990626811981201, -0.7439359426498413, -1.3956574201583862, -0.11370494216680527, 0.16552172601222992, 0.08968523144721985, -0.5472049713134766, 0.9712827801704407, -0.420946329832077, 0.7110676765441895, -0.6768267750740051, -0.4614501893520355, -0.4448243975639343, 0.3382222652435303, -0.14983788132667542, 1.2447229623794556, -0.22927486896514893, -0.9612022042274475, -0.860357403755188, -0.1635691523551941, 0.21914927661418915, 0.17780669033527374, 0.26030048727989197, 0.22534526884555817, -0.3938039541244507, -0.10431239753961563, -0.09946396946907043, 0.030660925433039665, 0.026269514113664627, -0.6409268975257874, -0.043085962533950806, 1.134766936302185, 1.2793755531311035, -1.1140832901000977, -1.3334851264953613, -0.20412388443946838, 0.7968428730964661, 1.1119087934494019, 1.2181681394577026, 1.562622308731079, 0.19995343685150146, 0.7827876210212708, -0.30084487795829773, 0.23283426463603973, 0.0395902581512928, -0.7458412051200867, -0.5524143576622009, -0.45169612765312195, -0.22844403982162476, -0.028919382020831108, -0.407141774892807, 0.9319432377815247, 0.19927403330802917, 0.5459940433502197, 1.261197805404663, 0.42044058442115784, -1.2463055849075317, -0.3552084267139435, -0.34525129199028015, -0.64422607421875, 0.2865912914276123, 0.7260857820510864, -0.7092703580856323, -0.5000350475311279, -0.6307355165481567, 0.016390454024076462, 0.8992164134979248, 0.33433645963668823, -0.24537643790245056, -1.0835314989089966, -0.9816073179244995, -0.3640778660774231, 0.4072050154209137, -0.7207036018371582, 0.823469877243042, -0.2541351020336151, 0.9177435040473938, 0.3615871071815491, 0.23928125202655792, -0.6245490312576294, 1.0741578340530396, 0.1779487282037735, -0.8816838264465332, 0.5498883724212646, 0.43431907892227173, 1.2272131443023682, -0.44579359889030457, 0.1391201615333557, -0.32340362668037415, 0.18800145387649536, -0.5213172435760498, 0.6888860464096069, -0.07691295444965363, 1.0518490076065063, -0.16740986704826355, 0.2412949502468109, 0.9820985198020935, -0.5748986601829529, 0.03451740741729736, -1.5884352922439575, 0.7799105048179626, 0.3771542012691498, 0.7303506135940552, 0.09238190203905106, -0.39330023527145386, 0.18656672537326813, -0.6762600541114807, -0.13868685066699982, 0.21363139152526855, 0.8019233345985413, 0.5359527468681335, -0.07263558357954025, -0.07000011950731277, 0.5295908451080322, -1.1458337306976318, -0.6651559472084045, -0.14307084679603577, -0.40451768040657043, -1.451661467552185, -0.6165189743041992, 0.6976678967475891, 0.3353031575679779, -0.588448703289032, -0.48546189069747925, 0.3275916576385498, 0.8626909255981445, 0.49362069368362427, 0.11726102977991104, -0.9491744637489319, -0.46072089672088623, -0.010239135473966599, -0.9553648829460144, -0.1873084008693695, 0.06658229231834412, 0.20638807117938995, 0.10805513709783554, -1.0612612962722778, -0.3462061285972595, -0.17694169282913208, 0.5270137190818787, 0.9108430743217468, -0.05549505725502968, 0.7369107007980347, -0.14136618375778198, 0.10547958314418793, -0.12849007546901703, 0.31869369745254517, 1.702864646911621, -0.7293291091918945, 0.2697809338569641, 0.10905184596776962, -0.4496775269508362, 0.13807646930217743, -0.6462560296058655, -0.20804502069950104, 0.8397461771965027, -0.046752382069826126, 0.30469372868537903, 0.1588706225156784, 0.5170449614524841, 1.6687101125717163, 0.5459677577018738, 0.08221578598022461, 0.6517168879508972, -0.2097797393798828, -1.3502774238586426, 0.24123820662498474, -0.238305002450943, 0.052020907402038574, -0.6403497457504272, 0.11292216926813126, 0.20520111918449402, -0.0855523943901062, 0.707481861114502, 0.8054742813110352, 1.565783977508545, 0.5245651602745056, 0.20588940382003784, -0.15609440207481384, 0.25496572256088257, 1.061790943145752, 1.3934121131896973, 0.6758409738540649, -0.21542921662330627, -1.2788290977478027, 0.9644216895103455, -0.37416166067123413, 0.44345226883888245, 0.7485635876655579, -0.030895447358489037, 1.3874949216842651, -1.2276884317398071, -0.8997879028320312, 0.5298644304275513, -0.1680229753255844, 0.3184354603290558, 0.6190379858016968, 0.32501259446144104, -0.8012784123420715, 0.8898330330848694, 0.33825692534446716, 0.2638460397720337, 0.19745735824108124, 0.028104785829782486, -0.49510443210601807, 0.3437515199184418, 0.18220199644565582, 0.5057740807533264, -0.5735883712768555, 1.1307705640792847, -0.6944475173950195, -0.3854181170463562, 0.5745425224304199, 0.1708909571170807, 0.021698346361517906, 1.232267141342163, -0.4329889118671417, -1.3895694017410278, -0.13856150209903717, -0.6236681938171387, 0.6721748113632202, -0.28257980942726135, -0.2495448738336563, -0.19761395454406738, -1.2857089042663574, -0.3112446069717407, 0.9475558996200562, 0.705146312713623, -0.7027922868728638, -0.35876601934432983, -0.5430841445922852, 0.08700808137655258, -0.06918947398662567, 0.2994900345802307, -0.4473317265510559, 0.7672997117042542, -0.01083772350102663, -0.29423603415489197, -1.042965054512024, -0.0130357276648283, 0.656170666217804, -0.5229264497756958, 0.3957027196884155, -1.2273427248001099, -0.698582649230957, 0.2630215585231781, 0.05057171732187271, 0.0579543262720108, 0.4276205003261566, 0.9894260764122009, 1.2518631219863892, -0.2744380831718445, 0.07263319194316864, -0.32112953066825867, -0.9306186437606812, 0.3148508071899414, 0.6176234483718872, -0.7817451357841492, -0.6917173266410828, -0.8424502611160278, -1.724799633026123, 0.8048966526985168, 0.14703626930713654, -0.71266770362854, 1.3564051389694214, 0.736945629119873, 0.7612602114677429, 0.4876667261123657, -0.2460104376077652, 0.4784672260284424, -0.09891901165246964, -0.5030978918075562, -1.7615172863006592, -0.01653481088578701, -0.03781250864267349, -0.47746914625167847, -0.3335821330547333, 0.873856782913208, -0.08937584608793259, -0.2434173822402954, 0.02102820575237274, 0.8753812909126282, 0.046080563217401505, 0.7223654389381409, 0.17991890013217926, -0.561008632183075, 0.25585949420928955, -1.281783938407898, -0.6316245794296265, -0.5609804391860962, 0.3367159962654114, 0.31344062089920044, -1.1463874578475952, -0.040137842297554016, -0.1163197010755539, -0.40742188692092896, 0.29363012313842773, 0.1644590049982071, 0.8685909509658813, 0.19751591980457306, -0.32713180780410767, 0.20211422443389893, -0.3252732753753662, -0.29839950799942017, -0.8264963030815125, 0.11110077053308487, 0.5476585626602173, -1.4433510303497314, -0.5613096356391907, -0.032321490347385406, -0.62651127576828, -0.3641144931316376, -0.23676855862140656, 1.1235853433609009, -1.7058076858520508, -0.9049308896064758, -1.0159904956817627, -0.1289254128932953, 0.9957767724990845, -0.4705648720264435, 0.033419232815504074, -0.04550132527947426, -1.5073744058609009, 0.49957817792892456, -0.32205522060394287, -0.6588181853294373, -0.35998329520225525, -0.9648492336273193, 0.5360491871833801, -0.2456725686788559, 0.6258057951927185, -0.20433060824871063, 0.2734263837337494, -1.4868781566619873, -0.4018639624118805, -0.844677209854126, -0.26238158345222473, 1.1360870599746704, 0.44842010736465454, -0.830324649810791, 0.9056949019432068, 0.5451023578643799, -0.5235938429832458, 0.10178583115339279, 0.004403119441121817, 0.16920967400074005, -0.05905511975288391, 0.10172394663095474, 0.8704068064689636, -0.12687309086322784, 0.6473485827445984, 0.279020756483078, 0.3073939383029938, 0.5770611763000488, 0.6854516267776489, -0.35213884711265564, -0.13528946042060852, -0.4563407301902771, 0.944629430770874, -0.05572178587317467, -0.43032506108283997, -0.2714194357395172, -1.2743408679962158, -0.1665402054786682, 0.5651741027832031, 0.5895186066627502, -0.9368277192115784, -0.6154527068138123, -1.1898235082626343, 0.4374379813671112, -0.9082769155502319, 0.6246434450149536, 0.16620732843875885, -0.27100369334220886, 0.2331567108631134, -0.6952164769172668, -0.35147330164909363, -0.9720520377159119, 0.6611205339431763, 0.1713031530380249, -0.14268095791339874, -0.5461145043373108, 0.7415618896484375, -0.06875332444906235, -0.2664482295513153, -0.8703768849372864, 1.4000375270843506, 1.2995493412017822, -0.04342708736658096, 0.2998966872692108, 0.6360589265823364, -0.18005172908306122, 0.7969442009925842, -0.15212538838386536, -0.1999533325433731, -1.1870530843734741, 0.7014533877372742, 0.1495954543352127, 0.33061307668685913, 0.15610237419605255, 0.23976221680641174, -0.15381751954555511, 0.9255397915840149, 0.4536910951137543, -0.5888123512268066, 0.21890389919281006, 1.5239335298538208, 0.16455088555812836, 0.37122732400894165, 0.3184797763824463, 0.3254076838493347, 0.17844636738300323, -0.3269520103931427, 0.5291001796722412, 0.7693418860435486, -0.6364296674728394, 0.15673606097698212, -0.4471232295036316, -0.05905071273446083, -0.09068302810192108, -0.42788857221603394, -0.7468878626823425, 0.2463064044713974, -0.35005009174346924, -0.5932300090789795, -0.2190558761358261, -1.0374261140823364, -0.6604681015014648, 1.2800627946853638, -0.03453837335109711, 0.05753348022699356, -0.1751432716846466, 0.7924416661262512, -0.23230570554733276, -0.04516051337122917, 0.43631359934806824, 0.5308893322944641, 0.6182438135147095, 0.033591996878385544, 0.2512131929397583, -0.6637240052223206, -0.6457126140594482, 0.9832062721252441, -0.4323331117630005, -0.3703102469444275, 0.018931254744529724, 0.0022266125306487083, 0.3323742747306824, -0.7233185768127441, 0.565779447555542, -0.8147261142730713, -0.04963071644306183, -0.112190380692482, -1.0287188291549683, -0.37513795495033264, 0.7691766619682312, 1.1319133043289185, -0.24159568548202515, -0.8341712951660156, -0.747597336769104, 0.5960729122161865, -0.4027591645717621, 1.0302419662475586, 0.02464800328016281, 0.39537420868873596, 0.1974422186613083, -0.40038830041885376, 0.10312217473983765, -0.5862013101577759, 0.09848096966743469, -0.8452849388122559, 0.2744300067424774, -0.28719186782836914, -0.11056805402040482, 0.03991828113794327, -0.5174254179000854, 0.6071034073829651, -0.2748623192310333, 0.5112064480781555, 0.4026111960411072, -0.8034508228302002, -1.7991091012954712, -0.7518576979637146, 1.0551486015319824, 0.6638131737709045, 0.3379274606704712, -0.037424664944410324, 0.4193214178085327, -1.6702888011932373, -0.1961909830570221, 0.6873430013656616, 0.4814033508300781, -0.3711467981338501, 1.6159858703613281, 2.178252935409546, 0.3183189630508423, 0.3826313018798828, -0.044810548424720764, 0.7177100777626038, -1.2938569784164429, -1.1915323734283447, -0.4543825387954712, -0.03690146282315254, 0.5000806450843811], [0.5258632302284241, 1.1797676086425781, -1.8954617977142334, -0.20279604196548462, 0.5846714973449707, 0.7930235266685486, 0.7613068222999573, -0.32283586263656616, 0.5422583818435669, -1.0024559497833252, -0.5694453120231628, 0.15516401827335358, 0.043933477252721786, 0.5544344186782837, 0.09844835102558136, 0.49582818150520325, 0.44066882133483887, -0.981569230556488, 0.25941595435142517, 1.887636423110962, -0.033591195940971375, -0.7292613983154297, 0.27255451679229736, 0.5378667116165161, -0.19787754118442535, 0.025327876210212708, -1.689652442932129, -0.5507392883300781, -1.37882399559021, -0.28261542320251465, 1.1104516983032227, -1.3556758165359497, -0.6590588092803955, 0.28876227140426636, -1.5593128204345703, -0.2093406617641449, 1.6428735256195068, 0.2772756516933441, 0.9828801155090332, 0.29313763976097107, 2.102295160293579, 0.043463084846735, 0.2790156900882721, -1.798531174659729, 0.07938718795776367, 0.13375066220760345, 0.9619128704071045, -0.7215420007705688, 0.07560330629348755, -0.781715989112854, 0.10547878593206406, -0.5768729448318481, 1.4883164167404175, 0.5393966436386108, 1.85098397731781, 0.41876253485679626, 0.30896317958831787, 0.7496609687805176, 0.7335941791534424, -0.4514384865760803, 0.2829569876194, 0.05267520248889923, -0.6707361340522766, 1.3926587104797363, 0.26610618829727173, -0.26074346899986267, -0.04059337452054024, 0.8573951125144958, 0.2885522246360779, -0.27347326278686523, 0.9614622592926025, 0.09466255456209183, -0.9582549333572388, 0.36985015869140625, -1.3675694465637207, 0.7985801696777344, 0.3116655945777893, 0.9043565988540649, 0.06242075562477112, 0.20714472234249115, -0.1782890409231186, -0.2999371886253357, 0.6427500247955322, -0.3808724284172058, 0.352582722902298, -0.17427054047584534, 1.25246000289917, -0.4431810975074768, -0.09658131003379822, 1.196813941001892, 0.7725694179534912, 0.4650694727897644, -0.10032029449939728, -0.4993332028388977, -0.35511070489883423, -0.9104455709457397, 0.1796751171350479, -1.0358734130859375, -0.5605553388595581, -0.8350523710250854, -0.6391699314117432, -0.6715978384017944, -0.39128488302230835, -0.13677674531936646, 0.0058260951191186905, 1.2010424137115479, -0.056943874806165695, 0.5417172312736511, -0.5889672636985779, 0.4479035437107086, -0.31844520568847656, 0.44842636585235596, -1.0220117568969727, -1.3768610954284668, -1.244816780090332, 0.45746245980262756, 1.1524746417999268, -0.18939179182052612, 0.5278292298316956, 0.792593777179718, -0.6245083808898926, -0.07304771989583969, -0.4398820102214813, 0.0990012139081955, 0.7600480914115906, 0.6757206916809082, 0.15397298336029053, -1.0693806409835815, 0.9449202418327332, 0.03555652126669884, 0.37102827429771423, -0.474181592464447, 0.4216976761817932, 0.410970002412796, -0.6735045313835144, 0.7626746892929077, 0.564663827419281, -0.5300775766372681, -0.0379561111330986, 0.238589346408844, 0.8659197092056274, 0.006303738337010145, 0.10344202816486359, -0.7991798520088196, -0.41851842403411865, -0.6058555245399475, 0.6343303918838501, -0.3954184651374817, -0.6638665795326233, 0.28133484721183777, -0.7326763272285461, 0.2658167779445648, 0.09723199158906937, 0.48763179779052734, 0.46048927307128906, -0.08354906737804413, -0.3351120352745056, 0.20332756638526917, 0.2601644694805145, -0.4563559293746948, 0.4019661545753479, -0.10030820965766907, -0.4519898295402527, 0.9020575284957886, 0.5186232328414917, -0.09233000874519348, -0.04156133905053139, 0.508283257484436, -0.3433170020580292, 0.5635212063789368, -0.4852736294269562, -0.07720508426427841, -0.5477713346481323, 0.7878802418708801, 0.8166005611419678, -0.21353092789649963, 1.6906611919403076, -1.1296966075897217, -0.38054531812667847, -0.9763355255126953, -0.013354100286960602, -0.20353123545646667, 0.26594194769859314, -0.02541152387857437, 0.5384976863861084, -0.742713212966919, 0.6790944337844849, 0.08231118321418762, -0.725896954536438, -0.778377890586853, -0.39829063415527344, 0.11287370324134827, -1.4639296531677246, 0.35496675968170166, -0.16429713368415833, -1.0113085508346558, 0.4947710633277893, -0.17200148105621338, -0.39536339044570923, 0.10973075777292252, -0.46911585330963135, -0.3219768702983856, -0.30266815423965454, 0.3437604308128357, -0.1165708675980568, 0.41673704981803894, -0.8248962163925171, 0.6165279746055603, -0.562088668346405, 0.033230602741241455, 1.3853524923324585, 0.06293415278196335, -0.8134732246398926, 0.879584789276123, -0.15078850090503693, -1.9722174406051636, 0.39320772886276245, 0.24324773252010345, -0.5028321743011475, -0.05199447274208069, 0.44563910365104675, 0.9139267206192017, 0.30257219076156616, 0.2578010559082031, 0.7582540512084961, -0.5243353247642517, -0.4348679482936859, -0.6972733736038208, -0.8499345779418945, 0.2182648926973343, -0.4289475381374359, -1.047629714012146, 1.3140498399734497, 0.3781466782093048, -0.7332754135131836, -0.20329271256923676, 0.26128602027893066, -0.2621519863605499, -0.24382628500461578, 0.8392142653465271, 0.3128061890602112, 0.9348173141479492, -0.09278374910354614, -0.17826582491397858, -0.5615416765213013, 0.4059678912162781, 1.7012450695037842, -0.3655305504798889, 0.04929683357477188, 0.8777757883071899, 1.256471037864685, 0.12592343986034393, 0.20188263058662415, -0.023752450942993164, -0.40930506587028503, -0.8240026235580444, -1.092099905014038, 0.4895473122596741, -0.5200703144073486, 0.8023331165313721, 0.48325347900390625, -0.9464108347892761, -0.687434196472168, 0.24640244245529175, 0.549197793006897, -0.39259904623031616, -1.0516927242279053, -1.1102468967437744, -0.04047323018312454, 0.11329828202724457, -0.34390926361083984, 0.8204828500747681, -0.13280001282691956, 0.7462015151977539, -0.3991566300392151, -0.5533972978591919, -0.7606266140937805, 0.8653806447982788, -0.2996324300765991, 0.8890119791030884, -0.10673370212316513, -0.8957263231277466, -0.6829695701599121, -0.03166613727807999, 0.695118248462677, 0.23740500211715698, -0.10376804322004318, -0.3563973307609558, -0.0357220433652401, -0.4333670139312744, 0.1705125868320465, 0.06318799406290054, -0.1379951387643814, 0.15372306108474731, 0.6557937860488892, 0.5649990439414978, 1.357537865638733, -1.0952658653259277, -1.3588142395019531, -0.0850084200501442, 0.7911524772644043, 1.1080375909805298, 1.0818095207214355, 1.0916366577148438, -0.35205814242362976, -0.5219570398330688, -0.2424488067626953, -1.1402195692062378, -0.1492598056793213, -0.9213943481445312, -0.39349985122680664, -1.3232848644256592, -0.44458943605422974, -0.24013406038284302, -0.4281501770019531, 1.3734991550445557, 0.3099727928638458, 0.4044957756996155, 1.370311975479126, 0.38588014245033264, -1.2236316204071045, -0.6582884788513184, -0.19058628380298615, -0.8502135276794434, 0.4590931534767151, 1.1040546894073486, -1.433539867401123, -0.8760901689529419, -0.7306081652641296, 0.14244578778743744, 1.0757737159729004, 0.16671201586723328, -0.3430446684360504, -0.8597505688667297, -0.6922675967216492, -0.03207722306251526, 0.4373131990432739, 0.2539646625518799, 0.28571659326553345, -0.7297573685646057, 0.05402761697769165, 0.9093712568283081, 0.2840036451816559, -1.0307108163833618, 0.8797140121459961, -0.002699524164199829, -0.8580693602561951, -0.2545345723628998, 0.03766978532075882, 0.8068615794181824, -0.5129057168960571, -0.3039535880088806, -0.4214017689228058, -0.44213032722473145, -1.2515217065811157, 0.640505313873291, -0.36527353525161743, 0.975848913192749, -0.25383150577545166, 0.2779221832752228, 0.9788950681686401, -0.5808491706848145, -0.023431502282619476, -1.1793791055679321, 0.6679298877716064, 1.336423397064209, 0.5685094594955444, -0.5106172561645508, -0.08393219858407974, 1.0486396551132202, -0.6491580605506897, 0.21081851422786713, 0.6649914979934692, 1.0443835258483887, 0.35215920209884644, -0.06314554065465927, -0.07313553243875504, 0.17127351462841034, -0.28224262595176697, -0.9531462788581848, 0.4539901614189148, -0.5855610370635986, -1.6663463115692139, -0.9436658620834351, 1.1686437129974365, 0.31851106882095337, -0.12512746453285217, -0.8916422724723816, 0.18592612445354462, 0.8953322172164917, 0.010640215128660202, 0.8400835990905762, -0.8956087827682495, -0.17448759078979492, 0.2038612961769104, -0.7992246150970459, -1.0371562242507935, 0.4719986319541931, 0.12986385822296143, 0.6025600433349609, -0.6586219072341919, 0.09979315102100372, -0.3085489571094513, 0.7101190090179443, 0.8052381277084351, -0.04359372705221176, 0.5036664605140686, -0.029554050415754318, 0.008896454237401485, -0.6397498250007629, 0.42613911628723145, 1.8818870782852173, -0.33566588163375854, -0.006453223526477814, -0.4515444040298462, -0.3774089217185974, -0.15257528424263, 0.043758489191532135, -0.11754539608955383, -0.013049422763288021, -0.6188610792160034, -0.04007893055677414, 0.48041123151779175, 0.25070565938949585, 1.9686431884765625, 0.36432284116744995, 0.5669530630111694, 0.4184878468513489, -0.3776991069316864, -0.9234009981155396, -0.0987279862165451, 0.08660208433866501, -0.31287848949432373, -1.4896323680877686, -0.18607407808303833, 0.37462082505226135, 0.6360616087913513, 0.4092850089073181, 0.06305604428052902, 0.9573222994804382, -0.16263236105442047, -0.040086157619953156, -0.278652548789978, 0.6462686061859131, 0.8368521928787231, 1.0501513481140137, 0.4439437985420227, -0.9803990125656128, -0.6062799096107483, 0.8692620992660522, 0.10923196375370026, 0.3900992274284363, 0.7216216921806335, -0.09285667538642883, 0.5862029790878296, -2.1661837100982666, -0.8553035855293274, 0.03756321221590042, -0.01319928839802742, 0.6905713081359863, 0.15103361010551453, -0.3930100202560425, -0.7197095155715942, 0.4164871871471405, -0.3866264820098877, 0.009959869086742401, 0.8580410480499268, 0.24445505440235138, 0.11891372501850128, 0.48264870047569275, 0.06845768541097641, -0.05218120664358139, -0.7678247690200806, 0.544030487537384, -0.8386354446411133, -0.03066171333193779, 0.5610957145690918, -0.27602896094322205, -0.05548649653792381, 1.0730342864990234, -0.04384908080101013, -0.9174609184265137, 0.4915114641189575, -0.403134822845459, 0.5471709370613098, -0.20917882025241852, -0.9570545554161072, -0.17790168523788452, -0.10095246136188507, 0.045245639979839325, 0.49196189641952515, 0.07288578152656555, -0.5112155079841614, -1.275585651397705, -0.977878212928772, 0.3239629566669464, 1.0734515190124512, 1.2177205085754395, -0.41150951385498047, 0.5450605750083923, -0.21180149912834167, 1.1718826293945312, -0.7515227794647217, -0.318092942237854, -0.03480099141597748, -0.3431265950202942, 0.16249369084835052, -1.5999631881713867, -0.6508898735046387, 0.15287606418132782, 0.6488772630691528, 0.47012293338775635, 0.3776452839374542, 0.6866762638092041, 0.8312356472015381, -0.2534978985786438, -0.22516097128391266, 0.7782695293426514, -0.8750864267349243, 0.08724963665008545, 0.8609414100646973, -0.31370997428894043, -0.8155431747436523, -0.5568459033966064, -1.485923409461975, 0.995163083076477, -0.4737277328968048, -1.6026334762573242, 0.9083026647567749, 0.3223283290863037, 0.33891773223876953, 0.3620975613594055, -0.20469681918621063, 0.3041910231113434, -0.030368167906999588, -0.5969842672348022, -1.8991671800613403, 0.5888111591339111, 0.07057859748601913, -0.717979907989502, -0.09786292165517807, 1.1155428886413574, -0.3581668734550476, -0.4304344654083252, -0.355582058429718, 0.9462807178497314, 0.24415206909179688, 1.1232423782348633, 0.6441361904144287, -0.9188955426216125, 0.151129350066185, -1.0613677501678467, -0.7757796049118042, -0.3597713112831116, 0.7813172936439514, 0.11156738549470901, -0.4937247633934021, -0.4773281216621399, -0.30199700593948364, -0.5710226893424988, 0.03147822245955467, -0.26152873039245605, 1.2449424266815186, 0.4141782522201538, 0.08560070395469666, 0.46271395683288574, -0.03184249997138977, -0.7317608594894409, -0.6494009494781494, -0.15990105271339417, 0.7266854047775269, -1.2308077812194824, -0.1737106442451477, 0.13071441650390625, -0.8480136394500732, -0.3983079791069031, -0.8133889436721802, 0.6987190246582031, -1.3021445274353027, -0.8932301998138428, -0.7546367645263672, 0.003818245604634285, 1.4753971099853516, -0.2122322916984558, 0.6968417167663574, 0.37717992067337036, -1.6047487258911133, 0.8158921003341675, -0.3842020630836487, -1.0813778638839722, -0.11137033998966217, -0.8744145631790161, 0.23753774166107178, 0.13556896150112152, 0.6544238328933716, -0.04135698825120926, 1.4905787706375122, -1.8587874174118042, -0.9007517099380493, -0.9441027641296387, -0.24396400153636932, 0.9722293615341187, 0.7631608247756958, -0.9314415454864502, 1.403490662574768, 0.6124762296676636, -0.4154563248157501, 0.18272826075553894, 0.2006281614303589, -0.5804903507232666, -0.08667203038930893, -0.02322062849998474, 0.6074211597442627, 0.44791534543037415, 1.2310813665390015, 0.7523483037948608, 0.6190113425254822, 0.15615099668502808, 0.15530166029930115, 0.19566386938095093, -0.3221924304962158, -0.08878667652606964, 0.7102275490760803, -0.6343337893486023, -0.6590478420257568, -0.3550434708595276, -0.4574182629585266, -0.901344895362854, 0.7847247123718262, 0.7156475186347961, -1.2228007316589355, -0.045980699360370636, -0.9290323257446289, 0.21501848101615906, -0.7595945596694946, 0.7113049626350403, -0.24159622192382812, 0.7933288216590881, 0.15258751809597015, -0.42978137731552124, 0.5925967693328857, -1.0073370933532715, -0.28691738843917847, 0.5734651684761047, -0.040806885808706284, -0.45883601903915405, 0.512488842010498, 0.47857317328453064, 0.31855201721191406, -1.150072455406189, 1.5261645317077637, 1.380035638809204, -0.09426994621753693, 0.7483645081520081, 0.8045800924301147, -0.14136023819446564, 0.5256736874580383, -0.2658019959926605, -0.33940666913986206, -0.304176390171051, -0.06714016199111938, 0.9903637170791626, 0.7330495715141296, -0.7498666048049927, 0.09072305262088776, -0.36047834157943726, 1.0848990678787231, 1.0642706155776978, -0.6598135232925415, -0.16099384427070618, 0.670750617980957, -0.6074486970901489, 0.28569507598876953, 0.1987873613834381, 0.6051336526870728, 0.3755161762237549, -0.4161669909954071, 0.4457824230194092, 0.2077331393957138, -0.644412636756897, 0.968241274356842, 0.24595829844474792, 0.544776439666748, -0.06144434213638306, -0.33230212330818176, -1.0353655815124512, 0.43321549892425537, -0.9766801595687866, -0.7204427719116211, 0.8687200546264648, -1.8477685451507568, -1.1120378971099854, 0.6267890930175781, 0.5401425957679749, -0.994408130645752, -0.4649863541126251, 0.6498884558677673, -0.1137705072760582, 0.1504022479057312, 1.0487022399902344, -0.18057772517204285, 1.1081181764602661, 0.6400598883628845, -0.05060093104839325, -0.5378751754760742, -0.7475904822349548, 0.23012098670005798, -0.1796731948852539, -0.5093657374382019, 0.20891112089157104, 0.1175280436873436, -0.28726473450660706, -0.5145165324211121, 0.43148064613342285, -0.2543734312057495, -0.03349435329437256, 0.03942296653985977, -1.3528488874435425, -0.43725186586380005, 0.19301098585128784, 0.6741296648979187, -0.6517406702041626, -0.586808443069458, -1.1417121887207031, 0.707994818687439, -0.39386460185050964, 1.5359508991241455, 0.6427711248397827, 0.27056893706321716, 0.12605777382850647, -0.33216971158981323, -0.5302470922470093, -0.6883605718612671, 0.34189462661743164, -0.3145742118358612, 0.932629406452179, 0.21749413013458252, -0.19593755900859833, 0.29518643021583557, -1.2176368236541748, 1.0400023460388184, 0.15257158875465393, -0.24504664540290833, 0.03016090765595436, -0.8915032148361206, -1.2858576774597168, -0.830207109451294, 0.8615857362747192, 1.1013189554214478, 0.35542625188827515, 0.18423809111118317, -0.09903024137020111, -1.3338723182678223, -0.2019055187702179, 0.4360138773918152, 0.12858620285987854, -0.3511219322681427, 1.1756978034973145, 1.5151833295822144, -0.005260765552520752, 0.6898185014724731, -0.09015871584415436, 0.4074516296386719, -1.015485405921936, -0.20388926565647125, 0.2651783227920532, -0.10671534389257431, 0.14043910801410675], [-0.05834423750638962, 1.4030567407608032, -2.1457343101501465, -0.8305323719978333, 1.1332224607467651, -0.11222120374441147, 1.3141006231307983, -0.1624993532896042, 0.1373901069164276, -0.8220735788345337, 0.3131319582462311, -0.14783696830272675, 1.0983092784881592, 0.9908750057220459, 0.17807240784168243, 0.6449163556098938, 0.0972948968410492, -0.9162625670433044, 0.3212772309780121, 1.1492458581924438, 0.031024876981973648, -0.43453922867774963, -0.38937416672706604, 0.08763787895441055, -0.7058014869689941, 0.35716450214385986, -0.930901288986206, -0.12646721303462982, -1.6695878505706787, 0.045231182128190994, 1.0999441146850586, -2.0699479579925537, -0.6766623854637146, 0.37089136242866516, -2.249892234802246, -0.9705498814582825, 1.4916234016418457, 0.42410412430763245, -0.21991093456745148, -0.38877230882644653, 2.1969711780548096, -0.10935699194669724, 0.024740464985370636, -1.2356797456741333, 0.9379743933677673, -0.44691991806030273, 1.3496992588043213, -1.2873486280441284, -0.26932623982429504, -0.5141963958740234, 0.00018590129911899567, -0.33523988723754883, 0.6014680862426758, 0.6782354116439819, 1.1381702423095703, 0.24024204909801483, 1.1241352558135986, 0.11517783999443054, 1.0091100931167603, 0.2960878610610962, 0.5170935988426208, 0.426037460565567, -0.32116350531578064, 1.059327244758606, 0.5061865448951721, 0.5854440331459045, -0.9289119243621826, 0.7973567247390747, -0.5394164323806763, -0.9423935413360596, 1.3676868677139282, -0.32172760367393494, -0.5277689695358276, 0.1074669137597084, -1.149283528327942, 0.304473876953125, 0.7140419483184814, 0.49689528346061707, 0.40541043877601624, 0.27609676122665405, -0.6433628797531128, 0.15319649875164032, 1.26754629611969, -0.5642939209938049, 0.8113132119178772, 0.012103043496608734, 0.7710831165313721, -0.09062431007623672, -0.6599618792533875, 1.284255862236023, 0.21160565316677094, 0.3788922429084778, 0.512221097946167, -0.06132009997963905, -0.1781361997127533, -0.6159057021141052, 0.2926461100578308, -0.5170584321022034, -0.5822202563285828, -0.7979786992073059, -1.3117011785507202, -0.7744312286376953, 0.20234549045562744, -0.03492413088679314, 0.28178104758262634, 1.4168318510055542, -0.1632688194513321, -0.32785844802856445, -0.2894395887851715, 0.7571595907211304, -0.2220185548067093, -0.22132565081119537, -1.0019534826278687, -0.7290068864822388, -0.715481698513031, 1.0300626754760742, 1.613893747329712, -0.6407291889190674, 1.6873656511306763, 0.8002904653549194, -0.5891845226287842, 0.4602260887622833, 0.1488226056098938, -0.08466009050607681, 0.39335885643959045, 0.2930377125740051, -0.21317178010940552, -1.3011178970336914, 0.6430854797363281, -0.16019977629184723, 0.094886913895607, -0.6723697781562805, 0.014865310862660408, 1.3880882263183594, -0.36155515909194946, 1.078591227531433, 0.24957112967967987, -0.877975583076477, -0.3358475863933563, 0.08385276049375534, 0.7065910696983337, -0.4629890024662018, 0.2908177077770233, -0.8470995426177979, -0.1585901379585266, -0.2182924449443817, 0.3466528058052063, -0.8108577728271484, -0.3509202301502228, -0.36851832270622253, -0.49082475900650024, 0.16074751317501068, 0.6865488290786743, 0.6642578840255737, 0.5884276032447815, -0.7635766863822937, 0.11809737235307693, 0.08497173339128494, 0.9192211031913757, -0.0909971222281456, 0.4302833378314972, 0.06701967865228653, -0.43609774112701416, 0.7867843508720398, 0.07719682157039642, -0.3381330668926239, 0.34285545349121094, 1.0749242305755615, -0.24976450204849243, 0.39211639761924744, -0.9890090823173523, -0.011457645334303379, -0.6575134992599487, 0.4305553436279297, 0.5108442902565002, 0.12127707898616791, 2.121689796447754, -0.7070866227149963, -1.0168455839157104, -1.2333821058273315, 0.47941479086875916, -0.03047681599855423, -0.18355591595172882, -0.005387253127992153, 0.6109301447868347, -0.31352871656417847, 0.3523927628993988, -0.5803269743919373, -0.41925984621047974, -0.9537280201911926, -0.7167562246322632, -0.6545226573944092, -0.8042619228363037, -0.02206185832619667, -0.8617234826087952, -0.44429153203964233, 1.489059329032898, -1.5399041175842285, -0.6066287755966187, -0.06720584630966187, -0.3336693346500397, -0.129484161734581, -0.8272806406021118, -0.0611434280872345, -0.050709351897239685, 0.3657403588294983, -1.0503588914871216, 0.5959338545799255, -0.39191824197769165, -0.019412992522120476, 1.5099595785140991, 0.25892722606658936, -0.2396882176399231, 1.2366057634353638, -0.26282796263694763, -0.8299426436424255, 0.5441864132881165, 0.11827827990055084, -0.17472878098487854, 0.334724485874176, 0.7278569936752319, 0.24002279341220856, -0.11588605493307114, -0.1229260116815567, 0.773807168006897, -0.44129878282546997, -0.2838439345359802, -0.6720488667488098, -1.0831443071365356, 0.7081880569458008, -1.1119719743728638, -1.268519639968872, 0.8320491909980774, 0.3446333408355713, -0.33089977502822876, -0.3985756039619446, 0.6783385872840881, 0.4716985821723938, 0.12091153115034103, 0.8500562906265259, 0.47790205478668213, 0.7146545648574829, 0.04343098774552345, -0.08623559772968292, -0.6676040291786194, 0.46446436643600464, 1.4160128831863403, -0.1586659997701645, 0.15233662724494934, 1.320583462715149, 1.0059524774551392, 0.045041441917419434, 0.09731442481279373, -0.13604667782783508, 0.17968280613422394, -0.4107387959957123, -0.7832683324813843, 0.5116569995880127, -0.672582745552063, 0.9912118315696716, 0.7970370650291443, -1.2740199565887451, -0.40816086530685425, -0.3300524353981018, -0.20453855395317078, -0.4384605586528778, -1.116870403289795, -0.860141932964325, -0.31764575839042664, -0.22596094012260437, -0.4244413375854492, 0.29363223910331726, -0.24801860749721527, 0.38196247816085815, -0.6837800741195679, -0.5764856338500977, 0.44929325580596924, 0.5623871684074402, 0.3536224663257599, 1.1793488264083862, -0.0631752461194992, -1.142204999923706, -0.8192005157470703, -0.06815944612026215, 0.6383647918701172, 0.6612981557846069, 0.3130282461643219, 0.5194222331047058, 0.06062314659357071, -0.46012675762176514, 0.0018834518268704414, 0.36117589473724365, -0.12986846268177032, 0.08767874538898468, 0.3751484453678131, 0.586418628692627, 1.334716796875, -1.0815025568008423, -0.36210963129997253, -0.36859583854675293, 0.7045658230781555, 1.23141610622406, 1.3596857786178589, 1.1254909038543701, -0.3660799562931061, 0.11266622692346573, 0.05657259002327919, -1.1495873928070068, -0.22013434767723083, -0.5697259902954102, -0.6421744227409363, -0.24290135502815247, 0.15344475209712982, 0.1943584680557251, -0.2876872718334198, 1.157762885093689, 0.05697783827781677, 1.3052703142166138, 0.925112247467041, 0.13288645446300507, 0.0006813607178628445, 0.260343998670578, 0.6357606649398804, -0.6188869476318359, 0.2600763440132141, 1.0804989337921143, -0.9120773077011108, -0.32321372628211975, 0.012362552806735039, 0.29983648657798767, 0.5933666825294495, 0.5347391366958618, -0.3715500831604004, -1.3417129516601562, -0.9645387530326843, -0.0072553567588329315, 0.7222158908843994, 0.04211811721324921, 0.5735383629798889, -0.605318009853363, -0.06769352406263351, 1.0762951374053955, 0.5634754300117493, -0.8777288198471069, 0.664462149143219, 0.1981414407491684, -0.9744243621826172, 0.09138587862253189, 0.06942103803157806, 0.40372705459594727, -0.7475096583366394, 0.2372308373451233, -0.3722492754459381, -0.32365602254867554, -0.991221010684967, -0.17962174117565155, 0.15075933933258057, 0.37666022777557373, -0.5193056464195251, 0.16514849662780762, 0.6365184187889099, -0.08730949461460114, -0.1442890614271164, -1.3963733911514282, 0.7916886806488037, 0.6163349747657776, 0.6727033853530884, -0.3700330853462219, -0.1265229731798172, 0.3056710362434387, 0.4924427270889282, -0.21709567308425903, 0.06313426792621613, 0.8360872268676758, 0.10162894427776337, -0.3715173006057739, 0.06839447468519211, 0.10101928561925888, -0.40320003032684326, -0.8964757919311523, 0.19455228745937347, 0.15982048213481903, -0.992107093334198, -0.49359944462776184, 1.0252611637115479, 0.06091751903295517, -0.4935014843940735, -0.2897123694419861, 0.1292378306388855, 0.8732553720474243, -0.6404986381530762, 0.58675217628479, -0.8443677425384521, -0.4125153124332428, -0.2885490953922272, -1.0047380924224854, -0.6481664776802063, 0.6530287861824036, -0.3393518924713135, 0.8340125679969788, -0.9321423172950745, -0.1581386774778366, -0.09062442183494568, 0.8225732445716858, 0.21487803757190704, -0.47887539863586426, 0.9217212796211243, 0.3161510229110718, 0.3309164345264435, -0.2058899700641632, 0.4603140950202942, 1.7064812183380127, -0.07857101410627365, -0.7934995293617249, 0.0656944215297699, -0.17428617179393768, 0.21880567073822021, -0.6587491631507874, 0.024413179606199265, 0.4178715646266937, -0.47594118118286133, 0.23819449543952942, 0.06811252981424332, 0.6773688197135925, 1.5710439682006836, 0.6361687183380127, 0.5231505036354065, 0.4991726279258728, -0.62855064868927, -0.5059042572975159, -0.5152631998062134, -0.12051694095134735, -0.11313451826572418, -0.41942501068115234, -0.24361808598041534, 0.2712748348712921, -0.17230086028575897, 0.34862932562828064, 0.2609691619873047, 0.6706796288490295, 0.3716506063938141, -0.1828039437532425, 0.011254319921135902, -0.09421572834253311, 0.8243091106414795, 1.2825604677200317, 0.34377521276474, -0.8468063473701477, -0.4504986107349396, 0.4320845901966095, -0.98753821849823, 0.8566030263900757, 0.9136514067649841, 0.04427992179989815, 1.5135198831558228, -1.9505548477172852, -1.1565897464752197, 0.00041672028601169586, 0.3371349275112152, 0.8065714836120605, 0.22604554891586304, 0.2253936529159546, -0.702822208404541, 0.2637961804866791, 0.11341986805200577, -0.09883271157741547, 0.36889055371284485, -0.43723759055137634, 0.41749003529548645, 0.010573871433734894, -0.42505842447280884, 0.261709064245224, -0.5838168859481812, 0.11066187918186188, 0.038744885474443436, -0.11616725474596024, 0.46293339133262634, 0.6432498693466187, -0.43668586015701294, 0.7900601625442505, -0.6628398895263672, -0.87064129114151, 0.2937523424625397, -0.6292975544929504, 0.37185558676719666, -0.8766478300094604, -0.6953306198120117, -0.3265678286552429, -0.8268474340438843, -0.5358776450157166, 0.3442508280277252, -0.44073936343193054, -0.5451263785362244, -0.7267209887504578, -1.063417673110962, 0.2366528958082199, 0.873683512210846, 1.5573972463607788, -0.01099545881152153, 0.03109915740787983, 1.0179566144943237, 0.5955169796943665, -0.6362314224243164, 0.055809199810028076, 0.580733060836792, -1.1709673404693604, 0.06502240151166916, -1.5494829416275024, -0.760846734046936, 0.9916037321090698, 0.8754846453666687, 0.26218655705451965, 0.01652141846716404, 1.041133165359497, 1.3495126962661743, -0.07622333616018295, -0.36537712812423706, 0.5102626085281372, -0.2593425512313843, 0.9998127818107605, 1.0751103162765503, -0.8937580585479736, -0.5675251483917236, -0.8560096621513367, -1.5142155885696411, 1.6048153638839722, -0.6440255045890808, -1.284563660621643, 1.2201309204101562, 0.3057892322540283, -0.12884092330932617, 0.4399486482143402, 0.31141459941864014, 0.5207465291023254, 0.42566362023353577, -1.2446608543395996, -1.5370631217956543, 0.5960298180580139, 0.22914104163646698, -0.2512657344341278, -0.547931969165802, 0.04155660793185234, -0.5609361529350281, -0.27197304368019104, 0.601101815700531, 0.5339197516441345, 0.4664752185344696, 0.5390278697013855, 0.1266191303730011, -0.24432234466075897, 0.14608651399612427, -1.127828598022461, -0.6115006804466248, -1.1487984657287598, 0.007552495226264, -0.5895237326622009, -0.37011513113975525, -0.6015673875808716, 0.3052741587162018, -0.5798833966255188, -0.2970638871192932, -0.13588733971118927, 0.5401036739349365, 1.1285920143127441, -0.14161694049835205, 0.06422529369592667, 0.10150767862796783, -0.36762601137161255, -0.7842603921890259, -0.3562934994697571, 0.6863501071929932, -1.252402663230896, -0.08741462975740433, 0.07163776457309723, -0.7354849576950073, -0.7956127524375916, 0.15864290297031403, 0.6926437020301819, -1.6807256937026978, -0.7261330485343933, -1.4656989574432373, 0.6750658750534058, 0.9014858603477478, -0.6904168128967285, 0.45395341515541077, 0.18860572576522827, -1.392558217048645, 0.540350615978241, -0.08946097642183304, -1.4413073062896729, -0.9033600091934204, -0.9383701682090759, 0.7609230875968933, -0.5649523735046387, 0.15173768997192383, -0.2429835945367813, 0.7245241403579712, -1.0697530508041382, -1.2703063488006592, -0.6941919326782227, -0.1429549604654312, 1.1360658407211304, 0.7320075631141663, -1.0762417316436768, 0.7489074468612671, 1.15702223777771, -1.11351478099823, -0.8582149744033813, 0.7085060477256775, -0.9060386419296265, 0.27224424481391907, 0.14607731997966766, 1.4077057838439941, 0.4890011250972748, 1.5001652240753174, 0.36630675196647644, 1.0479767322540283, -0.38680407404899597, 0.7174150943756104, -0.5557788610458374, -0.16295507550239563, -0.30835625529289246, 0.44428959488868713, -0.8116782307624817, -0.7589665055274963, 0.349793404340744, -1.2752856016159058, -0.6784266233444214, 0.7806355357170105, 0.7090484499931335, -0.8046033978462219, -0.31211766600608826, -0.9985114932060242, 1.3723480701446533, -0.955328106880188, -0.1849684864282608, 0.38981056213378906, -0.13823896646499634, 0.09213877469301224, -0.7978468537330627, -0.4384614825248718, -1.4158929586410522, 0.11139362305402756, 0.2648802399635315, 0.5297899842262268, -1.264713168144226, 0.9176837801933289, 0.5640580058097839, 0.12446438521146774, -0.7221413850784302, 1.5245912075042725, 1.1420587301254272, -0.32166534662246704, 0.45282867550849915, 0.21957805752754211, 0.024532116949558258, 0.45040953159332275, -0.6458300948143005, -0.9188965559005737, -0.5027326941490173, -0.24311299622058868, 0.44532665610313416, -0.30303704738616943, -0.38675737380981445, -0.2966441810131073, 0.421381413936615, 0.9584967494010925, 1.15960693359375, -0.7355602383613586, 0.24342040717601776, 0.6916313171386719, -0.060797546058893204, -0.3688749372959137, 0.17837844789028168, 0.16762876510620117, 0.3303970396518707, -0.06593859195709229, 0.38085639476776123, 0.6087844967842102, -0.8593494296073914, 1.1644760370254517, 0.2194589227437973, 0.23945200443267822, 0.05561889335513115, -0.44488662481307983, -1.4219211339950562, -0.17366157472133636, -0.434167742729187, -0.959738552570343, 0.24543383717536926, -0.7375503778457642, -1.361695647239685, 0.7385725975036621, 0.18356703221797943, -0.5837218165397644, -0.23116302490234375, 0.3293578028678894, -0.027669234201312065, -0.3162339925765991, 0.7893120646476746, -0.668340265750885, 0.6872183680534363, 0.40073737502098083, -0.007154381833970547, -0.5211486220359802, -0.43814966082572937, 0.5299412608146667, -0.06843844056129456, -0.5951473712921143, -0.30168581008911133, 0.27308064699172974, 0.22404350340366364, -0.5831318497657776, 0.7212226986885071, -0.5959638953208923, 1.107351303100586, 0.30442580580711365, -0.9606050848960876, -0.18661010265350342, 0.9468112587928772, 0.08612821251153946, -0.4212106168270111, -1.0319249629974365, -1.122180461883545, 0.17823833227157593, -0.8814833760261536, 1.0426229238510132, 0.2296162247657776, 0.18405455350875854, 0.567863404750824, -0.37457066774368286, -0.1217082068324089, -0.9207580089569092, 0.3592713177204132, -0.27573591470718384, 0.6522560119628906, 0.0911698043346405, -0.49486953020095825, 0.7036281824111938, -0.657214879989624, 1.0889567136764526, 0.23117861151695251, 0.4493604898452759, 0.1337502896785736, -1.013007402420044, -1.0368527173995972, -0.3032594919204712, 0.7207503914833069, 1.5506458282470703, 0.3629917800426483, 0.06346691399812698, -0.11131203919649124, -1.3755329847335815, -0.31659969687461853, -0.13639743626117706, 0.13196450471878052, -0.7150377035140991, 1.474674105644226, 1.3831121921539307, 0.28773045539855957, 0.734345555305481, 0.41819900274276733, 0.9523268938064575, -0.8569992780685425, 0.06455563753843307, -0.8029426336288452, -0.2032599002122879, 0.465002179145813], [0.7649298906326294, 1.788999080657959, -2.9184887409210205, -0.29270318150520325, 1.4225475788116455, -0.019727982580661774, 1.5280002355575562, -0.31656765937805176, 0.11142715066671371, -0.3208579421043396, 0.6104017496109009, 0.10164498537778854, 0.9967535138130188, 0.8666127324104309, 0.23003143072128296, -0.21471178531646729, 0.45504119992256165, -1.120374083518982, 0.8327619433403015, 1.453359603881836, 0.10470795631408691, -0.5876526832580566, -0.00021814648061990738, 0.21623894572257996, -0.467591792345047, 0.021141771227121353, -1.3035541772842407, -0.24179355800151825, -0.25947296619415283, -0.7598205208778381, 0.8289885520935059, -1.0382084846496582, -0.024228297173976898, 0.9438295960426331, -1.5284804105758667, -0.8537464141845703, 1.549301266670227, 0.7119269371032715, -0.4846794605255127, 0.5323778986930847, 1.8884179592132568, 0.5151450037956238, -0.030796419829130173, -1.5906007289886475, 0.3960539698600769, 0.21823689341545105, 0.7641481161117554, -0.9826048612594604, 0.8137243986129761, -1.1041977405548096, 0.33667507767677307, -0.16436251997947693, 0.5907425284385681, 1.0936872959136963, 1.1929556131362915, 0.6356899738311768, 0.5508998036384583, 0.39521628618240356, 1.1322163343429565, 0.00966356135904789, 0.7894511818885803, -0.1302233636379242, 0.002291870303452015, 0.9295752048492432, 0.3133940100669861, -0.4046248197555542, 0.29114413261413574, 0.5267692804336548, 0.21642687916755676, -0.29590654373168945, 0.34721383452415466, -0.5035958886146545, -0.6085746884346008, 0.03136730566620827, -0.7240525484085083, 1.2151559591293335, 0.3467015326023102, 0.7225939035415649, 0.03515222296118736, 0.189880833029747, -0.3297433853149414, -0.4506710171699524, 0.8086110949516296, -0.10608666390180588, 0.7502685785293579, -0.25432831048965454, 0.05132744461297989, -1.1461734771728516, -0.38922563195228577, 1.6686382293701172, 1.0030415058135986, -0.1269913762807846, 0.8841969966888428, -0.32036229968070984, -0.26119107007980347, -1.032043695449829, 0.5566743016242981, -0.578216016292572, -0.6133445501327515, -0.7162150144577026, -1.1684619188308716, -0.7030330896377563, -0.2826452851295471, 0.24206319451332092, -0.4100399613380432, 1.3748438358306885, -0.13889075815677643, 0.436625212430954, -0.34193333983421326, 0.2856484055519104, -0.6055759787559509, 0.2194850742816925, -0.81331866979599, -0.9185255169868469, -0.8113951683044434, 1.1197887659072876, 1.5448887348175049, -0.22637853026390076, 1.0258562564849854, 0.8994266986846924, -0.5605856776237488, -0.04043186455965042, 0.503770112991333, 0.5643640756607056, 0.1998181939125061, 0.4923709034919739, -0.3505515158176422, -0.9440873265266418, 0.23466065526008606, 0.05077213793992996, 0.19604864716529846, -0.6622889041900635, -0.1811933070421219, 0.43213310837745667, -0.4300004243850708, 0.9877240657806396, -0.31814953684806824, -0.41991108655929565, 0.31034815311431885, 0.03756630793213844, 0.5332611799240112, -0.2449045330286026, -0.7045125961303711, -0.33526137471199036, -0.1693837195634842, -0.3906237781047821, 0.43415313959121704, -0.6928786039352417, -0.6759509444236755, -0.042212266474962234, -1.125152349472046, 0.2576671540737152, 0.3343682289123535, 0.7058567404747009, 0.11312741786241531, -0.3016602694988251, 0.04108665883541107, -0.031236516311764717, 0.3900945782661438, -0.40417858958244324, 0.2245340347290039, -0.23076780140399933, -0.8710676431655884, 1.2353527545928955, -0.0888594463467598, 0.04133593663573265, -0.3366617262363434, 0.11532671749591827, -0.02123914659023285, 0.17652860283851624, -1.0353779792785645, -0.1527732014656067, -0.29276782274246216, 0.6239067912101746, 0.8244901299476624, -0.3366610109806061, 1.7143875360488892, -1.0795564651489258, -0.8307463526725769, -1.8679885864257812, -0.03950582817196846, -0.2245413362979889, 0.11392446607351303, 0.07732724398374557, 0.3839776813983917, -0.28358009457588196, 0.6887021660804749, -0.7651524543762207, -0.036302439868450165, -1.063186764717102, -0.24204085767269135, 0.14443933963775635, -1.2773891687393188, 0.4047932028770447, -0.2874520719051361, -0.62602299451828, 1.1777719259262085, -1.1669716835021973, -0.7358514070510864, -0.6322435736656189, -0.8563474416732788, -0.7730780243873596, -0.7567923665046692, -0.0060807522386312485, -0.4871760904788971, 1.3371868133544922, -1.327787160873413, 1.2293238639831543, -0.3337048292160034, 0.263489305973053, 1.3397216796875, -0.39137202501296997, -0.3587400019168854, 0.9985786080360413, -0.3386635184288025, -1.199121117591858, 0.8093082308769226, 0.035260193049907684, -0.4421186149120331, 0.3131648004055023, 0.10862575471401215, 0.6746772527694702, 0.055717602372169495, 0.3859238028526306, 0.2990764379501343, -0.25865283608436584, -0.377187579870224, -1.1756160259246826, -0.8321683406829834, 0.2305673211812973, -1.1930547952651978, -1.745420217514038, 0.6375439763069153, 0.4805426597595215, -0.830462634563446, -0.026735031977295876, 0.40326979756355286, -0.04018343985080719, 0.3144369423389435, 0.7335614562034607, 0.48281511664390564, 0.7157934308052063, 0.23249344527721405, 0.02305808663368225, -1.3051387071609497, 0.05008307844400406, 1.0197049379348755, -0.3971095383167267, 0.2962726652622223, 1.0931050777435303, 0.8727594017982483, 0.15173235535621643, 0.3611645996570587, 0.10926032066345215, 0.006641260348260403, -1.3061902523040771, -0.8632863759994507, 1.4478081464767456, -0.7440841197967529, 1.0324201583862305, 0.8889323472976685, -1.174421787261963, -0.283749520778656, -0.5854042768478394, -0.05828229710459709, -0.524387776851654, -1.452239751815796, -0.708890438079834, -0.11442901194095612, -0.024664105847477913, 0.19158780574798584, 0.8602243065834045, 0.023687118664383888, 1.0735604763031006, -0.7845498323440552, -0.6511418223381042, -0.4247363805770874, 0.8102670907974243, 0.003507235087454319, 0.260116308927536, -0.22926990687847137, -1.0533331632614136, -0.9838526844978333, -0.0993284061551094, 0.5333366990089417, 0.4282545745372772, -0.08004535734653473, -0.33808761835098267, -0.2068188339471817, -0.7732143998146057, 0.34350526332855225, 0.19881221652030945, -0.2255180925130844, 0.2663724422454834, 0.1875341832637787, 0.8632108569145203, 0.8158404231071472, -0.7670581936836243, -0.608058750629425, -0.037760455161333084, 0.7488715648651123, 0.9433628916740417, 1.0758306980133057, 1.5779849290847778, -0.32605257630348206, 0.2422824203968048, -0.13560591638088226, -0.9833459854125977, -0.3227517902851105, -0.12640787661075592, -1.0849740505218506, -0.9175344109535217, -0.6105300784111023, -0.33185896277427673, -0.7365942001342773, 0.45236191153526306, -0.16744442284107208, 1.1037787199020386, 0.8492027521133423, -0.13178575038909912, -0.46434974670410156, -0.5485309362411499, 0.08596500754356384, -1.1447337865829468, 0.4602298140525818, 0.5893610715866089, -1.3032585382461548, -0.4042223393917084, -0.3787943720817566, -0.5798195004463196, 0.6258765459060669, 0.1810530573129654, -0.6387770175933838, -1.8998093605041504, -0.5830729007720947, -0.18440209329128265, 1.2510621547698975, 0.2963007092475891, 0.31201374530792236, -0.22729529440402985, 0.3313511312007904, 0.06456106901168823, -0.1811196655035019, -1.100935935974121, 0.5309063196182251, -0.4992883801460266, -0.623367428779602, 0.081583671271801, 0.8010326027870178, 0.550737202167511, 0.037955962121486664, -0.10106052458286285, -0.048228248953819275, -0.017388178035616875, -0.5865399837493896, 0.4783990681171417, 0.21272045373916626, 0.42812225222587585, -0.2985179126262665, -0.04198160022497177, 0.8619091510772705, -0.5501019358634949, -0.2247740477323532, -1.0931150913238525, 0.939469039440155, 0.36097243428230286, 0.6837334632873535, 0.22657828032970428, 0.22783242166042328, 0.44026899337768555, -0.6083042621612549, 0.4789629876613617, 0.050749052315950394, 1.460376262664795, 0.5001176595687866, -0.004104627296328545, -0.5171351432800293, 0.2702009975910187, -0.5048893094062805, -0.2613030970096588, 0.2599029541015625, 0.22028273344039917, -0.5697465538978577, -0.7688761353492737, 1.6022204160690308, 0.6906254887580872, -0.3845072388648987, -0.6911123394966125, -0.03232968598604202, 0.9705158472061157, -0.2291860580444336, 0.8642997741699219, -0.9029573202133179, -0.33162346482276917, 0.0634697824716568, -0.8660050630569458, 0.08635620772838593, 0.4579622447490692, 0.09870874881744385, 0.3650095462799072, -0.8677773475646973, 0.11398164927959442, -0.40730929374694824, 0.8879374861717224, 0.5868328809738159, 0.21641170978546143, 0.8159895539283752, -0.18793001770973206, 0.7820659875869751, -0.29969194531440735, 0.6090469360351562, 2.075723886489868, -0.7064242362976074, -0.25094693899154663, 0.14464670419692993, -0.2441866248846054, -0.3792911767959595, -0.8182306885719299, -0.7307117581367493, 0.35434550046920776, -0.15125125646591187, -0.32453685998916626, 0.20077991485595703, -0.058057449758052826, 1.5220133066177368, 0.534385085105896, 0.5265719294548035, 0.2759665548801422, -0.5078922510147095, -1.3723456859588623, 0.32370421290397644, 0.11455870419740677, 0.19879035651683807, -0.3820223808288574, -0.3977872133255005, -0.29354625940322876, -0.08950025588274002, 0.7597594261169434, 0.7744836807250977, 0.9506756663322449, 0.2532402276992798, 0.030346784740686417, -0.6022735834121704, 0.01683870330452919, 0.5559051036834717, 1.4833264350891113, 0.16561122238636017, -0.14284126460552216, -0.7698420882225037, 0.9950348138809204, -0.6108720302581787, 0.2249009758234024, 0.9762764573097229, 0.13444575667381287, 1.0320898294448853, -2.269914150238037, -0.7117684483528137, 0.40676939487457275, 0.31669747829437256, 0.4008035361766815, 0.021691767498850822, -0.19365578889846802, -0.7496290802955627, 0.7600564956665039, 0.8411781787872314, -0.049773648381233215, 0.2603763937950134, 0.13120806217193604, 0.5405662059783936, 0.40685662627220154, -0.7032308578491211, 0.5766550302505493, -0.6531403064727783, -0.09421301633119583, -0.27045923471450806, -0.6029985547065735, 0.8200799226760864, 0.03031783364713192, -0.25702357292175293, 0.4631614685058594, 0.07294027507305145, -0.5830540657043457, 0.26043587923049927, -0.39671590924263, 0.7877953052520752, -0.08420762419700623, -0.018989982083439827, -0.21594829857349396, -0.8229214549064636, -0.6843816041946411, 0.49208346009254456, -0.3942487835884094, 0.07587895542383194, -0.6587816476821899, -1.21317458152771, 0.11107510328292847, 1.182601809501648, 1.2074514627456665, 0.3274010121822357, 0.48503318428993225, 1.012398600578308, 0.8759448528289795, -0.9899570941925049, 0.1674586981534958, 0.009997253306210041, -0.4813814163208008, -0.31349265575408936, -1.8619085550308228, -1.027815818786621, 0.07076497375965118, 0.3194473385810852, 0.37598514556884766, -0.21928220987319946, 1.1681057214736938, 1.3821872472763062, -0.12997518479824066, -0.11965181678533554, 0.41240453720092773, -0.9089982509613037, 0.6711562871932983, 0.9118812680244446, -0.7013615369796753, -0.6408010125160217, -0.7238319516181946, -1.3130849599838257, 0.9198159575462341, -0.7453495860099792, -0.6224978566169739, 0.7960767149925232, -0.29457780718803406, -0.05270287021994591, 0.7733380794525146, -0.15312758088111877, 0.5765426754951477, 0.18820726871490479, 0.460396409034729, -1.2803139686584473, 0.532440721988678, 0.42477548122406006, 0.019623223692178726, -0.26537010073661804, 0.410888671875, 0.37746432423591614, -0.2674833834171295, 1.0386117696762085, 0.32499900460243225, 0.4768456220626831, 0.3865624666213989, 0.7548834085464478, -0.528952956199646, 0.5719911456108093, -1.1751399040222168, -0.3987760841846466, 0.012847216799855232, 0.47900480031967163, -0.37691953778266907, -0.34993472695350647, -0.32410019636154175, -0.6485702395439148, -0.6574475765228271, -0.2650514841079712, -0.10481692850589752, 1.2815850973129272, 0.5859438180923462, 0.22029860317707062, 0.14860230684280396, -0.657098650932312, -0.7113957405090332, -0.5144134759902954, -0.035175904631614685, 0.719661295413971, -0.6904153227806091, 0.12061644345521927, -0.15523932874202728, -0.25153809785842896, 0.06154574826359749, -0.5576533079147339, 0.36956101655960083, -1.6880918741226196, -1.3125101327896118, -0.3171151876449585, 0.22512038052082062, 1.2361078262329102, -0.6463137269020081, 0.95747309923172, 0.897474467754364, -1.1297311782836914, -0.0037705316208302975, -0.1306229680776596, -1.405391812324524, -0.2897810935974121, -1.1941112279891968, 1.026729941368103, -0.27070340514183044, 0.216609925031662, 0.3451943099498749, 1.51168692111969, -1.6169171333312988, -0.5984278321266174, -1.0247989892959595, -0.44979819655418396, 0.8114793300628662, 1.2099698781967163, -1.1241719722747803, 1.3682693243026733, 0.7188302874565125, -0.3093923330307007, -1.0641435384750366, 0.07463899999856949, -0.5108160376548767, -0.1446484625339508, -0.2512814998626709, 1.0432040691375732, -0.6081655621528625, 1.0512865781784058, 0.009651381522417068, 0.929128885269165, 0.3800163269042969, 0.933326244354248, -0.25593963265419006, -0.3588600158691406, -0.034279465675354004, 0.8140554428100586, -0.8968501091003418, -0.6277955174446106, 0.13175490498542786, -1.239479422569275, -0.894950270652771, 0.5051103830337524, 0.7479070425033569, -0.7496216297149658, -0.000650208443403244, -0.936077892780304, 0.49262988567352295, -0.9852553009986877, 0.45406389236450195, -0.16732048988342285, 0.3738120198249817, 0.22529864311218262, -0.34382903575897217, -0.11423343420028687, -1.2194912433624268, 0.03410853073000908, 0.8089070320129395, 0.08062795549631119, -1.1039282083511353, 0.9223492741584778, 0.7828563451766968, 0.43006712198257446, -0.13609789311885834, 0.9571931958198547, 1.1141078472137451, -0.29280537366867065, 0.02294270135462284, 0.4880044460296631, 0.24064232409000397, 0.7998490929603577, -1.202858328819275, -0.3173322081565857, -0.7360274195671082, -0.23600554466247559, 0.579958975315094, 0.07902868092060089, -0.4739755392074585, -0.17855314910411835, -0.6174530982971191, 0.9631153345108032, 0.6526080369949341, -0.7611971497535706, -0.2846704423427582, 1.2197093963623047, -0.4676941931247711, 0.1801675707101822, 0.13477826118469238, 0.4590255916118622, -0.05847710371017456, -0.2983446419239044, 0.6570658087730408, 0.5962428450584412, -0.47230878472328186, 0.5786316990852356, 0.34093236923217773, 0.32961806654930115, -0.08915849030017853, -1.0186647176742554, -1.4437885284423828, -0.4112415313720703, -0.7324104309082031, -0.8384053111076355, 0.15228936076164246, -1.0576351881027222, -1.5742892026901245, 0.6837036609649658, -0.07611217349767685, 0.046257536858320236, -0.11878127604722977, 0.6725884079933167, -0.31561875343322754, -0.4671546220779419, 1.190469741821289, -0.09657624363899231, 1.0279052257537842, 0.6279085278511047, -0.19304785132408142, -0.7429148554801941, -0.594127893447876, 1.04942786693573, -0.4390895664691925, -0.7284371256828308, -0.235964834690094, -0.17446596920490265, -0.36776039004325867, -0.5546767711639404, 0.3561515212059021, 0.20030325651168823, -0.0015277992933988571, 0.1282835453748703, -1.1230182647705078, 0.3170824348926544, 0.17998939752578735, 0.4504164159297943, -0.60648512840271, -0.7378005981445312, -0.7623894214630127, -0.008800026029348373, -0.807974100112915, 1.156101942062378, -0.09960633516311646, 0.598181426525116, 0.6201891899108887, -0.8421068787574768, -0.3956187665462494, -0.9390915632247925, 0.4583984911441803, -0.7200387120246887, 1.1083587408065796, 0.2112545669078827, -0.3280015289783478, 0.32232773303985596, -0.4394013583660126, 0.2976283133029938, -0.09398115426301956, 0.10046706348657608, 0.242203027009964, -1.0439541339874268, -0.9188016057014465, -0.742251455783844, 0.9838067293167114, 1.4404637813568115, -0.02915259450674057, 0.13176871836185455, 0.13340993225574493, -1.2863736152648926, 0.29271337389945984, 1.2055543661117554, 0.200711190700531, -0.22501863539218903, 1.6028951406478882, 1.965933084487915, 0.5996918082237244, 0.7524111866950989, 0.15390019118785858, 0.49131375551223755, -0.6934048533439636, -0.4128924608230591, -0.853878915309906, 0.11510711908340454, -0.07294754683971405], [0.06204887852072716, 1.5870583057403564, -2.197740077972412, -0.815377414226532, 1.787556767463684, 0.5712597370147705, 1.3746463060379028, 0.0833883211016655, 0.3262857496738434, 0.03570793941617012, -0.16422316431999207, -0.1986987292766571, 0.7123410701751709, 1.557588815689087, -0.22595860064029694, 0.32370826601982117, 0.34453284740448, -0.5159624814987183, 0.5455778241157532, 0.7386167645454407, 0.2922239601612091, -0.2003261148929596, -0.18809300661087036, 0.24058525264263153, -0.8959566950798035, 0.39835524559020996, -1.1701083183288574, -0.17712272703647614, -0.3723895847797394, -0.49709779024124146, 1.6569548845291138, -0.9837402105331421, -0.08954859524965286, -0.5508435368537903, -1.211328148841858, -0.7961907982826233, 2.0705323219299316, 1.6596791744232178, 0.774434506893158, 0.4541272222995758, 1.6636091470718384, 0.34000566601753235, -0.5862997174263, -1.4295635223388672, -0.42517584562301636, 0.0005143336020410061, 1.0325570106506348, -0.76048344373703, 0.15905538201332092, -0.7691909670829773, 0.35255274176597595, -0.2479877769947052, 1.3425781726837158, 0.615329384803772, 0.8678987622261047, 0.11988801509141922, 0.5690689086914062, 0.07347499579191208, 0.9339346289634705, -1.0124101638793945, 0.43483322858810425, 0.43527430295944214, 0.4597046673297882, 0.8874797224998474, -0.28107744455337524, 0.04604392498731613, -0.3762058615684509, 0.6308879256248474, 0.03371210768818855, -1.0710219144821167, 0.6832874417304993, 0.8466656804084778, -0.8563187122344971, 0.1740349382162094, -1.2703591585159302, 0.2584584653377533, 0.9879387617111206, 0.7018166780471802, -0.003941149916499853, 0.48092517256736755, 0.23685339093208313, 0.07534027099609375, 0.3236187994480133, -0.38027623295783997, 0.6266953349113464, 0.22675517201423645, -0.09513083845376968, -0.27814170718193054, -0.5512647032737732, 1.5078504085540771, 0.20215821266174316, -0.5258254408836365, 0.4122827351093292, -0.7838091254234314, -0.48146331310272217, -0.5746022462844849, -0.02592511475086212, -0.17106811702251434, -1.029325008392334, 0.02347715012729168, -0.7839526534080505, -0.6144102215766907, -0.1453535258769989, 0.19533631205558777, 0.2289370894432068, 1.1965142488479614, 0.24065643548965454, -0.08970421552658081, -0.6539661288261414, -0.20837359130382538, -0.5886841416358948, -0.0981956273317337, -0.406461626291275, -0.45535019040107727, -0.40618836879730225, -0.07360796630382538, 1.391653299331665, -0.6264008283615112, 0.9840452671051025, 0.7389591932296753, -0.6470722556114197, 0.2508963942527771, -0.7383183836936951, 0.5276336073875427, 0.974664568901062, -0.020846327766776085, -0.478349506855011, -0.44745293259620667, 0.7244747281074524, -0.4766346216201782, 0.8985998034477234, 0.561377763748169, 0.15460462868213654, 1.3951767683029175, -0.11189347505569458, 1.4042446613311768, 0.1037742868065834, -0.5226854681968689, -0.07646173238754272, -0.2500935196876526, 0.3644305467605591, 0.34439414739608765, -0.16273219883441925, -0.3321015238761902, 0.09236102551221848, -0.9132096767425537, 0.11289766430854797, -0.11907025426626205, -0.7319155335426331, 0.4535539746284485, -0.5895378589630127, 0.3621942102909088, 0.3159366846084595, 0.27808690071105957, 0.007532465737313032, -0.159019336104393, 1.1274299621582031, 1.0042818784713745, 0.25823232531547546, -0.14291702210903168, 0.505852460861206, 0.27881014347076416, -0.8280451893806458, 0.44352221488952637, 0.13734377920627594, -0.8271170854568481, 0.5196580290794373, 0.3567308187484741, 0.30166128277778625, 0.550436794757843, -0.9004128575325012, -0.14962950348854065, -0.36278367042541504, 0.6600422263145447, 0.6441190838813782, 0.3554975688457489, 1.5701090097427368, -1.4421749114990234, -1.5898082256317139, -0.8030487895011902, 0.7981928586959839, -0.33588624000549316, 0.5211395621299744, -0.2770162522792816, 0.6563820242881775, -0.43088677525520325, -0.24326901137828827, -0.06974251568317413, -0.23739077150821686, -1.2992284297943115, -0.5343078970909119, -0.14865772426128387, -0.7694333791732788, 0.7770494222640991, -0.0935342088341713, -0.8966630101203918, 0.44983866810798645, -0.8569076657295227, -0.4871008098125458, 0.17251139879226685, -0.19445635378360748, -0.12491864711046219, -0.457915335893631, 0.35610806941986084, -0.4954206049442291, 0.7354978919029236, -1.0449302196502686, 0.6862406730651855, -0.9932369589805603, 0.2263426035642624, 0.39382752776145935, 0.22205320000648499, 0.16975615918636322, 0.5178519487380981, -0.18174000084400177, -1.2247568368911743, 0.937509298324585, 0.8535733819007874, -0.43294602632522583, -0.14123855531215668, 0.5483008623123169, -0.08978033065795898, 0.6541629433631897, 0.13937868177890778, 1.0111829042434692, -0.29060056805610657, -1.0617619752883911, -0.8834639191627502, -0.46885257959365845, -0.02899288572371006, -0.26281607151031494, -1.3211122751235962, 0.9754411578178406, 1.0495649576187134, -0.6507487297058105, -0.22815540432929993, -0.2642522156238556, 0.06865733116865158, 0.1497565358877182, 0.956375777721405, 0.3996836245059967, 0.8657018542289734, -0.8889930248260498, -0.09339144825935364, -0.521271288394928, 0.1107935979962349, 0.7937599420547485, -0.7046820521354675, 0.581644594669342, 1.6205196380615234, 0.5545176863670349, 0.48280206322669983, 0.11948936432600021, -0.060140460729599, 0.6728676557540894, -1.0062984228134155, -0.3996104300022125, 0.32634252309799194, -0.3325912654399872, 1.0509059429168701, 0.40656155347824097, -0.8964855074882507, -0.46500545740127563, 0.4385124146938324, -0.07973970472812653, -0.6882026791572571, -0.39123615622520447, -0.583853006362915, -0.39276397228240967, -0.6185535788536072, -0.4914673864841461, 0.5687764286994934, -0.0104399798437953, 0.30942246317863464, 0.030717922374606133, -0.04632445052266121, -0.2156866043806076, -0.46679815649986267, -0.48884496092796326, 0.3249758780002594, -0.6094968914985657, -0.41376322507858276, -0.8234266042709351, -0.001466425135731697, 0.7679235339164734, 0.023325102403759956, -0.6402032971382141, -0.06487990915775299, 0.14820018410682678, 0.129316046833992, -0.18084150552749634, 0.45309364795684814, -0.4753357470035553, -0.5320566892623901, -0.5220423936843872, 0.3183477818965912, 0.9465246796607971, -0.3447416424751282, -0.962287187576294, -0.6249778270721436, 1.108217477798462, 1.4572621583938599, 0.6886483430862427, 1.8692243099212646, -0.37850168347358704, 0.19180573523044586, 0.0644165575504303, -0.22867947816848755, -0.26150527596473694, -0.4347996115684509, -0.6920140981674194, -0.006473305635154247, -0.20247168838977814, -0.2946324050426483, 0.13650570809841156, 0.608345627784729, -0.9197483062744141, 0.7480505108833313, 0.8894835114479065, -0.11755120009183884, -1.0621525049209595, 0.009773535653948784, -0.3945102393627167, -1.1168006658554077, 0.752185046672821, 0.6582348942756653, -0.7672545909881592, -0.8689171671867371, -0.40245941281318665, -0.7326241135597229, 1.1128515005111694, -0.08468522131443024, 0.15625359117984772, -0.9075300097465515, -0.7263091802597046, -0.04182606190443039, 0.7231494784355164, 0.42050614953041077, 0.18795229494571686, -0.9479635953903198, 0.052986029535532, 0.7383019924163818, -0.386752724647522, -0.7632211446762085, 0.7095959186553955, -0.6022753715515137, -1.0745245218276978, -0.16595521569252014, 0.705316960811615, 0.17541687190532684, -0.7530069351196289, 0.4345390200614929, -0.49686577916145325, -0.9425789713859558, -0.9108945727348328, 0.1950511336326599, 0.6130893230438232, 0.1710738092660904, 0.4608457088470459, -0.34655946493148804, 1.5476670265197754, -0.24423380196094513, 0.28260722756385803, -1.7867189645767212, 0.7961452007293701, 0.27412623167037964, 1.3497868776321411, -0.13799400627613068, 0.605147123336792, -0.3051154911518097, 0.13304363191127777, -0.11740391701459885, -0.02681855298578739, 1.0002446174621582, 0.09792715311050415, 0.21001265943050385, -0.10012707114219666, 0.07501644641160965, -0.10765640437602997, -0.749387264251709, -0.025609249249100685, 0.10241317003965378, -0.7141037583351135, -0.6300808191299438, 0.7136898636817932, 0.19698311388492584, -0.05368522182106972, -0.8394415974617004, -0.47037431597709656, 1.5364110469818115, 0.48089757561683655, 0.6487493515014648, -0.6756353974342346, 0.1634785681962967, -0.09505820274353027, -0.8030924201011658, -1.004244327545166, 0.2126605063676834, -0.468701034784317, 0.03944066911935806, -0.656295895576477, 0.06646137684583664, -0.6581440567970276, 0.32619723677635193, 0.4409022629261017, -0.34045571088790894, 0.17227385938167572, -0.27933722734451294, 0.5308183431625366, 0.028022730723023415, -0.1246139258146286, 1.2358328104019165, -0.28534573316574097, -0.8326671123504639, -0.2511610686779022, 0.04365971311926842, 0.3252578377723694, -0.48831912875175476, -0.25742265582084656, 0.1598876565694809, -0.7256737351417542, 0.05340591445565224, -0.14039146900177002, -0.07283851504325867, 0.6054096221923828, 0.6857656240463257, 0.31838807463645935, 1.099504828453064, -0.24669653177261353, -1.343522310256958, 0.05601642653346062, 0.06564506143331528, -0.45997706055641174, -0.5886663198471069, 0.22022180259227753, 0.5537390112876892, -0.027166126295924187, 0.5712268352508545, -0.08586238324642181, 0.6617331504821777, 0.12579859793186188, 0.1987229585647583, 0.21065454185009003, -0.14738206565380096, 0.7452875375747681, 1.384469747543335, 0.3597528636455536, 0.22024060785770416, -1.285284161567688, 0.07004119455814362, -1.6260225772857666, 0.39775681495666504, 1.2608317136764526, 0.33750006556510925, 1.5414917469024658, -2.166081428527832, -0.6168950200080872, 0.5424873232841492, -0.019624285399913788, 0.942021369934082, 0.7209579944610596, 0.02523627132177353, -0.37599581480026245, 0.5378032326698303, -0.06851731985807419, -0.1821594387292862, -0.06175495684146881, 0.10192815959453583, 0.05869830399751663, 0.24941381812095642, -0.906801164150238, 1.0529192686080933, -0.6524569392204285, -0.006933500990271568, -0.5831260681152344, 0.14530199766159058, 0.2499600052833557, 0.5040023922920227, 0.3071182370185852, 1.2203552722930908, -0.15642906725406647, -0.7787206768989563, 0.640599250793457, -0.6869986653327942, -0.004355519078671932, 0.37365207076072693, -0.6298232674598694, -0.3120027482509613, -1.0472612380981445, -0.5576255917549133, 0.9261888861656189, -0.20733845233917236, -0.4341375231742859, -0.6541250348091125, -1.1960827112197876, -0.013785925693809986, 0.9097804427146912, 1.3356497287750244, 0.27632835507392883, 0.7621346712112427, 0.42081451416015625, 0.3034282326698303, -0.0886441171169281, 0.029349002987146378, 0.7156895995140076, 0.533129096031189, -0.6642573475837708, -1.7362865209579468, -0.38232889771461487, 0.4877472221851349, 0.9739557504653931, -0.21050965785980225, -0.32157137989997864, 1.3680931329727173, 1.1160660982131958, -0.5152722001075745, -0.9339266419410706, 0.060349348932504654, -0.4549083709716797, -0.3339710533618927, -0.03717472404241562, -0.26997146010398865, 0.21471743285655975, -0.9644228219985962, -1.1670606136322021, 0.8714813590049744, -0.07733067870140076, -1.257709264755249, 0.5602302551269531, 0.04552784189581871, 0.4305706024169922, 0.9520360827445984, -0.38123995065689087, 0.47388505935668945, 0.43041783571243286, -0.6302927732467651, -0.5268321633338928, 0.29322367906570435, -0.10649753361940384, 0.5792675614356995, -0.3081035017967224, 0.7926540970802307, 0.3106362521648407, -0.8108478784561157, 0.5654343962669373, -0.10899920761585236, 0.9250665307044983, 1.1556521654129028, 0.4742942750453949, -0.909605860710144, 0.3010466694831848, -0.688258707523346, -0.9934941530227661, -0.23318630456924438, 0.7569024562835693, 0.481847882270813, -0.7598573565483093, -0.8403050303459167, -1.1059519052505493, -0.30429404973983765, -0.3145449459552765, -0.050614550709724426, 1.1710028648376465, -0.14420989155769348, 0.01723511703312397, 0.2204388678073883, -0.9499789476394653, -0.09149115532636642, -0.11800152063369751, -0.2848324775695801, 0.7051540613174438, -1.7423492670059204, 0.27394306659698486, 0.22324076294898987, -0.9163771867752075, 0.11853030323982239, -0.4228760600090027, 0.1323932260274887, -1.2287585735321045, -1.195296287536621, -1.4172279834747314, -0.44465944170951843, 1.0780465602874756, -0.2883869409561157, 0.6343216896057129, 0.5045567750930786, -1.820508360862732, -0.02652411349117756, 0.5287811160087585, -0.8893095254898071, 0.012805703096091747, -1.2291440963745117, 1.0950441360473633, -0.7106657028198242, 0.3221604824066162, -0.25627946853637695, 1.348434567451477, -1.2781028747558594, -1.3663467168807983, -0.8321942090988159, -0.4437393248081207, 0.6963427662849426, 0.6712966561317444, -0.719488799571991, 1.6721069812774658, 0.30987846851348877, -0.7310181260108948, -0.164558544754982, 0.4259483516216278, -0.8332686424255371, 0.7345494627952576, 0.6123800277709961, 0.1984986662864685, 0.24427473545074463, 1.4760823249816895, 0.1581614762544632, 0.6615937948226929, 0.10936097800731659, -0.08429154008626938, -0.6566863656044006, -0.5167722105979919, -0.35216236114501953, 0.5431832075119019, -1.1111305952072144, -0.4590502679347992, -0.124606654047966, -1.0589027404785156, -1.2508050203323364, 0.7770743370056152, 0.6759531497955322, -0.8429432511329651, -0.3215523064136505, 0.13035903871059418, 0.46183761954307556, -0.23197056353092194, 0.4222649037837982, 0.13767486810684204, 0.21037504076957703, 0.058990538120269775, 0.23111291229724884, 0.061741903424263, -1.5755095481872559, 0.5652080774307251, 0.170313760638237, -0.3496706783771515, -0.570359468460083, 0.7364986538887024, 1.015071153640747, -0.5587148666381836, -0.6784982085227966, 1.1496975421905518, 1.2814997434616089, 0.09231019020080566, -0.28178489208221436, 0.3858371078968048, 0.1505327820777893, 0.2329632043838501, -0.42644912004470825, 0.008756287395954132, -0.7568266987800598, 0.6594511866569519, 1.0051039457321167, -0.46443432569503784, -0.582373857498169, 0.17600701749324799, -0.9186302423477173, 0.44086378812789917, -0.05952445790171623, -0.7383261322975159, 0.24310851097106934, 1.0580650568008423, -0.39179837703704834, -0.8062569499015808, 0.16208021342754364, 0.24718120694160461, 0.3090549409389496, 0.08806972950696945, 0.39665284752845764, 0.8874596357345581, -0.9623028635978699, 1.1098177433013916, 0.6110259294509888, 0.2768884003162384, 0.3870771825313568, -0.8862575888633728, -0.9334453344345093, 0.21042580902576447, -0.5376614928245544, -1.4715325832366943, 0.32711878418922424, -1.221156358718872, -0.7625246047973633, 0.728792130947113, 0.004282377660274506, -0.6230817437171936, 0.2509250342845917, -0.08445841073989868, -0.20222586393356323, 0.6771011352539062, 0.13125406205654144, -0.8041852116584778, 0.7980987429618835, 0.3380488157272339, -0.10474103689193726, -1.3167129755020142, -0.4905721843242645, 0.4117940366268158, -0.024858852848410606, 0.04251778870820999, 0.050970740616321564, 0.28216949105262756, 0.06925870478153229, -1.081913709640503, 0.5049138069152832, -0.3391529619693756, 0.042411964386701584, -0.3183448016643524, 0.04279042035341263, 0.34928348660469055, 0.33285778760910034, 0.13877949118614197, -0.050036605447530746, -0.859413206577301, -0.6333263516426086, 0.41736477613449097, -0.05709018558263779, 1.2501614093780518, 0.09076634049415588, 0.4664826989173889, 0.5777735710144043, -0.5318470001220703, 0.03752706199884415, -0.21968898177146912, 0.18416941165924072, 0.1008542850613594, 0.7244275808334351, 0.009672826156020164, -0.4533982276916504, -0.29925477504730225, -1.3295783996582031, 0.2299225777387619, 0.08546492457389832, 0.007780059706419706, 0.031828511506319046, -0.9471961855888367, -0.7966296672821045, -0.6388148665428162, 0.6870354413986206, 0.656091034412384, 0.35857924818992615, 0.34986191987991333, -0.33258289098739624, -0.8392834067344666, -0.26944178342819214, -0.3931373059749603, 0.1516517996788025, -0.2576594054698944, 0.9613135457038879, 1.297977089881897, 0.2463158220052719, 0.7020904421806335, -0.15577605366706848, 0.6745094060897827, -0.5391032695770264, 0.08953182399272919, -0.7989265322685242, 0.41226017475128174, 0.44150301814079285], [-0.010241042822599411, 2.1648643016815186, -1.885530948638916, -0.42769137024879456, 1.346191167831421, 0.6056143045425415, 1.0538843870162964, 0.11919913440942764, 0.3910144567489624, -0.0662146657705307, 0.15360993146896362, -0.3389971852302551, 0.36938953399658203, 1.4806588888168335, 0.6382160186767578, 0.19623060524463654, 0.9016548991203308, -0.4901956021785736, 0.6603131890296936, 0.6951541900634766, -0.15311309695243835, -0.7828516364097595, -0.09769643843173981, -0.038208507001399994, -0.3905363380908966, 0.7340908646583557, -0.5217078924179077, -0.5856107473373413, -0.913671612739563, -1.1382116079330444, 1.7456573247909546, -0.5212833881378174, 0.4573914408683777, -0.32038626074790955, -0.6572132706642151, -0.9199526906013489, 1.5029864311218262, 1.1847567558288574, 0.7749277353286743, 0.1898954063653946, 1.5586538314819336, 0.24499525129795074, -0.32941934466362, -1.378240704536438, 0.8911489248275757, 0.015323124825954437, 1.3694785833358765, -1.2175098657608032, 0.006256274878978729, -0.6316511034965515, 0.5815264582633972, -0.43516427278518677, 0.9993395805358887, 0.1114826574921608, 0.9292066693305969, 0.05562353506684303, 0.12109687924385071, -0.01646345853805542, 1.0063613653182983, -1.0989595651626587, 0.4105852246284485, 0.08256137371063232, 0.6801915168762207, 0.2761284410953522, 0.161187544465065, 0.20464304089546204, -0.10752283036708832, 0.49029189348220825, -0.2868117392063141, -1.0573512315750122, 0.9274579882621765, -0.002363576553761959, -0.7344765663146973, -0.1766527146100998, -0.8018492460250854, 0.12357000261545181, 0.6387993097305298, 0.43036797642707825, 0.418678879737854, 0.41350892186164856, -0.628558337688446, 0.04146683216094971, 0.8925182819366455, -0.7438221573829651, 0.7534863352775574, 0.15598411858081818, 0.24533793330192566, -0.4478723406791687, -0.37116187810897827, 1.3117631673812866, 0.3332065939903259, -0.747901439666748, 0.3416909873485565, -0.7293687462806702, 0.3034079074859619, -0.7154933214187622, 0.04034269228577614, -0.33495816588401794, -0.8845378160476685, 0.0012044096365571022, -1.0804505348205566, -0.8745190501213074, 0.20568802952766418, 0.24902689456939697, -0.06554558128118515, 1.3160985708236694, 0.45492225885391235, 0.15752477943897247, -0.3490527868270874, -0.43088001012802124, -0.7215352654457092, 0.12749949097633362, -0.3366679549217224, -1.2956831455230713, -0.9753193855285645, 0.09063008427619934, 1.0806035995483398, 0.06087864190340042, 0.43480977416038513, 0.9789334535598755, -0.5617266297340393, 0.3573119044303894, -0.457105427980423, 0.9553398489952087, 0.46986058354377747, 0.5267769694328308, -0.3168569803237915, -0.7139930725097656, 0.5353124737739563, -0.019324244931340218, 0.2615100145339966, 0.5654380321502686, -0.30640146136283875, 1.4000080823898315, -0.8471556901931763, 1.1610136032104492, 0.6065255999565125, -0.7673601508140564, -0.1752629280090332, -0.8962333798408508, 0.5419901609420776, -0.3954899311065674, -0.04314534366130829, -0.33165475726127625, -0.12945771217346191, -0.9020587205886841, 0.6699749827384949, -0.4286389648914337, -0.7408718466758728, 0.27140265703201294, -0.9977108240127563, 0.620700478553772, -0.0432107113301754, 0.8606759309768677, -0.25056445598602295, -0.3587226867675781, 0.9323186278343201, 0.9285523891448975, 0.3673802614212036, -0.5322988629341125, 0.7373254299163818, -0.1467653214931488, -1.283445119857788, 0.5767792463302612, -0.31320035457611084, -0.2778857350349426, 0.2899284362792969, 0.5375611782073975, 0.04255770891904831, 0.9457060098648071, -1.0951861143112183, -0.6609740853309631, -0.19927598536014557, 0.5238093733787537, 0.584186851978302, 0.26165926456451416, 1.0406461954116821, -1.1962183713912964, -1.806290864944458, -0.5292739868164062, 0.5259855389595032, -0.6223422288894653, 0.34119969606399536, 0.01022525504231453, 0.7614277601242065, -0.26200565695762634, 0.5047796964645386, -0.2997918426990509, -0.249374121427536, -1.3813828229904175, -0.5747740864753723, -0.3914102017879486, -0.8295801281929016, 0.03607943654060364, 0.0597207210958004, -0.8382307887077332, 0.44981685280799866, -0.9248909950256348, -0.9170467257499695, 0.3682403266429901, -0.11839042603969574, 0.09245698899030685, -0.49379825592041016, 0.2809184491634369, -0.5083650350570679, 0.14057737588882446, -1.2614673376083374, 1.0773805379867554, -0.17345094680786133, 0.3639886677265167, 1.2475453615188599, 0.2573327422142029, -0.31623125076293945, 0.371815025806427, -1.061187982559204, -1.6497284173965454, 1.119310736656189, 0.4357907176017761, 0.2164679318666458, 0.650973379611969, 0.11818414181470871, 0.28791457414627075, 0.29048487544059753, -0.03697161749005318, 1.3048230409622192, -0.5468220114707947, -0.7879031896591187, -0.9940065145492554, -0.5562469959259033, 0.022734470665454865, -0.4947757124900818, -1.2167340517044067, 0.3602477014064789, 0.9805267453193665, -0.40303629636764526, 0.20957282185554504, -0.07198142260313034, -0.4324989914894104, 0.741487443447113, 0.5849097371101379, 0.2146264612674713, 0.9195685386657715, -0.7625578045845032, -0.43886932730674744, -0.35806143283843994, 0.1291569173336029, 0.9169811606407166, -0.7001651525497437, 0.165569007396698, 1.2192260026931763, 1.3539798259735107, -0.2564195394515991, -0.2864397168159485, 0.05221430957317352, -0.06178918480873108, -0.6524977684020996, -0.8791611194610596, 0.6819795370101929, -1.3070099353790283, 1.2785561084747314, 1.059221625328064, -1.0022319555282593, -0.3463587164878845, 0.2050173431634903, 0.0737590342760086, -0.5810118913650513, -0.7554621696472168, -0.24305087327957153, -0.04140903055667877, -0.12526564300060272, -0.2253609150648117, 0.7924027442932129, -0.10986404120922089, 0.9508999586105347, -0.10757742822170258, -0.06776552647352219, -0.8045316338539124, 0.0017716484144330025, 0.11599977314472198, 0.16307125985622406, -0.4002949893474579, -1.1566455364227295, -0.34451788663864136, -0.5269665122032166, 0.8155995607376099, 0.06936714053153992, 0.08109275996685028, 0.619463324546814, 0.3574277460575104, -0.09643879532814026, -0.25650349259376526, 0.477969229221344, -0.4196161925792694, -0.05509636178612709, -0.049317315220832825, 0.6210408806800842, 0.7929782867431641, -0.37808945775032043, -1.310280680656433, -0.2338486760854721, 0.7775014042854309, 0.8435903191566467, 0.42461588978767395, 1.3799536228179932, -0.6397777795791626, 0.013053679838776588, -0.050108619034290314, -0.14595064520835876, -0.2784361243247986, -0.3358851671218872, -0.1432095170021057, 0.011507975868880749, -0.4126478135585785, -0.39574581384658813, -0.26558464765548706, 1.084854006767273, -0.7097408771514893, 0.7115057706832886, 1.3534355163574219, -0.6101531982421875, -1.0790419578552246, 0.05965595692396164, -0.27727481722831726, -0.9681450128555298, 0.9978765845298767, 1.4008299112319946, -0.6439828276634216, -0.5693287253379822, -0.5133212208747864, -0.30821719765663147, 0.94910728931427, -0.40935271978378296, 0.3693016767501831, -0.964195966720581, -1.3464564085006714, -0.2859914302825928, 1.4454976320266724, 0.10225088149309158, 0.3321070075035095, -0.8071457147598267, -0.023036114871501923, 0.3046703338623047, 0.0004374687559902668, -0.37030673027038574, 0.6535813808441162, -0.4582774043083191, -0.5303844809532166, 0.1404470056295395, 0.5108899474143982, 0.4412868320941925, -0.470981627702713, -0.003151481505483389, -0.6698517799377441, -0.6826525330543518, -0.4793725609779358, 0.20008543133735657, 0.7485759854316711, 0.8823208212852478, 0.0210411436855793, -0.24797175824642181, 0.8324645161628723, 0.08146624267101288, -0.09990785270929337, -1.216064691543579, 0.7157909274101257, 0.8479332327842712, 0.847640335559845, 0.4678637385368347, 0.05760285258293152, -0.10027620941400528, -0.19229628145694733, -0.1972808539867401, 0.43541067838668823, 1.285901665687561, 0.7109403014183044, -0.5232700109481812, 0.5479177236557007, -0.06356948614120483, -0.22949938476085663, -0.47955870628356934, -0.008355812169611454, 0.34376442432403564, -0.7529590129852295, -0.5382990837097168, 1.2834631204605103, 0.12354647368192673, -0.32531386613845825, -0.8672890067100525, -0.6496151089668274, 1.1958544254302979, 0.6014546155929565, 0.25894415378570557, -0.12511363625526428, -0.24250410497188568, 0.2689589560031891, -0.8660176396369934, -0.7755043506622314, -0.265164315700531, -0.18407420814037323, 0.3157229721546173, -0.7806168794631958, 0.22064907848834991, -0.023904770612716675, 0.10672497004270554, 0.2691591680049896, -0.44886210560798645, 0.34954380989074707, -0.11454589664936066, 0.6099256873130798, 0.2142450362443924, 0.18877013027668, 1.1389061212539673, -0.60589599609375, -0.9784428477287292, 0.44704410433769226, -0.49243590235710144, 0.6186320185661316, -0.20367157459259033, -0.2220856100320816, 0.0768023282289505, -0.9905876517295837, -0.5735195279121399, -0.3351632058620453, -0.24740801751613617, 0.8446462154388428, 0.30840936303138733, 0.27248382568359375, 0.8440709710121155, -0.19018417596817017, -1.1728236675262451, 0.11959149688482285, -0.06522155553102493, -0.9237686991691589, -0.5621722936630249, -0.13273657858371735, 0.4323887825012207, -0.0943157747387886, 0.6610805988311768, 0.04358968138694763, 0.6101170778274536, 0.7152684330940247, -0.06711477786302567, 0.5109115242958069, 0.1847936362028122, 0.8546997308731079, 1.5909626483917236, 0.8576664924621582, -0.42619189620018005, -0.8955608606338501, 0.3432874083518982, -1.0200819969177246, 0.1949719786643982, 1.0770422220230103, 0.8707848787307739, 1.2557692527770996, -2.1213276386260986, -0.9737521409988403, 0.9909877777099609, 0.5839393734931946, 0.5880975127220154, 0.7325149178504944, -0.2187129408121109, -0.2569912374019623, 0.48559436202049255, 0.4598686397075653, -0.22528450191020966, -0.019519435241818428, 0.24892553687095642, -0.002052293624728918, 0.7234804034233093, -0.8353765606880188, 0.35783734917640686, -0.482072651386261, -0.17922154068946838, -0.8213653564453125, -0.30628731846809387, 0.3825196921825409, 0.2935350835323334, -0.0030659488402307034, 0.8259138464927673, -0.04159644618630409, -0.2382979691028595, 0.8892302513122559, -0.3257610499858856, 0.053362924605607986, 0.12671412527561188, 0.04292414337396622, -0.46074697375297546, -0.3640432059764862, -0.598425030708313, 0.13095121085643768, -0.16676685214042664, 0.09007681906223297, -0.4435211718082428, -1.1948440074920654, 0.023735662922263145, 0.8864195942878723, 0.453927606344223, 0.6317101716995239, 0.585223913192749, 0.40043047070503235, 0.4497324824333191, -0.1332543045282364, -0.035623177886009216, -0.297026127576828, 0.12329705059528351, -0.5069330930709839, -1.1548641920089722, -0.4963911175727844, -0.06871708482503891, 0.6932647824287415, -0.14609546959400177, 0.9302216172218323, 1.7819355726242065, 1.3298403024673462, -0.4663100242614746, -0.7451553344726562, 0.20500759780406952, -0.3209274709224701, -0.2711438536643982, 0.1014007180929184, -1.0223439931869507, 0.07466888427734375, -0.6735241413116455, -1.2074360847473145, 0.7021784782409668, -0.37553754448890686, -0.9228765964508057, 1.0525144338607788, -0.5086893439292908, 0.37744858860969543, 0.412460058927536, -0.4316389858722687, 0.6113175749778748, 0.7133157849311829, -1.076120376586914, -1.5258101224899292, 0.3887230455875397, 0.19426578283309937, 0.08616003394126892, -0.36958742141723633, 0.7609179615974426, 0.4764404892921448, -0.6424394845962524, 0.09379518032073975, 0.5046672224998474, -0.03663124144077301, 1.3556891679763794, 0.4477311074733734, -0.5106301307678223, 0.0104618389159441, -0.8942934274673462, -0.4428752362728119, 0.07704158127307892, 1.1338309049606323, 0.6184190511703491, -0.7428670525550842, -0.4667816162109375, -0.8943222761154175, -0.18563365936279297, -0.38611891865730286, -0.5520734786987305, 1.103026032447815, 0.17968440055847168, -0.18668919801712036, -0.1702636182308197, -0.5139814019203186, -0.5282554030418396, -0.14582209289073944, -0.23877082765102386, 0.9363887906074524, -1.1315562725067139, 0.05357997119426727, 0.48050180077552795, -0.7234634757041931, -0.025678725913167, -0.7247380018234253, 0.294669508934021, -1.3928256034851074, -0.7927213311195374, -1.3595833778381348, -0.2524119019508362, 0.8108716607093811, -1.0045602321624756, 0.29533255100250244, 0.13240234553813934, -1.5067061185836792, 0.5241653919219971, -0.05553128942847252, -1.749267339706421, 0.29728081822395325, -1.6399004459381104, 0.8097351789474487, -0.6563054323196411, 0.06114763766527176, 0.31559881567955017, 1.3348523378372192, -1.5499831438064575, -1.497882604598999, -0.9824731945991516, -0.25653016567230225, 0.6363863945007324, 0.7751397490501404, -1.0542010068893433, 1.7265859842300415, 0.334404319524765, -0.7917991280555725, -0.7822538018226624, 0.37479865550994873, -0.6207281947135925, 0.6055964231491089, 0.2530538737773895, 0.19579605758190155, 0.3523935079574585, 1.0252057313919067, 0.5360538363456726, 1.0462126731872559, 0.6255881190299988, -0.2093019336462021, -1.0072482824325562, 0.059516455978155136, -0.2743149697780609, 1.079171061515808, -1.4686917066574097, -0.7335643768310547, -0.5620849132537842, -0.5841325521469116, -1.0320169925689697, 0.7645288109779358, 0.7652186155319214, -0.7197645902633667, -0.311434805393219, -0.560365617275238, 0.6898224353790283, -0.3712717890739441, 0.2696257531642914, 0.0333118736743927, -0.25877639651298523, -0.04502008110284805, -0.17248648405075073, 0.0041731419041752815, -1.2613056898117065, 0.32091087102890015, -0.04452626407146454, -0.497140109539032, -0.24859486520290375, 0.5609650015830994, 0.723142683506012, -0.15970690548419952, -0.42113369703292847, 1.4695169925689697, 0.7544674277305603, -0.14019404351711273, 0.14801909029483795, 0.0965636596083641, -0.029916951432824135, 0.15821339190006256, -0.43581917881965637, 0.1422732025384903, -0.9961733222007751, 0.9679501056671143, 0.7551299333572388, -0.3885158598423004, -0.5742767453193665, -0.06364145874977112, -0.4593406021595001, 0.11337582767009735, 0.3051522374153137, -0.3901746869087219, -0.25408878922462463, 1.0732115507125854, 0.2946484684944153, -0.9737816452980042, 0.29765188694000244, 0.37700530886650085, -0.17821848392486572, -0.014810379594564438, 0.20185399055480957, 0.8594721555709839, -0.6186212301254272, 0.6404746770858765, 0.3757788836956024, 0.22513911128044128, 0.15823966264724731, -0.9698092341423035, -0.9562111496925354, 0.367721825838089, -0.6372638940811157, -0.7240803241729736, 1.193615198135376, -1.4889615774154663, -0.015334947034716606, 0.7985379099845886, -0.3682367503643036, -0.5424162149429321, -0.2849528193473816, -0.10035810619592667, 0.14518706500530243, 0.5679328441619873, 0.17096027731895447, -0.9187518358230591, 0.38351836800575256, 0.4757140278816223, -0.4672176241874695, -0.974706768989563, -0.28680217266082764, 0.13684974610805511, -0.5988157987594604, 0.08946724236011505, 0.32954299449920654, 0.662493884563446, 0.03626420348882675, -0.6169511079788208, 0.42080527544021606, 0.2729733884334564, 0.1303439736366272, -0.3707922399044037, 0.2638606131076813, 0.9510224461555481, 0.01882096752524376, 0.23051409423351288, -0.4468991756439209, -0.7677760720252991, -0.9356119632720947, 0.7586807012557983, -0.20000393688678741, 1.130018711090088, -0.10949954390525818, 0.5619486570358276, 0.15564636886119843, -0.4043050706386566, -0.5779027938842773, -0.6892538070678711, -0.03316526114940643, -0.6853761672973633, 1.18490731716156, -0.3940516710281372, -0.23291058838367462, -0.5927060842514038, -1.648816704750061, -0.09580463916063309, 0.032451122999191284, -0.1694774627685547, 0.4009031653404236, -1.0305944681167603, -0.6372278332710266, -0.5690318942070007, 0.6554935574531555, 1.062955617904663, 0.23602677881717682, 0.6259353160858154, 0.024497022852301598, -0.5341220498085022, -0.5276628136634827, 0.07046031206846237, 0.14721226692199707, 0.07993240654468536, 0.7731141448020935, 1.2839277982711792, 0.5142195224761963, 0.7401002049446106, -0.15243427455425262, 1.418492317199707, -0.4176160395145416, 0.1533522605895996, -0.717837393283844, 0.4072059690952301, 0.5702582597732544], [0.6734238266944885, 1.98456609249115, -2.105088710784912, 0.02627733163535595, 0.7864373326301575, -0.18845777213573456, 0.10759613662958145, -0.1689382642507553, 0.06318876892328262, -0.40709805488586426, -0.0402202233672142, 0.020737838000059128, 0.360910028219223, 1.0913516283035278, 0.017849484458565712, 0.835405707359314, 1.0308421850204468, -0.03505899757146835, 0.4587889015674591, 0.6439321041107178, 0.20253562927246094, -0.4115542471408844, 0.09261026233434677, -0.060590241104364395, -0.17069107294082642, 0.446982741355896, -1.076821208000183, -1.0915876626968384, -0.5078416466712952, -0.5702903270721436, 0.12010014802217484, -0.6720472574234009, 0.43354716897010803, 0.054129716008901596, -1.5823200941085815, -0.4055756628513336, 1.332391381263733, 0.7750107049942017, 0.5197969079017639, 0.5421979427337646, 1.04084312915802, 0.5385473966598511, 0.08755612373352051, -1.5908963680267334, -0.691619336605072, -0.5259299278259277, 1.4453034400939941, -0.42067354917526245, -0.005421179812401533, -0.33518511056900024, 0.43434691429138184, -0.7516856789588928, 1.210654854774475, 0.3569592237472534, 1.596254825592041, -0.6096628904342651, 0.374778151512146, 0.4592129588127136, -0.27456796169281006, -1.0128120183944702, 0.31776949763298035, -0.16076311469078064, 0.43616795539855957, 0.5774361491203308, 0.5172737836837769, 0.28222256898880005, -0.7144342660903931, 0.14911623299121857, 0.294430136680603, -0.3428594768047333, 1.5309531688690186, -0.45327773690223694, -0.6355299949645996, -0.04697195440530777, -1.077982783317566, 0.3689897656440735, 1.2221732139587402, 0.30395886301994324, 0.23762325942516327, 0.37211549282073975, 0.19065620005130768, -0.6671051383018494, 0.4722108244895935, -0.9135525226593018, 0.3381267488002777, 0.07140712440013885, 0.5225375294685364, -0.24210849404335022, -0.39677321910858154, 1.1275699138641357, 0.478994756937027, -0.389589786529541, 0.49747928977012634, -0.7293199300765991, -0.04459473863244057, -0.6406561136245728, 0.30407091975212097, -0.5088417530059814, -0.552364706993103, -0.4440821707248688, -0.3406323194503784, -0.4609284996986389, 0.12152974307537079, 0.28752195835113525, -0.6391642689704895, 1.0010331869125366, 0.3802298307418823, -0.23381775617599487, -0.3101469576358795, -0.39713966846466064, 0.08938563615083694, 0.41047024726867676, -0.3928040862083435, -1.588606834411621, 0.27740663290023804, 0.3943069279193878, 1.2454473972320557, -0.10509151965379715, 1.509179949760437, 1.2045812606811523, -0.02793939784169197, 0.022732868790626526, -0.3125690817832947, 0.8165558576583862, 0.4661901593208313, 0.08526137471199036, -0.035066213458776474, -0.7945680618286133, -0.249867781996727, -0.4281476140022278, 0.38870638608932495, -0.09648410975933075, 0.520203173160553, 0.6949729323387146, -0.5977796912193298, 1.46950101852417, 0.3837663531303406, -0.21372191607952118, 0.12273656576871872, -0.13961580395698547, 0.7315773367881775, 0.037520457059144974, -0.40536558628082275, -0.3236599862575531, -0.5200411677360535, -0.14578895270824432, 0.15473806858062744, -0.32331857085227966, -0.30047664046287537, 0.3852477967739105, -1.228986382484436, 0.2451895922422409, 0.08150027692317963, 0.4592020809650421, -0.2431563436985016, -0.5948007702827454, 0.5709871053695679, 0.7561560869216919, 0.294580340385437, -0.15083397924900055, 0.8139529228210449, 0.36296263337135315, -1.3785425424575806, 0.6899673342704773, 0.12759947776794434, -0.779933512210846, -0.1293305903673172, 0.5942903757095337, 0.18436257541179657, 0.77214515209198, -0.8195888996124268, -0.7576078176498413, -0.46970540285110474, 0.7413891553878784, 0.583705723285675, -0.5029780864715576, 1.4141123294830322, -1.0154223442077637, -1.233917236328125, -1.5768977403640747, 0.1879875361919403, -0.35608601570129395, 0.6227708458900452, -0.48480725288391113, 0.641487181186676, -0.4436318874359131, 0.8591602444648743, -0.41358473896980286, -0.9468666315078735, -0.9945549368858337, -0.492597371339798, 0.1511019617319107, -0.832722544670105, 0.5838871598243713, -0.4197116792201996, -1.060285210609436, -0.08994795382022858, -0.4241727888584137, -0.2316218763589859, -0.013086526654660702, 0.1477239578962326, -0.4045233726501465, -0.1756475865840912, 0.6337323784828186, -0.6607706546783447, 1.1129761934280396, -1.4036287069320679, 1.091103196144104, -0.6190611720085144, 0.04056345671415329, 0.695784866809845, 0.3613589107990265, -0.5114551186561584, 0.5282694697380066, -0.33928054571151733, -2.0909554958343506, 0.8887837529182434, 0.4456656575202942, -0.5668789148330688, -0.6252984404563904, 0.9012052416801453, 0.3800174593925476, -0.1045963317155838, -0.2418919801712036, 0.8564649224281311, -0.5493904948234558, -0.8640244007110596, -0.8071702122688293, -0.8837645053863525, -0.41026294231414795, -0.6618671417236328, -1.3574448823928833, 0.9816027879714966, 0.6665382385253906, -1.0383416414260864, 0.33692800998687744, 0.1415434628725052, 0.37768176198005676, 0.4395761489868164, 0.38902905583381653, 0.4312833845615387, 1.1151752471923828, -0.12036190927028656, 0.09348464012145996, -1.1930408477783203, 0.12335231155157089, 0.4277174174785614, -0.5801202654838562, 0.023144278675317764, 1.213301420211792, 1.46924889087677, 0.2213403433561325, -0.3254212737083435, 0.43043041229248047, 0.21019655466079712, -0.45485493540763855, -1.059509515762329, 0.2738349437713623, -0.7985036969184875, 1.094712495803833, 1.2367678880691528, -0.6484484076499939, -0.2759707272052765, 0.08830918371677399, 0.4238005578517914, -0.7061861753463745, -0.1871953010559082, -0.6498650908470154, -0.06777424365282059, 0.09327845275402069, -0.5957967638969421, 0.6468486785888672, 0.3311924338340759, 0.6957545876502991, 0.19400088489055634, 0.4806693494319916, -0.3815883994102478, 0.3181656002998352, -0.19338925182819366, 0.5003584623336792, -0.13446591794490814, -0.5572854280471802, -0.4028538763523102, 0.07071293145418167, 0.50803142786026, 0.3583028316497803, 0.28974688053131104, 0.28446853160858154, -0.4141836166381836, -0.6992663741111755, -0.001028131227940321, 0.10613293945789337, 0.24438630044460297, 0.17381778359413147, -0.04515039920806885, 0.1551763266324997, 0.32994896173477173, -0.8917825818061829, -0.5806114673614502, -0.2099420577287674, 0.46303778886795044, 1.834251880645752, 0.12586656212806702, 1.4799224138259888, -0.2946902811527252, 0.38533517718315125, -0.05355094373226166, 0.2295766919851303, -0.25142422318458557, -0.7979847192764282, -0.8278404474258423, 0.01123141311109066, 0.10185428708791733, 0.024766717106103897, -0.447172075510025, 0.6937376856803894, -0.9447520971298218, 0.46841293573379517, 1.3204129934310913, -0.9712421298027039, -1.1646442413330078, -0.293296217918396, -0.38082727789878845, -0.3353484272956848, 0.7740873098373413, 1.0495051145553589, -1.1983575820922852, -0.5113059282302856, -0.3893626928329468, -0.2971123158931732, 0.5778690576553345, 0.09950660169124603, 0.01768200658261776, -1.0129687786102295, -1.0244596004486084, -0.21131904423236847, 1.0995639562606812, 0.6045166254043579, 0.1855197250843048, -0.06160774827003479, 0.6025100350379944, 0.18819861114025116, 0.5116570591926575, -1.005568027496338, 0.17360185086727142, -0.1333380490541458, -1.0246167182922363, -0.37722477316856384, 0.8125084042549133, 0.7483343482017517, -0.5263426899909973, -0.4864702522754669, -0.5181681513786316, -0.41615232825279236, -0.2697339951992035, 0.09710335731506348, -0.2719643712043762, 0.7953689098358154, -0.818878710269928, -0.04822523891925812, -0.07925659418106079, 0.562636137008667, -0.06725089251995087, -1.937929391860962, 0.4343372583389282, 0.19422121345996857, 0.853879988193512, 0.1815330535173416, -0.29542315006256104, -0.34206342697143555, 0.10893318802118301, 0.15377278625965118, 0.434149831533432, 1.0988988876342773, -0.2241905927658081, 0.5140694379806519, -0.5381775498390198, -0.17154528200626373, -0.07862995564937592, -0.792465090751648, -0.03726665675640106, 0.24345049262046814, -0.7980942726135254, 0.11006977409124374, 0.9553665518760681, 0.34450608491897583, -0.3576997220516205, -0.020622264593839645, -0.0383896566927433, 0.58942049741745, -0.011604983359575272, 0.5199022889137268, 0.14300622045993805, 0.15933334827423096, 0.5734740495681763, -0.6871728301048279, -0.5379945039749146, -0.5213073492050171, 0.22648216784000397, 0.9858189225196838, -0.6298792362213135, 0.01121682021766901, -0.6634151339530945, 0.4113937020301819, -0.08148830384016037, -0.23869198560714722, 0.1638549566268921, -0.5056843161582947, 0.2502956688404083, -0.40010082721710205, 0.06080788001418114, 0.6308783292770386, -1.0097674131393433, -0.24310633540153503, 0.09580107778310776, -0.5686954855918884, 0.5758578181266785, 0.04417555406689644, 0.2269294410943985, 0.13521713018417358, -0.523302435874939, -0.9886568784713745, -0.10087732970714569, -0.35420286655426025, 0.7768678069114685, -0.2277059406042099, 0.49254459142684937, 0.49322041869163513, -0.3720221519470215, -0.9693977236747742, 0.5423212051391602, 0.15523800253868103, -0.38366788625717163, -0.5642015933990479, 0.33944907784461975, 0.6787614226341248, -0.1770787537097931, 0.6183505058288574, 0.5520281195640564, 1.4480149745941162, 0.32858529686927795, 0.11477464437484741, 0.010981951840221882, 0.7089415788650513, 0.7450876832008362, 0.9915114045143127, 0.8427344560623169, -0.4418572783470154, -0.7286754250526428, 0.342085599899292, -0.7850889563560486, 0.5593699216842651, 0.6092196106910706, 0.5599913001060486, 1.1540285348892212, -1.585166335105896, -0.7570436000823975, 0.7207658886909485, 0.12886878848075867, 0.12644246220588684, 0.7988370060920715, -0.7187033295631409, -0.8264862895011902, 0.4599446952342987, -0.4280923306941986, 0.6107802391052246, 0.3090340495109558, -0.3600858449935913, -0.2443055659532547, 1.0468907356262207, -0.5448569059371948, 0.7684410214424133, -0.7276172637939453, 0.12145231664180756, 0.4931650757789612, -0.5840567946434021, 0.45710697770118713, 0.2278028130531311, -0.1375303715467453, 1.021575689315796, -0.7797048687934875, -0.8084766864776611, 0.38150864839553833, -1.050585150718689, 0.014176882803440094, -0.30662989616394043, 0.3466531038284302, -0.44105157256126404, -0.24305300414562225, -0.5032693147659302, -0.18445493280887604, -0.03529224544763565, -0.5795403718948364, -0.2990807294845581, -0.7950919270515442, -0.0716036856174469, 1.00691556930542, 1.289340615272522, -0.3147689998149872, 0.48445606231689453, 0.4705292284488678, 0.08579334616661072, -0.4150550961494446, 0.00405290350317955, -0.1390341967344284, -0.15019656717777252, -0.16612133383750916, -1.6568363904953003, -0.8176797032356262, -0.48039475083351135, 0.7162132859230042, 0.154234379529953, 0.4483904242515564, 0.8329046368598938, 0.8861434459686279, -0.33514168858528137, -0.8069452047348022, 0.5985665321350098, -0.41171592473983765, 0.27303388714790344, 0.44165757298469543, -0.998685896396637, -0.5818746089935303, -1.1863861083984375, -1.2407647371292114, 0.6253607869148254, -0.41229012608528137, -0.8699366450309753, 0.6219950914382935, 0.3192541301250458, -0.479692280292511, 0.7457072138786316, -0.5898057818412781, 0.7794348001480103, -0.14009545743465424, -0.5138435363769531, -1.4062830209732056, 0.3972495198249817, 0.09614083915948868, 0.3625640273094177, 0.1824081689119339, 0.725400984287262, 0.2241344302892685, -0.41897186636924744, -0.3528168499469757, 0.14054575562477112, 0.46643778681755066, 0.8128892779350281, -0.10380158573389053, -0.39279815554618835, 0.0009296722710132599, -0.47304049134254456, -0.6242931485176086, 0.030867312103509903, 1.0591005086898804, 0.15875957906246185, -0.4501722753047943, -0.009431746788322926, -0.5297269225120544, -0.2829072177410126, -0.4993434548377991, -0.4503815770149231, 0.6913925409317017, 1.0919188261032104, -0.5012297034263611, 0.459990918636322, -0.29432716965675354, -0.3816838264465332, -0.5042616128921509, 0.6559320688247681, 0.9262708425521851, -0.903986930847168, 0.3671676516532898, 0.1419152170419693, -0.7640137672424316, -0.4554145634174347, -0.5059142112731934, 0.2709277868270874, -0.7236226797103882, -0.8436727523803711, -1.1375688314437866, 0.4999244213104248, 1.0962992906570435, -0.6539763808250427, 0.6417015790939331, 0.12417823076248169, -1.147244930267334, 0.4341735541820526, -0.6742525696754456, -1.842491626739502, 0.5002925395965576, -1.314946174621582, 0.7337889671325684, -0.20500394701957703, 1.015745997428894, -0.4378499686717987, 1.5362578630447388, -2.0936570167541504, -1.7787578105926514, -1.2460360527038574, 0.06300058215856552, 0.8615137338638306, 0.34479719400405884, -0.4114643335342407, 1.0224210023880005, 0.04432431235909462, 0.11503087729215622, -0.22206272184848785, -0.3467716872692108, -0.4970429539680481, 0.39261046051979065, 0.6864289045333862, 0.6799143552780151, -0.10864060372114182, 0.5974313020706177, 0.4567897319793701, 0.9913081526756287, 0.31655386090278625, 0.7879747152328491, -0.42827627062797546, -0.33240923285484314, 0.15418297052383423, 0.9251081943511963, -0.6802759766578674, -0.6770353317260742, -0.25082919001579285, -0.6079650521278381, -0.8497382402420044, 0.21158337593078613, 0.6488760113716125, -0.9075374007225037, -0.5661208629608154, -0.5675837397575378, 0.19225968420505524, -1.1615839004516602, 0.4198000729084015, -0.7186654210090637, 0.43156853318214417, 0.7635360360145569, -0.28592759370803833, 0.26412832736968994, -0.5995623469352722, -0.14545243978500366, 0.6421065926551819, -0.29679831862449646, -0.5789757370948792, 1.01702082157135, 0.2513315975666046, 0.7968092560768127, -0.4995809495449066, 1.2685211896896362, 0.6093214154243469, -0.07727456092834473, 0.18313226103782654, -0.046551235020160675, 0.30963391065597534, 0.5012816786766052, -0.7312294244766235, -0.22051113843917847, -0.8205028772354126, 1.0748435258865356, 0.41716888546943665, -0.2250726968050003, -0.07706252485513687, 0.37989911437034607, -0.48920419812202454, 0.3428021967411041, 1.3149693012237549, -0.5533936619758606, -0.3951272666454315, 1.2746309041976929, 0.15814107656478882, -0.8903118968009949, 0.4452475607395172, 0.42504361271858215, 0.041505906730890274, 0.4312869906425476, 0.5619747042655945, 0.8654760122299194, -1.0385245084762573, 0.8412553668022156, -0.23324410617351532, 0.17062930762767792, 0.22248512506484985, -0.6623019576072693, -1.0256096124649048, 0.5052738785743713, -0.7062199115753174, -1.3068808317184448, 0.4561821222305298, -1.2537496089935303, -0.4520341455936432, 1.08985435962677, 0.04173281788825989, -0.860485851764679, 0.0076552219688892365, -0.10237318277359009, 0.21886394917964935, 0.11783698201179504, 0.4404812157154083, -0.3288162648677826, 1.004108190536499, 0.5201194286346436, 0.11478356271982193, -1.0659435987472534, -0.029179314151406288, 0.5856293439865112, -0.3311977982521057, 0.04787929728627205, -0.4379962384700775, 0.3600674569606781, 0.14134113490581512, -0.4134010970592499, 0.19885963201522827, -0.27340462803840637, 0.7525490522384644, 0.5072845220565796, -0.19970671832561493, 0.5194352269172668, 1.0495051145553589, 0.5483649969100952, -0.23383142054080963, -0.8017608523368835, -0.9285402894020081, 0.8024858236312866, -0.35323792695999146, 0.9488596320152283, 0.23793268203735352, 0.8369626998901367, 0.43390020728111267, -0.713815450668335, -0.4851430654525757, -0.2561603784561157, 0.6167307496070862, 0.2956751883029938, 0.4171808063983917, 0.5230752825737, -0.036773666739463806, -0.055322401225566864, -0.756004810333252, 0.5089231729507446, 0.8321793675422668, -0.07032047212123871, -0.20891474187374115, -1.0417160987854004, -0.512908935546875, -1.1549439430236816, 0.8365541696548462, 0.8985011577606201, -0.19905395805835724, 0.4084811210632324, -0.08961787819862366, -1.0517657995224, -0.09912106394767761, -0.23568998277187347, 0.22474870085716248, -0.3777795135974884, 1.3639806509017944, 1.3481314182281494, 0.5622035264968872, 0.7735907435417175, -0.5688654780387878, 0.2688462734222412, -1.0626981258392334, -0.026196330785751343, -0.8513465523719788, -0.09565550833940506, -0.20725658535957336], [0.64341139793396, 1.570115327835083, -2.3799538612365723, -0.20766355097293854, 1.294832706451416, 0.3770662546157837, 1.895882248878479, -0.4497687816619873, 0.8106083869934082, -0.43860843777656555, -0.08846757560968399, -0.5425769090652466, -0.11808886379003525, 1.2326531410217285, 0.3333527743816376, 0.30989205837249756, 0.41617491841316223, -0.4036792814731598, 0.9150791764259338, 0.544759213924408, 0.0428340919315815, 0.15808439254760742, -0.030563991516828537, -0.08599084615707397, -0.15375222265720367, 0.39716511964797974, -0.40240374207496643, -0.9258700013160706, -1.1635596752166748, -1.0998413562774658, 0.563607394695282, -0.6598276495933533, 0.3704122006893158, -0.1546253263950348, -0.9439429640769958, -0.6721351742744446, 1.5952661037445068, 1.1592134237289429, -0.2906032204627991, 0.6754084229469299, 2.26023006439209, 0.5520356297492981, -0.09498022496700287, -1.5657063722610474, -0.1848682314157486, -0.501666247844696, 1.0940794944763184, -0.9447306394577026, -0.21771414577960968, -0.7343745231628418, 0.6988270878791809, -1.4091023206710815, 0.9788952469825745, 1.0327709913253784, 1.069847583770752, -0.42958077788352966, 0.6352008581161499, 0.5887093544006348, -0.08928465843200684, -0.5323191285133362, 0.6704968810081482, -0.672578752040863, -0.6303380727767944, 0.6333426833152771, -0.14509733021259308, 0.3065429925918579, -0.22597146034240723, 0.28994232416152954, 0.23435179889202118, -0.13033165037631989, 0.971039891242981, 0.08946263790130615, -0.37100526690483093, -0.3887863755226135, -0.9852781891822815, -0.025176892057061195, 0.38491687178611755, 0.5959635376930237, 0.3990517258644104, 0.3656938672065735, -0.5855558514595032, -0.05568584427237511, 0.8035316467285156, 0.2013394981622696, 0.3430441617965698, 0.19394540786743164, 0.23277536034584045, -0.9583917260169983, 0.02428482100367546, 1.8534228801727295, 0.8360955715179443, -1.0281955003738403, 0.4284622371196747, -1.3584930896759033, 0.4500448703765869, -0.3433689773082733, 0.3352554440498352, -0.6475440263748169, -0.37571021914482117, -0.48965612053871155, -0.5674890279769897, -0.8347620368003845, 0.2314804643392563, 0.6193720698356628, -0.2345198541879654, 0.9630982279777527, 0.21502141654491425, 0.4381822347640991, -0.8180912137031555, -0.4374167323112488, -0.1488141119480133, 1.387342095375061, -0.5049489736557007, -0.9381967186927795, -0.24473436176776886, 0.632373571395874, 1.4519315958023071, -0.22516244649887085, 0.8847128748893738, 0.6828731894493103, -1.0860438346862793, 0.3787602484226227, -0.13326534628868103, 1.1402226686477661, 0.5706298351287842, 0.2901248633861542, -0.11401631683111191, -0.1088109090924263, 0.7013629078865051, -0.26044467091560364, -0.253277450799942, -0.21231433749198914, -0.04890318959951401, 0.698821485042572, -1.035901427268982, 0.8199664354324341, 0.29992273449897766, -0.5544363856315613, -0.08563581854104996, -0.8318625092506409, 0.6543670296669006, 0.8541682958602905, -0.41747868061065674, -0.4843110144138336, 0.13648462295532227, -0.10755252838134766, 0.7315843105316162, -0.17029596865177155, -0.33406075835227966, 0.11084713786840439, -0.7644896507263184, 0.135148286819458, -0.11755838245153427, 0.8518868684768677, -0.3623327910900116, 0.4628693163394928, 0.6945244073867798, 0.2759771943092346, 0.5703003406524658, 0.29204970598220825, 0.7296308279037476, 0.601745069026947, -1.60890531539917, 0.7969928979873657, 0.41741570830345154, -0.1578567624092102, -0.025101976469159126, 0.9907873272895813, -0.5596681833267212, 0.9559909701347351, -0.8596972823143005, -0.44601160287857056, -0.5541794300079346, 0.8505552411079407, 0.5075049996376038, -0.05957465618848801, 1.556729793548584, -0.9571190476417542, -1.236610770225525, -1.4160327911376953, 0.23872312903404236, -0.2390955537557602, 0.7793104648590088, -0.402624249458313, 1.0989269018173218, -0.4453539252281189, 0.5302866697311401, -0.7763224244117737, -0.47356313467025757, -0.6982179880142212, -1.7384722232818604, 0.11467564851045609, -0.9892275333404541, 0.1632724404335022, -0.6213954091072083, -1.3032549619674683, 0.15439976751804352, -0.6589235067367554, -0.8456733226776123, -0.12613166868686676, -0.7272357940673828, -0.4035152494907379, -0.6006746292114258, -0.31693196296691895, -0.5470706820487976, 0.46204349398612976, -1.5919421911239624, 0.9401187300682068, -0.5306540727615356, -0.2619374692440033, 1.165071725845337, 0.037979625165462494, -0.5997238159179688, 0.9831306338310242, -0.20786091685295105, -1.942940354347229, 0.8318004012107849, 0.3665217161178589, 0.002054535783827305, 0.039468128234148026, 0.3114215135574341, 0.2922791838645935, 0.29339784383773804, -0.06697140634059906, 0.7890557050704956, -0.8966383337974548, -0.5807870626449585, -0.7837967276573181, -0.2733236253261566, -0.19353355467319489, -0.7144401669502258, -1.7830497026443481, 0.45258286595344543, 0.8854519724845886, -1.166649341583252, 0.22203916311264038, -0.11631809175014496, 0.13806301355361938, 0.9116194248199463, 0.16948623955249786, 0.10826696455478668, 1.2850592136383057, -0.07417996972799301, 0.11393444240093231, -0.7269124984741211, 0.43084168434143066, 0.841117799282074, -0.8760697841644287, 0.3894989490509033, 1.5577127933502197, 1.221795678138733, 0.033815838396549225, 0.3491949439048767, -0.15446922183036804, -0.17002707719802856, -1.481092095375061, -0.2781606912612915, 0.06096870079636574, -0.2639804184436798, 1.352034330368042, 1.3058173656463623, -1.114467978477478, -0.11464449763298035, -0.5130842328071594, 0.2484373152256012, -0.4910653829574585, -0.4837383031845093, 0.11995182186365128, 0.28010931611061096, 0.41924992203712463, -0.11456158757209778, 0.1269705593585968, -0.07992954552173615, 1.440900206565857, -0.3253876566886902, 0.6375315189361572, -0.6764269471168518, 0.12189915776252747, 0.04797247052192688, 0.39821550250053406, 0.20498710870742798, -0.7310382127761841, -0.40346869826316833, -0.25759345293045044, 1.0735012292861938, 0.1677628755569458, -0.004059943836182356, -0.099611796438694, 0.01673368364572525, -0.09020847827196121, 0.5272623300552368, 0.5357227325439453, -0.6365352272987366, 0.5361196398735046, 0.4051108956336975, 0.3627333641052246, 0.48470616340637207, -0.9247918128967285, -1.066579818725586, -0.03904607146978378, 0.38177743554115295, 1.3266639709472656, 0.8360105156898499, 2.066239595413208, -0.4926638603210449, -0.055092014372348785, 0.08728604018688202, -0.5888412594795227, 0.15193773806095123, -0.43292421102523804, -0.7833814024925232, -0.2868906557559967, -0.2825011909008026, 0.0819924995303154, -0.10085134208202362, 0.25734543800354004, -0.9087819457054138, 1.2313144207000732, 0.8698419332504272, -0.8068905472755432, -1.011374831199646, 0.22304727137088776, -0.1600121706724167, -0.22020624577999115, 0.7246760725975037, 0.5632186532020569, -1.2478028535842896, -0.3241916298866272, 0.05961981788277626, -0.2636469304561615, 1.2858258485794067, -0.036036133766174316, 0.7740305662155151, -1.5499730110168457, -0.791161060333252, -0.2756786346435547, 1.7882447242736816, 0.13474738597869873, -0.2732248306274414, -1.1676859855651855, 0.43026840686798096, -0.2289159893989563, -0.017018718644976616, -0.589332103729248, 0.9104899168014526, -0.17721745371818542, -0.92322838306427, -0.24310630559921265, 0.14978142082691193, 0.8329001069068909, -0.0686754658818245, 0.07498400658369064, -0.38262441754341125, -0.9972319006919861, -0.39089956879615784, 0.2897622585296631, 0.5639921426773071, 0.501050591468811, 0.06298313289880753, -0.7193618416786194, 1.1758642196655273, 0.026279989629983902, 0.041797950863838196, -1.4917542934417725, 0.766016960144043, 0.5415835976600647, 1.02644944190979, 0.17776739597320557, 0.12015141546726227, 0.057278845459222794, 0.13975980877876282, 0.09646786749362946, 0.05413876846432686, 0.8469012975692749, 0.6555770039558411, 0.21198707818984985, -0.1109849140048027, 0.26581868529319763, -0.29706430435180664, -0.7082566618919373, -0.03971129283308983, 0.4174981415271759, -0.16262437403202057, -0.652651309967041, 1.1578893661499023, 0.5965207815170288, -0.09913629293441772, -0.19600793719291687, -0.8387560844421387, 0.9748626351356506, 0.5473563075065613, 0.31856539845466614, -0.3130817711353302, 0.14395855367183685, 0.5050578117370605, -1.2985098361968994, -1.1948680877685547, -0.07371237874031067, -0.06381309032440186, 1.0508919954299927, -0.7087392807006836, -0.3570118546485901, -0.459884911775589, 0.12343651801347733, 0.2681947946548462, 0.35049182176589966, 0.3839808702468872, -0.11355414986610413, 0.5395309329032898, 0.49029502272605896, 0.2750152051448822, 0.8186760544776917, -1.1945127248764038, -0.23410959541797638, 0.08896201103925705, -0.036659907549619675, 0.3702850043773651, 0.07587169855833054, -0.4427487254142761, -0.6881034970283508, -1.1380174160003662, -0.681529700756073, -0.46081802248954773, -0.16372275352478027, 0.6073569059371948, 0.053462106734514236, 0.6109517216682434, 0.9844642877578735, -0.17425592243671417, -1.0598456859588623, 0.16896870732307434, 0.3867478668689728, -0.15421515703201294, -0.5543391108512878, 0.2679412364959717, 0.3001592755317688, -0.16599290072917938, 0.6518869400024414, 0.21470879018306732, 0.26101574301719666, -0.4928547441959381, 0.0032675843685865402, -0.20754162967205048, 0.5480153560638428, 0.36161330342292786, 1.2308690547943115, 1.0329921245574951, -0.39942485094070435, -0.7343346476554871, 0.34271883964538574, -1.0352730751037598, 0.1821257472038269, 0.7233229875564575, 0.154851496219635, 1.2657513618469238, -2.3131308555603027, -0.31101077795028687, 0.7105907201766968, 0.5811262726783752, 0.3070676624774933, 0.9796205759048462, -0.6214229464530945, -0.43708154559135437, 0.3001025915145874, -0.009408208541572094, 0.12798725068569183, 0.31573641300201416, 0.8232522010803223, -0.4934806823730469, 1.4401919841766357, -0.481979101896286, 0.5123002529144287, -0.7971675992012024, -0.5558621883392334, 0.2464754283428192, -0.3430304527282715, 0.3791757822036743, 0.6993764042854309, -0.45195239782333374, 0.6956620216369629, -0.32160335779190063, -0.5903260111808777, 0.6609339118003845, 0.06376725435256958, 0.08986793458461761, 0.1985013633966446, -0.2638345956802368, -0.40296095609664917, -0.7074083685874939, -0.7875151634216309, 0.292581707239151, -0.15059636533260345, -0.785499632358551, -0.19623281061649323, -1.1917853355407715, -0.28617429733276367, 1.2810734510421753, 1.2721561193466187, 0.20454439520835876, 0.4552127718925476, 0.5660194158554077, -0.05390060320496559, 0.01604606583714485, 0.41963934898376465, 0.05449764057993889, 0.4761029779911041, -0.29266926646232605, -1.7860993146896362, -0.6882767677307129, 0.17179086804389954, 0.9544302225112915, 0.1394777148962021, 0.7736148834228516, 1.3297439813613892, 1.3067539930343628, -0.13300779461860657, -0.8727728128433228, 0.5022556781768799, -0.428089439868927, 0.5439766049385071, 0.29181236028671265, -0.8228946924209595, -0.6624089479446411, -0.37941867113113403, -1.3115613460540771, -0.02506292425096035, -0.36305466294288635, -0.992130696773529, 0.5158865451812744, 0.18550662696361542, 0.011038318276405334, 0.7626363039016724, -0.5750333666801453, 0.4722149670124054, 0.20010288059711456, -1.0335556268692017, -1.1149959564208984, 0.5306062698364258, -0.24266766011714935, 0.8372036814689636, -0.8977805376052856, 0.6483702063560486, 0.324191153049469, -1.015734076499939, -0.13746358454227448, 0.3506641089916229, 1.0000793933868408, 0.5330843925476074, 0.2580786645412445, -0.3487539291381836, 0.32373908162117004, -0.5705750584602356, -0.9663158655166626, -0.6185030341148376, 0.8808305263519287, 0.29278600215911865, -0.6844604015350342, -0.009617868810892105, -0.5177854299545288, -0.4556201994419098, -0.5717213153839111, -0.27886009216308594, 0.482713907957077, 0.6321762800216675, -0.22946101427078247, -0.48359179496765137, -1.0434001684188843, -0.7676223516464233, -0.5642738342285156, -0.3104087710380554, 0.5567014217376709, -0.924872636795044, 0.18492642045021057, -0.13797754049301147, -1.0663585662841797, -0.0024744123220443726, -0.9725465178489685, 0.03691338375210762, -0.8242080211639404, -1.3487449884414673, -1.1823643445968628, 0.343816339969635, 0.9171589016914368, -1.2700529098510742, 1.0240001678466797, 0.23709791898727417, -1.1405755281448364, 0.4627934396266937, -0.4389668107032776, -1.5094190835952759, 0.16196538507938385, -1.635749340057373, 0.88900226354599, -0.3941853940486908, 0.7058009505271912, -0.0010381662286818027, 1.3731948137283325, -1.780730128288269, -0.7970592975616455, -0.8187347054481506, -0.11314325034618378, 0.8562906384468079, 0.678339958190918, -1.0445976257324219, 1.3783437013626099, 0.2783856987953186, -0.658521294593811, -0.5914177894592285, 0.09897775202989578, -0.6265415549278259, 0.18223899602890015, 0.33805254101753235, 0.635074257850647, 0.6186344623565674, 1.0328311920166016, -0.12031060457229614, 0.3384491205215454, 0.4484918713569641, -0.27785083651542664, -0.42439207434654236, -0.8513897657394409, -0.19189319014549255, 0.7523350715637207, -0.89447420835495, -0.17815515398979187, 0.05047640949487686, -0.9419651627540588, -1.3093727827072144, 0.5535127520561218, 0.997610330581665, -0.49827998876571655, 0.05834636092185974, -0.26772692799568176, 0.08871057629585266, -1.0760490894317627, 0.49583226442337036, -0.13159045577049255, -0.15093271434307098, -0.11707637459039688, -0.4200766682624817, 0.02747003547847271, -0.6604821085929871, 0.8565707206726074, 0.6092949509620667, -0.29367774724960327, -0.04268190264701843, 0.5555823445320129, 1.1577662229537964, 0.6561897397041321, -0.4945929944515228, 1.670647144317627, 1.2451694011688232, 0.12310352921485901, -0.017300600185990334, 0.9903951287269592, 0.043375127017498016, 0.9060891270637512, -0.6573111414909363, -0.28533393144607544, -0.47312724590301514, 0.47391942143440247, 0.301725834608078, -0.444497287273407, -0.4417150616645813, -0.20053403079509735, -0.4530530571937561, -0.12424960732460022, 0.568475604057312, -0.6244812607765198, -0.4157848060131073, 1.1906366348266602, -0.08320043236017227, -0.02424922026693821, 0.029999667778611183, 0.9980994462966919, -0.15730340778827667, -0.29316481947898865, 0.6386746764183044, 0.4095878303050995, -0.8651493787765503, 0.8734078407287598, 0.16049297153949738, 0.3154229521751404, -0.10802851617336273, -0.29256346821784973, -1.4584108591079712, 0.4565146565437317, -0.9079480171203613, -0.9035115242004395, 1.0714329481124878, -1.201509952545166, -0.8025083541870117, 0.4856034815311432, -0.12955647706985474, -0.5682606101036072, -0.5321288108825684, 0.08949725329875946, -0.05404660105705261, 0.2030395269393921, 0.5944226384162903, -0.6260056495666504, 0.9676778316497803, 0.13228261470794678, -0.10555455833673477, -0.17240886390209198, -0.5209750533103943, 0.9369432926177979, -0.5742694735527039, 0.3267407715320587, -0.35659855604171753, 0.37282073497772217, -0.24707360565662384, -0.9734219908714294, 0.15996184945106506, 0.20137269794940948, -0.20304806530475616, -0.21066312491893768, -0.3728933036327362, 0.5967699289321899, 0.19951121509075165, 0.34146398305892944, -0.8045132756233215, -0.5497006773948669, -0.6531245708465576, 0.29540854692459106, -0.5699556469917297, 1.1135841608047485, -0.5836142301559448, 1.1397318840026855, 0.16113115847110748, -0.5685351490974426, -0.45565250515937805, -0.3628218173980713, 0.17164576053619385, -0.3791961073875427, 1.0054529905319214, 0.4699237644672394, 0.12175624072551727, -0.5340004563331604, -1.0461636781692505, 0.49926239252090454, 0.4800092577934265, -0.20450779795646667, 0.268026202917099, -1.1860960721969604, -0.6419281959533691, -0.5393535494804382, 0.7195501327514648, 0.32628530263900757, -0.15933701395988464, -0.18629290163516998, 0.017247062176465988, -0.8425599932670593, 0.0849766805768013, 0.2404729276895523, 0.10283095389604568, 0.262391597032547, 0.9962970018386841, 1.707682490348816, 0.250308632850647, 0.08822053670883179, -0.16618764400482178, 0.9990584254264832, -0.4297357499599457, 0.10298764705657959, -0.7922431230545044, 0.05492985248565674, -0.1337910145521164], [0.03415742143988609, 1.7334480285644531, -1.9799940586090088, -1.1685237884521484, 1.395931601524353, 0.19966767728328705, 1.0289133787155151, -0.11009088158607483, 0.1986171454191208, -0.446150541305542, -0.049903083592653275, -0.21488697826862335, 1.1106592416763306, 1.3855317831039429, -0.0305120050907135, 0.3217240273952484, 0.5336903929710388, 0.06338631361722946, 0.6668434143066406, 0.8335056304931641, -0.6792657375335693, -0.44922035932540894, 0.09439938515424728, 0.5058587193489075, -0.4957827627658844, 0.5511695146560669, -0.8946033716201782, -0.5054042339324951, -1.3769947290420532, -0.12974373996257782, 1.3133355379104614, -1.5151126384735107, -0.19475236535072327, 0.25977712869644165, -1.2517898082733154, -0.5810561180114746, 1.380081057548523, 0.18051636219024658, 0.3671732246875763, 0.21706411242485046, 1.647964358329773, 0.4386036992073059, -0.14553016424179077, -1.7963716983795166, 0.1199524998664856, 0.3291529715061188, 0.9537290334701538, -1.0498770475387573, 0.47756659984588623, -0.8862125873565674, 0.9642132520675659, 0.13827060163021088, 2.0055665969848633, 0.655284583568573, 0.6990712285041809, 0.14931242167949677, 0.9179575443267822, 0.26008978486061096, 0.7855579257011414, -0.22212837636470795, 1.2872675657272339, 0.4160647690296173, -0.19372905790805817, 0.5318934321403503, 0.16265250742435455, -0.1222682073712349, -0.7009243965148926, 0.4120591878890991, 0.19221465289592743, -0.36388662457466125, 0.9670823216438293, 0.21777766942977905, -0.9966732859611511, 0.14458611607551575, -1.1829222440719604, 0.5655443668365479, 1.1229575872421265, 0.7213889360427856, 0.01871398650109768, 0.7361350059509277, -0.5539096593856812, -0.15083637833595276, 0.8125697374343872, -0.43176406621932983, 0.19372493028640747, 0.4990503787994385, 0.3761744797229767, -0.679690957069397, -0.5346507430076599, 1.0967864990234375, 0.1407819241285324, -0.21350543200969696, 0.6772711873054504, -0.32918745279312134, 0.3914961516857147, -0.4314715266227722, 0.7998514771461487, -1.1336498260498047, -0.8860716819763184, -0.44146308302879333, -0.9511108994483948, -0.7184846997261047, 0.35910478234291077, -0.06139635667204857, 0.22318623960018158, 1.14906907081604, 0.30494239926338196, -0.07895947247743607, -0.48377007246017456, 0.4566732347011566, -0.3361426293849945, -0.44798004627227783, -0.8607734441757202, -0.9200814366340637, -0.12358454614877701, 0.1666170209646225, 1.4530787467956543, 0.2359359860420227, 1.1493850946426392, 0.7098715305328369, -0.5780335664749146, 0.7476620078086853, 0.22115398943424225, 0.6871505379676819, 0.7092978954315186, 0.8039474487304688, -0.27599450945854187, -1.0953348875045776, 0.6524115800857544, -0.8966850638389587, 0.43657147884368896, -0.43432390689849854, 0.2553199827671051, 1.0390212535858154, -0.6389173269271851, 0.6956237554550171, 0.4303245544433594, -0.6358108520507812, 0.009701847098767757, 0.37482360005378723, 0.10822486877441406, -0.6099177598953247, -0.2313316911458969, -0.37899500131607056, 0.6872001886367798, -0.7211748361587524, 0.6459826231002808, -0.510354220867157, -0.8854093551635742, -0.4448501765727997, -0.7759844660758972, 0.6911142468452454, 0.444286584854126, 0.9645032286643982, 0.4487100839614868, -0.4216158092021942, 0.2626444399356842, 0.17869329452514648, 0.3547215163707733, 0.036728642880916595, 0.8236657977104187, 0.2580763101577759, -0.526233434677124, 0.9449905753135681, -0.007571886293590069, 0.0019253294449299574, 1.0537785291671753, 0.2271183729171753, -0.18075236678123474, 0.9090803861618042, -0.5705404281616211, -0.4388093650341034, -0.5895918607711792, 0.577724814414978, 0.41047200560569763, 0.1034160628914833, 1.3746001720428467, -1.2177692651748657, -1.3644837141036987, -0.8079995512962341, 0.5895416736602783, -0.21614153683185577, 0.38463732600212097, 0.22526098787784576, 1.0799815654754639, -0.8584200143814087, 0.47622787952423096, 0.06072114408016205, -0.8411048650741577, -1.0762524604797363, -0.4097662568092346, -0.37287867069244385, -0.7797958254814148, 0.07673468440771103, -0.23392172157764435, -0.56235271692276, 0.4008461534976959, -0.8544020056724548, -0.7309345602989197, 0.43007346987724304, -0.3841441869735718, -0.14227831363677979, -0.5944385528564453, 0.4494234323501587, -0.5705199837684631, 0.4546012878417969, -1.5211796760559082, 1.2993844747543335, -0.7496945261955261, -0.07760431617498398, 0.9999907612800598, 0.0077355182729661465, -0.4617611765861511, 0.6109358668327332, -0.8044702410697937, -1.017378807067871, 0.6688162684440613, 0.24329252541065216, -0.4070567190647125, 0.35658812522888184, 0.4826072156429291, 0.5779634714126587, 0.10198204964399338, 0.27065590023994446, 0.8501660823822021, -0.13188529014587402, -1.3996373414993286, -1.2821334600448608, -0.6951904892921448, 0.19467154145240784, -0.272449791431427, -1.0074455738067627, 0.9785897135734558, 0.5096851587295532, -1.2629557847976685, 0.2719125747680664, 0.5105331540107727, -0.1197512149810791, 0.4767060875892639, 0.704275906085968, 0.13263775408267975, 0.8977181315422058, -0.10080656409263611, 0.09664496034383774, -0.9794387817382812, 0.3309182822704315, 0.4923034906387329, -0.5296226739883423, 0.4470023810863495, 0.8578778505325317, 0.5390238761901855, 0.537630558013916, 0.06577829271554947, -0.23163379728794098, -0.005764790344983339, -0.9213749170303345, -0.6102089881896973, 0.41008561849594116, -0.6297637224197388, 0.9136307239532471, 0.8468473553657532, -1.3704936504364014, -0.5119035840034485, 0.07902127504348755, 0.43257787823677063, -0.5028973817825317, -0.8527795076370239, -0.45955032110214233, -0.1770625114440918, -0.3611309826374054, -0.028076136484742165, 0.6626242995262146, -0.1870766431093216, 0.4827907085418701, -0.04497770965099335, 0.05853637680411339, -0.059287458658218384, 0.11305735260248184, 0.366995632648468, 0.6079416871070862, -0.49162018299102783, -0.5910335779190063, -0.3080071210861206, -0.34619736671447754, 0.8045089840888977, 0.24413762986660004, -0.5488672256469727, 0.6630406975746155, 0.11720733344554901, -0.8564557433128357, 0.3690645098686218, 0.43067535758018494, 0.04344749450683594, 0.513870358467102, 0.27220848202705383, -0.01727904938161373, 1.0397685766220093, -1.2795233726501465, -1.01981520652771, -0.44748029112815857, 1.1636583805084229, 1.2613242864608765, 0.7481783032417297, 1.3358386754989624, -0.529545247554779, -0.045909103006124496, -0.138161301612854, -0.5639477968215942, -0.3187635838985443, -0.3181152045726776, -0.5653911232948303, -0.3549869656562805, -0.23078329861164093, 0.20003128051757812, 0.20045430958271027, 0.778279721736908, -0.1333507001399994, 0.5484133958816528, 1.0005613565444946, -0.4000333249568939, -0.7849438786506653, -0.14063666760921478, 0.09080548584461212, -0.24312031269073486, 0.9625166654586792, 0.8784067034721375, -1.6848084926605225, -0.25487303733825684, -0.06903278827667236, -0.11576655507087708, 0.41132110357284546, 0.352102130651474, 0.13272541761398315, -1.1060541868209839, -1.4046623706817627, -0.10193236172199249, 0.7355469465255737, 0.680045485496521, -0.12317163497209549, -0.9387986063957214, 0.5341102480888367, 0.5950049161911011, 0.4160023629665375, -1.116257905960083, 0.8708517551422119, -0.24035261571407318, -0.8385961055755615, -0.4300338625907898, 0.4907485246658325, 0.1754629760980606, -0.8103151321411133, -0.03811601921916008, -0.0850834771990776, -0.498752623796463, -0.21284781396389008, 0.5845053195953369, 0.3278428316116333, 0.6378841400146484, 0.5227402448654175, 0.25662925839424133, 0.7869310975074768, -0.029167290776968002, -0.42557626962661743, -1.7970725297927856, 1.1553136110305786, 0.29714280366897583, 0.7848827838897705, -0.32488664984703064, -0.013573420234024525, -0.10876158624887466, 0.24491405487060547, 0.19188281893730164, 0.10457026958465576, 1.2114697694778442, 0.39065200090408325, -0.3741593658924103, -0.3609384000301361, 0.11151781678199768, 0.009405188262462616, -0.8966290950775146, -0.06994659453630447, 0.07014282047748566, -0.5558176040649414, -0.4141494333744049, 1.1544344425201416, 0.02698015794157982, -0.5235650539398193, -0.34097209572792053, -0.0071661584079265594, 1.0422121286392212, 0.24331769347190857, 0.6254961490631104, -0.4282304644584656, -0.41901102662086487, -0.6039671301841736, -1.4047266244888306, -0.8626607060432434, -0.12104359269142151, 0.03219960629940033, 0.47831353545188904, -0.7918252348899841, -0.18249818682670593, -0.3026866316795349, 0.44710248708724976, 0.04851240664720535, -0.2041645050048828, 0.6114306449890137, -0.1857120841741562, 0.46139615774154663, 0.02754388377070427, 0.3886643350124359, 1.6166772842407227, -0.3150966167449951, -0.4040070176124573, -0.16409434378147125, -0.03148798272013664, 0.341047465801239, -0.6837354302406311, 0.3362218737602234, 0.232265442609787, -0.7936685085296631, -0.8422203660011292, -0.6819696426391602, 0.15144822001457214, 1.43013334274292, 0.4066871106624603, 0.2920514941215515, 0.16443774104118347, -0.47574615478515625, -1.3516377210617065, 0.03981916233897209, 0.09306053072214127, -0.3742313086986542, -0.597144603729248, 0.29521453380584717, 0.37123605608940125, -0.08913151919841766, 0.7446158528327942, 0.013975168578326702, 1.0344358682632446, 0.18933351337909698, -0.35675981640815735, -0.03429656848311424, 0.36915507912635803, 0.7202798128128052, 2.3207006454467773, 0.7450007796287537, -0.7355366349220276, -0.7955295443534851, 0.9183914661407471, -0.8058028221130371, 0.13575133681297302, 0.5707839727401733, 0.3451191484928131, 1.2702900171279907, -1.9079500436782837, -1.3989354372024536, 0.5316556692123413, 0.40333494544029236, 0.7152993083000183, 0.6379308104515076, -0.2013482302427292, -0.8211362361907959, 0.5473736524581909, 0.5772196650505066, 0.2941170334815979, 0.010804190300405025, -0.13307426869869232, 0.4420557916164398, 0.21734605729579926, -0.5097896456718445, 0.33437737822532654, -0.24945279955863953, -0.23822364211082458, -0.03184674307703972, -0.17922019958496094, 0.5121146440505981, 0.3115372359752655, -0.2238835096359253, 1.1903672218322754, -1.0884029865264893, -0.3010968565940857, 0.12819893658161163, -0.6812649965286255, 0.3039640486240387, -0.6893632411956787, -0.6594224572181702, -0.18027940392494202, -0.9804227352142334, -0.482356458902359, 0.13212920725345612, -0.8273394703865051, -0.5034433007240295, -0.6699502468109131, -0.4734022915363312, -0.11630527675151825, 0.6423763036727905, 1.4794197082519531, 0.35421431064605713, 0.6830573081970215, 0.777426540851593, 0.06924954801797867, -0.6724012494087219, 0.242100790143013, 0.8081682920455933, -0.2636494040489197, -0.0642714574933052, -1.3106056451797485, -0.7304772734642029, 0.516628086566925, 0.30748099088668823, 0.08643615990877151, 0.26206010580062866, 1.2756426334381104, 1.0251641273498535, 0.07170513272285461, -0.5341665744781494, 0.07517847418785095, -1.0385304689407349, 0.24590161442756653, 0.4317795932292938, -0.707737147808075, -0.3372374176979065, -0.5366159081459045, -1.4552689790725708, 0.8468238711357117, -0.4320921003818512, -0.8799867033958435, 0.8278507590293884, -0.34044742584228516, -0.05580886825919151, -0.027090713381767273, -0.3384077250957489, 0.6600168943405151, 0.18286758661270142, -0.5518956780433655, -1.385360598564148, 0.3377041220664978, 0.29227349162101746, 0.18020635843276978, -0.022613057866692543, 0.3049810528755188, 0.7092686295509338, -0.43337273597717285, -0.3077583909034729, 0.12867343425750732, 0.4785797894001007, 0.9843782782554626, -0.4437822699546814, -0.5576605796813965, 0.006378148682415485, -1.0618510246276855, -0.595262885093689, -0.06001288816332817, 0.029377838596701622, -0.24821223318576813, -0.4822903275489807, -0.1758250892162323, -0.5170972347259521, -0.12267951667308807, -0.31751877069473267, -0.11210598051548004, 1.0187958478927612, 0.4153558909893036, -0.7898771166801453, 0.10567692667245865, -0.2752780020236969, -0.7769407629966736, -0.5185586214065552, -0.40180325508117676, 0.8854281902313232, -1.0400413274765015, -0.41598621010780334, 0.06026490777730942, -0.18805748224258423, 0.03433358296751976, -0.3476107120513916, 0.4406100809574127, -1.3871036767959595, -1.59507155418396, -0.9404652714729309, 0.2575265169143677, 1.1289142370224, -1.2478885650634766, 0.6209105253219604, 0.6544348001480103, -1.7720956802368164, 0.2104388326406479, 0.08331736922264099, -1.0955394506454468, 0.3027385175228119, -1.262057900428772, 0.44029250741004944, -0.6910341382026672, 0.34550487995147705, -0.8290786743164062, 1.6756452322006226, -1.329634666442871, -1.5132980346679688, -0.8329538702964783, 0.23317685723304749, 0.23955097794532776, 0.904935359954834, -0.3236527442932129, 1.071104645729065, 0.6441947817802429, -0.6639665961265564, -0.6577615737915039, 0.47331926226615906, -0.703499436378479, 0.4007827043533325, 0.15465085208415985, 0.658881425857544, 0.041813068091869354, 0.7695144414901733, -0.5441446900367737, 0.5774179100990295, -0.3789968490600586, 0.11806227266788483, -0.08404051512479782, -0.47203195095062256, -0.09892837703227997, 0.7385664582252502, -0.8535171151161194, -0.46472516655921936, 0.1939416229724884, -0.7119271159172058, -1.4829089641571045, 0.9643808603286743, 0.940613329410553, -1.0347449779510498, -0.6129740476608276, 0.0054040467366576195, 0.15649324655532837, -0.9159114956855774, 0.5395856499671936, -0.28964483737945557, 0.2091449499130249, 0.18842415511608124, -0.30322694778442383, -0.421539843082428, -0.5360214710235596, 0.09770329296588898, 0.7548836469650269, 0.1970256268978119, -0.33412960171699524, 1.2191247940063477, 0.09017933905124664, 0.01055048406124115, -0.9579993486404419, 1.0060763359069824, 0.743845522403717, 0.08495037257671356, -0.005997165106236935, 0.06939494609832764, 0.3512006402015686, 0.8589085340499878, -0.6952931880950928, 0.371837854385376, -1.0889525413513184, 0.22625049948692322, 0.7763397693634033, -0.30277132987976074, -0.6579011082649231, -0.5132361650466919, -0.4962421655654907, 1.0589812994003296, 0.1824735850095749, -0.5707535743713379, 0.22600245475769043, 1.0705931186676025, 0.11533469706773758, -0.29138249158859253, 0.12025072425603867, 0.24235519766807556, -0.04121798276901245, 0.02565292827785015, -0.12848950922489166, 0.645168125629425, -0.6650627851486206, 0.36106815934181213, -0.09931507706642151, 0.26488766074180603, -0.2343471497297287, -0.8665980696678162, -1.2170344591140747, 0.27851495146751404, -0.9117846488952637, -1.138424038887024, 0.7500053644180298, -1.3882728815078735, -0.7929147481918335, 0.7020565867424011, -0.1370769888162613, -0.1157894879579544, -0.1488790214061737, -0.3365374207496643, -0.4631408452987671, 0.16981269419193268, 0.915507435798645, -0.6295821666717529, 1.007845401763916, 0.8215022087097168, 0.2875814437866211, -0.8455143570899963, -0.5685102939605713, 0.5827562212944031, 0.2580145299434662, -0.12590545415878296, -0.13364915549755096, 0.5929115414619446, -0.14375776052474976, -0.23531818389892578, 0.8137637972831726, -0.05068175867199898, 0.3675772249698639, -0.09467465430498123, -0.607789158821106, 0.5365492105484009, 0.6508463025093079, 0.3115353584289551, -0.7329890727996826, -1.2571684122085571, -1.1407780647277832, 0.5241327881813049, -0.3518679738044739, 0.7317033410072327, 0.2420216202735901, 1.1740925312042236, 0.10115151107311249, -0.30626335740089417, 0.05394405871629715, -0.8546609878540039, 0.06324919313192368, 0.03577083349227905, 0.8919398188591003, -0.48580998182296753, -0.02086859568953514, -0.2054206281900406, -0.9044468998908997, 0.4392491281032562, -0.0927312895655632, 0.457115113735199, -0.04091225937008858, -0.7902714014053345, -0.5803123712539673, -0.824342668056488, 0.46207043528556824, 1.7866723537445068, 0.3558836877346039, 0.27800485491752625, -0.19154776632785797, -1.0008008480072021, 0.31008824706077576, 0.2756316065788269, 0.4581854045391083, -0.18339720368385315, 0.7008524537086487, 1.0261950492858887, 0.19008170068264008, 0.7382199764251709, -0.41133546829223633, 0.4183002710342407, -0.40801557898521423, -0.23271270096302032, -0.47974464297294617, -0.05334112420678139, 0.21871834993362427], [0.41859233379364014, 1.9564801454544067, -2.356013536453247, -0.35427144169807434, 1.3553684949874878, 0.6586287617683411, 1.5047565698623657, -0.5197713971138, 0.7165552377700806, -0.2405809760093689, -0.1076102927327156, -0.7758241891860962, 0.27524808049201965, 1.400147557258606, 0.37667524814605713, 0.914047122001648, 0.7107900977134705, -0.18024270236492157, 0.8665611147880554, 1.1464332342147827, -0.18828698992729187, -0.32989010214805603, 0.057242922484874725, 0.17610864341259003, 0.3446492850780487, 0.8986542820930481, -0.40630778670310974, 0.3581670820713043, -0.8308984637260437, -0.7937400937080383, 0.17391328513622284, -0.07800880074501038, 0.16902200877666473, -0.3068075478076935, -1.1525466442108154, -0.8480618596076965, 1.9619638919830322, 0.937961220741272, 1.2989779710769653, 0.5737985372543335, 1.8460379838943481, -0.05101531744003296, 0.16922907531261444, -2.621666669845581, 0.2439166009426117, -0.22013744711875916, 0.628327488899231, -0.573144793510437, 0.5094385743141174, -0.3773147463798523, 0.9987568855285645, -0.5728431344032288, 1.0943584442138672, 0.540929913520813, 0.6596775650978088, -0.6406901478767395, 0.3188207149505615, 1.0960170030593872, 0.12152557075023651, -0.043320924043655396, 1.0511541366577148, 0.39464041590690613, -1.0372412204742432, 0.7481093406677246, -0.006951538845896721, -0.3447369337081909, 0.1592434048652649, 0.23160099983215332, 0.1717020720243454, -0.017886849120259285, 0.296039879322052, -0.5827378630638123, -0.3644658923149109, 0.06770764291286469, -0.8175718188285828, 0.39592593908309937, 0.8907937407493591, 1.0704323053359985, 0.33095693588256836, -0.15547338128089905, -0.3179163932800293, -0.20676273107528687, 0.49046406149864197, -0.20405273139476776, 0.46559450030326843, 0.7297629714012146, 0.7899459600448608, -0.35176438093185425, 0.2241184115409851, 1.3723475933074951, 0.8089106678962708, -0.2510131001472473, 0.5991971492767334, -0.21480907499790192, -0.250101238489151, -0.24610377848148346, 0.012885002419352531, -1.0623043775558472, -0.6779595613479614, -1.0533827543258667, -0.4307260811328888, -0.6411612033843994, -0.19010750949382782, 0.009510302916169167, -0.30484646558761597, 1.1789031028747559, 0.6342036724090576, 0.40144845843315125, -1.1337151527404785, 0.13017217814922333, -0.5030678510665894, 0.7968072295188904, -1.0773835182189941, -0.7134830355644226, -0.2335311472415924, 0.8403811454772949, 1.3181761503219604, -0.5543027520179749, 0.5819255113601685, 0.6181225776672363, -0.7811219692230225, 0.4115593731403351, -0.31653544306755066, 1.151572823524475, 0.8806987404823303, 0.763727068901062, -0.6388235688209534, -0.22404851019382477, 0.5170351266860962, 0.47180333733558655, -0.083842433989048, -0.7241384983062744, 0.0751766487956047, -0.17930705845355988, -0.6219104528427124, 1.3795301914215088, 0.00037564942613244057, -0.07322637736797333, 0.10309009253978729, -0.24811439216136932, 0.2872162163257599, -0.17759932577610016, -0.3429928719997406, -1.0596657991409302, 0.17870576679706573, -0.7131246328353882, 0.562129020690918, 0.18365749716758728, -0.5695406198501587, -0.11233774572610855, -1.4814571142196655, 0.8563281297683716, -0.358877569437027, 0.8577160835266113, 0.16529260575771332, 0.11236198991537094, 0.7026668190956116, 1.0582354068756104, 0.22033308446407318, -0.2024279683828354, 1.0011391639709473, -0.0729823037981987, -1.053565263748169, 0.8551155924797058, 0.3472033143043518, 0.026726311072707176, 0.8515254855155945, 0.6177075505256653, -0.41206058859825134, 1.0287305116653442, -0.8808794617652893, -0.7520983219146729, -0.6184867024421692, 0.6679604053497314, 1.2462979555130005, -0.9994481801986694, 1.5929913520812988, -0.7280726432800293, -0.7671019434928894, -1.6169525384902954, -0.08356087654829025, -0.011194592341780663, 0.9665279388427734, 0.01852094940841198, 1.0029628276824951, 0.024656057357788086, 0.7649442553520203, 0.05635199323296547, -0.3925635814666748, -0.9033961892127991, -0.6281908750534058, 0.44712334871292114, -1.1276237964630127, -0.19031843543052673, -0.2911069989204407, -1.1818876266479492, 0.4454405903816223, -0.7537552714347839, -0.8093227744102478, 0.2469158172607422, 0.024975750595331192, -0.6132460236549377, 0.10614029318094254, 0.8079543709754944, -0.8122594356536865, 0.3704902231693268, -1.3265647888183594, 0.7007449865341187, -0.35071051120758057, -0.2657291293144226, 0.9066363573074341, 0.197956845164299, -0.9959626197814941, 0.8414736390113831, 0.10025687515735626, -1.8820154666900635, 0.5182672142982483, 0.7639356851577759, -0.10133978724479675, 0.7447744011878967, 0.13922014832496643, -0.194532573223114, 0.5929774045944214, -0.04275834187865257, 0.7358137965202332, 0.1013033390045166, -1.5623691082000732, -0.9884749054908752, -0.10376647114753723, -0.3209475874900818, -0.26032838225364685, -1.0528470277786255, 0.9301160573959351, 0.7608629465103149, -1.13222074508667, 0.3402220606803894, 0.182060107588768, 0.149706169962883, 0.5900683403015137, 0.876614511013031, -0.28555870056152344, 1.137567400932312, -0.02421453408896923, 0.016283972188830376, -0.32736217975616455, 0.6496109366416931, 0.5841776132583618, -0.5580625534057617, -0.0030350368469953537, 1.0458356142044067, 1.2889626026153564, -0.10849804431200027, -0.0668095126748085, -0.37073904275894165, -0.0385703481733799, -1.155343770980835, -0.4623715579509735, -0.04802561551332474, 0.02145993337035179, 0.9089944958686829, 0.3151695132255554, -1.4154211282730103, 0.01191683765500784, 0.008633514866232872, 0.2678024470806122, 0.16264650225639343, -0.4146097004413605, -0.4111505150794983, -0.1993435174226761, 0.30724212527275085, 0.05911087244749069, 0.16657572984695435, -0.06230529397726059, 0.5471819639205933, -0.157894104719162, -0.7438116073608398, -0.9271214008331299, 0.013782620429992676, -0.24448499083518982, 0.8246548175811768, 0.5551515817642212, -1.1696860790252686, -0.32920897006988525, 0.1622808575630188, 0.8608046770095825, 0.6279216408729553, 0.10084139555692673, 0.7279794812202454, 0.1827200949192047, -0.2990398406982422, 0.9664241075515747, 0.7478869557380676, -0.2189239263534546, 0.1324673891067505, 0.22546043992042542, 0.3160777986049652, 0.9855666160583496, -1.4334369897842407, -0.6220727562904358, -0.14451701939105988, 0.4101840555667877, 1.2412794828414917, 1.0748519897460938, 0.9129382371902466, 0.0006776377558708191, -0.028473306447267532, 0.288083553314209, -0.9134028553962708, -0.3316405415534973, -0.7942031025886536, -0.5020414590835571, -0.3089936375617981, -0.6960024833679199, 0.3703644871711731, -0.12946780025959015, 0.17661598324775696, -0.12185588479042053, 0.5673843026161194, 1.5891389846801758, -0.8404045701026917, -1.0696548223495483, -0.19029678404331207, -0.1342155784368515, -0.8983986973762512, 0.7652752995491028, 1.4210493564605713, -1.6285663843154907, -0.13531048595905304, 0.5942860841751099, -0.7805489897727966, 0.9877657294273376, 0.16591890156269073, 0.2368330955505371, -0.6324003338813782, -1.0956963300704956, -0.46033158898353577, 2.116142988204956, 0.3086380958557129, 0.4371764063835144, -0.7932494282722473, 0.22341756522655487, -0.07190150767564774, -0.12229222804307938, -0.6430347561836243, 0.7105873823165894, -0.4266364276409149, -0.7962705492973328, -0.23778477311134338, 0.28468677401542664, 0.7030684947967529, -0.6822708249092102, -0.0790913999080658, -0.17963378131389618, 0.0625123381614685, 0.0366213284432888, 0.2622029781341553, 0.5620805621147156, 0.8781625628471375, -0.14659512042999268, 0.41165173053741455, 0.8864473700523376, -0.6806914806365967, 0.18587622046470642, -1.2749696969985962, 0.7289316058158875, 0.8503367900848389, 1.3156111240386963, 0.07480534166097641, -0.36835935711860657, -0.20323596894741058, 0.3421415686607361, -0.3647429645061493, 0.2317759096622467, 1.3208273649215698, 0.14325059950351715, 0.6053876280784607, -0.4500662684440613, -0.5166512727737427, 0.07274137437343597, -1.4762991666793823, -0.27256065607070923, 0.10870111733675003, -0.7247096300125122, -0.48209407925605774, 0.8439256548881531, -0.09214689582586288, -0.32608839869499207, -1.2285183668136597, -0.3658757209777832, 0.5201767086982727, 0.21333177387714386, -0.28622421622276306, -0.09617367386817932, 0.0705728530883789, 0.4162611961364746, -0.3929198384284973, -0.8636947870254517, -0.1403602957725525, 0.16490401327610016, 0.6941238045692444, -0.748900294303894, -0.6601961255073547, -0.5795566439628601, 0.44351810216903687, 0.4017145037651062, 0.06333741545677185, 0.3453013598918915, -0.6797975897789001, -0.2987706661224365, -0.31403616070747375, 0.05893855169415474, 1.3287872076034546, -0.6937127709388733, -0.2981456518173218, 0.40802958607673645, 0.04663674160838127, 0.5774327516555786, -0.5422605276107788, 0.3616841435432434, 0.03371860831975937, -0.5099676847457886, -0.19368764758110046, -0.6501607894897461, 0.16011841595172882, 1.3703618049621582, 0.5820488333702087, -0.039320558309555054, 0.5362800359725952, -0.3654828667640686, -1.3454967737197876, 0.3055587112903595, 0.35681354999542236, -0.575718104839325, -0.29079490900039673, 0.8154043555259705, 0.26881304383277893, -0.14874356985092163, -0.10224604606628418, -0.508133590221405, 0.8698720335960388, -0.24826695024967194, 0.18260519206523895, -0.1372537612915039, 0.43354424834251404, 0.22076287865638733, 1.0174566507339478, 0.9068028926849365, -0.9391087293624878, -1.1620774269104004, 0.20896115899085999, -0.7961083650588989, 0.3744187355041504, 0.8320257067680359, 0.3616398870944977, 1.0594465732574463, -1.5232164859771729, -0.9879397749900818, 0.16096176207065582, 0.12539327144622803, 0.82559734582901, 0.676574170589447, -0.6910673975944519, -0.7879905104637146, 0.08073966950178146, -0.08755791932344437, -0.06359340995550156, 0.36851802468299866, 0.3358919024467468, -0.10246606916189194, 0.5066074728965759, -0.9917138814926147, 0.3862382471561432, -0.2073945701122284, -0.309671014547348, -0.2632501423358917, -0.15829350054264069, 0.6047171950340271, 0.724132776260376, 0.40003445744514465, 1.7109146118164062, -1.0737653970718384, -0.7185673117637634, 0.16976402699947357, -0.7080277800559998, -0.08797486126422882, -0.5667889714241028, -0.8095342516899109, -0.16374877095222473, -0.3942543566226959, -0.6698552370071411, 0.881659984588623, -0.9186072945594788, -0.5452669858932495, -0.23960155248641968, -1.0485233068466187, 0.5052751898765564, 1.157447338104248, 1.4162424802780151, 0.554251492023468, 0.16995802521705627, 0.7769246101379395, -0.06510618329048157, -0.7520589232444763, 0.7915365099906921, -0.043109651654958725, 0.18536235392093658, -0.18620198965072632, -1.2787624597549438, -0.5090522766113281, 0.2094583362340927, 0.5217241644859314, 0.4006807208061218, 1.519712209701538, 1.1973423957824707, 0.3660804331302643, -0.2498936802148819, -0.8616556525230408, 0.0905376523733139, -0.7275328636169434, 0.4178333282470703, 0.27262943983078003, -0.36476069688796997, -0.31032487750053406, 0.008057000115513802, -0.782768726348877, 0.07594241946935654, -0.4691585898399353, -1.4118868112564087, 1.0440982580184937, -0.06954535096883774, 0.45185884833335876, 0.7732391357421875, -0.45251622796058655, 0.18884605169296265, -0.036624860018491745, -1.090673565864563, -1.205601453781128, 1.058562159538269, 0.3536613881587982, 0.37037351727485657, -0.3201519250869751, 0.5216547846794128, 0.49793902039527893, -0.2808299958705902, 0.033399492502212524, 0.40121692419052124, -0.1713523417711258, 0.5205663442611694, -0.13165470957756042, -0.7397119402885437, 0.4147411584854126, -0.44710132479667664, -0.5775741338729858, -0.14954774081707, 0.9394530653953552, -0.11583861708641052, -0.6554795503616333, -0.39670512080192566, -0.5103477835655212, -0.006226172670722008, -0.7092977166175842, -0.3825792670249939, 0.5958938598632812, 0.018705975264310837, -0.6383472084999084, 0.028827248141169548, 0.042483020573854446, -0.5210777521133423, -1.2413944005966187, 0.11680828034877777, 0.3997820019721985, -1.43035888671875, 0.46793463826179504, 0.2936672866344452, -0.5853136777877808, 0.2126464694738388, -0.8773190975189209, 0.37420862913131714, -1.8826137781143188, -1.6172600984573364, -1.1002978086471558, -0.019694378599524498, 0.7271712422370911, -0.29764115810394287, 0.7955940961837769, 0.714303195476532, -0.8131667971611023, -0.5628316402435303, -0.6719266176223755, -1.1169458627700806, -0.40406274795532227, -0.7215739488601685, 0.6941518187522888, -0.40757694840431213, 0.3477558195590973, -0.3009045720100403, 1.366440773010254, -1.5391911268234253, -1.793342113494873, -0.9819908142089844, -0.1047217845916748, 0.6168574094772339, 0.42381224036216736, -0.6541627049446106, 1.1140533685684204, 0.27844133973121643, -0.38693466782569885, 0.2193719893693924, 0.17463232576847076, -0.5707341432571411, 0.6018064022064209, 0.42014962434768677, 0.6945086717605591, 0.5069830417633057, 1.178056240081787, 0.03740439563989639, 0.5163565874099731, 0.48043349385261536, 0.10774971544742584, -0.6296392679214478, -0.2234991192817688, 0.04668080806732178, 0.5596134662628174, -1.1400165557861328, -0.4356829524040222, 0.16728565096855164, -0.8792318105697632, -0.5830622911453247, 0.8350939750671387, 1.3510551452636719, -0.5374854803085327, 0.08629489690065384, 0.07145223766565323, 0.17808428406715393, -1.270047903060913, 0.2051985263824463, -1.1120661497116089, -0.26489174365997314, -0.483833909034729, 0.18013030290603638, 0.5924134254455566, -1.5927551984786987, 0.11916755884885788, 0.45644262433052063, 0.04822013899683952, 0.9164525270462036, 0.7104161977767944, 0.7992008924484253, 0.05533018708229065, -0.5085734128952026, 1.853896141052246, 1.4962369203567505, -0.31621602177619934, -0.4442935287952423, 0.8614079356193542, -0.3953893482685089, 0.29644644260406494, -0.8378669619560242, -0.30682626366615295, -0.9814543724060059, 0.5750320553779602, 0.5719563364982605, -0.2676647901535034, -0.24723218381404877, -0.24191759526729584, 0.02556755393743515, -0.19625157117843628, 0.9056281447410583, -1.206527829170227, -0.24039854109287262, 0.49362245202064514, -0.10295655578374863, -0.3622519373893738, 0.27252382040023804, 0.9065815210342407, 0.5450108647346497, -0.7317206859588623, 0.30020657181739807, 0.7970907092094421, -0.9853953123092651, 1.1000335216522217, -0.47865161299705505, 0.2584764063358307, -0.3127698600292206, -0.5959730744361877, -1.046298861503601, 0.46280452609062195, -0.2136480212211609, -0.5940815210342407, 0.7417053580284119, -1.3931430578231812, -0.7951269745826721, 0.29579633474349976, -0.2621093988418579, -0.7065600156784058, -0.6584225296974182, -0.28435030579566956, -0.2985799312591553, 0.4790995419025421, 0.05292585492134094, -0.37755435705184937, 0.7532499432563782, 0.7388548851013184, 0.004144606646150351, -1.1033467054367065, -0.8245709538459778, 0.5799753665924072, -0.575943648815155, 0.06537948548793793, 0.6728289723396301, 1.7321372032165527, -0.3170776963233948, -1.0689609050750732, 0.5130501389503479, 0.39523255825042725, 0.07666067779064178, -0.021023843437433243, -0.8089483976364136, -0.6093312501907349, -0.3123171627521515, 1.0339782238006592, -1.3638575077056885, -1.0113050937652588, -0.705467939376831, 0.33274605870246887, -0.5784135460853577, 0.6215270757675171, -0.6536281704902649, 0.9160667061805725, 0.0973244458436966, -0.6540391445159912, -0.6347795724868774, -0.06184068322181702, 0.49358999729156494, -0.1251714676618576, 0.905681848526001, -0.06359059363603592, -0.49106860160827637, -0.8882789015769958, -1.0871011018753052, 0.32645657658576965, -0.27665162086486816, 0.19591380655765533, 0.2904876172542572, -0.9856472015380859, -0.16397331655025482, -1.2107537984848022, 0.4458441138267517, 1.0931278467178345, 0.3840581476688385, -0.07275976240634918, 0.22300894558429718, -1.2157281637191772, -0.37779924273490906, 0.14312173426151276, 0.2564050555229187, 0.5976402759552002, 0.41717565059661865, 1.4901866912841797, 0.7738776803016663, -0.11421036720275879, -0.8903694152832031, 0.12946192920207977, -0.4735865294933319, -0.20512238144874573, -0.7399477362632751, -0.45527368783950806, -0.25808030366897583], [0.2219424545764923, 1.9485046863555908, -2.245952606201172, -1.007666826248169, 1.1094610691070557, 0.2764046788215637, 0.9308558702468872, 0.22762979567050934, -0.10605742037296295, -0.3485185205936432, 0.25812917947769165, -0.0673447772860527, 0.9536536931991577, 0.9490875005722046, -0.5380074977874756, 0.776709258556366, 0.7869172692298889, -0.6693395376205444, 0.722302258014679, 1.61184823513031, 0.03626355528831482, -0.18002605438232422, 0.05174904689192772, -0.18991565704345703, -0.5192949175834656, 0.05850082263350487, -1.128975510597229, -1.1396037340164185, -0.9176783561706543, -0.9903120994567871, 1.02409827709198, -0.7868971228599548, -0.23518650233745575, 0.08751624077558517, -0.7589714527130127, -0.3052597641944885, 1.745934247970581, 1.010834813117981, 0.8932992219924927, -0.02014286443591118, 1.519810676574707, -0.3369411826133728, 0.19622845947742462, -1.2795664072036743, 0.5464909672737122, 0.1401604861021042, 0.41820576786994934, -0.3580508828163147, -0.24245871603488922, -0.9566723704338074, 1.428667426109314, 0.039260730147361755, 1.375649333000183, 1.2031705379486084, 0.368507444858551, -0.0017967303283512592, 0.34654414653778076, 0.4937438368797302, 0.7547193169593811, -0.09875824302434921, 0.031230201944708824, 0.2625797390937805, 0.18151040375232697, 0.5680009126663208, 0.1527854949235916, -0.5410609841346741, 0.6750897765159607, 0.4239884912967682, 0.1786099374294281, -0.6085377931594849, -0.36905378103256226, 0.47090843319892883, -0.5832985043525696, 0.46895334124565125, -1.706220269203186, 0.5938918590545654, 0.7960811853408813, 0.9118368625640869, -0.08183765411376953, 0.25006747245788574, -1.2032109498977661, 0.42808017134666443, 0.5229387879371643, 0.04481377452611923, 1.2761493921279907, -0.1429472416639328, 0.5204747915267944, -0.1485888659954071, -0.48650670051574707, 1.6826497316360474, 0.15938912332057953, 0.2974405288696289, -0.0521811842918396, -1.1873377561569214, -0.27778512239456177, -0.2835429012775421, 0.04285690560936928, -0.6681943535804749, -1.198606014251709, -0.8287588357925415, -0.37221670150756836, -0.7686914205551147, -0.04420030117034912, -0.05887787789106369, -0.08228342980146408, 2.0498669147491455, 0.2779352366924286, 0.5127529501914978, -1.1618887186050415, -0.21378546953201294, -0.34642282128334045, -0.10031305253505707, -0.8182240724563599, -0.6655097007751465, -0.21402738988399506, 0.23309063911437988, 1.42441987991333, -0.020755184814333916, 0.263440877199173, 0.71876460313797, -0.10833030939102173, -0.06754028052091599, 0.09778938442468643, 0.4331091344356537, 0.8418026566505432, 0.44166550040245056, -0.30112943053245544, -0.15105727314949036, 0.8379020094871521, -0.23111583292484283, -0.13527537882328033, -0.4423469603061676, 0.10780629515647888, 0.4269992411136627, -0.5966119170188904, 1.4809291362762451, -0.005247945431619883, 0.08957096934318542, -0.5275466442108154, -0.0022358614951372147, 0.18228480219841003, -0.640346348285675, -0.7388288378715515, -0.39598360657691956, 0.04837624356150627, -0.2865369915962219, 0.7478600740432739, -0.10743527859449387, -0.6883798837661743, 0.1764390468597412, -1.1390796899795532, 0.48759642243385315, 0.4402841627597809, 0.4723999500274658, 0.07374977320432663, -0.39339181780815125, 0.546000063419342, -0.0776575356721878, 0.28526169061660767, -0.38700294494628906, 0.9285258650779724, -0.14066335558891296, -1.346579909324646, 0.5223984122276306, 0.6702019572257996, -0.2816998064517975, 0.21605977416038513, 0.29988378286361694, 0.5526328682899475, 1.3304346799850464, -0.7562598586082458, -0.12399033457040787, -0.3142521381378174, 1.1787662506103516, 0.4424019455909729, -1.0819694995880127, 1.5204061269760132, -0.8809692859649658, -1.2600048780441284, -1.2655435800552368, -0.14432603120803833, -0.4164383113384247, 0.28010138869285583, -0.08116627484560013, 0.9407278895378113, -0.22228801250457764, 0.2417769879102707, -0.687279224395752, -0.501401960849762, -0.6883858442306519, -1.1625783443450928, -0.0804864764213562, -0.8904430866241455, 0.4561057388782501, -0.3466918468475342, -0.28881534934043884, 1.468929648399353, -0.910923182964325, -0.35224100947380066, -0.32821062207221985, 0.3624129593372345, -0.11407889425754547, -0.7875970005989075, 0.6652436852455139, -0.49996069073677063, 0.6786607503890991, -1.5227768421173096, 1.5262902975082397, -0.17444032430648804, 0.04952102154493332, 0.7064604163169861, 0.012623920105397701, -0.33187463879585266, 0.6723778247833252, -0.4207543432712555, -1.8117015361785889, 0.10180900245904922, 0.6341094374656677, -0.7100276350975037, -0.043469615280628204, 0.15627069771289825, 0.5608516931533813, 0.4033903479576111, 0.48898038268089294, 0.49188047647476196, -0.21299581229686737, -0.9584972262382507, -0.8556778430938721, -0.8797711730003357, 0.5527664422988892, -0.20119589567184448, -1.867554783821106, 0.3304002285003662, 0.5679107308387756, -0.8192451596260071, 0.27795472741127014, 0.03840218111872673, 0.39702096581459045, 0.6756560206413269, 1.6024184226989746, 0.23566970229148865, 0.36776289343833923, -0.7076936960220337, -0.12648707628250122, -0.6567769646644592, -0.08286955207586288, 0.8703124523162842, -0.7064455151557922, 0.7671306133270264, 1.5407936573028564, 0.24412600696086884, -0.3059062957763672, 0.408062607049942, 0.017746001482009888, -0.34919050335884094, -0.8651453256607056, -0.05208523944020271, 0.025255881249904633, -0.03445693850517273, 1.115053653717041, 0.6366250514984131, -0.8272659778594971, 0.3699222803115845, -0.3137165904045105, 0.13452918827533722, 0.042716603726148605, -0.6168230772018433, -0.07084035128355026, -0.49975860118865967, -0.46908342838287354, 0.24187706410884857, -0.05484464764595032, -0.2532440423965454, 0.4872727394104004, -0.13873708248138428, 0.05008137971162796, -0.5421649217605591, 0.10339447855949402, -0.1832023411989212, 0.6933233141899109, -0.24264301359653473, -1.5382558107376099, -0.6041397452354431, 0.5830317735671997, 0.3051726520061493, 0.6162744164466858, -0.40964028239250183, 0.33171531558036804, 0.060797251760959625, -0.07991039007902145, 0.24538813531398773, 0.2614850401878357, -0.27935218811035156, -0.00339469313621521, -0.9578942060470581, 0.8740473389625549, 1.1875927448272705, -1.4951962232589722, -0.660879909992218, -0.48507991433143616, 0.8260505795478821, 0.9922658801078796, 0.3895275592803955, 1.2474660873413086, 0.12013529986143112, 0.21270257234573364, 0.052125632762908936, -0.5117121338844299, -1.0891568660736084, -0.8236269950866699, -0.8079431653022766, -0.45321008563041687, -0.5730075240135193, -0.4741576910018921, -0.29933375120162964, 0.570879340171814, -0.19796426594257355, 0.3752345144748688, 1.6549251079559326, -0.18374423682689667, -1.0665053129196167, 0.03195774927735329, 0.11732307821512222, -1.0678921937942505, 0.6730120182037354, 0.6842135787010193, -0.22737890481948853, -0.5796210169792175, 0.3671872913837433, 0.6873863339424133, 0.7211669683456421, 0.15608534216880798, 0.0725162997841835, -1.7739373445510864, -0.9280814528465271, -0.5851432085037231, 1.2219691276550293, -0.08121569454669952, -0.05489661917090416, -0.250113308429718, 0.06604466587305069, 0.8621314167976379, 0.23394405841827393, -0.25638285279273987, 0.6681986451148987, 0.01624169759452343, -0.7410600781440735, -0.6468636393547058, 0.09745443612337112, 0.3714296221733093, -0.04248810559511185, 0.19953231513500214, 0.38122522830963135, 0.121697798371315, 0.09111035615205765, 0.7412069439888, 0.41129928827285767, 0.2482249140739441, -0.07193435728549957, 0.1885986030101776, 1.0462632179260254, -0.0022258199751377106, -0.05890004709362984, -1.2854183912277222, 0.9607869982719421, 0.2860838770866394, 0.994269073009491, -0.1077183336019516, -0.2100123018026352, -0.16345545649528503, 0.6848991513252258, 0.14710058271884918, -0.16133876144886017, 1.220285415649414, 0.02568439394235611, -0.36973482370376587, -0.23354516923427582, -0.3365788757801056, -0.1786031275987625, -0.20084266364574432, -0.08100713044404984, 0.18390537798404694, -1.3734409809112549, -1.3328336477279663, 0.4963124692440033, 0.21029618382453918, -0.7931250929832458, -0.8131171464920044, -0.28149405121803284, 0.7706913948059082, 0.15136949717998505, 0.7415717244148254, -0.4346485137939453, 0.7504109740257263, -0.22357283532619476, -1.0149646997451782, -0.23136834800243378, -0.138981893658638, 0.386679083108902, 0.45947906374931335, -0.7241154909133911, 0.07968834042549133, -0.5218262076377869, 0.3912983238697052, 0.6986158490180969, -0.540999174118042, 0.1564362496137619, -0.627589225769043, -0.2872789800167084, 0.36142319440841675, -0.19025547802448273, 1.0341850519180298, -0.047085508704185486, -0.17100396752357483, 0.17478936910629272, -0.16542230546474457, -0.36364108324050903, -0.8919656872749329, -0.1368361860513687, 0.2571381628513336, -0.8837701082229614, 0.3568083643913269, 0.1738874614238739, 0.3128417730331421, 1.967015266418457, 0.7296033501625061, 0.044214632362127304, 0.007546206936240196, -0.28341418504714966, -1.0836135149002075, 0.28509870171546936, 0.5222092270851135, -0.5633293390274048, -0.09459635615348816, 0.0373997688293457, 0.5319588780403137, -0.34218281507492065, 0.27314096689224243, 0.024731416255235672, 0.9864780306816101, 0.6224108338356018, -0.35860979557037354, 0.3077838122844696, 0.7332931756973267, 1.144854187965393, 1.3477133512496948, 0.7453836798667908, -1.018316388130188, -1.1609386205673218, 0.7703198790550232, -0.8126436471939087, -0.24715350568294525, 0.612754225730896, -0.029213042929768562, 0.8704379200935364, -1.5435433387756348, -0.5319311022758484, 1.4278826713562012, 0.20375922322273254, 0.38601019978523254, 0.358585387468338, 0.18713273108005524, -0.5309313535690308, 0.8152531385421753, 0.4455273747444153, -0.4079691469669342, 0.4312865734100342, 0.3925892114639282, -0.5779616236686707, 0.05578867346048355, -0.5027503371238708, 0.8540971875190735, -0.5499204993247986, 0.14435982704162598, -0.24213257431983948, -0.44239112734794617, 0.39704111218452454, 0.34389936923980713, -0.1405172049999237, 1.4039798974990845, -0.27772220969200134, -0.9734998941421509, 0.3679937422275543, -0.3888554275035858, 0.28838640451431274, -0.3865804672241211, -0.2682563066482544, -0.1658070683479309, -1.7307806015014648, -0.6778807044029236, 1.0292938947677612, -0.22631706297397614, -0.494422048330307, -0.253539502620697, -0.3457626402378082, -0.13735568523406982, 0.8303913474082947, 1.8590601682662964, 0.8836753368377686, 0.7678857445716858, 0.4190232455730438, 0.4259904623031616, -0.8298662304878235, -0.1959589272737503, 0.6784784197807312, 0.16611744463443756, -0.19348619878292084, -1.3000590801239014, -0.4495861530303955, 0.45364657044410706, 0.3940134644508362, -0.13891582190990448, 0.9884462356567383, 1.1014659404754639, 1.0400668382644653, -0.0814606323838234, -0.15852859616279602, 0.06109115108847618, -0.6261157989501953, 0.44565707445144653, 0.4539494514465332, -0.62858647108078, -0.5727785229682922, -0.776303231716156, -0.8851186633110046, 0.8995858430862427, -0.27570369839668274, -0.7957839965820312, -0.25722870230674744, 0.08610814064741135, 0.4460320472717285, 0.0833655446767807, -0.036875199526548386, 0.1762814074754715, 0.25504201650619507, -0.647951066493988, -1.1670480966567993, 0.06244033947587013, -0.1558995395898819, 0.3198939561843872, -0.8433205485343933, 0.5283116698265076, 1.2935073375701904, 0.1617438644170761, 0.19163596630096436, -0.014803527854382992, 0.3858414888381958, 0.677756130695343, 0.31415680050849915, -1.091539740562439, 0.531684398651123, -0.8594797849655151, -0.5341811180114746, -0.25043603777885437, 0.4217827022075653, -0.2516898214817047, -1.0910252332687378, -0.4199870228767395, 0.011005195789039135, -0.3259068429470062, 0.6704156398773193, -0.3070942759513855, 1.3262439966201782, 0.1473948210477829, -0.14440953731536865, 0.08446546643972397, -0.19047623872756958, -0.48186057806015015, -0.5853415131568909, -0.11170241981744766, -0.49240782856941223, -0.9521477818489075, 0.05707702413201332, -0.21891386806964874, -0.4951893389225006, -0.18596144020557404, -0.5164596438407898, 0.2826881408691406, -1.497707724571228, -1.2763041257858276, -1.1372311115264893, 0.4132683277130127, 1.2375129461288452, -0.9224740266799927, 0.4894968271255493, 0.43014001846313477, -1.3682646751403809, 0.05499469116330147, -0.06711218506097794, -0.9827180504798889, -0.18092823028564453, -0.924838662147522, 1.4780793190002441, -0.9014343619346619, 0.6556553244590759, 0.2980441451072693, 1.3454774618148804, -1.120638132095337, -1.842431902885437, -0.9029639959335327, -0.36962637305259705, 1.0488637685775757, 1.0595697164535522, -0.41333338618278503, 1.2000517845153809, 0.3599015176296234, -0.48564815521240234, -0.8370421528816223, -0.12402325123548508, -0.7591763138771057, 0.44860729575157166, 0.789513885974884, 0.16798092424869537, -0.38472020626068115, 1.2099775075912476, -0.5324991941452026, 0.9940276741981506, 0.031331971287727356, 0.6679506301879883, -0.9200452566146851, -0.49867162108421326, -0.2849622070789337, 0.2773045599460602, -0.9536186456680298, -1.1470097303390503, -0.10090498626232147, -0.8861194252967834, -1.0634578466415405, 1.2470704317092896, 1.1035629510879517, -0.5479912757873535, 0.1310001164674759, -0.6770874261856079, 0.3671620190143585, -0.8923549056053162, 0.7929168939590454, -0.9283008575439453, -0.0470409020781517, 0.4026390016078949, 0.06773342937231064, -0.09942418336868286, -1.2021887302398682, 0.20081593096256256, 0.4594348073005676, -0.5245171189308167, -0.3476109802722931, 0.9636313915252686, 0.8080378770828247, -0.7705492973327637, -0.28571921586990356, 1.1099170446395874, 0.8783771991729736, 0.21320894360542297, -0.705337643623352, 0.7901591062545776, 0.5861724615097046, 0.3129878044128418, -0.9307940602302551, -0.36018791794776917, -1.1209760904312134, 0.9177137613296509, 0.41355085372924805, 0.13973140716552734, -0.14094655215740204, -0.11885048449039459, -0.5923205018043518, 0.3694745898246765, 0.342490017414093, -0.5685296654701233, 0.021786432713270187, 1.628193974494934, -0.16507259011268616, -0.3246228098869324, 0.2918027341365814, 0.5067034959793091, 0.5825214385986328, -0.5712629556655884, 0.6723194718360901, 0.39855366945266724, -0.8360459804534912, 0.50290447473526, 0.6773145794868469, -0.03526173532009125, -0.07220043987035751, -0.16691230237483978, -1.0800882577896118, -0.33098188042640686, -0.02868313528597355, -0.19025729596614838, 0.6572365164756775, -0.9283124804496765, -0.8354736566543579, 1.0313005447387695, -0.37556618452072144, -0.19675278663635254, -0.5722238421440125, 0.009779762476682663, -0.8847149014472961, 0.37105870246887207, 0.6781578063964844, 0.18147726356983185, 1.6189844608306885, -0.14307865500450134, -0.16608552634716034, -1.5189443826675415, -0.47648128867149353, 0.7349095940589905, 0.20201356709003448, 0.22843116521835327, -0.2700583338737488, 1.1781704425811768, -0.3876841366291046, -1.2693678140640259, -0.14528900384902954, -0.5167185068130493, 0.14883796870708466, -0.572987973690033, -0.7897247076034546, -0.10140502452850342, 0.5660184621810913, 0.29235827922821045, -0.48797929286956787, -0.5625563263893127, -1.7147126197814941, 0.5320442318916321, -0.31151309609413147, 0.3729337453842163, -0.35652250051498413, 0.9696093201637268, -0.0668920949101448, -0.07653671503067017, -0.08064316213130951, -0.43285852670669556, 1.123918890953064, -0.5720177888870239, 0.7266137003898621, 0.12349144369363785, 0.43723466992378235, -0.43212392926216125, -0.7280764579772949, 0.37275636196136475, -0.38185712695121765, 0.43029531836509705, -0.16033531725406647, -1.0690382719039917, -0.31339526176452637, -1.309770107269287, 0.4128212630748749, 0.5913383960723877, 0.5064595341682434, -0.36832761764526367, 0.13710981607437134, -0.8765237331390381, -0.18461595475673676, 0.6345599293708801, -0.7691107392311096, 0.5831764936447144, 1.343164324760437, 1.502249002456665, 0.6881192326545715, 0.49273136258125305, -0.6696160435676575, 0.4615408182144165, -1.0049662590026855, 0.14923515915870667, -0.018035883083939552, -0.12130048125982285, -0.8436858057975769], [0.8588318824768066, 1.0719577074050903, -2.0251238346099854, -1.0220552682876587, 1.1646277904510498, 0.12213639914989471, 1.4130758047103882, 0.06611236929893494, 0.9158716201782227, -0.3448071777820587, -0.17520016431808472, -0.3821297883987427, 0.726627767086029, 0.8590417504310608, -0.07198189198970795, 0.7291536927223206, 0.6846271753311157, -0.9517124891281128, 0.5019204020500183, 0.5902108550071716, 0.38992246985435486, -0.23204723000526428, 0.5739514827728271, 0.3944345712661743, -0.6084487438201904, 0.7669993042945862, -0.8150810599327087, -0.5316598415374756, -0.6632155776023865, -0.10215741395950317, 0.6974100470542908, -1.2253828048706055, 0.2612220048904419, -0.24862140417099, -1.5401531457901, -0.3560502827167511, 1.9399590492248535, 1.0285067558288574, 0.7031362652778625, 0.3406246602535248, 1.729666829109192, 0.20370818674564362, -0.3599185645580292, -1.584710717201233, 0.24105161428451538, 0.06749449670314789, 0.33626633882522583, -0.1624317616224289, 0.4795183539390564, -1.130056619644165, 1.5810922384262085, -0.34812667965888977, 0.6842838525772095, 1.0093210935592651, 0.8135431408882141, -0.19195249676704407, 1.1801728010177612, -0.2373325526714325, 0.7142525315284729, -0.7618348002433777, 1.1906079053878784, -0.088904969394207, -0.7985698580741882, 1.26151704788208, -0.6431785821914673, -0.07249274104833603, -0.2455640286207199, -0.047071218490600586, -0.19868537783622742, -0.37415367364883423, 0.2944968044757843, 0.5231342911720276, -0.25887876749038696, 0.6207393407821655, -1.8717471361160278, 0.5694416165351868, 0.8103546500205994, 1.1597603559494019, -0.04166772961616516, 0.36431097984313965, -0.41039443016052246, -0.36796000599861145, 1.02031672000885, -0.5986936688423157, 0.37515050172805786, 0.2397618144750595, 0.9210869669914246, -0.5457926392555237, -0.1316242665052414, 1.0080902576446533, 0.5876140594482422, 0.04332964867353439, 0.07074723392724991, -0.6441951990127563, -0.24062305688858032, -0.42034152150154114, 0.6695768237113953, -0.19346663355827332, -1.2623250484466553, -0.26251283288002014, -0.5156214833259583, -0.7580682635307312, -0.4922489821910858, 0.3163069784641266, -0.30574721097946167, 1.3069884777069092, 0.2576638460159302, 0.2655509114265442, -0.5684645175933838, -0.3490019738674164, 0.1985219419002533, 0.3056921362876892, -0.5869193077087402, -0.8030363917350769, -0.739497184753418, 0.7230872511863708, 1.1682844161987305, -0.46241581439971924, 0.5349600315093994, 0.9796600341796875, -0.5583828687667847, 0.2119198590517044, 0.2787727415561676, 0.9307652115821838, 1.1265383958816528, 0.18141207098960876, -0.1720646172761917, 0.029733926057815552, 0.6274340748786926, 0.10977867990732193, 0.2521153390407562, -0.45787107944488525, 0.012913540005683899, 0.20017607510089874, -0.8059419989585876, 1.3537917137145996, 0.21820463240146637, -0.1555429846048355, 0.30521440505981445, 0.03472900390625, 0.8452278971672058, -0.1288466900587082, -0.5274577140808105, 0.10487629473209381, -0.46988916397094727, -0.3644162118434906, -0.1109343096613884, -0.33826306462287903, -1.0778250694274902, -0.3252844214439392, -1.5706652402877808, 0.19893062114715576, 0.031821757555007935, 0.10836251825094223, 0.11363396048545837, -0.13881225883960724, 0.23389926552772522, 0.07574817538261414, 0.2438134104013443, -0.5884215831756592, 0.5645676851272583, -0.0048178136348724365, -1.1902107000350952, 0.813519299030304, 0.0031006988137960434, -0.48890286684036255, 0.16509224474430084, 0.3543691039085388, 0.4278610348701477, 1.2319247722625732, -0.6191403269767761, -0.40229183435440063, 0.2822202444076538, 0.31157517433166504, 0.49727532267570496, -0.33293968439102173, 2.056816577911377, -1.303440809249878, -0.510711669921875, -0.5905082821846008, 0.4900359511375427, -0.5127477049827576, 0.0731523409485817, -0.266975075006485, 0.48262691497802734, -0.17339016497135162, 0.2680838108062744, -0.5329545736312866, -0.015995977446436882, -0.36247727274894714, -0.5134274959564209, 0.3869739770889282, -0.2887192964553833, 0.5359750390052795, -0.26482516527175903, -0.3473336100578308, 0.6103809475898743, -1.0938324928283691, -0.6551607847213745, -0.1713058352470398, -0.016392946243286133, -0.3007618486881256, -0.5898334980010986, 1.0526894330978394, -0.8422046899795532, 0.9377288222312927, -0.9135562181472778, 0.5783456563949585, -1.1254262924194336, -0.34864914417266846, 1.071101188659668, -0.558375358581543, -0.1177603155374527, 0.5344530940055847, -0.3268285393714905, -1.34169340133667, 0.18771518766880035, 0.96266770362854, -0.883945107460022, 0.5006462931632996, 0.5592195987701416, -0.18356147408485413, 0.7314007878303528, 0.5551068186759949, 0.6995137929916382, 0.22933131456375122, -1.0438752174377441, -0.835444450378418, -0.8249362111091614, 0.30055761337280273, -0.0965714156627655, -1.8586150407791138, 1.2401520013809204, 1.3151841163635254, -0.5742232203483582, 0.5282414555549622, -0.19194643199443817, 0.3104960024356842, 0.812086284160614, 0.9899424910545349, 0.26713547110557556, 0.7749127745628357, -0.3910108506679535, 0.4798433482646942, -0.6942225098609924, 0.2915780544281006, 0.5982215404510498, -0.30034583806991577, -0.161447674036026, 0.8813175559043884, 0.6070250868797302, -0.15805692970752716, 0.33280134201049805, -0.28853175044059753, 0.5871352553367615, -0.5940639972686768, -0.3350297212600708, 0.03664274886250496, -0.10723581165075302, 1.1752938032150269, 0.46660545468330383, -0.9381861686706543, 0.6438292860984802, 0.016739841550588608, 0.1816643625497818, -0.19064883887767792, -0.6363004446029663, -0.257347971200943, -0.640659749507904, -0.27051204442977905, -0.22000080347061157, -0.08929767459630966, 0.37252530455589294, 0.2223322093486786, -0.2869516909122467, -0.15471045672893524, -0.3464146852493286, -0.001181766390800476, -0.39169201254844666, 0.9474740624427795, -0.08976836502552032, -1.5581541061401367, -0.19581888616085052, 0.5349013805389404, 0.18718744814395905, 0.258587509393692, -0.33616429567337036, 0.6234713196754456, -0.04675016179680824, -0.09172050654888153, -0.12958180904388428, -0.13619881868362427, -0.5483307242393494, 0.20153971016407013, 0.34193867444992065, 0.3578732907772064, 0.7720755934715271, -0.37138575315475464, -0.8526932001113892, -0.34859782457351685, 1.2855738401412964, 1.0787309408187866, 0.6586858630180359, 1.378506064414978, 0.20387114584445953, -0.22067637741565704, 0.3939749598503113, -0.5427361726760864, -0.7944478988647461, -0.7566332221031189, -0.8270665407180786, -0.34321388602256775, -0.3094342052936554, 0.4761485755443573, -0.05125198885798454, 0.8922910094261169, -0.11619672924280167, 0.5875628590583801, 1.0759670734405518, -0.2023201733827591, -0.19791081547737122, 0.609900176525116, -0.1727408468723297, -0.6935747861862183, 0.24217629432678223, 0.19023609161376953, -0.829079806804657, -0.20323120057582855, 0.47646164894104004, 0.015011349692940712, 0.03778168186545372, 0.09975896030664444, -0.6444993615150452, -1.6725566387176514, -1.3804935216903687, -0.4448733627796173, 1.0273919105529785, 0.04905686154961586, 0.42590925097465515, -0.6866152882575989, 0.7780346274375916, 0.42364025115966797, 0.35919809341430664, -0.9748064875602722, 0.47630882263183594, -0.4569433033466339, -1.1051422357559204, -0.1345292329788208, 0.395327091217041, 0.6404218673706055, -0.20545107126235962, 0.3167746663093567, -0.3695406913757324, -0.32839372754096985, -0.05878908932209015, 0.4642305374145508, 0.5357310175895691, 0.5030724406242371, -0.13148994743824005, -0.3982159197330475, 0.7215049862861633, -0.5056158900260925, -0.3393506705760956, -1.6462411880493164, 0.906363844871521, 0.03770923987030983, 0.32693207263946533, -0.01837935671210289, -0.22086508572101593, 0.3547605574131012, 0.35136738419532776, 0.5026200413703918, 0.17513921856880188, 1.721121907234192, -0.2809222936630249, 0.2371589094400406, -0.41461580991744995, -0.10501326620578766, 0.20516690611839294, -0.7932171821594238, -0.24894988536834717, -0.009411133825778961, -1.133646845817566, -0.691892147064209, 1.425952434539795, -0.03685476630926132, -0.1819579303264618, -0.5998951196670532, -0.04884035885334015, 0.6441752910614014, 0.48958465456962585, 0.688271701335907, -0.6023455858230591, -0.12640391290187836, 0.27835944294929504, -0.2118242084980011, -0.15809261798858643, 0.05294468253850937, 0.2846011519432068, 0.5859981179237366, -0.8002840876579285, 0.02230820804834366, -0.64483243227005, 1.307326078414917, 0.18272732198238373, -0.38229599595069885, 0.15344387292861938, -0.8115668296813965, -0.1711987406015396, 0.17522487044334412, -0.28685876727104187, 0.44035428762435913, -0.6246872544288635, -0.5502816438674927, -0.5249782800674438, -0.13810138404369354, -0.10019678622484207, -0.3421293795108795, -0.35578519105911255, -0.056851062923669815, -0.5290843844413757, -0.10189054161310196, -0.4140397310256958, -0.08420296013355255, 0.7490975260734558, 0.8579192757606506, -0.00684964656829834, 0.5146265625953674, -0.3536683917045593, -1.0231642723083496, -0.009891491383314133, 0.5576176047325134, -0.26561689376831055, -0.5837342143058777, -0.21652698516845703, 0.1408603936433792, -0.25932860374450684, 0.27277812361717224, -0.4761374294757843, 0.6866739392280579, -0.3145446479320526, -0.2890351712703705, 0.1922566294670105, 1.339816689491272, 0.03930987790226936, 0.9792720079421997, 0.06997498869895935, -0.6517282724380493, -0.40305855870246887, 0.3096478283405304, -1.4419912099838257, 0.09197419881820679, 0.7068667411804199, 0.02283220738172531, 0.9654316902160645, -1.7656607627868652, -0.35070517659187317, 0.4037599563598633, -0.030214596539735794, 0.3319239020347595, 0.3820073902606964, -0.2972136437892914, -0.422534704208374, 0.9860090017318726, 0.3689587116241455, -0.6650641560554504, -0.13090285658836365, 0.19450095295906067, 0.10643154382705688, 0.05684264376759529, -0.5095613598823547, 1.383905053138733, -0.27176231145858765, 0.24290220439434052, 0.17203044891357422, -0.3814873695373535, 0.46158045530319214, 0.7759223580360413, -0.09386099874973297, 1.451780915260315, -0.9296383857727051, -0.8493688702583313, 0.2762361764907837, -0.5890810489654541, 0.19957296550273895, -0.3437731862068176, -0.3352104425430298, -0.5127277970314026, -0.7371044754981995, -0.2747076153755188, 1.1170806884765625, -0.12806600332260132, -0.017691753804683685, -0.047271259129047394, -0.5731841325759888, -0.11374122649431229, 0.8863969445228577, 1.4718284606933594, 0.14039751887321472, -0.2427273988723755, 0.7766781449317932, 1.2680436372756958, -0.7368313074111938, -0.19558438658714294, -0.3028883934020996, 0.05274440720677376, -0.5355951189994812, -1.5445610284805298, -0.7684516310691833, 0.2525262236595154, 0.6436886787414551, -0.17056283354759216, -0.253912091255188, 0.576489269733429, 0.8657644391059875, -0.18640068173408508, 0.06477785855531693, 0.4932681620121002, -0.7214034795761108, 0.40666812658309937, 0.2459626942873001, -0.17435799539089203, -0.6103155016899109, -0.8270050883293152, -0.9064547419548035, 0.18812650442123413, -0.5816874504089355, -1.1768202781677246, 0.0011078286916017532, -0.08536885678768158, 0.39140796661376953, -0.04979406297206879, -0.4657326936721802, 0.6856157183647156, 0.6431237459182739, 0.003650170750916004, -0.7170840501785278, 0.7142577171325684, 0.008767570368945599, 0.3469112515449524, -0.42109930515289307, 0.3620447516441345, 0.9058926105499268, -0.191959947347641, 0.2285149097442627, -0.5854737758636475, 0.5103054046630859, 0.7922422289848328, 0.4066230356693268, -1.1794558763504028, 0.034258004277944565, -0.1067483052611351, -0.5899131298065186, 0.17657896876335144, 0.10632001608610153, -0.4429784417152405, -0.12180624157190323, -0.15744026005268097, -0.45271188020706177, -0.8793914914131165, 0.29582613706588745, -0.4356166124343872, 0.8388339281082153, -0.012876570224761963, -0.4267703592777252, 0.041280679404735565, -0.21674618124961853, -0.24534650146961212, -0.3201735019683838, 0.08576040714979172, -0.1766931414604187, -1.0954270362854004, 0.6606294512748718, 0.07431303709745407, -0.4476173520088196, -0.013441860675811768, -1.0785852670669556, 0.7606942057609558, -1.4775969982147217, -1.3122098445892334, -1.057791829109192, 0.9066387414932251, 1.0718128681182861, -0.18816500902175903, 0.8238610029220581, 0.7885412573814392, -1.324571967124939, -0.023780282586812973, 0.18083499372005463, -0.9104081392288208, -0.4506538212299347, -0.49535495042800903, 0.4376503527164459, -0.24957901239395142, 0.6072718501091003, -0.521861732006073, 1.1768075227737427, -1.2691309452056885, -1.4393950700759888, -0.9613201022148132, -0.15589673817157745, 0.37276187539100647, 0.9793145656585693, -0.5035001039505005, 1.0323508977890015, 0.6625208258628845, -0.016992252320051193, -0.6164945363998413, -0.2993852496147156, -0.15439429879188538, 0.5078189373016357, 0.6636846661567688, 0.6090388298034668, 0.31445133686065674, 0.9551281929016113, -0.6572355031967163, 0.8222832679748535, 0.28915679454803467, 0.44106072187423706, -0.9128365516662598, -0.29698967933654785, 0.6264482736587524, 0.9714727997779846, -1.0744099617004395, -0.3779211938381195, -0.9813655018806458, -0.6196754574775696, -0.9995502233505249, 1.0204533338546753, 1.1801141500473022, -0.7283905744552612, 0.28973254561424255, -0.6551035642623901, -0.0726548582315445, -0.2103721797466278, 0.3796294033527374, -0.9586167335510254, 0.22884111106395721, -0.09707924723625183, -0.04348868876695633, -0.39670392870903015, -1.6829195022583008, 0.08863005042076111, 0.10715323686599731, -0.022541414946317673, -0.8283307552337646, 1.1707843542099, 0.8235913515090942, -0.13780730962753296, -0.2178277224302292, 2.2372491359710693, 1.7029623985290527, -0.013074973598122597, -1.0299750566482544, 0.7048029899597168, 0.3000122606754303, 0.1707310527563095, -1.091233491897583, 0.28669223189353943, -0.9394335746765137, 0.19288921356201172, 0.38690903782844543, -0.4267233610153198, -0.5082648396492004, 0.22141779959201813, -0.23584763705730438, 0.1321418136358261, 0.3205595910549164, -0.982404351234436, -0.03278924524784088, 0.7957881093025208, -0.3594902455806732, -0.4873311519622803, 0.4314613938331604, 1.5648165941238403, 0.06088164448738098, -0.3885612487792969, 0.16136641800403595, 0.06876087933778763, -0.8873611092567444, 1.3234679698944092, 0.3578563928604126, -0.06799840182065964, -0.2082430124282837, -0.867101788520813, -0.9204672574996948, -0.36607661843299866, -0.7475968599319458, -1.1925073862075806, -0.03221806883811951, -1.193254828453064, -0.4941411018371582, 1.05141019821167, -0.23029722273349762, -0.4922644793987274, -0.12465691566467285, 0.48183977603912354, -0.07609894871711731, 0.16666147112846375, 0.03981902077794075, -0.25876733660697937, 1.1542456150054932, 0.661457896232605, -0.5945484042167664, -1.5913565158843994, -0.8813382387161255, 0.16524383425712585, -0.6215692758560181, -0.10933215916156769, 0.5632648468017578, 0.5834481716156006, 0.06038415804505348, -0.30900079011917114, 0.046032823622226715, 0.3819390535354614, -0.49152979254722595, -0.054850023239851, -0.7715388536453247, 0.21494421362876892, 0.7312945127487183, 0.6820802092552185, -0.10115586966276169, -0.6242820620536804, -0.5861627459526062, 0.1893758326768875, 0.013310089707374573, 0.6263372898101807, -0.3988102078437805, 1.3411613702774048, -0.2168695032596588, 0.16579675674438477, -0.5413321852684021, -0.128316268324852, 0.4690462052822113, -0.19675490260124207, 0.7847834825515747, 0.3235207796096802, 0.23713725805282593, -0.8381333947181702, -0.8738950490951538, 0.3216455280780792, -0.6687549948692322, 0.35561132431030273, 0.10688559710979462, -0.8675569891929626, -0.5219964981079102, -0.5351666212081909, 0.4360825717449188, 0.8529530167579651, 0.3558865189552307, -0.6655393242835999, 0.17621783912181854, -0.8917481899261475, 0.4216930568218231, -0.05420718342065811, -0.1527712494134903, 0.3887079954147339, 0.49277225136756897, 1.2335540056228638, 0.45056629180908203, 0.6433104276657104, -0.8450483679771423, 0.12743453681468964, -0.07445034384727478, 0.042772673070430756, -0.531241238117218, 0.11435239017009735, -0.3511260449886322], [0.11446772515773773, 1.63265860080719, -2.0411860942840576, 0.031493350863456726, 1.8134243488311768, 0.49031469225883484, 1.3437947034835815, -0.5061196088790894, 0.34196990728378296, -1.0055789947509766, 0.3237752616405487, -0.5814164280891418, 0.854061484336853, 1.2221428155899048, -0.37289419770240784, -0.1150086522102356, 0.5343759059906006, -1.2644469738006592, 0.6838235855102539, 0.9979326725006104, 0.22726549208164215, -0.1893838793039322, 0.22548164427280426, 0.41950374841690063, -0.07350281625986099, 0.1907246857881546, -1.495455026626587, -0.687056303024292, -0.41669028997421265, -0.9145066142082214, 1.2954801321029663, -1.3584383726119995, 0.24393677711486816, 0.1768685281276703, -1.3157072067260742, -0.3686925172805786, 1.0655053853988647, 0.5522981882095337, -0.03714250400662422, 0.144415482878685, 1.5101628303527832, -0.48069533705711365, -0.03776850923895836, -1.7308045625686646, 0.3221139907836914, -0.08031290769577026, 0.6362156867980957, -1.313720464706421, 0.06686154007911682, -1.2364120483398438, 0.8163340091705322, -0.2600681781768799, 0.7197420001029968, 1.0877493619918823, 0.43178537487983704, 0.744070291519165, 0.1838008165359497, 0.0847567468881607, 1.5663528442382812, -0.2754487991333008, 0.5056770443916321, 0.006710566580295563, 0.22920215129852295, 0.3042010962963104, 0.02884850837290287, -0.3017546832561493, 0.45401978492736816, 0.8196654319763184, 0.13907645642757416, -0.027217447757720947, 0.5956951379776001, -0.047755759209394455, -0.5522996187210083, 0.2898346781730652, -1.2145076990127563, 0.20029084384441376, 0.964874804019928, 1.2054716348648071, -0.07875148952007294, 0.49747979640960693, -0.5735633373260498, -0.008556051179766655, 0.29669055342674255, -0.11199480295181274, 0.6884316205978394, 0.3057924211025238, -0.25190871953964233, -0.5252995491027832, -0.30370327830314636, 1.8266063928604126, 0.634698212146759, 0.1351061761379242, 0.6868492364883423, -0.8527026176452637, -0.3549535870552063, -0.4294489920139313, 0.29012593626976013, -0.854032576084137, -0.40768393874168396, -0.5340694785118103, -0.22426250576972961, -0.6542455554008484, -0.03695366531610489, 0.12729525566101074, 0.09655740857124329, 1.1188316345214844, -0.013775690458714962, 0.2541796565055847, -0.6942663192749023, 0.08084971457719803, -0.4651780128479004, 0.16156983375549316, -0.8298458456993103, -1.1345003843307495, -0.5583370327949524, 1.0027426481246948, 1.4403821229934692, -0.10911627858877182, 0.7567745447158813, 0.7961340546607971, -0.6378082633018494, 0.4095771908760071, -0.3180805444717407, 0.5648389458656311, 0.7348175048828125, 0.2497551441192627, -0.07990318536758423, -0.7626159191131592, 0.4309500753879547, -0.2223157435655594, -0.34446093440055847, -0.10573010891675949, -0.15960411727428436, 0.4325125515460968, -0.4665670394897461, 0.3880898058414459, -0.3260633945465088, -0.1370394080877304, 0.34303197264671326, -0.2910660207271576, 0.49640709161758423, -0.06481540203094482, -0.36201685667037964, 0.2376919537782669, 0.027425674721598625, -0.5876663327217102, 0.5408463478088379, 0.5930455923080444, -0.41171780228614807, 0.3281978368759155, -1.3335920572280884, -0.239765465259552, 0.7004368901252747, 0.20647810399532318, -0.12409854680299759, 0.17290471494197845, 0.28566959500312805, 0.4872925579547882, 0.41143491864204407, -0.19019868969917297, 0.7753404974937439, 0.09407471120357513, -0.9903281331062317, 0.8168940544128418, 0.5204144716262817, 0.3562823235988617, 0.7010427713394165, 0.03523767367005348, 0.13474680483341217, 0.7094715237617493, -0.9244902729988098, -0.6344186067581177, 0.3728138506412506, 0.6861147880554199, 0.6688384413719177, -0.4080185890197754, 2.126286745071411, -1.6858397722244263, -1.016348123550415, -0.982679009437561, 0.7358802556991577, -0.4268794655799866, 0.07518696039915085, 0.14599771797657013, 1.0042479038238525, -0.15040454268455505, 0.26621347665786743, -0.00014240900054574013, -0.40234988927841187, -1.1599152088165283, -1.342353105545044, 0.11158576607704163, -1.2907923460006714, 0.31653037667274475, -0.10745054483413696, -0.6287886500358582, 0.6036970615386963, -0.6617522835731506, -1.4024889469146729, 0.27090227603912354, -0.6137825846672058, -0.26520344614982605, -0.978808581829071, -0.14829319715499878, -0.16490858793258667, 1.0490641593933105, -1.304372787475586, 0.7421761155128479, -0.3731512129306793, 0.16452419757843018, 1.2207531929016113, -0.18430769443511963, -0.7416333556175232, 0.6674588322639465, -0.4892394542694092, -1.4885071516036987, 1.2435563802719116, 0.8140624165534973, -0.12831144034862518, 0.42089661955833435, 0.1916353851556778, 0.24261370301246643, -0.21019135415554047, 0.3373839259147644, 0.7713744640350342, -0.12246813625097275, -0.8330934047698975, -1.4211667776107788, -1.17068612575531, 0.25113946199417114, -0.5994123816490173, -1.105067253112793, 1.1237846612930298, 0.4413747489452362, -0.4835388660430908, 0.13388089835643768, -0.1307942122220993, -0.10206063836812973, 0.6111341714859009, 0.927824079990387, 0.5034804940223694, 0.33785292506217957, 0.13688525557518005, -0.20758508145809174, -0.12327796965837479, -0.09877090156078339, 0.6612262725830078, -0.5844650268554688, -0.0636526346206665, 1.1348977088928223, 0.6542518138885498, -0.44780465960502625, 0.04729935899376869, 0.0936715304851532, -0.30488115549087524, -1.2362316846847534, -0.3553178906440735, 0.18987762928009033, -0.7180060148239136, 1.1458734273910522, 0.6355894207954407, -0.5970994830131531, -0.6777869462966919, -0.3235119879245758, -0.8657785058021545, -0.691440224647522, -1.1108982563018799, -0.9183226823806763, -0.4850693345069885, -0.1990346759557724, -0.057582154870033264, -0.03545220568776131, -0.14343085885047913, 0.6020548343658447, -0.7858663201332092, -0.5748997926712036, -0.26481300592422485, 0.10236003994941711, 0.4018113911151886, 0.7018381953239441, -0.04626893624663353, -0.9260547161102295, -1.1984541416168213, 0.417275071144104, 1.1797807216644287, 0.32121947407722473, 0.10835380852222443, 0.21425631642341614, 0.1991460770368576, -0.03488462418317795, 0.26683181524276733, 0.16834433376789093, 0.4859170913696289, 0.4200142025947571, 0.0932111144065857, 0.49308860301971436, 1.030142903327942, -1.206809639930725, -0.8220608234405518, -0.7614068984985352, 1.1279606819152832, 0.9463540315628052, 1.089896321296692, 1.0824397802352905, -0.22173967957496643, 0.2937825918197632, -0.1296035498380661, -0.32308685779571533, -0.6749129295349121, -0.3621327579021454, -0.5609769225120544, -0.4250071048736572, -0.6845905184745789, -0.47810736298561096, -0.3148047924041748, 0.20326003432273865, -0.40947967767715454, 1.107614517211914, 1.2340950965881348, -0.6341788172721863, -1.4176781177520752, -0.7711868286132812, 0.04754703491926193, -1.2441976070404053, 0.6186754107475281, 0.7202721834182739, -0.9586371779441833, -0.5789233446121216, -0.019600246101617813, 0.012520821765065193, 0.9439801573753357, 0.2848254442214966, -0.48933470249176025, -1.3176764249801636, -0.6239752173423767, -0.32181233167648315, 1.141434669494629, 0.1424170285463333, 0.3556050658226013, -0.7794485092163086, -0.32108065485954285, 0.268099844455719, -0.13335277140140533, -0.7266116142272949, 0.44229093194007874, -0.24803996086120605, -0.4029207229614258, -0.4666357636451721, 0.20317977666854858, 0.5314826369285583, -0.5930960178375244, -0.01640941947698593, -0.23457327485084534, 0.17202366888523102, -0.2893085777759552, 0.9783207178115845, 0.2641619145870209, 0.3037118911743164, 0.19487923383712769, 0.14297491312026978, 0.8258881568908691, -0.46278974413871765, -0.2362128049135208, -1.124078631401062, 1.0085258483886719, 0.46362146735191345, 0.3315049111843109, -0.3390776813030243, 0.20103690028190613, 0.1221281960606575, -0.639591634273529, 0.5612014532089233, 0.49672967195510864, 1.520678162574768, 0.9731156826019287, -0.3989656865596771, -0.5311682820320129, 0.04635223001241684, -0.45731326937675476, -1.1897752285003662, -0.01971817947924137, 0.15202055871486664, -0.3727174401283264, -1.609989881515503, 1.2853126525878906, 0.8671234250068665, 0.12532873451709747, -0.6736254692077637, -0.17589354515075684, 1.5498671531677246, 0.37775564193725586, 0.205934539437294, -0.8005644083023071, 0.5666945576667786, -0.47071781754493713, -0.7362379431724548, -0.3806869089603424, -0.0059099383652210236, -0.0003462759777903557, 0.511184573173523, -1.1192846298217773, -0.029481712728738785, -0.5504505038261414, -0.3738972544670105, 0.7694682478904724, -0.48677507042884827, 0.31951674818992615, -0.6550431847572327, -0.19551508128643036, -0.16553884744644165, 0.5425372123718262, 1.6479547023773193, -1.1590442657470703, -0.3983924686908722, -0.293692409992218, -0.12011252343654633, -0.07184609025716782, -0.4960137605667114, -0.5194110870361328, 0.29620423913002014, -0.6629039645195007, 0.1763228327035904, -0.1520373821258545, 0.189182311296463, 1.6923489570617676, 0.04580913111567497, 0.20586726069450378, 0.5588030815124512, 0.06617842614650726, -0.9108847379684448, 0.14213207364082336, 0.019512172788381577, 0.3252200186252594, -0.009734252467751503, -0.20771469175815582, 0.4438144266605377, -0.38095417618751526, 0.5722604393959045, 0.39163199067115784, 0.7216596603393555, -0.25641047954559326, 0.641125500202179, -0.023699309676885605, 0.16669854521751404, 1.4150621891021729, 1.5428624153137207, 0.15461795032024384, -0.3907003104686737, -1.0261573791503906, 0.6493791341781616, -0.6675726175308228, 0.3136880695819855, 0.860328197479248, 0.26690763235092163, 0.6031944751739502, -1.7435206174850464, -0.6409996747970581, 0.6242554187774658, 0.0804014503955841, 1.297184944152832, 0.19083476066589355, -0.15749257802963257, -0.06435760110616684, 0.4843265414237976, 0.6358231902122498, -0.26414674520492554, 0.7522579431533813, 0.27723929286003113, -0.2749011516571045, 0.08831939101219177, -0.3469620943069458, 0.21880902349948883, -0.508817732334137, -0.0705493614077568, -0.06744157522916794, 0.0213988795876503, 0.8525698184967041, 0.6478012204170227, 0.5233592391014099, 0.41167640686035156, -0.38111189007759094, -0.8052688241004944, 0.02131865732371807, -0.32759419083595276, 0.08430690318346024, 0.07877404242753983, -1.0352171659469604, -0.3334902226924896, -1.3935900926589966, -0.8730053305625916, 0.17396701872348785, -0.8478536009788513, -0.6603281497955322, -0.5426884293556213, -0.7341434955596924, -0.2653772234916687, 0.9010605216026306, 1.0280333757400513, 0.37556999921798706, 0.3690427839756012, 0.5512044429779053, 0.13192234933376312, -0.8574618697166443, 0.2280653417110443, 0.30753421783447266, -0.14721424877643585, -0.4299719035625458, -1.3069002628326416, -0.7188036441802979, 0.2558039128780365, 0.4260801374912262, -0.2241630107164383, 0.6632714867591858, 1.3788318634033203, 1.270896553993225, -0.2495185136795044, -0.09487585723400116, 0.3839913308620453, -0.4211578667163849, 0.6936172246932983, 0.632631778717041, -0.6860462427139282, -0.1077507883310318, 0.30655336380004883, -1.0439294576644897, 1.1078274250030518, -0.19797591865062714, -1.0687764883041382, 0.22167891263961792, 0.2419148087501526, -0.04509814456105232, 0.5354444980621338, -0.4137958884239197, 0.3343101441860199, 0.23117586970329285, -0.11800722777843475, -1.130568265914917, -0.2641221284866333, 0.5697092413902283, 0.07798164337873459, -0.4695747494697571, 0.7414573431015015, 0.6164044737815857, -0.2126791775226593, 0.7383228540420532, 0.2840222418308258, 0.15694652497768402, 0.5144547820091248, 0.5021653771400452, -1.081882357597351, 0.041313089430332184, -0.49546533823013306, -0.7873474955558777, -0.2156401425600052, 0.08307992666959763, 0.3809097111225128, -0.9587209224700928, -0.526134192943573, -0.3247711658477783, -0.45841291546821594, -0.15519700944423676, -0.8657130599021912, 0.7448051571846008, 0.44624048471450806, 0.021491024643182755, 0.28678271174430847, -1.0354100465774536, -0.810796320438385, -0.1701941341161728, -0.7404114603996277, 0.726373016834259, -0.8673122525215149, 0.27075883746147156, -0.02802363783121109, 0.08345851302146912, -0.3954109251499176, -0.5591763854026794, 0.5740150213241577, -1.2855857610702515, -0.8324693441390991, -0.5731604695320129, 0.007877444848418236, 0.9213097095489502, -0.8256632685661316, 1.1107314825057983, 0.5467773079872131, -1.5559909343719482, 0.43564969301223755, -0.18329790234565735, -1.4267699718475342, -0.2781812250614166, -1.4049502611160278, 1.40092134475708, -0.5971283316612244, -0.00482454476878047, 0.13392852246761322, 1.6611145734786987, -0.8797390460968018, -1.1333626508712769, -0.37842661142349243, -0.358560711145401, 1.071660041809082, 1.1548385620117188, -0.4988894462585449, 1.2141122817993164, 0.08917441219091415, -0.3064649999141693, -0.4592247009277344, 0.21499688923358917, -0.5800039172172546, 0.38634616136550903, 0.2318653166294098, 0.06730826944112778, -0.17013375461101532, 1.0140633583068848, -0.1432199329137802, 0.7545623779296875, 0.009514624252915382, 1.080708622932434, -0.5211232304573059, -0.5340326428413391, 0.008818109519779682, 0.3119387626647949, -1.178428292274475, -0.5022624135017395, -0.2335921972990036, -0.9999534487724304, -0.7619879841804504, 0.6571395397186279, 1.097880244255066, -0.35105010867118835, 0.25702860951423645, -0.25584515929222107, 0.8213282823562622, -0.7458305954933167, 0.631214439868927, 0.531309962272644, -0.10752102732658386, 0.09431636333465576, -0.568928599357605, -0.05637391656637192, -1.4391533136367798, -0.15536460280418396, 0.5472769737243652, -0.17872996628284454, -0.24170881509780884, 0.7234249711036682, 0.3998924791812897, -0.4243932068347931, -0.5740950703620911, 1.651931643486023, 1.3276292085647583, -0.13922461867332458, -0.46948882937431335, 0.9453451633453369, 0.030317891389131546, 0.8744450807571411, -0.3757877051830292, 0.016763661056756973, -0.5592965483665466, 0.43582984805107117, 0.7699761986732483, 0.0336279422044754, -0.6546655297279358, 0.10469686985015869, -0.6339534521102905, 0.8982338905334473, 0.5922171473503113, -0.45421499013900757, -0.19007925689220428, 1.5000468492507935, -0.43298155069351196, -0.4242604076862335, 0.44633105397224426, 0.19927068054676056, 0.448905348777771, -0.19629596173763275, -0.03258476033806801, 1.251602292060852, -1.092937707901001, 0.4214901626110077, 0.6680797934532166, -0.12876176834106445, 0.3436548113822937, -0.7947117686271667, -1.57957124710083, -0.4925706386566162, -0.4079980254173279, -0.4462454617023468, 0.7647460699081421, -0.6615257859230042, -0.5812403559684753, 0.7168992161750793, 0.1806548535823822, -0.1826627105474472, -0.9516343474388123, 0.3637877106666565, -0.31133580207824707, 0.28283947706222534, 0.48500698804855347, -0.17569701373577118, 1.3068355321884155, 0.1851118803024292, -0.22043758630752563, -0.22406478226184845, -0.22280332446098328, 0.7057226896286011, 0.059098780155181885, -0.62946617603302, -0.4894404411315918, 0.777507483959198, 0.425958514213562, -0.5833439826965332, 0.671312153339386, -0.26086804270744324, 0.09443095326423645, -0.02890205755829811, -0.3137478828430176, 0.2906382381916046, 0.4919339418411255, 0.26234835386276245, -0.905741810798645, -0.5935152769088745, -0.970096230506897, 0.7583373785018921, -0.8173289895057678, 0.9240866303443909, -0.05109584331512451, 0.6680425405502319, 0.5392980575561523, -0.4643685221672058, -0.33830252289772034, -0.886146605014801, 0.5036368370056152, -0.35890674591064453, 0.3307921290397644, 0.13907557725906372, -0.2895243167877197, 0.22955924272537231, -0.7704201340675354, 0.42259326577186584, -0.23850584030151367, 0.516524612903595, 0.4859950840473175, -1.5653398036956787, -1.3630590438842773, -1.056212067604065, 1.1183074712753296, 1.1622318029403687, -0.24350138008594513, -0.246591717004776, 0.10332810133695602, -1.3588882684707642, 0.41027477383613586, 0.5334830284118652, 0.42754673957824707, 0.36657652258872986, 1.5635261535644531, 1.255340576171875, 0.10020219534635544, 0.47151443362236023, -0.24494697153568268, 0.7594771385192871, -1.1724969148635864, -0.05142250657081604, -0.7790200114250183, 0.45266640186309814, 0.016849011182785034], [0.08579034358263016, 0.9665300250053406, -2.1491470336914062, -0.5810498595237732, 1.3067703247070312, 0.539298951625824, 1.1702648401260376, -0.017355559393763542, 0.8249069452285767, -0.4825347661972046, -0.5966542363166809, -0.9854111671447754, 0.5771690607070923, 0.731289803981781, -0.5065193772315979, -0.2661239802837372, 1.1184078454971313, -0.8683478236198425, 0.8224180340766907, 0.271375447511673, -0.3293851912021637, -0.19057132303714752, -0.43109628558158875, 0.06661110371351242, -0.29216277599334717, -0.465059757232666, -1.2803205251693726, -0.3841879963874817, -1.1496864557266235, -0.5220039486885071, 1.1929651498794556, -0.948613703250885, 0.30670905113220215, 0.3062337636947632, -1.6410446166992188, -0.5600395798683167, 1.7316889762878418, 0.5783774256706238, 0.11701834946870804, 0.8721492886543274, 2.4797756671905518, 0.023067647591233253, 0.037936218082904816, -1.8381694555282593, -0.6488716006278992, 0.15645810961723328, 0.0642128512263298, -1.0515917539596558, 0.4902423918247223, -0.7940418124198914, 0.6500745415687561, -0.7134028673171997, 1.13283371925354, 1.6368635892868042, 0.7049881219863892, -0.2239999622106552, 0.4644470512866974, 0.4425335228443146, 0.865878701210022, 0.23888429999351501, 1.056510329246521, -0.5619534850120544, -0.29550111293792725, 0.7356494069099426, 0.015123276039958, -0.37358415126800537, -0.03890429437160492, 0.6389908790588379, -0.1256668120622635, -0.2969449460506439, 0.45405083894729614, -0.2067941427230835, -0.6223843097686768, 0.7631540894508362, -1.4947973489761353, 0.5088925957679749, 0.3017628490924835, 0.3704730272293091, 0.8604408502578735, 0.6049821376800537, -1.0351139307022095, 0.16303491592407227, 0.6401922106742859, -0.03798457607626915, -0.21029065549373627, 0.5821861624717712, -0.06799696385860443, -0.6592839360237122, 0.16316597163677216, 2.3369836807250977, 0.7004664540290833, 0.15755465626716614, 0.07894367724657059, -0.4429708421230316, -0.14053428173065186, 0.1690077930688858, 0.8590643405914307, -0.7331341505050659, -0.39420175552368164, -0.6681625247001648, -0.5514360666275024, -0.771726131439209, -0.1204596608877182, 0.4314013123512268, 0.06038577854633331, 0.9751138687133789, -0.07770611345767975, 0.20138953626155853, -0.19610577821731567, 0.10710005462169647, -1.108232855796814, -0.042906586080789566, -0.5377907156944275, -0.6975600719451904, -0.0970843955874443, 0.8153162002563477, 0.8345158696174622, 0.06401004642248154, 0.4783867299556732, 0.07016635686159134, 0.03446877747774124, 0.559786856174469, -0.1536828875541687, 0.6594626903533936, 0.30331873893737793, 0.5469632148742676, -0.9699798226356506, -1.0225714445114136, 0.3289145231246948, -0.22429867088794708, -0.0907701924443245, -0.11850001662969589, 0.2037273496389389, 1.225923776626587, -0.7129644155502319, 0.948981761932373, -0.640455961227417, -0.06082915887236595, -0.0834958478808403, -0.13282667100429535, 1.019860863685608, -0.2488284707069397, -0.2661289870738983, -0.19913971424102783, 0.6678711175918579, -0.694856584072113, 0.4695320725440979, 0.029842879623174667, -0.5512135028839111, -0.03802022337913513, -0.6561106443405151, 0.224402517080307, 0.3880283236503601, 0.1922176480293274, 0.22148174047470093, -0.019782787188887596, 0.09393949806690216, 0.05313533917069435, 0.41370972990989685, 0.4246908128261566, 0.4888468086719513, 0.4495764672756195, -0.5276788473129272, 1.1095024347305298, 0.739571750164032, 0.19918948411941528, 0.8443018794059753, 0.7247159481048584, 0.1330581158399582, 1.413939118385315, -0.27983176708221436, -0.9662197232246399, 0.41188547015190125, 0.34605738520622253, 0.6013336181640625, -0.6692747473716736, 1.844544529914856, -0.8732333779335022, -0.5090940594673157, -1.1684138774871826, 0.9133305549621582, 0.03141921013593674, 0.11190550774335861, -0.3284088373184204, 0.7074161767959595, -0.2972765862941742, -0.05524106323719025, -0.7415556907653809, 0.23194491863250732, -1.1243826150894165, -0.4994381070137024, -0.6284775137901306, -1.4504283666610718, -0.07128500938415527, -0.5892522931098938, -0.7426091432571411, 0.8131275773048401, -0.9544240832328796, -1.1601072549819946, 0.2933274805545807, -0.3384231925010681, -0.45560309290885925, -0.33326736092567444, 0.7152534127235413, -0.7276598811149597, 0.8681315183639526, -0.8870388865470886, 0.49713534116744995, -0.11452344059944153, -0.27711641788482666, 0.8278810381889343, -0.3062160909175873, -0.20228102803230286, 1.0633715391159058, -0.1904783695936203, -0.5757988691329956, 1.0109176635742188, 0.46705061197280884, -0.08081292361021042, 0.36254626512527466, -0.030711418017745018, 0.3459817171096802, 0.7705442905426025, 0.35953572392463684, 0.07590539008378983, -0.28996050357818604, -0.9433136582374573, -1.3290232419967651, -1.0051512718200684, 0.414584219455719, -0.540469765663147, -2.0575082302093506, 1.2242578268051147, 0.8175100684165955, -0.6199678182601929, -0.6275109648704529, -0.02118389680981636, 0.7150399684906006, 0.15427151322364807, 0.8287249207496643, 0.057367537170648575, 0.5189434289932251, 0.1416071355342865, -0.5583548545837402, -0.7357069849967957, 0.15110306441783905, 0.5445865392684937, -0.5474560856819153, 0.433172345161438, 0.5074397921562195, -0.05507723242044449, 0.3542350232601166, 0.7056486010551453, 0.18203632533550262, -0.2989438474178314, -0.9268969297409058, -0.36772680282592773, 0.6842559576034546, -0.21207216382026672, 1.3189027309417725, 1.1932108402252197, -0.9367966651916504, -0.709907054901123, 0.16757287085056305, -0.28303512930870056, -0.26441362500190735, -1.3030351400375366, -0.42257216572761536, 0.03667629510164261, 0.04067318141460419, -0.13231521844863892, 0.2871435582637787, -0.10008101910352707, 1.033485770225525, 0.019285596907138824, -0.040799565613269806, -0.617175281047821, 0.4059526026248932, 0.11194990575313568, 0.16940493881702423, 0.10008465498685837, -0.9902899265289307, -0.4117080271244049, 0.3133949637413025, 0.8167935609817505, 0.7899166345596313, -0.4536917507648468, 0.558122456073761, 0.39988842606544495, -0.12908323109149933, 0.4662003219127655, 1.001655101776123, -0.2686704099178314, 0.4555724859237671, -0.21180620789527893, 0.806713342666626, 0.9751613736152649, -1.2325108051300049, -1.0475107431411743, -0.9248031377792358, 0.5983667969703674, 1.0611605644226074, 0.9045275449752808, 1.4573036432266235, -0.023890655487775803, -0.7002729773521423, -0.7230091691017151, -0.5293029546737671, -0.8859498500823975, -0.241961270570755, -0.7350337505340576, -1.0046385526657104, -0.6778113842010498, -0.5091015100479126, -0.006288726348429918, 0.25173136591911316, -0.26435384154319763, 1.1620627641677856, 0.6465399265289307, 0.3721121549606323, -0.5289272665977478, 0.07085572928190231, 0.2760350704193115, -1.2972233295440674, 0.19850848615169525, 0.9621601700782776, -0.8490322232246399, -0.3915911614894867, -0.0206944327801466, -0.05029755085706711, 0.7479310631752014, -0.4954342544078827, 0.22523143887519836, -1.5504463911056519, -0.3395530879497528, 0.14728546142578125, 0.8379913568496704, 0.20261889696121216, -0.25890210270881653, -0.7734131217002869, 0.25274422764778137, 0.16320788860321045, -0.15544959902763367, -0.6108534932136536, 0.8814493417739868, -0.5494003295898438, -0.28337562084198, -0.541849672794342, 0.11537420749664307, 0.5434513092041016, -0.16416694223880768, 0.16318348050117493, -0.36997297406196594, -0.24775981903076172, -0.40208524465560913, 0.14940737187862396, 0.06345774978399277, -0.11518843472003937, 0.39234280586242676, 0.05576065927743912, 1.1913444995880127, -0.04052836820483208, -0.08387491106987, -1.583003044128418, 0.4829525649547577, 0.3812173008918762, 1.0229098796844482, -0.024857869371771812, 0.3209083080291748, 0.13207761943340302, -0.1499396115541458, 0.5431987047195435, -0.004297796171158552, 1.5271978378295898, 0.019870903342962265, -0.2818334698677063, -0.9566137194633484, -0.8414059281349182, 0.029222754761576653, -0.2561110854148865, 0.23607885837554932, -0.09373629093170166, -0.2983900010585785, -1.3037428855895996, 1.1062270402908325, 0.9160212874412537, -0.2996225655078888, -0.48621103167533875, -0.16980652511119843, 0.3861815631389618, 0.006133965216577053, 0.6798221468925476, -0.6391085386276245, -0.14499545097351074, -0.30498191714286804, -1.6186630725860596, -0.6558040380477905, -0.11153256893157959, -0.49870914220809937, 0.9340256452560425, -0.909915030002594, -0.2478075474500656, 0.017946757376194, 0.28239789605140686, 0.3326675295829773, 0.19682107865810394, 0.17520350217819214, -0.08614517748355865, -0.313426673412323, -0.03421998769044876, 0.5761994123458862, 1.6355831623077393, -0.6798723340034485, -0.7667638063430786, 0.19557270407676697, 0.432182252407074, -0.07802490144968033, -0.08680199086666107, -0.5527323484420776, -0.06654410064220428, -0.7296421527862549, -0.30530956387519836, 0.055185940116643906, -0.09890783578157425, 1.5691964626312256, 0.08806543052196503, 0.40318432450294495, 0.6025062799453735, -0.35836800932884216, -0.9352076053619385, 0.2780245244503021, 0.1298791468143463, 0.5308353900909424, -0.5385442972183228, -0.009949958883225918, 0.24028465151786804, -0.34685197472572327, 0.7596489787101746, 0.41108107566833496, 0.6496003866195679, -0.3878874182701111, -0.0410202220082283, 0.15045283734798431, 0.16666094958782196, 0.3946085572242737, 0.7453363537788391, 0.09701506048440933, -0.24802477657794952, -0.9415568709373474, 0.7439215779304504, -1.4417192935943604, 0.14902621507644653, 0.1960395723581314, -0.1499803513288498, 1.0808318853378296, -1.3561409711837769, -0.41367098689079285, -0.10566765815019608, -0.08732343465089798, 0.788237452507019, 0.5136120319366455, -0.12576763331890106, -0.234177827835083, 0.48379620909690857, 0.6477460861206055, -0.1832747459411621, 0.11879892647266388, 0.03791527450084686, 0.4043564796447754, 0.15090671181678772, -0.54929518699646, 0.36281058192253113, 0.206549733877182, -0.32093876600265503, -0.3443628251552582, 0.0591159351170063, 0.6520493626594543, 0.28832849860191345, -0.36156195402145386, 0.9337553977966309, -0.5891889333724976, -0.4507056772708893, 0.38721969723701477, -0.2650836110115051, -0.0022837112192064524, -0.46182548999786377, -0.915767252445221, 0.010557821951806545, -0.751991868019104, -0.45863020420074463, 0.7813800573348999, -0.8003413677215576, -1.1640764474868774, -0.969816267490387, -0.9860312938690186, -0.42484748363494873, 1.373435139656067, 1.66242516040802, 0.565116822719574, 0.3056650757789612, 0.9357622861862183, 0.34972718358039856, -0.10308437794446945, 0.030020155012607574, 0.2565879225730896, -0.22735685110092163, -0.13119706511497498, -1.505262851715088, -0.4366157352924347, 0.8523784875869751, 0.28795096278190613, -0.3761771619319916, -0.10271315276622772, 0.8995438814163208, 1.1279592514038086, 0.2659475803375244, -0.887478768825531, 0.7006884217262268, -0.7226125001907349, 1.1214643716812134, 0.793438196182251, 0.18337205052375793, 0.11015719175338745, -0.07125883549451828, -1.4055891036987305, 0.2874565124511719, -0.37280404567718506, -1.1272962093353271, 0.6728694438934326, 0.0381292961537838, 0.36541256308555603, 0.1912641078233719, -0.14616145193576813, 0.06022181734442711, 0.5754151344299316, -0.3603503704071045, -0.8106794953346252, -0.08280318975448608, 0.24331367015838623, 0.16118672490119934, -0.0030443286523222923, 0.2657414674758911, 0.4108760952949524, -0.13764667510986328, 0.8183148503303528, 0.3935535252094269, 0.9130957722663879, 0.42584776878356934, 0.3764379024505615, -1.1141407489776611, 0.7908082008361816, -0.7335763573646545, -0.6991745233535767, -0.313157320022583, -0.12686790525913239, -0.40155208110809326, -0.13305525481700897, -0.21826967597007751, -0.2708017826080322, -0.5398231744766235, -0.9507873058319092, -0.19543103873729706, 0.24970696866512299, -0.06683925539255142, -0.4504314959049225, -0.3079303801059723, -1.217219352722168, -0.9325832724571228, -0.4912789463996887, -0.11370068788528442, 0.4752946197986603, -1.203615427017212, 0.20803694427013397, -0.38923367857933044, 0.40552181005477905, 0.20115061104297638, -0.5444580316543579, 0.8939825892448425, -0.7063663601875305, -1.2374464273452759, -1.0743613243103027, 0.18976463377475739, 1.0639216899871826, -0.5527243614196777, 1.4056452512741089, 0.6462129950523376, -1.6688146591186523, -0.20223817229270935, 0.2606785297393799, -1.3789916038513184, 0.11683458089828491, -1.1816942691802979, 1.3976209163665771, -0.9192498922348022, 0.23217883706092834, -0.3470153212547302, 2.0894370079040527, -0.9829098582267761, -1.1935726404190063, -0.7195715308189392, -0.5495706796646118, 0.9715176820755005, 0.9287500381469727, -0.040153659880161285, 1.498038411140442, -0.03858085349202156, -0.5366474390029907, -0.4699857234954834, 0.050326548516750336, -0.9790663123130798, -0.08829193562269211, 0.06558133661746979, 0.40575674176216125, 0.5080094337463379, 0.7878233790397644, -1.1772688627243042, 0.23235011100769043, 0.686796247959137, 0.15862397849559784, -0.11594950407743454, -0.7612301111221313, 0.15384449064731598, 0.03999603912234306, -1.176060676574707, -0.8154285550117493, -0.1539807766675949, -0.7474815249443054, -0.6465857028961182, 0.7403934597969055, 1.0245338678359985, -0.7385284900665283, 0.35941869020462036, 0.4483843147754669, -0.11670734733343124, -0.4814324975013733, 0.6779251098632812, -0.049282755702733994, -0.25838133692741394, -0.7502081394195557, -0.06623277813196182, 0.09756886959075928, -1.153608798980713, -0.1246141716837883, 0.5175375938415527, 0.25165262818336487, -0.3174511194229126, 1.0788155794143677, 0.9622161984443665, 0.1524064987897873, -0.1665738970041275, 1.1763825416564941, 1.3103026151657104, -0.5981449484825134, -0.6992797255516052, 0.7585553526878357, 0.05480561405420303, 0.3965890109539032, -0.7105880975723267, 0.045450448989868164, -0.13672341406345367, 0.09355708956718445, 1.0319530963897705, -0.7939855456352234, -0.5892573595046997, -0.19567935168743134, -0.10999560356140137, 0.5300986170768738, 0.46107521653175354, -1.3009543418884277, -0.15763773024082184, 1.1320916414260864, 0.10935437679290771, -0.23052138090133667, -0.322421133518219, 1.047597050666809, 0.055780380964279175, -0.5646459460258484, 0.27553361654281616, 0.5238125920295715, -0.7168717980384827, 0.41630566120147705, 0.07878975570201874, 0.3354279696941376, 0.3420959413051605, -0.45928820967674255, -1.5837904214859009, 0.2205897867679596, -1.1038018465042114, -0.5286790132522583, 0.6599187254905701, -0.357033908367157, -1.2124242782592773, 0.6556174159049988, 0.5472791194915771, -0.12470560520887375, -0.3639748990535736, 0.26183027029037476, -0.5655839443206787, 0.23911212384700775, 0.7849092483520508, -0.7932956218719482, 1.2328795194625854, 0.300875186920166, 0.6208827495574951, -0.43676745891571045, -0.6609715223312378, 0.4710909128189087, 0.8112034797668457, -0.28605401515960693, -0.4748815894126892, 0.840053379535675, -0.17531119287014008, -0.41487041115760803, -0.28256529569625854, 0.020014062523841858, 0.1886512190103531, 0.10006475448608398, -1.2022037506103516, -0.7605516314506531, 0.18823032081127167, 1.0890082120895386, -0.581732451915741, -0.613975465297699, -0.9147800207138062, 0.20913246273994446, -0.4903333783149719, 0.7427486777305603, 0.2794678211212158, 0.7078784704208374, 0.09532617032527924, -0.392456591129303, 0.46699315309524536, -0.8035411238670349, -0.09764028340578079, -0.018165223300457, 0.5618883967399597, 0.11816231906414032, -0.04237627610564232, 0.02229084074497223, -0.6542379260063171, 0.5413920283317566, -0.011727026663720608, 0.3516818881034851, 0.4743744730949402, -1.1515800952911377, -0.8583217263221741, -0.859958827495575, 0.23120281100273132, 1.4552682638168335, -0.5511239171028137, -0.3129890263080597, 0.3813728988170624, -0.6229104399681091, 0.6935229301452637, 0.24168984591960907, 0.3873378336429596, 0.8714844584465027, 1.1309125423431396, 1.6056320667266846, -0.017517339438199997, -0.09435513615608215, -0.40776607394218445, 0.5301430225372314, -0.42301052808761597, -0.18987014889717102, -0.47771531343460083, 0.021184051409363747, 0.343891441822052], [0.7224237322807312, 1.8295392990112305, -2.0458004474639893, -0.22541342675685883, 1.3303943872451782, 0.16899999976158142, 1.3066356182098389, 0.04640882462263107, 0.42393064498901367, -0.5239149928092957, -0.7854247689247131, -0.18416592478752136, 0.2247047871351242, 0.9779449105262756, 0.12660349905490875, 0.5903921127319336, 0.80511873960495, -0.9343665838241577, 0.5197221040725708, 0.5368943214416504, 0.007130354642868042, -0.2153681069612503, 0.11225034296512604, 0.08009753376245499, -0.40193843841552734, -0.5555129051208496, -1.7931256294250488, -0.7435424327850342, -0.22737732529640198, -0.29309916496276855, 0.1988225281238556, -1.4885605573654175, 0.18428249657154083, 0.042986270040273666, -1.4244384765625, -1.2617875337600708, 1.8233017921447754, 0.5399016737937927, -0.03992054611444473, 0.056688569486141205, 2.188617467880249, 0.15627816319465637, 0.21863658726215363, -1.6437203884124756, 0.24210835993289948, 0.5751329064369202, 1.122635841369629, -0.46265098452568054, 0.0905478447675705, -1.2809423208236694, 0.4271858334541321, -0.8987820744514465, 1.149893045425415, 0.7401065230369568, 0.6205931901931763, 0.8269032835960388, 0.14033685624599457, 0.3555464744567871, 1.2729363441467285, -0.028895221650600433, 1.283310890197754, -0.3478463590145111, 0.9542673826217651, 0.6455002427101135, 0.2840852737426758, 0.03056051768362522, 0.002207278273999691, 0.9106682538986206, 0.6045058369636536, -0.6730978488922119, 0.5997231602668762, -0.24311545491218567, -0.7556298971176147, 0.8057223558425903, -1.1832867860794067, 0.4780714511871338, 0.2831076681613922, 0.6978167295455933, 0.14770303666591644, -0.09713238477706909, -0.604524552822113, -0.0932544469833374, 0.2097567468881607, -0.5273616909980774, -0.2127099186182022, -0.6441974639892578, 0.15636348724365234, -0.42298439145088196, 0.38269686698913574, 1.8840997219085693, 1.0150264501571655, -0.4813780188560486, 1.1333035230636597, -0.24494397640228271, -0.1540287733078003, -0.28557920455932617, 0.75833660364151, -0.2205381989479065, -0.7956053018569946, -0.48797768354415894, -0.5440462827682495, -0.6778969764709473, 0.04260933771729469, -0.2568533420562744, 0.7938668131828308, 1.3507080078125, -0.004867096897214651, 0.4108184576034546, -0.44801437854766846, 0.4723760783672333, -0.7963430285453796, -0.002440215554088354, -1.2080401182174683, -1.036882996559143, -1.611092209815979, 1.0478588342666626, 1.6180616617202759, 0.024416795000433922, 1.0873167514801025, 0.609916090965271, -0.5095402598381042, 0.4041464030742645, -0.050773583352565765, -0.21669834852218628, 0.49354681372642517, 0.36774805188179016, -0.7601550221443176, -0.5488681793212891, -0.10294640064239502, -0.5548052787780762, -0.06950655579566956, 0.6301178336143494, -0.22765614092350006, 1.0824214220046997, -0.7517502903938293, 0.8839454650878906, -0.32755738496780396, -0.0602736622095108, 0.23459170758724213, 0.12553590536117554, 0.6543365120887756, -0.6990876197814941, -0.45127856731414795, 0.5272378921508789, 0.09416954219341278, -1.6424047946929932, 0.7742940187454224, -0.19422996044158936, -0.9184854030609131, 0.042574524879455566, -0.37251076102256775, -0.18542519211769104, 0.15326596796512604, 0.06437307596206665, 0.20219717919826508, -0.18361690640449524, 0.5747413039207458, -0.28738629817962646, 0.5238422751426697, -0.06824342906475067, 0.7414047122001648, -0.19623158872127533, -0.7630608677864075, 0.19045136868953705, 0.48494434356689453, 0.23088091611862183, 0.4812777638435364, 0.35232627391815186, 0.21738089621067047, 0.7647445201873779, -0.7840246558189392, -0.7690842151641846, -0.3851514160633087, 0.5700180530548096, 0.7141746282577515, -0.41958609223365784, 1.7996597290039062, -1.2195470333099365, -0.051411982625722885, -1.10604727268219, 0.48506054282188416, 0.01683145761489868, 0.5576131343841553, 0.0018452275544404984, 0.6125305891036987, -0.25418421626091003, 0.04123358055949211, -0.5119054913520813, 0.03649432584643364, -0.8750604391098022, -0.5641624927520752, -0.38564327359199524, -0.6428540945053101, 0.14578886330127716, -0.07938958704471588, 0.07147113978862762, 0.9537602066993713, -0.7266855239868164, -1.1198762655258179, -0.5685085654258728, -0.9284958839416504, -0.3016011416912079, 0.05829811096191406, 0.6376924514770508, -0.041188787668943405, 1.5022367238998413, -0.7033901810646057, 1.0013984441757202, -0.8721113204956055, 0.05950112268328667, 1.4654510021209717, -0.5145449042320251, -0.2743833065032959, 1.1186082363128662, 0.00122052151709795, -0.6685394644737244, 0.7064040899276733, 0.521489679813385, 0.46032699942588806, 0.4221075177192688, 0.3605171740055084, -0.05725099518895149, 0.4707786738872528, 0.1604580581188202, 0.7591643333435059, -0.09592551738023758, -0.8397179841995239, -1.278408169746399, -1.2559218406677246, 0.6117169260978699, -0.6608179211616516, -2.703293561935425, 0.7936591506004333, 0.14338593184947968, -0.2227025032043457, 0.039388976991176605, -0.057761307805776596, 0.5388530492782593, -0.21483752131462097, 0.8623256683349609, 0.11915254592895508, 0.7406471967697144, -0.3540346920490265, 0.17943280935287476, 0.1603303700685501, -0.5882867574691772, 0.259494423866272, -0.4723283350467682, -0.14492936432361603, 0.6671037077903748, 0.8847458958625793, 0.0635683536529541, 0.863504946231842, 0.4160645306110382, -0.31583866477012634, -1.372761845588684, -0.4655385911464691, 1.4592863321304321, 0.09982459992170334, 0.7128459215164185, 0.8893234133720398, -0.3307865560054779, -0.3327869474887848, 0.18989188969135284, -0.40892094373703003, -0.34592360258102417, -1.2082279920578003, -1.0465251207351685, -0.6059190034866333, -0.3159150183200836, 0.05127446725964546, 0.43192437291145325, 0.5432096719741821, 1.0211089849472046, -0.06109033524990082, -0.9985631704330444, -0.48536792397499084, 1.2220335006713867, 0.432568222284317, 0.35914406180381775, -0.11554784327745438, -0.7886970639228821, -0.6205717325210571, 0.2280328869819641, 0.49449220299720764, -0.07534641027450562, -0.4743174910545349, 0.4604589343070984, 0.3540363907814026, -0.5177077054977417, 0.16467583179473877, 0.6170833706855774, 0.32465794682502747, -0.2600483298301697, -0.4238351583480835, 0.8432887196540833, 1.3477561473846436, -0.3268362879753113, -0.37825751304626465, -0.08393912762403488, 0.43627795577049255, 0.49991676211357117, 0.9480119347572327, 1.0815445184707642, -0.25028079748153687, -0.072530597448349, -0.3387680947780609, -0.12212498486042023, -0.6330716013908386, -0.5586845874786377, -1.0553922653198242, -0.051619019359350204, -0.7193134427070618, -0.29307082295417786, -0.27406740188598633, 0.3898855745792389, -0.16774038970470428, 0.6729554533958435, 0.8321244716644287, -0.40549373626708984, -1.0769482851028442, -0.05931483209133148, 0.33593326807022095, -2.1578123569488525, 0.44896960258483887, 0.6244033575057983, -0.5587481260299683, -0.8108129501342773, -1.1699296236038208, -0.36019325256347656, 0.6805173754692078, -0.23528358340263367, -0.19248908758163452, -1.1296766996383667, -0.2632794976234436, 0.12847578525543213, 1.140022873878479, -0.16717474162578583, 0.6036174297332764, -1.339642882347107, -0.14588670432567596, 0.4526980221271515, 0.397711843252182, -0.327911376953125, 0.17063724994659424, 0.16979430615901947, -0.7095388174057007, 0.497994989156723, 0.6093323230743408, -0.16861267387866974, -0.2512560486793518, 0.12422297149896622, -0.5478925704956055, -0.08548176288604736, -0.7701650857925415, 0.26896214485168457, -0.5170943737030029, 0.24114860594272614, -0.3428792655467987, 0.2218373566865921, 1.4506970643997192, -1.0880452394485474, -0.029040874913334846, -0.5704725384712219, 0.31788259744644165, 0.07910420000553131, 0.9506380558013916, 0.22404362261295319, 0.4673393666744232, 0.0196553822606802, 0.19098234176635742, 0.22750717401504517, -0.3225991129875183, 1.1073871850967407, 0.16878287494182587, 0.004682160448282957, -0.1875579059123993, -0.7983540296554565, -0.2181236296892166, -0.15909229218959808, 0.10932619124650955, 0.09058418869972229, -0.8011916279792786, -0.9837653636932373, 0.8126187324523926, 0.864758312702179, 0.09771603345870972, -1.0140124559402466, 0.03335946798324585, 1.5004252195358276, -0.24093729257583618, 1.3622606992721558, -0.33451560139656067, 0.013563527725636959, 0.3221281170845032, -1.5066157579421997, -0.46529054641723633, -0.42913109064102173, -1.410022258758545, 0.8249993324279785, -0.4205474853515625, 0.11604645848274231, -0.5755898356437683, 0.35679295659065247, 0.8398686647415161, 0.030303381383419037, 0.1785181760787964, -0.34004661440849304, 0.10176282376050949, -0.24817290902137756, 0.3996947407722473, 1.4400923252105713, -0.846132218837738, -0.5049555897712708, -0.1664356142282486, 0.316184937953949, 0.42834076285362244, -0.4637637734413147, -0.4856293499469757, -0.419043630361557, -0.37892574071884155, -0.334229975938797, 0.45458510518074036, 0.09797099977731705, 1.3120476007461548, -0.3303854763507843, 0.2733782231807709, -0.3014466166496277, -0.23884019255638123, -0.4028501808643341, 0.278840571641922, 0.15619896352291107, 0.3379664421081543, -0.49554356932640076, -0.3109266757965088, -0.17263811826705933, 0.15287970006465912, 0.1120247021317482, -0.01196835283190012, 0.6720857620239258, 0.5666801929473877, -0.0893113911151886, 0.4277249872684479, 0.07937084138393402, 0.2671416103839874, 1.0970638990402222, -0.5993790626525879, 0.09405313432216644, -0.3804624080657959, 0.39030721783638, -0.9673970937728882, 0.38148897886276245, 0.34815824031829834, -0.4423731565475464, 0.9009780883789062, -1.7030278444290161, -0.862316370010376, 0.8333242535591125, -0.24694235622882843, 0.3318508565425873, 0.30934447050094604, -0.2704271674156189, -0.40074124932289124, 1.17894446849823, 0.40333765745162964, -0.7091380953788757, -0.019785940647125244, -0.1446075439453125, 0.5960308313369751, -0.3301032781600952, -0.635991096496582, 0.8980413675308228, 0.12655465304851532, 0.3134346902370453, -0.04433532431721687, -0.6733026504516602, 0.5113201141357422, -0.08109914511442184, -0.13078966736793518, 1.0738667249679565, 0.07454691082239151, -0.2280173897743225, -0.028790825977921486, -0.40754687786102295, 0.46590837836265564, -0.21542806923389435, -0.3533945083618164, 0.0026004170067608356, -0.44329530000686646, -0.5188775062561035, 0.7990977764129639, -0.504246175289154, -0.34291762113571167, -0.3957669734954834, -0.5710426568984985, -0.10659565031528473, 0.13993743062019348, 0.5187124609947205, 0.5583760738372803, 0.3939077854156494, 1.0764802694320679, 0.703502893447876, -0.05501093715429306, -0.37905097007751465, 0.9021366238594055, -0.5858213901519775, -0.6918625235557556, -1.4601279497146606, -0.5835780501365662, 0.1856289505958557, -0.14544351398944855, -0.045699410140514374, -0.020396055653691292, 0.7028079032897949, 1.403887152671814, -0.44919049739837646, 0.17469516396522522, -0.04208222031593323, -1.0318865776062012, 0.8350499272346497, 0.032094597816467285, -0.5346053242683411, -0.2589409649372101, -0.8176278471946716, -1.0504475831985474, 0.7848440408706665, 0.4580225646495819, -0.679646372795105, 0.8806980848312378, -0.2830057144165039, 0.654689610004425, 0.16771546006202698, -0.010570725426077843, 0.08000342547893524, -0.2729051113128662, 0.7121840715408325, -0.8156740069389343, 0.025600140914320946, 0.5590283870697021, 0.11123589426279068, -0.018450025469064713, 0.3996872901916504, 0.05431549251079559, 0.1165669858455658, 0.7306562662124634, 0.4921020269393921, -0.0011516725644469261, 0.8205602765083313, 0.8594703078269958, -1.2916717529296875, -0.04335666075348854, 0.26463478803634644, -0.39905017614364624, -0.4411124289035797, 0.16705618798732758, -0.30972301959991455, -0.11341199278831482, -0.3391886353492737, -1.0080269575119019, -0.39365777373313904, -0.1334545612335205, 0.17461645603179932, 0.7870573997497559, 0.2749544382095337, -0.6276716589927673, 0.25560685992240906, -0.1359669417142868, -0.39745113253593445, -0.11465457826852798, -0.2219901978969574, 0.16899992525577545, -0.6817747354507446, 0.22410453855991364, -0.47958311438560486, 0.04405323043465614, -0.002013575518503785, -0.9461073875427246, 0.4497482180595398, -0.7582453489303589, -1.274625301361084, -0.8200101256370544, 0.3985516428947449, 1.2981194257736206, 0.2237219661474228, 1.4102718830108643, 0.8930872678756714, -1.0128505229949951, 0.04287881776690483, 0.48671653866767883, -1.4965225458145142, -0.17809179425239563, -1.0245023965835571, 0.9377931356430054, -1.1318237781524658, 0.5132545828819275, -0.558718204498291, 0.9903959631919861, -0.9163023829460144, -1.4053095579147339, -0.5275441408157349, -1.4076199531555176, 0.9039448499679565, 1.069538950920105, -0.6527093052864075, 0.6970885992050171, -0.17376480996608734, -0.47508031129837036, -0.6595808267593384, 0.18579928576946259, -0.5438677072525024, -0.06836157292127609, -0.3930032253265381, 0.8435852527618408, -0.0012593381106853485, 0.48037058115005493, -0.49626606702804565, 0.6888573169708252, 0.2121884822845459, 0.8454923033714294, 0.08539211750030518, 0.24534396827220917, -0.6326047778129578, -0.5022804737091064, -1.7285971641540527, -0.8287997245788574, -0.4595909118652344, -0.7134156823158264, -0.6055120229721069, 1.222651720046997, 0.6139397025108337, -0.6811115145683289, 0.31537294387817383, -0.4723716080188751, 0.10987625271081924, -0.9406066536903381, -0.4786314368247986, -0.3408494293689728, 0.3932364583015442, -0.4072321057319641, 0.013531656935811043, -0.11062880605459213, -1.4231462478637695, -0.16771265864372253, 0.9980468153953552, 0.31257835030555725, -0.2914575934410095, 0.5429317355155945, 1.0386309623718262, 0.7496126294136047, -1.0466301441192627, 1.3754233121871948, 1.0186372995376587, 0.12089838087558746, -0.3434337377548218, -0.33967387676239014, -0.3319041132926941, 0.7175233960151672, -0.6770259737968445, 0.08822164684534073, -0.3771328330039978, 0.405556857585907, 0.6250388622283936, -1.1426215171813965, -0.5455997586250305, -0.533940851688385, -0.00760198850184679, 0.6331084966659546, 0.25036928057670593, -0.7500683665275574, -0.5438640713691711, 1.0704282522201538, -0.07775604724884033, -1.110892653465271, -0.13602834939956665, 0.3838541805744171, 0.05032114312052727, -0.8412188291549683, 0.4982197880744934, 0.40612557530403137, -0.896084725856781, 0.8845333456993103, 0.5804699659347534, -0.15374641120433807, -0.16627418994903564, -0.26543375849723816, -0.4885227084159851, 0.13681793212890625, -0.04872477799654007, -0.2541466951370239, 0.6197739243507385, -0.7993480563163757, -0.302734375, 0.7747055292129517, 0.02327297441661358, -0.15831126272678375, 0.004389853682368994, 0.4495573043823242, -0.4777635335922241, 0.1622694432735443, -0.01409943401813507, -0.5696249604225159, 0.7369924783706665, 0.4450736939907074, -0.038209009915590286, -0.6041644215583801, -0.64401775598526, 0.9955146908760071, 0.17293235659599304, 0.04214852303266525, -0.7543458342552185, 0.8042081594467163, 0.2264648675918579, -0.5928992033004761, 0.16039682924747467, 0.9327892661094666, 0.4202900528907776, -0.32373327016830444, -0.48740434646606445, -0.6617145538330078, 0.6597296595573425, 0.44877108931541443, -0.712652325630188, -0.4437659680843353, -0.5974085330963135, -0.3932841122150421, -0.06132372096180916, 0.5613160133361816, 0.22559747099876404, -0.1333160698413849, 0.25999993085861206, -9.339209645986557e-05, 0.36854076385498047, -0.8480620384216309, 0.12203413248062134, 0.3461957275867462, 0.027517953887581825, 0.07530339062213898, -0.08587821573019028, 0.12235831469297409, -1.025701642036438, -0.04108309745788574, -0.6194392442703247, -0.1335086077451706, -0.08105269074440002, -0.9001086354255676, -1.4243175983428955, -0.4277871549129486, 0.8791224360466003, 0.9996047019958496, -0.3635751008987427, -0.28453415632247925, -0.16638612747192383, -0.5994595289230347, 0.5708795785903931, 0.6505879163742065, -0.03626352548599243, 0.6618660688400269, 1.3949131965637207, 1.9990267753601074, 0.22240813076496124, 0.46377283334732056, 0.18403030931949615, 0.5362515449523926, -0.9280419945716858, 0.566011905670166, -0.4404943883419037, 1.0578078031539917, 0.044388920068740845], [0.30203109979629517, 1.732083797454834, -1.864370584487915, 0.004346755333244801, 0.8828441500663757, -0.13674890995025635, 2.0133893489837646, -0.3206578195095062, 0.38509687781333923, -0.8156044483184814, 0.29146164655685425, -0.09538357704877853, 1.1313486099243164, 0.8323231935501099, 0.08860692381858826, -0.5808210968971252, 0.5907033681869507, -1.5175434350967407, 0.5687873959541321, 0.6454234719276428, 0.13852471113204956, -0.7439953088760376, -0.2678918242454529, -0.2638765573501587, -0.5747896432876587, 0.06732773035764694, -1.3797115087509155, -0.1463131457567215, -0.3658996820449829, -0.9751448035240173, 0.8959609866142273, -1.6655741930007935, -0.4622117280960083, -0.4569408893585205, -0.7557474374771118, -0.6362810730934143, 1.2375707626342773, 0.30745524168014526, 0.22121189534664154, 0.36986926198005676, 2.147611379623413, 0.12450147420167923, 0.11412855237722397, -1.7409743070602417, 0.6124315857887268, -0.3191415071487427, 0.9990980625152588, -0.8371857404708862, 0.905430257320404, -1.17601478099823, 0.28441107273101807, -0.4034336507320404, 0.5872105956077576, 1.425849199295044, 0.6121400594711304, 0.817794144153595, 0.19378980994224548, 0.5954394936561584, 0.9067147970199585, -0.07672504335641861, 0.6891658902168274, -0.5547826886177063, -0.22148597240447998, 0.5618467330932617, 0.0230375025421381, -0.4255230724811554, 0.36529263854026794, -0.012512960471212864, -0.14446794986724854, -0.25879961252212524, 0.35485541820526123, -0.28719714283943176, -0.21204476058483124, -0.27705907821655273, -1.3055651187896729, 1.2832996845245361, 0.4562603831291199, 0.6322289109230042, -0.16357797384262085, 0.5866581201553345, -1.0256844758987427, -0.47490549087524414, 0.589586079120636, -0.6272057294845581, 0.05572441220283508, 0.39413776993751526, -0.15538442134857178, -0.0038359835743904114, 0.0028717005625367165, 2.4292047023773193, 1.1385979652404785, 0.027561534196138382, 0.5718281269073486, 0.13934506475925446, -0.18290618062019348, -0.49327531456947327, 0.5012866258621216, -0.3109601140022278, -0.9362764954566956, 0.1316646784543991, -0.05636385828256607, -0.19384053349494934, -0.20088884234428406, -0.17237086594104767, -0.269050270318985, 1.4355603456497192, -0.3383353352546692, -0.044628482311964035, -0.03760942071676254, 0.4392460882663727, -0.7496887445449829, -0.23676708340644836, -0.9600573778152466, -1.5995796918869019, -0.6389593482017517, 0.8674674034118652, 1.9363720417022705, 0.18585166335105896, 0.6038022637367249, 0.7876138687133789, -0.08578736335039139, -0.23474432528018951, 0.15644754469394684, 0.4190254807472229, 0.03867124021053314, -0.006805183831602335, -0.5228613615036011, -0.7213423252105713, -0.210508331656456, 0.014958449639379978, 0.249365895986557, -0.3431830406188965, -0.3976897895336151, 0.2381342649459839, -0.10787110030651093, 1.0727876424789429, -0.8513760566711426, -0.30382898449897766, -0.2344709038734436, -0.05427198484539986, 0.5989503264427185, -0.7264909744262695, -0.502882182598114, 0.49726274609565735, -0.05588485300540924, -0.635511040687561, 0.24528135359287262, 0.40376996994018555, -0.76106196641922, -0.04540661349892616, -0.3406307101249695, 0.41395825147628784, 0.34600117802619934, -0.12883663177490234, -0.2832833230495453, 0.07237886637449265, 0.27417072653770447, 0.024395108222961426, 0.4921494126319885, 0.17357216775417328, -0.025036942213773727, -0.06225837767124176, -1.2360761165618896, 0.8529902696609497, 0.9381758570671082, -0.3039662539958954, 0.8677185773849487, 0.4968244433403015, -0.2698529362678528, 0.7155815362930298, -0.7457340359687805, -0.5805328488349915, 0.49360737204551697, 0.29718324542045593, 0.2986423373222351, 0.46768563985824585, 1.7876719236373901, -1.5027704238891602, -0.6563968062400818, -1.071243166923523, 0.6928065419197083, -0.5032787919044495, 0.20542404055595398, -0.43500691652297974, -0.01972934976220131, -0.41818028688430786, 0.44674625992774963, 0.0031672059558331966, -0.20837311446666718, -1.2076804637908936, -0.4214931130409241, -0.9120112657546997, -1.0877408981323242, 0.04684777185320854, -0.4839191436767578, -0.3871280550956726, 1.3998016119003296, -1.6442548036575317, -0.6906824707984924, -0.19083482027053833, -0.30645161867141724, -0.976811408996582, 0.07833350449800491, 0.44812148809432983, -0.2739633023738861, 1.4460493326187134, -1.235169768333435, 0.7150934934616089, -0.6239007115364075, -0.0862102285027504, 1.1045647859573364, -0.35267356038093567, -0.9498254656791687, 0.9709368348121643, -0.7089648246765137, -1.0624333620071411, 0.48004236817359924, 0.5281927585601807, -0.013322951272130013, 0.801723301410675, -0.09176839888095856, 0.00961852166801691, -0.03903520107269287, 0.16106092929840088, 0.7626338005065918, 0.25376203656196594, -0.5820277333259583, -1.395612120628357, -0.961879551410675, 0.7272025346755981, -0.9545619487762451, -1.2543659210205078, 0.7399831414222717, 0.0509784035384655, -0.5220096707344055, -0.07136736810207367, 0.07965605705976486, 0.5425503253936768, -0.2731514275074005, 1.0989996194839478, 0.7535675168037415, 0.07252354919910431, 0.3634148836135864, -0.4209451973438263, -0.3164435625076294, -0.14531567692756653, -0.3518478572368622, -0.43615061044692993, 0.3960191607475281, 1.3427726030349731, 0.8575579524040222, 0.255384236574173, 0.9148907661437988, 0.24582123756408691, -0.07015644758939743, -1.42576265335083, -0.03752606734633446, 0.7249060273170471, -0.8099137544631958, 1.3360847234725952, 1.1467164754867554, -0.4583239257335663, -0.4761115312576294, 0.13687428832054138, -0.32893553376197815, -0.5269083380699158, -1.3532154560089111, -0.8560007810592651, -0.7024442553520203, 0.6102410554885864, 0.5631133913993835, 0.5524582862854004, -0.25423604249954224, 0.5897006988525391, 0.2569078207015991, -0.6041383147239685, -0.2276737242937088, 0.5675647854804993, 0.8397865295410156, 0.7858039140701294, -0.32120728492736816, -0.8750871419906616, -0.878947913646698, 0.5616475343704224, 1.087168574333191, 0.5055260062217712, -0.1813323199748993, -0.45222318172454834, 0.43153372406959534, 0.3206634521484375, 0.25540128350257874, 0.7245166301727295, 0.2755805552005768, -0.02728159725666046, -0.16272445023059845, 0.7278682589530945, 0.4324455261230469, -1.6676177978515625, -1.1766633987426758, -0.6927623152732849, 0.5730416178703308, 0.9991704225540161, 0.9239087104797363, 0.9129180908203125, 0.1888824850320816, 0.505288302898407, -0.5903886556625366, -0.5011151432991028, -0.9056970477104187, -0.11722099035978317, -0.11103776097297668, -0.13970059156417847, -0.7480584979057312, -0.08238040655851364, -0.26670607924461365, 0.40993884205818176, 0.31406018137931824, 1.789512276649475, 0.9230123162269592, -0.30762821435928345, -0.26037803292274475, -0.4949699938297272, -0.41827285289764404, -1.0754646062850952, 0.5118840336799622, 0.8973748683929443, -0.597234308719635, -0.022516978904604912, 0.24299922585487366, 0.381142795085907, 0.6216894388198853, 0.4151054918766022, 0.4658832848072052, -1.1053071022033691, -0.7849603295326233, -0.20942647755146027, 1.0153577327728271, 0.04097723215818405, 0.37077564001083374, -0.551437258720398, -0.5359826683998108, 0.2421504706144333, -0.2015482634305954, -0.9005386829376221, 0.22314207255840302, 0.2057633250951767, -0.31641197204589844, -0.23675701022148132, 0.7739337086677551, -0.03250586614012718, -0.23330043256282806, -0.03521261736750603, -0.8169835209846497, 0.024772150442004204, -0.3698781132698059, 0.3345964550971985, -0.23172202706336975, 0.4084036350250244, 0.5042589902877808, -0.16251467168331146, 0.5630460381507874, -0.2983545660972595, -0.08090393245220184, -0.5884271860122681, 0.7422921061515808, 0.7261700630187988, 0.7839159369468689, 0.33646705746650696, -0.15316930413246155, 0.39867740869522095, -0.5599758625030518, 0.6437678933143616, 0.3898026943206787, 1.097497820854187, 0.22885344922542572, 0.39164999127388, -0.9343560934066772, -0.3495752215385437, 0.24211794137954712, -0.33789655566215515, 0.6521373391151428, 0.6049860715866089, -0.6792227029800415, -1.1950206756591797, 0.741210401058197, 0.11103571951389313, -0.20229969918727875, -0.621557354927063, -0.417831152677536, 0.7598319053649902, -0.21422292292118073, 0.1017901748418808, -0.412067711353302, -0.08068117499351501, 0.10912953317165375, -1.1257402896881104, -0.3358917832374573, 0.3036995232105255, -0.46607649326324463, 0.6037383079528809, -0.18610480427742004, 0.03168882802128792, -0.7383031249046326, 0.0896265059709549, 0.7585794925689697, -0.29968613386154175, -0.2835063338279724, 0.3595258891582489, -0.22429700195789337, -0.07499817758798599, 0.32231807708740234, 1.636929988861084, -0.8362871408462524, -0.8372224569320679, 0.05682617798447609, -0.39242058992385864, -0.38642483949661255, -0.8204950094223022, -0.6460384130477905, 0.22601830959320068, -0.5988333225250244, -0.09007695317268372, -0.15642379224300385, -0.1344747394323349, 1.2164201736450195, 0.011060405522584915, 0.5089064240455627, 0.3357236087322235, 0.0448627732694149, -1.1935343742370605, 0.13263820111751556, 0.48649272322654724, 0.7566967606544495, -0.3412334620952606, -0.14205580949783325, 0.27414804697036743, -0.6457751989364624, 1.1095114946365356, 0.010402207262814045, 0.17822043597698212, -0.0628068745136261, 0.054172057658433914, 0.2169361114501953, 1.0586237907409668, 1.378709316253662, 1.1532819271087646, 0.16506917774677277, 0.08880841732025146, -1.1622569561004639, 0.38333648443222046, -1.0220685005187988, 0.5223121047019958, 0.5539180040359497, -0.28183114528656006, 0.7559892535209656, -1.6276812553405762, -0.12723767757415771, 0.9093364477157593, 0.3332992494106293, 0.7685749530792236, 0.10340456664562225, -0.11653853952884674, 0.015656767413020134, 0.7803848385810852, 0.47101911902427673, -0.520171582698822, 0.6493537425994873, -0.30550628900527954, -0.07182057201862335, 0.4774496853351593, -1.3498432636260986, 0.2493630349636078, -0.5104730725288391, 0.26511046290397644, -0.8637666702270508, -0.3809765577316284, 0.17006976902484894, 0.08791066706180573, -0.061831340193748474, 0.7573462724685669, 0.0833408311009407, -0.6214846968650818, 0.08253014832735062, -0.45503726601600647, 0.23132029175758362, -0.04889872670173645, -0.35405227541923523, -0.5597969889640808, -0.5909998416900635, -0.0763867050409317, 0.16708116233348846, -0.8606957197189331, -0.048366520553827286, -0.5048062801361084, -1.168923258781433, 0.3426535725593567, 1.3030892610549927, 1.118729829788208, 0.3625643849372864, -0.30200299620628357, 0.48964008688926697, 0.5602572560310364, -1.0897678136825562, -0.27210721373558044, 0.10650318115949631, -0.18707765638828278, -0.037026338279247284, -1.2289719581604004, -0.0819484144449234, 0.4760591387748718, 0.3995768427848816, -0.06665143370628357, 0.1144065409898758, 0.590722918510437, 1.22907555103302, -0.39706185460090637, 0.13077223300933838, 0.49541139602661133, -0.5659520030021667, 0.9025853872299194, 0.45090118050575256, -0.6329284310340881, -0.3699745237827301, -0.5236948728561401, -1.021622657775879, 0.7332067489624023, -0.38618478178977966, -0.6521223187446594, 0.9514415860176086, -0.57248854637146, 0.5289373397827148, 0.2335694283246994, -0.5622166991233826, 0.5125428438186646, 0.23929667472839355, 1.3035515546798706, -0.6345164775848389, 0.3459074795246124, 0.5798631906509399, -0.15997308492660522, -0.1612435281276703, 0.3417491614818573, 0.08521468192338943, -0.060632750391960144, 0.9721086025238037, 0.19578152894973755, 1.2847338914871216, 0.686420738697052, 0.36274999380111694, -0.5551590323448181, 0.3480631411075592, -0.2980704605579376, -0.7286674380302429, -0.41832220554351807, -0.01882382109761238, 0.05291244015097618, -0.43583226203918457, -0.018825417384505272, -0.12162686884403229, -0.33579060435295105, -0.6599411964416504, -0.44088014960289, 0.3890407085418701, -0.3365112543106079, 0.27130430936813354, -0.7344678640365601, -0.7655655145645142, -1.1104588508605957, -0.27607104182243347, 0.3120732605457306, 0.9272593855857849, -0.41079482436180115, 0.28365811705589294, -0.15660475194454193, -0.2399742156267166, -0.3111891448497772, -0.7130649089813232, 0.580123245716095, -1.1195333003997803, -0.7694252729415894, -0.6806480288505554, 0.06255520135164261, 0.4734707474708557, -0.4903301000595093, 1.6463137865066528, 0.1420886516571045, -1.231147050857544, 0.6364583373069763, 0.3000139892101288, -1.0859073400497437, -0.43140241503715515, -1.294081211090088, 1.1431074142456055, -0.9419530630111694, -0.03506860509514809, -0.4790439009666443, 1.4501031637191772, -0.7876631021499634, -1.7085926532745361, -0.7838687896728516, -0.43702933192253113, 1.2147780656814575, 1.2122455835342407, -0.35034218430519104, 1.1214557886123657, 0.28261876106262207, -0.049175925552845, -0.7357747554779053, 0.46065396070480347, -0.25526997447013855, -0.15172557532787323, 0.14662212133407593, 0.49792617559432983, 0.06187134236097336, 1.0782760381698608, -0.41002988815307617, 0.7454817295074463, 0.4967081546783447, 1.3335438966751099, -0.28568705916404724, -0.08864668756723404, -0.41627493500709534, 0.21566994488239288, -1.386594295501709, -1.0110363960266113, 0.26690563559532166, -0.12951138615608215, -1.3272513151168823, 0.2128746509552002, 0.6378298997879028, -0.07320916652679443, 0.41418182849884033, -0.44829750061035156, 0.9618337154388428, -0.8002296686172485, 0.616207480430603, -0.08498293161392212, -0.3077273368835449, -0.4721403121948242, -0.0050684381276369095, 0.7711777091026306, -1.1680852174758911, -0.4244878888130188, 0.8363675475120544, -0.08061441779136658, -1.106155276298523, 0.25757646560668945, 0.827627420425415, 0.5143991112709045, -0.5425078868865967, 1.2565845251083374, 1.0275381803512573, -1.0122814178466797, -0.34609904885292053, 0.27647244930267334, 0.47413909435272217, 0.49517887830734253, -0.689828097820282, -0.40607669949531555, -0.43468689918518066, 0.7221671342849731, 0.7543533444404602, -0.04359053075313568, -0.7419277429580688, 0.07109779864549637, -0.39357706904411316, 0.658480703830719, 0.9643056392669678, -0.30926069617271423, -0.8610340356826782, 1.0209543704986572, 0.14058049023151398, -0.7969931364059448, 0.2258337289094925, 0.9886475205421448, -0.47444814443588257, -0.5418370962142944, 0.02365696430206299, 0.559300422668457, -0.28414386510849, 0.9914300441741943, 0.5960655808448792, 0.4137248992919922, 0.05544821172952652, -0.8461264967918396, -1.0921958684921265, -0.7973343133926392, -0.5769025683403015, -0.5634086728096008, 0.3094838559627533, -0.6694201827049255, -0.185855433344841, 0.6884834170341492, 0.333731472492218, 0.010992667637765408, -0.4185504913330078, 0.009270638227462769, -0.27175256609916687, -0.3624267280101776, 1.332814335823059, -0.5397108793258667, 1.2548454999923706, -0.13730700314044952, -0.17225413024425507, -0.1253913789987564, 0.3779022991657257, 0.03175890073180199, 0.32399702072143555, -0.3205259442329407, -1.0326780080795288, 0.29848605394363403, 0.16423766314983368, -0.9174571633338928, -0.16058039665222168, 0.7512354850769043, -0.2904280424118042, -0.24551323056221008, -0.6589924097061157, 0.018050920218229294, 0.5375207662582397, 0.32916271686553955, -0.6219419240951538, -0.7771847248077393, -0.6669154167175293, 0.4118102192878723, -0.5833995938301086, 0.5231728553771973, -0.0872127115726471, -0.03918446600437164, 0.316565603017807, -1.0546982288360596, -0.37847527861595154, -1.5055959224700928, 0.10564262419939041, -0.1975267380475998, 0.4000195860862732, 0.24391594529151917, 0.44143640995025635, -0.06573449075222015, -1.5861060619354248, 0.26392799615859985, -0.05249751731753349, 0.17193275690078735, 0.5167588591575623, -1.419873833656311, -0.2588326334953308, -0.8604240417480469, 0.7493600249290466, 1.0654032230377197, -0.573432445526123, -0.09316935390233994, 0.07927971333265305, -1.3963772058486938, 0.9374796748161316, 1.0752726793289185, 0.07475079596042633, 0.43741726875305176, 1.6073251962661743, 1.6609183549880981, -0.1831560581922531, 0.42721399664878845, -0.28979602456092834, 0.2770005166530609, -0.6740825176239014, 0.2959817051887512, -1.1990782022476196, -0.24079447984695435, -0.16156749427318573], [0.3386934995651245, 1.1733943223953247, -2.2018826007843018, -0.40188899636268616, 0.49030715227127075, -0.050496906042099, 1.4817920923233032, -0.05683612823486328, -0.5922566652297974, -0.7430782914161682, -0.4472900629043579, 0.161795973777771, 0.7275584936141968, 1.6061325073242188, 0.4174961447715759, 0.8099671006202698, 0.9930563569068909, -1.2115778923034668, 0.48831191658973694, 1.3141262531280518, 1.175187587738037, -0.2828359603881836, 0.08957497030496597, -0.7921100854873657, -0.5533705353736877, 0.20386090874671936, -1.493863582611084, -0.4848271608352661, -0.5578955411911011, -1.2183984518051147, 1.430481195449829, -1.0945119857788086, 0.060096051543951035, 0.238752081990242, -0.5979824662208557, -0.4894627630710602, 0.974502682685852, 0.33757492899894714, 0.4405132532119751, 0.413676917552948, 1.6193069219589233, -0.22872598469257355, 0.01704322174191475, -1.353206992149353, 0.4030289649963379, -0.32953110337257385, 1.3176994323730469, -0.7280900478363037, -0.21218840777873993, -0.9791789054870605, 0.3891710042953491, -0.11573589593172073, 0.5989707112312317, 1.164836049079895, 0.8086284399032593, 0.5964301228523254, 0.29501843452453613, 0.13705644011497498, 0.7281997799873352, -0.7717810869216919, 0.5441878437995911, 0.14059531688690186, -0.49126988649368286, 1.0344085693359375, 0.03911249339580536, -0.1003418117761612, 0.05177305266261101, 0.5914424061775208, 0.008967701345682144, 0.17837505042552948, 0.3547043204307556, 0.051860056817531586, -0.5325782299041748, 0.08936387300491333, -0.8675057888031006, -0.040197741240262985, 0.38013049960136414, 1.1471177339553833, 0.0722292959690094, 0.5991404056549072, -0.31978970766067505, -0.10849331319332123, 0.32581818103790283, -0.9887902140617371, 0.7039316892623901, -0.3720317482948303, 0.1664378046989441, 0.11319132149219513, -0.975321888923645, 2.168142318725586, 0.47121816873550415, 0.40126362442970276, 0.18507085740566254, -0.5839769244194031, -0.26612403988838196, -1.5900473594665527, 0.21152590215206146, 0.013676881790161133, -0.5749961137771606, -0.7642179727554321, -0.48240068554878235, -0.5232417583465576, 0.563873827457428, -0.6023284196853638, -0.22908858954906464, 1.7846143245697021, 0.6859645843505859, -0.27150508761405945, -0.6386957168579102, 0.11914674937725067, -0.4305521547794342, -0.5492822527885437, -0.6145421862602234, -0.6106101870536804, -0.969873309135437, 1.123635172843933, 1.5415726900100708, 0.2933133840560913, 0.34545519948005676, 0.6581252813339233, -1.028495192527771, -0.963861346244812, -0.3323286473751068, 0.24281594157218933, 0.8867055773735046, 0.2792627811431885, -1.1506298780441284, -0.7633658647537231, 0.8212578892707825, -0.11676641553640366, 0.39745283126831055, 0.19735990464687347, -0.46760204434394836, 0.8620367050170898, -0.1594141572713852, 1.8708064556121826, -0.07631222158670425, -0.5307655334472656, -0.017467275261878967, -0.3752974569797516, -0.22630958259105682, -0.6003185510635376, -0.09089194238185883, -0.31690317392349243, 0.6266334652900696, -0.44170576333999634, 0.23593075573444366, -0.5067426562309265, -0.8107756972312927, 0.5043770670890808, -0.5013179183006287, 0.18755270540714264, 0.27705591917037964, 1.4367386102676392, 0.43567195534706116, -0.24684037268161774, 0.6609499454498291, 0.029392927885055542, 0.6167590618133545, -0.6832798719406128, 0.4782050848007202, -0.5335212349891663, -1.0884360074996948, 0.537861168384552, 0.47774720191955566, 0.09681016206741333, 0.6148189902305603, 0.47051748633384705, -0.14682699739933014, 0.7276486754417419, -0.3438299298286438, -0.25058603286743164, -0.8766555786132812, 0.8978671431541443, -0.16087237000465393, 0.2547304630279541, 1.7574505805969238, -0.9277768731117249, -1.1592131853103638, -0.9431173205375671, 0.4002707004547119, -0.6966680884361267, -0.17656707763671875, 0.30726301670074463, 0.7374363541603088, -0.5477616786956787, 0.22344419360160828, -0.27716314792633057, -0.48272284865379333, -1.0350046157836914, -0.08700825273990631, -0.5467165112495422, -0.7218363881111145, 0.26911816000938416, -0.6029675006866455, -0.8398467302322388, 0.6234413981437683, -1.3218228816986084, -0.31837981939315796, -0.22736920416355133, -0.03694967180490494, -0.008694675751030445, -0.8838596343994141, 0.7461938261985779, -0.4599449932575226, 1.6543818712234497, -0.9015510082244873, 0.590430498123169, -0.9658079743385315, 0.567233145236969, 1.0936391353607178, -0.07535690069198608, -0.9025149941444397, 0.8329698443412781, -0.4063107967376709, -1.505113124847412, 0.6688224077224731, 0.2904512584209442, -0.20209921896457672, 0.5446761250495911, 0.09512333571910858, 0.32992419600486755, 0.19896414875984192, -0.447975218296051, 0.0921827107667923, 0.1271265596151352, -0.08579277247190475, -0.8476050496101379, -0.9288220405578613, 0.09809503704309464, -0.5307841897010803, -1.1561200618743896, 0.2816632390022278, -0.5302050709724426, -0.19380156695842743, -0.011399648152291775, -0.5597494840621948, 0.03674882650375366, -0.08823417872190475, 1.8483824729919434, 0.3188611567020416, 0.35567235946655273, 0.3726334273815155, 0.3599151372909546, -0.44814634323120117, -0.37204116582870483, 0.9852110147476196, -0.09186149388551712, 0.4825776517391205, 1.0736209154129028, 0.9004893898963928, -0.4413300156593323, 0.4757962226867676, -0.13977666199207306, -0.10785006731748581, -1.2300875186920166, 0.061066288501024246, 0.44135624170303345, -0.3224449157714844, 1.30340576171875, 0.7688091397285461, -0.7129107117652893, 0.007487759459763765, 0.08174637705087662, 0.2713829576969147, -0.5762665867805481, -0.13818885385990143, -0.7836279273033142, -0.31361299753189087, 0.26224392652511597, -0.34747758507728577, 0.4160197079181671, -0.29085925221443176, -0.01733209751546383, -0.5844959616661072, -0.016265109181404114, -0.17779110372066498, 0.6838403344154358, 0.09311869740486145, 1.1499584913253784, -0.5513824820518494, -2.0518205165863037, -0.7207797765731812, 0.02965092658996582, 1.3793084621429443, -0.22817394137382507, -0.06572697311639786, -0.45597535371780396, -0.026979615911841393, 0.062090031802654266, 0.2836914658546448, -0.08130012452602386, 0.6226274371147156, -0.1687694489955902, 0.014916256070137024, 0.6673892736434937, 0.8524196743965149, -0.7483234405517578, -0.8032379746437073, -0.5628727078437805, 0.4804065525531769, 0.9829562306404114, 0.7919706106185913, 0.6335016489028931, -0.22161222994327545, 0.375426322221756, -0.1602790355682373, -0.08120136708021164, -0.8851990103721619, -0.6757075786590576, 0.139820858836174, -0.9144079089164734, -1.0007284879684448, 0.2496456652879715, -0.3623260259628296, 0.457326740026474, -0.5096631646156311, 0.9211068749427795, 1.2761387825012207, -0.3435640335083008, -0.8040902614593506, -0.1431618183851242, -0.1299302577972412, -1.1153579950332642, 0.7614992260932922, 1.3304564952850342, -0.4848692715167999, -0.007919618859887123, 0.48357412219047546, 0.21056321263313293, 0.6351922154426575, 0.7359564900398254, -0.2910078763961792, -1.2970823049545288, -0.41302505135536194, -0.8186955451965332, 0.8277682662010193, -0.5050340294837952, 0.006565826013684273, -0.25864318013191223, 0.20560012757778168, 0.8891966342926025, -0.4106965661048889, -0.12018908560276031, 0.7432423830032349, -0.8004021644592285, -0.08283227682113647, -0.07789971679449081, -0.10866019129753113, 0.5878729224205017, -0.19828642904758453, -0.47092878818511963, -0.28533390164375305, 0.2171764075756073, -0.1503465175628662, 0.9199846982955933, -0.2598022222518921, 0.8284980654716492, 0.23806217312812805, -0.4256570041179657, 0.9263540506362915, -0.056872207671403885, -0.0371379554271698, -0.7406859397888184, 0.6467319130897522, 0.7726977467536926, 0.8949350714683533, 0.5576075315475464, 0.3460557758808136, 0.519414484500885, 0.25265398621559143, 0.14225374162197113, 0.17082075774669647, 0.6270233988761902, 0.1717483252286911, -0.1398003101348877, -0.4745202958583832, 0.010548972524702549, 0.34663721919059753, -0.4727174937725067, 0.477272629737854, 0.5458977818489075, -0.9158739447593689, -0.8213359117507935, 0.599557101726532, 0.5655355453491211, 0.0004736089613288641, -0.6488679647445679, 0.1719440221786499, 1.0388548374176025, 0.07329931855201721, 0.6961466670036316, -0.008975844830274582, -0.026360101997852325, 0.38967710733413696, 0.07093872874975204, -0.04780639708042145, 0.15407466888427734, 0.03348160535097122, 0.8601047992706299, -1.2180300951004028, -0.18182869255542755, -0.7925399541854858, 0.5604095458984375, 0.09014618396759033, -0.38611936569213867, 0.34695956110954285, 0.2283766120672226, -0.39443036913871765, 0.086814746260643, 0.4628778100013733, 1.3455466032028198, -0.8207204937934875, -0.31745645403862, -0.057153888046741486, -0.02049858495593071, 0.1880728155374527, -0.571708619594574, -0.4876617193222046, 0.37889859080314636, -0.8603056073188782, -0.19883084297180176, 0.11084412038326263, 0.20021983981132507, 1.4103690385818481, 0.5687711834907532, 0.19617965817451477, 0.5791023969650269, -0.21105283498764038, -1.4281684160232544, 0.17693521082401276, 0.6606403589248657, 0.6674507260322571, -0.13370294868946075, -0.6906518340110779, -0.07285695523023605, -0.16268762946128845, 0.20300742983818054, -0.40793249011039734, 0.14430205523967743, 0.8271179795265198, 0.02039572410285473, -0.8271310329437256, 0.8341664671897888, 1.049569845199585, 1.4826412200927734, 0.4212397634983063, -0.1993122398853302, -0.5756118893623352, 0.2900029420852661, -1.1519006490707397, 0.509280264377594, 0.9066978096961975, 0.3518759310245514, 1.305216670036316, -1.2127114534378052, -0.3014512360095978, 0.5498587489128113, 0.3104862570762634, 0.3003681004047394, 0.6733793616294861, 0.407344788312912, -0.050001539289951324, 1.0646976232528687, 0.10300123691558838, -0.6752936244010925, -0.022520044818520546, -0.11279382556676865, 0.08437585830688477, 0.6513634920120239, -1.0166822671890259, 0.5226106643676758, -0.9642539620399475, 0.3470337390899658, -0.4776982367038727, -0.7028475999832153, 0.14974059164524078, 0.3526255786418915, 0.5731439590454102, 1.2540398836135864, -0.31933629512786865, -1.3035283088684082, 0.2854832410812378, -0.7910289764404297, -0.16131126880645752, -0.40332889556884766, -0.011625564657151699, -0.6776787638664246, -0.6841599941253662, -0.09596752375364304, 0.5418822765350342, 0.20181536674499512, 0.18552426993846893, -0.3287583887577057, -1.131161093711853, 0.3368518352508545, 0.5784792304039001, 1.0696873664855957, 0.7474607825279236, 0.08499404788017273, 0.20852068066596985, 0.5874314904212952, -0.5318337678909302, -0.0008594999089837074, 0.3708387315273285, -0.5860657691955566, -0.1711118072271347, -1.361633062362671, -1.1959075927734375, 0.5579341650009155, 0.20383547246456146, 0.2444320023059845, 0.08703865110874176, 0.8735837340354919, 1.3187294006347656, -0.5684823393821716, -0.5157642960548401, 0.24203212559223175, -0.5282004475593567, 0.1911715716123581, 1.002106785774231, -0.509765625, -0.3252338767051697, -0.6453722715377808, -1.4305975437164307, 1.1124377250671387, -0.11975841969251633, -0.43263933062553406, 0.44316422939300537, 0.4242347776889801, 0.5688775181770325, 0.9684128761291504, -0.5553756952285767, 0.3764480948448181, -0.03497232496738434, 0.2719118297100067, -1.8078817129135132, 0.15849293768405914, 0.4894113838672638, 0.09292241185903549, -0.6283169388771057, 0.4445951581001282, 0.017509043216705322, -0.4087633788585663, 0.044510502368211746, -0.35914352536201477, 0.887589156627655, 1.3539807796478271, 0.4692647159099579, -0.6815687417984009, 0.4066309332847595, -0.4789638817310333, -0.6014671921730042, 0.05956599488854408, 0.5146140456199646, 0.9559245705604553, -0.2460322231054306, -0.11672503501176834, -0.3065800666809082, -0.5067967772483826, 0.10958632826805115, -0.5017414093017578, 1.3838798999786377, 0.1918203979730606, -0.17828184366226196, -0.27919405698776245, -0.014651878736913204, -0.639246940612793, -0.15524005889892578, 0.6916107535362244, 0.5420961380004883, -1.0782614946365356, 0.39306408166885376, 0.2395281344652176, -0.8028966784477234, -0.21491850912570953, -0.035423584282398224, -0.12464582920074463, -1.1585801839828491, -0.7701596021652222, -1.2728526592254639, 0.24949009716510773, 0.6118958592414856, -0.2749096155166626, -0.29377904534339905, 1.128692388534546, -1.768297553062439, 0.33803707361221313, 0.2817036211490631, -1.115239143371582, -0.5095372200012207, -1.193111777305603, 1.0556190013885498, -0.4818583130836487, 0.9355241656303406, 0.5889578461647034, 1.5324070453643799, -1.3865665197372437, -1.1520992517471313, -0.6522437334060669, -0.21007737517356873, 1.0360900163650513, 1.206563115119934, -0.7673304677009583, 0.49248477816581726, 0.9576671123504639, -0.3619198799133301, -0.4817294776439667, 0.6012435555458069, -0.8864187002182007, 0.4499577283859253, -0.19811663031578064, 0.5316792726516724, -0.02772192843258381, 0.8838456869125366, -0.18188031017780304, 1.3086045980453491, 0.22508522868156433, 1.6652486324310303, -0.7417767643928528, -0.8713052868843079, -0.0925152450799942, 0.4365674555301666, -1.3635895252227783, -0.9636940360069275, 0.24001021683216095, -0.1081455871462822, -0.8521863222122192, 0.27329930663108826, 0.4214639961719513, -0.5633363127708435, -0.7671195268630981, -1.2481147050857544, 0.6194326281547546, -0.757652223110199, 0.0555601641535759, -0.08377080410718918, -0.5470876097679138, -0.4819054901599884, 0.06775470077991486, 0.4392660856246948, -1.8783788681030273, -0.08163092285394669, 0.4269614517688751, 0.38309359550476074, -0.9312461614608765, 0.8860206007957458, 0.699512243270874, 0.33083775639533997, -0.7429352402687073, 1.1129181385040283, 1.1031171083450317, -0.4434748589992523, -0.5112346410751343, 0.023789772763848305, 0.36012816429138184, 0.8831425309181213, -0.648641049861908, -0.41379332542419434, -0.6880841255187988, 0.6399202942848206, 0.5698778629302979, 0.14792712032794952, -0.550096333026886, -0.1622716337442398, -0.4678267240524292, 0.6588197946548462, 1.0411370992660522, -0.7276505827903748, -0.6692066788673401, 1.0933730602264404, -0.19337809085845947, -0.45218899846076965, 0.2183178812265396, 0.960379421710968, 0.7001737356185913, -0.24086794257164001, 0.1994878053665161, 0.9480139017105103, -0.2997705042362213, 0.2953268587589264, -0.3585333228111267, -0.03120291605591774, -0.03848878666758537, -0.24346312880516052, -0.7828132510185242, -0.8827076554298401, -0.23120102286338806, -1.0458872318267822, -0.3023374080657959, -1.400740385055542, -1.1953529119491577, -0.20592227578163147, 0.04629021883010864, -0.6212794780731201, -0.34557026624679565, 0.34847626090049744, -0.6416305899620056, -0.389811635017395, 1.1880615949630737, -0.5345791578292847, 0.7536961436271667, -0.3549690842628479, -0.43895456194877625, -1.1577274799346924, 0.09869246184825897, -0.2680632174015045, 0.3263769745826721, -0.5017869472503662, -0.7905066013336182, -0.3244825601577759, -0.5756843686103821, -0.7761742472648621, 0.524747908115387, -0.8963369131088257, 0.0848555713891983, 0.0445244126021862, -0.6393629312515259, -0.15863320231437683, 1.162906289100647, 0.4343823492527008, 0.04860718920826912, -0.6454870700836182, -0.6003403663635254, 0.5620259046554565, -0.29815325140953064, 0.7506765723228455, -0.7749742269515991, 0.7026433348655701, 0.4659711718559265, -0.12615320086479187, -0.3565198481082916, -1.008961796760559, 0.7301778793334961, -0.0974586009979248, 0.29249778389930725, 0.27367404103279114, -0.4138003885746002, -0.3820096552371979, -1.1881331205368042, 0.576352596282959, 0.2238478660583496, -0.08421739935874939, 0.26522403955459595, -0.6589806079864502, -0.1408177763223648, -0.3371596336364746, 0.5483800172805786, 0.9472025632858276, -0.44578924775123596, 0.03875880688428879, -0.6334022283554077, -0.9535449147224426, -0.23486445844173431, 0.1977739781141281, -0.15466353297233582, 0.13754390180110931, 1.6687712669372559, 1.305503010749817, 0.6848632097244263, 0.009510054253041744, 0.09882766008377075, 0.8731308579444885, -0.8618261814117432, -0.41269055008888245, -0.9323133826255798, -0.46198537945747375, -0.04819043353199959], [0.223783940076828, 1.6408588886260986, -1.905994176864624, -0.5335535407066345, 0.3354435861110687, -0.14486221969127655, 1.1445494890213013, -0.8044408559799194, -0.6845272779464722, -0.7459452748298645, 0.31923285126686096, 0.10852780193090439, 0.8266927599906921, 1.24640691280365, 0.6768893599510193, 0.5585073828697205, 1.4914745092391968, -0.8625466227531433, 0.11394134908914566, 1.2514309883117676, 1.0751619338989258, -0.7665935158729553, 0.2638067901134491, -0.2661730945110321, -0.7745169997215271, 0.5343462228775024, -0.5480580925941467, -0.6266059875488281, -0.9043478965759277, -0.915236234664917, 1.89826238155365, -0.21895116567611694, 0.25950029492378235, -0.34805524349212646, -1.2521586418151855, -1.3560322523117065, 1.1022076606750488, -0.06072835996747017, 0.07686524838209152, -0.3688439130783081, 1.4533374309539795, 0.02362910844385624, 0.05290095508098602, -2.007230281829834, 0.29826393723487854, -0.353165864944458, 1.3433805704116821, -0.9127489328384399, 0.010672850534319878, -0.7725718021392822, 0.9161708354949951, -0.04499762877821922, -0.24192652106285095, 1.2146155834197998, 0.7842905521392822, -0.14950911700725555, 0.369145005941391, 0.7003597617149353, 0.8181735277175903, -0.49630919098854065, 0.648674726486206, 0.803087055683136, -0.06471002101898193, 1.2980828285217285, -0.03694216534495354, -0.20107722282409668, -0.3623233139514923, 0.14278407394886017, 0.07766816765069962, 0.027319155633449554, 0.39462193846702576, -0.17127294838428497, -0.08351444453001022, -0.300910621881485, -0.6643621325492859, 0.2985679507255554, 0.21644429862499237, 0.5857812762260437, 0.008635974489152431, 0.5757829546928406, -0.488014817237854, 0.06513116508722305, 1.070605754852295, -0.4867843687534332, 0.6483554840087891, -0.0399198904633522, 0.2469426393508911, 0.189395934343338, -0.6066616177558899, 1.5250887870788574, -0.4108180105686188, 0.27845075726509094, -0.05645902082324028, -0.2500813603401184, -0.3795274496078491, -0.2244473397731781, -0.10941662639379501, -0.0035919658839702606, -0.4568309187889099, -0.9264181852340698, -0.6819793581962585, -0.21363839507102966, -0.1182067021727562, -0.024201536551117897, -0.611262857913971, 1.5002778768539429, 0.007552579045295715, -0.1495586633682251, -0.6627317070960999, -0.06336827576160431, -0.6646906137466431, 0.34746167063713074, -0.1508462280035019, -0.5208930969238281, -0.7767089009284973, 0.3840465545654297, 1.993534803390503, -0.013252363540232182, 0.8377004265785217, 0.34244421124458313, -0.3007007837295532, -1.3301373720169067, 0.5275028944015503, -0.24277223646640778, 0.8214671015739441, 0.033802881836891174, -0.9054983258247375, -1.0225435495376587, 0.6488246321678162, -0.31172114610671997, 0.12347584962844849, -0.07865049690008163, -0.10308454930782318, 0.6675304174423218, -0.6962514519691467, 0.9069008231163025, -0.46237075328826904, -0.7668641805648804, -0.19451940059661865, -0.08961217105388641, 0.2679646611213684, -0.4150488078594208, -0.22265608608722687, -0.1734113246202469, 0.12137358635663986, -0.36923670768737793, 0.6568549871444702, -0.16874456405639648, -0.5875096321105957, 0.16309763491153717, -1.1587049961090088, -0.12937113642692566, -0.03662772849202156, 1.1069844961166382, 0.15279340744018555, -0.318055659532547, 0.5236577987670898, -0.01744796149432659, 0.6381212472915649, -0.21621201932430267, 0.834987223148346, -0.10771564394235611, -1.1331504583358765, 0.26446816325187683, 0.4338679015636444, -0.5443010926246643, 0.9247032403945923, 1.0930728912353516, -0.27652114629745483, 0.27546072006225586, -0.4176611602306366, -0.2160310447216034, -0.7379316687583923, 1.2567238807678223, 0.28442710638046265, -0.17741426825523376, 2.1626336574554443, -0.5771653652191162, -1.1546130180358887, -0.93159019947052, -0.1629507690668106, 0.1121116653084755, -0.6685222387313843, 0.5214457511901855, 0.08775240182876587, -0.12534189224243164, 0.6831420660018921, -0.0885048508644104, -0.46028822660446167, -1.0015150308609009, 0.1834515482187271, -0.3029935956001282, -0.853027880191803, 0.28118300437927246, -0.405160129070282, -0.5171830654144287, 0.8769360184669495, -0.6515947580337524, -0.7247826457023621, 0.04272015392780304, 0.14069753885269165, -0.23695452511310577, -0.5004808902740479, 0.3929521143436432, -0.13804945349693298, 0.7016765475273132, -1.3445932865142822, 0.9740779399871826, -0.7815777063369751, 0.14969277381896973, 1.1734973192214966, -0.4097329080104828, -0.3191621005535126, 0.7446912527084351, 0.12639933824539185, -1.8497494459152222, 0.6324004530906677, 1.0105130672454834, -0.7054038047790527, 0.3081630766391754, -0.03483384847640991, -0.04578619822859764, 0.9676409959793091, -0.35729172825813293, 0.6875982284545898, -0.21607118844985962, -0.09495922178030014, -0.9484056830406189, -0.8337029218673706, -0.05037379264831543, -0.23232950270175934, -1.0208834409713745, 0.09808981418609619, -0.32339930534362793, -0.5221835374832153, -0.3598470985889435, -0.8981361985206604, 0.012725895270705223, 0.7226893901824951, 1.657632827758789, 0.3212663233280182, 0.5177586674690247, 0.3407215178012848, -0.0895659402012825, -0.5090640187263489, -0.2708950638771057, 1.3272920846939087, -0.1286877691745758, -0.10234030336141586, 1.1389195919036865, 0.7158918380737305, -0.11076591908931732, -0.3153785467147827, -0.5452244877815247, 0.6514793038368225, -0.6360821723937988, -0.5207223296165466, 0.4787036180496216, -1.0339435338974, 0.686130940914154, 0.4809432625770569, -0.756280779838562, -0.020112793892621994, -0.04632362723350525, 0.028015587478876114, -0.7469008564949036, -0.9641525149345398, -0.9061402678489685, 0.02772165834903717, -0.03683178126811981, 0.012393328361213207, -0.052706316113471985, -0.9724348187446594, 0.319396436214447, -0.09912564605474472, 0.23159539699554443, 0.15713182091712952, 0.46563634276390076, 0.004030002746731043, 1.7052252292633057, -0.24753235280513763, -1.5839033126831055, -0.42172831296920776, 0.1462329477071762, 1.110241413116455, 0.13256697356700897, 0.0619254894554615, -0.21448929607868195, 0.02577359788119793, 0.10171553492546082, 0.2129727602005005, 0.7977482080459595, -0.11186390370130539, 0.01080282311886549, 0.14439427852630615, 0.6486626267433167, 0.6352195739746094, -0.9558141231536865, -0.7889522910118103, -0.6078100800514221, 0.9163474440574646, 1.3999511003494263, 1.4713000059127808, 0.5718491077423096, 0.34913143515586853, 0.6047583818435669, -0.5675092935562134, -0.38028639554977417, -0.7287707328796387, -0.8048379421234131, -0.03086516261100769, -0.7426269054412842, -0.7339859008789062, 0.08121156692504883, -0.4708646833896637, 1.0096232891082764, 0.35501551628112793, 0.6100495457649231, 1.3212882280349731, -0.16229012608528137, -0.6137396097183228, -0.05956991761922836, -0.31223857402801514, -0.8555968403816223, 0.7703280448913574, 1.433779001235962, -0.5490541458129883, 0.17274056375026703, -0.06353704631328583, 0.22820055484771729, 0.4702152609825134, 0.16733095049858093, 0.1151728630065918, -1.442823886871338, -0.5218971371650696, -0.9973374605178833, 1.064672589302063, -0.4132837653160095, 0.40510496497154236, -0.5088610053062439, 0.01525785494595766, 0.41894277930259705, 0.8759260177612305, -0.09415619820356369, 0.44024813175201416, -0.927563488483429, -0.006754178553819656, -0.32658490538597107, -0.12079863995313644, -0.04600182920694351, -0.243275985121727, -0.599514365196228, -0.41405847668647766, 0.17902594804763794, -0.558556079864502, 0.21400906145572662, 0.05862410366535187, 0.41716885566711426, 0.10154827684164047, -0.10155130177736282, 0.4083564281463623, 0.0975579023361206, -0.20682275295257568, -0.6960410475730896, 0.5856395959854126, 0.6602485179901123, 0.7437082529067993, 0.038005221635103226, -0.0009834812954068184, 0.37077796459198, -0.23642173409461975, 0.26640745997428894, -0.044586967676877975, 1.595202922821045, 0.9205173254013062, 0.06656615436077118, 0.6859173774719238, -0.38672733306884766, -0.06030171737074852, -0.5342773795127869, 0.6628255248069763, 0.396186500787735, -1.2863744497299194, -1.0149240493774414, 0.4768838882446289, -0.1361997127532959, -0.38959258794784546, -0.5699226260185242, -0.4463426470756531, 0.595023512840271, -0.06392110884189606, 0.08483313024044037, -0.15041692554950714, -0.15961650013923645, 0.5444642901420593, -0.5893785953521729, 0.5736632943153381, 0.2990514636039734, -0.06594420969486237, 0.6522898077964783, -0.9303545355796814, -0.3845054805278778, -0.45833343267440796, 0.1433417648077011, 0.7042527198791504, -0.4731151759624481, 0.31225526332855225, -0.48617345094680786, -0.7291596531867981, -0.06429092586040497, 0.500985324382782, 1.4012234210968018, -0.24531979858875275, -0.26893433928489685, 0.7207968831062317, -0.82327800989151, -0.18896086513996124, -0.4080217480659485, -0.6537728309631348, 0.41806089878082275, -0.6488392353057861, 0.08434482663869858, -0.1311204433441162, -0.11764498800039291, 0.7641821503639221, 0.22338414192199707, 0.790884256362915, 0.3788833022117615, -0.059499774128198624, -1.7304531335830688, 0.18827852606773376, 0.3871263861656189, 0.2732742130756378, -0.062069352716207504, -0.9236437082290649, 0.39237943291664124, -0.3022458255290985, 0.31398916244506836, -0.10979042202234268, 0.33432629704475403, 0.4636828601360321, -0.35611358284950256, -0.015777472406625748, 0.6988735795021057, 0.8572723269462585, 1.3934426307678223, 0.845054566860199, -0.6719116568565369, -0.7103091478347778, 0.5917989611625671, -0.4944198727607727, 0.9695942997932434, 1.3734245300292969, 0.3200845420360565, 0.9439675211906433, -0.9602206945419312, -0.6960617899894714, 0.6899664402008057, 0.054350268095731735, 0.19890201091766357, 0.7266004085540771, 0.1968769133090973, -0.617091178894043, 0.2200506627559662, -0.0733138844370842, -0.2023870050907135, -0.07175528258085251, -0.0342506468296051, -0.4457041323184967, 0.7997535467147827, -0.8344810009002686, -0.15245738625526428, -0.726373016834259, 0.2591429352760315, -0.38194963335990906, 0.25024327635765076, -0.0042205690406262875, 0.5348163843154907, 0.5886260867118835, 0.9692444801330566, -0.35987743735313416, -0.8189254999160767, 0.27484625577926636, -1.1987686157226562, 0.4632857143878937, -0.34132128953933716, -0.16823707520961761, -0.6613360643386841, -0.17447540163993835, 0.375728040933609, 0.5025748610496521, -0.17522548139095306, -0.23881566524505615, 0.23639097809791565, -0.7384471297264099, 0.38978311419487, 1.1901315450668335, 0.8762086033821106, 0.3372911810874939, -0.2801247537136078, 0.280798077583313, 0.9901503920555115, -0.41124215722084045, -0.3031935691833496, 0.5377979278564453, -0.47414517402648926, 0.10637335479259491, -1.196205496788025, -0.7165939807891846, 0.6381479501724243, 1.2766318321228027, 0.47605350613594055, 0.572499692440033, 0.7247911691665649, 1.047805905342102, -1.0325665473937988, 0.39195993542671204, 0.3468945026397705, -0.5013326406478882, 0.22456727921962738, 0.4254551827907562, -0.11228778213262558, -0.5117509961128235, -0.7943809628486633, -1.6275969743728638, 1.0768165588378906, -0.41304323077201843, -0.5383461713790894, 0.7421115636825562, 0.643166720867157, 0.5045324563980103, 0.8993109464645386, -0.7789871692657471, 0.574245274066925, -0.5283935070037842, -0.09310103207826614, -1.8017507791519165, 0.7231965065002441, 0.5302459001541138, -0.30597153306007385, -0.9027496576309204, 0.27650752663612366, -0.601108193397522, 0.09252671897411346, -0.36621177196502686, 0.22589020431041718, 0.4229293167591095, 0.7463818788528442, 0.2334180325269699, -0.4513606131076813, 0.641735851764679, -0.9678261876106262, 0.012489665299654007, -0.1639818698167801, 0.6798758506774902, 0.5097708702087402, -0.34734076261520386, -0.04786005988717079, 0.10584544390439987, 0.23042963445186615, 0.1584944725036621, 0.00027004117146134377, 0.8029073476791382, 0.15877558290958405, 0.6981062293052673, -0.0959501788020134, 0.08952075988054276, -0.1993112862110138, -0.44256237149238586, 0.3628601133823395, 0.7360738515853882, -1.0869455337524414, 0.36370396614074707, 0.4736228883266449, -0.8129611611366272, -0.6075481176376343, -0.34000536799430847, -0.1639537662267685, -0.7631270289421082, -0.3316745460033417, -1.0654842853546143, 0.5927563309669495, 0.15825213491916656, 0.29765671491622925, 0.5822883248329163, 0.5300413370132446, -1.0508172512054443, 0.03324419632554054, 0.0028959307819604874, -1.2853624820709229, -0.08314378559589386, -1.1320948600769043, 0.8896257877349854, -0.3201272487640381, 0.3462480306625366, 0.5722026228904724, 0.9945314526557922, -1.6036442518234253, -0.7171213030815125, -0.6718462109565735, -0.5785715579986572, 0.9945598840713501, 0.6708915829658508, -1.1770955324172974, 0.9528269171714783, 0.7758546471595764, -0.8301202058792114, 0.24852235615253448, 0.2614649832248688, -0.9470168948173523, 0.4380783438682556, -0.42715099453926086, 0.8292645812034607, 0.12897145748138428, 1.8492106199264526, -0.13616818189620972, 0.7378455400466919, 0.3580612242221832, 1.2764333486557007, -0.3954443633556366, 0.34818294644355774, -0.3438303768634796, 0.4902695417404175, -0.33752796053886414, -0.8777762055397034, 0.15383446216583252, -0.40441426634788513, -1.2455579042434692, 0.8050032258033752, 0.8508511781692505, -0.4348269999027252, -0.16193170845508575, -0.7413443326950073, 0.9684748649597168, -0.7348237037658691, -0.4137873649597168, -0.05714451149106026, -0.12365888804197311, -0.4561322331428528, -0.30482131242752075, 0.48174139857292175, -1.6327581405639648, -0.17593297362327576, 0.674983561038971, 0.21957190334796906, -0.8240710496902466, 0.3638427257537842, 0.7602611780166626, 0.7166702151298523, -0.7890433073043823, 1.3322995901107788, 1.0754733085632324, -0.7854852080345154, -0.7193329930305481, -0.23565898835659027, 0.26015278697013855, 0.3341006934642792, -0.7656455039978027, -0.8481525182723999, -0.6372551918029785, 0.6157156229019165, 0.30715620517730713, -0.08419864624738693, -0.5342027544975281, -0.5360484719276428, -0.25751549005508423, 0.2949735224246979, 1.4593229293823242, -1.0532292127609253, -0.824917733669281, 0.8362098336219788, -0.009928124956786633, -0.44773754477500916, 0.9781385660171509, 0.6849470734596252, 0.3493402302265167, 0.031228559091687202, -0.1788732409477234, 0.8753001093864441, -0.11312610656023026, 0.7416834831237793, -0.48964983224868774, 0.4716932773590088, 0.10949128866195679, -0.5156500935554504, -0.8618263006210327, -0.6595259308815002, -0.5948498249053955, -0.8718151450157166, 0.07526034861803055, -1.210679531097412, -0.617071807384491, 0.15653479099273682, 0.22110459208488464, -0.6379753351211548, 0.027265815064311028, 0.521936297416687, -0.7992683053016663, -0.5764564275741577, 0.9707263708114624, 0.09601818770170212, 0.6366147994995117, 0.15823401510715485, -0.08299019187688828, -0.9869465827941895, 0.09601815789937973, 0.6851204633712769, 0.02532597817480564, -0.3850075602531433, -0.5330888628959656, 0.0594525970518589, -0.19123543798923492, -0.33545467257499695, 0.422686368227005, -1.2252397537231445, 0.17735348641872406, 0.3909153342247009, -0.8445778489112854, -0.5029340386390686, 0.2592242956161499, -0.06059078872203827, 0.1497592180967331, -1.0698539018630981, -0.6546205878257751, 0.971233069896698, -0.5888224840164185, 1.236530065536499, -0.19351841509342194, 0.5007064938545227, 0.6793875694274902, -0.7375560402870178, -0.5494951009750366, -1.0877548456192017, 0.6195430159568787, 0.017159409821033478, 0.37663042545318604, -0.1294894963502884, 0.17619170248508453, -0.5591458678245544, -1.7987536191940308, 0.4111795425415039, 0.3088141977787018, -0.2411184161901474, 0.20516470074653625, -1.453272819519043, -0.35400569438934326, -0.8221051692962646, 0.3789095878601074, 1.2510323524475098, -0.013829371891915798, 0.13526734709739685, 0.14221426844596863, -1.5682138204574585, -0.19341351091861725, 0.3649194538593292, -0.3332909643650055, -0.21933671832084656, 1.1906185150146484, 0.6609102487564087, 0.39059674739837646, 0.3287186026573181, 0.12508682906627655, 0.5435371398925781, -0.8962352275848389, -0.05869095027446747, -0.4793241024017334, -0.30772584676742554, -0.19011342525482178], [-0.04780071973800659, 1.4449114799499512, -2.48852276802063, -0.24024119973182678, 0.5453075170516968, 0.6418695449829102, 1.0563198328018188, -0.32563015818595886, 0.1692618578672409, -0.24677737057209015, -0.37727969884872437, -0.47688478231430054, 0.37068477272987366, 0.6302029490470886, 0.3524976968765259, 0.780588686466217, 0.48452019691467285, 0.27359503507614136, 0.7370282411575317, 1.1857062578201294, -0.35698387026786804, -0.929571270942688, -0.23085403442382812, 0.41641750931739807, 0.018305517733097076, 0.5161450505256653, -0.5059200525283813, -0.494846373796463, -1.2253193855285645, -0.721591591835022, 0.8609461188316345, -0.38033053278923035, 0.20696578919887543, -0.5203683972358704, -1.181405782699585, -1.086002230644226, 1.5599563121795654, 0.6773366928100586, 0.3707354664802551, 0.11576010286808014, 1.8884204626083374, 0.41888102889060974, 0.33159515261650085, -2.009134531021118, 0.5337947010993958, 0.3258076608181, 0.8983165621757507, -0.649513840675354, 0.04359238222241402, -0.18487699329853058, 0.4008055329322815, -0.8227813243865967, 0.6638901233673096, 1.0892045497894287, 1.1043566465377808, -0.6392347812652588, 0.14130501449108124, 0.9067656397819519, 0.1602104753255844, -0.10759471356868744, 0.9712914824485779, 0.16740292310714722, -0.47761768102645874, 0.5240591168403625, 0.5119963884353638, -0.548711895942688, -0.10282756388187408, 0.5096548199653625, 0.31244099140167236, 0.5548965334892273, 0.8191315531730652, 0.0739598199725151, -0.8748077154159546, 0.13315729796886444, -1.6745625734329224, 0.5167438983917236, 0.5475961565971375, 0.9308159351348877, -0.011427955701947212, 0.6838118433952332, -1.0006040334701538, 0.06092052906751633, 0.7114572525024414, -0.9583011269569397, 0.48564770817756653, 0.3737116754055023, 0.45462357997894287, -0.46983057260513306, -0.015001263469457626, 1.7427328824996948, -0.04948178306221962, 0.1422514170408249, 0.5146074891090393, -0.09907939285039902, -0.07056281715631485, 0.023402607068419456, -0.512403130531311, -0.04669809713959694, -0.3677661418914795, -1.068647861480713, -0.6241647005081177, -0.7427720427513123, 0.678922176361084, -0.6135216951370239, -0.9374215006828308, 1.3079326152801514, 0.5798127055168152, -0.27818062901496887, -0.444956511259079, -0.049046460539102554, -0.7079986333847046, 0.24919474124908447, -0.6996816396713257, -1.376657247543335, 0.1406041532754898, 0.6580634713172913, 1.3035413026809692, -0.027110399678349495, 0.6206389665603638, 0.681372880935669, -0.5759826302528381, -0.4113524556159973, 0.22209948301315308, 0.40128111839294434, 0.7999842166900635, 0.8666185140609741, -0.8116123080253601, -0.8227653503417969, 0.5757294297218323, -0.14740310609340668, 0.45326849818229675, 0.24250823259353638, -0.09416995197534561, 0.618968665599823, -0.4320315718650818, 1.1329644918441772, -0.48273414373397827, -0.3153044581413269, -0.12663458287715912, 0.2776767313480377, 0.4688163697719574, -0.0846010148525238, -0.029225120320916176, -1.1955857276916504, 0.18632195889949799, -0.4690772593021393, 0.5996710658073425, -0.14598730206489563, -1.071081519126892, 0.17922528088092804, -1.5411558151245117, -0.16033834218978882, 0.08065146952867508, 1.3767584562301636, 0.793190598487854, 0.13757982850074768, 0.5045250654220581, 0.3909291923046112, 0.6134613752365112, 0.478429913520813, 0.8745729923248291, 0.5565826892852783, -1.040776252746582, 0.9946959614753723, 0.109957255423069, -0.3601752817630768, 0.6885559558868408, 0.9407901167869568, 0.06852113455533981, 0.987515926361084, -0.7385547757148743, -0.29948580265045166, -0.23421525955200195, 0.951013445854187, 0.8308868408203125, -1.0976530313491821, 1.2666432857513428, -0.7165492177009583, -1.3812811374664307, -1.366898536682129, 0.19914363324642181, 0.008436772972345352, 0.6668906211853027, 0.03303109481930733, 0.03878059983253479, -0.5393388271331787, 0.3471255600452423, -0.30145442485809326, -0.7827953696250916, -0.7774938941001892, -0.36164844036102295, -0.22902899980545044, -1.2039638757705688, -0.039469100534915924, -0.523993194103241, -1.0815606117248535, 0.8856101632118225, -0.9079304337501526, -0.42554280161857605, 0.03517330437898636, 0.23443038761615753, -0.6436140537261963, -0.4211033880710602, 0.657458484172821, -1.1186680793762207, 1.2688865661621094, -1.938042402267456, 0.9717721939086914, -0.3349750339984894, -0.09471794217824936, 1.0495301485061646, -0.2596096992492676, -0.6006448864936829, 0.449899286031723, 0.32510048151016235, -1.7736800909042358, 0.42266666889190674, 0.3412839472293854, -0.36836865544319153, 0.02036285772919655, 0.049442846328020096, -0.07717075943946838, 0.17415563762187958, 0.0001053917221724987, 0.5039657354354858, 0.268888920545578, -0.3052363693714142, -0.6281769871711731, 0.09478621929883957, -0.006750632077455521, -0.4095604717731476, -1.228446125984192, 0.4801352620124817, 0.9036014080047607, -1.132603645324707, 0.32426971197128296, 0.20211416482925415, 0.38514649868011475, 0.5551291704177856, 0.9400497078895569, 0.7561768293380737, 0.5907511711120605, 0.3103664815425873, -0.18599656224250793, -0.4157039523124695, 0.06707926094532013, 1.0266703367233276, -0.5207257270812988, 0.1682996153831482, 1.3554270267486572, 1.0372276306152344, -0.0037139474879950285, 0.45601797103881836, 0.13229620456695557, -0.1336708962917328, -0.2768797278404236, -0.6958818435668945, -0.041524846106767654, -0.515238344669342, 1.4162819385528564, 0.8099117875099182, -0.6626237630844116, -0.4639684557914734, -0.41748112440109253, -0.1132492870092392, 0.007323520258069038, -0.6325069069862366, -0.24449095129966736, -0.12579578161239624, 0.7278763055801392, 0.0998796671628952, 0.20844793319702148, -0.2722250521183014, 0.5285595059394836, -0.060524147003889084, -0.8434732556343079, -0.5120487213134766, -0.06204234063625336, -0.14485272765159607, 1.1893680095672607, 0.29675179719924927, -1.3137946128845215, -0.34302958846092224, 0.06007326766848564, 0.551848292350769, 0.5336223840713501, -0.09816018491983414, 0.4171411991119385, 0.39544349908828735, -0.33798110485076904, 0.2031572312116623, 0.3363315165042877, 0.37886083126068115, 0.1576884239912033, -0.05123875290155411, 0.2580535113811493, 0.6445117592811584, -1.0887070894241333, -0.8958901166915894, -0.5441226959228516, -0.1750410944223404, 1.5430071353912354, 1.3243319988250732, 0.8626894950866699, 0.24955953657627106, -0.19564591348171234, 0.035907141864299774, -0.423888236284256, -0.7179052233695984, -0.8926146626472473, -0.6067714691162109, -0.9510863423347473, -0.6016289591789246, 0.06217202916741371, -0.22186759114265442, 0.5789292454719543, -0.26785165071487427, 0.1725177764892578, 1.3986902236938477, -0.7363059520721436, -0.780694842338562, -0.2703699469566345, -0.38519638776779175, -0.7510941624641418, 0.4688020944595337, 1.153646469116211, -1.0717954635620117, -1.007300853729248, 0.12020984292030334, -0.16056102514266968, 0.7828655242919922, -0.26984599232673645, 0.37637805938720703, -0.7882121801376343, -0.9585683345794678, -0.8948668241500854, 1.3026840686798096, -0.05467098206281662, -0.010312147438526154, -0.3513057827949524, 0.25275030732154846, -0.2379101812839508, -0.038328710943460464, -0.5514739751815796, 0.17856426537036896, -0.9070250988006592, -0.16159464418888092, -0.07266727834939957, 0.8625086545944214, 0.4249863624572754, -0.8070025444030762, -0.7579049468040466, -0.23080995678901672, -0.0665174201130867, -0.3303894102573395, 0.6588264107704163, 0.33439022302627563, 0.6952638030052185, 0.09889762848615646, 0.5003912448883057, 0.47622352838516235, 0.08573652058839798, -0.3789823353290558, -1.4712156057357788, 0.537761390209198, 0.698843777179718, 1.087009072303772, 0.07351842522621155, 0.37742653489112854, 0.0949506014585495, 0.18596796691417694, 0.3433922529220581, -0.13927660882472992, 1.2503677606582642, 0.06608612835407257, 0.24802738428115845, -0.4124310612678528, -0.7548140287399292, 0.25440168380737305, -1.0170034170150757, 0.1063728779554367, 0.31250351667404175, -0.6145434379577637, -0.4335060119628906, 0.7173288464546204, 0.04988093674182892, -0.2825769782066345, -0.17505116760730743, 0.03833288326859474, 0.9689927101135254, -0.05056801810860634, -0.5200206637382507, -0.4448435604572296, -0.018658889457583427, 0.7165647149085999, -1.0160760879516602, 0.3375595510005951, 0.09423045068979263, 0.5429407358169556, 1.1908366680145264, -1.2182809114456177, -0.44005435705184937, -0.6789238452911377, 0.5706539750099182, 0.7845646142959595, 0.11332163214683533, 0.16833290457725525, -0.6250888109207153, -0.156764954328537, -0.15594612061977386, 0.32986634969711304, 1.281893253326416, -0.36225810647010803, -0.10747827589511871, 0.3076666295528412, -0.1388404220342636, 0.4732251763343811, -0.8312579393386841, -0.05287995934486389, 0.3633498251438141, -0.4596993029117584, 0.25015485286712646, -0.4087110459804535, -0.39188653230667114, 1.399200677871704, -0.08815574645996094, 0.6042773723602295, 0.44908562302589417, 0.30355438590049744, -1.2751752138137817, 0.5232493877410889, 0.26701077818870544, -0.6283194422721863, -0.5934841632843018, -0.12413755804300308, 0.30582618713378906, -0.21612851321697235, -0.2193305343389511, 0.38772550225257874, 0.568527340888977, -0.21054919064044952, -0.28045621514320374, 0.006936696823686361, -0.19827218353748322, 0.7489478588104248, 1.3767000436782837, 0.659168004989624, -0.026772523298859596, -1.1016030311584473, 0.7826988101005554, -0.6556567549705505, 0.22843684256076813, 1.0476001501083374, 0.10523281991481781, 1.1702007055282593, -1.9569272994995117, -0.5539891123771667, 0.7577295303344727, 0.04662846401333809, 0.5694559812545776, 1.2073895931243896, -0.012292305938899517, -0.38928285241127014, 0.02614358440041542, -0.28901633620262146, 0.1954609453678131, 0.3397359848022461, -0.1977022886276245, -0.37750568985939026, 0.7640625834465027, -1.0407999753952026, 0.2881017327308655, -0.5420737862586975, -0.630128800868988, -0.5813275575637817, 0.12107264995574951, 0.6267247796058655, 0.41931673884391785, 0.4348906874656677, 1.2040126323699951, -0.820716381072998, -1.1632912158966064, -0.19394442439079285, -0.4258970618247986, 0.17779426276683807, -0.4220205247402191, 0.021153531968593597, -0.6974260210990906, -0.38473939895629883, -0.4627033770084381, 0.6770769357681274, -0.11011083424091339, -0.6997424960136414, -0.20616871118545532, -1.3870142698287964, 0.22779032588005066, 0.9883263111114502, 0.8205428123474121, 0.3442278504371643, -0.05105453357100487, 0.9371681809425354, -0.39178311824798584, -1.1616013050079346, -0.5251193642616272, 0.4273648262023926, -0.09121782332658768, -0.4468841552734375, -0.6520084738731384, -0.5660505890846252, 0.44162803888320923, 0.824012279510498, -0.1782597303390503, 1.3520399332046509, 0.7137619853019714, 1.0330138206481934, -0.43048688769340515, -0.7342941164970398, 0.20025451481342316, -0.5189496874809265, 0.2618587911128998, 0.8776659369468689, -0.0719069242477417, -0.6642207503318787, -0.20408278703689575, -1.44556725025177, 0.7847534418106079, -0.6642476320266724, -0.5597555041313171, 1.166504144668579, 0.20567816495895386, 0.3865378797054291, 0.6589027643203735, -0.6864600777626038, -0.014741349965333939, -0.20273452997207642, -0.5309440493583679, -1.4917566776275635, 0.282513827085495, 0.4080170691013336, -0.016482632607221603, 0.15881633758544922, 0.7187361717224121, -0.3131750822067261, 0.006695159710943699, -0.09585423767566681, 0.6154642105102539, 0.26475223898887634, 0.7877443432807922, -0.04741087183356285, -0.3265654444694519, 0.6031289100646973, -0.9974648356437683, -0.2841741442680359, -0.017395954579114914, 0.8338727951049805, 0.5198042988777161, -0.42099204659461975, 0.519970178604126, -0.3912508487701416, -0.13961093127727509, -0.265937477350235, -0.36993932723999023, 0.5163513422012329, 0.47556227445602417, -0.28293630480766296, 0.38638317584991455, -0.07022227346897125, -0.5420290231704712, -0.8611977696418762, 0.35469892621040344, 0.4949403405189514, -1.3482496738433838, 0.21247448027133942, 0.072696253657341, -0.7779107093811035, -0.48074376583099365, -0.34344786405563354, -0.3930172324180603, -1.053555965423584, -1.0419232845306396, -1.3449833393096924, 0.48391982913017273, 0.44318336248397827, -0.32059767842292786, 0.4628051519393921, 0.10311343520879745, -1.3110681772232056, -0.4212195873260498, -0.3223429322242737, -1.3634140491485596, -0.21428361535072327, -0.8916627764701843, 0.9620095491409302, 0.12284770607948303, 0.25518321990966797, 0.0951678603887558, 1.0976760387420654, -1.2745440006256104, -1.131877064704895, -0.8233119249343872, -0.6077193021774292, 1.3241772651672363, 0.08225631713867188, -1.1359975337982178, 1.110416054725647, -0.017069954425096512, -0.5842103362083435, 0.18808238208293915, -0.06913696974515915, -0.6889646649360657, 0.3579918444156647, -0.12436562031507492, 0.6386227011680603, 0.7169853448867798, 1.0630483627319336, 0.8859694004058838, 0.44787347316741943, 0.48335757851600647, 0.9605033993721008, -0.8275061249732971, -0.1863480508327484, -0.11292798072099686, 0.9198493957519531, -0.9635565280914307, -0.6939764022827148, 0.1481652855873108, -0.644228458404541, -0.7123307585716248, 0.3154577612876892, 0.8330323100090027, -0.6800493597984314, 0.5222387313842773, -0.46934863924980164, 0.01035867165774107, -0.8402443528175354, 0.42495718598365784, -0.06534016877412796, -0.26394760608673096, -0.29532477259635925, 0.011879414319992065, 0.6321703791618347, -1.7643388509750366, -0.129612535238266, 0.4155299663543701, -0.030487684532999992, -0.13895124197006226, 0.7875940203666687, 0.510742723941803, 0.5338520407676697, -0.8368116617202759, 1.6739636659622192, 0.9467403292655945, -0.7127021551132202, -0.22356939315795898, 0.6039880514144897, 0.3156200647354126, 0.38800403475761414, -0.9986683130264282, -0.36929839849472046, -0.908827006816864, 0.8180010318756104, 0.2767963707447052, 0.5600759387016296, -0.15533268451690674, -0.05806832015514374, -0.7271915078163147, 0.12234611064195633, 1.2775710821151733, -1.646533727645874, -0.40195563435554504, 1.1508234739303589, 0.40634217858314514, -0.5668181777000427, 0.37303081154823303, 0.8210957050323486, 0.1485634744167328, 0.03154631704092026, 0.5330976843833923, 1.1207611560821533, -0.9788063764572144, 0.4727696180343628, -0.02421599067747593, -0.30941399931907654, -0.07012920081615448, -0.16392920911312103, -1.2304884195327759, 0.6741566061973572, -0.7661271095275879, -1.1767761707305908, 0.3912036716938019, -1.0104970932006836, -0.937064528465271, 0.22179235517978668, 0.5597909092903137, -0.3123033046722412, -0.4236257076263428, 0.389566570520401, 0.2816261351108551, -0.09331687539815903, 0.4738999307155609, -0.2507970929145813, 1.6065757274627686, 0.19453850388526917, 0.21882741153240204, -1.2254334688186646, -0.1981624811887741, 0.7212276458740234, -0.16020210087299347, -0.48678991198539734, 0.143271341919899, 1.321535348892212, -0.11219718307256699, -0.7430413365364075, 0.16570468246936798, -0.4803808331489563, 0.2532544434070587, 0.6090124249458313, -1.0144761800765991, -0.32820621132850647, 0.2621091306209564, 0.5615270137786865, -0.4496881365776062, -0.43721121549606323, -0.46738433837890625, 0.5252431035041809, -0.3137381374835968, 0.585030734539032, 0.21999429166316986, 0.5566052198410034, 0.45510485768318176, -1.1380852460861206, -0.5582427382469177, -0.7132656574249268, 0.7416984438896179, 0.1247972920536995, 0.46787527203559875, -0.4703051745891571, 0.22820083796977997, -0.6334269046783447, -0.6484746336936951, 0.7431168556213379, 0.5446447730064392, -0.10751239210367203, -0.06699660420417786, -1.3832322359085083, -0.2693568766117096, -1.0899958610534668, -0.0480683296918869, 0.8856534361839294, 0.5240957736968994, -0.10490130633115768, 0.4188830852508545, -0.6843716502189636, -0.07296699285507202, -0.10240355879068375, -0.08673716336488724, 0.14076127111911774, 1.1821180582046509, 2.174536943435669, 0.4273016154766083, -0.08009454607963562, -0.4883878827095032, 0.38755494356155396, -0.9596745371818542, 0.1289587765932083, -0.6490786075592041, -0.6120767593383789, -0.37134090065956116], [-0.32367557287216187, 1.4956251382827759, -1.9744670391082764, -0.10916285961866379, 0.4658931493759155, 0.5696658492088318, 0.9674419164657593, -0.44141146540641785, 0.5885269641876221, -0.1743760108947754, -0.5096872448921204, -0.6448789834976196, 0.3274520933628082, 1.128267526626587, 0.22847607731819153, 0.5064164996147156, 0.7776390910148621, -0.3092539310455322, 1.0015588998794556, 1.4072202444076538, 0.8625220656394958, -1.2702218294143677, -0.4522782266139984, 0.6026080250740051, -0.08080793917179108, 0.4288923442363739, -1.0244534015655518, -0.3912792503833771, -1.1657450199127197, -0.8500221371650696, 1.101385474205017, -0.9535390734672546, 0.9965792298316956, 0.430658757686615, -1.1348317861557007, -0.08533704280853271, 1.861992597579956, 1.004381775856018, 1.3318443298339844, -0.5384254455566406, 1.5743610858917236, 0.3565683364868164, 0.335305780172348, -0.895368754863739, 0.4688233435153961, -0.2927147150039673, 0.7335897088050842, -1.2417261600494385, 0.45889905095100403, -0.07379066199064255, 0.15783774852752686, -0.4656467139720917, 0.6446748375892639, 0.7359883189201355, 1.4451090097427368, -0.4558216333389282, 0.28628820180892944, 0.19929473102092743, 0.3325415849685669, 0.03816809132695198, 1.0979889631271362, 0.3369012475013733, -0.528884768486023, 0.7026985883712769, 0.9316255450248718, 0.2585000991821289, 0.06253719329833984, 0.24344699084758759, 0.09367164969444275, 0.22945716977119446, 0.6419296264648438, 0.13335034251213074, -0.8704688549041748, 0.07286656647920609, -1.087927222251892, 0.5443737506866455, 0.502977728843689, 1.0666401386260986, 0.3238469660282135, 0.6157094836235046, -0.38857969641685486, 0.7833632826805115, 0.5353232026100159, -0.6794417500495911, -0.03248242288827896, 0.5199165344238281, 0.38534119725227356, -0.19725315272808075, -0.8869768381118774, 2.131916046142578, 0.44336211681365967, 0.5296573638916016, 0.560486376285553, 0.18754231929779053, 0.01998000778257847, -0.10255136340856552, 0.760925829410553, 0.14156685769557953, -0.42456963658332825, 0.11074448376893997, -0.8087745904922485, -0.8110911250114441, 0.0030317604541778564, -0.1652732491493225, -0.0607810840010643, 1.015543818473816, 0.8432112336158752, -0.13225868344306946, -0.881946861743927, -0.1474812626838684, -1.4710975885391235, -0.0790351927280426, -0.7251912355422974, -0.8357533812522888, -0.24085181951522827, 0.3713361322879791, 0.8919978141784668, -0.5332220792770386, 0.3179461658000946, 0.41821056604385376, -0.47136184573173523, -0.0930325984954834, -0.5665152072906494, 0.6642389893531799, 0.6191562414169312, 1.0208660364151, -1.4294795989990234, -1.2194501161575317, 0.2537113428115845, 0.00718032568693161, 0.008514052256941795, 0.0622783824801445, -0.06964405626058578, 0.8592707514762878, -0.22985650599002838, 1.691541314125061, -0.9362895488739014, 0.010873932391405106, 0.1970670074224472, -0.06775426119565964, 0.951000452041626, -0.7639073133468628, -0.2957158088684082, -0.5548620820045471, -0.07995311170816422, -0.34582042694091797, -0.09327590465545654, 0.5190356969833374, -1.3156728744506836, 0.9636650085449219, -0.9972381591796875, 0.4714973568916321, 0.4409160614013672, 0.9869028925895691, 0.5914456844329834, -0.18008913099765778, 0.4151715040206909, -0.3673602342605591, 0.23499110341072083, 0.5011849403381348, 0.08565504103899002, 0.7055522203445435, -0.7509503960609436, 0.7149768471717834, 0.1434280276298523, -0.4948710799217224, 0.4237121045589447, 0.7910556793212891, -0.11899146437644958, 1.1708132028579712, -0.11842593550682068, -0.5682189464569092, -0.6163651943206787, 0.33471179008483887, 1.0823602676391602, -0.7361181378364563, 1.2023577690124512, -0.5924144983291626, -1.346420168876648, -1.2953367233276367, 0.20648150146007538, -0.617133378982544, -0.10878700762987137, 0.47709760069847107, 0.055897220969200134, -0.5892276763916016, 0.22111071646213531, -0.6007134914398193, -0.5135616660118103, -0.8083145022392273, -0.7070229649543762, -0.6883451342582703, -0.6196560263633728, 0.22533345222473145, -0.6782103776931763, -0.9053794741630554, 0.7489093542098999, -0.8862480521202087, -0.49942490458488464, -0.265983521938324, -0.7390801906585693, -0.8368266224861145, -0.7010427713394165, 0.11109035462141037, -0.6065064668655396, 0.9978436231613159, -1.6602189540863037, 0.7039588093757629, -0.09147986024618149, 0.4885711669921875, 1.4371215105056763, 0.4654565751552582, -0.37139037251472473, 0.339178204536438, 0.24754315614700317, -1.3068066835403442, -0.06896021962165833, 0.09812994301319122, 0.4598076343536377, 0.4593832790851593, -0.41219455003738403, 0.01643460802733898, 1.1478397846221924, 0.2605631351470947, 0.4312918484210968, -0.4256649315357208, -0.09114530682563782, -0.5229958891868591, -1.233282208442688, 0.5597747564315796, -0.8491626977920532, -1.1594616174697876, 1.0021562576293945, 0.6600193381309509, -0.5658580660820007, 0.5082545876502991, -0.015558043494820595, 0.9204654097557068, 0.24757513403892517, 1.4588427543640137, 0.5067978501319885, 0.39260900020599365, 0.1298690289258957, -0.5340234637260437, -0.7689504027366638, 0.745449423789978, 0.5416216254234314, -0.3425711691379547, -0.025646265596151352, 0.7525371313095093, 1.5037060976028442, 0.6955798268318176, 0.09808329492807388, 0.6399781703948975, -0.2214670032262802, -1.0391812324523926, -0.8247469663619995, 0.1855064034461975, -1.0914732217788696, 1.3318390846252441, 0.4090118110179901, -1.0662697553634644, -1.3039125204086304, -0.22090068459510803, 0.2527632713317871, 0.025226686149835587, -0.6260213851928711, -1.0057413578033447, -0.593780517578125, 0.03906561806797981, -0.5008999109268188, 0.33425506949424744, -0.47535568475723267, 0.9165000319480896, -0.16987067461013794, -0.8787513971328735, -0.19318248331546783, 0.61883944272995, -0.07753784954547882, 0.9548474550247192, 0.061282653361558914, -1.9004110097885132, -0.41804081201553345, 0.6128342151641846, 1.0343478918075562, 0.16402208805084229, 0.30542200803756714, 0.35014456510543823, 0.6197806000709534, 0.11884225904941559, -0.12716971337795258, 0.2904392182826996, 0.5783548951148987, -0.12114926427602768, 0.5112144947052002, 0.5417400002479553, 0.7411817312240601, -1.277944564819336, -1.030531406402588, -0.583619236946106, 0.3822464346885681, 1.764922857284546, 0.4689939320087433, 1.2107597589492798, -0.4335366189479828, -0.28484758734703064, -0.5107570290565491, -0.6430225372314453, -1.3349117040634155, -1.0198692083358765, -0.4483490586280823, -1.1730469465255737, -0.42495396733283997, -0.14339277148246765, -0.26585307717323303, 0.10828232765197754, -0.65129554271698, -0.09581306576728821, 1.1174039840698242, -0.7571277618408203, -0.6988934874534607, -0.3499908745288849, 0.295991450548172, -0.8052239418029785, 0.5018649697303772, 0.8110804557800293, -1.0301713943481445, -0.8471225500106812, 0.4082666337490082, 1.0679562091827393, 0.166042760014534, 0.06819602102041245, 0.09944837540388107, -1.069579005241394, -1.6686726808547974, -0.33129534125328064, 0.8520461320877075, 0.3874441087245941, -0.06479401141405106, -0.14316214621067047, 0.540101945400238, 0.533207893371582, -0.2598560154438019, 0.06117212027311325, 0.3194006085395813, -0.7696049213409424, -0.8222959637641907, -0.20213283598423004, 0.275243878364563, 0.3650932013988495, -0.7757343053817749, -0.3985053598880768, -0.7139220237731934, -0.4968910217285156, 0.314622163772583, 0.43558311462402344, 0.06729229539632797, 0.22818878293037415, -0.005573549307882786, 0.5623776316642761, 0.4286291301250458, 0.1972711980342865, 0.19405269622802734, -1.1714116334915161, 0.5749855041503906, 0.5498611927032471, 1.2010575532913208, 0.15435947477817535, 0.2835124731063843, -0.1037081703543663, 0.37874168157577515, 0.6013621687889099, -0.17020511627197266, 0.9875430464744568, -0.8913593292236328, -0.0985485389828682, -0.6495952606201172, -0.8131225109100342, 0.6880845427513123, -0.7444887161254883, 0.20035046339035034, -0.2447165995836258, -1.1488317251205444, -0.44867682456970215, 0.7467730045318604, 0.08143157511949539, -0.7003706097602844, -0.05948634818196297, 0.24733522534370422, 0.5738320350646973, -0.031079106032848358, 0.1797102689743042, -0.6791139841079712, 0.32734790444374084, -0.02150152064859867, -0.7413724064826965, -0.26626476645469666, -0.2750760018825531, -0.004936780780553818, 0.6449757218360901, -1.028645634651184, 0.8282738924026489, -0.9898528456687927, 0.5188798904418945, 0.2473926544189453, -0.47625449299812317, 0.019455600529909134, -0.27653491497039795, -0.10218163579702377, -0.30897635221481323, -0.42940783500671387, 1.387056589126587, 0.0454418919980526, -0.4228626787662506, 0.14542615413665771, -0.516144335269928, 0.2657078802585602, -0.947421133518219, 0.28477734327316284, 0.5115941762924194, -0.5618432760238647, -0.08576435595750809, -0.00734839029610157, -0.014887988567352295, 1.357040286064148, 0.22889479994773865, 0.46483179926872253, 0.7012513279914856, 0.6675369143486023, -0.7903061509132385, -0.25278565287590027, 0.5989140272140503, -0.12537306547164917, -1.1647443771362305, -0.3442292809486389, 0.46352434158325195, -0.3493458032608032, 0.09370069205760956, 0.07736802101135254, 0.5390288233757019, 0.8267472386360168, 0.06995870918035507, 0.23668713867664337, 0.44888007640838623, 0.45725950598716736, 1.2691644430160522, 0.4696802496910095, -0.5193207859992981, -0.6540495753288269, 0.3575949966907501, -1.3127256631851196, -0.1353350132703781, 1.1073081493377686, 0.06922940164804459, 1.1383512020111084, -1.8361396789550781, -0.9287346005439758, 0.41661858558654785, 1.134734869003296, 0.6065090298652649, 0.8230419158935547, -0.33219555020332336, 0.049869198352098465, 0.010097362101078033, 0.11176440119743347, -0.4122897684574127, 0.08544866740703583, 0.04715042561292648, -0.43808940052986145, 0.8352722525596619, -0.7120726108551025, 0.4739059805870056, -0.6960521936416626, -0.5480844378471375, -0.7166226506233215, -0.2557859718799591, 0.25538334250450134, 0.42263156175613403, 0.963606059551239, 1.5917400121688843, -1.2475541830062866, -0.95256108045578, 0.006846718490123749, -0.8701176643371582, -0.21891991794109344, -0.2769435942173004, -0.8235097527503967, -0.4863198697566986, -0.4772011935710907, -0.6999255418777466, 0.4545878469944, -0.25994178652763367, -0.3069852292537689, -0.663354754447937, -1.0713475942611694, 0.23521117866039276, 0.9140149354934692, 0.8082481622695923, 0.32853999733924866, 0.08455965667963028, 0.453046053647995, 0.1876763105392456, -0.7935534119606018, 0.21683280169963837, 0.8314127922058105, -0.0010655075311660767, 0.13221558928489685, -0.9504485130310059, -0.8595699071884155, 0.4895876348018646, -0.08147641271352768, -0.5495564937591553, 0.5499277114868164, 1.668487310409546, 1.3072469234466553, -0.3206758201122284, -0.6707075238227844, 0.5744227170944214, 0.0030412450432777405, 0.6345880627632141, 1.5937174558639526, 0.13015517592430115, 0.180909663438797, -0.19766011834144592, -1.4668744802474976, 0.7192792296409607, -0.6091943383216858, -0.33882272243499756, 1.0774890184402466, -0.2045612335205078, 0.7065176963806152, 0.27695807814598083, -0.3147781491279602, 0.5094406008720398, -0.19060885906219482, -0.04909399524331093, -1.7172019481658936, 0.3026179075241089, 0.5758471488952637, -0.19960781931877136, 0.40564262866973877, -0.3190062940120697, 0.16525138914585114, 0.16627709567546844, -0.01087743416428566, 0.38577771186828613, -0.09799675643444061, 0.6320804357528687, 0.2791161835193634, -0.6324554085731506, 0.8455808162689209, -0.7257494330406189, -0.20834386348724365, 0.06973284482955933, 0.5147117972373962, 0.7367081046104431, 0.07412607222795486, 0.07958044111728668, -0.656387209892273, -0.10512308776378632, -0.12031815201044083, -0.16910846531391144, 0.3611975610256195, 0.26182541251182556, 0.2864566743373871, 0.013658060692250729, -0.2483605146408081, -0.5149706602096558, -0.7625328302383423, 0.048627473413944244, 0.32158488035202026, -0.6152776479721069, 0.4591705799102783, 0.432455837726593, -0.43432947993278503, -0.9077098965644836, -0.22411386668682098, 0.3444506525993347, -1.3189808130264282, -1.3118603229522705, -1.585253357887268, 0.11282873153686523, 0.2985175549983978, -0.5928375720977783, 1.0349125862121582, 0.8199769258499146, -1.1782840490341187, -0.4660896956920624, -0.11086662858724594, -0.7005931735038757, 0.12676778435707092, -0.9094565510749817, 0.7750167846679688, -0.405620276927948, 0.056740060448646545, 0.4366927742958069, 1.0234378576278687, -1.3493624925613403, -1.4508998394012451, -1.4593558311462402, -0.8684606552124023, 1.2939869165420532, 1.4371286630630493, -0.4824727475643158, 1.323561191558838, 0.7575411200523376, -1.0024614334106445, -0.5401901006698608, 0.07147032022476196, -1.354429006576538, 0.14481014013290405, 0.44892939925193787, 0.34226056933403015, 0.3505999445915222, 0.8773180246353149, 0.6187853813171387, 0.30661603808403015, 0.3979608118534088, 0.5625551342964172, -0.6711690425872803, -0.7148498296737671, 0.006512897089123726, 1.1587624549865723, -1.3669781684875488, -1.0227391719818115, 0.10529989004135132, -1.1715482473373413, -0.2469838559627533, -0.10474289953708649, 0.4986596405506134, -0.5965245962142944, 0.7744195461273193, -0.3429756164550781, 0.5071191787719727, -0.9536019563674927, 0.832871675491333, 0.2532172203063965, -0.6117075681686401, -0.14937835931777954, 0.2549606263637543, 0.3831847310066223, -1.3166813850402832, 0.24507266283035278, 0.6208938956260681, -0.11481106281280518, -0.8437155485153198, 0.7557686567306519, 0.41818001866340637, 0.12047921121120453, -0.7605845332145691, 1.2283297777175903, 0.23318235576152802, -0.40575751662254333, -0.30343523621559143, 0.6593054533004761, -0.14735785126686096, 0.32035747170448303, -1.1815046072006226, 0.0715574398636818, -0.6242956519126892, 0.4311951994895935, -0.0235263891518116, 0.4077286124229431, 0.5292606353759766, -0.32979318499565125, -0.30428722500801086, 0.7187693119049072, 0.7143298983573914, -1.3625653982162476, 0.022489476948976517, 0.8428128361701965, 0.43577948212623596, -0.6592211723327637, 0.007940338924527168, 0.6678078174591064, 0.5233044028282166, -0.7758985161781311, -0.16862189769744873, 0.8584049940109253, -0.8004720211029053, 0.017479537054896355, 0.11333958059549332, -0.9035661816596985, -0.12674227356910706, 0.2517704963684082, -1.3688392639160156, 0.06238958239555359, -0.7229354977607727, -0.12154997140169144, 0.4985264539718628, -0.7181338667869568, -0.9547368288040161, 0.45033469796180725, 0.09360756725072861, 0.027290252968668938, -0.3985217809677124, 0.32462263107299805, 0.011072367429733276, 0.27018794417381287, 0.8860076069831848, -0.06287895143032074, 0.9002654552459717, 0.2316076159477234, 0.0800914540886879, -1.3785096406936646, 0.3654598295688629, 0.39949649572372437, 0.1305849552154541, -0.5630566477775574, -0.16057296097278595, 1.230103611946106, -0.20441487431526184, -0.46472328901290894, 0.04393124207854271, -0.15374502539634705, 0.4662737548351288, 0.6553093194961548, -0.21121856570243835, 0.036378584802150726, 0.43017473816871643, 0.7793532013893127, -0.7166167497634888, -0.3938788175582886, -1.1591767072677612, -0.6999900937080383, -0.4086032509803772, 0.691516637802124, -0.3388781249523163, 0.5498371124267578, 0.20490151643753052, -0.12315189838409424, -0.8725196719169617, -1.0046051740646362, 0.32423844933509827, -0.303398996591568, 0.8918642997741699, -0.3270428478717804, 0.7241486310958862, -1.0048141479492188, -0.5848613381385803, 0.31232887506484985, 0.2187877893447876, -0.005367844831198454, 0.3902353048324585, -0.902811586856842, -0.13357307016849518, -0.5679724812507629, 0.642339289188385, 1.9541614055633545, 0.2785508930683136, -0.4840880036354065, 0.38619372248649597, -1.4662747383117676, 0.13749557733535767, 0.14206397533416748, 0.348786860704422, 0.6533872485160828, 0.899563729763031, 1.5689808130264282, 0.692592978477478, 0.29089540243148804, 0.15581952035427094, -0.1330869048833847, -0.9928649067878723, -0.21103577315807343, -0.9459227919578552, -0.4454127252101898, -0.6383877396583557], [-0.66779625415802, 1.466428279876709, -2.473623275756836, -0.7163763642311096, 0.5780026912689209, 0.8596818447113037, 1.5623564720153809, -1.1469826698303223, 1.3360234498977661, -0.25216615200042725, -0.7450248003005981, -0.10228052735328674, 0.4118140935897827, 0.784013032913208, 0.5769762992858887, 0.09797906875610352, 0.4622395634651184, -0.6276650428771973, 0.7030085325241089, 1.2012939453125, -0.05014663562178612, -1.6747386455535889, -0.67880779504776, 1.1140966415405273, -0.9130373597145081, 0.017963223159313202, -0.851546585559845, 0.20844723284244537, -1.152552604675293, -0.48458313941955566, 0.9777645468711853, -0.835428774356842, 0.3591321110725403, 0.5873364210128784, -1.093095302581787, -0.8417372703552246, 1.5477426052093506, 0.6930631399154663, 0.9937337636947632, -0.6806766390800476, 1.83060622215271, 0.944358766078949, 1.0244632959365845, -1.1088488101959229, 0.7496278285980225, -0.06672839820384979, 1.284592628479004, -0.5228784084320068, -0.20491814613342285, -0.3518297076225281, -0.6392170190811157, -0.7634778022766113, 0.42853543162345886, 0.9852112531661987, 2.029064416885376, -0.23896504938602448, 0.6286330223083496, -0.028845565393567085, 0.5478798151016235, 0.0552411712706089, 1.3747215270996094, 0.14672183990478516, -0.38806745409965515, 1.3022146224975586, 0.4964568614959717, -0.023539744317531586, -0.3384307622909546, 0.4094006419181824, -0.09953860193490982, 0.10378514230251312, 0.7332692742347717, -0.425554096698761, -0.6551425457000732, -0.38780611753463745, -1.0664341449737549, 0.8497185707092285, -0.28844404220581055, 0.5216026306152344, -0.18844056129455566, -0.02678847312927246, -0.9911621809005737, 0.11183597147464752, 0.6941263675689697, -0.6337835192680359, 0.11651159077882767, 0.2609225809574127, 0.9997607469558716, -0.29473453760147095, 0.27065765857696533, 1.496870517730713, 0.12777245044708252, -0.020264897495508194, 0.7498364448547363, 0.17325395345687866, 0.2296803891658783, -0.23627352714538574, 0.24326586723327637, 0.36739107966423035, -0.17325358092784882, 0.10219091922044754, -0.6410292387008667, -0.7325649261474609, 0.19448815286159515, -0.1194128543138504, 0.09622058272361755, 1.2243356704711914, 0.06328275799751282, -0.24919870495796204, -0.8666797876358032, -0.6040714979171753, -0.5116852521896362, 0.6866747140884399, -0.9877806901931763, -1.3860379457473755, -0.7617284059524536, 1.1290416717529297, 0.40212202072143555, 0.8135378360748291, 0.9131261706352234, 0.14433898031711578, -0.7657248973846436, 0.6301443576812744, 0.33199459314346313, 0.6525587439537048, 0.2521269917488098, 0.8073084950447083, -1.0761066675186157, -0.42719706892967224, 0.36086249351501465, 0.2072123885154724, 0.1970377266407013, -0.4374654293060303, -0.022795800119638443, 0.6663200855255127, -0.5561825037002563, 1.377044677734375, -0.1260472983121872, -0.41731947660446167, -0.29899412393569946, 0.9471899271011353, 0.8420847654342651, -0.7887150049209595, -0.4564725160598755, -0.4130001664161682, -0.9272985458374023, -0.26180723309516907, 0.28240031003952026, 0.17928099632263184, -0.7441893815994263, 0.05015306547284126, -1.4384828805923462, 0.9113445281982422, 0.5764399766921997, 0.5372970104217529, 0.14237520098686218, -0.7432459592819214, 0.22346650063991547, -0.6050442457199097, 0.5499089956283569, 0.1860351413488388, 0.4533557593822479, 0.3552199602127075, -0.6236961483955383, 0.4950734078884125, 0.2494179904460907, 0.5122014284133911, 0.5907602310180664, 0.8871563673019409, -0.4857552647590637, 0.3099792003631592, -0.3597843050956726, -1.097723364830017, -1.0875321626663208, -0.0751541405916214, 0.7901515960693359, -0.7876083254814148, 0.8519693613052368, -0.5770999193191528, -1.4132130146026611, -0.7082281112670898, 0.19822096824645996, -0.5141773223876953, -0.06246728450059891, 0.2696168124675751, 0.6915346384048462, -0.5890437364578247, 0.4568566679954529, -0.6152578592300415, -0.4466504454612732, -0.625562310218811, -1.2521989345550537, -0.7721601128578186, -0.7397262454032898, -0.13341772556304932, -0.40623795986175537, -0.39903104305267334, 0.6686205863952637, -0.5473631024360657, -1.3256111145019531, 0.39674651622772217, -0.8477605581283569, -1.1882885694503784, -0.12538760900497437, 0.31230753660202026, -0.4932060241699219, 0.9927540421485901, -1.1407527923583984, 0.671029806137085, -0.6290278434753418, 0.5007150173187256, 1.7794824838638306, 0.293999046087265, -0.7882630825042725, 0.42894718050956726, 0.28707006573677063, -0.8617250919342041, -0.15374208986759186, 0.7255061864852905, 0.009762026369571686, 0.7717815041542053, -0.14723049104213715, -0.03240690752863884, 1.1103075742721558, -0.38162827491760254, 0.1673722118139267, -0.7370002865791321, -0.11825457215309143, -0.6360183954238892, -0.7790457010269165, 0.8624845743179321, -0.5207902193069458, -1.6639134883880615, 0.5641285181045532, 1.0790483951568604, -0.3337073028087616, 0.14132535457611084, 0.3907994329929352, 0.4409995377063751, 0.04479436203837395, 1.3680553436279297, 0.5242494344711304, 0.7979038953781128, 0.4131680428981781, -0.569736123085022, -0.3653041124343872, 0.6664966940879822, 0.9169589281082153, -0.2630779445171356, -0.5712668895721436, 0.5724053382873535, 1.0868052244186401, 0.6821948289871216, 0.2538156509399414, -0.11641718447208405, -0.18882465362548828, -0.8954699635505676, -0.977588415145874, 0.2775183320045471, -1.2643344402313232, 1.4050116539001465, 1.3053982257843018, -1.049560308456421, -0.4529210031032562, 0.018757354468107224, 0.6444059610366821, -0.11939865350723267, -1.1929714679718018, 0.08894072473049164, -0.721686601638794, 0.28068551421165466, -0.06278404593467712, -0.15641608834266663, -0.43896856904029846, 0.7796638607978821, -0.04580143094062805, -0.9376187324523926, -0.13811475038528442, 0.9311455488204956, 0.33336979150772095, 0.8022321462631226, -0.09474749118089676, -1.3221979141235352, -0.4897271990776062, 0.9542137384414673, 0.9933292269706726, 0.7291595339775085, 0.6105418801307678, 0.5612690448760986, 0.8052396774291992, 0.03231767565011978, 0.30433857440948486, 1.1168442964553833, 0.49067676067352295, 0.3454950749874115, 0.4386521875858307, -0.012131684459745884, 0.8459866642951965, -0.9427940845489502, -1.1927709579467773, -0.6513000726699829, 0.11742348968982697, 1.4746578931808472, 0.7125788927078247, 1.111897587776184, -0.3995770812034607, -0.0886775329709053, -0.04139026254415512, -1.2879374027252197, -0.6069075465202332, -1.5338008403778076, -0.6699970960617065, -0.5509722232818604, -0.6219290494918823, 0.0311080701649189, -0.4799441695213318, 0.5751080513000488, -1.1004687547683716, 0.1692611277103424, 1.0956568717956543, -0.29666197299957275, -0.3107473850250244, 0.05954547971487045, 0.07736224681138992, -0.5536625385284424, 0.18371543288230896, 0.6363871097564697, -1.0666813850402832, -1.218045949935913, -0.31808823347091675, 0.6384227275848389, 0.13499459624290466, -0.05430150777101517, 0.4315120577812195, -1.146178960800171, -1.1135210990905762, -0.37393033504486084, 0.5990439653396606, 0.33142828941345215, -0.5908933877944946, -1.0192523002624512, 0.3673946261405945, 0.3668447434902191, -0.17264461517333984, -0.1652301400899887, 0.6187471151351929, -0.3368317186832428, -0.9433462023735046, -0.7076496481895447, 0.991280734539032, 0.7497068643569946, -0.9748120307922363, -0.17182284593582153, -0.8490498065948486, -0.34343546628952026, -0.7005923986434937, 0.4768105149269104, -0.3536722660064697, 0.858721137046814, 0.6308069229125977, 0.07451348006725311, 0.5730563998222351, -0.2692677080631256, -0.2279714047908783, -1.7642462253570557, 0.08503679186105728, 1.1517804861068726, 0.5035422444343567, -0.018260899931192398, 0.8233175277709961, 0.5435835123062134, -0.1518624722957611, 0.458902508020401, 0.10078997910022736, 0.9904215335845947, -0.40616294741630554, 0.09930659830570221, 0.13520193099975586, -1.0054819583892822, 0.315424382686615, -0.8735649585723877, -0.12685798108577728, 0.5522365570068359, -1.2803494930267334, 0.05506100133061409, 0.9024239182472229, 0.31070154905319214, -0.33702290058135986, -0.3103194832801819, -0.05219563841819763, 0.8429470062255859, 0.04745333641767502, 0.7118667364120483, -0.616527259349823, 0.025024207308888435, -0.028798475861549377, -1.2992581129074097, 0.1862829029560089, -0.29177361726760864, -0.33357810974121094, 1.1683533191680908, -0.9295947551727295, 0.2972900867462158, -1.5699801445007324, 0.3781334161758423, 0.41373544931411743, 0.47004979848861694, 0.18351268768310547, -0.48818308115005493, -0.002622801810503006, -0.33808308839797974, 0.08303897827863693, 1.1167590618133545, 0.10886207967996597, -0.7313284277915955, 0.1265181601047516, 0.2535783648490906, -0.008026525378227234, -0.22574613988399506, 0.09178080409765244, 0.6484111547470093, -0.7569875717163086, -0.3169827461242676, -0.3153819739818573, -0.23211820423603058, 1.0372105836868286, -0.09495460987091064, 1.189395785331726, 1.007737398147583, 0.36398351192474365, -1.7017326354980469, 0.11356242746114731, 0.5199488401412964, -0.3113563060760498, -1.0826377868652344, -0.02410171926021576, 0.207854226231575, -0.5967763662338257, 0.40467679500579834, -0.35269343852996826, 0.7349250316619873, 0.4109618067741394, -0.32601407170295715, -0.1824963539838791, 0.24989445507526398, 0.845279335975647, 0.7531486749649048, -0.25769442319869995, -0.991718053817749, -0.5723023414611816, 0.5052703619003296, -1.354986310005188, 0.3773457705974579, 0.905022144317627, -0.2337179034948349, 1.2607183456420898, -2.1013102531433105, -1.6201558113098145, 0.2041245698928833, 0.5751357078552246, 0.5643775463104248, 0.3658396601676941, -0.31990134716033936, -0.10676012933254242, 0.09036478400230408, -0.29201772809028625, -0.22590306401252747, 0.14388322830200195, -0.6548656225204468, 0.2592998743057251, 0.807917594909668, -0.9389603137969971, 0.050938092172145844, 0.04773463308811188, -0.4475420117378235, -0.7590783834457397, -0.7878730297088623, 0.7346256971359253, 0.4389203190803528, 0.7312896251678467, 1.2488840818405151, -0.6433141827583313, -0.7029340863227844, 0.4730544090270996, -0.5090159177780151, 0.47467559576034546, -0.47646379470825195, -0.8451712727546692, -0.7938362956047058, -0.06012686342000961, -1.1834659576416016, 0.6042486429214478, -0.8788620233535767, 0.02370700240135193, -0.43523842096328735, -1.6740589141845703, -0.07850432395935059, 1.264250636100769, 0.5702364444732666, 0.4607836604118347, -0.3572998642921448, 0.4400746822357178, 0.8493756055831909, -0.6376947164535522, 0.010575419291853905, 0.027643254026770592, -0.1419578194618225, 0.7399729490280151, -1.3935697078704834, -0.5951196551322937, 0.4818279445171356, -0.14599934220314026, -0.19715647399425507, 0.6021921634674072, 1.335897445678711, 1.8086233139038086, -0.12956151366233826, -0.7382875084877014, 0.38937145471572876, 0.3890422582626343, 0.7107069492340088, 0.7149866819381714, -0.08880087733268738, -0.6085289716720581, -0.2440224289894104, -0.9655073881149292, 0.5019824504852295, -0.521557092666626, -0.5415818095207214, 1.1860923767089844, -0.40723586082458496, 0.877849817276001, 0.03669285774230957, -0.32708895206451416, 0.31085705757141113, -0.41014307737350464, 0.8864033222198486, -1.5674124956130981, 0.7385305166244507, 0.5778843760490417, -0.3617376983165741, 0.04179622232913971, -0.3668766915798187, -0.18311913311481476, -0.38290488719940186, 0.2867165803909302, 1.0544365644454956, -1.2276043891906738, 0.18536821007728577, 0.5779471397399902, -0.41290533542633057, 0.9749758839607239, -0.8277443051338196, -0.21152833104133606, -0.3119611144065857, 0.7540050745010376, 0.8720771074295044, 0.34786707162857056, 0.16258743405342102, -0.51732337474823, -0.33273738622665405, -0.0690658688545227, -0.28157004714012146, 0.509804368019104, 0.5795417428016663, 0.08081594109535217, 0.2522706985473633, 0.07805527746677399, -0.6612811088562012, -0.7216161489486694, -0.3090774714946747, -0.3370996117591858, -0.8550432920455933, 0.154556006193161, -0.14781217277050018, -0.7384634017944336, -0.7252282500267029, -0.19544169306755066, 0.5042917728424072, -1.1194722652435303, -0.9682430624961853, -1.0882810354232788, -0.11561088263988495, 0.4691859483718872, -0.5966061353683472, 1.154813528060913, 0.8215770721435547, -0.8276766538619995, 0.2643594741821289, -0.6772134304046631, -0.5162532925605774, -0.18192854523658752, -0.8303681015968323, 0.44830459356307983, -0.32883840799331665, 0.3461059331893921, -0.04817872494459152, 0.4584670066833496, -1.7094218730926514, -1.1450119018554688, -0.7507786750793457, -1.1112971305847168, 0.8564555048942566, 0.5174341201782227, -0.9976276755332947, 1.4675369262695312, 1.145033597946167, -0.5672250986099243, -0.4940865635871887, 0.7860617637634277, -1.4542162418365479, -0.38847702741622925, 0.2736087441444397, 0.8158752918243408, 0.8874438405036926, 0.8657509088516235, 0.9946974515914917, 0.7140723466873169, 0.38469964265823364, -0.014835212379693985, -0.529238760471344, -0.023833852261304855, 0.40733444690704346, 1.1555432081222534, -1.155447006225586, -0.1516837775707245, 0.26837486028671265, -0.7456594705581665, -1.0944185256958008, 0.4402354955673218, 0.7948178648948669, -0.771084725856781, 0.8129792213439941, -0.5537118315696716, 0.8894999623298645, -0.3274739980697632, 0.633736789226532, -0.16712462902069092, -0.01162879541516304, -0.20789995789527893, -0.14840465784072876, 0.48790454864501953, -0.6846679449081421, 0.48850753903388977, 0.6073611974716187, 0.41751930117607117, -1.4828133583068848, 0.4962994456291199, 0.7944141626358032, 0.5918810367584229, -1.0441274642944336, 1.9572336673736572, 0.9875501394271851, -0.020123014226555824, -0.06830427050590515, 0.3118765354156494, -0.714661717414856, 0.8407204151153564, -0.810705304145813, 0.6509759426116943, -1.3929359912872314, -0.08926346153020859, 0.7190914154052734, -0.4094175696372986, -0.3129809498786926, 0.047602780163288116, -0.5128254890441895, 0.23643702268600464, -0.007344815880060196, -1.2184717655181885, -0.6862727403640747, 0.8598236441612244, 0.058102041482925415, -0.4869982600212097, 0.47120702266693115, 0.3937671184539795, -0.0490233451128006, -0.7127472162246704, 0.09035497158765793, -0.15329158306121826, -0.7333644032478333, 0.20721599459648132, 0.7891616821289062, -0.3159976005554199, -0.0339713878929615, -0.2505388855934143, -0.9386190176010132, -0.3246046304702759, -1.2344937324523926, -0.6524726152420044, 0.4074532389640808, -0.5182779431343079, -0.5497271418571472, 0.5947182178497314, 0.5611007213592529, 0.1980554610490799, -0.35458219051361084, 0.6402867436408997, 0.2233368307352066, -0.21281544864177704, 0.5791125297546387, -0.984061062335968, 1.158189058303833, 0.31057512760162354, -0.11898893117904663, -0.8323707580566406, 0.546367347240448, 0.22967103123664856, 0.2792881727218628, -0.5291004180908203, -0.1017252579331398, 0.9548085927963257, -0.1431080400943756, 0.019173335283994675, 0.38813936710357666, 0.926281750202179, 0.02865215763449669, 0.06447792053222656, -0.5912116169929504, 0.21656107902526855, 0.5823687314987183, 1.2095520496368408, -0.37325915694236755, -0.7848214507102966, -0.8437412977218628, 0.2844945788383484, -0.2050340175628662, -0.33349159359931946, -0.11145766079425812, 0.5877496004104614, 0.03972615674138069, -0.5936481952667236, -0.8312743306159973, -1.0770012140274048, 0.7506214380264282, -0.023052439093589783, 0.8953595757484436, -0.19572225213050842, 0.7995092868804932, -0.458540141582489, -0.16953253746032715, 0.24240350723266602, 0.8495239019393921, 0.27892521023750305, 0.3841565251350403, -1.000880479812622, 0.10030940920114517, -0.5701937079429626, 0.8165591955184937, 1.3592627048492432, 0.028186410665512085, -0.3408563435077667, 0.33170169591903687, -1.7614020109176636, 0.37551349401474, 0.6141406297683716, 0.6761966347694397, 0.4964357614517212, 1.0091192722320557, 1.6835110187530518, 0.14446184039115906, 0.23470818996429443, 0.19917786121368408, 0.42881786823272705, -0.27261704206466675, -0.5058780908584595, -0.5203368067741394, 0.007899092510342598, -0.9193413257598877], [0.37126389145851135, 0.7837615013122559, -2.0880420207977295, -0.7588868737220764, 1.235088586807251, 0.6394997835159302, 1.4680477380752563, 0.1792016178369522, 0.04811519756913185, -0.46288856863975525, -0.25751790404319763, 0.16694504022598267, 0.10064936429262161, 1.059500813484192, 0.2701084017753601, 0.5792558193206787, 0.4116705060005188, -0.15788516402244568, 0.6431716680526733, 0.9866926074028015, -0.20852629840373993, -0.26683586835861206, -0.17162685096263885, 0.2758355736732483, -0.9677531123161316, 0.7685322761535645, -1.487020492553711, -0.47825098037719727, -1.2607125043869019, -0.49116912484169006, 1.595752239227295, -1.590610384941101, 0.31670939922332764, -0.032828863710165024, -1.3630343675613403, -0.6603176593780518, 0.9947633743286133, 0.7111157774925232, 0.21315784752368927, 0.11327557265758514, 1.369202733039856, 0.49630308151245117, 0.5359598398208618, -1.3155325651168823, 0.1844608336687088, 0.7356588840484619, 1.1463035345077515, -0.8312036991119385, 0.45054927468299866, -0.3461209833621979, 0.4968893826007843, -0.16559390723705292, 0.851677417755127, 0.8373664617538452, 1.8657217025756836, 0.6605831384658813, 0.762627363204956, 0.07996512949466705, 0.7985517382621765, -0.18302379548549652, 1.2248749732971191, 0.11167632788419724, -0.5765891075134277, 0.9425263404846191, 0.12604908645153046, -0.07382333278656006, -0.6158741116523743, 0.7873197197914124, -0.1798805594444275, 0.4102642238140106, 1.0609372854232788, 0.008445636369287968, -1.1476356983184814, 0.5229973196983337, -1.4489128589630127, 0.25160181522369385, 0.5521760582923889, 0.6486573815345764, 0.5585989356040955, 0.4688626229763031, -1.0042457580566406, -0.005600964650511742, 0.8917155861854553, -0.40273576974868774, 0.23360459506511688, 0.31421956419944763, 0.8795767426490784, -0.5779563188552856, -0.5254203081130981, 1.713843822479248, 0.5527029037475586, 0.33121147751808167, 0.19513735175132751, -0.5325117111206055, 0.3638715445995331, -0.4348384737968445, 0.10076826065778732, -0.19818338751792908, -0.5888631343841553, -0.6025227308273315, -0.9603238105773926, -0.6904994249343872, -0.11263029277324677, -0.5290282964706421, 0.14755211770534515, 1.3509122133255005, 0.17474476993083954, -0.20959804952144623, -0.01925492472946644, -0.3292739987373352, -1.0951220989227295, 0.43473681807518005, -0.1586010903120041, -1.0102291107177734, -0.8040294647216797, 0.7286302447319031, 1.3195332288742065, 0.1632343977689743, 1.1080615520477295, 0.22741976380348206, -0.7953951954841614, 0.7961412668228149, 0.5693334937095642, 0.9949020147323608, 1.0738977193832397, 0.26444801688194275, -0.7146570086479187, -1.2480463981628418, 0.593330979347229, -0.19280822575092316, 0.09552620351314545, -0.1646658331155777, 0.21416817605495453, 0.7165212631225586, -0.20174957811832428, 1.263795256614685, 0.5860029458999634, -0.5750846862792969, -0.13639552891254425, 0.6608325839042664, 0.6994683146476746, -0.5069286823272705, -0.04615626484155655, -0.8280550837516785, 0.010339395143091679, -0.7774460315704346, 0.5258895754814148, -0.5309541821479797, -0.8278527855873108, -0.10993457585573196, -0.9154518842697144, 0.4677765667438507, 0.46318519115448, 1.000357747077942, 0.05614568665623665, -0.36497098207473755, 0.5363768935203552, -0.35468220710754395, 1.3634532690048218, -0.02987096458673477, 0.4448096454143524, 0.8138163089752197, -0.6703888773918152, 0.8664292693138123, 0.16348017752170563, -0.5829866528511047, 0.1029365286231041, 0.8104737401008606, 0.39168283343315125, 0.7821223735809326, -0.1933576613664627, -0.6337884664535522, -0.2750796675682068, 0.37205415964126587, 0.2026793211698532, -0.1145460307598114, 1.502297043800354, -1.148855209350586, -0.9122157692909241, -0.6726477742195129, 0.2982650101184845, -0.48625844717025757, 0.018217675387859344, 0.15715470910072327, 0.7697468996047974, -0.5027431845664978, 0.1610376536846161, -0.0013555348850786686, -0.8703799247741699, -0.7386263608932495, -1.1441400051116943, -0.9739400148391724, -1.1030465364456177, 0.24291832745075226, -0.3932051360607147, -0.84852534532547, 0.7108449339866638, -0.5553702116012573, -0.46129918098449707, 0.19555599987506866, -0.13979093730449677, -0.3987445533275604, -0.46341055631637573, 0.404514342546463, -0.9094218611717224, 0.6950744986534119, -1.2263184785842896, 0.8591099977493286, -0.9570420384407043, 0.36826011538505554, 1.2294296026229858, 0.0665750801563263, -0.5163195133209229, 0.8203869462013245, -0.08385300636291504, -1.0334771871566772, 0.699844241142273, 0.5044094920158386, -0.22276528179645538, 0.27593857049942017, -0.18901848793029785, 0.4795989394187927, 0.2363101989030838, 0.028389349579811096, 0.05918004736304283, -0.48108986020088196, -0.3277285099029541, -1.1404242515563965, -0.5040777325630188, 0.30546119809150696, -0.7959675192832947, -1.3134218454360962, 1.3107082843780518, 0.6495463252067566, -0.789779543876648, 0.22077499330043793, 0.10508761554956436, 0.05771300569176674, -0.15920007228851318, 1.0304292440414429, 0.5552675724029541, 0.697299063205719, -0.04564935714006424, 0.2053457647562027, -1.022664189338684, 0.1293352097272873, 1.2087180614471436, -0.7002946138381958, -0.11644338071346283, 1.0644334554672241, 0.4015239477157593, 0.9190592765808105, 0.15440142154693604, 0.12267757207155228, 0.17925363779067993, -0.27222582697868347, -0.8998188972473145, -0.022267960011959076, -0.6255636215209961, 1.2961969375610352, 0.8988956809043884, -0.5301932692527771, -0.6603351831436157, 0.07633382827043533, -0.43799299001693726, -0.12557710707187653, -0.9342699646949768, -0.1892499178647995, -0.28184637427330017, -0.15694138407707214, -0.16584742069244385, 0.5860083699226379, 0.003186926944181323, 0.4293102025985718, 0.06386790424585342, -0.4255285859107971, -0.6828998327255249, 0.46882036328315735, -0.02156403474509716, 0.9938297271728516, -1.067525029182434, -1.2028499841690063, -0.5880053043365479, 0.21615248918533325, 1.222118854522705, 0.05374835431575775, 0.24448835849761963, 0.6660608649253845, 1.027146577835083, -0.15842777490615845, -0.09098254144191742, 1.1712063550949097, -0.07076731324195862, 0.24074803292751312, 0.27661508321762085, -0.07382220774888992, 1.1455752849578857, -0.8866199851036072, -1.4610393047332764, -0.8302465677261353, 0.7033702731132507, 1.360188603401184, 1.0261270999908447, 0.7394004464149475, -0.4913482964038849, -0.11752370744943619, -0.36506959795951843, -0.2950611412525177, -0.5064151883125305, -1.3092421293258667, -1.1046452522277832, -0.7214487195014954, -0.39546242356300354, -0.030075950548052788, -0.043833840638399124, 0.7541297674179077, -0.17520342767238617, 1.1670310497283936, 1.089394450187683, -0.4607575535774231, -0.2641187310218811, 0.1871170997619629, 0.10280314832925797, -0.64613938331604, 0.6181307435035706, 0.3878871500492096, -1.1958975791931152, -1.103858470916748, -0.5346891283988953, 0.38759171962738037, 0.7857164740562439, -0.2080487459897995, 0.18105341494083405, -1.0829285383224487, -0.8181836605072021, -0.5725480914115906, 0.43496909737586975, -0.6484829187393188, -0.00868045911192894, -0.7802608013153076, 0.6299617886543274, 0.6543054580688477, 0.20680750906467438, -0.5621485114097595, 0.6819249391555786, -0.24281856417655945, -0.9198704957962036, -0.06849287450313568, 0.44778746366500854, 0.5111603140830994, -0.5211231708526611, -0.1252596527338028, -0.09287356585264206, -0.6573967933654785, -0.4856627285480499, 0.48612597584724426, 0.4003094732761383, 0.5407381653785706, -0.058961931616067886, 0.10681300610303879, 0.7824077606201172, -0.2758081257343292, -0.2550637125968933, -1.2225114107131958, 0.44809916615486145, 0.22706806659698486, 0.5662025213241577, 0.33714181184768677, 0.473732054233551, 0.2378183901309967, -0.6159284114837646, 0.4753240942955017, -0.15945124626159668, 0.8430927395820618, -0.671436071395874, -0.4661659002304077, -0.057938236743211746, -0.30120086669921875, 0.046863406896591187, -0.7669684886932373, -0.3612707853317261, 0.1378912627696991, -1.0316158533096313, -0.3467460870742798, 0.7922822833061218, 0.7094976305961609, -0.498473197221756, -0.5164145827293396, -0.1275794506072998, 1.4253652095794678, -0.01078291330486536, 0.36340010166168213, -0.4474063217639923, -0.08053357899188995, 0.39625078439712524, -1.0711692571640015, -0.07635865360498428, 0.42052778601646423, -0.6968849897384644, 0.7428817749023438, -1.7758657932281494, 0.4612374007701874, -0.5084996223449707, 0.363979309797287, 0.19919753074645996, -0.024587005376815796, 0.4571266770362854, 0.12467038631439209, 0.12736426293849945, 0.1727534830570221, 0.10562735050916672, 1.5517973899841309, -0.6320797801017761, -0.6911035180091858, -0.26111993193626404, 0.10917109251022339, -0.15089505910873413, -0.6398153901100159, -0.1980615109205246, 0.34242069721221924, -0.2293481081724167, -0.38193535804748535, 0.029821308329701424, -0.48704949021339417, 1.5401854515075684, -0.008868497796356678, 0.6482992768287659, 0.8878554105758667, 0.27975767850875854, -0.4793838560581207, -0.16121715307235718, -0.08210653066635132, -0.04513199254870415, -0.9007839560508728, -0.5487270951271057, 0.48810604214668274, 0.18670415878295898, 0.38172489404678345, -0.32292112708091736, 0.772001326084137, 0.5760085582733154, 0.1230907067656517, -0.40204057097435, 0.23140670359134674, 0.5133352875709534, 1.1313186883926392, 0.5150042176246643, -0.19572865962982178, -0.3381222188472748, 0.7217987179756165, -1.0490645170211792, 0.3601731061935425, 0.9264348149299622, -0.39157891273498535, 1.638232707977295, -1.9428824186325073, -1.1593682765960693, 0.688587486743927, -0.013487596996128559, 0.494163453578949, 0.8696147203445435, 0.45416340231895447, -1.0971566438674927, 0.4631153345108032, -0.013432592153549194, -0.24890664219856262, 0.7552162408828735, -0.48662975430488586, 0.580401599407196, 0.39074763655662537, -0.7788780927658081, 0.4662535786628723, -0.266048401594162, -0.3846413791179657, -0.10676097869873047, -0.012154252268373966, 0.2730866074562073, 0.5868884921073914, -0.10138362646102905, 1.1172157526016235, -0.9415811896324158, -0.8370080590248108, 0.6413023471832275, -0.9473183155059814, -0.04832611232995987, -0.15467359125614166, -0.6485349535942078, -0.06204894557595253, -1.3430718183517456, -0.21236172318458557, 0.5433341860771179, -0.604543149471283, -0.8796687126159668, -0.3952445387840271, -1.3510264158248901, -0.1479892134666443, 1.4081803560256958, 0.9289931654930115, 0.15737831592559814, 0.03898801654577255, 0.19201558828353882, 0.5369185209274292, -0.4666757583618164, -0.23874109983444214, 0.17199711501598358, -0.09364590793848038, 0.27011361718177795, -1.4233142137527466, -0.73832768201828, 0.9515516757965088, 0.43310022354125977, -0.4140307903289795, 0.20771047472953796, 1.096967101097107, 0.6294011473655701, -0.5008636116981506, -0.68630051612854, 0.7675292491912842, -0.6173820495605469, -0.06266728788614273, 0.38710683584213257, -0.3170788884162903, -0.3465158939361572, -0.3820890486240387, -1.680869698524475, 0.9104282259941101, -0.29422497749328613, -0.5127888321876526, 1.409631609916687, 0.03774047642946243, 0.4306962788105011, 0.4662935733795166, 0.11695072799921036, 0.30591103434562683, -0.07313480973243713, -0.02645448036491871, -1.2278375625610352, 0.6136726140975952, 0.31187042593955994, 0.4304606020450592, -0.13666854798793793, 0.9010434746742249, -0.3706202507019043, -0.19755230844020844, -0.405109167098999, 0.7491549253463745, 0.16773074865341187, 0.5460847020149231, -0.13693514466285706, -1.1117541790008545, 0.45699143409729004, -0.9878929257392883, -0.20523466169834137, -0.0635092556476593, 0.2941643297672272, 0.6863297820091248, -0.20510461926460266, -0.3356385827064514, -0.523530125617981, -0.06897177547216415, 0.11060810834169388, -0.60885089635849, 0.7223570942878723, 0.533807098865509, 0.0588577538728714, -0.10193531960248947, -0.11228933185338974, -0.17838160693645477, 0.14700505137443542, 0.10754063725471497, 0.3274797797203064, -1.1347179412841797, 0.44465371966362, -0.35159793496131897, -0.5377413630485535, -0.10863450914621353, -0.334865540266037, 0.5212100744247437, -1.055786371231079, -1.3473355770111084, -1.1952106952667236, 0.8027698993682861, 0.7231080532073975, -0.6980106830596924, 0.554046630859375, 0.4468895494937897, -1.7898436784744263, -0.43469610810279846, 0.27021390199661255, -0.7107574343681335, 0.1606658697128296, -1.0589088201522827, 0.6734235882759094, -0.5144889950752258, 0.4543992877006531, -0.2702443301677704, 1.4987528324127197, -1.5829541683197021, -1.5158737897872925, -1.2047632932662964, -0.4390794336795807, 0.8184471130371094, 0.5883077383041382, -0.8285977244377136, 1.371700644493103, 0.6221399903297424, -0.7929818630218506, -0.532993733882904, -0.03777867183089256, -0.8371410369873047, 0.7470313906669617, 0.11759065836668015, 1.3062745332717896, 0.016925107687711716, 1.0001469850540161, -0.5195983648300171, 0.5404593348503113, 0.6662275791168213, 0.8064427971839905, -0.26640066504478455, 0.04157977178692818, 0.05923767760396004, 0.666826069355011, -0.9214720129966736, -0.3794407844543457, -0.10929951816797256, -0.6141029596328735, -1.0760493278503418, 0.734032928943634, 0.6030362844467163, -1.4450829029083252, 0.16858047246932983, -0.8466289043426514, 0.21950998902320862, -0.24534974992275238, 0.7631766200065613, 0.19931797683238983, -0.6778449416160583, -0.24097777903079987, -0.5452777147293091, 0.2337120622396469, -1.1505126953125, -0.2857121229171753, 0.34735625982284546, 0.2992924451828003, -0.9556368589401245, 0.7436067461967468, 0.6472596526145935, -0.0676969587802887, -1.4291832447052002, 1.5486211776733398, 1.2763817310333252, -0.011301005259156227, -0.427224338054657, 0.15274085104465485, 0.4285111725330353, 0.7573146224021912, -1.1816314458847046, 1.0397993326187134, -0.9158259034156799, 0.11372324079275131, 0.4356127381324768, -0.691055953502655, -1.0043143033981323, -0.26421016454696655, -1.00931715965271, 1.1223760843276978, -0.006009859032928944, -0.7259754538536072, -0.339509516954422, 0.8672857880592346, -0.003265539649873972, -0.4582866430282593, 0.20875787734985352, 0.7240942716598511, 0.10688062757253647, -0.18466047942638397, -0.0827069953083992, 0.765788733959198, -1.0190247297286987, 0.09210189431905746, 0.5019468069076538, -0.023701580241322517, 0.2540932595729828, -0.3953944444656372, -1.2246569395065308, 0.2980775535106659, -0.9662740230560303, -1.055336594581604, 0.34765610098838806, -0.6747982501983643, -1.3924530744552612, 0.8165743350982666, 0.2889444828033447, -0.5074744820594788, -0.22149495780467987, 0.7800756692886353, -0.22422684729099274, 0.24522413313388824, 0.0850445032119751, -0.3012438118457794, 0.36056220531463623, -0.03980916365981102, -0.2550833523273468, -0.6107678413391113, 0.2724355459213257, 0.22125451266765594, 0.029604393988847733, -0.4513702094554901, -0.196455180644989, 0.3941453993320465, -0.06226968765258789, -0.5007581114768982, 0.38451090455055237, 0.2199459969997406, 0.3902153968811035, 0.12200167775154114, -0.8759517669677734, -0.28093162178993225, 1.3983234167099, 0.7789929509162903, -0.14227207005023956, -0.6815221309661865, -0.2689324617385864, 0.21006765961647034, -0.610990047454834, 0.6535589694976807, 0.5813549757003784, 0.29080304503440857, -0.09040916711091995, -0.5673455595970154, -0.01888432912528515, -1.3181904554367065, -0.2388005405664444, 0.24408243596553802, 1.594740629196167, -0.0031498621683567762, 0.14600776135921478, 0.02451280690729618, -0.8076131939888, 0.32967081665992737, 0.41625991463661194, 0.37867605686187744, -0.15436090528964996, -1.2426459789276123, -0.6638695001602173, -0.31805774569511414, 0.2512746751308441, 1.4534170627593994, -0.13443219661712646, -0.07608607411384583, 0.2684510350227356, -1.058003544807434, 0.5223305225372314, -0.15161781013011932, 0.20134909451007843, -0.42878684401512146, 1.1257447004318237, 1.253887414932251, -0.07418952137231827, 0.5787588357925415, -0.17128169536590576, 1.0042062997817993, -0.48845645785331726, -0.28350475430488586, -0.40624764561653137, -0.5574509501457214, 0.17206445336341858], [-0.3325466513633728, 1.1475677490234375, -1.857102870941162, -0.10603530704975128, 1.1548213958740234, 1.0030806064605713, 0.7290997505187988, -0.1928452104330063, 0.9990417957305908, -0.561362087726593, -0.6647506356239319, 0.4353960156440735, 0.5952239036560059, 1.113531231880188, 0.11834748089313507, 0.3473484516143799, -0.16518376767635345, 0.2190011590719223, 0.8961648941040039, 0.8127540946006775, 0.4414004981517792, 0.21200232207775116, 0.36203667521476746, 0.46758201718330383, -0.6254160404205322, 0.7178063988685608, -1.254713773727417, -0.5394311547279358, -0.6504813432693481, -0.6517241597175598, 1.5257506370544434, -1.039556622505188, 0.3397528827190399, 0.3960466980934143, -1.1581602096557617, -0.23564577102661133, 0.9668089151382446, 0.7385161519050598, 0.7678337097167969, 0.32219573855400085, 1.6273547410964966, 0.08742201328277588, 0.02748572826385498, -1.5556319952011108, -0.7725619673728943, 0.45768460631370544, 0.5930878520011902, -0.8788565993309021, 0.09394339472055435, -0.36220496892929077, 0.2218918651342392, -1.1411023139953613, 0.4804348349571228, 1.4336048364639282, 1.1330254077911377, -0.04331769421696663, 1.0100468397140503, 0.24545007944107056, 0.20263932645320892, -0.6365178227424622, 1.3012347221374512, 0.00878587830811739, -1.1129341125488281, 1.3519766330718994, -0.20517657697200775, 0.05422469601035118, -0.2543560564517975, 0.23228950798511505, 0.11836415529251099, 0.5018129944801331, 0.9919214248657227, -0.2789636552333832, -0.991411030292511, 0.5467459559440613, -1.2324378490447998, 0.12732386589050293, 0.8139355182647705, 1.1240776777267456, 1.0938713550567627, 0.772696852684021, -0.5906627178192139, 0.44002750515937805, 0.3892833888530731, -0.1467302143573761, -0.2001507580280304, 0.8299294114112854, 0.3108998239040375, -0.5656330585479736, -0.32886675000190735, 2.082085609436035, 0.27655041217803955, 0.18156886100769043, 0.039682816714048386, -0.7236434817314148, -0.10680259019136429, -0.7762575745582581, 0.23292076587677002, 0.08662277460098267, -0.5677726864814758, -0.6656434535980225, -0.4377673864364624, -0.41319364309310913, 0.5930804014205933, -0.7098953723907471, 0.8902527689933777, 0.7929258942604065, 0.3870266079902649, 0.06553537398576736, -0.4179306626319885, -0.5883084535598755, -0.7183752059936523, 1.1290593147277832, -0.22426949441432953, -0.6063455939292908, -0.8627788424491882, 0.23425403237342834, 0.7843374013900757, -0.019688595086336136, 0.6475968956947327, -0.03672373667359352, -0.6886370778083801, 0.29458582401275635, -0.03967787325382233, 0.9899882078170776, 1.0568506717681885, 0.3598072826862335, -0.23229482769966125, -0.2827753722667694, 0.6081237196922302, 0.24533826112747192, 0.2428569346666336, -0.3786182105541229, 0.009220506995916367, 1.0439201593399048, -0.2885611355304718, 1.4221818447113037, 0.2114037573337555, -0.5058985352516174, -0.13690729439258575, 0.167189821600914, 0.6054229736328125, 0.11053558439016342, -0.28312721848487854, -0.5709908604621887, -0.23867465555667877, -0.44311168789863586, 0.2736858129501343, -0.6004495620727539, -0.8371387720108032, 0.008547456935048103, -0.6610527038574219, 0.18318451941013336, 0.004859474953263998, 0.9655944108963013, 0.27057480812072754, 0.19532880187034607, 0.4763464629650116, -0.11316367983818054, 1.0670950412750244, 0.14273063838481903, 0.4095790982246399, 0.321656197309494, -0.4613288938999176, 0.9735644459724426, 0.04911895841360092, -0.1719294637441635, 0.28569960594177246, 0.5078704357147217, -0.05494432523846626, 1.1396565437316895, -0.09199491888284683, -0.8574458956718445, -0.36218246817588806, 0.5306826233863831, 0.6979961395263672, -0.5512257218360901, 1.4165421724319458, -0.7949687838554382, -1.2518911361694336, -0.5027640461921692, 0.43036001920700073, -0.14291736483573914, 0.2744031250476837, -0.20042334496974945, 0.5915127396583557, -0.0013059494085609913, 0.015045738779008389, -0.2212415635585785, -0.6262454390525818, -0.6430484652519226, -0.6405141949653625, -0.7544960379600525, -0.8569340109825134, -0.08028934895992279, -0.28052884340286255, -0.9247092604637146, 0.01724628545343876, -0.3280923664569855, -0.41186875104904175, 0.05617525428533554, -0.019516728818416595, -0.5941856503486633, -0.6918426752090454, -0.25317516922950745, -0.1591372936964035, 0.7653193473815918, -1.1442781686782837, 0.5026365518569946, -1.0716966390609741, 0.3782176673412323, 1.3158814907073975, 0.361102432012558, -0.9315563440322876, 0.8037692904472351, 0.11609841138124466, -1.375111699104309, 0.6664828658103943, -0.04420781135559082, -0.37704747915267944, 0.17270639538764954, 0.06705782562494278, -0.15657855570316315, 0.33103683590888977, 0.26127949357032776, 0.6435391902923584, -0.05512254312634468, -0.5031291246414185, -1.2062121629714966, -0.5967741012573242, 0.24924622476100922, 0.07389120757579803, -1.5526371002197266, 1.0745850801467896, 0.7033619284629822, -0.8989676833152771, -0.4323361814022064, 0.15710791945457458, -0.003501547034829855, 0.46081194281578064, 1.4811197519302368, -0.05496244877576828, 1.5601341724395752, 0.0068191951140761375, -0.3600258529186249, -0.35624590516090393, 0.09487280249595642, 1.2018505334854126, -0.5930131673812866, -0.14409948885440826, 0.7311229705810547, 0.5959967374801636, 0.08117393404245377, -0.41544926166534424, 0.09383517503738403, 0.07990650832653046, -0.5224334001541138, -0.6485506296157837, -0.33492782711982727, -0.8408094644546509, 0.9744491577148438, 0.4599984586238861, -0.8775821924209595, -0.6670503616333008, 0.3268376886844635, 0.2887260913848877, -0.19909118115901947, -0.49185970425605774, -0.07975813001394272, 0.17713792622089386, -0.17149069905281067, 0.4058207869529724, 0.6499080657958984, -0.2717834413051605, 0.4714356064796448, -0.395679771900177, -0.5866969227790833, -1.1562718152999878, 0.2932629883289337, 0.07257398962974548, 1.345026969909668, -0.5472099184989929, -0.6303920149803162, -0.06164437532424927, 0.12557320296764374, 1.1643956899642944, -0.2519601881504059, 0.1802327185869217, 0.4186953902244568, 0.8929062485694885, 0.17642997205257416, 0.48488569259643555, 0.26763826608657837, -0.10751274228096008, 0.6542291045188904, 0.3292052447795868, 0.7043895125389099, 0.9878157377243042, -0.5110652446746826, -1.6295757293701172, -0.18947218358516693, 0.33097338676452637, 1.0092172622680664, 0.6278002858161926, 1.0296260118484497, -0.20895534753799438, -0.1163087859749794, -0.25639277696609497, -0.33910855650901794, -1.2025279998779297, -1.190161108970642, -0.7612593770027161, -0.2544683516025543, -0.5078026056289673, 0.22264687716960907, 0.378734290599823, 0.6451529264450073, -0.6533135771751404, 0.7161770462989807, 0.7631517052650452, -0.180576890707016, -0.7624399662017822, -0.22454006969928741, -0.23867842555046082, -0.26070457696914673, 0.2949915826320648, 0.546617329120636, -0.9384997487068176, -0.7810961008071899, -0.1505793333053589, 0.12864413857460022, 1.1631561517715454, -0.4115121066570282, -0.1786327213048935, -1.1058146953582764, -0.9808844327926636, -0.6174379587173462, 1.1278152465820312, -0.30303052067756653, -0.19783741235733032, -1.0359818935394287, 0.8282420635223389, 0.5589456558227539, 0.038187175989151, -0.35177186131477356, 0.3302757740020752, 0.07309674471616745, -0.9490754008293152, -0.4827618896961212, 0.06921695917844772, 0.8371896147727966, -0.3200910985469818, 0.03107970580458641, -0.2527849078178406, -0.01590052805840969, -0.33335527777671814, 0.7015760540962219, 0.4296865165233612, 0.6190409660339355, 0.17368312180042267, -0.1686149388551712, 0.563068151473999, -1.058817744255066, 0.41066882014274597, -1.4514293670654297, 0.9213657379150391, 0.11669795960187912, 0.6364160180091858, -0.10655197501182556, 0.44198036193847656, 0.0194130539894104, -0.5482118725776672, -0.09576737880706787, -0.14152641594409943, 0.8971978425979614, 0.22739186882972717, -0.4169307053089142, -0.2606017291545868, 0.3000720739364624, -0.5780636668205261, -1.338189721107483, -0.36205247044563293, 0.15712840855121613, -0.7627663612365723, -0.6494085192680359, 0.750041127204895, 0.755912721157074, -0.17761071026325226, -0.40337300300598145, -0.1729217916727066, 1.417736291885376, 0.7333737015724182, -0.5511229634284973, 0.20409652590751648, -0.44858840107917786, 0.16275249421596527, -1.266241192817688, -0.3245481550693512, 0.10353364050388336, 0.1038941815495491, 1.014715552330017, -1.323669195175171, 0.2783588767051697, -0.5697046518325806, 0.5911732316017151, 0.3868759870529175, 0.38546526432037354, 0.6074114441871643, -0.23284050822257996, 0.08443186432123184, -0.2246542125940323, 0.5568742156028748, 1.836203694343567, -0.31968650221824646, -0.23735590279102325, 0.1688322126865387, 0.23226234316825867, 0.033087681978940964, -0.3635334074497223, -0.05354037508368492, 0.08030161261558533, -0.651785671710968, 0.029589787125587463, -0.27482685446739197, -0.3538035452365875, 1.0297952890396118, 0.4436381757259369, 0.36512091755867004, 0.9217795729637146, -0.013959885574877262, -0.6342560052871704, -0.09185969829559326, -0.03173853084445, -0.14063851535320282, 0.22117607295513153, 0.09501217305660248, 0.09231124073266983, -0.1977582424879074, 0.18118348717689514, 0.005443125497549772, 0.5091070532798767, 0.24126841127872467, 0.22317557036876678, -0.25988513231277466, 1.0700786113739014, 0.41292616724967957, 0.6130008101463318, 0.3641800582408905, 0.11737468093633652, -1.0354644060134888, 0.594580888748169, -1.0474525690078735, 0.52193683385849, 0.6777603626251221, -0.3779717683792114, 1.0246754884719849, -1.7810243368148804, -0.9208478927612305, 0.3454059660434723, 0.23259001970291138, -0.20543621480464935, 0.8558028340339661, 0.33898141980171204, -0.5331677794456482, 0.5849872827529907, -0.24883747100830078, -0.14664475619792938, 0.13568249344825745, -0.37484994530677795, -0.03708566725254059, 1.083246111869812, -0.42329174280166626, 0.21714045107364655, -0.7259463667869568, -0.400686115026474, 0.3389376997947693, -0.6906411051750183, 0.05130116641521454, 0.4108511805534363, 0.11270630359649658, 0.6195064187049866, -1.4098435640335083, -1.1099934577941895, 0.8517580628395081, -0.17309129238128662, -0.6260930895805359, 0.033445414155721664, -0.7250292301177979, 0.03758765384554863, -0.4880400598049164, -0.9026317596435547, 0.423352986574173, -0.05402427911758423, -0.7145678997039795, -0.8374912738800049, -1.0224522352218628, -0.6079474091529846, 0.17614634335041046, 0.9259108304977417, 0.49474552273750305, -0.2078719288110733, 0.003598135896027088, 0.1303045153617859, -0.4668751657009125, -0.3517354428768158, 0.6577786207199097, 0.23376142978668213, -0.4250808656215668, -1.196700930595398, -1.1793066263198853, 0.8583403825759888, 0.5939056277275085, -0.18125180900096893, 0.6091514229774475, 1.1109824180603027, 1.2524566650390625, -0.6417746543884277, -0.8434239029884338, 0.45490092039108276, 0.0582079254090786, 0.9617360830307007, 0.5320205688476562, 0.04683953523635864, -0.30092984437942505, -0.5828888416290283, -1.6087816953659058, 1.019066333770752, 0.3373483717441559, -0.8914834856987, 0.6356449723243713, 0.40684974193573, 0.46879667043685913, 0.2650231122970581, -0.41965243220329285, -0.28024107217788696, 0.02431221678853035, -0.4015447199344635, -1.3007789850234985, 0.5729032158851624, 0.3877604901790619, 1.1342374086380005, -0.29196739196777344, 0.5360214114189148, -0.2895590662956238, -0.5157634615898132, -0.4187767207622528, 0.7705760598182678, -0.03436585143208504, 0.7013692259788513, 0.45198556780815125, -0.5768561959266663, 0.04221823439002037, -0.7253867387771606, -0.48007193207740784, -0.036980655044317245, 0.526636004447937, 0.43562373518943787, -0.05449918657541275, 0.14408855140209198, -1.02971613407135, -0.5754131078720093, -0.3620823919773102, -0.29252496361732483, 0.1498253345489502, 0.11780354380607605, -0.15897482633590698, 0.28557294607162476, -0.2996728718280792, 0.14506895840168, 0.05585823208093643, -0.5168740153312683, 0.08982304483652115, -1.3420073986053467, -0.3202942907810211, -0.19429269433021545, -0.5130681991577148, -0.28944775462150574, -0.3911519944667816, 0.5767024159431458, -0.5229462385177612, -1.3211175203323364, -1.0914311408996582, 0.6677314043045044, 0.8705406188964844, -0.6036314368247986, 0.9301276803016663, 0.42784348130226135, -1.2408671379089355, -0.1978015899658203, -0.00805596262216568, -0.6863577365875244, 0.16629968583583832, -0.6771942973136902, 0.2366245687007904, -0.11040891706943512, 0.5604029297828674, -0.12612828612327576, 1.201847791671753, -0.9702487587928772, -0.7657327055931091, -1.4081833362579346, -0.4441881477832794, 1.026803731918335, 0.5083571672439575, -0.7796548008918762, 1.2711372375488281, 0.5338091850280762, -0.2184993475675583, -0.5265316367149353, -0.5776867866516113, -0.5474275350570679, 0.16481584310531616, 0.3167167901992798, 0.31389692425727844, 0.818873405456543, 1.0652270317077637, -0.10852134972810745, 0.19742010533809662, 0.31121930480003357, 0.357587993144989, -0.2480965256690979, -1.2132186889648438, -0.07932671159505844, 0.8853384852409363, -1.1497188806533813, -0.6566147208213806, -0.2768709659576416, -0.16915716230869293, -1.4078656435012817, 0.36491823196411133, 0.6346323490142822, -1.1646544933319092, -0.1651926040649414, -0.036317966878414154, 0.29899752140045166, -0.18228918313980103, 0.8768267631530762, 0.26802513003349304, -0.8249809741973877, -0.16925941407680511, -0.20332223176956177, 0.5174137949943542, -1.045100450515747, 0.3670653998851776, 0.4747961759567261, -0.4276392459869385, -0.4570762515068054, 0.9719372391700745, 0.2921554148197174, -0.300051748752594, -0.31153520941734314, 2.026021957397461, 0.4596637487411499, -0.3535909354686737, -0.3835792541503906, 0.5546426177024841, -0.41655030846595764, 1.0727953910827637, -0.7568860650062561, 0.4106391370296478, -1.004655361175537, 1.012073040008545, 0.393335223197937, -0.5686022639274597, -0.02868635207414627, -0.1139340028166771, -0.48353147506713867, 0.6152141690254211, 0.09529617428779602, -0.9153634905815125, -0.577842116355896, 0.8680257797241211, 0.22371703386306763, -0.22030024230480194, 0.0018130983226001263, 0.15011611580848694, 0.6538481712341309, -0.4414406716823578, 0.1441131979227066, 0.5650719404220581, -0.8747514486312866, -0.23942427337169647, -0.006214940454810858, 0.14411064982414246, -0.18427257239818573, 0.1841364949941635, -1.331104040145874, 0.9944459199905396, -0.8080492615699768, -1.0275291204452515, 0.4711361825466156, -0.6304340958595276, -0.6746814846992493, 1.1595275402069092, -0.12130964547395706, -0.3880171775817871, -0.387033075094223, 0.3116850256919861, -0.15995711088180542, 0.9457730054855347, -0.5045591592788696, -0.40790989995002747, 0.8298075795173645, -0.8305208086967468, -0.37670478224754333, -0.3273133933544159, 0.01598411053419113, 0.4520534574985504, 0.21826253831386566, -0.23437625169754028, 0.542631983757019, 0.8605228662490845, -0.0031069107353687286, -0.6992157101631165, 0.3350341022014618, -0.06986626237630844, -0.39334800839424133, 0.7245811223983765, -0.5455222725868225, -0.21263088285923004, 0.6780257225036621, 0.7073168158531189, -0.5326212644577026, -0.5756305456161499, -0.469819039106369, -0.06343573331832886, -0.5033063292503357, 1.1205706596374512, -0.18453150987625122, 0.6890074014663696, -0.4970299005508423, -0.9269921183586121, -0.47502636909484863, -0.14461426436901093, 0.45951706171035767, 0.14628902077674866, 0.7873265743255615, 0.3275836408138275, 0.1378999501466751, -0.836320161819458, -1.1289160251617432, 0.6215503811836243, 0.37211692333221436, 0.37841883301734924, 0.0524335578083992, -0.9022608399391174, -0.606309175491333, -0.48982855677604675, 0.03319954127073288, 1.1159228086471558, -0.16657136380672455, -0.36685019731521606, 0.19449454545974731, -0.8604959845542908, 0.27650198340415955, -0.35005131363868713, -0.24371442198753357, 0.16748423874378204, 0.7674314975738525, 0.9381404519081116, -0.18584850430488586, -0.014493913389742374, -0.25521472096443176, 1.0965216159820557, -0.835873007774353, -0.5675379037857056, -0.7617911696434021, -0.6214938759803772, -0.22525525093078613], [-0.22595655918121338, 1.2779412269592285, -1.9489370584487915, -0.6965513825416565, 1.8436301946640015, 0.47301051020622253, 0.8120675683021545, -0.322091668844223, 0.34445828199386597, -0.2837282419204712, -0.222803995013237, 0.21456748247146606, 0.35755616426467896, 0.9958725571632385, 0.034346967935562134, 0.5714792609214783, 0.6725664734840393, 0.059331029653549194, 0.3566279411315918, 0.5472231507301331, 0.5739780068397522, -0.0965016633272171, 0.5827170014381409, 0.3921371102333069, 0.12345978617668152, 0.5249811410903931, -1.524301290512085, -0.5711864233016968, -0.6053889393806458, -1.1567442417144775, 1.3899511098861694, -0.9158862233161926, 1.0358539819717407, 0.5811600089073181, -1.8407410383224487, 0.24431705474853516, 1.3260550498962402, 0.37494197487831116, 0.23204709589481354, 0.049659986048936844, 1.7600897550582886, -0.07955619692802429, -0.3162144422531128, -1.6164188385009766, -0.17671504616737366, -0.5748178362846375, 0.08813750743865967, -0.9681640267372131, -0.15519556403160095, -0.19267427921295166, 0.4481337368488312, -0.7012147307395935, 0.4169607162475586, 1.142318844795227, 0.4183349609375, -0.4294484555721283, 1.0095186233520508, 0.3956908583641052, -0.1562352329492569, -0.7442753314971924, 1.1705938577651978, 0.38566944003105164, -1.1277217864990234, 0.9822776913642883, 0.10696608573198318, 0.591587483882904, -0.6617335677146912, 0.20469549298286438, 0.06129293143749237, 0.6507472991943359, 0.5426563620567322, 0.5660567879676819, -0.515022873878479, -0.18367573618888855, -0.580134391784668, 0.25794386863708496, 0.5295868515968323, 0.3037498891353607, 0.726799726486206, 0.32287493348121643, -0.4874515235424042, -0.07023744285106659, 0.7023493647575378, 0.15926408767700195, 1.0077478885650635, 0.3641965687274933, 0.1783609390258789, -0.9031981825828552, -0.9829789996147156, 1.992925763130188, 0.36771339178085327, 0.05871112272143364, 0.7806175351142883, -0.4133130609989166, -0.194059818983078, -0.8886716365814209, 0.5539349913597107, 0.07525607943534851, -0.6938267946243286, -0.6730806827545166, -0.28829604387283325, -0.5081658959388733, 0.9434158802032471, -0.7085352540016174, 0.4578841030597687, 0.5170304179191589, 0.7526606917381287, -0.047996923327445984, -0.3211504817008972, -0.6451578736305237, -0.48523473739624023, 0.5525407195091248, -0.9168575406074524, -0.5309910774230957, -0.5685689449310303, 0.6788490414619446, 0.9094899296760559, -0.6525518298149109, 0.6718311309814453, 0.6940147280693054, -0.8584951758384705, 0.22625315189361572, -0.3292534351348877, 0.8886838555335999, 1.0460418462753296, 0.9307523369789124, -0.5348079800605774, -0.2145390510559082, 0.5046659111976624, 0.03685034066438675, 0.35669633746147156, -0.27706870436668396, -0.5063984394073486, 1.2512279748916626, -0.8192771077156067, 1.29951012134552, -0.19211521744728088, -0.7619565725326538, 0.41908299922943115, -0.19769106805324554, 0.1872304528951645, -0.715790867805481, -0.48836085200309753, -0.3790190517902374, 0.34174829721450806, -0.21244388818740845, 0.15786872804164886, -0.5425338745117188, -0.20716214179992676, 0.42413246631622314, -0.8538134098052979, 0.39096522331237793, -0.03428007289767265, 1.0894206762313843, 0.14326483011245728, -0.5191704630851746, 0.5443108677864075, 0.4015450179576874, 0.781720757484436, 0.0033241109922528267, 1.241822361946106, -0.16426712274551392, -1.1394703388214111, 0.6077043414115906, -0.5173979997634888, -0.06551642715930939, 0.7277569770812988, 0.7990567684173584, 0.1887071132659912, 0.39392128586769104, -0.3510555922985077, -0.8336322903633118, -0.2822931408882141, 0.6806740760803223, -0.012062796391546726, -0.5054986476898193, 1.013756513595581, 0.03106326423585415, -0.9747933149337769, -1.2119789123535156, 1.0617790222167969, -0.37130504846572876, 0.643160343170166, -0.25541967153549194, 0.9763620495796204, 0.07426581531763077, 0.2173740118741989, 0.052576519548892975, -0.6431683301925659, -0.5512029528617859, -0.5425652265548706, -0.5403233766555786, -0.5245187878608704, 0.1579877883195877, -0.45700788497924805, -1.3516695499420166, -0.1323215663433075, -0.906880259513855, 0.0320960097014904, 0.20227494835853577, -0.21542710065841675, -0.8715160489082336, -0.3992233872413635, 0.036467526108026505, -0.37926793098449707, 0.4354170262813568, -0.7310134768486023, 0.4568483531475067, -0.8202637434005737, -0.12939168512821198, 1.0662950277328491, 0.07931375503540039, -1.1073741912841797, 0.6273832321166992, -0.5555804371833801, -1.4137204885482788, -0.10506866127252579, -0.40452492237091064, -0.8752299547195435, 0.9697396755218506, -0.30050885677337646, -0.04405777528882027, 0.5235917568206787, 0.1841270625591278, 0.1665652096271515, -0.7415754795074463, -1.1747990846633911, -1.2339377403259277, -0.45110422372817993, -0.5537204742431641, -0.3448706269264221, -1.0408343076705933, 0.6884670257568359, 0.8194428086280823, -0.6710988879203796, -0.07247138768434525, 0.2329411804676056, -0.15292099118232727, 0.19926424324512482, 1.432364583015442, 0.3978811204433441, 1.1852632761001587, 0.07255414128303528, -0.6089982390403748, -0.06339847296476364, 0.41880297660827637, 0.8418523073196411, -0.9431755542755127, 0.4714600443840027, 0.6099175214767456, 1.284621000289917, 0.07772302627563477, 0.035268113017082214, -0.5279501676559448, -0.24085722863674164, -0.777516782283783, -0.08801577240228653, -0.518619179725647, -0.1878836452960968, 1.0222707986831665, 1.3663581609725952, -0.865394115447998, -0.3310246765613556, 0.8035131096839905, -0.1963958889245987, -0.49410074949264526, -0.4013475179672241, -0.39992770552635193, -0.37600234150886536, -0.06644969433546066, -0.526653528213501, 0.5368887782096863, 0.018344927579164505, 0.4849753677845001, -0.758033037185669, -0.6550741195678711, -0.2419092059135437, -0.005352423992007971, -0.13972830772399902, 1.2593276500701904, 0.19947469234466553, -0.47385966777801514, 0.08204133808612823, -0.602443277835846, 1.4231163263320923, -0.2119375467300415, 0.18075360357761383, 0.5755013227462769, 1.1577823162078857, 0.4612928628921509, 0.6782435774803162, 0.06987923383712769, 0.7528986930847168, 0.10085894167423248, -0.10807215422391891, 0.6074055433273315, 1.062612771987915, -1.3733088970184326, -1.217868447303772, 0.24753768742084503, 0.2743728756904602, 1.340514898300171, 0.6183100342750549, 0.9311048984527588, 0.39737406373023987, -0.3284927010536194, -0.5712749361991882, 0.04719328135251999, -0.8103761672973633, -0.5256078839302063, -0.6800999641418457, -0.5514233112335205, -0.24744974076747894, -0.2535359561443329, 0.6136343479156494, 0.23121139407157898, -1.1478567123413086, 0.8790820837020874, 0.9029361009597778, -0.6957843899726868, -0.8979241251945496, 0.02116408199071884, -0.10713831335306168, -0.9627605676651001, 0.4254849851131439, 0.8331330418586731, -0.5952525734901428, -0.6577160358428955, -0.10999014973640442, 0.30997833609580994, 0.23619380593299866, -0.29515185952186584, 0.309915691614151, -1.2010949850082397, -0.615179181098938, -0.12820127606391907, 1.5892106294631958, -0.1964154839515686, 0.01366343256086111, -0.125041663646698, -0.10376165807247162, 0.2642083466053009, -0.5330393314361572, -0.19642843306064606, 0.6570220589637756, -0.04284188896417618, -0.38526076078414917, -0.4435061514377594, 0.27278536558151245, 0.45593973994255066, -0.40366947650909424, 0.1375027894973755, 0.5353409051895142, -0.7138432860374451, 0.1828780174255371, 0.07640057057142258, 0.8879135251045227, 0.5278322100639343, -0.13481108844280243, 0.06456203758716583, 0.8250723481178284, -0.6201847195625305, 0.005278955679386854, -1.8499164581298828, 0.28309720754623413, -0.06308773159980774, 0.6306140422821045, 0.2730157673358917, 0.6162664890289307, 0.2380581945180893, 0.0984446108341217, -0.04036129638552666, 0.6774498820304871, 1.3140393495559692, 0.585338294506073, -0.4554349184036255, -0.20309551060199738, 0.4171411097049713, -0.7710187435150146, -0.8092033863067627, -0.21848982572555542, 0.38953495025634766, -1.4678623676300049, -0.14548833668231964, 1.1260991096496582, 0.631764829158783, -0.28146040439605713, -0.07231216132640839, 0.5036835074424744, 0.7509294152259827, 0.5239298939704895, -0.2026490420103073, -0.06920953840017319, -0.38703590631484985, -0.116523876786232, -0.36268091201782227, -0.818070113658905, -0.31846189498901367, 0.8122453689575195, 0.3725210726261139, -1.1585955619812012, -0.14221693575382233, -0.34735405445098877, 0.9706500172615051, 0.3674100637435913, 0.29356497526168823, 0.27812638878822327, -0.31641992926597595, 0.35162824392318726, -0.540747344493866, 0.29205286502838135, 1.2359567880630493, -0.02925041876733303, -0.2749767303466797, -0.03761104866862297, -0.20279301702976227, -0.11431851238012314, 0.36092621088027954, 0.12036275863647461, 0.10865955054759979, -1.070815920829773, 0.24150848388671875, -0.45880454778671265, -0.39164063334465027, 1.4608433246612549, 0.43855977058410645, 0.4014991819858551, 0.6655574440956116, -0.14020325243473053, -0.8092259764671326, -0.42962557077407837, -0.18074621260166168, -0.4257499575614929, -0.5137085914611816, 0.36400336027145386, 0.09270727634429932, -0.5252851843833923, 0.6152267456054688, 0.03888682648539543, 0.883910059928894, 0.0474289171397686, 0.35142940282821655, -0.21897944808006287, 0.9099902510643005, -0.3400450646877289, 1.0800087451934814, 0.9146003723144531, -0.2124934047460556, -1.308201789855957, 0.3238376975059509, -0.9694327116012573, 0.5540136098861694, 0.5235454440116882, 0.5615001320838928, 0.9375287294387817, -1.6296265125274658, -0.9672606587409973, 0.6292071342468262, 0.24992212653160095, 0.11865424364805222, 0.8323076367378235, 0.07627157121896744, -0.10101090371608734, 0.12894408404827118, -0.06447641551494598, 0.08610088378190994, 0.2797829806804657, -0.49750855565071106, 0.3433656692504883, 0.9213401079177856, -0.2790036201477051, 0.673334538936615, -0.5164416432380676, -0.04310445487499237, 0.13853572309017181, -0.6497107744216919, 0.20151448249816895, 0.5882937908172607, 1.0577455759048462, 0.8624695539474487, -1.3226217031478882, -1.443953037261963, 0.4271963834762573, -0.8629028797149658, 0.033548131585121155, -0.37504419684410095, 0.2172609120607376, -0.5509904623031616, -0.18569816648960114, -0.7921990156173706, 0.4761110246181488, -0.12210594117641449, -0.6855215430259705, -0.5245049595832825, -1.1927927732467651, 0.18602636456489563, 0.22707916796207428, 0.9456110596656799, 1.016216516494751, -0.020271196961402893, 0.1311812847852707, -0.002594997175037861, -0.4851086735725403, 0.11763408780097961, -0.055471085011959076, -0.1006273403763771, -0.15231016278266907, -1.3447235822677612, -1.0485647916793823, 0.392806738615036, 0.6867882013320923, 0.13453155755996704, 0.7689313292503357, 1.8195037841796875, 1.0095553398132324, -0.7070261240005493, -1.127978801727295, 0.15355229377746582, -0.6242225766181946, 1.0796380043029785, 0.46744364500045776, -0.2574843764305115, -0.6461935639381409, -0.6683841347694397, -1.280394196510315, 1.1844063997268677, 0.05095455422997475, -0.601729691028595, 1.1402758359909058, 0.8728000521659851, 0.23524688184261322, 0.6537492871284485, -0.980196475982666, 0.29481351375579834, 0.007827003486454487, -0.6870471835136414, -0.85467928647995, 0.996791660785675, -0.03414811193943024, 0.7398531436920166, -0.4429262578487396, 0.2773236930370331, 0.16205227375030518, -0.4983513355255127, 0.004632583819329739, 0.32149556279182434, -0.37224575877189636, -0.3595159947872162, 0.79793381690979, -0.4861253798007965, 0.013501753099262714, -0.42226001620292664, -1.1524051427841187, -0.30053234100341797, 0.6487897634506226, -0.13328994810581207, -0.0637010782957077, -0.3610992431640625, -0.4192216098308563, -0.8224899768829346, 0.07861977070569992, -0.7462249398231506, 0.580396831035614, 1.045348048210144, -0.09371688216924667, 0.3275796175003052, -0.24547089636325836, 0.18916745483875275, -0.35719752311706543, 0.013927341438829899, 0.526138424873352, -1.875027060508728, 0.14872397482395172, -0.1678415834903717, -0.5876169800758362, -0.0038177729584276676, -0.4264862835407257, 0.18595154583454132, -0.26956361532211304, -0.7730713486671448, -0.4908865690231323, 0.2742672860622406, 0.4893854260444641, -1.344186782836914, 0.4747227132320404, -0.3340451121330261, -1.1512178182601929, 0.30540382862091064, -0.5173180103302002, -0.613666832447052, -0.17070291936397552, -1.522260308265686, 0.33132413029670715, 0.8040663599967957, 0.3824176788330078, 0.4430670440196991, 0.5613356232643127, -0.7779680490493774, -0.6557008624076843, -0.1618819683790207, -0.14698681235313416, 0.9443091154098511, 0.6136499643325806, -0.7096275091171265, 1.4173780679702759, 0.43183794617652893, -0.37073829770088196, -0.44799333810806274, -0.39379364252090454, -0.4196270704269409, 0.10649248212575912, 0.6264704465866089, 0.6875694394111633, 0.8569654226303101, 1.5151865482330322, 0.31485363841056824, 0.1397397518157959, -0.024307694286108017, -0.05603986978530884, -0.7159218192100525, -1.2309060096740723, -0.012051844038069248, 0.34925273060798645, -1.0297353267669678, -0.8549997806549072, 0.06484410911798477, -0.7324303984642029, -1.2496469020843506, 0.041256073862314224, 0.8571844696998596, -0.718558132648468, 0.41200098395347595, -0.28196340799331665, -0.06973542273044586, -0.7566879987716675, 0.5523564219474792, 0.5527762174606323, -1.0414271354675293, -0.2282659262418747, 0.002323627471923828, -0.21277651190757751, -0.8535375595092773, 0.5367462038993835, -0.10430468618869781, -0.6567147970199585, 0.035455767065286636, 0.638876736164093, 0.7431285381317139, -0.48632314801216125, -0.07990571111440659, 1.7357121706008911, 0.6675856113433838, -0.18887236714363098, 0.02151103876531124, 0.513539731502533, -0.3945537209510803, 1.1638619899749756, -0.7591844201087952, 0.4222017824649811, -0.08603880554437637, 1.2295844554901123, -0.3816591203212738, 0.15101401507854462, 0.08274641633033752, -0.10633821785449982, -0.5304303169250488, 0.3276776671409607, 1.0416315793991089, -0.2335122674703598, -0.6989109516143799, 1.5329235792160034, -0.3019338548183441, -0.024368366226553917, 0.019490236416459084, 0.39574816823005676, 0.338356614112854, -0.3431277573108673, 0.5492601990699768, 1.0107611417770386, -0.8894453644752502, -0.15529344975948334, -0.2860664129257202, 0.14569419622421265, 0.06521715968847275, -0.19825957715511322, -1.6706204414367676, 0.8420143723487854, -0.6428760290145874, -0.5384411215782166, 1.1076067686080933, -0.8678325414657593, -0.1362774670124054, 0.2377464324235916, -0.2877020835876465, -0.6305151581764221, -0.06780577450990677, 0.5887370109558105, -0.26699304580688477, 0.09801025688648224, -0.13410788774490356, -0.12001296877861023, 0.8173764944076538, -0.8623303771018982, -0.3074016869068146, -0.13214778900146484, 0.10296447575092316, 0.20029491186141968, -0.17748916149139404, -0.49160265922546387, -0.20424368977546692, 0.7878425121307373, 0.07256285846233368, -0.5611744523048401, 0.6845314502716064, 0.2889861464500427, -0.4155252277851105, -0.17958377301692963, -0.1527993232011795, 0.12135335803031921, 0.8762306571006775, 0.2174811065196991, -0.689723014831543, -1.0751421451568604, -0.19380836188793182, 0.08945711702108383, -0.78668612241745, 0.9020208120346069, -0.5814735889434814, 0.9977226853370667, 0.07522723823785782, -0.2210739254951477, -0.6803673505783081, -0.23902396857738495, 0.3737374246120453, 0.04510785639286041, 0.11102087050676346, 0.4059906303882599, 0.474224328994751, -0.38473987579345703, -0.7720974683761597, 0.3709556758403778, 0.05223485082387924, -0.22488243877887726, 0.0837751179933548, -1.0669453144073486, -0.6024824976921082, -0.7412813901901245, 0.13959093391895294, 0.563596248626709, -0.31459954380989075, -0.5837003588676453, 0.6417203545570374, -0.7813180088996887, 0.12600500881671906, -0.12428256869316101, 0.2964061200618744, 0.2396450787782669, 0.7445461750030518, 1.1974667310714722, 0.23309268057346344, -0.11653488874435425, 0.13665270805358887, 1.177641749382019, -1.1570459604263306, -0.7067332863807678, -1.308471441268921, -0.3477844297885895, -0.34138551354408264], [-0.06099976971745491, 1.8071625232696533, -2.38008713722229, -0.3645763397216797, 1.1057273149490356, 0.25927072763442993, 1.6681348085403442, -0.16132476925849915, 0.8448131084442139, -0.24937136471271515, -0.08301485329866409, 0.1734294593334198, 0.43422386050224304, 0.7591099739074707, 0.01405502948909998, 0.4252603352069855, 0.7986986637115479, -0.29020562767982483, 0.09810633212327957, 0.5936726927757263, 0.13398213684558868, -0.3865649700164795, 0.34493446350097656, 0.25339433550834656, 0.247818723320961, 0.464641273021698, -1.3890881538391113, -1.0001320838928223, -0.8327843546867371, -0.7296884059906006, 1.1066830158233643, -1.4407655000686646, 0.0063066063448786736, -0.24450449645519257, -1.8001614809036255, 0.08538281917572021, 1.3002238273620605, 0.6428529620170593, 0.5157271027565002, -0.16107191145420074, 1.461594581604004, -0.05541728436946869, -0.20253922045230865, -1.6575299501419067, -0.5324439406394958, -0.32665395736694336, 0.15123946964740753, -1.0699841976165771, -0.01916830614209175, -0.42263275384902954, 0.7361276149749756, -1.2358894348144531, 0.09904562681913376, 1.144286870956421, 0.5305277705192566, -0.1990668922662735, 0.627801239490509, 0.034656353294849396, 0.16157925128936768, -0.7322498559951782, 1.8504455089569092, 0.41441798210144043, -0.9269285202026367, 0.9726337790489197, -0.3532979488372803, -0.34593915939331055, 0.1707228571176529, 0.3601263463497162, -0.3152313530445099, 0.43323737382888794, 0.5077776908874512, 0.4882980287075043, -0.4710785448551178, 0.3605201244354248, -1.2873448133468628, -0.28546014428138733, 0.615019679069519, 0.44111502170562744, 0.29947859048843384, 0.6818416714668274, -0.4073375165462494, 0.416572630405426, 0.6925945281982422, -0.4736422002315521, 0.6583181023597717, 0.924233078956604, 0.16951531171798706, -0.3556601405143738, -0.4328489303588867, 1.5409998893737793, -0.0888296589255333, -0.33177539706230164, 0.8209807872772217, -0.48367899656295776, -0.4200015962123871, -0.4348847270011902, 0.6439067125320435, 0.19866019487380981, -0.9330636858940125, -0.9101177453994751, -0.2311214804649353, -1.1847496032714844, 0.21824301779270172, -0.763961136341095, 0.383076012134552, 0.8869774341583252, 0.6070278286933899, -0.07005159556865692, 0.03113897517323494, -0.09526923298835754, -0.410935640335083, 0.7088568806648254, -0.6925003528594971, -1.1435885429382324, -0.7164400815963745, 1.0622482299804688, 1.072615385055542, -0.6662515997886658, 0.44979608058929443, 0.3822827637195587, -0.5568995475769043, 0.03922460973262787, -0.4702896177768707, 1.0860100984573364, 1.1529037952423096, 0.4079586863517761, -0.4219156503677368, -0.2620958387851715, 0.50620037317276, -0.026546215638518333, -0.0280408076941967, -0.5561201572418213, -0.6426792740821838, 0.7011589407920837, -0.5020522475242615, 1.558467984199524, -0.41967734694480896, -0.6221092939376831, 0.0015289746224880219, 0.004843789152801037, 0.3366936147212982, -0.07608915120363235, -0.4594467282295227, -0.22734622657299042, 0.22810357809066772, -0.6691927313804626, 0.30539238452911377, -0.20785295963287354, -0.6044046878814697, 0.13294368982315063, -0.7937243580818176, 0.5675557851791382, -0.02638102136552334, 0.8199306130409241, 0.36001771688461304, 0.08467241376638412, 0.6579789519309998, 0.2055635005235672, 0.8813573122024536, 0.3433224558830261, 0.7693673372268677, -0.12512601912021637, -1.2107192277908325, 0.5118165016174316, -0.07885318994522095, -0.39531224966049194, 0.423643559217453, 0.9196921586990356, 0.10759498924016953, 0.7966693639755249, -0.6223583817481995, -0.710652768611908, -0.35729581117630005, 0.393820583820343, -0.1087532564997673, -0.39688628911972046, 1.347370982170105, -0.6576594114303589, -1.214424729347229, -0.7613710165023804, 0.41580405831336975, -0.40423583984375, 0.8311907052993774, 0.1506919115781784, 0.9773722290992737, 0.22087684273719788, 0.5449882745742798, 0.10093630850315094, -0.6705043315887451, -0.6620866060256958, -0.6066839694976807, -0.6965515613555908, -0.29785996675491333, -0.20440566539764404, -0.5911475419998169, -0.8634568452835083, 0.4676474332809448, -0.8223763704299927, -0.25449925661087036, 0.2034163922071457, -0.15123485028743744, 0.12718193233013153, -1.1637660264968872, 0.3046117126941681, -0.22820772230625153, 0.7414222359657288, -1.3550418615341187, 0.6674508452415466, -1.2568496465682983, -0.12551629543304443, 1.1789047718048096, 0.11920960992574692, -0.8259508013725281, 0.5782460570335388, -0.2090737372636795, -1.8144382238388062, 0.07806136459112167, 0.07934737950563431, -0.35714131593704224, 0.6580360531806946, -0.22905242443084717, 0.3000391125679016, 0.3871523439884186, -0.19354937970638275, 0.426969975233078, -0.11362016201019287, -1.6049929857254028, -0.8582926392555237, -0.40167829394340515, -0.19399206340312958, -0.631537139415741, -1.101523756980896, 0.23567354679107666, 0.4407513737678528, -0.9799870252609253, -0.13787348568439484, 0.15954828262329102, 0.13820132613182068, 0.39209720492362976, 1.7785494327545166, 0.4245089292526245, 1.186419129371643, -0.027848294004797935, -0.3135579228401184, 0.05784367024898529, 0.5230070948600769, 0.9923846125602722, -0.5247681736946106, -0.12934361398220062, 0.8117074966430664, 0.9786632061004639, 0.5903672575950623, -0.12278029322624207, -0.26538628339767456, -0.34421268105506897, -0.4859981834888458, -0.6698850393295288, -0.5071474313735962, -0.06209221109747887, 1.2229338884353638, 0.7635340690612793, -0.8720226287841797, -0.3394387364387512, 0.7659317255020142, 0.31775328516960144, -0.16923174262046814, -0.41305238008499146, 0.05638603866100311, -0.21749277412891388, 0.08099525421857834, -0.06791411340236664, 0.5262705087661743, 0.05513303354382515, 0.2978218197822571, -0.5492726564407349, -1.3116681575775146, -0.4394843280315399, 0.016679968684911728, 0.028261234983801842, 1.0579994916915894, -0.5816394090652466, -0.8248361349105835, 0.3321497142314911, -0.008826150558888912, 1.2622071504592896, -0.32130756974220276, 0.12966561317443848, 0.40025264024734497, 0.6189214587211609, -0.07245339453220367, 0.6504654288291931, -0.06843456625938416, 0.020722176879644394, 0.07821782678365707, -0.06185329705476761, 0.3226450979709625, 1.155397891998291, -1.0158830881118774, -0.9474358558654785, -0.18295884132385254, 0.43106719851493835, 1.5447912216186523, 0.5283923745155334, 1.2948933839797974, -0.3717286288738251, -0.12223905324935913, -0.05840180441737175, 0.07156665623188019, -1.0381211042404175, -0.7611672282218933, -0.9796032309532166, -0.49141159653663635, -0.07279857248067856, 0.007648988161236048, 0.5547603368759155, 0.40550512075424194, -0.7523466348648071, 0.8563926219940186, 1.3269850015640259, -0.16757097840309143, -0.4008191227912903, -0.3795200288295746, 0.057417772710323334, -0.4384842813014984, 0.15706244111061096, 0.7910407781600952, -0.9699881672859192, -0.6834568977355957, -0.14039596915245056, -0.1784338802099228, 0.6007630825042725, -0.1086869090795517, 0.25058257579803467, -1.5397623777389526, -0.910877525806427, -0.4745132029056549, 1.7078840732574463, -0.23328429460525513, 0.0034587327390909195, -0.9898312091827393, 0.5430673360824585, 0.8872007131576538, -0.6214398741722107, -0.12476144731044769, 0.7542571425437927, -0.2546130418777466, -0.8042805194854736, -0.5081521272659302, 0.5524117350578308, 0.34070679545402527, -0.39922982454299927, -0.08718989789485931, -0.25983959436416626, -0.5539100170135498, 0.06353229284286499, 0.33886072039604187, -0.02114957757294178, 0.7179400324821472, 0.35944297909736633, 0.15598534047603607, 0.7465764284133911, -0.7342774271965027, 0.1948850005865097, -1.4032784700393677, 0.41119125485420227, 0.610155463218689, 1.1530505418777466, 0.17722779512405396, 0.3002055883407593, 0.10125375539064407, -0.0765707939863205, -0.04138456657528877, 0.6172053217887878, 1.3644541501998901, 0.11680580675601959, 0.0275210402905941, -0.3322544991970062, -0.2909272015094757, -0.1552005261182785, -1.1008847951889038, -0.07024523615837097, 0.687166690826416, -0.9473248720169067, -0.2880031168460846, 1.4659194946289062, 0.5411182641983032, 0.15739202499389648, 0.045017603784799576, 0.07045041769742966, 1.8076965808868408, -0.08152281492948532, -0.34440580010414124, -0.2614716589450836, 0.3802860975265503, 0.1014004573225975, -0.8511334657669067, -0.08610164374113083, 0.4398544132709503, 0.3164534866809845, 0.6048666834831238, -0.9967700242996216, 0.21616539359092712, -0.5143807530403137, 0.7108929753303528, -0.05220894515514374, 0.18177476525306702, 0.40409162640571594, -0.12258685380220413, 0.14953696727752686, -0.06370554119348526, 0.18969203531742096, 0.7960035800933838, -0.4079766273498535, -0.3885915279388428, -0.08548344671726227, 0.09222947806119919, 0.027306994423270226, 0.2530030608177185, -0.1641511768102646, 0.13293394446372986, -0.4590909481048584, 0.03582022339105606, 0.3624661862850189, 0.34474411606788635, 1.073403239250183, 0.4036976397037506, 0.03371269255876541, 0.7961797714233398, 0.27684226632118225, -1.2835222482681274, 0.6024415493011475, -0.14648006856441498, -0.5550594925880432, -0.32696953415870667, 0.1364196389913559, 0.2854520380496979, -0.4762367010116577, -0.027878638356924057, 0.35314393043518066, 0.5316223502159119, 0.07303664088249207, 0.2589835822582245, -0.21821221709251404, 0.9000359773635864, 0.6225667595863342, 1.1674065589904785, 0.4036988317966461, 0.027736853808164597, -1.1816563606262207, 0.5139450430870056, -1.1953037977218628, 0.16957218945026398, 1.0040239095687866, 0.3080447018146515, 1.257705807685852, -1.7392991781234741, -1.0757989883422852, 0.6949875354766846, 0.2627947926521301, 0.5888198018074036, 1.3113633394241333, 0.05445590615272522, 0.09293049573898315, 0.5047319531440735, 0.05395937338471413, -0.277835488319397, 0.2277594804763794, 0.12959595024585724, -0.20701853930950165, 0.5957828760147095, -0.6688998341560364, 1.0390650033950806, -0.4491511285305023, -0.37854456901550293, 0.5394486784934998, -0.5849382281303406, -0.2640360891819, 0.9143646359443665, 0.47282570600509644, 1.8997349739074707, -0.5372304320335388, -1.3338466882705688, 0.19120003283023834, -0.5399781465530396, -0.013450286351144314, -0.06545280665159225, 0.20306280255317688, -0.43134450912475586, -0.1812467873096466, -0.49502837657928467, 1.0891985893249512, 0.11528264731168747, -0.7265637516975403, -0.5787773132324219, -1.4133163690567017, 0.28783100843429565, 0.6153256297111511, 0.880632758140564, 0.8901029229164124, -0.014969369396567345, 0.07997641712427139, 0.1392761766910553, -0.3421488404273987, 0.12144524604082108, 0.21706849336624146, 0.1513933539390564, -0.20768950879573822, -0.989217221736908, -0.870593786239624, 0.23233401775360107, 0.6596165299415588, -0.19588787853717804, 0.6152228116989136, 1.620670199394226, 0.9179284572601318, -0.8881153464317322, -0.6757100224494934, 0.5888055562973022, -0.5191960334777832, 0.49320387840270996, 0.27218955755233765, -0.1836310625076294, -0.6625979542732239, -0.41121289134025574, -1.5590336322784424, 0.6783555150032043, -0.0015968717634677887, -0.47923097014427185, 1.3759369850158691, 0.14347684383392334, 0.8626274466514587, 0.30284202098846436, -0.7550135850906372, 0.442118763923645, 0.19718097150325775, -0.6672735810279846, -0.6446095705032349, 0.6564325094223022, 0.1100628674030304, 0.659593939781189, -0.0617724247276783, 0.24959325790405273, 0.5195134282112122, -1.0348960161209106, -0.11135631799697876, 0.4041009247303009, 0.2808648347854614, -0.004713158123195171, 0.3258324861526489, -0.788665771484375, 0.24593181908130646, -0.3859628140926361, -1.1329926252365112, -0.0552087128162384, 0.3020760416984558, -0.12723715603351593, -0.28874775767326355, -0.4583820700645447, -0.8142774105072021, -0.6152423024177551, -0.5885181427001953, -0.3232092261314392, 0.9806975722312927, 0.5002226829528809, 0.012194965966045856, -0.3778274357318878, -0.3310527503490448, 0.2716697156429291, -0.40908366441726685, 0.20628108084201813, -0.017799627035856247, -1.3409264087677002, 0.3557148873806, 0.22096270322799683, -0.7935009598731995, -0.12952230870723724, -0.3811928927898407, 0.3559807538986206, -0.5106846690177917, -1.3072254657745361, -1.2682923078536987, 0.8121916651725769, 0.8543320298194885, -1.0176228284835815, 0.8532687425613403, -0.1353532373905182, -0.9716145396232605, 0.1346116065979004, 0.12526655197143555, -0.6717042922973633, 0.1290271133184433, -1.1835651397705078, 0.30556920170783997, 0.45804116129875183, 0.36712726950645447, -0.14205290377140045, 0.5322763919830322, -1.1772758960723877, -1.0274441242218018, -0.7687137722969055, 0.07500191777944565, 0.9072402715682983, 0.3849918842315674, -1.1074116230010986, 1.1398637294769287, 0.234058678150177, -0.6833219528198242, -0.3046509325504303, -0.09547185897827148, -0.13024267554283142, 0.6408987641334534, 0.47915858030319214, 0.46282219886779785, 0.7287683486938477, 1.3633629083633423, -0.16720904409885406, 0.5596032738685608, 0.3065445125102997, 0.6171678304672241, -0.9901647567749023, -0.6218242049217224, -0.17652355134487152, 0.7169935703277588, -1.3411457538604736, -0.619420051574707, 0.1789740025997162, -0.6200269460678101, -1.001362681388855, 0.31909048557281494, 0.33587852120399475, -0.6205260157585144, 0.40665683150291443, -0.11056117713451385, -0.022704804316163063, -0.5693193078041077, 0.6343526244163513, 0.17258156836032867, -1.162955403327942, -0.41438475251197815, 0.38391271233558655, -0.21607837080955505, -1.8594931364059448, 0.43875032663345337, -0.12045200914144516, -0.1972738355398178, -0.47363796830177307, 0.3666249215602875, 0.9863746762275696, 0.2174222469329834, -0.4825567901134491, 1.6123360395431519, 0.7067766785621643, -0.23922817409038544, -0.4818192422389984, 0.4732508361339569, 0.12845903635025024, 1.0691490173339844, -0.5934786796569824, 0.162693589925766, -0.7810952663421631, 0.9287869930267334, -0.09014591574668884, 0.02441857010126114, -0.010944844223558903, 0.23436827957630157, -0.3116280436515808, -0.27693694829940796, 0.3647858500480652, -0.717536211013794, -0.39393311738967896, 0.8427019715309143, 0.2184402048587799, 0.2209382802248001, 0.5356696248054504, 0.7448194026947021, 0.6897426247596741, -0.33491629362106323, 0.4909396469593048, 0.012790698558092117, -1.2782162427902222, 0.24508312344551086, 0.24378399550914764, -0.31119874119758606, 0.3443305194377899, -0.4067659378051758, -1.424562692642212, 0.15205088257789612, -0.9945436716079712, -0.49850741028785706, 0.8054915070533752, -0.9138521552085876, -0.33764293789863586, 0.14251092076301575, -0.3232909142971039, -0.1443631500005722, -0.3100452125072479, 0.54322749376297, -0.08802152425050735, 0.4599607288837433, -0.00285226758569479, -0.37280216813087463, 1.564488172531128, -0.594907283782959, -0.017384236678481102, -1.2534124851226807, -0.27349627017974854, 0.2886851131916046, 0.044414766132831573, -0.06934867799282074, 0.15236841142177582, 0.5593123435974121, -0.31891027092933655, -0.9162145853042603, -0.020133553072810173, 0.6869303584098816, -0.03357001394033432, 0.23013068735599518, -0.20976397395133972, 0.3056301176548004, 0.4815141260623932, 0.35360297560691833, -0.7225281596183777, -1.14723801612854, -0.6213460564613342, 0.4314677119255066, -0.7591536641120911, 1.276989459991455, -0.911078691482544, 0.8448777198791504, 0.011864409781992435, -0.15266746282577515, -0.4779989719390869, -0.0908307358622551, 0.3737172484397888, 0.03503400832414627, 0.3225123882293701, -0.09676308184862137, -0.15618032217025757, -1.0862852334976196, -0.9897305965423584, 0.264131635427475, -0.07583979517221451, -0.030555810779333115, 0.04827151075005531, -1.1140763759613037, -0.2502892315387726, -0.6441267728805542, 0.07360494881868362, 0.34833499789237976, 0.2707565128803253, -0.06369020789861679, 0.1586482673883438, -0.6747897863388062, 0.28752389550209045, -0.15662093460559845, -0.24116425216197968, 0.06242896243929863, 0.7101544737815857, 1.2047966718673706, 0.975259006023407, 0.06807437539100647, -0.5231768488883972, 1.1043267250061035, -0.9684447050094604, -0.3547656536102295, -1.193729043006897, -0.37328729033470154, -0.49715420603752136], [0.5273580551147461, 1.0406795740127563, -2.0393245220184326, -0.6210827231407166, 1.048258662223816, 0.9133928418159485, 1.0134943723678589, 0.28483283519744873, -0.3368496894836426, 0.10281109809875488, 0.02204003557562828, 0.3311593532562256, 1.1266645193099976, 0.7343383431434631, -0.2988099455833435, -0.1895623654127121, 0.8540633320808411, -1.2046316862106323, 0.3079063296318054, 1.18082857131958, -0.17409799993038177, -0.5722994804382324, 0.03597567230463028, 0.14956165850162506, 0.46617990732192993, 0.3479907810688019, -1.152482509613037, -0.951893150806427, -0.9749125838279724, -0.9984185695648193, 0.5596964359283447, -0.6983637809753418, 0.24210986495018005, -1.1797246932983398, -0.9431623220443726, 0.4315791428089142, 1.2985031604766846, 0.37885570526123047, 0.06415625661611557, 0.12849310040473938, 0.36516717076301575, 0.6564636826515198, 0.009753849357366562, -1.2782243490219116, 1.0498223304748535, 0.20290213823318481, 0.7079362869262695, -1.1277122497558594, 0.8663915991783142, -1.1518290042877197, 0.6331787705421448, -0.3629813492298126, 0.3150954246520996, 0.6318858861923218, 0.4910293519496918, -0.06903021782636642, 0.33594515919685364, 0.7047042846679688, 0.7806532382965088, -0.5023700594902039, 0.37477490305900574, 0.303793340921402, -0.9236665964126587, 0.8702731728553772, 0.17341701686382294, -0.027584660798311234, 0.15882699191570282, 0.7430279850959778, 0.2804107367992401, 0.4071477949619293, 0.14662037789821625, 0.2661011815071106, -0.47269219160079956, 0.11388393491506577, -0.9928960800170898, 0.3788906931877136, 0.1264251470565796, 0.20766764879226685, 0.21992544829845428, 0.6318017840385437, -0.9874266982078552, -0.13725009560585022, 0.7743039727210999, 1.0554487705230713, 1.5677207708358765, 0.3663325607776642, 0.07587752491235733, -0.3914939761161804, -0.10276339948177338, 2.447573661804199, 0.14768779277801514, 0.07777591794729233, 0.37596529722213745, -0.19956667721271515, -0.049200695008039474, -0.33339494466781616, 0.21507613360881805, -0.606296718120575, -1.0663154125213623, -0.6892074942588806, -0.6977667808532715, -0.8821820616722107, -0.6139845848083496, -0.14600299298763275, 0.34627389907836914, 0.782353401184082, 0.7939052581787109, 0.6122598052024841, -0.3578261137008667, -0.1447775512933731, -0.44410374760627747, 1.1880382299423218, -1.145147442817688, -1.0046205520629883, -0.8614951968193054, -0.07772410660982132, 1.8830602169036865, -0.5061795711517334, -0.2407282143831253, 1.1834489107131958, -0.4836774468421936, -0.3644131124019623, -0.3219844400882721, 0.4786970019340515, 0.5300338268280029, 0.44833216071128845, -0.47437992691993713, -0.47645482420921326, 0.4699445962905884, -0.4343489408493042, -0.23641180992126465, -0.5507137179374695, -0.046829886734485626, 0.5094687342643738, -0.59504634141922, 0.26367780566215515, -0.39535579085350037, -0.778394341468811, 0.07669311761856079, 0.14690399169921875, 0.44923973083496094, 0.1670687347650528, -0.4378972351551056, 0.1742585003376007, -0.12015180289745331, -1.0242449045181274, 1.0636067390441895, 0.09161630272865295, -0.5162659883499146, 0.3364443778991699, -0.4356636703014374, 0.43015217781066895, 0.30728620290756226, 0.41828086972236633, -0.1703610122203827, -0.012056689709424973, 0.18717166781425476, 0.27269378304481506, 0.1428607702255249, -0.1369461566209793, 1.398719310760498, -0.05941127985715866, -0.20242828130722046, 0.6260602474212646, -0.2751484215259552, -0.015645699575543404, -0.3907049000263214, 0.38322943449020386, 0.38595637679100037, 0.7510431408882141, -0.7372792363166809, 0.2118494212627411, 0.08709772676229477, 0.8090959787368774, -0.07666832953691483, -0.6757538914680481, 0.8310888409614563, -0.9342750906944275, -0.990207314491272, -1.3009202480316162, -0.2322920262813568, -0.049555253237485886, 0.0420985110104084, 0.01290400605648756, 0.7984441518783569, -0.195500910282135, 0.16927210986614227, 0.2909068167209625, -0.4367416501045227, -0.684631884098053, -0.34359824657440186, 0.5501259565353394, -0.7769625186920166, -0.39393213391304016, -1.0602186918258667, -0.2583499550819397, 0.2835733890533447, -0.5478690266609192, -0.47130584716796875, -0.19420960545539856, -0.21527326107025146, -0.3081441819667816, -0.4940277636051178, -0.2800639569759369, -0.5076428055763245, 0.689671516418457, -1.503857135772705, 0.978672444820404, -0.989643394947052, 0.2739768624305725, 1.4106656312942505, 0.5272762179374695, -0.928834080696106, 0.738158643245697, -0.07086244225502014, -1.2834330797195435, 0.42489302158355713, -0.12089990079402924, -0.08535517752170563, 0.6935587525367737, -0.0882473811507225, 1.0113611221313477, 0.0799538642168045, -0.24640440940856934, -0.05908442661166191, -0.8616956472396851, -0.8283770680427551, -1.545531988143921, -0.8523721098899841, 0.07926206290721893, -0.38945236802101135, -1.4720603227615356, 0.3184430003166199, -0.18953406810760498, -0.8490650653839111, 0.4376526176929474, 0.7369658350944519, 0.17496533691883087, 0.7737220525741577, 0.8120293617248535, 0.47762331366539, 1.010055661201477, -0.4760526716709137, -0.6308282613754272, -0.7618598937988281, -0.3235505521297455, 1.4996135234832764, -0.8373028635978699, 0.5383403897285461, 1.1392807960510254, 0.9506500959396362, 0.12671448290348053, 0.42012685537338257, 0.2705584764480591, -0.1819562017917633, -0.4031055271625519, -0.09200527518987656, 0.5349754095077515, -0.44232267141342163, 1.1552804708480835, 1.0662031173706055, -1.0221132040023804, -0.18692460656166077, -0.012067001312971115, -0.1541018933057785, -0.44015341997146606, -1.0461875200271606, -0.3205072581768036, -0.09850207716226578, 0.2756703794002533, -0.08767114579677582, 1.1502455472946167, -0.7867034673690796, 1.095314621925354, 0.35037484765052795, -0.39449241757392883, -0.9667989611625671, 0.04070976376533508, -0.571894109249115, 0.4582044780254364, -0.22878944873809814, -1.1324642896652222, -1.5321776866912842, -0.37226352095603943, 0.44423726201057434, 0.07846984267234802, 0.26820531487464905, 0.2279282659292221, 0.05555153265595436, 0.10295027494430542, -0.051123958081007004, 0.10796687006950378, -0.04953894764184952, -0.08428950607776642, 0.24996642768383026, 1.0058172941207886, 1.2659587860107422, -1.2582422494888306, -1.0584845542907715, 0.06619273126125336, 0.051796916872262955, 1.3039450645446777, 0.6616342663764954, 0.891907811164856, -0.1911425143480301, 0.29700395464897156, -0.6817337274551392, -0.04520028829574585, 0.12740594148635864, -0.030786851420998573, -0.9626878499984741, -0.7988529801368713, -0.2543533444404602, -0.9120346307754517, -0.20548561215400696, 0.5760217308998108, 0.29068008065223694, 0.556745707988739, 0.7420136332511902, 0.16645151376724243, -0.5021282434463501, -0.13781845569610596, -0.09910565614700317, -1.0138849020004272, 0.1254272758960724, 1.260713815689087, -0.9995653629302979, -0.07247630506753922, -0.7427293658256531, 0.09379149228334427, 0.7891265153884888, 0.7095010876655579, -0.09925702214241028, -0.9243350028991699, -0.5806472301483154, -0.5889573097229004, 0.8968207240104675, -0.054305583238601685, -0.040130969136953354, -0.02255186252295971, 0.6946438550949097, 0.332986980676651, -0.0966426357626915, -0.6153059601783752, 1.1202797889709473, -0.5573968887329102, 0.03626842424273491, -0.17439262568950653, -0.010351153090596199, 0.156034916639328, 0.025613943114876747, 0.16365988552570343, 0.08133374154567719, -0.11273690313100815, -0.051469188183546066, 0.44649577140808105, 0.15108054876327515, 0.8312198519706726, 0.2696424722671509, 0.3020012378692627, 1.4118626117706299, -0.5566467642784119, 0.17839087545871735, -1.3902262449264526, 0.9343831539154053, 0.5362716317176819, 0.6585457921028137, 0.1462632566690445, 0.009839366190135479, 0.5697746276855469, -0.10796035081148148, -0.12872888147830963, 0.15789689123630524, 1.4551717042922974, 0.4929845929145813, -0.34308767318725586, -0.4402974843978882, -0.05541055649518967, -0.7756641507148743, -0.7616708278656006, 0.2727604806423187, -0.30613672733306885, -1.599198579788208, -1.3096879720687866, 0.8701260685920715, 0.48376455903053284, -0.33712396025657654, -0.6253888607025146, -0.17197774350643158, 0.6892431974411011, -0.5407420992851257, 0.7641023993492126, -0.4883415699005127, 0.8335700035095215, 0.029969144612550735, -0.644149661064148, 0.050291165709495544, 0.24621601402759552, 0.2879319190979004, -0.09855201840400696, -1.1227878332138062, 0.10849587619304657, -0.13782662153244019, 0.26065582036972046, 0.646705687046051, 0.11032214760780334, 0.0612928681075573, -0.6562725901603699, -0.13507869839668274, 0.4846840798854828, -0.1593296378850937, 0.6228733062744141, -0.3644394874572754, -0.3280961215496063, 0.2043522745370865, -0.4442744851112366, -0.07085905969142914, 0.2481308877468109, 0.04394073784351349, 0.5306348204612732, -0.525041401386261, 0.4819125831127167, 0.2040972262620926, 0.4853580594062805, 1.439258098602295, -0.011961911804974079, 0.47833749651908875, 0.7553988099098206, 0.17042796313762665, -1.859005093574524, 0.5382673144340515, 0.238189697265625, -0.4708631932735443, -0.5714367032051086, 0.16446414589881897, 0.336692750453949, -0.09121643751859665, 0.7745377421379089, 0.3322591483592987, 0.8879495859146118, 0.4339405596256256, -0.9453702569007874, -0.5218712687492371, 0.42663758993148804, 0.8584765195846558, 1.4980649948120117, 0.5369789004325867, 0.3531392812728882, -1.3022830486297607, 1.1357933282852173, 0.20075811445713043, 0.3438504934310913, 1.4981920719146729, 0.2810613811016083, 0.6369330286979675, -1.4280897378921509, -0.4202114939689636, 0.010031325742602348, -0.2999984323978424, 0.051179926842451096, 0.29912081360816956, 0.4410305619239807, -0.5119374990463257, 0.9266402125358582, 0.18363772332668304, 0.5997341275215149, 0.2922394573688507, 0.4851085841655731, 0.21791420876979828, 0.4423283338546753, -0.18103322386741638, 0.7310546040534973, -0.5289968252182007, 0.14774732291698456, 0.251338392496109, -0.1497819572687149, 0.1053842082619667, -0.02409914694726467, 0.354917049407959, 1.6476086378097534, -0.4421008229255676, -1.590006709098816, 0.5056492686271667, -0.48758465051651, 0.2801174521446228, -0.5006116032600403, -0.1356503665447235, -0.047455839812755585, -0.9171245098114014, -0.18404914438724518, 0.44597160816192627, 0.18928077816963196, -0.36109182238578796, -0.39662039279937744, -0.9533873796463013, -0.12398064881563187, 0.3006695806980133, 1.2807272672653198, 0.4855470359325409, 0.6656662225723267, 0.39536163210868835, 0.5267125368118286, -0.9314812421798706, 0.18118761479854584, -0.2489103525876999, -0.4783972203731537, -0.11385679244995117, -1.2439595460891724, -0.46034684777259827, 0.5816340446472168, 0.2536124289035797, 0.19967299699783325, 1.0671498775482178, 1.5478044748306274, 1.0383036136627197, -0.6593126058578491, -0.41895967721939087, 0.2903669476509094, -0.7413075566291809, 0.07932651042938232, 0.7905406355857849, 0.0623195618391037, -0.915145754814148, -0.6240689754486084, -1.8679429292678833, 1.1216531991958618, -0.5136764645576477, -0.5136343836784363, 0.7995034456253052, 0.2581072747707367, 0.39684972167015076, 0.9887908697128296, -1.3393436670303345, 0.919789731502533, 0.10813894867897034, -0.9142113327980042, -1.3246850967407227, 0.32191747426986694, -0.2120261788368225, -0.8079146146774292, -0.41101837158203125, 0.5971104502677917, 0.12712006270885468, -0.22383278608322144, 0.6152178049087524, 1.0266245603561401, -0.13138362765312195, -0.4247967004776001, 0.7630462646484375, -1.1286460161209106, -0.12733334302902222, -0.39021989703178406, -0.3845977485179901, -0.017848782241344452, 0.576901376247406, 0.10247037559747696, -0.33646705746650696, -0.44014522433280945, 0.2734759747982025, -0.5819571018218994, 0.42437323927879333, 0.21898098289966583, 1.2010650634765625, 0.6672403216362, 0.45980480313301086, -0.27127647399902344, -0.2976182699203491, -0.9250611066818237, -0.8118749260902405, -0.3190537393093109, 0.02527020126581192, -1.2142881155014038, -0.5300242900848389, -0.716515839099884, -0.8282475471496582, -0.6668974161148071, -1.1008740663528442, 0.444322407245636, -0.8870800137519836, -1.1802785396575928, 0.33850517868995667, -0.09857242554426193, 0.8409829139709473, -0.9074873924255371, 0.5011600852012634, -0.5398542881011963, -0.7557721734046936, 0.21591410040855408, 0.39975741505622864, -0.7221817970275879, -0.3321702182292938, -1.3432759046554565, 1.1314564943313599, 0.16772741079330444, 0.1259225606918335, 0.2739819884300232, 0.7055710554122925, -1.0534473657608032, -0.6118203997612, -0.6066465377807617, -0.07834261655807495, 0.8170164823532104, 0.5242211222648621, -1.620747685432434, 1.3821079730987549, 0.9254899024963379, -0.779853880405426, -0.6523952484130859, 0.05336862429976463, -0.4719630479812622, 0.14426910877227783, 0.7492934465408325, 0.05218809098005295, 0.13007812201976776, 1.2497446537017822, 0.20087452232837677, 0.09806159883737564, 0.09139784425497055, 0.14388814568519592, -0.4433799088001251, -0.46457067131996155, -0.3555847108364105, 0.8145620822906494, -0.33568763732910156, -0.5255433320999146, 1.0052821636199951, -1.5613281726837158, -0.16342754662036896, 0.6978411674499512, 0.6281675696372986, -0.5738619565963745, -0.18702495098114014, -0.9797493815422058, 0.019341841340065002, -0.9977782964706421, 1.1299266815185547, -0.46642741560935974, 0.0012104436755180359, -0.543600857257843, -0.2554791569709778, 0.3972049653530121, -1.1132817268371582, 0.828027069568634, 0.12075560539960861, -0.2868139445781708, -0.44899919629096985, 0.7008990049362183, 1.0738455057144165, -0.3581717014312744, -0.6160074472427368, 0.9236976504325867, 0.7908180952072144, 0.14993679523468018, -0.4339423179626465, 0.7656041979789734, 0.3614061176776886, 0.8264254331588745, 0.2637617290019989, 0.30636993050575256, -0.7927821278572083, 0.3701598644256592, -0.3375297486782074, 0.49902573227882385, 0.24197819828987122, 0.21879427134990692, -0.5173425674438477, 0.9149284362792969, 0.3959670066833496, -0.44175654649734497, 0.01978371851146221, 1.5874921083450317, -0.4452265799045563, 0.473844051361084, 0.5542315244674683, 0.3725742995738983, -0.24208897352218628, -0.3881339728832245, 0.38119930028915405, 0.7018032670021057, -0.26427486538887024, -0.31433483958244324, -0.2767052948474884, 0.05012892186641693, -0.48915889859199524, -0.13818874955177307, -1.311055064201355, 0.16895423829555511, -0.8017078042030334, 0.6978767514228821, 0.3462584316730499, -1.0715633630752563, -0.947346031665802, 0.6870789527893066, -0.2769736349582672, -0.22178949415683746, -0.43418386578559875, 0.6695838570594788, 0.24345280230045319, -0.5033495426177979, 0.2930706739425659, 0.7215755581855774, 1.3058418035507202, -0.3946959972381592, -0.038358740508556366, -0.9258143305778503, -0.27844828367233276, 0.5100271701812744, -0.13916777074337006, -0.12999431788921356, 0.007796050049364567, 0.15480150282382965, -0.6377967596054077, -0.9850329160690308, 0.8066789507865906, 0.051430922001600266, -0.182096928358078, -0.3860812783241272, -0.683350145816803, 0.3437548577785492, -0.01085879746824503, 0.8782238364219666, -0.3101009130477905, -1.1876386404037476, -1.3711875677108765, 0.7008258104324341, -0.8145543336868286, 1.3005701303482056, -0.18367402255535126, 0.5196778774261475, -0.2640130817890167, -0.31785598397254944, -0.28465503454208374, -1.1951357126235962, 0.8001513481140137, -0.7963001132011414, 0.627846896648407, -0.17744825780391693, 0.5488536953926086, -0.754513144493103, -0.7361785173416138, 0.3543618619441986, 0.09927329421043396, -0.5358688831329346, 0.1875067800283432, -1.1855922937393188, -0.8801894783973694, -1.4404199123382568, 0.1482500284910202, 0.6794688105583191, -0.024961156770586967, 0.11596935987472534, 0.14164064824581146, -1.3977538347244263, -0.012289872393012047, 1.1008542776107788, -0.1045328676700592, 0.2980855703353882, 1.1454226970672607, 1.6633373498916626, 0.6246231198310852, 0.6479814052581787, -0.09066417068243027, 1.2468571662902832, -1.1163480281829834, -0.7157683372497559, -0.4133394956588745, -0.7253916263580322, -0.3849223852157593], [0.6137555837631226, 0.7519007921218872, -3.085517168045044, -0.8923887610435486, 0.44515618681907654, -0.14133751392364502, 1.3243048191070557, 0.8112092018127441, -0.230494886636734, 0.015134472399950027, -1.2360343933105469, -0.2389633059501648, 0.5761999487876892, 0.5164265036582947, 0.9185628294944763, 0.5569474697113037, 0.5486111044883728, -0.46040230989456177, 0.8203773498535156, 1.08887779712677, -0.4288899898529053, -0.5324398875236511, -0.696779191493988, -0.5752084255218506, 0.37246236205101013, -0.7739155292510986, -0.4937981367111206, -1.0659785270690918, -1.4196501970291138, -1.042264699935913, 0.9467769861221313, -0.5375919342041016, -0.5517259240150452, -0.6466172933578491, -1.9223511219024658, -0.15333841741085052, 1.7007896900177002, -0.10822740942239761, 0.44286462664604187, 0.9311770796775818, 1.780010461807251, 0.6340985894203186, 0.2212470918893814, -1.0807509422302246, 0.11765467375516891, 0.004038255661725998, 0.5015242695808411, -0.4303221106529236, 0.603760838508606, -0.6406105160713196, 0.6296647191047668, -0.9582434892654419, 0.7047815918922424, 0.8161646723747253, 1.6296496391296387, -0.4169352948665619, 0.833934485912323, -0.4258202612400055, 0.3199537396430969, -0.44645655155181885, 0.18006636202335358, 0.23290342092514038, 0.18990397453308105, 0.7336162328720093, 0.05997466295957565, -0.2602411210536957, 0.19281421601772308, 1.3141236305236816, 0.27350643277168274, -0.6392358541488647, 0.9789621829986572, 0.2477615773677826, -0.16225692629814148, -0.36525091528892517, -0.8311986923217773, -0.03477107733488083, 0.16585955023765564, 0.9145758748054504, 1.1210442781448364, 0.6529275178909302, -1.173912525177002, -0.4079287052154541, 1.005456805229187, 0.9919167757034302, 1.4481322765350342, -0.04080004245042801, -0.02302205190062523, 0.062123093754053116, -0.3643651604652405, 2.024799346923828, -0.035549335181713104, -0.5396957993507385, 0.8340845704078674, -0.29292356967926025, -0.3260372281074524, -0.6067975759506226, -0.18316912651062012, 0.039015501737594604, -0.9317772388458252, -0.9603559970855713, -0.6254909634590149, -1.4791083335876465, -0.017829176038503647, -0.16345420479774475, 0.20841239392757416, 1.1555895805358887, 0.8026842474937439, -0.057784538716077805, -0.4106881022453308, 0.350954532623291, 0.5957015752792358, 0.29488009214401245, -0.7731248140335083, -1.9063626527786255, -0.5458022952079773, 0.7693212628364563, 1.1667670011520386, 0.49799874424934387, -0.01029961183667183, 1.1353501081466675, -1.079817533493042, -0.5161950588226318, -0.36318448185920715, 0.441356360912323, 0.2125941514968872, -0.35129815340042114, -0.325783371925354, -0.33259856700897217, -0.04456860572099686, -0.17285332083702087, -0.3991347849369049, -0.860075056552887, 1.1535961627960205, 0.5282059907913208, -0.7052152752876282, 0.6364762187004089, 0.002609267830848694, -0.7672972083091736, -0.44620177149772644, -0.8183161616325378, 0.29755961894989014, 0.5062101483345032, 0.17312055826187134, -0.3788205087184906, -0.051909152418375015, -0.3842695653438568, 0.8645018339157104, -0.6512736678123474, -1.2666454315185547, -0.7551581263542175, -0.7105449438095093, 0.08797231316566467, -0.01927923783659935, 0.011481747031211853, 1.105676531791687, -0.18406659364700317, 0.5471881628036499, 0.0702693834900856, 0.3096374273300171, 0.40204185247421265, 0.1935807317495346, -0.23523765802383423, -0.2662929594516754, 0.9461574554443359, 0.11150357872247696, -0.9648164510726929, 0.158042773604393, 0.9197677969932556, 0.44200557470321655, 0.5318477749824524, -0.7175934314727783, -0.4075251519680023, -0.9684524536132812, 0.36243247985839844, -0.05937247723340988, -0.5775341987609863, 0.9773516654968262, -0.5510000586509705, -1.6073079109191895, -1.3444823026657104, 0.6536216735839844, -0.04437883198261261, 0.6409499049186707, 0.04766692593693733, 1.4529180526733398, -0.5451107621192932, 0.25633418560028076, -1.0857508182525635, 0.19837409257888794, -0.6073119044303894, -1.2751520872116089, 0.03637624904513359, -0.944726288318634, -0.013951564207673073, -0.48132213950157166, -0.9246206283569336, 0.023354528471827507, -0.446125864982605, -1.122341513633728, -0.21820181608200073, -0.2431660145521164, -0.5748521089553833, -0.6717507839202881, -0.6506548523902893, -0.5676047801971436, 0.3431716859340668, -1.891701579093933, 0.6700051426887512, -1.2914111614227295, 0.3888217806816101, 1.295419692993164, 0.5615702867507935, -1.1569591760635376, 0.6299221515655518, 0.028601177036762238, -0.7032505869865417, 0.24693889915943146, 0.37517663836479187, 0.07173759490251541, 0.14264890551567078, -0.06321821361780167, 0.7779925465583801, 1.1959130764007568, -0.7913059592247009, 0.47917041182518005, -0.40896499156951904, -0.64291912317276, -0.9640235900878906, -0.06391662359237671, -0.29262059926986694, -0.7667862176895142, -0.968262791633606, 0.7072142362594604, 0.22052916884422302, -1.7616221904754639, 0.4262392818927765, 0.15598522126674652, 0.8824857473373413, 0.3082772195339203, 1.1471967697143555, 0.1088302806019783, 0.9362853765487671, -0.007086597383022308, 0.10050374269485474, -0.960606575012207, 1.0295368432998657, 0.6855042576789856, -1.009680151939392, 0.8290345072746277, 1.0378457307815552, 0.89653080701828, 0.4138781428337097, 1.0027542114257812, -0.29372644424438477, 0.24812953174114227, -0.5930517315864563, -0.8046123385429382, 0.35417455434799194, 0.16743579506874084, 1.5090430974960327, 0.9087927937507629, -0.8774582147598267, 0.03412420302629471, -0.16100552678108215, 0.7964235544204712, -1.2238681316375732, -0.41585201025009155, 0.7964699864387512, 0.2659147381782532, 0.7304441332817078, -0.10757564008235931, 0.3746594190597534, -1.3164596557617188, 0.5802806615829468, -0.44913116097450256, 0.3728630840778351, -0.24353724718093872, -0.06778361648321152, -0.19372674822807312, 0.7722210884094238, -0.32642459869384766, -0.45618936419487, -0.9541372060775757, -0.8247677683830261, 0.9533100128173828, 0.4928600788116455, -0.5615536570549011, 0.6003189086914062, -0.14166153967380524, -0.1857118159532547, 0.7732096314430237, 0.9602195620536804, -0.05438605695962906, -0.10837988555431366, 0.06355714052915573, 0.9126002788543701, 1.5634069442749023, -0.5438442826271057, -0.6626307964324951, -0.49738579988479614, 0.529887855052948, 1.0621410608291626, 1.6811050176620483, 1.456358790397644, -0.16147775948047638, 0.4906335771083832, 0.7221666574478149, 0.2291824072599411, 0.13573132455348969, -0.5373339056968689, -0.2709425985813141, -1.0245347023010254, 0.14074786007404327, 0.11137810349464417, -0.11972180753946304, 0.6581189036369324, 0.012986298650503159, 0.09971688687801361, 0.8589166402816772, -0.23817826807498932, -0.7085700631141663, 0.05189472436904907, -0.6609699726104736, -0.3567800223827362, -0.22628909349441528, 1.3390166759490967, -1.5688403844833374, 0.28587937355041504, -0.1525830775499344, 0.03022567182779312, 0.3047731816768646, 0.17851859331130981, 0.11681141704320908, -0.811794102191925, -0.8002704381942749, 0.03062245063483715, 0.28092068433761597, -0.08827681839466095, -0.7981380820274353, -1.2026402950286865, 0.5492264032363892, 1.0076031684875488, 0.5627651214599609, -1.021551489830017, 1.5985462665557861, -0.3817538022994995, 0.3097233772277832, 0.37935304641723633, 0.787202000617981, 0.3728606402873993, -0.2686307728290558, -0.8374962210655212, 0.1919947862625122, -0.19706904888153076, -0.24512317776679993, 0.5148688554763794, -0.3590736985206604, 1.3182955980300903, 0.7050630450248718, 0.5262672305107117, 1.9084155559539795, -0.21826499700546265, 0.5748493075370789, -1.6104234457015991, 1.033545970916748, 0.7282259464263916, 0.5632609128952026, -0.48091545701026917, 0.17517149448394775, 0.3353889286518097, -0.004190564155578613, 0.31598833203315735, 0.31368592381477356, 0.9290838837623596, 0.18640030920505524, -0.40653109550476074, -0.6761861443519592, 0.1034383699297905, -0.19548942148685455, -0.45738303661346436, 0.08759529143571854, 0.6792367100715637, -0.639704167842865, -0.526186466217041, 1.6161261796951294, 0.2723381519317627, -0.7581980228424072, -0.848343551158905, 0.359848290681839, 0.5381685495376587, -0.019815752282738686, 0.405401349067688, -0.8474869728088379, 0.28020793199539185, 0.8936443328857422, -1.2895829677581787, -0.6953898072242737, 1.2250843048095703, 0.12402161955833435, 1.0685378313064575, -0.7633091807365417, 0.12472188472747803, 0.21394222974777222, 0.2809631824493408, 0.5202622413635254, -0.09904489666223526, 0.13973204791545868, 0.2557607889175415, 0.8435195088386536, 0.31853756308555603, 0.6332104802131653, 0.5367396473884583, -0.47306251525878906, 0.9150353074073792, 0.2511218786239624, 0.7821544408798218, 0.3798578083515167, 0.9396878480911255, 0.33533695340156555, -0.13886304199695587, -0.1686505228281021, -0.09871119260787964, 0.08564137667417526, 0.5776805877685547, 1.5347697734832764, 0.06165421009063721, 0.6673168540000916, 0.8146514892578125, 0.3159111440181732, -2.130793809890747, 0.6068639159202576, 0.5358750224113464, 0.5771549344062805, -0.535193145275116, -0.1302521675825119, 0.116673544049263, -0.5522583723068237, 0.2967461347579956, 0.3653009533882141, 0.5182945132255554, 0.5971647500991821, -0.4406271278858185, -0.3450952172279358, 1.5638843774795532, 1.443221926689148, 1.5228396654129028, 0.5832290649414062, -0.7874882221221924, -0.5779286026954651, 0.6498528122901917, 0.4127131998538971, 0.3636230528354645, 0.8114128112792969, 0.357317179441452, 1.9868789911270142, -1.2931814193725586, -0.5049484968185425, 0.3519541323184967, 0.3821871876716614, -0.02629201114177704, 1.2845255136489868, 0.9893245697021484, -0.19522681832313538, -0.03508695214986801, 0.20109936594963074, -0.21276138722896576, -0.1084824949502945, 0.05260851979255676, 0.24038785696029663, 0.8374240398406982, -0.334486186504364, 0.1384381651878357, -0.5740662217140198, 0.27676504850387573, 0.9098072648048401, -0.3485162556171417, -0.5120481848716736, 0.10039347410202026, -0.5135250687599182, 1.652379035949707, -0.4110286235809326, -0.9133970141410828, 0.4057788848876953, -1.457804799079895, -0.08692635595798492, -0.8424472212791443, -0.6433701515197754, -0.5194645524024963, -0.458371102809906, -0.6173822283744812, 0.4038417339324951, 0.29106375575065613, -0.18317103385925293, 0.36997541785240173, -1.3249716758728027, -0.33828502893447876, 0.7275314331054688, 1.2949713468551636, 0.2419610470533371, -0.007805760949850082, 0.12338851392269135, 0.7512742877006531, -0.5351036787033081, -0.21101228892803192, 0.5564424395561218, -0.7335344552993774, 0.34217554330825806, -0.5497037172317505, -0.9290910959243774, 0.770056962966919, -0.34459608793258667, 0.6253030300140381, 0.9375991225242615, 0.41344326734542847, 1.540159821510315, -0.20954683423042297, -0.5786795616149902, 0.1797836869955063, -0.16433031857013702, 0.11487266421318054, 0.34271275997161865, 0.25599581003189087, -1.5779297351837158, -0.33634743094444275, -1.548699975013733, 0.06730922311544418, -0.18823030591011047, -0.6850700378417969, 0.18766219913959503, 0.023545537143945694, 0.6881999969482422, 0.3424835205078125, -0.6369787454605103, 0.8297789096832275, 0.015808459371328354, -0.39631161093711853, -1.5851181745529175, 0.5802443027496338, -0.6389597058296204, 0.16823318600654602, -0.012825125828385353, 0.19833961129188538, -0.6704793572425842, -0.34562769532203674, -0.5421690344810486, -0.06958531588315964, -0.002952057868242264, -0.5720769762992859, -0.45161762833595276, -0.728639543056488, 0.07686962187290192, -0.0828675925731659, -0.2816040515899658, -0.5980881452560425, 1.075009822845459, -0.6283479928970337, -1.3149042129516602, 0.20020067691802979, -0.4218593239784241, -0.4067626893520355, 0.20122133195400238, 0.5914245247840881, 1.393805742263794, 0.5008126497268677, 0.23148874938488007, -0.24644456803798676, 0.03855651244521141, -0.2706948518753052, -0.2799428105354309, 0.18856336176395416, 0.017884423956274986, -0.930897057056427, -0.5380915999412537, 0.12768131494522095, -1.104020595550537, -0.2859039604663849, -0.8030456304550171, 0.47605979442596436, -1.370844841003418, -1.1224852800369263, -0.8195977807044983, -1.02626371383667, 0.48656168580055237, -1.2570924758911133, 0.025902800261974335, 0.293912410736084, -0.8387113213539124, 0.7766206860542297, 0.2835509181022644, -0.6116609573364258, -0.3749203085899353, -0.7560647130012512, 0.5769569277763367, -0.21525917947292328, 0.9837913513183594, -0.7833165526390076, 0.47959646582603455, -1.663197636604309, -0.8188785314559937, -0.9151913523674011, -0.17241300642490387, 0.9257416725158691, 0.051817573606967926, -1.638023018836975, 0.8094859719276428, 0.39454925060272217, -0.8844522833824158, 0.14073266088962555, 0.28056463599205017, -0.1953429877758026, -0.07418627291917801, 0.5931902527809143, 0.09604264050722122, -0.06022835522890091, 0.7605594992637634, -0.32655200362205505, 1.3304933309555054, 0.1397443264722824, -0.15963202714920044, -0.6323354244232178, -0.017444491386413574, -0.016405832022428513, 0.21844996511936188, -0.8669134378433228, -0.07737727463245392, 0.22246821224689484, -1.0973719358444214, -0.8119376301765442, 0.83554607629776, 0.5698853135108948, -0.6966286301612854, -0.012249946594238281, -1.6163603067398071, -0.062262021005153656, -1.3637981414794922, 0.845313310623169, -0.23240569233894348, -0.0312543660402298, -0.706599235534668, -0.5822058916091919, -0.13994304835796356, -1.1154476404190063, 0.3095196783542633, -0.464146226644516, -0.039569150656461716, -0.8020187020301819, 0.6846993565559387, 0.6966719627380371, 0.4933227002620697, -1.2015410661697388, 1.0119341611862183, 0.48462316393852234, -0.28420138359069824, -0.13179795444011688, 0.31307753920555115, 0.14917141199111938, 1.00625479221344, -0.2408156543970108, 0.22040049731731415, -1.1269088983535767, 0.5142114758491516, 0.10774458199739456, 0.07043179869651794, -0.7454774975776672, 0.019789688289165497, -0.5737648010253906, 0.04077787697315216, -0.11340691149234772, -0.6082912683486938, -0.5303312540054321, 0.9442712664604187, 0.6534094214439392, 0.6708123087882996, 0.5621612668037415, 0.4634755551815033, -0.05669688433408737, 0.21834196150302887, 0.42916882038116455, -0.41905859112739563, -0.6972714066505432, -0.18890231847763062, -0.029055459424853325, 0.04549681395292282, -0.37265580892562866, -0.5800121426582336, -1.568236231803894, -0.10074520111083984, -0.18319091200828552, -0.47918909788131714, 0.33818939328193665, -1.2268083095550537, -0.7795414924621582, 0.3045009970664978, 0.17731443047523499, 0.05960248410701752, -0.21190182864665985, 0.2213999330997467, -0.4324573576450348, -0.8751606941223145, 1.1012901067733765, -0.4156626760959625, 1.2710597515106201, -0.5660507082939148, -0.027225321158766747, -1.0486913919448853, -0.3074510991573334, 0.756819486618042, -0.01183149591088295, 0.34900081157684326, -0.6190225481987, 1.043513536453247, -0.7165951132774353, -0.4270704686641693, 0.1748790591955185, 0.6361249685287476, -0.2286045253276825, -0.012674890458583832, -1.5186800956726074, 0.4008466601371765, 0.7402967810630798, 1.310198426246643, 0.14123807847499847, -0.7853230834007263, -1.0245885848999023, 1.004133701324463, -0.6683319211006165, 1.164544939994812, 0.13512414693832397, 1.025101661682129, -0.05283796042203903, 0.034161973744630814, 0.43756070733070374, -0.29830989241600037, 0.7220309972763062, -0.06055761128664017, 0.12558875977993011, -0.11826790124177933, 0.3370797038078308, -0.5124017596244812, -1.0758506059646606, 0.14051532745361328, 0.29318395256996155, -0.7234866619110107, -0.2512933909893036, -0.8379497528076172, -0.874699592590332, -1.3994914293289185, -0.10821709781885147, 0.08751309663057327, 0.08557137846946716, 0.5252386927604675, -0.5979127287864685, -0.6454343795776367, 0.306979775428772, 0.5095404982566833, -0.13765114545822144, 0.7997346520423889, 1.5288467407226562, 2.189856767654419, 1.0447611808776855, -0.018643569201231003, -0.6673240065574646, 0.6009575128555298, -1.0974187850952148, -0.09529722481966019, -1.0696179866790771, -0.48424652218818665, -0.15930674970149994], [0.44745567440986633, 0.7895683646202087, -2.3856053352355957, -0.3847818672657013, 0.6169590353965759, 0.37094858288764954, 1.3161464929580688, 0.3212733864784241, -0.2759064733982086, -0.9061988592147827, -0.34008851647377014, -0.04187050834298134, 1.2286884784698486, 1.0115333795547485, 0.18282127380371094, 0.3949492871761322, 0.9406306147575378, -0.2567567229270935, 0.6217331886291504, 1.3910675048828125, -0.2864927053451538, -0.1618744432926178, -0.3509700298309326, -0.12555575370788574, -0.09918998181819916, -0.4941718280315399, -0.9700490832328796, -1.2085015773773193, -1.4002776145935059, -1.301567792892456, 1.5527106523513794, -0.25533050298690796, -0.208902508020401, 0.22215622663497925, -1.565529465675354, -0.6466208100318909, 1.4542542695999146, 0.4706586003303528, 0.6666998267173767, 1.0956060886383057, 1.5358198881149292, 0.6369975805282593, -0.06986042857170105, -1.6511379480361938, 0.4518961012363434, -0.04018827900290489, 0.6025293469429016, -0.9165927171707153, 0.6094744205474854, -0.35990574955940247, 0.7255319952964783, 0.6271828413009644, 0.49810218811035156, 1.1737898588180542, 0.9785192012786865, -0.4319726824760437, 0.2167731672525406, 0.3090120851993561, 1.1606577634811401, -0.9214679598808289, 0.5322215557098389, 0.36909595131874084, -0.3555041551589966, 1.0173389911651611, 0.33403798937797546, -0.8801670074462891, -0.1490555852651596, 0.675902247428894, 0.4079435169696808, -0.5743769407272339, 0.3695487976074219, 0.5732404589653015, -0.6163051128387451, 0.6036307215690613, -0.8650262355804443, 0.2815205156803131, 0.57743901014328, 0.5645031929016113, 0.3572368621826172, 0.24197585880756378, -0.8643074631690979, 0.47345274686813354, 0.6075023412704468, 0.43681633472442627, 1.5463128089904785, 0.01908055506646633, -0.021428974345326424, -0.027618790045380592, -0.7955710887908936, 2.2261486053466797, 0.7081964015960693, -0.4030865430831909, 0.3110458552837372, -0.8849356770515442, -0.4154544770717621, -0.6706447005271912, 0.2278417944908142, -0.7904741764068604, -0.8540372848510742, -1.091288685798645, -0.8775792121887207, -0.7659804821014404, 0.542965829372406, -0.2167428731918335, 0.24712346494197845, 1.2874995470046997, -0.08421392738819122, -0.2253226488828659, -1.021620512008667, -0.40563902258872986, -0.22927016019821167, 0.04389898106455803, -0.8645410537719727, -0.8990143537521362, -0.5471816658973694, 0.2574276924133301, 0.8632535338401794, -0.40872180461883545, 0.28504472970962524, 0.6887575387954712, -1.045442819595337, -0.07076668739318848, -0.9819319248199463, 0.5584755539894104, 0.696932315826416, 0.7486162185668945, -0.6563189029693604, -0.847842276096344, 0.9584255814552307, -0.24021677672863007, 0.14489610493183136, -0.05772806331515312, -0.4213835299015045, 0.8419563174247742, -0.480567991733551, 0.8517336249351501, -0.7719760537147522, -0.5265952944755554, -0.36073991656303406, -0.3793164789676666, 0.6463638544082642, -0.7163993120193481, -0.263934850692749, -0.3278804421424866, 0.07636746019124985, -0.3909517824649811, 0.813874363899231, -0.28505420684814453, -0.8841027617454529, 0.3283641040325165, -0.7819151878356934, -0.09325174242258072, 0.25669050216674805, 1.227370262145996, 0.5955363512039185, 0.07310324907302856, -0.01730063185095787, 0.25304728746414185, -0.18666347861289978, -0.10274700820446014, 0.49216344952583313, -0.6364854574203491, -0.3839672803878784, 1.4508548974990845, 0.5124759078025818, -0.7543391585350037, 0.3590506315231323, 1.0413641929626465, -0.16825352609157562, 0.5298284292221069, -0.4737299084663391, -0.38342908024787903, -0.48786842823028564, 0.6288824677467346, 0.6640970706939697, -0.2525162398815155, 1.3955460786819458, -1.021612286567688, -1.3400986194610596, -0.9753108024597168, 0.2164062112569809, -0.20709311962127686, -0.0013909060508012772, -0.20152173936367035, 1.2327330112457275, -0.3447748124599457, -0.024888502433896065, -0.15816660225391388, -0.756468653678894, -1.361599087715149, -0.6585016250610352, -0.6557935476303101, -1.389785647392273, -0.018916111439466476, -0.47157764434814453, -0.8657068610191345, 0.08833139389753342, -1.0049165487289429, -0.9450779557228088, 0.12317553907632828, -0.45285239815711975, 0.2051396369934082, -0.8973990678787231, 0.12374438345432281, -0.6443775296211243, 1.1121087074279785, -1.6931962966918945, 0.8421499133110046, -0.5814366936683655, 0.07376231998205185, 1.150907278060913, 0.09469221532344818, -0.6985892057418823, 0.6398329138755798, 0.09513657540082932, -1.0539705753326416, 0.8666225075721741, 0.4357970952987671, -0.050129085779190063, 0.2838175296783447, 0.015675680711865425, 0.7805410623550415, 0.8530701398849487, -0.045619897544384, 0.3231796622276306, -0.26955538988113403, -0.625106692314148, -0.7225289344787598, -0.7133727669715881, -0.024517947807908058, -0.4200223386287689, -0.9846822023391724, 0.46811074018478394, 0.2677592933177948, -0.5698061585426331, 0.1324123591184616, -0.2576664090156555, -0.24495714902877808, 0.20340684056282043, 1.1928484439849854, 0.1691102236509323, 0.2678322494029999, 0.06504148989915848, 0.08839154988527298, -0.793768584728241, 0.12355343252420425, 1.2519370317459106, -0.0666700154542923, 0.4446218013763428, 1.4053577184677124, 0.7359690070152283, -0.357118159532547, 0.14996784925460815, 0.30928757786750793, 0.3032982349395752, -0.6098242998123169, -0.7056832313537598, 0.09745234251022339, -0.851150631904602, 0.7839915156364441, 0.8323656916618347, -0.9995119571685791, -0.02199378050863743, 0.10142380744218826, 0.02346951700747013, -0.5411569476127625, -0.26537081599235535, -0.27450090646743774, 0.2699470818042755, 0.010715651325881481, -0.12590335309505463, -0.028103694319725037, -0.5860874652862549, 0.7165785431861877, -0.5049105882644653, -0.14805099368095398, -0.4052570164203644, 0.07647868245840073, -0.07161625474691391, 0.3517973721027374, -0.06418360024690628, -1.2704840898513794, -0.7515023946762085, 0.18973322212696075, 1.3387460708618164, -0.3616059720516205, -0.6974166631698608, 0.05992725118994713, 0.021730508655309677, 0.19856558740139008, 0.12956590950489044, 0.6778588891029358, 0.3427234888076782, -0.38377848267555237, -0.27892202138900757, 0.7960426211357117, 0.860353946685791, -0.8535250425338745, -1.2425674200057983, 0.19022104144096375, 0.9046048521995544, 1.4130921363830566, 1.3057279586791992, 1.5666639804840088, 0.8000216484069824, -0.13235436379909515, -0.6523059606552124, -0.2902086675167084, -0.6261438131332397, -0.5785420536994934, -0.8342382907867432, -1.337104082107544, -0.4411965608596802, -0.31961551308631897, -0.4221515953540802, 0.8113369345664978, -0.052798472344875336, 0.7051125764846802, 1.4399579763412476, -0.0682826042175293, -1.0752416849136353, -0.6810875535011292, -0.06964513659477234, -1.038954496383667, 0.629560649394989, 1.4038439989089966, -1.252024531364441, -0.39894068241119385, 0.30002468824386597, 0.16764985024929047, 0.3890794813632965, -0.17432568967342377, 0.013061055913567543, -1.7308558225631714, -0.8303915858268738, -0.3357717990875244, 0.9367193579673767, -0.069423608481884, -0.03220721334218979, -0.3632549047470093, 0.37585243582725525, 0.49397608637809753, 0.2027815580368042, -0.9872390627861023, 0.9466961026191711, -0.7230761647224426, 0.22497351467609406, 0.05809929594397545, 0.0837453082203865, 0.727901816368103, -0.26413196325302124, -0.4554002583026886, 0.08629713207483292, -0.018150486052036285, -0.2966136336326599, 0.6449525356292725, -0.3001134693622589, 0.999214231967926, 0.8184424638748169, 0.4958727955818176, 1.075730562210083, -0.48391130566596985, -0.010680710896849632, -1.2722779512405396, 0.9974543452262878, 0.9574353098869324, 0.9764098525047302, -0.1048145592212677, 0.19726689159870148, 0.14393401145935059, 0.32529011368751526, 0.5522518157958984, 0.4165226221084595, 1.314997673034668, 0.8259698748588562, -0.46102002263069153, -0.1868346929550171, -0.2609809339046478, -0.02887013927102089, -0.5653587579727173, -0.28723496198654175, 0.6776593327522278, -0.8381877541542053, -0.5110998749732971, 1.226859450340271, 1.110886812210083, -0.3227570354938507, -0.5433845520019531, -0.10504256188869476, 0.9492683410644531, -0.3587407171726227, 0.4183148741722107, -0.6891345977783203, 0.022281624376773834, 0.09907849133014679, -1.231770634651184, -0.44114693999290466, 0.928497314453125, 0.378601610660553, 0.6555681228637695, -1.1170940399169922, -0.21075540781021118, -0.4275726079940796, 0.027967683970928192, 0.5823768973350525, -0.6765127778053284, 0.17283539474010468, -0.13441890478134155, -0.232661172747612, 0.12452388554811478, 0.05569270998239517, 1.1206934452056885, -0.6717840433120728, -0.15488982200622559, 0.02517937868833542, -0.31546750664711, 0.27868416905403137, -0.06325090676546097, -0.7122349739074707, 0.4533594846725464, -0.7498204708099365, -0.12617573142051697, -0.2041981816291809, 0.2813878357410431, 1.7248419523239136, 0.4387012720108032, 0.7301599383354187, 0.4063860774040222, -0.5266931653022766, -1.1153956651687622, 0.5724074840545654, 0.5434752106666565, 0.134726881980896, -0.18400874733924866, -0.8256508111953735, 0.46054255962371826, -0.24843797087669373, 0.23960600793361664, 0.1412190943956375, 0.5898929238319397, 0.8094044923782349, -0.03514894098043442, -0.29717305302619934, 0.5407755970954895, 1.5577423572540283, 1.7723928689956665, 0.3776550889015198, -0.7169207334518433, -0.43796733021736145, 0.9222776293754578, -0.4185900390148163, 0.4986640214920044, 0.925320565700531, -0.009049497544765472, 1.5372546911239624, -1.669804573059082, -0.33691662549972534, 0.2173030525445938, -0.13588623702526093, 0.31615838408470154, 0.5909396409988403, 0.5721602439880371, -0.1528826504945755, 0.5352394580841064, -0.16892653703689575, -0.2516798675060272, 0.33196499943733215, 0.013812581077218056, -0.7343732118606567, 0.5457605719566345, -0.7857252359390259, 0.2583129107952118, -0.7564998269081116, -0.04130072519183159, 0.006932133808732033, 0.28927963972091675, 0.22758282721042633, 0.25147727131843567, -0.01583694852888584, 1.0642945766448975, -1.0341877937316895, -1.1466634273529053, 0.43673473596572876, -0.563689649105072, 0.32115039229393005, -0.7287563681602478, -0.20355170965194702, -0.4671141803264618, -0.8348724246025085, -0.2104278951883316, 1.0754516124725342, -0.2398245632648468, -0.20129279792308807, -0.062011152505874634, -1.3490538597106934, 0.22211489081382751, 0.46845901012420654, 1.5324116945266724, 0.23780912160873413, 0.6717751026153564, 0.656928300857544, 0.8300296068191528, -1.4045190811157227, -0.09193934500217438, 0.6721409559249878, 0.09894569963216782, 0.1250268518924713, -1.0084073543548584, -0.3831560015678406, 0.3308277726173401, 0.3960128724575043, 0.22363130748271942, 0.6087291836738586, 1.2569215297698975, 1.3764203786849976, -0.3379213213920593, -0.6331492066383362, 0.30310577154159546, -0.7456371188163757, -0.41283759474754333, 0.7097951769828796, -0.8605920672416687, -0.31344836950302124, -0.370697021484375, -1.5035799741744995, 1.057303786277771, -0.13715022802352905, -0.7150149345397949, 0.6435874700546265, 0.8038454055786133, 0.22945791482925415, 1.1214877367019653, -0.11556737124919891, 0.40144291520118713, 0.14871732890605927, -0.11704658716917038, -1.854753851890564, 0.44846251606941223, 0.28492823243141174, 0.21830037236213684, -0.6385908722877502, 0.28645092248916626, 0.28935539722442627, -0.6049822568893433, -0.40378180146217346, -0.09674261510372162, 1.446683406829834, 0.6684208512306213, 0.6997014880180359, -0.8716288805007935, 0.38978275656700134, -0.4705718755722046, -0.2579953968524933, -0.1286417841911316, 0.6356905102729797, 0.28512465953826904, -1.0492850542068481, -0.3852464556694031, -0.559991717338562, -0.3848205804824829, -0.0897642970085144, -0.23828551173210144, 1.2161072492599487, 0.010578255169093609, -0.2383173555135727, -0.07139480859041214, 0.05163285508751869, -0.7551121711730957, -0.3127729296684265, -0.1748536080121994, 0.6344815492630005, -1.7251349687576294, -0.217532217502594, -0.41755738854408264, -0.5388490557670593, -0.1993621438741684, 0.32632502913475037, 0.035527024418115616, -1.1948466300964355, -0.6613884568214417, -0.9742890000343323, -0.003982714843004942, 0.8006735444068909, -0.5688755512237549, 0.1664644479751587, 0.2885069251060486, -0.9953421950340271, 0.7595621347427368, -0.01484299823641777, -1.2191294431686401, -0.07371576130390167, -1.3305058479309082, 1.325472116470337, -0.14843077957630157, 0.050070054829120636, 0.3979826867580414, 1.472240686416626, -0.4798690378665924, -0.6867853403091431, -1.179760456085205, 0.07938645780086517, 0.7129076719284058, 1.5275688171386719, -1.1485531330108643, 1.2790437936782837, -0.02984762378036976, -1.236033320426941, 0.1483100950717926, -0.08609233051538467, -0.5102862119674683, 0.7191511988639832, 0.26039382815361023, 0.33350521326065063, 0.08724632114171982, 1.1189981698989868, 0.14036987721920013, 0.8334465622901917, 0.3979134261608124, 0.30457356572151184, -0.8716133236885071, -0.19554749131202698, -0.3498217463493347, 0.1762850284576416, -1.1716264486312866, -1.2092084884643555, 0.019430704414844513, -1.3996198177337646, -0.8477897047996521, 0.5338209271430969, 1.012027382850647, -0.4995881915092468, 0.09604935348033905, -0.41230276226997375, 0.4120922386646271, -0.5174111127853394, 0.7663399577140808, -0.22181940078735352, 0.1052628830075264, -0.2988934814929962, -0.514819324016571, 0.12297208607196808, -1.5594524145126343, 0.04516621306538582, -0.03571626543998718, -0.14149297773838043, -0.054313454777002335, 0.4816111624240875, 0.9556185603141785, -0.5584548711776733, -0.655511200428009, 1.2356330156326294, 1.2861028909683228, -0.2601057291030884, -0.05182648077607155, 0.6721389889717102, 0.5106637477874756, 0.6549884080886841, -0.4562760889530182, -0.395917683839798, -1.037889838218689, 0.10233258455991745, 0.18040631711483002, -0.1714003086090088, -0.6478090882301331, -0.23398903012275696, -0.17351166903972626, 0.8413573503494263, 0.4437876343727112, -0.596312940120697, -0.20493556559085846, 1.1231080293655396, -0.346597284078598, 0.3875238597393036, 0.8442685604095459, 0.19163642823696136, 0.5337146520614624, 0.43774205446243286, 0.1935672163963318, 0.7319902181625366, -0.30282703042030334, 0.2850312292575836, -0.01725667528808117, -0.23212210834026337, -0.18354429304599762, -0.8300791382789612, -1.4534000158309937, -0.21362042427062988, -0.687507688999176, -0.6550576686859131, 0.011861688457429409, -1.627935528755188, -0.7825822234153748, 0.1522912085056305, 0.07361356168985367, -0.2750847637653351, -0.6363455057144165, 0.45596617460250854, -0.398959755897522, -0.12867875397205353, 1.2183098793029785, -0.05479149892926216, 1.266156792640686, 0.10187360644340515, -0.30440205335617065, -0.9725854396820068, -0.41589710116386414, 0.8576419949531555, -0.18270771205425262, -0.18712086975574493, -0.03835085779428482, 0.41244134306907654, 0.03464210405945778, -0.585508406162262, 0.6063967943191528, -0.8975479602813721, 0.17062412202358246, 0.03679772466421127, -1.0828373432159424, -0.19894854724407196, 0.5569671392440796, 0.3159482181072235, -0.06289582699537277, -0.6173064112663269, -1.4206819534301758, 0.750408947467804, -0.5292587876319885, 1.1856646537780762, -0.4211250841617584, 1.1259503364562988, 0.30759963393211365, -0.3840608298778534, -0.1362687349319458, -1.0304325819015503, 0.6679820418357849, -0.06899171322584152, 1.0415862798690796, -0.30629512667655945, -0.15400199592113495, -0.08263197541236877, -1.3183493614196777, 0.3725321888923645, 0.4634271562099457, -0.23598748445510864, 0.0550045445561409, -1.3692514896392822, -0.7844628691673279, -0.5107002854347229, 0.30126890540122986, 1.044732928276062, -0.06714965403079987, 0.5638284087181091, -0.37968552112579346, -1.0738840103149414, 0.015525049529969692, 0.9012670516967773, -0.5397560596466064, -0.005771748721599579, 1.723327398300171, 1.6453880071640015, 0.918898344039917, 0.10114444047212601, -0.28269949555397034, 0.5208376049995422, -0.9087035655975342, -0.5218356847763062, -0.8010521531105042, -0.10880424082279205, 0.10823778063058853], [0.6169954538345337, 0.6181463599205017, -2.423950433731079, -0.512127697467804, 0.19256474077701569, 0.8015762567520142, 1.084558129310608, 0.3796696960926056, 0.3622520864009857, -0.10814505815505981, -0.3174974024295807, -0.06498351693153381, 1.1184831857681274, 0.7589912414550781, -0.14450538158416748, 0.15217919647693634, 0.8202192187309265, -0.5204944014549255, 0.907059907913208, 1.5489091873168945, -0.47682610154151917, -0.1324874460697174, -0.1462010145187378, -0.1825295388698578, -0.24637876451015472, -0.2517390251159668, -1.3514549732208252, -1.1342082023620605, -0.9397872090339661, -1.2971826791763306, 1.0290124416351318, -0.3516714572906494, -0.6545689105987549, -0.6244562864303589, -1.0156662464141846, 0.004417140036821365, 0.964079737663269, 0.10522594302892685, 1.2493324279785156, 1.0350701808929443, 1.0167521238327026, 0.9293422698974609, -0.18696124851703644, -0.7694052457809448, 0.2885994613170624, 0.016336314380168915, 0.6044479608535767, -0.9569305777549744, 0.43974271416664124, -0.10172948986291885, 0.6102915406227112, -0.7532490491867065, 0.5784654021263123, 0.1203698068857193, 1.6792991161346436, 0.09408334642648697, 0.7752785682678223, 0.14952124655246735, 0.9900172352790833, -1.2799218893051147, 0.7101528644561768, -0.0017866343259811401, -0.6023612022399902, 0.9868060350418091, -0.23323291540145874, -0.6125146150588989, -0.19320735335350037, 0.9458164572715759, 0.016250506043434143, -0.32730966806411743, 0.8565419912338257, 0.9641072154045105, -0.5702539682388306, 0.061275456100702286, -0.8009352684020996, 0.008144170045852661, 0.27519491314888, 0.9364171624183655, 0.7276204228401184, 0.6769046783447266, -0.21590960025787354, -0.43996039032936096, 0.6126716732978821, 0.3518451452255249, 1.8604907989501953, 0.172651469707489, -0.05350151285529137, 0.6510653495788574, -0.407356858253479, 2.1127312183380127, 0.08056151866912842, -0.12063298374414444, 0.7655996680259705, -0.5808144807815552, -0.4570072591304779, -0.555512547492981, 0.1005157083272934, 0.24140237271785736, -1.1846281290054321, -0.38155415654182434, -0.4482549726963043, -1.008381724357605, 0.5811914205551147, -0.04479704052209854, 0.22402648627758026, 1.1690824031829834, 0.9249114990234375, 0.29307568073272705, -0.5698214769363403, 0.22955071926116943, 0.1415202021598816, 0.4586283266544342, -0.542652428150177, -1.0423052310943604, -1.0110448598861694, 0.3671584725379944, 1.2304350137710571, 0.1445031315088272, 0.18644380569458008, 1.194321870803833, -0.9893888235092163, -0.489946573972702, -0.8671770691871643, 0.4076465368270874, 0.24284613132476807, 0.4273588955402374, -0.5114589333534241, -0.5532106161117554, 0.4022366404533386, -0.2622973620891571, -0.33395758271217346, -0.4654082953929901, 0.29507502913475037, 0.45336300134658813, -0.4601459503173828, 1.3481571674346924, -0.21491937339305878, -0.6661938428878784, 0.2723519206047058, -0.19177252054214478, 0.6617512702941895, 0.20145702362060547, 0.3480943441390991, -0.051392119377851486, -0.061367217451334, -0.3686070442199707, 0.09965331852436066, -0.5701273083686829, -0.7510063052177429, 0.28476548194885254, -0.33587226271629333, 0.05011620372533798, 0.2530798614025116, 0.3968381881713867, 0.5358571410179138, 0.17206959426403046, 0.2472691833972931, 0.6602901816368103, 0.5475465059280396, 0.43166255950927734, -0.029969917610287666, -0.3551749587059021, -0.18594317138195038, 0.6160387396812439, 0.06486387550830841, -0.6913262605667114, 0.1133367195725441, 0.6316210627555847, 0.4843045473098755, 0.6366013884544373, -0.7723598480224609, -0.05982983857393265, -0.41704273223876953, 0.43635308742523193, -0.01502055674791336, -0.6810336112976074, 1.1025404930114746, -1.2756098508834839, -1.139915108680725, -1.1065232753753662, -0.1257820874452591, -0.37193164229393005, -0.22482408583164215, -0.09075377136468887, 0.4891411066055298, -0.3695499300956726, -0.0687221884727478, -0.4646526575088501, -0.1512170135974884, -0.8308896422386169, -0.6709960103034973, 0.04947774112224579, -0.3676488995552063, 0.21592654287815094, -0.13102291524410248, -1.1002943515777588, 0.2867487967014313, -0.8629303574562073, -0.6794443726539612, 0.06521879136562347, -0.10317140817642212, -0.4909505546092987, -0.9582813382148743, 0.15636876225471497, -0.4690786302089691, 0.6898516416549683, -1.0606623888015747, 0.9313670992851257, -1.1521037817001343, -0.0872812271118164, 1.3817058801651, 0.6273855566978455, -0.7668370604515076, 0.6646617650985718, 0.07795809209346771, -0.967014729976654, 0.026211760938167572, 0.032489679753780365, -0.18575631082057953, 0.00039614224806427956, -0.09196615219116211, 0.6833178997039795, 0.6736064553260803, -0.31003904342651367, 0.2912035882472992, 0.17407749593257904, -0.6814061403274536, -0.5998526215553284, -0.7736945748329163, 0.24721530079841614, -0.16540321707725525, -1.221783995628357, 1.121620774269104, 0.06852716952562332, -0.49312305450439453, 0.5985128879547119, -0.30917075276374817, 0.07502063363790512, 0.24184559285640717, 1.0150386095046997, 0.034838639199733734, 0.8700774312019348, -0.6200398802757263, -0.309101402759552, -0.6273052096366882, 0.1821952611207962, 0.7800096273422241, -1.1836124658584595, 0.21828529238700867, 1.1769764423370361, 0.7390921711921692, 0.4780610203742981, 0.645917534828186, 0.011306260712444782, 0.126031294465065, -0.6417398452758789, -0.6823058128356934, 0.423225075006485, -0.09944858402013779, 0.6065576076507568, 0.26870197057724, -0.1304408609867096, -0.3604784905910492, -0.012835155241191387, 0.5820532441139221, -0.807309091091156, -0.8413701057434082, 0.011046133004128933, -0.1183042898774147, 0.48321595788002014, -0.13428449630737305, 0.7297518849372864, -0.5509092807769775, 0.4989407956600189, -0.6188223361968994, -0.1851375699043274, -0.7005322575569153, 0.3319488763809204, -0.46497219800949097, 0.5138437747955322, -0.4553108215332031, -1.0086092948913574, -0.3725116550922394, -0.09122272580862045, 0.8342265486717224, -0.27555856108665466, -0.47060427069664, 0.28031447529792786, -0.01840459741652012, -0.06946016848087311, -0.09687826037406921, 0.33562713861465454, -0.13649670779705048, -0.5564969778060913, 0.07460509240627289, 1.0484371185302734, 1.2918267250061035, -0.5026620030403137, -0.9697690010070801, -0.605474591255188, 0.4599357843399048, 0.8376199007034302, 0.710433840751648, 1.5094882249832153, 0.41160306334495544, 0.16363391280174255, -0.06829047948122025, -0.3303156793117523, -0.2282017171382904, -0.550160825252533, -0.696712851524353, -0.8690927624702454, -0.6421928405761719, 0.007891896180808544, -0.27449384331703186, 0.2877826690673828, 0.21717558801174164, -0.06294428557157516, 1.2408868074417114, 0.22703717648983002, -0.3298189043998718, -0.5671312212944031, -0.007468309719115496, -0.579193651676178, 0.18301573395729065, 1.3343713283538818, -1.4073002338409424, 0.15106776356697083, -0.2707189619541168, 0.14878004789352417, 0.4454239010810852, -0.06157781556248665, -0.4788059890270233, -1.004034399986267, -0.9686517715454102, -0.3917452394962311, 0.5093339681625366, 0.18307706713676453, -0.2553311884403229, -0.7727949023246765, 0.6621742248535156, 0.7563832402229309, 0.1364119052886963, -0.5726532936096191, 0.9539726376533508, -0.027415724471211433, -0.011152339167892933, 0.34164729714393616, 0.21144184470176697, 0.414252370595932, 0.04597504809498787, -0.6368314623832703, 0.10166829824447632, 0.059030793607234955, 0.28492000699043274, 0.7204258441925049, -0.3176144063472748, 1.2690935134887695, 0.3738316595554352, 0.10117508471012115, 1.3947328329086304, -0.2420675903558731, 0.5370482206344604, -1.2993276119232178, 0.6555514335632324, 0.2649098038673401, 0.726850152015686, -0.235775887966156, 0.43255823850631714, 0.5782465934753418, 0.0885339304804802, 0.2436361163854599, 0.42897769808769226, 0.8754528760910034, 0.28849655389785767, -0.16245365142822266, -0.5294297933578491, 0.3942234516143799, -0.1889503300189972, -0.8967881798744202, 0.09886473417282104, 0.27140191197395325, -0.7780991196632385, -0.05839697644114494, 0.9961825013160706, 0.13504734635353088, -0.23963770270347595, -0.27496394515037537, 0.2021113783121109, 0.47017189860343933, 0.12539760768413544, 0.48685306310653687, -0.37216904759407043, 0.1334330141544342, 0.43329286575317383, -1.1996334791183472, -0.445617139339447, 0.5379084944725037, 0.4381695091724396, 0.8780010938644409, -0.9284101724624634, 0.4220365583896637, 0.29951056838035583, 0.7117294073104858, -0.10982656478881836, -0.13886301219463348, 0.10856765508651733, -0.3359405994415283, 0.3187815546989441, -0.05040654167532921, 0.6319776177406311, 0.20771460235118866, -0.6393471956253052, -0.1263485997915268, -0.1916855424642563, 0.20430293679237366, -0.23760825395584106, 0.8050773739814758, 0.14133824408054352, -0.18068139255046844, -0.18577927350997925, 0.13623613119125366, -0.29114463925361633, 0.5044631361961365, 1.7419461011886597, 0.6218787431716919, 0.5912549495697021, 0.6431942582130432, 0.009687911719083786, -1.4165977239608765, 0.601931631565094, 0.526960551738739, 0.1047872006893158, -0.6069823503494263, 0.023557983338832855, -0.0923190489411354, -0.036887023597955704, 0.6670165657997131, 0.8201068639755249, 0.846584677696228, 0.9040601849555969, -0.5271167159080505, 0.12249957770109177, 0.9459061622619629, 0.8181647062301636, 1.881032943725586, 0.31601715087890625, -0.0020067617297172546, -1.0556745529174805, 0.40922337770462036, -0.33616188168525696, -0.1401950567960739, 0.7644931674003601, 0.24297122657299042, 1.7258045673370361, -1.4633426666259766, -0.4447808265686035, -0.04948728159070015, -0.004066338296979666, -0.03733173385262489, 1.1585533618927002, 0.04837808012962341, 0.23751533031463623, 0.28561902046203613, -0.2891883850097656, -0.30282846093177795, -0.0949067622423172, -0.07333767414093018, -0.4000687003135681, 0.6262377500534058, -0.766753077507019, 0.8246854543685913, -0.5325744152069092, 0.31250765919685364, 0.49945151805877686, -0.6905003786087036, -0.7647337317466736, 0.13081702589988708, 0.256693571805954, 1.3277572393417358, -0.6630527377128601, -1.1417006254196167, 0.4224565625190735, -0.838961660861969, -0.16829662024974823, -0.314208447933197, -0.5036544799804688, -0.10498751699924469, 0.13164764642715454, -0.3264792859554291, 0.9413423538208008, 0.15277999639511108, 0.08386094123125076, -0.33002638816833496, -1.298689842224121, -0.5213239192962646, 0.30900266766548157, 1.2244457006454468, 0.17369501292705536, 0.3581934869289398, -0.0659065768122673, 0.7971138954162598, -1.0502814054489136, -0.3288980722427368, 0.6252977848052979, -0.36591091752052307, 0.2880405783653259, -0.7881993651390076, -0.6823363900184631, 0.6933504939079285, -0.015286778099834919, 0.5955272912979126, 0.33751142024993896, 1.227708101272583, 1.579694151878357, -0.42208096385002136, -0.44647881388664246, 0.4998946487903595, -0.30884745717048645, -0.4712637662887573, 0.7612346410751343, 0.06508924067020416, -1.1227163076400757, 0.013735305517911911, -1.921440839767456, 0.6643257141113281, -0.24048098921775818, -1.1924763917922974, 0.1928473711013794, 0.23928263783454895, 0.6560695767402649, 0.7916224598884583, -0.5671406388282776, 0.3979158103466034, -0.3151823878288269, -0.41277503967285156, -1.8150265216827393, 0.3680059313774109, -0.06279813498258591, 0.31007838249206543, 0.1262713223695755, 0.33968183398246765, -0.016194244846701622, -0.38102486729621887, -0.10014214366674423, 0.4581979811191559, 0.25997239351272583, 0.1415090560913086, 0.6145721673965454, -1.0425565242767334, -0.030861584469676018, 0.08194765448570251, -0.5415339469909668, -0.5130375623703003, 0.49245181679725647, -0.39222022891044617, -0.9769465327262878, -0.4325910210609436, -0.79328852891922, -0.7178645133972168, 0.15859314799308777, 0.15972767770290375, 1.1296778917312622, -0.13097935914993286, -0.4545855224132538, 0.014336951076984406, -0.019491372630000114, -0.43317911028862, -0.1832953691482544, -0.05199812352657318, 0.40769654512405396, -1.5270140171051025, -0.46458926796913147, 0.32458385825157166, -1.0303459167480469, -0.48104187846183777, -0.3117780089378357, 0.23100140690803528, -1.3066598176956177, -1.5065840482711792, -0.30287912487983704, -0.604988157749176, 0.3987216353416443, -0.7367732524871826, -0.19973096251487732, 0.5435189604759216, -1.1154545545578003, 0.7420019507408142, 0.5403194427490234, -0.6245572566986084, -0.4130392372608185, -0.9773802757263184, 0.4434831142425537, -0.11201480776071548, 0.21862417459487915, -0.2606821656227112, 0.603624701499939, -1.1261428594589233, -1.6058306694030762, -1.479925513267517, -0.10744167864322662, 0.5289936661720276, 0.7987077832221985, -1.1832280158996582, 0.6123540997505188, 0.9228600859642029, -0.5133396983146667, 0.19291961193084717, 0.37632471323013306, -0.4429600238800049, -0.15697753429412842, 0.6455162167549133, -0.6956782937049866, 0.043880268931388855, 0.5570710897445679, -0.36674803495407104, 0.7006382942199707, 0.08503220230340958, -0.12222617864608765, -0.9705830812454224, -0.16292160749435425, -0.3705493211746216, 0.3920814096927643, -1.157170057296753, -1.0280667543411255, 0.1681670993566513, -1.104520320892334, -0.2567194998264313, 0.8275238275527954, 0.25960806012153625, -0.8163951635360718, -0.3616023659706116, -1.2897953987121582, 0.31986090540885925, -0.8233255743980408, 0.7898520827293396, -0.8424506783485413, 0.3920227587223053, -0.6595410108566284, -0.5389971137046814, 0.2595216929912567, -1.0551059246063232, 0.43809735774993896, 0.0548570491373539, -0.24909207224845886, -0.16194023191928864, 0.683561384677887, 1.1395480632781982, -0.22362089157104492, -0.7562344670295715, 0.8805635571479797, 0.8809462785720825, 0.12633143365383148, -0.5051504373550415, 0.22798138856887817, 0.40743184089660645, 0.963507354259491, -0.15830059349536896, 0.4161156415939331, -0.9942921996116638, 0.8851925134658813, 0.32129281759262085, 0.3184388279914856, -0.6419323086738586, 0.19646891951560974, -0.164502814412117, 0.6661630868911743, -0.29582861065864563, -0.9377210736274719, -0.06545814871788025, 0.9296150803565979, -0.07948985695838928, 0.2379111647605896, 0.1781214326620102, 0.32866060733795166, 0.026479516178369522, 0.3234967589378357, 0.3878564238548279, 0.35608386993408203, -0.7698392271995544, -0.4090883433818817, -0.42475879192352295, -0.07567144185304642, -0.2954031229019165, -0.24526381492614746, -1.1122697591781616, -0.19301767647266388, -0.4405632019042969, -0.24960361421108246, 0.07399995625019073, -1.1937453746795654, -0.8799337148666382, 0.35570284724235535, -0.18198268115520477, -0.27169153094291687, 0.07830911874771118, 0.2574862837791443, 0.019354747608304024, -0.0506904162466526, 0.8657294511795044, -0.413034588098526, 0.9796918630599976, 0.005869386717677116, -0.16943620145320892, -0.6087419986724854, -0.08320491015911102, 0.3673308789730072, 0.06340718269348145, -0.01829705201089382, -0.12147865444421768, 0.013010958209633827, -0.156866192817688, -0.4653729200363159, 0.041860971599817276, 0.4775106608867645, -0.14431075751781464, 0.09394923597574234, -0.9779990911483765, 0.517677366733551, 0.7078598737716675, 0.975213885307312, 0.17703384160995483, -0.3602268397808075, -0.8640458583831787, 0.48693057894706726, -0.44272851943969727, 1.2895588874816895, -0.4760175943374634, 0.6800909042358398, -0.17813409864902496, 0.25235462188720703, -0.1878037452697754, -0.2571321427822113, 0.8333662748336792, -0.4831241965293884, 0.41009414196014404, 0.13006427884101868, 0.324557363986969, -0.8267197012901306, -1.0288822650909424, 0.628164529800415, 0.6657151579856873, -0.6303404569625854, -0.11852759122848511, -0.975738525390625, -0.7297480702400208, -0.9421371221542358, 0.30020445585250854, 0.5894539952278137, 0.06615986675024033, 0.162858784198761, -0.5009790062904358, -0.7044520974159241, 0.391237735748291, -0.4054282009601593, -0.20274858176708221, 0.5814306139945984, 1.6271077394485474, 1.9355074167251587, 0.8769429922103882, -0.046606939285993576, -0.4529949426651001, 0.6685062050819397, -0.49540022015571594, -0.4014938175678253, -0.5124999284744263, -0.6193618774414062, 0.0033838171511888504], [-0.33665716648101807, 1.1898415088653564, -2.669403314590454, -0.1779913604259491, 1.099902868270874, 0.5068248510360718, 1.3082170486450195, -0.36693379282951355, 0.0673617273569107, -0.43766874074935913, 0.3288661539554596, 0.23637063801288605, 0.3573967218399048, 0.8594624400138855, 0.37856072187423706, 0.655535101890564, 0.648612380027771, -1.1108644008636475, 0.4618837833404541, 1.5539549589157104, -0.7279092073440552, -0.5525416135787964, -0.3544734716415405, -0.20348656177520752, -0.2943587005138397, 0.38027289509773254, -1.153315544128418, 0.04948650300502777, -1.1326184272766113, -0.9645891189575195, 0.45997390151023865, -0.6667526960372925, -0.350020170211792, 0.1565227061510086, -1.6215243339538574, 0.5631359815597534, 1.5368882417678833, 1.2588461637496948, 1.1762073040008545, -0.031144244596362114, 2.1531362533569336, 0.0005586221814155579, -0.28786683082580566, -1.3784992694854736, -0.24795815348625183, -0.7970082759857178, 0.923313319683075, -0.807884931564331, 0.46700963377952576, -0.5799403190612793, 0.30927127599716187, -0.879517674446106, 0.9331663846969604, 1.5319339036941528, 1.52890145778656, -0.5837463140487671, 0.0036812853068113327, 0.3215630054473877, 0.8938339948654175, -0.8864163756370544, 0.47205474972724915, -0.24271535873413086, -0.12038306891918182, 0.46691983938217163, 0.192540243268013, 0.2660438120365143, -0.29171621799468994, 0.560936450958252, 0.2315439134836197, -0.13316181302070618, 0.3190770745277405, 0.6787304878234863, -0.9872809648513794, 0.9404955506324768, -1.3410289287567139, 0.6489769220352173, 0.5527856349945068, 0.4854520559310913, -0.020923739299178123, 0.3721155524253845, -1.1177196502685547, -0.35217228531837463, 1.233132243156433, -0.6753174066543579, 0.572928786277771, -0.0684693455696106, 0.6155312061309814, -0.15442447364330292, -0.6960205435752869, 1.4691556692123413, 1.0600390434265137, 1.1428998708724976, 0.5577000379562378, -0.09606523811817169, -0.24839133024215698, -0.08816161006689072, 0.022343561053276062, -0.4960674047470093, -1.214747667312622, -0.6090019941329956, -0.007481701672077179, -0.9806763529777527, 0.5070085525512695, 0.12746039032936096, -0.4703157842159271, 1.3248592615127563, -0.1091914102435112, -0.0047910623252391815, -0.3201015889644623, 0.007990486919879913, -0.21414732933044434, 0.08329827338457108, -1.194701910018921, -0.9971311092376709, -0.5466763973236084, 1.0030221939086914, 1.1219136714935303, -0.921963095664978, 0.4054242968559265, 0.8239749073982239, 0.4533444046974182, -0.04478384554386139, -0.18523795902729034, 0.4875333607196808, 0.6709959506988525, 0.016726084053516388, -0.5807708501815796, -0.9383058547973633, 0.27365970611572266, -0.22226163744926453, 0.04515412822365761, -0.9064018726348877, -0.45526495575904846, 0.7104378938674927, -0.9250020980834961, 1.383962631225586, -0.41336119174957275, -0.665489137172699, 0.09838501363992691, -0.9555694460868835, 0.20502641797065735, -0.33638709783554077, 0.14579671621322632, -0.4787953197956085, -0.45809823274612427, -0.8687921166419983, 0.47398245334625244, 0.05119207128882408, -0.676116943359375, 0.3186943531036377, -0.9522736072540283, 0.11022167652845383, 0.7912341952323914, 0.36302483081817627, 0.33099326491355896, -0.4144260883331299, -0.16036200523376465, 0.13903532922267914, 0.6821410655975342, 0.3262958526611328, 1.0998541116714478, 0.13459447026252747, -1.0787022113800049, 0.2850542962551117, 0.6510794162750244, 0.05768386647105217, 0.22665831446647644, 0.4017255902290344, 0.2758966088294983, 1.29445481300354, -0.17535673081874847, -0.7920403480529785, -0.23127108812332153, 0.3519286513328552, 0.8004013299942017, -1.4637585878372192, 1.11057448387146, -0.10949408262968063, -1.79134202003479, -1.2316186428070068, 0.4433337450027466, -0.9345242977142334, 0.3714669346809387, -0.27694210410118103, 0.7202386260032654, -0.6264265775680542, 0.3640926480293274, -0.0367499440908432, -0.7064553499221802, -0.9806280136108398, -0.7735766172409058, -0.2851395010948181, -1.097156047821045, 0.135395810008049, -0.8835623264312744, -0.704389214515686, 0.4293534755706787, -0.9743363261222839, -0.6768444776535034, 0.3521835207939148, 0.27249693870544434, -0.28748461604118347, -0.39854225516319275, 0.36916583776474, -0.2679237723350525, 0.69136643409729, -1.1292297840118408, 0.4155234396457672, -1.1059010028839111, 0.09597937762737274, 0.5193523168563843, -0.128493994474411, -0.7238510847091675, 0.806336522102356, 0.3126673698425293, -1.0653386116027832, 0.5595940351486206, 0.5651901960372925, -0.1813708245754242, 0.18301883339881897, 0.20843729376792908, 0.23197641968727112, -0.1466244012117386, -0.36537593603134155, 0.7373675107955933, -0.2755429744720459, -0.39392000436782837, -1.25823974609375, -0.8177530765533447, 0.2620527148246765, -1.4071714878082275, -0.8602968454360962, 0.8198553323745728, 0.19931966066360474, -1.3230226039886475, 0.20271645486354828, 0.20905622839927673, 0.7298835515975952, 0.38785219192504883, 1.1090061664581299, 0.015347246080636978, 0.9782843589782715, -0.48611801862716675, 0.19469484686851501, -0.8341970443725586, -0.12776914238929749, 0.021203815937042236, -0.15392142534255981, 0.6876626014709473, 0.6857019662857056, 0.9879155158996582, 0.523138165473938, 0.33027803897857666, -0.2695412337779999, -0.09580522030591965, -0.743634819984436, -0.9756875038146973, 0.6558609008789062, 0.5546704530715942, 1.6092922687530518, 1.244211196899414, -1.1382887363433838, -0.3489014506340027, 0.08737049996852875, 0.014030897058546543, -0.13008520007133484, -0.965261697769165, -0.6907442808151245, -0.029771286994218826, 0.47681725025177, 0.06982415914535522, 0.5165396928787231, -0.7405821084976196, 0.38923096656799316, -0.5545262098312378, -0.31992965936660767, -0.35758936405181885, 0.9296452403068542, 0.23533326387405396, 0.7493892312049866, 0.07342101633548737, -1.0867817401885986, -0.3374902606010437, -0.2283416986465454, 0.44275596737861633, 0.3575090169906616, 0.7058396339416504, 0.32126957178115845, 0.570594310760498, -0.5096136331558228, 0.4568786025047302, 0.08504661917686462, 0.14761923253536224, -0.05153840035200119, 0.2023678719997406, 0.6269903182983398, 1.417919397354126, -1.1917715072631836, -0.5274581909179688, -0.6384671926498413, 0.2791985273361206, 1.333993673324585, 0.9810216426849365, 0.46684515476226807, -0.08314330875873566, -0.1030346155166626, -0.06451618671417236, -0.2510930299758911, -0.5348472595214844, -0.7866030931472778, -1.4243748188018799, -0.6501022577285767, 0.03270101919770241, -0.44466978311538696, 0.16998760402202606, 0.5195152759552002, -0.7481523752212524, 1.1875803470611572, 0.9532743096351624, -0.4841057062149048, -0.4955853223800659, 0.07299463450908661, -0.4519018530845642, -0.8535628914833069, 0.9310833215713501, 1.5763401985168457, -0.46139436960220337, 0.22004342079162598, 0.7008407115936279, 0.38417014479637146, 0.8205653429031372, -0.47232478857040405, 0.6302323341369629, -1.1569221019744873, -0.6797105073928833, -0.09611430764198303, 0.17191293835639954, -0.14709100127220154, -0.3798609972000122, 0.03933636471629143, 0.4690342843532562, 1.32081937789917, -0.33218756318092346, -0.45144838094711304, 0.9681678414344788, 0.49838417768478394, -0.7822741270065308, -0.18978653848171234, 0.672614336013794, 0.3229830861091614, -0.23699381947517395, -0.32931768894195557, 0.013562489300966263, -0.5572056770324707, -0.9618368148803711, -0.05459382385015488, 0.18678927421569824, 1.0332717895507812, -0.33594372868537903, 0.11430587619543076, 0.9512948989868164, 0.02935246005654335, 0.1258789598941803, -1.6873784065246582, 0.47524917125701904, 0.305486798286438, 1.1647677421569824, 0.38717955350875854, 0.11613982170820236, 0.16078411042690277, 0.7781387567520142, -0.03621750324964523, 0.640784740447998, 0.8403542041778564, -0.08289888501167297, 0.035608936101198196, -0.5243403315544128, 0.2971692979335785, -0.5041832327842712, -0.7005958557128906, 0.17606215178966522, -0.038316283375024796, -0.9645373225212097, -0.6196886301040649, 0.630489706993103, 0.21125632524490356, -0.10982640087604523, -0.018435951322317123, -0.14653465151786804, 0.586419403553009, -0.9555863738059998, 0.595781683921814, -0.5171827077865601, 0.4926498532295227, 0.3307231068611145, -1.262815237045288, -0.38837602734565735, -0.19619566202163696, 1.0107972621917725, 1.3119699954986572, -1.187428593635559, 0.31914904713630676, 0.13782541453838348, 0.6467831134796143, -0.1598428189754486, -0.7739081382751465, -0.23456674814224243, 0.3949398100376129, -0.13657335937023163, 0.36411434412002563, 0.32739055156707764, 1.0194475650787354, 0.001357072964310646, -0.2871938943862915, 0.2998773455619812, 0.21630620956420898, -0.47474023699760437, -0.9017860889434814, 0.3423551321029663, 0.1759520024061203, 0.10632382333278656, -0.2351217269897461, 0.8083049058914185, 0.22600005567073822, 2.0738401412963867, 0.566979706287384, 0.7682451009750366, 0.344773530960083, -0.3170296549797058, -0.8242877721786499, -0.2574670910835266, 0.2918516993522644, 0.0673433467745781, -0.7868392467498779, 0.08702222257852554, 0.8699764609336853, -0.41140955686569214, 0.9596914052963257, 0.7314316630363464, 0.9720693826675415, 0.2770710289478302, 0.290973961353302, 0.07772836089134216, 0.3622002899646759, 1.2574145793914795, 0.8203163146972656, 0.2924635410308838, -0.6352238655090332, -0.8891363739967346, 0.7330288887023926, -0.6955878138542175, 0.09469332545995712, 0.8705524206161499, 0.10459425300359726, 1.5214064121246338, -1.4979088306427002, -0.739672064781189, 0.7767030000686646, 0.3176576495170593, 0.22633659839630127, 0.6163779497146606, 0.3229759931564331, -0.04243946820497513, 0.22854822874069214, 0.26717624068260193, 0.09648352861404419, 0.09014885872602463, 0.08704829961061478, 0.12657782435417175, 0.4192253351211548, -0.4187116026878357, 0.3044333755970001, -1.0346357822418213, 0.13071030378341675, -0.19789932668209076, -0.7177135944366455, -0.058134451508522034, 0.16059517860412598, 0.27982065081596375, 1.4191645383834839, -0.1617269217967987, -0.8069910407066345, 0.1830962896347046, -1.4342031478881836, -0.17539313435554504, -0.708365797996521, -0.5452737808227539, -0.03203625977039337, -0.6665977239608765, -0.47192180156707764, 0.20423471927642822, -0.7266595363616943, -0.5769031643867493, -1.159308910369873, -1.9247463941574097, 0.09350530803203583, 0.612236499786377, 1.3257054090499878, 0.6324650049209595, -0.22883322834968567, -0.09595656394958496, -0.23794886469841003, -1.1684354543685913, -0.6264791488647461, 0.645414412021637, 0.0016769301146268845, 0.7042782306671143, -1.5124977827072144, -0.201135516166687, 0.3267916142940521, 0.33505192399024963, 0.04023576155304909, 0.4163855314254761, 1.2825403213500977, 0.7253292798995972, 0.034433845430612564, -0.6582642793655396, 0.8692241907119751, -0.5654793381690979, 0.9953036308288574, 1.0412979125976562, -0.43226340413093567, -0.5806629657745361, -1.265792727470398, -1.6781525611877441, 1.6056405305862427, -0.6680710315704346, -0.569012463092804, 1.4496889114379883, 0.027228958904743195, 0.9269911050796509, 0.38110092282295227, -0.43663156032562256, 0.5495518445968628, 0.13250361382961273, -0.40900325775146484, -0.8993582129478455, 0.7302285432815552, 0.23855219781398773, 0.3117055296897888, -0.1476394236087799, 0.5461634397506714, 0.315656453371048, -0.7303095459938049, 0.2898465096950531, 0.5392679572105408, 0.36682575941085815, 0.13720488548278809, 0.4522620737552643, -0.6320581436157227, 0.36504799127578735, -0.40788328647613525, -0.7594358921051025, -0.3238053321838379, 0.3860282003879547, -0.04819833114743233, -0.8549798727035522, 0.002002706751227379, 0.07024963200092316, -0.9994292259216309, -0.7636978626251221, -0.45668280124664307, 0.4629862904548645, 0.6204977631568909, -0.18720519542694092, 0.455337256193161, -0.3259403705596924, -0.6015511155128479, -0.6237567663192749, 0.15335756540298462, 0.39943182468414307, -1.4651094675064087, 0.49837034940719604, -0.3418777585029602, -0.017056457698345184, -0.5388978719711304, 0.03507198393344879, 0.3163996934890747, -0.4300963878631592, -1.536574363708496, -1.1035805940628052, -0.2204141914844513, 0.7952691912651062, -0.8724367618560791, 1.0554242134094238, -0.037498921155929565, -1.3704841136932373, 0.6690369844436646, -0.2294909656047821, -1.2445734739303589, -0.2902645170688629, -1.2284824848175049, 0.9355956315994263, -0.6815133094787598, 0.9114269018173218, -1.1871176958084106, 0.6830651760101318, -1.910978078842163, -1.399964690208435, -0.6987240314483643, 0.32752835750579834, 1.02095365524292, 0.5916835069656372, -0.2619273066520691, 1.3461048603057861, 0.1433366984128952, -0.47689199447631836, -0.4334391951560974, 1.1206670999526978, -0.582679271697998, 0.17712652683258057, 0.6985993385314941, 0.15456441044807434, 0.8114410638809204, 1.468146562576294, 0.12166192382574081, 1.056244969367981, -0.12854847311973572, 0.8297078609466553, -0.5322015881538391, -0.8450019359588623, -0.49688759446144104, 0.3856744170188904, -0.963426947593689, -1.018125057220459, 0.4947870373725891, -0.856026291847229, -0.5939822196960449, 0.2553229331970215, 0.1948012113571167, -0.6871310472488403, 0.4214584231376648, -0.9344967007637024, 0.49033868312835693, -1.4563539028167725, 0.30967196822166443, 0.3180631697177887, -0.5147714614868164, 0.14293240010738373, 0.18074584007263184, 0.28007882833480835, -1.0572550296783447, 0.03830663859844208, -0.07938124984502792, 0.15297016501426697, -0.44999247789382935, 0.6320367455482483, 0.7975980639457703, -0.11231998354196548, -0.3401755690574646, 1.5239183902740479, 0.34084635972976685, 0.2194969803094864, -0.03890468552708626, -0.03387145325541496, 0.04843372479081154, 0.9062348008155823, -0.31064730882644653, 0.03476331755518913, -0.4243822991847992, 0.45693719387054443, 0.3602572977542877, -0.6184442043304443, -0.3409464359283447, 0.271953821182251, -0.6197423338890076, 0.5214414596557617, 1.0989317893981934, -0.7512823939323425, 0.4688178300857544, 1.237949252128601, 0.005770988762378693, -0.9233018755912781, -0.030416913330554962, -0.041610755026340485, 0.15808874368667603, -0.04281926527619362, 0.6075693368911743, -0.02620645985007286, -0.671502947807312, 0.8290446996688843, 0.23315918445587158, 0.2487977147102356, -0.4493665099143982, -0.6391634345054626, -1.0734868049621582, -0.08204531669616699, -0.624077320098877, -0.3801986575126648, -0.03586236387491226, -1.3748085498809814, -0.8736851811408997, 0.625266432762146, -0.2507248818874359, -0.821709394454956, -0.302848219871521, -0.08583180606365204, 0.15597671270370483, -0.8977868556976318, 0.5252677202224731, -0.37437814474105835, 1.4943649768829346, -0.5224226117134094, 0.5009883642196655, -0.5495144724845886, -0.837185800075531, 0.3475857675075531, 0.007324423640966415, 0.1249961405992508, -0.6041128635406494, 0.842018723487854, -0.16444501280784607, -1.0932499170303345, 0.24394343793392181, 0.32918792963027954, 0.20557983219623566, -0.2697470784187317, -0.8164729475975037, 0.5914434194564819, 1.0032851696014404, 1.0767183303833008, -0.26094481348991394, -0.729267418384552, -0.9547756910324097, 0.21561096608638763, -0.5066214203834534, -0.20405380427837372, -0.1496242880821228, 0.7712264657020569, 0.6689096689224243, -0.6553847789764404, -0.12847906351089478, -0.644750714302063, 0.2800789475440979, 0.012013977393507957, 0.02515430748462677, 0.43246304988861084, 0.12292028218507767, 0.09404794126749039, -0.6869672536849976, 0.517485499382019, -0.050695717334747314, 0.5509754419326782, 0.46333909034729004, -1.010595679283142, -0.5198697447776794, -0.625787079334259, 0.5590546131134033, 0.609839677810669, 0.16117654740810394, 0.11798065155744553, 0.14563605189323425, -0.9987318515777588, 0.5652668476104736, -0.0965777337551117, 0.521390438079834, 0.2633535861968994, 1.5458183288574219, 1.4232003688812256, 0.18766050040721893, 0.4196382761001587, 0.018284745514392853, 0.3095884323120117, -0.7891354560852051, -0.964638352394104, -0.20298975706100464, -0.9614390134811401, -0.3998301029205322], [-0.42430561780929565, 1.1833375692367554, -2.195466995239258, -0.08735952526330948, 0.9904394149780273, 0.36652275919914246, 0.895491361618042, -0.3484276831150055, -0.4887683093547821, -0.011012822389602661, -0.2465776801109314, 0.1935303509235382, 0.015090463683009148, 0.7481530904769897, 0.2569211423397064, 0.6413141489028931, 1.1831660270690918, -0.3359358310699463, -0.20073175430297852, 0.8595643043518066, -0.6811164617538452, -0.8382053375244141, 0.5797301530838013, -0.00600458076223731, -0.1246517226099968, 0.6934462785720825, -1.2154631614685059, -0.3405270576477051, -0.8631942272186279, -1.3398172855377197, 1.0158929824829102, 0.11036507785320282, -0.11864741891622543, -0.45798754692077637, 0.0891033485531807, 0.062792107462883, 1.1384116411209106, 1.3035645484924316, 1.456313967704773, 1.1934049129486084, 1.3837177753448486, -0.2854783833026886, -0.00700155645608902, -1.4641737937927246, 0.28302568197250366, -0.3715716600418091, 0.755638837814331, -1.0979437828063965, 0.6061089634895325, 0.19565904140472412, -0.46043896675109863, -0.7903335690498352, 0.2554885149002075, 1.0364490747451782, 0.5082446336746216, -0.7706902623176575, -0.09610167890787125, 1.0374822616577148, 0.6103944182395935, -0.5894902348518372, 1.0296188592910767, 0.4947793483734131, -0.6791818141937256, 0.9458605051040649, 0.49673861265182495, -0.3387364447116852, 0.1496870219707489, 0.2235039919614792, -1.1780474185943604, 0.3381859064102173, -0.5909127593040466, 0.20629946887493134, -0.6140727996826172, 1.0321091413497925, -1.2721498012542725, 0.8702845573425293, 0.7325739860534668, 0.022614529356360435, 0.7055443525314331, 0.27596843242645264, 0.18773746490478516, 0.04624927043914795, 0.7034039497375488, -0.14008817076683044, 0.5111569762229919, -0.01630115509033203, -0.10567120462656021, 0.10557613521814346, -0.8570481538772583, 2.256864547729492, 0.5545321702957153, -0.09893566370010376, 0.2068183422088623, -0.3381357789039612, -0.6219905614852905, -0.8827640414237976, 0.3920290470123291, -0.24605776369571686, -1.198992133140564, -1.0260844230651855, -0.201456218957901, -0.6444965600967407, 0.7711462378501892, 0.373440146446228, -0.20798027515411377, 1.7514699697494507, 0.1282559633255005, -0.23387278616428375, 0.14372655749320984, 0.1518373340368271, -0.4071657061576843, 0.010334774851799011, -0.9165239334106445, -0.38213592767715454, -0.6243664026260376, 1.6063898801803589, 1.1017498970031738, -0.6841322779655457, 0.3080090880393982, 1.1325316429138184, -0.25236377120018005, -0.20039111375808716, -0.907783567905426, 0.3727976083755493, 0.4895060956478119, 0.634925365447998, -0.982553243637085, -0.6045399308204651, -0.301118403673172, -0.17815937101840973, 0.3673887252807617, -0.47025978565216064, -1.1730990409851074, 0.9801595211029053, -1.1127915382385254, 1.324864149093628, -0.5626028776168823, -0.7538999319076538, -0.027901187539100647, -0.018066853284835815, 0.21607756614685059, -0.22052109241485596, -0.9356245994567871, -0.4333495497703552, -0.05914244428277016, -0.8488717079162598, -0.07413601875305176, -0.1029273122549057, -0.9403908252716064, 1.15996253490448, -0.4138079285621643, 0.49016326665878296, -0.11054983735084534, 0.7570042610168457, -0.2960030436515808, -0.2713340222835541, 0.06852942705154419, 0.16342070698738098, 0.725450873374939, 0.4875722825527191, 1.3333427906036377, -0.5033118724822998, -0.6996220350265503, 0.42668649554252625, 0.8544092178344727, -0.4074275493621826, 0.9511477947235107, 0.8417251110076904, -0.06311997026205063, 1.333159327507019, -0.6106855869293213, -0.3502006530761719, -0.641768753528595, 0.7599472999572754, -0.30295610427856445, -0.4040917158126831, 0.38777217268943787, -1.3634562492370605e-06, -1.3302483558654785, -0.9668237566947937, 0.10413005948066711, -0.7029073238372803, 0.38514405488967896, -1.0664501190185547, 0.44616150856018066, -0.25112664699554443, 0.038171205669641495, 0.05868055671453476, -0.40689337253570557, -0.5696413516998291, -0.3876764178276062, -0.40997785329818726, -0.10834801197052002, -0.10674425214529037, -0.3541122078895569, -0.24224671721458435, 0.03782742843031883, -1.5875563621520996, -0.9377146363258362, 0.05933460593223572, -1.0581283569335938, -0.5308874845504761, -0.6294165849685669, 0.8091809153556824, -0.11732640117406845, 1.0207231044769287, -1.1555871963500977, 0.874840497970581, -0.9436283111572266, -0.0674925297498703, 0.6250286102294922, 0.24612295627593994, -0.9137070775032043, 1.1109957695007324, 0.4027171730995178, -1.1522228717803955, -0.09748557209968567, 0.0290142260491848, -0.3899335265159607, 0.5844498872756958, -0.33675435185432434, 0.10443182289600372, 0.4329637885093689, 0.2432878613471985, 0.23615561425685883, -0.3419334590435028, -0.7761543393135071, -0.3689675033092499, -1.0918235778808594, -0.07712913304567337, -0.6469867825508118, -0.9226428270339966, 0.5560171604156494, 0.03194276615977287, -1.2066209316253662, 0.4308922588825226, -0.13101597130298615, 0.2111765742301941, 0.22937999665737152, 1.5896129608154297, 0.6565638780593872, -0.03825107216835022, -0.3838595151901245, -0.4960830807685852, -0.43477916717529297, 0.6835610866546631, 0.6343655586242676, -0.5623940229415894, 0.7228517532348633, 1.4555637836456299, 1.6102728843688965, -0.5326065421104431, 0.4422065019607544, 0.12346201390028, -0.08284397423267365, -0.9261095523834229, -0.268717885017395, 0.24017712473869324, -0.40842193365097046, 1.3873169422149658, 0.7119286060333252, -1.5255179405212402, -0.07414200901985168, 0.4800112247467041, 0.2878335118293762, 0.1049642264842987, -0.5675252676010132, -0.06061045080423355, -0.2354689985513687, 0.44799795746803284, -0.014457110315561295, 1.001021146774292, -0.9023944139480591, 0.6621562838554382, -0.5237915515899658, 0.079282246530056, -0.292888879776001, 0.7059728503227234, -0.4827243685722351, 0.8781380653381348, 0.13448083400726318, -1.387353539466858, -0.8377645611763, 0.2011907547712326, 0.52467942237854, 0.3448772728443146, -0.1837463527917862, 0.3856339752674103, 1.0235365629196167, -0.5537260174751282, 0.6419241428375244, -0.3839852213859558, 0.33553192019462585, -0.47839999198913574, 0.07491417974233627, 0.7616885900497437, 1.8187615871429443, -1.3655929565429688, -1.4700266122817993, 0.3670666217803955, 0.33653706312179565, 1.904616117477417, 0.33192145824432373, 1.0407497882843018, -0.062290482223033905, 0.051971130073070526, -1.2618485689163208, -0.08195970207452774, -1.174891710281372, -0.27484428882598877, -0.6260868906974792, -0.5813232660293579, 0.04232229292392731, -0.38903898000717163, 0.687006950378418, 0.3414851427078247, 0.06724981218576431, 0.4740895628929138, 1.0526230335235596, -0.06032564863562584, -0.7315256595611572, 0.0903894305229187, 0.5645098090171814, -1.3786768913269043, 0.7793101072311401, 2.032371997833252, -0.7617164850234985, -0.9048006534576416, -0.15595927834510803, 0.06816472113132477, 0.08288457989692688, 0.19415226578712463, 0.8895256519317627, -1.4515800476074219, -0.5766205191612244, 0.14875905215740204, 1.5442099571228027, -0.2862434387207031, -0.2299588918685913, -0.3367573916912079, -0.038080599159002304, 0.41938385367393494, -0.3503349721431732, -0.7115198373794556, 0.6879431009292603, -0.7141560316085815, -0.4330306053161621, -0.28876861929893494, 0.4913201332092285, 1.02895188331604, -0.1763637661933899, -0.3325394093990326, -0.43007856607437134, -0.47102150321006775, -0.6876458525657654, -0.7369289994239807, -0.27472081780433655, 1.3758249282836914, -0.8107193112373352, 0.4584662914276123, 1.1451349258422852, -0.035367004573345184, -0.5794233083724976, -1.9067190885543823, 0.3710970878601074, 0.7087559700012207, 1.850305438041687, 0.6116095185279846, 0.7219244241714478, 0.25801146030426025, 0.7487248778343201, -0.05739571899175644, 0.24036654829978943, 1.1326290369033813, 0.4110287129878998, -0.670403003692627, -0.7868912220001221, -0.271492063999176, -0.4502875506877899, -0.6666887998580933, -0.6091746091842651, 0.49886250495910645, -0.6315670013427734, -1.2587705850601196, 1.0157712697982788, 0.9364544153213501, 0.09456943720579147, -0.33934861421585083, 0.6106716394424438, 0.18569064140319824, -0.9784277677536011, -0.26881861686706543, -0.3510898947715759, 0.14714501798152924, -0.1733127236366272, -2.015437126159668, -0.2786697745323181, 0.3462054431438446, 0.43478405475616455, 0.9707047939300537, -1.0811580419540405, -0.3906571567058563, -0.624342679977417, -0.2812122702598572, 0.25949573516845703, -1.5271790027618408, -0.14310257136821747, 0.22048208117485046, -0.4332444667816162, 0.5898149013519287, -0.18204331398010254, 1.2405413389205933, 0.41859298944473267, 0.1262533962726593, 0.3529634475708008, 0.3289440870285034, -0.8413049578666687, -0.22334058582782745, -1.0235366821289062, 0.4585607051849365, -0.1535496711730957, -0.07530191540718079, 0.09188102185726166, 0.5000743269920349, 1.5468478202819824, 1.0874682664871216, 1.1247105598449707, 0.5327137112617493, 0.32868853211402893, -0.6492970585823059, -0.14475654065608978, 0.4147574305534363, -0.4534399211406708, -0.6907660961151123, 0.22683896124362946, -0.04718070477247238, -0.2760658264160156, 0.7392799854278564, -0.4179367125034332, 0.9311199188232422, 0.31127727031707764, 0.0725097805261612, 0.010361762717366219, 0.67985999584198, 0.8879441022872925, 1.6178278923034668, 0.5191349983215332, -0.07786881923675537, -0.6970500946044922, 0.9485052824020386, -0.8850668668746948, -0.09820082038640976, 0.6826165914535522, 0.3766230344772339, 1.3384857177734375, -1.0893189907073975, -0.21126997470855713, 0.2566080391407013, 0.1677442491054535, 0.28834569454193115, 0.10433642566204071, 0.009750217199325562, 0.37570667266845703, 0.21039779484272003, 0.5058672428131104, -0.037478622049093246, 0.016871120780706406, -0.18774712085723877, -0.30011072754859924, -0.11918294429779053, -0.4213849902153015, 1.1850430965423584, -0.3949018120765686, 0.09663466364145279, 0.2421785295009613, -0.6725101470947266, 0.10379067063331604, 0.3035896420478821, 0.8562878370285034, 1.3613173961639404, 0.12449214607477188, -1.0445928573608398, 0.6088327169418335, -0.6569184064865112, 0.34743767976760864, -0.42634040117263794, -0.7591354250907898, 0.08216439187526703, -0.6374835968017578, -0.09123776853084564, 0.2081497609615326, -0.3047417998313904, -0.2066546380519867, -0.49670323729515076, -1.4170140027999878, 0.45357903838157654, 0.40019410848617554, 1.0302571058273315, 1.1955723762512207, 0.11705069243907928, 0.22806614637374878, 0.4722675085067749, -1.193537950515747, -0.5888155102729797, -0.08241880685091019, 0.22790414094924927, -0.01907455176115036, -0.83404541015625, 0.18537645041942596, 0.4538921117782593, 0.07003171741962433, -0.17661839723587036, 0.6812862157821655, 1.2527482509613037, 0.8870381116867065, -0.4236956834793091, -0.8285678625106812, 0.15808388590812683, -0.7762551307678223, 1.0132269859313965, 0.5422896146774292, -0.28823623061180115, -0.5884639024734497, -1.1054153442382812, -2.043488025665283, 1.201737642288208, -0.6915179491043091, -0.3343885540962219, 1.406162977218628, 0.515641450881958, 0.5422229170799255, 0.4535812735557556, -1.0089174509048462, 0.68921959400177, 0.39311519265174866, -1.1095010042190552, -1.3071765899658203, 0.3189733624458313, -0.10561871528625488, 0.5103206634521484, 0.2693851590156555, -0.3882785439491272, 0.38075926899909973, -0.7618991732597351, -0.23292876780033112, 0.3032597005367279, 0.3384782075881958, 0.3146821856498718, 0.6461002826690674, -0.2088429182767868, 0.24939090013504028, -0.4283831715583801, 0.19108784198760986, -0.30010178685188293, 1.1180095672607422, 0.032265570014715195, -0.014526985585689545, -0.546135663986206, -0.3500428795814514, -0.14119543135166168, -0.4742971658706665, -0.3871162533760071, 1.311095118522644, 0.16934435069561005, -0.34528031945228577, -0.4554474949836731, -0.2076491415500641, -0.5453819632530212, 0.2898314595222473, -0.1912202537059784, 0.04728225991129875, -1.8304487466812134, -0.20826120674610138, -0.43597158789634705, -0.29535987973213196, -0.3698936998844147, -0.28454864025115967, 0.22056806087493896, -0.7002118229866028, -1.244340419769287, -0.09237242490053177, 0.3306863009929657, 0.559134840965271, -0.9317737221717834, 1.0952470302581787, 0.41238322854042053, -0.8191007375717163, 0.6062806248664856, 0.719463050365448, -1.5289833545684814, 0.040045365691185, -1.3310297727584839, 1.1048181056976318, 0.2156212031841278, -0.05967137962579727, -0.7110421657562256, 0.8223413228988647, -1.0606318712234497, -1.078346848487854, -0.3062732219696045, 0.33365634083747864, 1.0067278146743774, 0.439696729183197, -0.09457069635391235, 1.2588584423065186, 0.3662620782852173, -0.6269579529762268, -0.38101616501808167, -0.015333814546465874, -0.3372713625431061, 0.17242266237735748, 1.0887221097946167, 0.06462359428405762, 0.6532213091850281, 1.603686809539795, 0.10741321742534637, 1.1234376430511475, -0.061019595712423325, 1.0259687900543213, -1.0149763822555542, -0.9443564414978027, -0.2055911421775818, 0.10706211626529694, -1.1833441257476807, -1.6258361339569092, 0.09898993372917175, -1.5539677143096924, -0.8593290448188782, 0.6456765532493591, 0.17940989136695862, 0.30346882343292236, 0.3844525218009949, 0.10918701440095901, 0.25227615237236023, -0.9417999982833862, 1.1101282835006714, 0.8793874979019165, -1.4227310419082642, -0.10646427422761917, 0.15975841879844666, -0.25594550371170044, -1.339940071105957, 0.786737322807312, -0.21294981241226196, 0.3283204436302185, -0.6483688354492188, 0.42847561836242676, 0.9336274266242981, -0.1522475779056549, -0.663437008857727, 1.1315298080444336, 0.5715322494506836, -0.33165597915649414, 0.2194845825433731, 0.38236474990844727, -0.3409079909324646, 0.6334140300750732, -0.2646600604057312, -0.6434909105300903, -0.22896167635917664, 0.7701607346534729, 0.01323017105460167, 0.6481894850730896, -0.47130852937698364, 0.38307106494903564, -0.11167973279953003, 0.36308205127716064, 1.045184850692749, -0.546755313873291, -0.033215876668691635, 1.3482117652893066, 0.2517472505569458, -0.041698113083839417, 0.42589399218559265, 0.6974309682846069, 0.7357556223869324, -0.5917104482650757, 0.6077675819396973, 0.6155821084976196, -0.35093897581100464, 0.30470937490463257, 0.15028856694698334, -0.3467271327972412, -0.2874927818775177, -0.7196800112724304, -0.6804438829421997, 0.017957324162125587, -0.5207970142364502, 0.4348886013031006, 0.8525981903076172, -1.6317987442016602, -0.9380795955657959, -0.36802202463150024, -0.32445991039276123, -0.20086213946342468, -0.3892856240272522, 0.03317822515964508, -0.2112087905406952, -0.3164866864681244, 0.9584181904792786, -0.11171678453683853, 0.6297770738601685, -0.4448956251144409, -0.16777442395687103, -0.513540506362915, 0.18485495448112488, -0.35364240407943726, 0.35466694831848145, 0.14930155873298645, 0.22433044016361237, 0.1540733128786087, -0.6421599388122559, -0.6554324626922607, -0.01302666962146759, 0.05891703814268112, 0.2928386330604553, -0.6020129919052124, -0.4610808789730072, 0.32508301734924316, 0.5931989550590515, 0.9959299564361572, -0.4230450689792633, -0.5403238534927368, -0.6752829551696777, -0.08693718910217285, -0.2518467903137207, 0.6841815114021301, -0.6610672473907471, 0.6483622789382935, 0.3034926652908325, -0.8175866603851318, 0.0344831757247448, -0.6126177310943604, 0.24209609627723694, -0.6166394352912903, -0.2708773910999298, 0.17172542214393616, -0.023512132465839386, -0.45130255818367004, -0.8864777088165283, 0.7090569734573364, 0.18859268724918365, -0.5269696712493896, 0.6173425912857056, -1.111191987991333, 0.11598417907953262, -0.636724591255188, -0.28603148460388184, 0.5999888777732849, 0.18303537368774414, -0.41315144300460815, 0.5528494119644165, -1.2621428966522217, 0.09800834208726883, 0.08789452910423279, -0.3089827597141266, 0.6255312561988831, 0.781814455986023, 1.3392279148101807, 0.07015371322631836, -0.12530454993247986, -0.37178558111190796, 0.43021658062934875, -0.3294173777103424, -0.022885825484991074, -0.52693110704422, -1.113884687423706, -0.42103490233421326], [0.18407392501831055, 1.26722252368927, -2.6662914752960205, -0.9767277240753174, 1.2160063982009888, 0.3692457377910614, 0.9858258366584778, -0.3725847005844116, -0.4212285876274109, -0.3853677213191986, -0.2273804247379303, -0.2615812122821808, -0.7339398264884949, 0.105415940284729, 0.5496028065681458, 0.599166750907898, 0.5340068936347961, -0.9845587611198425, 0.5865444540977478, 0.625200092792511, -0.6744412183761597, -0.029508717358112335, 0.050192199647426605, -0.30733299255371094, -0.1005953997373581, 1.338531255722046, -1.5654902458190918, -0.10718882828950882, -0.927474319934845, -1.3147542476654053, 1.2088366746902466, 0.09476157277822495, 0.3805773854255676, -0.7510393857955933, -0.8224166631698608, 0.2570919692516327, 1.537324070930481, 1.3686779737472534, 0.41538679599761963, 0.4940391182899475, 2.039337158203125, 0.053568802773952484, -0.23732051253318787, -2.048706293106079, 0.6129634976387024, 0.03157249465584755, 0.8813303112983704, -0.12572215497493744, 0.45698487758636475, -0.08950967341661453, -0.3373386561870575, -0.7420176863670349, -0.3801184296607971, 1.6998546123504639, 1.4967913627624512, -0.14848364889621735, 0.18523547053337097, 0.5047746300697327, 0.5341803431510925, -0.9237604737281799, 1.0513478517532349, -0.5071338415145874, -0.8280627727508545, 0.772148072719574, 0.3627175986766815, 0.21374402940273285, 0.3603516221046448, 0.8174236416816711, -0.39184901118278503, -0.30336642265319824, -0.5960049033164978, -0.18052972853183746, -0.3182758092880249, 1.0097894668579102, -1.5987255573272705, 1.1289286613464355, 0.1273149996995926, 1.0056037902832031, 0.543337345123291, 0.42875781655311584, -0.043320104479789734, 0.07728633284568787, 1.0851877927780151, 0.0037676626816391945, 0.27128803730010986, 0.5356507897377014, 0.6212236285209656, -0.5811701416969299, -0.11218279600143433, 2.4885590076446533, 0.5299993753433228, -0.07361334562301636, 0.3632984161376953, -0.011192655190825462, -0.14094389975070953, 0.03099650703370571, 0.4142625629901886, -0.8716403841972351, -1.4083325862884521, -0.6689812541007996, -0.1314084529876709, -0.004786693025380373, 0.49556484818458557, 0.049792829900979996, 0.05660117045044899, 1.5546835660934448, 0.10206285119056702, 0.20368535816669464, -0.30090928077697754, -0.03502732142806053, -0.2277863621711731, 0.04813322797417641, -0.21897798776626587, -0.6043850779533386, -0.5800132751464844, 1.0894896984100342, 1.4155224561691284, -0.6695379614830017, 0.3522253930568695, 1.1303869485855103, -0.6882761716842651, 0.27671006321907043, -0.46732887625694275, 0.4935161769390106, 0.7160640954971313, 0.9925897121429443, -0.5885071158409119, -0.14823317527770996, 0.3533453047275543, 0.4766576290130615, 0.30571600794792175, -0.42475253343582153, -0.6481295228004456, 0.3929237723350525, -1.4633522033691406, 1.882591724395752, -0.4107925295829773, 0.001378979068249464, 0.3619195520877838, 0.0742565393447876, 0.200395405292511, 0.11226129531860352, -0.19066956639289856, -0.4362572431564331, -0.10280030220746994, -0.8176473379135132, 0.05492813512682915, -0.34438955783843994, -0.5041549205780029, 0.9355728626251221, -0.714083731174469, 0.3444412648677826, -0.5530860424041748, 0.5843347907066345, -0.0025632299948483706, -0.3234732449054718, 0.23157605528831482, 0.4139557480812073, 0.7471538186073303, -0.14865829050540924, 0.5501981377601624, -0.6311013102531433, -1.6534897089004517, 0.21461300551891327, 1.2476904392242432, -0.007173243444412947, 0.4752694368362427, 0.59925776720047, -0.11597426980733871, 1.6688871383666992, -0.3172784149646759, -0.9687080979347229, -0.2209712713956833, -0.02369249239563942, 0.43125084042549133, 0.07313129305839539, 1.2276015281677246, -0.6046430468559265, -1.3178330659866333, -1.304828405380249, 0.07998073101043701, -0.024587033316493034, 0.6758034825325012, -0.6302006244659424, 0.47264498472213745, 0.24239349365234375, -0.07721635699272156, -0.8157661557197571, -0.07295747846364975, -0.3848377764225006, -0.6700282096862793, -0.5225957036018372, -0.17374999821186066, -0.16540494561195374, -0.12894757091999054, -0.5876173377037048, 0.2602294981479645, -1.5572173595428467, -0.7096119523048401, -0.1982937902212143, -0.5912799835205078, -0.8635318875312805, -0.19525665044784546, 0.7997401356697083, 0.010054444894194603, 1.259840726852417, -1.5208879709243774, 0.6030554175376892, -0.6167896389961243, -0.37718772888183594, 0.8669596314430237, 0.17872489988803864, -0.6701911687850952, 0.8379383087158203, 0.3203117251396179, -0.8936256766319275, 0.18545827269554138, 0.9350965619087219, -0.5339345932006836, 0.34825992584228516, -0.18240903317928314, -0.012908541597425938, 0.8083807826042175, 0.20271611213684082, 0.7695855498313904, -0.41357704997062683, -0.44271188974380493, -0.7378125786781311, -1.1876386404037476, -0.0022382885217666626, -1.3255549669265747, -1.3872042894363403, 0.25114965438842773, 0.20447152853012085, -1.4371682405471802, 0.145597442984581, -0.024674173444509506, -0.23927119374275208, 0.35490846633911133, 1.5492045879364014, 0.6854380369186401, 0.42641037702560425, -0.24193274974822998, -0.11784136295318604, -1.073848843574524, 0.9057081341743469, 0.49629077315330505, -0.9018567204475403, 0.4543108642101288, 1.009028434753418, 0.9502533674240112, -0.858817994594574, 0.7872588634490967, -0.7043554186820984, 0.10182654112577438, -0.45058679580688477, -0.03698255121707916, 1.0460612773895264, -0.06324601173400879, 1.6345163583755493, 0.97477787733078, -1.4881565570831299, 0.3738357126712799, 0.3645017147064209, -0.46624237298965454, -0.3886171579360962, -0.8336765170097351, 0.518496572971344, -0.08520632237195969, -0.276357501745224, 0.33699166774749756, 0.5997973680496216, -0.3559247553348541, 0.3327036201953888, -0.01287986058741808, 0.45889875292778015, -0.9410356879234314, 0.24709804356098175, 0.014533044770359993, 0.7262431979179382, 0.03606726974248886, -0.8738209009170532, -0.6208781003952026, -0.061120130121707916, 0.11030931770801544, 0.6621071100234985, 0.3844853639602661, 0.9614057540893555, 1.4182971715927124, 0.21275366842746735, 0.39126119017601013, -0.3794480562210083, 0.2715643644332886, -0.3269788324832916, 0.6021040081977844, 0.07182060927152634, 1.7994827032089233, -1.3674652576446533, -0.8069519400596619, -0.38820475339889526, -0.09550126641988754, 2.0159850120544434, 0.6364870071411133, 0.5330287218093872, 0.3659881353378296, 0.2621460258960724, -0.2343384474515915, -0.3468073308467865, -0.6783314347267151, -0.30866801738739014, -0.23511776328086853, -0.49037042260169983, 0.03478575497865677, -0.3280356228351593, -0.015585158951580524, 0.08522281795740128, -0.065209299325943, 0.6732789278030396, 0.42382919788360596, -0.1531641036272049, -0.47263821959495544, 0.16842229664325714, 0.08618257939815521, -1.8055639266967773, 0.3916727304458618, 1.1956897974014282, -0.7888323068618774, -0.7645707130432129, -0.22929862141609192, 0.29145434498786926, 0.08782954514026642, -0.5211758613586426, 0.5146973729133606, -1.1975053548812866, -0.794784426689148, -0.5316078066825867, 0.9730936288833618, -0.5969937443733215, 0.3785543143749237, -0.20960868895053864, -0.05180537700653076, 0.9008020162582397, 0.6104069948196411, -0.44692760705947876, 0.8964769244194031, 0.036976877599954605, -0.8223035931587219, 0.22153013944625854, 0.5943332314491272, 0.682759165763855, -0.13500840961933136, -0.16589947044849396, -0.39152562618255615, -0.2495800405740738, -0.6226873993873596, -0.26816728711128235, 0.3142395615577698, 1.0277379751205444, -0.39313462376594543, -0.12747900187969208, 1.4060378074645996, 0.014495160430669785, 0.31926119327545166, -1.8165571689605713, 0.4026702642440796, 0.5381888151168823, 1.5828882455825806, 0.9263046383857727, 0.4155120253562927, 0.303840696811676, 0.1939486414194107, -0.14326587319374084, -0.2776264548301697, 1.6474980115890503, 0.2504466474056244, -0.8286935687065125, -0.5415771007537842, -0.5441311001777649, -0.3476007282733917, -0.575055718421936, -0.5513842701911926, 0.1694037765264511, -1.0432490110397339, -1.5340023040771484, 1.2794506549835205, 0.5690409541130066, 0.0832652822136879, -0.8488197922706604, -0.7755690813064575, 0.5055524706840515, -0.7267130613327026, -0.29704567790031433, -1.1431560516357422, 0.35285696387290955, 0.23651978373527527, -1.155092716217041, -0.4715003967285156, 0.22618958353996277, 0.9795958995819092, 1.322520136833191, -1.4681679010391235, -0.612505316734314, -0.5501531362533569, 0.09495364129543304, 0.03810932859778404, -0.43824025988578796, 0.22152179479599, 0.7615780234336853, -0.4836289882659912, 0.8497808575630188, 0.08846618235111237, 1.0453312397003174, -0.11088388413190842, -0.32495349645614624, 0.22293762862682343, 0.4185529351234436, -0.4075019955635071, -0.5147519707679749, -0.5982611179351807, 0.713408350944519, -0.1152246817946434, -0.06335096806287766, 0.23305051028728485, 0.14233970642089844, 1.5143139362335205, 0.7136829495429993, 0.4439774751663208, 0.3928728699684143, 0.25032806396484375, -1.2570265531539917, 0.0316946804523468, 0.5191418528556824, -0.28643032908439636, -0.2415507733821869, -0.2271047979593277, -0.4160403907299042, -0.2732894718647003, 0.37491482496261597, -0.7628475427627563, 1.3653451204299927, 0.17854702472686768, 0.006182601675391197, 0.0422762893140316, 0.602648913860321, 1.1803349256515503, 1.1887733936309814, 0.41554713249206543, -0.5592280626296997, -0.7189472317695618, -0.1723961979150772, -0.26512226462364197, 0.14203068614006042, 0.3813348710536957, -0.30201879143714905, 1.025472640991211, -1.6961086988449097, 0.20027028024196625, 0.4771488606929779, 0.10338151454925537, 0.18013711273670197, -0.28659573197364807, 0.4104136824607849, -0.029469087719917297, 0.6675992608070374, 0.287507563829422, 0.07360652834177017, -0.13401377201080322, 0.06606787443161011, -0.2899218499660492, 0.176791250705719, -0.6263275742530823, 1.2516095638275146, -0.5256202816963196, -0.2640724182128906, 0.21184436976909637, -1.2793540954589844, 0.1830570101737976, 0.7071049213409424, 0.9706894159317017, 1.3488173484802246, 0.3894610106945038, -1.1485439538955688, 0.8479259014129639, -0.720034658908844, 0.03487560898065567, -0.5016496181488037, -0.26978757977485657, -0.12417759001255035, -0.3267323970794678, 0.1599278301000595, 0.7386837005615234, -0.3326091170310974, -0.1805192232131958, 0.06840314716100693, -1.5907083749771118, 0.27474674582481384, 0.5363746881484985, 0.5892223119735718, 0.8523790836334229, 0.04183525592088699, -0.12926717102527618, 1.041846752166748, -0.455009788274765, -0.74046790599823, 0.05571465194225311, 0.5783762335777283, -0.2961049973964691, -1.3299453258514404, -0.736954927444458, 0.1984335035085678, 0.09892227500677109, -0.2162148803472519, 0.04670379310846329, 1.527411937713623, 1.1782991886138916, -0.25874367356300354, -0.07710974663496017, -0.16900549829006195, -0.5961350202560425, 0.8955079317092896, 0.5123060941696167, 0.6437288522720337, -0.39715486764907837, -1.5194388628005981, -2.2110142707824707, 0.6774353981018066, -0.6063032150268555, -0.0416274294257164, 0.6715172529220581, 0.7867096066474915, 1.3861252069473267, 0.09485253691673279, -1.0426632165908813, 0.24770815670490265, 0.7325993180274963, -0.2751920223236084, -0.9327558875083923, 0.48080939054489136, -0.01690475083887577, 0.6184073686599731, -0.7316020727157593, -0.18713152408599854, -0.08576533943414688, 0.016074376180768013, 0.4528372585773468, 0.4719150960445404, -0.44106021523475647, 0.3157843053340912, 0.807640552520752, 0.10785640776157379, 0.5190345048904419, -0.6432368159294128, -0.08122310042381287, -0.8446717858314514, 1.0288712978363037, 0.10288204997777939, 0.00021517230197787285, 0.22486598789691925, -0.0782739520072937, -0.6648705005645752, -0.6630960702896118, -0.34836623072624207, 1.26152503490448, -0.2272249013185501, -0.5174317955970764, -0.39263850450515747, -0.9918623566627502, -0.002789356978610158, -0.5628305077552795, 0.2844170033931732, -0.4449618458747864, -1.423983097076416, -0.22380386292934418, -0.07023362070322037, -0.5452870726585388, -0.35389426350593567, -0.6436106562614441, 0.34376397728919983, -0.9064601063728333, -1.15791916847229, 0.26816898584365845, 0.3830767869949341, 1.1186459064483643, 0.0014967545866966248, 0.8004730343818665, 0.5652086138725281, -1.625528335571289, 0.6957109570503235, 0.4711550176143646, -1.2624257802963257, -0.03909055143594742, -0.6893270015716553, 1.1480343341827393, -0.47967392206192017, 0.0910593569278717, -0.30751359462738037, 0.7486482858657837, -1.5294437408447266, -1.8936247825622559, -0.8667386770248413, 0.22466669976711273, 0.9551282525062561, 0.6463049054145813, -0.7599438428878784, 1.0962135791778564, 0.26966410875320435, -0.8856765031814575, -0.7020295262336731, -0.8705567121505737, -0.15764999389648438, 0.13549090921878815, 0.8190945982933044, 0.41079750657081604, 0.8169179558753967, 1.1326736211776733, 0.09563697874546051, 1.521089792251587, 0.400686651468277, 0.5203474760055542, -0.5493903160095215, -0.4377179443836212, -0.3123520016670227, 0.58241206407547, -1.2151460647583008, -1.1611652374267578, -0.008483370766043663, -0.43730980157852173, -0.9957014918327332, 0.4857148826122284, 0.25207242369651794, 0.07644850760698318, 0.13042226433753967, -0.588222086429596, 0.05055269971489906, -0.7751383185386658, 0.2880709767341614, -0.16273732483386993, -1.4621917009353638, -0.005864813923835754, 0.08840711414813995, 0.13703452050685883, -1.226780891418457, 0.6140032410621643, -0.16465747356414795, -0.44205471873283386, -1.2306201457977295, 1.366086483001709, 0.9443626999855042, -0.0988292247056961, -0.1507977694272995, 1.3759655952453613, 1.0359761714935303, -0.07851165533065796, -0.12437006086111069, 0.30405178666114807, -0.8632463216781616, 0.8617518544197083, 0.12810593843460083, -0.6990877985954285, -0.37858232855796814, 1.3884174823760986, 0.17411933839321136, -0.07935058325529099, -0.20057375729084015, -0.6225668787956238, -0.39126038551330566, 0.3844643235206604, 0.3852897882461548, -1.432277798652649, -0.6545781493186951, 1.4629067182540894, 0.4856078028678894, -0.33772343397140503, 0.3860366642475128, 1.0542997121810913, 0.5643793344497681, -0.4136965274810791, -0.011758329346776009, 0.6602460145950317, -0.3121882677078247, 0.06483162939548492, -0.1977582424879074, -0.033814553171396255, -0.08324169367551804, -1.0069465637207031, -0.8877789974212646, 0.31699132919311523, -0.9317486882209778, -0.12474849820137024, 0.14946024119853973, -1.1424962282180786, -1.2186263799667358, 0.07316911965608597, -0.3914280831813812, -0.42504021525382996, -0.8501343131065369, 0.05916692689061165, 0.1850602924823761, -0.057472798973321915, 0.33907952904701233, -0.18923749029636383, 0.7983226776123047, -0.18786951899528503, -0.6245427131652832, -0.3299678564071655, 0.13731028139591217, -0.17194819450378418, 0.16693420708179474, 0.35173317790031433, -0.6571822762489319, 0.8065811395645142, -0.269024521112442, -0.9310128688812256, 0.013600151985883713, 0.4694589376449585, -0.38312044739723206, -0.6017136573791504, -0.9294744729995728, 0.986387312412262, 0.30511417984962463, 0.44228285551071167, -0.056701794266700745, -0.4877346456050873, -0.6290513277053833, 0.0063573699444532394, -0.48875975608825684, 0.9384445548057556, -0.7901186943054199, 0.8265995979309082, 0.4317134916782379, -0.8596047759056091, -0.11910657584667206, -0.91497802734375, 0.8474072217941284, -0.5013591647148132, 0.2001095414161682, 0.019795680418610573, 0.38840052485466003, -0.694359302520752, -0.8494324088096619, 0.09793411940336227, -0.4304869472980499, 0.01577785611152649, 0.3152461349964142, -1.2575725317001343, -0.18577542901039124, -0.13950838148593903, -0.5789920091629028, 0.5772686004638672, -0.1759052574634552, -0.7264401912689209, 0.12055414170026779, -0.9403243660926819, 0.5101596117019653, 0.7180111408233643, -0.3031894564628601, 0.5844985842704773, 0.8021329045295715, 1.5336613655090332, 0.4220931828022003, 0.15359747409820557, 0.07705745100975037, 1.2025679349899292, -0.8828316926956177, -0.029773255810141563, 0.24431265890598297, -0.6547764539718628, -0.9182389378547668], [-0.214458167552948, 1.6023919582366943, -2.3163299560546875, -0.022408418357372284, 0.6805170178413391, 0.2668628990650177, 0.4236588776111603, -0.709229588508606, -0.4082118272781372, -0.7189520597457886, -0.7315647602081299, -0.40487760305404663, 0.10849793255329132, 0.7036391496658325, 0.9447981715202332, 0.9379923343658447, 0.7639302015304565, -0.26141607761383057, 0.21346747875213623, 1.1721512079238892, -0.062323879450559616, -1.0811647176742554, 0.607068657875061, 0.18637816607952118, 0.18804559111595154, 0.7169891595840454, -0.9213835597038269, -0.2794378101825714, -0.948395311832428, -1.087233304977417, 0.9640920758247375, -0.573639452457428, 0.013240423984825611, -0.32527464628219604, -1.5888152122497559, -0.6217372417449951, 1.5428522825241089, 1.0316057205200195, 0.23548686504364014, -0.1575031876564026, 2.0355145931243896, -0.4454285502433777, -0.49023309350013733, -1.7500083446502686, 0.15932707488536835, -0.24125352501869202, 0.7653263211250305, -1.3134539127349854, 0.05411938205361366, 0.26138582825660706, 0.2730536162853241, -1.181597113609314, 0.5687310099601746, 1.3082704544067383, 0.9178944826126099, -0.8523768186569214, 0.450479120016098, -0.23321589827537537, 0.2634652554988861, -0.5274396538734436, 1.7415356636047363, -0.19784832000732422, -0.5655055046081543, 1.2744219303131104, -0.10863441228866577, -0.5143545866012573, 0.20478412508964539, -0.04471343383193016, -0.17457130551338196, 0.1734132617712021, 0.49539852142333984, -0.16583633422851562, -0.6852753758430481, 0.47455570101737976, -1.5463305711746216, 0.6890283823013306, 0.06664316356182098, 0.6645932793617249, 0.7597826719284058, 0.015942316502332687, -0.13127325475215912, 0.1254309117794037, 0.7983180284500122, -0.6794397234916687, -0.06994350999593735, -0.10681792348623276, 0.5400588512420654, -0.7663862705230713, -0.9013144373893738, 1.6612319946289062, 0.24578037858009338, 0.317783385515213, 0.2288922220468521, 0.5239481925964355, -0.4473055899143219, -0.7670931220054626, 0.015060923993587494, -0.8741272687911987, -0.89231276512146, -0.8625686764717102, -0.6458742618560791, -0.816999077796936, 0.6847726702690125, 0.17375385761260986, -0.8350041508674622, 1.723357081413269, 0.3382013142108917, -0.4375544786453247, -0.18709678947925568, 0.5676307678222656, -0.725700855255127, -0.0008362643420696259, -0.804593026638031, -0.4670897126197815, -0.7353962063789368, 1.4152144193649292, 1.464589238166809, -0.1708701103925705, 0.5590376853942871, 0.9496455192565918, -0.151020348072052, -0.34929731488227844, 0.5255171656608582, -0.14965234696865082, 0.6258295774459839, 0.612363338470459, -0.8508699536323547, -0.4685283303260803, 0.09216880798339844, -0.31807833909988403, 0.9589800238609314, -0.17935903370380402, -0.4412199854850769, 0.836958646774292, -0.9472161531448364, 0.8568581938743591, -1.3546823263168335, -0.2721173167228699, 0.10419277101755142, -0.016365133225917816, 0.4777185618877411, 0.04015811160206795, -0.5465526580810547, -0.7101262211799622, 0.4059050679206848, -0.5887954235076904, 0.4046250879764557, -0.12056650221347809, -0.9086756110191345, 0.49637630581855774, -1.0232003927230835, 0.5782759189605713, 0.34259939193725586, 0.9871704578399658, 0.2810082733631134, -0.5335910320281982, -0.6048600673675537, -0.1687033325433731, 0.33588531613349915, 0.5057017803192139, 0.8573260307312012, 0.006086019333451986, -0.9002801179885864, 0.8167726993560791, 1.1127631664276123, -0.23953619599342346, 0.3736266493797302, 0.9640586972236633, -0.016671398654580116, 0.6998053193092346, -0.19282735884189606, -0.8013048768043518, -0.47044265270233154, 0.6749029755592346, 0.6144047975540161, -0.8147475719451904, 1.1082464456558228, 0.15368573367595673, -1.534079670906067, -1.1076687574386597, 0.8691117167472839, -0.365302711725235, 0.9658544063568115, -0.02993685007095337, 0.004121741279959679, -0.6034969091415405, 0.5948448777198792, -0.37160810828208923, -0.48172762989997864, -0.4749771058559418, -0.4158470630645752, 0.017193786799907684, -0.9153167009353638, -0.08043082058429718, 0.08375052362680435, -1.0082404613494873, 0.10867700725793839, -1.610260248184204, -0.4385594129562378, -0.20818307995796204, 0.024326739832758904, -0.42400357127189636, -0.6928116679191589, 0.6055505275726318, -0.5945903658866882, 0.7573845386505127, -0.7316913604736328, 1.3571993112564087, -0.5001670122146606, -0.17527440190315247, 1.1620004177093506, -0.6073703765869141, -0.8215680718421936, 0.24737560749053955, 0.5309505462646484, -1.8627183437347412, 0.09893913567066193, 0.08564828336238861, -0.6263105273246765, -0.21075297892093658, -0.3695443272590637, -0.16223548352718353, 0.747689962387085, -0.09105444699525833, 0.2860965132713318, 0.05197853967547417, -0.11160317808389664, -1.1599838733673096, -0.45243188738822937, -0.590588390827179, -0.6338053941726685, -0.8967962265014648, 0.8536067605018616, 0.23531456291675568, -1.4559117555618286, 0.22161579132080078, 0.18324638903141022, 0.5707982778549194, -0.055053312331438065, 1.2875733375549316, 0.5737359523773193, 0.4198978543281555, 0.12399189174175262, -0.39939579367637634, -0.6719548106193542, 0.7110088467597961, 1.4145382642745972, -0.06637018918991089, 0.11861063539981842, 0.6742715835571289, 1.304243803024292, -0.06475325673818588, 0.47906652092933655, -0.2665683329105377, 0.018379703164100647, -0.9682241082191467, -1.1423115730285645, 0.3319985270500183, -0.1689576655626297, 1.8205556869506836, 1.146766185760498, -1.217538595199585, -0.4999197721481323, 0.1892872154712677, 0.1970321089029312, -0.23667187988758087, -0.8998652696609497, 0.01794574037194252, 0.2866578698158264, 0.03924974054098129, 0.22192798554897308, 0.9180819392204285, -0.6424174308776855, 0.36181220412254333, -0.848310112953186, -0.428713321685791, -0.5700399875640869, 0.8604204654693604, 0.1334482878446579, 1.221792221069336, -0.23706132173538208, -1.706619143486023, 0.11565858870744705, -0.37354257702827454, 0.5836390256881714, 0.40805745124816895, -0.2138402760028839, 0.6108909845352173, 0.4444293677806854, -0.6219260096549988, 0.6840679049491882, -0.12329856306314468, 0.14118407666683197, -0.22130142152309418, 0.25919875502586365, 0.3203895092010498, 1.0571544170379639, -0.8224678635597229, -0.636009693145752, 0.2193642258644104, -0.11120228469371796, 1.793290376663208, 0.2584839165210724, 0.6543390154838562, 0.034524619579315186, 0.2570251524448395, -0.2275884449481964, -0.44927650690078735, -1.022236943244934, -0.9167870283126831, -0.5601811408996582, -0.7882519960403442, 0.002123462036252022, 0.2775671184062958, 0.1375437080860138, 1.2250248193740845, -0.18900176882743835, 0.023843126371502876, 1.063506841659546, -0.6413708925247192, -1.0769059658050537, -0.34717562794685364, -0.032810624688863754, -0.9276183843612671, 0.48034578561782837, 1.595363736152649, -1.0279316902160645, 0.09849853068590164, -0.09970735758543015, -0.006952892057597637, 0.5928416848182678, -0.21812845766544342, 0.6581376791000366, -1.2019109725952148, -0.9289670586585999, 0.13211952149868011, 1.0461848974227905, -0.3574564754962921, 0.5503203868865967, -0.6108148694038391, 0.40354710817337036, 0.6329447031021118, 0.3134050965309143, -0.3208300769329071, 0.4027295410633087, -0.5869422554969788, -0.8895823955535889, -0.1325697898864746, 0.8762881755828857, 0.7334354519844055, -0.37178122997283936, -0.6877235174179077, -0.6893404722213745, -0.41603371500968933, -0.36348018050193787, -0.009636975824832916, 0.4186519384384155, 0.9592674970626831, -0.16690224409103394, 0.5998485088348389, 0.6745011210441589, 0.14563913643360138, 0.12781421840190887, -1.5626510381698608, 0.48668983578681946, 0.5622764825820923, 1.2646414041519165, 0.24814069271087646, 0.4639385938644409, 0.16972851753234863, 0.35838815569877625, -0.24234223365783691, -0.16819648444652557, 1.3696508407592773, -0.38284221291542053, -0.09529197216033936, -0.2699059545993805, -0.6858745217323303, 0.0885605663061142, -0.019723495468497276, 0.42182332277297974, 0.6572510004043579, -1.4980803728103638, -0.5180284976959229, 1.3907876014709473, 0.26446014642715454, -0.2739710509777069, -0.023327743634581566, 0.518750011920929, 0.39454010128974915, -0.904289960861206, -0.36582180857658386, -0.25575122237205505, 0.16279709339141846, 0.29790887236595154, -1.2404627799987793, -0.13819003105163574, 0.4117913246154785, 0.8590887784957886, 1.418839693069458, -0.941861093044281, 0.35338759422302246, -0.7604643106460571, 0.5468287467956543, 0.5007675886154175, -0.5161295533180237, 0.4755171537399292, 0.09958609938621521, -0.09875596314668655, 0.05650220438838005, 0.5509894490242004, 1.2756136655807495, 0.11007256805896759, 0.5276935696601868, 0.512361466884613, -0.6824713349342346, -0.5892695784568787, -0.26282045245170593, -0.5997940301895142, 0.476973295211792, -0.8228054642677307, -0.520149290561676, 0.20233894884586334, -0.45569443702697754, 2.0838420391082764, -0.004445967264473438, 0.5082413554191589, 0.27139484882354736, 0.0931156799197197, -0.9715332388877869, -0.13048182427883148, 0.4742114841938019, -0.055014755576848984, -0.7508614659309387, 0.020348994061350822, 0.310151070356369, -0.05089140683412552, 0.12631654739379883, 0.20215533673763275, 0.16139096021652222, 0.17415136098861694, -0.10712946206331253, 0.35835742950439453, 0.45345059037208557, 0.7109778523445129, 0.8514611124992371, 0.6216209530830383, -0.535453200340271, -0.6285437941551208, 0.9379546642303467, -0.1852954626083374, 0.3121238946914673, 0.3497254252433777, 0.350396066904068, 1.6106234788894653, -1.1048275232315063, -0.29849788546562195, 0.5085774064064026, 0.018802110105752945, 0.2213098406791687, 0.6940407156944275, 0.01954004541039467, -0.11567865312099457, 0.17576242983341217, -0.2384224683046341, -0.2099052518606186, 0.30689749121665955, 0.08250045031309128, 0.13020658493041992, 0.7148118019104004, -0.8380853533744812, 0.1320381462574005, -0.5459251999855042, -0.5621431469917297, -0.401917427778244, -0.5576456785202026, 0.38659220933914185, 0.03667394816875458, 0.6867321133613586, 1.0557595491409302, -0.13600601255893707, -1.0413684844970703, 0.09219444543123245, -0.5820779204368591, 0.8358058929443359, -0.48553186655044556, -0.37471264600753784, -1.066705584526062, 0.03361976891756058, -0.39863333106040955, 0.3658495843410492, -0.7450360655784607, -0.5900377035140991, -0.27664750814437866, -2.107037305831909, 0.5911149382591248, 0.3163679242134094, 0.7748993039131165, 1.0612990856170654, -0.18777580559253693, 0.4243987202644348, 0.11043023318052292, -0.8122137188911438, 0.0751066505908966, -0.05172669142484665, -0.4760104715824127, 0.08865004777908325, -0.7590525150299072, -0.8174104690551758, 0.433038592338562, 0.4139360785484314, 0.2009463906288147, 0.6508938074111938, 0.7298509478569031, 1.3642773628234863, -0.11480320990085602, 0.3571521043777466, 0.11631827801465988, -0.8934922218322754, 1.002546787261963, -0.017048103734850883, -0.9378289580345154, -0.5980266332626343, -1.2556308507919312, -1.891213059425354, 1.3679208755493164, -0.677074134349823, -0.3789326846599579, 1.290365219116211, 1.240983009338379, 0.41456300020217896, 0.37378981709480286, -0.26827383041381836, -0.11823303997516632, 0.04075881466269493, -0.37095174193382263, -1.0044405460357666, 0.8952752351760864, 0.7105801105499268, 0.065115787088871, 0.10738832503557205, 0.2770070731639862, -0.3284931480884552, 0.052798785269260406, -0.3302817940711975, 0.634554922580719, 0.3101732134819031, 0.5443923473358154, 0.18871867656707764, 0.5318794250488281, 0.3865388035774231, -1.251756191253662, -0.2883947193622589, 0.12328086793422699, 0.8093050718307495, 0.2887158691883087, 0.0011402405798435211, 0.44837847352027893, -0.4167439639568329, -0.4296369254589081, -0.35505586862564087, -0.22606465220451355, 1.0166065692901611, 0.7522838115692139, -0.3383970856666565, -0.33826494216918945, -0.6847789287567139, -0.17369383573532104, -0.6115924715995789, 0.9867737293243408, 0.35952308773994446, -1.6592403650283813, -0.3514886796474457, 0.36488792300224304, -0.6687493920326233, -0.8525770306587219, -0.36553505063056946, 0.0851227268576622, -0.9104387760162354, -0.9453501105308533, -0.23998840153217316, -0.0187758207321167, 0.668727695941925, -0.38480833172798157, 0.43238481879234314, 0.0030781636014580727, -1.2572486400604248, 0.7143097519874573, -0.6299455761909485, -0.6280961036682129, 0.184366375207901, -1.4804831743240356, 0.8905380964279175, 0.06264318525791168, 0.6102634072303772, -0.2144012451171875, 0.5994176864624023, -1.3439885377883911, -0.7596257925033569, -1.2835201025009155, -0.4071740508079529, 1.297107219696045, 0.6844449043273926, -0.7702517509460449, 1.8284947872161865, 1.1581342220306396, -0.09610707312822342, -0.07584283500909805, -0.003169408068060875, -0.4147770404815674, -0.2159518599510193, 0.4848024547100067, 0.784051239490509, 1.0993670225143433, 1.4719771146774292, 1.0360980033874512, 0.5574326515197754, 0.8168345093727112, 1.1851698160171509, -0.43906542658805847, -0.3970124423503876, -0.21709521114826202, 1.1156288385391235, -0.439408540725708, -1.082556962966919, -0.002179850824177265, -0.21646423637866974, -0.8701344132423401, -0.12613844871520996, 0.6023353338241577, -0.7863534688949585, 0.6755202412605286, -0.5788180232048035, -0.05942703038454056, -0.5392053723335266, 0.3206183910369873, 0.1500912457704544, -1.1885507106781006, 0.19658634066581726, -0.18295595049858093, -0.3261348009109497, -1.2280309200286865, 0.3963612914085388, 0.4930505156517029, -0.5236808061599731, -0.5474311709403992, 0.057205718010663986, -0.08618596196174622, 0.9097126722335815, -0.5671600699424744, 1.7656278610229492, 0.6823957562446594, -0.615250825881958, -0.16028030216693878, -0.3760603666305542, 0.07815254479646683, 0.6554535031318665, -0.9930103421211243, -0.886557936668396, -0.7940117120742798, 1.4734561443328857, 0.33032533526420593, 0.17610198259353638, -0.20365464687347412, -0.28522247076034546, -0.22959502041339874, 0.36947888135910034, 1.3150324821472168, -1.3539098501205444, -0.6268165707588196, 1.1363775730133057, 0.9991846084594727, -0.3695698380470276, 0.42565348744392395, 0.1968514770269394, 0.16005884110927582, -0.8967939019203186, 0.4513893723487854, 0.4988607168197632, -0.2853263318538666, 0.6856444478034973, 0.25700077414512634, 0.07643542438745499, -0.002676820382475853, -0.17546381056308746, -1.4746392965316772, 0.3897263705730438, -0.29895293712615967, -0.5215098261833191, 1.0529199838638306, -1.2281781435012817, -0.8080531358718872, 0.3329586982727051, 0.3629292845726013, -0.3178042769432068, -0.19882658123970032, 0.1046685129404068, 0.3754473328590393, -0.051444005221128464, 0.8839468955993652, -0.15720631182193756, 0.8962488174438477, -0.4366191625595093, 0.354633092880249, -0.9680405855178833, -0.10023675858974457, 0.44195571541786194, 0.21303488314151764, -0.1769307404756546, -0.19236794114112854, 0.5185940265655518, -0.7352603077888489, -0.5851075053215027, 0.2938774526119232, 0.10254815220832825, 0.2934623956680298, -0.3537593185901642, -0.47732120752334595, -0.08865119516849518, 0.48672541975975037, 0.774547278881073, -0.038898080587387085, -1.1477924585342407, -0.6387609243392944, 0.054759979248046875, -0.4516645669937134, 0.10136599093675613, 0.014975747093558311, 0.6086652278900146, 0.27765366435050964, -0.714415431022644, -0.9381113648414612, -1.0763882398605347, 0.7619743347167969, -0.2754770815372467, 0.1938450187444687, -0.4616323411464691, 0.7146665453910828, -0.1117100864648819, -0.8353360891342163, -0.03483729809522629, 0.16750846803188324, 0.12563395500183105, 0.13749168813228607, -1.0241645574569702, -0.1864420473575592, -0.8421050310134888, 0.4283037483692169, 0.37596800923347473, 0.5650202631950378, 0.1417195200920105, 0.32373180985450745, -1.3225314617156982, 0.37285536527633667, 0.27937549352645874, -0.20372167229652405, -0.32045111060142517, 1.5228383541107178, 1.5238476991653442, 0.12151069194078445, 0.16704735159873962, -0.3423405885696411, 0.363964319229126, -1.2085720300674438, 0.013572771102190018, -0.44320961833000183, -0.7483081817626953, -0.5631304979324341], [-0.659466028213501, 1.3118692636489868, -2.361422538757324, -0.3424220085144043, 1.0589426755905151, -0.34314846992492676, 1.316833257675171, -1.0703811645507812, 0.42604053020477295, -0.5915077924728394, -1.1888768672943115, -0.12117348611354828, -0.178470179438591, 0.37477076053619385, 0.8318994045257568, 1.5044350624084473, 1.0717294216156006, 0.2148643434047699, 0.6668258905410767, 0.9758388996124268, -0.05806201696395874, -0.12978194653987885, 0.554068922996521, -0.20885999500751495, 0.11570107936859131, 1.1221877336502075, -1.0975875854492188, -0.5464925765991211, -0.4474446773529053, -1.0449092388153076, 0.8618331551551819, -0.9315825700759888, -0.13281342387199402, -0.3058323264122009, -1.2301299571990967, -0.11863613873720169, 1.6778953075408936, 1.793594479560852, 1.1461751461029053, -0.15735316276550293, 1.3991506099700928, -0.7073791027069092, 0.11776956915855408, -1.487849235534668, 0.1857614815235138, -0.24201229214668274, 0.6332347393035889, -0.24310153722763062, -0.423357218503952, -0.07193803042173386, 0.11523838341236115, -1.0887253284454346, 0.21847233176231384, 0.9544481039047241, 1.159017562866211, -0.6910377144813538, 0.9987921714782715, -0.5017459988594055, -0.25375106930732727, -0.49071234464645386, 0.9761847257614136, 0.21177339553833008, -0.6236081123352051, 0.44844430685043335, -0.02576790750026703, -0.17062534391880035, 0.02120884321630001, 0.36345547437667847, -0.29597410559654236, 0.27460283041000366, 0.3556209206581116, -0.17155155539512634, -1.172118067741394, 0.4695923328399658, -1.4079978466033936, 0.6840803623199463, 0.8752607107162476, 0.4285186231136322, 0.8091222643852234, 0.0006868541240692139, 0.06859930604696274, -0.1145399883389473, 0.25472745299339294, -0.5485711693763733, 0.5009084939956665, 0.2778826355934143, 0.6412640810012817, -0.8886241912841797, -0.7863657474517822, 0.9516274333000183, 0.6051430702209473, -0.19318601489067078, 0.35132697224617004, 0.14023229479789734, -0.8909236788749695, -0.6545749306678772, 0.9654857516288757, -0.06300369650125504, -0.9068168997764587, -0.8071010112762451, -0.275430828332901, -1.4578485488891602, 0.6887704133987427, 0.12389728426933289, -0.028060652315616608, 1.37953782081604, 0.15517443418502808, -0.7443605065345764, -0.6135284900665283, -0.1951930671930313, -0.04274548590183258, 0.4770411550998688, -0.8710272312164307, -0.9384599924087524, -0.25012192130088806, 1.314589023590088, 1.9796817302703857, -0.858786404132843, 0.35953956842422485, 1.1154674291610718, -0.377788245677948, 0.22377443313598633, -0.32453757524490356, 0.7711580991744995, 0.8082300424575806, 0.6085622906684875, -0.008938213810324669, -0.33700743317604065, 0.3201885223388672, 0.05181301385164261, 0.7443445324897766, -0.07675602287054062, -0.552129864692688, 0.8149223327636719, -1.1978704929351807, 0.9179122447967529, -0.2561883330345154, -0.608839750289917, -0.04286210983991623, -0.1333709955215454, 1.036703109741211, -0.387395977973938, -0.2649265229701996, 0.13727043569087982, 0.243331179022789, -0.5766267776489258, -0.2140570729970932, -0.3263940215110779, -0.6349775791168213, 0.21416352689266205, -0.9871151447296143, 0.37814924120903015, -0.048789553344249725, 0.4495224356651306, 0.6760377883911133, -0.6566987037658691, 0.11369787156581879, 0.640709638595581, 0.9104783535003662, 0.5973494648933411, 1.0926554203033447, -0.339063435792923, -1.0146349668502808, 0.9270085692405701, 0.6749405264854431, -0.24763396382331848, 0.007345279678702354, 1.0376626253128052, 0.1748979687690735, 1.1446988582611084, -0.1665061116218567, -0.963476836681366, -0.5521147847175598, 0.2543953061103821, 0.15868818759918213, -0.5994206666946411, 1.279085636138916, 0.08687460422515869, -1.9201161861419678, -1.3518216609954834, 0.06409361213445663, -0.41461020708084106, 0.8799848556518555, 0.0633537769317627, 0.5946779251098633, -0.7677007913589478, 0.6655783653259277, 0.35849499702453613, -1.155481219291687, -0.8115463256835938, -0.6448870897293091, -0.5010130405426025, -0.8054744005203247, 0.2801426649093628, -0.7462694048881531, -1.5616146326065063, 0.18548624217510223, -1.2927175760269165, -0.39034950733184814, -0.30506592988967896, 0.10829389095306396, -0.26668423414230347, -0.41563352942466736, -0.04204322397708893, -0.48742955923080444, 1.0400478839874268, -1.3884055614471436, 1.3635294437408447, -0.6360436677932739, -0.23479974269866943, 1.2238452434539795, -0.1974467933177948, -0.5957676768302917, 0.684410810470581, -0.157134547829628, -1.3075296878814697, 0.34531259536743164, 0.64332115650177, -0.26376721262931824, -0.4209423065185547, -0.22117015719413757, 0.5365887880325317, 0.0564613901078701, 0.026377897709608078, 0.7190897464752197, -0.07761392742395401, -0.3105909824371338, -0.589002251625061, -0.44534897804260254, -0.5467039346694946, -0.4732053279876709, -0.4369485378265381, 0.4969390034675598, -0.006698428653180599, -1.1050896644592285, 0.2620707154273987, 0.2772204875946045, 0.6248214244842529, 0.6619491577148438, 1.3843915462493896, 0.6595808267593384, 0.4266712963581085, -0.05194421112537384, -0.6265925168991089, -0.43085479736328125, 1.0732810497283936, 0.8418556451797485, -0.45050787925720215, 0.5356097221374512, 1.2126773595809937, 1.1584322452545166, -0.624100923538208, -0.06475598365068436, -0.38171103596687317, -0.3063373863697052, -0.8530446887016296, -0.7995052933692932, 0.045585960149765015, -0.054407328367233276, 1.9656168222427368, 0.6257457733154297, -1.141117811203003, -0.3537651300430298, 0.8052716851234436, -0.035952575504779816, -0.11801128089427948, -0.35539746284484863, 0.644284725189209, 0.02475742995738983, 0.18654274940490723, 0.0028045158833265305, 0.546477735042572, -0.47735780477523804, 0.5417653322219849, -1.0577086210250854, -1.1903486251831055, -0.724082350730896, 0.4510326385498047, -0.47575172781944275, 0.5658420324325562, -0.10777684301137924, -0.9902733564376831, 0.10640937089920044, -0.02376250922679901, 0.4042484760284424, 0.14193104207515717, 0.06292837858200073, 0.09682843089103699, 0.8300892114639282, -0.33387985825538635, 0.8234219551086426, 0.09317750483751297, 0.33907708525657654, 0.28139859437942505, 0.329451322555542, 0.4419906735420227, 2.0877482891082764, -1.5774279832839966, -0.7407612800598145, 0.0486542209982872, 0.10502074658870697, 1.5594732761383057, 0.029459193348884583, 1.292925238609314, 0.060114216059446335, 0.5570611953735352, -0.5488123893737793, 0.10551290214061737, -0.8886488676071167, -0.7945812940597534, -1.3810689449310303, -0.32913708686828613, -0.3120831251144409, 0.004915386438369751, -0.02947617508471012, 0.5338859558105469, -0.3826322555541992, 0.4838833808898926, 1.5996510982513428, -0.6349897384643555, -0.5788672566413879, -0.4334389269351959, -0.4722236394882202, -0.4841628074645996, 0.1424563080072403, 1.3579394817352295, -0.7257997393608093, -0.5818523168563843, 0.11691045761108398, 0.15617036819458008, 0.658164381980896, 0.0727248340845108, 0.7407483458518982, -1.7876274585723877, -1.2824435234069824, -0.03533592075109482, 1.3817405700683594, -0.39123234152793884, -0.10968399047851562, -0.3116214871406555, 0.3105334937572479, 1.0859220027923584, -0.506658136844635, -0.6700670719146729, 0.7058967351913452, -0.42358410358428955, -1.3375649452209473, -0.4346441626548767, 0.1959194540977478, 0.8267309665679932, -0.5613940954208374, -0.3219956159591675, -0.5073836445808411, -0.1900986135005951, -0.08563929051160812, 0.041605349630117416, -0.5260477662086487, 1.0659633874893188, -0.3227103352546692, 0.36129453778266907, 0.4127626419067383, -0.3762474060058594, 0.5569181442260742, -0.8935710191726685, 0.36281293630599976, 0.6797606348991394, 1.0321472883224487, 0.4858297109603882, 0.2772214114665985, 0.11387548595666885, 0.873151421546936, 0.12899212539196014, -0.07449132949113846, 1.6361725330352783, -0.1142987310886383, -0.12794503569602966, -0.2943321466445923, 0.2182520180940628, -0.11883559077978134, -0.22374069690704346, 0.07649974524974823, 0.6417490243911743, -1.224664568901062, -0.17025429010391235, 1.027130126953125, 0.3366384208202362, 0.09063443541526794, 0.14893290400505066, -0.4056549668312073, 0.8659434914588928, -0.3436379134654999, -0.2557278573513031, -0.40902674198150635, -0.15098275244235992, 0.4436507225036621, -0.990546703338623, 0.04409974068403244, 0.677355170249939, 0.5438991785049438, 0.5590012073516846, -0.24606546759605408, 0.09050996601581573, -0.9463677406311035, 0.8448210954666138, 0.7277487516403198, -0.9870849847793579, 0.1321338713169098, -0.11717602610588074, -0.0972597748041153, -0.28506529331207275, 0.2751157581806183, 0.7095991373062134, -0.22159899771213531, 0.11271633207798004, 0.5066011548042297, -0.05451081320643425, -0.5040954947471619, -0.13025057315826416, -0.10518012940883636, 0.49806755781173706, -0.3252658247947693, -0.10871449112892151, 0.5004128217697144, -0.34434160590171814, 1.9209506511688232, 0.345140278339386, 0.3897528052330017, 0.7044907808303833, 0.21629583835601807, -0.7216979265213013, -0.28612515330314636, 0.47170180082321167, -0.3543028235435486, -1.0346293449401855, -0.3165908753871918, 0.3519221544265747, -0.528229832649231, 0.029338134452700615, -0.23047292232513428, 0.7172641754150391, 0.4216000437736511, -0.06033533066511154, -0.16008709371089935, 0.6943234801292419, 0.8357657194137573, 0.9468575119972229, 0.5242117643356323, -0.6145970225334167, -0.7955794930458069, -0.12483647465705872, -0.6913691759109497, 0.10201556980609894, 1.043020486831665, 0.27388083934783936, 1.5232291221618652, -1.364443063735962, -0.41930535435676575, 0.34386464953422546, 0.03130811080336571, 0.34104955196380615, 1.1887965202331543, -0.40955138206481934, 0.5868049263954163, 0.05914689600467682, -0.31890949606895447, -0.3225066065788269, 0.01927933655679226, 0.30382105708122253, -0.8246335983276367, 0.536341667175293, -0.6384291052818298, 0.9200643301010132, -1.2593297958374023, -0.7074155807495117, 0.15433013439178467, -1.5592551231384277, 0.14090080559253693, 0.24928739666938782, 0.6732520461082458, 1.209857702255249, 0.06950682401657104, -1.2454485893249512, -0.2241390496492386, -0.32090914249420166, 0.14152656495571136, -0.8188371658325195, -0.3811776041984558, -0.9209082126617432, -0.2889016270637512, -0.49869662523269653, 1.021578311920166, 0.1969393789768219, -0.6433351635932922, -0.24830830097198486, -1.034400224685669, 0.7480531334877014, 0.3263917565345764, 0.5852431654930115, 0.4219323992729187, -0.3873324692249298, 0.3479107916355133, -0.2252662181854248, -0.6311800479888916, 0.38917794823646545, 0.14914719760417938, -0.060155414044857025, -0.091086745262146, -0.8525251150131226, -0.2162623405456543, 0.4605918526649475, 0.44809508323669434, -0.3740427494049072, 0.698474645614624, 0.9965618848800659, 1.0952765941619873, -0.14429685473442078, -0.05293256789445877, -0.1684039831161499, -0.10198286175727844, 0.3980101943016052, 0.6551352739334106, -0.1450970619916916, -0.6114845275878906, -1.289011001586914, -1.591031789779663, 0.8382409811019897, -0.394141286611557, -1.0690958499908447, 1.3021749258041382, 0.724432647228241, 0.6929619908332825, 0.5147562026977539, -0.5396426320075989, 0.3779987692832947, 0.24197928607463837, -0.9658047556877136, -1.105525255203247, 0.9558937549591064, 0.04619942232966423, 0.8930016756057739, -0.1364527940750122, -0.7375591993331909, -0.0464915968477726, -0.2851685881614685, -0.7993375062942505, 0.4930185079574585, -0.07795314490795135, 0.5506854057312012, -0.09055586159229279, -0.09195751696825027, -0.032772552222013474, -0.07983183860778809, -0.959376335144043, 0.07789275050163269, 0.1869022697210312, 0.2745112478733063, 0.14295057952404022, -0.3884170949459076, -0.2872398793697357, -0.80804443359375, -0.09344904869794846, 0.17700061202049255, 0.6696878671646118, 1.083132266998291, 0.4700402021408081, -0.234205961227417, -0.14617113769054413, 0.39229246973991394, -0.3931344747543335, 1.0616064071655273, 0.923957347869873, -1.175499677658081, 0.06902144104242325, 0.7835302352905273, -0.9158658981323242, -1.0343449115753174, -0.17961496114730835, -0.08794526755809784, -1.2093520164489746, -0.8931723833084106, -1.2274985313415527, -0.11972800642251968, 0.5049089193344116, -0.9182277917861938, 0.1149594783782959, 0.5163050293922424, -1.719452142715454, 0.4190666675567627, -0.5263245105743408, -1.0776013135910034, 0.042836807668209076, -0.42643892765045166, 0.6073770523071289, 0.09558311849832535, 0.4776129722595215, -0.4461442530155182, 0.4751952886581421, -1.3077327013015747, -1.008641242980957, -0.7109318971633911, 0.14288541674613953, 0.7142214179039001, 0.5553325414657593, -0.49075159430503845, 1.6858192682266235, 0.9227900505065918, -0.5368524789810181, -0.5334288477897644, 0.2181897610425949, -0.300772488117218, 0.49682503938674927, 0.43314802646636963, 0.7581493854522705, 1.0039968490600586, 1.1604777574539185, 0.1619931161403656, 1.1319465637207031, 0.8253313899040222, 0.4456102252006531, -0.10243834555149078, -0.8847548365592957, 0.4642702341079712, 0.6511290073394775, -0.9279428720474243, -1.1528847217559814, -0.4463838040828705, -0.30155858397483826, -1.1669530868530273, 0.15805663168430328, 0.7846888303756714, -0.748450517654419, 0.21846207976341248, -0.521767258644104, 0.15749388933181763, -0.6742141246795654, -0.006496507674455643, 0.2063382863998413, -0.7203123569488525, 0.01158871315419674, 0.16570159792900085, -0.7498383522033691, -1.6148847341537476, 0.48900696635246277, 0.17379964888095856, -0.6315679550170898, -0.5222795009613037, 0.9825621843338013, 0.30493319034576416, 0.5201553106307983, -0.14857222139835358, 1.6948819160461426, 1.0677318572998047, -0.6044148802757263, 0.10763642191886902, 0.4211612343788147, 0.16438187658786774, 0.5962475538253784, 0.3376067280769348, -1.043424129486084, -1.037774920463562, 1.7916762828826904, 0.5881267189979553, 0.36675822734832764, -0.13464395701885223, -0.5360267162322998, -0.3881380259990692, 0.22581151127815247, 0.5265791416168213, -0.8795714378356934, -0.15331228077411652, 0.9302013516426086, 0.7090669870376587, 0.10774116218090057, -0.4546352028846741, 0.6119354963302612, 0.8545161485671997, -0.941999077796936, 0.3295627534389496, 0.568837583065033, -0.21880878508090973, 0.5663988590240479, -0.29344531893730164, -0.4275064468383789, -0.22293789684772491, -0.12364237010478973, -0.7627326250076294, -0.040339890867471695, 0.06804781407117844, -0.5802702903747559, 1.0977129936218262, -1.1693055629730225, -0.3102697432041168, -0.3778642416000366, -0.5057297348976135, -0.29153138399124146, -0.29264509677886963, 0.11750499904155731, -0.23025114834308624, 0.443330854177475, 0.7455415725708008, -0.24626855552196503, 1.0795342922210693, -0.7423908710479736, 0.06295949220657349, -1.2193211317062378, -0.31539154052734375, 0.15288791060447693, -0.20394489169120789, -0.21807655692100525, -0.2353084683418274, 0.5328908562660217, -0.3221409320831299, -0.8283452987670898, -0.015184387564659119, 0.025780893862247467, -0.06758485734462738, 0.014095939695835114, -0.652589738368988, 0.26568299531936646, 0.9682468771934509, 0.9906426668167114, -0.20063170790672302, -1.0548229217529297, -1.1934524774551392, -0.24302005767822266, -0.27747225761413574, 0.5385744571685791, -0.5089231133460999, 0.9992530941963196, 0.17770187556743622, -0.14006558060646057, -0.7535255551338196, 0.08757343888282776, 0.7814866304397583, 0.17564737796783447, 0.3388693630695343, -0.22881636023521423, 0.48886626958847046, -0.7028110027313232, -0.8256943225860596, 0.1386672705411911, -0.02823857218027115, -0.4187721610069275, -0.08599436283111572, -1.0709586143493652, -0.2026919722557068, -0.22492261230945587, -0.09688764810562134, 0.05642593652009964, -0.09776367247104645, 0.2361994832754135, -0.1754971742630005, -0.8114228248596191, -0.29297196865081787, 0.2371637374162674, -0.11594872176647186, -0.106477752327919, 1.186305046081543, 1.4534989595413208, 0.4736766815185547, 0.46031808853149414, -0.30330008268356323, 0.09100933372974396, -1.3427441120147705, -0.03561755269765854, -0.6804502606391907, -0.5101425647735596, -0.40753665566444397], [0.9694921970367432, 1.4963091611862183, -2.2376902103424072, 0.1164931207895279, 1.7342203855514526, -0.08442432433366776, 0.8497594594955444, -0.304292768239975, -0.30075234174728394, -0.21489585936069489, -0.5462342500686646, 0.4589781165122986, 0.1341947466135025, 0.988475501537323, 0.7824819684028625, 0.8269790410995483, 1.2746590375900269, -0.3022240102291107, 0.48143622279167175, 0.6498590707778931, 0.12365375459194183, 0.17471277713775635, 0.0818362906575203, 0.40807944536209106, -0.2971018850803375, 0.5910168886184692, -0.6603875756263733, -0.14390312135219574, -0.9874762892723083, -0.935444176197052, 2.0945308208465576, -0.4742562472820282, 0.21574316918849945, -0.10749160498380661, -2.642174482345581, 0.15930569171905518, 1.418265700340271, 0.6603295207023621, 0.4950393736362457, -0.1661738157272339, 1.8835686445236206, -0.7309343218803406, -0.17664887011051178, -1.8153222799301147, 0.4495614469051361, 0.03312351182103157, 0.9715867638587952, -0.10073009878396988, 0.15538053214550018, -0.769816517829895, 0.4024747610092163, -0.22952406108379364, 0.25893113017082214, -0.4474453628063202, 0.40214475989341736, -0.015334144234657288, 0.8509735465049744, 0.348847895860672, 0.3185822665691376, -0.060947708785533905, 0.6942174434661865, -0.20511570572853088, -0.42116671800613403, 0.5935854911804199, 0.15129026770591736, -0.3122333884239197, -0.29930970072746277, 0.8217241764068604, -0.11297179013490677, -0.049784500151872635, 0.9720065593719482, 0.17121708393096924, -1.1367030143737793, 0.07878279685974121, -0.9909798502922058, 0.5331838726997375, 0.07507096976041794, 0.5901410579681396, 0.34004127979278564, 0.29626402258872986, -1.0169098377227783, 0.050376735627651215, 0.7502356767654419, -0.07139310240745544, 0.3505868911743164, 0.6317496299743652, 0.34744831919670105, -0.53171706199646, -0.891044557094574, 1.1096141338348389, -0.28880205750465393, 0.09261379390954971, 0.6489489674568176, -0.12899282574653625, -0.2936720848083496, -0.4254896938800812, 0.08526210486888885, -0.5887907147407532, -0.15581588447093964, -0.9119956493377686, -0.917332112789154, -1.2745002508163452, -0.48426637053489685, -0.35807913541793823, -0.8687366843223572, 1.0403997898101807, 1.172066330909729, -0.3186114728450775, -0.1900540441274643, -0.24386091530323029, 0.05543249845504761, 0.8855409026145935, -0.4337335228919983, -1.3031483888626099, -0.4686211049556732, 1.205498218536377, 1.4625685214996338, -0.3210625648498535, 0.1998940408229828, 0.416352778673172, -0.18450139462947845, -0.3238978683948517, 0.01966877281665802, 0.4867013394832611, 0.7140620946884155, 0.5546817779541016, -1.1237319707870483, -0.4715130627155304, 0.8195294737815857, 0.49768194556236267, 0.21655049920082092, -0.1370183676481247, 0.13912196457386017, 0.9307949542999268, -0.5197324156761169, 0.8967581391334534, -0.5671010613441467, -0.6770514249801636, -0.22749781608581543, -0.1341308206319809, 0.2899651825428009, -0.8726025819778442, 0.5082289576530457, 0.18472987413406372, -0.059714142233133316, -0.5087934732437134, 0.9233160018920898, -0.07875631749629974, -0.8571442365646362, 0.3090364634990692, -1.154008150100708, -0.0251779668033123, -0.01834544911980629, 0.7842360138893127, 0.7647009491920471, -0.2703702449798584, 0.21333271265029907, 0.2591603398323059, 0.5550820231437683, 0.0032898224890232086, 1.1010388135910034, 0.11621671169996262, -1.791242241859436, 0.4393247961997986, 0.6187363862991333, -0.35863885283470154, 0.6448288559913635, 0.9421708583831787, 0.37669309973716736, 0.7095112204551697, -0.17117999494075775, -0.5191857814788818, -0.03355342149734497, 0.8345131278038025, 0.1951865702867508, -0.010823381133377552, 0.9771815538406372, 0.05844013765454292, -1.5097802877426147, -1.0898542404174805, 0.6315650939941406, 0.28986406326293945, 0.5472471714019775, 0.3545199930667877, 0.7127262949943542, -0.2897946238517761, 0.3930259346961975, 0.3189878761768341, -0.02384961023926735, -0.8109087944030762, -0.7587486505508423, -0.48981961607933044, -0.28639838099479675, 0.6884384155273438, -0.4400802552700043, -0.9898937940597534, 1.0380090475082397, -1.2543638944625854, -0.384631872177124, 0.31558412313461304, -0.056212153285741806, -0.46328791975975037, -0.43839502334594727, 0.23029451072216034, -1.1057406663894653, 0.4566139578819275, -1.4893447160720825, 0.7404146194458008, -0.7300578355789185, 0.4415353238582611, 1.0276055335998535, 0.2845977246761322, -0.9080948829650879, 0.6694574356079102, -0.4082517623901367, -1.9843839406967163, 0.6954687237739563, 1.0813226699829102, -0.04202890768647194, 0.1183103695511818, -0.756140947341919, -0.03680221363902092, 0.5185208320617676, -0.8046144247055054, 0.3521285355091095, -0.23132279515266418, -0.19938097894191742, -1.1345934867858887, -0.18751932680606842, -0.41358527541160583, -0.705786406993866, -1.4916647672653198, 0.2743701636791229, -0.2198890745639801, -0.229775071144104, -0.022190453484654427, 0.5054137706756592, 0.2658873200416565, 0.15707066655158997, 1.3950186967849731, 0.09057369083166122, 0.6793904900550842, -0.1856953501701355, 0.3475531339645386, -0.687496542930603, 0.6293758749961853, 0.8018778562545776, -0.5085354447364807, 0.2074069082736969, 0.9996453523635864, 1.0291736125946045, -0.14022472500801086, 0.4318637549877167, -0.0964881181716919, -0.21112236380577087, -0.7685856223106384, -0.9054116010665894, -0.040910057723522186, -0.44145718216896057, 1.326831340789795, 0.47581544518470764, -0.5042397975921631, -0.3506341874599457, -0.2804471552371979, -0.5891480445861816, -0.48566552996635437, -0.04081638157367706, -0.6665314435958862, -0.18209709227085114, 0.2918495535850525, -0.25391441583633423, 0.24713918566703796, 0.13675250113010406, 0.8885471820831299, -0.22577638924121857, -0.234258770942688, -0.4283880889415741, -0.02871611900627613, 0.08842910081148148, 0.6913012862205505, -0.19214284420013428, -1.3616045713424683, -0.08312048017978668, 0.13163135945796967, 0.37838754057884216, 0.19671835005283356, 0.7377402782440186, 0.5940343737602234, 0.31657224893569946, -0.02386554144322872, 0.028637267649173737, 0.17902803421020508, 0.4574443995952606, 0.5046937465667725, 0.6072877645492554, 0.14202050864696503, 0.8996895551681519, -1.365981101989746, -0.31649696826934814, -0.3841223418712616, 0.2918076515197754, 0.861594557762146, -0.06520446389913559, 0.8614239692687988, -0.07333814352750778, -0.022090459242463112, -0.19320736825466156, -0.7223027348518372, -0.5089795589447021, -0.9182756543159485, -0.8369735479354858, -0.596479058265686, -0.5446681380271912, -0.3587776720523834, -0.07411958277225494, 0.5922179818153381, -0.7699345946311951, 0.5343796610832214, 1.3532522916793823, -0.3404909074306488, -1.1345595121383667, -0.5290935039520264, -0.19577476382255554, -0.16766293346881866, 0.30807438492774963, 1.0489239692687988, -1.3682358264923096, -0.07176181674003601, -0.012602402828633785, 0.21684007346630096, 0.8600032329559326, 0.1336027830839157, 0.867466926574707, -1.3469202518463135, -0.9891531467437744, -0.6482135653495789, 1.3612521886825562, 0.15383175015449524, -0.19427967071533203, 0.06378775835037231, 0.21609486639499664, 0.5064519047737122, -0.21553707122802734, -0.32308557629585266, 1.4219293594360352, -0.3279038667678833, -0.20996908843517303, 0.1719459742307663, 0.31859156489372253, 0.04003792628645897, -0.6571553349494934, -1.0193032026290894, -0.32352250814437866, -0.27657008171081543, -0.23146548867225647, 0.587814211845398, 0.6739656329154968, 0.6651512980461121, -0.19058695435523987, 0.5256763100624084, 0.9991545677185059, -0.2126818746328354, -0.1654474288225174, -0.7513008713722229, -0.16717089712619781, 0.6647509336471558, 1.0288310050964355, 0.6075734496116638, 0.12012652307748795, 0.1013733446598053, 0.22874201834201813, 0.10460557043552399, 0.2151293307542801, 1.3091375827789307, -0.18128421902656555, -0.1368490308523178, -0.6972786784172058, -0.22262081503868103, 0.24773700535297394, 0.22798217833042145, 0.5215164422988892, 0.462165504693985, -0.7598106861114502, -0.42574959993362427, 1.311579942703247, 0.22040003538131714, -0.35184526443481445, -0.922077476978302, 0.0026645269244909286, 1.8196864128112793, -0.45143088698387146, 0.3381997048854828, -0.5053101181983948, -0.21178872883319855, 0.34245917201042175, -0.17379909753799438, -0.47659891843795776, 0.7339169979095459, -0.014045657590031624, 0.657414972782135, -1.1396794319152832, -0.10843764245510101, -0.8985656499862671, 0.6379510760307312, 0.5994965434074402, -0.2588011622428894, 0.6172046065330505, -0.5016988515853882, -0.4788847267627716, 0.38049933314323425, 0.7163614630699158, 1.077988624572754, -0.5909916162490845, -0.291048139333725, 0.2931344211101532, -0.25110331177711487, 0.440860778093338, -0.2885383367538452, -0.2739451229572296, -0.04197153449058533, -0.06226629018783569, -0.024695761501789093, -0.3260886073112488, -0.38612908124923706, 1.4045594930648804, -0.0650588646531105, -0.014644207432866096, 0.5056565403938293, 0.3967008590698242, -0.7089483737945557, -0.16293954849243164, 0.8175820112228394, -0.049222130328416824, -0.4810844361782074, -0.6672517657279968, 0.6293818950653076, -0.11457131803035736, 0.1115008145570755, -0.1279831826686859, 0.7829995155334473, -0.5556145906448364, 0.1350933015346527, -0.4479713439941406, 0.9828287363052368, 0.36420738697052, 0.8115209341049194, 1.0100781917572021, -0.8657622933387756, -0.2800198793411255, 0.21370449662208557, -1.0807143449783325, 0.9398004412651062, 0.9971710443496704, 0.682111382484436, 1.2111947536468506, -1.608500599861145, -0.7748593091964722, 1.064772605895996, 0.3850220739841461, 0.7501604557037354, 1.2842884063720703, 0.02595975622534752, 0.19690699875354767, 0.9010447263717651, -0.024141274392604828, -0.18986469507217407, 0.8593630790710449, -0.07241885364055634, 0.20668184757232666, 0.4320538341999054, -0.9620253443717957, 0.49007394909858704, -0.41353005170822144, -0.33416175842285156, -0.03757266700267792, -0.27515751123428345, 0.33564493060112, 0.8050447702407837, 0.8947901725769043, 1.1138770580291748, -0.6477824449539185, -1.4225467443466187, -0.4269701838493347, -0.9552009701728821, -0.43513569235801697, -0.30830150842666626, -0.017967846244573593, -1.2848179340362549, 0.12325581908226013, 0.18566443026065826, 0.8675296902656555, 0.09142059832811356, -0.29915714263916016, -0.9304279088973999, -0.9522941708564758, 0.5814311504364014, 1.0100650787353516, 1.2853306531906128, 0.3491310179233551, 0.12238258123397827, 0.2969993054866791, 0.0027592675760388374, -1.0412999391555786, -0.21660977602005005, -0.39492908120155334, -0.1523171216249466, 0.1291699856519699, -0.9831119775772095, -0.9774779081344604, -0.4984112083911896, 0.860296905040741, -0.15329548716545105, 0.7114279866218567, 1.3736979961395264, 0.7636390328407288, -0.4057597219944, -0.10505283623933792, 0.36108526587486267, -0.9818481206893921, 0.45641860365867615, 0.4065711796283722, -0.5871210694313049, -0.8720294833183289, -0.9639929533004761, -0.3927574157714844, 0.2956124246120453, 0.05092671513557434, -0.653533935546875, 0.25735220313072205, 0.391786128282547, 0.7683533430099487, 0.19701291620731354, -0.5960956811904907, 0.32977914810180664, 0.10744846612215042, -0.4357607066631317, -0.7098144888877869, 0.4830838739871979, -0.2573852837085724, -0.6731739044189453, -0.647378146648407, 0.4815009534358978, -0.046579357236623764, 0.22090624272823334, -0.7355096936225891, 0.33664295077323914, 0.4729909896850586, 0.8052650094032288, 0.0742909386754036, -0.7598552107810974, 0.498544305562973, -0.8675050139427185, -1.364933729171753, -0.21379658579826355, 0.379388689994812, 0.31503525376319885, 0.21250241994857788, -0.17642681300640106, -0.586397647857666, -0.6942511796951294, -0.6005695462226868, -0.5096710920333862, 0.8426196575164795, 0.6711787581443787, 0.4640762209892273, -0.6581398248672485, -0.9485208988189697, -0.09090612083673477, -0.266482412815094, -0.18768592178821564, 1.0496716499328613, -1.4119760990142822, 0.22502148151397705, 0.8394845724105835, -1.1185376644134521, 0.3323296308517456, -0.8064054250717163, -0.12029440701007843, -0.5635603070259094, -1.2187035083770752, -1.7938872575759888, -0.027546720579266548, 0.8828881978988647, -0.8189393877983093, 0.163814514875412, 0.01912539266049862, -1.657249927520752, 0.47754859924316406, -0.1844365894794464, -1.282439947128296, 0.11491844058036804, -0.9735323786735535, 0.8268882036209106, 0.30906030535697937, 0.40421968698501587, 0.3143497109413147, 0.8571146726608276, -1.5514508485794067, -1.8112913370132446, -0.8809507489204407, -0.3300629258155823, 1.6927112340927124, 0.8515353202819824, -1.1095596551895142, 1.6505290269851685, 0.7138333916664124, 0.2799223065376282, -0.42891767621040344, 0.17250493168830872, -0.7794404625892639, 0.7784586548805237, -0.006277596578001976, 0.779304027557373, 0.0924186259508133, 0.9298365712165833, 0.03261018171906471, 0.9676975011825562, 0.8101527690887451, 0.6508079767227173, -0.2406863123178482, -0.3205887973308563, 0.1982281506061554, 1.0162009000778198, -0.9503466486930847, -0.7155446410179138, 0.04534483328461647, -0.1105373278260231, -0.9720780849456787, -0.27599045634269714, 0.9321170449256897, -0.7852932214736938, 0.21546395123004913, -0.8190532326698303, -0.08810790628194809, -1.061889886856079, 0.2923523187637329, 0.441101610660553, -0.4215868413448334, -0.4193446934223175, 0.06745753437280655, -0.1718205064535141, -1.3498951196670532, -0.10733896493911743, -0.18776549398899078, -0.9081313610076904, -0.579257607460022, 0.29192671179771423, -0.19933803379535675, 0.46842655539512634, -0.8597084283828735, 1.8365142345428467, 0.9329462051391602, -0.4857083857059479, -0.49602454900741577, 0.3034965395927429, 0.06399271637201309, 0.22002634406089783, -0.008926758542656898, -0.2806243300437927, -0.4691363275051117, 0.960817813873291, 0.5526793003082275, -0.3655320703983307, -0.12325786799192429, 0.33859968185424805, -0.1912776678800583, 0.6756606698036194, 0.08256790786981583, -1.0527740716934204, -0.8903005123138428, 1.1420135498046875, -0.24076686799526215, -0.23779435455799103, -0.2044035643339157, 0.8688881397247314, 0.5164538621902466, 0.11675306409597397, 0.7410739660263062, 0.5575613379478455, -0.23126645386219025, 1.1233969926834106, -0.4364689290523529, 0.28522467613220215, -0.6423443555831909, -0.4679809510707855, -1.579526662826538, -0.23416824638843536, -0.053746480494737625, -1.3945934772491455, 0.47107869386672974, -1.5466707944869995, -0.11426407098770142, -0.04411150887608528, -0.31471386551856995, -0.3747807443141937, -0.25356242060661316, -0.09893587231636047, -0.39174753427505493, 0.009557751007378101, 0.707322359085083, -0.6505456566810608, 1.8780865669250488, 0.27385690808296204, 0.4589586853981018, -1.4893611669540405, -0.631040096282959, 0.020372826606035233, 0.25233790278434753, -0.22535307705402374, -0.5445088148117065, 0.3947119116783142, -0.37637344002723694, -0.6765846610069275, 0.811454176902771, 0.05655393749475479, -0.019875796511769295, -0.24960368871688843, -0.9574522376060486, 0.5287690162658691, 1.1900129318237305, 0.8554303050041199, -0.4628116190433502, -0.6131361126899719, -0.6697168350219727, 0.22492945194244385, -0.7614531517028809, 0.10059762746095657, -0.08492197841405869, 1.1404047012329102, 0.40728116035461426, -0.10826338827610016, -1.2006336450576782, -0.7215741872787476, 0.6557312607765198, 0.8660933375358582, 0.11092986911535263, -0.6150161623954773, 0.2200472503900528, -0.4131951630115509, -1.6152973175048828, -0.0955420583486557, -0.03166854754090309, -0.23335187137126923, 0.04048338159918785, -1.029517412185669, -0.2045360505580902, -0.33519577980041504, 0.18422307074069977, 1.247144103050232, 0.3069649934768677, 0.6516494750976562, -0.23541699349880219, -0.4183211028575897, 0.4620426595211029, 0.15681444108486176, 0.0744512602686882, -0.5424284934997559, 1.4075905084609985, 1.951968789100647, 0.44544678926467896, 0.055988967418670654, -0.3753860890865326, 0.40126273036003113, -1.239211916923523, 0.5891422629356384, -0.7471246719360352, -0.7557960748672485, -0.24260155856609344], [-0.27126455307006836, 1.4204055070877075, -2.7603707313537598, -0.36966609954833984, 0.5414079427719116, 0.03351988643407822, 1.692652940750122, 0.03581439331173897, -0.22874332964420319, 0.21712128818035126, -0.05097811669111252, 0.48426613211631775, 0.2174031138420105, 0.5981935858726501, 1.5388914346694946, -0.33359989523887634, 0.15311914682388306, -0.20723754167556763, 0.38429388403892517, 1.4741804599761963, -0.7704984545707703, 0.06913083046674728, -0.46214166283607483, -0.32232949137687683, -0.31556880474090576, 0.9643077254295349, -1.6776752471923828, -0.11883589625358582, -0.5521221160888672, -0.7024518251419067, 0.8199463486671448, -0.8020931482315063, -0.14043119549751282, -0.4513685405254364, -0.7012286186218262, 0.020664209499955177, 0.5495238304138184, 1.2859866619110107, 0.6303220391273499, 0.61555016040802, 2.3267695903778076, -0.9967770576477051, 0.06726692616939545, -1.5051751136779785, 0.11865076422691345, -0.5106910467147827, 0.41813188791275024, -0.29501011967658997, -0.002790156751871109, -0.2710152268409729, -0.41943955421447754, -1.7863657474517822, 0.3849347233772278, 0.8964595794677734, 1.0058112144470215, -0.22077339887619019, 0.4252074956893921, -0.2716616094112396, 0.012712767347693443, -0.1574619710445404, 0.6509988307952881, -0.23954465985298157, -0.47071418166160583, 0.0517975389957428, 0.47928789258003235, -0.24680151045322418, -0.22762365639209747, 0.16439567506313324, 0.40551644563674927, 0.33386534452438354, 0.2353050261735916, 0.3177803158760071, -0.8041877150535583, -0.06542894244194031, -1.483477234840393, 0.4837855398654938, 0.025836003944277763, 1.0758132934570312, -0.3753807842731476, 0.518731415271759, -0.40778258442878723, -0.7078405022621155, 1.32575261592865, -0.5520093441009521, 1.1831327676773071, -0.17704156041145325, -0.016124200075864792, -0.3602007329463959, 0.028276989236474037, 1.8050283193588257, 0.5672008395195007, 0.14143678545951843, 0.690170168876648, 0.43531787395477295, -0.056369658559560776, -0.2907167375087738, 0.08575654029846191, 0.5788667798042297, -0.9100755453109741, -0.9347471594810486, 0.2528732419013977, -0.6491098999977112, 0.34969258308410645, -0.21429158747196198, -0.5712910294532776, 0.9197987914085388, 0.10267935693264008, 0.028287487104535103, -0.24548043310642242, -0.3654136061668396, -0.2926460802555084, 0.2770884037017822, -0.44083172082901, -1.9569393396377563, -0.5688857436180115, 0.44806399941444397, 1.6847662925720215, -0.2536037266254425, -0.24053868651390076, 0.8318824768066406, 0.17300792038440704, -0.148685023188591, -0.09485914558172226, 0.44796890020370483, 0.6454876661300659, 0.4802975654602051, -0.8901417255401611, -0.07849922776222229, 0.28192800283432007, -0.19539833068847656, -0.5095685124397278, -0.35688698291778564, 0.15880484879016876, 0.6920173168182373, -0.5622599124908447, 1.795918583869934, -0.3595709502696991, -0.5178358554840088, -0.7759663462638855, 0.26543664932250977, 1.0183879137039185, 0.047449301928281784, -0.13118068873882294, -1.0461162328720093, -0.5209441184997559, -0.5706169605255127, 0.28753790259361267, -0.8707983493804932, -0.2741161286830902, 0.9894559979438782, -0.3113954961299896, 0.4797959625720978, -0.4353069067001343, 0.6757607460021973, 0.9097854495048523, -0.16856931149959564, 0.08594570308923721, 0.35504773259162903, 0.5997907519340515, 0.15501846373081207, 0.40545979142189026, 0.07538788765668869, -1.1955536603927612, 0.04935455694794655, 0.1710633933544159, -0.8562132120132446, 0.3616960644721985, 0.4709510803222656, 0.054893311113119125, 0.8718758821487427, -0.9126100540161133, -0.043774791061878204, -0.13846492767333984, 0.5903709530830383, -0.1716785430908203, -0.7806456089019775, 0.741488516330719, -0.31563061475753784, -0.797400176525116, -1.0365338325500488, 0.27671998739242554, -0.3424879312515259, 0.6107597947120667, -0.6533646583557129, 0.522609531879425, -0.9380077123641968, 0.6670300960540771, -0.415005087852478, -0.5538733601570129, -0.8956972360610962, -0.6721590757369995, -0.2782895267009735, -0.7442362308502197, 0.6529960036277771, -1.1617000102996826, -0.6777943968772888, 1.129896879196167, -1.0209929943084717, 0.002009933814406395, -0.21571916341781616, 0.7969874143600464, -0.6652524471282959, -0.2325042188167572, 0.3679841458797455, -0.2772694528102875, 1.6032063961029053, -0.9298760294914246, 0.5662550330162048, -0.8417209982872009, 0.1526896208524704, 1.1625198125839233, -0.47767403721809387, -0.3198876678943634, 0.8606266975402832, -0.43780848383903503, -1.2244023084640503, 0.06069481745362282, -0.08731678873300552, -0.12970784306526184, 0.18263213336467743, -0.1607947200536728, 0.20058715343475342, -0.05694277212023735, -0.11482272297143936, 0.46108174324035645, 0.283671110868454, -0.2492290884256363, -0.5042325258255005, -0.6175456047058105, -0.21794407069683075, -0.8297945857048035, -1.245564341545105, 0.8025570511817932, 0.4557262361049652, -1.3435674905776978, 0.45649272203445435, 0.9887036681175232, -0.24914363026618958, 0.4219983220100403, 0.6785964965820312, 0.5693473219871521, -0.09004176408052444, 0.42562252283096313, -0.08504383265972137, -0.5459009408950806, 0.017892936244606972, 0.09988132119178772, -0.7570430636405945, 0.316083163022995, 1.1627633571624756, 0.22069156169891357, -0.21309718489646912, 1.1699740886688232, 0.4255222976207733, 0.296448677778244, -0.6798222064971924, -0.3284243643283844, -0.07033555954694748, -0.21182632446289062, 1.7438055276870728, 0.7364798188209534, -0.7989477515220642, -0.06192167103290558, 0.017506234347820282, -0.4769977033138275, -0.147067129611969, -0.4197397828102112, 0.21065989136695862, -0.4244246780872345, 0.4738345146179199, 0.27708378434181213, 0.8733477592468262, -0.6105039119720459, 0.60333251953125, -0.0213046595454216, -0.45426517724990845, -0.1488744467496872, 0.4225967526435852, -0.0667470321059227, 0.4101427495479584, 0.00047632399946451187, -0.4024968445301056, -0.23264279961585999, 0.05961637943983078, 0.6727092266082764, 0.33681347966194153, 0.3838464319705963, 0.23625428974628448, 0.1363690197467804, -0.2730732262134552, 0.8361780047416687, 0.2660709321498871, 0.776251494884491, 0.6946286559104919, -0.029068723320961, 0.5656328201293945, 0.5289944410324097, -1.1228824853897095, -0.42975476384162903, 0.053147342056035995, 0.06342577189207077, 1.1447882652282715, 0.8521562814712524, 0.9264078736305237, -0.31515052914619446, 0.5470147132873535, -0.10229766368865967, -0.3664518892765045, -0.36560848355293274, -0.8477689027786255, -1.1408733129501343, -0.7154470086097717, -0.3315213918685913, -0.4215153157711029, -0.25712430477142334, 0.3895082175731659, -0.594157338142395, 0.9028972387313843, 0.8647986650466919, -0.08807799220085144, -0.4211714267730713, -0.7242050766944885, -0.3331477642059326, -1.0179535150527954, 0.41516831517219543, 0.4728906750679016, -0.7011956572532654, 0.18446224927902222, 0.27789780497550964, -0.3210132122039795, 0.2582368850708008, -0.27624037861824036, -0.016324343159794807, -0.8382138013839722, -0.4360851049423218, -0.27692073583602905, 1.5297493934631348, 0.13204948604106903, -0.8652481436729431, -0.1361900269985199, 0.3571113348007202, 0.6143853664398193, -0.14409036934375763, -1.0123958587646484, 0.5610866546630859, -0.5496764779090881, -0.5027148723602295, -0.07601764053106308, 0.8123314380645752, -0.35892799496650696, -0.5218298435211182, -0.747914731502533, -0.10581110417842865, -0.28066137433052063, -0.4786018431186676, -0.2420654594898224, 0.5250046253204346, 0.04618235304951668, -1.1720547676086426, -0.12303482741117477, 0.7510298490524292, -0.1376407891511917, -0.4825185537338257, -1.412491798400879, 0.8394222259521484, -0.15418867766857147, 0.8365978002548218, 0.49140486121177673, 0.6421894431114197, -0.02841970883309841, 0.5021249055862427, -0.3320807218551636, -0.13860945403575897, 1.2023006677627563, -0.05204376205801964, -0.5987045168876648, -0.9222835302352905, 0.01664857566356659, -0.6760254502296448, 0.06425673514604568, 0.18812155723571777, 0.6022211313247681, -0.5499002933502197, -0.5586665868759155, 0.627121090888977, -0.031169217079877853, 0.6681514978408813, -0.0926709845662117, -0.12762810289859772, 0.7786080837249756, -0.37584707140922546, -0.789384663105011, -0.3526287078857422, -0.023075861856341362, 0.11759160459041595, -1.5838099718093872, 0.5366274118423462, 0.05897674337029457, 0.930495023727417, 1.01810622215271, -0.6417051553726196, 0.35428622364997864, -0.11621145904064178, 0.5195083618164062, 0.6290633678436279, 0.08116994053125381, 0.24294275045394897, 0.44959187507629395, -0.18076889216899872, -0.4399684965610504, 0.09695112705230713, 1.2172842025756836, -0.4340626299381256, -0.27543404698371887, -0.3529658317565918, 0.7515922784805298, -0.2217165231704712, -0.2796873450279236, 0.08922267705202103, 0.7075269818305969, -0.44361910223960876, 0.5684765577316284, 0.18934597074985504, -0.346213698387146, 0.7762260437011719, 0.745755672454834, 0.5682329535484314, 0.4754563271999359, 0.06980326026678085, -0.39702659845352173, -0.12812180817127228, 0.06568611413240433, 0.1205650269985199, -0.3804091513156891, 0.07207480818033218, 1.1128534078598022, -0.7102223634719849, 0.1939305067062378, 0.33858388662338257, 0.6363641023635864, 0.49423256516456604, -0.6066510677337646, -0.283778578042984, 0.34522345662117004, 0.5210232734680176, 1.6609606742858887, 0.372791588306427, -0.45461589097976685, -1.7823692560195923, 0.1628509908914566, -0.7160527110099792, 0.047135595232248306, 1.3001892566680908, -0.3593718409538269, 1.2785028219223022, -1.307650089263916, 0.22199870645999908, 1.3301037549972534, 0.09425926208496094, 0.421454519033432, 1.1059832572937012, 0.3868049085140228, -0.6367665529251099, 0.3194023668766022, 0.3499726355075836, -0.2884792685508728, 0.15295836329460144, 0.19454464316368103, 0.09075167030096054, 0.8148500919342041, -0.9237508177757263, 0.7352838516235352, -0.8729771971702576, -0.3705766797065735, -0.6901242733001709, -0.26516276597976685, 0.4501054883003235, 0.2049088180065155, 0.36856263875961304, 0.6832677125930786, 0.5913445949554443, -1.2447212934494019, -0.04630863294005394, -0.4110715985298157, 0.16948367655277252, 0.02279573492705822, 0.7890438437461853, -0.16428743302822113, -0.48439592123031616, -0.30340349674224854, 0.18518538773059845, -0.3524016737937927, -0.6463712453842163, -0.4668451249599457, -1.0324530601501465, 0.27191752195358276, 0.3960629999637604, 1.0365239381790161, 0.7134268283843994, -0.5998398065567017, 0.7741789817810059, 0.11827684193849564, -0.9183720350265503, -0.5549936890602112, 0.059286631643772125, 0.2880789637565613, -0.20864379405975342, -1.4763327836990356, -0.11510305851697922, 0.9745237827301025, 0.319377064704895, 0.11508526653051376, 0.8811522126197815, 0.7181288599967957, 1.3590755462646484, -0.6296356320381165, -0.1394677460193634, 0.8564124703407288, -0.3093474507331848, 1.3504942655563354, 0.5070722103118896, -0.19764547049999237, 0.059893347322940826, -1.0650475025177002, -1.444607138633728, 0.6021900177001953, -0.4066622257232666, 0.12482031434774399, 0.4895642101764679, -0.12059850990772247, 0.611042857170105, 0.3063957989215851, -0.9195733070373535, -0.49776455760002136, -0.03146013990044594, -0.43931224942207336, -1.1820396184921265, 0.8209095597267151, -0.09206646680831909, 0.6165758967399597, -0.2977162301540375, -0.13888581097126007, -0.8989350199699402, 0.1265878826379776, 0.022636080160737038, 1.025710105895996, -0.6946129202842712, 0.4561437666416168, 0.2600007951259613, -0.0527879074215889, 0.49763503670692444, -0.24340789020061493, -1.048459768295288, 0.047011468559503555, 0.7070556879043579, 0.2768310308456421, -0.15746629238128662, 0.3016342222690582, 0.005043313838541508, -0.6100537776947021, -0.46570640802383423, 0.08599039167165756, 0.8005018830299377, 0.9001806378364563, 0.8507245182991028, 0.29207995533943176, -0.5411831140518188, -0.3823476731777191, 0.42451804876327515, 0.25075939297676086, 0.38520142436027527, -1.0615031719207764, 0.2607690393924713, 0.14193782210350037, -0.8448696136474609, -0.031806930899620056, -0.28781354427337646, -0.30844324827194214, -0.8342982530593872, -0.4939126670360565, -0.7160553336143494, 0.2367245852947235, 1.0245391130447388, -1.3166544437408447, 0.9821129441261292, -0.4398815929889679, -1.4628899097442627, 0.1582803577184677, 0.2398822009563446, -1.3651268482208252, 0.19186550378799438, -1.3754112720489502, 0.8676021099090576, -0.3930460512638092, -0.3207346796989441, -0.37814193964004517, 0.5945252180099487, -1.8638466596603394, -0.9755585789680481, -0.7708756923675537, 0.669083297252655, 1.3503437042236328, 0.7594147324562073, -1.3883472681045532, 1.434674620628357, 0.3779565393924713, 0.11288836598396301, -0.4413423538208008, 0.12475667893886566, -0.22781182825565338, 0.16037066280841827, 0.9723156690597534, 0.324931800365448, 0.6535016298294067, 1.2790610790252686, 0.1888750195503235, 0.8768635392189026, 0.013594633899629116, 0.59440016746521, -0.9314471483230591, -0.9278112053871155, -0.03318343684077263, 0.861765444278717, -0.9316214323043823, -0.47234994173049927, 0.30574190616607666, -0.4943076968193054, -0.9712410569190979, -0.04848531633615494, 0.37644147872924805, -0.37306854128837585, -0.1225656270980835, -1.0574506521224976, 0.6420949697494507, -0.8374655842781067, 0.6642728447914124, 0.3083961606025696, -0.8904512524604797, -0.6467820405960083, -0.12049861252307892, 0.1253897249698639, -1.3143340349197388, -0.06532050669193268, -0.028626691550016403, 0.027619579806923866, -0.4412342309951782, 0.5408290028572083, 1.5700711011886597, 0.8016554117202759, -0.5969220399856567, 1.542006254196167, 0.752296507358551, -0.15662986040115356, -0.2382466197013855, -0.2806839048862457, 0.5748267769813538, 0.3720749318599701, -0.1915232539176941, -0.2135384976863861, -0.29828837513923645, 1.408165454864502, 0.20670677721500397, -0.503291666507721, 0.11919137090444565, 0.24347037076950073, -0.893700897693634, 0.1967117041349411, 0.10577224940061569, -0.8563464879989624, 0.152522012591362, 1.780380368232727, 0.47618210315704346, -0.5013779997825623, -0.4463942050933838, 0.8119057416915894, 0.31148213148117065, 0.1351083666086197, 0.7727321982383728, 0.8948339819908142, -0.4451146423816681, 0.018981056287884712, 0.05489636957645416, 0.0640038475394249, 0.4362141191959381, -0.08778456598520279, -1.2392066717147827, -0.5215568542480469, -1.0184592008590698, -0.5166429877281189, 0.41215065121650696, -0.49672141671180725, -1.0207977294921875, 0.3354831337928772, 0.1471710056066513, -0.06930645555257797, -0.7972018718719482, 0.2841019332408905, 0.40230634808540344, -0.15274758636951447, 0.6903660297393799, -0.6875993609428406, 1.5580517053604126, -0.5996295809745789, 0.28477177023887634, -0.4840907156467438, 0.012800904922187328, 0.4819152057170868, -0.5452135801315308, -0.6739383935928345, -0.22940510511398315, 0.6878545880317688, -0.5415021777153015, -1.112756371498108, 0.39218559861183167, 0.2683112621307373, 0.059652648866176605, 0.00020960858091711998, -0.6262436509132385, 0.446638822555542, 0.37457898259162903, 0.7193835377693176, -0.5796803832054138, -0.26775121688842773, -0.5167453289031982, 0.25916406512260437, -0.6666073203086853, 0.8143843412399292, -0.4077480137348175, 0.35423582792282104, 0.5686460733413696, -0.8402832746505737, -0.03227962926030159, -0.4791136682033539, 0.2491896003484726, -0.6564251184463501, 0.3171997666358948, 0.29636821150779724, 0.526117205619812, -0.9023603200912476, -0.3669852614402771, -0.2485434114933014, 0.16665934026241302, -0.11067499220371246, 0.6892193555831909, -0.3030543327331543, 0.0553523413836956, 0.05646940693259239, -0.175713449716568, 0.30067694187164307, -0.26075488328933716, -0.24176020920276642, -0.51646488904953, -0.8164414167404175, -0.6566855907440186, -0.21253500878810883, 0.10517794638872147, -0.3643183708190918, 0.9144272208213806, 1.2625113725662231, -0.031270936131477356, 0.6138994693756104, -0.23353853821754456, 0.7937722206115723, -1.462949275970459, -0.2235020101070404, -0.5432735681533813, -0.8597092032432556, -0.6404229402542114], [-0.8019827008247375, 0.9743154644966125, -2.2075021266937256, -0.028578465804457664, 0.9990875124931335, 0.2641306519508362, 1.2024177312850952, -0.6109508872032166, 0.2760581374168396, -0.7076370716094971, -0.8062498569488525, 0.2986902892589569, -0.607317328453064, 0.5413205623626709, 0.9787155985832214, 0.8857557773590088, 0.9225494861602783, -0.589924693107605, 0.13310961425304413, 1.0708954334259033, -1.1182191371917725, -0.15512031316757202, 0.43735963106155396, -0.3449607789516449, -0.6615442037582397, 1.354965090751648, -0.6087889075279236, 0.2653282880783081, -0.9135334491729736, -1.4119267463684082, 0.4622279107570648, -0.22578561305999756, 0.2755205035209656, -0.15753701329231262, -1.7109572887420654, -0.14017263054847717, 1.4489061832427979, 1.087357759475708, 0.5184656977653503, 0.7351152300834656, 2.140727996826172, -0.8457217812538147, -0.05869869515299797, -2.273624897003174, 0.2857450842857361, -0.48869800567626953, 0.8951323628425598, -0.6511756777763367, -0.3082476854324341, -0.17298227548599243, 0.10471627116203308, -1.2533674240112305, 0.43408888578414917, 1.188018560409546, 1.1631414890289307, -0.8445369005203247, 0.4705062806606293, 0.4634610414505005, 0.17432639002799988, -0.37203341722488403, 1.2815951108932495, 0.06885372847318649, -0.7206107974052429, 0.9010832905769348, -0.16258394718170166, -0.8310947418212891, -0.16413195431232452, 0.06318922340869904, -0.17671555280685425, -0.3765411972999573, 0.1006968766450882, 0.6472324132919312, -0.995861291885376, 0.3341163396835327, -0.4921479821205139, 0.32036635279655457, 0.6288520097732544, 0.6717317700386047, 0.7077248692512512, -0.12771886587142944, -0.6396396160125732, -0.010351755656301975, 1.0747041702270508, -1.3487024307250977, 0.2297263741493225, 0.3435591757297516, 0.5082234144210815, -0.6817061305046082, -0.40442293882369995, 1.02720308303833, 0.3729609251022339, -0.008477002382278442, 0.6117235422134399, -0.10573485493659973, -0.11448953300714493, -0.39113450050354004, 0.38525861501693726, -0.9220936894416809, -0.48259401321411133, -1.1922502517700195, -0.37283238768577576, -0.7518835067749023, 1.141127109527588, 0.3258724808692932, -0.7645424604415894, 1.107706904411316, 0.08573387563228607, -0.3299536406993866, -0.24743425846099854, 0.38750869035720825, -0.02945059724152088, 0.10430101305246353, -0.6105360388755798, -1.5841889381408691, -0.9655799269676208, 0.40075284242630005, 1.2735415697097778, -0.2920615077018738, 0.5676789283752441, 0.6685730218887329, 0.1730315238237381, -0.017902661114931107, 0.09442701935768127, 0.8350534439086914, 0.6061978340148926, 0.30517852306365967, -0.9023731350898743, -0.2579834461212158, -0.1741713136434555, -0.1897912323474884, 0.47407999634742737, -0.5563366413116455, -0.29250338673591614, 1.6558055877685547, -1.3504835367202759, 1.0280488729476929, -0.5059735178947449, -0.8510023355484009, 0.17770671844482422, -0.15770359337329865, 1.0996826887130737, -0.25149938464164734, -0.12093982845544815, -1.0344502925872803, -0.31465381383895874, -0.4671645760536194, 0.4592282772064209, -0.45306551456451416, -0.771796703338623, 0.48622503876686096, -0.5317003130912781, 0.9179229140281677, -0.2723086178302765, 0.9246535301208496, 0.9868535399436951, -0.5328015685081482, 0.06285718083381653, 0.5418053269386292, 0.6106125712394714, -0.1029515489935875, 1.0571383237838745, -0.5429098606109619, -0.809411346912384, 0.19452890753746033, 0.9296225905418396, -0.07920002937316895, 0.5929285883903503, 1.1456302404403687, -0.24951446056365967, 1.227138876914978, -0.7163388133049011, -1.0012495517730713, -1.166683554649353, 0.10315848141908646, 0.3457266390323639, 0.010637743398547173, 1.086449384689331, -0.3372516930103302, -1.6693795919418335, -1.5268875360488892, 0.3417929708957672, -0.45155027508735657, 0.605817437171936, -0.6482391357421875, 0.8376612663269043, -0.7687758207321167, 0.19890187680721283, -0.43624749779701233, -0.09567652642726898, -1.3023474216461182, -1.050880789756775, -0.08045191317796707, -1.0419940948486328, 0.4528643488883972, -0.5055195689201355, -0.6218897700309753, 0.34446361660957336, -1.3187063932418823, -0.6512091755867004, -0.2238391935825348, -0.3487032353878021, -0.8353832960128784, -0.2954736053943634, 0.34984290599823, -0.12218590080738068, 1.113106608390808, -0.7421488165855408, 0.9631614089012146, -0.682835578918457, -0.706174373626709, 0.7131264805793762, -0.2681240439414978, -0.7320677042007446, 0.741270124912262, 0.28246939182281494, -1.585548996925354, 0.2417972832918167, 0.18124879896640778, -0.2293952852487564, 0.45424044132232666, 0.33700013160705566, 0.03164143115282059, 0.5235534906387329, 0.0654950812458992, 0.31050965189933777, -0.28586098551750183, -0.5830197930335999, -0.9550859332084656, -0.43471774458885193, -0.22305765748023987, -0.846778154373169, -1.0658328533172607, 0.5080899596214294, 0.5840310454368591, -1.344727635383606, -0.16269727051258087, -0.1397857815027237, 0.4029427468776703, -0.04484591633081436, 1.3040541410446167, 0.2492377907037735, 0.5178385972976685, -0.07754268497228622, -0.14157018065452576, -0.5143257975578308, 0.669270932674408, 0.2720627188682556, -0.05008350685238838, 0.2891063690185547, 0.45160073041915894, 0.7465627789497375, -0.12255477905273438, 0.44770440459251404, 0.18732589483261108, -0.186721533536911, -1.2487149238586426, -1.0635323524475098, -0.3417397439479828, -0.4489329159259796, 1.6690375804901123, 0.860916793346405, -0.9995710849761963, -0.11556706577539444, 0.037443626672029495, -0.3928033113479614, -0.44889014959335327, -0.27726462483406067, 0.5816503167152405, 0.2412804216146469, 0.02156645432114601, -0.14959576725959778, 0.9369211792945862, -1.0700242519378662, 0.8331969380378723, -0.5848195552825928, 0.09751537442207336, 0.06918856501579285, -0.05832681059837341, 0.1453053057193756, 1.0989047288894653, 1.0016039609909058, -1.3414486646652222, -0.4067192077636719, -0.11880069226026535, 1.1129885911941528, 0.18423190712928772, 0.26665419340133667, 0.1446211040019989, 0.9592989683151245, -1.104137659072876, 1.0190855264663696, 0.04270823672413826, 0.2660721242427826, 0.712179958820343, -0.006513659842312336, 0.5078089237213135, 1.1527047157287598, -0.7675036191940308, -0.8777860999107361, 0.34201180934906006, 0.33318328857421875, 1.9298638105392456, 1.1105015277862549, 0.8437707424163818, 0.21459552645683289, 0.16583463549613953, -0.7483751177787781, -0.7446078062057495, -0.9321795701980591, -0.6204695105552673, -1.1717183589935303, -0.5338450074195862, -0.27021366357803345, 0.03193146362900734, 0.4895222783088684, 0.7775918841362, -0.40604057908058167, 0.37521177530288696, 0.977807879447937, -0.27695825695991516, -0.30080702900886536, 0.28295254707336426, 0.29732656478881836, -0.8036602139472961, 0.5392928123474121, 1.7714929580688477, -0.9319128394126892, 0.252203106880188, -0.03541933000087738, 0.146175354719162, 0.4424915909767151, -0.47982728481292725, 0.957507848739624, -1.4140743017196655, -1.0181868076324463, 0.05959934741258621, 1.3358420133590698, -0.016421958804130554, -0.1320848912000656, -0.24678966403007507, 0.17020376026630402, 0.7112590670585632, 0.16359718143939972, -0.580790638923645, 0.9973020553588867, -0.16449280083179474, -0.9244052767753601, 0.3772658109664917, 0.26318368315696716, -0.026120830327272415, -0.30464494228363037, -1.0998413562774658, -0.15453875064849854, -0.21423405408859253, -0.49818235635757446, -0.3071652948856354, 0.6947267055511475, 0.6907126307487488, -0.4683656096458435, 0.013350787572562695, 0.6072819828987122, 0.17729708552360535, 0.4344325661659241, -1.1164638996124268, 0.7153119444847107, 0.8314102292060852, 1.572134256362915, 0.1862807273864746, 0.4672446548938751, 0.015209341421723366, 0.5532901883125305, -0.40796199440956116, -0.01962488703429699, 1.2236324548721313, 0.18245172500610352, 0.18636544048786163, -0.22296938300132751, -0.14394612610340118, 0.04838304966688156, -0.09594597667455673, -0.3711492419242859, 0.3862607479095459, -0.9196776747703552, -0.36270323395729065, 1.287343978881836, 0.5529049634933472, 0.4319341778755188, 0.07585279643535614, -0.2955819368362427, 0.7391226887702942, -0.6140038371086121, -0.6392098069190979, -0.42662283778190613, 0.12533046305179596, 0.2363526076078415, -1.2164148092269897, -0.47898632287979126, 0.26666754484176636, 1.3130385875701904, 1.1980416774749756, -0.47268426418304443, 0.06842553615570068, -0.5998653173446655, 0.24439691007137299, 0.5460701584815979, -0.32235875725746155, -0.01688789762556553, 0.8131734132766724, -0.2554316818714142, 0.05203985795378685, 0.04423893615603447, 1.1492754220962524, -0.2285158485174179, 0.41473388671875, 0.6917587518692017, 0.014836065471172333, -0.8312917351722717, -0.2471173107624054, -0.5670231580734253, 0.5790186524391174, -0.8046207427978516, 0.05533215031027794, 0.07681267708539963, -0.4531422257423401, 1.4293383359909058, 0.010042737238109112, 0.49345871806144714, 0.2375609427690506, -0.2911008596420288, -0.5111119747161865, 0.13041049242019653, 0.30379989743232727, -0.2132926732301712, -1.5306756496429443, -0.16714243590831757, 0.5379838943481445, -0.3282974660396576, 0.09475039690732956, -0.04856628552079201, 0.939685046672821, 0.07461889833211899, 0.033330753445625305, 0.2372380942106247, 0.4738108217716217, 0.6836277842521667, 1.3302345275878906, 0.5515140891075134, -0.5154459476470947, -0.7592255473136902, 0.7405930161476135, -0.6478022933006287, 0.3543834388256073, 0.2255915105342865, -0.13945965468883514, 1.7554720640182495, -1.503860354423523, 0.16301323473453522, 0.6215848326683044, 0.4427048861980438, 0.23921950161457062, 0.7027128338813782, -0.18228483200073242, -0.37078458070755005, -0.10763324052095413, 0.0744081512093544, 0.25413239002227783, 0.35957950353622437, 0.564611554145813, -0.25346025824546814, 0.23894020915031433, -1.3168877363204956, 0.25324225425720215, -0.5151736736297607, -0.7594373226165771, -0.6754105091094971, -0.7104495167732239, -0.004042758606374264, 0.22793026268482208, 0.48786476254463196, 1.2161586284637451, 0.31127285957336426, -0.6211538910865784, 0.34554529190063477, -0.39162322878837585, 0.6643675565719604, -0.6823351383209229, -0.3856814205646515, -0.22999362647533417, 0.0656554326415062, -0.03495023027062416, -0.054739370942115784, -0.5767207741737366, -0.6439195275306702, -0.636308491230011, -2.03709077835083, 0.9733012914657593, 0.9099656939506531, 0.667296826839447, 0.4903648793697357, -0.20340596139431, 0.7456239461898804, -0.26921963691711426, -0.8514253497123718, -0.5270469784736633, -0.5134000182151794, -0.20127859711647034, 0.31009748578071594, -1.4064053297042847, -0.12923043966293335, 0.2808014452457428, 0.39545097947120667, -0.10530965775251389, 0.8119879364967346, 1.0715564489364624, 1.1009563207626343, -0.3306947946548462, -0.14292556047439575, -0.146733358502388, -0.531035304069519, 0.4670233428478241, 0.3521570861339569, -0.6420719027519226, 0.2769503891468048, -0.454988032579422, -1.145504117012024, 1.0780457258224487, -0.4442288279533386, -0.5461680293083191, 1.1015301942825317, 0.6556354761123657, 0.5622009634971619, 0.7923576831817627, -1.0209966897964478, 0.1841762512922287, 0.12050668150186539, -0.9253551363945007, -1.1530277729034424, 1.2750059366226196, 0.0769883394241333, 0.5165188312530518, 0.06148192659020424, -0.01687551662325859, -0.19482053816318512, 0.31044700741767883, 0.08230364322662354, 0.6906914710998535, 0.028340518474578857, 0.6372569799423218, 0.2077210545539856, 0.43509194254875183, 0.5202748775482178, -0.5891191363334656, -0.44048041105270386, 0.15794363617897034, 1.3497345447540283, -0.0512659065425396, 0.33935773372650146, 0.2258719801902771, -0.4463346302509308, -0.17901571094989777, -0.9334701299667358, -0.021039459854364395, 0.42223772406578064, 0.6355031728744507, 0.6111672520637512, -0.6716721057891846, -1.1000337600708008, 0.09675414860248566, -0.6132067441940308, 0.6068689823150635, 0.6745946407318115, -1.1582971811294556, -0.017490610480308533, 0.5184943079948425, -0.7748467326164246, -0.2858332395553589, -0.6686301231384277, -0.3282543122768402, -1.0640114545822144, -0.7015103697776794, -0.9376943707466125, -0.1845022588968277, 0.5190024971961975, -1.0593430995941162, 1.0351216793060303, 0.4654653072357178, -1.617812156677246, 1.0016365051269531, -0.047026608139276505, -1.4802781343460083, 0.3195923864841461, -1.8990559577941895, 1.1424305438995361, 0.10390472412109375, 0.2388329803943634, 0.1468946635723114, 0.41918089985847473, -1.6168744564056396, -0.9508799910545349, -0.9692357778549194, 0.3448270559310913, 0.4860619902610779, 0.7193048596382141, -0.4272352457046509, 1.5116688013076782, 0.5560277104377747, -0.7502591609954834, -0.4045327305793762, -0.20252752304077148, -0.7632628679275513, 0.28436723351478577, 0.3157872259616852, 1.1176427602767944, 0.6222032904624939, 1.4692118167877197, 0.8651991486549377, 0.8409126400947571, 0.42453452944755554, 0.7339817881584167, -0.9463143348693848, -0.6495490670204163, -0.5047256350517273, 1.2564301490783691, -0.4111640453338623, -0.895751953125, 0.25170615315437317, -0.6608355641365051, -1.8008602857589722, 0.31392350792884827, 0.9546137452125549, -0.2053345888853073, 0.6829691529273987, -0.4815428853034973, 0.24824611842632294, -1.1611735820770264, 0.33518314361572266, 0.5811808705329895, -0.8082814812660217, -0.14067742228507996, 0.11932896077632904, -0.03226717934012413, -0.9767940044403076, 0.2387133240699768, 0.3268294334411621, -0.3132307231426239, -0.32348495721817017, 0.3407749831676483, 0.4086265563964844, 0.4506916105747223, 0.07949689030647278, 1.330276608467102, 0.6343831419944763, -0.7034854888916016, 0.5318670868873596, 0.2475198656320572, -0.205611452460289, 0.14801035821437836, -0.24300312995910645, -0.8696665167808533, -0.45165497064590454, 1.488570213317871, -0.10507810860872269, -0.32803410291671753, -0.14471600949764252, -0.2050849348306656, -0.3161359131336212, 0.34089890122413635, 0.41980981826782227, -0.9204694628715515, -0.544815719127655, 0.8297111392021179, 0.04657980427145958, -0.34615498781204224, -0.16347333788871765, 0.2004002183675766, 0.29141199588775635, -0.27174073457717896, 0.22816787660121918, 0.0332970954477787, -0.4055551290512085, 0.47067248821258545, 0.3551028370857239, 0.21417930722236633, 0.3179836869239807, -0.27788928151130676, -0.9454463720321655, 0.048752300441265106, -0.30562064051628113, -0.8669061064720154, 1.2886582612991333, -1.2745252847671509, -0.5359254479408264, 0.056770455092191696, 0.19769635796546936, -0.08188741654157639, -0.6904200911521912, -0.01967700943350792, 0.2231205254793167, 0.212629035115242, 1.05434250831604, -0.32150301337242126, 1.2965062856674194, 0.0915256142616272, 0.3595641851425171, -0.8363024592399597, -0.6194124817848206, -0.20769251883029938, -0.5257285833358765, 0.24816814064979553, -0.13311371207237244, 1.1385260820388794, -0.44570985436439514, -1.0867449045181274, 0.2737440764904022, 0.032067444175481796, 0.22966979444026947, 0.015483030118048191, -0.4107957184314728, 1.0697647333145142, 0.5857301354408264, 0.7466635704040527, -0.2622047960758209, -0.9297716021537781, -0.6114742755889893, 0.6694255471229553, -0.24610033631324768, 0.5522996783256531, 0.44477683305740356, 1.0034269094467163, 0.11686000227928162, -0.670767605304718, -0.9050326943397522, -0.7811062932014465, 0.17287372052669525, -0.23404568433761597, 0.17989806830883026, -0.20566734671592712, 0.4463947117328644, -0.4769253432750702, -1.0495810508728027, -0.004278769250959158, -0.044803086668252945, -0.1974366009235382, 0.5103561282157898, -1.2707370519638062, -0.38392141461372375, -0.290556937456131, -0.14754395186901093, 0.48812681436538696, 0.14568760991096497, -0.09268724173307419, 0.0648367777466774, -1.1418228149414062, 0.10900641977787018, -0.15877699851989746, -0.6400717496871948, -0.34160465002059937, 1.1621359586715698, 1.494280219078064, 0.11294209212064743, 0.2873084843158722, -0.4453684985637665, 0.02384364604949951, -0.5670598745346069, -0.24357599020004272, -0.3472077250480652, -0.28211846947669983, -0.731734037399292], [0.08484591543674469, 1.2842211723327637, -2.494459629058838, -0.2691342234611511, 0.9593008160591125, 1.2141339778900146, 0.7783145904541016, -0.5220248699188232, 0.021248307079076767, 0.07612653076648712, 0.11341968923807144, 0.02889540046453476, -0.18276584148406982, 0.5891174077987671, 0.950560986995697, 0.2973381280899048, 0.17736689746379852, -0.44735851883888245, 0.2789739966392517, 1.0250556468963623, -0.9275785684585571, -0.3783005475997925, -0.13244923949241638, -0.4177771806716919, 0.25006142258644104, 1.2028560638427734, -1.2439424991607666, -1.1726075410842896, -0.7825995683670044, -1.3455228805541992, 0.30218958854675293, -0.33016088604927063, -0.33578526973724365, -0.10138016939163208, -0.5414050817489624, 0.4768359065055847, 1.8972136974334717, 1.439081072807312, 1.006560206413269, 0.26607760787010193, 1.237649917602539, 0.018603308126330376, -0.13622966408729553, -1.2509666681289673, 0.21513113379478455, -0.3609869182109833, 0.48635441064834595, -0.7471303939819336, 0.12280309945344925, -0.30147650837898254, -0.7897576689720154, -1.4674725532531738, 0.14912067353725433, 0.8945763111114502, 1.1572859287261963, -0.5345830321311951, 0.16209076344966888, -0.30763956904411316, -0.29156693816185, -0.3836714029312134, 1.0281952619552612, -0.4035995602607727, -0.7464798092842102, 0.2952176630496979, 0.6352226734161377, 0.15556536614894867, 0.08958017826080322, 0.31905749440193176, -0.37885764241218567, 0.36830785870552063, 0.3299153745174408, -0.6709699630737305, -1.431721806526184, 0.7465857267379761, -0.8715623021125793, 0.5227574706077576, 0.3802630305290222, 0.948173463344574, 0.5879651308059692, 0.12010469287633896, -0.5345442891120911, -0.43689894676208496, 1.0310521125793457, -0.7578297853469849, -0.05990251898765564, -0.4426286518573761, 0.4421524107456207, -0.7587203979492188, -0.3422497510910034, 1.2903246879577637, 0.30167293548583984, 0.10481584072113037, 0.8616603016853333, 0.5148077607154846, -0.6045802235603333, -0.6153099536895752, 0.4887995719909668, -0.8593137860298157, -1.0721335411071777, -0.5278564095497131, 0.07008287310600281, -0.41787052154541016, 0.1614082157611847, 0.4405909776687622, 0.022701648995280266, 1.0441850423812866, 0.043701887130737305, 0.5362867712974548, -0.5965408682823181, -0.22052563726902008, -0.3956857919692993, -0.23935361206531525, 0.07067867368459702, -1.3077858686447144, -0.9550707340240479, 0.9531475305557251, 1.6880757808685303, -0.8053274154663086, 0.037095099687576294, 0.7856905460357666, 0.5234237313270569, -0.07968904823064804, -0.010853677988052368, 0.45691347122192383, 0.4161968231201172, 0.3029623329639435, -0.6710888147354126, -0.522325873374939, -0.3742397427558899, -0.2600652873516083, 0.47846654057502747, -0.36039066314697266, -0.3143256902694702, 0.8163131475448608, -0.889198362827301, 1.5522509813308716, -0.33268290758132935, -0.4798716604709625, -0.026347361505031586, -0.6993075013160706, 1.2472944259643555, 0.2083931714296341, -0.19966824352741241, -0.14993588626384735, 0.05247659608721733, -0.7543225288391113, 0.1615164875984192, -0.5139707326889038, -0.5009496212005615, 0.7166621685028076, -0.5781282782554626, 0.07365654408931732, -0.008614779449999332, -0.07920940965414047, 0.1406545788049698, -0.250074177980423, -0.205937460064888, 0.5536534786224365, 0.5546920895576477, 0.2572650611400604, 0.03255658224225044, 0.23352159559726715, -0.5762606263160706, 0.22087323665618896, 0.7335876226425171, 0.13124002516269684, 0.31530964374542236, 0.8650510907173157, 0.1321762204170227, 1.0427041053771973, -0.12891429662704468, -0.5666846036911011, -0.37188848853111267, 0.10302519053220749, 0.669076681137085, -1.4537129402160645, 0.37253960967063904, -0.061436258256435394, -1.7218440771102905, -1.085540771484375, -0.16367974877357483, -0.22219006717205048, 1.329970121383667, -0.4699634909629822, 0.387205570936203, -0.17010022699832916, 0.44901418685913086, -0.15654730796813965, -1.0566009283065796, -0.3704603612422943, 0.05431296303868294, -0.11836744844913483, -0.6715295910835266, 0.31395354866981506, -0.031010881066322327, -0.9897634983062744, 0.37346139550209045, -0.7773704528808594, -0.24147875607013702, -0.06883547455072403, -0.018254615366458893, -0.7155044078826904, -0.243900865316391, 0.18326707184314728, -0.10441986471414566, 0.7463312149047852, -1.0671236515045166, 1.2351502180099487, -0.6519340872764587, -0.6637689471244812, 0.8254866600036621, -0.40859875082969666, -0.5457264184951782, 0.8019570112228394, 0.32679957151412964, -1.5803440809249878, -0.06008388474583626, -0.22509433329105377, -0.164274200797081, 0.08724185824394226, -0.11131518334150314, -0.15670894086360931, -0.2886231243610382, -0.1577857881784439, 0.4002092778682709, -0.24654419720172882, -0.8691716194152832, -0.8106399774551392, -0.7940598130226135, -0.010969837196171284, -0.9972960948944092, -0.9095321297645569, 0.8797190189361572, -0.033016543835401535, -1.5135321617126465, 0.0628143697977066, 0.467866450548172, 0.5456992387771606, 0.6546130180358887, 1.60109281539917, -0.10298088192939758, 0.9211203455924988, -0.26928961277008057, -0.018937990069389343, -0.5994541049003601, 0.7200838327407837, 0.16406115889549255, -0.7953217625617981, 0.0410524383187294, 0.856556236743927, 0.7015681266784668, 0.1438131481409073, 0.5621694922447205, -0.16529616713523865, -0.08235413581132889, -0.7200087904930115, -1.0964714288711548, 0.06679932028055191, 0.649075448513031, 0.7247114181518555, 0.4289212226867676, -1.5534279346466064, -0.44845038652420044, 0.5655837059020996, -0.06889133155345917, 0.4022162854671478, -0.24805235862731934, 0.20642368495464325, 0.13530884683132172, 0.04154564067721367, 0.41486674547195435, 1.2693727016448975, -0.6874966621398926, 0.981046736240387, -0.8628870844841003, -0.47333410382270813, -0.49482136964797974, 0.8702101707458496, 0.01311141811311245, 0.4330698847770691, 0.4923170208930969, -0.8941515684127808, -0.20699895918369293, 0.5302190780639648, 0.6109899282455444, 0.009226332418620586, 0.7580736875534058, -0.23355048894882202, 0.9228174090385437, -0.7304187417030334, 0.9938952922821045, -0.3617190718650818, 0.02564634196460247, -0.17825642228126526, 0.3803556263446808, 0.7006912231445312, 1.513051152229309, -1.103951096534729, -0.4440615177154541, -0.39486491680145264, -0.16520267724990845, 1.237261176109314, 1.1847862005233765, 0.7878984212875366, -0.6555969715118408, 0.3608376979827881, -0.6661738753318787, -0.19457487761974335, -0.8436225056648254, -1.3875374794006348, -0.47864094376564026, -0.5062037110328674, -0.42451128363609314, 0.0011947827879339457, -0.1507614701986313, 0.21797019243240356, -0.3386210501194, 0.26633864641189575, 1.5834771394729614, -0.6266242265701294, -0.9112092852592468, -0.5452261567115784, -0.2791019678115845, -0.5521489977836609, 0.3930237293243408, 0.9919561743736267, -0.7924339175224304, 0.17746689915657043, -0.032334621995687485, -0.5201061367988586, 0.5455291271209717, 0.02580714412033558, 0.6439666748046875, -0.7115560173988342, -0.700295090675354, -0.20819193124771118, 1.1750164031982422, 0.14489276707172394, -0.27957892417907715, -0.2427854984998703, 0.39593204855918884, 0.14242613315582275, 0.06957735866308212, -0.7798209190368652, 1.0827209949493408, -0.05642165616154671, -0.8426474928855896, -0.263663649559021, 0.3842943012714386, 0.2230464071035385, 0.19883054494857788, -0.6790328025817871, -0.420188844203949, -0.5028152465820312, -0.45776277780532837, 0.16610831022262573, 0.22611364722251892, 1.1032618284225464, -0.39656317234039307, 0.05170450732111931, 0.5935680866241455, 0.07592660933732986, -0.007148976903408766, -0.6739994883537292, 0.39213594794273376, 0.4821990132331848, 1.1846998929977417, 0.340563029050827, 0.025738302618265152, 0.2629505395889282, 0.6476413607597351, 0.12189171463251114, 0.44596657156944275, 0.9195007681846619, -0.9282143712043762, 0.07256536185741425, -0.4303100109100342, 0.034165158867836, -0.805759072303772, -0.6814628839492798, -0.056913506239652634, 0.2700594365596771, -0.814401388168335, -0.35453715920448303, 0.7056794762611389, 0.4747234582901001, -0.497875452041626, -0.2903204560279846, -0.07505383342504501, 0.8176716566085815, -0.7393743991851807, -0.17013342678546906, -0.2977040708065033, 0.4476276934146881, 0.5161526203155518, -1.162629246711731, -0.1501840502023697, 0.27489733695983887, 0.5623542666435242, 1.2152187824249268, -1.115877628326416, 0.48488470911979675, -0.5980656743049622, 0.3901216983795166, 0.2331290990114212, -0.1362052708864212, 0.5018176436424255, 0.15961509943008423, 0.3189760744571686, 0.018314247950911522, 0.05712315812706947, 1.4311901330947876, 0.11690220981836319, 0.14035287499427795, -0.10669397562742233, 0.8914021253585815, -0.5219104886054993, -0.786168098449707, -0.37730324268341064, 0.39227989315986633, -0.632092297077179, -0.4606952965259552, 0.32780921459198, -0.07452789694070816, 1.1879183053970337, 0.784673273563385, 0.29396697878837585, 0.24579742550849915, -0.05354286730289459, -0.5389156341552734, 0.04935133084654808, 0.30007004737854004, -0.010990816168487072, -0.16603276133537292, -0.0659225583076477, 0.6433892846107483, -0.2522028386592865, 0.6890368461608887, 0.40833500027656555, 1.034483790397644, 0.23887406289577484, -0.06665133684873581, -0.2740463614463806, 0.6866297721862793, 0.9711664915084839, 1.5602811574935913, 0.28037697076797485, 0.12166925519704819, -1.1871223449707031, 0.3459859788417816, -0.3354529142379761, -0.27984315156936646, 0.42641547322273254, 0.0007972493767738342, 1.5519205331802368, -1.4436099529266357, -0.06609170138835907, 0.19420666992664337, 0.426372766494751, -0.007847925648093224, 0.8500118851661682, -0.5812446475028992, -0.009761905297636986, 0.24376994371414185, -0.2583059072494507, 0.11976943910121918, -0.1695394217967987, 0.4953271150588989, -0.006542072165757418, 0.899644672870636, -0.5956284403800964, 0.5989153981208801, -0.7064102292060852, -0.7776830196380615, -0.3503226339817047, -0.8314910531044006, -0.2551209330558777, 0.13207587599754333, 0.6712126135826111, 1.7050362825393677, 0.15192465484142303, -0.5661252737045288, -0.046907585114240646, -0.4371681809425354, 0.3734215497970581, -0.2933844029903412, -0.3698378801345825, -0.5460379719734192, -0.1483805924654007, -0.16807305812835693, 0.3549923896789551, -0.17826628684997559, -0.038002029061317444, -0.7022074460983276, -1.3568195104599, 0.0945175513625145, 0.541555643081665, 0.3482082784175873, 0.8169766068458557, -0.009113557636737823, 0.1104743555188179, 0.27979639172554016, -0.4709312319755554, 0.11178740113973618, 0.037421099841594696, 0.3980160355567932, 0.23010459542274475, -1.4839030504226685, -0.5529663562774658, 0.2730030417442322, -0.1448298990726471, -0.02675006352365017, 0.7810764908790588, 1.17344331741333, 0.5211297273635864, -0.43377721309661865, 0.05139917507767677, 0.157226100564003, -0.21263860166072845, 0.9126852750778198, 0.7221047282218933, -0.1824726015329361, -0.4442261755466461, -1.2360830307006836, -1.4802486896514893, 0.9627384543418884, -0.0503135584294796, -0.7547140121459961, 1.5778591632843018, 0.3826814293861389, 0.7041429281234741, 0.059035610407590866, -0.5454168319702148, 0.09911453723907471, -0.16825202107429504, -0.3171272873878479, -1.2789864540100098, 0.7871647477149963, 0.6732358336448669, 0.6803474426269531, 0.3232208788394928, -0.04241809993982315, -0.1417820155620575, 0.18872897326946259, 0.22673490643501282, 1.4284907579421997, -0.6459603309631348, 0.17955735325813293, 0.2099779099225998, -0.19693250954151154, 0.7140327095985413, -0.13310199975967407, -0.5079852938652039, 0.20753540098667145, 0.7829439043998718, 0.19649384915828705, -0.09520062059164047, 0.020465858280658722, -0.07354031503200531, -0.5629777908325195, -0.5730356574058533, -0.008313235826790333, 0.9729868769645691, 0.4762756824493408, 0.26434651017189026, 0.07747100293636322, -0.21043069660663605, -0.05286724865436554, -0.7495898604393005, 0.7623738646507263, 0.48087000846862793, -0.3983779847621918, 0.04682216793298721, 0.28018367290496826, -1.2079927921295166, -0.956291139125824, -0.4400613307952881, 0.3382505178451538, -0.8432482481002808, -1.6533350944519043, -0.7899289727210999, -0.18905717134475708, 0.4076089859008789, -0.8869134783744812, 0.5575443506240845, -0.3039718270301819, -1.2662150859832764, 0.17525705695152283, 0.3412703275680542, -0.7745327353477478, 0.25894466042518616, -0.7881542444229126, -0.07343726605176926, -0.582925021648407, 0.4494935870170593, -1.154579758644104, 0.7011473774909973, -1.5639370679855347, -1.209478497505188, -1.3315622806549072, 0.3009575605392456, 0.9644855260848999, 0.24853752553462982, -0.603799045085907, 1.5124434232711792, 0.4970555305480957, -0.3313324749469757, -0.5359607934951782, -0.07630682736635208, -0.028725825250148773, -0.049069248139858246, 0.5036378502845764, 0.5058780908584595, 0.7643629908561707, 0.9561337232589722, 0.02290951833128929, 1.0171328783035278, 0.6137397885322571, 0.4236975312232971, -0.40602901577949524, -0.5689487457275391, -0.22009781002998352, 1.0317974090576172, -0.3788023591041565, -0.22809530794620514, -0.005665362812578678, 0.20288333296775818, -0.8250561952590942, -0.39988139271736145, 0.3749147057533264, -0.9875345826148987, 0.5371367931365967, -0.21998843550682068, 0.23491516709327698, -0.4753800928592682, 0.29041752219200134, 0.19153590500354767, -0.5797234773635864, -0.08984237164258957, 0.4234268367290497, -0.22405946254730225, -1.3050442934036255, 0.2641696035861969, -0.068532295525074, -0.4825526773929596, -0.5252108573913574, 0.69163578748703, 1.0657672882080078, 0.6850220561027527, -0.31418755650520325, 1.4720808267593384, 0.2971321940422058, -0.10289453715085983, 0.48548629879951477, 0.06141261011362076, -0.5435647964477539, 0.8803815245628357, -0.23146329820156097, 0.27490660548210144, -0.5240135788917542, 1.1990222930908203, 0.04451162740588188, -0.3140391409397125, 0.23535549640655518, -0.4521178901195526, -0.586578369140625, 0.40201640129089355, 0.8359195590019226, -0.49010318517684937, 0.1099119484424591, 1.2552212476730347, 0.4591604173183441, -0.5713229179382324, -0.01857384853065014, 0.3559000790119171, 0.24861939251422882, -0.5482276082038879, 0.05959112569689751, 0.11492806673049927, -0.14746426045894623, 0.25786370038986206, 0.030681656673550606, 0.4766919016838074, 0.03862164914608002, -0.6765028238296509, -0.5003224015235901, 0.4769383370876312, -0.23033829033374786, -0.16030949354171753, 0.9297885894775391, -1.4735727310180664, -1.5149717330932617, -0.059455808252096176, -0.17277157306671143, -0.9472618103027344, 0.03652218356728554, 0.2705731987953186, 0.2766996920108795, -0.056037258356809616, 0.1315620094537735, -0.2042907029390335, 0.6589800119400024, -0.4798089563846588, 0.0008546656463295221, -0.8244852423667908, -0.04400472342967987, 0.4252419173717499, -0.12755712866783142, 0.11985479295253754, -0.05924917757511139, 0.9121265411376953, -0.6326045393943787, -1.0219203233718872, 0.12600135803222656, 0.48942136764526367, 0.2101403772830963, -0.10820960253477097, -0.33569401502609253, 0.47620218992233276, 0.2910959720611572, 1.1463223695755005, 0.08540832251310349, -0.78431636095047, -0.27181369066238403, 0.0510016530752182, -0.745074450969696, 0.39212432503700256, 0.1665053516626358, 0.969519853591919, 0.037735551595687866, -0.7022641897201538, -0.14481109380722046, -0.8308229446411133, 0.14256593585014343, 0.027490921318531036, 0.7139250636100769, 0.31132349371910095, 0.252475380897522, -0.5751078724861145, -0.8133230805397034, 0.5854179263114929, -0.11841470003128052, -0.09868607670068741, 0.6767048835754395, -1.1706165075302124, -0.29765743017196655, -0.6304798722267151, 0.5181435942649841, 0.1957024186849594, 0.11538869142532349, 0.33610260486602783, 0.38973450660705566, -1.2774853706359863, 0.15412206947803497, -0.1340494602918625, 0.34593451023101807, 0.29403698444366455, 0.9381818771362305, 1.4173431396484375, -0.3338657021522522, -0.14365838468074799, -1.0862294435501099, 0.5403627753257751, -1.0351552963256836, -0.7743296027183533, -0.2702978253364563, -0.5534835457801819, -0.5149996876716614], [-0.045734189450740814, 1.973210096359253, -2.3380050659179688, -0.06851980090141296, 1.685662031173706, -0.041059378534555435, 1.5846529006958008, -0.5424102544784546, 0.036545008420944214, -0.11784650385379791, -0.326547771692276, 0.2893584370613098, 0.8392630219459534, 0.5915980935096741, 0.16547255218029022, 0.3006511926651001, 0.8729923963546753, -1.226478934288025, 0.9843547344207764, 0.7456123232841492, -0.7301616072654724, -0.6060819625854492, 0.4407830834388733, 0.5941635966300964, -0.23886878788471222, -0.12158456444740295, -1.2482609748840332, -0.6641556024551392, -0.21449148654937744, -0.8953236937522888, 0.2564738690853119, -0.42820754647254944, 0.4211195409297943, 0.5750574469566345, -0.8722456097602844, -0.4749641716480255, 1.9054549932479858, 1.1758806705474854, -0.1162257269024849, 1.0901304483413696, 2.403409242630005, -0.5381776690483093, 0.18795941770076752, -1.514124870300293, 0.24797776341438293, -0.03260432183742523, 0.3240300416946411, -1.2681554555892944, 0.7778633236885071, -0.5276839733123779, 0.7789208292961121, -0.5657642483711243, 0.6909233331680298, 1.1614915132522583, 0.9492584466934204, 0.051768168807029724, 0.8594602346420288, 0.2567775845527649, 0.7446116209030151, -0.6257930397987366, 1.3984105587005615, -0.4763830602169037, -0.17802228033542633, 0.9214345216751099, -0.13330838084220886, -0.8805791735649109, 0.3383125960826874, 0.5500484108924866, -0.3383011519908905, 0.22297993302345276, 0.04555300995707512, 0.13251027464866638, -0.45758768916130066, 0.45040157437324524, -1.4395853281021118, 0.8904860615730286, 0.5265088081359863, 0.9305819869041443, 0.3634336590766907, 0.7156206965446472, -0.24419444799423218, -0.4839467406272888, 0.5914358496665955, -0.21502400934696198, 0.13599471747875214, 0.24532152712345123, 0.029018787667155266, -0.5601958632469177, -0.46035972237586975, 1.4975372552871704, 0.4588198661804199, -0.24354052543640137, 0.9131794571876526, -0.33358389139175415, 0.09038896858692169, 0.2230233997106552, 0.7642555236816406, -0.2322937250137329, -0.4131145477294922, -0.5828074216842651, -0.47789764404296875, -0.8108035922050476, 0.4408144950866699, -0.050387028604745865, -0.13594117760658264, 1.2531908750534058, 0.027261609211564064, 0.08377441763877869, -0.6098490357398987, 0.04115414246916771, 0.12414366006851196, 0.20483438670635223, -1.1331448554992676, -1.3431388139724731, -0.9655616879463196, 1.0638854503631592, 0.970472514629364, 0.17221233248710632, 0.29957833886146545, 0.5954526662826538, -0.46097517013549805, 0.0991169884800911, -0.15751607716083527, 0.9204590320587158, 0.5110408663749695, 1.0518465042114258, -0.8309271335601807, -0.5158624053001404, -0.5479875802993774, -0.34976866841316223, 0.41454920172691345, -0.504006564617157, -0.6505630016326904, 0.8341273665428162, -1.0822784900665283, 1.3611167669296265, -0.504782497882843, -0.22363314032554626, 0.44990748167037964, -0.7958789467811584, 0.47804269194602966, 0.004664265550673008, -0.29478153586387634, -0.3661898672580719, 0.17262104153633118, -0.5536617040634155, 0.23514039814472198, -0.2787959575653076, -0.40969255566596985, 0.24137364327907562, -1.2017130851745605, 0.590587317943573, 0.10646216571331024, 0.3028254210948944, 0.36427271366119385, 0.05128950625658035, 0.23287717998027802, 0.41738706827163696, 0.22964955866336823, 0.524294912815094, 1.0168019533157349, -0.3686748743057251, -0.6471880078315735, 0.585322916507721, 0.23333989083766937, -0.13741756975650787, 0.6377033591270447, 0.9084038734436035, 0.37233424186706543, 0.2888079881668091, -0.5539584755897522, -0.27333515882492065, -0.4937104880809784, 0.06276734918355942, 0.7847281098365784, -0.5581972002983093, 1.345738172531128, -0.7792993783950806, -1.4021658897399902, -1.5087707042694092, 0.27515918016433716, -0.6463898420333862, 0.5042845010757446, 0.0766114667057991, 0.45948275923728943, -0.6939687728881836, 0.16863521933555603, -0.7075966596603394, -0.5852858424186707, -0.8608314394950867, -0.39710909128189087, -0.6570900678634644, -0.4695205092430115, 0.2925868034362793, -0.5756613612174988, -0.6292785406112671, 0.7087513208389282, -1.5343059301376343, -1.0506255626678467, 0.05338482931256294, -0.4877200126647949, -0.6184313893318176, -1.0662884712219238, 0.4278026223182678, -0.5157854557037354, 1.6063166856765747, -1.2676533460617065, 0.8570241928100586, -0.8664314150810242, 0.3128094971179962, 0.4111945629119873, -0.6660261750221252, -0.576166033744812, 1.2107118368148804, -0.21288301050662994, -1.2003629207611084, 0.6465352773666382, 0.8089332580566406, -0.5532470941543579, 0.6005447506904602, -0.07096675038337708, 0.3481960594654083, -0.055689673870801926, 0.2823253273963928, -0.4155685305595398, -0.06458666175603867, -1.0559262037277222, -0.7254241704940796, -0.4566616415977478, 0.32219672203063965, -0.5754408240318298, -1.739046573638916, 0.6234659552574158, 0.24683400988578796, -0.6795750260353088, 0.23490260541439056, 0.4846254885196686, 0.40689143538475037, 0.16792747378349304, 1.2265113592147827, 0.3094407916069031, 0.3082352578639984, -0.4083559513092041, -0.2303587645292282, -0.5629536509513855, 0.35773685574531555, 0.011269938200712204, 0.7636618614196777, 0.42018213868141174, 0.9761382341384888, 0.8018383979797363, 0.03384187072515488, 0.43495944142341614, -0.3105071783065796, -0.05845092982053757, -0.8487693667411804, -0.663015604019165, 0.7039718627929688, -0.1832704097032547, 1.633729100227356, 0.9796969294548035, -1.2148762941360474, 0.16035035252571106, -0.21189206838607788, -0.00550941564142704, -0.611241340637207, -1.3431538343429565, -0.5282386541366577, -0.2621082365512848, 0.3561531603336334, 0.0293545201420784, 0.9925547242164612, -0.32966625690460205, 0.3954932391643524, -0.8246666193008423, -0.42498746514320374, -0.25575223565101624, 0.1992884874343872, 0.24969114363193512, 0.3646491765975952, 0.12551388144493103, -1.8398215770721436, -0.5863611102104187, 0.23399820923805237, 0.6333214640617371, 0.7280474901199341, -0.27735283970832825, -0.14392556250095367, 0.4441424608230591, -0.14735929667949677, 0.7334831953048706, -0.16102592647075653, 0.017855750396847725, 0.5093638896942139, -0.2769491672515869, 0.8218618631362915, 0.6595870852470398, -1.4680453538894653, -0.4629896283149719, -0.06990791857242584, 0.26471731066703796, 1.092903733253479, 0.6480296850204468, 0.8462307453155518, 0.2753435969352722, 0.27420637011528015, -0.4766184687614441, -0.4774094223976135, -0.789854109287262, -0.10990172624588013, -1.7634756565093994, -0.9796944260597229, -0.19344285130500793, -0.18010231852531433, 0.491892546415329, 0.2036972939968109, -0.6626198291778564, 0.5399550199508667, 0.6745878458023071, -0.1998380869626999, -0.44426316022872925, -0.21874022483825684, 0.05854742228984833, -0.5993684530258179, 0.2377021312713623, 1.3415662050247192, -1.3924415111541748, 0.12000877410173416, 0.24241386353969574, 0.0002499902620911598, 0.34842589497566223, 0.09825889021158218, 0.24289976060390472, -1.698722004890442, -0.6995736360549927, 0.22062404453754425, 1.8811646699905396, -0.29335537552833557, -0.45623350143432617, -0.4724636375904083, 0.17980161309242249, 0.5726551413536072, -0.6821096539497375, -0.5155072212219238, 0.4051741659641266, -0.22063393890857697, -0.7634550929069519, -0.31118056178092957, 0.6697339415550232, 0.22669263184070587, -0.048387136310338974, -0.36073970794677734, -0.27917781472206116, -0.054233960807323456, -0.047534894198179245, 0.5124882459640503, -0.20289379358291626, 0.9429647326469421, -0.554715096950531, -0.3546724021434784, 0.8553005456924438, 0.26060932874679565, 0.11844785511493683, -1.7489402294158936, 0.7651864290237427, 0.28931358456611633, 1.1421748399734497, 0.6702085137367249, 0.5558754801750183, 0.3225286602973938, 0.03478047251701355, 0.3176485598087311, 0.5114826560020447, 1.6849318742752075, -0.01832091063261032, 0.00579992588609457, -0.9859957695007324, -0.5470398664474487, -0.13036669790744781, -0.31742337346076965, -0.37337809801101685, 0.586658239364624, -0.7792908549308777, -0.6716765761375427, 1.2270139455795288, 0.6768746376037598, -0.5475813150405884, -0.3765771985054016, 0.2710857689380646, 0.355255663394928, -0.12018036097288132, 0.33219078183174133, -0.7379289865493774, 0.0740589126944542, -0.14595720171928406, -1.1366660594940186, -0.004747554659843445, 0.25338509678840637, 0.4836181402206421, 0.6690091490745544, -1.0074187517166138, -0.06492101401090622, -0.5330713391304016, 0.7036038041114807, 0.17825031280517578, -0.21761099994182587, -0.06549593806266785, 0.44540759921073914, -0.003376491367816925, -0.19630886614322662, 0.12484172731637955, 1.6103951930999756, -0.6867865324020386, 0.2899472713470459, -0.40386325120925903, 0.20243896543979645, -0.5778307318687439, -0.5620378255844116, -0.5188577771186829, 0.14657852053642273, -0.5425090789794922, 0.2857562005519867, 0.11814191937446594, -0.0817919597029686, 1.3904467821121216, 0.16558682918548584, 0.4864744544029236, 0.4661644697189331, -0.11072954535484314, -1.354198694229126, 0.45822805166244507, -0.46560734510421753, 0.42980197072029114, -0.6677753329277039, -0.19058847427368164, 0.23754478991031647, -0.6457752585411072, 0.4856581389904022, 0.4975243806838989, 0.6758514046669006, -0.1375041902065277, 0.44245582818984985, -0.3887556195259094, 0.18721209466457367, 0.5317484140396118, 1.2560057640075684, 0.1635703146457672, 0.12179884314537048, -1.2291191816329956, 0.9346114993095398, -1.7795825004577637, -0.414294958114624, 0.5630106925964355, -0.41235366463661194, 1.3569008111953735, -2.1519505977630615, -0.09933339804410934, 0.3741782009601593, 0.5664430260658264, 0.5423996448516846, 0.5792253017425537, -0.4759177267551422, 0.04000374302268028, 0.5619926452636719, 1.1700031757354736, -0.34778714179992676, 0.15321536362171173, 0.20986294746398926, 0.21669116616249084, -0.16895045340061188, -0.9845268726348877, 0.6638368368148804, -0.023127784952521324, -0.40635454654693604, -0.26313671469688416, -0.3457283675670624, 0.4872536063194275, 0.41318997740745544, 0.280741810798645, 0.7879106402397156, -0.012819281779229641, -0.3852841258049011, -0.020412571728229523, -0.6672632694244385, 0.5585972666740417, -0.9032011032104492, -0.026906555518507957, -0.48777082562446594, -0.6056460738182068, -0.41961172223091125, 0.5180896520614624, -0.24456378817558289, -0.7627548575401306, -0.6355171799659729, -1.735273838043213, 0.26063060760498047, 0.8151550889015198, 1.8106437921524048, 1.5446900129318237, 0.23387300968170166, 0.5662147402763367, 0.15150335431098938, -0.8873248100280762, -0.1195860505104065, 0.22713252902030945, -0.3177620470523834, -0.35188373923301697, -1.2886860370635986, -0.6486531496047974, -0.0994587242603302, 0.3344726264476776, -0.010940102860331535, 0.43063127994537354, 1.663573145866394, 1.976130485534668, -0.25897809863090515, -0.6124382615089417, 0.8152161240577698, -0.11548765748739243, 0.36986902356147766, 0.7949056029319763, -0.4793893098831177, -0.3592374622821808, -0.3950507938861847, -1.7048799991607666, 1.0527079105377197, -0.3736308217048645, -0.2270503044128418, 0.8357532024383545, -0.08456135541200638, 0.6929114460945129, 0.03772744908928871, -0.841755211353302, 0.2766263782978058, 0.3916795551776886, -0.2868190407752991, -1.065787672996521, 0.29610443115234375, -0.19408220052719116, 0.10171865671873093, -0.1934799998998642, -0.3567083775997162, 0.1715860664844513, -0.2627708315849304, 1.2952359914779663, 0.20671381056308746, 0.06903572380542755, 0.15908074378967285, 0.6146306395530701, -0.25306573510169983, 0.38120701909065247, -0.8049615025520325, -1.0188343524932861, 0.26946210861206055, 0.5030074715614319, -0.4769776165485382, -0.2921667993068695, -0.36545801162719727, -0.3146558701992035, -0.7350218892097473, -0.7004100680351257, -0.18053001165390015, 1.024645209312439, 0.8339474201202393, 0.013290109112858772, -0.19373279809951782, -0.7823624014854431, -0.519521176815033, -0.05400686711072922, 0.5767443776130676, 0.2235981673002243, -1.1706018447875977, -0.4622529149055481, 0.36235740780830383, 0.2223694622516632, -0.24995474517345428, -0.5532286167144775, -0.058706749230623245, -1.078879952430725, -1.155035138130188, -0.7828230857849121, 0.08322074264287949, 0.6427872180938721, -1.0443978309631348, 0.7106062173843384, 0.78847736120224, -1.6797987222671509, 0.5941751003265381, -0.23502559959888458, -1.5058653354644775, 0.14328508079051971, -1.4251093864440918, 0.9980307221412659, 0.3771229386329651, 0.281629741191864, 0.11966574937105179, 1.1221836805343628, -1.2563090324401855, -0.8802024126052856, -0.26511356234550476, -0.29847386479377747, 1.0094022750854492, 0.8145914077758789, -0.3826755881309509, 1.236751675605774, 0.4391394555568695, -0.43068379163742065, -0.11136742681264877, -0.0925409197807312, -0.35062119364738464, -0.17263634502887726, 0.3878048360347748, 0.1311388462781906, 0.17195913195610046, 0.6638215184211731, 0.16960904002189636, 1.4904934167861938, 0.07818584144115448, 1.076110601425171, -1.0131330490112305, -0.8268534541130066, 0.19690395891666412, 0.38299262523651123, -1.3980529308319092, -0.7343553900718689, 0.13646464049816132, -1.002663016319275, -1.1780885457992554, 0.4447392225265503, 1.09787917137146, -0.5632938742637634, 0.11744862794876099, -0.9100742340087891, 0.14347237348556519, -1.064422845840454, -0.23983313143253326, 0.48296523094177246, -0.40292009711265564, -0.15417826175689697, 0.4302445352077484, -0.03097270429134369, -1.3413422107696533, -0.002866368740797043, 0.430145263671875, 0.2022397518157959, -0.9101374745368958, 0.9078759551048279, 1.047063946723938, 0.33336707949638367, 0.18650254607200623, 1.3684191703796387, 1.2139897346496582, -1.022101640701294, -0.45374777913093567, 0.5078133344650269, 0.04650009050965309, 0.5686226487159729, -0.15920117497444153, -0.32222890853881836, -0.8709314465522766, 1.4033397436141968, 0.47100937366485596, 0.3174349069595337, -0.4058331549167633, 0.22973722219467163, -0.9239116311073303, -0.566663384437561, 0.6595230102539062, -1.2410237789154053, 0.05827406048774719, 1.4497631788253784, 0.11606458574533463, -0.13911530375480652, 0.09998282045125961, 0.7934895753860474, -0.11885309964418411, -0.7034622430801392, 0.2538853585720062, 0.7480217814445496, -0.8017931580543518, 0.028180761262774467, 0.07775384187698364, -0.48402372002601624, -0.12014385312795639, -0.37041568756103516, -1.6695212125778198, -0.5505558252334595, -0.8781078457832336, -0.5940456986427307, 0.70173180103302, -0.8918391466140747, -0.7853103876113892, 0.42491328716278076, -0.4651930034160614, -0.2214507907629013, -0.2931238114833832, -0.14116445183753967, 0.3046823740005493, -0.5522137880325317, 0.9504786133766174, -0.7414887547492981, 1.5426154136657715, 0.21760399639606476, 0.17927035689353943, -1.0676040649414062, -0.4683705270290375, 0.3575136959552765, 0.3725254237651825, -0.5897698402404785, 0.39164721965789795, 0.5246980786323547, -0.2665809094905853, -0.6262968182563782, 0.090811587870121, 0.15652836859226227, -0.05599895864725113, 0.014706460759043694, -0.22904445230960846, 0.2247874140739441, 0.3268503248691559, 0.5689198970794678, -0.3232397735118866, -0.1455388069152832, -0.9729812145233154, -0.09224381297826767, -0.38457098603248596, 0.2895243465900421, -0.7472512125968933, 0.7079050540924072, 0.5154409408569336, -0.3628707826137543, -0.26999035477638245, -0.8602198362350464, 0.7366702556610107, -0.5085654258728027, 0.5019956231117249, 0.32664328813552856, -0.06942842155694962, 0.006728963926434517, -0.28406354784965515, 0.39964690804481506, 0.3911455571651459, -0.20967650413513184, 0.40313413739204407, -0.5279560685157776, -0.7741779088973999, -0.3596075773239136, 0.5947409272193909, 0.8971771001815796, 0.3801921308040619, 0.2431173324584961, 0.23302730917930603, -1.0792652368545532, 0.33934855461120605, 0.5032815337181091, 0.11641974747180939, -0.28125569224357605, 1.3161213397979736, 1.7331730127334595, 0.5607159733772278, 0.3306567072868347, -0.21869036555290222, 0.43036994338035583, -0.33348003029823303, -0.411428302526474, -0.3424827456474304, -0.3188007175922394, -0.0853436067700386], [-0.21176759898662567, 1.7454040050506592, -1.852150797843933, 0.29408684372901917, 1.22693932056427, 0.12759685516357422, 1.5155844688415527, -0.07578189671039581, 0.07550767809152603, -0.46705496311187744, -0.27101266384124756, 0.24488167464733124, 1.3793160915374756, 0.5201197266578674, 0.44408515095710754, 0.9920907616615295, 1.3922209739685059, -0.38954803347587585, 1.607386589050293, 1.4998565912246704, -0.13187530636787415, 0.33721649646759033, 0.8696784973144531, 0.20375625789165497, -0.687353789806366, -0.12502995133399963, -1.699073076248169, -0.3225939869880676, -0.33147987723350525, -0.7287774085998535, 0.4758415222167969, -0.5812675356864929, -0.3338245451450348, 0.5534590482711792, -0.8075121641159058, -0.1683400720357895, 1.4596830606460571, 1.2613635063171387, 0.4419764578342438, 0.7115722298622131, 1.1783814430236816, -0.9791733622550964, -0.018245887011289597, -1.0421110391616821, 0.35454294085502625, -0.26361775398254395, 1.036054015159607, -0.9048001766204834, 0.4204670190811157, -0.4551146626472473, 0.018953006714582443, 0.25444167852401733, 0.26879286766052246, 0.935947835445404, 0.4340727627277374, 0.34602266550064087, 0.3420649766921997, -0.5517120361328125, 0.9209346771240234, -0.43394985795021057, 1.1231986284255981, 0.16402439773082733, -0.33854058384895325, 0.6392004489898682, 0.43799442052841187, -0.20858459174633026, 0.440226286649704, -0.19830618798732758, 0.004884717520326376, -0.1472068727016449, 0.09431096911430359, 0.2657352387905121, -0.791856050491333, 0.7725721001625061, -0.8848063945770264, 0.9864604473114014, 0.5711775422096252, 0.5801142454147339, 0.08622673898935318, 0.9925285577774048, 0.1860465258359909, -0.2718488574028015, -0.061794232577085495, 0.4298231303691864, 0.7503314018249512, -0.38666895031929016, -0.2582281529903412, -1.4919012784957886, -0.8678377866744995, 1.4291709661483765, 0.7218635678291321, 0.15532401204109192, 0.5970233678817749, -0.6734753251075745, -0.04557902365922928, -0.5569730401039124, 0.8487860560417175, -0.0042847576551139355, -0.7948206663131714, 0.0759221762418747, -0.8710539937019348, -0.7100210785865784, -0.11305411159992218, 0.44997793436050415, 0.06299695372581482, 0.9407045841217041, -0.4139460325241089, -0.149496391415596, -0.3916739523410797, 0.19439223408699036, 0.10885946452617645, 0.15367157757282257, -0.9485301375389099, -1.0763566493988037, -0.5220628976821899, 1.1066745519638062, 0.9342422485351562, 0.10267571359872818, 0.9185505509376526, 0.8500603437423706, -0.31041353940963745, 0.26085343956947327, -0.5230218768119812, 0.8901081085205078, -0.3882303535938263, 1.296872615814209, -0.11666740477085114, -0.3499637544155121, -0.01742987334728241, 0.30319127440452576, 0.5172442197799683, -0.06944133341312408, -0.4129539728164673, 0.11567545682191849, -0.07633137702941895, 1.387634038925171, -0.4546806514263153, -0.4229981005191803, -0.6142016649246216, -0.21313464641571045, 0.9636157751083374, 0.39327818155288696, -0.05577261000871658, -0.5441706776618958, -0.5259854793548584, -0.19526736438274384, -0.8101539015769958, -0.1442084014415741, -0.2987484931945801, -0.2813466191291809, -0.9103747010231018, 0.6103171706199646, 0.1709108054637909, 0.16881869733333588, -0.31540581583976746, -0.04159274324774742, 0.2991509735584259, 0.39404889941215515, 0.25282010436058044, 0.3564462959766388, 0.8017663955688477, -0.7044554352760315, -0.3002651333808899, 1.0498238801956177, 0.21299485862255096, 0.21392548084259033, 0.5369732975959778, 0.23861759901046753, -0.1831366866827011, 0.7608654499053955, -0.030269337818026543, -0.486979216337204, -0.2164812535047531, -0.14940312504768372, 0.4230706989765167, -0.6391968131065369, 2.032912254333496, 0.10801156610250473, -1.3627628087997437, -1.3454694747924805, 0.2604961693286896, -1.3588857650756836, -0.2571530044078827, -0.1600203812122345, 0.26443544030189514, -1.0379748344421387, 0.8610240817070007, 0.14031505584716797, -0.42186397314071655, -1.0551469326019287, -0.2133757621049881, -0.48643043637275696, -0.9940766096115112, 0.8209035396575928, -0.291778564453125, -0.5005166530609131, 0.3783555328845978, -1.4781091213226318, -0.6793060898780823, -0.33575868606567383, -0.9393048882484436, -0.23067888617515564, -0.7332815527915955, 0.4529508352279663, -0.46604546904563904, 1.233210563659668, -0.8500709533691406, 1.4672244787216187, -0.3203600347042084, -0.363349586725235, 0.7899227142333984, -0.2789306342601776, -0.8539838790893555, 1.3360923528671265, -0.6612362861633301, -0.9282099008560181, 0.6858365535736084, 0.05412726104259491, -0.6265299916267395, -0.09017381817102432, 0.23323555290699005, -0.33948007225990295, 0.07818753272294998, 0.7991294860839844, -0.3366338312625885, 0.13528069853782654, -1.1885833740234375, -0.9211830496788025, -0.08702174574136734, 0.38646289706230164, -0.5822211503982544, -0.3979334235191345, 1.3340672254562378, 0.20333364605903625, -1.2831830978393555, 0.6371306777000427, -0.04379561170935631, 0.08290570974349976, 0.3918248116970062, 0.663476824760437, -0.0515575110912323, 0.023845864459872246, -0.3204944431781769, -0.179074227809906, -0.8185980319976807, 0.03718999773263931, 0.17084121704101562, 0.44216182827949524, 0.18324171006679535, 1.4003949165344238, 1.0950018167495728, 0.04607843980193138, 0.3006572723388672, 0.45221543312072754, -0.36485421657562256, -0.63257896900177, -0.7478790283203125, 0.3184582591056824, -0.6901330351829529, 0.9504193663597107, 0.6411731839179993, -0.6869288682937622, 0.23492254316806793, -0.18848004937171936, -0.47666725516319275, 0.05887853354215622, -1.2885440587997437, -0.588628351688385, 0.14876031875610352, -0.07977951318025589, -0.10921787470579147, 0.12293082475662231, 0.015183242969214916, 0.04079587757587433, -0.7899220585823059, -0.8245051503181458, -0.48562130331993103, 0.21520984172821045, 0.48026832938194275, -0.002041194122284651, 0.14273427426815033, -1.3230947256088257, -0.06504672765731812, 0.23274128139019012, 0.7266622185707092, -0.015985937789082527, -0.417056679725647, 0.6454372406005859, 0.26178833842277527, -0.3976263105869293, -0.17102965712547302, 0.3234424889087677, -0.058705925941467285, -0.1949974000453949, 0.05410318076610565, 0.8581857085227966, 0.737423837184906, -1.1118124723434448, -0.70931077003479, 0.1474643349647522, 0.6728362441062927, 0.9158787727355957, 0.02882339619100094, 0.821856677532196, -0.4365769624710083, -0.05059439688920975, -0.39348524808883667, -0.1978507936000824, -1.1299039125442505, -0.5773555636405945, -0.7507055997848511, -0.20499730110168457, -0.48290887475013733, -0.06590932607650757, 0.04990091547369957, 0.264869749546051, -0.7893159985542297, 0.7365094423294067, 1.2772862911224365, -0.16612255573272705, -0.408256471157074, -0.06524872779846191, -0.323309063911438, -0.23090091347694397, 0.554058849811554, 0.5476204752922058, -1.1323535442352295, -0.8155184984207153, 0.046114057302474976, -0.008359587751328945, 0.12885776162147522, 0.15681609511375427, -0.801913857460022, -1.5979825258255005, -0.9259964823722839, 0.4885578751564026, 1.2722797393798828, -0.4640030562877655, -0.07346639037132263, -0.17583829164505005, 0.11073856055736542, 0.48386844992637634, -0.8653680682182312, -0.6156033277511597, -0.2521950304508209, -0.14579050242900848, -0.34181681275367737, 0.36482033133506775, 0.6841451525688171, 0.6878385543823242, -0.19436094164848328, -0.8782192468643188, -0.33988237380981445, -0.3822338283061981, -0.10955149680376053, 0.4737812876701355, 0.014035196043550968, 0.9665767550468445, -0.5202071666717529, -0.1011643186211586, 0.3579007387161255, -0.3657951056957245, 0.1484430879354477, -0.8697350025177002, 0.2899613082408905, 0.28676143288612366, 0.7677309513092041, 0.28193971514701843, -0.011951970867812634, 0.0930873230099678, 0.20795036852359772, 0.5113062262535095, 0.13586585223674774, 0.9857454895973206, 0.35193225741386414, 0.22911947965621948, -0.8985804915428162, 0.3015667796134949, -0.603926420211792, -0.3602803647518158, -0.33756595849990845, 0.9103890061378479, -0.2785329818725586, -0.9062267541885376, 1.0057514905929565, 0.41977450251579285, -0.3216454088687897, -0.4282192289829254, 0.42528554797172546, 0.7272981405258179, -0.495626300573349, 0.6519715785980225, -1.0209784507751465, -0.4161856472492218, 0.10427601635456085, -1.3779828548431396, -0.10695644468069077, 0.06200810894370079, 0.5862390398979187, 0.6456782221794128, -0.9023867249488831, 0.4209590256214142, -0.5233754515647888, 0.6921228170394897, 0.4545285403728485, -0.017399171367287636, 0.24582539498806, 0.42996498942375183, -0.0979369655251503, -0.27151280641555786, 0.4174875020980835, 1.0165544748306274, -0.12070740014314651, 0.4765758514404297, -0.29797735810279846, -0.006292036734521389, -0.455268532037735, -0.785252571105957, -0.6238805651664734, -0.2552248537540436, -0.10912349075078964, 0.143917515873909, 0.6237526535987854, 0.0414181724190712, 1.7054815292358398, 0.5164457559585571, 0.17446163296699524, 0.3570674657821655, -0.42937538027763367, -0.5127516984939575, -0.10068171471357346, 0.559554398059845, -0.19099090993404388, -0.35323476791381836, -0.08275828510522842, 0.49641260504722595, -0.558544397354126, 0.3617027997970581, 0.5288843512535095, 1.0786056518554688, 0.11851327866315842, 0.6489614844322205, -0.14637799561023712, 0.5367379188537598, 0.3631742000579834, 1.031378149986267, 0.1300470232963562, -0.3122554421424866, -0.572969913482666, 0.8439915776252747, -0.7020121812820435, -0.4440479278564453, 0.30067577958106995, -0.37052953243255615, 1.7377641201019287, -1.1800121068954468, -0.43220293521881104, -0.13598401844501495, 0.6277962923049927, 0.42061159014701843, 0.4471990168094635, -0.32227063179016113, -0.4070606231689453, 0.8749839663505554, 0.9226097464561462, -0.3702620565891266, 0.04311862215399742, -0.016732653602957726, -0.37851858139038086, 0.34016281366348267, -0.6892860531806946, 0.6366693377494812, -0.8129868507385254, -0.06581123918294907, -0.10436151921749115, -0.4777531027793884, -0.2336849719285965, 0.21618971228599548, -0.09581155329942703, 0.7953349351882935, -0.31151506304740906, -0.7090131640434265, -0.05275784805417061, -0.8844873309135437, 0.6114627122879028, -1.4112333059310913, -0.8053104281425476, -0.48239007592201233, -0.9050261378288269, -0.12474725395441055, 0.6853181719779968, -0.41023147106170654, -0.40745553374290466, -1.0226212739944458, -0.5400206446647644, 0.07164481282234192, 1.270911455154419, 1.501171350479126, 1.182599663734436, 0.1133953109383583, 0.5007099509239197, 0.19286492466926575, -0.659608006477356, 0.05600335821509361, 0.7084164023399353, 0.27437329292297363, 0.007540332153439522, -1.624307632446289, -0.6791809797286987, 0.22596223652362823, 0.30171096324920654, 0.2388300895690918, 0.0011689793318510056, 0.6388620138168335, 0.9132529497146606, 0.45484647154808044, -0.36143767833709717, 0.9431774020195007, -0.659213662147522, 0.4938371777534485, 0.6789241433143616, -0.90791916847229, -0.6341724395751953, -0.7061030864715576, -1.0857315063476562, 0.9116244316101074, -0.7574400305747986, -0.5540045499801636, 0.926234781742096, 0.6511874794960022, 0.8984230756759644, 0.5005866289138794, 0.22702012956142426, 0.6841138005256653, 0.3177858293056488, 0.08716464042663574, -0.8317591547966003, 0.13618525862693787, 0.01702294498682022, -0.0010867798700928688, -0.5779598355293274, -0.5344849228858948, 0.40140870213508606, -0.6543787717819214, 0.21556302905082703, 0.019324325025081635, 0.9174910187721252, 0.6104840040206909, 0.5568941831588745, -0.8400741815567017, -0.23556677997112274, -0.8385944962501526, -0.8593830466270447, -0.09199604392051697, -0.20859143137931824, -0.4287625551223755, -0.21688112616539001, -0.501596212387085, 0.27972838282585144, -1.0726195573806763, -0.2134731560945511, -0.07411254197359085, 0.6005789637565613, 0.5723702311515808, 0.16408899426460266, -0.6042078137397766, -0.2743440568447113, -0.38780781626701355, 0.046874962747097015, 0.06006839498877525, 0.45453235507011414, -1.074791431427002, -0.47223949432373047, 0.351606160402298, -0.3106226325035095, -0.17593146860599518, 0.12477938830852509, 0.34162652492523193, -1.5129536390304565, -0.689433217048645, -0.42655283212661743, 0.6992748379707336, 0.2769502103328705, -0.9672704339027405, 0.36548474431037903, 0.7240036129951477, -2.192854642868042, -0.11548007279634476, -0.3862415850162506, -1.3634968996047974, -0.4526209831237793, -0.9682694673538208, 0.6058087944984436, -0.09187526255846024, 0.00606515072286129, -0.30340322852134705, 0.8138567209243774, -1.202085256576538, -1.3704618215560913, -0.11690066754817963, 0.05362941324710846, 0.6518707275390625, 0.7088884711265564, 0.03942335769534111, 1.1671473979949951, 0.09038993716239929, -0.5935049653053284, -0.4851960241794586, 0.7007287740707397, -0.269808292388916, -0.07101670652627945, 0.7005348801612854, 0.959057092666626, -0.18178778886795044, 0.8880823254585266, -0.024668266996741295, 1.2640994787216187, 0.05847261846065521, 0.9563080072402954, -1.1266242265701294, -0.5093504190444946, 0.7220296859741211, 0.11945171654224396, -1.2932239770889282, -0.8994346261024475, -0.7690085172653198, -0.9793537259101868, -0.5736066699028015, -0.13696445524692535, 0.9008158445358276, -0.7402339577674866, 0.006859575863927603, -0.6119612455368042, 0.5283434391021729, -0.5841097831726074, -0.4164167642593384, 0.18148748576641083, -0.30230003595352173, 0.0775633156299591, 0.18117566406726837, -0.24505944550037384, -1.1340303421020508, -0.0792895033955574, 0.3498297333717346, 0.3626263737678528, -1.0167491436004639, 0.3340555727481842, 0.5791869163513184, 0.1917138397693634, -0.19329586625099182, 1.8324885368347168, 0.6412150859832764, 0.24406452476978302, -0.10232547670602798, 0.32990461587905884, 0.17421899735927582, 0.32466498017311096, -0.4797214865684509, -0.45652997493743896, -0.44222503900527954, 0.7169833779335022, 0.06682001054286957, 0.3022899627685547, -0.04616648331284523, -0.015465624630451202, 0.03640733286738396, 0.5113282799720764, 0.1739514172077179, -0.388346791267395, 0.08066325634717941, 0.9059361219406128, 0.2756218910217285, -0.19320307672023773, 0.2518850564956665, 0.14345283806324005, 0.3245471119880676, -1.1253130435943604, 0.6403112411499023, 1.1689482927322388, -0.4558141529560089, -0.02696739137172699, 0.2803467810153961, -0.37333935499191284, -0.032507508993148804, -0.7051538825035095, -1.6642634868621826, -0.051338791847229004, -0.5934545397758484, -0.8271725177764893, 0.8050884008407593, -1.1989084482192993, -0.17734627425670624, 0.41024383902549744, -0.15153475105762482, -0.5999923944473267, -0.1756274700164795, 0.39319154620170593, -0.39077579975128174, 0.15192051231861115, 1.7882524728775024, -0.557898223400116, 1.1661598682403564, 0.5242525935173035, -0.5709050297737122, -0.6298108696937561, -0.7600371241569519, 0.24318145215511322, 0.39843207597732544, -0.4376111626625061, 0.5112823247909546, 0.5821812748908997, 0.3480255901813507, -0.4732561707496643, 0.0170130655169487, 0.11382000148296356, 0.7185865044593811, -0.1720631867647171, 0.09550658613443375, 0.23798877000808716, 0.43951740860939026, 0.19218406081199646, -0.23700614273548126, -0.4837668538093567, -0.7984064221382141, -0.7682109475135803, -0.5803959965705872, 0.07438381016254425, -0.7986626029014587, 0.7706854343414307, 0.04619418829679489, -0.06785981357097626, -0.31210580468177795, -1.1158181428909302, 0.2169841080904007, -0.46020591259002686, -0.3040812611579895, 0.21226677298545837, -0.24572241306304932, 0.20680299401283264, -0.08782288432121277, 0.2112627774477005, 0.5872811079025269, -0.3116539716720581, 0.4487013518810272, -0.5105649828910828, -0.7698107361793518, -0.1233685091137886, 0.5572068095207214, 1.2255135774612427, 0.6443554162979126, 0.26668164134025574, 0.29413801431655884, -0.5124174952507019, -0.13491258025169373, -0.029093919321894646, 0.5795459151268005, 0.04784565418958664, 1.9031400680541992, 1.4253015518188477, -0.07360176742076874, 0.7177276611328125, -0.4836595356464386, 0.4036756157875061, -0.9216974377632141, -0.9389173984527588, -0.7754325270652771, -0.05239550396800041, 0.36183255910873413], [0.017132896929979324, 1.7569489479064941, -2.430774211883545, -0.0656902939081192, 0.5319631099700928, 0.9374734163284302, 1.5745136737823486, -0.5422489047050476, -0.25468361377716064, -0.22378379106521606, -0.4627592861652374, -0.5195468664169312, 0.4779376983642578, 0.6122925877571106, 0.09918542951345444, 0.9269033670425415, 1.5561224222183228, -0.5060100555419922, 0.6228805780410767, 1.332384705543518, -0.5208743214607239, -0.6112556457519531, -0.019964659586548805, -0.04307333007454872, -0.8920717239379883, 0.10049593448638916, -1.5829851627349854, -0.254422128200531, -0.8014503717422485, -0.8968876600265503, 0.6734462380409241, -0.4836244285106659, 0.1132056713104248, -0.117610402405262, -1.3719332218170166, -0.27725183963775635, 1.4663617610931396, 1.4480220079421997, 0.8269662261009216, 0.23430736362934113, 1.3480627536773682, -0.49398934841156006, -0.09696149080991745, -1.3745547533035278, 0.0977751761674881, -0.13495324552059174, 0.5036324858665466, -0.7011022567749023, 0.4796210825443268, -0.4381943345069885, 0.4229748547077179, -0.8933122158050537, 1.0427919626235962, 0.9814057350158691, 0.9429250359535217, 0.19798043370246887, 0.2949100732803345, -0.18583177030086517, 0.9372952580451965, -0.6340799927711487, 0.9509842395782471, -0.4799608290195465, -0.01798730529844761, 0.6815280914306641, 0.6454799175262451, -0.4179497957229614, -0.08028819411993027, 0.3506825864315033, 0.21475839614868164, -0.10572197288274765, 0.5837019085884094, -0.07242419570684433, -0.47307828068733215, 0.7278109192848206, -1.8517978191375732, 0.838746964931488, 0.43886396288871765, 0.7069138884544373, 0.11540450900793076, 0.4113767743110657, -0.20670554041862488, -0.32201695442199707, 0.07882294058799744, -0.14736470580101013, 0.3737356662750244, 0.2793503701686859, 0.491672158241272, -0.45634764432907104, -0.9533072710037231, 2.022388219833374, 0.45905616879463196, 0.22798044979572296, 0.7838608026504517, -0.35305866599082947, -0.41869187355041504, -0.32208701968193054, 0.3867711126804352, 0.37157124280929565, -1.1898053884506226, -0.8312129378318787, -0.27051082253456116, -0.19641421735286713, -0.20910944044589996, -0.5704487562179565, -0.2550680935382843, 1.0755232572555542, 0.5872238874435425, 0.12063495069742203, -0.6439166069030762, -0.2810792326927185, -0.31424203515052795, 0.42786458134651184, -0.7572592496871948, -1.317543625831604, -0.6860451698303223, 0.9300066232681274, 1.224992275238037, -0.12098819762468338, 0.574377715587616, 0.7764203548431396, 0.22489286959171295, 0.12190251052379608, -0.08208266645669937, 0.629899799823761, -0.2854796350002289, 0.6195276379585266, -1.2784030437469482, -0.39466914534568787, 0.4047856032848358, -0.3390343487262726, 0.7430307269096375, -0.0511423796415329, -0.39106741547584534, 0.5896660089492798, -0.9258206486701965, 1.5153380632400513, -0.7682002186775208, -0.2549498379230499, -0.44746991991996765, -0.7493818402290344, 0.40162280201911926, -0.3806309998035431, -0.31902411580085754, -0.31223201751708984, 0.2899617850780487, -0.6534043550491333, 0.15232370793819427, -0.14138878881931305, -0.6512755751609802, 0.1377263367176056, -0.33220404386520386, 0.32547712326049805, 0.9269766807556152, 0.3994559049606323, 0.11564694344997406, 0.25417405366897583, 0.74393630027771, 0.7772578597068787, 0.34446343779563904, 0.5443311333656311, 0.7078580856323242, -0.17119650542736053, -0.7575345039367676, 0.34956344962120056, 0.28193697333335876, -0.26470234990119934, 0.05686081200838089, 0.7636126279830933, 0.386584609746933, 0.8403499126434326, -0.4782201945781708, -0.968890905380249, 0.004992390051484108, 0.49356552958488464, 0.1982950121164322, -0.7759568691253662, 1.2599555253982544, -0.5852967500686646, -1.297910451889038, -1.3936797380447388, 0.4306425154209137, -0.1919059306383133, 0.8742629289627075, -0.13302446901798248, 0.34599629044532776, -1.0946356058120728, 0.8307697772979736, 0.06463727355003357, -0.47255071997642517, -1.122666358947754, -0.17132285237312317, -0.7737595438957214, -0.6738072633743286, 0.013627052307128906, -0.19102418422698975, -0.3520677089691162, 0.7365217208862305, -1.1406804323196411, -0.07964502274990082, 0.3434837758541107, -0.1587364822626114, 0.007491950877010822, -0.7279098033905029, 0.4179959297180176, -0.56000155210495, 1.2891007661819458, -1.0666996240615845, 0.8199928998947144, -0.6865054965019226, 0.24688807129859924, 0.717529296875, 0.050361111760139465, -0.637032687664032, 0.6010616421699524, 0.13433115184307098, -1.4712073802947998, 0.3437582850456238, 0.2837669551372528, -0.5619633197784424, 0.4097592234611511, 0.08159739524126053, 0.13249528408050537, 0.4334448575973511, 0.0315910242497921, 0.43217799067497253, 0.11998535692691803, -1.193301796913147, -0.5962308049201965, -0.2680327892303467, -0.03220071643590927, -0.47198233008384705, -1.164260745048523, 0.8772155046463013, 0.3731078803539276, -1.2410862445831299, 0.20511843264102936, 0.21345824003219604, 0.42532089352607727, 0.2030661702156067, 1.9143390655517578, 0.5253929495811462, 0.23411349952220917, -0.5280380845069885, 0.21073397994041443, -0.5565072298049927, 0.3423970341682434, 0.5839046835899353, -0.04102090746164322, 0.12225525081157684, 1.7297567129135132, 0.703455924987793, 0.23833408951759338, 0.07827790081501007, 0.1817629337310791, -0.30699196457862854, -0.15934820473194122, -1.0141583681106567, 0.1715111881494522, -0.5392959713935852, 1.4242682456970215, 0.9260365962982178, -0.7328407764434814, 0.09304317831993103, 0.43515321612358093, 0.16142255067825317, -0.14065787196159363, -0.7151001691818237, -0.2361561357975006, -0.21121333539485931, 0.36389556527137756, -0.11619123816490173, 0.7967256903648376, -0.01627190224826336, 0.3122193217277527, -0.3299989104270935, -0.8270018696784973, -0.4173222482204437, 0.5686570405960083, 0.2989251911640167, 0.6457608938217163, -0.3821546733379364, -0.9074252843856812, -0.010385314002633095, 0.4977599084377289, 1.1867810487747192, -0.06521648913621902, 0.05575818195939064, 0.06802717596292496, 0.11109724640846252, -0.23602692782878876, 0.6687124371528625, 0.09777497500181198, 0.2940819263458252, -0.3617285192012787, -0.14233744144439697, 0.9065000414848328, 0.8055985569953918, -1.1149981021881104, -0.6248729825019836, -0.08400030434131622, -0.126661017537117, 1.1104180812835693, 0.4557768702507019, 1.3275361061096191, 0.07671458274126053, 0.14827793836593628, -0.29575639963150024, -0.6627184152603149, -1.0449565649032593, -0.8788750767707825, -0.2845706045627594, -0.49375125765800476, -0.13376390933990479, -0.490947961807251, -0.1659066081047058, 0.5448029041290283, -0.15138505399227142, 0.639350950717926, 1.4024171829223633, -0.027056984603405, -0.9451762437820435, -0.33694273233413696, -0.00918816588819027, -0.8813992142677307, 0.6179975867271423, 1.1053720712661743, -0.984000563621521, -0.5504750609397888, -0.24997952580451965, -0.045816343277692795, 0.20035810768604279, 0.2522401511669159, 0.07804673910140991, -1.2714934349060059, -1.244351863861084, -0.4463479518890381, 1.0081799030303955, -0.24027155339717865, 0.18612349033355713, -0.822293221950531, 0.11850007623434067, 0.655430793762207, -0.6229621767997742, -0.6374332308769226, 0.6655622720718384, -0.14688345789909363, -0.8334985375404358, -0.11065958440303802, 0.9539806246757507, 0.3720172941684723, -0.2734247148036957, -0.6844374537467957, -0.14712142944335938, -0.3897022008895874, 0.07375229150056839, 0.5306228995323181, -0.45634719729423523, 1.2375847101211548, -0.7201590538024902, 0.29140499234199524, 0.7230010032653809, 0.1227259635925293, -0.03586384281516075, -1.760340929031372, 0.5538330078125, 0.4854517877101898, 1.1390626430511475, 0.1788094937801361, 0.31303638219833374, 0.1946427822113037, 0.0668206512928009, 0.17086850106716156, 0.25532829761505127, 1.4471092224121094, 0.2151942253112793, 0.24125000834465027, -0.7237616181373596, -0.3790730834007263, 0.14360938966274261, -0.5990282893180847, 0.010248059406876564, 0.827319324016571, -0.739514172077179, -0.7328634262084961, 1.0751757621765137, 0.4741308093070984, -0.6240909695625305, -0.3221971392631531, 0.1093888208270073, 0.3864601254463196, -0.29025182127952576, 0.2566743493080139, -0.7407736778259277, 0.21987788379192352, 0.18600672483444214, -1.436883807182312, -0.01773240603506565, 0.4741086959838867, 0.046652473509311676, 0.17852210998535156, -1.0264575481414795, 0.20604626834392548, -0.880550742149353, 0.5786106586456299, 0.5683877468109131, -0.7895752787590027, 0.07532284408807755, 0.10450639575719833, -0.3081131875514984, -0.24367529153823853, 0.07536505907773972, 1.3348501920700073, -0.2634458839893341, -0.12450671941041946, -0.4223625063896179, 0.2735476493835449, -0.5678325295448303, -0.9071984887123108, -0.31523042917251587, 0.32989540696144104, -0.42111557722091675, 0.057037413120269775, 0.2699583172798157, 0.11287137866020203, 1.368941068649292, 0.27678635716438293, 0.278382271528244, -0.051290325820446014, 0.06814631819725037, -1.25700843334198, 0.5996750593185425, 0.26601046323776245, 0.320438414812088, -0.4154609143733978, -0.10392297059297562, 0.740044355392456, -0.4571991264820099, 0.1383393406867981, 0.3758313059806824, 0.7675471901893616, 0.18833327293395996, 0.06464597582817078, -0.047067128121852875, 0.3996830880641937, 1.0922743082046509, 1.4202474355697632, 0.49911755323410034, -0.542047381401062, -0.8537009954452515, 0.6712677478790283, -0.7256267666816711, -0.7863814830780029, 0.7105740904808044, 0.32395225763320923, 1.403862714767456, -1.5797791481018066, -0.22262442111968994, 1.0949596166610718, 0.4289311170578003, 0.9105269908905029, 0.5268881916999817, -0.2967225909233093, -0.07136461138725281, 0.6400961875915527, 0.4792572855949402, 0.1341341733932495, 0.3147927522659302, -0.2585894763469696, -0.4778079092502594, 0.09672799706459045, -1.1995153427124023, 1.2808315753936768, -0.43483930826187134, 0.014775152318179607, -0.23508135974407196, -0.6106911301612854, -0.015441004186868668, 0.7544294595718384, 0.20957671105861664, 1.5453850030899048, -0.7137328386306763, -0.6405631899833679, 0.07361318916082382, -0.42958852648735046, 0.21422353386878967, -0.23410116136074066, -0.28437134623527527, -0.5531194806098938, -0.6428143382072449, -0.32278937101364136, 1.2371350526809692, -0.3466555178165436, -0.550739586353302, -1.120902180671692, -1.1623002290725708, 0.639529287815094, 0.9877740144729614, 1.4196640253067017, 0.6520272493362427, 0.016175750643014908, 0.24527262151241302, 0.6736499667167664, -1.0533338785171509, -0.26666519045829773, 0.2977798283100128, 0.20214639604091644, 0.05854948237538338, -0.9898889064788818, -0.06362899392843246, 0.515041172504425, 0.3612173795700073, -0.36910876631736755, 0.42961424589157104, 0.9249721169471741, 1.2319515943527222, -0.21077054738998413, -0.13307757675647736, 0.18559661507606506, -0.7530450820922852, -0.019924188032746315, 0.7675274014472961, -0.0940995067358017, -0.7033578753471375, -0.6260308027267456, -1.141030192375183, 0.9944878220558167, -0.003243391402065754, -0.7834214568138123, 0.9672824144363403, 0.05804022029042244, 0.7529647350311279, 0.17437833547592163, -0.2960168421268463, 0.23142343759536743, 0.19569650292396545, -0.10372275114059448, -1.1085902452468872, -0.2907989025115967, 0.4252842664718628, 0.056815702468156815, -0.19096538424491882, 0.609612762928009, 0.09463965147733688, -0.021803950890898705, 0.5483478307723999, 0.5593967437744141, 0.5354104042053223, 0.8603414297103882, 0.25792449712753296, -0.6315451264381409, 0.10481896996498108, -0.5238596200942993, -1.2216379642486572, 0.3966410160064697, 0.181648850440979, 0.05648419260978699, -0.6434867978096008, -0.4981532394886017, -0.08077327162027359, 0.014726143330335617, -0.2791728675365448, -0.4851676821708679, 0.28949782252311707, 0.32496124505996704, 0.021427186205983162, 0.3876534700393677, -0.1834963858127594, -0.42880815267562866, -0.31134262681007385, 0.5925952196121216, -0.03969950973987579, -1.4879759550094604, 0.16271157562732697, 0.40702149271965027, -0.7313592433929443, -0.4817143678665161, -0.3150131404399872, -0.1258876621723175, -0.9529712796211243, -1.4728704690933228, -0.9920972585678101, 0.27241021394729614, 0.8762505054473877, -0.9003586173057556, 0.22818326950073242, 0.6556129455566406, -1.3552792072296143, 0.3865613639354706, -0.06017347797751427, -1.1191624402999878, -0.3270103633403778, -1.2159639596939087, 0.8805866241455078, -0.4072345495223999, -0.06764720380306244, -0.6042758822441101, 0.8937357664108276, -1.3486356735229492, -1.7961666584014893, -0.2842681407928467, -0.08029428869485855, 1.4975799322128296, 0.6781835556030273, -0.41327014565467834, 1.383027195930481, 0.5733253359794617, -0.17134128510951996, 0.024107065051794052, 0.030183034017682076, -0.17322295904159546, 0.4624759554862976, 0.8808779120445251, 0.45328599214553833, 0.5401803255081177, 1.159169316291809, -0.433020681142807, 1.293070673942566, 0.09058183431625366, 0.5701318383216858, -0.7116849422454834, -0.3463583290576935, 0.08176802843809128, 0.24262641370296478, -1.7955207824707031, -1.324371337890625, -0.9376777410507202, -0.4255467355251312, -0.8061115145683289, 0.35648173093795776, 0.022542007267475128, -0.7521147727966309, 0.12576939165592194, -0.4252457618713379, 0.4083479642868042, -0.6802070140838623, 0.8002819418907166, -0.48855629563331604, -0.3252392113208771, -0.2258734107017517, 0.3546624183654785, -0.18938446044921875, -1.7257497310638428, 0.3595395088195801, -0.0727701187133789, 0.0929873138666153, -0.017641272395849228, 0.45230379700660706, 0.5554929375648499, -0.27231186628341675, -0.3399033546447754, 1.6205244064331055, 0.7035176157951355, -0.3248961865901947, -0.3479553163051605, 0.22604838013648987, 0.8241024017333984, 0.46415796875953674, -1.1456769704818726, 0.055154867470264435, -0.6081198453903198, 1.546120047569275, -0.16210363805294037, 0.5550791025161743, 0.07492545247077942, 0.41652610898017883, -0.38231161236763, 0.44728535413742065, 0.6094284057617188, -1.05376398563385, -0.4367746114730835, 1.2001255750656128, 0.34208834171295166, -0.6489086747169495, 0.1653953492641449, 1.1312426328659058, 0.04155271127820015, -0.49898001551628113, 0.35837310552597046, 0.5958837866783142, -1.2124488353729248, 0.24283377826213837, -0.04183661565184593, -0.417633980512619, 0.20280523598194122, -0.4616214632987976, -1.0007860660552979, 0.2615979313850403, -0.38037651777267456, -0.8647757768630981, 0.7535824179649353, -0.8803194761276245, -0.736105740070343, 0.5226367712020874, -0.1669086515903473, -0.5551999807357788, -0.17660808563232422, 0.5373657941818237, 0.0916975662112236, 0.16879470646381378, 0.5195566415786743, -0.23317615687847137, 1.4745404720306396, -0.32700565457344055, 0.277624249458313, -1.2393951416015625, -0.28029465675354004, 0.3106653690338135, 0.13640786707401276, -0.29303979873657227, -0.1078326404094696, 1.0712851285934448, 0.08518673479557037, -0.8884454965591431, 0.07519974559545517, 0.0783829540014267, 0.36163702607154846, 0.12360300868749619, -0.5388208627700806, -0.25239601731300354, 0.27482303977012634, 0.554472804069519, -0.3103068470954895, -0.5761963725090027, -1.119819164276123, -0.21901632845401764, -0.725607693195343, 0.06663887947797775, -0.49955400824546814, 0.22727429866790771, -0.2391110211610794, -0.4014267325401306, -0.3720463812351227, -0.42453548312187195, 0.7957031726837158, -0.23409318923950195, 0.12234888225793839, -0.176981583237648, -0.15408308804035187, -0.08168063312768936, -0.6816852688789368, 0.2757051885128021, -0.030381962656974792, 0.1517183780670166, -0.08532287180423737, -1.20382821559906, -0.37145358324050903, -1.0494086742401123, 0.6052429676055908, 0.5632943511009216, 0.6056483387947083, 0.08460833132266998, -0.18182383477687836, -0.940401017665863, 0.6087831258773804, 0.18696744740009308, -0.43516409397125244, 0.2958184778690338, 1.0572186708450317, 1.662942886352539, 0.156502828001976, 0.48567646741867065, -0.6318287253379822, 0.3194512128829956, -0.6454656720161438, -0.6021624207496643, -0.4474721848964691, -0.44737109541893005, -0.4567560851573944], [0.024099497124552727, 1.61278235912323, -1.2872837781906128, 0.1971028596162796, 0.5523712038993835, 0.0723281130194664, 1.1483159065246582, -0.1422545462846756, -0.14118903875350952, 0.1481701135635376, -0.9285546541213989, 0.41217198967933655, -0.30304983258247375, 0.625805139541626, 0.017145710065960884, 0.7777690291404724, 1.7043431997299194, -0.849129319190979, 0.4163418412208557, 0.6984987258911133, -0.24855875968933105, -0.44819730520248413, 0.2548353374004364, 0.07249391078948975, -0.5237060189247131, 0.20315954089164734, -1.418403148651123, -0.4274279773235321, -0.0021310830488801003, -0.6948991417884827, 0.15510191023349762, -0.7671835422515869, -0.4019232392311096, 0.2541987895965576, -1.1739898920059204, -0.037069663405418396, 0.9604728817939758, 0.348585844039917, 0.6592346429824829, 0.9023092985153198, 0.6988990306854248, 0.08091511577367783, -0.7549648880958557, -1.6382136344909668, -0.25685110688209534, -0.4647488296031952, 0.6139760613441467, -0.3517680764198303, 0.06817197054624557, -0.4724419414997101, 0.5000678896903992, -0.7055692672729492, 0.30578848719596863, 0.36493849754333496, 0.4890557825565338, -1.027125597000122, -0.1103321984410286, -0.9547023177146912, 1.1185885667800903, -1.3089404106140137, 0.8608763813972473, 0.20488499104976654, -0.17186489701271057, 0.6703652143478394, 0.2141026109457016, -0.5291357636451721, -0.49151521921157837, 0.17822907865047455, 0.5743759274482727, -0.02176254242658615, 0.32455989718437195, 0.3881690204143524, -0.24134360253810883, -0.05515316501259804, -1.1178168058395386, 0.31589198112487793, 1.0009998083114624, 1.32624351978302, 0.39272844791412354, 0.6158549189567566, 0.21825240552425385, -0.7608513832092285, 0.20164135098457336, -0.42832860350608826, 0.2579718828201294, -0.5043830871582031, 0.053070783615112305, -0.1682049036026001, -1.116913914680481, 1.656273603439331, 0.6597716808319092, -0.5138463973999023, 0.5582615733146667, -0.3112126886844635, -0.06349212676286697, -1.4382585287094116, 0.19105121493339539, 0.5109151601791382, -0.7833043932914734, -0.48241478204727173, 0.20974043011665344, -0.5082629919052124, -0.5343791246414185, -0.0828699991106987, -0.5996955633163452, 0.8480787873268127, -0.15620489418506622, -0.5420575737953186, -0.32397258281707764, -0.30402612686157227, -0.03960594907402992, -0.030535271391272545, -0.6958920359611511, -1.3283103704452515, -0.6701505184173584, 0.4373582601547241, 1.102300763130188, -0.5581581592559814, 0.33524686098098755, 0.6003331542015076, 0.0026905559934675694, -0.5065199136734009, -0.5690634250640869, 0.14734631776809692, -0.20803719758987427, 0.26231101155281067, -0.5293625593185425, -0.3098019063472748, -0.310716450214386, -0.5921658277511597, 0.2971113622188568, 0.9276812076568604, -0.3020523488521576, 0.9167003631591797, -0.7280842661857605, 1.7016992568969727, -0.3476540744304657, -0.48852965235710144, -0.2327347844839096, -0.00184996472671628, 0.4178888201713562, 0.4291163980960846, -0.29770687222480774, -0.13334032893180847, 0.5003362894058228, -0.7862250804901123, -0.05129208415746689, 0.44547706842422485, -0.7056489586830139, 0.4693426489830017, -0.44214922189712524, 0.06351436674594879, 0.6070099472999573, 0.034621644765138626, -0.032575491815805435, -0.09513351321220398, -0.10843203961849213, 0.15506476163864136, 0.5950025916099548, -0.48367613554000854, 0.41808274388313293, -0.2187412828207016, -1.0866702795028687, 0.4306308925151825, -0.6981176733970642, -0.316972553730011, 0.33629992604255676, 1.2176662683486938, 0.553968071937561, 0.8886430263519287, -0.8807761073112488, 0.35514411330223083, 0.05451539158821106, 0.14253482222557068, -0.2534849941730499, -0.5512840151786804, 0.873341977596283, -0.24621377885341644, -1.2637920379638672, -0.6873716711997986, 0.8263838291168213, -0.7130767107009888, 0.20297282934188843, -0.8635857105255127, -0.2836379110813141, -0.6969680786132812, 0.8745371103286743, -0.3510313928127289, -0.1566791832447052, -0.01598689891397953, 0.15953393280506134, -0.6112489104270935, -0.18028658628463745, 0.36143702268600464, -0.3093571066856384, -0.16934755444526672, 0.5251832604408264, -1.177958369255066, 0.1076420247554779, 0.5463577508926392, 0.12111682444810867, 0.2812817096710205, -0.6371245384216309, 0.7717345356941223, -0.4952543079853058, 0.7304456233978271, -0.3757901191711426, 0.3890087902545929, -0.3866969048976898, -0.13584446907043457, 0.7365695834159851, -0.5537475943565369, -0.022047044709324837, 0.36123159527778625, 0.2238594889640808, -0.6652969121932983, 0.5666759610176086, 0.126027911901474, -0.6571730971336365, 0.35629767179489136, 0.17157763242721558, 0.28381648659706116, 0.0769067034125328, 0.45456409454345703, 0.13565579056739807, -0.06376788765192032, -1.0032182931900024, -0.828021228313446, -0.04188801720738411, -0.06151673197746277, 0.13310903310775757, -1.3110395669937134, 0.27546700835227966, 0.5535112619400024, -0.5871931910514832, 0.3143085241317749, -0.26871660351753235, -0.0026038046926259995, 0.07970952987670898, 0.9840859174728394, 0.17577797174453735, 0.3758544325828552, -0.5403075218200684, -0.4380464255809784, -0.725681722164154, -0.11845897138118744, 0.7912559509277344, -0.26264312863349915, 0.2522428333759308, 0.9957764148712158, 0.9350719451904297, 0.15589943528175354, 0.24141302704811096, 0.33100128173828125, 0.10808978229761124, -0.5629264712333679, -0.7640597820281982, 0.1906539797782898, -0.843826174736023, 1.1462146043777466, 0.62115478515625, -0.6426302790641785, -0.35923534631729126, -0.5774511694908142, -0.4789682626724243, -0.35296815633773804, -0.398855984210968, 0.022365912795066833, -0.07208604365587234, 0.7375155687332153, -0.07088183611631393, 1.2092328071594238, 0.17687194049358368, 0.24605940282344818, -0.45446670055389404, -0.028403885662555695, -0.24422648549079895, 0.21692568063735962, -0.0051864865235984325, 0.8732929825782776, -0.31664860248565674, -1.3999680280685425, -0.2420659065246582, 0.3263595402240753, 0.925220787525177, -0.20929190516471863, -0.8243553638458252, -0.07955676317214966, 0.11870915442705154, -0.3083045780658722, 0.04374552518129349, -0.48138514161109924, -0.04587589204311371, -0.1594783365726471, 0.4193669259548187, 0.2753060758113861, 0.4178066849708557, 0.3132481873035431, -0.6520324349403381, 0.09327415376901627, 0.3512148857116699, 0.7469817399978638, 0.6303008198738098, 1.087027668952942, -0.053355466574430466, 0.30991441011428833, 0.03445068746805191, 0.3495427966117859, -0.8733498454093933, -0.5993338227272034, -0.8281490206718445, -0.8911318182945251, 0.4561253488063812, 0.31324535608291626, 0.08962638676166534, 0.7053890228271484, -0.2598251402378082, 0.7335734963417053, 0.6156778931617737, -0.6081653237342834, -0.5657902359962463, 0.3823425769805908, -0.42466607689857483, -0.6831197738647461, 0.4583706855773926, 1.5172648429870605, -0.3890075385570526, -0.663373589515686, -0.4158579111099243, -0.6064075231552124, -0.15545178949832916, 0.7030922174453735, -0.34846895933151245, -0.9058718085289001, -0.3675714135169983, 0.17183765769004822, 1.710692286491394, -0.23722505569458008, -0.702453076839447, -0.5633239150047302, 0.4611780345439911, 0.2665007710456848, -0.8729168772697449, -0.21946518123149872, 0.728356659412384, -0.5600430369377136, -0.20155327022075653, 0.103882797062397, 0.6925026178359985, 0.9600088596343994, -0.11055050790309906, -0.40569624304771423, -0.1724196821451187, -0.2775096297264099, -0.026869872584939003, 0.12633465230464935, -0.9181404113769531, 1.0165551900863647, -0.1163528561592102, -0.3743198812007904, 0.7631550431251526, 0.18013174831867218, 0.232317253947258, -1.050857424736023, 0.36713188886642456, 0.1125263124704361, 1.9326623678207397, -0.5846933126449585, 0.4950870871543884, 0.617887556552887, 0.21814750134944916, 0.29407066106796265, 0.5409765839576721, 1.18352472782135, -0.11522713303565979, -0.8626157641410828, -0.4854515790939331, -0.43216919898986816, -0.6573565602302551, -0.45800819993019104, -0.2537720203399658, 0.5132047533988953, -0.793635368347168, -0.4433037042617798, 1.2514588832855225, 0.6741164326667786, 0.16496555507183075, -0.40538421273231506, 0.25214964151382446, 0.29054173827171326, -1.2075543403625488, 0.5987358689308167, 0.008949394337832928, 0.24899724125862122, 0.21430270373821259, -0.7644011378288269, 0.23959586024284363, 0.04981113225221634, 0.19546964764595032, 0.5129390954971313, -0.9178162217140198, 0.4930404722690582, -0.5067194104194641, 0.5849894881248474, 0.280679315328598, -0.40672290325164795, 0.19853165745735168, 0.23902057111263275, 0.07873988896608353, -0.517998993396759, 0.41830167174339294, 0.12137464433908463, -0.4707193672657013, 0.03981064260005951, -0.28136923909187317, -0.47159257531166077, -0.6404198408126831, -0.0727245882153511, -0.3128519356250763, 0.4846423864364624, -1.026105284690857, -0.14160320162773132, 0.4746474027633667, 0.08743787556886673, 0.05847792327404022, 0.37638434767723083, 0.5992720127105713, -0.1103743389248848, 0.015607777051627636, -1.2948317527770996, 0.14458686113357544, 0.39171209931373596, -0.3318217992782593, -0.6175237894058228, 0.3661174178123474, 0.26009097695350647, 0.06332004070281982, -0.24064664542675018, 0.18088465929031372, 0.8625873923301697, 0.2566303014755249, -0.2018297165632248, 0.24689127504825592, 0.9836534857749939, 0.6947566866874695, 1.2344131469726562, 0.32168224453926086, -0.6290138363838196, -0.8108658790588379, 0.5503568649291992, -1.3083399534225464, -0.18248343467712402, 0.3311057686805725, 0.27363121509552, 1.0646485090255737, -0.7385041117668152, -0.5673964023590088, 0.6987094283103943, -0.5100202560424805, -0.09635081142187119, 0.2138567864894867, -0.21762752532958984, 0.6216381192207336, 0.699308454990387, 0.4370194971561432, -0.014034301042556763, -0.06930001080036163, -0.640213131904602, 0.40257441997528076, -0.09065313637256622, -1.0964081287384033, 0.8284755945205688, -0.023306628689169884, 0.5067873597145081, 0.1229337602853775, -0.10132913291454315, 0.005862309597432613, 0.27591484785079956, 0.03739543631672859, 1.4123579263687134, 0.1166786253452301, -0.8791759610176086, -0.22060267627239227, -0.9263213276863098, 0.8826801180839539, -0.09948215633630753, -0.0777638778090477, -0.39521855115890503, -0.6866819858551025, 0.02634487859904766, 0.6007616519927979, -0.9098187685012817, -0.3104247748851776, -0.10073871910572052, -1.0939725637435913, 0.19375048577785492, 0.6895636320114136, 1.2598634958267212, 0.6553935408592224, -0.055051252245903015, 0.7177859544754028, 0.8080744743347168, -0.9546420574188232, 0.09946952015161514, -0.15603141486644745, 0.0540207177400589, 0.16100406646728516, -1.0794243812561035, 0.01409384235739708, 0.2323550581932068, 0.1496981829404831, -0.41068628430366516, 0.21867631375789642, 0.12066931277513504, 0.8997024297714233, 0.17937122285366058, 0.09038417041301727, 0.41628387570381165, -0.4075116515159607, 0.6727595925331116, 0.2591313123703003, 0.06614209711551666, -0.0793008953332901, -1.3956774473190308, -1.0591635704040527, 0.8787499666213989, -0.6842061281204224, 0.04635247960686684, 0.7442854046821594, 0.24899692833423615, -0.33564862608909607, 0.5458401441574097, -0.3895465135574341, -0.2682938575744629, 0.12546081840991974, -0.3482512831687927, -0.7416942119598389, 0.7326764464378357, 0.533645510673523, 0.31868088245391846, 0.4960036873817444, 0.36569568514823914, 0.3335627317428589, -0.5993911623954773, 0.5407992601394653, -0.21856029331684113, 0.3325647711753845, 1.0725253820419312, 1.1035401821136475, -0.756064236164093, 0.45491907000541687, 0.06844180077314377, -0.7651418447494507, 0.3578195571899414, 0.5174524784088135, 0.344601035118103, -0.11844445765018463, -0.799584686756134, -0.3110579550266266, -0.3001156151294708, -0.059999074786901474, -0.43880701065063477, 1.2287206649780273, 0.26012372970581055, 0.1556345373392105, -0.264815092086792, -0.8940236568450928, 0.06889399141073227, -0.2371354103088379, 0.6904928088188171, 0.5024905800819397, -1.198060393333435, -0.35621485114097595, 0.19763998687267303, -0.7283395528793335, -0.2797439992427826, 0.4855887293815613, 0.23128995299339294, -0.6560498476028442, -1.1523852348327637, -0.025926467031240463, 0.8007264733314514, 0.3301100730895996, -0.9638558030128479, 0.8966237902641296, 0.6098824739456177, -1.3520402908325195, -0.17230123281478882, 0.7422540187835693, -1.3468613624572754, -0.47674354910850525, -1.599629521369934, 0.7366833090782166, 0.7402825951576233, -0.2340145707130432, -0.4867122173309326, 0.9024441242218018, -1.1483641862869263, -0.574287474155426, -0.2507161796092987, 0.18877898156642914, 0.30635055899620056, 1.1101763248443604, -0.19323061406612396, 1.0151807069778442, -0.1916385143995285, 0.3749224841594696, -0.14950749278068542, 0.1680125743150711, -0.2389630526304245, 0.6365354061126709, 0.2643461525440216, -0.0979766994714737, -0.031877607107162476, 0.8888420462608337, 0.11171810328960419, 1.3965284824371338, -0.22801820933818817, 0.6917116641998291, -1.0762561559677124, 0.2422369420528412, 0.5192760229110718, 0.3026675283908844, -1.4560760259628296, -0.8622616529464722, -0.7293417453765869, -0.3099527359008789, -0.8445774912834167, 0.26301220059394836, 0.19091679155826569, -0.6939679384231567, -0.012391308322548866, -0.20930324494838715, 1.0093318223953247, -0.27716535329818726, 0.8902013301849365, 0.06320540606975555, -0.4008239507675171, 0.003034539520740509, 0.17148993909358978, 0.060588765889406204, -1.5566916465759277, 0.25042250752449036, -0.051687102764844894, -0.059167079627513885, -0.044469401240348816, 0.4487185776233673, 1.2057024240493774, 0.3841399550437927, -0.18764697015285492, 0.8317543268203735, 0.6390027403831482, -0.6748913526535034, -0.43731239438056946, 0.4022645056247711, 0.492590993642807, 0.4039310812950134, -0.3127852976322174, -0.15122941136360168, -0.011742017231881618, 1.2557721138000488, -0.44276198744773865, 0.3687899708747864, -0.15770934522151947, 1.1160154342651367, -0.20089776813983917, -0.15684086084365845, 0.7162041664123535, -0.7641870975494385, 0.1577548384666443, 0.9566478133201599, 0.10699491947889328, -0.47555088996887207, 0.2086414247751236, 1.502020239830017, -0.40335047245025635, -0.012570706196129322, -0.1875118464231491, 0.4179307818412781, -0.613853931427002, -0.038134437054395676, 0.27691373229026794, -0.7177712917327881, 0.10377170890569687, -0.33018985390663147, -1.2251551151275635, -0.42685455083847046, -0.7803847193717957, -1.0106706619262695, 0.3235541880130768, -0.9273558259010315, -0.6745839715003967, 0.7617321014404297, 0.09127259999513626, 0.10658041387796402, 0.06435088813304901, 0.3106776773929596, -0.03289977088570595, -0.05617431551218033, 0.874635636806488, -0.3192230463027954, 1.400316596031189, -0.12169138342142105, 0.16642075777053833, -1.4300740957260132, 0.015917113050818443, 0.03264256939291954, 0.21035560965538025, -0.1943221241235733, 0.06177695095539093, 0.6067206263542175, 0.02393663302063942, -0.6719284057617188, 0.15181629359722137, -0.4241684079170227, 0.4319802522659302, 0.013781839050352573, -0.11456017941236496, 0.22984349727630615, -0.14984102547168732, 0.8014810681343079, 0.14230692386627197, -0.5340328812599182, -0.1487705111503601, 0.35230574011802673, -0.4872981905937195, 0.8054841160774231, 0.2023446261882782, 0.6115027070045471, -0.4923569858074188, 0.13384748995304108, 0.11806041747331619, -0.013316693715751171, -0.19812379777431488, -0.3160353899002075, -0.18235677480697632, -0.200078547000885, -0.016268400475382805, -0.2824689447879791, -0.7238604426383972, 0.2953432500362396, -0.188467875123024, -0.6398076415061951, -0.43159744143486023, -0.3973378539085388, -0.5567381381988525, -0.8355562090873718, -0.34130367636680603, 0.4525015354156494, 0.31790632009506226, -0.06718955934047699, -0.34387895464897156, 0.05396614968776703, 0.16557493805885315, -0.25188499689102173, -0.8012185096740723, 0.15806110203266144, 0.9409891366958618, 1.2439619302749634, 0.21333886682987213, 0.43664732575416565, -0.4758268892765045, 0.1581675112247467, -0.24304720759391785, -0.20483331382274628, -0.49936383962631226, 0.013462400995194912, -0.67444908618927], [-0.6637035012245178, 1.7007256746292114, -2.3865151405334473, 0.32818448543548584, 0.8187966346740723, 0.5280167460441589, 1.3297975063323975, 0.07123617827892303, 0.06926138699054718, -1.0074118375778198, -0.6623837351799011, -0.0642705038189888, 0.22880204021930695, 1.4889858961105347, 0.9916385412216187, -0.2626970112323761, 0.34339284896850586, -0.4731641709804535, 0.7226782441139221, 1.5794146060943604, 0.1695283055305481, -0.18701328337192535, 0.1691107302904129, -0.32420727610588074, -0.21882569789886475, -0.21595799922943115, -1.3381949663162231, -0.1654331535100937, -0.8849712610244751, -1.3606007099151611, 0.7144103646278381, -0.6924144625663757, -0.2549690306186676, -0.14266356825828552, -0.9713084697723389, -0.18139512836933136, 1.43259596824646, 0.9229257106781006, 0.46147215366363525, 0.08303559571504593, 1.4301130771636963, -0.09111737459897995, -0.3080030083656311, -1.1785413026809692, -0.03348304331302643, 0.010088006034493446, 0.3761616349220276, -0.6179434061050415, 0.34043970704078674, -0.9082162976264954, 0.5481278896331787, -0.6240735054016113, 0.9972012042999268, 1.6666818857192993, 0.7889511585235596, -0.13259761035442352, 0.6048007011413574, 0.02333826571702957, 1.0242124795913696, -0.3889000415802002, 0.021029815077781677, 0.42328429222106934, -0.11586099117994308, 0.11531757563352585, -0.20473924279212952, 0.49868282675743103, 0.3128296434879303, 0.2680668532848358, -0.3093874752521515, 0.06638378649950027, 0.08123498409986496, 0.22446948289871216, -0.537703812122345, 0.9080032110214233, -1.211835503578186, 1.0212814807891846, 0.4014967978000641, 0.671763002872467, 0.4804268777370453, 0.8602849245071411, -0.62863689661026, -0.30938103795051575, 0.4528465270996094, -0.27651447057724, 0.4506150186061859, -0.16216598451137543, 0.30583131313323975, -0.41630521416664124, -0.7829667925834656, 1.9846925735473633, 0.43609586358070374, -0.44423624873161316, 0.7777806520462036, -0.3820267915725708, -0.31580600142478943, -0.6343475580215454, 0.5032760500907898, -0.37979063391685486, -0.627795934677124, -0.46186015009880066, -0.7894115447998047, -0.9412638545036316, 0.4761228859424591, 0.15043123066425323, -0.4337927997112274, 1.5617594718933105, 0.02750977873802185, 0.3390207588672638, -0.5860256552696228, 0.1467439979314804, -0.35771825909614563, 0.2883647680282593, -0.2629537284374237, -0.9571811556816101, -0.7655080556869507, 1.0949143171310425, 1.541616678237915, -0.32508084177970886, 0.46022534370422363, 0.7891960740089417, 0.3849305808544159, -0.40356215834617615, 0.06012210249900818, 1.0313785076141357, 0.5522201657295227, -0.0010576192289590836, -0.017471401020884514, -0.6061480045318604, -0.45556142926216125, -0.17085951566696167, -0.0802687555551529, 0.011842574924230576, -0.024397658184170723, 0.9302688241004944, -0.5521960854530334, 1.1232845783233643, -0.11282506585121155, -0.5713887214660645, -0.09612950682640076, -0.5808862447738647, 0.5513085126876831, -0.05839720368385315, -0.2595866620540619, -0.3185345232486725, 0.48706966638565063, -0.8895366191864014, 0.32449302077293396, -0.3271481990814209, -0.18679915368556976, 0.30616047978401184, -0.5154644846916199, 0.3848057985305786, 0.4457091987133026, 0.5511382818222046, 0.5846165418624878, 0.4486847221851349, -0.47443023324012756, -0.060944050550460815, 0.5446040034294128, 0.3118634521961212, 0.5892691612243652, -0.02733546867966652, -0.49994727969169617, 0.5983694195747375, 0.3510884940624237, -0.18729938566684723, 0.47861239314079285, 0.28628799319267273, -0.1295674443244934, 0.942902147769928, -0.2755526602268219, -0.4415948688983917, 0.16468611359596252, 0.49222591519355774, -0.3527291417121887, -0.9437169432640076, 1.1870988607406616, -0.8096833229064941, -1.3928260803222656, -1.095729112625122, -0.5645040273666382, -0.7950483560562134, 0.2997433841228485, 0.048248738050460815, 0.7936709523200989, -0.4430103600025177, 0.42832568287849426, -0.31872525811195374, -1.0013223886489868, -1.0081336498260498, -0.518872082233429, -0.11333851516246796, -0.5760119557380676, 0.16042280197143555, -0.6203251481056213, -0.22567668557167053, 0.1412803679704666, -1.2850205898284912, -0.4755747616291046, 0.0498952716588974, -0.4310522675514221, -0.4732211232185364, -0.6876217722892761, 0.3901950418949127, -0.5804007649421692, 1.1854157447814941, -0.9848116636276245, 0.5014843940734863, -1.136102557182312, -0.032348595559597015, 1.021713376045227, -0.7841569185256958, -1.1100749969482422, 1.089048147201538, -0.15796591341495514, -1.1185827255249023, -0.23114325106143951, 0.037258174270391464, -0.2552216947078705, 0.06310746818780899, 0.2600458860397339, 0.3754599392414093, 0.6454477310180664, 0.5277140140533447, 0.2907443344593048, -0.03426109254360199, -0.510351300239563, -0.6018181443214417, -0.6181142926216125, 0.26030394434928894, -0.558214008808136, -1.184861183166504, 0.32710325717926025, -0.2632600963115692, -1.5075547695159912, -0.25017744302749634, -0.32372406125068665, 0.23889043927192688, 1.1028683185577393, 1.4764482975006104, 0.1877497434616089, 0.5859331488609314, -0.2567910850048065, -0.11529961228370667, -0.22712847590446472, 0.8601303696632385, 0.2550209164619446, -0.6624475121498108, -0.15984901785850525, 0.9701080918312073, 0.5540070533752441, -0.14058083295822144, 0.4943850636482239, -0.4299151301383972, -0.27897757291793823, -0.6333277225494385, -0.5912328958511353, 0.7425484657287598, -0.4898470938205719, 1.938425064086914, 0.2358751893043518, -1.4770673513412476, -0.5837336182594299, -0.08796724677085876, -0.04661395400762558, -0.2321997880935669, -0.7159615159034729, -0.26405125856399536, -0.24835672974586487, -0.17207422852516174, -0.10746804624795914, 0.5108724236488342, -0.36206433176994324, 0.45642781257629395, -0.4174301326274872, -0.5459164381027222, -0.3498539626598358, 0.6560912132263184, 0.18686729669570923, 0.5059537291526794, -0.061123237013816833, -1.1896928548812866, -0.30967211723327637, -0.3190576136112213, 0.7682330012321472, 0.03426172584295273, -0.3717350959777832, 0.01292475312948227, 0.18808989226818085, -0.8717504739761353, 0.3733397126197815, 0.3210924565792084, -0.5257514119148254, 0.029241446405649185, -0.10246456414461136, 0.8793328404426575, 1.1851855516433716, -0.8693889379501343, -0.9978488683700562, -0.9335677027702332, 0.9679273366928101, 1.0235551595687866, 0.5222618579864502, 1.35768461227417, 0.12199224531650543, 0.004372464492917061, -0.1558249592781067, -0.12526409327983856, -0.5142362713813782, -0.1541273146867752, -0.7309401035308838, -0.32709938287734985, 0.15540838241577148, -0.16325445473194122, 0.5508649349212646, 0.21666288375854492, 0.0640842542052269, 0.5432366728782654, 0.9532769918441772, 0.19675758481025696, -1.0740211009979248, -0.4234125316143036, -0.4582139551639557, -0.6203019618988037, 0.2929120659828186, 1.4165492057800293, -1.2824511528015137, -0.6921964883804321, 0.3328317105770111, 0.3030394911766052, 0.5272448658943176, 0.03777438774704933, 0.407549113035202, -1.8328111171722412, -0.802032470703125, -0.06182730197906494, 0.9422204494476318, 0.3129068911075592, 0.10061990469694138, -0.8792119026184082, 0.6839107275009155, 0.9753267168998718, 0.29535675048828125, -0.5647833943367004, 1.2838869094848633, -0.7639098167419434, -0.6296120285987854, 0.040802065283060074, -0.33171483874320984, 0.4395841956138611, -0.1541542112827301, -0.07852411270141602, -0.42613548040390015, -0.11642054468393326, -0.4183048605918884, 0.725654125213623, 0.0094398632645607, 0.7790040373802185, -0.11232996731996536, 0.031140822917222977, 0.7662431597709656, 0.5825857520103455, -0.6881747841835022, -1.3950735330581665, 0.4873746633529663, 0.7796107530593872, 0.781050980091095, 0.03359507396817207, -0.281901478767395, 0.5027554035186768, 0.36189448833465576, 0.689267098903656, 0.28617849946022034, 0.7472220063209534, 0.2132333219051361, -0.3843630850315094, -0.9098767638206482, 0.4234384000301361, -0.4116569757461548, -0.43929818272590637, -0.4151689410209656, 0.2604542076587677, -0.5352533459663391, -1.0592143535614014, 0.8988050222396851, 0.4168383479118347, -0.06551200896501541, -0.13625559210777283, -0.2003653645515442, 0.46070319414138794, 0.04864190146327019, 0.7055330276489258, -0.5162699222564697, 0.08295495808124542, 0.23523074388504028, -0.9576525688171387, -0.2843168377876282, -0.31433236598968506, 0.5122551918029785, 0.9809737801551819, -0.9731190204620361, 0.6596513390541077, -0.5289311408996582, 0.3775694668292999, 0.2736079692840576, -0.39195194840431213, 0.4394955635070801, 0.0909070149064064, -0.16670621931552887, -0.08235521614551544, -0.0330057255923748, 1.4392038583755493, -0.5409523844718933, 0.16121695935726166, 0.5640354752540588, 0.2256692796945572, -0.2766116261482239, -0.8885864019393921, -0.3540617823600769, 0.3211594223976135, -0.49589499831199646, 0.26861318945884705, 0.8174896240234375, -0.042585112154483795, 1.2810654640197754, 0.6742920279502869, 0.35420599579811096, 0.5299957990646362, 0.10632161051034927, -0.8095777034759521, 0.1092858761548996, 0.30461519956588745, -0.245682030916214, -0.23600278794765472, 0.019541004672646523, 0.6858992576599121, -0.9224509000778198, 0.5816776752471924, 0.4681817293167114, 0.4347721040248871, 0.7980743646621704, -0.16627494990825653, -0.5149189233779907, 0.912706196308136, 1.2264084815979004, 1.0556086301803589, 0.3409196138381958, -0.18850372731685638, -0.6889969110488892, 0.5669710636138916, -0.9366416335105896, -0.3157118260860443, 0.8144436478614807, 0.11650088429450989, 1.0240271091461182, -1.3323613405227661, 0.2242617905139923, -0.004324199631810188, 0.54398113489151, 0.6672683358192444, 0.3246696889400482, -0.4462765157222748, 0.12518998980522156, 0.3462200164794922, 0.6570059657096863, -0.1250687837600708, -0.027423087507486343, 0.3608214259147644, -0.6247666478157043, 0.2471420168876648, -0.731792151927948, 0.1314474195241928, -0.9519599676132202, -0.4504765272140503, -0.1104721650481224, -0.30810120701789856, -0.002063627354800701, 0.8588070869445801, 0.4856512248516083, 1.0032944679260254, -0.2756172716617584, -0.607537031173706, 0.2560024857521057, -0.8704848885536194, 1.1588736772537231, -0.5021655559539795, -1.1765834093093872, -0.43723243474960327, -0.6043171286582947, -0.3530527949333191, 0.20714624226093292, -0.3476372957229614, -0.6298576593399048, -0.7888908386230469, -1.136826515197754, 0.4064159691333771, 0.6055424809455872, 1.2615541219711304, 0.47079792618751526, 0.2095699906349182, 0.39963361620903015, 0.386752188205719, -0.4270440936088562, -0.044057365506887436, 0.5855367183685303, 0.42113161087036133, 0.2923419773578644, -1.0824958086013794, -0.5129514932632446, 0.39183205366134644, -0.053455159068107605, 0.06392760574817657, 0.4231188893318176, 1.0270802974700928, 1.3106739521026611, 0.12937748432159424, 0.1868867129087448, -0.029882367700338364, -0.6911647319793701, 1.0561248064041138, 0.6909815669059753, -0.26411446928977966, -0.045690178871154785, -1.1849188804626465, -1.4706088304519653, 0.7467874884605408, -0.5799452662467957, -0.6634688377380371, 1.5294253826141357, 0.6980526447296143, 0.6358637809753418, 0.12711557745933533, -0.4013309180736542, 0.2517581284046173, -0.02771984413266182, -0.21110700070858002, -0.9070370197296143, 0.04442242160439491, 0.2450111359357834, 0.027083760127425194, -0.540132999420166, 0.4130012094974518, -0.04709754139184952, -0.5648490190505981, 0.21363559365272522, -0.32628610730171204, 0.47101572155952454, 0.5723029375076294, 0.4137096703052521, -0.9200223088264465, -0.22592639923095703, -0.4148382544517517, -0.22537147998809814, -0.13010551035404205, 0.5603045225143433, 0.36917003989219666, -0.7769253849983215, -0.10816855728626251, -0.41896113753318787, -1.1431934833526611, 0.5468283891677856, -0.07569749653339386, 0.7496265172958374, 0.06206159293651581, 0.13966159522533417, -0.2825210690498352, -0.24755023419857025, -0.2094109058380127, -0.4568130075931549, 0.2811056077480316, 0.14386625587940216, -0.9061946272850037, 0.11472183465957642, -0.10360154509544373, -0.5680897235870361, -0.4321449100971222, -0.11606967449188232, 0.7453295588493347, -1.1810698509216309, -1.2464442253112793, -0.8097202777862549, 0.6265636086463928, 1.1778833866119385, -0.7738732099533081, 0.7371624708175659, 0.5346580743789673, -1.3899259567260742, 0.6939437985420227, -0.03249151632189751, -0.853168249130249, -0.05666273087263107, -1.1006358861923218, 0.8800273537635803, -0.48522791266441345, 0.13469228148460388, -0.7993419766426086, 1.3462624549865723, -1.9364935159683228, -0.6998382806777954, -1.035981297492981, 0.0339825265109539, 1.3280584812164307, 0.2642259895801544, -0.4991031587123871, 1.3823288679122925, 0.34372636675834656, -0.0548153780400753, -0.38615110516548157, 0.41394931077957153, -0.23970502614974976, 0.06299182027578354, 0.5343348383903503, 0.48697322607040405, 0.41927242279052734, 1.0737496614456177, -0.5033152103424072, 0.7401375770568848, -0.03522931784391403, 1.0120294094085693, -0.4106784760951996, -0.7411539554595947, 0.01339229941368103, 0.8186988830566406, -0.9233930110931396, -0.6849533319473267, 0.05028742179274559, -0.3635309040546417, -0.9495806694030762, 0.6838861107826233, 0.628710925579071, -1.097245216369629, 0.06900740414857864, -0.443460613489151, 0.27049505710601807, -1.128893256187439, 0.3578343093395233, 0.3655955493450165, -0.36912432312965393, -0.3070189356803894, 0.29058316349983215, -0.05059466511011124, -1.1131303310394287, 0.815642774105072, 0.008191651664674282, 0.19685699045658112, -1.0680562257766724, 0.5173951387405396, 0.40611782670021057, 0.08578859269618988, -0.5347012877464294, 1.0482321977615356, 0.5248112082481384, -0.08409784734249115, 0.19239258766174316, 0.06888725608587265, -0.3353995084762573, 0.5626688003540039, -0.37308424711227417, -0.30724477767944336, -0.7441048622131348, 1.4158215522766113, 0.11826534569263458, 0.46695661544799805, -0.3846327066421509, -0.26387742161750793, -0.6712406873703003, -0.05984823405742645, 0.5642603039741516, -0.401452898979187, 0.2451583594083786, 1.2354789972305298, 0.1796492040157318, -0.3276327848434448, 0.2771647572517395, 0.58309006690979, 0.47757676243782043, -0.7745482325553894, 0.1837855875492096, 0.44813239574432373, -0.5051047205924988, 0.33239954710006714, 0.5517258048057556, -0.47564393281936646, -0.3869697153568268, -0.3392046391963959, -0.7970567345619202, -0.25540414452552795, -0.709083616733551, -0.7945480942726135, 1.102787971496582, -0.8807238340377808, -0.9426085948944092, 0.7590022683143616, -0.11011920869350433, -0.4453219771385193, -0.2968994677066803, 0.1920308619737625, -0.17418444156646729, 0.020223896950483322, 0.775398313999176, 0.6053617000579834, 1.0583393573760986, -0.3361489176750183, 0.0561143197119236, -0.5046136379241943, -0.30377915501594543, 0.04923628643155098, 0.0664215087890625, -0.33609676361083984, -0.17360492050647736, 0.3352092504501343, -0.24437807500362396, -0.979496955871582, 0.18238963186740875, -0.3106496036052704, 0.7426689863204956, 0.16078180074691772, -0.8382653594017029, 0.5982644557952881, 0.5789128541946411, 0.08926781266927719, -0.08074686676263809, -0.7554231286048889, -1.320533037185669, 0.16831718385219574, -0.7133320569992065, 0.09502659738063812, -0.2946096360683441, 0.6254913806915283, 0.520075798034668, -0.02630133554339409, -0.32994192838668823, -0.47780147194862366, 0.25795358419418335, -0.6278437376022339, 0.04144622012972832, 0.13889473676681519, 0.3102087676525116, -0.13880927860736847, -0.4301035404205322, 0.4409535229206085, -0.018068574368953705, -0.18283788859844208, 0.3565342128276825, -1.1310495138168335, -1.0940556526184082, -0.7209709286689758, 0.24213163554668427, 0.894615113735199, 0.1568307727575302, 0.0716126561164856, 0.05613752081990242, -0.8952615857124329, 0.2688196003437042, 0.09090244024991989, 0.48534250259399414, 0.16077399253845215, 0.8049941062927246, 1.6036218404769897, -0.18651527166366577, 0.7537996172904968, -0.1702447086572647, 0.44508638978004456, -0.95538729429245, -0.6891893148422241, -0.6723147630691528, -0.2927860617637634, -0.4514232277870178], [0.07751896232366562, 1.7977232933044434, -2.1010799407958984, -0.651226282119751, 1.049600601196289, -0.11918643862009048, 1.7643197774887085, -0.6091006398200989, -0.21788553893566132, -0.5111470222473145, -0.5206667184829712, -0.525762140750885, 1.0882748365402222, 0.5904139280319214, -0.3193472623825073, 0.2952234447002411, 0.6611694693565369, -0.501270055770874, 0.4789320230484009, 0.9148319959640503, -0.022827208042144775, -0.34822070598602295, 0.3947288990020752, 0.3236476182937622, -0.8765907287597656, 0.05186789110302925, -0.9977331757545471, -0.417327880859375, -0.22014664113521576, -0.5909876227378845, 1.339623212814331, -0.8501608967781067, -0.04372161999344826, -0.15938177704811096, -1.2507538795471191, -1.1707589626312256, 1.9214189052581787, 0.7218552827835083, 0.5958361625671387, 1.6414713859558105, 2.164593458175659, 0.3109276294708252, -0.05934838950634003, -1.6571440696716309, 0.31821104884147644, -0.4587549567222595, 0.5705660581588745, -0.82591313123703, 0.7227715849876404, -1.0266239643096924, 0.08931706845760345, 0.357223778963089, 0.5398138165473938, 0.8241189122200012, 0.36752697825431824, 0.04128119349479675, 0.04131292179226875, 0.34373748302459717, 0.9577665328979492, -0.7271559238433838, 1.2689744234085083, 0.23410286009311676, -0.5487064123153687, 0.8380781412124634, 0.01516583189368248, -0.2710643410682678, 0.44370487332344055, 0.37931308150291443, -0.15398253500461578, -0.35212913155555725, 0.2756285071372986, 0.25198495388031006, -0.2246585488319397, 0.8740108013153076, -1.622466802597046, 0.6136085987091064, 0.6335726976394653, 0.7803061604499817, 0.5472269058227539, 0.7913123369216919, 0.06418313831090927, 0.024135200306773186, 0.13052520155906677, -0.34222766757011414, 0.353927880525589, -0.21690724790096283, 0.20007704198360443, -0.3556174337863922, -0.3969375789165497, 1.1566439867019653, 0.6447409987449646, -0.081871896982193, 1.2435299158096313, -0.009215075522661209, -0.4487513601779938, -0.10314817726612091, 0.6724830865859985, -0.21976801753044128, -0.955265998840332, -1.3461166620254517, -0.6375072598457336, -0.5497205853462219, -0.055310316383838654, 0.207215815782547, -0.10134238004684448, 1.2711572647094727, 0.29725247621536255, 0.46504542231559753, -1.0862209796905518, -0.16347648203372955, -0.33786749839782715, 0.03154011815786362, -0.904299259185791, -0.9810810685157776, -0.6250104308128357, 0.8669653534889221, 1.1351641416549683, 0.16816362738609314, 0.576955258846283, 1.1154204607009888, -0.6878744959831238, -0.1150607168674469, -0.7272529602050781, 1.03762686252594, 0.9216739535331726, 0.39809656143188477, -0.4955497086048126, -0.4171392619609833, 0.3831782341003418, 0.32373955845832825, 0.04949235916137695, -0.2358952760696411, -0.05226286128163338, 1.0584721565246582, -0.826189398765564, 0.7984981536865234, -0.7575187683105469, -0.20412740111351013, -0.12597998976707458, -0.3680588901042938, 0.4036787748336792, 0.2611876130104065, 0.03653235360980034, -0.14609305560588837, 0.5384759902954102, -0.38722237944602966, -0.7296189069747925, -0.20176026225090027, -0.8991214632987976, -0.3250530958175659, -1.0339261293411255, 0.771094799041748, 0.2037852704524994, 0.47416073083877563, -0.06169553101062775, -0.47800344228744507, -0.3441741168498993, 0.5864882469177246, 0.327536940574646, 0.046530548483133316, 0.6337040662765503, -0.2638411223888397, -1.0560479164123535, 1.2512599229812622, 0.2723676264286041, -0.026280568912625313, 0.4037887454032898, 0.6988742351531982, -0.17341211438179016, 0.6367783546447754, -0.8345121145248413, -0.6183907985687256, -0.14348483085632324, 0.5801847577095032, 0.3050764799118042, -0.21540898084640503, 1.8180794715881348, -0.5379396677017212, -0.960785984992981, -1.1625114679336548, 0.5835123062133789, -0.7393796443939209, 0.2670895755290985, 0.07615690678358078, 0.6433887481689453, -0.6297392845153809, 0.3899100124835968, -0.35717064142227173, -0.1828560084104538, -0.8005896806716919, -0.18387742340564728, -0.7156164646148682, -1.3867149353027344, 0.30350688099861145, -0.043896935880184174, -0.18827377259731293, 0.4433799684047699, -1.4627045392990112, -1.0235426425933838, -0.5147886872291565, -0.8563075661659241, -0.22335827350616455, -1.1434738636016846, 0.4049607515335083, -0.5245265364646912, 0.441001296043396, -1.108491063117981, 1.1411759853363037, -0.4996413290500641, 0.1282995492219925, 0.43950286507606506, 0.11483760923147202, -0.37948140501976013, 1.1112680435180664, -0.2422964870929718, -1.2117247581481934, 0.3948119878768921, 0.3905003070831299, -0.5059855580329895, 0.33084410429000854, 0.2864317297935486, 0.262359619140625, 0.2527591288089752, 0.31962281465530396, 0.18542788922786713, -0.09066673368215561, -0.9012690186500549, -0.9810894131660461, -0.7271952033042908, 0.24117983877658844, -0.4181707203388214, -1.1676990985870361, 1.3148678541183472, 0.19247184693813324, -1.0568304061889648, 0.14438125491142273, 0.03775244951248169, 0.06970442831516266, 0.5173952579498291, 1.3771355152130127, 0.0839790403842926, 0.12706917524337769, -0.728359043598175, 0.17030119895935059, -0.19872355461120605, 0.2653282880783081, 0.6472654938697815, 0.14678724110126495, -0.22126567363739014, 1.870622158050537, 0.4604923725128174, 0.09926130622625351, 0.6692515015602112, -0.2870180308818817, 0.14353221654891968, -1.082640290260315, -0.4845883548259735, 0.5171607136726379, -0.23551040887832642, 1.3235771656036377, 0.4235452115535736, -0.4032765030860901, -0.3595193326473236, -0.04734128713607788, -0.19000940024852753, -0.7185701727867126, -0.5349868535995483, -0.9839931726455688, -0.14844349026679993, -0.29880860447883606, -0.2883364260196686, 0.2389523983001709, 0.19803977012634277, -0.1700509786605835, -0.49019855260849, -0.1370764523744583, -0.7219967842102051, 0.4515746235847473, 0.002209804719313979, 0.1832411140203476, 0.19566287100315094, -1.5630587339401245, -0.4136539101600647, -0.32942238450050354, 1.087256908416748, -0.13923993706703186, -0.24225136637687683, -0.05221359804272652, 0.6950315833091736, -0.4386672079563141, 0.29660964012145996, -0.03107461892068386, -0.2694845199584961, -0.06897912174463272, 0.20827873051166534, 1.0635559558868408, 0.9426984786987305, -1.0578012466430664, -0.4829692840576172, -0.09055577963590622, 0.5187904834747314, 1.3334516286849976, 0.7888511419296265, 1.3909528255462646, 0.21361882984638214, -0.17657054960727692, -0.7679224014282227, -0.5248709321022034, -1.3652983903884888, -0.8379742503166199, -0.759193480014801, -1.0448557138442993, -0.1004769578576088, -0.7143672704696655, 0.21834486722946167, 1.1143831014633179, 0.0877099558711052, 0.594983696937561, 1.1372867822647095, -0.29094940423965454, -0.9720523357391357, -0.4928644597530365, 0.044407524168491364, -1.505242109298706, 0.6695809960365295, 1.39644193649292, -1.3002318143844604, 0.03338072448968887, -0.1799091100692749, 0.307654470205307, 0.8943665027618408, -0.2744368016719818, 0.24565204977989197, -1.0822455883026123, -0.7982931733131409, 0.0577695406973362, 1.2529748678207397, -0.03759562596678734, 0.1258087158203125, -0.735115647315979, 0.4347779154777527, 0.8526126146316528, -0.740935742855072, -0.8692218065261841, 1.0831329822540283, -0.00018689234275370836, -0.4022964835166931, 0.4544698894023895, 0.9109523892402649, 0.6020541787147522, -0.6256023645401001, -0.4158598780632019, -0.42483314871788025, -0.35544219613075256, -0.008345923386514187, 0.6133602261543274, -0.15737418830394745, 0.6024994850158691, 0.05634745955467224, -0.640777587890625, 0.5420078635215759, 0.23138172924518585, -0.09158676862716675, -1.423888087272644, 0.5117610096931458, 0.5247076749801636, 1.5480163097381592, -0.1405440866947174, 0.4716479182243347, 0.18168441951274872, -0.08004124462604523, 0.36560726165771484, 0.8787897229194641, 1.1581556797027588, 0.2341616451740265, -0.2880041301250458, -0.5638227462768555, -0.26161709427833557, 0.2605231702327728, -0.6733131408691406, -0.05225757136940956, 0.5923771858215332, -0.6329696774482727, -0.7688047885894775, 1.4893429279327393, 0.5047577619552612, -0.5094910264015198, -0.6210034489631653, -0.056588996201753616, 0.7228673100471497, -0.226253941655159, 0.9568292498588562, -1.2224245071411133, -0.21531599760055542, 0.08938505500555038, -0.8669859170913696, -0.27653518319129944, 0.7059153318405151, 0.571387767791748, 0.3903115391731262, -0.7705841064453125, -0.18625201284885406, -0.6172322034835815, 0.8121514320373535, 0.5164434909820557, -0.5564740896224976, -0.24662351608276367, 0.30363526940345764, -0.06864877045154572, 0.30545976758003235, -0.16890665888786316, 1.2771295309066772, 0.010920120403170586, 0.015738865360617638, 0.33235427737236023, 0.32227325439453125, -0.4629139304161072, -0.8828058242797852, -0.464658260345459, -0.007519536651670933, -0.3780921697616577, -0.17413097620010376, -0.013748914003372192, -0.22715868055820465, 1.1399612426757812, 0.5523712635040283, 0.3017023503780365, 0.9158594012260437, 0.4404948055744171, -1.297515630722046, 0.9942989945411682, 0.7343222498893738, 0.18603943288326263, -0.602694571018219, -0.14832031726837158, 0.6999706625938416, -0.22911246120929718, 0.1851232647895813, 0.393619567155838, 0.6913111209869385, 0.06419617682695389, 0.6227160692214966, -0.1224411204457283, 0.3608107268810272, 0.6935603022575378, 1.3559513092041016, 0.21516138315200806, -0.3642542064189911, -0.9627477526664734, 0.7175869345664978, -0.7889348268508911, 0.012149892747402191, 0.9106942415237427, -0.05786523595452309, 1.397200345993042, -1.420100212097168, -0.2612314820289612, 0.1733289361000061, 0.34259238839149475, 1.0484833717346191, 0.38529837131500244, -0.6056232452392578, -0.32398882508277893, 0.8847377896308899, 0.6388481259346008, -0.5617140531539917, 0.3056098520755768, 0.053737930953502655, -0.37333133816719055, 0.07529834657907486, -0.9954456686973572, 0.7210219502449036, -0.2791910171508789, -0.486439973115921, -0.43895602226257324, -0.08057796210050583, 0.3655736446380615, 0.5399532914161682, 0.010409015230834484, 1.0867373943328857, -0.8938111662864685, -0.6651583313941956, 0.16240927577018738, -0.5973180532455444, 0.308951735496521, -0.3642938435077667, -0.4596790373325348, -0.9291232228279114, -0.9027621746063232, 0.11728242039680481, 0.4854596257209778, -0.3500397205352783, 0.08683312684297562, -0.5073877573013306, -0.9508514404296875, -0.22299253940582275, 0.9001222252845764, 1.3355718851089478, 0.819131076335907, 0.058433711528778076, 1.2009543180465698, 0.5210229158401489, -0.8843587636947632, -0.15785185992717743, 0.024346256628632545, 0.024107761681079865, 0.47834882140159607, -1.4971706867218018, -0.2853492498397827, -0.4192417860031128, 0.6779986619949341, -0.06275128573179245, 0.4106403887271881, 1.214638113975525, 1.064682126045227, -0.22012506425380707, -0.28411635756492615, 1.3603992462158203, -0.44789403676986694, 0.39583835005760193, 0.6237689852714539, -0.14545346796512604, -0.4737789034843445, -0.4398036003112793, -1.4166842699050903, 0.8200786709785461, -0.39593127369880676, -0.7696369886398315, 0.8158159255981445, 0.06513012945652008, 0.6116169691085815, 0.5766733884811401, -0.25613442063331604, 0.36970487236976624, 0.6100634336471558, -0.5185285806655884, -1.1987683773040771, -0.08170410990715027, 0.3360097408294678, -0.24309173226356506, -0.5614492893218994, -0.13116800785064697, 0.03510770946741104, -0.32922571897506714, 0.7905790209770203, -0.23862336575984955, 0.8732922077178955, 0.4360349476337433, 0.3812786936759949, -1.2244510650634766, 0.12988080084323883, -0.8935166597366333, -0.5775204300880432, 0.3395279049873352, 0.10835941880941391, -0.1598566174507141, -0.47522154450416565, -0.1320987492799759, -0.19097547233104706, -0.4078119993209839, -0.13527612388134003, -0.845443069934845, 0.35979893803596497, 0.6523148417472839, 0.02152063511312008, -0.005448400042951107, -0.4053017199039459, -0.22438843548297882, -0.06918862462043762, 0.24832212924957275, 0.2686957120895386, -1.5360534191131592, -0.02076854184269905, 0.24118390679359436, -0.19498808681964874, 0.14623986184597015, -0.07181017100811005, 0.041515596210956573, -1.4518110752105713, -1.3307112455368042, -0.412224680185318, -0.12160429358482361, 0.8049795031547546, -0.6722795963287354, 0.45678865909576416, 1.0771644115447998, -1.4387696981430054, 0.2626131474971771, 0.11186513304710388, -1.2860416173934937, 0.19032366573810577, -1.0764031410217285, 1.6593692302703857, -0.0729701891541481, 0.18907921016216278, -0.017907453700900078, 1.5119249820709229, -1.070185661315918, -1.9404162168502808, -0.6143467426300049, 0.22575923800468445, 0.36534494161605835, 1.2210179567337036, -0.3967534303665161, 0.7608062624931335, 0.2932778000831604, -0.49741148948669434, -0.5568342208862305, -0.13079477846622467, -0.6211526989936829, 0.18419276177883148, 0.12888650596141815, 0.07333313673734665, -0.1111832857131958, 1.2538094520568848, -0.7738078832626343, 0.9626047015190125, -0.28403031826019287, 1.373360276222229, -1.07064688205719, -0.03971634432673454, 0.08875935524702072, -0.1610732525587082, -1.845482349395752, -0.9228342175483704, -0.37797147035598755, -1.0987523794174194, -1.0221912860870361, 0.4490092396736145, 0.9288718700408936, -0.7705737352371216, -0.13815972208976746, 0.0035650022327899933, 0.6465465426445007, -0.7516486644744873, -0.19187355041503906, -0.33456218242645264, -0.2301989495754242, -0.14225272834300995, 0.07263778895139694, 0.06410261988639832, -1.8279838562011719, -0.03748396411538124, -0.06948945671319962, 0.5908015370368958, -0.8705703616142273, 1.0045056343078613, 0.6404666900634766, -0.2562195360660553, -0.2903819680213928, 1.5720796585083008, 1.1207557916641235, -0.5934395790100098, -0.6211232542991638, 0.2510676980018616, 0.24617543816566467, 0.33426642417907715, -0.7571740746498108, -0.22137565910816193, -0.7618677616119385, 0.7470279932022095, 0.7277352213859558, -0.004366337787359953, -0.19050081074237823, 0.16965197026729584, -0.22512540221214294, -0.3216019868850708, 0.39540815353393555, -0.4001765847206116, -0.027501018717885017, 1.1302410364151, 0.39028966426849365, -0.6682755351066589, 0.44308972358703613, 0.48969948291778564, 0.4293748140335083, -0.44999775290489197, 0.22150641679763794, 0.6571770906448364, -0.5557937622070312, 0.28253763914108276, -0.14215205609798431, -0.44472774863243103, 0.641338050365448, -0.5087975859642029, -1.1024249792099, -0.8336639404296875, -0.8279299139976501, -0.4536426365375519, 0.9639500379562378, -1.5626697540283203, -0.7709254026412964, 0.1718084216117859, -0.6619024276733398, -0.31339603662490845, -0.17411230504512787, 0.26834022998809814, 0.07352060824632645, 0.280988484621048, 0.9948031306266785, -0.447762131690979, 0.798932671546936, 0.4864421784877777, 0.24602089822292328, -0.9215642213821411, -0.6206955909729004, -0.04699009656906128, 0.29279017448425293, -0.09543681889772415, -0.005778157152235508, 0.2133270502090454, 0.15032213926315308, -0.9809864163398743, 0.03593160957098007, 0.23510082066059113, 0.5841860175132751, -0.4694804847240448, -0.1221945732831955, -0.19082817435264587, 0.15382172167301178, 0.47122207283973694, -0.7341670393943787, -0.6873922348022461, -0.735636293888092, 0.20799826085567474, -0.5545041561126709, 1.0561332702636719, -0.3970724642276764, 0.7284930348396301, 0.6552299857139587, 0.009657197631895542, -0.4753035008907318, -1.0068058967590332, 0.3660348355770111, -0.3012502193450928, 0.3216458857059479, -0.3471258580684662, 0.06801556050777435, 0.5603521466255188, -0.8083605170249939, 2.7161557227373123e-05, 0.12969152629375458, -0.361832857131958, -0.1498095840215683, -1.408921718597412, -0.2432428002357483, -0.6891947984695435, 0.4357132017612457, 0.6584073305130005, 0.060239266604185104, 0.6793023347854614, -0.499919056892395, -0.703424334526062, 0.41027817130088806, 0.1789795458316803, 0.2830978035926819, 0.6116890907287598, 1.3623830080032349, 1.8860934972763062, 1.1128922700881958, 0.42588895559310913, -0.4421645402908325, 0.12991611659526825, 0.130050927400589, 0.08499003946781158, -0.44799983501434326, 0.30110323429107666, 0.18467149138450623], [0.4371892213821411, 1.661475658416748, -2.377044439315796, 0.4390822947025299, 0.41083505749702454, 0.43149980902671814, 1.0915685892105103, -0.26938384771347046, 0.04312105476856232, -0.11570963263511658, -0.2649323344230652, 0.13379725813865662, 0.40417569875717163, 1.014714241027832, 0.8458701372146606, 0.7697651386260986, 0.6814728379249573, -0.22779342532157898, 0.21059037744998932, 1.039236307144165, -0.4741603136062622, -0.5897632241249084, -0.02005842514336109, -0.34060534834861755, -0.31426265835762024, 0.19146370887756348, -0.7063599824905396, -0.6174733638763428, -1.048465609550476, -0.7137428522109985, 0.14647138118743896, -0.19227871298789978, -0.527122974395752, -0.39056140184402466, -1.7186384201049805, -0.23399761319160461, 1.6278035640716553, 1.3173900842666626, 1.0977520942687988, 0.27615660429000854, 1.6104474067687988, -0.46834462881088257, 0.28472191095352173, -1.0829124450683594, 0.3050652742385864, -0.7988900542259216, 0.36959347128868103, -0.17809665203094482, -0.2871244549751282, -0.35862281918525696, 0.41729283332824707, -1.3409096002578735, 0.5814599394798279, 0.8124227523803711, 0.7186456322669983, -0.7022855281829834, 0.18066386878490448, -0.4567066729068756, 0.8777095675468445, -0.3710193634033203, 0.6487497687339783, -0.05307704582810402, -0.46988385915756226, 1.0341495275497437, 0.5579055547714233, -0.06187267228960991, 0.22095996141433716, 0.3306306302547455, -0.30159732699394226, 0.26046961545944214, 0.4748038947582245, -0.012854378670454025, -0.1753428429365158, 0.30404430627822876, -0.5130133032798767, 0.6872198581695557, 0.4009963572025299, 0.9810280203819275, 0.8007071614265442, 0.8405884504318237, -0.9633296132087708, -0.180376335978508, 0.756813645362854, -0.5397700071334839, 0.3348028063774109, -0.24061895906925201, 0.8741122484207153, -0.3116324543952942, -0.3307711184024811, 1.7386689186096191, 0.24358788132667542, -0.36906954646110535, 0.9183807373046875, -0.3232983946800232, -0.17829686403274536, -0.8339889049530029, -0.1975134164094925, -0.2397598773241043, -0.8530336022377014, -0.8137603998184204, -0.45870134234428406, -0.5349097847938538, -0.23792116343975067, -0.26043835282325745, -0.3419091999530792, 1.1433820724487305, 0.7969372868537903, -0.12006743252277374, -0.2670154869556427, 0.0026922281831502914, 0.19829760491847992, 0.5430999994277954, -1.146454095840454, -1.3412840366363525, -0.6700453162193298, 0.970558762550354, 1.087365746498108, -0.5280541181564331, 0.18970049917697906, 0.6865212917327881, 0.25363609194755554, -0.3219020664691925, -0.11171522736549377, 0.37864965200424194, 0.24927058815956116, 1.1331727504730225, -0.8079249262809753, 0.25676319003105164, -0.02375662699341774, 0.0009640492498874664, 0.15273740887641907, 0.21464288234710693, -0.07928547263145447, 0.8806468844413757, -1.0242228507995605, 1.7097113132476807, -0.365975946187973, -0.3339317739009857, -0.1043371632695198, -0.24230210483074188, 0.3622063994407654, 0.44708016514778137, 0.05141008272767067, -1.1345990896224976, -0.3368745744228363, -0.37128281593322754, -0.19215427339076996, -0.7205889821052551, -0.3686985671520233, 0.3737620711326599, -0.8997673392295837, 0.5790573954582214, 0.14106270670890808, 1.1848739385604858, 0.5529177188873291, 0.1858493536710739, -0.19471928477287292, 0.3066311776638031, 0.5695321559906006, 0.005930006504058838, 0.3418267071247101, 0.23066379129886627, -0.9329491257667542, 0.11187565326690674, -0.21297621726989746, -0.4242057502269745, 0.022150307893753052, 0.7512807250022888, -0.18744884431362152, 0.7952163815498352, -0.4840039908885956, -0.41377753019332886, -0.330636590719223, 0.40070822834968567, -0.10162504017353058, -0.7479145526885986, 0.7683629989624023, -0.4016847312450409, -1.4263672828674316, -1.2533798217773438, -0.07613498717546463, -0.09672868996858597, 0.3619052469730377, -0.4220311641693115, 0.14334721863269806, -0.30255305767059326, 0.6996147632598877, -0.4001043140888214, -0.3976806104183197, -0.47888654470443726, -0.6166446805000305, 0.6016093492507935, -0.2601591944694519, 0.3710037171840668, -0.6538787484169006, -0.7318618893623352, 0.7859510779380798, -0.5887818932533264, -0.11752931028604507, -0.1477111130952835, -0.4510343074798584, -0.30054253339767456, -0.3582346737384796, 0.5556340217590332, 0.08668061345815659, 1.1731051206588745, -0.8745073676109314, 0.3442675471305847, -0.7724305987358093, -0.35157889127731323, 1.2108228206634521, -0.1530923843383789, -0.5705390572547913, 0.6110981106758118, 0.025684097781777382, -1.5276161432266235, -0.1752433031797409, -0.023386275395751, -0.06221776455640793, 0.4989790618419647, 0.09890661388635635, 0.2117273211479187, 0.6751031875610352, 0.1659744530916214, 0.4062251150608063, -0.47096678614616394, -0.6845802664756775, -0.3921346962451935, -0.5737864375114441, 0.0857492983341217, -0.3524564802646637, -1.3748337030410767, 0.4682644009590149, 0.08957680314779282, -1.0126110315322876, 0.1035998985171318, 0.4344770610332489, 0.3573513329029083, 0.5854697823524475, 1.0707626342773438, 0.4319927394390106, 0.4658239483833313, -0.9812319874763489, 0.38057827949523926, -0.6536182165145874, 0.3419554829597473, 0.593890905380249, -0.1805437058210373, -0.08294493705034256, 0.9323785305023193, 0.8893833756446838, 0.5137167572975159, 0.5069369673728943, -0.17978009581565857, 0.009607713669538498, -0.06359638273715973, -1.0874077081680298, -0.1758544147014618, 0.28619900345802307, 1.3957722187042236, 0.27721452713012695, -0.6236829161643982, -0.29633694887161255, -0.19882197678089142, -0.4772051274776459, -0.37521892786026, -0.6704486012458801, -0.029799705371260643, -0.01034353394061327, 0.2621167004108429, 0.0779096856713295, 0.8618874549865723, 0.10849738866090775, 0.5698651075363159, -0.8762120008468628, -0.622992217540741, -0.7174031138420105, 0.6214998960494995, 0.19030776619911194, 0.628092348575592, -0.06072033569216728, -1.2565935850143433, -0.2945958077907562, 0.05220484361052513, 0.8382187485694885, -0.3759606182575226, -0.3472156822681427, 0.41520100831985474, 0.5302926898002625, -0.8921688795089722, 0.2107401043176651, 0.34068185091018677, -0.5028267502784729, 0.15040242671966553, -0.10222359746694565, 0.6522201299667358, 0.8974140882492065, -0.01630724035203457, -0.33425506949424744, -0.8139417767524719, 0.48008573055267334, 1.2399760484695435, 0.6792740821838379, 1.4418091773986816, 0.05739225819706917, -0.12855663895606995, -0.0236519742757082, -0.7190611958503723, -0.5723891854286194, -0.8083822727203369, -0.6647385358810425, -0.527093768119812, -0.20947091281414032, 0.0720704197883606, 0.08346541225910187, 0.5338762998580933, -0.11794256418943405, -0.253262460231781, 1.5509215593338013, -0.1265431046485901, -0.3439299762248993, -0.010403095744550228, -0.24444012343883514, -0.974544882774353, 0.05765283852815628, 0.9072514176368713, -1.3117331266403198, -0.18551582098007202, 0.03327363729476929, -0.4674417972564697, 0.19447822868824005, -0.0787365734577179, 0.6011629104614258, -1.2586363554000854, -1.0817582607269287, -0.47783344984054565, 1.289231538772583, 0.3923042416572571, -0.2871851325035095, -0.5176385045051575, 0.41432225704193115, 0.6107416749000549, -0.247104212641716, -0.48044124245643616, 0.6038601994514465, -0.24586515128612518, -0.8610657453536987, 0.007407700642943382, 0.1665600687265396, 0.2338823825120926, -0.22317299246788025, -0.6015455722808838, -0.09627944976091385, -0.5406257510185242, 0.42384013533592224, 0.9199027419090271, -0.06352189183235168, 1.3293346166610718, 0.014895947650074959, -0.3137485086917877, 0.4385816752910614, 0.4184914231300354, 0.04449902102351189, -1.2170703411102295, 0.7283807992935181, 0.493449330329895, 1.3706642389297485, 0.4340198338031769, 0.054574184119701385, 0.21413195133209229, -0.0002613849937915802, 0.13069860637187958, 0.5049988031387329, 0.4924789369106293, -0.022370601072907448, -0.23039019107818604, -0.46931102871894836, -0.21866539120674133, 0.18829236924648285, -0.3355458080768585, -0.14457076787948608, 0.6026008725166321, -0.861447274684906, -1.1609327793121338, 1.055642008781433, 0.027626128867268562, -0.008997729048132896, -0.6053112149238586, -0.20952168107032776, 0.5811936855316162, -0.3414541780948639, 0.3574399948120117, -0.20358826220035553, 0.5044419169425964, 0.4978194534778595, -1.0510729551315308, -0.016618821769952774, 0.17188285291194916, 0.29461362957954407, 0.5328465104103088, -0.6570487022399902, 0.24897480010986328, -0.14083844423294067, 0.8856539130210876, 0.43799832463264465, 0.23236121237277985, 0.6470242738723755, 0.20653773844242096, -0.4633660614490509, -0.09267659485340118, 0.10749657452106476, 0.07792684435844421, -0.8950117230415344, 0.09793072938919067, 0.2956176996231079, 0.32262712717056274, -0.1435777097940445, -0.5233262181282043, -0.17879197001457214, 0.38163790106773376, -0.18786314129829407, 0.1246807798743248, -0.13753792643547058, -0.40042170882225037, 0.7493677735328674, 0.9072067737579346, 0.08976400643587112, 0.1978553682565689, 0.07125283777713776, -1.2068296670913696, 0.18475519120693207, 0.6339576840400696, -0.36049574613571167, -0.6806676983833313, 0.34871843457221985, -0.36035382747650146, -0.43686360120773315, 0.1992424726486206, 0.5986469388008118, 0.938836932182312, 0.5693086385726929, -0.46332621574401855, -0.20074142515659332, 0.19203856587409973, 0.9546746611595154, 0.9810627102851868, 0.21092489361763, -0.8134545087814331, -0.8297774791717529, 0.40151336789131165, -0.6760917901992798, -0.07653128355741501, 0.8808324933052063, 0.34542855620384216, 1.2920444011688232, -1.2061368227005005, -0.08704029023647308, 0.5315240621566772, 0.12776505947113037, 0.5322477221488953, 0.6203988194465637, -0.45033901929855347, -0.2997923195362091, 0.5567781329154968, 0.49005141854286194, 0.14920254051685333, -0.702275276184082, 0.6335280537605286, -0.04760773107409477, 0.2174171358346939, -0.7534719109535217, 0.3854354918003082, -0.6209215521812439, -0.09526975452899933, 0.06392918527126312, -0.7872578501701355, -0.42356038093566895, 0.661830484867096, 0.67030930519104, 1.672114610671997, -0.26714888215065, -0.9562767148017883, -0.12698979675769806, -0.7435645461082458, 0.6222596764564514, 0.0844985842704773, -0.5000082850456238, -0.4867739677429199, -0.3540239632129669, -0.42771607637405396, 0.5748295783996582, -0.16359412670135498, -0.2470172792673111, -0.4738348126411438, -1.345848560333252, 0.3574772775173187, 0.8106135725975037, 1.2332426309585571, 0.5869881510734558, -0.29161596298217773, 0.161491259932518, 0.3053204417228699, -0.6484389901161194, -0.6270902752876282, 0.4774293899536133, -0.35127881169319153, 0.4939759075641632, -0.7401362657546997, -0.5383473038673401, 0.8327235579490662, 0.5009738206863403, 0.2040737271308899, 0.8748100996017456, 0.9697779417037964, 1.2656339406967163, -0.6741951107978821, -0.1288994699716568, 0.3018859028816223, -0.525715708732605, 0.8194592595100403, 0.9401716589927673, -0.36017000675201416, -0.4693034291267395, -0.7152533531188965, -1.4119716882705688, 0.5099008679389954, 0.24681851267814636, -0.9435713887214661, 0.956038773059845, 0.4957013726234436, 0.814041018486023, 0.21577902138233185, -0.9194790124893188, 0.23743796348571777, 0.0501774400472641, -0.41961637139320374, -0.9415938258171082, 0.47470447421073914, -0.33107802271842957, -0.25438058376312256, -0.21866855025291443, -0.17223945260047913, 0.24514201283454895, -0.04042484238743782, -0.02235446684062481, 0.6371036171913147, -0.05254777893424034, 0.9037451148033142, 0.3339006304740906, -0.31093379855155945, 0.5304771661758423, -0.04705040156841278, -0.35868266224861145, -0.3089483082294464, 0.4787878692150116, 0.30085891485214233, 0.4943445920944214, -0.20399776101112366, -0.42484021186828613, -0.007543323561549187, -0.2042694091796875, -0.03328153118491173, 0.5497735142707825, 0.6584165692329407, -0.08431144803762436, -0.021221421658992767, -0.32552579045295715, 0.2018585205078125, -0.5945561528205872, 0.7094797492027283, 0.2629420757293701, -1.0615078210830688, 0.08078254014253616, 0.09836665540933609, -0.9894396662712097, -0.23817184567451477, -0.39305946230888367, -0.6180911064147949, -1.0855122804641724, -1.5457336902618408, -0.31908440589904785, -0.09306056797504425, 0.6090816855430603, -0.5967820286750793, 1.1215558052062988, 0.035524286329746246, -1.4591526985168457, 0.2037203311920166, 0.5590826272964478, -1.074808955192566, -0.07727965712547302, -1.2719531059265137, 0.43240708112716675, -0.2777896225452423, 0.5564407110214233, -0.28843769431114197, 0.5763048529624939, -1.6420472860336304, -1.3666218519210815, -0.8084135055541992, 0.2123420387506485, 0.671782910823822, 0.7060073018074036, -1.612524151802063, 0.7899671792984009, 0.8435255885124207, -0.36969003081321716, 0.030210062861442566, 0.4296652674674988, -0.30682677030563354, -0.09640088677406311, 0.2678671181201935, 0.7206534147262573, -0.13344472646713257, 1.0331580638885498, 0.22044873237609863, 1.2353973388671875, -0.2750314474105835, 1.0865484476089478, -1.2205601930618286, -0.3856698274612427, 0.30084899067878723, 0.5298942923545837, -1.2955418825149536, -0.6948431134223938, -0.11959651112556458, -0.26591306924819946, -0.8562793135643005, 0.3797209858894348, 0.571865439414978, -0.6599071621894836, -0.25379815697669983, -0.33871597051620483, 0.3806435167789459, -1.0420018434524536, 0.482755184173584, -0.09194725751876831, -0.12494951486587524, -0.480916291475296, 0.30774763226509094, -0.3562864363193512, -1.1270439624786377, 0.1445922702550888, -0.04760837182402611, 0.14439469575881958, -0.9900294542312622, 0.7614049911499023, 0.7573586702346802, 0.4789404571056366, -0.3028312623500824, 1.2117618322372437, 0.5216541886329651, -0.179103821516037, -0.11364976316690445, 0.4015950858592987, -0.44655001163482666, 0.1517186462879181, -0.5233114361763, 0.11906398832798004, -0.7370035648345947, 1.537969946861267, -0.10588452965021133, 0.4885120391845703, 0.31519797444343567, 0.25051024556159973, -0.410075843334198, -0.3425499498844147, 0.5939905047416687, -0.9059080481529236, -0.3726997971534729, 1.1064763069152832, 0.4960612952709198, -0.46245548129081726, 0.12787029147148132, 0.35777202248573303, -0.3807660639286041, -0.049292560666799545, 0.44424110651016235, -0.21451584994792938, -0.4303479492664337, 0.564553439617157, 0.30987682938575745, -0.11934223771095276, -0.17577610909938812, 0.14255918562412262, -1.825958251953125, 0.13584524393081665, -0.41399314999580383, -0.6693063378334045, 0.4158373475074768, -0.9596218466758728, -0.7608426809310913, 0.06580043584108353, 0.05690750852227211, -0.27850228548049927, -0.1946936994791031, 0.477571964263916, 0.008359253406524658, -0.03535822033882141, 0.4755600392818451, -0.012189868837594986, 1.4024494886398315, 0.1830274611711502, -0.24949993193149567, -1.156387448310852, 0.1500949263572693, 0.3598109185695648, 0.1107136532664299, 0.04048994556069374, -0.024326682090759277, 0.9319244027137756, -0.32510799169540405, -1.01283597946167, 0.06049709767103195, 0.5445852279663086, 0.0138467475771904, 0.13379992544651031, -1.1400699615478516, 0.4683956503868103, -0.13494716584682465, 0.6577787399291992, -0.47631338238716125, -0.6995625495910645, -1.308873176574707, 0.4504767656326294, -0.9445080757141113, 0.6183815598487854, -0.7028379440307617, 0.611778974533081, 0.20173482596874237, -0.26921355724334717, -0.6555708646774292, -0.15796594321727753, 0.393005907535553, 0.28789809346199036, 0.3272627592086792, -0.04849543049931526, 0.12781834602355957, -0.23126724362373352, -0.8741311430931091, 0.04785434529185295, 0.07218607515096664, -0.38547563552856445, 0.3842359185218811, -0.7224684953689575, -0.3608620762825012, -0.7992913722991943, -0.10928227007389069, 0.6461933255195618, 0.44951120018959045, 0.011118941009044647, -0.008386585861444473, -0.6791984438896179, 0.5058708190917969, 0.3458971083164215, -0.6111077070236206, 0.37252140045166016, 0.7528018951416016, 1.8859293460845947, 0.2795872986316681, 0.0951385647058487, -0.6044660806655884, 0.8467651009559631, -0.8547964096069336, 0.12199213355779648, -0.20033268630504608, -0.13441133499145508, -0.6853039860725403], [0.16964071989059448, 1.8087329864501953, -2.1003708839416504, 0.48055529594421387, 0.1500793993473053, -0.24084866046905518, 1.3481035232543945, -0.025276601314544678, 0.72078937292099, -0.09927290678024292, -0.726832389831543, 0.49737849831581116, -0.01966826617717743, 0.6371602416038513, 1.1589182615280151, 0.7665383815765381, 0.8964208364486694, -0.45015937089920044, 0.04596148431301117, 1.2614054679870605, -0.15021660923957825, -0.3835768699645996, 0.11679317057132721, 0.14894956350326538, -0.23698875308036804, -0.12599633634090424, -1.4537876844406128, -0.4924183785915375, -0.8973240256309509, -1.3198026418685913, 0.6310990452766418, 0.03347969800233841, 0.4641519784927368, -0.36130449175834656, -1.2102117538452148, -0.33387207984924316, 1.4489705562591553, 1.4693639278411865, 0.09379153698682785, 0.2362402081489563, 1.359776496887207, -0.4655451774597168, 0.036294907331466675, -0.6645522713661194, -0.5852607488632202, -0.48633983731269836, 0.8029193878173828, -0.06085900962352753, -0.4950172007083893, -0.29481789469718933, 0.49961531162261963, -1.3885595798492432, -0.4144173264503479, 1.0979326963424683, 1.394710898399353, -0.9696651697158813, 0.32250645756721497, 0.15262678265571594, 0.30418261885643005, -1.1794036626815796, 1.2922505140304565, 0.5151392221450806, -0.3838660717010498, 1.5636013746261597, -0.23208041489124298, -0.5177545547485352, -0.05229515582323074, 0.4914388358592987, -0.1463841050863266, -0.5125053524971008, -0.06582478433847427, 0.5445309281349182, -0.05052333325147629, 0.1949596405029297, -0.46227502822875977, 0.025785358622670174, -0.07270393520593643, 0.34576717019081116, 0.8670571446418762, 0.7637959122657776, 0.2636324167251587, -0.8110381960868835, 0.5403555035591125, 0.37987178564071655, 0.7356879115104675, 0.012035280466079712, 0.7352867722511292, -0.7137092351913452, -0.40099194645881653, 1.5525189638137817, -0.18636736273765564, -0.09766384959220886, 0.5953363180160522, -0.8279551863670349, -0.3666329085826874, -1.0598417520523071, 0.6296729445457458, 0.05143103748559952, -0.6410656571388245, -0.15588296949863434, -0.665740430355072, -0.5529899597167969, 0.4486469328403473, 0.27978408336639404, -0.49817386269569397, 1.0192334651947021, -0.0008606761693954468, -0.03568359464406967, -0.1211695671081543, -0.4964195787906647, 0.2151389718055725, 0.6969554424285889, -0.771765947341919, -1.485349178314209, -0.5411820411682129, 1.324845552444458, 1.085733413696289, 0.4566154181957245, 0.6419413089752197, 1.448151707649231, -0.33985376358032227, -0.28816166520118713, 0.042658731341362, 0.8296628594398499, 0.27544909715652466, 0.7348078489303589, -0.3389267325401306, -0.41371962428092957, 0.10866530239582062, 0.6099714636802673, 0.07430922985076904, -0.08934736251831055, -0.6910017728805542, 1.0187057256698608, -1.3734341859817505, 1.3225133419036865, -0.24393947422504425, -1.0631431341171265, -0.4041518568992615, -0.5309149026870728, 0.7780773639678955, 0.28723931312561035, -0.5380660891532898, -0.2712860405445099, -0.3004246652126312, -0.9934999346733093, 0.5753251910209656, -0.19090525805950165, 0.060724370181560516, 1.0098559856414795, -0.7569581866264343, 0.24021729826927185, 0.007956672459840775, 1.0571630001068115, 0.28254860639572144, -0.16335906088352203, 0.3204261362552643, 0.2622915804386139, 0.7096168398857117, 0.06347128003835678, 0.9138952493667603, -0.2349383682012558, -0.3719066083431244, 0.42177826166152954, 0.23321717977523804, -0.43539339303970337, -0.4800085723400116, 1.242316722869873, -0.40055370330810547, 0.5190547108650208, -0.15423379838466644, -0.41464728116989136, -1.1702167987823486, 0.2942805290222168, 0.30269408226013184, 0.01707616075873375, 0.9913226962089539, -0.3588029444217682, -1.3655935525894165, -0.8288804888725281, 0.2483581304550171, -0.9532842636108398, 0.11025052517652512, -0.3161747455596924, 0.6817529797554016, -0.3090403378009796, 0.5427478551864624, -0.33860138058662415, -0.21294669806957245, -0.7854105234146118, -0.520114541053772, -0.2144685536623001, -0.25614774227142334, -0.0047529712319374084, -0.5219923257827759, -0.46077612042427063, 0.7119411826133728, -1.335326075553894, -0.16432245075702667, 0.2255399376153946, -0.22844283282756805, -0.00657765194773674, -0.9926515817642212, 0.7182455062866211, -0.24203430116176605, 1.3803484439849854, -0.869573175907135, 0.7049490809440613, -0.935786783695221, -0.6601335406303406, 1.142117977142334, -0.6481011509895325, -0.5629966259002686, 0.7089987397193909, -0.12488185614347458, -1.1520437002182007, -0.18542274832725525, 0.2860957682132721, -0.8146553039550781, 0.19337014853954315, 0.28247779607772827, 0.49310922622680664, 0.720527172088623, 0.24454151093959808, 0.14074186980724335, -0.8719526529312134, -0.9428512454032898, -0.2836710214614868, -0.5676764249801636, 0.05822908133268356, -0.27744656801223755, -1.156986117362976, 0.36002472043037415, 0.4892790913581848, -0.6873393654823303, -0.2432514727115631, -0.20597118139266968, 0.6406943798065186, 0.3885442614555359, 0.8668470978736877, 0.6284077167510986, 0.587081789970398, -0.98396897315979, -0.18922476470470428, -0.6053914427757263, 0.8623576760292053, 0.6114798784255981, -0.64439857006073, -0.029718760401010513, 0.8567363023757935, 0.9991704821586609, -0.2812860608100891, 0.9975210428237915, -0.6980780959129333, -0.32712769508361816, -0.5880710482597351, -1.0634865760803223, 1.088967204093933, -0.35931164026260376, 2.0656464099884033, 0.7637923359870911, -0.2458246350288391, 0.2044329196214676, 0.11039505898952484, -0.6665406823158264, -0.16228558123111725, -0.36591702699661255, 0.10512465238571167, 0.06488289684057236, 0.013028142973780632, -0.27110692858695984, 0.873386800289154, -0.20471279323101044, 1.0669703483581543, -0.20789006352424622, -0.3905165493488312, -0.3591233789920807, -0.036921147257089615, -0.43270331621170044, 1.0339409112930298, -0.029896389693021774, -1.9605504274368286, 0.16525958478450775, -0.0684768483042717, 0.5012518167495728, 0.025663644075393677, -0.3464038372039795, -0.14522574841976166, 0.015038056299090385, -0.7474105954170227, 0.42059841752052307, -0.19490422308444977, -0.5416558980941772, 0.4485936760902405, -0.1627654731273651, 0.585688591003418, 1.4261969327926636, 0.12678781151771545, -0.7108253240585327, 0.4136185348033905, 0.5077191591262817, 1.1301099061965942, 0.3618898093700409, 1.9344409704208374, 0.2764820158481598, 0.1145251989364624, 0.14294548332691193, -0.384490966796875, -0.5012343525886536, -0.3398340344429016, -0.8043444156646729, -0.37459462881088257, -0.3727567493915558, -0.028680123388767242, 0.4970111846923828, 0.3380052149295807, -0.3731667101383209, 0.26281046867370605, 1.4222906827926636, -0.25368914008140564, 0.027437938377261162, 0.4913802742958069, -0.4648182988166809, -0.21809259057044983, -0.06202172487974167, 1.2546194791793823, -1.555580496788025, -1.1177922487258911, -0.6117189526557922, -0.17310954630374908, 0.4137072265148163, 0.39603057503700256, 0.47820109128952026, -1.8586262464523315, -0.18429051339626312, -0.06923957169055939, 1.4649626016616821, -0.30486437678337097, -0.3436213731765747, -0.31000274419784546, 0.6639275550842285, 0.5069193243980408, -0.295620858669281, -0.9062937498092651, 1.0753120183944702, -0.5099593997001648, -0.809082567691803, 0.21427546441555023, 0.028660405427217484, 0.835983395576477, -0.2755613625049591, -0.5723914504051208, -0.497967928647995, -0.2926616072654724, -0.24312162399291992, 0.8415325284004211, -0.5545403361320496, 1.3205558061599731, -0.15928055346012115, -0.307279497385025, 1.141495943069458, 0.09910255670547485, -0.11937222629785538, -1.2309141159057617, 0.8388156890869141, 0.577541172504425, 1.2552733421325684, 0.02617824636399746, 0.2589597702026367, 0.5296921133995056, 0.5259206891059875, 0.2968601882457733, 0.2403491884469986, 0.24617648124694824, 0.33867573738098145, 0.15305481851100922, -0.30778905749320984, 0.009305279701948166, 0.0343954935669899, -0.24298781156539917, -0.6057559251785278, 0.3394283950328827, -1.1302465200424194, -0.6923458576202393, 0.8981423377990723, 0.6407791972160339, -0.263761967420578, -0.2042657881975174, 0.028920574113726616, 0.47667092084884644, -0.23646226525306702, 0.25632137060165405, 0.13243387639522552, 0.222011536359787, 0.4803871512413025, -1.3372063636779785, -0.2301950454711914, -0.24584586918354034, 0.7878198623657227, 0.3346104323863983, -0.43320855498313904, 0.43334445357322693, -0.8315050005912781, 0.5926177501678467, 1.0638362169265747, -0.35968464612960815, 0.024311039596796036, 0.10639726370573044, -0.3382055163383484, -0.12101203948259354, -0.29682183265686035, 0.5022391676902771, -1.156610369682312, 0.6522785425186157, 0.7312130928039551, -0.11958813667297363, -0.19351302087306976, 0.20025697350502014, -0.09327125549316406, 0.11382156610488892, -0.042100995779037476, -0.03599421679973602, 0.6504551768302917, -0.09169971197843552, 0.9675687551498413, 0.3526918888092041, 0.29354992508888245, 0.36408716440200806, -0.15328311920166016, -0.6101875901222229, -0.2834574580192566, 0.5524648427963257, -0.21408428251743317, -0.5966965556144714, -0.4909312427043915, 0.018379515036940575, -0.23501837253570557, 0.45970988273620605, 0.11592945456504822, 0.7275484800338745, 0.3687524199485779, -0.12560534477233887, 0.23044320940971375, 0.7938750982284546, 0.6626054644584656, 0.515992283821106, -0.029535606503486633, -0.8121135830879211, -0.4429216980934143, -0.19968369603157043, -1.0402061939239502, 0.4006262719631195, 0.7268728017807007, -0.26287710666656494, 1.0869970321655273, -1.0774421691894531, 0.23147831857204437, 0.5507953763008118, 0.23697611689567566, -0.04624622315168381, 0.7386329174041748, -0.615355908870697, -0.12280287593603134, 0.4576115310192108, -0.06130251660943031, -0.001531217247247696, 0.14882014691829681, 0.28123748302459717, -0.19528329372406006, 0.8360937237739563, -1.0471971035003662, 0.9366066455841064, -0.6111885905265808, -0.1708795428276062, 0.37303441762924194, -1.2477778196334839, -0.21147547662258148, 0.4767462909221649, 0.27527934312820435, 1.3362940549850464, -0.0530761294066906, -1.0407487154006958, 0.14382590353488922, -0.886857271194458, 0.4837352931499481, -0.5386009812355042, -0.27441489696502686, -0.5359538793563843, 0.695076584815979, -0.38219401240348816, 0.4714009165763855, -0.6908320188522339, -0.5321381688117981, -0.4959850013256073, -0.9852457046508789, 0.9391836524009705, 0.003517303615808487, 0.9820966720581055, 0.07497451454401016, -0.13458716869354248, -0.22615382075309753, 0.68418288230896, -0.8950535655021667, -1.0067052841186523, -0.13936056196689606, -0.2545674741268158, -0.09298191964626312, -0.9546273946762085, -0.939801812171936, 0.49531224370002747, 0.7686123847961426, -0.014107641763985157, 0.7835441827774048, 0.9610475301742554, 1.02191162109375, -0.1755097657442093, -0.28178444504737854, 0.3858630359172821, -0.7656083703041077, 0.8291869163513184, 0.6315315961837769, -0.6828770637512207, -0.7941218614578247, -1.0289608240127563, -1.5237584114074707, 0.10742682218551636, 0.3131157457828522, -0.2453080266714096, 0.8019533753395081, 0.9169982075691223, 0.6620954871177673, 0.6583186984062195, -1.0514955520629883, 0.796353816986084, -0.31305181980133057, -0.4924745559692383, -1.022398829460144, 0.8493673801422119, 0.245688796043396, 0.08288397639989853, 0.0882415920495987, 0.11485666036605835, -0.04064588248729706, 0.16747534275054932, -0.5598440766334534, 0.3232417702674866, -0.17310965061187744, 0.7500583529472351, 0.4326140880584717, -0.5338596105575562, -0.27049893140792847, -0.15833507478237152, -0.41193488240242004, 0.09936242550611496, 1.0877643823623657, -0.15220382809638977, -0.10109247267246246, -0.12383625656366348, -0.43520423769950867, -0.8314250111579895, -0.09834383428096771, 0.036610621958971024, 0.8029133081436157, 0.2554614245891571, -0.3130165636539459, -0.2376919537782669, 0.006044899113476276, 0.10066141188144684, -0.3899400234222412, 0.446438193321228, -0.003179578110575676, -1.1816388368606567, 0.02450948767364025, 0.11321066319942474, -1.4310225248336792, 0.14839909970760345, -0.0012575555592775345, -0.023103198036551476, -0.9160915017127991, -0.2665027379989624, -0.35911110043525696, 0.7176712155342102, 0.7003220319747925, -0.7021201848983765, 0.988652229309082, 0.4564906358718872, -1.352723240852356, 0.354787141084671, -0.15318302810192108, -1.0424630641937256, -0.054669104516506195, -1.6389871835708618, 0.3414281904697418, 0.19769926369190216, 0.3684796392917633, -0.4154515862464905, 1.0081894397735596, -1.5256364345550537, -1.4554299116134644, -1.0271693468093872, -0.36067962646484375, 0.45277321338653564, 0.27415040135383606, -0.5176281929016113, 1.1686782836914062, 0.5449267625808716, 0.17598840594291687, 0.045024897903203964, 0.27438992261886597, -0.31704628467559814, 0.2557905316352844, -0.16195915639400482, 0.4661805033683777, 0.06895134598016739, 0.759885311126709, 0.46328333020210266, 1.4023127555847168, 0.5421357154846191, 1.2283806800842285, -0.3949012756347656, -0.1447475552558899, 0.44319042563438416, 0.880692720413208, -0.6553614735603333, -0.9040178656578064, -0.21801215410232544, -0.6060102581977844, -0.5764946341514587, -0.04237984120845795, 0.980894148349762, -0.38679978251457214, -0.2737031579017639, -0.9100595712661743, 0.22554579377174377, -1.1261426210403442, 0.6453942060470581, 0.07656987011432648, -0.7106634378433228, -0.45270153880119324, 0.18101206421852112, -0.5335851311683655, -1.1189275979995728, 0.8399783372879028, 0.1683952957391739, 0.17788070440292358, -0.16750667989253998, 0.1414743810892105, 0.7866438627243042, 0.6413046717643738, -0.3389659523963928, 1.3059985637664795, 0.7800137996673584, -0.5407989025115967, 0.19906964898109436, -0.009496217593550682, -0.04779898375272751, 0.07034644484519958, -0.276422917842865, -0.3891349136829376, -0.985923707485199, 1.5889098644256592, 0.05810752511024475, -0.12181761860847473, -0.16692626476287842, 0.4067413806915283, -0.4569433331489563, 0.36077600717544556, 0.7321374416351318, -0.868658185005188, -0.5122712850570679, 1.2133551836013794, 0.13824236392974854, -0.32766053080558777, 0.053702212870121, 1.0807276964187622, 0.49740898609161377, -0.27299004793167114, 0.8698464632034302, 0.14341400563716888, -0.3837226927280426, 0.37198784947395325, 0.4535355269908905, -0.36457279324531555, -0.3194557726383209, -0.2654847204685211, -1.7386127710342407, 0.1875743418931961, -0.24596722424030304, -0.3460833728313446, 0.21277445554733276, -0.9365700483322144, 0.28029027581214905, -0.07227275520563126, -0.1048697903752327, -0.0628601536154747, -0.6860615611076355, 0.5299781560897827, 0.14723138511180878, -0.09822981059551239, 0.9285416007041931, -0.269868940114975, 1.0188956260681152, -0.389515221118927, -0.21406900882720947, -1.1964490413665771, -0.3034375011920929, 0.45949965715408325, 0.36074453592300415, -0.5697444081306458, -0.5126021504402161, 0.2355891466140747, -0.4084082543849945, -0.608372688293457, 0.16172054409980774, 0.05570926517248154, -0.08446059376001358, -0.028569497168064117, -0.4507899582386017, 0.7574905753135681, 0.1039654091000557, 1.0284929275512695, -0.27184000611305237, -0.8252476453781128, -1.5178028345108032, -0.07275797426700592, -0.7185291647911072, 0.6360499858856201, -0.7540556788444519, 0.8976358771324158, -0.3850758671760559, -0.6675633192062378, -0.8168294429779053, 0.011008365079760551, 0.5773962736129761, -0.3991173207759857, -0.0703553780913353, 0.08454803377389908, -0.3603816628456116, -0.3130505084991455, -0.5462077260017395, -0.3784081041812897, 0.2761595547199249, -0.4949454069137573, -0.4111776053905487, -1.060793399810791, -0.8498801589012146, -0.4753694534301758, -0.3041377365589142, 0.2725279927253723, 0.19565264880657196, -0.4718594551086426, 0.024313878268003464, -1.3019295930862427, 0.3566705286502838, 0.7794368863105774, -0.48759403824806213, -0.239914208650589, 0.6637928485870361, 1.8691246509552002, 0.754636287689209, -0.23935823142528534, -0.4538026452064514, 0.6921001672744751, -0.6336439251899719, 0.4950255751609802, -0.5543743371963501, -0.29912713170051575, -0.12006790190935135], [1.0265713930130005, 1.2988357543945312, -1.9630874395370483, -0.8684037327766418, 1.0550103187561035, 0.05741391330957413, 0.6848853230476379, 0.42285221815109253, 0.6766619682312012, -0.1438523828983307, -0.07449661195278168, 0.25041449069976807, 0.01943167671561241, 0.4046814739704132, 0.11508386582136154, 0.5951837301254272, 0.4377799928188324, -0.014857138507068157, 0.4468476474285126, 1.0791759490966797, -0.06259205937385559, 0.07350778579711914, -1.151248574256897, -0.3391522169113159, -0.12105652689933777, 0.6847845315933228, -1.1128573417663574, -0.9127162098884583, -0.7997570037841797, -0.9482263922691345, 0.959048330783844, -0.6338499188423157, 0.33755576610565186, 0.07139619439840317, -1.686341404914856, -0.8424094319343567, 2.18190860748291, 0.9279414415359497, 0.8122764825820923, 0.06709219515323639, 1.8197193145751953, 0.9020946025848389, 0.2147279530763626, -1.4888343811035156, -0.5801969766616821, 0.30776527523994446, 0.7670020461082458, -0.2098369598388672, -0.3436278700828552, -0.4125193953514099, 0.800575852394104, -0.9773531556129456, 1.0385011434555054, 1.0867921113967896, 1.0698059797286987, -0.38396817445755005, -0.28016483783721924, 0.29141920804977417, -0.07045245915651321, -0.3898068964481354, 1.217696189880371, 0.2255050539970398, -0.4964981973171234, -0.0013892101123929024, 0.5415536165237427, 0.5680484771728516, -0.34337520599365234, 1.048764705657959, -0.20473788678646088, 0.03768007457256317, 0.7920118570327759, 0.021772926673293114, -0.5735707879066467, 0.4450911283493042, -0.7373210191726685, 0.0923890769481659, 0.4335922300815582, 0.8262937664985657, 0.7582465410232544, 0.3368242383003235, -0.6940403580665588, 0.294460654258728, 1.100799798965454, -0.17683158814907074, 0.2806892991065979, 0.028469422832131386, 0.2432330697774887, -0.9524309635162354, -0.08688786625862122, 1.6066803932189941, 0.21096661686897278, -0.31897205114364624, 0.22427688539028168, -0.6559147834777832, -0.4548935294151306, -0.49965423345565796, -0.22059768438339233, -1.0322805643081665, -0.2593673765659332, -0.6138303279876709, -1.2880862951278687, -0.5702994465827942, 0.5614213347434998, 0.7226243019104004, -0.48873990774154663, 1.281026840209961, 0.13319401443004608, -0.16527077555656433, -0.06753554940223694, -0.12085410952568054, -0.3331363797187805, 0.49952083826065063, -0.4308222234249115, -0.4465330243110657, -0.6464051008224487, 0.6221963167190552, 1.0011438131332397, -0.26158639788627625, 0.5319538712501526, 1.3904955387115479, -0.21197646856307983, 0.38474342226982117, -0.008584782481193542, 1.2175146341323853, 0.6770693063735962, 0.04765678942203522, -0.5565014481544495, -0.5479589104652405, 0.22599440813064575, -0.02943972870707512, 0.1842079907655716, -0.1313861757516861, -0.02285715751349926, 0.8042548298835754, -0.861617386341095, 1.308961272239685, 1.0722512006759644, -0.5074794292449951, -0.19597387313842773, -0.27348944544792175, 0.7000599503517151, 0.49482837319374084, 0.2954525053501129, -0.5307591557502747, 0.0339740514755249, -0.4925611913204193, 0.23243503272533417, -0.46445751190185547, -0.18170595169067383, -0.08780205249786377, -0.8857592344284058, 0.3624020516872406, 0.6005657911300659, 0.7971190810203552, -0.037774525582790375, -0.5094061493873596, -0.04465842992067337, 0.15709738433361053, 0.6355037093162537, 0.4763838052749634, 0.674909770488739, 0.4943964183330536, -0.7210289239883423, 0.9614742398262024, 0.2855105698108673, -0.010274237021803856, -0.02139141783118248, 0.9892739057540894, -0.31904974579811096, 1.0293370485305786, -1.2486698627471924, -0.49018800258636475, -0.46137872338294983, 0.6082634329795837, 0.8488622903823853, -0.325333833694458, 0.9818862080574036, -0.7416130900382996, -0.6113576889038086, -0.8965169191360474, 0.10089237242937088, 0.24298934638500214, 0.2109302282333374, 0.1256994754076004, 0.4643966257572174, -0.02653077058494091, 0.5180396437644958, -0.4085516333580017, -0.8338565826416016, -0.2300381362438202, -0.8530719876289368, 0.02014511078596115, -0.9915371537208557, 0.08354529738426208, -0.13532279431819916, -1.4983465671539307, 0.5194792151451111, -0.4255533516407013, -0.47130122780799866, 0.29686301946640015, -0.4190240502357483, 0.0322527252137661, -0.7903493642807007, 0.13828204572200775, -0.4945066571235657, 0.4208129942417145, -0.9623398184776306, 0.7631092071533203, -0.5358502268791199, -0.8475840091705322, 1.3031466007232666, -0.5070783495903015, -0.2417422980070114, 0.8316280245780945, 0.20137928426265717, -1.2379505634307861, 0.0837085023522377, -0.12483840435743332, -0.2751618027687073, -0.05039871484041214, 0.536145031452179, 0.51994389295578, 0.7178793549537659, -0.07412255555391312, 0.4171407222747803, -0.2850185036659241, -0.9636320471763611, -0.472010999917984, -0.38751235604286194, -0.12325498461723328, -0.6377739906311035, -1.5091814994812012, 0.6820679903030396, 0.23233939707279205, -1.2219640016555786, 0.0914604440331459, 0.233302041888237, -0.14598695933818817, 0.4605691730976105, 0.7392474412918091, 0.24273070693016052, 0.7704150080680847, -0.36791253089904785, 0.14114710688591003, -0.7917750477790833, 0.6814773082733154, 0.5235626101493835, -1.0799695253372192, 0.12192828208208084, 1.5883452892303467, 0.26164647936820984, 0.25578996539115906, 0.611370861530304, -0.5388018488883972, -0.054259367287158966, -0.38056680560112, -1.116823434829712, 0.4305460453033447, -0.27239933609962463, 1.8422330617904663, 1.1486124992370605, -0.5384798645973206, -0.590757429599762, -0.011825289577245712, -0.2565137445926666, -0.5462576150894165, -0.5262762308120728, -0.0866987407207489, 0.02186044119298458, 0.07803867012262344, -0.3791249990463257, 0.20796160399913788, -0.20677441358566284, 1.6831300258636475, -0.1859912872314453, 0.024106601253151894, -0.7326958775520325, 0.6494251489639282, -0.20678357779979706, 0.729650616645813, -0.285645067691803, -0.477749228477478, -0.3300309479236603, -0.31455573439598083, 1.1787781715393066, 0.4085293114185333, -0.022020064294338226, -0.05909907817840576, 0.17156435549259186, 0.122145876288414, 0.6222812533378601, 0.5714290142059326, -0.02963888831436634, 0.5019674301147461, 0.3493589460849762, 0.07656343281269073, 0.6070566177368164, -0.3248133659362793, -0.6203020811080933, -0.30139437317848206, 0.5148451328277588, 1.0494319200515747, 0.7183380722999573, 1.5617305040359497, 0.31295502185821533, 0.05293911695480347, -0.3562440872192383, -0.26730045676231384, -0.46783021092414856, -0.6781511902809143, -1.1120567321777344, -0.3642890155315399, -0.07021666318178177, -0.4074589014053345, 0.045191437005996704, 0.4982178211212158, -0.007740661036223173, 0.781615138053894, 1.2810986042022705, -0.36514711380004883, -0.09964755922555923, 0.1054634228348732, -0.13682247698307037, -0.9675237536430359, 0.5955081582069397, 0.6281548142433167, -1.201802372932434, -0.165361225605011, -0.7606644630432129, -0.05579758808016777, 1.077562689781189, -0.2840285301208496, 0.4234907031059265, -0.9182655215263367, -0.5677887797355652, -0.2435835897922516, 0.5975106954574585, -0.21833091974258423, -0.13683505356311798, -0.3353038728237152, 0.8849040865898132, -0.13229216635227203, 0.3450549244880676, -0.5642660856246948, 0.9437929391860962, -0.1328084021806717, -1.4474883079528809, -0.4421032667160034, 0.27477768063545227, 0.6443847417831421, 0.08267034590244293, -0.6725403070449829, -0.3565506637096405, -0.6164854168891907, -0.33138507604599, 0.5143440961837769, 0.1038111001253128, 0.7901151776313782, 0.007622247561812401, -0.3215448260307312, 0.5194710493087769, -0.19855360686779022, -0.10118763148784637, -1.3163599967956543, 0.4099932312965393, 0.903086245059967, 0.9359801411628723, -0.37302789092063904, 0.25184017419815063, 0.28809139132499695, 0.37454134225845337, 0.06149206683039665, 0.1297704577445984, 0.30396389961242676, 0.09007315337657928, -0.20898720622062683, -0.13711217045783997, 0.5252671837806702, -0.28344225883483887, -0.5570153594017029, -0.07518544793128967, 0.5035459995269775, -0.6790057420730591, 0.015536647289991379, 1.038894772529602, 0.348623126745224, 0.05545475706458092, -0.2706478238105774, -0.07464048266410828, 0.49819645285606384, -0.2064567655324936, -0.03919190913438797, -0.8983950018882751, -0.14155562222003937, 0.5374558568000793, -1.3025946617126465, -0.7485756874084473, 0.2697877287864685, 0.2755616009235382, 0.24191094934940338, -1.2449407577514648, 0.18197885155677795, 0.2588995099067688, 1.1896240711212158, 0.39347043633461, 0.4626907408237457, 0.3108677268028259, 0.19988636672496796, 0.8527084589004517, 0.09880603849887848, 0.29688748717308044, 1.0802578926086426, -0.8608282804489136, 0.024670129641890526, 0.09854456782341003, 0.23683558404445648, 0.08143393695354462, -1.0730446577072144, 0.3411791920661926, 0.004360114224255085, 0.35105010867118835, -0.21241210401058197, -0.19783170521259308, -0.5166736245155334, 1.0853720903396606, 0.563401460647583, 0.661439836025238, 0.2778666913509369, -0.05604124814271927, -0.36322009563446045, -0.0404045544564724, 0.36143508553504944, -0.14044901728630066, -0.5658270120620728, -0.13236214220523834, 0.5841584205627441, -0.09587216377258301, 0.3857099115848541, 0.06130611151456833, 0.6895920038223267, 0.2944086492061615, -0.20445579290390015, 0.08338877558708191, 0.4875831604003906, 0.5144074559211731, 1.1875396966934204, 0.24925747513771057, -0.6607402563095093, -0.6742219924926758, 0.465314120054245, -0.23613286018371582, 0.4160327911376953, 0.5597416758537292, -0.008173510432243347, 0.8026360869407654, -1.8230711221694946, -0.2013784795999527, 0.7144080996513367, 0.16601938009262085, 0.8941759467124939, 0.4343072474002838, -0.4647385776042938, -0.5493603944778442, 0.2623341679573059, -0.5271671414375305, 0.18921388685703278, 0.022328456863760948, 0.4920194745063782, 0.08618853241205215, 0.949837863445282, -0.4080725610256195, 0.7441896796226501, -0.951567530632019, -0.3208633363246918, 0.34774306416511536, -0.8866702318191528, 0.02348156087100506, 0.3906487226486206, -0.0055492836982011795, 1.0769771337509155, -0.7648263573646545, -0.5819147229194641, 0.19487982988357544, -0.5397809147834778, 0.25004440546035767, -0.12348975986242294, -0.910140872001648, -0.26098912954330444, -0.006897556595504284, -0.4144880473613739, 0.5410009622573853, 0.12166284024715424, -0.4508891701698303, -0.38412824273109436, -0.7272700667381287, 0.30688852071762085, 0.14345058798789978, 0.7201439738273621, 0.08503203094005585, 0.456745445728302, 0.31502723693847656, 0.2028060108423233, -0.2450585663318634, -0.19241470098495483, -0.3541828691959381, -0.4596306085586548, 0.371684730052948, -2.0713963508605957, -1.1675432920455933, 0.20525217056274414, 1.1555407047271729, 0.3408089280128479, 0.7492266297340393, 0.7378243207931519, 0.7012510895729065, 0.002213961910456419, -0.6752267479896545, 0.4815247058868408, -0.6273589730262756, 0.5681740045547485, 0.3722386956214905, -0.11880701780319214, -0.543929398059845, -0.8226674199104309, -1.7140848636627197, 0.10126576572656631, 0.22208745777606964, -1.649208664894104, 0.6846193671226501, 0.5186348557472229, 0.43976953625679016, 0.5151803493499756, -0.056101419031620026, 0.7693406343460083, -0.4179084599018097, -1.0947061777114868, -1.4121153354644775, 0.7197040915489197, -0.04799441248178482, 0.5025767087936401, -0.08760463446378708, 0.27658382058143616, -0.16114579141139984, -0.04726887121796608, -0.557168185710907, 0.5762147307395935, 0.43309855461120605, 0.49332207441329956, -0.30869174003601074, -0.6292412877082825, -0.00890354998409748, -0.3243418037891388, -0.5443870425224304, -0.5148703455924988, 0.5752311944961548, 0.033455703407526016, -0.0140469279140234, 0.006087560206651688, -0.07745837420225143, -0.5860636830329895, -0.13461937010288239, 0.14929093420505524, 0.48562633991241455, 0.600019633769989, -0.22280466556549072, 0.09426102787256241, -0.12707071006298065, -0.697010338306427, -0.6070727109909058, 0.2939169704914093, 0.9889786839485168, -0.8012290596961975, 0.0743785873055458, -0.12956057488918304, -0.7686399221420288, -0.561950147151947, -0.5287672877311707, -0.18595215678215027, -0.7968934178352356, -1.348643183708191, -1.4302358627319336, 0.3476563096046448, 0.7397832870483398, -0.14273330569267273, 1.3129271268844604, 0.07155846804380417, -1.5658907890319824, 0.26317933201789856, -0.6577725410461426, -0.8996747732162476, -0.040159888565540314, -1.4836695194244385, 0.45240283012390137, -0.3940274715423584, 0.39836692810058594, -0.7546547055244446, 1.1951481103897095, -1.0343060493469238, -1.1375504732131958, -1.26796293258667, -0.36010563373565674, 0.2849406898021698, 0.8537853360176086, -0.9833526015281677, 1.2513222694396973, 0.4623568058013916, -0.527288019657135, -0.3055466115474701, 0.13296368718147278, -0.8714333176612854, 0.20213092863559723, -0.12405619770288467, 0.4247184991836548, 0.1351860910654068, 0.6465829014778137, -1.0010504722595215, 0.5208010077476501, 0.5156788229942322, -0.07968062162399292, -0.3879846930503845, -0.33672896027565, 0.1730182021856308, 0.5564780235290527, -0.5506253838539124, -0.5822604298591614, -0.028507262468338013, -0.3339696228504181, -1.0052746534347534, 0.2820599675178528, 0.8638519644737244, -0.4968865215778351, -0.514350175857544, 0.5413895845413208, 0.04883275553584099, -0.7211078405380249, 0.3325270414352417, -0.1661149263381958, 0.31464284658432007, 0.045187074691057205, -0.26381224393844604, 0.26310184597969055, -1.1052230596542358, 0.19075745344161987, 0.6018272638320923, -0.23420701920986176, -0.5908095836639404, 0.5312915444374084, 1.2064814567565918, 0.13095389306545258, -0.3549483120441437, 1.3391246795654297, 1.3520392179489136, -0.2770375907421112, 0.3594265878200531, 0.37616997957229614, -0.032442156225442886, 0.2812771201133728, -0.578252911567688, 0.011212809011340141, -0.6569987535476685, 0.33616435527801514, -0.03954228386282921, -0.27778151631355286, -0.5660392642021179, -0.18756955862045288, -0.22582660615444183, 0.41176164150238037, 0.4257250726222992, -0.7325183749198914, -0.25258323550224304, 0.5643615126609802, -0.31896936893463135, 0.43415096402168274, -0.023316681385040283, 0.322224497795105, 0.3402951657772064, 0.16134542226791382, 0.07546932995319366, 0.34907931089401245, -0.8955021500587463, -0.33385586738586426, 0.46686914563179016, 0.5022307634353638, -0.03440817818045616, -0.4815846383571625, -1.412674903869629, 0.584436297416687, -0.7597754597663879, -0.7648504376411438, 0.5352334976196289, -1.1676313877105713, -1.5921216011047363, -0.04013585299253464, -0.0468120202422142, -0.1475764811038971, -0.47365450859069824, 0.2903050482273102, -0.04698978736996651, 0.3898138999938965, 0.4351900517940521, -0.439739465713501, 0.8789435625076294, 0.18163318932056427, 0.2674536406993866, -0.27278077602386475, -0.004401625599712133, -0.04921909049153328, 0.2936173379421234, -0.4541299343109131, -0.5639936327934265, 0.7479307055473328, -0.34670642018318176, -1.185259222984314, 0.1046692430973053, -0.39914271235466003, -0.08043287694454193, 0.12689100205898285, -1.07997727394104, 0.11864391714334488, -0.23430506885051727, 0.9284226298332214, -0.2695082724094391, -0.955065906047821, -0.8836827874183655, 0.3809889853000641, -1.0853310823440552, 0.5996453166007996, 0.06393606215715408, 0.7411786317825317, -0.2876642048358917, -0.36918583512306213, -0.062281712889671326, -0.07053893804550171, 0.18335013091564178, 0.045424316078424454, 1.2849206924438477, -0.0024161087349057198, 0.10617100447416306, -0.5312707424163818, -0.747391939163208, 0.08696569502353668, 0.09663267433643341, -0.0015127984806895256, -0.10483836382627487, -1.104931116104126, -0.3196738064289093, -0.8743590712547302, 0.6579589247703552, 0.7083341479301453, -0.16748082637786865, -0.019548755139112473, 0.02474833093583584, -0.7867358326911926, 0.5371063947677612, -0.27696549892425537, 0.044404130429029465, -0.1582917869091034, 0.7876668572425842, 1.769166350364685, 0.5373058915138245, 0.4563615918159485, -0.4261733889579773, 0.7953965067863464, -0.6894673109054565, -0.2980327904224396, -0.6477476358413696, -0.08897452801465988, -0.37632420659065247], [0.780443012714386, 1.2724584341049194, -1.6938506364822388, -0.8811358213424683, 0.6995054483413696, 0.20753087103366852, 1.207022786140442, -0.6171576976776123, 0.26482293009757996, -0.29467862844467163, -0.12490536272525787, -0.4443714916706085, 0.3616250455379486, 1.0608453750610352, 0.017750071361660957, -0.030637051910161972, 0.582503080368042, 0.07567356526851654, 0.7472690343856812, 0.6551479697227478, -0.18812549114227295, 0.31212085485458374, -0.19448934495449066, -0.40003591775894165, -0.13912206888198853, 0.31220462918281555, -0.8278858065605164, 0.01716751977801323, -1.3128398656845093, -0.7819395065307617, 0.9868977665901184, -1.0597225427627563, 0.43009817600250244, 0.391000896692276, -1.5019493103027344, -0.21202626824378967, 1.068825364112854, 0.5109660029411316, 0.5389102697372437, 0.18509157001972198, 1.4770556688308716, -0.19133585691452026, -0.360140860080719, -1.8692092895507812, -0.4141060411930084, 0.0024171359837055206, 1.20280921459198, -0.255057156085968, 0.554512619972229, 0.037118833512067795, 0.605783224105835, -1.0411409139633179, 1.0513811111450195, 0.7418650388717651, 0.33507493138313293, -0.21236072480678558, 0.012244813144207, 0.1158878430724144, 0.8180177211761475, -0.8495936393737793, 1.6262524127960205, -0.18980742990970612, -1.1742404699325562, 0.027473442256450653, 0.30168014764785767, -0.16065029799938202, 0.04906485974788666, 0.5581625699996948, 0.37637680768966675, -0.32486897706985474, 0.8514776229858398, 0.685537576675415, -0.46027815341949463, 0.2435416430234909, -1.1481118202209473, -0.32625481486320496, 0.7361340522766113, 1.0277013778686523, 0.8066062927246094, 0.3112013041973114, -0.683732807636261, 0.2080310881137848, 1.2391571998596191, -0.8469870090484619, 0.28964948654174805, 0.3168056905269623, 0.6918404698371887, -0.941876232624054, 0.22195987403392792, 1.6234455108642578, 0.30839109420776367, -0.25955235958099365, 1.0432244539260864, -0.24941577017307281, -0.2275608330965042, -0.38192737102508545, 0.3391342759132385, -0.09160292148590088, -0.6608526110649109, -0.5471688508987427, -0.016930682584643364, 0.025751790031790733, 0.1770906150341034, 0.3404446244239807, -0.020894421264529228, 1.2727255821228027, 0.6363789439201355, 0.44174519181251526, -0.2862241268157959, 0.2283397912979126, -0.5060893893241882, -0.14702428877353668, -0.5914682745933533, -0.9641954302787781, -0.9827640056610107, 0.6791177988052368, 1.7139172554016113, -0.1599777191877365, 0.7632626891136169, 0.8344944715499878, -0.31572046875953674, 0.38573020696640015, -0.20359691977500916, 1.121691346168518, -0.02654152177274227, 0.03763692453503609, -0.9354557394981384, -0.006057756952941418, 0.26908689737319946, -0.07131526619195938, -0.1922866553068161, -0.31244245171546936, 0.14538154006004333, 0.17636238038539886, -0.8805716037750244, 0.8218549489974976, -0.2969900369644165, -0.2588541507720947, -0.3949139714241028, 0.10962120443582535, 0.6490570902824402, -0.5379971265792847, 0.3378421664237976, -0.5167098045349121, 0.6834798455238342, -0.05814811587333679, 0.15282507240772247, -0.7694717049598694, -0.6141566038131714, -0.013065416365861893, -1.1162737607955933, 0.9803374409675598, -0.13695496320724487, 0.46778205037117004, 0.2082265466451645, -0.13381889462471008, 0.4087446630001068, 0.45091769099235535, 0.17801693081855774, -0.46000173687934875, 0.508886456489563, 0.4088471829891205, -0.7536213397979736, 1.0535976886749268, -0.314656138420105, -0.20083248615264893, -0.029598388820886612, 0.5319314002990723, 0.4983941912651062, 0.5551189184188843, -0.7793606519699097, -0.16282916069030762, -0.9200195670127869, -0.009206507354974747, 0.15366919338703156, -0.15615946054458618, 1.833583950996399, -0.6066592335700989, -0.6096823811531067, -0.5873339176177979, 0.5916910767555237, -0.04526332765817642, 0.19547060132026672, 0.05851725861430168, 0.5839144587516785, -0.6676265597343445, 0.7137947082519531, 0.3039429187774658, -0.6860045194625854, -0.49690601229667664, -0.45063677430152893, -0.3171983063220978, -0.4763580560684204, 0.034132055938243866, -0.2957392930984497, -0.6978196501731873, 0.9609302878379822, -0.5824008584022522, -0.32222986221313477, 0.038361381739377975, -0.31266549229621887, -0.3831805884838104, -0.36601418256759644, 0.7215577363967896, -0.37174174189567566, 0.492125928401947, -0.5355842113494873, 0.6363628506660461, -0.739507257938385, -0.27301350235939026, 1.2021559476852417, -0.40341734886169434, -0.340231329202652, 0.8908534646034241, -0.9475947618484497, -0.8770102858543396, 0.2105671465396881, 0.02123534120619297, 0.13622793555259705, 0.5043087005615234, -0.10425300151109695, 0.027642730623483658, 0.4981311559677124, -0.18706516921520233, 0.6589779853820801, 0.11470059305429459, -0.848584771156311, -1.0852059125900269, -0.06877417862415314, 0.117536760866642, -0.37800589203834534, -1.1993849277496338, 0.6346481442451477, 0.4553544819355011, -0.9602305889129639, 0.7638010382652283, -0.3475552797317505, -0.07235416024923325, 0.2622746527194977, 0.6943179368972778, 0.13608065247535706, 0.3613668978214264, 0.15017330646514893, -0.03345455601811409, -1.1467945575714111, -0.04247577488422394, 0.620070219039917, -0.5905921459197998, -0.30129680037498474, 1.092773675918579, 0.6286673545837402, 0.5266311764717102, 0.3243143558502197, -0.44630929827690125, 0.10691776871681213, -1.369547963142395, -0.7860447764396667, 0.45454826951026917, -0.7908850312232971, 1.222930908203125, 0.6690199375152588, -0.6493859887123108, -0.23194357752799988, 0.3516966998577118, 0.2867605686187744, -0.5828196406364441, -0.9813539981842041, -0.34273889660835266, -0.12645184993743896, -0.6104269027709961, 0.015413281507790089, 0.6809294819831848, 0.39006510376930237, 1.4173364639282227, -0.25294288992881775, 0.10924675315618515, -0.03911088407039642, 0.7415216565132141, -0.14777223765850067, 0.6496801972389221, -0.1202097088098526, -0.7134947776794434, -0.5193367004394531, 0.05467842146754265, 0.928013265132904, -0.21301370859146118, 0.09935052692890167, -0.012460699304938316, 0.6531397700309753, -0.36328038573265076, 0.6705448627471924, 0.367001473903656, -0.18446758389472961, 0.7424169182777405, 0.7296493649482727, 0.26649484038352966, 0.8410666584968567, -0.40355610847473145, -1.0599520206451416, -0.1448519229888916, 0.11022095382213593, 0.4009448289871216, 1.0699571371078491, 1.0762752294540405, -0.16797342896461487, -0.09189193695783615, -0.3752431273460388, -0.5619745850563049, -0.45425742864608765, -0.6202856302261353, -0.8482790589332581, -0.15102311968803406, -0.18623390793800354, -0.7364832162857056, 0.3633427321910858, -0.26054850220680237, 0.3382718563079834, 0.7978597283363342, 0.372936874628067, -0.2861909866333008, -0.2006852775812149, 0.31886133551597595, 0.37791863083839417, -1.1303430795669556, 1.1986268758773804, 0.9590141773223877, -1.2171416282653809, 0.062396056950092316, -0.3627868592739105, -0.2412477731704712, 0.06012662127614021, -0.47192686796188354, 0.021282847970724106, -0.9386577010154724, -0.7168918251991272, -0.2462906837463379, 1.4377079010009766, -0.038930173963308334, 0.19029666483402252, -0.8853278160095215, 0.3446867763996124, 0.16396892070770264, -0.29575279355049133, -0.48606905341148376, 0.8505537509918213, -0.054712288081645966, -0.963838517665863, 0.22862280905246735, 0.6015878319740295, -0.14343497157096863, -0.7300235629081726, -0.1854703426361084, -0.4117024540901184, -0.32400327920913696, 0.5188789367675781, 0.8133812546730042, 0.2779545187950134, 0.14841917157173157, 0.4211317300796509, -0.07693341374397278, 0.7282278537750244, -0.48744431138038635, -0.19668129086494446, -0.8985973596572876, 0.35331931710243225, 0.05874510481953621, 0.9284041523933411, 0.22567829489707947, 0.4646133482456207, -0.016095342114567757, -0.6349193453788757, -0.292146772146225, -0.015139741823077202, 0.7331801652908325, 0.22143641114234924, 0.07910396158695221, -0.6108115911483765, 0.23742425441741943, 0.01919705420732498, -0.6535527110099792, -0.2581211030483246, 0.04388193413615227, -0.8914087414741516, -0.3305646777153015, 0.8437723517417908, -0.0582401268184185, -0.4588173031806946, -0.565958559513092, -0.044035330414772034, 0.3369519114494324, 0.6245554685592651, -0.3445189297199249, -0.15887567400932312, 0.12676291167736053, 0.4389023184776306, -0.9788423776626587, -0.4272781312465668, -0.29594340920448303, 0.26434949040412903, 0.9913492798805237, -0.285854309797287, 0.18604756891727448, 0.02524564042687416, 0.7629751563072205, 0.3051147758960724, 0.867946207523346, 0.07894562929868698, 0.3683869242668152, 0.1751512587070465, 0.1706313043832779, -0.23359538614749908, 1.0474369525909424, -0.8413069248199463, -0.4506680369377136, 0.03966989368200302, 0.6015614867210388, 0.0006647501140832901, -0.08353547006845474, 0.028605088591575623, 0.04792208969593048, -0.6648430228233337, -0.10464309900999069, -0.23109838366508484, -0.3168381452560425, 0.7059045433998108, 0.36181750893592834, 1.0360898971557617, 0.9290668964385986, 0.21938058733940125, -0.6348562240600586, -0.2265782505273819, 0.0054258303716778755, 0.173959881067276, -0.716488242149353, -0.3620406687259674, 0.20344214141368866, -0.035408709198236465, 0.015131878666579723, 0.3350631594657898, -0.10978235304355621, 0.005104338750243187, -0.062231309711933136, -0.21464014053344727, 0.6884949207305908, 0.34442341327667236, 1.4559985399246216, 0.4169059693813324, -0.7716370224952698, -0.3984958529472351, -0.1552218347787857, -0.8435105681419373, -0.22256696224212646, 0.341238409280777, 0.22753393650054932, 1.3676446676254272, -1.8419033288955688, -0.9260625839233398, 0.5403263568878174, 1.4653254747390747, 0.6626757979393005, 1.2820496559143066, -0.07741105556488037, -0.6830750703811646, 0.29720839858055115, 0.5389797687530518, -0.4309658110141754, 0.12333900481462479, 0.4661515951156616, 0.4435785710811615, -0.16951467096805573, -0.8859658241271973, 0.279297798871994, -0.504575252532959, -1.0645992755889893, -0.18813371658325195, -0.10044648498296738, 0.26387691497802734, 0.7908494472503662, 0.13900014758110046, 0.9402894377708435, -1.2048553228378296, -0.5108830332756042, 0.15183764696121216, -0.1327757090330124, 0.9063055515289307, -0.4371204376220703, -0.3260782063007355, -0.83730548620224, -0.06921098381280899, -0.33533111214637756, 0.20837852358818054, -0.4849843382835388, -0.22843144834041595, -0.2901993989944458, -0.25058019161224365, -0.5665431618690491, 0.8908516764640808, 0.7731308937072754, 0.45851412415504456, -0.08303035795688629, 0.6550454497337341, 0.5981389284133911, -0.45619288086891174, -0.13010968267917633, 0.4018188416957855, -0.6313084363937378, -0.00622323714196682, -1.6804938316345215, -1.2366721630096436, 1.085033655166626, -0.06241975724697113, 0.7726938724517822, 0.2679441571235657, 0.9217982292175293, 0.5193474292755127, -0.5063735246658325, -0.6215721964836121, 0.9981116652488708, -0.2016342133283615, 0.2980031371116638, 0.11628041416406631, -0.18566769361495972, -0.1491423398256302, -0.7228063344955444, -1.5932273864746094, -0.04979337379336357, -0.7754542231559753, -1.1475831270217896, 0.5163013935089111, -0.10327589511871338, 0.43258118629455566, -0.0016237013041973114, -0.5700177550315857, 0.29225289821624756, -2.591288648545742e-05, -0.39901047945022583, -1.120924949645996, 0.7149220705032349, 0.1449543833732605, 0.29540929198265076, 0.0917462557554245, -0.25366634130477905, 0.43153876066207886, -0.9432705044746399, 0.4445821940898895, 0.45499202609062195, 0.3472171425819397, 0.3452187478542328, 0.1540803611278534, -0.8384172916412354, -0.1635710597038269, 0.4563749432563782, -0.6860844492912292, -0.14372342824935913, -0.01029665395617485, 0.5952180624008179, 0.46026983857154846, 0.06113497540354729, -0.07452701777219772, -0.5208746790885925, -0.3341962397098541, -0.5806468725204468, -0.21090172231197357, -0.007205544039607048, -0.2515358626842499, -0.12169169634580612, -0.4822331666946411, -1.098739743232727, -0.4510207772254944, 0.6365984082221985, 0.6948666572570801, -1.3144060373306274, 0.00773153081536293, 0.3906879723072052, -0.29007187485694885, -0.04434395208954811, -0.928878903388977, 0.34478938579559326, -0.6353750824928284, -1.4564188718795776, -0.6074414253234863, 0.21702370047569275, 0.7887324094772339, -1.1273480653762817, 0.8312041163444519, 1.178421139717102, -1.1309559345245361, 0.011240534484386444, 0.3405914902687073, -0.7352288365364075, 0.15055757761001587, -1.1436352729797363, 0.2616370916366577, -0.47782936692237854, -0.06744687259197235, -0.8285596966743469, 2.057770013809204, -0.9994032382965088, -1.4910459518432617, -0.9157696962356567, 0.17917633056640625, -0.1019781231880188, 0.850927472114563, -0.6252827048301697, 0.8362038135528564, 0.3073349595069885, -0.4667346179485321, -0.534868597984314, 0.570149838924408, -1.312314510345459, 0.13743793964385986, 0.7021819353103638, 0.48877519369125366, 0.2356465458869934, 0.7306021451950073, -0.6906735897064209, 0.3871108293533325, -0.2825995981693268, 0.29611486196517944, -0.6346492767333984, -0.054508015513420105, 0.05620020255446434, 0.2376421093940735, -1.5941811800003052, -0.4928801953792572, -0.05527995899319649, -0.6151925325393677, -0.6795426607131958, 0.9972575902938843, 0.972016453742981, -0.7139392495155334, -0.4933813214302063, 0.013485443778336048, -0.04855258762836456, -0.7178142666816711, 0.11588596552610397, 0.41809067130088806, -0.015042990446090698, 0.1896734982728958, 0.41893279552459717, 0.1128590852022171, -1.0798559188842773, -0.024756504222750664, 0.38314077258110046, 0.3758370578289032, -0.9838247895240784, 0.6427916884422302, 0.9557290077209473, 0.22782637178897858, -0.5636975169181824, 0.9516339302062988, 1.1366709470748901, -0.4049423933029175, -0.15086615085601807, 0.11677258461713791, 0.5732078552246094, 0.5318107008934021, -0.6734510660171509, 0.7215092182159424, -0.6741800904273987, 0.093809112906456, 0.2781245708465576, -0.19310136139392853, 0.026175368577241898, -0.39037996530532837, -0.030210698023438454, 0.5896940231323242, 0.2718312442302704, -0.5960357785224915, -0.5397241711616516, 0.6013019680976868, -0.0016665318980813026, 0.0835663452744484, 0.2667897045612335, 0.38578665256500244, 0.16111721098423004, -0.42862799763679504, 0.09738574922084808, 0.3105098605155945, -0.611881673336029, -0.26489174365997314, 0.2817525267601013, 0.19231605529785156, -0.07927051931619644, -0.027106523513793945, -0.9948118925094604, -0.3951968252658844, -0.8059133291244507, -0.27756375074386597, 0.22557514905929565, -1.7878854274749756, -0.8776154518127441, 0.9607811570167542, -0.12850134074687958, -0.5569889545440674, 0.06532450765371323, 0.37711891531944275, -0.293480783700943, 0.7353933453559875, 0.3178204298019409, -0.41188541054725647, 0.7556183934211731, 0.20629532635211945, -0.3096737861633301, -0.5486434698104858, -0.36112043261528015, 0.12659426033496857, 0.3284372389316559, -0.2824998199939728, -0.29252368211746216, 0.8577256798744202, -0.08110643923282623, -0.9141109585762024, 0.246989905834198, 0.19609566032886505, -0.17529787123203278, 0.10103992372751236, -1.2278908491134644, 0.07887504249811172, -0.7466986179351807, 1.2158730030059814, -0.4772223234176636, -0.011614666320383549, -0.7916173338890076, 0.21291311085224152, -0.8418221473693848, 1.26058030128479, -0.20952510833740234, 1.3059968948364258, -0.0627913698554039, -0.17318415641784668, 0.0001188602764159441, -0.7750334143638611, 0.011641439981758595, 0.18200838565826416, 0.8293179869651794, -0.3072737455368042, 0.2005731761455536, -0.6594754457473755, -0.760689914226532, 0.11726246029138565, 0.8530215620994568, 0.3373165428638458, 0.24816341698169708, -0.5949576497077942, -0.5233051776885986, -0.3236461281776428, 0.22509033977985382, 1.4135535955429077, 0.3209701478481293, -0.4427076578140259, -0.4433915913105011, -0.5009559392929077, 1.382069706916809, -0.023728204891085625, -0.055004533380270004, 0.25431185960769653, 0.5747689604759216, 1.4108014106750488, -0.12485862523317337, 0.2222178727388382, -0.6126775145530701, 0.49243423342704773, -0.18895795941352844, 0.009838396683335304, -0.7069042921066284, -0.24935446679592133, -0.15497983992099762], [0.2113502472639084, 1.7692145109176636, -2.02940034866333, -0.6690124273300171, 1.0774953365325928, 0.4892430901527405, 0.9300203323364258, -1.3944752216339111, -0.24427032470703125, -0.33456894755363464, -0.41626426577568054, 0.38556912541389465, 0.03312757983803749, 1.297544240951538, 0.4312935173511505, 0.08501703292131424, -0.09157989174127579, -0.4962063133716583, 0.7819302082061768, 1.4606962203979492, 0.2215913087129593, -0.7968186736106873, -0.3967226445674896, -0.07141090929508209, 0.14082053303718567, 0.2948082983493805, -0.9602157473564148, -1.0891776084899902, -0.683207094669342, -0.36690205335617065, 1.1681065559387207, -0.9194811582565308, 0.11266682296991348, 0.20475685596466064, -2.152639389038086, -0.9817314743995667, 1.3396594524383545, 0.3810032904148102, 0.35669076442718506, 0.21570847928524017, 1.2904269695281982, 0.4272997975349426, 0.4844169318675995, -1.0837119817733765, -0.03742722049355507, -0.11986377090215683, 0.5860222578048706, -0.5560860633850098, -0.6787769198417664, -1.4458279609680176, 0.8596159815788269, -1.003844976425171, 0.8761880397796631, 0.239234060049057, 0.7961868047714233, 0.2191343754529953, -0.3285659849643707, 0.18152202665805817, 0.6766283512115479, -0.5407837629318237, 0.6341729164123535, 0.6148306727409363, -0.4654676616191864, 1.0973231792449951, 0.5537415146827698, -0.18039186298847198, -0.02031790278851986, 0.5451595783233643, -0.36918869614601135, -0.197852224111557, 0.7877580523490906, -0.19502009451389313, -0.5042517185211182, 0.5602666139602661, -1.1530978679656982, 0.6423248052597046, 0.6106621623039246, 0.057908471673727036, 0.15006808936595917, 0.5613224506378174, -0.6703249216079712, -0.18994301557540894, 0.6495009660720825, -0.6040483117103577, 1.2080086469650269, -0.14389002323150635, 0.15353895723819733, -0.6630674600601196, -0.2892192006111145, 1.2429429292678833, 0.1158759742975235, 0.03459535166621208, 0.907305121421814, -0.7661190032958984, -0.43957939743995667, -0.5164903402328491, 0.32930701971054077, -0.23289166390895844, -0.48704519867897034, -0.4966515600681305, -0.7015867829322815, -0.03314836323261261, -0.5601624846458435, -0.7224428653717041, 0.14767250418663025, 1.448174238204956, 0.20155292749404907, -0.31450122594833374, -0.9566220045089722, 0.3620013892650604, 0.18216203153133392, 0.363989919424057, -1.1454094648361206, -1.1511766910552979, -0.4901370108127594, 0.8672056794166565, 1.212043285369873, -0.3477364778518677, 0.5909764170646667, 0.8517055511474609, -0.874363899230957, 0.018334509804844856, -0.3640393912792206, 0.4589715600013733, 0.674211859703064, 0.29106757044792175, -0.18152059614658356, -0.5434077382087708, 0.09445937722921371, 0.23419596254825592, 0.22409044206142426, -0.3186178505420685, 0.07110069692134857, 0.24630971252918243, -0.6046103835105896, 1.0854195356369019, -0.12956134974956512, -0.6099616885185242, -0.15744651854038239, 0.038754772394895554, 0.3805646598339081, -0.453041672706604, -0.77096027135849, -0.3862188160419464, 0.33839163184165955, -0.3756985664367676, 0.3943897485733032, -0.24191690981388092, -1.03452730178833, -0.3661230206489563, -0.42645764350891113, 0.5803343057632446, 0.494469553232193, 0.5578261613845825, 0.09412076324224472, -0.04659329727292061, 0.08997803181409836, 0.25312259793281555, 0.060619376599788666, 0.04803847894072533, 1.008284568786621, 0.09601906687021255, -0.21573688089847565, 1.1452568769454956, -0.03259417042136192, -0.22308357059955597, 0.035577189177274704, 0.7250282764434814, -0.2868374288082123, 0.1596003919839859, -0.5021390914916992, -0.31572094559669495, -0.8607319593429565, 0.6039755344390869, 0.7387371063232422, -0.7522060871124268, 1.3415818214416504, -0.8560901284217834, -1.326003909111023, -1.3552504777908325, 0.26980212330818176, -0.14398309588432312, -0.07553351670503616, 0.28055262565612793, 0.28198251128196716, 0.15033701062202454, 0.7303903102874756, -0.2870841920375824, -0.13123996555805206, -0.3305688500404358, -0.8840419054031372, 0.03669667989015579, -1.0356814861297607, 0.009017763659358025, -0.29730769991874695, -0.7875057458877563, 0.5175722241401672, -0.262114942073822, -0.732928454875946, -0.26242318749427795, -0.6478222608566284, -0.4235668182373047, -0.6423833966255188, 0.11266174167394638, -0.5777597427368164, 0.9486649632453918, -1.6054030656814575, 0.8749647736549377, -0.7751226425170898, -0.22976744174957275, 1.507470965385437, 0.4912981688976288, -0.8670281767845154, 0.8700448870658875, -0.35627102851867676, -1.6972073316574097, 0.3852517306804657, 0.31507086753845215, -0.338495135307312, -0.1926816999912262, 0.36480292677879333, 0.3166530430316925, 0.4517981708049774, -0.09890279173851013, 0.4283578097820282, -0.34156981110572815, -0.7780565619468689, -0.23688757419586182, -0.7808917164802551, -0.14261987805366516, -0.6496474146842957, -1.696908950805664, 0.9998825788497925, 0.2726219892501831, -1.0693854093551636, 0.17968925833702087, 0.030382975935935974, 0.398968905210495, 0.7807519435882568, 0.8694416284561157, 0.5560547709465027, 1.0861152410507202, 0.042269814759492874, 0.41221413016319275, -0.9530156254768372, -0.5392481684684753, 1.1239347457885742, -0.5481918454170227, -0.37889721989631653, 1.0710384845733643, 0.7244889736175537, 0.5670217275619507, 0.4100169241428375, -0.2475021332502365, 0.4045262038707733, -0.6551990509033203, -0.7099522948265076, 0.47736626863479614, -0.6471962928771973, 1.3978404998779297, 1.1341078281402588, -0.6022748351097107, -0.18098358809947968, 0.29740390181541443, -0.18161465227603912, -0.7009196281433105, -0.13139992952346802, -0.16239525377750397, -0.10186495631933212, -0.22279320657253265, -0.5475904941558838, -0.25661975145339966, -0.08368374407291412, 0.9334423542022705, -0.3908606767654419, -0.8183951377868652, 0.030240634456276894, 1.226357340812683, 0.40400218963623047, 0.31238600611686707, 0.2449488639831543, -0.5856184959411621, -0.9178195595741272, -0.16006730496883392, 0.8062414526939392, 0.020066875964403152, 0.0546964630484581, 0.17703282833099365, 0.45200812816619873, -0.4693927466869354, 0.35304564237594604, 0.5676087737083435, -0.5059099793434143, -0.10215846449136734, 0.14278768002986908, 0.2862836718559265, 0.7222191691398621, -0.8072362542152405, -0.44655120372772217, -0.6814152002334595, 0.3532618582248688, 1.6484436988830566, 0.7224335670471191, 1.82291841506958, 0.17142285406589508, 0.2386210709810257, -0.027199264615774155, -0.197307288646698, -0.4302748143672943, -1.0063612461090088, -0.2993384003639221, -0.10647325217723846, -0.08590131998062134, -0.33861833810806274, 0.08108827471733093, 0.6837441921234131, -0.24931767582893372, 0.6710167527198792, 0.7090746760368347, -0.49010342359542847, -1.1164257526397705, -0.6051930785179138, 0.23873503506183624, -0.7243704199790955, 0.2851620018482208, 0.8024225234985352, -0.8529883623123169, -0.8058302402496338, -0.22419887781143188, 0.06240600720047951, 0.8808924555778503, 0.0255852323025465, 0.3641214072704315, -0.8887600302696228, -0.46343499422073364, -0.41434165835380554, 1.6658875942230225, 0.10610346496105194, 0.1468035727739334, -0.41455668210983276, 0.6772633790969849, 0.601225733757019, 0.011511923745274544, -0.2045818269252777, 0.6977465748786926, -0.4263768792152405, -0.8520421385765076, 0.12619540095329285, 0.1810770183801651, -0.034426767379045486, -0.4627644717693329, -0.53565514087677, 0.019199188798666, -0.08516118675470352, -0.3010362982749939, 0.5342620015144348, -0.2782106399536133, 0.710374116897583, 0.21227039396762848, 0.13241951167583466, 0.8168527483940125, -0.08915670216083527, -0.18678106367588043, -1.0730557441711426, 0.8787552118301392, 0.8480959534645081, 0.8016639351844788, 0.10381633043289185, -0.5114626884460449, -0.16989284753799438, -0.25300610065460205, 0.5964053869247437, 0.07293523848056793, 0.8232340216636658, 0.4532519280910492, -0.22970300912857056, -0.478933721780777, 0.07677213847637177, -0.06383982300758362, -0.6668812036514282, -0.28683599829673767, 0.5377904176712036, -1.6147137880325317, -0.8111729621887207, 1.3421976566314697, 0.31350529193878174, -0.2906655967235565, -0.46108826994895935, 0.22013339400291443, 0.8092550039291382, -0.0626664087176323, 0.36341172456741333, -1.0073498487472534, 0.2904292643070221, 0.1424376666545868, -1.2107607126235962, -0.2318696826696396, 0.11962264776229858, 0.4162242114543915, 0.4142797887325287, -0.5250504016876221, 0.3135519027709961, 0.04674239829182625, 0.3190484642982483, 1.1211912631988525, 0.18854588270187378, 0.4860397279262543, -0.3424610197544098, -0.16729038953781128, -0.3049498498439789, 0.25765296816825867, 1.0299113988876343, -0.6439660787582397, -0.30187466740608215, -0.0923164039850235, -0.10517659038305283, 0.18097667396068573, 0.3290579319000244, -0.14484204351902008, 0.27715015411376953, -0.07537294179201126, 0.073630191385746, -0.46567991375923157, -0.30120649933815, 1.0985783338546753, 0.10659415274858475, 0.22637173533439636, 1.044870376586914, -0.09516031295061111, -1.2991665601730347, 0.12990067899227142, -0.029000718146562576, 0.05573723465204239, -0.11785732954740524, 0.14070983231067657, 0.2823786437511444, -0.3637925684452057, 0.8054221272468567, 0.5225865244865417, 0.787635326385498, 0.20401158928871155, 0.21490703523159027, 0.21358263492584229, 0.16027827560901642, 0.5381582379341125, 1.7789479494094849, 0.3731416165828705, -0.3935169577598572, -0.9954655766487122, 0.5466240048408508, -0.32171523571014404, 0.6478259563446045, 0.4075981080532074, -0.25864169001579285, 1.0889756679534912, -1.1350635290145874, -0.4623391330242157, 0.9208005666732788, -0.2525322437286377, -0.055518001317977905, 0.7900784611701965, -0.11006742715835571, -1.0202937126159668, 0.47907406091690063, 0.08169393986463547, 0.1617763340473175, 0.3796347379684448, 0.25469931960105896, -0.07599063962697983, 0.6634501218795776, -0.14539335668087006, 0.5832062363624573, -0.6831530928611755, 0.18127219378948212, 0.13878263533115387, -0.20059959590435028, 0.003079020418226719, 0.05317873880267143, 0.40637052059173584, 1.0017448663711548, -0.1787835657596588, -0.925374448299408, -0.19288834929466248, -0.5119276642799377, 0.2763226330280304, -0.24752886593341827, -0.4875618815422058, -0.569102942943573, -0.7657907009124756, -0.11706914007663727, 0.5557739734649658, -0.3682354986667633, -0.39744818210601807, -0.0901569202542305, -0.9329829216003418, 0.38805949687957764, 0.7643168568611145, 1.1733289957046509, 0.008235732093453407, 0.2591114640235901, 0.27960410714149475, 0.195415660738945, -0.47619929909706116, -0.0642198845744133, 0.4170874357223511, -0.4465644359588623, 0.41345328092575073, -1.7939852476119995, -0.9498993754386902, 0.25917255878448486, 0.7715365886688232, 0.44882479310035706, 0.7354426383972168, 1.0984370708465576, 0.8080486059188843, -0.3631899058818817, -0.04406013712286949, -0.43848907947540283, -0.7146148085594177, 0.8218344449996948, 0.6973509788513184, -0.7918050289154053, -0.5953199863433838, -0.9515816569328308, -1.7546887397766113, 0.9749664664268494, 0.031968459486961365, -1.5323153734207153, 0.8508568406105042, 0.20166324079036713, 0.33151566982269287, 0.3851025402545929, -0.6823182106018066, 0.5563364624977112, -0.3981923460960388, 0.07081609964370728, -1.452194094657898, 0.2139996439218521, 0.5861663222312927, -0.1619066745042801, -0.5373499393463135, 0.362504243850708, -0.33967646956443787, -0.07384023815393448, 0.3400345742702484, 0.34393253922462463, 0.5790413022041321, 0.8928434252738953, 0.23748718202114105, -1.2795917987823486, 0.022909192368388176, -0.25458481907844543, -0.029350629076361656, -0.294055700302124, 0.5673316121101379, 0.13228930532932281, -0.1801527738571167, -0.34173694252967834, -0.2785147726535797, -0.5206685662269592, -0.6572725772857666, -0.7013758420944214, 0.49834924936294556, 1.0224502086639404, -0.13373197615146637, 0.2934114933013916, -0.21012425422668457, -1.0251338481903076, -0.7122920751571655, 0.6592389941215515, 0.884127140045166, -0.5949432849884033, 0.01461128517985344, 0.009365352801978588, -0.5189486145973206, -0.44791844487190247, -0.030256925150752068, 0.22987836599349976, -0.9431843757629395, -0.835476279258728, -0.8345788717269897, 0.06488864123821259, 0.5226209163665771, -0.6050516366958618, 0.9696823954582214, 0.7116990089416504, -0.7677414417266846, 0.568700909614563, -0.13161489367485046, -1.3021045923233032, 0.2215472012758255, -1.366360068321228, 0.8583512902259827, -0.5108921527862549, 0.8662171959877014, -0.06246694177389145, 0.704668402671814, -1.295386552810669, -0.5953142642974854, -1.236095905303955, -0.3828999400138855, 1.4908400774002075, 0.28658542037010193, -1.2112956047058105, 1.1934338808059692, 0.24590617418289185, -0.8392990827560425, -0.4285115897655487, 0.3557363450527191, -1.029526948928833, 0.03820250555872917, 0.7471341490745544, 1.3478001356124878, 0.10796857625246048, 1.3891202211380005, 0.31283244490623474, 0.5909778475761414, -0.4140881597995758, 0.332735151052475, -0.4031623899936676, 0.40135157108306885, -0.12946230173110962, 0.5025833249092102, -0.9176239371299744, -0.5224291682243347, -0.10665249079465866, -0.8883554935455322, -0.7458634972572327, 0.3815114498138428, 1.2079745531082153, -0.4201989769935608, -0.007122650742530823, -0.09905319660902023, 0.6121443510055542, -0.7457574009895325, 0.13981275260448456, -0.34645339846611023, 0.20248185098171234, -0.25219404697418213, -0.2421974539756775, 0.37562546133995056, -1.1921228170394897, 0.39005768299102783, 0.408458411693573, -0.07472187280654907, -0.7220620512962341, 0.5853510499000549, 0.5268079042434692, 0.5617173314094543, -0.4762767553329468, 1.1957560777664185, 1.5295425653457642, -0.15472975373268127, 0.02271103858947754, 0.28279224038124084, 0.21996481716632843, 0.8363768458366394, -0.7365095615386963, -0.1064746230840683, -0.9341717958450317, 0.2577594816684723, 0.24892117083072662, -0.2601463794708252, -0.13266441226005554, -0.07846304029226303, -0.6137769222259521, -0.024530936032533646, 0.6466752290725708, 0.16220448911190033, -0.8602014780044556, 1.3914494514465332, -0.2721574902534485, -0.332235187292099, 0.39212116599082947, 0.29814931750297546, 0.11371985077857971, -0.4722461402416229, 0.17776595056056976, 0.2883976399898529, -0.9502606391906738, 0.36342620849609375, 0.10961807519197464, -0.15343745052814484, 0.10596121847629547, -0.6007225513458252, -0.9099699854850769, 0.13920128345489502, -0.4396362006664276, -1.3076443672180176, 0.39291155338287354, -0.8441803455352783, -0.806889533996582, 0.5112894773483276, -0.14498081803321838, -0.5129150748252869, -0.3739173114299774, 0.3609298765659332, 0.03989919275045395, 0.33100584149360657, 0.9348916411399841, -0.324516236782074, 1.1307778358459473, 0.30956026911735535, 0.4989885985851288, -1.1641855239868164, 0.49830102920532227, 0.45635533332824707, 0.6240633726119995, -0.4913288652896881, -0.4065009355545044, 0.7682265639305115, -0.2834552824497223, -0.937414824962616, 0.08144286274909973, -0.23018544912338257, -0.06198938563466072, 0.2739579677581787, -0.9918591380119324, -0.17489348351955414, 0.3094594180583954, 0.6901882290840149, -0.971885621547699, -0.686734139919281, -1.0807042121887207, 0.5456658005714417, -0.9162799119949341, 1.1700615882873535, -0.22293467819690704, 1.0144635438919067, 0.6446710228919983, -0.8798672556877136, -0.21307691931724548, -0.45339658856391907, 1.2307275533676147, -0.16356806457042694, 0.6757274866104126, -0.5114302039146423, 0.48981380462646484, -0.09401804208755493, -0.8279900550842285, 0.302141934633255, 0.23838798701763153, -0.1620633900165558, -0.16967537999153137, -0.8344714045524597, -1.087308645248413, -0.7028946280479431, 0.5646926760673523, 1.1388087272644043, 0.32023003697395325, 0.5469565391540527, 0.24417750537395477, -1.1617910861968994, -0.16126395761966705, 0.6367945671081543, -0.20379871129989624, -0.06338274478912354, 1.3553950786590576, 1.6173007488250732, 0.27274370193481445, 0.022591635584831238, -0.42970359325408936, 0.9862112998962402, -0.5230317115783691, -0.10125025361776352, -0.33523985743522644, 0.21051712334156036, -0.2646556794643402], [-0.1755213588476181, 1.7579327821731567, -1.568742275238037, -0.8595821857452393, 1.2498400211334229, -0.0031415820121765137, 1.0837924480438232, 0.0979674682021141, 0.2013150155544281, -0.4536544382572174, -0.7798994183540344, 0.21702344715595245, -0.10214540362358093, 0.5203243494033813, 0.6168572902679443, 0.5158201456069946, 0.25009965896606445, -0.32998427748680115, 0.6864540576934814, 1.406090259552002, -0.11005981266498566, 0.3159087002277374, -0.7347614765167236, 0.21334637701511383, -0.13171546161174774, 0.1513126641511917, 0.08647122234106064, -0.6367007493972778, -0.9814901351928711, -0.9528281092643738, 0.771602988243103, -0.9608857035636902, 0.692240297794342, 0.6550279855728149, -0.9618284702301025, 0.3194204568862915, 1.1190917491912842, -0.22808627784252167, -0.0880126953125, 0.07932274043560028, 1.9541641473770142, 0.06711741536855698, -0.20739774405956268, -1.4160345792770386, -0.1224934458732605, 0.3064633011817932, 0.666775107383728, -0.714353621006012, -0.41168397665023804, -1.1317416429519653, 0.4646839499473572, 0.41476374864578247, 0.7416625022888184, 0.7206891179084778, 0.4515531361103058, -0.2922954559326172, -0.17800962924957275, 0.8035873770713806, 0.43313807249069214, -0.7550510764122009, 1.0542502403259277, 0.16033293306827545, -0.5148492455482483, 0.801154375076294, 0.37404006719589233, 0.17277026176452637, 0.0767679363489151, 0.7459374666213989, 0.3222832679748535, -0.49247485399246216, -0.03776621073484421, 0.7143944501876831, -0.353309690952301, 0.1359798014163971, -0.7024267911911011, 0.2681715488433838, 0.8834463953971863, 0.2716669738292694, -0.19155296683311462, 0.6849815845489502, -0.9111034870147705, 0.30316436290740967, 0.6294592618942261, -0.4321076571941376, 0.8161647319793701, 0.4658423960208893, -0.19786319136619568, -0.75160151720047, -0.16778908669948578, 1.9280816316604614, 0.2733186185359955, -0.21112830936908722, 0.6389639377593994, -0.46244746446609497, 0.0333356037735939, -0.4766176640987396, 0.29898062348365784, -0.586139976978302, -0.33768489956855774, -0.5812783241271973, -0.8499498963356018, -0.9645832777023315, 0.21096256375312805, 0.5379142165184021, -0.27320921421051025, 1.3377407789230347, 0.20031356811523438, 0.0076225390657782555, -0.3439674377441406, 0.04612082988023758, 0.08321814239025116, -0.1391586810350418, -0.34055936336517334, -0.06615210324525833, -0.5322837233543396, -0.04438936710357666, 1.0469775199890137, -0.19685396552085876, 0.21333831548690796, 0.27534085512161255, -0.47462576627731323, 0.32466456294059753, -0.24698969721794128, 0.7842239141464233, 0.3598547577857971, 0.25297996401786804, -0.4267011880874634, -0.7891533970832825, 0.3729957640171051, -0.005797912832349539, 0.02339373342692852, -0.3277074694633484, 0.4110405743122101, 1.151607871055603, -0.5533212423324585, 0.997463583946228, -0.2506154775619507, -1.0168018341064453, 0.055912528187036514, -0.3174492120742798, 0.04487168788909912, 0.2102281004190445, -0.3237391710281372, -0.3112531900405884, 0.2906253933906555, -1.1110634803771973, 0.6178370118141174, -0.4623047411441803, -0.3627636432647705, 0.0864318311214447, -0.596749484539032, 0.5043520331382751, 0.30460670590400696, 1.536181092262268, 0.06207888200879097, -0.34435349702835083, 0.6736199259757996, 0.29157570004463196, 0.3408674895763397, 0.48076286911964417, 0.8753671050071716, 0.4449533522129059, -0.871471643447876, 0.22248555719852448, 0.18560433387756348, -0.25178250670433044, 0.8317119479179382, 0.788221538066864, -0.4108251631259918, 0.22175775468349457, -0.5417061448097229, -0.8575888276100159, -1.1777174472808838, 0.7911221981048584, 0.5320544838905334, -0.7979225516319275, 1.037738561630249, -0.5255163908004761, -1.1722058057785034, -1.0544071197509766, 0.036047451198101044, -0.04311006888747215, -0.010752681642770767, 0.18780866265296936, 0.7893803715705872, 0.3120826184749603, 0.34457600116729736, -0.2872842848300934, 0.11200851947069168, -1.5192002058029175, -1.2823773622512817, -0.3471853733062744, -1.1933982372283936, 0.5666031241416931, -0.3420276939868927, -0.624467670917511, 0.4461838901042938, -0.9588021039962769, -0.3678421974182129, -0.22788046300411224, -0.2849366068840027, -0.020827585831284523, -0.4645230174064636, 0.18471337854862213, -0.3368699848651886, 0.15903525054454803, -0.788044273853302, 0.827477753162384, -0.5302096009254456, -0.18027152121067047, 0.8243291974067688, -0.17216609418392181, -1.1657038927078247, 0.7501717805862427, -0.33025988936424255, -1.1497606039047241, 0.35299861431121826, 0.7043926119804382, 0.5606293082237244, -0.234994038939476, -0.01746857725083828, 0.16125483810901642, 0.4951460659503937, 0.24306729435920715, 0.11157479137182236, -1.1579257249832153, -0.5615282654762268, -1.093882441520691, -0.7679527401924133, 0.18793322145938873, -0.5587426424026489, -1.283112645149231, 0.37184011936187744, 0.13637514412403107, -0.5784575939178467, 0.5514752268791199, -0.27666962146759033, 0.2393045723438263, 0.17642183601856232, 0.9275737404823303, 0.011079186573624611, 0.6309197545051575, -0.8567063808441162, 0.049833204597234726, -0.5827748775482178, -0.1024208664894104, 0.984186053276062, -0.29185134172439575, 0.5597940683364868, 1.0397506952285767, 0.5713502168655396, 0.28915923833847046, 0.45282283425331116, -0.8827297687530518, -0.34752732515335083, -0.5806699395179749, -1.073876976966858, 0.30763429403305054, -0.2848205864429474, 1.3998210430145264, 0.4023551344871521, -1.3320989608764648, 0.28164735436439514, 0.49970823526382446, -0.034047145396471024, -0.14217621088027954, -0.3973150849342346, -0.4931972920894623, 0.4691745340824127, -0.1914200633764267, -0.005720559041947126, 0.5843101143836975, -0.6109746098518372, 1.427259922027588, -0.5672566294670105, -0.06327077001333237, -0.5235020518302917, 0.5867727994918823, 0.2145557850599289, 0.81163489818573, 0.16504521667957306, -0.7515349984169006, -0.2550276517868042, -0.8023117780685425, 0.7463493943214417, 0.1261197030544281, 0.07969789206981659, 0.3574345111846924, 0.8275647163391113, -0.2012864351272583, 0.6459400057792664, 0.7144494652748108, -0.06623755395412445, 0.5091612935066223, 0.19282402098178864, 0.06051074340939522, 0.9152682423591614, -0.21040013432502747, -0.46798354387283325, -0.5692481398582458, 0.6370785236358643, 1.1157499551773071, 1.124140739440918, 1.8938943147659302, 0.511546790599823, -0.16131114959716797, -0.3099517822265625, -0.1275429129600525, -0.38876572251319885, -0.5221567749977112, -0.3675377368927002, -0.2736268937587738, -0.07804382592439651, -0.4770219624042511, 0.02793879248201847, 0.31549811363220215, -0.2865070104598999, 0.9038796424865723, 0.391958624124527, -0.8238998651504517, -0.13654230535030365, 0.06746236234903336, -0.291709840297699, -0.882684051990509, 0.9234410524368286, 0.9552358388900757, -1.1382322311401367, -0.02592085301876068, -0.13579179346561432, 0.33171096444129944, 0.8400304913520813, 0.17009903490543365, 0.5422985553741455, -0.8162128329277039, -0.8506743907928467, -0.4447278678417206, 1.3681050539016724, 0.36797720193862915, 0.3106171786785126, -0.5566118955612183, 0.3470193147659302, 0.5074235200881958, -0.3755318522453308, 0.06834398955106735, 1.2622408866882324, -0.30220627784729004, -0.8432661890983582, 0.022859852761030197, 0.10915913432836533, 0.43958377838134766, -0.2963285744190216, -0.1976606249809265, -0.011379274539649487, 0.07847833633422852, 0.22958306968212128, 0.5835081934928894, -0.1824844479560852, 0.701143741607666, 0.23948270082473755, -0.13041532039642334, 1.1412713527679443, -0.5403286814689636, 0.4816894829273224, -1.335240125656128, 0.37224990129470825, 0.8165205717086792, 1.255677580833435, -0.49059486389160156, -0.1552133411169052, 0.05805196985602379, -0.16398130357265472, -0.06907631456851959, 0.4194156527519226, 1.0658940076828003, 0.5167284607887268, -0.5777705311775208, -0.35553133487701416, 0.3345291316509247, -0.28070420026779175, -0.4715062379837036, -0.20995992422103882, 0.7086817622184753, -0.9916625022888184, -0.6405019760131836, 0.6186323165893555, 0.024229925125837326, -0.4241826832294464, 0.0315418504178524, -0.15059451758861542, 0.3138832151889801, -0.12830065190792084, 0.48723700642585754, -0.586793839931488, 0.26124945282936096, 0.037044353783130646, -0.404257208108902, -0.5112212300300598, 0.003909209743142128, 0.6872767806053162, 0.6705369353294373, -0.4237595796585083, 0.1168522834777832, -0.42912557721138, 0.3425544798374176, 0.48487159609794617, -0.5295777320861816, -0.12536999583244324, 0.692615807056427, 0.45099377632141113, 0.1576581448316574, 0.4850746989250183, 1.0742121934890747, -0.745556116104126, -0.05800259858369827, 0.5420441031455994, 0.07514891028404236, 0.43487346172332764, -1.1444841623306274, 0.09906695038080215, 0.10735607892274857, -0.4936271011829376, -0.04447196424007416, -0.06720792502164841, -0.3045582175254822, 1.6497710943222046, 0.21301865577697754, 0.6421810388565063, 0.3477938771247864, -0.4053531289100647, -0.6913028359413147, -0.13755883276462555, 0.19646665453910828, 0.3475029766559601, -0.8124240636825562, 0.39185935258865356, 0.3244980573654175, 0.12631914019584656, 0.457209050655365, -0.07303924113512039, 0.39643147587776184, 0.4351482391357422, 0.010684063658118248, -0.011722652241587639, 0.43212831020355225, 1.0751873254776, 1.056079387664795, 0.6837748289108276, -0.43904754519462585, -0.34335580468177795, 0.8985362648963928, -0.5605700612068176, -0.300660103559494, 0.31468191742897034, -0.05866336077451706, 1.1592382192611694, -1.098793864250183, -0.9869264960289001, 0.6769230365753174, 0.6621009111404419, 0.19523419439792633, 0.26009100675582886, 0.035501379519701004, -0.6732206344604492, 0.5821115374565125, 0.49446752667427063, -0.17405693233013153, 0.20531333982944489, 0.4165375530719757, 0.44211092591285706, 0.5428345799446106, -0.28151074051856995, 0.4128134250640869, -0.342246949672699, -0.6125375628471375, -0.2052256017923355, -0.5021668672561646, 0.43419599533081055, 0.6476602554321289, 0.41820046305656433, 0.3392711281776428, -0.31723207235336304, -0.4619767367839813, 0.17846344411373138, -0.8907031416893005, 0.5289070010185242, -0.3215942084789276, -0.9822676181793213, -0.8145933151245117, -1.0008069276809692, -0.5512714385986328, -0.0004407104570418596, -0.4108831286430359, -0.19525927305221558, 0.08432374894618988, -0.9236734509468079, 0.43740689754486084, 0.29983144998550415, 0.9129729866981506, 0.6090401411056519, 0.2738198935985565, 0.5539038777351379, 0.46266859769821167, -0.4971257746219635, 0.33794113993644714, 0.04256633296608925, 0.1534954458475113, -0.13230673968791962, -1.3953722715377808, -0.33174824714660645, 0.3736773729324341, 0.013847037218511105, -0.09344810992479324, 0.06813515722751617, 0.8912514448165894, 0.8807227611541748, -0.082384392619133, -0.499559611082077, -0.05535885691642761, -0.30505621433258057, 0.9487214684486389, 0.09844125062227249, -0.861424446105957, 0.3862777352333069, -0.6958879828453064, -1.504964828491211, 0.9490406513214111, -0.16066062450408936, -0.6598734855651855, 0.2640523612499237, 0.0029413211159408092, -0.1572543978691101, 0.7210618853569031, -0.1998830884695053, 0.23788024485111237, -0.0787191092967987, -0.13634228706359863, -1.3156737089157104, 0.7464633584022522, 0.2666325271129608, 0.24845841526985168, -0.3189660906791687, -0.23496222496032715, 0.44457095861434937, -0.21550263464450836, -0.026602908968925476, 0.21209050714969635, 0.4203992784023285, 0.42037343978881836, -0.25256097316741943, -0.6146575212478638, 0.3019380271434784, -0.6768218874931335, -0.367840439081192, -0.1102953776717186, 0.3565315902233124, 0.2540082037448883, -0.6881616711616516, -0.3165765106678009, -0.0007035303860902786, -0.14919845759868622, 0.12029687315225601, -0.32024165987968445, 0.8249509930610657, 0.39907070994377136, -0.36760470271110535, 0.19552575051784515, -0.5627008080482483, -0.4538784325122833, -1.0815742015838623, -0.04145731031894684, 0.7497435808181763, -0.7850672006607056, -0.4557753801345825, 0.11319994181394577, -0.272128164768219, -0.13869179785251617, -0.2775220572948456, 0.13145627081394196, -1.027819275856018, -1.2103614807128906, -1.1298185586929321, 0.14428618550300598, 0.3368353843688965, -0.7604861855506897, 0.7088003754615784, 0.5932384729385376, -1.3958114385604858, 0.06392095983028412, -0.7074340581893921, -1.235656499862671, -0.06446224451065063, -1.4220770597457886, 0.07499787956476212, -0.4151650369167328, 0.27022382616996765, -0.15107034146785736, 0.766936719417572, -1.0044070482254028, -1.1564500331878662, -0.610029935836792, -0.473513126373291, -0.2311783879995346, 0.6660272479057312, -0.6445546746253967, 0.7751011848449707, 0.518855631351471, -0.29052016139030457, -0.5706160664558411, 0.6054579019546509, -1.2509777545928955, 0.5611909031867981, 0.2117842435836792, 0.3333345651626587, -0.09390901029109955, 1.0498836040496826, -0.2755083441734314, 0.6097962856292725, -0.24254441261291504, -0.009698010049760342, 0.03154829517006874, -0.026082675904035568, -0.26276421546936035, -0.08103767782449722, -0.8318877816200256, -0.8605888485908508, -0.13188791275024414, -0.8513954281806946, -1.4193915128707886, 0.5120542049407959, 1.1908289194107056, -0.5478686094284058, 0.5240527987480164, -0.4498150050640106, 0.5671483278274536, -1.4157302379608154, 0.08258501440286636, 0.6709393858909607, -0.7692569494247437, 0.009998573921620846, -0.8190038204193115, 0.2186243236064911, -0.9777805805206299, -0.012128523550927639, 0.5099785327911377, 0.25711047649383545, -0.4740310311317444, 0.22095884382724762, 1.1633089780807495, -0.289537250995636, -0.21062003076076508, 0.7375152707099915, 0.7605711817741394, -0.5172820687294006, -0.4208633601665497, 0.33159589767456055, -0.6021512746810913, 0.8245143294334412, -0.4999926686286926, -0.21920210123062134, -0.7159535884857178, 0.06521975994110107, -0.36760368943214417, -0.7888786196708679, -0.41860783100128174, -0.4695826470851898, -0.7455745339393616, -0.038786303251981735, 0.454754501581192, 0.2697567045688629, -0.44240134954452515, 1.3046950101852417, 0.2746916711330414, -0.2430020272731781, 0.22866731882095337, 0.5260692834854126, 0.17370368540287018, -0.040549565106630325, 0.0562722310423851, 0.15643686056137085, -0.2106732279062271, 0.21161004900932312, 0.1793508529663086, 0.16444522142410278, -0.2549211084842682, -0.3057560920715332, -1.6368674039840698, -0.28154081106185913, -0.1341570019721985, -0.3062414228916168, 0.1893940567970276, -0.6576730608940125, -0.9329875707626343, 0.18350020051002502, 0.15544761717319489, -0.1468888372182846, -0.19776614010334015, -0.36213329434394836, -0.6141271591186523, 0.293010413646698, 0.6699859499931335, -0.5443328619003296, 0.9621171355247498, 0.1840255856513977, -0.1670178920030594, -0.4332219660282135, -0.24347005784511566, -0.03776656091213226, 0.332592636346817, -0.04235363006591797, -0.19177916646003723, 0.7710458636283875, -0.5367962121963501, -1.1790986061096191, -0.16940942406654358, 0.6739646196365356, 0.17826524376869202, -0.319819837808609, -0.45835304260253906, 0.42440366744995117, 0.6060051321983337, 0.31468695402145386, -0.40784752368927, -1.0621434450149536, -1.0887542963027954, 0.6466478705406189, -0.3213768005371094, 0.7828044891357422, -0.3046237528324127, 0.7822979092597961, 0.3453792333602905, 0.11927919089794159, -0.2766478359699249, 0.1255270093679428, 0.15693412721157074, -0.6612263321876526, 1.2826175689697266, 0.5831943154335022, 0.2347298115491867, -0.14440320432186127, -0.6606259346008301, -0.23203571140766144, -0.28973522782325745, -0.3225264549255371, 0.49253740906715393, -0.8213598132133484, -0.15444523096084595, -0.5510513186454773, 0.4325779974460602, 1.0631645917892456, 0.3733671009540558, 0.437546044588089, 0.013864175416529179, -0.8213516473770142, 0.2058609127998352, 0.005766184069216251, -0.2564910054206848, 0.07786964625120163, 0.9481570720672607, 1.3491953611373901, 0.49782946705818176, -0.18214410543441772, 0.16321085393428802, 0.8214118480682373, -0.7740562558174133, -0.24786213040351868, -0.6475149989128113, 0.2265959084033966, -0.5148377418518066], [-1.0674538612365723, 1.3547685146331787, -1.8199107646942139, -1.1870447397232056, 1.0859726667404175, -0.4017763137817383, 1.5553271770477295, -0.07670386880636215, 0.015424801036715508, -0.5861388444900513, -0.3011188805103302, -0.04904518648982048, 0.41721251606941223, 1.6781182289123535, 0.1322752833366394, 0.42168688774108887, 0.4602124094963074, -0.09437219053506851, 0.6025944948196411, 1.6169880628585815, -0.8560730814933777, 0.31432250142097473, 0.47500497102737427, 0.37609708309173584, 0.08101895451545715, 0.3234555125236511, -0.7775503396987915, -0.8146317005157471, -0.7585482597351074, -0.911354124546051, 1.911181092262268, -1.092829942703247, 0.03246372938156128, 0.15776531398296356, -1.399376392364502, -0.13899023830890656, 1.0382646322250366, 0.9146591424942017, -0.149112731218338, 0.20751126110553741, 1.2957843542099, 0.1428210437297821, -0.37104737758636475, -1.7956035137176514, 0.8413130640983582, -0.27338212728500366, 0.9808857440948486, -0.9076545834541321, -0.13748398423194885, -0.9124729633331299, 0.556341290473938, -0.7276849746704102, 0.8704531788825989, 0.6974648237228394, 0.45435547828674316, -0.004572000354528427, 0.4056440591812134, 0.053145743906497955, 0.16975779831409454, -0.14938107132911682, 0.8665227890014648, 0.23802819848060608, -0.7049931287765503, 0.7408541440963745, 0.5210165977478027, 0.3485925793647766, -0.4242172837257385, 0.16567978262901306, 0.1847151517868042, 0.20157074928283691, 0.28563445806503296, -0.18940776586532593, -0.22884903848171234, -0.08288264274597168, -0.339227557182312, 0.8139889240264893, 0.7766404151916504, 0.6631704568862915, 0.8154134154319763, 0.6293342709541321, -0.6618181467056274, -0.5600850582122803, 0.6041926145553589, -0.2844552993774414, 0.20125329494476318, 0.023156728595495224, 0.2620314955711365, -1.045802116394043, -1.1058937311172485, 1.299760341644287, -0.007675148546695709, 0.20740333199501038, 0.5913508534431458, -0.4840405583381653, 0.5552534461021423, -0.20137707889080048, 0.1514570713043213, -0.8799606561660767, -0.0426408015191555, -0.44011351466178894, -1.0808227062225342, -0.16903015971183777, 0.6107161045074463, 0.01340213418006897, -0.7184898853302002, 0.7380949854850769, 0.304438054561615, -0.3503451645374298, -0.5008764266967773, 0.32218480110168457, -0.5886113047599792, 0.49681586027145386, -0.9565086364746094, -1.0043995380401611, -0.4936264157295227, 0.6331313848495483, 0.9803475737571716, -0.12792840600013733, 0.7151798009872437, 0.5783320665359497, -0.7263052463531494, -0.24654074013233185, 0.5362573862075806, 0.5178203582763672, 0.40957966446876526, 0.01915527880191803, -1.0619609355926514, -0.6628392934799194, -0.6242343187332153, -0.638800859451294, 0.46580636501312256, -0.142680361866951, -0.24706147611141205, 0.49458205699920654, -0.24719159305095673, 1.4076411724090576, -0.2712860703468323, -0.9758498668670654, -0.10220127552747726, -0.09303860366344452, 0.6407028436660767, -0.27852553129196167, -0.17326287925243378, -0.5557266473770142, 0.23926392197608948, -0.005721673369407654, 0.04587673023343086, -0.6171149015426636, -0.39223265647888184, 0.10657389461994171, -0.9848146438598633, 0.69479900598526, 0.13278953731060028, 1.6102403402328491, 0.06566693633794785, -0.39173877239227295, 0.527725100517273, -0.09699750691652298, 0.47187092900276184, 0.17588582634925842, 0.4848380386829376, 0.09717375785112381, -1.2181003093719482, 0.23267820477485657, 0.20692011713981628, -0.558997392654419, 0.77397221326828, 0.3581657111644745, 0.3037407696247101, 0.33324936032295227, -0.325256884098053, -0.5022518634796143, -0.587944746017456, 0.8874180316925049, -0.2884819805622101, -1.1812691688537598, 1.2768926620483398, -0.2903612554073334, -0.7942050695419312, -0.6387662887573242, -0.12239322066307068, -1.176379680633545, 0.03262670338153839, -0.5626822710037231, -0.07274599373340607, -0.33487239480018616, 0.08154532313346863, -0.6043225526809692, -0.27666300535202026, -0.8797223567962646, -0.2381819188594818, -0.3670743405818939, -0.9648959636688232, 0.3675178289413452, -0.5339319705963135, -0.8012572526931763, 0.6458320617675781, -0.9907370209693909, -0.24970883131027222, -0.4254869818687439, -0.5405511856079102, -0.12604829668998718, -1.1390070915222168, 0.5224684476852417, -0.461047887802124, 0.8131554126739502, -0.16294528543949127, 0.9161293506622314, -0.5857671499252319, -0.10056167840957642, 1.1703239679336548, -0.24910570681095123, -0.9315232634544373, 0.39750176668167114, -0.47255343198776245, -1.2997634410858154, 0.44021350145339966, -0.09880411624908447, -0.5242156982421875, 0.5054553747177124, 0.15548425912857056, 0.5189014673233032, -0.3215441107749939, 0.11679898947477341, -0.05193614959716797, -0.959264874458313, -0.22487501800060272, -0.5923480987548828, -0.30049970746040344, 0.4088892340660095, -0.8333910703659058, -1.1711852550506592, 0.5461297035217285, 0.5077508091926575, -0.2382139265537262, -0.055810846388339996, 0.2446097880601883, 0.2434089332818985, -0.014879904687404633, 1.2866932153701782, 1.0537118911743164, 0.822471022605896, -0.5846510529518127, -0.1291007101535797, -0.536520779132843, -0.4566502273082733, 0.7705721855163574, -0.3855680525302887, 0.15052753686904907, 1.247572422027588, 0.2471635639667511, 0.14302146434783936, 0.4002862870693207, -0.38898220658302307, -0.3236536979675293, -0.12575219571590424, -0.4468255341053009, 0.3962444067001343, -0.13244307041168213, 1.0058934688568115, -0.025654971599578857, -0.4495531916618347, -0.45668286085128784, 0.2790205180644989, 0.03625510632991791, -0.6120453476905823, -0.7001475095748901, -0.17778553068637848, 0.07573997974395752, 0.19654470682144165, 0.13530559837818146, 0.6215157508850098, -0.4416089653968811, 0.3165191411972046, -0.07296601682901382, -0.2545093595981598, -0.1839788556098938, 0.688485860824585, -0.02836253121495247, 1.164117693901062, 0.4399265646934509, -1.023622751235962, -0.29240885376930237, 0.31732577085494995, 0.7309359908103943, -0.005032321438193321, 0.07202883809804916, 0.9002202749252319, 0.6798428297042847, -0.40266984701156616, 0.4348470866680145, 0.6284167766571045, -0.39575672149658203, 0.2615095376968384, 0.29912322759628296, 0.6204543709754944, 0.8882254362106323, -0.8368720412254333, -0.6641290187835693, -0.07746908813714981, 0.035166554152965546, 1.687161922454834, 1.1834064722061157, 1.3190696239471436, -0.44675374031066895, -0.08945313096046448, -0.23672397434711456, -0.22577086091041565, -0.20280419290065765, -0.6634596586227417, -0.49734973907470703, -0.08665920794010162, -0.5546972155570984, -0.4872203469276428, 0.3813890218734741, 0.8201443552970886, 0.5180455446243286, 1.009537935256958, 0.43876513838768005, -0.019403254613280296, -0.3327177166938782, 0.0611397847533226, -0.433828741312027, -0.8821895122528076, 0.2535398304462433, 0.809178352355957, -0.4180760979652405, -0.16994686424732208, 0.04347013682126999, -0.25637486577033997, 0.6632410287857056, 0.1733679473400116, 1.3384289741516113, -0.788699209690094, -0.6668304800987244, -0.5610715746879578, 1.675233006477356, 0.04074333235621452, 0.0795309990644455, 0.2763359546661377, 0.23177313804626465, -0.12488564103841782, -0.2641039788722992, -0.5348998308181763, 0.19005395472049713, -0.600256085395813, -0.42655056715011597, 0.3132489323616028, 0.5948885679244995, -0.5108779668807983, -0.10925459116697311, -0.4172016382217407, -0.08965644240379333, -0.604520857334137, 0.3102864623069763, 0.007753640413284302, 0.34730809926986694, 0.9329185485839844, -0.6936146020889282, -0.14924190938472748, 0.4623403549194336, 0.22390463948249817, -0.943689227104187, -1.220371961593628, 0.8062452673912048, 0.11033576726913452, 0.28265878558158875, 0.28479647636413574, 0.129143625497818, 0.31313556432724, -0.514380693435669, 0.39168238639831543, 0.1270521581172943, 0.3025425374507904, 0.10861536115407944, -0.3947010040283203, -0.3010776937007904, 0.23820337653160095, 0.12845489382743835, -0.21006779372692108, -0.06412427127361298, 0.9505184292793274, -0.9642915725708008, -0.1481103152036667, 1.0917505025863647, 0.5252828598022461, 0.10726196318864822, -0.17511527240276337, 0.12360532581806183, 0.171211376786232, -0.2605551779270172, 0.898579478263855, -0.3122755289077759, 0.056159865111112595, -0.09755485504865646, -0.33116745948791504, -0.16324082016944885, -0.14557303488254547, 0.16131554543972015, 0.9445840120315552, -0.551350474357605, -0.530526876449585, -0.670621395111084, 0.5869433879852295, -0.09474895894527435, -0.29336053133010864, 0.8656784296035767, 0.3385394811630249, -0.014771293848752975, -0.2927396297454834, 0.38520175218582153, 0.9565104246139526, -0.13126283884048462, -0.5023266673088074, -0.3912830948829651, 0.34043794870376587, 0.03632723540067673, -0.6092020273208618, -0.09653802216053009, 0.550699770450592, 0.0039786845445632935, 0.09457336366176605, -0.2525802552700043, -0.21698391437530518, 1.4333009719848633, 0.23283816874027252, 0.25400975346565247, 0.22121384739875793, -0.38773709535598755, -0.13671432435512543, 0.22181905806064606, 0.2089766561985016, 0.4287009835243225, -0.12769165635108948, -0.0044433255679905415, 0.6295599937438965, -0.2761218249797821, 0.37816479802131653, 0.6098684072494507, 0.6622368097305298, -0.2725115716457367, -0.6754835844039917, -0.3636138439178467, -0.08938055485486984, 0.1529894471168518, 1.1207956075668335, 0.0460866279900074, -0.24786211550235748, -1.483255386352539, 0.0968078076839447, -0.16989970207214355, 0.060978032648563385, 0.3562517762184143, 0.3151134252548218, 1.3133134841918945, -1.0678637027740479, -0.23842917382717133, -0.2721656858921051, 0.37969183921813965, 0.06718669831752777, 0.5919047594070435, -0.2815663814544678, -1.3246784210205078, -0.06192989647388458, 0.4070308804512024, 0.022715844213962555, 0.28998053073883057, -0.12518200278282166, 0.304115891456604, 0.6848729848861694, -0.48302048444747925, 0.37569522857666016, -0.1507512629032135, -0.4859466552734375, -0.7515996694564819, -0.22763292491436005, 0.128245010972023, 0.3239752948284149, 0.2532998025417328, 1.1877079010009766, -0.3324899673461914, -0.3839288353919983, 0.30616870522499084, -1.3849457502365112, 1.0062413215637207, -0.6630324125289917, -0.21945397555828094, -0.1962125152349472, -0.8138066530227661, -0.6239095330238342, 0.3449704051017761, -0.993007481098175, -0.5913689136505127, -0.4985445737838745, -1.0469789505004883, 0.3842671513557434, 0.6246168613433838, 1.4000349044799805, 0.30572399497032166, 0.3067615032196045, 1.1686010360717773, 0.380967378616333, -0.399810254573822, -0.08336768299341202, 0.35483357310295105, -0.52855384349823, 0.4901878237724304, -1.1633403301239014, -1.1294312477111816, 0.6808103322982788, 0.3068333864212036, 0.16635370254516602, 0.5861330032348633, 0.717007040977478, 0.7909613847732544, -0.19441430270671844, 0.0082850381731987, 0.17946434020996094, -0.745148241519928, 0.8103716373443604, 0.2783381938934326, -0.22795890271663666, -0.5189635753631592, -0.8531773090362549, -1.5487208366394043, 1.766522765159607, 0.184023916721344, -0.5303462147712708, 0.7722384929656982, 0.34171998500823975, -0.17665432393550873, 0.47090137004852295, -0.0064244940876960754, -0.3699851632118225, -0.1478898823261261, -0.6068753600120544, -0.9962306618690491, 0.290710985660553, 0.10548277199268341, -0.32442155480384827, -0.2982192933559418, -0.1334482878446579, 0.6327283382415771, 0.05124881863594055, 0.38878393173217773, 0.5271873474121094, 0.326640784740448, 0.12037371098995209, 0.6747736930847168, -0.3784456253051758, 0.45778799057006836, -1.0936766862869263, -0.7348105907440186, 0.09875741600990295, 0.6754415035247803, -0.046413861215114594, 0.38451820611953735, 0.10577886551618576, 0.43001824617385864, -0.003590606153011322, -0.13905154168605804, -0.45217299461364746, -0.1899421364068985, 1.088157296180725, -0.18982845544815063, 0.5970259308815002, -0.2717602252960205, -0.1364189088344574, 0.020529042929410934, 0.28741198778152466, 0.7030659914016724, -0.9477802515029907, -0.3106030225753784, 0.26545917987823486, -0.3517008423805237, -0.2788572311401367, -0.4238208532333374, -0.26454871892929077, -1.2145049571990967, -1.0867724418640137, -1.0598381757736206, 0.015262545086443424, 0.6165735125541687, -0.3904794156551361, 0.25319474935531616, 0.11125542968511581, -1.404336929321289, 0.25402554869651794, -0.49209654331207275, -1.3012034893035889, -0.06857480853796005, -1.1778819561004639, 0.8215444684028625, -0.6706066727638245, 0.7990608811378479, 0.25914067029953003, 1.3624470233917236, -0.8099675178527832, -1.0848089456558228, -0.19168239831924438, -0.08475083112716675, 0.5989986658096313, 0.4250744581222534, -0.8265515565872192, 0.9426151514053345, 0.7066537141799927, -0.3793056905269623, -0.42333245277404785, 0.15089455246925354, -0.28575652837753296, 0.04283618927001953, -0.049351178109645844, 0.4611443877220154, 0.04643617197871208, 1.2624589204788208, 0.12946513295173645, 0.5364090204238892, 0.5191341638565063, 1.1068451404571533, -0.3959046006202698, 0.07307950407266617, -0.4805052578449249, 0.212105393409729, -0.7211079597473145, -0.5291005373001099, 0.04377446696162224, -1.0597199201583862, -1.089755892753601, 0.08669634163379669, 1.3362014293670654, -0.8987456560134888, 0.5682305693626404, -0.5136117339134216, 0.8179466724395752, -1.1381490230560303, 0.5854164958000183, -0.36108458042144775, -0.13043294847011566, -0.1062084212899208, -0.19685962796211243, -0.3740859627723694, -0.802550733089447, -0.12227313220500946, 0.7729154825210571, 0.5786441564559937, -0.517894446849823, 0.8999079465866089, 0.5742185115814209, -0.1344422847032547, -0.5025632381439209, 1.091282606124878, 0.637363612651825, 0.1085074320435524, -0.514644980430603, -0.20317202806472778, -0.13661053776741028, 0.48207777738571167, -0.20647978782653809, 0.3852088451385498, -0.556188702583313, 0.8334743976593018, -0.2673173248767853, -0.29623332619667053, -0.5828105211257935, -0.828620970249176, -0.06897203624248505, -0.6132808327674866, 1.3091034889221191, -0.028685808181762695, -0.05546819046139717, 1.1543285846710205, 0.10955597460269928, -0.25943654775619507, -0.08343569189310074, 0.3422447443008423, 0.1584165096282959, -0.10189211368560791, 0.7336400747299194, 0.35765340924263, -0.6204609870910645, 0.06622086465358734, 0.21783709526062012, 0.5006033778190613, 0.3595393896102905, -0.48022449016571045, -1.6443912982940674, -0.16727638244628906, -0.8956911563873291, -0.766656756401062, 0.5576929450035095, -0.26744091510772705, -0.9266805052757263, 0.5599404573440552, 0.527237594127655, -0.2898935377597809, 0.13313564658164978, 0.23990079760551453, 0.242628812789917, -0.33751916885375977, 1.220639944076538, -0.48507988452911377, 1.318685531616211, -0.3773304224014282, -0.09495850652456284, -0.32986050844192505, -0.3051329255104065, 0.2766037583351135, -0.16579067707061768, 0.12424251437187195, -1.0210756063461304, 0.35427218675613403, 0.3705766201019287, -1.20431387424469, 0.7984495759010315, 0.14775130152702332, 0.3729315400123596, -0.2936112880706787, -0.3098587393760681, -0.11182154715061188, 0.6060653924942017, 0.734009861946106, -0.6122161149978638, -0.7872756123542786, -1.0465400218963623, 0.31929776072502136, -0.9243298768997192, 0.6832988262176514, -0.2649960219860077, 0.13584010303020477, 0.6746178865432739, -0.11616058647632599, -0.605312705039978, -0.8132362365722656, 0.15662705898284912, -0.09613245725631714, 0.17384929955005646, -0.025635167956352234, -0.32369929552078247, 0.2528527081012726, -0.9117317199707031, 0.703201413154602, -0.15610119700431824, 0.0032721906900405884, 0.4824568033218384, -0.8870980739593506, -0.9947326183319092, -0.3582232594490051, 0.0015954039990901947, 0.846922755241394, 0.07618074119091034, 0.44352877140045166, 0.4192327857017517, -0.6260328888893127, -0.19178199768066406, -0.0005991309881210327, -0.6970114707946777, 0.08188271522521973, 1.2573058605194092, 1.4898216724395752, -0.15379191935062408, 0.6825737357139587, -0.7220595479011536, 0.508420467376709, -0.5657659769058228, -0.5793923735618591, -0.3007972538471222, 0.2256273329257965, -0.19105681777000427], [-0.3866255581378937, 0.5183123350143433, -2.3021280765533447, -0.41362378001213074, -0.13198800384998322, 0.390229195356369, 1.3134217262268066, 0.18322275578975677, 0.00916169211268425, -1.3629475831985474, -0.6533296704292297, 0.8170055150985718, 0.4215567111968994, 0.8296146988868713, -0.15940974652767181, -0.0684565082192421, 0.5374886393547058, -0.08417603373527527, 0.3608204424381256, 0.4974397122859955, 0.19492653012275696, -1.6245918273925781, -0.39671552181243896, 0.6321464776992798, 0.5399652123451233, 0.05965760350227356, -2.0253653526306152, -1.1555235385894775, -1.4330543279647827, -0.4556766152381897, 1.4376683235168457, -0.721394956111908, -0.45278385281562805, -0.17321018874645233, -1.2625054121017456, -0.772059440612793, 0.27509504556655884, 0.5411617159843445, 0.6622010469436646, -0.16162607073783875, 1.8423501253128052, -0.2325592190027237, -0.44766536355018616, -1.6254078149795532, 0.0305081307888031, 0.5200201869010925, 0.634557843208313, -1.6527701616287231, -0.09023687988519669, -0.4309242367744446, 0.9486865997314453, -0.33764365315437317, 0.3383164405822754, 0.8763319849967957, 0.9750707149505615, -1.1708524227142334, 0.1168878823518753, -0.1249067559838295, 0.48310011625289917, 0.4031096398830414, 1.740077257156372, 0.983619213104248, -0.4392855167388916, 1.450875997543335, 0.7180086970329285, -0.38691338896751404, 0.08958051353693008, 0.5963554978370667, -1.0425864458084106, -0.05441423878073692, 0.5525497198104858, -0.08068868517875671, -0.7190953493118286, 0.164885014295578, -0.47708985209465027, 0.07073021680116653, 0.022450868040323257, 0.5752279162406921, 0.2622406780719757, 1.0186173915863037, -0.30432257056236267, 0.27484092116355896, 0.36994150280952454, 0.06648550927639008, 0.5014560222625732, 0.18817219138145447, -0.34517553448677063, 0.08597216755151749, -0.7394019365310669, 1.542240023612976, -0.22383368015289307, 0.9754723906517029, 0.713114857673645, -1.039933204650879, 0.3229861855506897, -0.8342491984367371, 0.6517913341522217, -0.19842258095741272, -0.40589869022369385, -0.8131740689277649, -0.1693745255470276, -1.2057843208312988, 0.5774273872375488, -0.24819175899028778, 1.110974907875061, 1.7752152681350708, -0.2184566706418991, -0.900112509727478, -0.28467661142349243, -0.1614854484796524, -0.16338466107845306, 1.239338994026184, -0.7092483639717102, -0.9786441326141357, 0.22616830468177795, 0.7427757382392883, 0.37113240361213684, 0.05456382408738136, 0.7170251607894897, 0.707767128944397, -0.8347283005714417, -0.45597904920578003, -1.0098105669021606, 0.7339290976524353, 0.6417410373687744, 0.5035935640335083, -0.36262789368629456, 0.0709281638264656, -0.29705068469047546, 0.44239503145217896, -0.07631015032529831, -0.13576675951480865, -0.4545707106590271, 1.1155604124069214, -0.6924199461936951, 1.3838869333267212, -1.0074446201324463, -1.43271005153656, -0.15498876571655273, 0.16369202733039856, 0.6361575722694397, -0.709104597568512, -0.6376762390136719, -0.6935659050941467, 0.057119760662317276, -0.5167325735092163, 0.48915860056877136, -0.05445189028978348, -0.5102083086967468, -0.27524447441101074, -1.5926507711410522, -0.13796080648899078, 0.2979302704334259, 1.0378704071044922, -0.11327588558197021, 0.014628779143095016, 0.731032133102417, 0.03135699778795242, 0.8177205324172974, 0.3724833130836487, 1.094678521156311, 0.24415290355682373, -0.2313753217458725, 1.2486486434936523, 0.017540035769343376, -1.0758219957351685, 0.38913652300834656, 0.6051220297813416, 0.06124473735690117, 0.7369075417518616, -0.6490573883056641, -0.793467104434967, -0.5390218496322632, 0.3570183515548706, -0.7408889532089233, -0.7746822834014893, 0.4718782305717468, -0.19706135988235474, -0.8686410188674927, -1.0717190504074097, 1.0222394466400146, -0.5051459074020386, 0.658250093460083, -0.02258375659584999, -0.011152197606861591, -0.27090564370155334, -0.08891516923904419, 0.6944907307624817, -0.1189764142036438, -0.2938922643661499, -1.2006715536117554, -0.39912840723991394, -1.2550309896469116, -0.10486581921577454, -0.4617622196674347, -0.9924556016921997, 0.041218966245651245, -0.4567776322364807, -0.33027392625808716, 0.1523420661687851, -0.09257018566131592, -0.36535871028900146, -1.3668767213821411, 0.03151089325547218, -0.3678589463233948, 0.23854319751262665, 0.12034853547811508, 0.2237549126148224, -0.04688730090856552, 0.5671941041946411, 0.9078448414802551, 0.363229900598526, -1.1807607412338257, 0.4529288113117218, 0.07217381149530411, -1.511422038078308, -0.2616182267665863, -0.23982496559619904, -0.5586563944816589, 0.31381893157958984, -0.10197288542985916, 0.1538092941045761, 1.1360031366348267, -0.18640395998954773, 1.0236124992370605, 0.2255282998085022, -0.6805137991905212, -0.4763815402984619, -0.841196596622467, 0.45227304100990295, -0.7440752983093262, -0.7669214606285095, 1.0050990581512451, 0.11214567720890045, -0.9561432600021362, 0.2498565912246704, 0.08159969002008438, -0.03336528316140175, 0.38884520530700684, 0.6462701559066772, 0.21643005311489105, 0.6032467484474182, -0.3027138411998749, -0.6261463165283203, -0.6552526354789734, 0.46961167454719543, 0.7891818881034851, -0.04394776001572609, 0.4733055830001831, 0.9579035043716431, 1.1503524780273438, -0.3126835823059082, 0.1729394942522049, 0.26567766070365906, -0.8631198406219482, -0.7315658926963806, -0.4641588628292084, -0.2312539517879486, -0.9969913959503174, 1.183188557624817, 0.6328473091125488, -1.0770663022994995, -0.8509914875030518, -0.0564962700009346, -0.10083749890327454, -0.06605509668588638, -0.4286035895347595, -0.8405724167823792, 0.7020969390869141, 0.1697983294725418, 0.312728613615036, 0.012931065633893013, -0.12749961018562317, 0.2850455939769745, -0.10247129946947098, -0.2518940269947052, -0.4434148967266083, 0.3163391947746277, 0.47839513421058655, 1.2117424011230469, -0.34763607382774353, -1.1174821853637695, -0.24567823112010956, 0.1602083444595337, 0.29807886481285095, -0.34774407744407654, -0.21000148355960846, 1.045545220375061, 1.0315245389938354, -0.16010591387748718, 0.06027449667453766, -0.1303536295890808, 0.07859235256910324, -0.6596436500549316, 0.7525566220283508, 0.51454097032547, 1.1685264110565186, -0.7246423959732056, -1.001269817352295, -0.49789151549339294, 0.3556382954120636, 1.0650036334991455, 0.5294397473335266, 0.9962385892868042, -0.500607967376709, -0.5129549503326416, -0.3550873100757599, -0.38351237773895264, -1.5687129497528076, -0.39172476530075073, -0.8453117609024048, -1.3391954898834229, 0.05244346335530281, -0.47641846537590027, 0.5949362516403198, 0.9961238503456116, 0.1039595827460289, 0.820838451385498, 1.2034921646118164, 0.1699545979499817, -0.7054910659790039, -0.3492913544178009, 0.43333473801612854, -1.239557147026062, 0.42760786414146423, 1.328757882118225, -0.900532066822052, -0.09986277669668198, 0.1070731058716774, 0.3561672568321228, 0.5344917178153992, -0.01624462567269802, 0.09901861101388931, -1.4266184568405151, -0.46079903841018677, 0.20826703310012817, 1.5855176448822021, -0.18893910944461823, -0.6537250876426697, -0.7954562902450562, 0.719603419303894, 1.2894632816314697, -0.40142595767974854, -0.5696347951889038, 0.623253583908081, -0.5271779894828796, -0.4260229170322418, -0.0395042859017849, -0.23192061483860016, 1.294050693511963, -0.6416996717453003, -0.2706512212753296, -0.23095589876174927, 0.3706953525543213, -0.023341432213783264, 0.25279587507247925, -0.6469621658325195, 1.1737695932388306, 0.029986843466758728, 0.1500433385372162, 0.7752020955085754, -0.7460072636604309, 0.18969976902008057, -1.1329294443130493, 0.2211643010377884, 0.031241396442055702, 1.096388816833496, 0.1911390870809555, 0.7780773043632507, 0.2102089673280716, -1.253029465675354, 0.4279547333717346, 0.8464819192886353, 0.3652559220790863, -0.2193981409072876, -0.7374810576438904, -0.7824639081954956, -0.5553086996078491, -0.36958491802215576, -0.9113101363182068, -0.42500847578048706, 0.24131456017494202, -1.020171046257019, -0.1864939033985138, 0.8007086515426636, 0.8191786408424377, -0.27736106514930725, 0.24193409085273743, 0.06856242567300797, 0.4216672480106354, -0.639607846736908, -0.03593907132744789, -0.41755855083465576, 0.24481132626533508, 0.4002681374549866, -0.6790342330932617, -0.4252409040927887, 0.1040366142988205, 0.3805537819862366, 0.6868739724159241, -1.7149250507354736, 0.5430384874343872, -0.3934882581233978, 0.4214859902858734, 0.5800061225891113, 0.05660763010382652, 0.18721093237400055, 0.2621411681175232, -0.6517632007598877, -0.3707696497440338, 0.33147600293159485, 1.4377968311309814, 0.19447046518325806, -0.30907830595970154, -0.172481507062912, -0.36081987619400024, 0.3634764552116394, 0.18943069875240326, -0.006949468050152063, 0.21666957437992096, 0.2977389991283417, 0.8456262946128845, -0.01903693564236164, 0.3700498342514038, 1.7987431287765503, 0.19045987725257874, -0.14969436824321747, 0.5696722269058228, -0.07376832515001297, -0.588505744934082, -0.3480875492095947, 0.4927971363067627, -0.8233267664909363, 0.205808624625206, 0.007799053564667702, 0.11997824907302856, 0.6154094934463501, 0.39770442247390747, 1.1659435033798218, 0.9699600338935852, 0.46986210346221924, -0.8752179741859436, -0.049454957246780396, 0.7644517421722412, 0.8170248866081238, 1.1678860187530518, 0.4435691833496094, -0.354177862405777, -1.1693692207336426, 1.1074953079223633, -0.7221313118934631, 0.3290242850780487, 0.12723441421985626, 0.041815802454948425, 0.7629426717758179, -1.2060186862945557, -0.35581108927726746, 0.7653290033340454, -0.29062536358833313, 0.6567292213439941, 0.1607331484556198, -0.12607982754707336, -0.07644100487232208, -0.4471334218978882, -0.6822205185890198, -0.29680517315864563, 0.6999338865280151, -0.11785975098609924, -0.3520132303237915, 0.9974356293678284, -0.5656216144561768, 0.14662954211235046, -0.6233110427856445, -0.15272872149944305, 0.22422432899475098, 0.02523564174771309, -0.015103788115084171, 0.1402195394039154, 0.1460447907447815, 1.9100861549377441, -0.4661904573440552, -1.0455464124679565, 0.06450445204973221, -1.1790355443954468, 0.3864186406135559, -0.4264501631259918, -0.3524288833141327, 0.05291162058711052, -0.24202077090740204, -0.2914440333843231, -0.020523877814412117, -0.6359043121337891, -0.48961392045021057, -0.30570855736732483, -1.09922456741333, 0.2399590164422989, 0.07430150359869003, 1.0439479351043701, 0.8348689675331116, 0.3388306796550751, -0.6040027737617493, 0.22625571489334106, -0.6591581702232361, 0.3221088647842407, 0.7152429223060608, -0.36975494027137756, -0.5998356342315674, -0.785971999168396, -1.1425971984863281, 1.4006078243255615, 0.5960556268692017, 0.20166519284248352, 0.7511171698570251, 1.3394712209701538, 1.5999019145965576, -0.46510812640190125, -0.4483925700187683, 1.206540584564209, -0.9570915699005127, 1.451351523399353, 0.37154120206832886, -1.0329538583755493, -0.2014523297548294, 0.2465481013059616, -2.559077024459839, 0.9902724027633667, 0.4229828119277954, -0.7057437300682068, 1.3886133432388306, 0.7452889680862427, 0.3221951425075531, 0.7233692407608032, -0.741926372051239, -0.11981786787509918, 0.25098761916160583, -0.022602858021855354, -1.742581844329834, 0.825434684753418, 0.8482277989387512, -0.13759012520313263, -0.7574871778488159, 0.4155011773109436, -0.2683814465999603, 0.08500064164400101, -0.5516756772994995, 0.44158434867858887, 0.09488785266876221, 0.43734505772590637, 0.5585691928863525, -1.1176748275756836, 0.43220454454421997, -0.42258116602897644, 0.3357682228088379, 0.08241225779056549, 0.5063513517379761, 0.2338327169418335, -0.8485240340232849, -0.03774178773164749, -0.2091544270515442, -0.23428890109062195, -0.25238272547721863, -0.6854352951049805, 0.9803374409675598, 0.4962814748287201, -0.013783966191112995, -0.42440265417099, -0.6438766121864319, -0.33558815717697144, -0.3327752649784088, -0.14305607974529266, 0.8219748139381409, -1.496766448020935, -0.2132244110107422, 0.12604059278964996, -0.6309486627578735, 0.22142727673053741, 0.5483709573745728, 1.098109245300293, -0.6660866737365723, -1.0754719972610474, -0.40753409266471863, 0.5257569551467896, 1.0159448385238647, 0.08292366564273834, 0.8091154098510742, 0.00236129155382514, -0.9712957739830017, 0.8046854734420776, -0.4962872564792633, -1.432442307472229, -0.8336082696914673, -1.1598396301269531, 0.6761301159858704, 0.3127812445163727, 0.008199621923267841, 0.5317487120628357, 1.1330955028533936, -0.718044638633728, -1.3603172302246094, -1.9562466144561768, -0.06164059415459633, 0.7334875464439392, 0.1037287637591362, -0.1585765928030014, 1.2194371223449707, 0.18110451102256775, -0.7710784077644348, -0.5689345598220825, 0.23190189898014069, -1.1095424890518188, 0.40124738216400146, -0.18515747785568237, -0.1933315098285675, 0.3880097270011902, 1.5861133337020874, 0.6737082004547119, 1.1641435623168945, 0.7867923378944397, 1.161626935005188, -0.8092086911201477, -0.4578622877597809, -0.16622401773929596, 0.4373517334461212, -1.0068646669387817, -0.6452782154083252, -0.025354189798235893, -0.14340540766716003, -0.6163702607154846, 0.49878573417663574, 1.254955530166626, -1.0597816705703735, 0.2912651300430298, 0.30833372473716736, 0.05822567641735077, -0.4536546766757965, 0.7334598302841187, 1.3177489042282104, -0.7871571779251099, -0.1052907258272171, 0.08891703933477402, 0.599997878074646, -0.4802663326263428, -0.14500701427459717, 0.09643496572971344, -0.08072733134031296, 0.31099453568458557, 1.0676032304763794, 0.4919024705886841, 0.22464190423488617, -0.8709505796432495, 0.9538387656211853, 0.9688041806221008, 0.03540336713194847, 0.011568168178200722, 0.6656503081321716, -0.47041064500808716, 0.26070696115493774, -0.401602566242218, -0.5771028995513916, -1.1326709985733032, 0.799187958240509, 0.2020786851644516, 0.19716504216194153, -0.948100209236145, 0.8735228180885315, 0.34946709871292114, 0.1159886047244072, 1.1907144784927368, -0.31160375475883484, -0.7455654740333557, 0.7934208512306213, 0.15309464931488037, -0.11255215853452682, -0.027419928461313248, 0.3771084249019623, 0.9015650153160095, 0.16964876651763916, -0.011332851834595203, 0.43499597907066345, -1.123047947883606, -0.5611218214035034, -0.13615849614143372, -0.5749598145484924, -0.1830543726682663, -0.06707361340522766, -1.4544278383255005, -0.5202734470367432, -0.47570016980171204, -0.36291152238845825, 0.4831222593784332, -0.6791383028030396, -0.8574780821800232, -0.18811704218387604, -0.5590711832046509, 0.29451414942741394, -0.5967567563056946, -0.16498412191867828, -0.1897476613521576, 0.4379231631755829, 0.6711083054542542, -0.08156316727399826, 1.221040964126587, -0.23227284848690033, -0.028691790997982025, -0.7226876020431519, 0.7417708039283752, -0.30394065380096436, 0.8523327112197876, -0.05063417926430702, -0.701648473739624, -0.2153184860944748, 0.01883724518120289, 0.16063305735588074, 0.3826482594013214, -0.15516605973243713, 0.6619033217430115, -0.4020208418369293, -1.0074701309204102, -0.37467262148857117, 0.5485591888427734, 0.2694600522518158, -0.8757420778274536, -0.7093199491500854, -0.29423055052757263, 0.19751065969467163, -0.20476453006267548, 1.0939061641693115, -0.5966666340827942, 1.2393603324890137, 0.09630734473466873, -0.23468123376369476, 0.0033674994483590126, -0.587049663066864, 0.9456234574317932, -0.22946009039878845, 0.27981850504875183, -0.4506646394729614, -0.5209932327270508, -0.0012819953262805939, -0.8145070672035217, 0.5719994306564331, 0.48577043414115906, -0.41897183656692505, 0.28857162594795227, -0.8945358991622925, -0.9566630125045776, -0.5843319296836853, -0.6071747541427612, 0.31530845165252686, -0.10537028312683105, 0.8401160836219788, 0.04654761403799057, -0.8870947360992432, 0.3600236475467682, 0.9312970042228699, -0.4571878910064697, 1.0909594297409058, 1.5016250610351562, 1.5075604915618896, 0.004230997525155544, 0.09189233183860779, -0.08355670422315598, 1.2430769205093384, -0.8165032863616943, -0.2814852297306061, -0.8068697452545166, 0.27402445673942566, 0.44996073842048645], [0.8842006325721741, 1.577690601348877, -2.0989456176757812, -0.7664074301719666, 0.25457507371902466, -0.9145766496658325, -0.007274627685546875, -0.45531129837036133, -1.1751465797424316, -1.1244897842407227, -0.13147348165512085, 0.26136401295661926, 0.16812382638454437, 1.1486504077911377, 1.0828839540481567, -0.38038402795791626, 0.8375566005706787, -0.12853996455669403, 0.27626335620880127, 0.8848239183425903, 0.22821560502052307, -0.28637057542800903, -0.0681970939040184, 0.577487587928772, 0.15281593799591064, -0.3693227171897888, -0.9836293458938599, -0.49052464962005615, -1.3753833770751953, -1.6059672832489014, 1.4322985410690308, -1.1756455898284912, 0.38372746109962463, -0.267038494348526, -1.2370884418487549, -1.062889575958252, 1.0414879322052002, -0.5052156448364258, 0.5977161526679993, 0.24504747986793518, 1.5152373313903809, -0.5594353675842285, 0.018419018015265465, -0.7786127328872681, 0.4110892415046692, 0.4466171860694885, 0.14001606404781342, -0.6975991129875183, 0.10570672154426575, -0.13092221319675446, -0.4077131152153015, -1.0393816232681274, 0.20278717577457428, 0.7596669793128967, 0.6880278587341309, -0.04255841672420502, -0.13357922434806824, 0.37820684909820557, 0.38460230827331543, 0.808849573135376, 1.1271640062332153, 0.7023937702178955, -0.12617482244968414, 0.025947272777557373, 0.4856424331665039, -0.15295931696891785, 0.9103017449378967, 0.10574309527873993, -0.33111053705215454, 0.6848900318145752, 0.8658411502838135, -0.7690364718437195, 0.10524662584066391, 0.16231641173362732, -0.916018009185791, -0.6228904128074646, -0.15488527715206146, 0.7591205835342407, 0.2928190231323242, 1.021806001663208, -1.2706562280654907, -0.2862396538257599, 0.49080321192741394, -0.4622918963432312, 0.18546447157859802, 0.02999110519886017, -0.10456809401512146, -0.6944367289543152, -1.0479196310043335, 1.6346116065979004, 0.06214150786399841, 0.3833245038986206, 0.7427394390106201, 0.15197885036468506, 0.326511412858963, -0.2281724214553833, -0.37629032135009766, -0.08461827784776688, 0.8471765518188477, -1.140713095664978, -0.07848765701055527, -0.7836999893188477, 0.8615106344223022, -0.5066542625427246, 0.0002232678234577179, 1.9746975898742676, 0.10955054312944412, -1.221152901649475, -1.3742544651031494, -0.4180733561515808, 0.7765972018241882, 0.10824425518512726, -0.2837284803390503, -1.2573374509811401, -0.01493837684392929, 0.9969176054000854, 0.09358926117420197, 0.6816145777702332, 0.4087349474430084, 0.7822942733764648, 0.20836001634597778, -0.10547421127557755, -0.7208676338195801, -0.050702884793281555, 0.702755868434906, -0.21570579707622528, -0.10144204646348953, -0.11923005431890488, -0.16500680148601532, -0.23203520476818085, 0.286405473947525, 0.4385730028152466, -0.27660736441612244, 0.22197504341602325, -0.1831042766571045, 0.7136391401290894, 0.336945116519928, -0.5704137086868286, 1.0094809532165527, -0.7460781931877136, 0.6816875338554382, -0.6161527633666992, -0.38758301734924316, -0.5852071046829224, 0.7742564678192139, -0.31030791997909546, 0.5516324043273926, -0.0988684892654419, -0.8921371698379517, -0.7906550168991089, -1.1451025009155273, -0.1170191764831543, -0.04882463812828064, 1.0612022876739502, 0.9125230312347412, 0.2447146475315094, 0.26494935154914856, 0.6994786858558655, 0.1901051253080368, 0.348183274269104, 0.4516450762748718, 0.06521495431661606, -1.044377326965332, 1.5825294256210327, 0.7408121824264526, -1.1989490985870361, 0.6762651205062866, 0.6702341437339783, -0.2744920253753662, 1.2879664897918701, -0.7716442346572876, -0.45972171425819397, -0.7990124225616455, -0.4282485842704773, -0.10093474388122559, -0.6683593988418579, 1.4234271049499512, -0.22849291563034058, -0.2699261009693146, -1.6020610332489014, 0.2186182737350464, -0.37544265389442444, -0.2312728315591812, 0.43916064500808716, 0.05326841026544571, 0.032640568912029266, -0.2549610137939453, -0.306504487991333, 0.06186121702194214, -0.24967990815639496, -1.4467945098876953, 0.10569365322589874, -0.6223916411399841, -0.09835146367549896, 0.12988199293613434, -1.5012950897216797, -0.05696357414126396, -0.08031479269266129, -0.3510957658290863, -0.4587513208389282, 0.24238407611846924, 0.024834513664245605, -0.5212514400482178, 0.06587493419647217, -0.7797781229019165, -0.2812701165676117, -0.29325616359710693, 0.8077499866485596, 0.1026570275425911, 0.6140322685241699, 0.4036441445350647, 0.03609832376241684, -0.8588380813598633, 1.2017054557800293, 0.873648464679718, -1.6531022787094116, 0.6632843017578125, 0.3035658001899719, 0.6807260513305664, 0.5028473734855652, 0.5305190086364746, -0.3025584816932678, 0.11623609066009521, -0.015018712729215622, 0.445675253868103, 0.26187407970428467, -0.6256121397018433, -0.03177645057439804, -1.267989993095398, 0.6403106451034546, -0.9970317482948303, -0.37366583943367004, 0.42957189679145813, 0.2982023358345032, -1.204530954360962, 0.9677658081054688, -0.04290636256337166, 0.8233954906463623, -0.008635539561510086, 0.822393536567688, 0.041512228548526764, -0.24137872457504272, -0.7660493850708008, -0.6540076732635498, -1.5233747959136963, -0.37793272733688354, 0.19631093740463257, -0.32928937673568726, 0.6420353651046753, 1.0908353328704834, 0.466827929019928, -0.860787034034729, 0.18659469485282898, -0.02915581315755844, -0.050751589238643646, -0.662915825843811, 0.32174330949783325, -0.40205055475234985, -0.9928747415542603, 1.8919932842254639, 0.9112473726272583, -1.0469067096710205, -0.7718214988708496, 0.11929675191640854, 0.2763218581676483, -0.013725705444812775, 0.10186875611543655, 0.023157980293035507, 0.5093361735343933, -0.031206335872411728, 0.09780564904212952, 0.40065038204193115, 0.049179792404174805, -0.1638631522655487, -0.5306166410446167, -0.35967665910720825, 1.0673596858978271, 0.31318551301956177, 0.8862720131874084, 1.09732186794281, 0.37571924924850464, -1.960067629814148, -0.6013691425323486, 0.09011313319206238, 0.6340652704238892, -0.9376174211502075, 0.5031509399414062, 0.3047052025794983, 1.1505671739578247, -0.4636392891407013, 0.8764260411262512, 0.9021801948547363, -0.08940731734037399, -0.497184157371521, -0.44965308904647827, 0.2852189540863037, 0.5951119661331177, -0.7734137773513794, -0.4997935891151428, -1.0075489282608032, 0.4444615840911865, 0.48734715580940247, 0.29592791199684143, 1.6318540573120117, -0.8876994848251343, 0.2286035716533661, 0.3122485876083374, 0.3765900433063507, -0.784182071685791, -0.314683735370636, 0.02950381487607956, -0.1076158806681633, -0.2053101658821106, 0.04528624936938286, -0.396375834941864, -0.10202233493328094, -0.1456364095211029, 0.7283801436424255, 0.20918267965316772, 0.014896141365170479, -1.819747805595398, -0.9869346618652344, 0.09853210300207138, -1.019700288772583, 0.30986952781677246, 1.058227300643921, -0.6486148834228516, 0.06015082448720932, 0.45062100887298584, -0.14551755785942078, -0.0939192920923233, 0.2656077444553375, -0.21668186783790588, -0.6849817037582397, -1.5189749002456665, 0.011073626577854156, 0.6098138093948364, -0.010193247348070145, -0.38172435760498047, -1.0518492460250854, 0.9296261668205261, 0.9680646657943726, 0.1886979639530182, -0.28809359669685364, 0.16947703063488007, 0.2822294533252716, 0.2830204367637634, -0.877977728843689, -0.018574604764580727, 1.1275081634521484, -0.2146415412425995, -0.8945367336273193, -0.3796480894088745, -0.08233333379030228, 0.4077640175819397, 0.09952010959386826, 0.5239790678024292, 1.088186502456665, -0.3950429856777191, -0.7926833629608154, 0.5298923254013062, 0.5447893142700195, 0.7330174446105957, -0.7540726661682129, 0.6309869885444641, 0.06967537105083466, 1.1452319622039795, 0.639190137386322, -0.4203541576862335, -0.7412986755371094, -0.5385677218437195, -0.0059158094227313995, -0.4123806655406952, 0.25583401322364807, -0.24268528819084167, 0.10811041295528412, -0.8106398582458496, 0.08548244088888168, -0.467276394367218, -0.47198057174682617, -0.9271511435508728, -0.16323275864124298, 0.40916895866394043, -0.46407419443130493, 0.5894638299942017, -0.4459410011768341, -0.27946048974990845, -0.09506502747535706, -0.35084253549575806, -0.023315787315368652, 1.350043535232544, -1.1421030759811401, -0.6032336354255676, 0.5985527038574219, -0.33348509669303894, -1.1368625164031982, -0.1894913911819458, -1.062795877456665, 0.04665537178516388, 0.8803727626800537, -1.1824445724487305, 0.2632492482662201, 0.7034605741500854, 0.47021645307540894, 0.5358560085296631, -0.6651747226715088, 0.7143781185150146, -0.3077898621559143, 0.0722159743309021, -0.5371507406234741, 0.0921863242983818, 0.8653777241706848, -0.0687171071767807, 0.543005108833313, -0.39307311177253723, -0.015840645879507065, 0.40315669775009155, 0.543057918548584, -0.14910194277763367, -0.0450759157538414, -0.3390178680419922, 0.19870203733444214, -0.10539840161800385, 0.1349354237318039, 0.8403671979904175, -0.20916128158569336, -0.2516288757324219, 0.23535871505737305, 0.37399062514305115, -0.19106891751289368, -0.4606953561306, -0.3328561782836914, 0.45776674151420593, 0.5577627420425415, 0.35676178336143494, 0.10718420892953873, -0.49140995740890503, 0.2375597506761551, 0.559457004070282, 0.8520627021789551, -0.05069655552506447, -0.8473227620124817, -0.39183706045150757, 0.6402643918991089, 0.675568699836731, 2.005363941192627, 0.9465141296386719, -0.5001276135444641, -1.1337969303131104, 0.8685761094093323, -0.9164475798606873, 0.2111172378063202, -0.3013399839401245, 0.7228554487228394, 1.576096534729004, -0.6924927234649658, -0.8291073441505432, 0.8679168224334717, 0.7454058527946472, 0.4237537980079651, 0.8508623838424683, 0.40243056416511536, -0.09457014501094818, -0.09414386749267578, 0.193304643034935, -0.6399115324020386, 0.6916947364807129, -0.2649794816970825, -0.014386279508471489, 0.894240140914917, -0.5572091341018677, -0.9461734890937805, -0.09277655184268951, 0.05947995185852051, -0.1914609670639038, -0.33974725008010864, 0.28100717067718506, 0.625296950340271, 0.6233625411987305, 0.07835346460342407, -0.12842631340026855, -1.011141061782837, 0.09522557258605957, -0.6807677745819092, 0.3563476800918579, -0.07888877391815186, -0.4060947895050049, -0.17584852874279022, -1.3390467166900635, -0.3525660037994385, -0.07783447206020355, -0.774910569190979, -0.05829419195652008, 0.23996837437152863, -0.497964084148407, -0.22539342939853668, -0.013052687048912048, 1.5799025297164917, 1.2977814674377441, 0.24419260025024414, 0.36470621824264526, -0.04294944554567337, -0.6492569446563721, -0.3257620334625244, 0.33537280559539795, -0.8609781265258789, -0.3402106761932373, -0.5855133533477783, -0.802812933921814, 1.1424001455307007, 0.26216715574264526, -0.3141326308250427, 0.918994128704071, 1.041975736618042, 1.1381020545959473, -0.36118465662002563, -0.39137890934944153, -0.5305958390235901, -0.12747822701931, 0.9038257598876953, 0.7633401155471802, -0.9510082602500916, -0.15799486637115479, 0.691676139831543, -2.56744384765625, 0.5203847289085388, 0.4909006357192993, -0.46570906043052673, -0.37840792536735535, 0.32560861110687256, 0.4973601698875427, 0.3111739754676819, -0.3642479479312897, 0.060906656086444855, -0.6805181503295898, -0.2419101446866989, -1.0637648105621338, -0.5348784923553467, 0.718757152557373, 0.2530784010887146, 0.2797606587409973, -0.0178311038762331, -0.380952924489975, -0.2801057994365692, 0.1594657301902771, 0.42757949233055115, 0.5286708474159241, 0.8852393627166748, -0.328421413898468, -0.8167372941970825, 0.9408683776855469, -0.46575483679771423, 0.6829434633255005, -0.29367193579673767, 0.6736277341842651, 1.104778528213501, 0.14036321640014648, 0.5365357398986816, -0.07641372829675674, 0.2097511887550354, -0.652394711971283, -0.8898194432258606, 0.13966187834739685, 0.8203617334365845, 0.4588468074798584, 0.37930232286453247, -0.43684619665145874, -0.5740360021591187, -0.3739590644836426, 0.2818659543991089, 0.8048529028892517, -0.44883328676223755, -0.9334204196929932, -0.29994961619377136, 0.3759182095527649, 0.08689798414707184, 0.5354352593421936, 0.858097493648529, -0.8467569351196289, -0.6531938314437866, -0.7261127233505249, 0.30295640230178833, 0.7290332317352295, -0.6753581762313843, 0.6491168737411499, 0.26372140645980835, -1.7795026302337646, 2.202308177947998, -0.15076880156993866, -1.4458708763122559, -0.1886812299489975, -0.9450452327728271, 0.7031893730163574, -0.43598276376724243, 0.37375128269195557, 0.2635922431945801, 0.9008606672286987, -0.49607765674591064, 0.14999979734420776, -1.6497591733932495, -0.6060782670974731, 0.3996885120868683, 0.5646851062774658, -1.2350397109985352, 0.7881267070770264, -1.055846929550171, -0.8214155435562134, -0.6184912919998169, 0.07095411419868469, -0.7522722482681274, 0.15593136847019196, -0.07141806185245514, 0.2678402066230774, -0.0735263079404831, 1.1339943408966064, 0.6701385974884033, 0.9207823276519775, -0.29475200176239014, 1.0964292287826538, -0.7974807024002075, -0.07446861267089844, -0.30439329147338867, -0.04317130148410797, -1.4987001419067383, -0.15596839785575867, -0.9180846214294434, -0.5365945100784302, 0.0381067730486393, 1.2658185958862305, 0.45348942279815674, 0.2451631724834442, 0.13011468946933746, 0.2834956645965576, 0.4224695563316345, -1.0620100498199463, 0.4576481282711029, 0.7537438869476318, -0.6746223568916321, -0.6018019914627075, 0.17157219350337982, -0.1326427161693573, -0.5163595080375671, 0.09742990136146545, -0.06343145668506622, 0.8755068182945251, -0.26639121770858765, 1.241797685623169, 0.032845497131347656, 0.016344202682375908, -0.4381321370601654, 0.7879396080970764, 0.7740954160690308, -0.9063622951507568, 0.08617574721574783, 0.2543402314186096, -0.5722348690032959, 1.1196895837783813, -0.09854789078235626, -0.8196117281913757, -0.9144158363342285, 1.222540259361267, -0.3661978840827942, -0.6176717281341553, -0.4070998430252075, 0.8461370468139648, -0.6922303438186646, -0.6104553937911987, 1.0061755180358887, -0.3533000946044922, -0.5303796529769897, 0.934698760509491, 0.5336399078369141, -0.28636687994003296, 0.41842207312583923, 0.2750087380409241, 0.34631308913230896, 0.017044691368937492, -0.7607418298721313, 0.8789499402046204, -0.2874086797237396, -0.3138071894645691, -0.4067798852920532, -0.4584362506866455, 0.6247432231903076, 0.32608282566070557, -1.4082934856414795, -0.28635329008102417, -0.8712466955184937, 0.05775276571512222, 0.10837967693805695, -0.32526516914367676, -0.027661532163619995, 0.45856547355651855, 0.1299479454755783, 0.4808606505393982, -0.536184549331665, -0.13939401507377625, -1.1069984436035156, -0.012732159346342087, 0.796373724937439, -0.3193405866622925, 1.0902469158172607, 0.28368547558784485, 0.5432831048965454, -0.25150352716445923, 0.21272476017475128, 0.8803993463516235, 0.27475041151046753, -0.1322222501039505, -0.6433857679367065, 0.5271895527839661, 0.2340024709701538, -0.03021266497671604, 0.8820637464523315, 0.11716213822364807, 0.49675479531288147, -0.34883609414100647, -1.71328866481781, -0.09783366322517395, 0.2165273129940033, 1.1168773174285889, -0.3469979763031006, -0.40154972672462463, -0.09808236360549927, 0.47699087858200073, 0.08303876221179962, 0.7652907371520996, -0.12179853767156601, 1.19948410987854, 0.7172291874885559, -0.42726922035217285, -0.7419411540031433, -0.8833973407745361, 1.1070683002471924, -0.09865917265415192, 0.41769707202911377, -0.1011723130941391, 1.060225009918213, -0.5440809726715088, -0.32998502254486084, 0.16228699684143066, 0.3076641857624054, -0.5147258043289185, 0.8990269899368286, 0.009740957990288734, -1.5174802541732788, -0.9070223569869995, 0.5107612013816833, 0.5091115236282349, -0.26580655574798584, 0.5595380067825317, -0.7000871896743774, -1.4725792407989502, -0.7088829874992371, 0.4868845045566559, 0.20211490988731384, 0.24530856311321259, 1.0636851787567139, 1.6952705383300781, -0.6816840767860413, 0.011026576161384583, 0.1400759518146515, 0.6464221477508545, -1.5441583395004272, 0.3418172299861908, -0.4762399196624756, 0.33724114298820496, -0.6203678250312805], [1.0379228591918945, 1.1222281455993652, -2.285416841506958, -0.982851505279541, 1.0066343545913696, 0.6037310361862183, 1.2537949085235596, 0.17603491246700287, -0.4336049556732178, -1.2110257148742676, -1.2317498922348022, 0.1950368732213974, 0.11549346148967743, 0.18741200864315033, 0.2955993413925171, 0.26580238342285156, 0.7780547738075256, 0.03687811642885208, -0.10400652885437012, 0.46159806847572327, 1.1623120307922363, -1.029977560043335, -0.32121890783309937, 0.20628945529460907, -0.1105809137225151, 0.2646944522857666, -0.9581381678581238, -0.3166334629058838, -1.1445045471191406, -0.32560664415359497, 0.7880088090896606, -0.6151086688041687, 0.24374915659427643, -0.2066747397184372, -1.5981687307357788, -1.383132815361023, 0.3830518424510956, 0.12906122207641602, 0.42855921387672424, 0.6094803810119629, 1.2443634271621704, -0.12094485014677048, -0.412667840719223, -1.3169039487838745, 0.2949008047580719, 0.6771625876426697, 0.6958065629005432, -0.7330523133277893, 0.17041288316249847, -0.45764416456222534, 1.3591264486312866, -0.4522894620895386, 0.9050980806350708, 0.603031575679779, 0.7395046353340149, -0.7263031601905823, 0.31803879141807556, -0.2932175099849701, 0.6392700672149658, 0.5139349102973938, 1.6393626928329468, -0.35045522451400757, 0.5051429271697998, 0.4299948513507843, 0.5802090167999268, 0.2243272364139557, 0.019702745601534843, 0.5002405047416687, -0.3158383369445801, 0.07452687621116638, 0.7782769203186035, 0.29723161458969116, -0.6390223503112793, 0.01686670258641243, -1.1743011474609375, 0.8763170838356018, 0.19837063550949097, 0.33427807688713074, 0.35665589570999146, 0.47073236107826233, -0.6732151508331299, 0.08870460838079453, 0.6786966323852539, -0.8962386846542358, 0.42661669850349426, 0.1773579716682434, 0.05871076509356499, -0.4996429979801178, -0.3141903877258301, 1.8959230184555054, -0.5342395305633545, 0.29545941948890686, 0.6091090440750122, -0.6444007754325867, -0.37472718954086304, 0.1491161286830902, 0.6499063968658447, 0.08854742348194122, -0.6833379864692688, -0.26909971237182617, -0.5611873269081116, -0.8667734265327454, -0.08272235095500946, 0.5264347791671753, 1.0388777256011963, 1.7937780618667603, 0.2875896096229553, -0.0254183541983366, -0.23323559761047363, 0.3528553545475006, 0.5629843473434448, 0.3656635582447052, -0.3465205430984497, -1.4063267707824707, 0.07452157139778137, 0.7379943132400513, 0.8525305986404419, -0.18340349197387695, 0.5535627603530884, 0.36774009466171265, -0.5361159443855286, 0.11602349579334259, -0.7297629117965698, 0.8186374306678772, 0.7488965392112732, 0.06128993257880211, -0.6733009815216064, 0.29451513290405273, -0.001630338840186596, -0.11008203774690628, 0.0980246290564537, -0.08466769009828568, -0.5253660082817078, 1.0010541677474976, -0.7930907607078552, 0.9349576830863953, -0.1431025266647339, -0.8353917598724365, 0.22694449126720428, -0.4087059497833252, 0.3750250041484833, -0.2776547372341156, -0.5967101454734802, -0.40442338585853577, 0.5716793537139893, -0.05953654646873474, 0.006008092314004898, -0.3586554229259491, -1.0256410837173462, 0.06945044547319412, -1.5160245895385742, -0.05310850962996483, -0.5645462274551392, 0.8524064421653748, 0.5550531148910522, 0.2898392081260681, 0.291835218667984, 0.5847094058990479, 0.4649890959262848, 0.19934597611427307, 0.9083806872367859, 0.2949039041996002, -1.41890287399292, 0.8755938410758972, 0.14720036089420319, -1.1400762796401978, 0.853258490562439, 0.5681344270706177, 0.5994828343391418, 0.06835336238145828, -0.8726574778556824, -0.46573156118392944, -0.6882018446922302, -0.16161203384399414, -0.2921876907348633, 0.04802256077528, 0.809767484664917, -0.3982497453689575, -0.5749094486236572, -1.6212846040725708, 0.6612496376037598, -0.3301074504852295, 0.00858593825250864, 0.2798806428909302, 0.3298417329788208, 0.4018508195877075, -0.46555644273757935, 0.7209105491638184, -0.5439364910125732, -0.933059573173523, -0.6045719981193542, -0.4011409878730774, -0.27936527132987976, 0.3361956775188446, -0.4539695978164673, -1.5923715829849243, 0.572526752948761, -0.45112472772598267, 0.02264769747853279, -0.0015533436089754105, -0.37243664264678955, -0.201409712433815, -0.5414041876792908, 0.6890300512313843, -0.16611671447753906, -0.2199491262435913, -0.9562292098999023, 0.5078875422477722, -0.6445361971855164, -0.05683503672480583, 1.5821449756622314, 0.3191359043121338, -0.6598684787750244, 0.8268424868583679, -0.00785266887396574, -1.5390065908432007, -0.023057425394654274, 0.04651964083313942, 0.5447945594787598, -0.39028939604759216, 0.03475639224052429, 0.037576038390398026, 1.3244444131851196, -0.08106055110692978, 1.1613857746124268, 0.5064456462860107, -1.036399245262146, -0.6403213143348694, -1.1881828308105469, -0.452808678150177, -1.1544303894042969, -1.4246782064437866, 0.3361755311489105, 1.0346710681915283, -0.856325626373291, 0.021125536412000656, -0.6487007141113281, -0.4270687401294708, 0.1746852695941925, 0.9436985850334167, -0.2580139636993408, 0.6002155542373657, -0.6860252022743225, -0.2644260823726654, -1.2531030178070068, 0.447782427072525, 0.4888457655906677, -0.15082667768001556, 0.06989877671003342, 1.1666866540908813, 0.4923783242702484, -0.6443591713905334, 0.6692715883255005, -0.7562370896339417, 0.2618466019630432, -0.536756694316864, -0.49666261672973633, -0.34592995047569275, -0.43125659227371216, 0.7359582781791687, 0.012993079610168934, -0.713921308517456, -0.02397201582789421, -0.16083787381649017, 0.7379581928253174, -1.2052520513534546, 0.22441047430038452, -0.02092091366648674, 0.5528615713119507, -0.38897907733917236, -0.3439866304397583, 0.08272489905357361, 0.5852736830711365, 1.5999380350112915, -0.24977488815784454, 0.23547935485839844, 0.06646789610385895, 1.395126461982727, 0.13964004814624786, 0.352679580450058, -0.12317436188459396, -0.849854052066803, -0.3466196060180664, 0.06320099532604218, 0.35813871026039124, -0.6585214734077454, -1.0403109788894653, 0.3288480341434479, 0.8720282912254333, -0.03070494346320629, -0.10059630125761032, 0.5080217719078064, -0.4646497070789337, -0.5475332736968994, 0.18025518953800201, -0.19926002621650696, 0.6554763913154602, -0.07947547733783722, -0.8180765509605408, -0.3812641501426697, 0.8084462285041809, 1.0244953632354736, 0.4040900468826294, 1.4410063028335571, -0.43903517723083496, -0.2813172936439514, -0.17503313720226288, -0.11904653906822205, -0.7968780398368835, -0.6215143203735352, 0.07464832812547684, -0.31203240156173706, -0.009444078430533409, -0.6421259045600891, -0.1862826645374298, 0.862224817276001, 0.36413276195526123, 0.4169737994670868, 0.047342535108327866, -0.044296156615018845, -0.9954589605331421, -0.47834140062332153, -0.20191267132759094, -1.2307754755020142, 0.9465917944908142, 1.206255555152893, -1.108175277709961, 0.16557255387306213, -0.17566092312335968, 0.2776286005973816, 0.021516146138310432, -1.2520650625228882, -0.2449614256620407, -1.2465134859085083, -1.1197959184646606, 0.156084805727005, 1.1934247016906738, 0.057509783655405045, -0.009991273283958435, -0.3792610466480255, 0.5955877304077148, 0.47651055455207825, 0.04594049230217934, -0.8815407156944275, 0.2808063328266144, -0.510352611541748, -0.9282075762748718, -0.09846188873052597, 0.8295339345932007, 1.336568832397461, -0.252557635307312, -0.2448320835828781, -0.11286453157663345, -0.3597252666950226, -0.7468979358673096, 0.05376401171088219, -0.4986567497253418, 1.1634252071380615, -0.51194828748703, 0.5289309620857239, 0.9754539728164673, 0.3534699082374573, 0.2328987568616867, -1.3157148361206055, 0.5147433280944824, 0.47855690121650696, 0.904061496257782, 0.03818976879119873, 0.05240737274289131, -0.22537963092327118, -0.311392217874527, 0.7232945561408997, 0.4157361686229706, 0.6510029435157776, 0.02567231096327305, -0.7631838321685791, -0.3441937267780304, -0.8224477171897888, -0.07908721268177032, 0.5042768120765686, -0.3209637999534607, -0.1812005490064621, -0.024061232805252075, -0.2535533905029297, 1.4766336679458618, -0.014629275538027287, 0.04288419708609581, -0.3431171774864197, -0.49576660990715027, 0.49851006269454956, 0.14814500510692596, -0.5717656016349792, -0.5259708762168884, 0.7725263833999634, 0.7108544707298279, -0.3962429463863373, -0.8379174470901489, 0.09208356589078903, 0.9332746267318726, 0.21115191280841827, -0.6665090322494507, 0.4001133143901825, -0.044322606176137924, 0.18568836152553558, 0.5092144012451172, 0.45344191789627075, 0.14322492480278015, 0.052036743611097336, 0.019186614081263542, -0.32942724227905273, 0.2584284245967865, 0.934436559677124, -0.3691350519657135, -0.3134911358356476, -0.09036240726709366, -0.25185641646385193, 0.8333389759063721, 0.7823889255523682, 0.041233960539102554, 0.41818034648895264, -0.36788737773895264, 0.024245422333478928, -0.2771463394165039, -0.12120535224676132, 1.3072500228881836, -0.4193016588687897, -0.37153947353363037, 0.9830926060676575, -0.1748887300491333, -1.3351134061813354, -0.091765396296978, 0.38038724660873413, -0.12426143884658813, 0.07192626595497131, 0.1515320986509323, -0.607524573802948, 0.40500232577323914, 0.835395872592926, 0.2079782485961914, 0.829468846321106, 0.1594795435667038, -0.7295295596122742, 0.4402627646923065, 0.6842694282531738, 0.6539958715438843, 1.6179598569869995, 0.9361174702644348, -0.33760690689086914, -0.8429275155067444, 0.9164310097694397, -0.057362549006938934, 0.020469121634960175, 0.07935746014118195, 0.3184152841567993, 0.908679723739624, -0.9514538645744324, -0.4505438208580017, 1.1016157865524292, 0.21679578721523285, 0.8568793535232544, -0.2992386817932129, 0.22619344294071198, -0.1342557817697525, 0.40279439091682434, -0.10377436876296997, -0.13157601654529572, 0.8273400068283081, -0.08550573140382767, 0.000477995490655303, 0.6225993633270264, -0.934964120388031, 0.43206703662872314, -0.26018813252449036, -0.25257444381713867, 0.43293413519859314, -0.5549061894416809, 0.17333780229091644, 0.8697869181632996, 0.6335111856460571, 1.5384933948516846, -0.5073015093803406, -0.8957380652427673, -0.021983955055475235, -0.35137778520584106, 0.2955443263053894, -0.10764918476343155, -0.277069091796875, -0.4197046756744385, -0.3158714771270752, -0.1592469960451126, 0.6772988438606262, -0.11814729869365692, 0.39045771956443787, 0.3510611653327942, -0.4969773590564728, 0.06984363496303558, -0.6230834722518921, 0.9032906889915466, 0.49479207396507263, 0.01138004008680582, -0.24754513800144196, 0.663460373878479, -0.5191647410392761, 0.17419302463531494, 0.15215085446834564, -0.369863897562027, -0.8111335635185242, -1.300414800643921, -0.8504524827003479, 0.4595026671886444, 0.3865208327770233, 0.9073401689529419, -0.14077945053577423, 1.6081548929214478, 0.7786154747009277, -0.2275981307029724, -0.12767161428928375, 0.26308462023735046, -0.8434804081916809, 0.3100901246070862, 0.13103513419628143, -0.4258648753166199, 0.1143781989812851, -0.5118808150291443, -2.5321590900421143, 0.13729460537433624, -0.3430105149745941, -0.999974250793457, 0.5008407235145569, 0.6043523550033569, 0.8325601816177368, 0.4527917206287384, -0.6258000731468201, -0.3014552891254425, -0.33526474237442017, -0.030004747211933136, -1.372329592704773, 0.3028394281864166, 0.6613501906394958, 0.6830416917800903, -0.8884607553482056, 0.19890014827251434, -0.2926236689090729, 0.07844991981983185, -0.33494117856025696, -0.2817530930042267, 0.41392314434051514, 1.2514183521270752, 0.6871250867843628, -0.7227367758750916, 0.4443623721599579, 0.22568778693675995, 0.2102378010749817, -0.05618933588266373, 0.7821664214134216, 0.211880624294281, -0.5215892791748047, 0.6993424892425537, -0.9346211552619934, -0.3992457687854767, -0.5664841532707214, -0.1880500167608261, 1.7264223098754883, 0.9681674242019653, -0.39829784631729126, -0.6165770888328552, -0.22133305668830872, -0.19943642616271973, -0.7025954127311707, -0.11669492721557617, 1.2990366220474243, -0.9308512210845947, -0.7482996582984924, -0.0037198252975940704, 0.24413251876831055, 0.02365628257393837, -0.0270262248814106, 0.5270439386367798, -0.7164829969406128, -1.4908604621887207, -0.5290723443031311, 0.3783910274505615, 1.6659601926803589, -0.16694508492946625, 0.10397300124168396, 0.21972188353538513, -1.4854600429534912, 0.7001580595970154, -0.0020852144807577133, -0.8814588785171509, -0.3878155052661896, -0.770039975643158, 0.41480496525764465, -0.3620460629463196, -0.20826877653598785, 0.22972416877746582, 0.5355724096298218, -1.3011394739151, -1.3197615146636963, -1.545462727546692, -0.27219536900520325, 0.7916892170906067, 0.44952401518821716, -0.006989572197198868, 0.5136999487876892, 0.4649832546710968, -1.0040507316589355, -0.9047318696975708, -0.3729131817817688, -1.1965888738632202, 0.8574113845825195, 0.8036719560623169, 0.07982173562049866, 0.434101939201355, 1.175554871559143, 0.13984273374080658, 0.8947727680206299, -0.14059317111968994, 0.3560393452644348, -0.779623806476593, -0.05960093438625336, -0.7671356797218323, 0.314187228679657, -1.1772289276123047, -0.9115056991577148, -0.5711369514465332, -0.2986946403980255, -0.4732409417629242, 1.1331886053085327, 0.6752373576164246, -0.7786063551902771, -0.07095152139663696, -0.5097324252128601, -0.13022615015506744, -0.5650193095207214, 0.5312396287918091, 0.5740951299667358, -0.10174329578876495, 0.061274655163288116, 0.4178275763988495, 0.49069440364837646, -0.5863407850265503, 0.07905539870262146, -0.16068808734416962, 0.19689780473709106, -0.20639091730117798, 0.7208229303359985, 0.630903422832489, 0.24129050970077515, -0.3384701907634735, 0.676304042339325, 1.8264304399490356, -0.21963085234165192, 0.2941568195819855, 0.44946545362472534, -0.5407124757766724, -0.18050546944141388, 0.05475252494215965, -0.9858928322792053, -0.8172195553779602, 0.6754104495048523, 0.21837222576141357, -0.2040347158908844, -0.5495969653129578, 0.7072809338569641, 0.01802798919379711, -0.3955633342266083, 0.3546698987483978, -0.3173069357872009, -1.4113112688064575, 1.045743465423584, 0.487865149974823, -0.45963606238365173, 0.3214578628540039, 0.29775893688201904, 0.38132724165916443, 0.29111385345458984, -0.2819415330886841, 0.3360220193862915, -0.5933233499526978, -0.0009340094402432442, -0.5637843608856201, -0.14804120361804962, 0.03197198361158371, -0.3555813133716583, -1.2606245279312134, 0.2523253560066223, -0.20340709388256073, -0.684708833694458, 0.9314693808555603, -1.1945326328277588, -0.8742936253547668, 0.8227593302726746, -0.13960671424865723, -0.173808753490448, -0.5708560347557068, 0.2164846509695053, 0.15596342086791992, 0.3014847934246063, 0.412143737077713, -0.4687148630619049, 0.6390658617019653, 0.7909272909164429, -0.16346538066864014, -0.6535469889640808, 0.061342958360910416, 0.14495433866977692, 0.8471324443817139, 0.12687623500823975, -0.23075969517230988, 0.44704878330230713, -0.3163582384586334, -0.5031564831733704, -0.3556649088859558, -0.867850661277771, 0.5098150372505188, -0.4210051894187927, -0.9755188226699829, 0.3038702607154846, 0.5380404591560364, 0.27449408173561096, -0.8984281420707703, -0.7811862826347351, -0.5143904685974121, 0.29121658205986023, -0.018404576927423477, 0.8703910708427429, -0.2324342429637909, 1.6509833335876465, 0.25230684876441956, 0.05283160135149956, 0.29513147473335266, -0.6067661643028259, 0.9609350562095642, -0.30336812138557434, 0.1341753602027893, -1.053268551826477, 0.13184231519699097, -0.9160046577453613, -1.246963620185852, -0.08152899146080017, -0.1649828553199768, -0.9689885377883911, 0.33702149987220764, -0.454967737197876, -1.392688512802124, -0.5992569327354431, -0.288362979888916, 0.8811291456222534, 0.016771556809544563, 0.6068766713142395, -0.43997374176979065, -1.3346549272537231, 0.4194946587085724, 0.5899427533149719, 0.0633707270026207, 0.6166737675666809, 0.6463598608970642, 1.7729315757751465, -0.0005757010076195002, 0.344513863325119, -0.28357651829719543, 0.7814449667930603, 0.025497404858469963, -0.2570962607860565, -1.0072455406188965, 0.6774237751960754, 0.16619233787059784], [-0.030914656817913055, 1.4969292879104614, -2.5707290172576904, -0.36004215478897095, 0.2971547245979309, 0.12529738247394562, 1.043060541152954, 0.46063387393951416, -0.9658787250518799, -0.683433473110199, -1.093449592590332, 0.14103542268276215, -0.22329679131507874, 1.5695141553878784, 0.7037621140480042, 0.6221082806587219, -0.04212135449051857, 0.012425156310200691, -0.11476528644561768, 1.5976948738098145, -0.10823844373226166, -1.0559805631637573, -1.7034615278244019, -0.09243994951248169, 0.05803368240594864, -0.5691114664077759, -1.4838206768035889, -0.31119781732559204, -0.48313507437705994, -1.1012396812438965, 1.900301218032837, -1.0780792236328125, 0.1888711005449295, -0.2572678327560425, -1.5680861473083496, -0.7895516753196716, 0.492753267288208, 0.24988609552383423, 0.3239873945713043, 0.5828027129173279, 1.5594327449798584, 0.027261286973953247, -0.3021162450313568, -1.0897502899169922, 1.0513883829116821, 0.10346966981887817, 0.5231627821922302, -1.408209204673767, 0.530081570148468, -0.38291478157043457, 0.6759491562843323, -0.2970123291015625, 0.3542361557483673, -0.015221030451357365, 1.3163025379180908, -0.17525246739387512, 0.2663383185863495, 0.44970762729644775, 1.1417760848999023, 0.5786244869232178, 0.833526611328125, 0.9011945128440857, 0.43645843863487244, 0.34580540657043457, 0.952175498008728, 0.26738518476486206, 0.7424942255020142, 0.9311701059341431, -1.1098499298095703, -0.0034672562032938004, -0.07365953177213669, -0.5889691710472107, -0.07100160419940948, 0.23091332614421844, -0.08517921715974808, 0.3166494071483612, -0.40425142645835876, 0.06381076574325562, -0.09444201737642288, 0.8776669502258301, -0.47470003366470337, 0.06872206181287766, 0.9083849787712097, -1.1780067682266235, 0.1574031412601471, -0.20557212829589844, 0.10959739238023758, -0.6142269372940063, -0.24844591319561005, 1.9079190492630005, 0.16593600809574127, 0.8731924295425415, 0.2699231505393982, -0.14669209718704224, 0.17562273144721985, -0.3277438282966614, 0.12522447109222412, -0.9792271256446838, -0.27335095405578613, -0.9452109336853027, 0.5534455180168152, -1.077598214149475, 0.36088407039642334, -0.06676832586526871, 1.3061480522155762, 1.783281683921814, -0.351732075214386, -0.3612744212150574, -0.48143988847732544, 0.1856934279203415, -0.33875927329063416, -0.25096943974494934, -0.4657306373119354, -1.2319176197052002, 0.030199268832802773, 1.3479607105255127, 0.9808265566825867, -0.14434517920017242, 0.08963046967983246, 0.571765124797821, -0.4544464349746704, -0.22900158166885376, -1.115527868270874, 0.34614086151123047, 1.4035083055496216, 0.7171292901039124, -1.175071120262146, -0.09023092687129974, -0.5069048404693604, 0.24670962989330292, 0.07004919648170471, 0.27058547735214233, -0.3943677842617035, 0.668454647064209, -0.19782431423664093, 1.643117904663086, 0.025573862716555595, -0.5407989621162415, 0.09118679165840149, -0.118984654545784, 0.08923282474279404, -1.3134737014770508, -0.8231561183929443, -0.8604277968406677, 0.4024724066257477, -0.3018698990345001, 0.692238986492157, -0.4081520736217499, -1.1990259885787964, -0.15808582305908203, -1.7510898113250732, 0.49132177233695984, -0.45299139618873596, 1.8423621654510498, 0.6374603509902954, -0.3293968439102173, -0.027863340452313423, 0.24737730622291565, -0.08444832265377045, 0.47460874915122986, 0.47053489089012146, 0.060798853635787964, -0.6213064789772034, 0.9781134724617004, 0.46575331687927246, -0.6524407863616943, 0.9561516046524048, 0.7001747488975525, 0.5940947532653809, 0.6541762948036194, -0.27942049503326416, -0.7087034583091736, -1.2420473098754883, -0.13105571269989014, -0.08808740228414536, -0.9894687533378601, 0.4206709563732147, -0.3806399405002594, -0.4609147310256958, -1.4942443370819092, 0.3174632489681244, -0.028748271986842155, 0.5135236382484436, -0.21236275136470795, 0.0919206291437149, -0.009609163738787174, -0.1067795529961586, -0.013387464918196201, -0.19576355814933777, -0.7184976935386658, -0.9880910515785217, -0.0334814079105854, -1.3058552742004395, -0.4634386897087097, -0.16893370449543, -0.8838397264480591, 0.5197945833206177, -0.3795880377292633, -0.17694419622421265, 0.05685491859912872, -0.39698484539985657, -0.5771108865737915, -0.8918904066085815, 0.09968259930610657, -0.4212704300880432, 0.2121141105890274, -0.10507236421108246, 0.3563839793205261, 0.0006978949531912804, -0.2472904771566391, 0.829329788684845, 0.1355438530445099, -0.9070215225219727, 0.6120695471763611, -0.16247065365314484, -0.9448479413986206, 0.592267632484436, -0.7018412351608276, 0.3974367082118988, 0.14332431554794312, 0.47300031781196594, -0.21727462112903595, 0.601856529712677, 0.2525816559791565, 0.26050299406051636, 0.20103766024112701, -0.45598047971725464, -0.39310017228126526, -1.474906086921692, 0.1978490799665451, -1.2114293575286865, -0.7002614140510559, 0.9795778393745422, 0.5656179785728455, -0.658789873123169, 0.47036558389663696, -0.6783536076545715, 0.06279835850000381, 0.7826366424560547, 1.2714943885803223, 0.4998817443847656, 0.26409199833869934, -0.9479349255561829, -0.674769401550293, -1.256382703781128, -0.551367998123169, 0.33246782422065735, -0.31110066175460815, 0.4405123293399811, 1.0491468906402588, 0.6702871322631836, -0.23097875714302063, 0.18683002889156342, -0.26797279715538025, 0.17367678880691528, -1.2598683834075928, 0.28471723198890686, -0.0012449370697140694, -0.5250003337860107, 0.9841433763504028, 0.2798383831977844, -1.5171418190002441, -0.5665664076805115, 0.00720977270975709, -0.1857406347990036, -0.3220270574092865, -0.15743619203567505, -0.3157512843608856, 0.49576571583747864, -0.12173061817884445, -0.24588342010974884, 0.0026626205071806908, -0.22374941408634186, 1.0653386116027832, 0.016191566362977028, -0.3565376102924347, 0.47367820143699646, 1.2690595388412476, 0.28108468651771545, 0.9069921970367432, -0.5489847660064697, -1.5497419834136963, -0.8395072221755981, -0.7380911111831665, 0.9750636219978333, -0.045875754207372665, 0.2573774456977844, -0.09433042258024216, 0.982366144657135, -0.4379301965236664, 0.27190667390823364, 0.20156237483024597, 0.08873274177312851, -0.7276943325996399, 0.6590197682380676, 0.9506472945213318, 1.0513486862182617, -0.5268418788909912, -0.67131108045578, -0.2269076406955719, 0.326540470123291, 0.4752436578273773, 1.0436466932296753, 0.592495322227478, -0.1118050292134285, -0.2497161477804184, -0.6466004848480225, -0.502967894077301, -0.9649585485458374, -0.21561291813850403, -0.37651342153549194, -1.1279361248016357, -0.14275209605693817, -0.20239664614200592, -0.6253798007965088, 0.9509747624397278, 0.07564834505319595, 0.7396622896194458, 0.533656656742096, -0.15863682329654694, -0.6109147071838379, -0.926044225692749, -0.276473730802536, -1.5350795984268188, 0.9804149866104126, 0.7687710523605347, -0.01770424284040928, 0.3840242326259613, 0.626724362373352, -0.3199393153190613, 0.007592398673295975, -0.21478533744812012, 0.43209290504455566, -0.9233116507530212, -0.8533047437667847, -0.30866673588752747, 0.6994330286979675, 0.6103041768074036, -0.4852536916732788, -0.5314356684684753, 0.9653986692428589, 0.6159765124320984, 0.1616382598876953, -0.28759700059890747, 0.6228432655334473, 0.21255458891391754, -0.32777732610702515, 0.2852500379085541, 0.6584487557411194, 0.797931969165802, -0.30669689178466797, -0.15146403014659882, -0.6974724531173706, 0.28664276003837585, -0.7161036729812622, 0.21137547492980957, -0.4058631956577301, 0.3359214961528778, 0.019573748111724854, -0.2500290274620056, 1.3192819356918335, -0.21954345703125, 0.6535646319389343, -1.4430736303329468, 0.2278660535812378, 0.22058404982089996, 1.2282310724258423, 1.3563716411590576, 0.0705265924334526, 0.010913447476923466, -0.6832812428474426, 0.43422436714172363, -0.10602910816669464, 0.9564797878265381, 0.19804665446281433, -0.944061279296875, -0.13376301527023315, -0.9823012948036194, 0.3658004105091095, -0.3552785813808441, -1.1623117923736572, -0.15825852751731873, -0.6183095574378967, -0.5811681151390076, 1.1968469619750977, 0.031183432787656784, -0.41040387749671936, -0.366753488779068, -0.05940350145101547, 0.7038443088531494, 0.37793251872062683, -0.36246001720428467, -0.3779952824115753, -0.1018303707242012, 0.5788358449935913, -0.7092750668525696, -0.49645936489105225, -0.8633525967597961, 0.3296741843223572, 0.3630176782608032, -1.3042253255844116, 0.06774143129587173, -0.09336789697408676, 0.3617950677871704, 0.36907872557640076, 0.5755273699760437, 0.5049457550048828, 0.3016394078731537, 0.27876073122024536, 0.06033368408679962, 0.023237133398652077, 1.6299574375152588, 0.6020561456680298, -0.5072789788246155, -0.04682311415672302, 0.8837012052536011, 0.2785866856575012, 0.22150066494941711, -0.262650728225708, 0.09062138199806213, -0.6732149124145508, -0.5017443299293518, -0.191084623336792, -0.018218010663986206, 1.6198606491088867, -0.023917462676763535, 0.35657694935798645, 0.49700015783309937, -0.8727487325668335, -0.8633296489715576, -0.11561018973588943, 0.19904887676239014, 0.15164059400558472, 0.07257220149040222, 0.21779865026474, 0.47841495275497437, 0.28252822160720825, -0.26623889803886414, 0.3717474937438965, 1.248866081237793, 0.6502110958099365, -0.4081030488014221, -0.6577926874160767, 0.08705203235149384, 0.517848014831543, 1.1885260343551636, 0.8431851863861084, -0.3055216372013092, -0.6421008110046387, 1.245753526687622, -0.8544158935546875, 0.6322371363639832, 0.34710174798965454, 0.5018755793571472, 1.0307033061981201, -1.8890469074249268, -0.17690274119377136, 0.6505454182624817, 0.45477908849716187, 0.35585448145866394, -0.5443108081817627, 0.4618598520755768, -0.9803792238235474, 0.3235495686531067, 0.451951801776886, 0.02452624775469303, 0.6737415790557861, 0.25185543298721313, 0.1167304590344429, 1.2076016664505005, 0.515505313873291, 0.153164803981781, -0.41806215047836304, 0.007288362830877304, -0.2528229355812073, 0.18228968977928162, 0.12558643519878387, 0.3857710063457489, 0.3488548696041107, 1.7258363962173462, -0.17830252647399902, -0.4099466800689697, 0.2766416668891907, -1.2087819576263428, 1.087790608406067, -0.3186899721622467, -0.08805672079324722, 0.1406848281621933, -0.9047790765762329, 0.09399828314781189, -0.1064966693520546, -0.5658042430877686, 0.016245417296886444, -0.5397320985794067, -0.9696098566055298, -0.14014942944049835, -0.4500780999660492, 0.7874082326889038, 1.3756555318832397, 0.3709782660007477, 0.4504695534706116, 0.4699144959449768, -0.3569234013557434, -0.29628893733024597, 0.357818067073822, -0.453508198261261, -0.26827752590179443, -1.2407686710357666, -0.9988082051277161, 0.7662538886070251, 0.27115365862846375, 0.10549923032522202, 0.026480870321393013, 1.7818354368209839, 1.1809958219528198, -0.5008004307746887, -0.28678688406944275, 0.5706213116645813, -0.1636078953742981, 0.6521619558334351, 0.6474618315696716, -1.0011622905731201, 0.24601483345031738, -0.09868625551462173, -2.7901899814605713, 1.5353785753250122, -0.11094482243061066, -0.5027937889099121, 0.9925718903541565, 0.5757449865341187, 0.7529124617576599, 1.0637181997299194, -0.9436073899269104, -0.10206373035907745, 0.08439097553491592, 0.39319658279418945, -1.2988030910491943, -0.1824369579553604, 1.2648987770080566, 0.38940078020095825, -0.7938321232795715, 0.1642872542142868, -0.17250801622867584, 0.15411008894443512, -0.13259576261043549, 0.3146878778934479, 0.49199309945106506, 0.16632097959518433, -0.06694332510232925, -0.744152843952179, 0.8004246354103088, -0.425868958234787, 0.10869651287794113, 0.05746757984161377, 0.7487057447433472, 0.5421715378761292, -0.3949534296989441, 0.10762051492929459, -0.18011321127414703, -0.8036274313926697, -0.11906787753105164, -0.14993999898433685, 0.6692363619804382, 0.1303683966398239, -0.06341034173965454, 0.13868562877178192, 0.2752726972103119, -0.6190879344940186, -0.43983685970306396, 0.3418043553829193, 1.2978731393814087, -0.803665041923523, -0.29238197207450867, 0.0908856987953186, 0.2763477861881256, 0.2901874780654907, 0.5529543161392212, 0.32688629627227783, -1.1473209857940674, -1.4191056489944458, -0.5649518966674805, -0.7106888294219971, 0.5785494446754456, -0.2970229387283325, 0.1870679408311844, -0.06687788665294647, -1.225182056427002, 1.378737449645996, -0.35275954008102417, -1.4426195621490479, -0.2239585667848587, -1.1405150890350342, 0.4934336245059967, -0.8960303664207458, 0.10539916157722473, 0.434837281703949, 0.9096720814704895, -0.864203691482544, -0.33968186378479004, -0.6846965551376343, -0.35254839062690735, 0.2678224444389343, 0.9497168660163879, -0.8883076310157776, 0.5817786455154419, -0.40717586874961853, -0.8851433992385864, -0.43225982785224915, 0.6943327784538269, -1.5858556032180786, 0.2930101156234741, -0.22207918763160706, 0.5221501588821411, -0.010320513509213924, 1.7582154273986816, 0.26506805419921875, 1.1148165464401245, -0.5634517073631287, 0.7621737122535706, -0.6488935351371765, -0.20628651976585388, -0.5996177792549133, -0.06626008450984955, -1.3262832164764404, -0.29885333776474, -0.34886959195137024, -0.21240782737731934, -0.4648476839065552, 1.3376175165176392, 1.048588514328003, -1.3674050569534302, -0.2130325883626938, -0.6360486745834351, 0.827430784702301, 0.030026476830244064, 0.39451703429222107, 0.5167903900146484, -1.1158536672592163, -0.08139587938785553, 0.044650040566921234, 0.990846574306488, -0.9330590963363647, -0.21309371292591095, 0.01821122318506241, 0.7974117994308472, -0.5873816609382629, 1.5478805303573608, 0.2804383635520935, 0.4413999021053314, -1.029477834701538, 0.9303621053695679, 1.3041154146194458, -0.2607079744338989, 0.9559476375579834, 0.12162579596042633, -0.30059561133384705, 0.059584517031908035, -0.6210027933120728, 0.07136350125074387, -1.2047936916351318, 0.7752390503883362, 0.32498699426651, -0.1830817312002182, -0.7646666169166565, -0.21839821338653564, -0.5398369431495667, -0.3874239921569824, 0.997793436050415, -0.1996833235025406, -0.2755943536758423, 0.7947754859924316, 0.7619083523750305, -0.18460209667682648, 0.623573899269104, -0.407056599855423, 0.42829573154449463, 0.32105788588523865, 0.24766024947166443, 0.005947629921138287, -0.9663903117179871, -0.2828424274921417, -0.16402259469032288, -0.5775721073150635, 0.09097807854413986, -0.3332608640193939, -1.3319523334503174, -0.3577730059623718, -0.3722109794616699, -0.4496322572231293, 0.6052840948104858, -0.5684046745300293, -1.584665298461914, -0.3688223361968994, -0.07962644845247269, 0.05527764558792114, -0.6096795201301575, -0.18815602362155914, -0.015450233593583107, -0.40712854266166687, 0.9852858781814575, -0.4460724890232086, 1.1208432912826538, 0.36344996094703674, 0.5960631370544434, -0.11804250627756119, 0.14118948578834534, -0.23599465191364288, 0.3871503472328186, -0.02721228078007698, 0.04251176491379738, 0.2675904929637909, -0.3269621729850769, 0.07844604551792145, 0.1362597644329071, -0.05861586332321167, 0.6654713153839111, -0.5270060300827026, -0.6677591800689697, -0.5356180667877197, 0.5337364673614502, 0.45123252272605896, -0.49394628405570984, -0.5630000233650208, -0.31155261397361755, 0.16277632117271423, -0.028096642345190048, 0.6359885931015015, -0.276285856962204, 0.7389973998069763, 0.9929870367050171, 0.15532933175563812, -0.4893372654914856, -0.8655012845993042, 0.636248767375946, -0.5919713377952576, 1.1062406301498413, -1.0293935537338257, 0.1954527199268341, -0.6954430341720581, -1.0990244150161743, -0.29073575139045715, -0.2337236851453781, -0.022417789325118065, 0.5433048009872437, -0.4417188763618469, -0.40612488985061646, -0.7623957395553589, -0.6784459352493286, 0.6556037068367004, -0.038176994770765305, 1.157670497894287, -0.9035539627075195, -1.5222774744033813, -0.18685282766819, 0.8358678817749023, 0.6672059893608093, 0.7750874161720276, 1.234979271888733, 1.1286462545394897, -0.2692042887210846, 0.01771615259349346, -0.26271674036979675, 1.1282016038894653, -0.7360945343971252, -0.5230770111083984, -0.4150189459323883, 0.5095065832138062, 0.09934931993484497], [0.04680957645177841, 1.8124414682388306, -2.7537448406219482, -0.9624541401863098, -0.03412659093737602, 0.2556922733783722, 0.8523023128509521, -0.5061001777648926, -0.3735351264476776, -0.8857133388519287, -0.9141155481338501, -0.21618665754795074, 0.1964091658592224, 0.9983009696006775, 0.5753116011619568, 0.6978864669799805, 0.2239808589220047, -0.6146997213363647, 0.27451297640800476, 0.9672024250030518, 0.29328376054763794, -1.4222480058670044, -0.6846514940261841, 0.4395546615123749, 0.6372618079185486, -0.19841645658016205, -1.7244737148284912, -0.7556363344192505, -1.3036317825317383, 0.46881261467933655, 1.975081205368042, -1.0207154750823975, -0.10586492717266083, 0.16273829340934753, -1.7677412033081055, -1.889824390411377, 0.09494760632514954, 0.2727442681789398, 0.526233971118927, -0.019874591380357742, 1.7347959280014038, 0.2936497926712036, -0.3176627457141876, -0.8775262832641602, 1.5860347747802734, -0.331040620803833, 0.6992502212524414, -1.2284009456634521, -0.22018741071224213, -0.5574919581413269, 1.5570266246795654, -0.6342916488647461, 0.4220251739025116, 0.21655070781707764, 0.9226890802383423, -1.1247553825378418, -0.2797389328479767, 0.13927790522575378, 0.8863087892532349, 0.10405044257640839, 2.226580858230591, 1.055185079574585, 0.38496923446655273, 0.8227847814559937, 1.0071842670440674, -0.12286687642335892, 0.8932010531425476, 0.32930251955986023, -0.47633883357048035, 0.36928656697273254, 0.43037593364715576, -0.9246354103088379, -0.5116254687309265, 0.23525092005729675, -0.3632116913795471, 0.19546733796596527, -0.25278809666633606, 0.6420807242393494, 0.13526767492294312, 1.0383981466293335, -0.5540986061096191, -0.1647615134716034, 0.46295252442359924, -0.8085302710533142, 0.26102375984191895, -0.36152246594429016, 0.5220741033554077, 0.2866879105567932, -0.681998610496521, 1.6878242492675781, -0.3813489079475403, 0.856700599193573, 0.16009430587291718, 0.04200645908713341, 0.5810376405715942, -0.2841448485851288, -0.1766718029975891, -0.5299837589263916, 0.20788101851940155, -0.47083333134651184, -0.4549403488636017, -0.8207414746284485, 0.47958889603614807, -0.33858925104141235, 1.3437343835830688, 1.198097825050354, -0.18115398287773132, -1.1897026300430298, -0.948295533657074, -0.0009424344170838594, 0.02930058352649212, -0.15153677761554718, -1.226338267326355, -1.3696367740631104, -0.15828171372413635, 1.0189921855926514, 0.8366336226463318, -0.4361494481563568, 0.09225655347108841, 0.6924225091934204, -0.7873363494873047, -0.3999294340610504, -0.8892006874084473, 0.5701384544372559, 1.2052127122879028, 0.1374930590391159, -0.9556607604026794, 0.09232623130083084, -0.619785487651825, -0.017004434019327164, 0.33870232105255127, 0.3479449152946472, -0.33763808012008667, 0.6399039626121521, -0.07754857838153839, 0.7393489480018616, -0.11262541264295578, -0.5854918956756592, -0.01842745766043663, -0.5026804208755493, -0.14547017216682434, -0.7476183772087097, -0.6330780982971191, -0.7611513733863831, 0.5354458093643188, -0.35938262939453125, -0.029906831681728363, -0.5838316679000854, -1.1706154346466064, -0.7944273352622986, -1.3337795734405518, -0.006722300313413143, -0.11206372082233429, 1.3414180278778076, 0.15505895018577576, -0.22363388538360596, 0.4806895852088928, -0.09688816219568253, 0.46178334951400757, 0.671445906162262, 0.9424756765365601, 0.1860344111919403, -0.5993832945823669, 1.3377093076705933, 0.18275611102581024, 0.08411069214344025, 0.2929830551147461, 0.8943517208099365, 0.17978253960609436, 0.5954204201698303, -0.48520326614379883, -0.265482634305954, -0.350009948015213, -0.3214712142944336, 0.17926853895187378, -0.8414843678474426, 0.41426771879196167, -0.2568926215171814, -0.6226565837860107, -1.4870883226394653, 0.8107938766479492, -0.28522440791130066, 0.11160560697317123, 0.5649496912956238, -0.6811853647232056, -0.3881925940513611, 0.0328734926879406, -0.35387876629829407, -0.43215957283973694, -0.024093501269817352, -0.6469882130622864, 0.3486427366733551, -1.5197583436965942, -0.5664626359939575, -0.5507805347442627, -0.9474120736122131, 0.8389114737510681, -0.6649081707000732, -0.47885003685951233, 0.2762991786003113, -0.14950153231620789, -0.37483641505241394, -1.169601559638977, 0.24515454471111298, -0.8821619749069214, 0.5430746674537659, -0.586751401424408, 0.6725870370864868, -0.037164460867643356, 0.03824785724282265, 1.0238527059555054, 0.3048875629901886, -1.1708570718765259, 0.5951561331748962, 0.2462158054113388, -1.713767409324646, 0.3949190676212311, -0.6839579343795776, 0.4895379841327667, 0.4923069477081299, 0.41624927520751953, 0.13963013887405396, 1.2369320392608643, 0.4096328020095825, 0.5358932018280029, 0.3898126482963562, -0.1401534378528595, 0.13572797179222107, -0.9473369717597961, -0.23702368140220642, -0.5178253054618835, -1.135140299797058, 1.6553261280059814, 1.1107367277145386, -0.6814433932304382, 0.15290531516075134, -0.2998453676700592, 0.434090793132782, 0.7160869240760803, 0.5798100829124451, 0.8013532757759094, 0.18030723929405212, -0.0790616124868393, -0.20163623988628387, -0.8392130136489868, 0.1239548847079277, 0.87172931432724, -0.17769157886505127, 0.18762090802192688, 0.47136664390563965, 0.8869531750679016, -0.09314548224210739, -0.30431827902793884, 0.009707767516374588, -0.07842361181974411, -0.9263168573379517, 0.025795962661504745, 0.27550458908081055, -0.7836818099021912, 0.9546807408332825, 0.7992623448371887, -1.0260311365127563, -1.0301915407180786, -0.9594830274581909, -0.667526364326477, -0.37524446845054626, -0.08846670389175415, -0.2920858561992645, 0.39987167716026306, 0.2787250578403473, -0.10943147540092468, 0.12380078434944153, -0.03630036860704422, 0.4480823874473572, 0.1252884715795517, -0.6492713689804077, 0.12281843274831772, 0.8087117671966553, 0.6925187110900879, 1.2600253820419312, -0.3968384563922882, -1.9358419179916382, -0.7403519749641418, 0.2477380931377411, 0.9121017456054688, 0.011482990346848965, 0.3501257002353668, 0.9143813848495483, 0.8463327884674072, -0.2363954484462738, 0.19016610085964203, 0.9930333495140076, -0.0020007528364658356, -0.9976484179496765, 0.8004982471466064, 0.9789537191390991, 0.4894934296607971, -0.6581320762634277, -0.8073379397392273, -0.4679196774959564, 0.023007798939943314, 1.2703801393508911, 1.0976744890213013, 0.5482359528541565, -1.1305396556854248, -0.6222271919250488, -0.7611101865768433, -0.6089510917663574, -0.4471026659011841, -0.3339241147041321, 0.09982041269540787, -0.942160964012146, -0.1642790138721466, 0.20364663004875183, -0.30568066239356995, 1.2584933042526245, -0.023245053365826607, 0.6876550912857056, 1.1533830165863037, 0.219369575381279, -1.4055625200271606, -1.3230860233306885, -0.04438785836100578, -1.952081561088562, 0.8056136965751648, 1.255151629447937, -0.8019667863845825, 0.37174513936042786, 0.6040483713150024, -0.04579378291964531, 0.44706520438194275, 0.1941923201084137, 0.5028707385063171, -0.6430515050888062, -0.9388291835784912, -0.094843789935112, 0.9029677510261536, 0.11676869541406631, -0.602989137172699, -0.4023844003677368, 1.0084210634231567, 0.676425039768219, -0.45563098788261414, -0.33045703172683716, 0.082028329372406, 0.02340065687894821, -0.6820005178451538, 0.003452429547905922, 0.5126858949661255, 0.3647500276565552, -0.5229243040084839, -0.4052918553352356, -0.4090968668460846, 0.14388951659202576, -0.554598867893219, 0.35709694027900696, -0.18196551501750946, 0.771038830280304, 0.30669456720352173, 0.8087888360023499, 1.0050184726715088, 0.12295984476804733, -0.15082089602947235, -1.499843955039978, 0.4392741322517395, 0.1626032292842865, 0.9889204502105713, 0.0762527734041214, 0.1561376452445984, -0.012154459953308105, -1.9500049352645874, 0.017445629462599754, 0.04892195016145706, 0.05817744508385658, 0.1364526003599167, -0.24755892157554626, -0.3277965486049652, -1.6467061042785645, 0.40301263332366943, 0.08892303705215454, -0.18138454854488373, 0.2023957520723343, -0.6294810771942139, -0.09662465751171112, 1.5329904556274414, 0.011930516920983791, -0.4125599265098572, -0.5186591744422913, 0.10013394802808762, 0.39678701758384705, 0.11004668474197388, -0.36193910241127014, -0.18795649707317352, -0.11245314031839371, 1.0673270225524902, -0.7707382440567017, -0.20795677602291107, -0.3467029929161072, -0.044137559831142426, 0.5136693120002747, -1.0397417545318604, 0.26871103048324585, -0.24932444095611572, 0.39979347586631775, 0.21598868072032928, 0.31722936034202576, 0.3836253583431244, 0.5561161637306213, -0.44707104563713074, 0.012070289812982082, -0.12727393209934235, 0.8876894116401672, 0.3500356674194336, -0.009747996926307678, -0.809299886226654, 0.7274824976921082, 0.8382765650749207, 0.21870213747024536, 0.10912549495697021, -0.19766904413700104, -0.0843898355960846, 0.6519213914871216, -0.5355789661407471, 0.2439657300710678, 1.158000111579895, -0.24133531749248505, -0.014919779263436794, 0.7575473189353943, -0.11612139642238617, -1.1037720441818237, -0.4141724407672882, -0.20134195685386658, 0.14096303284168243, 0.31518712639808655, 0.3070729970932007, 0.46319541335105896, 0.10324399173259735, 0.17795658111572266, 0.7960864305496216, 0.7271481156349182, 0.39684176445007324, -0.615361213684082, 0.3269185721874237, 0.12485409528017044, 1.2809687852859497, 0.8437220454216003, 0.8845435976982117, -0.2486897110939026, -0.7018610239028931, 1.1753073930740356, -0.49242186546325684, 0.15819789469242096, 0.8631316423416138, 0.415793776512146, 0.9843176603317261, -1.6336251497268677, 0.1316070854663849, 1.0716246366500854, 0.4950472116470337, 0.7680655717849731, -0.04815831407904625, 0.7055246233940125, -0.8265685439109802, 0.14095641672611237, -0.36714476346969604, -0.6414448618888855, 0.8575013279914856, -0.05112125352025032, 0.050251953303813934, 0.1338764876127243, -0.3584686815738678, 0.015755608677864075, -0.5038312077522278, -0.004851591307669878, -0.33777424693107605, 0.061613716185092926, 0.02882986143231392, 0.013144189491868019, 0.38691246509552, 1.8136528730392456, -0.37786898016929626, -0.3935414254665375, -0.06857413798570633, -0.8442352414131165, 0.5038954615592957, -0.06348766386508942, -0.18318967521190643, -0.6202536225318909, -0.6880782842636108, 0.49190351366996765, 0.5249679088592529, -0.7447786331176758, -0.13108444213867188, -0.5586512088775635, -1.1406956911087036, 0.03024432808160782, -0.01235170941799879, 0.8166743516921997, 1.4021170139312744, 0.031460609287023544, 0.1576375961303711, 0.4894840121269226, -0.38158178329467773, 0.21640412509441376, 0.7772029042243958, -0.6385022401809692, -0.26645952463150024, -0.814384400844574, -1.0924608707427979, 1.3289721012115479, 1.1231547594070435, 0.1609821617603302, 0.4108218848705292, 1.659209132194519, 0.9823340177536011, -0.5129046440124512, 0.45054513216018677, 0.7942129373550415, -0.42669975757598877, 0.5927861928939819, 0.5512552857398987, -1.4161086082458496, -0.4407294690608978, 0.44569647312164307, -2.954813003540039, 1.6461912393569946, -0.18158414959907532, -0.48763033747673035, 2.061875104904175, 0.7328249216079712, 0.5502901077270508, 1.1075109243392944, -0.5678671598434448, -0.5040540099143982, -0.6075693964958191, 0.017016440629959106, -1.5613797903060913, 0.16958768665790558, 1.2693456411361694, -0.4215066134929657, -1.0406184196472168, 0.4206555187702179, 0.0009155813604593277, 0.2298886924982071, 0.004938863217830658, 0.1699228435754776, -0.4782271981239319, -0.035575103014707565, -0.002276236191391945, -1.0125887393951416, 0.45150861144065857, -1.021697998046875, 0.04354545846581459, 0.047116778790950775, 0.2784545421600342, 0.5497702956199646, -0.5493821501731873, 0.42239341139793396, 0.02770110033452511, -0.2199106067419052, -0.3478916585445404, -0.6557528972625732, 0.8694409728050232, 0.7198195457458496, -0.18048398196697235, 0.09582008421421051, 0.26023855805397034, -1.4223984479904175, -1.1789391040802002, 0.7370244264602661, 0.8361469507217407, -0.29362839460372925, -0.5908089876174927, 0.5391694903373718, -0.0033280462957918644, -0.44962286949157715, -0.19472599029541016, 0.42089203000068665, -1.0215283632278442, -1.5048916339874268, -0.9625788331031799, -0.3160661458969116, 0.6664376258850098, 0.27335572242736816, -0.21621473133563995, -0.23035484552383423, -1.3749033212661743, 1.0500961542129517, -0.517778754234314, -1.1755982637405396, -0.2308397740125656, -1.069547414779663, 0.7041584849357605, -0.5224724411964417, -0.022689634934067726, 0.28364649415016174, 0.49635186791419983, -1.3653521537780762, -0.22467286884784698, -1.507895827293396, 0.06610720604658127, 0.8145109415054321, 0.7239983081817627, -0.6415753960609436, 0.9918819069862366, -0.2834056615829468, -0.9159989953041077, -0.010004915297031403, 0.5087159276008606, -1.173555612564087, -0.11369235068559647, -0.4456569254398346, 0.4945642054080963, 0.12232492864131927, 1.2139666080474854, 0.9199768900871277, 1.1487360000610352, -0.010429526679217815, 1.1635791063308716, -0.2560575306415558, 0.21868978440761566, -0.2533973455429077, 0.44537869095802307, -0.7710073590278625, -0.14671215415000916, 0.3823380172252655, -0.19451904296875, -0.22499366104602814, 1.4439544677734375, 0.5819163918495178, -0.9031510949134827, 0.2776367664337158, -0.08833155035972595, 0.5349145531654358, 0.5106120109558105, 0.5120350122451782, 0.6369197964668274, -0.9916942119598389, -0.3369187116622925, 0.17393797636032104, 0.2839672267436981, -0.6113605499267578, 0.6730313301086426, -0.008830415084958076, 0.4968569278717041, 0.26450231671333313, 0.5953213572502136, -0.37644198536872864, 0.4684012234210968, -0.8603184819221497, 1.3330731391906738, 1.1634876728057861, -0.22145241498947144, 0.5989181995391846, 0.5835158228874207, -0.13332131505012512, -0.026454530656337738, -0.5630850791931152, -0.8388921618461609, -0.9935111403465271, 1.2583781480789185, 0.9494412541389465, -0.419524610042572, -0.4215109348297119, 0.27713972330093384, 0.38072213530540466, -0.5206617116928101, 0.9182752966880798, -0.9093995690345764, -0.272622287273407, 1.1522096395492554, 0.8692563772201538, -0.3587837815284729, 0.5280896425247192, 0.2564663589000702, 0.9446715116500854, -0.4667932987213135, -0.6969053745269775, 0.20399147272109985, -1.1354278326034546, -0.7096459865570068, -0.5588282346725464, -0.73011314868927, 0.34659382700920105, -0.27226921916007996, -0.9788947105407715, -0.1865769624710083, -0.9622856378555298, -0.8742402791976929, 0.06757604330778122, -0.8547068238258362, -1.234805941581726, -0.18452781438827515, -0.26737159490585327, 0.20182602107524872, -0.8265447616577148, -0.699201226234436, 0.7328965067863464, -0.055788375437259674, 1.1401598453521729, -0.16883620619773865, 1.3320786952972412, 0.3953893184661865, 0.5834655165672302, -0.5127437710762024, 0.4211041331291199, 0.1854364573955536, 0.3585154712200165, -0.4483889043331146, -0.10622293502092361, 0.4406987726688385, -0.4113346040248871, -0.1502530425786972, 0.6376919746398926, 0.09214676171541214, 0.044777072966098785, 0.15090325474739075, -0.8522379398345947, -1.5638216733932495, -0.007863782346248627, 0.4707794487476349, -0.9270600080490112, -0.2458849549293518, -0.34283027052879333, 0.0524187833070755, -0.13508203625679016, -0.010335319675505161, -0.7374935150146484, 0.9921517372131348, 0.7268721461296082, 0.13217508792877197, -0.42385077476501465, -0.511180579662323, 0.31123191118240356, -0.17872248589992523, 0.9033589363098145, -1.927441954612732, 0.021104399114847183, -0.5609968900680542, -0.9845275282859802, -0.007971055805683136, 0.31111958622932434, 0.3691965341567993, 0.46967411041259766, -0.287321537733078, -1.2152196168899536, -0.6938807368278503, -0.10536247491836548, 0.45047491788864136, 0.3556642234325409, 1.3337808847427368, -0.5837996006011963, -1.5110630989074707, -0.3155010938644409, 0.8934224247932434, 0.19995716214179993, 0.5761673450469971, 1.738020896911621, 1.6821951866149902, 0.022955263033509254, -0.20008037984371185, -0.21260763704776764, 0.5251274108886719, -0.7930161356925964, -0.5855498909950256, -0.9288478493690491, 0.030632255598902702, 0.24326089024543762], [0.3816525936126709, 2.141181468963623, -1.514477014541626, -0.87977135181427, 1.2225167751312256, 1.1962758302688599, 1.3830831050872803, -0.2416469156742096, -0.09509461373090744, -0.13283245265483856, -0.3442382216453552, 0.10966624319553375, 1.048253059387207, 0.7776279449462891, -0.10707376897335052, -0.04320884868502617, 0.22472470998764038, 0.006342684850096703, 0.7945531606674194, 0.13995778560638428, -0.33653783798217773, -0.8441532254219055, -0.055852070450782776, -0.05098533630371094, 0.032716408371925354, 0.4366740584373474, -1.7651036977767944, -0.5447322130203247, -1.5807958841323853, -0.12523344159126282, 0.9241210222244263, -1.0384677648544312, 0.5051180124282837, 0.5273364782333374, -2.314344882965088, -0.8257206678390503, 0.8824129104614258, 1.036353349685669, 0.8077206015586853, 0.88948655128479, 0.9857119917869568, 0.6393815279006958, 0.2317453771829605, -1.38225519657135, 0.8177576661109924, -0.2421514093875885, 0.4313073456287384, -1.3229563236236572, 0.8477318286895752, -0.5851178765296936, 0.856522798538208, -0.1631089150905609, 0.2434169352054596, 0.22710014879703522, 1.354013204574585, -0.8886279463768005, 0.052874647080898285, 0.25803279876708984, 0.5106531381607056, 0.0053316755220294, 1.3892180919647217, 0.33243489265441895, -0.23165887594223022, 1.062900424003601, 0.5492331981658936, 0.0735936388373375, 0.5818192958831787, -0.14876264333724976, -0.76055508852005, 0.1412820667028427, 0.4609718918800354, -0.15928538143634796, -0.9471620321273804, 0.4101303219795227, -0.587081789970398, 0.32654690742492676, 0.5224881768226624, 0.32098281383514404, -0.22000771760940552, 0.858548641204834, -0.3638947010040283, -0.43652957677841187, 0.05787167698144913, -0.10339006781578064, -0.22788013517856598, 0.027444634586572647, -0.35451123118400574, -0.8204705715179443, -0.050280891358852386, 1.7087162733078003, 0.040186215192079544, 0.03701484203338623, 0.27184319496154785, -0.32716190814971924, -0.08934375643730164, -0.8004790544509888, 0.4998893737792969, -0.45166701078414917, -0.5231029987335205, -0.3310909867286682, -0.6002886295318604, -0.2724544405937195, 0.07901948690414429, 0.178081214427948, 1.5170488357543945, 1.1795142889022827, -0.27533140778541565, -0.5906486511230469, -0.45912879705429077, 0.9180168509483337, 0.10905340313911438, 0.30028343200683594, -1.3557753562927246, -1.3518279790878296, -0.272538959980011, 0.9023749828338623, 0.6305395364761353, -0.17735272645950317, 0.5032380223274231, 0.47700607776641846, -0.780281662940979, 0.08156360685825348, -0.5095139145851135, 0.7948725819587708, 1.3518729209899902, 0.5722459554672241, -0.7115225791931152, -0.28092527389526367, 0.27014845609664917, 0.09384569525718689, 0.9808546900749207, -0.04058583825826645, -0.38632214069366455, 1.0257282257080078, -1.3869755268096924, 1.4725079536437988, -0.7656776905059814, -1.3409764766693115, 0.3198128044605255, 0.4938366413116455, 0.4503161907196045, -0.5632897615432739, -0.024063758552074432, -0.22020743787288666, 0.23164823651313782, -0.42379260063171387, 0.22425143420696259, -0.047440748661756516, -1.2462222576141357, 0.12466296553611755, -1.2805707454681396, 0.7342440485954285, -0.40547120571136475, 1.2845911979675293, -0.0039016916416585445, 0.4111124277114868, 0.661080002784729, 0.9090126752853394, 0.6052823662757874, -0.2896948456764221, 0.7264779806137085, 0.566323459148407, -0.47464266419410706, 0.8287107944488525, 0.42635011672973633, -0.22302141785621643, 0.3754119873046875, 0.11191380769014359, 0.18090903759002686, 0.39780256152153015, -0.7180176973342896, 0.03555171191692352, -0.5290148258209229, 0.4628152847290039, -0.1495267152786255, -0.6522063612937927, 0.7758667469024658, -0.6007755994796753, -0.592120885848999, -1.0390580892562866, 0.852611780166626, -0.08139042556285858, 0.28981083631515503, -0.02667573094367981, 0.6361870765686035, -0.4101663827896118, -0.3591739237308502, 0.542991042137146, -0.7709177732467651, -0.6370943188667297, -1.2239766120910645, -1.0493762493133545, -1.482372760772705, -0.026659302413463593, -0.6241760849952698, -1.0689797401428223, -0.054104696959257126, -0.13173998892307281, -0.2563907206058502, 0.41651982069015503, -0.3522607684135437, -0.2082536816596985, -1.1962190866470337, -0.3254205584526062, -0.36549490690231323, 0.05371236056089401, -1.1354728937149048, 0.3233009874820709, -0.7098978757858276, -0.586962878704071, 1.3645412921905518, 0.36813631653785706, -0.8174153566360474, 0.5655244588851929, -0.6227472424507141, -0.9668940901756287, 0.6961938142776489, -0.12428280711174011, 0.026505324989557266, 0.16657960414886475, 0.508597731590271, 0.2379612922668457, 0.8368548154830933, 0.09764459729194641, 0.5998076796531677, 0.23005244135856628, -1.1395841836929321, -0.7225767374038696, -0.8708071708679199, 0.34497395157814026, -0.8169430494308472, -1.222458004951477, 1.6280099153518677, 0.5387570858001709, -0.764901876449585, 0.7521538734436035, 0.04934844747185707, 0.28314346075057983, 0.6084061861038208, 0.6992653608322144, 0.3380086421966553, 0.8962501287460327, -0.8668840527534485, 0.15087729692459106, -0.8764153122901917, -0.16953429579734802, 1.265076756477356, 0.13323833048343658, -0.3674317002296448, 1.366750955581665, 0.6779695153236389, -0.060606855899095535, 0.12309285998344421, 0.5489415526390076, 0.19551770389080048, -1.1352072954177856, 0.3536429703235626, -0.13882829248905182, -0.058361101895570755, 1.3406888246536255, 0.4961360692977905, -1.2809923887252808, -0.38312196731567383, 0.20927278697490692, 0.5126438140869141, 0.24325205385684967, -0.03906136006116867, -0.35222095251083374, 0.4902583360671997, -0.05538628622889519, 0.47172027826309204, 0.5434424877166748, 0.09679700434207916, 0.7550171613693237, 0.14906731247901917, 0.01366955041885376, -0.41509687900543213, 0.9977284669876099, -0.05883801728487015, 0.39137986302375793, -0.3072671592235565, -0.7203018069267273, -0.8601523637771606, -0.029034070670604706, 0.9863014221191406, -0.682826042175293, -0.3569737672805786, 0.7871092557907104, 0.9850887060165405, -0.05624384433031082, 0.6405661106109619, 0.33066728711128235, -0.275812566280365, -0.31273597478866577, 0.7789044976234436, -0.06934002041816711, 0.45485472679138184, -0.6984066963195801, -0.608869731426239, -0.34954747557640076, 0.4191642105579376, 1.1592941284179688, 0.7885242104530334, 0.8502025008201599, -0.33850908279418945, -0.9984359741210938, -0.6236811280250549, -0.17200967669487, -1.289067268371582, -0.0456429123878479, -0.8759784698486328, -0.7039878964424133, 0.4856249690055847, -0.7141185998916626, -0.007090900093317032, 0.6132082939147949, -0.04311022907495499, 1.1290743350982666, 0.845867395401001, -0.6807595491409302, -0.5703725814819336, -0.6128458976745605, -0.39690113067626953, -0.5827904939651489, 1.0226787328720093, 0.8559139966964722, -1.0784870386123657, -0.02448982372879982, 0.05603025108575821, -0.09380460530519485, 0.8221997022628784, -0.6090952157974243, -0.20609357953071594, -1.2569607496261597, -0.7381706237792969, -0.3890562951564789, 1.6888854503631592, 0.1745370626449585, 0.24203594028949738, -1.3604512214660645, 0.1707247793674469, 0.6688755750656128, -0.493982195854187, -0.6115318536758423, 0.4868958592414856, 0.23406057059764862, -0.1534227728843689, 0.17402082681655884, 0.8950930833816528, 1.0423576831817627, -0.673015832901001, 0.08702079206705093, -0.48395073413848877, 0.2478545606136322, -0.43550950288772583, 0.37854790687561035, -0.34610599279403687, 1.0285929441452026, 0.17715655267238617, 0.333828866481781, 1.0230062007904053, -1.2242677211761475, -0.2567574679851532, -1.540753960609436, 0.8738232851028442, 0.7938560247421265, 0.9750469326972961, 0.05539008602499962, 0.054425470530986786, 0.5386253595352173, -0.6070034503936768, -0.33932045102119446, 0.06980210542678833, 1.1608998775482178, -0.24243998527526855, -1.2448060512542725, -0.5390335321426392, -0.35263580083847046, -0.46247172355651855, -0.9305385947227478, -0.6928789615631104, 0.5775692462921143, -0.7414965629577637, -0.23559297621250153, 1.1895523071289062, 0.2792724668979645, -0.5667251348495483, -0.5249272584915161, -0.21741721034049988, 0.9857348203659058, -0.31814900040626526, -0.0069059692323207855, -0.4794852137565613, -0.263923317193985, -0.10065924376249313, -1.0251179933547974, -0.9855096936225891, 0.09627023339271545, 0.41436871886253357, 0.20328354835510254, -1.2677571773529053, 0.1272723525762558, 0.31375205516815186, 0.45135805010795593, 0.2823137044906616, -0.10507960617542267, 0.5119431614875793, 0.5188872814178467, -0.366847425699234, -0.051256414502859116, -0.14717239141464233, 0.9991525411605835, -0.31510722637176514, -0.5290127992630005, -0.1730930507183075, -0.290081650018692, 0.46024438738822937, 0.06812955439090729, -0.3664589524269104, -0.055051472038030624, -0.2768304646015167, 0.014183945953845978, -0.23340409994125366, 0.08166796714067459, 1.5649666786193848, 0.002274240367114544, -0.4456106126308441, 0.9968483448028564, -0.28118205070495605, -0.793890118598938, -0.6320642828941345, 0.03091287426650524, -0.9393312931060791, -0.6843112111091614, 0.23788705468177795, 0.5162677764892578, 0.46782419085502625, 0.9578053951263428, 0.3348345160484314, 1.0130621194839478, 0.5337650775909424, -0.3622756004333496, -0.43278414011001587, -0.024895552545785904, 0.593665599822998, 1.1332547664642334, 1.0669755935668945, -0.00013755913823843002, -1.1405384540557861, 1.1347448825836182, -0.5097162127494812, 0.04409082978963852, 0.5757666826248169, 0.4603537619113922, 1.0424529314041138, -1.8804246187210083, -1.2202427387237549, 0.9186545610427856, -0.09632718563079834, 0.5416556596755981, 0.09116774797439575, 0.5620478391647339, -1.0376060009002686, 0.31943458318710327, 0.5310054421424866, 0.10571323335170746, 0.9298481941223145, -0.2508653998374939, -0.12344254553318024, 0.25321120023727417, -0.5534774661064148, 0.3501710295677185, -0.5170122385025024, -0.6862189769744873, 0.14787334203720093, -0.09278334677219391, 0.15405842661857605, 0.5350184440612793, 0.17100268602371216, 1.1258487701416016, -1.2565925121307373, -1.3256678581237793, 0.6248390078544617, -0.4100017547607422, 0.26639094948768616, -0.2740151286125183, -0.5960296988487244, 0.02219480276107788, -1.0379431247711182, -0.5865542888641357, 0.4231986999511719, -0.3518124222755432, 0.0689164400100708, -0.552696943283081, -1.184119462966919, -0.20995080471038818, 0.2864826023578644, 0.8466148376464844, 0.3420887589454651, 0.41748255491256714, -0.25469523668289185, -0.07150670140981674, -0.9574986100196838, 0.30160871148109436, 0.24352705478668213, -0.09535136073827744, -0.16198848187923431, -1.200218677520752, -1.0609084367752075, 1.094050407409668, 1.6290442943572998, 0.2333991676568985, 0.5424975156784058, 1.215522289276123, 1.2058649063110352, -0.3028333783149719, -0.5768071413040161, 0.41788265109062195, -0.8591622114181519, 0.2364446520805359, 0.7767115831375122, -0.9690090417861938, -0.12127091735601425, -0.4386342763900757, -1.5784084796905518, 1.2377736568450928, 0.19871003925800323, -1.344224214553833, 1.0211007595062256, -0.15904775261878967, 0.6461895108222961, 0.9857813119888306, -0.40070104598999023, 0.10334159433841705, -0.2181597650051117, -0.628974199295044, -1.0140941143035889, 0.6179642081260681, 0.6357420682907104, 0.3411319851875305, -0.7318907976150513, 0.7673944234848022, -0.01173480972647667, -0.48620378971099854, -0.12537065148353577, 0.999326765537262, 0.23425990343093872, 0.8876469135284424, 0.8021389842033386, -1.3244737386703491, 0.35551947355270386, -0.026463817805051804, 0.10986291617155075, 0.08454188704490662, 0.6559966802597046, 0.3290516138076782, -0.4854387640953064, 0.1317896544933319, -0.2297302484512329, -0.4432670474052429, -0.7262774705886841, -0.658403217792511, 0.8229941129684448, 0.16926740109920502, -0.26765069365501404, -0.24637889862060547, 0.0026739034801721573, -0.5053500533103943, -0.1329892873764038, 0.7051582932472229, 0.8009729385375977, -0.7497916221618652, -0.46436405181884766, 0.02506817877292633, 0.09885461628437042, 0.24500003457069397, -0.4902801513671875, 0.20983320474624634, -0.8264309167861938, -1.6123487949371338, -0.44170767068862915, -0.40566694736480713, 1.2045347690582275, -0.8150109648704529, 0.37562745809555054, 0.27764591574668884, -1.307129979133606, 0.13054949045181274, 0.4185396730899811, -2.0102672576904297, -0.44101643562316895, -1.2376290559768677, 0.8890357613563538, -0.12777388095855713, -0.3596741557121277, -0.4978863596916199, 1.08978271484375, -0.6280760169029236, -0.9483163356781006, -1.4285013675689697, -0.11635593324899673, 0.7386336922645569, 1.1131739616394043, -0.6678653955459595, 1.031383991241455, 0.6949292421340942, -1.2691235542297363, -1.0981920957565308, 0.27695611119270325, -1.1781072616577148, 0.44556924700737, 0.3240319490432739, -0.25900545716285706, 0.4784175753593445, 1.2993019819259644, 0.2954518496990204, 0.371929407119751, -0.4549974799156189, 0.4644009470939636, -0.602351188659668, -0.7938967943191528, -0.8335508108139038, 0.47205033898353577, -0.9477433562278748, -1.1405622959136963, 0.3257465064525604, 0.13036790490150452, -0.1419799029827118, 1.250213861465454, 1.470992922782898, -1.242773413658142, -0.16718387603759766, 0.4579395353794098, 0.3215281665325165, 0.054588526487350464, 1.0152803659439087, 0.39186161756515503, -0.6612632274627686, 0.19132615625858307, -0.04585631191730499, 0.7230322957038879, -0.8067874908447266, 0.21524614095687866, 0.07627654075622559, 0.34524714946746826, 0.10389479249715805, 0.39040595293045044, 0.821178674697876, 0.1825115829706192, -0.8506777882575989, 0.8625972270965576, 1.502046823501587, -0.4231363534927368, -0.4079142212867737, 0.6187547445297241, 0.7101688385009766, 0.5002513527870178, -0.7900305986404419, 0.3583970069885254, -1.0627628564834595, 0.4308474063873291, -0.23470422625541687, 0.0554933100938797, -0.05725637823343277, 0.2592373490333557, 0.4983477294445038, 0.07955381274223328, 0.7887028455734253, -0.37488389015197754, -0.3236578702926636, 0.9495594501495361, 0.8426518440246582, -0.7071143388748169, 0.07579177618026733, 0.5628276467323303, -0.21796229481697083, 0.07916202396154404, -0.118694968521595, 0.2758890390396118, -0.8403147459030151, 0.3141079246997833, -0.33677947521209717, -0.19532907009124756, -0.17126044631004333, -0.8386332988739014, -1.0250732898712158, -0.09436239302158356, -0.8898394107818604, -0.9095234870910645, 0.2523350119590759, -1.148987054824829, -1.2056972980499268, 0.3505740761756897, -0.45410722494125366, -0.2688167691230774, -0.1116885393857956, -0.26530009508132935, 0.23263993859291077, 1.2640044689178467, 0.26535916328430176, -0.3236922025680542, 1.0337498188018799, 0.037620872259140015, -0.3204845190048218, -0.6187874674797058, 0.16159841418266296, 0.05860060080885887, 0.21706977486610413, 0.062183927744627, 0.3476983904838562, -0.2939091920852661, -0.24215620756149292, -0.1913260817527771, -0.09642529487609863, 0.07611314207315445, 0.006848577409982681, -0.0654057115316391, -0.19192960858345032, -0.68536776304245, 0.6039650440216064, 0.4658598303794861, -1.2690037488937378, -0.5624499320983887, -0.5936945080757141, -0.04229696840047836, -0.08594581484794617, 1.6039929389953613, -0.846330463886261, 0.2716864347457886, 0.4064313769340515, 0.01280288677662611, -0.17287522554397583, -0.01876433938741684, 0.666459858417511, -0.7736779451370239, 1.114516019821167, -1.2110381126403809, 0.04597264900803566, -0.516830325126648, -1.4302747249603271, 0.7787405252456665, 0.07443356513977051, -0.04778227210044861, 0.1990807056427002, -1.0105345249176025, -0.1547987014055252, -0.6071271896362305, 0.5577719211578369, 0.6867095232009888, 0.09669622778892517, 0.17068593204021454, 0.6480083465576172, -1.401200771331787, 0.48702868819236755, 0.03047270141541958, 0.20789507031440735, 0.7819913625717163, 1.2108252048492432, 1.4616072177886963, -0.2950468063354492, -0.07826404273509979, -0.4076796770095825, 0.8533057570457458, -1.1181056499481201, -0.6825368404388428, -0.8587866425514221, 0.4453275203704834, 0.07969412207603455], [-0.4307626187801361, 1.3573951721191406, -2.7104499340057373, -0.7224093079566956, -0.0998130664229393, 0.6741055250167847, -0.05402136221528053, 0.2486121654510498, -0.6899385452270508, 0.1776134967803955, 0.09515659511089325, 0.34504571557044983, 0.7881680727005005, 1.4369231462478638, 0.2616574466228485, 0.3369520604610443, 1.1788698434829712, 0.05393720418214798, 0.5961394309997559, 1.2237528562545776, 0.20098929107189178, -0.633580207824707, -0.971598744392395, 0.2359439879655838, 0.5803810358047485, 0.8183093667030334, -1.254382848739624, -1.0590429306030273, -0.9503918290138245, -1.0185024738311768, 1.8117259740829468, -1.6670345067977905, -0.14546580612659454, 0.5617360472679138, -1.344277262687683, -0.5275898575782776, 1.273889422416687, 0.884182333946228, -0.34366342425346375, 1.4748655557632446, 1.6368991136550903, 0.3902946710586548, -0.45097774267196655, -0.7384471297264099, 0.8758063912391663, -0.046520959585905075, -0.3227294087409973, -1.39720618724823, -0.5305595993995667, -0.6866737008094788, 1.18771493434906, 0.3049817383289337, -0.17634367942810059, 0.2843996286392212, 0.5558639764785767, -0.31436270475387573, 0.8912171125411987, -0.4232816696166992, 0.3384125232696533, 0.038582004606723785, 1.5785759687423706, 0.07770633697509766, 0.04198665916919708, -0.13907256722450256, 0.536049485206604, -0.004885431379079819, 0.6498761773109436, 0.6164875030517578, -0.6488299369812012, -0.029512133449316025, 0.9573906660079956, -0.13929131627082825, -0.5044460892677307, -0.0073146820068359375, -0.3548951745033264, 0.4627400040626526, 0.47202563285827637, 0.42782774567604065, 0.10902022570371628, 0.9275109767913818, -1.0560325384140015, 0.1529727280139923, 0.6127010583877563, -0.05605708435177803, 0.37121203541755676, 0.05057873576879501, 0.10183951258659363, -0.6619268655776978, -0.7064201831817627, 1.6247749328613281, 0.6395672559738159, -0.021957021206617355, 0.5066350698471069, -0.3267543315887451, 0.23989616334438324, -0.9480706453323364, 0.11829598248004913, -0.5803688764572144, -0.03319818899035454, 0.10012458264827728, -1.2767689228057861, -0.5994598865509033, 0.876776933670044, 0.13335466384887695, 0.7013763785362244, 1.3082211017608643, 0.037129394710063934, -1.0000425577163696, -0.786457359790802, -0.13817912340164185, 0.1260257214307785, -0.19253727793693542, -0.9206300973892212, -0.5638918876647949, 0.4460935592651367, 0.5351303815841675, 1.0835793018341064, 0.07554425299167633, 0.31151652336120605, 1.2435237169265747, -0.6597109436988831, 0.14879418909549713, -1.242386817932129, 0.45284348726272583, 1.0056209564208984, 0.31048136949539185, -0.5389173030853271, 0.20639623701572418, 0.01690298691391945, 0.08717232197523117, 0.22863925993442535, -0.26696038246154785, -0.14959344267845154, 1.0374526977539062, -0.5808168649673462, 0.8111538290977478, -0.17313632369041443, -0.8279297947883606, -0.29948461055755615, 0.09091905504465103, -0.22815053164958954, -1.0674582719802856, -0.1824680119752884, -0.9505879878997803, -0.08146349340677261, 0.2502354681491852, 0.06830573827028275, -0.1564532071352005, -1.306807041168213, -0.26248544454574585, -0.9313482642173767, 1.0333541631698608, 0.09055463969707489, 0.3352048695087433, 0.22194916009902954, 0.25506582856178284, 0.5636180639266968, 0.11612818390130997, 0.5089970827102661, 0.4837783873081207, 0.8256404995918274, -0.01563594862818718, -1.0025910139083862, 1.4823745489120483, 0.31779271364212036, -0.1256185621023178, 0.7502255439758301, 0.04631529748439789, -0.23663854598999023, 0.9151425957679749, -1.1590049266815186, -0.6090971231460571, -0.5263573527336121, 0.6005239486694336, 0.028940659016370773, -0.4025745987892151, 0.8374462127685547, -0.6418256163597107, -0.819817841053009, -0.9524673819541931, 0.8806052803993225, -0.7690116763114929, 0.1955823004245758, -0.16685882210731506, 0.6628935933113098, -0.34544268250465393, -0.49380338191986084, 0.3902951776981354, -0.8212283253669739, -0.0755537822842598, -0.9564658999443054, -0.056686386466026306, -1.2101256847381592, 0.3146030604839325, -0.23521779477596283, -0.833358883857727, 0.41194412112236023, -0.6130067110061646, -0.7459931969642639, -0.3324672281742096, 0.2058374136686325, -0.021886413916945457, -1.2688418626785278, -0.29657983779907227, -1.2650277614593506, 0.7310460805892944, -0.6421694159507751, 1.1200666427612305, -0.6066965460777283, 0.22107502818107605, 1.178471326828003, 0.6267775297164917, -0.05511793866753578, 0.4080236256122589, -0.2223491221666336, -1.6807457208633423, -0.5388991832733154, -0.02192062884569168, 0.2045368105173111, -0.1821376532316208, 0.4355035424232483, 0.6842954158782959, 0.5348079204559326, -0.2292851060628891, -0.19762475788593292, -0.41335636377334595, -0.928811252117157, -0.7575339078903198, -0.9222581386566162, -0.008841171860694885, -0.8961676955223083, -1.0592122077941895, 0.8772990107536316, 0.7397436499595642, -1.40896737575531, 0.4309737980365753, 0.030700305476784706, 0.5875977873802185, 0.37893059849739075, 0.3568192720413208, 0.3241174817085266, 0.28317081928253174, 0.23480086028575897, -0.08690252900123596, -0.6145280599594116, 0.09514811635017395, 0.6703144311904907, -0.18225820362567902, 0.35414817929267883, 1.5614428520202637, -0.09670712053775787, -0.6472529172897339, 0.30241629481315613, 0.3970736861228943, 0.2588905394077301, -1.3808848857879639, -0.6511009931564331, -0.45305290818214417, -1.3717554807662964, 1.0401140451431274, 1.4546056985855103, -1.4659391641616821, -0.14624391496181488, 0.004946237429976463, 0.1570480614900589, -0.30685552954673767, 0.09867606312036514, -0.1264413297176361, 1.0278013944625854, 0.4141542613506317, -0.17131458222866058, -0.3222033977508545, 0.01664729416370392, 0.43318799138069153, -0.39192456007003784, 0.00946417823433876, -0.2850304841995239, 0.8865808248519897, 0.18233124911785126, -0.1065988540649414, -0.4083767235279083, -1.9770431518554688, -0.36945509910583496, -0.4043577313423157, 1.0486727952957153, -0.1906043291091919, -0.1465597152709961, 1.4004114866256714, 0.6497328281402588, -0.5253389477729797, -0.3052595257759094, -0.1581048220396042, -0.26375582814216614, 0.11872521787881851, 0.5001698136329651, 0.48951980471611023, 0.20681777596473694, -0.8916395902633667, -0.31269940733909607, -0.12988592684268951, 0.18386614322662354, 1.0917280912399292, 0.1951107531785965, 1.5314935445785522, -0.49767401814460754, -0.10657460987567902, -1.0865947008132935, -0.14610472321510315, -0.4429473280906677, -0.14661626517772675, 0.0023187287151813507, -0.9375702142715454, 0.027287177741527557, 0.13483279943466187, -0.20083479583263397, 0.8721064925193787, -0.5198222398757935, 0.8098863959312439, 0.6526233553886414, 0.11104127019643784, -0.5523627996444702, -1.1485377550125122, 0.050116319209337234, -1.2706953287124634, 0.5168613791465759, 0.07647939026355743, -0.3657526969909668, -0.18008816242218018, 0.06726564466953278, 0.20986102521419525, 1.0055975914001465, -0.3662424683570862, 0.6580702662467957, -0.6837292909622192, -1.3082374334335327, 0.6998957991600037, 0.3698450028896332, 0.8281535506248474, -0.4784506559371948, -0.5141844749450684, 0.5002291202545166, 0.3122010827064514, -0.7292467951774597, -0.43117719888687134, 0.47617974877357483, -0.2614826560020447, -0.5239317417144775, 0.28030118346214294, -0.12056255340576172, 0.48706793785095215, -0.5898039937019348, -0.7469578981399536, -0.07019538432359695, -0.4552997052669525, -0.2521049380302429, 0.13722506165504456, -0.3396667242050171, 0.499437540769577, 0.3248089849948883, -0.5148283839225769, 0.8924558758735657, -0.08158464729785919, -0.5385899543762207, -1.3478813171386719, 0.7895902991294861, 0.4544951915740967, 1.3838614225387573, 0.8690963983535767, -0.060861825942993164, 0.5228809714317322, -0.4623364210128784, 0.17387641966342926, 0.1058083325624466, 0.3068183660507202, 0.10865730047225952, -1.3016266822814941, -0.6705753803253174, -0.2580180764198303, 0.24094247817993164, -0.4984970688819885, -0.34441810846328735, 0.41950762271881104, -0.9650588631629944, -0.20598448812961578, 1.4085718393325806, 0.6046070456504822, -0.3883402943611145, -0.18793803453445435, -0.46268895268440247, -0.3775775730609894, -0.1750161051750183, -0.12356647849082947, -0.8339005708694458, -0.5956701040267944, 0.43397676944732666, -0.616877555847168, -0.40067216753959656, -0.07069990038871765, -0.46188226342201233, 0.37578561902046204, -0.9182742834091187, 0.16846610605716705, -0.29453539848327637, 0.5064002871513367, 0.6652932167053223, 0.3195034861564636, 0.6972039341926575, 0.19277915358543396, 0.47226741909980774, 0.9833453297615051, 0.12184487283229828, 0.8793177604675293, -0.08366135507822037, -0.9336556196212769, -0.8594856262207031, -0.36627086997032166, -0.3555971682071686, -0.05757651478052139, -0.31935909390449524, 0.025013143196702003, -0.6066145896911621, -0.3967256546020508, -0.5400133728981018, -0.007612340152263641, 1.7909108400344849, 0.30878984928131104, -0.004846296273171902, 0.32415664196014404, -0.22074882686138153, -0.6781912446022034, 0.2859009802341461, 0.17569033801555634, -0.17331069707870483, 0.5699036121368408, 0.35599997639656067, 1.094411015510559, 0.1585446298122406, -0.2146642506122589, 0.3917100727558136, 0.8144055008888245, 0.5421360731124878, -0.5472373962402344, -0.039280541241168976, 0.1925755888223648, 0.8015440702438354, 1.4618830680847168, 0.9056214690208435, -0.5321211218833923, -1.3360246419906616, 0.751684308052063, -0.5287525057792664, -0.053954750299453735, 0.7867825031280518, 0.6168863773345947, 1.431383728981018, -2.2383100986480713, -0.14197318255901337, 0.5024774670600891, 0.611392080783844, 0.4798368811607361, 0.3860088884830475, 0.04733686149120331, -0.6655619144439697, -0.18742676079273224, -0.2760532796382904, -0.19086171686649323, 0.5715485215187073, -0.10742021352052689, -0.15770350396633148, 0.49374765157699585, -0.2954447269439697, 0.08367210626602173, -0.5810864567756653, -0.6062816381454468, -0.1939912885427475, -0.3394593596458435, -0.5390198826789856, -0.3773111402988434, 0.6187556385993958, 1.2632770538330078, -0.49124792218208313, -1.0247303247451782, 0.5160735845565796, -0.7102832198143005, -0.044899143278598785, -0.20446021854877472, -0.595469057559967, -0.7008717656135559, -0.8822623491287231, 0.11393995583057404, -0.3854191303253174, -0.609464168548584, 0.32797884941101074, 0.3894404172897339, -1.3656269311904907, -0.20333616435527802, 0.7169286012649536, 0.9377759695053101, 1.5755831003189087, 0.20000088214874268, 1.3531991243362427, 0.07754015177488327, -0.6957928538322449, 0.48118171095848083, -0.1991346776485443, 0.3190244138240814, -0.002702477388083935, -0.7692313194274902, -1.360499620437622, 1.5340468883514404, 1.3487824201583862, 0.5619785189628601, 0.05128604173660278, 1.1475958824157715, 1.1908694505691528, -0.4373054802417755, -0.5830581784248352, 0.7732999920845032, -0.7014667391777039, 0.016875743865966797, 1.1843986511230469, -0.7551252245903015, 0.11324441432952881, 0.1198374554514885, -2.1140732765197754, 1.183962345123291, 0.6748036742210388, -0.27353110909461975, 0.05715601146221161, 0.4670538902282715, 0.8083423376083374, 0.09111376106739044, -0.7238365411758423, -0.04872583970427513, 0.05043663829565048, -0.41367900371551514, -0.25740790367126465, 0.7710965871810913, 1.253404140472412, 0.2733038365840912, -0.5714812278747559, 0.16408517956733704, -0.31434524059295654, -0.2602134346961975, -0.21974116563796997, 0.13605956733226776, 0.6030706167221069, 1.347183346748352, 0.0935496911406517, -0.5764133930206299, 0.03894316405057907, -1.0196548700332642, 0.23338229954242706, 0.41963428258895874, 0.8488817811012268, 0.30877092480659485, -0.019670845940709114, 0.08545322716236115, -0.08652550727128983, -0.537158727645874, -0.16354970633983612, -0.7648591995239258, 1.6643446683883667, 0.3777632415294647, -0.6379474401473999, 0.21810908615589142, -0.062358904629945755, -0.6885344982147217, 0.0028920993208885193, -0.036756642162799835, 1.0929226875305176, -1.0422639846801758, -0.8411315679550171, -0.02818598970770836, -0.15750260651111603, -0.16161708533763885, -0.060125868767499924, 0.7498155236244202, -1.0131117105484009, -1.39113450050354, -1.0056955814361572, -0.9069035053253174, 0.35998743772506714, -0.4347074329853058, 0.3820134103298187, -0.11165954172611237, -1.9732447862625122, 1.6833529472351074, -0.19805637001991272, -1.5166144371032715, -0.10951629281044006, -1.764613151550293, 1.4846079349517822, -0.7110319137573242, -0.12644629180431366, 0.1875276118516922, 0.39037469029426575, -0.8257109522819519, -0.7214106321334839, -1.1838949918746948, -0.2106417417526245, 0.7200472950935364, 1.133642554283142, -0.9171769022941589, 0.9300640225410461, 0.012173376977443695, -0.7175093293190002, -1.3205310106277466, 0.9005963802337646, -0.18326926231384277, 0.39977651834487915, 0.5552457571029663, 0.3313719630241394, 0.041548509150743484, 1.3936883211135864, 0.6264821887016296, 1.1040934324264526, 0.1256505250930786, 0.4236750900745392, -0.5091425776481628, -0.26408135890960693, -0.13975803554058075, 0.9275903105735779, -1.0205345153808594, -0.4560200572013855, -0.2798886001110077, -0.5003148913383484, -1.2552016973495483, 0.21578727662563324, 0.9241609573364258, -0.6096426844596863, 0.1601451188325882, -0.37873685359954834, 0.47536715865135193, 0.20525416731834412, 0.012341253459453583, -0.3167881667613983, -0.3710238039493561, 0.2649117112159729, -0.09421657025814056, -0.26168161630630493, -1.3273248672485352, -0.27540314197540283, -0.2680211067199707, 0.5137941837310791, -0.1448400765657425, 0.8312227129936218, 1.071616768836975, -0.17199857532978058, -0.6725684404373169, 0.6315116286277771, 1.102295994758606, -0.1983068436384201, -0.24760130047798157, 0.0789337232708931, 0.26704975962638855, 0.04304847866296768, -0.4395395815372467, 0.21615217626094818, -0.7865143418312073, 0.8785879015922546, -0.3446100652217865, -0.15591786801815033, -0.5859158635139465, -0.28155386447906494, -0.2925894856452942, 0.1303628385066986, 0.4136970043182373, 0.025818556547164917, -0.29560643434524536, 0.9173032641410828, 1.1757628917694092, 0.010203761979937553, 0.19339263439178467, 0.3917154371738434, 0.66340571641922, 0.04097260534763336, 0.23979821801185608, 0.4966830909252167, -0.2569257616996765, -0.208693265914917, -0.46003004908561707, 0.4565415680408478, -0.3768981695175171, -0.8145442605018616, -1.3786991834640503, -0.22169388830661774, -0.9687044620513916, -0.18243634700775146, 0.7629274129867554, -0.8908341526985168, -0.5866799354553223, 0.14234237372875214, 0.1918535977602005, -0.23461095988750458, -0.40004032850265503, -0.5402458310127258, -0.5579441785812378, -0.048307184129953384, 1.240416407585144, -0.43974608182907104, 1.1688281297683716, -0.8754360675811768, -0.49888741970062256, 0.17681734263896942, 0.061113856732845306, 0.09850124269723892, 0.7277597784996033, 0.6779786944389343, -0.29933688044548035, 0.3900263011455536, -0.24317659437656403, -1.3176263570785522, 0.6610990762710571, 0.11082647740840912, 0.1681405007839203, 0.0066484250128269196, -0.4709267318248749, 0.07707681506872177, 0.8491041660308838, 0.576759934425354, 0.07438885420560837, -0.0492752343416214, -0.9162619113922119, 0.48747774958610535, -0.4616656005382538, 0.5571293830871582, -0.5608148574829102, 1.486106514930725, 0.6079477667808533, -0.1413508951663971, -0.03447819501161575, -0.14836759865283966, -0.5501937866210938, 0.24712976813316345, 0.4455721378326416, -0.9346714615821838, -0.4684414565563202, 0.16137242317199707, -1.317115306854248, 0.2756304144859314, 0.4648672938346863, 1.2223443984985352, -0.06646348536014557, -0.6763660311698914, -0.6902804970741272, -0.4222371280193329, 0.007003560662269592, 0.48865777254104614, 0.34041061997413635, 0.3335057199001312, 0.025325467810034752, -0.8276422619819641, -0.18508772552013397, 0.40811392664909363, 0.4743010997772217, 0.0966973677277565, 2.0093681812286377, 1.525456428527832, -0.08092708140611649, 0.3912486732006073, -0.6380559802055359, 0.5921109914779663, -0.9921186566352844, -0.22588032484054565, 0.2008964866399765, 0.6087145209312439, 0.21331194043159485], [0.050959840416908264, 1.5796623229980469, -2.3484456539154053, -1.2257611751556396, 0.18732210993766785, 0.22672885656356812, 0.6828019618988037, 0.03477778285741806, -0.36792194843292236, -1.0428301095962524, -0.9616446495056152, 0.18140831589698792, 1.2572979927062988, 1.4046396017074585, 0.9784509539604187, 0.18135669827461243, 0.698173999786377, -0.7068682312965393, 0.09405418485403061, 0.44164007902145386, 0.48929858207702637, -0.7127215266227722, -0.1009172648191452, -0.3975093364715576, 0.6083791851997375, 0.5245996713638306, -1.8802709579467773, -0.31548935174942017, -1.817018985748291, -1.258530616760254, 1.0182321071624756, -0.7902480363845825, 0.4026254415512085, -0.3355523347854614, -1.8307108879089355, -0.8073908686637878, 0.9154394865036011, 0.29425477981567383, -0.13738808035850525, 0.7398934364318848, 1.7103161811828613, 0.9468488693237305, 0.12580116093158722, -1.1276224851608276, 1.2852396965026855, 0.015276029706001282, -0.038029275834560394, -1.6780565977096558, -0.06850177049636841, -0.4094780683517456, 0.40082889795303345, -0.4271608293056488, -0.6097449064254761, 0.5331587791442871, 1.132004737854004, 0.18816323578357697, -0.36370959877967834, 0.3462926149368286, 0.3753049373626709, -0.34640252590179443, 1.6342461109161377, 0.433623731136322, -0.813254714012146, 0.462688684463501, 0.5036166310310364, -0.03559458255767822, 0.32632607221603394, 0.41434529423713684, -0.9285221099853516, 0.6585051417350769, 0.22615128755569458, -0.04779331758618355, -0.9957480430603027, 0.05216468870639801, -1.656755805015564, 0.19345109164714813, 0.14064659178256989, 0.3966872990131378, 0.1557372510433197, 1.137080192565918, -0.7437875270843506, -0.42882198095321655, 0.2348840981721878, -1.0575206279754639, 0.9800970554351807, 0.18966135382652283, -0.02055889368057251, -0.4880101680755615, -0.3505195379257202, 2.1021456718444824, -0.2367280274629593, 0.7165129780769348, 0.07626257091760635, -0.06532608717679977, -0.3646642565727234, -1.0951427221298218, 0.10612906515598297, -0.5739256143569946, -0.14765343070030212, -0.9931683540344238, -0.7065232992172241, -0.34331387281417847, 0.7751141786575317, 0.24639993906021118, 0.9467285871505737, 1.1670550107955933, 0.48096346855163574, -1.4409666061401367, -0.7838324308395386, 0.340501070022583, 0.3892197906970978, 0.13591307401657104, -1.3171679973602295, -1.101318597793579, -0.7589000463485718, 0.8810936212539673, 0.6727736592292786, -0.28987881541252136, 1.1424353122711182, 0.7708067893981934, -0.8988877534866333, -0.7078485488891602, -0.8762149810791016, 0.5629431009292603, 1.8162753582000732, 0.47054821252822876, -0.9260060787200928, 0.08419971168041229, -0.1800929605960846, -0.09555459022521973, 0.5464945435523987, -0.035039253532886505, -0.9795535206794739, 1.1968817710876465, -0.6669535636901855, 1.2698016166687012, -0.7536884546279907, -0.9092304706573486, 0.7653433084487915, 0.06002373248338699, 0.14119790494441986, -0.7596632838249207, -0.8340004682540894, -1.4958279132843018, 0.09132665395736694, -0.4667515754699707, 0.06169898062944412, -0.28677278757095337, -1.2916593551635742, 0.6048157215118408, -1.0466234683990479, 0.8127751350402832, -0.02291400358080864, 1.3647396564483643, -0.23309281468391418, 0.9464696645736694, 0.7959415912628174, 0.07271195948123932, 0.2060951441526413, 0.2661701440811157, 0.6908683180809021, 0.43951910734176636, -0.9995930194854736, 1.4267253875732422, 0.1770257204771042, -0.15675759315490723, 0.5355888605117798, 0.0863049179315567, 0.22054290771484375, 0.8512610197067261, -0.9469122886657715, -0.11613589525222778, -0.3392733633518219, 0.25191277265548706, -0.12042705714702606, -0.4236016273498535, 0.9776170253753662, -1.0362002849578857, -0.6295861601829529, -0.9691727757453918, 0.9202158451080322, -0.7918984889984131, 0.15585078299045563, -0.2912588119506836, 0.3465622067451477, -0.4055209755897522, -0.5857813954353333, -0.16907474398612976, -0.8651226758956909, -0.53521728515625, -1.4748823642730713, -0.22987091541290283, -1.4798686504364014, -0.181226909160614, -0.7226755619049072, -1.4939699172973633, 0.5012224912643433, -0.37651658058166504, -0.16128163039684296, 0.2700326442718506, -0.013756651431322098, -0.6520110964775085, -1.9796277284622192, -0.2794746160507202, -0.8131558895111084, 0.8807120323181152, -0.43948665261268616, 0.4485122263431549, -0.9915341138839722, 0.2243325412273407, 1.3373758792877197, 0.13484568893909454, -0.9873683452606201, 0.5352150201797485, 0.4662763178348541, -1.0741175413131714, 0.0761575847864151, -0.5088316202163696, 0.30584532022476196, 0.016061898320913315, 0.7357313632965088, -0.032626714557409286, 1.0303140878677368, 0.28684258460998535, 0.19565537571907043, 0.2599698305130005, -0.7388185858726501, -0.07323018461465836, -1.0247722864151, 0.2597115635871887, -0.9469223022460938, -0.4233494699001312, 1.1052451133728027, 0.766465425491333, -0.3947010636329651, 1.046592116355896, -0.20501886308193207, 0.6688295602798462, 0.3676900863647461, 0.960121750831604, 0.7798128128051758, 0.15422283113002777, -0.5917352437973022, -0.010827142745256424, -0.13915801048278809, -0.18726477026939392, 1.4083659648895264, -0.2672882080078125, -0.6321730613708496, 1.630500316619873, 0.33942073583602905, -0.3599257171154022, 0.134063258767128, 0.5618857741355896, -0.23105552792549133, -1.0733962059020996, 0.06088424101471901, -0.2117765247821808, -0.8169887661933899, 1.5055197477340698, 0.7358942031860352, -1.686319351196289, -0.6602771282196045, -0.26053905487060547, -0.24965399503707886, -0.21618497371673584, 0.32104817032814026, -0.4407232999801636, 0.3986701965332031, -0.20483613014221191, 0.30731087923049927, 0.13471762835979462, 0.20215527713298798, 0.8432267904281616, -0.3030945062637329, -0.4194207787513733, -0.19940383732318878, 0.7357323169708252, 0.16373372077941895, 0.932863712310791, -0.41541188955307007, -1.8013993501663208, -0.7957578897476196, -0.4387066960334778, 1.0888571739196777, -0.35923871397972107, -0.060910023748874664, 0.9173436164855957, 1.213676929473877, -0.5355865955352783, 0.3123428225517273, 0.057373568415641785, 0.027718964964151382, -0.22736547887325287, 0.03233705088496208, 0.19572949409484863, 0.4956134557723999, -0.31621551513671875, -0.885918378829956, -0.2583056688308716, 0.10253926366567612, 1.6094715595245361, 0.9866796135902405, 0.9287859201431274, -0.11473755538463593, -0.2648599147796631, -0.33928990364074707, 0.06860632449388504, -0.4892740845680237, 0.05066894739866257, -0.9851511716842651, -0.9023679494857788, 0.2615848183631897, -0.839738130569458, -0.5993518829345703, 0.9736931324005127, 0.11960094422101974, 1.290328025817871, 1.1764025688171387, -0.5299575924873352, -0.6744155287742615, -1.1930632591247559, 0.17338961362838745, -0.9038328528404236, 0.891242504119873, 0.7820644378662109, -0.5080679655075073, 0.005185943096876144, -0.3261072039604187, -0.0778295025229454, 0.607589602470398, -0.23828905820846558, 0.12545445561408997, -1.3180601596832275, -0.22805453836917877, -0.23090046644210815, 1.3586673736572266, -0.145128071308136, 0.10178851336240768, -0.6666096448898315, 0.4152049720287323, 0.2646560072898865, 0.09769643843173981, -0.06310869008302689, 0.5415029525756836, -0.17711667716503143, 0.3507429361343384, -0.03042633645236492, 0.9750691652297974, 1.6646430492401123, -0.2507581412792206, 0.011357501149177551, -0.6197203993797302, 0.09168161451816559, -0.4631008505821228, 0.6262189149856567, 0.07875678688287735, 1.5079765319824219, 0.04744413122534752, 0.47296255826950073, 0.8384949564933777, -0.39088547229766846, -0.23604735732078552, -1.3028615713119507, 0.7018524408340454, 0.08407244086265564, 1.0250022411346436, 0.857512354850769, 0.6280348300933838, 0.919965386390686, -0.5563367605209351, -0.5429325103759766, 0.030737321823835373, 0.7727354764938354, -0.5209876298904419, -0.9664281606674194, -0.5817626714706421, -0.09486021101474762, -0.5747842788696289, -0.5348907113075256, -0.6079621315002441, 0.4294549226760864, -0.4188029170036316, -0.17144452035427094, 0.7980940341949463, -0.1585700809955597, 0.08636390417814255, 0.24120157957077026, 0.069236621260643, 0.2797550559043884, -0.15245111286640167, -0.5533029437065125, -0.26163244247436523, 0.07717747241258621, 0.019484352320432663, -0.80859375, -0.8882457613945007, 0.10972538590431213, -0.2778278589248657, 0.7172932028770447, -1.4092050790786743, -0.05880389362573624, -0.0924503281712532, 0.266842246055603, 0.3994174003601074, 0.08940064907073975, 0.5337808728218079, 0.2809797525405884, 0.25640344619750977, -0.31733548641204834, -0.15137995779514313, 1.0877766609191895, -0.1014244556427002, -0.4185674786567688, -0.478185772895813, -0.29540306329727173, 0.4683187007904053, -0.04922400787472725, -1.064853310585022, 0.32333624362945557, -0.4160933494567871, 0.04762484133243561, 0.08499032258987427, -0.2748970091342926, 1.753896951675415, -0.21159568428993225, 0.3003285527229309, 1.2435123920440674, -0.06786923110485077, -0.9516420364379883, 0.033699363470077515, -0.31986385583877563, -0.3954119086265564, -0.18817780911922455, 0.29346174001693726, 0.2387063205242157, 0.19107437133789062, 1.0306706428527832, 0.048674993216991425, 0.7577798962593079, 0.2375769317150116, -0.5280317068099976, -0.24256345629692078, 0.5710229873657227, 0.6035422086715698, 1.112365484237671, 1.0912785530090332, 0.05534662678837776, -1.1435558795928955, 1.3179187774658203, -0.1636870950460434, 0.9950270652770996, 0.8988133668899536, 0.5397327542304993, 1.8743064403533936, -1.6899757385253906, -0.5477938652038574, 0.4665508270263672, -0.04745018854737282, 0.41547492146492004, 0.4822109639644623, 0.8940441608428955, -1.0445971488952637, -0.16962051391601562, 0.6979880332946777, -0.17585116624832153, 1.0602302551269531, -1.2264518737792969, -0.681685209274292, 0.5352133512496948, -0.4274817109107971, 0.1447707563638687, -0.7188248634338379, -0.4844498336315155, 0.2841556966304779, -0.24460573494434357, 0.3766883611679077, 0.5579487085342407, 0.5313280820846558, 1.4236886501312256, -0.5564324855804443, -1.8200087547302246, 0.24367883801460266, -0.9112961292266846, 0.3921816945075989, 0.1385784149169922, -0.6245990991592407, -0.5543532371520996, -0.936341404914856, -0.43307483196258545, 0.17928341031074524, -0.6921727657318115, -0.12043624371290207, 0.2739863991737366, -1.803160548210144, -0.3036925196647644, -0.4446248412132263, 0.9060081243515015, 1.0245378017425537, -0.10261017084121704, 0.15347515046596527, 0.2683236002922058, -0.4996727705001831, 0.044534239917993546, -0.3944222629070282, -0.453407347202301, 0.17395955324172974, -0.8739523887634277, -1.3112473487854004, 1.198460578918457, 1.3838589191436768, 0.6859289407730103, 0.6257830858230591, 1.0954079627990723, 1.7621724605560303, -0.9875439405441284, -0.8574848175048828, 0.23890262842178345, -1.2473870515823364, 0.7237209677696228, 0.884301483631134, -0.47703003883361816, -0.4608606696128845, 0.0652243122458458, -2.34615421295166, 1.5311203002929688, -0.23118263483047485, -0.6791379451751709, 0.8331739902496338, 0.29339998960494995, 0.3577209413051605, 0.7555747032165527, -1.062574028968811, -0.4946194291114807, 0.32932043075561523, -0.2382548451423645, -1.3393430709838867, 0.12715408205986023, 0.6969781517982483, 0.3816107511520386, -0.18677639961242676, 0.7533884048461914, -0.3246512711048126, -0.35600754618644714, 0.3660813271999359, 0.8685903549194336, 0.3616480827331543, 0.41897720098495483, 0.6910508275032043, -1.6390092372894287, 0.10756506025791168, -0.9665040969848633, 0.4611508846282959, 0.4047558307647705, 0.9700474739074707, 0.4516892731189728, -0.5312753915786743, 0.2767939567565918, -0.33629781007766724, -0.27801215648651123, -0.5852259397506714, -0.6604623794555664, 1.248297929763794, 0.5225236415863037, -0.26330050826072693, 0.1963881254196167, -0.0974431186914444, -0.4956757426261902, -0.1765160858631134, 0.6835345029830933, 0.8355097770690918, -1.6101223230361938, -0.04139198735356331, 0.21413399279117584, 0.04498261585831642, 0.04212818667292595, 0.37688148021698, -0.18094095587730408, -0.9104511141777039, -1.2632946968078613, -0.47511065006256104, -0.2291174978017807, 0.9135290384292603, -1.0756624937057495, 0.05854722857475281, 0.09785787016153336, -1.5911662578582764, 0.9071666598320007, 0.1764041632413864, -1.4387246370315552, -0.6223253607749939, -1.345942735671997, 1.3033447265625, 0.15334388613700867, -0.678041398525238, 0.10454308241605759, 0.7761340141296387, -0.6646464467048645, -0.21194103360176086, -1.4852968454360962, 0.3325389623641968, 1.3061563968658447, 1.4266653060913086, -0.8625929355621338, 0.7221630215644836, 0.5505609512329102, -0.8708725571632385, -0.38409367203712463, 0.09402840584516525, -0.9700216054916382, 0.16439801454544067, 0.4127539098262787, 0.0002940148115158081, 0.8436190485954285, 1.4283369779586792, 0.608986496925354, 1.0012577772140503, -0.23486241698265076, 1.0727403163909912, -0.7470324039459229, -0.6315296292304993, -0.3358517289161682, 0.2534390091896057, -1.01334547996521, -0.5714022517204285, 0.5597259998321533, -0.47596514225006104, 0.21403133869171143, 0.8863956928253174, 1.011550784111023, -0.35147756338119507, 0.2097262293100357, -0.02310197800397873, 0.24344561994075775, -0.2720857560634613, 0.9712880849838257, 0.057004306465387344, -0.916378378868103, 0.3280201852321625, 0.4189695715904236, 0.49680137634277344, -0.7569389343261719, 0.44042065739631653, -0.26375114917755127, 0.7501507997512817, -0.22929587960243225, 0.3795287013053894, 0.4535359740257263, -0.5410014986991882, -0.9790940284729004, 0.9718509316444397, 1.2997626066207886, 0.0954919382929802, 0.16572122275829315, 0.6527629494667053, 0.2698563039302826, 0.6490429639816284, -0.3613772690296173, 0.1459839940071106, -0.7643768787384033, 0.7656019926071167, -0.19806718826293945, 0.21667781472206116, -0.8053263425827026, 0.9620238542556763, -0.13323846459388733, 0.20873305201530457, 0.955678403377533, -0.05957761034369469, -0.4986976385116577, 1.06765878200531, 0.870572566986084, -0.707257091999054, -0.04847431555390358, 0.3920741081237793, 0.9384361505508423, 0.08401723206043243, 0.29838305711746216, 0.34984272718429565, -0.6246862411499023, 0.24985331296920776, 0.23704053461551666, -0.6090519428253174, -0.029928058385849, -0.7799083590507507, -1.3316314220428467, -0.3538527190685272, -0.4044915437698364, -0.9206294417381287, 0.09231282770633698, -1.0612173080444336, -1.0125300884246826, -0.1554190069437027, -0.1065736934542656, 0.3126957416534424, -0.8828506469726562, 0.3094165027141571, 0.16145539283752441, 0.3677976727485657, 1.4165229797363281, -0.21929650008678436, 1.3050481081008911, 0.08877578377723694, 0.3745371699333191, -0.1291530579328537, 0.5614548921585083, -0.22029918432235718, -0.07717772573232651, -0.23713883757591248, -0.17153535783290863, -0.6595472693443298, -0.6497030258178711, -0.23779669404029846, 0.7158529162406921, 0.011653341352939606, 0.3756124973297119, -0.14724257588386536, -1.2154943943023682, -0.2925964593887329, 1.034848690032959, 0.8928430080413818, -0.7709683179855347, -0.39653193950653076, -0.05797835439443588, -0.08713552355766296, 0.1959216296672821, 1.0834019184112549, -0.465420126914978, 0.2913420498371124, 0.4256068468093872, -0.2267276495695114, -0.8614752888679504, -0.5339318513870239, 0.9001688957214355, -0.8878641128540039, 0.898873507976532, -1.1091172695159912, 0.08663966506719589, -0.23970553278923035, -0.5907410383224487, -0.07383587956428528, 0.45539039373397827, -0.3320719301700592, 0.48707836866378784, -0.47461336851119995, -0.8518455028533936, -0.4573342800140381, 0.3231770098209381, 0.22037914395332336, -0.3394518494606018, 0.17118215560913086, 0.2435121238231659, -0.8641175031661987, 0.2630324065685272, 0.2433210164308548, 0.3097161054611206, 0.7298387289047241, 2.482536792755127, 1.9640569686889648, -0.09721018373966217, -0.5712043046951294, -0.15711840987205505, 1.1275897026062012, -1.2058095932006836, -0.6734203696250916, -1.2192888259887695, -0.13362330198287964, -0.10074568539857864], [-0.313429057598114, 2.0619475841522217, -1.6438801288604736, -0.7020805478096008, 0.9924013614654541, 1.0293117761611938, 0.11340221762657166, 0.3546886444091797, -0.2271609604358673, -0.11466214805841446, -0.6334972977638245, 0.763297438621521, 0.3988954424858093, 1.584886908531189, 0.08699864149093628, 0.2654877305030823, 0.7969266176223755, -0.7910923957824707, 0.8219971060752869, 0.7335984706878662, -0.35230553150177, -1.3302156925201416, 0.0004182383418083191, 0.2867591977119446, 0.7169680595397949, 0.444790780544281, -1.5703094005584717, -0.8762032985687256, -1.2290198802947998, -0.7468985319137573, 1.433976173400879, -0.46115735173225403, -0.17791274189949036, 0.6043232679367065, -1.8482317924499512, -0.7761828303337097, 1.2582943439483643, 0.42930012941360474, 0.5004251599311829, 0.7685543894767761, 1.7011988162994385, 0.7497360706329346, -0.2295914739370346, -0.9723923206329346, 0.38718748092651367, 0.7245731949806213, 0.07043836265802383, -1.7259758710861206, 0.46378690004348755, -0.5161730051040649, 0.8098098635673523, 0.19819030165672302, 0.7427690029144287, 0.3948494791984558, 1.4728577136993408, -0.7673783302307129, 0.44834890961647034, -0.10337170958518982, 0.24875542521476746, -0.03026377409696579, 1.0269131660461426, 0.3450585603713989, -0.6925882697105408, 0.45037877559661865, 0.535233736038208, 0.21474245190620422, 0.11643505096435547, 0.0039047934114933014, -0.2686237394809723, 0.9003859758377075, 0.5196466445922852, -0.5640873908996582, -0.9074615240097046, 0.7808573842048645, -0.8722415566444397, -0.138832688331604, 0.3203877806663513, 0.08610162138938904, -0.06579214334487915, 1.5993677377700806, -0.8129985332489014, -0.25443628430366516, -0.17607206106185913, -0.07231799513101578, -0.10203565657138824, 0.4801342189311981, -0.21038207411766052, -0.3068665862083435, 0.03907935321331024, 1.7154685258865356, -0.11524076014757156, 0.21132412552833557, -0.08006192743778229, -0.09982872754335403, -0.5134068727493286, -0.9717502593994141, -0.2589816153049469, -0.649154543876648, -0.12074640393257141, -0.2786743640899658, -0.8896294832229614, -0.2519279718399048, 0.3424031138420105, 0.025627030059695244, 0.46479958295822144, 1.0327892303466797, 0.22110626101493835, -1.3665632009506226, -0.16419097781181335, -0.05446717143058777, 0.34655773639678955, 0.6088908910751343, -0.48844435811042786, -1.194032907485962, -0.548704206943512, 0.49066677689552307, 0.4469781219959259, -0.62669837474823, 0.2677454352378845, 0.6644852161407471, -0.5115829706192017, -0.6216199994087219, -0.6285271644592285, 0.6167638301849365, 0.5449770092964172, -0.13651326298713684, -1.1514332294464111, 0.0768975019454956, -0.2604959309101105, 0.22023235261440277, 0.3112662434577942, -0.3775036633014679, -0.6165748834609985, 0.5476080775260925, -0.7418261766433716, 1.3446924686431885, 0.23811638355255127, -0.9660003781318665, 0.5518860220909119, 0.31736379861831665, 0.4212457537651062, -0.12483858317136765, 0.14749303460121155, -0.6679316163063049, 0.2324124276638031, -0.9571316242218018, -0.0377245657145977, 0.3453245162963867, -1.2288734912872314, -0.024945437908172607, -1.323582649230957, 0.7349157333374023, -0.2951088547706604, 0.6596570014953613, -0.12812209129333496, 0.819026529788971, 0.6318169832229614, 0.438997745513916, 0.2745579481124878, 0.5159322023391724, 0.8932040929794312, 0.2768362760543823, -0.25683310627937317, 1.140678882598877, 0.49394339323043823, -0.031914204359054565, 0.37551724910736084, 0.03571205586194992, 0.10548325628042221, 0.9378992319107056, -0.41864752769470215, -0.07030664384365082, -0.20154862105846405, 0.26990625262260437, 0.1599990725517273, -1.0587983131408691, 0.77916419506073, -0.5437319278717041, -0.7867087125778198, -1.5922391414642334, 0.8253648281097412, -0.3432321548461914, 0.3906155526638031, 0.10852963477373123, 0.4784988760948181, -0.30099350214004517, -0.19464005529880524, 0.5724337100982666, -0.9451744556427002, -0.16530196368694305, -0.5642826557159424, -0.10303410142660141, -1.5715852975845337, -0.20552676916122437, -0.5599180459976196, -1.4197790622711182, 0.20138408243656158, 0.12473499774932861, -0.06040329486131668, 0.2741701304912567, 0.19332993030548096, -0.4047200679779053, -1.760482907295227, -0.49252092838287354, -0.5999636054039001, 0.39486029744148254, -0.47342848777770996, 0.5891891717910767, -1.4011414051055908, 0.09116717427968979, 1.6035170555114746, 0.3847833275794983, -0.9511250257492065, 0.6409792900085449, -0.34605929255485535, -1.5094094276428223, 0.7690709829330444, -0.5540684461593628, -0.4460715651512146, 0.3307359218597412, 0.5760705471038818, 0.15736600756645203, 0.46381306648254395, 0.22829541563987732, 0.7016818523406982, -0.04065420851111412, -0.8800804615020752, -1.0352323055267334, -1.0799944400787354, 0.09919091314077377, -0.27634960412979126, -1.438000202178955, 1.1498323678970337, 0.40608343482017517, -0.6431445479393005, 0.23677854239940643, 0.12480642646551132, -0.07012535631656647, 0.5170238018035889, 0.7932855486869812, 0.25746676325798035, 1.1437950134277344, -0.6629123091697693, -0.19166463613510132, -0.5740748643875122, -0.1687241643667221, 1.3095943927764893, -0.626023530960083, -0.026038847863674164, 1.2902748584747314, 0.3651964068412781, 0.3009333312511444, -0.17548388242721558, 0.07513699680566788, 0.240351140499115, -1.256782054901123, -0.5642254948616028, -0.2806832194328308, -0.5092381238937378, 1.0210685729980469, 0.8965719938278198, -1.6012256145477295, -0.5922568440437317, 0.21759697794914246, 0.3667614459991455, -0.6276648044586182, -0.08067440986633301, -0.3939770460128784, 0.8276404142379761, 0.18408408761024475, 0.08394016325473785, 0.8795009851455688, 0.17704874277114868, 0.5374059677124023, -0.26822394132614136, -0.3752323389053345, -0.4862416386604309, 1.103912115097046, 0.3720426857471466, 0.554722785949707, -0.6675158739089966, -0.4693284034729004, -0.7615646123886108, 0.27690738439559937, 0.982189953327179, -0.2872737646102905, -0.3475540280342102, 0.19588671624660492, 0.8278522491455078, -0.5920459032058716, -0.5142406225204468, -0.23906171321868896, -0.629593014717102, -0.34937840700149536, 0.2334793508052826, 0.17053714394569397, 0.3527071475982666, -0.1208585575222969, -0.3519797623157501, 0.32907596230506897, 0.40535157918930054, 1.215832233428955, 0.5010305047035217, 0.3922194540500641, -0.47790706157684326, -0.15090370178222656, -0.8599817752838135, 0.060088325291872025, -1.286198616027832, -0.12196668982505798, -0.9920327663421631, -0.8770294785499573, 0.5442737936973572, -0.7283804416656494, 0.41984885931015015, 0.6978136301040649, -0.1812288910150528, 1.033979058265686, 0.9554604291915894, -0.17498090863227844, -0.727864146232605, -0.8761160969734192, -1.1621384620666504, -0.650137722492218, 0.8515282869338989, 0.9930927753448486, -0.4996825158596039, 0.10010506957769394, -0.2796390652656555, -0.1655256599187851, 0.9182089567184448, -0.09863147139549255, 0.1994606852531433, -0.7677664756774902, -1.0434308052062988, -0.04360578581690788, 1.1389018297195435, 0.6641258001327515, -0.010016925632953644, -1.1576411724090576, 1.060009479522705, 0.5800502300262451, -0.1491919457912445, -0.13002648949623108, 0.8023161888122559, 0.12705853581428528, 0.22595176100730896, 0.23465847969055176, 0.7932525873184204, 0.8907331228256226, -0.667507529258728, -0.009041259996592999, -0.02803116664290428, 0.07473795115947723, -0.17210644483566284, 0.35979437828063965, -0.14214590191841125, 1.0556683540344238, 0.4784977436065674, 0.09245369583368301, 1.26925528049469, -0.8048478364944458, -0.2486896812915802, -1.5957276821136475, 0.7431744337081909, 0.37947964668273926, 0.8539391756057739, 0.9540431499481201, 0.1686255931854248, 0.40413767099380493, -0.7264479398727417, -0.4094638228416443, 0.1654389202594757, 0.7075956463813782, 0.2126031219959259, -1.4456157684326172, -0.5363039970397949, -0.643963098526001, -0.4537569284439087, -0.7589924335479736, -0.9496037364006042, -0.29528725147247314, -0.9774665832519531, -0.5331805348396301, 1.452692985534668, 0.021962206810712814, -0.10679471492767334, -0.49233970046043396, 0.7112727165222168, 0.3870534598827362, -0.6338708400726318, 0.21578188240528107, 0.22694900631904602, 0.11151576042175293, 0.17192068696022034, -0.5983383655548096, -0.925180971622467, -0.15236854553222656, -0.636616051197052, 1.2833914756774902, -1.681765079498291, -0.011369969695806503, 0.23059381544589996, 0.7048095464706421, 0.09878204762935638, -0.11606910079717636, 0.7360090017318726, 0.28666892647743225, 0.28390389680862427, -0.1042487695813179, -0.4093056321144104, 1.0838768482208252, 0.2798556685447693, -0.7461439967155457, -0.4591221809387207, -0.6955571174621582, -0.028639689087867737, -0.22410047054290771, -0.13966482877731323, 0.32218021154403687, -0.5494301319122314, 0.036981597542762756, 0.276885449886322, 0.3017841875553131, 1.1082016229629517, -0.36466529965400696, -0.02397506684064865, 0.5566259622573853, -0.26704221963882446, -0.5673829913139343, 0.7032003402709961, -0.15692582726478577, -0.5600675940513611, 0.14738476276397705, 0.6927540302276611, 0.5755297541618347, -0.12945297360420227, 0.010762542486190796, 0.3836057782173157, 0.8744164705276489, 0.3225066363811493, -0.5221636891365051, 0.22656293213367462, 0.8307232856750488, 0.5911942720413208, 0.8845669627189636, 0.5770654678344727, 0.1548423022031784, -1.385199785232544, 1.6552064418792725, -0.5803042054176331, 0.37258821725845337, 0.7468138933181763, 0.5638844966888428, 1.673830270767212, -1.6736595630645752, -0.3442743122577667, 0.07007266581058502, -0.010070476680994034, -0.3221794068813324, 0.2587890028953552, 0.3765805959701538, -0.9039292931556702, 0.17760702967643738, 0.4440588355064392, 0.5003173351287842, 0.757596492767334, -0.6707533597946167, 0.5908069610595703, 0.2900041341781616, -0.5425963401794434, 0.4374939203262329, -0.6290026307106018, 0.08109559118747711, 0.41135692596435547, 0.1383519321680069, -0.2694642245769501, 0.23379699885845184, 0.07084396481513977, 1.2662594318389893, -1.0592410564422607, -1.1999900341033936, 0.7179624438285828, -1.0825324058532715, 0.13200466334819794, -0.3315347731113434, -0.37226402759552, -0.4557255506515503, -0.6043640971183777, -0.3180258870124817, 0.7279444932937622, -0.318456768989563, 0.1803857684135437, -0.21792754530906677, -1.4971894025802612, 0.028972625732421875, -0.702386200428009, 0.5991611480712891, 1.0107287168502808, 0.6901758909225464, -0.06252192705869675, -0.5286067724227905, -0.5590239763259888, 0.28051507472991943, 0.10791224241256714, -0.09424726665019989, -0.32124781608581543, -1.2204363346099854, -1.8089786767959595, 0.7505747675895691, 1.0609142780303955, 0.8297665119171143, 0.6565217971801758, 1.1294116973876953, 1.2263269424438477, -0.3080695867538452, -0.5219084024429321, 0.4225005507469177, -0.815601110458374, -0.25659894943237305, 1.3419207334518433, -0.9383042454719543, -0.27587631344795227, -0.5316579341888428, -1.8968992233276367, 1.8928730487823486, 0.9985679388046265, -1.017707347869873, 1.1214756965637207, 0.4344625771045685, 0.21104875206947327, 0.6676836013793945, -0.8332676887512207, -0.13689859211444855, 0.15263032913208008, -0.4668514132499695, -1.1421728134155273, 0.22615155577659607, 0.6578074097633362, 0.20906534790992737, -0.11747682839632034, 0.8108766078948975, 0.01476137526333332, -0.4817166030406952, 0.2721540629863739, 0.6252723336219788, 0.6970513463020325, 0.5473470687866211, 0.5834879279136658, -1.558304786682129, 0.08828972280025482, -0.03867319971323013, -0.4794504642486572, 0.3859242796897888, 1.1612831354141235, 1.1270573139190674, 0.23040947318077087, 0.1925143599510193, -0.596123218536377, -0.6733921766281128, -0.9953253865242004, -1.0852872133255005, 0.8580402135848999, 0.2684706151485443, -1.0192177295684814, 0.4013711214065552, -0.30459877848625183, -0.7177866697311401, -0.2347734272480011, 0.4343249201774597, 0.8731064796447754, -1.2779569625854492, -0.5347885489463806, -0.25301942229270935, -0.5146830081939697, -0.24772506952285767, -0.011965692043304443, 0.6133013963699341, -0.9263218641281128, -1.3949227333068848, -0.9753000140190125, -0.4398413300514221, 0.7980135679244995, -0.5835484266281128, -0.09717147797346115, -0.16252978146076202, -1.3633842468261719, 0.809964656829834, -0.12824417650699615, -1.509840726852417, -0.272632360458374, -1.402662754058838, 0.46869173645973206, -0.08736086636781693, -0.004432894289493561, -0.429198294878006, 0.5293612480163574, -0.4895390570163727, -0.837984025478363, -1.3759382963180542, -0.21279305219650269, 0.5316997766494751, 0.7300763130187988, -0.7520811557769775, 1.091896891593933, -0.22644370794296265, -0.8572598695755005, 0.49901217222213745, 0.6184987425804138, -0.1544286012649536, 0.515988290309906, 0.44951215386390686, 0.3957074284553528, 0.421561598777771, 1.181994915008545, 0.9294760823249817, 1.0369867086410522, -0.01204635575413704, 0.2596770226955414, 0.2803198993206024, -0.29691505432128906, -0.2909027338027954, 0.28360608220100403, -1.303228497505188, -0.2491745948791504, -0.10502570867538452, 0.084719717502594, 0.07200935482978821, 0.6491044163703918, 0.39169323444366455, -1.8903138637542725, 0.3533051311969757, 0.06215329468250275, 0.3949897885322571, -0.08219338953495026, 0.4281858503818512, 0.2872985303401947, -0.360710084438324, 0.5650988221168518, 0.13209684193134308, -0.028785325586795807, -0.734120786190033, -0.14375907182693481, -0.10576552152633667, 0.12909147143363953, 0.4279865026473999, 0.3777327537536621, 1.0961942672729492, -0.25302883982658386, -0.25495201349258423, 1.032170295715332, 0.6722867488861084, 0.14483121037483215, -0.5926603078842163, 0.7261401414871216, 0.24816225469112396, 0.23666182160377502, 0.05496593564748764, 1.0002574920654297, -0.7936339378356934, 1.0283845663070679, -0.8869547843933105, 0.1859009563922882, -0.5967741012573242, 0.32147759199142456, -0.48027798533439636, 0.52275550365448, 1.0633745193481445, -0.17060725390911102, -0.35685330629348755, 1.0198109149932861, 0.6433915495872498, -0.3657606840133667, 0.5080462694168091, 0.7264179587364197, 0.42934033274650574, 0.12234579026699066, 0.13789813220500946, 0.12601037323474884, -0.4687989354133606, -0.1792377233505249, 0.11532779037952423, -0.010756321251392365, -0.6382907629013062, -0.7840422987937927, -0.8382916450500488, 0.39448267221450806, -0.5982035398483276, -0.1088045984506607, 0.2698861360549927, -0.852375328540802, -1.2811181545257568, 0.25272825360298157, -0.20146988332271576, -0.06206858903169632, -0.17157232761383057, -0.0835321843624115, -0.10214215517044067, -0.01882162317633629, 0.7337626218795776, -0.33166491985321045, 1.386457920074463, 0.0630614161491394, 0.27447739243507385, -0.40492764115333557, 0.7005345821380615, 0.8054403066635132, 0.5998573899269104, 0.2542964220046997, -0.3479350209236145, 0.14223894476890564, -1.0068504810333252, -0.1930769681930542, 0.42818862199783325, -0.14006537199020386, -0.05525791272521019, 0.2681553065776825, -0.6593310236930847, 0.1619120091199875, 0.330857515335083, 0.8617736101150513, -0.7726308703422546, -0.7550184726715088, -0.7207086086273193, 0.2498907744884491, -0.17368373274803162, 0.5578446388244629, -0.4891221523284912, 0.46012014150619507, -0.20638057589530945, -0.31131020188331604, -0.35403597354888916, 0.0031201988458633423, 0.2566264569759369, -0.29603782296180725, 1.1444101333618164, -1.0284037590026855, -0.29101285338401794, -0.26152968406677246, -0.8239071369171143, 0.5018787980079651, 0.19862444698810577, 0.3197501301765442, -0.043917857110500336, -0.8575491905212402, -0.7316417694091797, -0.834903359413147, 0.3695659637451172, 0.22387152910232544, -0.0474943146109581, 0.707089900970459, -0.1421802043914795, -0.8797369003295898, 0.48538869619369507, -0.061235442757606506, 0.3399786353111267, 0.15645091235637665, 1.5426479578018188, 0.9384953379631042, -0.31807470321655273, 0.004670382011681795, -0.7740336656570435, 0.7205505967140198, -0.8719479441642761, -1.1713168621063232, -1.1163748502731323, -0.23914404213428497, 0.041632138192653656], [0.06302879005670547, 1.5810799598693848, -2.547773599624634, -0.7048175930976868, 1.1163562536239624, 1.0564939975738525, 0.359237402677536, 0.6258398294448853, 0.2540900707244873, 0.17656663060188293, -0.7268428802490234, 0.6663694381713867, 1.548815131187439, 1.446771264076233, 0.08166040480136871, -0.4435623288154602, 0.493017315864563, -0.5620646476745605, 0.4379574954509735, -0.10182593017816544, 0.04453739523887634, -1.0852458477020264, -0.3660244345664978, 0.3011578917503357, 0.5347166657447815, 0.22218865156173706, -2.5698673725128174, -0.2976894676685333, -0.7821974754333496, -0.7226089835166931, 1.0336635112762451, -0.32542234659194946, 0.12113162130117416, 0.29169073700904846, -1.7568509578704834, -0.17026479542255402, 0.38759705424308777, 0.5432901382446289, 0.9338351488113403, 0.5379208326339722, 0.6598924994468689, 0.7121576070785522, 0.011874510906636715, -0.42002686858177185, 0.671343207359314, 0.8334624767303467, 0.4102237820625305, -1.327160358428955, 0.637908399105072, -0.7478224039077759, 1.2157623767852783, 0.6801097393035889, 0.11242446303367615, 0.8085043430328369, 1.212679147720337, -0.8499155640602112, 0.3524325489997864, -0.09861806035041809, 0.90219646692276, -0.34040597081184387, 1.175361156463623, 0.2033247947692871, 0.00717303529381752, 0.5089775919914246, 0.6139856576919556, 0.2610776424407959, 0.3349723219871521, 0.4019765555858612, -0.44445890188217163, -0.04915976524353027, 0.1553785502910614, -0.10684004426002502, -0.3012000620365143, 1.2355329990386963, -0.07823862880468369, -0.06798171252012253, 0.16882450878620148, 0.13770760595798492, -0.21108105778694153, 1.0288540124893188, 0.2114519476890564, -0.452384889125824, 0.6511659622192383, -0.17966651916503906, 0.07061414420604706, -0.11766655743122101, -0.7467617988586426, -0.4395231008529663, -0.01800733059644699, 1.7864068746566772, -0.6531015634536743, 0.31341803073883057, 0.3449150621891022, 0.13852578401565552, -0.3043944835662842, -0.7490850687026978, -0.3434036672115326, -0.7015185356140137, -0.8124659061431885, -0.4123782515525818, -0.511814534664154, 0.12088200449943542, 0.137766033411026, -0.052626267075538635, 0.782138466835022, 1.1227877140045166, -0.007493080571293831, -0.9439713954925537, -0.2938861846923828, 0.18577364087104797, 0.43735557794570923, 1.0535351037979126, -0.7110739946365356, -1.1639280319213867, -1.0101908445358276, 0.4567599892616272, -0.18439872562885284, -0.41539978981018066, 1.001447319984436, 0.44626644253730774, -0.8815231323242188, -0.7965334057807922, -1.305553674697876, 0.2298884093761444, 0.731744647026062, 0.3048320412635803, -0.6812575459480286, 0.5075215101242065, -0.5973641872406006, 0.23320476710796356, 0.35839465260505676, -0.022753460332751274, -0.447261780500412, 1.0614013671875, -0.6171931624412537, 1.601369857788086, -0.5917543172836304, -1.3519929647445679, 0.03914322704076767, 0.6877294778823853, 0.36366403102874756, -0.5267021059989929, -0.003347824327647686, -0.9389835000038147, -0.5102895498275757, -0.666688859462738, 0.5117982029914856, -0.36421459913253784, -1.2653319835662842, -0.21233907341957092, -0.6419076919555664, 0.7780073285102844, -0.3880997598171234, 1.2622181177139282, -0.15935415029525757, 0.521913468837738, 0.2112390547990799, 0.5349973440170288, 0.4907747507095337, 0.49705982208251953, 1.0866038799285889, -0.4521218538284302, -0.08501331508159637, 0.7493242025375366, 0.3172975480556488, -0.009500803425908089, 0.5701684951782227, 0.23371635377407074, 0.14448343217372894, 0.9023072719573975, -0.21541020274162292, -0.09259013831615448, -0.2764430344104767, 0.08312316983938217, -0.31071823835372925, -1.3331583738327026, 0.4273020625114441, -1.4711540937423706, -0.21891522407531738, -1.373927354812622, 0.7129738926887512, -0.4075831472873688, 0.04644783213734627, -0.5566048622131348, 0.47404909133911133, -0.6159344911575317, -0.26750361919403076, 0.15685728192329407, -0.7657198905944824, -0.8328298926353455, -1.1320164203643799, -0.6624776721000671, -0.8711118698120117, -0.6002619862556458, -0.2638748288154602, -1.2439978122711182, 0.45646941661834717, -0.23098957538604736, -0.23338600993156433, 0.4419724643230438, -0.3170848786830902, 0.10367451608181, -1.3174070119857788, -0.3515053391456604, -0.7468811273574829, 0.4762895703315735, 0.3324304223060608, 0.46200039982795715, -1.7550363540649414, -0.11322969198226929, 0.8817402720451355, 0.4516890048980713, -0.8543530702590942, 0.02384381741285324, -0.2985606789588928, -0.10010071098804474, 0.5152983665466309, -0.6550663709640503, -0.09242168068885803, -0.09025523066520691, 0.8155725002288818, 0.5890768766403198, 0.851283073425293, -0.35663557052612305, 0.6960186958312988, 0.3584235608577728, -1.0616024732589722, -0.5794562697410583, -1.4147310256958008, 0.44218093156814575, -0.8267055749893188, -0.8331559300422668, 0.9681790471076965, 0.45244336128234863, -0.002029683440923691, 1.0700082778930664, -0.01129862666130066, 0.18290889263153076, 0.9866378307342529, 0.8504412174224854, -0.0633263885974884, 1.0839686393737793, -1.507347583770752, 0.02032112516462803, -0.5352520942687988, -0.16576631367206573, 0.11477211117744446, -0.4529673457145691, 0.15924113988876343, 0.9542561769485474, 0.19840466976165771, 0.10443119704723358, 0.19909332692623138, -0.1863202005624771, 0.40181609988212585, -0.40663430094718933, -0.09292787313461304, 0.011683665215969086, -0.3567757308483124, 1.6185023784637451, 0.71397864818573, -1.4393062591552734, 0.3064887523651123, 0.3876507878303528, 0.81828773021698, -0.25564032793045044, -0.03730739280581474, -0.9030172824859619, 0.14458486437797546, -0.23646026849746704, -0.02498778887093067, 0.8146805167198181, 0.3486816883087158, 0.4989777207374573, 0.005855991505086422, -0.17432114481925964, -0.5821582078933716, 0.4390276372432709, -0.20182457566261292, 5.08967787027359e-05, -0.6812414526939392, -0.364929735660553, -1.0808241367340088, 0.6427150964736938, 0.7550023794174194, -0.6706652045249939, 0.06209617853164673, 1.5277113914489746, 0.4745085537433624, -0.5126086473464966, -0.44247204065322876, -0.019787343218922615, -0.433377742767334, -0.14235499501228333, -0.08624359965324402, 0.399229496717453, 0.8182481527328491, -0.24276426434516907, -0.46536582708358765, -0.15008431673049927, 0.5458735823631287, 0.7473909854888916, 0.6367937922477722, 0.9870069026947021, 0.009176941588521004, -0.10744915902614594, -0.1212521344423294, -0.11576521396636963, -1.2359155416488647, -0.23148106038570404, -1.2721562385559082, -1.079455852508545, 0.27781835198402405, -0.787779688835144, 0.1382071077823639, 0.10504736751317978, 0.1500447392463684, 0.7859814167022705, 1.4073669910430908, 0.10267491638660431, -0.4552253782749176, -1.2905938625335693, -1.0811370611190796, -1.1536180973052979, 1.0686242580413818, 0.9212915897369385, -0.6895719170570374, 0.3287242650985718, -0.5794717073440552, -0.9361544847488403, 0.45934271812438965, -0.3181362748146057, -0.32613980770111084, -1.4182831048965454, -0.9066661596298218, -0.21719461679458618, 0.934666097164154, 0.6743501424789429, -0.7811659574508667, -1.0710091590881348, 0.4516238868236542, 0.8992621302604675, 0.7404224872589111, -0.15968023240566254, 0.9426803588867188, -0.10177198797464371, 0.43817758560180664, 0.23349271714687347, 0.5168454647064209, 0.7111779451370239, -0.6407278180122375, 0.27151361107826233, -0.33062663674354553, -0.13783128559589386, -0.4663196802139282, -0.09731393307447433, 0.005985185503959656, 0.9731634855270386, 0.6743013858795166, 0.14883364737033844, 1.2765352725982666, -0.7362081408500671, -0.2737559378147125, -2.302825689315796, 1.260906457901001, 0.07261191308498383, 0.8802507519721985, 0.8729168176651001, 0.582073450088501, 0.2745867669582367, -0.6623633503913879, -0.47850775718688965, 0.6945138573646545, 0.741890549659729, 0.21366557478904724, -0.7855345606803894, -0.9319814443588257, 0.020646363496780396, -0.1700098216533661, -0.8420947790145874, -0.868812620639801, 0.45164957642555237, -0.5634374618530273, -0.6084246635437012, 0.9150412082672119, 0.05136552453041077, -0.18058231472969055, -1.0001002550125122, 0.16193684935569763, 0.33647188544273376, -0.6063869595527649, 0.7439746856689453, -0.2903686761856079, -0.04342949390411377, 0.19433334469795227, -0.6158973574638367, -1.2854382991790771, -0.1260145902633667, -0.20723818242549896, 0.3519536852836609, -1.2257461547851562, 0.17559359967708588, 0.2823764383792877, 0.44871097803115845, -0.267255961894989, 0.21528327465057373, 0.26590585708618164, 0.5370950698852539, 0.3098846673965454, 0.3295948803424835, -0.28377893567085266, 0.5912872552871704, 0.3012089133262634, -0.7696020603179932, -0.20276561379432678, 0.1218704879283905, 0.8119768500328064, 0.4011841416358948, -0.6888513565063477, 0.04985317587852478, -0.5558261275291443, -0.32590436935424805, 0.14898191392421722, 0.3703421354293823, 1.4361815452575684, 0.23957666754722595, -0.3720105290412903, 1.098351001739502, -0.5741312503814697, -0.22132794559001923, 1.0011844635009766, -0.26249220967292786, -1.0037797689437866, -0.01880125142633915, 0.4430689811706543, 0.8527801036834717, 0.49495941400527954, 0.46674928069114685, 0.32665807008743286, 0.7444477081298828, 0.824386477470398, -0.5950815677642822, 0.05878797173500061, 0.5412498712539673, 0.5795071125030518, 0.6066585779190063, 0.8801976442337036, 0.513961672782898, -0.9405758380889893, 1.1879446506500244, -0.7920940518379211, 0.2986418306827545, 0.6477335691452026, 0.6910160779953003, 1.496293544769287, -1.2079907655715942, -0.5785872936248779, 0.5016639232635498, -0.0896160900592804, 0.44674474000930786, 0.12364131957292557, 0.9765061736106873, -1.1848845481872559, 0.8248332738876343, 0.5339822769165039, 0.42259782552719116, 0.44734612107276917, -1.0116448402404785, 0.21198566257953644, 0.3218647241592407, -0.40707170963287354, 0.4996899366378784, -0.8164947032928467, -0.31524860858917236, 0.5657600164413452, -0.057925812900066376, -0.4757556617259979, 0.0452752448618412, 0.43852150440216064, 1.26719069480896, -0.3748650550842285, -1.1620736122131348, 0.6261917352676392, -1.4362094402313232, 0.30854618549346924, -0.03550161421298981, -0.47997623682022095, 0.06103849783539772, -0.9599719643592834, -0.15668709576129913, 0.48557713627815247, -0.7225922346115112, 0.06791618466377258, -0.7132881283760071, -1.0740017890930176, -0.6473822593688965, -0.43452155590057373, 0.6628670692443848, 0.6700294017791748, 0.4565924406051636, -0.6052903532981873, -0.4218268394470215, -0.05550821125507355, 0.11221477389335632, 0.19724813103675842, 0.30921441316604614, -0.4821644425392151, -0.9392597079277039, -1.3050793409347534, 1.4835612773895264, 1.1056787967681885, 0.5723803043365479, 0.2073407769203186, 1.164896845817566, 1.1664413213729858, -0.18621881306171417, -0.6782375574111938, 0.4097698926925659, -0.8900096416473389, 0.6630274057388306, 1.0373890399932861, -0.48097193241119385, -0.23466208577156067, 0.4730511009693146, -2.150038242340088, 1.5363218784332275, 0.36047542095184326, -1.5600931644439697, 0.8584118485450745, 0.3286333680152893, 0.07651454210281372, 0.6989399194717407, -1.3990545272827148, -0.22559364140033722, 0.7989208102226257, -0.13031119108200073, -0.7544790506362915, -0.24902763962745667, 1.0545610189437866, 0.47329097986221313, -0.3836734890937805, 0.8572639226913452, 0.06032521650195122, -0.44362956285476685, 0.09016211330890656, 0.7822492718696594, 0.07689519226551056, 0.9479021430015564, 0.6574292778968811, -0.9287703037261963, 0.3383757472038269, -0.11984643340110779, 0.00816955417394638, 0.36872410774230957, 0.7726628184318542, 0.46212637424468994, -0.5851451754570007, -0.2814754843711853, -0.5562542080879211, -0.21849845349788666, -0.8080810308456421, -0.3259902000427246, 1.2343233823776245, -0.25878965854644775, -0.5133697986602783, 0.6265444159507751, 0.12159906327724457, -0.001678120344877243, 0.1755305826663971, 0.36761680245399475, 0.859397292137146, -1.5586872100830078, -0.35705268383026123, -0.30860912799835205, 0.1695401668548584, -0.2567705810070038, -0.22674429416656494, 0.35300230979919434, -0.7757667303085327, -1.575768232345581, 0.3900138735771179, -0.871370792388916, 0.9005365371704102, -0.2605944871902466, 0.20284751057624817, -0.06866919994354248, -1.5323426723480225, 0.6888552308082581, 0.7134236693382263, -1.414198398590088, -0.8554553389549255, -0.8932640552520752, 0.30759286880493164, -0.022845640778541565, -0.2533841133117676, -0.4321663975715637, 0.16599583625793457, -1.149169921875, -0.7132250070571899, -1.3229202032089233, -0.33837008476257324, 0.18456634879112244, 0.7518039345741272, -0.42671269178390503, 0.5144045352935791, 0.03980163484811783, -0.18178755044937134, -0.5414225459098816, 0.5828409194946289, -0.7394506931304932, 0.3123416304588318, 0.14987018704414368, -0.47461843490600586, 0.5079659223556519, 1.047713041305542, 0.3628331124782562, 0.6717711091041565, -0.7831061482429504, 0.19389724731445312, -0.025724487379193306, -0.8749932646751404, -0.658079981803894, 0.5324987769126892, -0.4762488305568695, -0.1679391711950302, -0.001140981912612915, 0.04486094415187836, -0.2407718300819397, 0.903549313545227, 1.0478583574295044, -1.4600634574890137, 0.26977550983428955, -0.18842488527297974, 0.25412309169769287, -0.2273596227169037, 0.18331721425056458, 0.0644114762544632, -0.16011172533035278, 0.2343219667673111, 0.18660569190979004, 0.8190714120864868, -1.0154050588607788, -0.1977081298828125, 0.13308711349964142, 0.3989543914794922, 0.06776848435401917, 0.4706440567970276, 1.435046672821045, -0.7339081764221191, -0.5891865491867065, 0.6806967258453369, 0.9517955183982849, 0.35734397172927856, -0.5516032576560974, 0.4183422327041626, 0.39191335439682007, 0.7442346811294556, 0.08360455185174942, 0.5610050559043884, -0.8649266958236694, 0.9572173357009888, -0.9010740518569946, -0.158109650015831, -0.42549073696136475, 0.34513047337532043, -0.28262391686439514, 0.4530034363269806, 0.3386796712875366, -0.12255583703517914, -0.37373995780944824, 1.143442988395691, 0.702704906463623, -0.1395391821861267, -0.07567087560892105, 0.6595091223716736, 0.05748186632990837, 0.8998024463653564, 0.43765997886657715, 0.008578373119235039, -0.3618090748786926, -0.2962607741355896, 0.10082866996526718, 0.2562970519065857, -0.47902777791023254, -0.584006667137146, -1.3431510925292969, -0.10814900696277618, -0.20824936032295227, -0.6578636765480042, 0.24034243822097778, -0.9247465133666992, -0.9264723062515259, 0.20105397701263428, -0.035469312220811844, -0.10253267735242844, -0.16308486461639404, 0.3557068705558777, 0.12091890722513199, 0.43501055240631104, 0.20880937576293945, -0.23237091302871704, 1.2104952335357666, 0.30589625239372253, -0.49221616983413696, -0.1954576075077057, 0.03615403175354004, 0.18167772889137268, 0.32086825370788574, -0.05804973095655441, 0.2700658142566681, 0.21186670660972595, 0.2061818242073059, -0.33163926005363464, 0.6391308307647705, 0.05055858939886093, -0.17421407997608185, -0.625733494758606, -0.8892472982406616, 0.008384395390748978, 0.5917995572090149, 0.8037667274475098, -0.5913910269737244, -0.9411656856536865, -0.5449045300483704, 0.16530466079711914, 0.23972660303115845, 1.2600641250610352, -0.507389485836029, 0.2727205455303192, -0.38543039560317993, 0.2858184576034546, -0.5173723697662354, 0.16512078046798706, 0.051310066133737564, -0.18426401913166046, 0.2824632525444031, -0.7839125394821167, -0.48861193656921387, -0.838156521320343, -0.9911485910415649, 0.20848296582698822, -0.16835139691829681, 0.3104920983314514, -0.4044339656829834, -0.4714093804359436, -1.0106195211410522, -0.6450720429420471, 0.7799140214920044, -0.1369640827178955, -0.3270638585090637, 0.523415207862854, 0.35640960931777954, -0.8498945236206055, 0.13459068536758423, -0.20387251675128937, 0.43150976300239563, 0.42010924220085144, 1.657048225402832, 1.712585210800171, -0.19532158970832825, -0.022076793015003204, -0.8095827102661133, 1.0051747560501099, -0.8830467462539673, -0.7059680223464966, -1.2671778202056885, 0.46216750144958496, 0.1171828880906105], [-0.2118513435125351, 2.0680460929870605, -1.7021390199661255, -0.8382608294487, 1.7435146570205688, 1.1994094848632812, 0.2521226704120636, 0.42655518651008606, -0.6388777494430542, -0.6179918646812439, -0.38494452834129333, 0.6501147150993347, 0.9615117311477661, 1.1151294708251953, 0.3737183213233948, -0.2577970027923584, 0.11831825226545334, -0.6464157104492188, 0.507420539855957, 0.653830885887146, 0.5543884038925171, 0.1300828605890274, 0.16402144730091095, -0.07373849302530289, 0.4553529620170593, 0.27478986978530884, -0.4463006854057312, 0.5030621290206909, -1.1013621091842651, -1.3111062049865723, 1.9028726816177368, -0.5848326683044434, 0.15575653314590454, -0.2054138332605362, -1.9375978708267212, -0.9725972414016724, 1.148333191871643, 0.8587434887886047, 0.08873487263917923, 0.11313517391681671, 0.8391277194023132, 0.41834965348243713, -0.491833359003067, -0.7242456078529358, 0.4339745342731476, -0.12599574029445648, 0.48483768105506897, -0.6169514656066895, -0.37609660625457764, -1.2795090675354004, 1.4540680646896362, -0.39848950505256653, 0.017224639654159546, 0.7792693972587585, 1.1691439151763916, 0.5087411403656006, 0.03748137876391411, -0.14332199096679688, 0.40861982107162476, -1.0670002698898315, 1.1454704999923706, 0.5336169600486755, -0.5213032364845276, 0.5490328669548035, 0.1757785677909851, -0.27297040820121765, 0.05559802055358887, -0.2610231339931488, 0.1515413075685501, -0.10455586761236191, 0.1335379183292389, 0.21918347477912903, -0.5235973596572876, 0.2410401850938797, -1.1857566833496094, -0.04378237947821617, 0.02465708926320076, 0.18097738921642303, -0.7090682983398438, 0.7395025491714478, -0.7373133301734924, -0.19861820340156555, 0.19552938640117645, -0.3580697476863861, 0.6552590131759644, 0.23690728843212128, -0.28386497497558594, -0.7545888423919678, 0.0498698391020298, 2.411123514175415, 0.1856141984462738, 0.14118735492229462, -0.07488250732421875, -0.6203669309616089, -0.10036133229732513, -1.0222365856170654, -0.5424028038978577, -0.7589797377586365, -0.3932601511478424, -1.0891433954238892, -1.4142584800720215, 0.08991611748933792, 0.7863413691520691, -0.22416910529136658, 0.8908411264419556, 0.8498305082321167, 0.15594351291656494, -0.3994460105895996, -0.5037019848823547, 0.19237658381462097, 0.06676863133907318, 0.7678884267807007, -0.9133869409561157, -0.8831757307052612, -0.8691731691360474, 0.15265962481498718, 0.5391619205474854, 0.031028110533952713, 0.209790900349617, 1.1524463891983032, -0.48593297600746155, -0.38457155227661133, -0.5538997650146484, 0.4381197690963745, 0.6234897971153259, 0.670525312423706, -1.0729109048843384, 0.06301335245370865, 0.3201353847980499, -0.3022184371948242, 0.37505120038986206, 0.09136155247688293, -0.3130898177623749, 0.9138597249984741, -1.0539159774780273, 1.2605764865875244, -0.3447383940219879, -0.9098793268203735, 0.7557529807090759, 0.002100839279592037, 0.361851304769516, -0.30182817578315735, -0.5354793667793274, -0.7150490283966064, 0.5322490334510803, -0.33742061257362366, 0.5214059948921204, 1.0599478483200073, -1.8352779150009155, 0.06703456491231918, -0.9402547478675842, 0.9163352847099304, 0.3702860474586487, 1.0228650569915771, 0.10839425772428513, 0.6464369893074036, 0.9780833125114441, 0.4805772006511688, -0.21465212106704712, 0.2184600830078125, 0.9288608431816101, 0.5214574933052063, -0.8744704723358154, 0.9159281253814697, -0.08262258768081665, 0.023761652410030365, 0.7915089726448059, -0.16169373691082, 0.2637697458267212, 1.080138087272644, -1.478305459022522, 0.542121946811676, -0.13539990782737732, 0.8156105875968933, 0.09951591491699219, 0.6216220259666443, 0.9162583947181702, -0.5214024186134338, -2.0240514278411865, -1.4543688297271729, 0.47235217690467834, -0.39188796281814575, 0.1393987238407135, 0.056534938514232635, 0.44711342453956604, -0.19746103882789612, -1.010924220085144, -0.15740840137004852, 0.00462582241743803, -0.8107880353927612, -1.3764876127243042, -0.073441281914711, -0.9642078876495361, -0.21495060622692108, 0.03291863203048706, -0.6539128422737122, 0.7686943411827087, -0.6828243732452393, 0.4433503746986389, -0.31047946214675903, -0.6741397380828857, 0.2227775603532791, -2.072627067565918, -0.33982986211776733, -0.6089632511138916, 0.4429812431335449, -0.5777727961540222, 0.4728151559829712, -0.9672764539718628, -0.1033489778637886, 1.1087828874588013, 0.22053535282611847, -0.25405746698379517, 0.3249707520008087, -0.3560807704925537, -1.0237631797790527, 0.455282598733902, -0.3100524842739105, -0.15915048122406006, -0.04677286744117737, 0.34199970960617065, 0.7053751945495605, 0.11106717586517334, 0.30263692140579224, 0.7233468890190125, -0.38472843170166016, -0.8393189311027527, -0.8202004432678223, -0.9068500399589539, 0.21619203686714172, -0.12829333543777466, -1.3398903608322144, 0.8468379974365234, 0.4037454426288605, -0.2908327579498291, 0.7015367746353149, 0.1757376790046692, 0.03953627496957779, 1.1111805438995361, 0.983697772026062, 0.3056308329105377, 0.2641311585903168, -0.7571821808815002, -0.189823180437088, -0.3368796408176422, 0.12449253350496292, 1.1170048713684082, -0.5956456065177917, -0.4935145080089569, 1.7958921194076538, 0.053581371903419495, 0.07361285388469696, 0.1000630110502243, 0.2718941271305084, 0.07459118962287903, -0.3210013806819916, 0.3509162366390228, -0.47599291801452637, -0.3909841775894165, 1.254096269607544, 1.1549979448318481, -1.3029768466949463, -0.22396141290664673, -0.6772394776344299, -0.11385709792375565, -0.2710513174533844, -0.28276970982551575, 0.0009007491171360016, -0.013326197862625122, -0.1025405302643776, -0.5913290977478027, 0.017865890637040138, 0.22833237051963806, 0.6804416179656982, -0.21450968086719513, 0.24207454919815063, 0.1328263282775879, 0.6174646615982056, 0.005595573224127293, 0.1406409740447998, -0.6028376817703247, -0.47729548811912537, -0.20602983236312866, -0.3148804008960724, 1.0564953088760376, -0.18185800313949585, -0.08418233692646027, 0.6365218162536621, 1.583996057510376, 0.01658051088452339, 0.6577000021934509, 0.0403132326900959, -0.5835514664649963, -0.3865295350551605, -0.9084506630897522, 1.1198828220367432, 0.2784745991230011, -0.19016331434249878, -0.10952751338481903, -0.4574323296546936, 0.3157188594341278, 1.495743989944458, 0.7081485986709595, 1.1783819198608398, -0.01365610584616661, 0.03933429718017578, -0.25764933228492737, -0.16075566411018372, 0.32796159386634827, -0.3398711681365967, -1.0571805238723755, -0.0005756495520472527, 0.21279123425483704, -1.1472893953323364, -0.032293204218149185, 1.154808759689331, -0.6154081225395203, 0.9988728165626526, 0.6350657939910889, 0.029812583699822426, -0.48998141288757324, -1.0428158044815063, -0.4930436313152313, -1.45804762840271, 0.9419925212860107, 0.9592119455337524, -0.14577245712280273, -0.5196511745452881, -0.6050693392753601, 0.6421005129814148, 1.4080348014831543, -0.6146328449249268, 0.10344082862138748, -1.3931516408920288, -0.6234742403030396, -0.02156488038599491, 0.6033833026885986, -0.060209859162569046, 0.07376366853713989, -0.8705475926399231, 0.7596730589866638, 0.14812996983528137, -0.15788909792900085, 0.7095578908920288, -0.004821435082703829, 0.13351412117481232, -0.2996644079685211, 0.31227630376815796, 0.13203708827495575, 0.5668236017227173, -0.5528604984283447, 0.6378733515739441, -0.08585318177938461, -0.09875916689634323, -0.5332220196723938, 0.8109267354011536, 0.6289668679237366, 0.29987046122550964, 0.4064777195453644, -0.34828102588653564, 1.0363154411315918, -0.0964924618601799, 0.15393365919589996, -1.296376347541809, 0.756646990776062, 0.44731685519218445, 0.9717525243759155, 0.48527392745018005, 0.39695021510124207, 0.8224329948425293, -0.08885574340820312, -0.6636476516723633, -0.10810679942369461, 0.6312446594238281, 0.5027072429656982, -0.9187825918197632, -0.02582421712577343, -0.3285145163536072, -0.7555926442146301, -0.4450538754463196, -0.14815597236156464, 0.49984094500541687, -0.30824539065361023, -0.06025420129299164, 1.063738226890564, -0.06024268642067909, -0.5582038164138794, -0.678149402141571, -0.30234774947166443, 0.5563556551933289, -0.696715235710144, -0.042526599019765854, -0.8816332221031189, -0.043718282133340836, 0.1275663673877716, -0.8301694393157959, -0.6259029507637024, -0.1932680606842041, -0.9987539052963257, 0.7908925414085388, -0.8615461587905884, -0.07499740272760391, 0.45856261253356934, 0.6593294143676758, 0.42391836643218994, -0.11339364945888519, 0.0756874606013298, 0.506513774394989, -0.046941496431827545, 0.5383931398391724, 0.10557632893323898, 0.3575678765773773, 0.08297205716371536, -1.020459771156311, 0.4412926435470581, -0.2790362238883972, 0.15451668202877045, -0.2450539916753769, -0.6353949904441833, 0.18457603454589844, -0.3731469511985779, -0.2274002581834793, 0.020657876506447792, -0.2790258228778839, 1.0289058685302734, 0.25710394978523254, -0.37806573510169983, 0.9426578283309937, 0.014754272997379303, -1.6365190744400024, 0.5101027488708496, -0.16200368106365204, -0.10854759067296982, 0.12261910736560822, 0.1755247265100479, 0.8300356864929199, -0.18222233653068542, 0.5574857592582703, 0.21124115586280823, 0.7469936609268188, 0.2974209487438202, -0.38333985209465027, 0.3413620591163635, 0.379973441362381, 1.1439043283462524, 1.4468477964401245, 0.9642112255096436, 0.3377752900123596, -2.030445098876953, 0.7561241388320923, -0.3747759163379669, 0.6063569188117981, 0.7626329660415649, 0.38126346468925476, 1.2975744009017944, -1.5657914876937866, -0.8076587319374084, 1.017298698425293, 0.16967636346817017, 0.2377808839082718, 0.4098368287086487, 0.19230437278747559, -0.8831733465194702, 0.330741286277771, 0.441497266292572, 0.012020062655210495, 0.533201277256012, -0.2953896224498749, -0.0640735924243927, 1.1433777809143066, -0.7081050276756287, 0.6157336235046387, -0.2403630167245865, -0.6100489497184753, 0.1433211863040924, -0.7846891283988953, -0.09634487330913544, 0.3552616536617279, 0.859009861946106, 0.4110354483127594, -0.07905611395835876, -1.900918960571289, -0.22807469964027405, -0.7267897725105286, 0.06951747089624405, 0.930809736251831, -0.5673187971115112, -0.04829297587275505, -1.4505754709243774, -0.30591490864753723, 0.8788877725601196, -0.5216205716133118, 0.11119414120912552, 0.002528965938836336, -1.0753110647201538, -0.2989974021911621, -0.46398186683654785, 1.314087986946106, 1.0249745845794678, 0.33806246519088745, 0.4565705955028534, -0.18083736300468445, -0.9857455492019653, 0.1849413812160492, -0.271621972322464, 0.2784469723701477, 0.4473741352558136, -1.4338737726211548, -1.4585771560668945, 0.9077575206756592, 1.0099979639053345, -0.1913556307554245, 0.9039101004600525, 1.5241469144821167, 1.1606405973434448, -0.8941335082054138, -0.025140225887298584, 0.15070845186710358, -1.1257266998291016, 0.030861351639032364, 0.772963285446167, -0.8031254410743713, 0.642645537853241, -0.6695237159729004, -2.2937355041503906, 1.4438997507095337, 0.27014124393463135, -0.974153995513916, 0.1129201352596283, 0.15306980907917023, 0.36282193660736084, 0.58220374584198, -0.8770818114280701, -0.5406322479248047, 0.6757853627204895, -0.8938706517219543, -0.20301435887813568, -0.09980785846710205, 0.1527918130159378, -0.01581684872508049, -0.23713332414627075, 1.073099136352539, 0.11133953183889389, -0.12298573553562164, 0.07782185822725296, 0.3382916748523712, -0.10985396802425385, 0.9907137751579285, 0.8274098038673401, -1.633716106414795, 0.6113394498825073, -1.260872721672058, -0.5920053124427795, -0.011104821227490902, 1.3551043272018433, 0.16015128791332245, -0.5156247019767761, -0.23629029095172882, -0.46840018033981323, -1.1085402965545654, -0.5109705924987793, -0.5202330946922302, 0.2933078706264496, 0.5999197959899902, -0.2286628782749176, 0.2936713993549347, -0.6763531565666199, -0.3081428110599518, -0.19486397504806519, 0.6199710965156555, 0.19007383286952972, -0.7361310720443726, -1.1233751773834229, 0.23290546238422394, -0.26785606145858765, -0.7873024940490723, -0.011984591372311115, -0.10662481933832169, -1.0260268449783325, -0.48138460516929626, -0.09623929113149643, -0.36837252974510193, 0.5831372737884521, -0.8568094372749329, 0.4292444884777069, 0.10267962515354156, -1.5856993198394775, 0.9888830184936523, -0.05363205075263977, -1.195689082145691, 0.2394731640815735, -1.6290847063064575, 1.0269758701324463, -0.7868434190750122, -0.12283109873533249, -0.2607502043247223, 0.5458997488021851, -1.3341565132141113, -0.36369627714157104, -1.0779422521591187, -0.3139880895614624, 1.2743011713027954, 0.7714138031005859, -0.8707507252693176, 0.8621019721031189, 0.5661536455154419, -1.2771563529968262, -0.6334899663925171, 0.5743827223777771, -0.8961127400398254, 0.12106692045927048, 0.3475818336009979, 0.056697431951761246, 0.3793252408504486, 1.8259557485580444, 0.29062211513519287, 0.9985817074775696, -0.8413333892822266, -0.041667986661195755, 0.0511515811085701, -0.6491605043411255, -0.9772047400474548, 0.7643071413040161, -0.8719163537025452, -0.7188349962234497, 0.5550318360328674, -0.7010434865951538, -0.4210020899772644, 0.5162485837936401, 1.4634146690368652, -0.6070285439491272, 0.6023414134979248, 0.03201695531606674, 0.21425677835941315, -0.22700750827789307, 0.2621961832046509, 0.020553164184093475, -0.9897480010986328, 0.891470730304718, 0.7672560811042786, 0.11221943795681, -1.019973874092102, 0.22347509860992432, -0.2856366038322449, 0.19229091703891754, -0.3249436020851135, 0.8302202224731445, 1.242989182472229, -0.43764209747314453, -0.21813319623470306, 1.1361607313156128, 1.2765989303588867, -0.08829426020383835, -0.5069109201431274, 0.14377570152282715, -0.17842598259449005, -0.2045985907316208, -0.4187905788421631, -0.31179532408714294, -0.5418733358383179, 0.902204155921936, -0.3472207486629486, 0.25541824102401733, -0.21543775498867035, 0.4934963881969452, -0.4837823510169983, 0.05230370908975601, 0.7076534032821655, 0.14516489207744598, -0.665457010269165, 1.2230058908462524, 0.2173212319612503, 0.35724931955337524, 0.049064166843891144, -0.13644148409366608, 0.3156781494617462, -0.0030908645130693913, 0.4301382601261139, 0.7211393713951111, -0.5160663723945618, 0.09519831836223602, 0.5238486528396606, -0.04002239555120468, -0.062348756939172745, -0.45267194509506226, -1.532791256904602, 0.0688047930598259, -0.44665536284446716, -0.6928303837776184, 0.2907729148864746, -0.5667514801025391, -0.1490708440542221, 0.6234884858131409, -0.056362416595220566, -0.1558508723974228, -0.71608966588974, -0.19769208133220673, 0.34621331095695496, 0.7820979356765747, 0.5362063050270081, -0.28320780396461487, 1.060811161994934, -0.28583207726478577, -0.16683192551136017, 0.04592718556523323, 0.4719812572002411, 0.23631076514720917, 0.25558722019195557, 0.26568934321403503, -0.7160906791687012, -0.3070113956928253, 0.23357616364955902, -0.7018648982048035, 0.9115132093429565, -0.18100255727767944, -0.6735654473304749, 0.02604605443775654, -0.8041542172431946, -0.018823644146323204, 0.16307662427425385, 1.014649510383606, -0.8760402798652649, -0.7031356692314148, -0.014403356239199638, -0.12876848876476288, -0.2644272744655609, 0.9650941491127014, -0.12906552851200104, 0.9058736562728882, 0.048786710947752, -0.31234028935432434, -0.8504494428634644, -0.2250707745552063, 0.6311531066894531, -0.5641337037086487, 0.8711364269256592, -1.1977711915969849, 0.07035910338163376, -0.6384630799293518, -0.7990877628326416, -0.1226026713848114, 0.47818464040756226, 0.38747042417526245, -0.0713181346654892, -0.5592688918113708, -1.0663096904754639, -0.8166464567184448, 0.7544554471969604, 0.6379730701446533, -0.03826790675520897, 0.6966906785964966, -0.09816507250070572, -0.8787383437156677, 0.3646233081817627, 0.11948954313993454, -0.32705259323120117, -0.39166197180747986, 1.435708999633789, 1.7449172735214233, -0.03479434922337532, 0.5416167378425598, -0.12864693999290466, 0.9550771117210388, -0.9666852355003357, -1.0738481283187866, -0.35538777709007263, -0.20835992693901062, -0.28016310930252075], [0.4308371841907501, 1.6836799383163452, -1.7029261589050293, -1.4550296068191528, 0.07711485773324966, -0.1753920018672943, 0.15371018648147583, 0.016554828733205795, -0.4272540509700775, -1.384169101715088, -1.1140164136886597, 0.5846845507621765, 1.4013333320617676, 1.3887771368026733, 0.4875941574573517, 0.7612454891204834, 0.38878145813941956, -0.5002551674842834, 0.5456055402755737, 0.5477280616760254, 0.41512197256088257, -0.5135968327522278, -0.7026165127754211, -0.20733945071697235, 0.06419132649898529, 0.8509064316749573, -1.5792912244796753, -0.14680801331996918, -1.4660460948944092, -1.2491534948349, 0.8292803764343262, -0.9031379818916321, 0.11910167336463928, -0.40744489431381226, -2.177187204360962, -1.0306379795074463, 1.0560041666030884, -0.002367335371673107, -0.8614645004272461, 1.3973013162612915, 1.1884357929229736, 0.9361500144004822, 0.10703600943088531, -1.3503988981246948, 0.8524095416069031, -0.4104095697402954, -0.25497326254844666, -1.0900540351867676, -0.539141833782196, -0.8478646278381348, 0.7375852465629578, 0.08729584515094757, -0.07074366509914398, 0.46237611770629883, 1.393903136253357, 0.2740899324417114, -0.7568125128746033, 0.7032831311225891, -0.2954361140727997, -0.9365924000740051, 1.2766975164413452, 1.0849756002426147, -0.7509099841117859, 0.43449708819389343, 0.2026059627532959, 0.22231914103031158, -0.3316742181777954, 0.4246371388435364, -0.8834546804428101, -0.046915389597415924, 0.45784085988998413, 0.3940376341342926, -0.18373197317123413, -0.9169543385505676, -1.6068474054336548, 0.7596437931060791, 0.6504707336425781, -0.03941316157579422, 0.06527981907129288, 1.530807375907898, -0.47189974784851074, -0.34420397877693176, 0.19355647265911102, -0.8316946625709534, 0.6700124740600586, 0.1383066326379776, -0.38737401366233826, -0.7859520316123962, -0.6797078251838684, 1.7054427862167358, -0.3306439220905304, 0.19669735431671143, 0.5338705778121948, -0.30202043056488037, -0.8463249206542969, -0.9072449207305908, 0.10598240792751312, -0.8802511692047119, -0.483185350894928, -0.449564129114151, -1.183949589729309, -0.3778197467327118, 0.6838338971138, 0.5028718709945679, 0.49917250871658325, 1.297661542892456, 0.4663740396499634, -1.2012962102890015, -0.9498969912528992, 0.6919785737991333, 0.5622458457946777, -0.3582419455051422, -1.0265485048294067, -1.0009256601333618, -0.29744431376457214, 0.6570718288421631, 1.109944462776184, -0.5152180194854736, 0.7931225299835205, 0.7590828537940979, -1.0193411111831665, -0.9505419135093689, -0.945109486579895, 0.5957397222518921, 1.3723324537277222, 0.17089340090751648, -0.8246891498565674, -0.22927334904670715, -0.12403787672519684, 0.012088673189282417, 0.33848077058792114, -0.12648551166057587, -0.9923191666603088, 1.085191011428833, 0.06744805723428726, 1.5791082382202148, -0.0700441524386406, -0.642646074295044, 0.6914844512939453, -0.5691895484924316, -0.07424362748861313, -0.36596283316612244, -0.5887494683265686, -1.2829688787460327, 0.957010805606842, 0.3987419903278351, -0.39469754695892334, 0.07948192954063416, -1.145697832107544, 0.24045926332473755, -1.3052494525909424, 0.6145579814910889, -0.30924296379089355, 1.167112112045288, -0.45793184638023376, 0.9242926239967346, 0.5136125683784485, -0.28833824396133423, -0.2897312343120575, 0.23127137124538422, 0.9350107908248901, 0.3948858678340912, -1.106961965560913, 1.3525360822677612, -0.0433368980884552, -0.3285854458808899, 1.1870110034942627, -0.11823248863220215, -0.23667064309120178, 0.5815685987472534, -0.9814608097076416, 0.07886555045843124, -0.057748712599277496, 0.5151267647743225, -0.028286410495638847, -0.18396028876304626, 0.9303454160690308, -1.1533868312835693, -0.14242549240589142, -0.8270567655563354, 0.43079912662506104, -0.8870343565940857, -0.2000037431716919, -0.04014723375439644, 0.2718038856983185, -0.0074844881892204285, 0.29074805974960327, -0.538046658039093, -0.3072234094142914, -0.4073692858219147, -0.7797423601150513, -0.1414867490530014, -0.8752419948577881, -0.021050387993454933, -0.6225675940513611, -1.533186674118042, 0.5389714241027832, -0.28592321276664734, 0.20168136060237885, -0.035676706582307816, -0.005956241860985756, -0.14126981794834137, -1.8151602745056152, 0.019012177363038063, -1.0185229778289795, 1.4058195352554321, -0.6935325264930725, 0.006405471358448267, -0.7474584579467773, 0.13801422715187073, 1.322813868522644, -0.09880692511796951, -0.28738918900489807, 0.719344973564148, 0.5701894164085388, -1.0283619165420532, -0.32258328795433044, 0.009799710474908352, 0.1185510903596878, 0.12159557640552521, 1.0909550189971924, 0.19098906219005585, 1.087350606918335, 0.5057781934738159, 0.42345187067985535, 0.010679719038307667, -1.3391425609588623, -0.1419886201620102, -1.4369639158248901, -0.3704040050506592, -1.190809726715088, -0.9951505661010742, 1.2580581903457642, 1.4825403690338135, -0.4395482838153839, 1.1080875396728516, -0.3169824182987213, 0.41410568356513977, 1.063132882118225, 0.7156272530555725, 0.5275242328643799, 0.18869563937187195, -0.4951200485229492, 0.43257981538772583, -0.42192065715789795, 0.13179390132427216, 0.6481651067733765, -0.38334324955940247, -1.382094144821167, 1.320170283317566, 0.3424740135669708, 0.09607049822807312, 0.8987010717391968, -0.3339579403400421, 0.4329577684402466, -0.8584548830986023, 0.18715499341487885, 0.4664277732372284, -0.7388087511062622, 0.8711040019989014, 1.0159777402877808, -1.7065430879592896, -0.6493551731109619, -0.5059154033660889, -0.24654661118984222, -0.672661304473877, -0.1254415512084961, -0.8821586966514587, 0.2828434407711029, 0.07078065723180771, 0.0013828454539179802, -0.17731714248657227, 0.11748622357845306, 0.8536440134048462, 0.2658179998397827, 0.28511345386505127, -0.3835747241973877, 0.8165494203567505, -0.01424291543662548, 0.13649222254753113, -0.22899229824543, -1.7977076768875122, -0.9694275259971619, -0.6754710078239441, 0.9705262184143066, -0.2852768301963806, -0.6991484761238098, 0.6041077375411987, 0.9867709279060364, -0.9441149234771729, 0.1242731437087059, -0.11374593526124954, -0.45107898116111755, -0.30591028928756714, 0.3462921977043152, 0.5134798288345337, 0.28978797793388367, -0.7685520052909851, -0.4741049110889435, -0.5203646421432495, 0.030405772849917412, 1.2300926446914673, 0.9806859493255615, 0.997249186038971, 0.048352476209402084, 0.19377991557121277, -0.23493778705596924, 0.4639773666858673, -0.08094748109579086, 0.08475783467292786, -0.4821903109550476, -0.556564450263977, 0.3371346890926361, -0.19545148313045502, 0.3552296757698059, 1.4171258211135864, -0.10343506932258606, 1.191275715827942, 0.3714528977870941, -0.4812827706336975, -1.1998836994171143, -0.7788407802581787, 0.5169846415519714, -0.8715108633041382, 0.6303921341896057, 0.8221417665481567, -0.7679275870323181, 0.5979924201965332, 0.19845464825630188, -0.15686652064323425, 0.6117455363273621, -0.4785097539424896, 0.22008247673511505, -0.9706960916519165, -0.34555232524871826, -0.12151410430669785, 1.292196273803711, 0.1829320192337036, 0.1141606792807579, -0.23179736733436584, 0.22489170730113983, -0.2605440020561218, 0.26062121987342834, -0.6724403500556946, 0.7019523978233337, 0.07658270746469498, -0.8202282786369324, -0.4074684977531433, 0.7059182524681091, 1.180344581604004, -0.39142942428588867, -0.09728335589170456, -1.0908329486846924, -0.11154085397720337, -0.5788688063621521, 0.6550114750862122, 0.05758211389183998, 1.3912864923477173, 0.06820003688335419, 0.4148702025413513, 0.6351811289787292, -0.03248482570052147, 0.2518194317817688, -1.1550976037979126, 0.819339394569397, 0.22997361421585083, 1.3182181119918823, 0.6981020569801331, -0.23109275102615356, 0.6368584632873535, -0.1876527965068817, -0.3312353789806366, 0.2996170222759247, 0.43120166659355164, 0.051454298198223114, -0.7841431498527527, -0.6090661287307739, 0.8866199851036072, -0.08344593644142151, -0.20779600739479065, -0.08296291530132294, 0.4938559830188751, -0.39378806948661804, -0.2867398262023926, 0.9362639784812927, -0.11589542776346207, -0.0020751121919602156, 0.01996839977800846, 0.21487437188625336, 0.08298778533935547, -0.1870649755001068, 0.2931920289993286, -0.6302239298820496, -0.012397090904414654, 0.30606192350387573, -0.37742388248443604, -1.3673657178878784, 0.1618967056274414, -0.3174312710762024, 0.7755091786384583, -1.1747362613677979, -0.3442560136318207, -0.43804386258125305, -0.12577080726623535, 0.16995972394943237, 0.3697040379047394, 0.21818387508392334, 0.36749714612960815, 0.09980323165655136, -0.16565750539302826, 0.7231826186180115, 0.8874637484550476, -0.08227386325597763, -0.3435918986797333, -0.5209584832191467, -0.22888188064098358, 0.3786729574203491, -0.4789263606071472, -0.5342680215835571, -0.020331259816884995, -0.8073490858078003, 0.4586835503578186, 0.012632342055439949, -0.02863331511616707, 0.6781108975410461, -0.11847052723169327, 0.0840829461812973, 0.940114438533783, -0.26444530487060547, -1.4389857053756714, 0.42958441376686096, 0.5037882924079895, 0.012628371827304363, -0.3182956576347351, 0.5830867886543274, 0.22429174184799194, 0.8413786888122559, 1.0021345615386963, -0.39641985297203064, 1.2231130599975586, 0.2883210778236389, -0.9434978365898132, -0.481580525636673, 0.991483211517334, 0.8006548285484314, 1.1001371145248413, 1.1178789138793945, -0.536333441734314, -1.5122342109680176, 1.6539169549942017, -0.13900992274284363, 0.9304450750350952, 0.6367666125297546, 0.7156631350517273, 1.7799147367477417, -1.1954245567321777, -0.21814927458763123, 0.22098925709724426, -0.3600168228149414, 0.1350068300962448, 0.5777897238731384, 0.23340541124343872, -1.3552987575531006, -0.48971959948539734, 0.45904576778411865, -0.0029485486447811127, 0.7637300491333008, -1.2449783086776733, 0.10566152632236481, 0.24553176760673523, -0.2767745554447174, 0.6337520480155945, -0.8415507078170776, -0.11056460440158844, 1.3159362077713013, -0.07295021414756775, 0.18006207048892975, 0.42538949847221375, 0.17374153435230255, 1.8066648244857788, -0.6050220131874084, -1.5208159685134888, 0.3210163414478302, -1.0006818771362305, 0.5464810132980347, 0.19199298322200775, -0.42824503779411316, -0.37717264890670776, -1.192615270614624, 0.03325160965323448, -0.18581777811050415, -0.288591206073761, 0.4843428134918213, 0.5339744091033936, -1.048954963684082, -0.03677964210510254, 0.6237807869911194, 1.078224539756775, 0.41938918828964233, 0.23363015055656433, 0.5996397733688354, -0.055539537221193314, -0.040366820991039276, 0.3901781439781189, -0.11929157376289368, -0.7402417659759521, 0.7372498512268066, -1.2701295614242554, -0.942891538143158, 0.5572445392608643, 1.5083003044128418, 1.0213768482208252, -0.061344701796770096, 0.8048405051231384, 1.5876805782318115, -1.4272531270980835, -0.8760015964508057, 0.5659126043319702, -0.6162512898445129, 0.3282698392868042, 0.13283957540988922, -1.066554307937622, -0.9207713603973389, -0.121955007314682, -1.7099584341049194, 1.4814586639404297, -0.29662010073661804, -0.7526230812072754, 0.434190958738327, 0.9267160892486572, -0.16215772926807404, 0.8917007446289062, -0.8585970401763916, 0.5035281777381897, 0.7017648816108704, -0.7251337170600891, -1.2020299434661865, 0.5383118987083435, 0.43094655871391296, 0.7459874749183655, -0.5513635873794556, 0.34868738055229187, -0.18216101825237274, -0.34267017245292664, 0.6095904111862183, 0.005140395835042, 0.9844710230827332, 0.733824610710144, 1.0328267812728882, -1.6399180889129639, -0.34847962856292725, -0.7111164927482605, 0.44666728377342224, 0.34760892391204834, 1.3001946210861206, -0.20441417396068573, -0.7290084958076477, -0.22805574536323547, 0.06435124576091766, -0.4207548499107361, -0.01931746117770672, -1.362830400466919, 1.44234299659729, 0.5880577564239502, -0.44373318552970886, 0.48167064785957336, -0.29488638043403625, -0.3367762863636017, -0.2221505045890808, 0.12171301245689392, 0.7907523512840271, -1.4198676347732544, -0.30774444341659546, 0.2716304659843445, -0.010533622466027737, 0.42921486496925354, 0.6944156885147095, -0.6272174119949341, -0.7947943806648254, -1.592139720916748, 0.034483201801776886, 0.11078286916017532, 0.7217298746109009, -0.8442464470863342, 0.11136968433856964, -0.10537730157375336, -1.5720866918563843, 0.3292246162891388, -0.36277344822883606, -0.9107255339622498, -1.2120810747146606, -0.7860556244850159, 1.1673136949539185, 0.727847695350647, -0.07747098058462143, 0.5902160406112671, 0.9166382551193237, -0.31925877928733826, -0.16527895629405975, -1.1665229797363281, 0.5714554190635681, 0.4296330213546753, 1.310014247894287, -0.9417871832847595, 0.6034398078918457, 0.3055967092514038, -0.38150396943092346, -0.2540576159954071, 0.13021095097064972, -0.8962231278419495, 0.08981268107891083, 0.5248162150382996, 0.3504140079021454, 0.19407665729522705, 1.5214953422546387, 0.21050803363323212, 1.2515785694122314, 0.010545316152274609, 0.5772616267204285, -0.22192582488059998, -0.1523582488298416, -0.7346625924110413, -0.01261525135487318, -1.4984033107757568, -0.6688219904899597, 0.09376318007707596, -0.7445990443229675, -0.4575440287590027, 0.7921919226646423, 0.8884986639022827, -1.1290093660354614, -0.23253373801708221, 0.17803853750228882, 0.702751636505127, -0.8292527198791504, 0.7950356006622314, -0.29896020889282227, -0.44597238302230835, -0.2274317592382431, -0.2755216658115387, 0.2139577716588974, -0.5621225833892822, 0.4778626561164856, 0.15825212001800537, 0.466913640499115, -0.6069642305374146, 0.5273387432098389, 0.5426173806190491, -0.3425009846687317, -0.4203151762485504, 1.2788382768630981, 1.5609360933303833, -0.05813021957874298, 0.29359519481658936, 0.40881773829460144, -0.23237916827201843, 0.19451770186424255, -0.2300175577402115, -0.3257075548171997, -0.1495753675699234, 0.6921480894088745, -0.4378877878189087, 0.18590489029884338, -1.2639596462249756, 0.2985565960407257, 0.03477706015110016, -0.16069185733795166, 0.9015993475914001, 0.5725378394126892, -0.43781766295433044, 0.10391706973314285, 0.14275971055030823, -0.8377677798271179, 0.11088981479406357, 0.7483056783676147, 0.7588244080543518, 0.3038696348667145, 0.2869682312011719, 0.35917994379997253, -0.3545948266983032, 0.521411120891571, 0.42674314975738525, -0.7461549639701843, -0.2343626767396927, -0.9168721437454224, -1.4368784427642822, -0.9874815344810486, -0.09941872209310532, -1.1455923318862915, 0.2108195722103119, -1.284537434577942, -0.9001359939575195, -0.14609238505363464, -0.28163209557533264, 0.42741045355796814, -0.5195810794830322, 0.1860281229019165, 0.07739952206611633, 0.6959598660469055, 1.9614657163619995, 0.1971464455127716, 0.894421398639679, 0.81280916929245, 0.20123650133609772, 0.11331118643283844, -0.0023718448355793953, -0.486312597990036, 0.2908453941345215, -0.11541222780942917, -0.6236847043037415, -0.6470170617103577, -0.9822112321853638, -0.6651933193206787, 0.4184924066066742, 0.10072437673807144, 0.8205451369285583, 0.0018635555170476437, -0.9225295186042786, -0.7059430480003357, 0.9393539428710938, 0.45050716400146484, -0.7744744420051575, -0.1722014844417572, -0.35951346158981323, -0.02402466908097267, -0.08706893026828766, 1.4583444595336914, -0.6254830360412598, 0.6533477306365967, 0.5883951187133789, 0.06006404757499695, -0.7580312490463257, -0.13931111991405487, 0.7167037725448608, -0.3188699185848236, 0.6767424941062927, -0.8802337646484375, -0.45643749833106995, -0.0716346725821495, -0.5911647081375122, 0.3937900960445404, 0.2846716046333313, -0.7828740477561951, -0.11550115793943405, -0.40572693943977356, -0.8417315483093262, -0.8298861384391785, 0.3473077118396759, 0.3146885931491852, -0.29024070501327515, 0.432374507188797, -0.12425991892814636, -0.5394886136054993, 0.4512074589729309, 0.7279386520385742, 0.342875599861145, 0.20223268866539001, 1.87618088722229, 1.950203776359558, 0.016833683475852013, -0.684032678604126, -0.8274582028388977, 1.025221824645996, -0.48110973834991455, -0.6524160504341125, -0.590337336063385, 0.18992562592029572, 0.8425493240356445], [0.18658006191253662, 1.3414350748062134, -1.9397261142730713, -0.5952227711677551, 0.2995772659778595, -0.08945487439632416, 0.6466031670570374, 0.3141251504421234, -0.45091524720191956, -0.45327046513557434, -0.47506794333457947, 0.059153977781534195, -0.06047692149877548, 0.7837308645248413, -0.1133902296423912, 0.19701538980007172, 0.4890182614326477, 0.6887013912200928, 0.4408614933490753, 1.7044486999511719, 0.9346920847892761, -1.5740324258804321, 0.6164708733558655, -0.27796128392219543, -0.050880882889032364, 0.8688360452651978, -1.042934536933899, -0.044819582253694534, -1.3575687408447266, -0.7963465452194214, 1.7687864303588867, 0.18799039721488953, -0.3108948767185211, -0.34123918414115906, -0.6847721934318542, -1.0069812536239624, 0.70826256275177, 0.305292010307312, 0.8133211731910706, 0.33535125851631165, 1.5306607484817505, -0.12329352647066116, -0.28708428144454956, -1.2243907451629639, 1.218659520149231, 0.0865032970905304, 0.2684909701347351, -1.2739427089691162, 0.11096735298633575, -0.9895827174186707, 1.0315991640090942, -0.3296564817428589, 0.41782429814338684, 1.2418630123138428, 1.3421539068222046, -0.7390201687812805, -0.27710482478141785, 0.009341014549136162, -0.27700942754745483, -0.8794262409210205, 1.1395137310028076, 0.40573087334632874, -0.04642604663968086, 1.0698156356811523, 0.7218225598335266, -0.7314786314964294, 1.3169342279434204, -0.06615307927131653, -0.04813079163432121, 0.08072829991579056, 0.4615371525287628, 0.1287519931793213, -1.0910829305648804, -0.1988162249326706, -0.33323079347610474, 0.4273451268672943, -0.11819043010473251, 0.7411797642707825, 0.10602501779794693, 0.7779281735420227, -0.2766971290111542, -0.13906380534172058, 0.09077051281929016, -0.5578331351280212, 0.28527480363845825, 0.27248460054397583, 0.0821763426065445, -0.8155592679977417, -0.12013035267591476, 1.5593931674957275, -0.44920170307159424, -0.10751713812351227, 0.0389091782271862, -0.8152275085449219, -1.200087547302246, -0.5395050048828125, 0.1810791939496994, -0.1798126995563507, -0.4849715828895569, -0.37966933846473694, -0.555152416229248, -1.4856667518615723, 0.3086157739162445, -0.7224195599555969, 0.9280920028686523, 1.6547609567642212, -0.34875255823135376, -0.4667828679084778, -0.916486382484436, 0.4665583670139313, 0.16905079782009125, -0.2849680781364441, -0.47866228222846985, -0.7270398139953613, -0.1819787323474884, 0.5856851935386658, 0.8078840970993042, -0.3552056849002838, 0.05305926874279976, 0.2728063464164734, -0.470647931098938, -0.16523019969463348, -0.982801616191864, 0.03315609693527222, 1.4830893278121948, 0.4465465247631073, -0.6852500438690186, -0.18116140365600586, 0.009413214400410652, -0.08060847222805023, 0.2544805109500885, 0.6814787983894348, -1.2512233257293701, 0.435829758644104, -0.6768349409103394, 1.5204898118972778, -0.5436753034591675, -1.011053442955017, -0.2732592225074768, -0.4900342524051666, 0.7062625885009766, -0.9812374711036682, -0.8001322746276855, -0.3637246787548065, 0.15883545577526093, -0.1712888479232788, 0.2504282295703888, 0.02451423555612564, -1.3903062343597412, 0.408114492893219, -1.4714192152023315, 0.39302149415016174, -0.35964927077293396, 1.0329360961914062, 0.04883740097284317, -0.0732128769159317, 0.44790762662887573, 0.3370630443096161, -0.033829912543296814, 0.049486491829156876, 0.5904768109321594, 0.07420722395181656, -0.8072124719619751, 0.9628410339355469, 0.2866280674934387, -0.7662004232406616, 0.2564980089664459, 0.3905380070209503, -0.527585506439209, 0.5012124180793762, -0.8391340374946594, -0.4727311134338379, -0.31912466883659363, 1.2769713401794434, -0.16936199367046356, -0.7749125957489014, 0.6803054213523865, -0.2544557452201843, -1.159151315689087, -1.922108769416809, -0.011716814711689949, 0.18483395874500275, 0.2896670401096344, -0.047290537506341934, 0.12292251735925674, 0.3001876175403595, 0.07216356694698334, -0.3013368844985962, -1.1674723625183105, -0.2662256956100464, -0.7029610276222229, -0.531805157661438, -1.0558103322982788, 0.5042219758033752, -0.3779129683971405, -1.0682207345962524, 0.47634395956993103, -0.6417328119277954, 0.1411413848400116, -0.022252390161156654, 0.4745086431503296, -0.026858918368816376, -2.05607533454895, 0.8441489338874817, -0.890444815158844, -0.011428692378103733, -1.7412694692611694, 0.6077801585197449, -1.1534690856933594, 0.15142636001110077, 0.6829003691673279, 0.024424007162451744, -1.0073720216751099, 0.5345465540885925, -0.1238446980714798, -1.74880051612854, 0.3331044614315033, 0.16500195860862732, -0.03916904702782631, 0.4354948401451111, -0.21174107491970062, 0.2727084755897522, 1.1782724857330322, 0.4832189679145813, 0.8984192609786987, 0.13066573441028595, -0.8398861885070801, -0.14071066677570343, -0.43597540259361267, 0.023973356932401657, -0.5701569318771362, -0.7316796779632568, 0.49073806405067444, -0.11019952595233917, -1.3081114292144775, 0.7702704668045044, 0.1558431088924408, -0.20888766646385193, 0.49188461899757385, 1.4731996059417725, 0.49093160033226013, 0.25202274322509766, -0.2996562421321869, -0.4542037546634674, 0.0279395654797554, -0.030728761106729507, 0.7098554968833923, 0.2054973691701889, 0.4317263960838318, 1.375691294670105, 0.7021304965019226, -0.26599517464637756, 0.21568803489208221, -0.24133507907390594, 0.5118847489356995, -0.90953129529953, 0.3840799331665039, -0.2692091166973114, -0.7014678120613098, 1.1233991384506226, 1.0140790939331055, -1.085806965827942, -0.581396758556366, -0.5981941819190979, 0.706307053565979, -0.20755071938037872, 0.347501277923584, -0.6041038036346436, 0.18776161968708038, 0.038418810814619064, 0.11448762565851212, 0.1681278645992279, 0.011147785000503063, 1.2333859205245972, -0.18796338140964508, -0.5170783400535583, -0.10047558695077896, 0.8701555132865906, 0.23426023125648499, 0.7717241048812866, -0.45107266306877136, -1.776215672492981, -0.6101356148719788, 0.08755094558000565, 0.6202551126480103, -0.41712403297424316, -0.3406447470188141, 0.46121838688850403, 0.8428266048431396, -0.1223827451467514, 0.6047399640083313, 1.0092828273773193, 0.07104382663965225, -0.9898298978805542, -0.39906904101371765, 1.1962412595748901, 0.34159037470817566, -1.521539330482483, -0.9887728691101074, -0.25814083218574524, 0.5823174715042114, 1.3126881122589111, 0.8677555918693542, 1.1133712530136108, -0.3322662115097046, -0.21255919337272644, -1.096521019935608, 0.20963455736637115, -1.0510811805725098, -0.1257307380437851, 0.3555248975753784, -0.6222400665283203, -0.018208052963018417, -0.2547791302204132, -0.15926924347877502, 1.7928414344787598, 0.22411617636680603, 0.8231106996536255, 0.640640914440155, -0.37418314814567566, -1.1499671936035156, -0.6025257110595703, 0.2274988889694214, -1.4926620721817017, 1.1483173370361328, 1.014478325843811, -0.6708093881607056, -0.04444707930088043, 0.24059636890888214, 0.7094975113868713, -0.04196738824248314, -0.45287075638771057, 0.3685019314289093, -1.5923837423324585, -0.3673672080039978, -0.6260769367218018, 0.9500349164009094, -0.5220842361450195, 0.002659913618117571, 0.33378279209136963, -0.03591014817357063, 0.7839934825897217, -0.30982521176338196, 0.26074761152267456, 0.002674608025699854, -0.05744677409529686, -0.024778295308351517, -0.37837037444114685, 0.702400267124176, 0.5072702169418335, 0.15944406390190125, -0.28972989320755005, -0.053939592093229294, -0.12550535798072815, -0.9929609894752502, 0.4280388355255127, -0.7494422197341919, 0.664343535900116, 0.5332285165786743, 0.27383023500442505, 0.923542857170105, -0.24770604074001312, 0.22697529196739197, -1.3403244018554688, 0.6308287978172302, 1.345035195350647, 1.4848060607910156, 0.65627521276474, 0.3803020417690277, 0.030703919008374214, 0.041873637586832047, 0.5229811072349548, 0.1949625313282013, 1.053063154220581, 0.16957364976406097, -0.12231467664241791, -0.3723917007446289, -0.521711528301239, 0.07531049102544785, 0.11795830726623535, 0.25781816244125366, 0.0199421513825655, -0.5022449493408203, -0.4573257863521576, 1.0906291007995605, 0.05785341188311577, -0.253343403339386, -0.6059979796409607, -0.1920488476753235, 0.7727189064025879, -0.12360785156488419, -0.5881432890892029, -0.6189277172088623, -0.3999535143375397, 0.40792468190193176, -0.6994731426239014, -0.5571340322494507, 0.1990608423948288, 0.25287267565727234, 0.4886932373046875, -1.004310965538025, 0.24629701673984528, -0.8131957650184631, 0.7640272378921509, 1.0691022872924805, -0.4407561719417572, 0.2967965602874756, -0.4713210463523865, -0.8060567378997803, -0.01428372785449028, 0.07482628524303436, 0.7918003797531128, 0.5128079652786255, -0.4090668559074402, -0.18037696182727814, 0.20419923961162567, 0.6124564409255981, -0.260663777589798, -0.2667924165725708, 0.18084578216075897, -1.093537449836731, 0.23695306479930878, 0.05137086659669876, 0.08325754106044769, 1.232166051864624, 0.13489875197410583, -0.7466655373573303, 0.2962287664413452, 0.31764066219329834, -0.8509632349014282, -0.3450639545917511, 0.10017380118370056, -0.29930487275123596, 0.2163669914007187, 0.19295212626457214, 0.44652441143989563, 0.20290198922157288, 0.13542434573173523, -0.4444327652454376, 1.024471402168274, 0.788716733455658, -0.527629017829895, 0.4156338572502136, 0.9192416667938232, 0.583976149559021, 1.4373905658721924, 1.0226080417633057, -0.3327910602092743, -1.3014997243881226, 0.6839008927345276, -0.7283781170845032, 0.3939243257045746, 0.8552050590515137, -0.08836060762405396, 0.9194610714912415, -1.2366188764572144, -0.5230827927589417, 0.4868423640727997, -0.03474068641662598, 0.5539448857307434, 0.021971572190523148, -0.30637064576148987, -0.4244205355644226, 0.24833282828330994, -0.0626705214381218, -0.05906740576028824, 0.898581862449646, -0.032159239053726196, 0.13573399186134338, 0.9548192620277405, -0.7704439759254456, 0.5383163094520569, -0.6677955985069275, 0.2187524288892746, 0.4264862537384033, -0.7834135890007019, -0.2361842691898346, 0.11477252095937729, 1.0414379835128784, 2.1250927448272705, -0.3151054084300995, -1.160783290863037, 0.14952625334262848, -0.6954222321510315, -0.06509704887866974, -0.27600011229515076, -0.5061296820640564, -0.26796409487724304, -1.0125610828399658, -0.22753308713436127, 0.9156633615493774, -0.07506304234266281, 0.09021048992872238, -0.12487316876649857, -0.6134023070335388, 0.031394291669130325, 0.06814876943826675, 0.5002973079681396, 1.0466991662979126, 0.3584654629230499, 0.051302216947078705, 0.4155457317829132, -1.1251940727233887, -0.09961596876382828, 0.4324776828289032, -0.1609058827161789, -0.5091567039489746, -0.9758585095405579, -0.374372661113739, 1.0320560932159424, 1.3583488464355469, 0.11408685892820358, 0.47237932682037354, 1.4709357023239136, 1.1608617305755615, -0.6897462606430054, -0.6339424252510071, 0.020920606330037117, -0.5430793762207031, -0.13818569481372833, 0.4747670590877533, -0.8172630071640015, -0.11639793962240219, -0.8139735460281372, -2.6581499576568604, 1.4184951782226562, -0.05150965228676796, -0.6483380794525146, 1.236991286277771, 0.4014693796634674, 0.6404839158058167, 0.5035044550895691, -0.7220516204833984, -0.19849807024002075, 0.08883439749479294, -0.3370918035507202, -2.0828120708465576, 0.9865601658821106, 0.2702280580997467, 0.5718598961830139, -0.6842322945594788, 0.07039720565080643, 0.11750520765781403, -0.0343293733894825, -0.25760042667388916, 0.12022623419761658, 0.9205209612846375, 0.8894037008285522, 0.5685404539108276, -0.8379980325698853, 0.28654977679252625, -0.6265783309936523, -0.34399667382240295, 0.3208009600639343, 1.058525800704956, 0.510776698589325, -0.6376982927322388, 0.5088658928871155, -0.23536553978919983, -0.37474262714385986, -0.14688336849212646, -0.4740223288536072, 0.881463348865509, 0.43982750177383423, 0.21654736995697021, -0.3806629478931427, -0.41270023584365845, -0.10159872472286224, -0.5635930895805359, 1.2719565629959106, 0.8725757598876953, -0.2793242633342743, -0.21661819517612457, -0.23291489481925964, -0.150605708360672, -0.1238001212477684, 0.4290599822998047, -0.36848658323287964, -0.9045418500900269, -1.3021265268325806, -1.3857495784759521, 0.37302669882774353, 0.684040904045105, -0.27599433064460754, 0.5667849779129028, -0.5016219615936279, -0.9871606230735779, 0.6574989557266235, 0.44189587235450745, -1.5149224996566772, 0.24103617668151855, -0.9150717854499817, 0.6746245622634888, 0.11105833202600479, 0.1266324669122696, 0.7256026864051819, 0.4761161208152771, -0.4090437591075897, -0.41486892104148865, -1.2380884885787964, -0.7108777165412903, 1.0247184038162231, 0.8490680456161499, -0.8204110860824585, 0.7850639224052429, 0.06254225224256516, -1.171921730041504, -0.03584439307451248, -0.13119295239448547, -1.259529948234558, 0.37336426973342896, 0.2491132915019989, 0.46657663583755493, 0.37132763862609863, 1.9162867069244385, 0.2876347005367279, 1.1856263875961304, 0.03175467252731323, 0.7344880700111389, -0.31631988286972046, -0.5620675086975098, -0.9928520917892456, 0.07312770187854767, -1.1504571437835693, -1.3712037801742554, 0.11196662485599518, -0.13748718798160553, -0.5618768930435181, 0.4895508587360382, 0.7260922193527222, -0.8677197694778442, 0.4201660454273224, -0.042847890406847, -0.2468634843826294, -0.2293035238981247, 0.42543429136276245, 0.37196990847587585, -1.265551209449768, -0.14851219952106476, 0.15196886658668518, 0.7248430848121643, -1.4673550128936768, 0.11731545627117157, -0.20367562770843506, 0.570455014705658, -0.14693975448608398, 1.5906027555465698, 0.3940281867980957, 0.29914531111717224, -1.1449395418167114, 1.4159208536148071, 1.0599778890609741, 0.2915128767490387, 0.0781097561120987, 0.6051008105278015, 0.09567910432815552, 0.1624421775341034, -0.6779283881187439, -0.12230090796947479, -0.6024128198623657, 1.169764518737793, -0.1297231763601303, 0.4399402439594269, -0.12422904372215271, 0.34351328015327454, 0.648155152797699, 0.8210722208023071, 0.7726631760597229, 0.27018365263938904, -0.30411481857299805, 0.9935779571533203, 1.1881455183029175, 0.16537798941135406, 0.2850557565689087, 0.6115576028823853, 0.8954724669456482, -0.04863908514380455, 0.09188369661569595, 0.6483443379402161, -0.39035314321517944, -0.002379300072789192, -0.5674814581871033, -0.4668566882610321, 0.11667600274085999, -0.6389297842979431, -1.1335679292678833, 0.14702150225639343, -0.47060737013816833, -0.22553850710391998, 0.4691348075866699, -0.8202202320098877, -0.4058593511581421, -0.398978590965271, -0.28808125853538513, -0.5091797709465027, -0.6159922480583191, -0.1794780045747757, -0.400132417678833, -0.3865525722503662, 0.4894605875015259, -0.18263736367225647, 1.1769514083862305, -0.037413664162158966, 0.7612632513046265, -0.3361840546131134, -0.09019515663385391, 0.24205173552036285, -0.08053241670131683, 0.07288452237844467, -0.03621751442551613, -0.256204754114151, -0.7418292164802551, -0.5940840244293213, -0.5936360955238342, -0.38652515411376953, -0.07947035133838654, 0.29196101427078247, -0.550682008266449, -0.30421069264411926, 0.1602398008108139, -0.2997812032699585, -0.4202853739261627, -0.6356207728385925, -0.6354523301124573, 0.1353440135717392, -0.16411198675632477, 1.3269926309585571, -0.436585932970047, 0.6528211236000061, -0.13881628215312958, -0.8085285425186157, -0.186985045671463, -0.4200226068496704, 0.8982475399971008, 0.25839701294898987, 0.4446863532066345, -1.325147271156311, -0.3187725245952606, -0.9660773277282715, -1.2247554063796997, 0.4864930808544159, -0.37551426887512207, -0.4660226106643677, 0.485897958278656, -0.052626702934503555, -0.17890729010105133, -0.2100355178117752, 0.061710890382528305, 0.4993590712547302, 0.307501882314682, 0.45769181847572327, 0.03699963167309761, -0.45844051241874695, -0.14695335924625397, 0.5142462849617004, 0.04333013296127319, 0.6216949820518494, 0.8911066651344299, 1.4722751379013062, -0.07786431908607483, -0.2179419845342636, -0.6368158459663391, 0.6267260909080505, -1.2822409868240356, -1.1350512504577637, -0.906112790107727, 0.7249944806098938, -0.1136600449681282], [-0.4717334806919098, 1.494751214981079, -2.014904737472534, -0.6560827493667603, -0.2837630808353424, 0.237799271941185, 1.5793626308441162, 0.9908571839332581, 0.28942739963531494, -0.22619439661502838, -0.576263427734375, 0.008643534034490585, 0.5459743142127991, 0.1638086438179016, 0.3358042240142822, 0.3138015568256378, 0.3331826627254486, 0.6425565481185913, 0.7163578271865845, 1.4132530689239502, -0.657767117023468, -0.9391552805900574, -0.08050907403230667, 0.3547593355178833, -0.09391437470912933, 0.09329046308994293, -1.4836293458938599, 0.24135875701904297, -1.5543464422225952, -0.6882980465888977, 0.6609484553337097, -0.9745678901672363, -0.24316710233688354, 0.19350911676883698, -0.874223530292511, -0.22037507593631744, 1.3572310209274292, 0.9275795817375183, 1.7655539512634277, 0.2662540376186371, 1.9459997415542603, 0.1356869786977768, 0.488177090883255, -1.7069437503814697, 0.17554281651973724, 0.41160038113594055, 0.38501429557800293, -1.7660566568374634, -0.020128732547163963, -0.09745823591947556, 0.2533927261829376, 0.2683960795402527, 1.437412142753601, 1.2185966968536377, 0.10363887250423431, -1.2401487827301025, 0.31719252467155457, -0.3049447238445282, 0.3780604302883148, -0.40789663791656494, 0.5860500335693359, 0.30678096413612366, 0.6474767923355103, 1.3047471046447754, 0.289694219827652, -0.40469738841056824, 0.5753230452537537, 0.038961902260780334, 0.1533934772014618, -0.5416051149368286, 0.3702959716320038, 0.10848259180784225, -0.7401353716850281, -0.06863237917423248, -0.8927410840988159, 0.9470384120941162, 0.6933156251907349, 0.11312028020620346, -0.24869240820407867, 0.7231000065803528, -0.17348185181617737, -0.18151968717575073, 0.16726136207580566, -0.1845238208770752, 0.9781448841094971, -0.42277804017066956, -0.017311491072177887, -0.36971554160118103, -0.20037004351615906, 1.690253734588623, -0.49110856652259827, -0.00575273297727108, -0.08103083074092865, 0.11518063396215439, 0.5537250638008118, -0.6633257269859314, 0.15312287211418152, -0.3472908139228821, -0.9536711573600769, -0.5402686595916748, -0.5273207426071167, -1.2490646839141846, 0.508408784866333, 0.5256789326667786, 0.5951522588729858, 1.3430066108703613, -0.06852149218320847, -0.7672553658485413, -0.6887258887290955, 0.0690024122595787, -0.20498338341712952, -0.24946793913841248, -0.4958122968673706, -0.8007246851921082, -0.7149034738540649, 0.6504629254341125, 0.6532343029975891, 0.17077308893203735, 0.9213958978652954, 0.595999002456665, -0.39803487062454224, 0.03168836981058121, -0.05866589397192001, 0.31626397371292114, 0.030707133933901787, 0.6164147853851318, -0.5165035724639893, -0.6035827398300171, 0.9886350035667419, 0.4416472315788269, 0.18816101551055908, 0.2012813687324524, 0.5338612794876099, 1.185674786567688, -0.6474911570549011, 0.5847557783126831, -0.16957475244998932, -1.3853610754013062, -0.7113135457038879, -0.10256500542163849, 0.35732904076576233, -1.0046225786209106, -0.7762348651885986, -0.7808113098144531, -0.6263417601585388, -0.7945027351379395, 0.7057173252105713, -0.36597636342048645, -0.7738997340202332, 0.16228602826595306, -1.0301789045333862, 0.5137991309165955, 0.11034505814313889, 0.8819599747657776, 0.2167268544435501, -0.5699408650398254, 0.7959025502204895, 0.5683829188346863, 0.4318799078464508, 1.0787625312805176, 0.7752346992492676, -0.030142908915877342, -0.35808590054512024, 0.8121680021286011, 0.25580447912216187, -0.6852015256881714, 0.4125833511352539, 0.5252788066864014, 0.30338987708091736, 0.4658754765987396, -0.2764700949192047, -0.6436399221420288, -0.757757842540741, 0.6034067273139954, 0.25004708766937256, -1.5968722105026245, 0.7564922571182251, -0.11768608540296555, -1.2416179180145264, -1.2451220750808716, 0.8476875424385071, -0.4760811924934387, 0.004570478573441505, -0.36311718821525574, 0.7978391051292419, -0.3888467848300934, 0.184170663356781, -0.1780363917350769, -0.2993010878562927, -0.6875173449516296, -0.9564682841300964, -0.10843975096940994, -1.3262605667114258, 0.3510770797729492, -0.6287286281585693, -0.5433638691902161, 0.13844892382621765, -1.0986367464065552, -0.6875629425048828, 0.16483251750469208, 0.49291694164276123, 0.25738418102264404, -0.6248217821121216, 0.13868339359760284, -0.8706421256065369, 0.5762528777122498, -1.4461811780929565, 0.8097420334815979, -0.8647443652153015, 0.40252232551574707, 0.2596675157546997, 0.42584434151649475, -0.9694730043411255, 1.0422080755233765, -0.3963879942893982, -1.4782932996749878, 0.0968526303768158, 0.2345195859670639, 0.34859466552734375, -0.334081768989563, 0.2437009960412979, 0.6785886287689209, 1.0946261882781982, -0.04184380918741226, 0.7586489319801331, -0.05582515150308609, -0.7127079963684082, -0.49588248133659363, -0.8133752346038818, 0.34651824831962585, -0.7898478507995605, -1.0652483701705933, 0.5118694305419922, 0.7206283211708069, -1.1012225151062012, 0.7180890440940857, -0.008266240358352661, -0.15622282028198242, 0.21118101477622986, 0.6861699223518372, 0.2576688528060913, 0.25932207703590393, -0.1499321013689041, -1.5288670063018799, -0.3368492126464844, 1.0143730640411377, 1.253570556640625, 0.014061042107641697, 1.307040810585022, 1.2523080110549927, 1.2666866779327393, 0.48048874735832214, 0.6802973747253418, -0.0601959303021431, -0.08411083370447159, -0.7768002152442932, -0.672637403011322, 0.2310105413198471, -0.6528103351593018, 2.119075059890747, 1.3806328773498535, -1.1897046566009521, -0.38636720180511475, -0.03323518484830856, 0.5535380244255066, -0.42035964131355286, -0.24573759734630585, -0.3190317451953888, 0.18689219653606415, 0.23381923139095306, -0.20707130432128906, 0.13641774654388428, -0.2539883553981781, 0.8806848526000977, -0.05721360072493553, -0.18617106974124908, -0.009791354648768902, 0.9328206777572632, -0.46592843532562256, 0.8184855580329895, 0.4548620283603668, -1.7431615591049194, -0.43925726413726807, 0.0666455626487732, 0.2547524869441986, 0.025878317654132843, -0.2215302735567093, 0.8231866955757141, 0.22289331257343292, -0.3417416214942932, 0.3322916328907013, 1.061875820159912, -0.1489613652229309, 0.027092574164271355, -0.6027483940124512, 0.16106517612934113, 0.658380925655365, -1.1455211639404297, -1.2888894081115723, 0.15850929915905, 0.5225169658660889, 0.7243512272834778, 1.0148956775665283, 1.488175392150879, -0.38028183579444885, -0.20647574961185455, -0.3877856731414795, -0.39510104060173035, -1.0379881858825684, -0.668225884437561, -0.4662814140319824, -0.5187691450119019, -0.4480718672275543, -0.8105573654174805, 0.2974891662597656, 0.5949573516845703, -0.4450152814388275, 0.1933843195438385, 0.9772468209266663, -0.296743780374527, 0.32953545451164246, 0.3212432563304901, 0.09443012624979019, -0.7615946531295776, 0.6149694919586182, 0.49464115500450134, -1.5911182165145874, -0.762221097946167, 0.09602712094783783, 0.2028665840625763, 0.9367414712905884, -0.13595883548259735, 0.2800561487674713, -0.8593577146530151, -0.6463200449943542, -0.09529337286949158, 1.0109061002731323, 0.3350784480571747, -0.5547800064086914, -0.8418734073638916, 0.2861432731151581, 0.6427471041679382, -0.4774990677833557, -0.5835753679275513, 0.6660581231117249, -0.23190440237522125, -0.5588260293006897, -0.3156254291534424, -0.1809701919555664, 0.5086803436279297, -0.34707748889923096, -0.6730048656463623, 0.6087757349014282, -0.2920837104320526, -0.5902199149131775, 0.36044275760650635, -0.7206763625144958, 0.9895440936088562, 0.3875446915626526, 0.7273313999176025, 1.4576605558395386, -0.6047863364219666, -0.265342652797699, -2.058091640472412, 1.1149014234542847, 0.256020724773407, 1.8840124607086182, -0.2465052306652069, 0.7085289359092712, 0.24801626801490784, -0.4704342782497406, 0.337586909532547, 0.31107795238494873, 0.6054670810699463, 0.14455987513065338, -0.5266692638397217, -0.34613996744155884, -0.4160558879375458, -0.043568480759859085, -0.16814886033535004, -0.1789846569299698, 0.18226678669452667, -0.925613522529602, -0.4295479953289032, 0.73468416929245, 0.713759183883667, -0.9705933928489685, -0.24105221033096313, 0.12028542906045914, 0.5961230397224426, 0.07757122814655304, 0.17606787383556366, 0.05528586730360985, -0.12935884296894073, -0.2731580138206482, -1.359907627105713, 0.02884148620069027, -0.30714255571365356, 0.3376867175102234, 0.6691297888755798, -0.6958238482475281, 0.3978995978832245, -1.2131558656692505, 0.6224914789199829, 0.7721750736236572, 0.07484353333711624, -0.07864093035459518, 0.4273582994937897, 0.43906641006469727, -0.19101345539093018, -0.42872339487075806, 1.2469632625579834, 0.4113438129425049, -0.5627730488777161, 0.5162107348442078, 0.2871275246143341, 0.5608896017074585, -0.2205650359392166, 0.36949723958969116, 0.49290376901626587, -0.9272289276123047, -0.44143134355545044, -0.0336967371404171, -0.03057902306318283, 2.137907028198242, 0.5605559945106506, -0.23839592933654785, 0.6137575507164001, -0.3835456073284149, -0.5799733996391296, 0.08666622638702393, 0.02643703855574131, -0.022227931767702103, -1.1123758554458618, 0.8010873198509216, 0.7917710542678833, -0.35914647579193115, 0.3317432403564453, 0.4057854115962982, 0.2596195638179779, 0.4749979078769684, -0.059045277535915375, 0.6461895704269409, 0.7176177501678467, 1.1765471696853638, 0.7509412169456482, 0.4754598140716553, -0.5780777335166931, -0.17167551815509796, 0.9737423658370972, -0.6968333721160889, -0.15704350173473358, 0.5318461656570435, 0.398382306098938, 1.1144376993179321, -1.507400631904602, -0.619725227355957, 0.8136298656463623, 0.20099692046642303, 1.0338046550750732, 0.6888803839683533, 0.30488404631614685, -0.7228400111198425, 0.15931583940982819, 0.4504915773868561, -0.14146538078784943, 0.6507322192192078, -0.17238561809062958, -0.5279340147972107, 0.034215204417705536, -0.6360440850257874, 0.14764505624771118, -0.52052241563797, -0.8851705193519592, -0.084888756275177, -0.8873282670974731, 0.4297798275947571, -0.06663132458925247, 0.8888663053512573, 0.6977683305740356, -0.26465266942977905, -1.1134145259857178, 0.8163787126541138, -0.7946397066116333, 0.05347544699907303, -0.40615034103393555, -0.9309555888175964, -0.38650941848754883, -1.0265995264053345, -0.5370809435844421, -0.21689866483211517, -0.9168910384178162, -0.18099445104599, -0.10329671204090118, -1.005608320236206, 0.11075930297374725, 0.17404460906982422, 1.058239459991455, 1.0973137617111206, -0.09280211478471756, 0.5168004035949707, 0.2612638771533966, -1.3015317916870117, -0.26960110664367676, 0.9652521014213562, -0.06856812536716461, -0.04722030460834503, -1.2086169719696045, -0.3409922122955322, 1.6795517206192017, 0.5668959617614746, -0.5518860220909119, 0.667565643787384, 0.9101828336715698, 1.341933250427246, 0.04349682107567787, -1.3521254062652588, 0.33946648240089417, -0.4987805485725403, 0.5202829241752625, 1.2074631452560425, -0.8235154151916504, -0.5101417303085327, -0.6534295082092285, -1.7671111822128296, 1.8412175178527832, 0.024426419287919998, -0.2859017550945282, 1.5081655979156494, 0.7360712289810181, -0.019899794831871986, 0.22367510199546814, -0.32290127873420715, -0.012862720526754856, 0.0993909016251564, -0.08422430604696274, -1.3137390613555908, 0.787492036819458, 0.22894901037216187, 0.1326856166124344, 0.07179515063762665, 0.3454180955886841, -0.5722072124481201, 0.03516564145684242, -0.13008412718772888, 0.7199198603630066, -0.1838056892156601, 0.5871171951293945, -0.1664813756942749, -0.11301916837692261, -0.057014770805835724, -0.9004505276679993, -0.10034315288066864, 0.20347246527671814, 0.7487587928771973, 0.26820746064186096, -1.3617806434631348, 0.4145008325576782, -0.2371015101671219, 0.15074960887432098, -0.15435856580734253, -0.4904462993144989, 1.3657904863357544, 0.5187064409255981, -0.002762464340776205, 0.8372296690940857, -0.08618704229593277, -0.5525912046432495, -0.9102253913879395, -0.8574255108833313, 0.11594285070896149, -1.257206678390503, -0.23785077035427094, -0.6720466613769531, -0.151620551943779, 0.12296037375926971, -0.12440416216850281, 0.3465688228607178, -1.2004081010818481, -1.474125862121582, -0.929905354976654, -0.3091334402561188, 0.622299313545227, -1.0827107429504395, 0.0799134224653244, 0.15740685164928436, -1.4907066822052002, 0.3215096890926361, -0.11378572136163712, -1.3408974409103394, 0.0516321174800396, -1.296484351158142, 0.5689824223518372, -0.4914478659629822, 0.6699724793434143, -0.8272597789764404, 0.9458341598510742, -1.1669617891311646, -0.589337170124054, -1.409196138381958, -0.3921929597854614, 1.369903564453125, 0.8168184161186218, -0.656173825263977, 1.6888315677642822, -0.1999274343252182, -0.9220129251480103, -0.342722088098526, 0.778080940246582, -0.9342686533927917, -0.22844645380973816, 0.6783584952354431, 0.1284746676683426, 0.560276448726654, 1.4716917276382446, 0.9008489847183228, 0.6484072804450989, 0.31618988513946533, 0.156946063041687, -0.9696621298789978, -1.0702857971191406, -0.15480051934719086, 0.4874213635921478, -0.8760653734207153, -0.8754779696464539, 0.13094688951969147, -0.5028085112571716, -0.7000902891159058, 1.2562999725341797, 0.7959840893745422, -1.3069615364074707, -0.1197030320763588, -0.3740457594394684, 0.42817556858062744, -0.5010359287261963, 0.12926903367042542, 0.5353444218635559, -0.14438791573047638, 0.3563334345817566, -0.27021509408950806, -0.15749311447143555, -1.3505229949951172, 0.13381944596767426, -0.22315597534179688, 0.4273971915245056, -0.5297841429710388, 0.6186901330947876, 0.47619888186454773, -0.48183152079582214, -0.7940835952758789, 1.3248134851455688, 0.9010537266731262, -0.21943876147270203, 0.2489526867866516, -0.49669259786605835, -0.20205415785312653, 0.9196298122406006, -0.6966472268104553, 0.1731194257736206, -1.0276414155960083, 0.5495443344116211, 0.16288445889949799, -0.22074571251869202, -0.07542788237333298, 0.10626818239688873, -0.2430228441953659, 0.22502398490905762, 0.7478340268135071, 0.2602914571762085, -0.34692370891571045, 1.3123196363449097, 1.1830438375473022, -0.2378399819135666, 0.4758477509021759, -0.1919320821762085, 0.6305060386657715, -0.27548059821128845, 0.8070699572563171, 0.5009307861328125, -0.49068063497543335, 0.42381399869918823, 0.025937698781490326, -0.19787105917930603, -0.1260605901479721, -0.2735650837421417, -1.4519836902618408, -0.16998820006847382, -0.9512189626693726, -0.15560634434223175, 0.8265284299850464, -0.6049816608428955, -0.47811657190322876, 0.520225465297699, 0.00230729510076344, -0.03542850911617279, -0.7481583952903748, -0.9654398560523987, -0.4643627107143402, 0.22613967955112457, 1.0554988384246826, -0.528876006603241, 1.1411582231521606, -0.039527103304862976, -0.1603909283876419, -0.9611430168151855, -0.4680699110031128, -0.11137773841619492, 0.500052809715271, -0.2706039547920227, 0.5336790680885315, 0.8871360421180725, -0.9456084370613098, -0.8594485521316528, -0.14795731008052826, 0.026214202865958214, 0.5642409324645996, -0.11461139470338821, -0.5120394825935364, -0.2089480757713318, 1.031104564666748, -0.007640873081982136, 0.27764058113098145, -0.3652510643005371, -0.9926546812057495, 0.3453960418701172, 0.12896199524402618, 0.7370986342430115, -0.46152934432029724, 0.2819344103336334, 0.24208129942417145, -0.5281739830970764, 0.11347261071205139, -0.6530219316482544, 0.40727946162223816, -0.10373957455158234, 0.15170663595199585, -0.28535327315330505, -0.06534738838672638, -0.30706387758255005, -1.0615357160568237, 0.13562911748886108, -0.4700104892253876, -0.05578545108437538, -0.11582701653242111, -0.9599443078041077, -0.551274299621582, -0.6671341061592102, -0.43175867199897766, 1.0150543451309204, 0.4393705725669861, 0.7405251264572144, -0.43895357847213745, -0.8630434274673462, -0.5030757784843445, 0.6538901329040527, 0.14823821187019348, 0.526361882686615, 1.770547866821289, 1.5598723888397217, 0.17518877983093262, 0.4298747181892395, 0.26534250378608704, 0.4044346213340759, -0.7528064846992493, -0.19039618968963623, -1.1692904233932495, -0.10397431254386902, -1.0624524354934692], [-0.03050031140446663, 1.519787311553955, -1.7598345279693604, -1.2673200368881226, 0.016337672248482704, 0.39261800050735474, 0.33048343658447266, 0.29262202978134155, 0.045166317373514175, -0.8558496832847595, -1.33159601688385, 0.38148075342178345, 1.6780000925064087, 1.1715619564056396, 0.22841227054595947, 0.5089072585105896, 0.6343953013420105, -0.394828736782074, -0.0005024760030210018, 0.541894793510437, -0.6608324646949768, -1.060376524925232, 0.03246615454554558, 0.026319235563278198, 0.5658137202262878, 0.033279888331890106, -2.1679868698120117, -0.3885274827480316, -1.4500055313110352, -0.849059522151947, 0.4121493995189667, -0.7788496017456055, -0.553024411201477, 0.15599653124809265, -1.1493300199508667, -0.6939574480056763, 1.1447030305862427, 0.45816928148269653, 0.7400335669517517, 1.3839151859283447, 0.9189343452453613, 0.4258614182472229, -0.005943180527538061, -1.1061933040618896, 0.39983975887298584, 0.13978636264801025, -0.08785216510295868, -1.5481760501861572, 0.24686740338802338, -0.6847546696662903, 0.8643267154693604, 0.14501595497131348, 0.4437401592731476, 0.7055026292800903, 1.0351661443710327, -0.08724766224622726, -0.3452168107032776, -0.5378468632698059, 0.7258430123329163, -0.6085445880889893, 1.1122161149978638, 0.4058154821395874, -0.20605774223804474, 1.1295156478881836, 0.24919600784778595, -0.30851447582244873, -0.06061602756381035, 0.3584015667438507, -0.1466561108827591, -0.5019159317016602, 0.2779499888420105, -0.013700857758522034, -0.06569813191890717, 0.6526708006858826, -0.5368213653564453, 0.6093546748161316, 0.7347652316093445, 0.2189415544271469, 0.1932656317949295, 1.2922419309616089, -0.012864463031291962, -0.5174288749694824, 0.2787264287471771, -0.47206708788871765, 0.8595197796821594, -0.20259630680084229, -0.29136112332344055, -0.4906952381134033, -0.47392648458480835, 1.9715369939804077, -0.08905909955501556, 0.005209834314882755, -0.38094156980514526, 0.08937306702136993, -0.10443264991044998, -0.6446783542633057, 0.2124054729938507, -0.3317534625530243, -0.7423399090766907, -0.7989280819892883, -0.7243496775627136, -0.4337468147277832, 0.3196355700492859, 0.17075009644031525, 0.7761824131011963, 1.2155433893203735, 0.30470985174179077, -1.312669038772583, -0.4252438545227051, 0.17841170728206635, 0.6033049821853638, 0.008353465236723423, -1.2582730054855347, -1.1433759927749634, -0.8533151149749756, 0.7120475172996521, 0.6176853775978088, -0.8349908590316772, 1.0283985137939453, 0.7705914378166199, -1.12528657913208, -0.2669985294342041, -0.9382004737854004, 0.7210426926612854, 0.29946377873420715, 0.4337829649448395, -0.290163516998291, -0.3221053183078766, 0.4075409173965454, 0.14528360962867737, 0.4179963767528534, -0.012207121588289738, -0.010442554019391537, 0.734663188457489, -0.4856511056423187, 0.8191737532615662, -0.13024768233299255, -1.3835631608963013, -0.02604478783905506, -0.1905122846364975, 0.37890756130218506, -0.7150882482528687, -0.6584724187850952, -0.7798882722854614, -0.5862316489219666, -0.8181766271591187, 0.14689387381076813, -0.5667896270751953, -1.1726101636886597, -0.029545845463871956, -0.8833504915237427, 0.30534499883651733, 0.37693125009536743, 1.3037391901016235, -0.2282659411430359, 0.19774699211120605, 0.20714588463306427, 0.22595970332622528, 0.188019797205925, 0.3573637902736664, 0.8661508560180664, 0.2221420705318451, -0.5760681629180908, 0.8644969463348389, 0.13631857931613922, -0.4526163339614868, 0.22443687915802002, 0.44246312975883484, 0.16306230425834656, 0.6086941361427307, -0.5039109587669373, 0.21932484209537506, -0.6032750010490417, 0.5191794633865356, 0.13407665491104126, -1.0497369766235352, 0.7642648220062256, -0.7128020524978638, -0.8565084338188171, -1.0233074426651, 0.9153441190719604, -0.6597858667373657, -0.10033851116895676, -0.6668775081634521, 0.3577755391597748, -0.1894606351852417, 0.08202280849218369, 0.00103857833892107, -0.4617779850959778, -0.5415636897087097, -0.7853533625602722, -0.31858956813812256, -1.0683534145355225, -0.4660077393054962, -0.35605284571647644, -1.2238080501556396, -0.3251127302646637, 0.11785828322172165, -0.7103308439254761, 0.2935503423213959, -0.20184096693992615, 0.09087048470973969, -1.857663869857788, -0.0955670028924942, -0.7608185410499573, 1.3709458112716675, -0.2112605720758438, 0.6441842913627625, -0.823544979095459, 0.21757039427757263, 1.1622686386108398, 0.06372767686843872, -0.8390271067619324, 0.8751029372215271, 0.14977744221687317, -0.2962459921836853, 0.277733713388443, -0.1280428171157837, -0.496853232383728, 0.022877037525177002, 1.4528218507766724, 0.6781924366950989, 0.11296519637107849, 0.19767549633979797, 0.39568519592285156, 0.4611135423183441, -0.9966364502906799, -0.4578115940093994, -1.0608956813812256, -0.09417957067489624, -0.5241227149963379, -0.9273665547370911, 1.4444650411605835, 0.6437743902206421, -0.48500174283981323, 0.5531657934188843, -0.14707429707050323, 0.4863784611225128, 0.40442296862602234, 0.6630460619926453, 0.15430977940559387, 0.4156060814857483, -0.6398274898529053, -0.4606250822544098, -0.6846787929534912, 0.09413015842437744, 0.8073316216468811, -0.7200354933738708, -0.3209865987300873, 1.4294997453689575, 0.7713630795478821, -0.14223307371139526, 0.48417699337005615, -0.052168216556310654, -0.010111115872859955, -0.5225512981414795, -0.40974438190460205, 0.2721865773200989, -0.3058761656284332, 1.117401123046875, 1.0622127056121826, -1.0827146768569946, -0.6732125282287598, -0.19251608848571777, -0.0027099172584712505, -0.47992926836013794, -0.21902203559875488, -0.4822165071964264, 0.6011320948600769, -0.044694311916828156, 0.397417813539505, 0.7557491660118103, -0.017570625990629196, 0.486052930355072, -0.44599926471710205, 0.17928433418273926, -0.1946079283952713, 0.5496535301208496, -0.2555880844593048, 0.5569402575492859, 0.0007745428010821342, -0.9223392605781555, -0.7588959336280823, -0.11040304601192474, 0.6215384006500244, -0.1425343006849289, -0.4446316063404083, 0.93150395154953, 0.5096952319145203, -1.1301404237747192, -0.27551183104515076, 0.34472179412841797, -0.4049680531024933, -0.18598605692386627, -0.14306557178497314, 0.39721396565437317, 1.1786870956420898, -0.07926896959543228, -0.7273796200752258, -0.011186531744897366, 0.5714062452316284, 1.0806573629379272, 0.8818289041519165, 1.158189296722412, -0.28804779052734375, -0.22597792744636536, 0.03607193008065224, 0.0767391249537468, -0.6879062056541443, -0.02004600316286087, -0.9621691703796387, -0.8379282355308533, 0.7162727117538452, -0.23325493931770325, 0.36043140292167664, 0.4424009323120117, 0.06450669467449188, 0.5271539092063904, 0.7382970452308655, -0.5890181660652161, -0.23871394991874695, 0.03216428682208061, -0.2809864282608032, -1.007900357246399, 0.5633997321128845, 0.240160271525383, -0.7560744285583496, -0.10995862632989883, -0.220059335231781, -0.5763800144195557, 0.5482264757156372, -0.39030054211616516, 0.4205702543258667, -0.9788134694099426, -0.0521378256380558, 0.21671898663043976, 1.407592535018921, -0.2532319724559784, -0.46524640917778015, -1.1305315494537354, -0.1149914413690567, 0.25473496317863464, 0.1938396394252777, -0.8134467005729675, 0.9816586375236511, 0.12454373389482498, -0.5920799374580383, -0.4542088508605957, 0.3798494338989258, 1.3120918273925781, -0.3252178728580475, 0.1512504518032074, 0.2747332751750946, 0.3719562292098999, -0.2986367344856262, -0.06402130424976349, -0.2369677573442459, 1.373428225517273, 0.23991388082504272, 0.3529326319694519, 1.2625447511672974, -0.46430638432502747, -0.40606269240379333, -2.044196605682373, 1.0449858903884888, -0.19540514051914215, 1.791028380393982, 0.32025107741355896, 0.6637632846832275, 0.4418984651565552, -0.9563398361206055, -0.40499797463417053, 0.4935206472873688, 0.3343164324760437, 0.3779188096523285, -0.8756787180900574, -0.630953311920166, 0.07476115971803665, -0.5660079717636108, -0.5626725554466248, -0.8148317337036133, 0.10322467237710953, -0.7596623301506042, -0.5801307559013367, 0.7270920276641846, 1.3491878509521484, -0.04482200741767883, 0.16954252123832703, 0.7024118304252625, -0.19419077038764954, -0.3436224162578583, 0.2518254518508911, -0.76349276304245, -0.24700887501239777, -0.3217792510986328, -1.0807442665100098, -0.5575998425483704, 0.33825525641441345, 0.3351942002773285, 0.5638390779495239, -1.0340701341629028, -0.2250153124332428, -0.3791453540325165, 0.05494121462106705, 0.3165603578090668, 0.45838746428489685, 0.06427986919879913, 0.41524118185043335, 0.29270559549331665, -0.4531828761100769, 0.16698603332042694, 0.7324572205543518, -0.09945949167013168, 0.0031141589861363173, -1.0266149044036865, -0.07410243153572083, -0.002449341118335724, 0.004401938524097204, -1.106343388557434, 0.3533306121826172, -0.2738174498081207, 0.2611614763736725, -0.03807641938328743, 0.30545592308044434, 1.4250564575195312, 0.7389867305755615, 0.4753612279891968, 0.9972791075706482, -0.5123412609100342, -0.6694768667221069, 0.1641162782907486, -2.515967935323715e-06, -0.37031760811805725, -0.6367253661155701, 0.4476655423641205, 0.529181957244873, 0.055449727922677994, 0.9035648703575134, 0.20381921529769897, 0.7370646595954895, 0.4351283013820648, -0.21485671401023865, 0.036212027072906494, 0.7415063381195068, 0.7917454838752747, 0.40256887674331665, 0.6816917061805725, 0.20802909135818481, -0.7663577795028687, 1.6949963569641113, -0.9615012407302856, -0.10418327897787094, 0.2295629233121872, 0.301754891872406, 1.4230729341506958, -1.0942106246948242, -0.49873989820480347, 0.14849527180194855, -0.3999128043651581, 0.22670064866542816, 0.5337290167808533, 0.9020441174507141, -0.752987265586853, 0.5119239091873169, 1.041097640991211, 0.11479932069778442, 0.8641222715377808, -0.7340439558029175, -0.38425391912460327, -0.1260019689798355, -0.5247454643249512, 0.7396103739738464, -0.6670345664024353, -0.005679901689291, 0.3421051800251007, -0.3611905574798584, 0.20364511013031006, 0.044045720249414444, -0.04973958060145378, 1.4704452753067017, 0.009273315779864788, -1.0953590869903564, 0.23597116768360138, -0.961871862411499, 0.45575016736984253, -0.15383639931678772, -0.9526647925376892, 0.14025376737117767, -0.6359403729438782, -0.22007973492145538, -0.1260232925415039, -0.7846429944038391, -0.12141479551792145, 0.4657188951969147, -0.9001988172531128, -0.4674548804759979, 0.04445437341928482, 1.1629382371902466, 0.6639020442962646, 0.11296127736568451, 0.2920861840248108, 0.5453933477401733, -0.6044590473175049, -0.12601026892662048, 0.49008479714393616, -0.5533831715583801, 0.2668033242225647, -1.1517937183380127, -1.0930054187774658, 1.0755763053894043, 0.9309418201446533, 0.47757577896118164, 0.23480047285556793, 1.076984167098999, 1.412518858909607, -0.5529993772506714, -0.7755268216133118, 0.09277079999446869, -0.8023804426193237, 0.6604931950569153, 0.7360488772392273, -0.822397768497467, -1.271476149559021, -0.38061246275901794, -1.522081732749939, 1.431654691696167, -0.23489508032798767, -0.6505526304244995, 0.8883740305900574, 1.561673879623413, 0.3131847381591797, 0.8779158592224121, -0.6391505599021912, -0.12136328220367432, 0.404558390378952, -0.5004606246948242, -1.0964463949203491, 0.4161434471607208, 0.5038200616836548, 0.36874961853027344, -0.0834176316857338, 0.8677972555160522, -0.031309980899095535, -0.37638503313064575, 0.020217621698975563, 0.5125723481178284, 0.1772417575120926, 0.5577568411827087, 0.6064996123313904, -1.2229119539260864, -0.7278668880462646, -0.3361155390739441, 0.34392669796943665, 0.8554391860961914, 0.9113694429397583, -0.16559500992298126, -1.4589929580688477, -0.20320215821266174, -0.35243508219718933, -0.20568367838859558, 0.05886084586381912, -0.599976658821106, 1.5692538022994995, 0.17324580252170563, -0.7168009281158447, 0.7835369110107422, 0.1048484593629837, -0.491685152053833, 0.0984402671456337, 0.08179362863302231, 0.5374796986579895, -1.6815992593765259, -0.7473176121711731, -0.2500306963920593, 0.11251497268676758, 0.5577800273895264, 0.4897289574146271, -0.29774871468544006, -0.782827615737915, -1.773506760597229, -0.03920456022024155, 0.07712186127901077, 0.7038198113441467, -1.3733934164047241, -0.17702440917491913, 0.5415537357330322, -1.431286096572876, 0.4612334072589874, 0.12608954310417175, -0.9364937543869019, -1.0685231685638428, -1.2456251382827759, 0.7479705810546875, 0.6022825241088867, 0.42473769187927246, -0.17972849309444427, 0.6491060256958008, -0.5736752152442932, -0.12357571721076965, -1.050358533859253, 0.1302158087491989, 1.1665207147598267, 0.7376946806907654, -0.25208306312561035, 0.7059446573257446, 0.06825582683086395, -0.5463771224021912, 0.3459031283855438, 0.4792855381965637, -0.4962901473045349, 0.2210063934326172, 0.5259105563163757, -0.09012399613857269, 0.43638360500335693, 1.0570493936538696, 0.3561113476753235, 0.9120621085166931, 0.11427894979715347, 0.6147992610931396, -0.22937361896038055, -0.3054051697254181, -0.19438329339027405, 0.03748072311282158, -0.8605753779411316, -0.7521023750305176, -0.21522386372089386, -0.528399646282196, -0.20795315504074097, 0.8004297614097595, 0.6657247543334961, -0.7814422249794006, -0.6379312872886658, -0.3501662611961365, 0.4434713125228882, -0.07865484058856964, 0.5572137236595154, -0.1286996454000473, -0.011268670670688152, 0.4665565490722656, 0.052103109657764435, 0.7974407076835632, -0.8950667977333069, 0.6868046522140503, -0.3119301199913025, 0.40105393528938293, -0.2875922918319702, 0.24422700703144073, 0.5658533573150635, -0.34787723422050476, -0.7387626767158508, 1.4656062126159668, 1.1797517538070679, 0.42786502838134766, 0.19412566721439362, 0.15137217938899994, 0.17046158015727997, 0.9661902785301208, -0.8286235332489014, 0.07624217867851257, -1.074826717376709, 0.3822636008262634, 0.015319869853556156, 0.35008499026298523, -0.6255936026573181, 0.5179336071014404, -0.35137179493904114, 0.11686453968286514, 0.8465973138809204, 0.022571219131350517, -0.41706064343452454, 0.6563010215759277, 0.7451357245445251, -0.6194837093353271, 0.17235150933265686, 0.2611473500728607, 0.5772728323936462, 0.20849479734897614, 0.38630762696266174, 0.3229276239871979, -0.5546296238899231, -0.04710495099425316, 0.6633955836296082, -0.7039307355880737, -0.04200397804379463, -0.7293024659156799, -1.798348307609558, -0.3490576446056366, -0.09999800473451614, -0.703391432762146, 0.22898021340370178, -1.1152409315109253, -0.680684506893158, 0.5025748014450073, -0.360893189907074, 0.527908444404602, -0.9548206329345703, 0.13557682931423187, 0.08211912214756012, 0.5370687246322632, 1.067757248878479, -0.2332296073436737, 0.7520347237586975, 0.2787274718284607, 0.1623021811246872, -0.3861068785190582, 0.1804157942533493, -0.05080194026231766, 0.6148737668991089, 0.10667982697486877, 0.027683652937412262, -0.7987067103385925, -0.8877117037773132, -0.698799192905426, 0.19059595465660095, 0.09018487483263016, 0.4301712214946747, -0.3578064739704132, -0.7886250615119934, -0.6353408694267273, 1.345481514930725, 0.6235695481300354, -0.22203998267650604, -0.5535027384757996, -0.5220932364463806, -0.028741639107465744, 0.1505175232887268, 0.8862307667732239, -0.6612364649772644, 0.3155404329299927, -0.07036174088716507, 0.11542309075593948, -0.12328378111124039, -0.1968260258436203, 0.3455398380756378, -0.3956907093524933, 0.6420283913612366, -0.3622475862503052, -0.6284970641136169, 0.6638714075088501, -0.7060315608978271, 0.21159523725509644, -0.0029669080395251513, -0.3087831735610962, 0.26466017961502075, -0.3395051658153534, -0.9747138023376465, -0.47811073064804077, 0.3069644868373871, 0.3082462251186371, 0.6735004186630249, -0.06412405520677567, -0.1772872507572174, -0.8421100974082947, 0.29783645272254944, 0.5650089979171753, -0.40157872438430786, 0.7603289484977722, 1.9514873027801514, 1.7039906978607178, 0.05596008524298668, -0.4772772789001465, -0.4936015009880066, 1.2557399272918701, -0.9192730188369751, -0.5608339309692383, -1.2736930847167969, -0.2600504755973816, -0.23361517488956451], [0.40331095457077026, 1.0182816982269287, -1.3900095224380493, -0.49305015802383423, 0.5528031587600708, 0.307683527469635, 0.6195558309555054, 0.5907474756240845, 0.23104335367679596, 0.13046276569366455, -0.919847846031189, 0.5722621083259583, 0.7806896567344666, 0.35324814915657043, 0.4852963984012604, 0.11502064764499664, 1.0998966693878174, -0.34260424971580505, -0.02563394233584404, 0.237651064991951, -0.566108226776123, -1.2801159620285034, -0.16583658754825592, 0.3333348333835602, -0.07572858035564423, 0.4267045557498932, -1.8435355424880981, -0.16792725026607513, -1.9732297658920288, -0.12876002490520477, 0.9137781262397766, -0.7451598644256592, -0.14610040187835693, -0.1449168473482132, -1.9016740322113037, 0.09668366611003876, 1.0331480503082275, -0.04022783413529396, 0.2592718303203583, 0.05683540925383568, 1.5402228832244873, -0.26431015133857727, -0.3634929060935974, -1.2340471744537354, 1.0807644128799438, -0.09726214408874512, 0.9543488025665283, -1.7646329402923584, 0.05227034166455269, -1.046599268913269, 0.43564707040786743, 0.4206794500350952, -0.5961771607398987, 0.932494044303894, 0.5720638632774353, -0.6791625022888184, 0.16356681287288666, -0.06472479552030563, 0.2560889422893524, -0.3799436390399933, 1.2851067781448364, -0.327301949262619, -0.7807406187057495, 0.829336941242218, 0.8125256299972534, -0.01800469495356083, 0.2635660767555237, 0.3978702127933502, -0.7841870188713074, -0.3133086562156677, 0.2666114568710327, 0.40420499444007874, -0.7155894637107849, -0.08696708083152771, -0.19110623002052307, 0.724668025970459, 0.6224313378334045, -0.32773280143737793, 0.006856793537735939, 0.5462610125541687, -0.7048773169517517, 0.12721340358257294, -0.2988245487213135, -0.5789920091629028, 0.19003692269325256, 0.6003054976463318, -0.01703554391860962, -0.18278644979000092, -0.2035250961780548, 1.1412440538406372, -0.3656185269355774, 0.055896174162626266, -0.23451533913612366, -0.20411111414432526, -0.07087724655866623, -0.22686776518821716, 0.14839938282966614, -0.39350390434265137, -0.7876648306846619, -1.2486201524734497, -0.6456700563430786, -0.7077040076255798, 0.48206424713134766, 0.23718000948429108, 1.2507950067520142, 0.8058106303215027, 0.3911930322647095, -1.2992687225341797, 0.10433229058980942, -0.06770377606153488, -0.5410218834877014, 0.6959213614463806, -1.0699505805969238, -0.6704733371734619, -0.641988217830658, 0.9812842607498169, 0.4945184886455536, -0.9263558983802795, 1.0297483205795288, 0.7571330070495605, -1.0473295450210571, 0.22845591604709625, -1.071749210357666, 0.9140028953552246, 0.4597739577293396, 0.6869736909866333, -0.433329701423645, -0.2948911488056183, 0.7913302183151245, 0.7669086456298828, 0.1364200860261917, 0.33798304200172424, -0.18669794499874115, 1.5708179473876953, -0.4089585840702057, 1.0658210515975952, -0.23603704571723938, -1.121049404144287, -0.22989998757839203, -0.040090590715408325, 1.0846034288406372, -1.1949715614318848, -0.16657012701034546, -0.16314245760440826, -0.5518069863319397, 0.0755172148346901, 0.10256601870059967, 0.18714645504951477, -1.0835014581680298, 0.5228787660598755, -0.8318942785263062, 0.33482858538627625, 0.230740025639534, 1.404138207435608, -0.07539566606283188, -0.02717638574540615, 1.1085162162780762, 0.1722414791584015, 0.19620931148529053, 0.07418741285800934, 1.0662460327148438, 0.005803117528557777, -0.8277431130409241, 1.2170354127883911, 0.20191119611263275, -0.35982269048690796, 0.3313436806201935, 0.286166250705719, -0.14498509466648102, 0.49404552578926086, -0.44824057817459106, -0.6087192893028259, -0.10105118155479431, 1.0051161050796509, 0.21977998316287994, -0.7686675190925598, 0.8501896858215332, -0.5883781909942627, -1.3275632858276367, -0.808800995349884, 1.6318994760513306, -0.24558548629283905, 0.44395911693573, -0.5992355942726135, 1.0538818836212158, 0.26161476969718933, 0.005746031180024147, 0.8256176114082336, -0.08457662910223007, -0.6582211852073669, -0.8624729514122009, -0.7135453224182129, -1.0562056303024292, 0.05779428407549858, -0.9740383625030518, -1.1556377410888672, 0.12417509406805038, -0.4846562445163727, -0.15752843022346497, 0.43409764766693115, -0.15261909365653992, -0.06354273855686188, -1.4259028434753418, -0.5879653096199036, 0.12324542552232742, 1.0324816703796387, -0.30956488847732544, 0.5597089529037476, -0.26901593804359436, 0.06405975669622421, 1.4857404232025146, 0.191297709941864, -0.7630881071090698, 0.13986296951770782, -0.39974409341812134, -0.8884690999984741, 0.1573203057050705, -0.1181497573852539, 0.3178751766681671, 0.671718955039978, 0.47798141837120056, 0.7598651647567749, 0.13506071269512177, 0.2547563910484314, 0.602548360824585, 0.6296780109405518, -1.4696778059005737, -0.9566888809204102, -0.9834973812103271, -0.9360007047653198, -0.9343176484107971, -1.5017374753952026, 0.6743568778038025, 0.4064282476902008, -0.6673503518104553, 0.11190354079008102, -0.17750395834445953, 0.4836238622665405, 0.044152434915304184, 1.1656476259231567, 0.3198396861553192, 0.4739607572555542, -0.5888729095458984, 0.10066934674978256, -0.7530930638313293, -0.014655757695436478, 1.1589370965957642, -0.32172638177871704, -0.13307881355285645, 1.3143807649612427, 1.8204996585845947, -0.12735888361930847, 1.0373446941375732, 0.14977498352527618, 0.30280569195747375, -0.5786274075508118, -0.16471967101097107, -0.30833229422569275, -0.7625502943992615, 1.249819278717041, 0.3760920464992523, -1.0235832929611206, -0.3559964895248413, -0.2525935769081116, -0.7974061369895935, 0.01000326406210661, 0.05781158059835434, -0.860289990901947, 0.2150171846151352, -0.2882782518863678, 0.5915858149528503, -0.23981671035289764, -0.02726353146135807, 0.6508084535598755, -0.4621202051639557, -0.2172725349664688, -0.5264158844947815, -0.15884312987327576, -0.08347138017416, 0.40841972827911377, -0.13534660637378693, -0.788268506526947, -0.12105382978916168, 0.45975103974342346, 0.64887934923172, -0.5347524285316467, 0.0913558304309845, 1.349733829498291, 0.7861350774765015, -0.5864341259002686, -0.1172589436173439, 0.20032015442848206, -0.14240294694900513, -0.026247091591358185, 0.34342941641807556, 0.42664074897766113, 0.5224262475967407, -0.6560969352722168, -1.0602772235870361, -0.0648324266076088, 0.23992763459682465, 0.6368732452392578, 0.6921730637550354, 0.874281644821167, -0.5496841669082642, -0.34822872281074524, -0.7085513472557068, 0.10702096670866013, -0.7376121878623962, -0.35711610317230225, -0.4001772105693817, -0.7253950238227844, 0.14711889624595642, -0.793033242225647, 0.519126296043396, 0.34847554564476013, 0.043373409658670425, 0.5989487767219543, 1.3320930004119873, -0.1416018158197403, -0.10138487070798874, 0.04877893254160881, -0.09754791110754013, -0.7773996591567993, 0.7147960066795349, 0.3815617859363556, -0.919324517250061, -0.40654420852661133, -0.6949561834335327, -0.2560465335845947, 0.49215471744537354, -0.08819365501403809, 0.591196596622467, -1.217864751815796, -0.45175719261169434, 0.22487019002437592, 1.3349127769470215, 0.09115511178970337, -0.3982275724411011, -0.6015532612800598, -0.09582117199897766, 0.30236002802848816, 0.15150856971740723, -0.006692187860608101, 0.8741160035133362, -0.31749027967453003, -0.41484200954437256, -0.17812438309192657, 0.5028549432754517, 0.7629430294036865, -1.187811017036438, -0.20972643792629242, -0.03470921143889427, -0.12474305182695389, -0.9807130098342896, -0.34929874539375305, -0.0789053812623024, 0.7322315573692322, 0.6138537526130676, 0.3727877736091614, 1.506448745727539, -1.120405912399292, -0.1410086452960968, -1.6227067708969116, 0.778731107711792, 0.20922240614891052, 1.4202220439910889, 0.1214480847120285, 0.4761351943016052, 0.558984100818634, -0.4629676043987274, -0.04986463859677315, 0.5891528129577637, 0.8306800723075867, 0.08943331241607666, -0.8830990195274353, -0.4373190701007843, -0.2911834418773651, -0.19003604352474213, -0.7052221894264221, 0.1012813001871109, -0.004487907979637384, -0.5783995985984802, -0.7593830227851868, 0.7767345905303955, 0.8961647152900696, -0.3284737765789032, -0.6054744720458984, -0.45172590017318726, 0.4264962673187256, -0.7765963077545166, 0.08624948561191559, -0.2770431339740753, -0.19378215074539185, -0.21879823505878448, 0.01577567122876644, -0.5858489871025085, 0.26000139117240906, -0.27545762062072754, 0.9510166049003601, -1.2471343278884888, 0.010938793420791626, -1.1748619079589844, 0.7414641380310059, 0.3434165120124817, 0.5849848389625549, 0.1051388680934906, 0.30281946063041687, -0.26781362295150757, -0.17636381089687347, 0.06393056362867355, 1.139562726020813, -0.23565274477005005, -0.33022865653038025, -0.33869051933288574, -0.5270757675170898, 0.27723556756973267, -0.4915139973163605, -0.6398329138755798, 0.12320732325315475, -0.3330064117908478, -0.11363458633422852, 0.09610728174448013, 0.4893825054168701, 1.6697555780410767, 0.885526180267334, -0.38347429037094116, 0.6667419672012329, 0.031683627516031265, -0.035579387098550797, 0.11654554307460785, 0.44892647862434387, -1.0890592336654663, -0.5067521333694458, 0.6758172512054443, 0.8434134721755981, 0.2798961102962494, 0.5081722140312195, -0.23431043326854706, 0.43651288747787476, 0.02067941054701805, -0.09340473264455795, 0.3233453929424286, 0.9591984748840332, 0.8051841259002686, 0.3149925768375397, 1.3421756029129028, -0.07295309752225876, -0.4482862949371338, 1.2377828359603882, -0.9719229340553284, 0.4730043113231659, 0.42479461431503296, -0.20605963468551636, 0.7275451421737671, -1.9735296964645386, -0.7709518671035767, 0.6596532464027405, -0.20393560826778412, 0.2113676816225052, 0.40564867854118347, 0.6516547203063965, -0.22007502615451813, 0.1547996997833252, 0.5498323440551758, 0.4206998944282532, 1.2499827146530151, -0.5745047926902771, 0.1390877217054367, 0.3902112543582916, -1.2478424310684204, 0.8571147322654724, -0.8572364449501038, -0.2768966257572174, 0.8073516488075256, -0.20618140697479248, 0.2917684316635132, 0.5391432642936707, 0.32302138209342957, 1.3402312994003296, 0.09287121146917343, -1.4454265832901, 0.6549608111381531, -0.9561289548873901, 0.10330339521169662, -0.641313910484314, -0.009754141792654991, -0.3136223256587982, -0.6769746541976929, -0.03792911767959595, -0.20725657045841217, -0.4725930392742157, -0.10526347160339355, 0.3231339454650879, -0.985897421836853, -0.43639129400253296, 0.5410441756248474, 0.7670500874519348, 0.7713648676872253, 0.030080480501055717, 0.1326339840888977, 0.0556357279419899, -0.06155768036842346, 0.4626469612121582, 0.3355974853038788, 0.39656418561935425, -0.19276820123195648, -0.44750261306762695, -0.6075875163078308, 0.9105692505836487, 0.9166609644889832, -0.15604084730148315, 0.10380636900663376, 1.2352219820022583, 1.5869839191436768, -0.312863826751709, -0.7632482647895813, 0.148541659116745, -0.3428478538990021, 0.941776692867279, 0.5382279753684998, -0.9864647388458252, -0.6820207834243774, -0.2516934871673584, -1.1421043872833252, 1.2416622638702393, -0.6778124570846558, -0.4863013029098511, 0.237003356218338, 0.7042680978775024, 0.6032609343528748, 0.16335159540176392, 0.012966261245310307, 0.5496782064437866, 0.06797856092453003, -0.3665904700756073, -1.0665165185928345, 0.6091349720954895, 0.5459338426589966, -0.1336907595396042, -0.8372976779937744, 0.2700701355934143, -0.4102538228034973, 0.06783013790845871, 0.5446202158927917, 1.0396034717559814, 0.5079347491264343, 0.40821781754493713, 0.20132049918174744, -0.9420535564422607, -0.5678669214248657, -0.5604553818702698, -0.15736766159534454, -0.43908578157424927, 0.9079776406288147, 0.125162735581398, -0.24623247981071472, 0.10383463650941849, -0.06657487899065018, -0.4109722673892975, -0.35480454564094543, -0.93198162317276, 1.450804352760315, 0.45724737644195557, -1.0184921026229858, 0.13311982154846191, 0.004542083479464054, -0.031885672360658646, -0.18574531376361847, -0.28820696473121643, 0.6737199425697327, -1.0803278684616089, -0.4221327304840088, 0.0017395615577697754, -0.2917511761188507, 0.2364657074213028, 0.19766893982887268, 0.5226255655288696, -0.3324142098426819, -1.636862874031067, -0.6970906257629395, 0.7731784582138062, 1.0758488178253174, -0.5057727098464966, 0.6793968677520752, -0.2344043105840683, -1.9384866952896118, 0.87134850025177, -0.23415830731391907, -1.1490697860717773, -0.9584238529205322, -0.6733064651489258, 0.17706410586833954, 0.4476395547389984, -0.08465076237916946, 0.03620400279760361, 0.6002494096755981, -0.5761620402336121, -1.0312728881835938, -0.6861871480941772, -0.37831076979637146, 0.6594201922416687, 0.624070405960083, -0.6160916686058044, 0.8726030588150024, 0.6981749534606934, -0.6514145731925964, -0.613689661026001, 0.3991868793964386, -1.2040671110153198, 0.14002205431461334, 0.6577531099319458, 0.8044949769973755, 0.5435802340507507, 1.2548816204071045, 0.8690906167030334, -0.18950587511062622, 0.6301547288894653, 0.5509883761405945, -0.5931857824325562, -0.9315067529678345, -0.7488255500793457, 0.8085910081863403, -1.1124647855758667, -1.651085376739502, 0.3044787645339966, -0.0766221135854721, -1.010471224784851, 0.32845786213874817, 0.44807982444763184, -0.8004472851753235, -0.2853992283344269, -0.18715333938598633, -0.15250614285469055, 0.2559982240200043, 0.8299705982208252, 0.28891807794570923, -0.6956943273544312, -0.2105531394481659, 0.15024271607398987, 0.7842938899993896, -1.052389144897461, -0.14694388210773468, -0.4933426082134247, 0.07939683645963669, 0.46812283992767334, 0.12540003657341003, 0.5300718545913696, -0.5249493718147278, -0.3666422665119171, 1.456493854522705, 0.5081915855407715, 0.1675979644060135, 0.3574190139770508, 0.7510064244270325, 0.4580337405204773, 0.3141893744468689, -0.7577150464057922, 0.03720102831721306, 0.14679129421710968, 0.9865206480026245, -0.21302008628845215, 0.6166281700134277, -0.4931579828262329, 0.5260951519012451, 0.5700704455375671, 0.35837990045547485, 0.625565230846405, 0.1711745411157608, -1.0606236457824707, 0.3866993486881256, 0.5676257610321045, -0.6101744771003723, 0.4111904799938202, 0.3510400354862213, -0.11280788481235504, -0.31060996651649475, 0.5043794512748718, 0.6141241192817688, -0.7715253829956055, 0.1541977971792221, 0.2066815346479416, -0.6102941036224365, -0.5006411671638489, -0.3388959765434265, -1.8544820547103882, 0.08167283236980438, -0.08436010032892227, -0.25568386912345886, 1.2839781045913696, -1.0001014471054077, -0.2149163782596588, 0.09779957681894302, 0.07165426760911942, -0.07626528292894363, -0.8632615208625793, 0.13266868889331818, -0.5225904583930969, 0.8758853077888489, 0.974032998085022, 0.029565488919615746, 1.3928852081298828, -0.13171787559986115, -0.9313367605209351, -0.9054768085479736, 0.11890768259763718, 0.052136536687612534, 0.17119033634662628, -0.1583145260810852, 0.08728412538766861, 0.18606731295585632, -0.752535879611969, -1.3292715549468994, 0.27276793122291565, 0.6054140329360962, -0.24889495968818665, -0.5620077252388, -0.26196080446243286, -0.47877755761146545, 0.30377888679504395, 0.5518940091133118, -0.3102758526802063, -0.24126438796520233, -0.5911786556243896, -0.03634669631719589, -0.12470705062150955, 0.8948612213134766, -0.3335346281528473, 0.09411244094371796, -0.3872995674610138, -0.24984343349933624, -0.33847370743751526, -0.7147173285484314, 0.48211273550987244, 0.1652863472700119, 0.22043223679065704, -0.8141208291053772, -0.27363675832748413, -0.18543922901153564, -1.2722915410995483, -0.10082662105560303, 0.8076770305633545, -0.5799189209938049, 0.3467920124530792, -0.3390602767467499, -0.48041483759880066, -0.5468164086341858, -0.1916167438030243, 0.02412048541009426, 0.5123261213302612, 0.26505759358406067, 0.09031377732753754, -0.6718237996101379, 0.9245775938034058, 0.6340415477752686, -0.7427805066108704, 0.9013360142707825, 1.3456707000732422, 1.214908242225647, 0.3317092955112457, -0.5891945958137512, -0.22049281001091003, 1.6019861698150635, -0.7605242133140564, -0.2396887242794037, -1.232957124710083, 0.5520830750465393, -0.2225964218378067], [-0.26151716709136963, 1.4712438583374023, -1.6942527294158936, -0.5575543642044067, -0.225876122713089, 0.7455945611000061, 1.8221107721328735, 0.31152433156967163, 0.47629407048225403, -0.4502156376838684, -0.6744009256362915, 0.6701828837394714, 1.6517459154129028, 0.5334648489952087, 0.43936941027641296, -0.06172764301300049, 1.1141327619552612, 0.44233280420303345, 0.4909524619579315, -0.07671279460191727, -0.6197396516799927, -0.46620264649391174, 0.16789895296096802, 0.44522660970687866, 0.49289944767951965, 1.1967358589172363, -1.3344019651412964, -0.18058785796165466, -2.4259262084960938, -0.45048046112060547, 1.1517572402954102, -0.8803895711898804, 0.5294227004051208, 0.07894475013017654, -1.1225346326828003, -0.23995091021060944, 1.0809166431427002, -0.09032890945672989, 0.46127980947494507, 0.1539951115846634, 2.2476460933685303, -0.10987398773431778, 0.15589424967765808, -1.1583263874053955, -0.026712847873568535, -0.23616325855255127, 0.8115453720092773, -1.4990248680114746, 0.3084626793861389, -0.30589738488197327, -0.015554036945104599, 0.8716181516647339, 0.8069692254066467, 1.4987218379974365, 0.029949462041258812, -0.9324007034301758, 0.11107071489095688, 0.19779008626937866, 0.508915901184082, -0.21246033906936646, 0.7703032493591309, -0.21642948687076569, -0.5976045727729797, 1.31491219997406, 1.052973985671997, 0.06944184750318527, 0.13816681504249573, 0.14958006143569946, 0.3890838325023651, -0.3937411606311798, 0.25616127252578735, 0.06156383827328682, -0.1427978128194809, 0.1472378671169281, -0.9927530288696289, 0.1777796894311905, 0.5407426357269287, -0.12327674776315689, -0.26805171370506287, 1.050087332725525, -0.6593233346939087, 0.27992773056030273, 0.47178348898887634, 0.20550666749477386, 0.1688913106918335, 0.9676340818405151, 0.188869446516037, -0.009128636680543423, -0.3629502058029175, 1.3066718578338623, -0.21284843981266022, 0.5621191263198853, 0.19722378253936768, 0.14005881547927856, 0.09456649422645569, -0.7463046908378601, -0.10684461891651154, -0.6141746044158936, -0.7197195291519165, -1.2124744653701782, -0.6246801018714905, -0.4875521659851074, 0.29024240374565125, 0.8788666129112244, 0.8727457523345947, 0.9987753629684448, 0.36061641573905945, -0.7721497416496277, -0.2655486464500427, -0.10527873039245605, -0.36617380380630493, 0.18250474333763123, -0.9734530448913574, -0.61501145362854, -0.5388705730438232, 0.9229669570922852, 0.3439532518386841, -0.06785573065280914, 0.4859854280948639, 0.5411858558654785, -0.8813765048980713, -0.008695575408637524, -0.29727017879486084, 0.732979953289032, 0.2600899636745453, 0.6658167243003845, -0.5692954659461975, -0.5076001286506653, 1.0908563137054443, 0.6210080981254578, 0.6080986857414246, -0.4464546740055084, 0.4845098853111267, 1.2708278894424438, -0.8417628407478333, 0.78715580701828, -0.2279590517282486, -1.9505438804626465, -0.3525184690952301, 0.2855106592178345, 0.7194807529449463, -0.3916701078414917, 0.001854466274380684, -0.738574206829071, -0.4865746796131134, -0.8611708283424377, 0.9471572637557983, 0.407552570104599, -1.0239498615264893, 0.09908485412597656, -1.1769691705703735, 0.2944236397743225, -0.14210139214992523, 1.306298851966858, 0.19229097664356232, -0.5262719392776489, 0.8256035447120667, 0.19705286622047424, 0.353103369474411, 0.7884073853492737, 1.2124069929122925, 0.3703136146068573, -0.815383791923523, 1.049399733543396, -0.36299973726272583, -0.5420728921890259, 0.014516379684209824, 0.04400225356221199, 0.09726380556821823, 0.5690561532974243, -0.404356449842453, -0.39272284507751465, -0.2990649938583374, 0.24996840953826904, 0.2519757151603699, -0.5458059906959534, 1.078692078590393, -0.5121725797653198, -1.054344654083252, -1.4113057851791382, 1.149501085281372, -0.3049255907535553, 0.290066659450531, -0.3406176269054413, 0.9098789095878601, -0.7054100632667542, 0.08203897625207901, 0.18840034306049347, -0.6164538860321045, -1.081634759902954, -1.2636146545410156, -0.30484119057655334, -0.8535492420196533, -0.030500151216983795, -0.5231132507324219, -0.4381653070449829, -0.011144278571009636, -0.6125536561012268, -1.1237046718597412, 0.5106341242790222, 0.07211398333311081, -0.24527762830257416, -1.8325550556182861, -0.5260401964187622, -0.14905399084091187, 0.5240221619606018, -1.3523814678192139, 0.9663733243942261, -0.7808038592338562, 0.431535005569458, 0.4506038427352905, 0.46419358253479004, -1.155057430267334, 0.8587871789932251, -0.21886728703975677, -1.3802739381790161, 0.29101964831352234, 0.06655856221914291, -0.05577704310417175, 0.3025522232055664, 0.3034062385559082, 0.21938373148441315, 0.9692035913467407, 0.24645352363586426, 0.7437750101089478, 0.1574239432811737, -0.951810359954834, -1.1836521625518799, -1.0996586084365845, 0.13576871156692505, -1.2333455085754395, -0.8459082841873169, 0.6044926047325134, 0.22610609233379364, -0.45095452666282654, 0.8306066989898682, 0.5070697069168091, -0.06716150790452957, 0.36641746759414673, 0.4643837511539459, 0.5711095333099365, 0.9324668049812317, -0.18252870440483093, -0.6930819749832153, -0.5346618294715881, 0.03285576030611992, 1.3698610067367554, -0.3100380599498749, 0.39649397134780884, 1.3094971179962158, 1.3257925510406494, -0.13143673539161682, 0.48751187324523926, 0.44088584184646606, -0.4496637284755707, -0.8002889752388, -0.42383652925491333, -0.30579128861427307, -1.0544886589050293, 1.4823120832443237, 0.5447630882263184, -1.0210952758789062, -0.23826947808265686, 0.03738521784543991, 0.30723974108695984, 0.16772617399692535, -0.4453081488609314, -0.6744677424430847, 0.39320138096809387, -0.2643771469593048, 0.24153852462768555, 0.6795218586921692, -0.40203529596328735, 0.49597495794296265, -0.08193410187959671, -0.23496150970458984, -0.508513331413269, -0.03833712637424469, -0.02037535049021244, 1.0055935382843018, 0.5610159635543823, -1.2420034408569336, -0.38378068804740906, -0.15767984092235565, 0.4387660324573517, 0.19478802382946014, 0.12932084500789642, 1.2703956365585327, 0.38672104477882385, -0.304236501455307, -0.05426158756017685, 0.7684478163719177, -0.10661669075489044, 0.3028024733066559, 0.1793026179075241, -0.007300452329218388, 0.5985292792320251, -1.1031728982925415, -1.1857497692108154, 0.46501538157463074, 0.43561792373657227, 0.97412109375, 1.0125434398651123, 0.8909807205200195, -0.6351293921470642, 0.010302921757102013, -0.2051871418952942, -0.3549397587776184, -1.1826627254486084, -0.2384737730026245, -0.34947025775909424, -1.0527104139328003, 0.4089697599411011, -0.7119215726852417, 0.638705849647522, 0.4082552492618561, -0.0768476203083992, 0.8989250063896179, 0.9555413722991943, 0.052933722734451294, -0.20479479432106018, 0.16548722982406616, 0.06664136052131653, -0.37808969616889954, 0.6753007769584656, 1.0789787769317627, -1.3174784183502197, 0.06791889667510986, -0.7609357833862305, 0.11695301532745361, 1.0033016204833984, -0.0801783874630928, 0.19851525127887726, -0.9149413704872131, -0.5353198051452637, 0.31209951639175415, 0.9794891476631165, 0.18246711790561676, -0.14230406284332275, -1.3339555263519287, 0.0667005255818367, 0.7025330662727356, 0.485914945602417, -0.6470066905021667, 1.2140971422195435, -0.35913363099098206, -0.10153121501207352, -0.2423115223646164, 0.4515734910964966, 0.8009278774261475, -0.8882138729095459, -0.35516202449798584, 0.2575295865535736, -0.11927914619445801, -0.8132653832435608, -0.18531711399555206, -0.06473046541213989, 0.8135263919830322, 0.26704421639442444, 0.5871334075927734, 1.507601022720337, -1.3684916496276855, -0.5213784575462341, -1.7264052629470825, 1.1331830024719238, 0.5278336405754089, 1.366194725036621, -0.01251817587763071, 0.8892936110496521, 0.21651193499565125, -0.7496501207351685, -0.4281476140022278, 0.24489793181419373, 0.6828673481941223, 0.5554811358451843, -0.5293713808059692, -0.6144155263900757, -0.3977970480918884, -0.7629695534706116, -1.059517741203308, -0.03085906431078911, 0.9027851819992065, -0.2318374067544937, -0.575023353099823, 0.4650309681892395, 0.5924601554870605, -0.7662166357040405, -0.43164730072021484, 0.0198957622051239, 0.25032752752304077, -0.1942494809627533, -0.4195658564567566, -0.6256666779518127, -0.40031516551971436, -0.45364469289779663, -1.178008794784546, -0.053211331367492676, 0.24815252423286438, -0.003910848870873451, 0.9359152317047119, -1.3439782857894897, -0.004269670229405165, -0.2891939580440521, 0.27062442898750305, 0.2951156795024872, -0.04402405768632889, -0.5206089019775391, 0.09343089908361435, -0.2717626988887787, 0.465525358915329, 0.06125982105731964, 1.2612156867980957, 0.42359983921051025, -0.11798960715532303, -0.195193350315094, -0.5525429844856262, 0.08059661090373993, -0.36893051862716675, -0.7840269804000854, 0.7501844167709351, -0.7017279863357544, 0.34572163224220276, -0.2140262871980667, 0.5184650421142578, 2.5242605209350586, 0.6096463203430176, 0.4058314561843872, 0.8230993747711182, -0.10130611807107925, -0.42724156379699707, 0.0638229250907898, 0.7657150030136108, -0.6723482012748718, -1.0959502458572388, 0.4237090051174164, 0.5635017156600952, 0.3662268817424774, 0.6393806338310242, 0.15058386325836182, -0.042114682495594025, -0.01676597259938717, -0.39227262139320374, 0.2609027028083801, 0.9611708521842957, 0.8658236265182495, 0.4495788812637329, 0.8369419574737549, -0.760163426399231, -0.9435818791389465, 0.9973615407943726, -0.41996294260025024, -0.16983066499233246, 1.0231590270996094, 0.5239112377166748, 0.9245768785476685, -1.6480746269226074, -1.1034495830535889, 0.36383992433547974, -0.4333369731903076, 0.3959326148033142, 0.40383511781692505, 1.3151403665542603, -0.7073869705200195, -0.30996832251548767, 0.49875614047050476, -0.16910342872142792, 1.3898063898086548, -0.2952715754508972, -0.4241141080856323, 0.5919723510742188, -0.37498801946640015, -0.2925960123538971, -0.7643496990203857, -0.692154586315155, 0.3352564871311188, -0.8021573424339294, 0.41786766052246094, 0.5447536706924438, -0.12169245630502701, 0.19037342071533203, -0.38735800981521606, -1.3713371753692627, 0.6712353825569153, -0.6587986350059509, 0.0065657878294587135, -0.39420440793037415, -0.3304957449436188, -0.34629255533218384, -0.591602087020874, -0.6639823317527771, -0.14584322273731232, -1.3043832778930664, -0.4822329878807068, 0.1991516649723053, -0.9473952651023865, 0.11243816465139389, 0.6421654224395752, 1.5945472717285156, 0.5722821950912476, 0.08756892383098602, -0.07328581809997559, 0.2660202383995056, -0.45416489243507385, 0.29999881982803345, 0.43707606196403503, -0.30935752391815186, -0.3860110938549042, -1.3421512842178345, -0.6750559210777283, 2.135284662246704, 0.8596106171607971, -0.5050432682037354, 0.8946183919906616, 0.4287593960762024, 1.4696800708770752, -0.0745217502117157, -0.8957578539848328, 0.47672906517982483, 0.08179187029600143, 0.767774760723114, 0.5943842530250549, -0.6238083243370056, -0.9377714991569519, -0.25463607907295227, -1.5264959335327148, 1.8159334659576416, -0.282582551240921, -1.0939244031906128, 0.24853511154651642, 0.5521637201309204, -0.16442061960697174, 0.7570517063140869, -1.0208293199539185, 0.24629901349544525, 0.20312289893627167, -0.7274557948112488, -1.4025403261184692, 0.6234802007675171, 0.24971769750118256, -0.08348235487937927, -0.2839314937591553, 1.0054054260253906, -0.483917772769928, -0.2990166246891022, -0.30013060569763184, 0.8147587180137634, 0.1180056482553482, 0.1670512706041336, 0.5012731552124023, -0.6417453289031982, -0.3293108642101288, -0.8410630822181702, 0.5784172415733337, 0.19097745418548584, 0.9490452408790588, 0.48248985409736633, -0.8027912378311157, 0.07954104989767075, -0.1658487766981125, -0.07816490530967712, -0.29252907633781433, -0.8895598649978638, 0.9797492623329163, 0.6170681118965149, -0.43506088852882385, 0.139741912484169, -0.2886422276496887, 0.10894594341516495, -0.11810248345136642, -0.9086014628410339, 0.5274472832679749, -1.7286500930786133, -0.5105113387107849, -0.41721686720848083, 0.02410123310983181, 0.27129772305488586, -0.3115789294242859, -0.1802176535129547, -0.4779692590236664, -1.3585762977600098, -0.6688176989555359, 0.38433337211608887, 0.6833924055099487, -0.9844368696212769, 0.15029984712600708, 0.24468161165714264, -1.6185673475265503, 0.5224356651306152, 0.12251172214746475, -1.3582096099853516, -0.6054222583770752, -0.9697888493537903, 0.5768495202064514, 0.3260849714279175, -0.23030535876750946, 0.03995443880558014, 1.3849878311157227, -0.593906581401825, -1.07401442527771, -0.5249931216239929, 0.1333065629005432, 1.7364412546157837, 1.0984253883361816, -0.5263963341712952, 1.5465247631072998, 0.2611408829689026, -1.0014945268630981, -0.5285016298294067, 0.7960230708122253, -1.1975367069244385, 0.12641200423240662, 0.8011530041694641, 0.21092794835567474, 1.2935901880264282, 1.253322720527649, 1.0555675029754639, 0.28381094336509705, 0.19384817779064178, 0.05641510337591171, -0.6594980955123901, -0.8210368752479553, -0.47247517108917236, 0.23157498240470886, -0.9799703359603882, -1.0717252492904663, 0.11787502467632294, -1.040475606918335, -0.9548390507698059, 0.4690777659416199, 1.0456111431121826, -0.6942880749702454, 0.13236097991466522, -0.8970465660095215, 0.5798283219337463, -0.3183656930923462, 0.904574453830719, 0.4033583104610443, -0.6840828657150269, 0.1604982614517212, -0.35737624764442444, 0.217925027012825, -0.6298693418502808, -0.3948764503002167, -0.4704970419406891, 0.4587186276912689, -0.4909341633319855, 0.13819026947021484, 0.30490174889564514, -1.1242337226867676, -0.5011959671974182, 2.0270872116088867, 0.9244890809059143, -0.1829516738653183, -0.01660047471523285, 0.3240054249763489, -0.18858937919139862, 0.26991307735443115, -0.3285226821899414, 0.5172613859176636, -0.3395320177078247, 0.23101763427257538, 0.2912493646144867, 0.2524893283843994, -0.49733766913414, 0.2894989550113678, -0.27997851371765137, 0.61203533411026, 0.5261041522026062, 0.15687565505504608, -0.6640443801879883, 1.0366108417510986, 0.5264501571655273, -0.5359792709350586, 0.6197272539138794, 0.11120209097862244, 0.07454345375299454, -0.0025563365779817104, 0.20742659270763397, 0.7180266380310059, -0.32161620259284973, 0.7672531008720398, 0.4190945625305176, -0.1438342034816742, 0.3788442611694336, -0.8779190182685852, -2.24458909034729, -0.2745382487773895, -0.5159772634506226, 0.3621900975704193, 1.2614001035690308, -0.6948618292808533, -0.3316681683063507, -0.1344032883644104, 0.33035922050476074, 0.20558597147464752, -0.6852940917015076, -0.15813174843788147, -0.3028011620044708, 0.7924110889434814, 0.5220258831977844, -0.37392324209213257, 1.0345913171768188, -0.24172528088092804, -0.45553839206695557, -0.2362668663263321, 0.1418754905462265, 0.09861134737730026, 0.7245520353317261, 0.42022570967674255, -0.4336263835430145, -0.4175356924533844, -1.0387890338897705, -0.7332808375358582, 0.36475852131843567, -0.4217292368412018, -0.03722192347049713, -0.32233959436416626, -1.0112618207931519, 0.052206020802259445, 0.6648282408714294, 0.548729419708252, -0.579878568649292, -0.43156304955482483, -0.9298122525215149, 0.10053636133670807, -0.39577439427375793, 0.3827069401741028, -0.9731676578521729, 0.6173298954963684, 0.360920250415802, -0.490560919046402, -0.9340837001800537, -0.8202330470085144, 0.4775097668170929, -0.2152673751115799, 0.4409470558166504, -0.4671550989151001, -0.2552246153354645, 0.3166605532169342, -0.9058263301849365, 0.14794811606407166, 0.24081537127494812, -0.25363269448280334, 0.30619385838508606, -0.9527626633644104, -0.4567176103591919, -0.4045204222202301, 0.1380886435508728, 0.8800196647644043, 0.23378290235996246, -0.18551211059093475, 0.7217636108398438, -1.194095253944397, 0.19705519080162048, 0.38771623373031616, -0.3032333254814148, 0.7204533815383911, 1.5154547691345215, 1.6921952962875366, -0.2863461971282959, 0.07009118795394897, 0.1437784731388092, 0.9141570925712585, -1.3262990713119507, -0.5885738730430603, -1.5706937313079834, -0.36673951148986816, -0.3705744445323944], [0.3962858319282532, 1.3133938312530518, -1.943106770515442, 0.15678362548351288, -0.03309934213757515, 0.7109832167625427, 0.4967532157897949, 1.309700608253479, 0.4152916967868805, -0.3820559084415436, -1.7473093271255493, 0.01977180317044258, 1.3709096908569336, -0.2741328179836273, 0.4282246530056, 1.0410223007202148, 1.1751435995101929, 0.6194279193878174, 0.16099412739276886, -0.4234294593334198, -0.5678750276565552, 0.08369895070791245, -0.3339288830757141, 0.5092735290527344, 0.4019964933395386, 0.6246607303619385, -1.0314950942993164, 0.10334330797195435, -1.693489670753479, -1.1752607822418213, 0.5332040786743164, -1.0797029733657837, 0.9945679306983948, 0.02784249745309353, -0.8730506300926208, -0.39343443512916565, 0.5187749862670898, 0.06979286670684814, -0.1293121725320816, 0.16785651445388794, 1.6561800241470337, -0.0551450252532959, -0.5594716668128967, -0.7146806716918945, 1.52717924118042, -0.2206522822380066, 0.9982495903968811, -1.712990164756775, -0.2444716989994049, -0.3656139373779297, -0.06630764156579971, 0.7778615355491638, 0.42744165658950806, 1.3055821657180786, 1.3302083015441895, -0.6942533254623413, 0.2698744237422943, -1.1541842222213745, 0.5180325508117676, 0.06578313559293747, 1.3496577739715576, -0.08328087627887726, -0.5350239872932434, 0.8398579359054565, 0.6337831616401672, 0.2850461006164551, 0.3444223999977112, 0.18770655989646912, 0.09839864820241928, -0.12559159100055695, 0.6630089282989502, 0.21759368479251862, -0.4700584411621094, -0.2933550775051117, -0.2241692841053009, -0.32096317410469055, 0.6320133805274963, 0.2425990253686905, -0.08056800067424774, 0.2970018684864044, -1.126060962677002, 0.16975091397762299, 0.49974992871284485, 0.556918203830719, -0.17245331406593323, 0.1660112738609314, 0.3365029990673065, -0.9902400374412537, -0.7125476002693176, 1.7602468729019165, -0.1862594336271286, 0.2693798840045929, 0.0011614570394158363, 0.6934341192245483, -0.09982067346572876, -0.2852962613105774, -0.6359682679176331, 0.1417752504348755, -0.5559853315353394, -0.9786386489868164, -0.49983900785446167, -1.1259139776229858, 0.4060579240322113, 1.3659436702728271, 1.0104777812957764, 1.3632692098617554, -0.039063893258571625, -1.2965964078903198, -0.6060433387756348, 0.41855350136756897, -0.0843186154961586, 0.9536201357841492, -0.7889807224273682, -0.7754979133605957, -0.21138298511505127, 0.6405730843544006, 0.2905142903327942, -0.37324389815330505, 0.6722742319107056, 0.9907371997833252, -1.074195384979248, 0.3988221287727356, -0.5093489289283752, 0.5501902103424072, 0.24315506219863892, 0.6164661049842834, -0.12528730928897858, -0.10080615431070328, 1.1589950323104858, 0.4340793788433075, 0.32934385538101196, -0.294609397649765, -0.019297191873192787, 1.4060148000717163, -0.38591068983078003, 1.4689102172851562, -0.4477272927761078, -0.9729834794998169, -0.10153834521770477, -0.3061795234680176, 0.7826729416847229, -0.27908575534820557, 0.5336278080940247, -0.769191563129425, 0.09773233532905579, -0.4278959631919861, 0.35512006282806396, 0.16491815447807312, -0.673876166343689, 0.6074426770210266, -1.13462233543396, 0.21739618480205536, -0.42224210500717163, 0.900787889957428, 0.7562497854232788, 0.02353009395301342, 0.8868350386619568, 0.18100246787071228, 0.24135488271713257, 0.8356390595436096, 0.7942565679550171, -0.21991178393363953, -0.047476328909397125, 0.9430987238883972, 0.025133375078439713, -0.19145815074443817, 0.15329627692699432, 0.0478411540389061, 0.16912396252155304, 0.7169951796531677, -0.7981787323951721, -1.250536561012268, -0.2594597637653351, 1.255969524383545, -0.7319431900978088, -0.7240817546844482, 0.4643639028072357, -0.6227765083312988, -0.5125592947006226, -1.1488757133483887, 1.5789119005203247, -0.6301110982894897, 0.5964070558547974, 0.19012291729450226, -0.04757779836654663, -0.22873710095882416, -0.28988561034202576, 0.31418246030807495, -0.6696208119392395, -0.5733467936515808, -0.807201087474823, -0.8599209785461426, -1.1046316623687744, 0.23105968534946442, 0.06567811965942383, -0.7129245400428772, 0.27658694982528687, -0.35385170578956604, -0.9466527104377747, -0.01578023098409176, 0.4107711613178253, -0.25467541813850403, -0.5520752668380737, -0.46895501017570496, 0.08232865482568741, 0.21744002401828766, -0.5293457508087158, 0.8689691424369812, -0.7877612709999084, 1.0198659896850586, 0.9804576635360718, 0.08332479000091553, -0.3975844383239746, 0.7059577107429504, 0.6756587028503418, -0.4848034679889679, -0.03662543371319771, 0.11236362904310226, 0.3871326148509979, 0.0939260944724083, 0.47043874859809875, 0.34402838349342346, 0.45001688599586487, 0.10947823524475098, 0.5083630084991455, -0.05849459394812584, -1.352970838546753, -0.7927961349487305, -1.3408328294754028, -0.7914049625396729, -0.5882207751274109, -0.8255107998847961, 0.9571853876113892, 0.28410470485687256, -0.5996924042701721, 0.7932510375976562, 0.5898575186729431, 0.14098061621189117, 0.5064585208892822, 0.462100625038147, 0.12050975859165192, 0.18077367544174194, -0.23659177124500275, -0.9741078019142151, -0.8999341726303101, -0.05925604701042175, 0.893757700920105, 0.2659338414669037, -0.1771802455186844, 1.1058523654937744, 0.5884698629379272, 0.023929236456751823, 0.9500610828399658, 0.5620266795158386, -0.5925596356391907, -1.336228609085083, -1.0847464799880981, -0.7759203910827637, -0.4219582974910736, 1.8478692770004272, 0.9155582785606384, -1.1775221824645996, 0.19048763811588287, -0.5498197078704834, 0.3275319039821625, 0.43459418416023254, -0.28073468804359436, -1.2022483348846436, 0.43542903661727905, 0.23528234660625458, -0.3762476146221161, 1.0101170539855957, 0.5483477711677551, 0.4374265670776367, -0.5635681748390198, -0.7287247180938721, -0.6380802989006042, 0.05776160955429077, -0.17175336182117462, 0.8050972819328308, 0.16238166391849518, -1.0737087726593018, -0.5072928071022034, 0.12745174765586853, 0.07093754410743713, -1.1182271242141724, -0.2798212766647339, 1.4558287858963013, 0.6988541483879089, -0.011458424851298332, 0.20408514142036438, 0.626448929309845, 0.14828480780124664, 0.08840388804674149, 0.7741037607192993, 0.5833527445793152, 0.7457366585731506, -0.07882077991962433, -0.8370697498321533, 0.42652907967567444, 0.12494455277919769, 0.7458517551422119, 0.6519664525985718, 0.7940945029258728, -0.45187973976135254, -0.14944879710674286, -0.3582329750061035, -0.48558706045150757, -1.475928783416748, -0.45971325039863586, -0.9744833707809448, -1.0169848203659058, 0.2457629293203354, -0.5265357494354248, -0.04326368868350983, -0.1536416858434677, 0.06859532743692398, 0.08549992740154266, 1.0439354181289673, -0.16966423392295837, 0.004023173823952675, -0.05339931324124336, 0.2590720057487488, -1.3776230812072754, 0.6459642052650452, 0.25923988223075867, -1.44905686378479, 0.011354953050613403, -0.20550061762332916, -0.5874308943748474, 0.4263310432434082, 0.4948349893093109, -0.09398845583200455, -1.1259390115737915, -1.031908631324768, 0.09456022828817368, 0.8515099883079529, 0.015959370881319046, -0.6194331049919128, -1.07638680934906, 0.9109737277030945, 0.3260195255279541, 0.26600024104118347, 0.1845308393239975, 1.0085219144821167, -0.6972283124923706, -0.07462820410728455, -0.732764720916748, 0.5735649466514587, 1.2600444555282593, -0.7798131108283997, -1.0052610635757446, 0.10560852289199829, -0.26983070373535156, -0.5081531405448914, 0.13489606976509094, -0.20576168596744537, 0.7578648328781128, 0.1460045427083969, -0.04020998626947403, 1.4790326356887817, -0.8935878276824951, 0.2956002950668335, -1.493491768836975, 0.6859679222106934, 0.9656694531440735, 0.4935983419418335, 0.30143553018569946, 0.6177698969841003, 1.0849053859710693, -1.077770709991455, -0.4853537678718567, -0.19600854814052582, 1.036115050315857, 0.5144079327583313, -0.5599780678749084, -0.5279433727264404, -1.1055541038513184, -0.5330044627189636, -1.3831689357757568, -0.7401023507118225, 0.4390634000301361, -0.3222472667694092, -0.44881558418273926, 0.20758786797523499, 0.5317761301994324, -0.348355233669281, 0.15710003674030304, 0.016831113025546074, -0.22282132506370544, -0.39216747879981995, -0.07022399455308914, -0.3566969335079193, 0.0808849036693573, 0.29796361923217773, -0.6258335113525391, 0.09423983097076416, 0.5908640027046204, 0.28779882192611694, 0.8888556957244873, -1.913703441619873, 0.1303609311580658, -0.7240460515022278, 0.9869588017463684, -0.32572680711746216, 0.09955757856369019, 0.5911394357681274, -0.05518345907330513, -0.3011496067047119, -0.3926335275173187, -0.4191192388534546, 1.2406612634658813, -0.05664723739027977, 0.1724925935268402, -0.5888187885284424, 0.0431198850274086, 0.09998461604118347, -1.237457275390625, -0.10811607539653778, 0.6147673726081848, -0.2935717701911926, -0.07787499576807022, -0.07391880452632904, -0.031828898936510086, 1.061151146888733, 0.43038511276245117, 0.34189659357070923, 0.8891910314559937, -0.288400262594223, -0.22678057849407196, 0.24708925187587738, 0.856774091720581, -0.8114845752716064, -0.2725712060928345, 0.4683276116847992, 0.3472083806991577, 0.32161059975624084, 0.2178684026002884, 0.4033835828304291, 0.023260364308953285, -0.33201864361763, -0.45511943101882935, 0.4190422594547272, -0.19385483860969543, 1.250054955482483, 0.5000846982002258, 0.9526503086090088, -0.38948121666908264, -0.0009988890960812569, 0.8576720952987671, -0.33453720808029175, 0.2566443979740143, 0.8542866706848145, 0.3180066645145416, 1.4093008041381836, -1.372727870941162, -0.840028703212738, 0.3362283706665039, 0.09185022860765457, 0.6292198300361633, 0.9684851765632629, 0.7236644625663757, -0.7072621583938599, 0.24422207474708557, 0.009258708916604519, -0.47335243225097656, 1.1618783473968506, -0.27230486273765564, -0.0497918464243412, 0.12828364968299866, -0.23088666796684265, 0.1365765482187271, -0.9230043292045593, -0.6125823259353638, 0.5935297608375549, -0.9345644116401672, -0.3121764659881592, 0.5892401933670044, 0.34124457836151123, 0.36950233578681946, -0.4961566627025604, -0.9540590643882751, 0.5537625551223755, -1.1015933752059937, -0.15239059925079346, -0.27573251724243164, -0.23875541985034943, -0.987360954284668, -0.23126541078090668, -0.9258472919464111, 0.3421936333179474, -0.8189088702201843, -0.5088274478912354, 0.00090753473341465, -0.969883918762207, -0.46149176359176636, 0.5051025152206421, 0.7137001752853394, 0.7178589701652527, -0.46986123919487, 0.6433678269386292, 0.5530861020088196, -0.38567686080932617, 0.6378580927848816, 0.900873601436615, -0.2121247500181198, -0.9315632581710815, -0.014674459584057331, -1.04514479637146, 0.9649642109870911, -0.06171511858701706, -0.3637757897377014, 0.13789483904838562, 0.4350127875804901, 1.7065224647521973, -0.4263363778591156, -1.0982820987701416, 0.7453987002372742, -0.5625352263450623, 1.02237868309021, 0.3216322660446167, -0.8118060231208801, -0.6301606893539429, -0.6767432689666748, -1.5362629890441895, 1.4307345151901245, -0.27653974294662476, -0.9500418305397034, 0.7284489870071411, 0.8584208488464355, -0.297590434551239, 0.5790402889251709, -0.38044267892837524, 0.16521327197551727, 0.36224764585494995, 0.07460030168294907, -1.493972659111023, -0.08293657749891281, 1.085755467414856, 0.15225836634635925, -0.7338662147521973, 0.02100498229265213, 0.3256474435329437, 0.5125820636749268, 0.2588021755218506, 0.5208584666252136, -0.6307435631752014, 0.32530948519706726, 0.2559840977191925, -0.8494938611984253, -0.19113999605178833, -0.4178997278213501, 0.4064238369464874, -0.6451864838600159, 0.8992460370063782, -0.23687458038330078, -0.052700795233249664, -0.03457575663924217, -0.6853183507919312, -0.2928646206855774, 0.955936849117279, -0.22986820340156555, 1.2915692329406738, 0.9861248135566711, -0.7486158609390259, 0.19435515999794006, 0.1824093759059906, -0.47679010033607483, -0.6390401124954224, -0.807028591632843, 0.9395883083343506, -1.5236166715621948, -0.5414440631866455, -0.5824662446975708, -0.7115604877471924, -0.08906100690364838, 0.017451545223593712, -0.22616271674633026, -0.5422959327697754, -1.1735868453979492, -0.19815081357955933, 0.815775454044342, 1.5059887170791626, -0.6756119132041931, 0.10466109961271286, -0.45776593685150146, -1.7569793462753296, 0.14953571557998657, 0.08793946355581284, -1.059607982635498, -0.5754478573799133, -1.2521854639053345, 0.3717971444129944, -0.23819410800933838, 0.1289660483598709, -0.009977761656045914, 0.5558599233627319, -0.753692626953125, -0.9459208250045776, 0.19201934337615967, -0.33308905363082886, 0.7709351778030396, 0.5569440126419067, -0.9213292002677917, 1.059507131576538, 0.23316003382205963, -0.7526535391807556, -0.522355854511261, 0.6336216330528259, -0.9240902066230774, 0.2571653127670288, -0.044951431453228, -0.10954765975475311, 0.9487521648406982, 0.5991102457046509, 0.629715621471405, 0.31137484312057495, 0.8438720107078552, 1.1297600269317627, -0.6555406451225281, -0.8863743543624878, -0.491350382566452, 0.12889297306537628, -1.0234642028808594, -0.44448134303092957, -0.42763856053352356, -0.8237630128860474, -0.6116710901260376, 0.5656362175941467, 0.6228344440460205, -1.7801165580749512, 0.46669647097587585, -0.47321343421936035, -0.4064585268497467, 0.16038978099822998, 0.22551235556602478, -0.17599426209926605, -1.2208442687988281, 0.4175749123096466, -0.03851744160056114, -0.01147526502609253, -0.49874764680862427, 0.03160489723086357, -0.7041454911231995, 0.9903755784034729, 0.48651784658432007, 0.08024697005748749, -0.001801895909011364, 0.12461190670728683, -0.3370112478733063, 1.4003486633300781, 0.6505115032196045, -0.19712135195732117, 0.20449046790599823, -0.19834063947200775, -0.7551928162574768, 0.5298328995704651, -0.9781680703163147, 0.8493176102638245, -0.3215007483959198, 0.9336411356925964, -0.5776326656341553, 0.5277378559112549, -0.14133742451667786, 0.820970892906189, -0.056123584508895874, 0.8213499784469604, -0.25992536544799805, -0.06562758982181549, -0.8091651797294617, 0.7931032776832581, 0.6396182179450989, -0.754690408706665, 0.4043055772781372, 0.19937272369861603, -0.014892964623868465, 0.028197843581438065, 0.18412096798419952, 0.4621145725250244, -0.5848251581192017, 0.10987287014722824, -0.3260596990585327, -0.2513456642627716, 0.05173072591423988, -0.07135923951864243, -2.1852059364318848, -0.15480822324752808, -0.08508624881505966, 0.15692245960235596, 0.910140872001648, -0.45159730315208435, -0.18378372490406036, 0.4097851514816284, -0.04834327474236488, 0.6414191126823425, -0.4657806158065796, 0.1416260153055191, -0.0115975858643651, 0.850638210773468, 0.07744809240102768, -0.22193866968154907, 2.1595206260681152, 0.1210632249712944, -0.41272056102752686, -0.22603145241737366, -0.19752436876296997, 0.001227333676069975, 0.44951680302619934, -0.010041406378149986, -0.057903677225112915, 0.29916253685951233, -0.49740999937057495, -0.5656627416610718, 0.7767704725265503, 0.46670225262641907, 0.6928021311759949, -0.2527262568473816, 0.1143089011311531, -0.2921467423439026, 0.3213386535644531, 0.6103518605232239, -0.502313494682312, -0.3320120573043823, -1.0067251920700073, -0.1755957454442978, 0.2707769274711609, 0.22020602226257324, -0.8414791226387024, 0.892204225063324, -0.09467913210391998, 0.0463026687502861, -0.03293753042817116, -0.21974535286426544, 0.7197897434234619, -0.2293168306350708, 0.45954567193984985, 0.054743919521570206, -0.5915724039077759, -0.33679139614105225, -0.5156564116477966, -0.4453730583190918, 0.4172891676425934, 0.14919692277908325, 0.5551654696464539, -0.37064409255981445, -0.7448119521141052, -0.653372049331665, -0.19751667976379395, 0.17260156571865082, 0.3849134147167206, -0.44238612055778503, -0.7439978122711182, -1.0620373487472534, 0.7742651700973511, 0.5987975001335144, -0.06622238457202911, 0.5693193674087524, 0.8932269811630249, 2.136892795562744, 0.3234565854072571, -0.540453314781189, 0.13113483786582947, 1.7503377199172974, -0.6223116517066956, -0.518896758556366, -0.9957227110862732, 0.16872690618038177, -0.3787596523761749], [-0.06787922233343124, 0.5141928195953369, -2.030241012573242, -0.5790694952011108, 0.21699588000774384, 0.8602153658866882, 1.4868519306182861, 0.6639806032180786, 0.3178864121437073, -0.05214517191052437, -1.112276554107666, 0.022076314315199852, 1.1447257995605469, 0.2809597849845886, 0.49289679527282715, -0.10474137961864471, 1.2515124082565308, -0.17916709184646606, 0.400726318359375, 0.5211912989616394, -1.4797017574310303, 0.3383064866065979, -0.2984619438648224, 0.32200297713279724, 0.7801282405853271, 0.41181501746177673, -1.4632508754730225, -0.5038894414901733, -2.1603152751922607, -1.2710182666778564, 0.6526041626930237, -0.8374022841453552, 0.12631575763225555, 0.23229075968265533, -0.1286839246749878, 0.19550403952598572, 1.3380703926086426, 0.4438171684741974, -0.26158449053764343, 0.32815706729888916, 2.8461849689483643, -0.5017868280410767, 0.03390052169561386, -1.3868367671966553, 0.3102015256881714, 0.3870314657688141, 0.7942008376121521, -1.6003433465957642, -0.22692418098449707, -0.7109941244125366, 0.2671121060848236, 0.3176686763763428, 0.7936835289001465, 1.4079614877700806, 0.8973158597946167, -0.12601518630981445, 0.6930097937583923, -0.7073940634727478, 1.1741548776626587, 0.35875946283340454, 0.4797714054584503, -0.8059515357017517, -0.8054541945457458, 1.2973570823669434, 0.5661278963088989, -0.4367789626121521, 0.032901231199502945, 0.6593225002288818, 0.42233237624168396, -0.10930796712636948, 0.6732262372970581, -0.2958551347255707, 0.44362854957580566, 0.6015603542327881, -1.2563819885253906, -0.4538031220436096, 0.1276818960905075, 0.561698317527771, 0.28545302152633667, 1.2914077043533325, -0.9666677713394165, 0.06698402762413025, 0.5308619737625122, 0.18579211831092834, 0.31859713792800903, 0.9538842439651489, 0.3542146384716034, -0.876368522644043, -0.13603591918945312, 1.765837550163269, -0.49899378418922424, 0.3559540808200836, 0.10374267399311066, 0.43845605850219727, 0.5776225328445435, 0.6035536527633667, -0.8625026941299438, 0.050386104732751846, -0.67794269323349, -0.9926950931549072, -0.4258122742176056, -1.2898367643356323, 0.12616074085235596, 0.15784144401550293, 0.6471037268638611, 1.0930124521255493, 0.40398892760276794, -0.29079753160476685, -0.6070270538330078, -0.359858900308609, -0.886715292930603, 0.8166677355766296, -0.8824401497840881, -0.6291993856430054, -0.525510847568512, 0.8712562918663025, -0.01667710207402706, -0.3267936110496521, 0.753092348575592, 0.5903463363647461, -1.429984211921692, 0.4915875494480133, 0.06241358444094658, 0.30462607741355896, 0.5046751499176025, 0.7794460654258728, -0.64259272813797, -0.7859805822372437, 1.0087627172470093, 0.05232245847582817, 0.31793880462646484, -1.0214842557907104, 1.0024429559707642, 0.6277128458023071, -1.180804967880249, 1.0095654726028442, -0.11138801276683807, -1.0575534105300903, -0.2985555827617645, -0.3807455897331238, 1.0317115783691406, -0.14821182191371918, 0.3316166400909424, -0.47811463475227356, 0.09253263473510742, -1.0940731763839722, 0.3240428566932678, -0.02450203336775303, -1.364598035812378, -0.18663844466209412, -1.1343334913253784, 0.46520572900772095, -0.07342521101236343, 1.0151057243347168, 0.4530494511127472, -0.4609777629375458, 0.5347864031791687, -0.06329639256000519, 0.04605971649289131, 0.9061278700828552, 0.9853665828704834, 0.2414560317993164, -0.6697118282318115, 0.828701376914978, 0.02550129033625126, -0.5298509001731873, -0.3390195071697235, 0.43278905749320984, 0.24279733002185822, 1.079625129699707, -0.1820884346961975, -0.9969445466995239, -0.50525963306427, 0.17068758606910706, 0.1308085322380066, -1.0732924938201904, 1.2767667770385742, -0.7932870984077454, -0.3323882520198822, -0.7715719938278198, 0.6376795768737793, -0.16943243145942688, -0.024731852114200592, -0.11694035679101944, 0.11999670416116714, -0.6955801844596863, 0.33252882957458496, -0.05483962595462799, -0.3700387179851532, -0.7407239079475403, -0.9372338652610779, -0.09590556472539902, -0.9141508936882019, -0.5550578236579895, -0.1876431256532669, -0.6636084914207458, 0.6731207370758057, -0.835732102394104, -0.7395849227905273, 0.31048861145973206, -0.5178166627883911, -0.15040919184684753, -1.4106227159500122, -0.060109902173280716, -0.6305399537086487, -0.10888119041919708, -0.9066998958587646, 0.7095953226089478, -0.16798238456249237, 0.5400098562240601, 0.4014739990234375, 0.1980888992547989, -0.8853958249092102, 1.313025712966919, 0.010784688405692577, -1.1710968017578125, 0.0985885038971901, 0.03476492315530777, -0.17253680527210236, 0.16768722236156464, 0.284793496131897, -0.06008254364132881, 0.4962655305862427, 0.47542425990104675, 0.24452388286590576, 0.259714812040329, -0.9242895841598511, -1.1937261819839478, -1.6574363708496094, 0.6855887174606323, -1.182869553565979, -1.5502126216888428, 1.079973816871643, 0.09024038910865784, -0.7140721082687378, 0.37813714146614075, 0.7794640064239502, 0.0005728071555495262, 0.6971840858459473, -0.012759555131196976, 0.44810351729393005, -0.06387496739625931, 0.3046553134918213, -0.934874415397644, -0.8039772510528564, -0.0851861834526062, 0.7849498391151428, -0.1783384084701538, 0.22619104385375977, 1.712761640548706, 0.2654583156108856, 0.38305535912513733, 0.34103450179100037, 0.40986987948417664, -1.060049295425415, -0.4348967969417572, -0.9398434162139893, -0.044121116399765015, -0.31335654854774475, 2.1681697368621826, 1.207593560218811, -0.5096590518951416, 0.25435301661491394, 0.5183034539222717, -0.035297006368637085, -0.37774765491485596, -0.8777212500572205, -0.7706273794174194, 0.26013821363449097, 0.1448540836572647, 0.13973954319953918, 0.6092991828918457, -0.5683364868164062, 0.6095534563064575, -0.623775064945221, -0.7159141302108765, -0.5390834808349609, 0.32415857911109924, -0.14264577627182007, 1.301530122756958, 0.7277615070343018, -1.2260048389434814, -0.7929824590682983, -0.27172523736953735, 0.3452998101711273, 0.138267382979393, -0.1548456847667694, 1.2050151824951172, 0.852056086063385, 0.015633633360266685, -0.0065953657031059265, 1.198723554611206, -0.3106768727302551, 0.21834735572338104, 0.3381097912788391, 0.12658880650997162, 0.6650357246398926, -0.9409930109977722, -0.6553587317466736, 0.3737177848815918, 0.17354832589626312, 0.7147194147109985, 1.1006460189819336, 0.7632840871810913, -0.403563916683197, -0.23348337411880493, -0.2677490711212158, -0.6848568916320801, -0.8997352719306946, -0.2169431895017624, -0.679198682308197, -0.7811475396156311, 0.5759585499763489, -0.4707493185997009, -0.09062116593122482, 0.1363891363143921, 0.11300507932901382, 0.9975531101226807, 0.3738641142845154, 0.48325255513191223, 0.39392977952957153, 0.3386521637439728, 0.24758172035217285, -0.7777512669563293, 0.6292132139205933, 0.18215830624103546, -1.2937536239624023, -0.006333548575639725, -0.24195484817028046, -0.4577637314796448, 0.8491235375404358, 0.3592463731765747, -0.2540588974952698, -0.9612175226211548, -0.7953991293907166, 0.5926340818405151, 0.7283337116241455, -0.35046306252479553, -0.2540609538555145, -1.088741421699524, 1.0211271047592163, 0.6384501457214355, 0.33961591124534607, -0.2615140378475189, 0.7635145783424377, -0.4906598627567291, -0.29042956233024597, -0.5759304761886597, 0.012694645673036575, 0.9466135501861572, -0.1550510972738266, -0.4153916537761688, 0.40660396218299866, -0.31446096301078796, -0.19810152053833008, 0.05011596158146858, 0.2846904993057251, 0.9649132490158081, -0.3796621263027191, 0.161561518907547, 1.9093819856643677, -0.38199135661125183, -0.08603076636791229, -1.3318783044815063, 0.9114680886268616, 0.2496161162853241, 0.991404116153717, 0.2414824217557907, 0.7194324731826782, 0.5893014073371887, -0.9013292193412781, 0.1842089295387268, -0.1873534768819809, 1.6047048568725586, 0.05590944364666939, -0.3896189332008362, -1.2519428730010986, -0.44461876153945923, -0.9465669989585876, -0.5917708873748779, -0.19771113991737366, 0.0759359672665596, -0.08714427798986435, -0.4327491223812103, 0.6632602214813232, 0.7550923824310303, -0.5200082659721375, -0.18463508784770966, 0.15070119500160217, 0.30206820368766785, -0.4408855438232422, -0.5397597551345825, -1.6195042133331299, -0.18382671475410461, -0.21960823237895966, -1.4705675840377808, 0.361280620098114, 0.8232315182685852, -0.2778988480567932, 1.4416171312332153, -1.4166465997695923, -0.3598827123641968, 0.34325557947158813, 0.2493085414171219, 0.3915984332561493, 0.3553493022918701, 0.14325204491615295, 0.05582941323518753, -0.68096524477005, 0.36103224754333496, 0.19000379741191864, 1.8196076154708862, -0.15810611844062805, -0.11616263538599014, -0.5516816973686218, -0.01561546977609396, 0.35800987482070923, -0.3709966540336609, -0.9648395776748657, 0.582116961479187, -0.6890820264816284, 0.2539326250553131, 0.24064810574054718, -0.0016420134343206882, 2.342193603515625, 0.054118141531944275, 0.4133547246456146, 0.6761922240257263, -0.6288062334060669, -0.42404302954673767, 0.008535467088222504, 0.2380780428647995, 0.13515175879001617, -0.557761013507843, 0.46119827032089233, 0.10438203066587448, -0.611205518245697, 0.7068552374839783, 0.5984833240509033, 0.14945049583911896, -0.6472207307815552, -0.22075027227401733, -0.00022538891062140465, 0.2100125551223755, 0.9479349851608276, 0.4232999086380005, 0.7878090739250183, -0.05521784722805023, -0.5666470527648926, 0.8730033040046692, -0.14191468060016632, -0.3041851222515106, 0.8320522308349609, 0.364651083946228, 1.1149259805679321, -1.430111050605774, -0.7563378810882568, 0.7648311257362366, 0.11614501476287842, 0.6280744671821594, 0.5475125312805176, 0.8680479526519775, -0.4899510145187378, -0.2741035521030426, 0.8072724342346191, -0.43513023853302, 1.4395891427993774, 0.4846305847167969, -0.3107281029224396, 0.2956218421459198, -0.07326778024435043, -0.2919203042984009, -0.2394481897354126, -1.15826416015625, -0.3801848292350769, -0.5866567492485046, -0.28888505697250366, 0.5569155812263489, -0.421978622674942, 0.5748370289802551, -0.07857895642518997, -0.6697553396224976, 0.32134294509887695, -0.43290257453918457, 0.06918712705373764, -0.3119974732398987, -0.32005032896995544, -0.6558403968811035, -0.6850596070289612, -0.4402658939361572, 0.17356927692890167, -0.6702853441238403, -0.903433620929718, 0.400322824716568, -1.270322322845459, -0.13634459674358368, 1.2360363006591797, 1.2559490203857422, 0.8096550703048706, 0.24282649159431458, -0.21006645262241364, 0.5313640236854553, -0.5813798308372498, 0.07771636545658112, 0.8227763772010803, -0.838105320930481, -0.376345694065094, -1.3635798692703247, -0.6376891136169434, 2.0937442779541016, 0.23482421040534973, -0.4169619083404541, 0.5467150211334229, 0.5627460479736328, 1.2770376205444336, 0.25079962611198425, -0.8189818263053894, 0.47319385409355164, -0.10740603506565094, 0.3596377968788147, 0.5392024517059326, -0.02216639183461666, -1.024155855178833, -0.5349507927894592, -1.8717200756072998, 1.1291576623916626, 0.15628837049007416, -1.4965317249298096, 0.6987751126289368, 0.3544424772262573, -0.25780871510505676, 0.2970188558101654, -0.6194812655448914, 0.3197721242904663, 0.6723357439041138, -0.15334659814834595, -1.0421556234359741, -0.20274639129638672, 0.03559042140841484, 0.2725767493247986, -0.5324379205703735, 0.6802260279655457, 0.21003776788711548, -0.1695438027381897, 0.1479049026966095, 1.1408977508544922, 0.370500773191452, 0.5781910419464111, 0.3567529022693634, -0.4996950328350067, 0.04861341416835785, -1.0037864446640015, -0.3104292154312134, -0.4362753927707672, 0.049212969839572906, -0.03920580819249153, -0.18715980648994446, -0.3177030682563782, 0.1684151440858841, -0.36896830797195435, 0.5349982380867004, -1.0620028972625732, 0.8803781270980835, 0.9529706239700317, -0.1859460026025772, -0.3440987765789032, -0.23582316935062408, -0.03227094188332558, -0.002854669466614723, -0.8356791138648987, 0.42263492941856384, -1.704102635383606, 0.1453782021999359, -0.7805761694908142, -0.06625611335039139, 0.16897355020046234, -0.45376357436180115, -0.14209672808647156, -0.8517569899559021, -1.0257409811019897, -0.759483814239502, 0.2492046356201172, 0.40744447708129883, -0.5880594849586487, 0.34932973980903625, 0.12512926757335663, -1.3462746143341064, 0.3543582260608673, 0.013588432222604752, -0.9321718811988831, -0.5031525492668152, -1.275700569152832, 0.5587443113327026, -0.8640565276145935, 0.3843182325363159, -0.1227598637342453, 0.5256163477897644, -0.5761485695838928, -1.2467092275619507, 0.0039086733013391495, -0.15674522519111633, 0.7055177092552185, 1.1279826164245605, -0.7959533333778381, 1.1561635732650757, 0.28958043456077576, -1.062769889831543, -0.64295494556427, 0.8158650994300842, -0.5785141587257385, -0.0748482495546341, 0.3533042371273041, -0.023350199684500694, 0.9143818616867065, 1.4380396604537964, -0.3526899814605713, 0.9414277672767639, 0.9057365655899048, 0.301712304353714, -1.2051548957824707, -0.14075765013694763, -0.227446511387825, -0.10298272222280502, -1.311742901802063, 0.17924973368644714, -0.7687973976135254, -1.2206822633743286, -0.4735342264175415, 0.9906395673751831, 0.9347751140594482, -1.0204226970672607, 0.09153496474027634, -0.6837045550346375, -0.2941361963748932, -0.3737918734550476, 0.07558690756559372, -0.005010763183236122, -1.0199270248413086, 0.8389229774475098, 0.02069035731256008, 0.0030502798035740852, -0.34413328766822815, -0.5264964699745178, -0.5358373522758484, 0.5199018120765686, -0.7216163277626038, 0.7681891322135925, 0.8621741533279419, -0.3641867935657501, -0.3682241141796112, 2.4002087116241455, 0.9154620170593262, -0.4631790518760681, -0.4984738528728485, 0.1140117347240448, -0.47328898310661316, 0.5950725078582764, -0.5542408227920532, 0.6144161224365234, -0.4320199489593506, -0.052409037947654724, 0.2016182243824005, -0.3822299540042877, -0.9706814885139465, 0.20089033246040344, -0.7119503617286682, 0.6096256971359253, 0.5035262107849121, -0.13873621821403503, -0.07188434898853302, 1.3367149829864502, 1.0501031875610352, -0.49204981327056885, 0.2657017111778259, -0.0773196592926979, -0.2932156026363373, -0.20945604145526886, 0.6667783856391907, 1.0749880075454712, -0.8748511075973511, 0.3880312740802765, -0.0679856538772583, 0.4607917070388794, 0.5906558632850647, -0.6044262051582336, -1.822135329246521, 0.2373696118593216, -1.285627007484436, 0.35753387212753296, 1.0232815742492676, -0.4677671492099762, -0.7314422130584717, 0.40372154116630554, 0.5417652726173401, -0.1389831006526947, -1.0368046760559082, 0.41062745451927185, -0.005319712217897177, 0.3717300593852997, 0.201389878988266, -0.6521174907684326, 1.7647931575775146, -0.03537857159972191, -0.02905905805528164, -0.1902686208486557, 0.0592024102807045, 0.02423224225640297, 0.7918530106544495, 0.17732550203800201, -0.6522835493087769, -0.04361799359321594, -0.9565648436546326, -0.8753848075866699, 0.3443368971347809, 0.1640397608280182, 0.2827751636505127, -0.471252977848053, -1.1257916688919067, 0.04099765419960022, 1.1206821203231812, 0.7944585680961609, -0.11143973469734192, -0.44182315468788147, -0.43342456221580505, 0.26832741498947144, -0.19860123097896576, 0.9303469657897949, -0.40435048937797546, 0.7747235894203186, 0.4597412943840027, -0.14863833785057068, 0.1333046406507492, -0.6442959308624268, 0.47452348470687866, -0.8166074156761169, 0.635116457939148, 0.44481900334358215, -0.8549450039863586, 0.1859489381313324, -0.17650310695171356, -0.207682803273201, 0.19128276407718658, -0.04124869406223297, 0.8895334601402283, -0.867296040058136, -1.1147907972335815, 0.07281197607517242, -0.5885867476463318, 0.5616036653518677, 0.9969101548194885, 0.046741049736738205, 0.22150465846061707, -0.8484742641448975, 0.8299196362495422, 0.2906036376953125, -0.547087550163269, 0.4213087260723114, 1.7152413129806519, 2.0608222484588623, 0.38810816407203674, -0.2160712033510208, -0.12082376331090927, 1.1484206914901733, -0.9409297704696655, -0.7219238877296448, -1.0335934162139893, -0.247640922665596, -1.1086654663085938], [-1.2257437705993652, 0.8806084394454956, -2.1269707679748535, -0.8262510299682617, 0.0890752375125885, 0.9734120965003967, 1.8329392671585083, 0.06761118769645691, 0.21946679055690765, -0.37500548362731934, -1.066422462463379, 0.4916558265686035, 1.2225539684295654, 0.8278286457061768, 0.14049504697322845, -0.40841320157051086, 0.48769018054008484, 0.5327969789505005, 0.47508880496025085, 0.9457966089248657, -0.6312977075576782, 0.20338654518127441, -0.02202356420457363, -0.12521488964557648, 0.28460460901260376, 0.6278418302536011, -1.4307576417922974, -0.5306382775306702, -1.1062828302383423, -0.8147662281990051, 1.136654019355774, -0.48043471574783325, 0.5411747097969055, 0.8879987597465515, -0.4640885293483734, 0.09580978751182556, 1.1867703199386597, 0.4894716143608093, 1.159457802772522, 0.6742350459098816, 2.3370773792266846, 0.43100664019584656, 0.612421989440918, -1.1386065483093262, -1.301247477531433, 0.03255094215273857, 0.9661938548088074, -1.5871707201004028, -0.036770403385162354, 0.4577477276325226, 0.3211790919303894, 0.42205479741096497, 0.624148428440094, 0.8346823453903198, 0.566253125667572, -1.0141675472259521, 0.30908945202827454, -0.13836897909641266, 0.20210444927215576, 0.040913768112659454, 0.9862556457519531, -0.9260351061820984, -0.7631349563598633, 1.2238909006118774, 0.23852136731147766, 0.18449048697948456, -0.5854676961898804, 0.06988844275474548, 0.3917996287345886, -0.23204068839550018, 0.15287832915782928, 0.1957344114780426, -0.13113106787204742, 0.5081886053085327, -0.7263433933258057, 0.04453252628445625, 0.44409888982772827, 0.1006762683391571, 0.6274580955505371, 0.5711055397987366, -0.9431326985359192, 0.26916059851646423, 0.43502917885780334, -0.13553160429000854, 0.4845566153526306, 0.4298267066478729, -0.09712129086256027, -0.29910755157470703, -0.5571409463882446, 1.5877659320831299, 0.2906772196292877, 0.34928566217422485, 0.257142573595047, -0.47861748933792114, -0.042120542377233505, -0.7328629493713379, 0.6852959990501404, -0.11605917662382126, -0.8852618336677551, -0.5818145275115967, -0.16845116019248962, -0.17029590904712677, 0.354568749666214, 0.7089688181877136, 0.8571367859840393, 1.3581312894821167, 0.3898628354072571, -0.20754463970661163, -0.5473220348358154, -0.46297362446784973, -0.5136462450027466, 0.6312395334243774, -1.0717493295669556, -1.0545220375061035, -1.1035544872283936, 0.5425148606300354, 0.012109626084566116, -0.1288214474916458, 0.7008684277534485, 0.4972231090068817, -0.3056904077529907, -0.1359810084104538, 0.025851543992757797, 0.8798885345458984, 0.3750922381877899, 0.20791128277778625, -0.6955729722976685, 0.041633229702711105, 0.5929997563362122, 0.17391447722911835, 0.3759579658508301, -0.02298295870423317, 0.4385741353034973, 1.313470482826233, -0.25668299198150635, 0.790465235710144, -0.4425872266292572, -1.214813470840454, -0.37662506103515625, 0.41938188672065735, 0.43738022446632385, -0.25175586342811584, -0.08614025264978409, -0.9924036860466003, -0.08835015445947647, -0.9316983222961426, 0.79880690574646, -0.5507476925849915, -0.35848769545555115, 0.12378483265638351, -1.0705277919769287, 0.4207218587398529, -0.16802558302879333, 0.8538134098052979, -0.15707260370254517, -0.46152424812316895, 0.1543566733598709, 0.4046418368816376, 0.4299473762512207, 0.09292393922805786, 0.6773073673248291, -0.48989370465278625, -0.6553381681442261, 0.21543064713478088, -0.08882446587085724, -0.38292157649993896, -0.18304462730884552, 0.5309907793998718, 0.09120617061853409, 0.6882479190826416, -0.5001025199890137, -0.511608362197876, -1.1831824779510498, 0.19321388006210327, 0.21745915710926056, -1.1660255193710327, 1.504051685333252, -0.7943758368492126, -1.1021618843078613, -0.9514569044113159, 0.6793301701545715, -0.5031246542930603, -0.09170325845479965, -0.8530232906341553, 0.9492815732955933, -0.35097479820251465, -0.5170688033103943, -0.34177592396736145, -0.3434210419654846, -1.2923725843429565, -1.0225588083267212, -0.29811230301856995, -1.0144593715667725, 0.044581152498722076, 0.06779990345239639, -0.20908856391906738, 0.17938658595085144, -0.39794525504112244, -1.516804814338684, 0.36077889800071716, 0.06427472084760666, -0.6581932902336121, -1.1273349523544312, 0.11631128937005997, -0.293133944272995, 0.5364980101585388, -1.1155011653900146, 0.9597488045692444, -1.1083115339279175, 0.13642027974128723, 0.30977651476860046, 0.5664331912994385, -1.021122932434082, 0.745948314666748, -0.5595129728317261, -1.2102779150009155, 0.3825131952762604, -0.03444787859916687, 0.37880346179008484, 0.030267316848039627, 0.3098219037055969, 0.44978606700897217, 0.5205127000808716, -0.21311989426612854, 0.81751549243927, 0.08506236970424652, -0.31668373942375183, -1.1595121622085571, -0.7508074641227722, 0.6598209738731384, -0.7023721933364868, -0.7476823925971985, 0.9678860902786255, 0.05223644897341728, -0.7785317301750183, 0.5107424855232239, 0.04389004409313202, -0.5496026873588562, 0.08454057574272156, 0.4804009199142456, -0.05380430817604065, 0.7256266474723816, -0.19846764206886292, -0.2851252257823944, -0.3440425992012024, -0.20313887298107147, 0.822283148765564, -0.24852527678012848, 0.42093706130981445, 1.4673435688018799, 0.6729923486709595, 0.32964345812797546, 0.3521229326725006, -0.12484794110059738, -0.5032520294189453, -0.4636056125164032, -0.5950018763542175, 0.32226675748825073, -0.6891787648200989, 1.4807265996932983, 0.6797175407409668, -1.0116393566131592, -0.44087743759155273, 0.3892466127872467, 0.5427727103233337, -0.6067202091217041, -0.7883555889129639, -0.5452740788459778, 0.1995948851108551, -0.3925792872905731, 0.1363174468278885, 0.4971122145652771, -0.1880665272474289, 0.691260814666748, -0.05725393816828728, 0.11137944459915161, -0.742293655872345, 0.3800051212310791, 0.21873179078102112, 1.1282480955123901, 0.8990679979324341, -0.8047999143600464, -0.2649557888507843, -0.45105910301208496, 1.0119024515151978, -0.029204703867435455, 0.5652305483818054, 0.869368851184845, 0.9234351515769958, -0.09236089140176773, 0.23467445373535156, 0.2310643494129181, -0.0750032514333725, 0.9711291790008545, 0.4368051290512085, -0.047290343791246414, 0.9699618220329285, -0.5768488645553589, -1.225395679473877, 0.614180326461792, 0.19661229848861694, 0.31224626302719116, 0.5746666193008423, 1.1151398420333862, 0.5319306254386902, -0.11050508916378021, -0.7267482876777649, -0.034255288541316986, -1.0243041515350342, -0.7475452423095703, -0.9411138892173767, -1.2129896879196167, -0.32434016466140747, -0.6110512018203735, 0.4893702566623688, 0.20956550538539886, -0.41573986411094666, 0.5291609168052673, 0.313970148563385, -1.001579999923706, -0.09129279106855392, 0.3408122658729553, 0.253766268491745, -0.7765927314758301, 1.0467792749404907, 0.5799930691719055, -0.7359197735786438, -0.5899551510810852, -0.3977803587913513, 0.38963741064071655, 0.7977482676506042, -0.2397332787513733, 0.13711844384670258, -0.8343642354011536, -0.45232245326042175, -0.053059689700603485, 1.5393121242523193, -0.10905618965625763, -0.2973683178424835, -0.9879453778266907, 0.3775429129600525, 1.0735284090042114, 0.5334504842758179, -0.5729302167892456, 0.9141541123390198, -0.6472694873809814, -0.9340019226074219, 0.14009353518486023, 0.07797648012638092, 0.9930770397186279, -0.3350544273853302, -0.37039342522621155, 0.09574858844280243, -0.1595129817724228, -0.3301638960838318, 0.43971604108810425, 0.15010592341423035, 0.7930722236633301, -0.3406849503517151, 0.054950471967458725, 1.431235671043396, -0.3916250467300415, -0.026096101850271225, -1.6987859010696411, 0.6995317935943604, 0.44050267338752747, 1.2599308490753174, 0.3354474604129791, 1.4035053253173828, 0.10659433901309967, -0.84236741065979, 0.17236576974391937, -0.18807809054851532, 0.9870229959487915, -0.050337858498096466, -0.6282238960266113, -0.09433454275131226, -0.22766168415546417, -0.46174657344818115, -0.9493381381034851, -0.2744606137275696, 0.36002641916275024, -0.7232394218444824, -0.1142927035689354, 0.8242276906967163, 1.388222336769104, -0.2958528995513916, -0.07361405342817307, -0.040088944137096405, -0.22174198925495148, 0.5500307083129883, 0.14939749240875244, -0.12392622977495193, 0.020404931157827377, -0.06065593287348747, -1.2928105592727661, 0.32124239206314087, 0.08419934660196304, 0.7846534252166748, 0.7201714515686035, -0.8210418820381165, 0.009122375398874283, -0.34607288241386414, 0.037613946944475174, 0.20929186046123505, 0.23739905655384064, -0.480228990316391, 0.11869625747203827, 0.19300256669521332, -0.15893584489822388, -0.18144041299819946, 1.683995246887207, 0.38504287600517273, -0.22535361349582672, 0.16504330933094025, 0.37252727150917053, 0.0005517182871699333, 0.22754225134849548, -0.1650623083114624, 0.5394532680511475, -0.7467578053474426, 0.00823521800339222, -0.5129930973052979, 0.14949969947338104, 2.1038951873779297, 0.028102727606892586, 0.18031413853168488, 0.5458570122718811, -0.31495124101638794, -0.9346570372581482, 0.039287883788347244, -0.13085110485553741, -0.22052910923957825, -1.5606844425201416, -0.07202820479869843, 0.15644049644470215, -0.7939412593841553, 0.5612168312072754, 0.6751548647880554, 0.315805584192276, 0.2814550995826721, -0.05124916136264801, 0.31209424138069153, 0.7496950626373291, 0.9938300251960754, 0.6709689497947693, 0.5921858549118042, -0.3277295231819153, -0.24012094736099243, 1.0554746389389038, 0.0321887768805027, -0.3582199215888977, 0.5127540230751038, 0.34793612360954285, 0.8735047578811646, -1.5631227493286133, -0.8520144820213318, 1.1164616346359253, 0.36829712986946106, 0.5509191155433655, 0.45917242765426636, 0.7990660071372986, -0.6839007139205933, 0.18511725962162018, 0.3568606972694397, -0.3982318937778473, 0.4392423629760742, -0.23386123776435852, -0.2997458279132843, 0.10860804468393326, -0.2861216068267822, 0.1840333342552185, -0.6673614978790283, -0.6017410755157471, -0.41797584295272827, -1.0458412170410156, 0.6586837768554688, 0.3174108564853668, -0.0718773603439331, 0.5897253155708313, -0.6008031368255615, -1.3522117137908936, 0.9457687735557556, -0.5727394819259644, -0.0658663809299469, -0.1891898661851883, -0.834194004535675, -0.07117357105016708, -0.6514992117881775, -0.1750849038362503, -0.21034368872642517, -0.7132148146629333, -0.6895133852958679, 0.23605895042419434, -1.3661051988601685, -0.14705486595630646, 0.36287784576416016, 1.0352935791015625, 1.3420764207839966, -0.11709565669298172, -0.040292225778102875, 0.5562554597854614, -0.8456225991249084, -0.3519207239151001, 0.7619399428367615, -0.10231419652700424, -0.671116828918457, -1.7344896793365479, -0.2632301151752472, 1.489547848701477, 0.38546067476272583, -0.3366471529006958, 0.7715599536895752, 0.595257580280304, 1.2689419984817505, -0.31513455510139465, -1.523053526878357, 0.4956694543361664, 0.09964587539434433, 0.6315694451332092, 0.8348277807235718, -0.48368704319000244, -0.7893969416618347, -0.4009656012058258, -1.8988926410675049, 1.6353908777236938, -0.08912661671638489, -1.02960205078125, 1.0776915550231934, 0.08071313798427582, -0.2980814576148987, 0.05004461109638214, -1.324222445487976, -0.4498644471168518, 0.06055350601673126, 0.19654282927513123, -1.2439374923706055, 0.568418562412262, 0.05481787025928497, 0.7303664088249207, 0.19544406235218048, 0.07459834963083267, -0.34407904744148254, -0.8567517995834351, 0.16216175258159637, 0.7453657388687134, 0.28333473205566406, 0.41734716296195984, 0.586715579032898, 0.2870270907878876, 0.43079090118408203, -0.15731962025165558, 0.3551061153411865, 0.039496418088674545, 0.35633763670921326, 0.6781511902809143, -0.4435027241706848, 0.12184694409370422, -0.6944066286087036, 0.3627541959285736, -0.5990723967552185, -0.707356870174408, 0.6264890432357788, 0.23477838933467865, -0.13227832317352295, -0.013262923806905746, -0.8266658782958984, -0.14644521474838257, -0.19512240588665009, -0.5519652962684631, 0.9053796529769897, -1.9218693971633911, -0.43612614274024963, -0.15206898748874664, -0.08134404569864273, -0.23379351198673248, -0.5772638916969299, 0.16506727039813995, -0.4482049345970154, -0.7410616874694824, -0.8315237164497375, -0.056408073753118515, -0.3076143264770508, -0.8870769739151001, 0.9102276563644409, 0.9707664251327515, -0.8768041133880615, 0.24275602400302887, -0.1603303998708725, -1.0885674953460693, -0.10013369470834732, -1.3796353340148926, 0.6443109512329102, 0.1884768158197403, 0.7508653402328491, -0.04514892399311066, 1.1259217262268066, -0.6522384881973267, -0.8987529873847961, -0.5167436003684998, 0.359703004360199, 0.4934779703617096, 0.3140808641910553, -0.27755501866340637, 1.4023886919021606, 0.4459114372730255, -0.484174519777298, -0.30567893385887146, 0.47470441460609436, -0.7307102680206299, 0.33398598432540894, 0.9804424047470093, -0.39798957109451294, 0.4398970305919647, 1.2962490320205688, 0.24614423513412476, 0.8353061676025391, 0.5767331123352051, 0.04249433055520058, -0.6675370931625366, -0.7021185755729675, 0.1429571807384491, -0.15394139289855957, -1.6994379758834839, -0.6269920468330383, -0.21610765159130096, -1.0555527210235596, -0.9447665214538574, 0.7182443141937256, 0.6516774296760559, -0.9290580153465271, -0.2786926031112671, -0.471383661031723, 0.1781567931175232, -0.5533329248428345, 0.35428228974342346, 0.06881639361381531, -0.5355628728866577, -0.015355011448264122, -0.011284176260232925, 0.12536770105361938, -1.1934521198272705, -0.2401553988456726, 0.3258264362812042, 0.2825407385826111, -0.6503341197967529, 0.45692822337150574, 0.6325473189353943, -0.2392451912164688, -0.651222288608551, 0.9277087450027466, 0.8922609686851501, -0.0138993039727211, -0.15499423444271088, 0.1184244379401207, -0.09295450896024704, 1.2271003723144531, -1.3231980800628662, 0.806219756603241, -0.3252376616001129, 0.46678832173347473, 0.12233244627714157, -0.5511083006858826, -0.5529068112373352, 0.3575194478034973, -0.5076355338096619, 0.75509113073349, 0.7713684439659119, -0.3197123110294342, -0.6179948449134827, 1.2319942712783813, 0.17815227806568146, -0.18544822931289673, -0.13281899690628052, 0.4375035762786865, -0.25561612844467163, 0.28835827112197876, 0.7543082237243652, 1.0889308452606201, -0.5210331082344055, 0.4754010736942291, -0.3449043333530426, 0.023257410153746605, 0.9133666753768921, -0.28148776292800903, -1.2333158254623413, -0.4465290606021881, -1.2460898160934448, -0.24227812886238098, 1.2373234033584595, -1.0190882682800293, -0.9347599744796753, 0.18709373474121094, 0.2858935594558716, 0.170869842171669, -0.4262547492980957, -0.5180240273475647, -0.4301091432571411, 0.683869481086731, 0.30863380432128906, -0.35755062103271484, 1.2137774229049683, -0.3251403868198395, -0.6375880837440491, -0.17459934949874878, -0.1471003293991089, -0.11517742276191711, 0.6585607528686523, 0.7215639352798462, -0.004811670631170273, 0.2648811638355255, -0.3042941987514496, -0.42135411500930786, 0.3927501440048218, -0.28695663809776306, -0.059877388179302216, -0.18496301770210266, -0.8784087300300598, 0.10292678326368332, 0.559798538684845, 0.45778530836105347, -0.18023569881916046, -0.09364582598209381, -0.6226441264152527, 0.5612233281135559, 0.21375919878482819, 1.1635619401931763, -0.7148077487945557, 0.34411031007766724, 0.13560380041599274, -0.5242342352867126, -0.10316988825798035, -0.43387603759765625, 0.38174229860305786, -0.47650009393692017, 0.9670817852020264, 0.6553694605827332, 0.14376568794250488, 0.3149223029613495, -1.0004740953445435, -0.03256777301430702, 0.16232410073280334, -0.1322007179260254, 0.19301262497901917, -1.0182232856750488, -0.43916380405426025, -0.5538564324378967, -0.48857423663139343, 0.624720573425293, 0.6030718684196472, -0.0717645138502121, 0.21323738992214203, -0.5661065578460693, 0.3824544847011566, -0.3770257532596588, -0.12478084117174149, 0.6486914157867432, 1.3192256689071655, 1.191051959991455, 0.3268791437149048, 0.012034254148602486, -0.10691042244434357, 0.695997416973114, -0.8994981646537781, -0.6779705286026001, -0.6472657322883606, -0.35284239053726196, -1.0983930826187134], [0.4597851037979126, 0.31108373403549194, -3.160808563232422, -0.9122166037559509, 0.0848330408334732, 0.8736913800239563, 0.7131565809249878, 0.5199477672576904, -0.3107275664806366, 0.23551461100578308, -2.1045174598693848, 0.09366656839847565, 0.723853349685669, -0.04642393812537193, -0.706185519695282, 0.214848130941391, 0.5236194729804993, -0.32202833890914917, 0.00938473641872406, 1.1916425228118896, -1.2442054748535156, -0.6152081489562988, 0.17687314748764038, 0.2280193269252777, 0.5316016674041748, -0.5841854810714722, -0.7204529047012329, 0.42860573530197144, -0.9149092435836792, -0.9274226427078247, 0.9078483581542969, -0.0661243349313736, -0.27722615003585815, -0.5086706876754761, -1.823518991470337, -0.34682321548461914, 1.4651241302490234, 1.1254386901855469, 0.6106842160224915, 0.9083818793296814, 2.4604897499084473, 1.0031200647354126, -1.0899245738983154, -0.7059042453765869, -0.6700867414474487, -0.5407214164733887, 1.3815327882766724, -0.5109501481056213, 0.014529440551996231, 0.49020978808403015, 0.36709463596343994, 0.40151166915893555, 0.8865092992782593, 1.2073230743408203, 1.786604642868042, -0.6689801216125488, 1.1933274269104004, 0.167740598320961, 0.20923036336898804, -0.8565938472747803, 1.097776174545288, -0.23542499542236328, -0.38798147439956665, 1.1641826629638672, 0.046931009739637375, 0.12392645329236984, 0.06813345849514008, 0.7458597421646118, 0.14805221557617188, -0.6652411222457886, 0.8686553239822388, 1.308179259300232, 0.10527974367141724, -0.6082160472869873, -0.9256971478462219, -0.24733132123947144, 0.4008641242980957, 0.3011474013328552, 0.188812717795372, 1.2535221576690674, -1.147602915763855, 0.9064807891845703, 0.8386458158493042, 0.2803356647491455, 0.23436661064624786, 0.4592912197113037, 0.2768807113170624, -0.018915753811597824, -1.0412790775299072, 0.7487496137619019, 0.07344165444374084, 0.7878437638282776, 1.1375954151153564, -0.5164263248443604, 0.15359261631965637, -0.6939491629600525, -0.16816189885139465, -0.5503977537155151, -0.2238340526819229, -0.6096181869506836, -0.9509931206703186, -0.823114812374115, 1.48341965675354, 0.5921725034713745, -0.2955041527748108, 2.555190086364746, 0.2983148694038391, -0.3302514851093292, -0.6193208694458008, -0.7794588804244995, 0.3389861583709717, 0.37920454144477844, -0.6499451398849487, -1.389756679534912, -0.5026264190673828, 0.26233986020088196, 0.4437651038169861, 0.3913387060165405, 0.49324169754981995, 0.541350245475769, -0.4031704068183899, 0.1754843294620514, -0.27620410919189453, 0.2795659899711609, 0.5159905552864075, -0.8635988831520081, -1.0071263313293457, 0.43027040362358093, 0.08217868208885193, 0.1871899515390396, 0.8500754833221436, 0.08918406069278717, 0.3988456130027771, 1.075850248336792, -0.029689088463783264, 0.7876341938972473, 0.31553417444229126, -1.1594691276550293, -0.5904698967933655, 0.5721969604492188, 0.4389379620552063, 0.047013215720653534, 0.09545265883207321, -0.9309038519859314, -0.3695151209831238, -0.19798673689365387, 0.8297793865203857, -0.5764172673225403, -0.7413040995597839, -0.10251903533935547, -1.3538576364517212, 0.9986145496368408, -0.3623560070991516, 0.2855624854564667, 1.1147127151489258, -0.32958507537841797, -0.15466651320457458, 0.009953320026397705, 0.09679253399372101, 0.03838459774851799, 0.8235553503036499, -0.665859580039978, 0.14767393469810486, 1.1237062215805054, 0.297664076089859, -0.7008432745933533, -0.10677396506071091, 0.48665714263916016, 0.08135940134525299, 0.6647323966026306, 0.03402036428451538, -1.2206981182098389, -1.045891284942627, 0.0529743991792202, -0.22204264998435974, -1.259589672088623, 0.5685586929321289, -0.6722015142440796, -1.2176848649978638, -0.6130750179290771, 1.115022897720337, -1.0023727416992188, 0.25483769178390503, -0.010223928838968277, 0.767288088798523, -0.11411597579717636, -0.6914334297180176, -1.0270484685897827, -0.10130052268505096, -0.9809773564338684, -2.0321714878082275, 0.45148950815200806, -0.8630338311195374, -0.11663979291915894, -0.4261772036552429, -0.6547076106071472, 0.39004331827163696, -1.1985585689544678, -0.761483371257782, -0.049601681530475616, 0.12683719396591187, -0.0763191506266594, -0.7329049110412598, 0.4898838400840759, -0.13355028629302979, -0.22839823365211487, -1.0691450834274292, 0.4686537981033325, -0.49725598096847534, 0.29146039485931396, 0.23983612656593323, -0.3472405672073364, 0.08426929265260696, 0.8425298929214478, 0.2682197690010071, -1.6004548072814941, 0.03342984616756439, 0.09282232075929642, -0.06182042136788368, -0.3932320773601532, 0.6159031391143799, 0.791864812374115, 1.0731806755065918, -0.7163394093513489, 0.8860034942626953, 0.05393137037754059, 0.3439328372478485, -0.3923710584640503, -0.7545148134231567, -0.05321681126952171, -0.7140711545944214, -0.722233772277832, 0.3664624094963074, 0.6873189210891724, -1.2035765647888184, 0.8958669304847717, -0.25247257947921753, 0.24738235771656036, -0.25225725769996643, 0.3282192051410675, -0.08164143562316895, 0.6047252416610718, -1.041202425956726, -0.2822599709033966, -0.6307347416877747, 0.7423012852668762, 0.010155066847801208, -0.32235991954803467, 0.6461629271507263, 0.884506106376648, 0.4591848850250244, 0.38494205474853516, 1.2166310548782349, -0.7483378648757935, -0.15071827173233032, -1.17972731590271, -0.47170567512512207, 0.71086585521698, 0.21018381416797638, 1.7183723449707031, 0.8060071468353271, -0.4489898085594177, -0.08515670895576477, -0.5962564945220947, -0.18288658559322357, -1.2958781719207764, -0.6779832243919373, -0.5378717184066772, 0.8841737508773804, -0.05670511722564697, 0.42573487758636475, 0.13555213809013367, -0.49494999647140503, 0.6109605431556702, -0.06778095662593842, 0.33046793937683105, 0.6758378148078918, 0.2370235025882721, -0.4532715678215027, 0.5565690994262695, -0.041295021772384644, -1.2939566373825073, -0.5256941914558411, -0.9303657412528992, 0.7028659582138062, -0.05802486836910248, -0.6308246850967407, 0.29914161562919617, 0.5131802558898926, -0.26772254705429077, 0.05184146389365196, 0.32215631008148193, -0.31061604619026184, 0.37702471017837524, -0.1577470302581787, 0.8312211036682129, 0.7829869985580444, -0.6007645130157471, -0.24259962141513824, 0.0847969502210617, 0.27678754925727844, 0.7366893291473389, 1.0020267963409424, 1.9545817375183105, -0.1396307647228241, 0.20512324571609497, 0.33224794268608093, 0.06054233759641647, -0.18516439199447632, -0.4358212351799011, -1.3811562061309814, -1.2183362245559692, 0.1305915266275406, -0.5282297134399414, -0.23487602174282074, 0.26404762268066406, -0.28295576572418213, -0.6408090591430664, -0.12662482261657715, -0.25705984234809875, -0.20062237977981567, 0.11783431470394135, -0.25878000259399414, -0.5843877792358398, 0.7598774433135986, 1.0875649452209473, -1.3572120666503906, 0.11810538917779922, -0.10201718658208847, -0.19288425147533417, 0.9183407425880432, 0.009933294728398323, 0.7810512781143188, -1.1955277919769287, -0.8582518100738525, 0.13482388854026794, 0.24778001010417938, 0.5663513541221619, -1.1517350673675537, -0.41399386525154114, 1.2990167140960693, 1.0520710945129395, -0.010570257902145386, -0.3753982186317444, 0.27416712045669556, -0.580102264881134, -1.0717288255691528, -0.20280510187149048, 0.2023608684539795, 0.7059583067893982, -1.4841305017471313, -0.39229199290275574, 0.23358921706676483, -0.6124278903007507, -0.394065260887146, 0.5496300458908081, -0.48918837308883667, 0.6787733435630798, -0.10777539014816284, -0.671733558177948, 2.2173655033111572, -0.29733991622924805, 0.7008414268493652, -1.4347529411315918, 0.5114127993583679, 0.23995941877365112, 1.9796520471572876, 0.17813363671302795, 1.3782484531402588, 0.09890376031398773, -0.5910168886184692, 0.06303565949201584, 0.04530186951160431, 0.6882932782173157, 0.8389995694160461, -0.08878467977046967, -0.013630274683237076, 0.09583514928817749, -0.36213213205337524, -0.2888256311416626, -0.13750243186950684, 0.28276005387306213, -0.8749806880950928, -0.11943790316581726, 0.4708120822906494, 0.4078720510005951, -0.9000146389007568, 0.01506565511226654, 0.22936834394931793, -0.4749711751937866, 0.07941529899835587, 0.19115450978279114, -1.4009339809417725, 0.2928670346736908, 0.9399259090423584, -1.5063388347625732, 0.5031881928443909, -0.0008488520979881287, 0.6327203512191772, 1.0149407386779785, -0.7168186902999878, -0.07720769196748734, -0.3755966126918793, 1.1462676525115967, 0.5408918857574463, -0.09763482213020325, 0.05390162020921707, -0.39848363399505615, 0.770042896270752, 0.16742882132530212, 0.04307699203491211, 1.3852863311767578, 0.2771373689174652, -0.3879741430282593, 0.23289328813552856, 0.6752897500991821, 0.12630684673786163, 0.7503578662872314, 0.055291008204221725, -0.31794273853302, -0.35629916191101074, 0.014473129995167255, -0.13423295319080353, 0.8339204788208008, 1.3098669052124023, 0.39672237634658813, -0.024278106167912483, 0.2548205852508545, -0.8919366002082825, -1.4401384592056274, 0.537092924118042, 0.6215824484825134, 0.18849311769008636, -0.2682209014892578, 0.0677361711859703, 0.5416288375854492, 0.2125525176525116, 0.7807697057723999, 0.6993345022201538, 0.46703481674194336, 0.45424485206604004, -0.5063598155975342, 1.0485575199127197, 0.7234272956848145, 0.7518932819366455, 0.40036433935165405, 0.538560152053833, -0.9937008619308472, -0.4811384677886963, 0.8368310928344727, -0.41824015974998474, 0.39549413323402405, 0.045676615089178085, 0.42013323307037354, 1.3743689060211182, -1.413650393486023, 0.2997753322124481, 0.2628234326839447, 0.4032191038131714, 0.14052768051624298, 0.9901285171508789, 0.6764854788780212, -0.9197769165039062, -0.2403150200843811, -0.49704229831695557, -1.06416654586792, -0.7715761661529541, 0.03477047011256218, 0.3715493679046631, 1.0356566905975342, -0.5278522968292236, -0.4525723457336426, -0.5762060880661011, -0.25831693410873413, 0.4909138083457947, -0.5564792156219482, 0.08957278728485107, 0.2630828022956848, -0.316913366317749, 0.9877878427505493, -0.19639894366264343, -0.6488047242164612, 0.7993475198745728, -1.1200650930404663, -0.016225937753915787, -0.3291342556476593, -1.5257903337478638, -0.09486912935972214, 0.2750532627105713, -0.5103338956832886, 0.08839081227779388, 0.08992801606655121, 0.38998711109161377, -0.33560290932655334, -1.2382698059082031, -0.1307569146156311, 0.4981665015220642, 1.4789899587631226, 0.16472077369689941, 0.7524290084838867, 0.4039018750190735, -0.035370342433452606, -0.6344751119613647, -0.2253057211637497, 0.7413010597229004, -0.7284867763519287, -0.062202174216508865, -1.1501412391662598, -0.5429506301879883, 0.573021411895752, 0.23415598273277283, 0.5905417203903198, -0.21993598341941833, 0.6020866632461548, 1.2379465103149414, -0.018075738102197647, -1.1866025924682617, 1.3927147388458252, -0.15559788048267365, 0.44017890095710754, 0.2929042875766754, -0.508733332157135, -0.8355884552001953, 0.22178536653518677, -1.5287463665008545, 0.52928626537323, 0.230968177318573, -0.9795998334884644, 0.10240154713392258, 0.2408219873905182, -0.012556908652186394, 0.4150787591934204, -0.936965823173523, 0.4189000725746155, 0.6522388458251953, 0.16397391259670258, -0.994255542755127, 0.6245763301849365, 0.5379620790481567, -0.3045864999294281, -0.10537339001893997, -0.15546926856040955, -0.48112761974334717, -0.34933367371559143, -0.312216192483902, -0.026744849979877472, 1.0057713985443115, -0.035331208258867264, 0.46380823850631714, 0.12908010184764862, 1.1500873565673828, -0.6922293305397034, -0.48162275552749634, -0.2472594976425171, 0.8140637874603271, -0.01468951627612114, -0.780147135257721, 0.5440835952758789, -1.374391794204712, -0.24955622851848602, 0.011028051376342773, -0.11618631333112717, 0.9684653282165527, 0.7641996145248413, -0.19239458441734314, -0.006891701370477676, -0.667578935623169, 0.47471004724502563, -0.3422315716743469, -0.7849750518798828, 0.33854740858078003, -1.580524206161499, -0.2053380310535431, -0.3417580723762512, -0.4734402894973755, 0.327120304107666, -0.23179450631141663, 0.31203532218933105, -0.788009762763977, -0.9768917560577393, -0.9058744311332703, -0.2681345045566559, 0.13413190841674805, -0.1419796198606491, 0.9792789220809937, 1.1494210958480835, -0.43997472524642944, -0.14608226716518402, 0.3696199059486389, -0.9238905906677246, 0.059897035360336304, -1.091292381286621, 0.8877497911453247, -0.2978460192680359, 1.5944172143936157, -0.7258157730102539, 1.1332454681396484, -0.8351001143455505, -0.7771949172019958, -1.1384055614471436, -0.6673676371574402, -0.024159131571650505, 1.1592224836349487, -1.5979859828948975, 1.097910761833191, -0.17633415758609772, -0.9556909799575806, -0.2490171492099762, 0.8495116233825684, -0.22310484945774078, 0.1404571384191513, -0.5733208656311035, -0.20935803651809692, 0.7106806039810181, 1.6353380680084229, 0.37506943941116333, 1.5151453018188477, 0.09632959961891174, -0.33117952942848206, 0.0938601866364479, -0.46257850527763367, -0.33502358198165894, 0.03464477136731148, -0.9002907276153564, -0.008746970444917679, -0.22169172763824463, -1.5461004972457886, -0.6189262866973877, 0.25930336117744446, 1.2446348667144775, -1.4338006973266602, 0.218157559633255, -0.6629222631454468, -0.4895283579826355, -1.1217167377471924, 0.883836030960083, -0.48743534088134766, -0.043566346168518066, 0.04677596688270569, 0.16735297441482544, -0.05597250163555145, -0.501501202583313, -0.29345566034317017, -0.02904564142227173, 0.10888797044754028, -0.5485348701477051, 1.283682107925415, 1.1579623222351074, 0.47572705149650574, -0.11509811133146286, 1.3462834358215332, 1.1643718481063843, -0.2877315878868103, 0.16718141734600067, 0.15954427421092987, -0.5174608826637268, -0.026987876743078232, -0.2684655487537384, -0.578292727470398, -1.0680334568023682, 0.9134579300880432, -0.12481069564819336, -0.3827793598175049, -1.2675199508666992, 1.4800419807434082, -0.4315354526042938, -0.12904658913612366, 0.19459623098373413, -1.414023756980896, -0.11794950067996979, 0.7923619747161865, 0.07346577942371368, 0.18664930760860443, 0.47839248180389404, 0.9013189077377319, -0.22759698331356049, 0.1850602924823761, 0.6889739036560059, -0.03754653409123421, -1.1492385864257812, 0.6104322671890259, 0.47933992743492126, -0.25650835037231445, 0.030002497136592865, -0.23930683732032776, -2.067002296447754, -0.15065070986747742, -1.1320302486419678, -0.22943150997161865, 0.535544753074646, -1.0279693603515625, -0.9690842628479004, -0.05960724130272865, 0.5033540725708008, -0.5990172028541565, -0.08808215707540512, -0.1579906940460205, -0.2910085916519165, -0.01728745922446251, 1.2578552961349487, -0.12273810803890228, 1.241155743598938, -0.039924584329128265, -0.12961077690124512, -0.9342705011367798, -0.8298614621162415, 0.33318889141082764, 1.000396490097046, 0.5510066747665405, -0.35505008697509766, 0.42429351806640625, 0.049131836742162704, -0.4798131585121155, 0.03395075723528862, -0.2010090947151184, -0.2704024910926819, 0.08839702606201172, -0.64077228307724, -0.09418749809265137, -0.07241935282945633, 0.6711444854736328, -0.27914148569107056, -0.787200927734375, -0.23117536306381226, 0.27346277236938477, -0.48178842663764954, 0.5073018074035645, 0.06878801435232162, 1.3183573484420776, 0.3355642557144165, -0.8576903939247131, 0.06815316528081894, -0.5379053354263306, 1.1580915451049805, -0.2525351941585541, 0.50957852602005, -0.3188912272453308, -0.45329421758651733, -0.06333653628826141, -0.7674349546432495, 0.166120246052742, 0.36569902300834656, 0.41960474848747253, -0.25629472732543945, -0.6840944886207581, -1.597952127456665, -0.9150163531303406, 0.05881958454847336, -0.19049009680747986, 0.19904178380966187, 0.6573903560638428, -0.3836281895637512, -0.5559393167495728, 0.27132928371429443, 0.1916620433330536, -0.02113642543554306, 0.5678734183311462, 1.6696351766586304, 1.8905115127563477, 0.6227498054504395, 0.012168124318122864, -0.7305647730827332, 0.4798857867717743, -0.16169780492782593, -0.23648060858249664, -1.243251085281372, 0.7544572949409485, 0.07246094942092896], [0.21853844821453094, 0.8309078812599182, -2.6925785541534424, -1.190637469291687, -0.4534156322479248, 0.3948628008365631, 1.8902169466018677, 0.4334219992160797, -0.45357227325439453, -0.265948086977005, -0.6074482202529907, 0.23916350305080414, 0.6356931924819946, 1.1383007764816284, -0.2139584720134735, -0.1194332167506218, 0.7047262191772461, -0.08461002260446548, 0.43598443269729614, 1.0048619508743286, -0.9382650256156921, 0.32777708768844604, -0.22380687296390533, 0.3875511586666107, 0.4065926969051361, 0.40402960777282715, -0.8962631821632385, 0.08662395924329758, -0.48119983077049255, -0.9107981324195862, 1.2737547159194946, -0.8594422340393066, -0.6869574189186096, -0.23567157983779907, -0.3865673840045929, -0.5918333530426025, 1.4527397155761719, 0.7509312033653259, 1.512046217918396, 1.7531166076660156, 2.729053020477295, -0.5976812839508057, -0.0038337833248078823, -1.3600883483886719, -0.39042016863822937, -0.31036949157714844, 1.1612882614135742, -1.5102810859680176, -1.0493738651275635, -0.1146441400051117, 0.637367844581604, 0.7180810570716858, 0.25074705481529236, 0.9078878164291382, 1.416675329208374, -0.9412992596626282, 0.3739517033100128, -0.5239354968070984, 0.6393139958381653, 0.25924643874168396, 0.11008184403181076, 0.37249380350112915, 0.03496880084276199, 0.8575481176376343, 0.4823909401893616, -0.591690719127655, -0.7133176326751709, 0.11531924456357956, -0.017650548368692398, 0.006859598681330681, 0.14367879927158356, 0.1375410556793213, -0.6318778395652771, 0.4621085524559021, -0.7955698370933533, 0.7073112726211548, 0.24729250371456146, 0.5988508462905884, 0.36647531390190125, 0.6634673476219177, -0.40607523918151855, 0.15118852257728577, 1.058615803718567, -0.29914700984954834, 1.7276133298873901, 0.4390358626842499, -0.11870292574167252, -0.8066809177398682, -0.6853480935096741, 1.6887497901916504, 0.3009217083454132, 0.20064599812030792, 0.5945718288421631, 0.3897082507610321, -0.4485794007778168, -0.12139380723237991, 0.062327682971954346, -0.16507065296173096, -0.015897491946816444, -0.37942418456077576, -1.0812095403671265, -0.9632067084312439, 0.14636893570423126, -0.15188099443912506, 0.21167638897895813, 1.7926052808761597, -0.48252031207084656, 0.0166096743196249, -0.8928979635238647, -0.7043537497520447, -0.2516680061817169, -0.763649046421051, -0.8722566366195679, -0.628410816192627, -0.459371954202652, 0.46759334206581116, 0.9207214117050171, -0.059822872281074524, 0.9205317497253418, 0.4809439182281494, -0.2579653561115265, 0.047528862953186035, -0.057888779789209366, 0.037121038883924484, 0.25739261507987976, 0.621439516544342, -0.3875771462917328, -0.026304682716727257, 0.7144673466682434, 0.46242383122444153, 0.5782776474952698, 0.06977907568216324, 0.5912336111068726, 1.442729115486145, -0.5395984649658203, 0.8058369755744934, -0.03278196230530739, -1.0076234340667725, -0.48489153385162354, 0.1684480458498001, 0.4176625907421112, -0.6703746914863586, -0.537351667881012, -0.7136330008506775, -0.13679368793964386, -0.9548789262771606, 0.9973201155662537, 0.13032974302768707, -0.09206701070070267, -0.17056110501289368, -0.8448425531387329, 0.3009529113769531, 0.357636421918869, 0.8199758529663086, 0.6536911725997925, -0.4151487648487091, 0.18456505239009857, 0.7245196104049683, -0.2667534649372101, 0.6578099131584167, 0.29955974221229553, -0.2042064666748047, -0.871090829372406, 0.3974094092845917, 0.38137751817703247, -0.7004366517066956, 0.22057563066482544, 0.5342584848403931, -0.06874683499336243, 0.1040971502661705, -0.4073818624019623, -0.23612160980701447, -1.1459224224090576, 0.19512377679347992, 0.6861675381660461, -0.7782410979270935, 1.1998101472854614, -0.9554786682128906, -1.0109645128250122, -1.3864339590072632, 0.8568069934844971, -0.5545576810836792, -0.0029031354933977127, -1.001455545425415, 0.9565621614456177, -0.9823094010353088, -0.0441843643784523, -0.6673881411552429, -0.6796776056289673, -0.8317658305168152, -1.478257179260254, -0.4858004152774811, -1.1974396705627441, 0.3683471083641052, -0.638874888420105, -0.9155139327049255, 0.7891061902046204, -0.8603684902191162, -1.3321483135223389, 0.1004931703209877, -0.005551372654736042, -0.5514594316482544, -0.7968013286590576, 0.7987388372421265, -0.963524580001831, 0.690526008605957, -1.0646030902862549, 0.6534162163734436, -1.3213541507720947, 0.1557958424091339, -0.0280331801623106, 0.3659555912017822, -0.5331193804740906, 0.6682544946670532, -0.6737581491470337, -1.2865495681762695, 0.05571440979838371, 0.49446889758110046, 0.19745869934558868, -0.3188452124595642, 0.6983104348182678, 0.8522560000419617, 0.7739226222038269, -0.3525647521018982, 0.849051833152771, -0.5276561975479126, -0.3130088448524475, -0.47075119614601135, -0.6791939735412598, 0.5371959209442139, -0.9537927508354187, -1.0386425256729126, 0.8395864367485046, 0.4634643495082855, -1.3367230892181396, 0.6262320876121521, -0.20272499322891235, -0.0238211527466774, -0.21632154285907745, 0.3226679265499115, 0.34838059544563293, -0.10234476625919342, -0.11987258493900299, -0.7248634696006775, -0.37101343274116516, 0.9122734069824219, 0.35665348172187805, -0.6753001809120178, 1.0018267631530762, 1.5021170377731323, -0.290039986371994, -0.6120824813842773, 0.8677238821983337, -0.36243101954460144, 0.201872780919075, -1.061308741569519, -1.2597664594650269, 0.12695059180259705, -0.44073060154914856, 1.9726407527923584, 1.4921618700027466, -1.128983974456787, -0.7694619297981262, 0.376271516084671, -0.2061622589826584, -1.0283520221710205, 0.14076115190982819, 0.20717406272888184, 0.5247394442558289, -0.2777461111545563, -0.19570684432983398, -0.43683311343193054, -0.276753306388855, 0.36887359619140625, -0.48421868681907654, 0.390277236700058, 0.6942460536956787, 0.5367076396942139, 0.4857892096042633, 0.6392711400985718, 0.37354063987731934, -0.7534636855125427, -1.0975544452667236, -0.2050866335630417, 0.9136420488357544, 0.1155414804816246, 0.6280694007873535, 0.3526746928691864, -0.28212815523147583, -0.30225270986557007, 0.23624956607818604, 0.9394544363021851, 0.13791655004024506, 0.3430248498916626, -0.9033572673797607, 0.39367520809173584, 1.1536086797714233, -1.3729990720748901, -0.2598101496696472, 0.6301288604736328, 1.182112216949463, 0.4715728759765625, 1.1891342401504517, 1.8860557079315186, 0.7378761172294617, -0.17825505137443542, -0.3429756760597229, -0.7468482851982117, -0.2753618359565735, -0.32895970344543457, -0.4344445466995239, -1.3236980438232422, -0.6074486970901489, -0.06344141066074371, -0.04935923218727112, 0.3211437165737152, -0.6257805824279785, 0.8619526028633118, 0.425297349691391, -0.7367395758628845, -0.047266773879528046, -0.03184382617473602, 0.5188034176826477, -0.16573426127433777, 0.5213077068328857, -0.356076180934906, -1.0116212368011475, -0.3050394356250763, 0.2261638194322586, 0.5987610816955566, 1.3742811679840088, 0.13477180898189545, -0.0782116949558258, -1.0603482723236084, -0.30352216958999634, -0.14204882085323334, 0.6782253980636597, -0.38634881377220154, -0.16882634162902832, -1.1511832475662231, 0.5849982500076294, 0.9521169662475586, 0.2751747965812683, -0.7450177073478699, 0.7769614458084106, -0.8457760214805603, -0.3679230511188507, -0.7815994024276733, -0.3100748062133789, 0.47968214750289917, -0.5203213691711426, -0.5929498672485352, 0.0602821409702301, -0.3463377058506012, -0.3653709888458252, 0.3717001676559448, 0.08016888797283173, 0.8021562695503235, -0.5265432596206665, -0.0729014128446579, 1.5974066257476807, -0.75494784116745, -0.5096844434738159, -1.7581050395965576, 1.4108906984329224, -0.06841621547937393, 1.488883137702942, 0.6352632641792297, 0.5874664783477783, 0.39307093620300293, -0.09104418754577637, 0.30980169773101807, -0.23360782861709595, 1.0749261379241943, -0.2683509886264801, -0.3526897430419922, -0.24864673614501953, -0.27988937497138977, -0.08040855824947357, 0.02935653366148472, -0.7201955914497375, 0.4172125458717346, -0.33562374114990234, -0.9017806053161621, 0.695343017578125, 0.6358426809310913, -0.6097230315208435, -0.4438419044017792, 0.44465622305870056, 0.2797805666923523, 0.002579697174951434, -0.4549614191055298, -1.200964331626892, -0.6557296514511108, 0.26692748069763184, -1.4544000625610352, -0.1524210423231125, 0.6636766195297241, 0.5244662761688232, 0.5807703137397766, -0.8984059691429138, -0.12987016141414642, -0.15635748207569122, 0.0563008151948452, 1.0665903091430664, -0.03636261075735092, 0.26315078139305115, 0.29751506447792053, 0.5568116903305054, 0.07573805749416351, -0.5894543528556824, 2.1549267768859863, 0.5055603981018066, -0.15592554211616516, -0.19420431554317474, 0.5706655979156494, 0.43349260091781616, 0.45089730620384216, -0.579341471195221, 0.6915005445480347, -0.31518638134002686, 0.32936981320381165, -0.8524839282035828, -0.608391284942627, 2.014468193054199, 0.16861625015735626, -0.016946546733379364, 0.6096254587173462, -0.8879762291908264, -1.0431897640228271, 0.18419399857521057, 0.32200905680656433, 0.7529988884925842, -0.6604382991790771, -0.10687924176454544, 0.1477731168270111, -1.0322694778442383, 0.5828210711479187, 0.404669851064682, 0.8046897053718567, 0.1346869170665741, 0.16331683099269867, 1.114246129989624, 0.08706667274236679, 0.659460723400116, 1.2054402828216553, 0.28404104709625244, -0.8800524473190308, -0.2189580500125885, 0.8933337330818176, -0.30249062180519104, 0.43475356698036194, 0.2519749701023102, 0.35671505331993103, 1.3479105234146118, -1.4860914945602417, -0.13957767188549042, 0.7029774785041809, 0.3304853141307831, 1.373525857925415, 0.7485984563827515, 0.9275930523872375, -0.5535426139831543, -0.3155439794063568, 0.42282524704933167, -0.26288989186286926, 0.571773886680603, 0.0962800458073616, -0.27416595816612244, -0.07209303230047226, -1.2016048431396484, -0.208389550447464, -0.1162700206041336, -0.3316737711429596, -0.6296743154525757, -1.0977555513381958, 0.5576960444450378, 0.5954223871231079, 0.4073951542377472, 0.9135106205940247, 0.2676188349723816, -0.9079812169075012, 0.9833791255950928, -1.1536955833435059, 0.12952229380607605, 0.020602481439709663, -0.3856433629989624, 0.2419283092021942, -0.6399838924407959, 0.22307175397872925, 0.3020712435245514, -0.6353577971458435, -0.6685794591903687, 0.505600094795227, -0.9302988648414612, 0.3735564053058624, 0.7010518312454224, 1.5691636800765991, 0.6838973164558411, 0.6626037359237671, 0.4037676155567169, 0.49570247530937195, -0.9234940409660339, -0.6448261737823486, 0.5303905606269836, -0.6189810037612915, -0.04888152331113815, -1.4259686470031738, -0.31364473700523376, 1.7352232933044434, 0.613446056842804, -0.45618316531181335, 0.19159837067127228, 0.35165902972221375, 0.956038236618042, -0.5346543788909912, -1.2879270315170288, -0.028852378949522972, -0.512189507484436, 0.38707783818244934, 1.0835469961166382, -0.5006906390190125, -0.2195807546377182, 0.34377521276474, -1.6236705780029297, 1.2854394912719727, 0.1601187288761139, -0.9390438795089722, 0.7537218928337097, 0.8672497272491455, 0.19486138224601746, 0.22547543048858643, -0.4485751688480377, -0.6207563877105713, -0.3839276134967804, -0.08189210295677185, -1.2482876777648926, 1.0935252904891968, -0.12700095772743225, 0.061610180884599686, -0.27452388405799866, 0.08834365755319595, -0.6840004920959473, 0.5065890550613403, -0.0032172459177672863, 0.3109639585018158, 0.9058735370635986, 0.5784784555435181, 0.19003556668758392, 0.39586904644966125, -0.13270360231399536, -0.6162482500076294, -0.31485486030578613, -0.018044481053948402, 0.6608521342277527, -0.4006207287311554, -1.3567228317260742, -0.045100290328264236, 0.18590758740901947, 0.5807026028633118, -0.30428624153137207, -0.8916978240013123, 1.0740039348602295, 0.4190569818019867, -0.037156086415052414, -0.035911012440919876, -0.41007158160209656, -0.22551235556602478, -0.14549128711223602, -0.6621239185333252, 0.8212318420410156, -1.6795763969421387, 0.4136921763420105, -0.8466073274612427, -0.026162289083003998, 0.5372661352157593, -0.008934812620282173, -0.27369004487991333, -1.7161822319030762, -0.04178164154291153, -1.3443434238433838, -0.2663031220436096, 0.7908767461776733, -0.9181042909622192, 0.1353577971458435, 1.1154166460037231, -1.1965949535369873, 0.40086129307746887, 0.2112141102552414, -1.5209243297576904, -0.45774397253990173, -1.5629369020462036, 0.7781441807746887, -0.5227470993995667, 0.5425200462341309, -0.843252420425415, 0.7667694687843323, -1.0257524251937866, -1.2594819068908691, -0.6283121705055237, -0.14950881898403168, 0.6341042518615723, 1.1732021570205688, -0.7997482419013977, 0.9337846040725708, 0.7016449570655823, -1.0337944030761719, -0.28062403202056885, 0.4750289022922516, -1.1310495138168335, 0.17432282865047455, 1.0208228826522827, -0.19369496405124664, -0.05073847994208336, 1.490405559539795, -0.46588489413261414, 1.2692235708236694, 0.6109846234321594, 0.5298283696174622, -0.7000033855438232, -1.0213173627853394, -0.37169861793518066, -0.043676652014255524, -0.6973606944084167, -0.5234200954437256, 0.09083981066942215, -1.5798250436782837, -0.5753552317619324, 0.5561632513999939, 1.602665901184082, -0.3659924566745758, -0.36012396216392517, -0.47738921642303467, 0.6465110778808594, -0.5032438635826111, 0.3176238536834717, -0.21488028764724731, 0.3536972105503082, 0.0802176222205162, -0.12420105934143066, -0.6171786785125732, -0.7064944505691528, -0.16940224170684814, -0.04922042414546013, -0.012964490801095963, -0.5146259069442749, 1.0112278461456299, 0.9192918539047241, -0.8407667875289917, -1.2886402606964111, 1.5999901294708252, 1.586768627166748, -0.6035213470458984, 0.3354377746582031, -0.23555655777454376, 0.47526851296424866, 0.3166056275367737, -0.8964780569076538, -0.13652317225933075, -0.7465223670005798, 0.23491081595420837, 0.23182688653469086, -0.3555375635623932, -1.0032217502593994, -0.01723305881023407, -0.35357221961021423, 0.4209785461425781, 0.5130739212036133, -0.2118445783853531, -0.31879958510398865, 1.5322426557540894, 0.6607296466827393, 0.44424936175346375, 0.4315268099308014, 0.04861878603696823, 0.2002524733543396, 0.36526310443878174, 1.4223225116729736, 0.4778606593608856, -0.7412139773368835, 0.7176566123962402, 0.39493927359580994, 0.12096620351076126, 0.01412292942404747, -1.331060528755188, -1.6822125911712646, -0.6465460062026978, -0.7339543700218201, -0.5436504483222961, 0.1562386155128479, -0.33644285798072815, -0.4120464324951172, 0.14147375524044037, 0.2334161400794983, 0.07209886610507965, -0.7494722604751587, -0.2586047053337097, -0.4522010385990143, 0.17790010571479797, 0.9668736457824707, -0.9650515913963318, 0.6118292808532715, -0.08317462354898453, -0.3462042510509491, -0.3169229030609131, -0.8506618738174438, -0.30496224761009216, 0.22624346613883972, 0.6207032203674316, -0.22202056646347046, 0.31197768449783325, -0.1495388150215149, -0.41634705662727356, -0.230375736951828, -0.7249070405960083, 0.773749828338623, -0.6125717759132385, -0.7850807309150696, 0.37703579664230347, 0.9936596751213074, 0.025645174086093903, -0.061388883739709854, -0.800491213798523, -0.3806353211402893, 0.7583670616149902, -0.36614933609962463, 0.3677305281162262, -0.6568765044212341, 0.9339364767074585, 0.6386974453926086, -0.5465871095657349, 0.8584948182106018, -0.088823601603508, 0.07921181619167328, -0.6233581900596619, 0.564526379108429, 0.2906741201877594, -0.2692034840583801, 0.7001011371612549, -1.0155991315841675, 0.36664658784866333, -0.06887441128492355, 0.04923142120242119, -0.11483962088823318, -0.5957229733467102, -0.1496904343366623, -0.4681004285812378, -0.2326126992702484, 0.980778157711029, 0.12111746519804001, 0.33012306690216064, 0.07157838344573975, -1.523742437362671, -0.262170672416687, 0.3872990608215332, 0.3038073182106018, 0.7850751280784607, 1.8556851148605347, 1.8756818771362305, 0.33033230900764465, -0.29595282673835754, -0.32323533296585083, 0.26762655377388, -0.4890887141227722, -0.5540843605995178, -1.0456295013427734, 0.14517554640769958, -0.5039323568344116], [0.20455694198608398, 1.361508846282959, -2.2239766120910645, -1.5307077169418335, 0.5241474509239197, -0.22096198797225952, 0.8930737972259521, 0.39475834369659424, -0.9215692281723022, -0.11533553898334503, 0.08887703716754913, 0.05965464562177658, 1.1992177963256836, 0.8953452110290527, -0.04869705066084862, 0.5760685205459595, -0.02502039074897766, -0.6566441655158997, 1.0074266195297241, 1.0502066612243652, 0.014194570481777191, 0.09627921879291534, 0.07853732258081436, 0.23528961837291718, 0.06005604565143585, 0.21987049281597137, -0.5502668619155884, -0.448294997215271, -0.308834433555603, -0.710025429725647, 0.2717626094818115, -1.0466874837875366, 0.06705091893672943, 0.9694089293479919, -0.9694615602493286, -1.3230363130569458, 1.5272362232208252, 1.1831282377243042, 1.0574828386306763, 0.28024300932884216, 1.1823617219924927, 0.06800955533981323, -0.5547266602516174, -0.24786004424095154, -0.6456623077392578, -0.1469375044107437, 0.28275126218795776, -0.34120291471481323, -0.37820303440093994, 0.31609442830085754, 0.4552725851535797, 0.44272056221961975, 0.10664992779493332, 0.2688654363155365, 1.2236403226852417, 0.008979249745607376, 0.7192922830581665, -0.0628172978758812, 0.7380287647247314, -0.9296491146087646, 0.13121286034584045, 1.268031120300293, -0.04801328852772713, 1.3180502653121948, 1.0345911979675293, 0.549130916595459, -0.8451319336891174, 0.13808655738830566, 0.45325979590415955, -0.3285520374774933, 0.408214807510376, 0.6457144618034363, 0.29371196031570435, 0.11072305589914322, -0.7699286937713623, 0.3227519094944, 0.48808351159095764, 0.4271608591079712, -0.5555811524391174, 0.9707842469215393, 0.34698790311813354, 0.06503129005432129, 1.3853849172592163, -0.49337896704673767, 0.6856098175048828, 0.46800702810287476, 0.17690002918243408, -0.8095208406448364, 0.6889720559120178, 0.6375442743301392, 0.2523617446422577, -0.17320044338703156, 0.7768150568008423, 0.22874696552753448, -0.25594842433929443, 0.7307097315788269, -0.6787134408950806, 0.13690254092216492, -0.08195775002241135, -0.5125687718391418, -1.3270785808563232, -0.22340801358222961, 0.007816620171070099, -0.336011677980423, -0.4822806417942047, 1.0222437381744385, 0.803057074546814, 0.2739792466163635, -0.5474220514297485, -0.5894441604614258, -0.13772639632225037, 0.12683677673339844, 0.09625421464443207, -0.9549157619476318, -0.9505332112312317, 0.19240103662014008, 0.8138194680213928, -0.5570728182792664, 0.7456762194633484, 1.1018251180648804, -0.7327723503112793, 0.6827397346496582, 0.8322133421897888, 0.8569947481155396, -0.050221748650074005, -0.42769208550453186, -0.3947754204273224, -0.5164110064506531, 0.676110029220581, -0.5871325135231018, -0.10168643295764923, -0.6896609663963318, -0.3173424005508423, 0.16215714812278748, -0.510674774646759, 0.4106200933456421, -0.317709356546402, -0.7440822720527649, -0.3063117563724518, 0.2035873383283615, 0.6897709369659424, -0.3118414878845215, -0.7850783467292786, -0.8762238621711731, -0.6749172210693359, -0.2663164436817169, 0.8249716758728027, 0.016699887812137604, -0.0409332774579525, -0.5942658185958862, -0.9733462333679199, 1.234616756439209, 0.437950998544693, 0.7830884456634521, 0.5597152709960938, -0.5770907402038574, 0.8473539352416992, -0.12927980720996857, 0.26883700489997864, 0.6114777326583862, 1.3614606857299805, 0.25371211767196655, -0.7852377891540527, 0.07337787747383118, -0.27763691544532776, -0.49862805008888245, 0.3110520541667938, 0.8663452863693237, 0.282191663980484, 0.17888270318508148, -0.03051608055830002, -0.26693639159202576, -1.1728391647338867, 0.26349127292633057, 0.2259880006313324, -0.9210351705551147, 1.220618486404419, -0.3132516145706177, -0.30781057476997375, -0.21255718171596527, 0.24478641152381897, -0.6634289622306824, 0.10982748121023178, 0.0002451874315738678, 0.1719280183315277, -0.5359481573104858, 0.07974839210510254, -0.16812384128570557, -0.21560460329055786, -0.383590430021286, -1.6474964618682861, 0.24090948700904846, -0.7070242166519165, 0.009541746228933334, -0.8918042778968811, -0.19340753555297852, 0.7343044281005859, -0.5539183616638184, -0.31180262565612793, 0.2727071940898895, -0.610998272895813, 0.16444547474384308, -1.2341725826263428, 0.5326411128044128, -0.22785018384456635, 0.4129130244255066, -1.5979559421539307, 0.6535394191741943, -1.1053342819213867, -0.09003837406635284, 0.9704805612564087, -0.9361518621444702, 0.49705126881599426, 0.4147214889526367, -0.4153440594673157, -1.3483104705810547, 0.5196797251701355, 0.18446996808052063, -0.6856358051300049, 0.005475275218486786, 0.6858486533164978, 0.6309757232666016, 0.3160625994205475, -0.38743671774864197, 0.244462788105011, -0.6783915162086487, 0.14882242679595947, -0.13135984539985657, -0.6443870663642883, 0.5892157554626465, -0.7486128211021423, -1.083991527557373, 0.8346586227416992, 0.2693401277065277, -0.6224914193153381, 0.1780550181865692, 0.09257402271032333, 0.14035511016845703, 1.2827328443527222, 0.5635443329811096, 0.3396146893501282, 0.3052670359611511, -0.8280545473098755, -0.6594491004943848, -0.6908374428749084, 0.8470630049705505, 0.8496918678283691, -0.9177582859992981, 0.3209596276283264, 0.8268409967422485, 0.40145549178123474, 0.34874409437179565, 0.8612769246101379, -1.1840153932571411, -0.12198550254106522, -0.8987115621566772, -0.47661423683166504, 0.22714468836784363, -0.22994546592235565, 1.261823296546936, 0.8816586136817932, -1.2763543128967285, 0.6201565265655518, 0.0906582847237587, -0.08965481072664261, -0.16377241909503937, -0.7640140056610107, 0.6729135513305664, 0.3767555356025696, -0.02780105173587799, -0.2694842517375946, -0.3129175901412964, -0.5552166104316711, 0.4939791262149811, -0.4930824041366577, 0.35437482595443726, 0.5551013946533203, 0.7287893295288086, -0.8902894854545593, 0.3517979085445404, 1.0452733039855957, -0.6524465084075928, -0.8668035864830017, -0.2977752685546875, 0.1152181476354599, -0.18519170582294464, -0.41166770458221436, 0.46465376019477844, 0.56141597032547, -0.1357317566871643, 0.10698242485523224, 0.25937747955322266, 0.1871865838766098, 0.8283795118331909, -0.7372129559516907, 0.20770004391670227, 1.0864571332931519, 0.03590685874223709, 0.650906503200531, 0.4020056426525116, 0.6700528860092163, 0.8798794150352478, 1.1014100313186646, 1.8309866189956665, 0.2723774015903473, -0.2814463973045349, -0.40812745690345764, -1.1979591846466064, -0.12406427413225174, 0.043229762464761734, -0.7283433079719543, -0.9594693183898926, -0.09270823746919632, 0.2141711711883545, -0.1953984946012497, 0.3163480758666992, -0.1322018802165985, 0.5102630853652954, 0.634116530418396, -0.5800348520278931, 1.0720807313919067, 0.7395191788673401, -0.4150860905647278, -0.2690950036048889, -0.016303017735481262, -0.10754165053367615, -1.1018059253692627, -0.006266362965106964, 0.7824991941452026, -0.11395099759101868, 0.7958744764328003, 0.12988799810409546, 0.14669452607631683, -0.8344371914863586, -1.0301872491836548, 0.13907389342784882, 0.8789008259773254, -0.20848390460014343, -0.05948302894830704, -0.670762300491333, 1.9385522603988647, -0.14149923622608185, 0.23000970482826233, -0.46677178144454956, 0.6631986498832703, 0.15013790130615234, -0.8316599130630493, -0.6655611395835876, 0.1170433759689331, -0.12022346258163452, -0.14020831882953644, -0.039789874106645584, 0.26542314887046814, -0.4012237787246704, 0.23081517219543457, 1.1539112329483032, 0.664108395576477, 1.6379755735397339, 0.0761263370513916, -0.9667316675186157, 0.5961536169052124, -0.4952221214771271, 0.07371248304843903, -1.3553999662399292, 0.8516101241111755, -0.10137923061847687, 1.1752020120620728, 0.710235595703125, -0.503877580165863, 0.25809791684150696, -0.04077230393886566, 0.3453228771686554, 0.15165990591049194, 1.0856163501739502, 0.12645161151885986, -1.2419155836105347, -0.5786775946617126, -0.1532129943370819, 0.0036776773631572723, -0.5308966636657715, -0.16171765327453613, 0.44306468963623047, -0.3216157555580139, -0.10838472098112106, 1.0688356161117554, -0.25131747126579285, -0.25403621792793274, -0.3309788405895233, 0.2000533491373062, -0.20220226049423218, -0.13226039707660675, -0.3349514305591583, -1.5867233276367188, -0.3729332387447357, 0.0495021678507328, -1.1101279258728027, -0.06546258926391602, -0.22894448041915894, 0.41788309812545776, 0.5346260070800781, -1.0462672710418701, 0.40126314759254456, 0.09513717889785767, 0.7912482619285583, 0.6007000207901001, 0.25991225242614746, 0.6299232244491577, -0.20829367637634277, 0.7666980624198914, 0.29029029607772827, -0.31110841035842896, 1.1484979391098022, -0.2563628554344177, -0.5333337187767029, 0.13787071406841278, -0.11141234636306763, 0.27774015069007874, -0.05687206983566284, 0.6162988543510437, 0.5529339909553528, -0.004944950342178345, 0.09465411305427551, 0.013904877007007599, 0.10423322021961212, 0.5599023103713989, 0.8612967133522034, 0.7080717086791992, 0.9269693493843079, -0.5925676226615906, -0.7390642166137695, 0.6003335118293762, 0.007865614257752895, 1.4619495868682861, -0.5121629238128662, -0.05757961422204971, 0.5327319502830505, -1.5421847105026245, 0.5034660696983337, 0.29165586829185486, 0.7464824318885803, -0.008372312411665916, -0.4082558751106262, 1.0684616565704346, -0.1297629326581955, 0.8266366720199585, 1.2440446615219116, 0.18691584467887878, -0.4106162488460541, -0.3544839024543762, 1.081737995147705, -0.697943925857544, 0.23899973928928375, 0.4003141522407532, 0.3156706392765045, 1.407983660697937, -1.0920536518096924, -0.8404173851013184, 0.696717381477356, -0.10813987255096436, 0.24724061787128448, 0.5748947858810425, 0.776515543460846, -0.9761756658554077, 0.23157814145088196, 0.6449651718139648, -0.600713849067688, -0.21865148842334747, -0.13685977458953857, 0.18746617436408997, 1.494372844696045, -0.25153106451034546, -0.011302530765533447, 0.28386569023132324, -0.04308180883526802, 0.16406096518039703, -0.07892327755689621, -0.3022432029247284, 0.3582150638103485, 0.051930107176303864, 0.22222818434238434, -0.17797154188156128, -0.4904187321662903, 0.35274121165275574, -0.5616970658302307, 0.12837298214435577, 0.34569618105888367, -1.2265511751174927, 0.2717354893684387, -0.6631166934967041, -0.14257490634918213, -0.019831502810120583, -0.469076931476593, -0.5018103122711182, -0.17720097303390503, -0.8964722156524658, -0.3604423701763153, 1.0720514059066772, 1.4860780239105225, -0.6289032697677612, 0.4987746775150299, 0.37561240792274475, -0.004418771713972092, -0.6833630800247192, 0.2094499170780182, 0.41614362597465515, -0.6561495065689087, 0.46726366877555847, -1.8538564443588257, -0.7898303866386414, 0.8422712683677673, 0.4778417944908142, 0.006814759224653244, 0.12734632194042206, 0.37725088000297546, 0.41908958554267883, -1.1251015663146973, -0.8983854055404663, 0.34493207931518555, -0.6253333687782288, -0.09672914445400238, 0.4800490438938141, -0.2941725254058838, -0.7425863742828369, -0.5954026579856873, -1.1952236890792847, 1.2362911701202393, 0.6599235534667969, -1.3531434535980225, 0.5929948091506958, 0.5843368172645569, 1.0594487190246582, 0.4829191267490387, -0.019258789718151093, -0.4615851044654846, -0.29568180441856384, 0.09354130923748016, -0.40638378262519836, 0.32681259512901306, 0.1986134946346283, 0.7110323905944824, 0.06925009191036224, 0.36822670698165894, -0.32126036286354065, 0.4991365373134613, 0.813984215259552, -0.4043993651866913, 0.4034312069416046, 0.8785133957862854, 0.11285034567117691, -0.047079894691705704, -0.10641397535800934, -0.4206278920173645, -1.2117886543273926, -0.30579155683517456, 0.5718430876731873, -0.612406313419342, -0.12967325747013092, -0.35777080059051514, 0.1468408703804016, -0.2060813158750534, 0.41927310824394226, 0.07002753019332886, 0.682833731174469, 0.839877188205719, -0.31345173716545105, -0.13962212204933167, 0.5680378079414368, -0.27249228954315186, 0.3247336447238922, 0.2930345833301544, -0.7742289900779724, -1.361109972000122, 0.29665103554725647, -0.5592174530029297, -0.4802435338497162, -0.21229584515094757, 0.33924439549446106, -0.03225652500987053, -1.4251718521118164, -0.6175574660301208, -1.5513107776641846, -0.1365390121936798, 0.26586592197418213, -0.9148851633071899, 0.24513979256153107, 0.59068763256073, -1.0714151859283447, -0.05438113212585449, -0.516284704208374, -1.6147382259368896, 0.42562177777290344, -1.0027331113815308, 0.15063317120075226, -0.5767900347709656, 1.6800843477249146, -0.3338402509689331, 0.1854574829339981, -0.6782095432281494, -0.757057785987854, 0.22624774277210236, -0.4327748715877533, 0.507499635219574, 0.9725989699363708, -1.2527679204940796, 0.028432924300432205, 1.1224294900894165, -0.4600328505039215, -0.07777034491300583, 0.41258877515792847, -0.758789598941803, 0.380375474691391, 0.36464923620224, 0.06527825444936752, -0.12659798562526703, 1.165785312652588, -0.06223005801439285, 0.9135169386863708, -0.7691690921783447, -0.005268573760986328, -0.4508476257324219, -0.5283770561218262, -0.4073691964149475, 0.9495836496353149, -0.9642840623855591, -0.09615571051836014, -0.7554317116737366, -1.2548060417175293, -0.12392716109752655, 0.6751457452774048, 1.3376413583755493, -0.5369260907173157, -0.8077536821365356, -0.9466336369514465, 0.4431193470954895, -0.6220574378967285, 0.39400359988212585, 0.17060217261314392, 0.28663504123687744, 0.3787071108818054, 0.684977650642395, 0.06455101817846298, -0.6533470153808594, -0.009782050736248493, 0.6322438716888428, 0.05403250828385353, -1.6394802331924438, 1.189136266708374, 0.5367696285247803, 0.17649774253368378, -0.636508047580719, 1.66971755027771, 0.5316283702850342, -0.16831481456756592, -0.7399364113807678, -0.7188167572021484, -0.012649822980165482, 0.995927095413208, -1.329727053642273, -0.23398330807685852, -0.9863075017929077, 0.3281482458114624, -0.9439517855644226, -0.41676515340805054, -1.6994554996490479, 0.14053550362586975, -0.2272907942533493, -0.6705813407897949, 0.7165290117263794, -0.8708077073097229, 0.2511362135410309, 0.613243818283081, 0.6103852391242981, 0.2742061913013458, 0.9708389043807983, 0.9113170504570007, -0.08313295245170593, 0.2352859526872635, 0.8373709321022034, -0.4212630093097687, -1.1843857765197754, 0.07263804972171783, 0.5292255878448486, 0.7102993726730347, -0.26007261872291565, -0.19642503559589386, -1.550093173980713, -0.7784274220466614, -0.7053848505020142, -0.4737528860569, -0.4331638216972351, -0.0730489194393158, -1.1488782167434692, 0.5715243220329285, -0.000845741480588913, -1.1680477857589722, -0.19652189314365387, -0.15559212863445282, -0.9694167375564575, -0.46681952476501465, 0.42128220200538635, -0.771513819694519, 0.08164230734109879, -0.09903615713119507, -0.08124560117721558, -0.019215140491724014, -1.2439509630203247, 0.5556463599205017, 0.739915132522583, 0.6248099207878113, -0.36824873089790344, 0.5805394649505615, -0.40150967240333557, -0.752896785736084, -0.30757153034210205, -0.9033402800559998, 0.14340858161449432, -0.30347269773483276, -0.8389407396316528, -0.05425417795777321, 0.6433649063110352, 0.014383558183908463, -0.06646154075860977, -1.5606046915054321, -0.2066197246313095, 0.8325413465499878, -0.383232980966568, 0.2365114986896515, -0.937255322933197, 0.9956340789794922, -0.17090114951133728, -0.11465498059988022, 0.8100104331970215, -0.06708649545907974, 1.3050816059112549, -0.4411986470222473, 0.769906759262085, -0.041239239275455475, -0.3592502772808075, 0.2075551152229309, -0.6705784797668457, 0.3227469325065613, -0.42467615008354187, -0.050403423607349396, -0.5615707635879517, -0.159781351685524, -0.8998310565948486, -0.7112289667129517, 0.7418616414070129, 1.1081887483596802, 0.15940336883068085, -0.9781378507614136, 0.3389197289943695, -0.7401631474494934, -0.25828203558921814, -0.0873817428946495, -0.49635758996009827, -0.682992160320282, 0.7132753133773804, 1.2586865425109863, 1.3156501054763794, 1.127271294593811, 0.22613348066806793, 0.545806884765625, -0.4440154731273651, -0.4133971929550171, -1.3987265825271606, -0.497459352016449, -0.7761999368667603], [0.45487096905708313, 1.072420358657837, -2.532846450805664, -1.2378231287002563, 0.3867693841457367, 0.4825824499130249, 1.6918591260910034, 0.509148359298706, 0.20559599995613098, -0.5958399772644043, 0.06893951445817947, 0.10398329049348831, 0.7724658250808716, 1.2026526927947998, -0.15762081742286682, 0.4196130633354187, 0.5140318870544434, -0.2560977339744568, 0.8810482025146484, 0.7165201306343079, -0.6761107444763184, 0.1529439389705658, -0.3251066207885742, 0.26032620668411255, -0.13428503274917603, 0.5605872273445129, -1.5421806573867798, 0.1100362241268158, -0.6183661818504333, -0.5400176048278809, 0.9772195219993591, -1.339797019958496, -0.6539880633354187, 0.18608912825584412, -0.8888441324234009, -0.38706544041633606, 1.3095072507858276, 1.2184193134307861, 0.9966530799865723, 1.4086521863937378, 2.3739094734191895, -0.31957095861434937, 0.2479322999715805, -1.125403881072998, -0.006233883090317249, 0.02716180868446827, 1.323664665222168, -1.3516368865966797, -0.6738717555999756, -0.4970266819000244, 0.5699012279510498, 0.005758728366345167, 0.2857551574707031, 1.3155752420425415, 1.4046876430511475, -0.6999563574790955, 0.8710843920707703, -0.47482532262802124, 0.5710964202880859, 0.181003600358963, 0.5441881418228149, 0.24639418721199036, 0.15528002381324768, 1.135717511177063, 0.25640949606895447, -0.19236069917678833, -0.8602295517921448, 0.224294051527977, 0.20643888413906097, 0.3089277148246765, 0.13082267343997955, -0.08635245263576508, -1.0229891538619995, 0.5869462490081787, -1.2545455694198608, 0.6258903741836548, 0.5517498850822449, 0.8135078549385071, 0.3875328004360199, 1.0284773111343384, -0.5677708387374878, -0.05366922914981842, 0.36283308267593384, -0.41351979970932007, 1.4072730541229248, 0.37498757243156433, 0.4481064975261688, -1.2110247611999512, -0.35819903016090393, 1.3107013702392578, 0.12599536776542664, -0.22368764877319336, 0.7170853614807129, 0.46996456384658813, -0.1513090431690216, -0.453468382358551, 0.10292480140924454, -0.15995192527770996, -0.5574654340744019, -0.2766050696372986, -1.295697569847107, -0.16951227188110352, -0.077606201171875, -0.12916596233844757, 0.7126836776733398, 1.7900007963180542, -0.10053449124097824, -0.3860466480255127, -0.6795997619628906, -0.5604814887046814, -0.4779430031776428, -0.7330313920974731, -0.5941030979156494, -0.8812786936759949, -0.8475342392921448, 0.73576420545578, 1.1574814319610596, -0.7912079691886902, 1.312233805656433, 0.4838598966598511, -0.23683829605579376, 0.40854504704475403, 0.11476282775402069, 0.11825922131538391, 0.6487972140312195, 0.5211865305900574, -0.6247006058692932, -0.059288620948791504, 0.9641625285148621, -0.05684233829379082, 0.5822698473930359, -0.07133044302463531, 0.5255003571510315, 1.2973154783248901, -0.19680389761924744, 0.9633907079696655, 0.3668358027935028, -0.5567998886108398, -0.15690137445926666, 0.2788435220718384, 0.5154905915260315, -0.266463041305542, -0.4499337673187256, -0.8814817070960999, 0.2335333377122879, -0.9359737634658813, 0.563215970993042, -0.180198073387146, -0.3008127212524414, -0.6720598936080933, -1.083990216255188, 0.2557947039604187, 0.28690412640571594, 0.9333738684654236, 0.364391952753067, -0.6569912433624268, 0.6693893074989319, 0.3305674195289612, 0.36331549286842346, 0.773918092250824, 0.5054892301559448, 0.5021217465400696, -0.7210551500320435, 0.6372796893119812, 0.5066606402397156, -1.056025743484497, -0.005986446514725685, 0.5310761332511902, 0.46004459261894226, -0.12583613395690918, -0.6907801628112793, -0.332348495721817, -0.8769106864929199, -0.05643896386027336, 0.6740811467170715, -1.02842378616333, 1.3430062532424927, -0.7665267586708069, -1.4519938230514526, -0.9022302627563477, 0.7636251449584961, -0.31338149309158325, 0.30839765071868896, -0.5402961373329163, 0.6262060403823853, -0.6824144721031189, -0.06747027486562729, -0.32904618978500366, -0.6322396397590637, -0.7588306665420532, -1.1932508945465088, -0.7515211701393127, -1.2774379253387451, 0.23441825807094574, -0.413918137550354, -1.033993124961853, 0.49691900610923767, -0.7135881781578064, -0.8732492327690125, -0.06345751881599426, -0.3610967993736267, -0.36539411544799805, -1.1978185176849365, 0.5776627659797668, -0.7810513377189636, 0.8815778493881226, -1.1225959062576294, 0.9570738673210144, -1.567907452583313, -0.1685778796672821, 0.08411749452352524, 0.11043720692396164, -0.33868250250816345, 0.7637442946434021, -0.648177981376648, -1.3080124855041504, 0.16082985699176788, 0.3520219922065735, -0.2975369095802307, -0.3936523199081421, 0.6044407486915588, 0.19506296515464783, 0.8318104147911072, -0.11310500651597977, 0.5029181241989136, -0.06165941432118416, -0.7217264771461487, -0.782949686050415, -0.4319470524787903, 0.6767961978912354, -0.747398316860199, -1.2778093814849854, 1.2864196300506592, 0.8295496702194214, -1.463558554649353, 0.4777785539627075, -0.041743598878383636, -0.21940335631370544, 0.24086861312389374, 0.3753618896007538, 0.2712005376815796, -0.07925937324762344, -0.1507018506526947, -0.07901892066001892, -0.45467182993888855, 0.8775302171707153, 0.7385775446891785, -0.40770867466926575, 0.9770055413246155, 1.3422764539718628, -0.028204569593071938, 0.13708734512329102, 0.8042307496070862, -0.44979530572891235, 0.21186986565589905, -0.5314876437187195, -0.9182157516479492, -0.17461109161376953, -0.5538156628608704, 1.6702684164047241, 0.9168534874916077, -1.21555495262146, -0.42266619205474854, 0.28465157747268677, -0.2445315569639206, -0.606001615524292, -0.3273827135562897, 0.19780988991260529, 0.08499622344970703, -0.4832875728607178, -0.2865428626537323, -0.11377064883708954, -0.31298232078552246, 0.3282225430011749, -0.39845266938209534, 0.1420249044895172, -0.05437461659312248, 0.5657297372817993, 0.3311298191547394, 1.1090898513793945, -0.15523718297481537, -0.6256361603736877, -0.9595549702644348, -0.01595158316195011, 1.148604154586792, 0.16738809645175934, 0.1763806939125061, 0.5749847292900085, 0.2114802449941635, -0.24485352635383606, -0.17780429124832153, 0.9360584020614624, -0.42395177483558655, 0.2713444232940674, -1.0533549785614014, 0.17744995653629303, 1.6087095737457275, -1.2316358089447021, -0.5412541627883911, 0.3998914659023285, 0.7227814793586731, 0.8932366967201233, 1.0028642416000366, 1.5941407680511475, 0.0759967789053917, 0.03778570517897606, 0.0888708159327507, -0.5693826079368591, -0.19637207686901093, -0.6490678191184998, -0.5649634599685669, -1.0700501203536987, -0.35078001022338867, 0.03230289742350578, 0.31899648904800415, 0.7774601578712463, -0.5155386328697205, 1.0301456451416016, 0.4524344503879547, -0.7126400470733643, 0.08166956156492233, 0.05757980793714523, 0.07616829127073288, -0.3263932168483734, 0.3123354911804199, -0.5187532901763916, -0.9009339809417725, -0.6483046412467957, 0.0698724165558815, 0.21256889402866364, 1.4629172086715698, 0.003957576118409634, 0.010062549263238907, -0.8775030374526978, -0.7808964252471924, -0.1579047441482544, 0.6977798342704773, -0.5380061864852905, -0.27027758955955505, -1.1085522174835205, 0.25001028180122375, 0.5348896384239197, -0.11237100511789322, -0.8814781308174133, 0.31014424562454224, -0.4984738230705261, -1.4490915536880493, -0.2975229024887085, 0.16219152510166168, 0.8557398319244385, -0.43607228994369507, -0.5479820966720581, 0.37366005778312683, -0.3724285662174225, -0.5585606694221497, 0.5477861762046814, 0.23814897239208221, 0.7014796137809753, -0.33970654010772705, 0.029739752411842346, 1.3027186393737793, -0.5188024640083313, -0.2027137130498886, -2.0838639736175537, 1.1511448621749878, -0.2276887744665146, 1.3350900411605835, 0.4943835437297821, 0.33608606457710266, 0.41760289669036865, -0.37295687198638916, 0.02305155247449875, 0.15811145305633545, 1.299487829208374, -0.14674945175647736, -0.3077320456504822, -0.2894241511821747, -0.29667142033576965, 0.0814238116145134, -0.22922787070274353, -0.5143888592720032, 0.5907818675041199, -0.4196294844150543, -0.6568177938461304, 0.8616043925285339, 0.2699447274208069, -0.7856673002243042, -0.8220863938331604, 0.38330078125, 0.8392309546470642, 0.002239711582660675, -0.14147917926311493, -1.2494630813598633, -0.283479243516922, 0.16382166743278503, -1.278825283050537, 0.33889493346214294, 0.6487153768539429, -0.23984383046627045, 0.33393239974975586, -1.0294173955917358, -0.0045366049744188786, -0.3543907403945923, 0.250463604927063, 0.8177149891853333, -0.340455561876297, 0.7308158278465271, 0.5390247702598572, 0.1979677975177765, -0.021914571523666382, -0.34965041279792786, 1.7023515701293945, 0.072517029941082, -0.353483110666275, -0.4101817011833191, 0.22257769107818604, 0.32603979110717773, 0.041787125170230865, -0.32454827427864075, 0.2843073904514313, -0.3051779866218567, 0.551835298538208, -0.4652794301509857, -0.5180418491363525, 1.9911830425262451, 0.6269955039024353, 0.1287676990032196, 0.7315259575843811, -0.7860932350158691, -0.8189842104911804, 0.3357681632041931, 0.03184131532907486, 0.04340137541294098, -0.669651210308075, -0.1921166628599167, 0.4852389395236969, -1.1154340505599976, 0.695570170879364, 0.5536502003669739, 0.780427098274231, 0.013271761126816273, 0.10841295123100281, 0.6180572509765625, 0.21670903265476227, 0.8879601955413818, 0.9451327323913574, 0.6835452318191528, -0.21323168277740479, -0.6043038368225098, 0.777658224105835, -0.6238568425178528, 0.25625938177108765, 0.39472830295562744, -0.10306262969970703, 1.4424984455108643, -1.5955721139907837, -0.5376685857772827, 1.064491629600525, 0.22293470799922943, 1.3965532779693604, 0.6563385128974915, 0.5602387189865112, -0.6024888753890991, 0.24829702079296112, 0.45985451340675354, -0.27593106031417847, 0.6216424703598022, 0.06612459570169449, -0.24139487743377686, -0.298764169216156, -0.7546650171279907, 0.1333850473165512, -0.5575466752052307, -0.7356176972389221, -0.33402809500694275, -0.9583954811096191, 0.6383839845657349, 0.6614991426467896, 0.5006406903266907, 0.8437087535858154, -0.10283549875020981, -1.0344393253326416, 0.8056197762489319, -0.7886313199996948, 0.07207037508487701, 0.2545474171638489, -0.30030110478401184, 0.11047866195440292, -1.3919519186019897, -0.31928935647010803, 0.5129501819610596, -0.7093533873558044, -1.055742621421814, 0.25274333357810974, -0.8388267755508423, 0.22348052263259888, 0.4854094386100769, 1.5248321294784546, 0.6096146702766418, 0.13703902065753937, 0.15703295171260834, -0.06620478630065918, -1.1381603479385376, -0.2671521306037903, 0.7191693782806396, -0.13102953135967255, -0.08737356215715408, -1.7771881818771362, -0.6004438996315002, 1.8104448318481445, 0.8802875876426697, -0.8011147379875183, 0.14540530741214752, 0.8988646268844604, 1.3717116117477417, -0.6527674198150635, -1.3278582096099854, 0.17721378803253174, -0.7912672162055969, 0.10975275188684464, 0.7067264914512634, -0.3132297992706299, -0.38228708505630493, -0.47780781984329224, -1.9515663385391235, 1.176112174987793, 0.013212584890425205, -1.1118223667144775, 1.1652532815933228, 0.7835800647735596, 0.4227057993412018, 0.620425283908844, -0.08879287540912628, -0.31579041481018066, 0.022199025377631187, -0.03335129842162132, -0.9900619983673096, 0.518580436706543, 0.004277917556464672, 0.2734912037849426, -0.10504880547523499, 0.37168607115745544, -0.319562166929245, 0.259317547082901, 0.4830002784729004, 0.673145055770874, 0.5431456565856934, 0.6861469149589539, 0.0034816390834748745, 0.10322245210409164, -0.22188574075698853, -0.6730772256851196, -0.4364190399646759, -0.35549288988113403, 0.8971376419067383, -0.22988195717334747, -1.3171849250793457, -0.038044191896915436, 0.22956866025924683, 0.15340515971183777, 0.16294001042842865, -0.7304664850234985, 0.8539374470710754, 0.10927601903676987, 0.04951733723282814, 0.26635992527008057, -0.39801496267318726, 0.3997213840484619, -0.1861710548400879, 0.0128677012398839, 0.7059686183929443, -1.3533706665039062, 0.3435213565826416, -0.20605403184890747, 0.1792730987071991, 0.08498053252696991, -0.015505820512771606, 0.15084095299243927, -1.3638886213302612, -0.7600514888763428, -1.311631679534912, -0.17424464225769043, 0.9017523527145386, -0.5385491251945496, 0.440203994512558, 0.7329630255699158, -1.4243497848510742, 0.3023729920387268, 0.06066729500889778, -1.3040297031402588, -0.31105291843414307, -1.283389925956726, 1.2188539505004883, -0.664399266242981, 1.0403560400009155, -0.9031752347946167, 0.6645780205726624, -1.0647400617599487, -1.2364248037338257, -1.0950264930725098, -0.09511281549930573, 1.0689277648925781, 1.0870893001556396, -0.9825506806373596, 1.284839153289795, 0.9656996726989746, -0.7477583885192871, -0.8879638910293579, 0.11017600446939468, -0.8582976460456848, 0.6404767036437988, 1.016680359840393, 0.4056226313114166, 0.10623300820589066, 1.2387051582336426, -0.13861539959907532, 0.7669156193733215, 0.4213583767414093, 0.7277857065200806, -1.0290559530258179, -0.5695256590843201, -0.33650192618370056, 0.5390796065330505, -0.7205038070678711, -0.37472590804100037, -0.14385217428207397, -1.1469295024871826, -0.5127992033958435, 0.8609578609466553, 1.1785129308700562, -0.712679386138916, -0.4522060453891754, -0.9653730988502502, 0.7973179221153259, -0.2759678065776825, 0.05445136874914169, -0.03288769721984863, -0.08105336874723434, 0.5765307545661926, 0.12801682949066162, -0.7005433440208435, -0.8391771912574768, -0.22782275080680847, 0.23014087975025177, -0.1143871322274208, -0.35480499267578125, 0.945442259311676, 0.6109887957572937, -1.015249490737915, -1.1128787994384766, 1.924723744392395, 1.645298719406128, -0.2827789783477783, -0.08348039537668228, 0.2514663338661194, 0.4000592827796936, 0.6757662892341614, -0.6280126571655273, -0.09390585124492645, -0.9404543042182922, 0.7693541646003723, 0.001757550984621048, -0.7196365594863892, -0.9186882972717285, -0.02360456995666027, -0.44797229766845703, 0.3414655327796936, 0.6344261169433594, -0.5120143294334412, -0.05271651968359947, 1.3864295482635498, 0.4658939838409424, -0.07235386222600937, 0.6913986206054688, 0.5223067998886108, -0.06177247315645218, -0.0899803638458252, 1.1998953819274902, 0.6192549467086792, -1.187116265296936, 1.0307868719100952, 0.4696215093135834, 0.2883477509021759, 0.32815203070640564, -1.1132922172546387, -2.0107176303863525, 0.04264017194509506, -0.9527220129966736, -1.1201108694076538, 0.20137573778629303, -0.8746007084846497, -0.9923873543739319, 0.5275896787643433, 0.14521466195583344, 0.047808971256017685, -1.032150387763977, 0.5234549641609192, -0.4833928346633911, 0.20662689208984375, 0.5156152248382568, -0.9554663896560669, 0.8790625929832458, 0.08629706501960754, -0.6803134679794312, -0.6703417897224426, -0.6880891919136047, 0.35669589042663574, 0.11341561377048492, 0.04974501207470894, -0.34067296981811523, 0.6420093774795532, -0.223210409283638, -0.7630946636199951, 0.1768219918012619, -1.0564128160476685, 0.3656911253929138, -0.5658596754074097, -0.7341560125350952, 0.34376290440559387, 1.2849074602127075, 0.0002509020268917084, 0.12925103306770325, -0.787754237651825, -0.29179394245147705, 0.7273126244544983, -0.384544312953949, 0.4299579858779907, -0.5870928764343262, 0.8239366412162781, 0.39277198910713196, -0.3802526295185089, 0.626583993434906, -0.27177178859710693, -0.0033361176028847694, -0.33869093656539917, 0.4579312801361084, 0.12362530827522278, -0.07289624214172363, 0.19774048030376434, -0.7625826597213745, 0.3013021647930145, -0.36541131138801575, 0.06000468134880066, -0.09699603915214539, -1.0255528688430786, -0.8437090516090393, -0.40365129709243774, -0.3844342529773712, 0.9595940709114075, 0.19910037517547607, 0.7093507647514343, -0.2998676598072052, -1.1974750757217407, 0.1322503387928009, 0.06634746491909027, -0.3542967140674591, 0.3888798952102661, 1.7145131826400757, 1.5961552858352661, 0.3576830327510834, 0.07858652621507645, -0.4104524254798889, 0.7504568696022034, -0.37884145975112915, -0.37706029415130615, -1.1648986339569092, -0.34790536761283875, -0.4642045199871063], [0.9129478931427002, 1.0283514261245728, -1.9574933052062988, -0.2850193381309509, -0.0265867430716753, -0.04128507524728775, 0.7289487719535828, 0.7309468388557434, -0.26452958583831787, -0.5832101106643677, -0.34948593378067017, 0.39356452226638794, 0.5653750896453857, 0.1099974662065506, 0.6230791807174683, 0.596500813961029, 0.9555144309997559, -0.2003750056028366, 0.5079505443572998, 0.5178695917129517, -0.6639973521232605, -1.152497410774231, 0.44537681341171265, -0.10938933491706848, -0.1214698776602745, 0.6967368125915527, -1.4638190269470215, -0.819892942905426, -1.5442675352096558, -0.687106728553772, 1.283125400543213, -0.675077497959137, 0.22039294242858887, 0.42360901832580566, -1.7133790254592896, -0.1946294754743576, 0.8800828456878662, -0.16358768939971924, 0.1902279257774353, 0.3603861331939697, 1.3381327390670776, 0.17932400107383728, 0.13079768419265747, -1.1889716386795044, 0.9391293525695801, 0.11204494535923004, 0.38154178857803345, -0.5275063514709473, 0.6849993467330933, -0.534344494342804, 0.3675619959831238, -0.13245758414268494, -0.4092288315296173, 1.830885410308838, 1.059385061264038, -0.5495100617408752, -0.25512954592704773, 0.4816387891769409, 0.44085532426834106, 0.5629096031188965, 1.0830880403518677, -0.14084163308143616, -0.07539524137973785, 0.9234607815742493, 0.6923384666442871, 0.32865357398986816, 0.7430738210678101, 0.9986242055892944, -0.4582786560058594, 0.06936519593000412, 0.523307204246521, 0.2252824753522873, -0.4007762670516968, 0.7437547445297241, -0.8302412033081055, -0.15527617931365967, -0.6309478282928467, 0.7318254709243774, 0.04786228388547897, 0.824237048625946, -0.4085819721221924, 0.191023588180542, 0.3018210232257843, 0.7578091025352478, -0.37936869263648987, -0.05043947696685791, 0.6882630586624146, 0.00668034702539444, -0.9012155532836914, 0.8600380420684814, -0.13235822319984436, 0.9757001996040344, 0.38720232248306274, -0.1549183577299118, -0.3888254165649414, -0.7334293127059937, -0.316631555557251, -0.42303144931793213, -0.5085040926933289, -1.3724302053451538, 0.026099082082509995, -1.7650604248046875, 1.21842360496521, 0.5115553140640259, 1.762134075164795, 1.0766505002975464, 0.12442487478256226, -1.1736912727355957, -0.3514663279056549, -0.17150774598121643, -0.04263295978307724, 1.1110092401504517, -0.7760013937950134, -1.1247920989990234, 0.18569718301296234, 1.391739845275879, 0.3574744760990143, -0.22661927342414856, 0.6388995051383972, 0.8940659761428833, -0.9111251831054688, 0.7381316423416138, -0.13654404878616333, 0.43098193407058716, 1.3320221900939941, 0.06657487154006958, -0.14234018325805664, -0.4685784578323364, 0.052393872290849686, 0.4277719557285309, 0.1289764642715454, -0.815504789352417, -0.5238618850708008, 1.194819450378418, -1.0944509506225586, 1.1581915616989136, -0.025745831429958344, -0.3771563768386841, -0.08213134109973907, -0.16492393612861633, 1.0543394088745117, -0.36460286378860474, -0.5615047216415405, -0.05720854923129082, -0.2633059322834015, -0.805862545967102, 0.25108563899993896, -0.30825668573379517, -0.5762198567390442, -0.12523989379405975, -0.7531646490097046, 0.3896602988243103, -0.13147547841072083, 1.5517643690109253, 0.2276575267314911, 0.04747256264090538, 0.6591944694519043, -0.14296749234199524, 0.7464357614517212, 0.2628008723258972, 0.37341463565826416, -0.09467240422964096, -1.012570858001709, 1.0630059242248535, -0.24455931782722473, 0.08247224241495132, 0.3620592951774597, 0.36225616931915283, 0.09171731770038605, 0.603334903717041, -0.5969218611717224, -1.0238494873046875, -0.17227056622505188, 0.12781043350696564, -0.10943887382745743, -0.7650576829910278, 0.4312725067138672, -0.171453058719635, -0.541038990020752, -1.1744542121887207, 0.7048635482788086, -0.40418025851249695, 0.6619274020195007, 0.3575979471206665, 0.648576021194458, -0.18263569474220276, -0.2658827304840088, 0.18438422679901123, 0.12049379199743271, -0.02923177368938923, -0.9486904144287109, -0.6720100045204163, -0.5924618244171143, -0.06640130281448364, -0.2859625220298767, -0.8220645785331726, 0.16035795211791992, -0.5978556275367737, -0.545755922794342, 0.41604238748550415, -0.5214464664459229, 0.043156322091817856, -1.2242298126220703, -0.6198740005493164, -0.48372700810432434, 0.04387208819389343, -0.8713708519935608, 0.2109152227640152, -1.1400891542434692, 0.5747036933898926, 0.7992966175079346, -0.08317874372005463, -1.128082275390625, 0.5465089082717896, 0.1563219577074051, -0.4732586741447449, -0.29141658544540405, -0.4055297076702118, -0.04660141468048096, 0.9414335489273071, -0.22441181540489197, -0.24086827039718628, 1.2065954208374023, 0.09936759620904922, 1.0029929876327515, 0.1979677975177765, -1.537367343902588, -1.013205647468567, -1.2351338863372803, 0.0900154858827591, -1.0493367910385132, -0.5848140716552734, 0.641421914100647, 0.6879901885986328, -0.6232560873031616, 0.45136040449142456, 0.533503532409668, -0.07327315211296082, 0.19713658094406128, 0.680077314376831, 0.1963382363319397, 0.1964963674545288, -1.1665961742401123, -0.666499674320221, -0.22931009531021118, -0.013403783552348614, 0.9019032716751099, -0.7405917644500732, 0.031644802540540695, 1.3070764541625977, 1.1273480653762817, -0.01702655851840973, 0.9093320965766907, 0.2400585114955902, -0.5414930582046509, -1.3506741523742676, -0.005379736423492432, -0.2103479504585266, 0.211139976978302, 1.073422908782959, 0.4401158392429352, -1.0588436126708984, 0.34870535135269165, -0.4732465147972107, 0.2162829339504242, -0.2162250429391861, -0.046913132071495056, -0.506961464881897, -0.04200718551874161, 0.06528716534376144, 0.2757173180580139, 0.4475938677787781, -0.10159042477607727, 0.2209174633026123, -0.696700394153595, 0.005887215957045555, -0.5741948485374451, 0.7246496677398682, -0.22285456955432892, 0.8739811182022095, -0.1519922912120819, -1.3325588703155518, -1.0012184381484985, -0.5519547462463379, 0.5403034090995789, -0.2867739796638489, -0.15920507907867432, 1.6062794923782349, 0.7899467945098877, -0.11759662628173828, -0.355807900428772, 0.04098627716302872, 0.20268885791301727, -0.052756913006305695, 0.5168922543525696, -0.1579546481370926, 0.6958345174789429, -0.5219441056251526, -0.7154311537742615, -0.4049486815929413, -0.08968253433704376, 1.0912421941757202, 1.0087791681289673, 0.8448499441146851, -1.797468900680542, -0.44236817955970764, -0.6545352339744568, -0.32648035883903503, -1.0204821825027466, -0.6090241074562073, -0.16755086183547974, -1.073614478111267, 0.034682631492614746, -0.012351928278803825, 0.005853205919265747, 0.42759352922439575, 0.25381842255592346, 0.3188982903957367, 1.5929820537567139, 0.3712918758392334, -0.2298637330532074, -0.5636436939239502, 0.09435956180095673, -0.9748520851135254, 0.4641197919845581, 1.7375872135162354, -1.7844856977462769, -0.3052089214324951, -0.4499790668487549, -0.276284784078598, 0.4656364917755127, -0.043944332748651505, 0.2478487640619278, -1.0798859596252441, 0.10815469920635223, 0.21498319506645203, 0.6768448352813721, -0.06398129463195801, -0.031335875391960144, -0.4115977883338928, 0.026438642293214798, 0.886610746383667, -0.16495241224765778, -0.26240652799606323, 0.5610076189041138, -0.2806019186973572, 0.13093169033527374, -0.49734175205230713, 0.38442954421043396, 0.9889763593673706, -0.8596463799476624, -0.5509286522865295, 0.008461914956569672, -0.8040458559989929, -0.424765020608902, 0.11630520224571228, -0.5239167213439941, 0.9311314821243286, 0.9994471073150635, 0.24832399189472198, 1.2530862092971802, -0.5083516836166382, -0.11251510679721832, -1.3648796081542969, 0.5175449848175049, 0.8617181777954102, 1.5524141788482666, 0.5469418168067932, 0.7448908090591431, 0.4273064136505127, -0.835507869720459, 0.3545728325843811, 0.11733803153038025, 0.6438491344451904, -0.5534548163414001, -0.43582212924957275, -0.018178630620241165, -0.9053367376327515, -0.24321666359901428, -0.5359508991241455, 0.3110990524291992, 0.4225847125053406, 0.3908841907978058, -0.27477192878723145, 0.8946382999420166, 0.2053592950105667, -0.02602238580584526, -0.3236733078956604, -0.29717403650283813, 0.8330631256103516, -0.28504568338394165, -0.39865654706954956, -0.6534353494644165, -0.3770313262939453, -0.2178904414176941, -0.7292852401733398, 0.24197131395339966, 0.6660149097442627, -0.10205812007188797, 0.614774763584137, -1.585437536239624, -0.14652173221111298, 0.06320998817682266, 0.6214805245399475, 0.3626301884651184, 0.19599208235740662, -0.17451393604278564, 0.04437347501516342, -0.9455820322036743, 0.11950203031301498, 0.22174876928329468, 0.9588177800178528, -0.05757205933332443, 0.23693466186523438, -0.6795768737792969, -0.4185168743133545, 0.2659904956817627, -0.30520063638687134, -0.34427618980407715, 0.08173614740371704, -0.1856359839439392, -0.14483201503753662, 0.3003252148628235, 0.2287527620792389, 1.3302940130233765, 0.7176604866981506, 0.34557318687438965, 0.655423641204834, 0.15904846787452698, -0.31996482610702515, -0.12038037180900574, 0.5204397439956665, -0.4968213140964508, -0.5549589395523071, 0.3058397173881531, -0.10220302641391754, -0.5990535616874695, 0.44101816415786743, 0.3439205586910248, 0.35012286901474, 0.23010152578353882, -0.1377640962600708, 0.6756644248962402, 0.3944846987724304, 0.5142306089401245, 0.6305948495864868, 1.1919443607330322, 0.14520053565502167, -1.0255107879638672, 0.5173699855804443, -0.41357576847076416, 0.5985282063484192, 0.31974366307258606, 0.12786446511745453, 0.9404313564300537, -1.2138423919677734, -0.7127130627632141, 0.47348660230636597, 0.20430506765842438, 0.47274547815322876, 0.35838428139686584, 0.94977867603302, -0.11700291186571121, 0.026011981070041656, -0.3055838942527771, -0.36810386180877686, 0.8316054344177246, -0.05279059708118439, 0.4562472701072693, 0.6969481706619263, -0.19309276342391968, 0.3069929778575897, -0.38364124298095703, -0.3822503089904785, 0.44210124015808105, -0.4851002097129822, -0.5378161668777466, 0.6170295476913452, 0.002190306782722473, 1.2447295188903809, -0.44491657614707947, -1.40956711769104, -0.008367441594600677, -0.9038069844245911, 0.039667759090662, -0.3846272826194763, -0.6047465801239014, -0.5952751636505127, -0.23574146628379822, -0.210099995136261, 0.35639697313308716, -0.557164192199707, 0.0840599462389946, 0.13689468801021576, -1.1369473934173584, 0.11117897182703018, 0.3158181607723236, 0.3522922992706299, 0.9726265668869019, 0.016143526881933212, -0.4807102382183075, 0.25346750020980835, -0.6775556206703186, 0.3820798993110657, 0.590707540512085, -0.32233238220214844, 0.2188943475484848, -0.8453947305679321, -0.6782017946243286, 1.3350975513458252, 0.5181832313537598, 0.027046266943216324, -0.4672529697418213, 1.3488249778747559, 1.5318360328674316, -0.38588792085647583, -0.9827444553375244, 1.6193430423736572, -0.22511349618434906, 1.2014923095703125, 0.18430286645889282, -0.4232840836048126, -0.5487627387046814, -0.1433754861354828, -1.5637946128845215, 1.0888850688934326, 0.07034017890691757, -0.7954121232032776, 0.5808528661727905, 0.28941434621810913, 0.6287411451339722, 0.5185140371322632, -0.052989475429058075, 0.0476437546312809, 0.9365039467811584, -0.33723533153533936, -1.323447585105896, 0.5087984800338745, 0.8263081312179565, 1.1452875137329102, -0.03404448181390762, 0.002312788739800453, -0.2095792144536972, -0.05341672897338867, -0.509606659412384, 0.39863908290863037, 0.4915364980697632, 0.34848910570144653, 0.41199731826782227, -0.8136653900146484, 0.02886819839477539, -0.33941394090652466, 0.7102230787277222, -0.09489241242408752, 1.0445002317428589, -0.3267877697944641, -0.13684439659118652, 0.3183843791484833, -0.6241248846054077, -0.4781413674354553, -0.08007622510194778, -0.6332544088363647, 1.267086386680603, 0.668576717376709, -0.44073760509490967, -1.077697515487671, -0.12474894523620605, -0.2643236815929413, -0.03901877626776695, 0.0629812479019165, 0.7045230865478516, -0.8283579349517822, 0.12658275663852692, -0.3662131428718567, 0.10147496312856674, -0.2687425911426544, -0.049783967435359955, 0.12239053100347519, 0.0008892379701137543, -1.4869215488433838, -0.34247952699661255, 0.0796467736363411, 0.8211658000946045, 0.3268592357635498, 0.3270638585090637, -0.23081310093402863, -1.4355127811431885, 0.4677242636680603, 0.6115524768829346, -1.2107629776000977, -0.096976637840271, -0.9685742259025574, 0.4358556270599365, 0.3474055528640747, -0.19491538405418396, 0.21049615740776062, 0.24850930273532867, -1.1457931995391846, -1.664038062095642, -0.41624411940574646, 0.3180754780769348, 0.30871501564979553, 0.5839003324508667, -1.2683780193328857, 0.6538584232330322, -0.21209216117858887, -0.774734616279602, -0.16652819514274597, -0.14857348799705505, -0.686156153678894, -0.5721288323402405, -0.03256164863705635, -0.24916917085647583, 0.2967435121536255, 0.5114642381668091, 0.4458787143230438, 0.5801759958267212, 0.4593278169631958, 0.8726897239685059, -1.2810883522033691, -0.3459450602531433, -0.4584375321865082, 0.33994394540786743, -1.1488399505615234, -0.4060375690460205, -0.3109120726585388, -0.5387836694717407, -0.3085327744483948, 0.7242035865783691, 0.3827250003814697, -0.8671679496765137, -0.10582392662763596, 0.23017549514770508, -0.49030035734176636, -0.5709264874458313, 0.7517927885055542, 0.193227156996727, -1.763897180557251, 0.20066452026367188, 0.2543390393257141, 0.3801332116127014, -0.8077346086502075, -0.19450464844703674, -0.6466151475906372, 0.5592398047447205, 0.14638200402259827, 0.909132719039917, 0.2205626368522644, 0.4843141436576843, -0.9708303213119507, 1.062524437904358, 0.39172542095184326, 0.6860076189041138, -0.1557941436767578, 0.12749359011650085, -0.7263664603233337, 0.07595659047365189, -0.09400331974029541, 0.38843628764152527, -0.43714237213134766, 0.4772571921348572, 0.3740270435810089, 0.11846955865621567, -0.06565359234809875, 0.2757611572742462, 0.3180529475212097, 0.30134886503219604, 1.1725621223449707, -0.23495081067085266, -0.46886464953422546, 0.9077728986740112, 0.7650104761123657, -0.539999783039093, 0.0865681916475296, 0.15995436906814575, 0.2931673526763916, -0.14955642819404602, 0.10031243413686752, 0.19093066453933716, -0.45688819885253906, -0.044819675385951996, 0.6634995937347412, -0.44018590450286865, 0.027487505227327347, -0.8371676206588745, -1.6634535789489746, 0.2060888409614563, -0.36305999755859375, 0.2733883261680603, 0.8881661891937256, -0.7820475101470947, -0.1702694296836853, -0.6630890369415283, 0.3582828640937805, 0.12077340483665466, -1.0721865892410278, 0.608366072177887, 0.0998215526342392, -0.3702477812767029, -0.1279277801513672, -0.47879379987716675, 1.1295924186706543, -0.3662370443344116, 0.043314047157764435, -0.31110939383506775, 0.2599954903125763, 0.2987222671508789, 0.2030002772808075, 0.1916494518518448, -0.5085486769676208, -0.19988512992858887, -0.6774188280105591, -0.20637738704681396, 0.1909770965576172, 1.1630628108978271, -0.3309635519981384, -0.02544458582997322, -0.8699451684951782, -0.08878341317176819, 0.7580106854438782, 0.24058598279953003, -0.8054159879684448, -0.2713873088359833, 0.047294095158576965, 0.6264299154281616, -0.6764236688613892, 0.7907983660697937, -0.543893039226532, 0.684739887714386, 0.03565853834152222, -0.11191415786743164, -0.42056602239608765, -0.3966790437698364, 0.8080539703369141, -0.33612072467803955, 0.37797799706459045, -0.598048746585846, -0.3959461450576782, -0.2579761743545532, -0.9390881061553955, -0.24000877141952515, -0.19368046522140503, -0.5634862184524536, 0.4938449263572693, -1.2460482120513916, -0.7701342701911926, -0.3562072217464447, -0.3358110785484314, -0.12491467595100403, -0.6309749484062195, -0.4807397127151489, -0.11298936605453491, -0.969356894493103, 0.8233470916748047, 0.6204996109008789, 0.24276065826416016, 0.5169926881790161, 0.985824465751648, 1.7662012577056885, 0.45996344089508057, -0.4410243034362793, -0.03032839670777321, 0.7596200704574585, -1.0449469089508057, -0.30309000611305237, -0.3631609082221985, 0.03726619854569435, -0.3700915575027466], [0.9477852582931519, 1.079688549041748, -1.4595613479614258, -1.2386667728424072, -0.32584211230278015, -0.20128099620342255, 0.8490021228790283, 0.5778640508651733, -0.14243924617767334, -1.6150861978530884, -1.597521424293518, 0.23218876123428345, 0.03558065742254257, 1.0864781141281128, 1.2790803909301758, 0.7936580777168274, 0.9627972841262817, -0.258148193359375, 0.372501939535141, 0.9519468545913696, 0.7670096755027771, -0.3965272605419159, 0.12999212741851807, -0.6016992926597595, 0.8159844279289246, 0.7338755130767822, -1.125146746635437, -0.2071416676044464, -1.2245314121246338, -0.921791672706604, 1.1895802021026611, 0.25719526410102844, 0.00999982375651598, -0.460231751203537, -1.6547726392745972, -0.45363402366638184, 1.310556173324585, 0.39534062147140503, -0.18443326652050018, 1.492158055305481, 1.4797258377075195, 0.4817458987236023, 0.47090771794319153, -1.2688872814178467, 0.2888059914112091, -0.02510586939752102, 0.5179056525230408, 0.01460434589534998, -0.4510017931461334, -1.5297791957855225, 0.5842390060424805, -0.45981380343437195, -0.6104798913002014, 0.9241690635681152, 1.0081186294555664, -0.5052444338798523, 0.14053016901016235, 0.7267609238624573, -0.29248544573783875, 0.5091347098350525, 0.9999474883079529, 0.4471150040626526, -0.6729046702384949, 0.2633502185344696, -0.18636633455753326, -0.10375813394784927, 0.19242577254772186, 0.575516402721405, -0.9862146377563477, 0.02047819085419178, -0.0592690072953701, 0.9238603115081787, -0.5368038415908813, 0.7605153322219849, -1.5809837579727173, -0.005311986431479454, 0.16590002179145813, 0.42153751850128174, 0.23311875760555267, 1.3254114389419556, -0.7357535362243652, -0.3520297110080719, -0.3196246922016144, -0.40516817569732666, 0.5459195375442505, 0.05020667240023613, 0.43975841999053955, -0.20628561079502106, -0.30409932136535645, 1.2459017038345337, -0.3669640123844147, 0.09815721213817596, 0.24119965732097626, -0.33344507217407227, -1.4635001420974731, -0.772419810295105, 0.2507951557636261, -0.5148624777793884, -0.5567689538002014, -0.8317113518714905, -0.4000674784183502, -0.9981921315193176, 1.1414076089859009, 1.129356861114502, 1.168272614479065, 1.8448004722595215, 0.6641336679458618, -1.4235607385635376, -0.7003311514854431, 0.3074815273284912, 0.42502278089523315, 0.9203801155090332, -0.6331733465194702, -1.3308117389678955, -0.24938781559467316, 0.7904008626937866, 0.6158655285835266, -0.7776223421096802, 1.0542258024215698, 1.1216771602630615, -0.7974596619606018, -0.5419742465019226, -0.8545941710472107, 0.6133824586868286, 1.4937856197357178, 0.11576177179813385, -0.6091732382774353, -0.041531916707754135, -0.25688114762306213, 0.0018651848658919334, 0.4513450264930725, -0.3833646774291992, -0.30643430352211, 0.7389364838600159, -0.2942938804626465, 1.0909521579742432, -0.3439757525920868, -0.8467685580253601, 0.7045785784721375, -0.13314926624298096, 0.3569629490375519, 0.0012291520833969116, -0.3261519968509674, -0.6613682508468628, 0.638010561466217, -0.7175014615058899, -0.02624335139989853, -0.3202807903289795, -0.7210361361503601, 0.31672507524490356, -1.3339215517044067, 0.07172676175832748, -0.04531910642981529, 1.4154579639434814, 0.131662517786026, 0.5882744789123535, 0.27783164381980896, 0.35823968052864075, -0.3177991211414337, 0.23561489582061768, 0.6033204197883606, 0.10447254776954651, -1.51560378074646, 1.1207547187805176, 0.3459574282169342, -0.4141674339771271, 0.7284725904464722, 0.7198094129562378, -0.372951477766037, 0.5713462829589844, -0.6445046067237854, -0.2724829614162445, -0.7554962635040283, 0.16781653463840485, -0.35842519998550415, -0.12459903210401535, 0.7873581051826477, -1.1704152822494507, -0.5205518007278442, -0.32169225811958313, 0.1669437289237976, -0.13332675397396088, 0.1092960461974144, -0.507477879524231, 0.6213277578353882, -0.5537348985671997, -0.6959259510040283, -0.6250086426734924, -0.09534107148647308, -0.279589980840683, -0.9977134466171265, 0.12125365436077118, -0.6320139765739441, 0.556229293346405, -0.3803100883960724, -1.6209626197814941, 0.21041284501552582, -0.6061681509017944, -0.6683065891265869, -0.22690173983573914, -0.31510141491889954, -0.4067170321941376, -1.0410813093185425, -0.2811107933521271, -1.12652587890625, 0.515489935874939, -0.7173571586608887, -0.28830835223197937, -1.3054852485656738, -0.05155254155397415, 0.8301775455474854, 0.022853251546621323, -0.7330101132392883, 1.1733622550964355, 0.5016756653785706, -0.5495136380195618, -0.1728687584400177, 0.12423597276210785, 0.09070565551519394, 0.305289089679718, 0.33636757731437683, -0.14590515196323395, 0.8815129995346069, 0.10619766265153885, 0.47088077664375305, 0.031871017068624496, -1.485890507698059, -0.13821928203105927, -0.911835253238678, -0.3638170659542084, -0.6939122676849365, -0.6047923564910889, 0.8955554366111755, 1.08303964138031, -1.3007628917694092, 1.006493091583252, -0.4899764060974121, 0.16754136979579926, 0.3470054268836975, 0.5193619132041931, 0.43965208530426025, 0.5387262105941772, -0.5647603273391724, 0.1365220993757248, -0.4176199436187744, 0.3644300103187561, 0.9096097350120544, -0.5637599229812622, -0.38805606961250305, 1.3567627668380737, -0.2313847839832306, -0.4094294309616089, 0.6751284599304199, -0.30286896228790283, 0.23929744958877563, -0.603875458240509, 0.18587978184223175, -0.461246132850647, -0.3078586459159851, 1.655214548110962, 0.024435317143797874, -1.3400081396102905, -0.2568844258785248, -0.5998146533966064, -0.09694837778806686, -0.6964589357376099, 0.30530238151550293, -0.05085369572043419, 0.5400192737579346, 0.2899268567562103, -0.25739333033561707, -0.41405126452445984, -0.12352946400642395, 1.0669561624526978, 0.1704350858926773, -0.2837277948856354, -0.7381231784820557, 0.5092437267303467, 0.13134482502937317, 0.4962688684463501, 0.05855421721935272, -1.8383616209030151, -0.5674553513526917, -0.33330264687538147, 0.5641853213310242, -0.30102744698524475, -0.8599077463150024, 0.2001563310623169, 0.4890984296798706, -0.6879605650901794, 0.5451614856719971, -0.13071320950984955, -0.9239628911018372, 0.2991470694541931, 0.2557458281517029, -0.6352624297142029, 0.4464682936668396, -0.17323100566864014, -0.9344847798347473, -0.10610567033290863, 0.27632904052734375, 1.0429279804229736, 0.6097506284713745, 0.8877009153366089, 0.12638498842716217, -0.2867199778556824, -0.03244774788618088, 0.05843643099069595, -0.23441120982170105, 0.2149379402399063, -0.3198181688785553, -0.38089945912361145, 0.023983370512723923, -0.5240033864974976, 0.11244867742061615, 0.7784721851348877, 0.25111037492752075, 0.8990999460220337, 0.48567259311676025, 0.3972434103488922, -0.556917667388916, -0.8452935218811035, 0.22351756691932678, -1.0319304466247559, -0.10233799368143082, 0.9868184924125671, -0.9646607637405396, 0.0020682583563029766, 0.2969142198562622, -0.41838204860687256, 0.27633237838745117, -0.6869748830795288, 0.5681002140045166, -0.6937069296836853, 0.28273800015449524, 0.4413009583950043, 1.2464118003845215, -0.11836003512144089, -0.33934730291366577, -0.8232027888298035, 0.8058381676673889, 0.23678971827030182, 0.08012058585882187, -0.496500164270401, 0.6003789901733398, -0.34169718623161316, -0.5941330194473267, -0.2835433781147003, 0.10009998083114624, 1.5265570878982544, 0.14680294692516327, -0.04209420830011368, -0.4779934287071228, 0.18004335463047028, -0.5478806495666504, 0.723042905330658, -0.14967601001262665, 1.4911545515060425, 0.337980180978775, 0.35073766112327576, 0.5839889049530029, -0.36461371183395386, 0.4015340805053711, -0.9092062711715698, 0.4885573983192444, 0.31921055912971497, 1.5606814622879028, 0.8503563404083252, -0.16962529718875885, 0.29068872332572937, -0.04040026664733887, -0.26769858598709106, 0.14386242628097534, 0.4679739475250244, -0.13377031683921814, -0.44254815578460693, -0.5399746298789978, 0.7526989579200745, -0.018784845247864723, -0.5718944668769836, -0.01760358177125454, 0.40859273076057434, 0.222865492105484, -0.570222020149231, 1.1725128889083862, -0.021743163466453552, 0.2588129937648773, -0.12182056158781052, -0.6711813807487488, 0.05432339757680893, -0.10142174363136292, -0.4904147684574127, -0.05576033517718315, 0.23695920407772064, 0.15478068590164185, -0.10800578445196152, -0.5567638278007507, 0.21946732699871063, 0.40876761078834534, 0.45305219292640686, -1.1443053483963013, -0.06035608425736427, 0.254732608795166, 0.116858571767807, 0.27882862091064453, 0.22857974469661713, 0.19572298228740692, 0.48004087805747986, -0.7086436748504639, 0.29499614238739014, 0.6639848351478577, 0.9553920030593872, -0.04321959614753723, 0.359296053647995, -0.5630204081535339, -0.29869627952575684, 0.37827059626579285, 0.033832281827926636, -0.5202877521514893, 0.07841689884662628, -0.715099573135376, 0.14174321293830872, 0.5890220403671265, -0.5401875972747803, 1.4003583192825317, -0.1623615026473999, 0.2828696072101593, 0.7981335520744324, -0.0778389722108841, -1.595787763595581, 0.20323407649993896, 0.17207513749599457, 0.13127629458904266, -0.16213983297348022, 0.42938339710235596, -0.16953834891319275, 0.3404008746147156, 0.47402822971343994, -0.053667496889829636, 0.6403346657752991, -0.13437792658805847, -0.47612008452415466, 0.06884798407554626, 0.7694358229637146, 0.7868460416793823, 0.8490781188011169, 1.2035778760910034, -0.6055784821510315, -1.1288235187530518, 1.2844927310943604, 0.2635805904865265, 1.146046757698059, 0.27759963274002075, 0.39843958616256714, 1.85221529006958, -0.9755811095237732, -0.2916281223297119, 0.3546069860458374, -0.42218342423439026, -0.5463458299636841, 0.6708208918571472, -0.0046092672273516655, -0.7241060137748718, -0.48362666368484497, 0.09328372031450272, -0.17021216452121735, 0.629985511302948, -0.08983369916677475, -0.12671853601932526, 0.603511393070221, -0.7464127540588379, -0.29310503602027893, -1.1304972171783447, 0.11728163808584213, 0.776236891746521, 0.07278591394424438, 0.11322696506977081, 0.8459293842315674, 0.6152268052101135, 1.2556744813919067, -0.45577695965766907, -2.070871591567993, 0.1250447779893875, -0.8274497985839844, 0.3993794023990631, -0.07381226867437363, -0.5909265875816345, -0.5976082682609558, -0.30755698680877686, 0.32985901832580566, -0.11779390275478363, -0.4352511465549469, -0.2144751101732254, 0.2720663249492645, -1.1699448823928833, 0.5258803963661194, -0.38633692264556885, 0.9928069114685059, 1.0307260751724243, 0.49835219979286194, -0.06485716998577118, 0.41321128606796265, -0.6172237992286682, 0.2943213880062103, -0.017109137028455734, -0.17956796288490295, 0.22137655317783356, -1.0190629959106445, -1.0693732500076294, 0.8993561863899231, 1.2211312055587769, 0.6557366847991943, 0.35675424337387085, 1.2493374347686768, 1.6456607580184937, -0.811186671257019, -0.48345082998275757, 0.3278365731239319, -0.626002311706543, 0.2122770994901657, -0.08537903428077698, -0.8763052225112915, -0.3335593640804291, 0.02387813664972782, -2.1232805252075195, 0.7972862124443054, 0.193034827709198, -0.6050485372543335, 0.21452604234218597, 0.5278292298316956, 0.8296419978141785, 0.77960604429245, -1.0212955474853516, -0.32301831245422363, 0.93083655834198, -0.7726626992225647, -1.1196726560592651, 0.6392509937286377, 0.28357166051864624, 0.8227710723876953, -0.3956387937068939, -0.38564714789390564, -0.3998662233352661, -0.15406794846057892, -0.21133190393447876, 0.11496998369693756, 1.3658281564712524, 0.7142276763916016, 0.5523536801338196, -1.3484536409378052, 0.37294450402259827, -0.23511335253715515, 1.0453497171401978, -0.25040575861930847, 1.3359524011611938, 0.6519157290458679, -0.0991753339767456, 0.16544656455516815, -0.32320815324783325, -1.0453888177871704, -0.5621708631515503, -0.7820272445678711, 0.9892421960830688, 0.7790927290916443, -0.18972259759902954, -0.12238480895757675, -0.39320501685142517, -0.053520698100328445, -0.030188411474227905, 0.2811641991138458, 0.5931476354598999, -1.056867003440857, -0.44763392210006714, 0.355058878660202, 0.2667497992515564, -0.05130196362733841, 0.7849457859992981, -0.14667284488677979, -0.6920680403709412, -1.3239399194717407, -0.40828433632850647, 0.1339103877544403, 0.6225118041038513, -0.39170512557029724, -0.021159883588552475, 0.1083545908331871, -1.924118995666504, 0.8129803538322449, -0.05557061359286308, -1.0132571458816528, -0.6318525075912476, -0.836906373500824, 1.2672054767608643, 0.7930297255516052, -0.3440117835998535, 0.4230395555496216, 0.3913167119026184, -0.8427724242210388, -0.1943359076976776, -1.4781715869903564, 0.10291692614555359, 0.22588638961315155, 1.2260268926620483, -0.5611780881881714, 0.380404531955719, -0.29395782947540283, -0.6001120805740356, -0.2048531174659729, -0.5247568488121033, -0.5535951852798462, 0.6343539953231812, 0.5176137685775757, 0.18049290776252747, 0.6659931540489197, 0.7486194968223572, 0.24053825438022614, 0.6830815076828003, -0.04050077870488167, 0.6090198755264282, -1.098781704902649, -0.5312203764915466, -0.5139312744140625, 0.23931509256362915, -0.8984869718551636, -0.8473355770111084, 0.10550101101398468, -0.48161745071411133, -0.8149431943893433, 0.6425657868385315, 0.7764503359794617, -0.41835081577301025, -0.3290398120880127, 0.3500162959098816, 0.03944075480103493, -1.2223687171936035, 0.941753625869751, 0.3422858715057373, -1.096305251121521, -0.3640361726284027, 0.2189064472913742, 0.107197105884552, -0.9987013339996338, -0.3106522560119629, -0.12770706415176392, -0.22363604605197906, -0.08406002819538116, 0.4085245728492737, 0.7024234533309937, 0.1416846364736557, -0.49400830268859863, 0.783930242061615, 1.275620937347412, 0.36799177527427673, 0.24400180578231812, 0.6625305414199829, -0.6779059767723083, 0.1565706580877304, 0.2753998041152954, -0.6561673283576965, -0.32668107748031616, 0.8662095665931702, -0.3656693398952484, -0.22510258853435516, -0.9188107848167419, 0.3243343234062195, -0.17265570163726807, -0.21404051780700684, 0.9067435264587402, 0.1527201235294342, -1.1154860258102417, 0.23599493503570557, 0.5549913644790649, -0.3113149106502533, 0.28798559308052063, 0.3369286060333252, 0.7026350498199463, 0.31502217054367065, 0.04871584475040436, 0.47650328278541565, -0.3272596001625061, 0.7949616312980652, 0.3234608471393585, -0.838925302028656, 0.0981895700097084, -0.9681620001792908, -1.9733129739761353, 0.061327047646045685, -0.08874193578958511, -0.8552324771881104, 0.30336907505989075, -1.1761001348495483, -0.1766965538263321, -0.7327426075935364, -0.43866103887557983, 0.1401074379682541, -1.3018463850021362, 0.30830666422843933, -0.1909337192773819, 0.3931412696838379, 1.2922714948654175, -0.16967609524726868, 0.8681868314743042, -0.044900041073560715, 0.04566986858844757, -0.0029867617413401604, 0.08638283610343933, -0.39785176515579224, 0.3676075339317322, -0.13050316274166107, -0.32229727506637573, -0.40448564291000366, -1.0289809703826904, -0.1498517543077469, 0.398771733045578, -0.10909808427095413, 0.24849960207939148, 0.4750511050224304, -1.1850563287734985, 0.11780884116888046, 0.6637563109397888, 0.7002655267715454, -0.2594855725765228, -0.15576307475566864, -0.258654922246933, 0.5391717553138733, 0.30449187755584717, 1.4741883277893066, -0.5884848237037659, 1.1477152109146118, 0.42256635427474976, 0.20446759462356567, -0.8793855309486389, 0.2015637308359146, 1.0038467645645142, -0.3526609241962433, 0.25567033886909485, -0.6482823491096497, -0.32846665382385254, -0.12362869828939438, -0.464935302734375, -0.021452130749821663, -0.1193297803401947, -1.3921781778335571, 0.05894986167550087, -0.019871026277542114, -1.1935940980911255, -0.302516371011734, -0.4467175006866455, -0.07660675793886185, -0.42313894629478455, 0.6079434156417847, -0.34068241715431213, -0.8162238597869873, 0.7501230835914612, 0.04582643508911133, -0.23462630808353424, 0.31003159284591675, 1.526546835899353, 1.5178972482681274, 0.6839640140533447, -0.4113892614841461, -0.1139773279428482, 0.8352926969528198, -0.9711301326751709, -0.44743964076042175, -0.463695764541626, 0.018752850592136383, 0.04541809856891632], [0.762101411819458, 1.8274277448654175, -2.4056239128112793, -0.01657646894454956, -0.3720317780971527, 0.024778958410024643, 0.8319790363311768, 1.104480266571045, 0.5386694669723511, 0.19837793707847595, -1.3918471336364746, 0.09573298692703247, 0.7723987102508545, 0.3396211266517639, 0.3666367530822754, 0.7713583707809448, 0.5268691182136536, 0.7146393060684204, 0.2351725846529007, 0.3470538556575775, -0.987112283706665, -0.6265119314193726, -0.07285456359386444, -0.06309771537780762, 0.5276895761489868, 0.4947044849395752, -1.6127886772155762, -0.12149167060852051, -1.814675211906433, -0.40993645787239075, 0.08607395738363266, -1.0237996578216553, 0.7109869122505188, -0.40427693724632263, -1.2458415031433105, 0.4145132005214691, 1.8584377765655518, 0.44663259387016296, 0.45870107412338257, 0.10531150549650192, 1.829325795173645, -0.2301410734653473, -0.9581325054168701, -0.6343995332717896, 0.5033820867538452, 0.3487538695335388, 0.6116007566452026, -1.4270644187927246, 0.006092049181461334, 0.04572930186986923, 0.3864870071411133, 0.6066898107528687, 0.0694044977426529, 1.8529895544052124, 1.3884193897247314, -0.9592874050140381, -0.4549926817417145, 0.04991737753152847, 0.870720386505127, 0.411157488822937, 1.4355792999267578, 0.12320659309625626, 0.1331380009651184, 1.121838092803955, 0.8133099675178528, -0.23518285155296326, 0.873245358467102, 0.5739808082580566, -0.02938007563352585, -0.4567452073097229, 0.24612891674041748, 0.339080274105072, -1.1542487144470215, -0.18186546862125397, -0.9316514730453491, 0.2686501443386078, 0.37723278999328613, 0.9578575491905212, -0.6552020311355591, 0.890354573726654, -1.0182812213897705, -0.030501235276460648, -0.12902387976646423, 0.025941476225852966, 0.3825158476829529, 0.31256935000419617, 1.018174171447754, -0.546427845954895, -0.09556572884321213, 1.5197079181671143, -0.12752285599708557, 0.8047555685043335, 0.44623643159866333, 1.0422039031982422, -0.13372765481472015, -0.39703941345214844, 0.031620752066373825, -0.47131121158599854, -0.4241124391555786, -1.1615203619003296, -0.27428901195526123, -0.7950805425643921, 0.2845209836959839, 0.643740177154541, 1.5706629753112793, 0.9852830171585083, 0.13231369853019714, -1.1691570281982422, -0.20006750524044037, 0.05602358281612396, 0.0031491145491600037, 0.2195400595664978, -0.08141674101352692, -1.5165003538131714, -0.7056926488876343, 0.7908901572227478, 0.5921682119369507, -0.4578353762626648, -0.15137214958667755, 0.7609503269195557, -1.2553014755249023, 0.5838127136230469, 0.19874592125415802, 0.5990109443664551, -0.14510560035705566, 0.8062642216682434, 0.08655266463756561, 0.16726934909820557, 0.8097652196884155, 0.7957988977432251, 0.7229299545288086, -0.22357048094272614, -0.5346086025238037, 1.124468445777893, -0.8998372554779053, 1.606290578842163, -0.4149666130542755, -1.3303346633911133, -0.9246233105659485, 0.2778469920158386, 1.0226588249206543, -0.8046907782554626, -0.2887651026248932, -0.18183746933937073, -0.7292255759239197, -0.7712135910987854, 0.24903038144111633, -0.3971962332725525, -0.8232054114341736, 0.1730469912290573, -1.4278099536895752, 0.6227583885192871, -0.3400219976902008, 1.4348658323287964, 0.48268604278564453, 0.11620976030826569, 1.0227859020233154, -0.16356581449508667, 0.16701024770736694, 0.5349975824356079, 0.057623352855443954, -0.5203562378883362, -0.3915148973464966, 0.7818917036056519, 0.20188255608081818, -0.4125819802284241, -0.01348620280623436, 0.272935152053833, -0.10124144703149796, 1.253814697265625, -0.553770899772644, -0.3168622851371765, -0.49876517057418823, -0.11354079097509384, 0.2751161456108093, -0.5475406646728516, 0.1435067355632782, -0.4269710183143616, -1.0699135065078735, -1.0364668369293213, 1.233769178390503, -0.297183632850647, 1.0588210821151733, 0.2831735908985138, 0.9072046279907227, 0.5655326843261719, -0.6142265200614929, -0.12145187705755234, -0.27551913261413574, -0.6750127077102661, -0.6453620791435242, -0.31599438190460205, -0.6508058309555054, 0.057190969586372375, -0.6971714496612549, -0.3893274664878845, 0.7430187463760376, -0.496425986289978, -0.805662989616394, 0.14792248606681824, 0.1996818333864212, -0.19343259930610657, -1.1194250583648682, -0.43873438239097595, 0.6656457781791687, 1.3174397945404053, -1.4812806844711304, -0.018919821828603745, -0.7307933568954468, 0.7893792986869812, 1.1266847848892212, -0.35614076256752014, -0.835915744304657, 0.6651085615158081, 0.3987995386123657, -0.8818761706352234, 0.23266810178756714, -0.5675883293151855, 0.6675239205360413, -0.10954621434211731, 0.1740604043006897, 0.26183822751045227, 1.044028878211975, 0.623559296131134, 0.7369357347488403, -0.14568638801574707, -0.8799045085906982, -0.8083065152168274, -0.9754167795181274, -0.15615148842334747, -0.7795140743255615, -1.1593247652053833, 0.7060129642486572, 0.5812996625900269, -0.45314306020736694, 0.9340915679931641, 0.6577383875846863, 0.32112646102905273, 0.04399195313453674, 0.6350042223930359, 0.18211987614631653, 0.1929585039615631, -0.5521471500396729, -1.3567211627960205, -0.47024673223495483, 0.4441385865211487, 0.5377267003059387, -0.5915603637695312, 0.02901267632842064, 0.9603269100189209, 1.3474726676940918, 0.392147958278656, 1.3131003379821777, 0.7751193046569824, -0.5612889528274536, -0.8877605199813843, -0.2462906837463379, 0.3327942192554474, -0.46659237146377563, 1.5848546028137207, 1.170198917388916, -0.7122663855552673, -0.47576195001602173, 0.13703802227973938, -0.2707923352718353, -0.0615973062813282, 0.6206033229827881, -0.9678013920783997, 0.31654036045074463, 0.4169330596923828, 0.8267293572425842, 1.1491115093231201, -0.21842992305755615, 0.4950914978981018, -0.13963103294372559, -0.7465086579322815, -0.10345843434333801, 0.2747856378555298, -0.21997563540935516, 1.1774147748947144, 0.3619729280471802, -0.9261259436607361, -0.6345100998878479, -0.21880173683166504, 0.555034875869751, -0.146389901638031, -0.01679064705967903, 1.1563620567321777, 0.7298684120178223, 0.08817266672849655, -0.11584839969873428, 1.0261034965515137, -0.24605657160282135, -0.12130404263734818, 0.0004920102655887604, 0.21069282293319702, 0.5895137190818787, -0.701583206653595, -0.8639422059059143, 0.27573662996292114, 0.14446212351322174, 0.9829643368721008, 1.484283447265625, 1.6368813514709473, -1.0930052995681763, -0.14129428565502167, -0.4015581011772156, -0.6236386299133301, -0.8180240392684937, -0.08511653542518616, -0.1727038472890854, -0.9210790991783142, 0.24439913034439087, -0.6818745136260986, -0.2837531864643097, -0.07751843333244324, 0.5159282088279724, -0.31964725255966187, 1.4323549270629883, -0.06106002256274223, 0.36514267325401306, -0.11114057153463364, -0.3368188440799713, -1.5553348064422607, 0.4284117519855499, 0.7838473320007324, -2.1782889366149902, -0.7837530970573425, -0.22097183763980865, 0.07988578081130981, 0.07287532091140747, -0.1459171026945114, 0.47815942764282227, -1.0405571460723877, -0.7543790340423584, 0.14530198276042938, 1.1916160583496094, 0.30926433205604553, -0.32449859380722046, -0.7492880821228027, -0.08231380581855774, 0.08940233290195465, 0.04797956347465515, -0.8470120429992676, -0.009184155613183975, -0.2828281819820404, -0.41575461626052856, -0.6413029432296753, 0.4577629268169403, 0.9095066785812378, -0.9064154028892517, -0.42200952768325806, 0.5011296272277832, -0.2281360626220703, -0.6948400735855103, 0.5811464786529541, -0.2811795175075531, 0.968384325504303, 0.06794463098049164, 0.3492083251476288, 1.2552212476730347, -1.0596890449523926, -0.18058447539806366, -0.9788059592247009, 0.4208204746246338, 0.477111279964447, 2.1380372047424316, -0.34422022104263306, 0.36666274070739746, 0.2922605872154236, -0.5161432027816772, -0.07625904679298401, -0.3337750732898712, 0.7322386503219604, 0.24448052048683167, -0.2049981653690338, -0.17565907537937164, -1.3360084295272827, -0.38754409551620483, -0.8815701603889465, -0.12519264221191406, 0.10466001182794571, 0.6189459562301636, 0.39287465810775757, 0.4438934028148651, 0.6651009917259216, -0.7556310296058655, -0.1770780384540558, -0.16087430715560913, 0.03292255103588104, -0.38012751936912537, -0.2193162441253662, 0.17605990171432495, -0.13058973848819733, 0.39862361550331116, -0.9759349822998047, 0.5905098915100098, 0.48547422885894775, -0.23430532217025757, 1.0126465559005737, -1.2682554721832275, 0.023569822311401367, -0.9739122986793518, 0.10155080258846283, 0.5736994743347168, 0.15863420069217682, -0.34898024797439575, 0.20674371719360352, -0.4186015725135803, -0.3605119287967682, -0.6611683964729309, 1.1929419040679932, 0.23019328713417053, -0.25760316848754883, -0.9273003339767456, 0.39329439401626587, 0.7445461750030518, -0.8636776208877563, 0.07354776561260223, -0.07775913178920746, -0.42821305990219116, -0.12529587745666504, 0.2717592418193817, 0.3001350164413452, 1.728942632675171, 0.5012048482894897, 0.16472773253917694, 0.5982552766799927, -0.42185890674591064, -0.553373396396637, 0.009612701833248138, 0.8354765176773071, -0.5221210718154907, -0.10865742713212967, 0.16984418034553528, 0.39417916536331177, -0.43411362171173096, 0.17423740029335022, -0.07176376134157181, -0.0189657062292099, 0.17061148583889008, -0.2800813615322113, 0.2757706642150879, 0.475130558013916, 1.4917306900024414, -0.4597383737564087, 0.725100040435791, 0.06676002591848373, -0.5343332290649414, 0.5776636600494385, -0.840045154094696, 0.09237934648990631, 0.9137173891067505, 0.05715616047382355, 1.2259912490844727, -1.6394257545471191, -0.6447188258171082, 1.026118516921997, 1.1289228200912476, -0.007079429924488068, 0.5831974744796753, 0.9679818749427795, -0.5106897354125977, 0.4840030074119568, 0.37298503518104553, -0.5871356725692749, 0.8259764909744263, -0.20393474400043488, -0.14737068116664886, 0.1834786832332611, -0.17608994245529175, 0.2943217158317566, -1.1230101585388184, -0.7041009664535522, 0.8900028467178345, -0.6154484152793884, -0.06885173916816711, 0.19714899361133575, -0.1735183298587799, 0.9115549325942993, -0.25181522965431213, -1.5700287818908691, 0.21414873003959656, -0.56802898645401, -0.12174274772405624, -0.36274245381355286, -0.6204555034637451, -0.6697462797164917, -0.2107320874929428, -0.887438178062439, -0.6900818943977356, -1.3639768362045288, -0.14766521751880646, 0.07500597834587097, -1.1544702053070068, 0.0008186474442481995, 0.5091666579246521, 0.6437415480613708, 0.6127727031707764, 0.09272850304841995, -0.2839384078979492, 0.3783283233642578, -0.4739361107349396, 0.0646352469921112, 1.00138258934021, -0.05651375651359558, -0.5386796593666077, -0.1387937217950821, -1.0110211372375488, 1.9719613790512085, -0.0500873401761055, -0.12402172386646271, 0.20685669779777527, 0.7164819240570068, 1.4370120763778687, -0.38036543130874634, -0.4615187346935272, 0.915004312992096, -0.469022274017334, 1.328183889389038, 1.1189509630203247, -0.6002329587936401, -0.6892812252044678, -0.4183503985404968, -1.324220061302185, 1.456129789352417, 0.02406376600265503, -0.3374815583229065, 0.9174772500991821, 0.6117684245109558, -0.054302286356687546, 0.34806644916534424, -0.35289132595062256, -0.10589548200368881, 0.2574504017829895, 0.21485966444015503, -0.8428534269332886, 0.11444001644849777, 0.5326775908470154, 0.11563003063201904, -0.4203419089317322, 0.17608679831027985, 0.105682872235775, 0.10976450890302658, -0.7195164561271667, 0.25607678294181824, -0.4644920229911804, -0.022034987807273865, 0.2587535083293915, -0.123850978910923, -0.32707029581069946, -0.24961577355861664, -0.21963293850421906, -0.09058093279600143, 0.4571494460105896, 0.4230044484138489, -0.3323912024497986, 0.16657495498657227, -0.43468064069747925, -0.3012220859527588, -0.038484930992126465, -0.23349356651306152, 1.554710030555725, 0.5382276773452759, -0.3447449803352356, -0.36002346873283386, 0.03444096818566322, -0.5661222338676453, -0.6696724891662598, -0.37277835607528687, 0.21138504147529602, -1.0472261905670166, -0.48714888095855713, -0.26291805505752563, -0.31156039237976074, 0.3840823769569397, -0.15024706721305847, -0.048603709787130356, -0.5180923938751221, -1.0900695323944092, -0.7817627191543579, 0.5081498622894287, 0.1680099070072174, -0.7181854844093323, 0.3310077488422394, 0.059989288449287415, -1.502806305885315, 0.23789647221565247, 0.3181033134460449, -1.4538650512695312, 0.12966220080852509, -1.19956374168396, -0.3603562116622925, -0.23508432507514954, -0.024564821273088455, -1.1185874938964844, 0.7036104202270508, -1.1661502122879028, -1.7242696285247803, -0.7365450859069824, 0.3091743588447571, 1.1838581562042236, 0.7822120785713196, -1.4552749395370483, 1.4867992401123047, -0.588632345199585, -0.642096996307373, -0.5065166354179382, 0.012208599597215652, -0.2715626358985901, -0.298423707485199, 0.26182180643081665, -0.3082523047924042, 0.8914090394973755, 0.9160417914390564, 0.7041507959365845, 0.9656260013580322, 0.3784191906452179, 0.8849025368690491, -1.27680242061615, -0.4852699935436249, 0.06284119188785553, -0.04111041501164436, -1.1925089359283447, 0.19953782856464386, -0.3810656666755676, -0.3626566529273987, -0.8508110046386719, 1.2282211780548096, 0.315395325422287, -1.0907044410705566, 0.31210407614707947, -0.6246778964996338, 0.15470489859580994, -0.5131792426109314, 0.4759027659893036, 0.1547955870628357, -0.6186058521270752, 0.5924944281578064, 0.6299099922180176, -0.00015410780906677246, -0.334250807762146, 0.41950225830078125, -0.6750616431236267, 0.6405531167984009, -0.08769334852695465, 0.2725745439529419, -0.030734702944755554, 0.04259325563907623, -1.0507922172546387, 1.3377165794372559, 0.37077265977859497, 0.4682449400424957, 0.18629512190818787, -0.07982639223337173, -1.0220117568969727, 0.07561127841472626, -0.6015182733535767, 0.19293469190597534, -0.8646039366722107, 0.782347559928894, 0.4571463465690613, 0.22379854321479797, 0.23492766916751862, 0.730098307132721, -0.096644327044487, -0.0216834619641304, 0.8495962619781494, 0.3721695840358734, -0.8634331822395325, 1.3359906673431396, 1.2486352920532227, -0.7850334644317627, 0.5527004599571228, 0.18126721680164337, 0.18628254532814026, -0.44094759225845337, 0.3388088643550873, 0.5567024946212769, -0.4881722033023834, 0.6239312887191772, 0.5772297382354736, -0.6570819020271301, -0.11090242862701416, -0.4862772226333618, -2.0292446613311768, -0.2614094316959381, -0.4727657437324524, 0.7199041843414307, 0.6885002851486206, -0.5217081308364868, -0.2066464126110077, -0.6132776737213135, 0.17203360795974731, 0.22749945521354675, -0.6779252290725708, 0.1443449705839157, 0.06890026479959488, 0.7098323702812195, 0.5353447198867798, -0.7560495138168335, 0.5858542919158936, -0.4238188564777374, -0.8421434164047241, -0.49228888750076294, -0.0854080319404602, 1.1084208488464355, 0.5421751737594604, -0.30797821283340454, -0.05242873355746269, 0.4321105480194092, -1.2002179622650146, -1.0087180137634277, 0.07652956992387772, 0.8282773494720459, 0.43216001987457275, -0.2807505428791046, -0.7567939162254333, -0.04897915571928024, 0.7357950806617737, 0.31831490993499756, -0.7501158118247986, -0.4546671509742737, -1.1349163055419922, -0.1869489997625351, -0.2868664264678955, 0.6103302240371704, -0.8957734704017639, 0.6539777517318726, 0.23903410136699677, -0.486798495054245, -0.4667445421218872, -0.6470481157302856, 0.5751333236694336, 0.27806177735328674, 0.5340892672538757, -0.5631399154663086, -0.016833383589982986, 0.04070441424846649, -1.162530779838562, -0.8179304599761963, -0.13206130266189575, -0.33872532844543457, 0.4444003105163574, -1.0645880699157715, -0.5430161952972412, -0.722771406173706, -0.8222694396972656, 0.5473506450653076, 0.07553655654191971, -0.14178919792175293, -0.7364374399185181, -1.5279146432876587, 0.19877368211746216, 1.0510982275009155, 0.18583886325359344, 0.322974294424057, 1.020111083984375, 2.1853339672088623, 0.18893349170684814, -0.12032480537891388, 0.1200275719165802, 1.7268970012664795, -1.0526224374771118, 0.5361969470977783, -1.2670457363128662, 0.2542020082473755, -1.3056560754776], [-0.044416941702365875, 1.402078628540039, -2.1044273376464844, -0.5751803517341614, 0.937399685382843, 0.5377804636955261, 1.1635857820510864, -0.5951124429702759, -0.20127534866333008, -1.0722850561141968, -0.4094125032424927, -0.26667454838752747, 0.09839703142642975, 0.7631881833076477, 0.4673151969909668, 0.5306785106658936, 0.49050143361091614, -0.06190618872642517, 1.2788488864898682, 0.4677765667438507, -0.11954407393932343, -1.2324954271316528, 0.2534376382827759, -0.21570545434951782, -0.06821386516094208, 0.9183183312416077, -0.6897538900375366, -0.5990045666694641, -1.0413578748703003, -0.8887815475463867, 1.1081053018569946, -0.09156759828329086, -0.048293549567461014, -0.21083639562129974, -1.774829626083374, -0.7879432439804077, 1.2079535722732544, 0.6112561821937561, 0.20100431144237518, 0.67087721824646, 0.9761568903923035, 0.13960899412631989, 0.3890904188156128, -1.9786666631698608, 0.6392406225204468, -0.06167510151863098, 0.7141895294189453, -0.3255566954612732, 0.1653776317834854, -0.9034363031387329, 0.838537335395813, -0.8802545070648193, -0.059793438762426376, 1.2898439168930054, 1.1563773155212402, -0.9385828971862793, 0.13842163980007172, 0.703889012336731, 0.21646322309970856, 0.5371145009994507, 1.3306845426559448, -0.08250689506530762, 0.34213605523109436, 1.1351946592330933, 0.4447283446788788, -0.5871655344963074, 0.5824933052062988, 0.3825901448726654, -0.40209585428237915, 0.1529236137866974, 0.4195556640625, 0.3709208071231842, -0.4289121925830841, 0.4129824638366699, -1.1188958883285522, 0.5018109083175659, 0.015501728281378746, 0.9211567044258118, 0.007773702964186668, 0.9204725027084351, -1.415655493736267, 0.26863205432891846, 0.3584529757499695, -0.44087883830070496, -0.01630742847919464, 0.27709221839904785, 0.5186018943786621, -1.3774021863937378, 0.2641228437423706, 1.5119484663009644, 0.3732386827468872, -0.017975464463233948, 0.8525304198265076, -0.0610804557800293, -0.6695416569709778, -0.0656445324420929, 0.6111995577812195, -0.780052661895752, -0.4182969629764557, -0.7210943102836609, -0.3762964904308319, -0.5219188332557678, 0.37289711833000183, 0.7780442237854004, 0.7030501961708069, 1.4739928245544434, 0.8026324510574341, -0.6953709125518799, -0.7013683915138245, 0.5345568060874939, 0.4290313124656677, 0.9168300628662109, -0.7973065972328186, -1.8277637958526611, 0.07084958255290985, 1.0727769136428833, 1.1884177923202515, -0.23366156220436096, 0.7352898120880127, 0.5803743600845337, -0.6883097887039185, 0.020284513011574745, -0.07488586008548737, 0.15736153721809387, 0.9510090947151184, 0.22885742783546448, -1.2559577226638794, -0.3198770582675934, -0.5297157168388367, 0.05795867368578911, 0.051867250353097916, -0.7450546026229858, -0.4421796500682831, 1.0683461427688599, -0.3563646078109741, 1.3871995210647583, -0.5950978398323059, -0.42596572637557983, 0.16471128165721893, 0.23044627904891968, 0.3156585097312927, 0.13477765023708344, -0.4090591073036194, -0.01203947514295578, 0.028788354247808456, -0.804588258266449, -0.2644311487674713, 0.12513631582260132, -0.573696494102478, 0.6233339905738831, -1.5516018867492676, 0.34896114468574524, -0.6330293416976929, 1.2675631046295166, 0.5392600297927856, 0.30281195044517517, 0.613922655582428, -0.08545085787773132, 0.663864016532898, 0.3346075713634491, 0.7295199632644653, 0.2668069899082184, -1.3949730396270752, 0.4862120449542999, 0.3736444115638733, -0.7925489544868469, 0.6505952477455139, 0.7489773631095886, 0.24204151332378387, 0.4646972417831421, -0.6178117990493774, -0.19154228270053864, -0.2792834937572479, 0.30406874418258667, -0.048249635845422745, -0.6079807281494141, 0.8046802282333374, -0.10889249294996262, -1.3971679210662842, -1.7045847177505493, 0.5950488448143005, 0.013176130130887032, 0.04309837520122528, 0.3291095495223999, 0.8083045482635498, 0.26174986362457275, -0.4119787812232971, -0.015316197648644447, 0.016819478943943977, -1.0674653053283691, -0.7454851865768433, -0.4864177405834198, -0.8929452300071716, 0.4420503079891205, -0.49489906430244446, -0.5372951030731201, 0.45095619559288025, -0.13190028071403503, -0.08731527626514435, -0.09742825478315353, -0.8522457480430603, -0.9675421118736267, -1.144926905632019, 0.17437180876731873, -0.5184071660041809, 0.3083248734474182, -0.8491614460945129, 0.22992844879627228, -1.2479742765426636, 0.21547269821166992, 1.2807226181030273, 0.058582667261362076, -0.4344826936721802, 0.39499661326408386, -0.22967155277729034, -1.5037336349487305, 0.40812110900878906, 1.052208423614502, 0.0531281977891922, 0.31415504217147827, -0.18236325681209564, 0.2741188406944275, 0.8582251667976379, -0.4091895818710327, 1.0648363828659058, -0.3365202844142914, -1.0243147611618042, -0.5555379390716553, -0.5597243309020996, -0.3390186131000519, -1.1280755996704102, -1.3639311790466309, 0.05573968216776848, 0.49124717712402344, -1.9625942707061768, 0.23368535935878754, 0.6805025339126587, 0.5626250505447388, 0.6205450296401978, 1.6622130870819092, 0.6643199324607849, 0.9633110761642456, -0.7071590423583984, -0.11280830204486847, -0.7898626327514648, 0.025212008506059647, 0.6449944376945496, -0.9789050221443176, -0.16248762607574463, 0.8597478866577148, 0.6789675951004028, 0.1082460880279541, 1.0387721061706543, -0.7720965147018433, -0.31927213072776794, -0.605482816696167, -0.006399938836693764, -0.2712418735027313, 0.13777852058410645, 1.3605409860610962, 0.13134025037288666, -0.8385430574417114, 0.28443601727485657, -0.6256663799285889, 0.6213763952255249, -0.3827158212661743, 0.07805140316486359, 0.7872428297996521, 0.4928026795387268, 0.275836706161499, -0.06286284327507019, -0.37795403599739075, -0.49480947852134705, 1.246436595916748, -0.07226847857236862, -0.08141486346721649, -0.2145618051290512, 0.27434059977531433, -0.05888327956199646, 0.6872826218605042, -0.1352906972169876, -0.28388711810112, -1.6226588487625122, -0.14523962140083313, 0.09060405194759369, -0.2893370985984802, 0.24956834316253662, 1.0195488929748535, 0.539933443069458, -0.3532797694206238, 0.6074523329734802, -0.0952989012002945, 0.10229871422052383, 0.3134474754333496, 0.46941033005714417, -0.5433635711669922, 0.4815135896205902, -0.4496583342552185, -0.557758092880249, -0.7674725651741028, 0.23448191583156586, 1.8430041074752808, 0.8695045709609985, 1.3646984100341797, -0.49211400747299194, -0.2611118257045746, -0.026110516861081123, -0.3392760157585144, -0.9135829210281372, -0.6041941046714783, 0.3453706204891205, -0.18080663681030273, -0.5854396224021912, -1.2244876623153687, 0.6823505163192749, 0.6875934600830078, -7.525738328695297e-05, 1.0361957550048828, 0.3259107172489166, 0.16345131397247314, -0.7962639927864075, -0.6736337542533875, -0.3431941568851471, -1.2720447778701782, -0.1830618977546692, 1.196555495262146, -0.9641283750534058, -0.6531535983085632, 0.3009282946586609, -0.10465964674949646, 0.062458280473947525, -0.4629671573638916, 0.6853082180023193, -0.8842697143554688, -0.482924222946167, -0.4065365493297577, 1.7548667192459106, -0.13173240423202515, -0.26848772168159485, -0.36818230152130127, 1.1941726207733154, 0.29132306575775146, -0.2277919054031372, -0.15404821932315826, 0.25351041555404663, -0.5528118014335632, -0.4281257390975952, 0.18193526566028595, 0.3441208004951477, 0.48398280143737793, -0.6385772824287415, -0.9108831286430359, 0.005539761856198311, 0.4248200058937073, -0.7372708916664124, 0.5731465816497803, -0.5222831964492798, 0.9453089237213135, 0.6282860636711121, 0.35267505049705505, 0.16191807389259338, -0.47458821535110474, 0.027106793597340584, -1.4890053272247314, 0.6722936630249023, 0.4593076705932617, 1.2345292568206787, 1.076357364654541, -0.26315629482269287, 0.22206299006938934, -0.49018147587776184, 0.2840631902217865, 0.26683759689331055, 0.7327660918235779, -0.3486359715461731, -0.34564438462257385, 0.040152303874492645, -0.34210172295570374, 0.7411035895347595, -0.1598832607269287, 0.1799665242433548, 0.35067129135131836, -0.5963546633720398, -0.5441079139709473, 1.3977422714233398, 0.4392251670360565, 0.2281745821237564, -0.8279949426651001, -0.23219740390777588, 0.9369310736656189, -0.6521297097206116, -0.18103542923927307, -0.11943482607603073, 0.186629056930542, -0.11645528674125671, -0.449252724647522, -0.1015159860253334, 0.19368292391300201, 0.3029336631298065, 0.8812821507453918, -0.8393614888191223, -0.5066608190536499, -0.02316705323755741, 0.44363465905189514, 0.4801435172557831, 0.17985934019088745, 0.06910116970539093, 0.5626983642578125, -0.31538379192352295, 0.5841789245605469, 0.9278424382209778, 1.0892587900161743, 0.10640393197536469, -0.19018007814884186, 0.08403732627630234, -0.19006550312042236, 0.12339188158512115, -0.10685995221138, -0.5098809003829956, -0.04154783487319946, -0.533090353012085, 0.39194753766059875, -0.2861706018447876, -0.5692172646522522, 1.251650333404541, -0.18539445102214813, 0.11035978049039841, 0.16871170699596405, 0.3045724332332611, -0.9119853377342224, -0.014953173696994781, -0.05300378426909447, -0.6782175302505493, -0.1948852241039276, -0.34968438744544983, -0.6042516231536865, -0.17507857084274292, 0.5160726308822632, 0.3492030203342438, 0.8868139982223511, -0.5238142609596252, -0.10495352745056152, -0.19212675094604492, 0.5683580040931702, 0.5623717904090881, 1.5593655109405518, 0.9641308784484863, -0.024325767531991005, -1.6710721254348755, 0.9761072993278503, 0.1796172708272934, 0.570366621017456, 0.2982291877269745, -0.22637251019477844, 1.4007247686386108, -0.9531839489936829, 0.19427631795406342, 0.690990149974823, 0.24069352447986603, -0.46889179944992065, 0.595853328704834, -0.3794657588005066, -0.44467681646347046, 0.054475389420986176, 0.5628691911697388, 0.22113493084907532, 0.19415895640850067, 0.20309904217720032, 0.2980792820453644, 0.4020068943500519, -0.5604016184806824, 0.5857418775558472, -1.0299540758132935, -0.4043668508529663, 0.20931437611579895, -0.053215429186820984, 0.3620953857898712, 1.1426080465316772, 0.39168956875801086, 1.1203868389129639, 0.0364224836230278, -1.4785677194595337, -0.36651650071144104, -0.4754094183444977, 0.351588636636734, -0.6013376712799072, -0.2816106975078583, -0.6153092384338379, -0.15963760018348694, -0.2791922688484192, 0.0005451012402772903, 0.26380956172943115, -0.3057316839694977, -0.47574394941329956, -1.4053184986114502, 0.5821470022201538, 0.517678439617157, 0.772447407245636, 0.22406497597694397, -0.11446995288133621, -0.3570012152194977, -0.09574105590581894, -0.9226447343826294, 0.23347757756710052, -0.13882635533809662, 0.04444823041558266, 0.15969090163707733, -1.320959448814392, -0.7234352231025696, 0.6750874519348145, 0.24664929509162903, 0.12417282909154892, -0.25109604001045227, 1.538688063621521, 1.1849652528762817, -0.5526554584503174, -0.28242817521095276, 0.7309940457344055, -0.8661783933639526, 0.5297197103500366, -0.32654017210006714, -0.40482595562934875, -0.44939813017845154, -0.19263093173503876, -1.9263606071472168, 0.8765355348587036, -0.2766849398612976, -0.03346119076013565, 0.4769194424152374, 0.23345601558685303, 1.1203832626342773, 1.1810165643692017, -0.5686975717544556, 0.49938732385635376, 0.21406012773513794, -0.3017459511756897, -0.9241124987602234, 0.6727129220962524, 0.48438504338264465, 0.9963387846946716, -0.3056102693080902, -0.07761286944150925, -0.34820738434791565, -0.36981046199798584, -0.4363214373588562, -0.2938145697116852, 0.07501427084207535, 0.511756420135498, 0.5220009684562683, -0.27466532588005066, 1.0655338764190674, -0.5553305149078369, 0.22789786756038666, -0.3295741677284241, 0.9014621376991272, 0.45954498648643494, -0.06279753893613815, 0.42082643508911133, -0.6488525867462158, -0.21745935082435608, -0.6002092361450195, -0.5127614140510559, 0.5074313282966614, 1.3647516965866089, 0.3936319351196289, -0.5014240741729736, -0.9629132747650146, -0.19461287558078766, -0.5711473822593689, -0.0006628185510635376, 0.5665513873100281, -0.6923477053642273, -0.2901225686073303, 0.24926185607910156, 0.1053847223520279, -0.10752146691083908, 0.16154620051383972, -0.2361067235469818, -0.790973424911499, -1.254316806793213, -1.2919632196426392, -0.2765788733959198, 0.730676531791687, -0.3323654532432556, 0.9095617532730103, 0.23388101160526276, -1.4668869972229004, 0.8250917196273804, 0.20047567784786224, -1.6804964542388916, -0.5589976906776428, -0.5783993005752563, 1.222690224647522, 0.4497523605823517, 0.3297041356563568, 0.5968297719955444, 0.8392669558525085, -1.532357096672058, -0.8837911486625671, -0.9164702892303467, -0.5126408934593201, 0.7114959359169006, 0.32732445001602173, -1.3515228033065796, 0.8285483121871948, 0.48760199546813965, -0.5964936017990112, -0.6338737607002258, -0.3605274260044098, -1.1504671573638916, 0.004224175587296486, 0.3948376476764679, 0.075180783867836, 0.11847539991140366, 1.2121427059173584, 0.8445920944213867, 0.24041076004505157, -0.09362898766994476, 0.9736860394477844, -1.0760033130645752, -0.2553984224796295, -0.48080238699913025, 0.327483206987381, -1.0482970476150513, -1.1696546077728271, 0.2494489997625351, -0.5954972505569458, -0.8529770374298096, 0.7223266363143921, 1.1194740533828735, -1.1038074493408203, 0.49088096618652344, 0.06334243714809418, -0.12344810366630554, -1.880218267440796, 0.6596723794937134, -0.29157379269599915, -0.9603985548019409, -0.6547042727470398, 0.40917259454727173, 0.21706482768058777, -1.2592369318008423, 0.1419535130262375, -0.11371022462844849, -0.08684258908033371, -0.0674600675702095, 0.40368157625198364, 1.2514503002166748, 0.5888975858688354, -0.6911795735359192, 0.29414352774620056, 0.8137028813362122, -0.2950771749019623, -0.0989765077829361, 0.6513705849647522, -0.5109925270080566, 0.4285961985588074, 0.12616749107837677, -0.6559460759162903, -0.48558032512664795, 0.9427412152290344, 0.15103274583816528, 0.006050620228052139, 0.3641006350517273, 0.26445943117141724, 0.30660760402679443, -0.015192186459898949, 1.0691674947738647, -0.4623146057128906, -1.3946688175201416, 0.40905269980430603, 0.9947550296783447, -0.07667391002178192, -0.018950199708342552, 0.6497119665145874, 0.38912296295166016, 0.15719690918922424, 0.23639865219593048, -0.29088497161865234, -0.9340640306472778, 0.34830233454704285, 0.4151287376880646, 0.13145121932029724, -0.03394405543804169, -0.8913295865058899, -1.560900092124939, -0.08936385065317154, -1.2257578372955322, -0.024204490706324577, 0.14585544168949127, -0.7508996725082397, -1.5732682943344116, 0.018859265372157097, -0.2908936142921448, -0.02791270986199379, -0.5886101722717285, 0.3030117452144623, -0.023865852504968643, -0.5761330127716064, 0.4989162087440491, -0.1033472865819931, 1.371401071548462, -0.10972832888364792, -0.2476048618555069, -0.5061457753181458, -0.2326846420764923, 0.6293866634368896, -0.22567059099674225, 0.2231796234846115, -0.5927191972732544, 0.837131679058075, -0.9157205820083618, -0.2824017405509949, -0.18971416354179382, 0.18336135149002075, -0.11333727091550827, 0.7743070721626282, -0.6868599057197571, 0.3057585656642914, 0.8741434216499329, 0.3597508668899536, -0.6306324005126953, -0.18999935686588287, -0.5318303108215332, 0.3912307024002075, -0.29989001154899597, 1.2328815460205078, -0.15254338085651398, 0.9042124152183533, 0.9792290925979614, -0.30203959345817566, -0.5118998289108276, 0.19738158583641052, 0.914580762386322, -0.26755595207214355, 0.3967004418373108, 0.3061973452568054, 0.1567133218050003, -0.558241605758667, -0.607599675655365, 0.6482073068618774, -0.2026410698890686, -0.8589388132095337, 0.5440601110458374, -1.2092862129211426, -0.8026772141456604, -0.7221213579177856, -0.33440807461738586, -0.06153516843914986, -0.042402248829603195, 0.12536391615867615, -0.16215014457702637, -1.1820133924484253, 0.08321592211723328, 0.1484343707561493, -0.8830643892288208, 0.5652592778205872, 0.7463646531105042, 2.329296827316284, 0.6495596170425415, -0.32279807329177856, -0.5489091277122498, 0.2523348033428192, -0.7435396909713745, 0.3841293454170227, -0.3262218236923218, 0.1125044971704483, -0.6474377512931824], [0.10231846570968628, 1.0659829378128052, -2.1682400703430176, -0.33129939436912537, 0.3209768533706665, 0.45532742142677307, 0.8770010471343994, 0.5706318020820618, 0.405374139547348, -0.9323114156723022, -1.313124418258667, 0.4830459654331207, 0.9249844551086426, 0.3263990879058838, 0.2946232855319977, 0.5251953601837158, 0.49269387125968933, -0.5952733755111694, 0.8297678828239441, 0.3552466332912445, -1.1429009437561035, -0.9356111288070679, 0.07489956170320511, -0.33883136510849, 0.03423900902271271, 0.4557921886444092, -0.9324043989181519, -0.9979634881019592, -1.4103879928588867, -0.0914892852306366, 0.3495200574398041, -0.6778118014335632, 0.155171200633049, -0.022704096511006355, -0.9266040325164795, 0.07065974175930023, 0.8601217269897461, -0.02931276522576809, -0.06395316869020462, 0.7652401924133301, 1.8470056056976318, -0.5812004804611206, 0.27128100395202637, -1.03751540184021, 0.6289132237434387, 0.13285380601882935, -0.01802481897175312, -0.41060540080070496, 0.6342703700065613, -0.2270466685295105, 0.9746413230895996, -0.5870822668075562, -0.17095118761062622, 1.0599764585494995, 1.1368530988693237, -0.5628495812416077, -0.17136846482753754, 0.6610867381095886, -0.02865487150847912, 0.29744020104408264, 1.0006452798843384, 0.3632409870624542, -0.3974243104457855, 0.8607131242752075, 0.6125075817108154, -0.21258407831192017, 0.1570136994123459, 0.4972154498100281, -0.4526255428791046, -0.07555914670228958, 0.5421399474143982, 0.2972063422203064, -0.8923390507698059, 0.2597699761390686, -0.7489974498748779, -0.19245938956737518, -0.02537437714636326, 0.5878583192825317, 0.5624841451644897, 1.1647802591323853, -0.5969042181968689, 0.09717773646116257, 0.6001951694488525, -0.19123850762844086, 0.14687758684158325, 0.3986470699310303, 0.4181042015552521, 0.03464614227414131, -0.7122012376785278, 1.5718038082122803, 0.2584656774997711, 0.3547275960445404, -0.025239083915948868, -0.23318436741828918, -0.6992363929748535, -0.384457528591156, 0.02751469798386097, -0.8576423525810242, 0.190452441573143, -1.2767711877822876, -0.20215079188346863, -1.1046861410140991, 0.7753300070762634, 0.9903930425643921, 0.8875487446784973, 1.1325366497039795, 0.7555757761001587, -1.0730760097503662, -0.022369422018527985, -0.3248979151248932, 0.6104768514633179, 0.4167401194572449, -0.6737470626831055, -1.0004745721817017, -0.4795008599758148, 0.7286986708641052, 1.077257752418518, -0.587882936000824, 0.5800970792770386, 0.5062273144721985, -0.5214924216270447, -0.05804259702563286, -0.5228179097175598, 1.0581892728805542, 0.9136543869972229, 0.8513570427894592, -0.4959871172904968, -0.2529863119125366, 0.10209362208843231, 0.011967492289841175, -0.4561743438243866, -0.12844109535217285, -0.5628744959831238, 1.059421420097351, -0.25337764620780945, 1.6568615436553955, -0.2958360016345978, -0.6483516693115234, 0.24640856683254242, -0.04864031821489334, 0.5732844471931458, 0.06101341173052788, -0.9325271248817444, -0.2502155900001526, -0.18218860030174255, -0.7293974757194519, 0.16617174446582794, -0.18278776109218597, -0.45789071917533875, 0.26021644473075867, -1.3024137020111084, 0.48892053961753845, -0.7733827829360962, 1.2297933101654053, 0.21235382556915283, -0.008066585287451744, 0.8803772330284119, 0.0037546390667557716, 0.17065764963626862, 0.5225971341133118, 0.7883098721504211, -0.17839114367961884, -0.7053188681602478, 1.1352145671844482, 0.01542922668159008, -0.4688056707382202, 0.29472967982292175, 0.4334350526332855, -0.06535112857818604, 0.40660783648490906, 0.16312386095523834, 0.07943543791770935, -0.044019050896167755, 0.3471578359603882, -0.2200697958469391, -1.1575427055358887, 0.41276612877845764, -0.6459521651268005, -1.4046210050582886, -1.5755198001861572, 0.5713626742362976, -0.16638943552970886, 0.3401279151439667, -0.15411430597305298, 0.6391913890838623, -0.28667381405830383, -0.3859771490097046, 0.03271142393350601, -0.10956935584545135, -0.763965904712677, -0.8186301589012146, -0.4519422948360443, -0.871889054775238, 0.2746366262435913, -0.8471947312355042, -0.9153027534484863, 0.7712245583534241, 0.02628072164952755, -0.4050903022289276, -0.49256300926208496, -0.4583922326564789, -0.5020535588264465, -1.820373773574829, 0.024592315778136253, -0.6868930459022522, 1.5392324924468994, -0.40678343176841736, 0.372230589389801, -1.0611748695373535, 0.4929890036582947, 0.8997527360916138, -0.2878718674182892, -1.2753450870513916, -0.0531785786151886, 0.077097587287426, -0.4155494272708893, -0.24561449885368347, 0.26047295331954956, 0.06227713078260422, 0.6873406767845154, 0.1242678165435791, 0.2957139015197754, 0.32234323024749756, -0.42472293972969055, 0.8951354622840881, -0.3092218041419983, -0.8821630477905273, -0.7016598582267761, -0.8831051588058472, 0.08581787347793579, -0.5311516523361206, -1.3095921277999878, 0.2685120701789856, 0.41865652799606323, -0.9387242794036865, 1.0082529783248901, 0.38706356287002563, 0.27884408831596375, 0.2308167666196823, 0.38125982880592346, 0.2960532009601593, 0.7696126103401184, -0.9484925270080566, -0.3377460539340973, -0.07428505271673203, -0.006398544646799564, 0.4777834415435791, -0.6091687083244324, -0.4950910210609436, 1.486143946647644, 1.1639573574066162, -0.2961326539516449, 0.9370927214622498, 0.08406482636928558, -0.3165017068386078, -0.7313705086708069, 0.07616059482097626, 0.010594666004180908, -0.48202750086784363, 1.136252760887146, 0.8145649433135986, -1.2046138048171997, -0.3258589208126068, -0.07589883357286453, -0.25087952613830566, -0.492736279964447, -0.36022064089775085, -0.6817397475242615, 1.0527338981628418, 0.07994964718818665, -0.13020826876163483, 0.008484813384711742, -0.6042671799659729, 0.770729124546051, 0.012712228111922741, 0.06607689708471298, -0.7489562034606934, 0.3639538586139679, -0.3355691134929657, 0.67885422706604, -0.023780284449458122, -1.2299585342407227, -0.7351587414741516, 0.01798960566520691, 0.6716556549072266, 0.4613363742828369, 0.4706447124481201, 1.0437787771224976, 0.9757965803146362, -0.24446174502372742, 0.01043689250946045, -0.3891716003417969, 0.053843904286623, 1.0151010751724243, 0.27677083015441895, -0.1427791267633438, 0.6264241933822632, -0.1381281167268753, -0.7853248119354248, -0.6286437511444092, 0.19790175557136536, 0.8888104557991028, 1.2809594869613647, 0.4844275116920471, -1.035516619682312, -0.3356713354587555, -0.307262659072876, 0.3139493465423584, -0.49372607469558716, -0.8229315876960754, -0.7269675731658936, -0.5352737307548523, -0.28235137462615967, 0.04297490417957306, -0.06319069117307663, 1.099464774131775, 0.0005694061983376741, 0.5027269721031189, 0.7135552763938904, 0.09378576278686523, -0.28631603717803955, -0.20254486799240112, -0.06637599319219589, -1.077304482460022, 0.16481085121631622, 1.4891247749328613, -1.5432761907577515, -0.4280920624732971, 0.04032602161169052, 0.09263391047716141, 0.1344631314277649, -0.15531037747859955, 0.14767809212207794, -0.5591437816619873, -0.27342191338539124, -0.06990406662225723, 1.2906755208969116, 0.20906475186347961, -0.06892435252666473, -0.6277373433113098, 1.2432600259780884, 0.23648859560489655, -0.16802659630775452, -0.1529979258775711, 0.34681248664855957, -0.8409165740013123, -0.7620750069618225, -0.4372577667236328, 0.1581173688173294, 0.7334797978401184, -0.4700258672237396, -0.3987032473087311, -0.28184589743614197, -0.1352570354938507, -0.8003107309341431, 0.12294899672269821, -0.6733930110931396, 0.4497731328010559, 0.29160770773887634, 0.22037672996520996, 0.726969838142395, -0.2741752862930298, 0.6186981201171875, -1.2398617267608643, 0.3826824724674225, 1.1399307250976562, 0.8952075242996216, 0.9379507303237915, 0.2916163206100464, 0.08268488943576813, -0.9687803387641907, -0.36276575922966003, 0.08932004123926163, 0.6898979544639587, 0.0335208959877491, 0.13532307744026184, -0.44211289286613464, -0.4230997860431671, 0.11540547758340836, -0.7623655200004578, -0.09769964963197708, 0.2447512447834015, -0.25080132484436035, -0.5632684230804443, 0.7220411896705627, 0.12528735399246216, -0.026956776157021523, -0.36253827810287476, 0.2774563729763031, 1.0852571725845337, -0.4656570851802826, 0.1162312924861908, 0.14398953318595886, 0.19159863889217377, 0.3781634569168091, -0.17724530398845673, -0.2557332217693329, 0.5110142827033997, 0.16268059611320496, 0.8078315854072571, -1.5647345781326294, -0.38266366720199585, -0.2825195789337158, -0.0056684971787035465, 0.44864508509635925, 0.11976038664579391, 0.1214926540851593, 0.18268141150474548, -0.5072701573371887, -0.3446296155452728, 0.08044572174549103, 0.746229350566864, 0.012647668831050396, 0.5457168221473694, -0.5068028569221497, 0.4775415360927582, 0.4295043647289276, -0.8024523258209229, -0.7662203311920166, 0.47105368971824646, -0.6446012258529663, 0.552959144115448, 0.6493451595306396, -0.1981944739818573, 1.6227173805236816, -0.008315451443195343, 0.15261441469192505, 0.8815245032310486, -0.3032084107398987, -0.24390418827533722, -0.016252396628260612, 0.707231342792511, -0.3845173418521881, -0.9631162285804749, 0.21922314167022705, 0.35895559191703796, 0.443779855966568, 0.2967756390571594, -0.010054541751742363, 0.5325489640235901, 0.3288618326187134, -0.49046260118484497, 0.12261214852333069, 0.882689356803894, 0.9427655935287476, 0.4904576241970062, 0.7225733399391174, 0.4094087481498718, -1.2012698650360107, 0.7995283007621765, -0.3002049922943115, -0.15055063366889954, 0.2288036346435547, 0.329083114862442, 1.4017531871795654, -1.4846128225326538, -0.1932739019393921, 0.3658563196659088, 0.10311920940876007, 0.09683805704116821, 0.5415061712265015, 0.7107263803482056, -1.219359040260315, -0.029575787484645844, 0.3369160294532776, -0.056885723024606705, 0.3309822380542755, 0.2839503586292267, 0.3885314464569092, 0.4173871576786041, -0.6234391331672668, -0.05865945667028427, -0.7092468738555908, -0.3197086453437805, 0.5579224228858948, -0.0940452292561531, 0.6385071277618408, -0.029640397056937218, 0.44189342856407166, 0.9081335067749023, -0.7083243131637573, -1.437511920928955, -0.09937963634729385, -0.6541922688484192, -0.04288578778505325, -0.03500746935606003, 0.031154150143265724, -0.5874741077423096, -0.2664118707180023, 0.3319528102874756, 0.22169767320156097, -0.09665657579898834, -0.2307945191860199, 0.7933726906776428, -1.3800389766693115, 0.029530614614486694, 0.7194676399230957, 1.2603294849395752, 1.1668399572372437, 0.0057183727622032166, -0.15975575149059296, 0.5090819001197815, -0.4250332713127136, 0.18117277324199677, 0.0679297149181366, -0.27497947216033936, 0.13008661568164825, -0.7806468605995178, -0.5721760392189026, 0.28312498331069946, 0.600123405456543, -0.15968476235866547, -0.4336242973804474, 0.9485036134719849, 1.712527871131897, -1.0997151136398315, -0.6716794371604919, 1.3679943084716797, -0.24315118789672852, 1.3237695693969727, 0.09202957153320312, -0.5403064489364624, -0.44869911670684814, -0.04130573943257332, -1.588956356048584, 0.9674293398857117, -0.03323015943169594, -0.8864249587059021, 0.549061119556427, 0.3188721537590027, 0.10258984565734863, 0.8728535175323486, -1.0549025535583496, -0.3517206609249115, 0.8451035022735596, -0.26789242029190063, -1.1512596607208252, 1.0357874631881714, 0.4050579369068146, 0.8430876731872559, 0.138723686337471, 0.3366875946521759, 0.06399861723184586, 0.02899136394262314, 0.05667665973305702, 0.07987604290246964, 0.23309601843357086, 0.3596363663673401, 0.6011831164360046, -0.4619158208370209, 0.16814009845256805, -0.67613685131073, 0.15372523665428162, 0.03178201615810394, 0.9632284641265869, 0.33039504289627075, 0.030660271644592285, 0.20213201642036438, -1.0846507549285889, -0.2694091498851776, -0.37189146876335144, -0.8557957410812378, 0.563021719455719, 0.8984380960464478, 0.2958866059780121, -0.05288699269294739, -0.4264548420906067, -0.3228088617324829, -0.4888628125190735, 0.07304667681455612, 0.2412615716457367, -1.1684246063232422, -0.03072221949696541, 0.23150771856307983, -0.5207378268241882, -0.006342282053083181, -0.3125993609428406, -0.15529663860797882, 0.12949416041374207, -1.3491697311401367, -0.6754097938537598, -0.06375851482152939, 0.5797572135925293, -0.05049595609307289, -0.10218393802642822, -0.2561062276363373, -1.475102186203003, -0.4757612943649292, -0.03125256672501564, -1.3841638565063477, -0.2354561984539032, -0.5118942856788635, 0.8524957299232483, 0.6853434443473816, 0.11148573458194733, -0.16142183542251587, 0.6538130044937134, -1.4890739917755127, -0.4698450267314911, -0.15240883827209473, 0.1858101785182953, 0.4593568742275238, 0.6549222469329834, -1.2492588758468628, 1.46169114112854, 0.6970295310020447, -0.10430856049060822, -0.016131293028593063, -0.17647019028663635, -0.3493719696998596, -0.314985454082489, 0.9479802250862122, 0.19142307341098785, 0.42328256368637085, 0.7814844250679016, 0.23117443919181824, 0.7108777165412903, 0.3805773854255676, 1.081787347793579, -1.203076958656311, -0.9404045343399048, -0.42464929819107056, 0.39655840396881104, -0.8945383429527283, -0.626814067363739, -0.30789220333099365, -0.4982600510120392, -0.20757748186588287, 0.23686224222183228, 0.6366410255432129, -1.2171657085418701, 0.08995842933654785, -0.6517255902290344, 0.39706623554229736, -0.8135122656822205, 0.5450487732887268, 0.4975011348724365, -1.3151673078536987, 0.14493897557258606, 0.34186702966690063, 0.3273337781429291, -1.3267239332199097, -0.25798022747039795, -0.1350814700126648, 0.291176974773407, -0.48120397329330444, 0.4930216670036316, 0.39604806900024414, 0.38608431816101074, -0.2937229573726654, 1.2730199098587036, 1.0801337957382202, 0.13045193254947662, -0.31069475412368774, 0.5707135200500488, -0.46761375665664673, 0.3563702702522278, -0.12389545142650604, 0.38450658321380615, -0.38289541006088257, 1.0122379064559937, 0.21658967435359955, 0.26207125186920166, -0.3236078917980194, 0.24836452305316925, -0.3693268895149231, 0.06653143465518951, 0.5999838709831238, -0.6834617853164673, -0.4040021300315857, 0.47950050234794617, 0.7492506504058838, -0.2765651047229767, -0.244053915143013, -0.13801972568035126, 0.5232362747192383, -0.10222692042589188, 0.3910113275051117, 0.3886050283908844, -0.16386425495147705, 0.09896217286586761, 0.9655537605285645, -0.3180219829082489, -0.35695725679397583, -0.19215397536754608, -1.4746640920639038, 0.018978828564286232, -0.5558215975761414, -0.24908900260925293, 0.36162060499191284, -0.9485746026039124, -0.6328722238540649, -0.19933265447616577, -0.24473488330841064, 0.3017418682575226, -0.7387725710868835, 0.20390787720680237, 0.007705984637141228, -0.1823708564043045, 0.6752809286117554, -0.7326675653457642, 0.7697107195854187, -0.6917986869812012, 0.034298282116651535, -0.6516261696815491, 0.4012249708175659, -0.035909246653318405, 0.3749435842037201, -0.32734885811805725, -0.5633912086486816, 0.030752448365092278, -0.3960244953632355, -0.2293747216463089, 0.47840940952301025, 0.7295539379119873, -0.04979148134589195, 0.7656174302101135, -0.7690362334251404, -0.5390255451202393, 0.3102305233478546, 0.7761883735656738, -0.37363988161087036, -0.4240533411502838, -0.7530390024185181, 0.5502291917800903, 0.04698440432548523, 1.3844380378723145, -0.9649777412414551, 0.15643201768398285, -0.10184285789728165, 0.04244295507669449, 0.000504232244566083, -0.6056462526321411, 0.555650532245636, -0.3764986991882324, 0.35506540536880493, 0.09692861884832382, -0.37101781368255615, -0.4551047682762146, -0.6512395143508911, -0.26553234457969666, 0.36614298820495605, -0.4382425546646118, 0.6659207940101624, -0.9429123997688293, -0.6722255945205688, -0.16617250442504883, 0.21363693475723267, -0.6117614507675171, 0.1925770342350006, 0.3031248450279236, -0.18510016798973083, -0.2799486517906189, 0.004167613107711077, 0.468740850687027, -0.4285370707511902, -0.10697269439697266, 1.117249608039856, 1.1362162828445435, 0.16832242906093597, -0.478011816740036, -0.26431870460510254, 1.047026515007019, -1.198576807975769, 0.13500948250293732, -0.9018951058387756, -0.7559676170349121, -0.10781159996986389], [-0.39694976806640625, 1.090183138847351, -1.4066890478134155, -1.1148264408111572, -0.47423234581947327, 0.4856611490249634, 1.6838023662567139, 0.6603217720985413, 0.2953663170337677, -0.31943488121032715, -0.2240762561559677, 0.6972107887268066, 1.4102883338928223, 0.9461860656738281, 0.27948302030563354, -0.0693749412894249, 0.383198618888855, 0.7541815042495728, 0.6331110000610352, -0.2945845127105713, -1.0455254316329956, -0.42872169613838196, 0.10567206144332886, 0.3865562975406647, 0.5292056202888489, 0.6849457025527954, -1.1356722116470337, -0.4291585087776184, -1.8512885570526123, -0.8884330987930298, 0.6940662860870361, -1.0801299810409546, 0.07916732132434845, 0.26765769720077515, -0.042718276381492615, -0.3624902367591858, 1.7967908382415771, 0.374753475189209, 0.759194016456604, 0.30729231238365173, 2.6090569496154785, 0.03666824847459793, 0.04491455852985382, -1.1409307718276978, -0.8512347340583801, -0.016205545514822006, 0.17628324031829834, -1.6066268682479858, 0.1735917031764984, 0.2542645335197449, 0.6791911125183105, 0.7209205031394958, 0.5685153007507324, 1.2241333723068237, -0.1548507809638977, -0.9776166081428528, 0.5019965767860413, 0.2843027114868164, 0.9105278253555298, -0.08914065361022949, 0.3952701687812805, -0.3235118091106415, -0.15845122933387756, 1.6128029823303223, 0.33396244049072266, -0.2577882409095764, -0.057232510298490524, -0.247924342751503, 0.40025269985198975, -0.4354606866836548, 0.025768447667360306, 0.02966429851949215, 0.09252007305622101, 0.5929543375968933, -1.1098498106002808, 0.6124457716941833, 0.5985241532325745, -0.3788522779941559, -0.44985246658325195, 0.9978538155555725, -0.6368800401687622, -0.31922999024391174, 0.6874637603759766, -0.23359890282154083, 0.8610819578170776, 1.0657014846801758, 0.005349092185497284, 0.652769923210144, -0.2741072475910187, 1.647155523300171, -0.04311066120862961, 0.41515272855758667, -0.0021348893642425537, 0.20963092148303986, -0.05000254511833191, -0.7389814257621765, -0.5221012830734253, -0.8106756210327148, -0.9231913685798645, -0.8716508150100708, -0.6579275727272034, -0.6790211796760559, 0.6821976900100708, 0.08134479075670242, 1.1199536323547363, 1.0317142009735107, 0.05301903560757637, -0.20050351321697235, -0.7606571912765503, -0.16897407174110413, -0.3723706603050232, -0.23618054389953613, -0.6356344223022461, -0.5905603766441345, -0.44953811168670654, 0.34792521595954895, 0.4895799458026886, -0.16298148036003113, 0.10981863737106323, 0.8882145881652832, -0.7987903356552124, -0.23158963024616241, -0.6358280777931213, 0.5510768890380859, 0.395700603723526, 0.5880473852157593, -0.003049788996577263, -0.19053369760513306, 1.3437669277191162, 0.6175557971000671, -0.12623853981494904, -0.4671078622341156, 0.6963537931442261, 1.4914973974227905, -0.46231138706207275, 0.6205940246582031, 0.4333188235759735, -2.0233068466186523, -0.46139395236968994, 0.2631904184818268, 0.7585200071334839, -0.5522411465644836, -0.6163248419761658, -0.6691105961799622, -0.3071939945220947, -0.8048445582389832, 1.1489263772964478, 0.4487757384777069, -0.6443384289741516, 0.18542329967021942, -0.9861330986022949, 0.29547369480133057, 0.22914350032806396, 1.0037381649017334, -0.22019705176353455, -0.5316094160079956, 0.15428999066352844, 0.17778652906417847, 0.24768364429473877, 0.8764947056770325, 1.025538682937622, -0.035772159695625305, -1.076111912727356, 0.8834315538406372, -0.07808344811201096, -0.9195353984832764, 0.12240973114967346, 0.6408451795578003, 0.24559247493743896, 0.1297142207622528, -0.2725996971130371, -0.20021384954452515, -0.464782178401947, 0.04032697156071663, 0.638279914855957, -0.683861255645752, 0.9552501440048218, -0.6508235931396484, -0.9457811117172241, -1.6735680103302002, 0.5231411457061768, -0.17262372374534607, 0.15515130758285522, -0.3563116788864136, 1.2357842922210693, -0.8034521341323853, 0.0650535300374031, -0.4878609776496887, -0.8317248225212097, -1.0459396839141846, -0.86786288022995, 0.3505702316761017, -0.6927043795585632, -0.05582860857248306, -0.337060809135437, -0.2057081013917923, 0.4323188066482544, -0.6724497675895691, -1.0355088710784912, 0.6313415765762329, 0.4055660367012024, -0.35904669761657715, -1.9636980295181274, 0.29425475001335144, -0.7181505560874939, 0.4304244816303253, -1.288620948791504, 0.5845532417297363, -0.8122532367706299, 0.4921649396419525, 0.1620752513408661, 0.7176516652107239, -1.1944866180419922, 1.0741480588912964, -0.19166551530361176, -0.8618881702423096, 0.19545584917068481, 0.0825527235865593, -0.2655312120914459, 0.4447213113307953, 0.10243848711252213, 0.3955373764038086, 0.8217796087265015, -0.15216930210590363, 0.4998432993888855, 0.3741939067840576, -0.8359560966491699, -1.057632565498352, -0.8805030584335327, 0.24530112743377686, -0.6852155327796936, -0.6156649589538574, 0.5873007774353027, 0.5101587772369385, -0.6452995538711548, 0.4635840058326721, 0.6122236847877502, -0.34368276596069336, 0.48667511343955994, 0.021951019763946533, 0.27303996682167053, 0.654794454574585, -0.35405516624450684, -1.119249939918518, -0.34528738260269165, 0.32815906405448914, 1.1040585041046143, -0.15577442944049835, 0.8225297331809998, 1.5959372520446777, 1.211995005607605, 0.3394280970096588, 0.23860979080200195, -0.3749399185180664, -0.06581266224384308, -0.47254589200019836, -0.10417945683002472, -0.19370168447494507, -0.9263553023338318, 1.1145696640014648, 1.3497755527496338, -1.6214250326156616, -0.12358202040195465, 0.6382176876068115, 0.3200012445449829, -0.12603138387203217, -0.21065804362297058, -0.03905046731233597, 0.7516062259674072, 0.1686539202928543, 0.004116617143154144, 0.8964183330535889, -0.13430267572402954, -0.09003227949142456, -0.2564498782157898, -0.21990157663822174, -0.20538650453090668, 0.19440370798110962, -0.48387497663497925, 1.0796847343444824, 0.835963785648346, -0.9242583513259888, -0.7948390245437622, -0.4109601378440857, 0.8375402688980103, 0.35904356837272644, 0.26381590962409973, 1.138634204864502, 0.04503548517823219, -0.02951081469655037, -0.2393510937690735, 0.43157055974006653, -0.5796985626220703, 0.23417997360229492, -0.35770657658576965, -0.5324957966804504, 0.7657889127731323, -1.1234122514724731, -0.6895895004272461, 0.5386428833007812, 0.16424661874771118, 0.19119347631931305, 0.9870156049728394, 1.0471082925796509, -0.4680495262145996, 0.6094866991043091, -0.6765204668045044, -0.1856870800256729, -0.8800779581069946, -0.4507497549057007, -0.6792665123939514, -0.7870817184448242, 0.030547983944416046, 0.1575259566307068, 0.8606754541397095, 0.40825366973876953, -0.5384663343429565, 0.7585575580596924, 1.1138205528259277, 0.40677258372306824, -0.08602676540613174, 0.7314001321792603, -0.22731256484985352, -0.3008718192577362, 0.9867070913314819, 0.9851028323173523, -1.515891432762146, -0.035007819533348083, -0.2904879152774811, 0.39307987689971924, 0.5838148593902588, -0.36394059658050537, 0.39667391777038574, -0.5814648270606995, -0.42249593138694763, 0.8631620407104492, 1.2252583503723145, 0.07604478299617767, -0.6889864206314087, -1.1077778339385986, 0.5014838576316833, 0.8635789155960083, 0.5658591985702515, -1.1607396602630615, 1.0917384624481201, -0.5090558528900146, -0.27066922187805176, -0.8822126388549805, -0.12711843848228455, 1.1248996257781982, -0.3555483818054199, -0.04138056933879852, 0.6464059352874756, 0.024469105526804924, -0.8818192481994629, -0.2498757392168045, 0.0893961638212204, 0.5866762399673462, 0.3353419303894043, 0.3087008595466614, 1.43965482711792, -1.3866294622421265, -0.4964701533317566, -2.27744722366333, 1.0163354873657227, 0.4745846390724182, 1.9050889015197754, 0.28408196568489075, 1.0807318687438965, 0.2995498776435852, -0.6766815781593323, 0.3707963228225708, 0.3869333565235138, 0.5819233655929565, 0.2451181411743164, -0.3681386709213257, -0.06817290186882019, -0.623079240322113, -0.6672568321228027, -0.6819124221801758, -0.35562780499458313, 0.8409692049026489, -0.5390113592147827, -0.19858190417289734, -0.034999437630176544, 1.0091536045074463, -0.8090294599533081, -0.34208229184150696, -0.1566115915775299, 0.3319944143295288, -0.21142613887786865, -0.669054388999939, -0.42050039768218994, -0.21735253930091858, -0.3371177911758423, -1.446955919265747, 0.17722150683403015, 0.10539611428976059, -0.6230615973472595, 0.9047880172729492, -1.7883379459381104, -0.2803260087966919, -0.3349234163761139, -0.15652954578399658, 0.21254156529903412, 0.2712392508983612, -0.4461674988269806, 0.11846934258937836, -0.029522359371185303, 0.0008793696761131287, -0.018055692315101624, 1.0429608821868896, 0.4450136423110962, 0.10706869512796402, -0.19927489757537842, 0.2778615951538086, 0.4181765913963318, 0.1352938413619995, -0.46195143461227417, 1.1147809028625488, -1.0915418863296509, 0.03171338513493538, -0.043197955936193466, 0.49723970890045166, 2.5621094703674316, 0.597293496131897, 0.8131064772605896, 0.7532631158828735, -0.40213534235954285, -0.7005947828292847, 0.33557891845703125, -0.2584962844848633, -0.17806877195835114, -0.9821483492851257, 0.28520846366882324, 0.1176348328590393, -0.8897030353546143, 0.4930649399757385, 0.41334861516952515, -0.41096943616867065, -0.021627487614750862, -0.03007066622376442, 0.8205183744430542, 0.6359627842903137, 1.0578243732452393, 0.07941346615552902, 0.657974123954773, -0.5775254964828491, -0.9128464460372925, 1.1474565267562866, -0.5984230041503906, -0.10028297454118729, 1.0447572469711304, 0.5547902584075928, 0.3727600574493408, -1.1465225219726562, -1.358873963356018, 0.7267855405807495, -0.1933126449584961, 0.7959438562393188, -0.13670793175697327, 1.713947057723999, -0.4140872061252594, -0.24402214586734772, 0.34389111399650574, -0.044728152453899384, 1.308756709098816, -0.3607003688812256, -0.33749693632125854, -0.18287095427513123, -0.15631748735904694, -0.14443111419677734, -0.44804930686950684, -0.7240895628929138, 0.27676740288734436, -0.8862314224243164, 0.6172189712524414, 0.39649033546447754, 0.2664543688297272, 0.3547822833061218, -0.12416326254606247, -1.6980862617492676, 0.8661341071128845, -0.7120720744132996, -0.1446334719657898, -0.197500541806221, -0.6877183318138123, -0.2484644651412964, -0.7562081813812256, -0.6645675897598267, -0.07147139310836792, -1.129842758178711, -0.5611212849617004, 0.6434003710746765, -0.8651555776596069, 0.054693736135959625, 0.719996452331543, 1.8118431568145752, 0.9167287349700928, -0.18860995769500732, 0.056979112327098846, 0.6607381105422974, -0.8951947689056396, 0.14002221822738647, 0.6913689374923706, -0.5035663843154907, -0.8216146230697632, -1.1464251279830933, -0.8729740381240845, 2.4269323348999023, 0.7418230175971985, -0.413409948348999, 0.7895970344543457, 0.30133718252182007, 1.523914098739624, -0.255533903837204, -1.3513950109481812, 0.6573372483253479, 0.5099221467971802, 0.3202028274536133, 0.5399588942527771, -0.5855796337127686, -0.7880700826644897, -0.7260520458221436, -1.19307279586792, 2.0897650718688965, 0.4005292057991028, -0.9802701473236084, 0.3961483836174011, 1.0559228658676147, -0.15836943686008453, 0.2760388255119324, -1.0481587648391724, 0.19819492101669312, 0.4352215826511383, -0.6918942332267761, -1.170555830001831, 0.5944353342056274, 0.059523697942495346, 0.7140683531761169, -0.46709707379341125, 0.34856659173965454, -0.42479127645492554, -0.3916410803794861, -0.27940189838409424, 0.5538589954376221, 0.4429923892021179, -0.1537596583366394, 0.1868269443511963, -0.1355077177286148, -0.7473037242889404, -0.7132312059402466, 0.3834317624568939, -0.061948105692863464, 0.6166188716888428, 0.5086967349052429, -1.4286863803863525, -0.21784725785255432, -0.07523978501558304, 0.14551138877868652, -0.7359774708747864, -1.034881830215454, 0.9557297229766846, 0.7079870700836182, -0.7046868801116943, 0.4945576786994934, -0.19235725700855255, -0.48830974102020264, 0.004555901512503624, -1.2040296792984009, 0.3157418966293335, -2.0817158222198486, -0.02430690824985504, -0.9283907413482666, 0.3206397593021393, 0.5711419582366943, -0.03941863030195236, 0.1460830271244049, -0.13177959620952606, -1.2492358684539795, -0.8815586566925049, 0.4185560345649719, 0.4848950207233429, -1.4708317518234253, -0.23293623328208923, 0.05805998295545578, -1.3687124252319336, 0.3083932399749756, 0.36352288722991943, -1.1307075023651123, -0.10853379964828491, -1.2957744598388672, 0.32162684202194214, 0.6209379434585571, 0.4370153546333313, -0.20015917718410492, 0.8088477849960327, -0.4611430764198303, -0.7135999202728271, 0.053815703839063644, 0.4935743808746338, 1.1729350090026855, 0.7346552014350891, -0.42632946372032166, 1.5221891403198242, -0.11901218444108963, -0.8424748778343201, -0.1445024013519287, 0.5022905468940735, -0.8571555614471436, 0.3491678833961487, 0.8653426170349121, -0.14873239398002625, 1.1546630859375, 1.0231478214263916, 0.8403071165084839, 1.1120686531066895, 0.590329647064209, -0.10524561256170273, -0.6748861074447632, -0.3325136601924896, -0.8131656646728516, -0.10599435120820999, -1.0640649795532227, -0.32999539375305176, -0.052016958594322205, -1.0917260646820068, -0.629845917224884, 0.9709183573722839, 0.7787643671035767, -0.8817351460456848, -0.1142040565609932, -1.1005109548568726, 0.23750804364681244, -0.31936585903167725, 0.5654132962226868, 0.1484246551990509, -0.15624016523361206, 0.4636664390563965, -0.24211840331554413, -0.10200726985931396, -0.6555699110031128, -0.10933239012956619, -0.4392857253551483, 0.17455366253852844, -0.4741310775279999, 0.24498337507247925, 0.2074064016342163, -0.92171311378479, -0.6119421720504761, 1.8680596351623535, 0.6460480093955994, -0.12856963276863098, -0.07009201496839523, -0.6834397315979004, -0.35653746128082275, 0.5597814321517944, -0.25380975008010864, 0.970064640045166, -0.48641932010650635, 0.4760226011276245, 0.44301337003707886, -0.1951330006122589, -0.7158623933792114, -0.052511684596538544, -0.764683187007904, 0.5470755100250244, 1.3277664184570312, 0.13458478450775146, -0.32893064618110657, 1.5437288284301758, 0.7911679744720459, -0.21674737334251404, 0.763874888420105, 0.0478367805480957, -0.04281843826174736, 0.3114568591117859, 0.4484010338783264, 0.7580803632736206, -0.6149110794067383, 0.7179638147354126, 0.4416951537132263, 0.05431355908513069, 1.1252596378326416, -1.1885496377944946, -1.9449293613433838, -0.06627769023180008, -0.5141580104827881, -0.06513851881027222, 0.9141773581504822, -0.390636146068573, -0.21293790638446808, 0.21241195499897003, 0.5405974388122559, 0.06477827578783035, -0.5214090347290039, -0.5983464121818542, -0.4519045650959015, 0.2085629552602768, 0.39657062292099, -0.5265098810195923, 0.9622718691825867, -0.44509053230285645, -0.242702454328537, -0.7492250204086304, -0.22253841161727905, -0.05735396593809128, 0.6181912422180176, 0.8155807256698608, 0.09557449072599411, -0.33934125304222107, -1.0024017095565796, -0.012764312326908112, 0.050741687417030334, -1.1451300382614136, -0.19347436726093292, -0.4683295488357544, -1.6307260990142822, 0.3511705994606018, 0.7263811826705933, -0.24318549036979675, -0.2729138135910034, -0.8678035736083984, -0.9496639966964722, 0.6853393912315369, 0.3120933175086975, 0.7140762805938721, -1.3045861721038818, 0.4859899878501892, 0.06429336965084076, -0.7212477922439575, -0.6576929092407227, -0.7917052507400513, 0.662177324295044, -0.31828659772872925, 0.4328193962574005, -0.08091180771589279, -0.10357822477817535, 0.5104860067367554, -1.0293211936950684, 0.3087542653083801, -0.25164929032325745, 0.09311601519584656, -0.12101094424724579, -1.267773151397705, -0.32186469435691833, -0.05005042254924774, -0.050435908138751984, 0.6246017813682556, 0.44327935576438904, 0.11777499318122864, 0.26230788230895996, -0.7447754740715027, 0.06427295506000519, 0.523919939994812, -0.10142611712217331, 0.4217519760131836, 1.295865535736084, 1.5596275329589844, -0.11017350852489471, -0.2270057201385498, 0.028780154883861542, 0.7239811420440674, -1.2564254999160767, -0.19860245287418365, -1.6662418842315674, -0.8117200136184692, -1.1727043390274048], [-0.4370487928390503, 1.5874011516571045, -2.5767321586608887, -0.791496992111206, -0.1473293900489807, 0.17986764013767242, 1.4439969062805176, 0.4913526177406311, 0.369948148727417, -0.3087076246738434, -1.4939119815826416, 0.27662941813468933, 1.559338927268982, 0.8457896113395691, 0.600634753704071, -0.43770644068717957, -0.014074372127652168, -0.24024352431297302, 1.617178201675415, 1.2585041522979736, -1.1557809114456177, -0.3505581021308899, -0.5832545757293701, 0.04061124473810196, 0.46977129578590393, -0.9172930121421814, -1.3325906991958618, -0.7053202390670776, -1.6813987493515015, -0.9749122858047485, 0.8914746046066284, -0.7273484468460083, 0.024767128750681877, -0.34330928325653076, -1.0623385906219482, 0.10798174142837524, 1.4536256790161133, 0.5069915652275085, 0.8412377238273621, 0.6603624820709229, 2.8052778244018555, 0.3548237383365631, -0.1670622080564499, -1.1797356605529785, -0.5855389833450317, 0.19877471029758453, 0.053528349846601486, -1.0518428087234497, 0.30982962250709534, -0.18599680066108704, 0.8004198670387268, -0.47462034225463867, 1.079483151435852, 0.5599892139434814, 0.11144372820854187, 0.17993682622909546, 0.7502492666244507, -0.20289550721645355, 0.22376258671283722, 0.1639927625656128, 0.3215610086917877, 0.6154927611351013, -0.17006926238536835, 1.0896837711334229, 0.10702546685934067, -0.36417099833488464, -0.0028034148272126913, 0.48100388050079346, 0.5171621441841125, -0.6599410772323608, 0.693748414516449, 0.006746105384081602, 0.03226771578192711, -0.019797898828983307, -0.9490869641304016, 0.5040104985237122, 0.24091671407222748, 0.29677045345306396, 0.23560181260108948, 1.2511779069900513, -0.7620688676834106, -0.3320055902004242, 0.5749853849411011, 0.597050666809082, 1.2031402587890625, 0.7703918218612671, 0.4102427065372467, 0.008612471632659435, -0.4242013990879059, 1.7043888568878174, 0.010123763233423233, 0.1417171061038971, 0.38492053747177124, -0.5793431997299194, -0.2550326883792877, -0.38319146633148193, -0.08188822865486145, -0.8134838938713074, 0.21080662310123444, -0.8155153393745422, -0.4561613202095032, -1.436761736869812, 0.19408825039863586, 0.015775166451931, 0.4381142258644104, 1.2225146293640137, -0.3223588168621063, 0.036530524492263794, -0.6779576539993286, -0.5294266939163208, 0.043688636273145676, 0.09584123641252518, -0.6263900995254517, -0.9713443517684937, -1.00991952419281, 0.9343386888504028, 0.38541844487190247, -0.2180371731519699, 0.21366597712039948, 0.36631283164024353, -1.169614553451538, -0.5094364285469055, -0.09337493032217026, 0.6281187534332275, 0.07254292815923691, 0.3220008313655853, -0.23435604572296143, -0.2181144654750824, 0.7408252358436584, 0.4153141379356384, -0.019741958007216454, -0.18175750970840454, 0.5565316081047058, 0.8605382442474365, -0.4670732319355011, 1.0102614164352417, 0.20984473824501038, -1.686747431755066, -0.5945625901222229, 0.11038213223218918, 0.49805551767349243, -0.3349520266056061, -0.3976958096027374, -0.6239234805107117, 0.08751019090414047, -0.9233133792877197, 0.7783710360527039, -0.1908458024263382, -0.4550268352031708, -0.3660193681716919, -1.328115463256836, 0.4365673363208771, 0.02517510950565338, 1.2080985307693481, 0.06380227953195572, -0.7645118236541748, 0.29577869176864624, 0.13101939857006073, 0.04789808392524719, 0.9704282283782959, 0.5384578108787537, -0.14329932630062103, -0.574612021446228, 0.9866799116134644, -0.09541603177785873, -1.053178071975708, 0.5054467916488647, 1.1232373714447021, 0.03740210086107254, 0.791858434677124, 0.19214916229248047, 0.263626366853714, -0.49854546785354614, -0.06423953920602798, 0.5852534174919128, -1.7437238693237305, 0.9680420160293579, -0.7389258742332458, -0.9943974614143372, -1.1583666801452637, 0.3660041093826294, -0.5884174704551697, 0.03800337016582489, -0.05825285241007805, 1.0284353494644165, -0.18280085921287537, -0.20795433223247528, -0.7503682971000671, 0.24229036271572113, -1.1111174821853638, -0.8224233984947205, 0.21725162863731384, -1.2677638530731201, -0.4558773636817932, -0.470187246799469, -0.9326748847961426, 0.5163123607635498, -0.47176656126976013, -1.5603145360946655, 0.500443160533905, -0.5542135238647461, -0.6072036027908325, -1.6662770509719849, 0.2910149097442627, -1.041414737701416, 0.447472482919693, -1.2558375597000122, 0.1919281780719757, -0.7870426177978516, 0.6301698088645935, 0.29623427987098694, 0.04906606301665306, -1.4666526317596436, 0.9857835173606873, -0.08619336783885956, -0.6556929349899292, 0.35391366481781006, 0.08666212111711502, -0.39588961005210876, 0.44208571314811707, -0.12704600393772125, 1.1069964170455933, 0.5332581996917725, 0.39722970128059387, 0.5051307678222656, -0.17059952020645142, -0.16358649730682373, -0.2930934727191925, -0.5419816970825195, 0.19731369614601135, -0.8978227972984314, -0.29015713930130005, 0.9844204187393188, 0.4667466878890991, -1.332737684249878, 0.4363630414009094, 0.6797459125518799, -0.05362908914685249, 0.7953674793243408, 0.5251379609107971, 0.04313525930047035, 0.6159206032752991, -0.18764136731624603, -0.9122281074523926, -0.3810734450817108, 0.6699206829071045, 0.7829745411872864, -0.726897656917572, 0.3462497889995575, 1.2631736993789673, 0.084839828312397, 0.4690488576889038, 0.5592196583747864, -0.701831042766571, -0.5230119824409485, -0.40484189987182617, -0.3230888843536377, 0.23353813588619232, -0.5333285331726074, 1.7341128587722778, 1.1475789546966553, -0.8854556679725647, -0.3458508253097534, -0.1452772319316864, -0.05233302339911461, -0.5614906549453735, -0.3875328004360199, -0.011486900970339775, 0.514484703540802, -0.2726108133792877, -0.1647208333015442, 0.4583830237388611, -0.35833486914634705, 0.3553146719932556, -0.5013052821159363, -0.3513018786907196, -0.5594649314880371, 0.36447227001190186, 0.01788119226694107, 1.5866273641586304, 0.4231027066707611, -0.9188446998596191, -0.5839605927467346, -0.4683210849761963, 0.8303530216217041, 0.9123458862304688, 0.44272515177726746, 0.7441003322601318, 0.1926286518573761, 0.05984252691268921, 0.41720932722091675, 1.1008204221725464, -0.9679220914840698, 0.37220802903175354, -0.020692670717835426, 0.1371280401945114, 0.7389541268348694, -0.5221402049064636, -1.3309310674667358, -0.22107072174549103, 0.6654825210571289, 0.5697850584983826, 0.9183706641197205, 1.2335416078567505, -0.002475516404956579, -0.3168407380580902, -0.03882654011249542, -0.3027915060520172, -0.5784849524497986, -0.5609763860702515, -0.6827258467674255, -0.7308980226516724, 0.12550948560237885, 0.3106819689273834, 0.003644367214292288, 0.646087110042572, -0.05030323192477226, 1.3706495761871338, 0.8692483901977539, -0.28591081500053406, -0.5776767134666443, 0.06626543402671814, 0.11770046502351761, -0.13061131536960602, 0.29884210228919983, 0.3867122232913971, -1.9336026906967163, -0.5948675274848938, 0.39269763231277466, -0.05363841727375984, 0.6051045060157776, -0.06364890933036804, 0.28196099400520325, -0.7346796989440918, -1.0171804428100586, 0.5112268924713135, 1.065491795539856, 0.13971030712127686, -0.7281727194786072, -0.826076090335846, 1.0592800378799438, 1.4334237575531006, 0.6911522150039673, -0.9461848735809326, 0.76978999376297, -0.38090527057647705, 0.2088320255279541, -0.5268071889877319, -0.02723768725991249, 0.6848913431167603, -0.11490502208471298, -0.14988704025745392, 0.5939295291900635, -0.16653364896774292, -0.009614020586013794, 0.4601505696773529, 0.5760746002197266, 0.7318426966667175, 0.13097649812698364, 0.17018269002437592, 1.3103262186050415, 0.0030454311054199934, -0.30038776993751526, -1.8788660764694214, 1.2618862390518188, 0.4771537482738495, 1.3514233827590942, -0.14707200229167938, 0.785269558429718, 0.5456264615058899, -0.7708790302276611, 0.2874092161655426, 0.4055764079093933, 0.9451785683631897, 0.5063685178756714, -0.6068093180656433, -0.584373414516449, 0.07520978152751923, -0.26590999960899353, -0.7210097908973694, -0.473269522190094, -0.004881085362285376, -0.9583609104156494, -0.5886712074279785, 0.7849992513656616, 0.7722470164299011, -0.8548648357391357, -0.21307246387004852, 0.5966101288795471, 0.5636575818061829, 0.1978161334991455, -0.25233376026153564, -0.8884092569351196, 0.048872508108615875, -0.05523604527115822, -1.4201488494873047, 0.1159314289689064, 0.21272511780261993, 0.40376320481300354, 0.5914812684059143, -1.5644354820251465, -0.2506399154663086, 0.3727853298187256, 0.2676825523376465, 0.6731663346290588, 0.9241135716438293, 0.005010113585740328, -0.2583182752132416, 0.600869357585907, -0.6075356006622314, 0.06074976548552513, 0.949177086353302, 0.42503514885902405, 0.4324437379837036, -0.0049750665202736855, 1.0410352945327759, 0.35931187868118286, 0.3535436689853668, -0.5524027943611145, 0.42301440238952637, -0.47707048058509827, 0.24105152487754822, 0.13051903247833252, 0.2642419934272766, 2.282350540161133, 0.08456256985664368, 0.6781291961669922, 1.2685149908065796, -0.5647340416908264, -1.4431275129318237, 0.6840652823448181, -0.07331186532974243, 0.36354541778564453, -0.6075826287269592, 0.6515876650810242, 0.16205726563930511, -0.6222079992294312, 0.2683967351913452, 0.8740497827529907, 0.8470026850700378, 0.2303488552570343, 0.21685576438903809, 0.32007142901420593, 0.6243957281112671, 0.9288405776023865, 0.5074909925460815, 0.1961873471736908, 0.0238431878387928, -0.861173152923584, 0.7203328609466553, -0.781176745891571, -0.5093115568161011, 0.6157081723213196, 0.32114091515541077, 1.004520297050476, -1.622454047203064, -0.7145832180976868, 0.7057704329490662, 0.6186574697494507, 0.4687280058860779, 0.5571122169494629, 1.664150595664978, -0.5338351726531982, 0.03212757781147957, 0.8304558396339417, -0.4024082124233246, 0.8084427118301392, 0.2694522738456726, -0.4498879909515381, 0.27691689133644104, -0.3092992603778839, -0.13514423370361328, -0.37819814682006836, -0.4509001076221466, -0.5486191511154175, -0.3791164457798004, 0.2624356746673584, 0.2524884343147278, 0.25187841057777405, 0.69526606798172, -0.4091950058937073, -0.7095322608947754, 0.5241432785987854, -0.6770216822624207, 0.1758926510810852, -0.27295053005218506, -0.7930456399917603, -0.2478930652141571, -0.5870323181152344, -0.43623510003089905, 0.3742905557155609, -1.2288120985031128, -0.6701809167861938, 0.04370187222957611, -1.1306341886520386, -0.16752199828624725, 0.47794681787490845, 1.7536283731460571, 1.346807599067688, 0.1716310977935791, -0.33494359254837036, 0.3397034704685211, -0.9598433971405029, -0.5438152551651001, 1.0780985355377197, -0.708347499370575, -0.47843289375305176, -1.326852560043335, -0.5947514772415161, 1.6257587671279907, 0.35866400599479675, 0.14511939883232117, 0.6940075755119324, 0.5436326861381531, 1.4731166362762451, -0.4160464406013489, -1.3418132066726685, 0.5687869191169739, -0.22477149963378906, 0.6890491247177124, 0.8905265927314758, -0.730390727519989, -1.1892896890640259, 0.05267605930566788, -1.479127287864685, 1.4927924871444702, 0.4610324501991272, -0.9721964001655579, 1.1087194681167603, 0.5283843874931335, 0.10489190369844437, 0.4324071407318115, -0.7683115601539612, 0.4347453713417053, 0.7683017253875732, -0.4388256371021271, -0.5741335153579712, 0.6664924621582031, -0.18274758756160736, 0.28717169165611267, -0.377830445766449, 0.7806128859519958, -0.2480994611978531, -0.3018965423107147, -0.18537086248397827, 0.33432766795158386, 0.4245965778827667, 0.5230181813240051, -0.2779175341129303, -0.4404526352882385, 0.10011415183544159, -0.8728299140930176, -0.32561731338500977, 0.04533353075385094, -0.04750186204910278, -0.09693465381860733, -1.7146899700164795, 0.17653141915798187, -0.4177548587322235, 0.21334385871887207, 0.012789526954293251, -0.720805287361145, 0.4077482521533966, 0.15229803323745728, -0.24201829731464386, 0.7173258066177368, -0.31590014696121216, -0.6024782061576843, -0.46330803632736206, -0.6343560814857483, 0.20057182013988495, -1.829897403717041, -0.18100954592227936, -1.0393922328948975, -0.14316152036190033, 0.30143672227859497, 0.27305614948272705, 0.1796780526638031, -0.6826131343841553, -1.3426117897033691, -1.3328649997711182, 0.037471529096364975, 0.40454769134521484, -1.1492862701416016, 0.19758862257003784, 0.34461721777915955, -0.892096757888794, 0.5775507092475891, 0.007325115613639355, -0.899994432926178, -0.10709503293037415, -1.6325633525848389, 0.5902206897735596, 0.1308521181344986, 0.18098510801792145, -0.26580744981765747, 0.7374642491340637, -0.6454735994338989, -0.2165195345878601, -1.5149410963058472, -0.06442733854055405, 1.4244961738586426, 1.050434947013855, -1.0746442079544067, 1.2159134149551392, -0.6627303957939148, -1.0599507093429565, 0.2407381534576416, 0.5931046605110168, -0.2918449342250824, -0.06517277657985687, 0.4266246259212494, -0.19406773149967194, 0.22244539856910706, 1.5719056129455566, -0.11192820966243744, 1.0818182229995728, 0.6506116390228271, -0.08098803460597992, -0.6886664628982544, -0.2254686951637268, 0.27822545170783997, 0.5106768012046814, -1.024328351020813, 0.06624174118041992, -0.2559199631214142, -1.1856354475021362, -0.45691630244255066, 0.28749561309814453, 0.5869805812835693, -1.1914682388305664, -0.026006203144788742, -0.8740776777267456, 0.4446137547492981, -1.2284083366394043, 0.20485836267471313, 0.17787589132785797, -0.022197598591446877, 0.014303544536232948, 0.004801933187991381, -0.38071510195732117, -0.6654024124145508, 0.563565194606781, -0.2251022756099701, 0.30388113856315613, -0.4891771078109741, 0.7714534997940063, 0.6371031999588013, -0.2303507775068283, -0.7125470042228699, 1.5355459451675415, 0.7685150504112244, -0.09157388657331467, -0.11535043269395828, -0.1841271072626114, -0.31417450308799744, 0.9490715265274048, -0.4174804091453552, 0.15695378184318542, -1.2076435089111328, 0.6309384107589722, 0.2719145715236664, -0.46011558175086975, -0.7800679206848145, 0.15206202864646912, -0.7967020869255066, -0.012189893051981926, 0.41750600934028625, -0.22582659125328064, -0.04443327710032463, 1.5138881206512451, 0.46657609939575195, 0.29053470492362976, 0.4789442718029022, -0.33778005838394165, 0.37590792775154114, 0.05400458350777626, 0.45952707529067993, 0.6373978853225708, -0.7482506632804871, 0.07864046096801758, 0.9052721261978149, -0.1856439858675003, 0.2789718210697174, -1.1818934679031372, -1.502480387687683, 0.030711015686392784, -0.923621416091919, -0.2452719360589981, 0.7128457427024841, -0.4446161687374115, -0.4390075206756592, 0.17098911106586456, 0.700303852558136, 0.3007659614086151, -0.5082190036773682, -0.4293808341026306, -0.304227352142334, -0.12175334990024567, 0.8990966081619263, -0.2503630220890045, 1.2709771394729614, -0.9922894239425659, 0.3367866277694702, -0.4249034821987152, -0.5021671652793884, 0.43361738324165344, 1.0161802768707275, -0.2917585074901581, -0.5473737120628357, 0.6623172760009766, -0.9347772598266602, -0.3073715567588806, 0.21643443405628204, -0.12548822164535522, 0.6652563214302063, -0.23183481395244598, -1.578354835510254, 0.10532200336456299, 0.8950180411338806, 0.251718670129776, -0.30855435132980347, -0.6231251358985901, -0.8434597849845886, 0.4329988956451416, -0.08512140810489655, 0.523565411567688, -0.5866948366165161, 0.469781756401062, 0.9281842112541199, -0.3859626352787018, -0.4980149567127228, -0.6943686604499817, 1.1290992498397827, -0.6882389783859253, 0.5546324849128723, -0.4276719093322754, -0.034433476626873016, 0.37747645378112793, -0.872350811958313, -0.47070637345314026, -0.14896723628044128, 0.08104565739631653, 0.024512486532330513, -0.760435163974762, -1.4768279790878296, -0.7341390252113342, -0.012629239819943905, -0.39498695731163025, 0.4569215476512909, 0.6248621940612793, -0.0008534053340554237, -0.5328137278556824, 0.21141964197158813, 0.3048057556152344, 0.16513659060001373, 0.09812339395284653, 1.9371851682662964, 1.5095466375350952, -0.20313973724842072, -0.07683316618204117, -0.2569541335105896, 0.7053112387657166, -0.9092100858688354, -0.20949137210845947, -1.227868676185608, -0.6591246128082275, -0.6383852958679199], [0.28986045718193054, 0.7123085260391235, -2.286497116088867, -0.26880744099617004, -0.6096882224082947, 0.43574339151382446, 0.36670318245887756, 0.7157012820243835, 0.6583956480026245, -0.9461596608161926, -0.6994540095329285, 0.14578711986541748, 1.302878737449646, 0.4070339798927307, 0.19811362028121948, -0.47666770219802856, 0.7939473986625671, 0.24852165579795837, 1.208371639251709, 0.9780315160751343, -0.9322576522827148, -1.6520954370498657, 0.11525256186723709, 0.25974172353744507, 0.17843331396579742, 0.4400566816329956, -1.0270047187805176, -0.3264703154563904, -2.140815496444702, -0.9725093245506287, 0.6365634799003601, -0.535602867603302, 0.2312767505645752, 0.3627243936061859, -0.8445634245872498, 0.05207379162311554, 1.37766432762146, 0.13732604682445526, 0.021866008639335632, 1.0204285383224487, 2.416801929473877, 0.40926775336265564, -0.7351089119911194, -0.8498775362968445, 0.493046373128891, -0.29682478308677673, 0.3695235252380371, -0.974698007106781, -0.5744034647941589, -0.16762076318264008, -0.037289414554834366, 0.5094299912452698, -0.24417154490947723, 1.5097568035125732, 0.5301083922386169, -0.6911095380783081, 0.339324951171875, -0.5189955234527588, 0.5082244873046875, 0.14701683819293976, 0.5006166696548462, 0.3105960488319397, 0.09548618644475937, 1.321117877960205, 0.18551456928253174, 0.5652274489402771, 0.17241480946540833, 0.8667894601821899, -0.12404920160770416, -0.6421347260475159, 1.065166711807251, 0.22302401065826416, -0.24534359574317932, 0.7468440532684326, -0.7125803232192993, 0.47357457876205444, 0.3452679216861725, 0.9013281464576721, -0.5849379897117615, 1.1905605792999268, -0.597124457359314, 0.29602885246276855, 0.5117281675338745, -0.1581670492887497, 0.3366284668445587, 0.14088377356529236, 0.5502694249153137, -0.34562408924102783, -0.6889449954032898, 1.2781482934951782, -0.24066628515720367, 0.17873771488666534, 0.14125975966453552, 0.10758301615715027, -0.2251192182302475, -0.4364270567893982, -0.5036576390266418, -0.46802425384521484, -0.044672541320323944, -0.6531463861465454, -0.7990322113037109, -1.37294602394104, 0.46740883588790894, 0.16274484992027283, 0.6186236143112183, 1.444784164428711, -0.169772669672966, -1.0894757509231567, 0.008034910075366497, 0.0486069954931736, -0.14210523664951324, -0.5986404418945312, -0.5032404065132141, -1.429895281791687, -0.7841207385063171, 0.3215666115283966, 0.6891022324562073, -0.5079105496406555, 0.9757845997810364, 0.5213464498519897, -0.5212778449058533, 0.18839038908481598, -0.5805730819702148, 0.5086157917976379, 0.48455512523651123, -0.06867896765470505, 0.10000431537628174, -0.29503166675567627, 0.534703254699707, 0.7704542875289917, -0.07075801491737366, -0.555283784866333, 0.5126272439956665, 1.9198036193847656, -0.45022645592689514, 0.3158555030822754, -0.18903912603855133, -1.4312865734100342, 0.12272959202528, 0.5156720280647278, 0.7956621050834656, -0.5619372725486755, 0.02190958708524704, -0.8411749005317688, -0.5475729703903198, -0.40803614258766174, 0.7362139821052551, -0.2607957124710083, -0.48180654644966125, -0.1415635049343109, -0.958832859992981, 0.23739546537399292, 0.2818916440010071, 0.3738834857940674, 0.2596520185470581, 0.07688688486814499, 0.9348286390304565, 0.26209756731987, 0.5394572615623474, 0.42168480157852173, 0.6631275415420532, -0.04572126641869545, -0.48645779490470886, 0.7492787837982178, 0.2550245523452759, -0.8256210684776306, -0.32595765590667725, 0.5566977858543396, -0.36684468388557434, 0.21712099015712738, -0.11603200435638428, -0.611992359161377, -0.8136857151985168, -0.1879020631313324, 0.18742914497852325, -1.2832826375961304, 1.3002692461013794, -0.32857808470726013, -0.8416218161582947, -1.3829429149627686, 1.612334966659546, -0.3687496483325958, -0.17496320605278015, -0.19903846085071564, 1.4728974103927612, -0.7535385489463806, -0.2047519087791443, -0.1051316037774086, -0.4746769070625305, -0.9234166145324707, -0.7875789999961853, -0.08238522708415985, -1.1815952062606812, -0.11517756432294846, -0.9882182478904724, -1.1889541149139404, 0.12280280888080597, -0.2287576049566269, -0.5306000113487244, -0.24464750289916992, 0.36590516567230225, -0.10371887683868408, -1.6305712461471558, 0.034623801708221436, -0.13522979617118835, 0.5881062150001526, -1.0088526010513306, 0.40932491421699524, -0.5777542591094971, 0.5554604530334473, 0.9735177755355835, -0.13559265434741974, -0.960868775844574, 0.7632785439491272, -0.33649519085884094, -0.8656811714172363, 0.41130930185317993, 0.11828678101301193, 0.429501473903656, -0.13711883127689362, 0.9023720622062683, 0.9491097927093506, 0.48536789417266846, 0.26650771498680115, 0.6628285050392151, 0.07968637347221375, -0.660343587398529, -0.8072307109832764, -0.3973097503185272, 0.2819978594779968, -0.8915864825248718, -0.9884994626045227, 0.5545442700386047, 0.3726080060005188, -0.9678217768669128, 0.9362309575080872, 0.34221187233924866, -0.22458216547966003, 0.247853621840477, 0.26918962597846985, 0.48766499757766724, 0.30432671308517456, -0.5602409839630127, -0.7137046456336975, -0.5778138041496277, 0.4226459860801697, 0.7493499517440796, -0.7538040280342102, 0.1823466569185257, 1.0917266607284546, 0.6572787761688232, -0.06891967356204987, 0.46064087748527527, 0.09783420711755753, -0.2366986870765686, -0.7422360777854919, -0.7176925539970398, -0.04014302417635918, -1.6828640699386597, 1.7272961139678955, 0.8052378296852112, -0.9817936420440674, -0.1395977884531021, -0.28432297706604004, -0.14641082286834717, -0.2680332660675049, -0.35277971625328064, -0.5470665693283081, 0.47129127383232117, -0.35743188858032227, 0.31659355759620667, 0.2727181017398834, -0.44001278281211853, 0.4125315546989441, -0.7945650219917297, -0.22541655600070953, 0.21857260167598724, 0.3170028328895569, 0.02495430037379265, 0.887859046459198, 0.45543143153190613, -0.8432567119598389, -0.6156577467918396, -0.49293574690818787, 1.046460509300232, -0.12980055809020996, -0.050402190536260605, 1.1994563341140747, 0.47938624024391174, -0.5948936343193054, -0.2950097322463989, 0.7711018919944763, -0.39434999227523804, -0.04120960459113121, 0.003245447762310505, -0.15646158158779144, 0.7597277760505676, -0.2338426560163498, -1.2354531288146973, -0.0019259881228208542, 0.4760305881500244, 0.5613908767700195, 1.177098035812378, 1.2343858480453491, -0.5825465321540833, -0.07795260101556778, 0.03320511430501938, -0.23045435547828674, -0.5087205171585083, -0.3950258493423462, -0.5000473260879517, -1.1414384841918945, -0.05629738047719002, -0.603333055973053, -0.096115343272686, 0.4412396252155304, 0.8921621441841125, 0.9293622374534607, 1.2437492609024048, -0.8456655740737915, -0.09385109692811966, 0.2868187725543976, -0.49283331632614136, -0.24326376616954803, 0.5000544786453247, 0.0061093345284461975, -1.0732626914978027, -0.7026934623718262, -0.17749013006687164, -0.08630825579166412, 0.9244689345359802, 0.03700510039925575, 0.5292693376541138, -1.1631879806518555, -1.198598861694336, 0.006082406733185053, 0.9324426651000977, 0.7012824416160583, -0.7367863059043884, -0.9348483085632324, 0.2572663426399231, 1.1820532083511353, 0.15408891439437866, -0.7561982274055481, 0.4498808681964874, -0.5703365206718445, -0.14795029163360596, -0.6913310289382935, 0.23660136759281158, 1.1968470811843872, -0.05775130167603493, -0.7037653923034668, 0.13647522032260895, -0.2962535321712494, -0.6939782500267029, -0.1229700967669487, -0.36387473344802856, 0.5953975915908813, 0.10005046427249908, 0.23757906258106232, 1.174670934677124, -1.0731441974639893, -0.35519784688949585, -1.949455976486206, 0.6805110573768616, 0.7494344711303711, 1.6174179315567017, 0.05815001204609871, 0.8967553973197937, 0.5716128945350647, -1.0347094535827637, -0.05886898189783096, 0.3014673590660095, 0.7975279092788696, 0.0609356127679348, -0.618644118309021, -0.2727477252483368, -0.658635139465332, -0.4984823167324066, -0.8036763072013855, -0.3704165518283844, 0.20880907773971558, -0.8138024806976318, -0.17663922905921936, 0.9466572403907776, 1.2262436151504517, -0.6977943181991577, -0.30488523840904236, -0.1256321370601654, 0.12485852837562561, 0.04086794704198837, -0.027081752195954323, -0.3743429481983185, -0.6891036629676819, 0.6400295495986938, -0.7701602578163147, 0.03723359853029251, 0.40743640065193176, -0.059030722826719284, 0.46043795347213745, -1.4199540615081787, 0.33511093258857727, -0.4962400794029236, 0.269931823015213, 0.7525478601455688, 0.046490419656038284, 0.25974249839782715, 0.4933004379272461, 0.4511614739894867, -0.19910338521003723, -0.24206750094890594, 1.4874720573425293, -0.008577506989240646, 0.03424433246254921, -0.49904850125312805, 0.22364924848079681, 0.6274279356002808, -0.08874411135911942, -0.9246491193771362, 0.8294346928596497, -0.39807388186454773, 0.6855056285858154, 0.6771873831748962, 0.4239034652709961, 1.7953749895095825, 0.2549557089805603, 0.15729789435863495, 0.6427227258682251, 0.21807147562503815, 0.11309998482465744, -0.388492614030838, 0.17419838905334473, -0.6376680135726929, -0.4142225980758667, 0.2007588893175125, 0.4058276414871216, -0.4412630498409271, 0.3041677176952362, 0.8777377605438232, 0.0888001024723053, 0.24559831619262695, -0.22660596668720245, 0.9255492687225342, 0.605407178401947, 0.724521279335022, 0.1802813857793808, 0.4344205856323242, 0.3214409053325653, -0.7980111241340637, 1.1350624561309814, -0.7862259149551392, 0.34823596477508545, 0.19371525943279266, -0.1272325962781906, 1.2675098180770874, -1.1046257019042969, -1.1460963487625122, 0.44176843762397766, 0.11102329939603806, 0.6856111288070679, 0.6823099851608276, 0.9583468437194824, -0.5335560441017151, -0.1484338790178299, 0.7514095306396484, -0.5300704836845398, 0.865038275718689, 0.45363157987594604, -0.515760600566864, 0.12176595628261566, -0.9363041520118713, -0.13063345849514008, -0.921276330947876, -0.10183224081993103, 0.04946433752775192, -0.7286337018013, 0.6994469165802002, 0.5792990326881409, 0.4005403518676758, 0.0761917233467102, -0.36162909865379333, -0.9090496301651001, 0.784273624420166, -1.0029276609420776, -0.07925519347190857, -0.04164682328701019, -1.0870311260223389, -0.46741071343421936, 0.03550216928124428, -0.8849486112594604, -0.6259102821350098, -1.061279296875, 0.1768287867307663, 0.3279184401035309, -0.9233107566833496, -0.07229353487491608, 0.6890672445297241, 1.0292500257492065, 0.839449942111969, -0.06778512895107269, 0.1320764422416687, 1.0942453145980835, -0.7558718919754028, -0.1433679312467575, -0.15643520653247833, -0.32024499773979187, -0.40039169788360596, -0.6613218784332275, -0.985000491142273, 1.5213037729263306, 0.5397953391075134, -0.2008591592311859, 0.01875295676290989, 0.5244477391242981, 2.1200613975524902, -0.3293227553367615, -1.2540621757507324, 0.2830306589603424, -0.6774961352348328, 0.40638503432273865, 0.6741753816604614, -0.5374304056167603, -0.41465872526168823, -0.6916823387145996, -1.0474159717559814, 1.7345592975616455, 0.2572042644023895, 0.10527462512254715, 1.0474146604537964, 1.088413119316101, -0.08884676545858383, 0.7745598554611206, -0.23479075729846954, -0.1656913161277771, 0.16036254167556763, -0.09542485326528549, -0.7599166035652161, 1.020142912864685, 0.6048182845115662, -0.21665385365486145, -0.5161817073822021, -0.08656270056962967, -0.9237484931945801, -0.21173100173473358, -0.2835562825202942, 0.19582276046276093, -0.04607764258980751, 0.21266408264636993, 0.1894795000553131, -0.49377861618995667, -0.23223061859607697, -0.4803473651409149, 0.34725579619407654, 0.14110951125621796, 1.1116732358932495, -0.11388327181339264, -1.0605872869491577, 0.554672360420227, -0.5177614092826843, 0.06086304038763046, -0.14950411021709442, -0.3738611042499542, 1.1773651838302612, 0.5413360595703125, -0.35950368642807007, 0.8871651887893677, -0.5247299075126648, -0.14985251426696777, 0.09865086525678635, -0.2592027187347412, 0.59367436170578, -1.415040135383606, -0.03226128965616226, -0.1398688107728958, -0.5324447154998779, 0.646484375, 0.6579982042312622, -0.17572259902954102, -0.6519213914871216, -1.3350493907928467, -0.5991021990776062, -0.1327095925807953, 0.4220989942550659, -0.4733627438545227, -0.00952630490064621, 0.5970695614814758, -1.3702102899551392, 0.571147620677948, 0.36952659487724304, -1.1951789855957031, -0.2314872294664383, -1.1837782859802246, 0.440395325422287, 0.1207907646894455, -0.16721035540103912, -0.5685228109359741, 0.530775785446167, -0.7415308356285095, -0.7902831435203552, -1.064816951751709, -0.568311870098114, 1.087231993675232, 1.1197786331176758, -0.9452452659606934, 0.9186781644821167, 0.23639146983623505, -0.6444017887115479, -0.2742254436016083, 0.16223472356796265, -0.34272444248199463, -0.0850803479552269, 0.4799179136753082, -0.3404048979282379, 0.4411350190639496, 1.4862850904464722, 1.1760865449905396, 1.0254863500595093, 0.6681122779846191, 0.5704545378684998, -1.4875437021255493, -0.6101895570755005, -0.32102617621421814, -0.216542586684227, -0.4390382468700409, 0.0002483595162630081, -0.6091984510421753, -0.8560336232185364, -0.1135922223329544, 1.0687379837036133, 0.4730238914489746, -0.7744724154472351, 0.20381218194961548, -0.9537768959999084, 0.08432914316654205, -0.2777103781700134, 0.7087712287902832, 0.16053137183189392, -0.5902140140533447, 0.646687388420105, -0.4701366424560547, -0.6673213839530945, -0.5826894044876099, -0.10852508991956711, -0.16437627375125885, 0.6515175700187683, -0.23436647653579712, 0.18543939292430878, 0.2773040235042572, 0.14065252244472504, -0.7762607932090759, 1.6528189182281494, 0.7209967970848083, 0.06603194028139114, 0.2296469509601593, 0.13807855546474457, -0.16400043666362762, 0.35192251205444336, -0.2999703586101532, 0.5606278777122498, -1.0972323417663574, 0.2915552854537964, -0.25853800773620605, 0.15292081236839294, -0.6018409729003906, 0.7734764218330383, -0.5945636034011841, 0.2977895736694336, 0.9848122000694275, 0.07765579223632812, -0.7974967956542969, 0.7891495227813721, 0.9073331356048584, -0.5430256128311157, 0.49476930499076843, -0.33819568157196045, 0.4255222678184509, -0.016351565718650818, 0.5157907009124756, 0.7477936148643494, -0.7055864334106445, 0.7295881509780884, 1.040818452835083, -0.3605978488922119, -0.015241516754031181, -0.6150040626525879, -1.532182216644287, -0.1310088336467743, -1.0469180345535278, -0.9143177270889282, 0.1624259650707245, -0.603603184223175, -1.0683562755584717, 0.5003989338874817, -0.11315064877271652, 0.6235678791999817, -0.7136950492858887, 0.353656142950058, -0.5176886916160583, -0.023247143253684044, 0.3211463391780853, 0.14740918576717377, 0.7262040376663208, -0.41521087288856506, -0.30818280577659607, -0.5535506010055542, -0.016418419778347015, 0.26309144496917725, 0.45886102318763733, -0.05035475268959999, -0.18514394760131836, 0.0044047096744179726, -0.4212413728237152, -0.6837453842163086, 0.4309041202068329, 0.15484458208084106, 0.2136717289686203, -0.3979029357433319, -0.8690661191940308, 0.8428880572319031, 0.45906174182891846, -0.47904330492019653, 0.05745164304971695, -0.492052286863327, -0.8457702398300171, 0.028598275035619736, -0.03199762850999832, 0.7371949553489685, -0.6992352604866028, 1.0537844896316528, 0.2747802138328552, 0.07869086414575577, 0.09563557058572769, -0.28593647480010986, 0.5659099221229553, -0.12594814598560333, 0.8419446349143982, -0.1070147454738617, -0.9540931582450867, 0.7867504954338074, -0.9118250012397766, -0.0631726011633873, 0.582797646522522, 0.38446903228759766, 0.49889105558395386, -0.9945805072784424, -0.7658331394195557, -0.3687763810157776, 0.20507344603538513, 0.30770644545555115, 0.39807644486427307, 0.04219917207956314, -0.6010742783546448, -0.42893674969673157, -0.00802002102136612, 0.038615792989730835, 0.15119145810604095, 0.4566469192504883, 1.4551435708999634, 1.9737361669540405, -0.17938706278800964, -0.05808284506201744, -0.07396317273378372, 0.7234983444213867, -0.9083318114280701, -0.34917962551116943, -0.8852024078369141, 0.12595385313034058, -0.10096025466918945], [-0.1214422658085823, 1.8893104791641235, -2.171353816986084, -1.2179760932922363, -0.4337505102157593, -0.42902183532714844, 0.293069988489151, 0.16808636486530304, -0.12580616772174835, -0.7120541930198669, -1.5613787174224854, -0.1080901026725769, 1.6293697357177734, 1.2152396440505981, 0.6792392134666443, 0.8259853720664978, 1.021634578704834, -0.09292273968458176, 0.35895901918411255, 1.0810900926589966, -0.4000263512134552, -0.8564921617507935, -0.6927168965339661, -0.17095935344696045, 0.46570104360580444, 0.3022700250148773, -1.483831763267517, -0.15010277926921844, -1.4971582889556885, -1.2769150733947754, 0.28286951780319214, -0.6677533388137817, 0.14759495854377747, -0.18134063482284546, -1.6220715045928955, -0.0837029218673706, 1.4595497846603394, 0.32355332374572754, -0.005281446501612663, 1.2210115194320679, 2.337949275970459, 0.012358391657471657, 0.34335508942604065, -1.1621965169906616, 0.7219018340110779, -0.282672256231308, 0.3443982005119324, -1.2620495557785034, -0.5559506416320801, -0.37523892521858215, 0.3265064060688019, 0.5033783912658691, 0.10565221309661865, 1.002310872077942, 1.160175085067749, 0.29370591044425964, -0.5956149697303772, 0.4205615222454071, -0.5515509247779846, 0.5294821262359619, 1.4410827159881592, 0.4186648726463318, -0.5202636122703552, 0.255381315946579, 0.3201759457588196, -0.008248621597886086, 0.13125090301036835, 0.6405606269836426, -0.5986405611038208, -0.34683674573898315, 0.16791993379592896, 0.9537544846534729, -0.3435222804546356, 0.2396754026412964, -1.489810824394226, 0.46230119466781616, 0.7539380788803101, 0.4971613585948944, -0.12653298676013947, 1.5644371509552002, -1.0566227436065674, -0.1408921182155609, 0.261625736951828, -0.48901990056037903, 0.7685444951057434, -0.04747965186834335, 0.3381432592868805, -0.3755095899105072, -0.6759853363037109, 1.1093688011169434, -0.1406901329755783, 0.5134124755859375, 0.2557298243045807, -0.05174338072538376, -0.3693380355834961, -0.7606302499771118, 0.34284430742263794, -0.7246279120445251, -0.3335629403591156, -0.948428213596344, -0.6316001415252686, -1.1394379138946533, 0.8270927667617798, 0.6274236440658569, 1.0888142585754395, 1.3131757974624634, 0.3211301565170288, -1.6313496828079224, -0.7738749384880066, 0.19021470844745636, -0.12628403306007385, -0.37653183937072754, -1.172653317451477, -1.44255793094635, -0.7021283507347107, 0.574174702167511, 0.4095590114593506, -0.7284795045852661, 1.1711914539337158, 0.42703455686569214, -0.8792621493339539, -0.7370322346687317, -0.15246258676052094, 0.6211805939674377, 0.7869606018066406, 0.3981724679470062, -0.7025400400161743, -0.32723191380500793, 0.06652764230966568, 0.20700837671756744, 0.7953693270683289, 0.09783682972192764, -0.6384106874465942, 1.280991554260254, -0.136733278632164, 0.9038125872612, -0.24280530214309692, -0.7401344180107117, -0.041991423815488815, -0.07337657362222672, 0.34011492133140564, -0.6499128937721252, -0.8633188009262085, -0.7826026082038879, -0.04039369896054268, -0.5309470295906067, 0.3407379984855652, -0.19836056232452393, -0.5943408608436584, -0.25019145011901855, -1.2005659341812134, 0.6905947327613831, 0.17138293385505676, 1.236232876777649, 0.3435150384902954, 0.3132436275482178, 0.8719455003738403, -0.25466546416282654, -0.09858351200819016, 0.5435689091682434, 0.6658064723014832, 0.1419268250465393, -0.5768641233444214, 1.1180421113967896, 0.1616918444633484, -0.4473206698894501, 0.4988977015018463, 0.049685850739479065, -0.13446453213691711, 0.26875415444374084, -0.34285271167755127, -0.23730002343654633, -0.23533391952514648, 0.4831063151359558, 0.48787012696266174, -1.215457797050476, 0.937103271484375, -0.4539896249771118, -0.9831951260566711, -1.0743380784988403, 0.9047404527664185, -0.6571308970451355, 0.17111773788928986, -0.17302639782428741, 0.7193027138710022, -0.10209168493747711, -0.36310476064682007, -0.28258785605430603, -0.2646048069000244, -0.39521753787994385, -1.0490418672561646, -0.07378882169723511, -0.9096269011497498, 0.07970687747001648, -0.9705578684806824, -1.1991499662399292, 0.4932737946510315, 0.20363932847976685, -0.8422999978065491, -0.04721242934465408, -0.2204819768667221, -0.22742420434951782, -1.7964816093444824, -0.03849737346172333, -0.9808156490325928, 1.3558107614517212, -0.4062361717224121, 0.0605308897793293, -1.0706148147583008, 0.1697906255722046, 0.7626381516456604, 0.3271149694919586, -0.9089388847351074, 0.7948146462440491, 0.6060869097709656, -0.9562383890151978, 0.015227047726511955, -0.2608870565891266, 0.46925923228263855, 0.22751878201961517, 1.1370196342468262, 0.35391417145729065, 0.812887966632843, 0.1426059901714325, 0.6118062138557434, -0.09585577994585037, -0.9569942355155945, -0.714756429195404, -1.0088260173797607, 0.27805376052856445, -0.9947325587272644, -0.536317765712738, 0.7631195187568665, 1.1814790964126587, -0.6926831603050232, 1.1003732681274414, -0.29844650626182556, 0.34451350569725037, 0.5262443423271179, 0.7063761949539185, 0.3172299563884735, 0.09707924723625183, -0.5454493761062622, -0.2554917633533478, -0.3583887815475464, 0.5203452110290527, 0.9105277061462402, -0.4898413419723511, -0.11658783257007599, 1.5063755512237549, 0.20900385081768036, -0.2335628867149353, 0.773837149143219, 0.6054639220237732, -0.6078912019729614, -0.7156235575675964, -0.30301934480667114, -0.1137721985578537, -0.5591623187065125, 1.2903757095336914, 0.9019679427146912, -1.6845589876174927, -0.5854050517082214, -0.46709683537483215, 0.05744538456201553, -0.6458957195281982, 0.16649314761161804, -0.5321776866912842, 0.7368824481964111, -0.03573179617524147, 0.020063744857907295, 0.2014179676771164, -0.13020837306976318, 0.9887766242027283, -0.18657320737838745, -0.3269086182117462, -0.2291250377893448, 0.6380524039268494, -0.002194315195083618, 1.0129073858261108, 0.36424264311790466, -1.873823642730713, -0.6918829083442688, -0.5509839653968811, 0.9523897767066956, 0.10114943236112595, -0.4267295002937317, 1.3438122272491455, 0.5852529406547546, -0.8275532126426697, 0.017851263284683228, 0.22259774804115295, -0.25157496333122253, -0.21222108602523804, -0.5332235097885132, 0.18018504977226257, 0.49181899428367615, -0.5968270301818848, -0.6926625967025757, 0.0800282433629036, 0.3119564354419708, 1.1265778541564941, 1.0339634418487549, 1.3471705913543701, 0.06003174930810928, -0.25123506784439087, -0.3918660581111908, 0.2606426179409027, -0.3264835476875305, -0.12838828563690186, -0.3850551247596741, -1.1213380098342896, -0.190294086933136, -1.0121763944625854, -0.11108847707509995, 0.8832991719245911, -0.10672692209482193, 0.6619689464569092, 0.6275782585144043, -0.8463377356529236, -0.7784180641174316, -0.22987309098243713, 0.12778069078922272, -1.0092406272888184, 0.6133460998535156, 0.524682879447937, -0.8966416120529175, -0.06566081941127777, 0.3789575695991516, -0.06798528879880905, 0.5613324046134949, -0.2990441918373108, 0.2709372341632843, -0.9215561747550964, -0.2564444839954376, 0.2585601508617401, 1.270530104637146, 0.14169640839099884, -0.5047624707221985, -0.16555388271808624, -0.2563401460647583, 0.011444631963968277, 0.0015545031055808067, -0.6718726754188538, 0.433857798576355, -0.1654677540063858, -0.5510338544845581, -0.9669846892356873, 0.4115452766418457, 1.2902939319610596, -0.39179348945617676, -0.057342976331710815, -0.11198753118515015, -0.08534259349107742, -0.005741363391280174, 0.6766026616096497, -0.29453882575035095, 1.7289525270462036, -0.24834276735782623, 0.26216110587120056, 1.119110107421875, -0.2331930696964264, 0.5579303503036499, -1.3962870836257935, 0.8862997889518738, 0.1636987179517746, 1.9719470739364624, 0.6532544493675232, 0.33482328057289124, 0.47710120677948, -0.46662116050720215, 0.012308333069086075, 0.3720490634441376, 0.7994100451469421, -0.14900539815425873, -0.6902524828910828, 0.011635661125183105, 0.19138818979263306, -0.26944926381111145, -0.6148755550384521, -0.36083754897117615, 0.3016693592071533, -0.6604841947555542, -0.090156190097332, 1.1068077087402344, 0.27921003103256226, -0.6092268228530884, 0.09631615877151489, 0.49875855445861816, -0.3560705780982971, -0.08378826081752777, -0.37441354990005493, -0.3169892132282257, 0.016650717705488205, 0.40057677030563354, -0.8270885944366455, -0.48612546920776367, -0.0675325021147728, -0.10108856111764908, 0.5484704971313477, -0.9140429496765137, -0.5320094227790833, -0.558455765247345, -0.384225457906723, 0.6620818972587585, 0.3002844750881195, 0.5565375089645386, 0.04325129836797714, 0.2398376613855362, -0.2292241007089615, 0.13701891899108887, 1.479854702949524, 0.25000011920928955, -0.037126556038856506, -0.746598482131958, -0.2997109293937683, 0.3132004737854004, -0.2035840004682541, -0.6188220381736755, -0.08594360202550888, -0.7401507496833801, 0.19018356502056122, 0.13254541158676147, -0.07145027071237564, 1.851367473602295, 0.11957304179668427, 0.46695974469184875, 0.7760671973228455, -0.03191698342561722, -0.7738973498344421, 0.21515138447284698, 0.4472384452819824, -0.10411244630813599, -0.49431538581848145, 0.39224255084991455, 0.5315482020378113, 0.21450814604759216, 0.5377742052078247, -0.03973909839987755, 0.8011224865913391, 0.1079375222325325, -0.10100170969963074, 0.5161091089248657, 0.6512356400489807, 0.9501656889915466, 0.3392740786075592, 0.8953402042388916, -0.5236456990242004, -0.8112086653709412, 1.066005825996399, 0.3257806599140167, 0.6003717184066772, 0.01373166125267744, 0.674911618232727, 1.5531816482543945, -1.278407335281372, -0.6330662965774536, 0.3472263514995575, -0.041830070316791534, 0.481231153011322, 1.069953441619873, 1.1069227457046509, -1.1572405099868774, -0.10000867396593094, 0.7310740947723389, -0.47311171889305115, 0.5323832631111145, -0.541646420955658, -0.3119921088218689, 0.3822494447231293, -0.45085734128952026, 0.18269263207912445, -0.778237521648407, -0.5392878651618958, 0.5946372747421265, -0.31295961141586304, 0.3088516592979431, 0.33808550238609314, -0.08458522707223892, 1.103682041168213, -0.38577061891555786, -1.2432674169540405, 0.511855959892273, -0.8915235996246338, 0.12467856705188751, 0.022260263562202454, -0.7733922004699707, -0.775421679019928, -0.8591905832290649, -0.5501366853713989, -0.1302538961172104, -1.389685869216919, 0.07917126268148422, 0.21232585608959198, -1.505449891090393, 0.3764747381210327, 0.5700858235359192, 1.2882040739059448, 1.3733357191085815, 0.2651125490665436, 0.7480145692825317, 0.07415823638439178, -0.7378353476524353, 0.37168583273887634, 0.3430250883102417, -0.61518394947052, 0.40208882093429565, -1.2497044801712036, -0.7798494100570679, 1.0528342723846436, 0.6715684533119202, 0.3300839364528656, -0.08144187927246094, 0.30804571509361267, 1.603597640991211, -0.5169647336006165, -1.2737237215042114, 0.17517563700675964, -0.7144507765769958, 0.5827880501747131, 0.3335144519805908, -1.249537706375122, -1.0021953582763672, 0.14912639558315277, -1.5001994371414185, 1.4765293598175049, 0.2261260598897934, -0.8766857981681824, 0.8534791469573975, 0.6068505048751831, 0.2763601541519165, 0.9160007834434509, -1.296670913696289, -0.21077817678451538, 0.8792492747306824, -0.8489164113998413, -1.0668493509292603, 0.28751593828201294, 0.27342623472213745, 0.6919949054718018, 0.07513385266065598, 0.28738677501678467, -0.025748930871486664, -0.3120192587375641, 0.5784210562705994, 0.314895361661911, 0.8312138319015503, 0.4087921679019928, 0.34966689348220825, -0.5613325238227844, -0.36703425645828247, -0.7862584590911865, 0.22565098106861115, 0.0784272849559784, 1.5952105522155762, -0.09854072332382202, -0.8669303059577942, 0.12474959343671799, -0.28318527340888977, -0.08526443690061569, -0.13627879321575165, -0.8782751560211182, 1.2754262685775757, 0.816886305809021, -0.2684653103351593, 0.45059970021247864, -0.45754939317703247, -0.15945906937122345, -0.24441643059253693, 0.01600741222500801, 0.782900869846344, -1.8902227878570557, -0.5752298831939697, -0.22915881872177124, 0.3416370749473572, 0.10150805860757828, 0.8342620134353638, -0.4695037603378296, -0.7255626320838928, -1.410791039466858, -0.6577997207641602, -0.3597356081008911, 0.39992910623550415, -0.6241804361343384, 0.2263399064540863, 0.21132421493530273, -1.5107024908065796, 0.7507140040397644, -0.46178603172302246, -1.3155148029327393, -0.7448266744613647, -1.326465368270874, 1.2110344171524048, 0.3611544966697693, -0.03974057361483574, -0.08055096864700317, 0.8393981456756592, -0.19290687143802643, -0.2643035650253296, -1.3218859434127808, 0.32917216420173645, 0.706987738609314, 1.4866721630096436, -0.9002601504325867, 0.5919802188873291, -0.09150632470846176, -0.38601529598236084, 0.3294070363044739, 0.26519420742988586, -0.22862263023853302, 0.01877419650554657, 0.22502894699573517, -0.08613979071378708, 0.5530230402946472, 1.318474531173706, 0.818090558052063, 1.2783585786819458, -0.06386090815067291, 0.3964959681034088, -1.1309109926223755, -0.3178098797798157, -0.6418039798736572, -0.028836041688919067, -1.0038596391677856, -0.5760231018066406, 0.06881360709667206, -0.9656537175178528, -0.37434184551239014, 0.7294227480888367, 0.9545757174491882, -0.49674639105796814, 0.04862697795033455, -0.0316658690571785, 0.38931283354759216, -0.9377942681312561, 0.830293595790863, -0.17936290800571442, -0.6703878045082092, -0.035915639251470566, 0.03248569741845131, -0.4282810091972351, -0.6045848727226257, -0.01329678762704134, -0.06843408197164536, 0.7899158596992493, -0.3091745674610138, 0.6670146584510803, 0.6470058560371399, -0.2332729995250702, -0.5977551341056824, 1.3842946290969849, 0.9119088649749756, 0.10676246881484985, 0.192172110080719, 0.2011822611093521, -0.5696112513542175, 0.5100170969963074, -0.48013797402381897, -0.138092502951622, -0.7095718383789062, 0.7120043635368347, -0.22847159206867218, -0.2995108366012573, -1.0526434183120728, 0.6241455078125, 0.2823885381221771, -0.2124866396188736, 0.9564538598060608, -0.33309710025787354, -0.2907344400882721, 0.5600178837776184, 0.8569314479827881, -0.5728701949119568, 0.023881321772933006, 0.1757853478193283, 0.8264719247817993, -0.17821839451789856, 0.2924339175224304, 0.27948418259620667, -0.6628345251083374, 0.7543356418609619, 0.6792128682136536, -1.126900315284729, -0.40660277009010315, -0.8680071234703064, -1.5103834867477417, -0.1633264571428299, 0.010075908154249191, -0.1978531926870346, 0.43339037895202637, -0.9178006052970886, -0.8276124596595764, -0.25767752528190613, 0.0395195297896862, 0.5406925678253174, -0.5302441716194153, 0.2461225986480713, -0.23932482302188873, 0.5393781065940857, 1.6802431344985962, -0.4689209461212158, 0.9866465330123901, -0.1561133712530136, -0.15200090408325195, -0.4441101849079132, -0.4156172573566437, -0.030535414814949036, 0.06652912497520447, 0.18045920133590698, -0.5305324196815491, 0.24959026277065277, -0.8800625801086426, -0.8375734686851501, 0.3832990825176239, 0.43788468837738037, 0.8727053999900818, -0.29988589882850647, -1.0823458433151245, -0.5216294527053833, 0.9513165354728699, 0.4740258753299713, -0.6254826188087463, -0.36454740166664124, 0.33021074533462524, 0.033932339400053024, -0.04729611054062843, 0.33034542202949524, -0.5614635944366455, 0.9302276372909546, 0.5450260639190674, 0.07815572619438171, -0.3472231924533844, -0.38001707196235657, 0.5974407196044922, -0.3644396960735321, 0.545967161655426, -0.27150943875312805, -0.8886255025863647, 0.387371689081192, -0.3366263508796692, -0.20808295905590057, 0.044974975287914276, -0.29044345021247864, 0.42981523275375366, -0.418573796749115, -1.1025804281234741, -0.7227197289466858, -0.21866904199123383, 0.5261120796203613, 0.4649994671344757, 0.46908244490623474, -0.323370099067688, -0.9754362106323242, 0.16895389556884766, 0.5440739393234253, 0.2733892798423767, 0.4921693801879883, 2.0662193298339844, 1.8237566947937012, 0.2541332542896271, -0.3948769271373749, -0.4380497336387634, 0.8769128918647766, -0.9140369892120361, -0.31101611256599426, -0.9564169049263, 0.07091821730136871, -0.031131554394960403], [0.11644572764635086, 2.1576526165008545, -2.6517295837402344, -0.022288374602794647, -0.12484635412693024, 0.9428777694702148, 1.1257998943328857, 0.0950293242931366, 0.18607285618782043, -0.5420606732368469, -0.9097602963447571, -0.20999562740325928, 1.469442367553711, 0.687542736530304, 0.12088720500469208, 0.8881455063819885, 0.06341595202684402, 0.11256489902734756, 0.42927518486976624, 1.0808777809143066, -0.9535578489303589, -1.0781683921813965, -0.6513205170631409, 0.24048252403736115, -0.7024612426757812, 0.03283003717660904, -1.4287365674972534, 0.16441090404987335, -0.10771307349205017, -0.8159334063529968, 0.4085315465927124, -0.9846552014350891, -0.33512574434280396, -0.22729839384555817, -1.1477307081222534, 0.09004657715559006, 0.8481395244598389, 0.582700252532959, 0.5178256630897522, 1.0539729595184326, 2.103078603744507, -0.19858740270137787, -0.3437056243419647, -1.0077641010284424, 0.6605431437492371, -0.5031432509422302, 0.25987470149993896, -0.9058035016059875, 0.522663950920105, 0.04477279260754585, 0.44620755314826965, 0.14062978327274323, 0.7861235737800598, 0.5026877522468567, 1.2450515031814575, -1.000605821609497, 0.33655375242233276, -0.719650149345398, 0.6603564023971558, -0.26429009437561035, 0.9604169726371765, -0.05424385517835617, 0.47424373030662537, 0.8821870684623718, 0.6237388849258423, -0.37645694613456726, 0.21541738510131836, 0.23509185016155243, -0.42467015981674194, -0.34357431530952454, 0.4607401192188263, 0.35740527510643005, -0.31790366768836975, 0.09965341538190842, 0.3500019907951355, 0.21980829536914825, 0.25063490867614746, 0.8214877247810364, -0.22410158812999725, 1.1702800989151, -0.5947287082672119, 0.1704091876745224, 0.340124249458313, -0.2709653377532959, 0.5603444576263428, 0.08162936568260193, 0.4781586825847626, -0.3695225715637207, -0.04296819493174553, 1.4989676475524902, 1.0863335132598877, 0.1554533690214157, 0.396694153547287, 0.4030536115169525, 0.5137425661087036, -1.2585763931274414, 0.026529543101787567, -0.7973188161849976, -0.5884743928909302, -0.7219292521476746, -0.9545069932937622, -0.8918075561523438, 0.6967262625694275, 0.4838225841522217, 0.9248968958854675, 1.8822325468063354, 0.08572676032781601, -0.7379445433616638, -0.508042573928833, 0.2360982745885849, 0.4331081211566925, -0.4144670069217682, -0.9129753112792969, -0.8670163154602051, -0.687808632850647, 0.5066633224487305, 0.9284728765487671, -0.3308965563774109, 0.7511893510818481, 0.5292693376541138, -0.5771473050117493, -0.7663537263870239, -0.7657594680786133, 0.45840969681739807, 0.4445977807044983, 0.1915697157382965, -1.081720232963562, 0.34304380416870117, -0.0210097748786211, 0.20014332234859467, 0.37254515290260315, 0.8878737688064575, 0.36731839179992676, 0.896052360534668, -0.30159398913383484, 1.0011613368988037, -0.9990204572677612, -0.9315657019615173, -0.3222246468067169, -0.05211425945162773, 0.18552711606025696, -0.5540814399719238, -0.8127016425132751, -1.1025145053863525, -0.7089483737945557, 0.12022148072719574, 0.6455085873603821, -0.13648223876953125, -0.6510499119758606, -0.0968594029545784, -1.540099024772644, 1.2043566703796387, -0.5461776256561279, 0.5043600797653198, 0.6816948056221008, -0.41775649785995483, 0.4797323942184448, 0.6061434149742126, 0.05444268509745598, 0.276388019323349, 0.5639711618423462, 0.5578948855400085, 0.016881633549928665, 0.9573560953140259, 0.3307035267353058, -0.5586946606636047, 0.37337103486061096, -0.08854028582572937, -0.251920223236084, 0.7549899816513062, -0.3686692416667938, -0.3699682950973511, -0.9816839098930359, 0.13857176899909973, 0.09484731405973434, -1.2544254064559937, 0.4864654242992401, -0.726498544216156, -0.7708646059036255, -1.3952826261520386, -0.027748916298151016, -0.28978484869003296, 0.1011253148317337, 0.19848506152629852, 0.8558818697929382, -0.38813090324401855, -0.4732321798801422, -0.3669661581516266, -0.9840221405029297, -1.0762724876403809, -1.2924879789352417, 0.2822256088256836, -1.5044593811035156, 0.46995386481285095, -0.6856573820114136, -0.2922225892543793, 0.9838442206382751, -0.3505100607872009, -0.8100651502609253, -0.19833557307720184, -0.1813289225101471, -0.43385669589042664, -1.3935593366622925, 0.21208630502223969, -0.48010408878326416, 0.876224160194397, -0.7111914753913879, 0.8108897805213928, -0.7752517461776733, -0.0031121023930609226, 0.5677801370620728, 0.45664235949516296, -0.7908223271369934, 0.22071042656898499, -0.0863257572054863, -1.1986089944839478, -0.3797539472579956, -0.1947030872106552, -0.17285282909870148, -0.07317854464054108, 0.9643836617469788, 0.01984523981809616, 0.9661247730255127, 0.1751454919576645, 0.7358176708221436, -0.8138968348503113, -0.40546825528144836, -0.629758358001709, -0.6662985682487488, 0.27843818068504333, -0.23758065700531006, -1.1786236763000488, 1.2545017004013062, 0.5692813992500305, -1.3265655040740967, 1.328932762145996, -0.22922970354557037, 0.043006088584661484, -0.11262015998363495, 0.25439587235450745, 0.8956817388534546, 0.201155424118042, -0.6447358131408691, -0.6099677085876465, -0.3792811930179596, 0.40925848484039307, 0.7759672999382019, -0.15739800035953522, -0.3335353136062622, 1.650312900543213, 0.917970597743988, -0.07574746757745743, 0.5344344973564148, 0.43222108483314514, -0.053552042692899704, -1.1136012077331543, -0.17517510056495667, 0.11466880142688751, -0.4608565866947174, 0.9592297673225403, 0.6811979413032532, -0.9459715485572815, -0.3913155496120453, 0.04196719080209732, 0.032895900309085846, -0.15957526862621307, -0.37007224559783936, -0.7470859885215759, 0.5010102987289429, -0.3626053035259247, 0.14713050425052643, 0.05526379868388176, -0.43220412731170654, 0.9843392968177795, -0.21571145951747894, -0.46941614151000977, 0.14399227499961853, 0.8486002087593079, 0.12492506951093674, 1.0047500133514404, -0.2744814455509186, -1.2642321586608887, -0.607218861579895, 0.11030040681362152, 1.109913945198059, 0.020650584250688553, 0.29044950008392334, 0.7394384741783142, 1.0609031915664673, -0.31009840965270996, 0.4351555407047272, 0.7184047698974609, 0.12752029299736023, 0.12863688170909882, 0.04220813512802124, 0.6250139474868774, 0.6032581329345703, -0.37782323360443115, -0.9995368123054504, 0.42845577001571655, 0.45574456453323364, 0.4639984667301178, 0.9591046571731567, 1.4109535217285156, -0.3785282373428345, -0.22223159670829773, -0.4924659729003906, -0.17816287279129028, -0.4737459719181061, -0.7246139645576477, -0.7614246010780334, -0.736473798751831, 0.38821521401405334, -0.5993698239326477, -0.1915874183177948, 0.7534549832344055, -0.44913557171821594, 0.21859949827194214, 0.585009753704071, -0.23678387701511383, -0.057642657309770584, -0.1703580766916275, 0.026851391419768333, -1.3051679134368896, 0.33843615651130676, 0.5410152077674866, -1.2816882133483887, -0.33973589539527893, 0.09707040339708328, 0.4943312704563141, 0.19177451729774475, 0.07689251750707626, 0.7584118247032166, -0.8557867407798767, -1.1444289684295654, 0.3060374855995178, 1.147040605545044, 0.7168311476707458, -0.3672578036785126, -0.9383818507194519, 0.30430710315704346, 0.7416155934333801, -0.29582953453063965, -0.5605125427246094, 0.17956902086734772, 0.5559912919998169, -0.9157528877258301, -0.13488294184207916, 0.034787483513355255, 0.507040798664093, -0.684897780418396, -0.5860170125961304, 0.050024330615997314, 0.1744416058063507, -0.5829084515571594, 0.3128000795841217, -0.49455565214157104, 1.0590434074401855, -0.24014948308467865, -0.4037279486656189, 0.46762627363204956, -0.31235364079475403, 0.37745460867881775, -2.0210518836975098, 0.34364062547683716, 0.28853389620780945, 1.2408684492111206, 0.4747806787490845, 0.6372948288917542, -0.017391787841916084, -1.0208415985107422, 0.04091496393084526, 0.31389302015304565, 0.9403578639030457, 0.24551501870155334, 0.18830503523349762, -0.09633630514144897, -0.618143618106842, 0.019392788410186768, -0.40093064308166504, -0.03755361959338188, 0.9516987204551697, -0.893975019454956, -0.20929747819900513, 0.8712700605392456, 0.0470147430896759, -0.8332956433296204, -0.6786016821861267, 0.4619393050670624, 0.2581550180912018, 0.06517938524484634, -0.30063730478286743, -0.7112256288528442, -0.4286439120769501, 0.5442707538604736, -0.7797309756278992, -0.820619523525238, -0.03241104260087013, 0.03689756244421005, 0.826687753200531, -0.7388357520103455, 0.09902837127447128, -1.0358078479766846, 0.13831685483455658, 0.5633536577224731, 0.3677096664905548, 0.3506169319152832, 0.3033173084259033, 0.2710902690887451, -0.5166162252426147, 0.1423099786043167, 1.6766448020935059, -0.06298961490392685, -0.5808942914009094, -0.15085400640964508, 0.7179898023605347, -0.18318714201450348, -0.7173587083816528, -0.35901519656181335, 0.4840128719806671, -0.6279918551445007, 0.05222000181674957, 0.43388238549232483, -0.11092943698167801, 1.630255937576294, 0.11887132376432419, -0.2644781768321991, -0.026514291763305664, -0.5819171667098999, -0.7100656628608704, 0.1666395664215088, 0.45275336503982544, -0.2541590929031372, -0.09206213802099228, 0.5217469930648804, 0.7395591735839844, 0.8232169151306152, 0.12644349038600922, 0.15093889832496643, 0.3317154347896576, 1.2378766536712646, -0.12046145647764206, 0.5750254392623901, 0.18369871377944946, 0.9273360967636108, 0.7555201649665833, 0.15817061066627502, 0.1429002285003662, -0.7259470224380493, 0.786897599697113, -0.5712032914161682, -0.3216152787208557, 0.3778969645500183, 0.038165535777807236, 1.0204166173934937, -2.1958189010620117, -0.27805769443511963, 0.2941528558731079, 0.3510790467262268, 0.14285875856876373, 0.3703644573688507, 0.3023664653301239, -1.286380648612976, 0.08997634053230286, 0.1649664044380188, -0.0008682562038302422, 0.05905866250395775, 0.5173171758651733, 0.2081553339958191, 0.49965694546699524, -0.5121811628341675, -0.29200679063796997, -0.4380805492401123, -0.09809843450784683, -0.43296945095062256, -0.25984305143356323, 0.2838384211063385, -0.3994345963001251, 0.6252975463867188, 0.9797396063804626, -0.6034662127494812, -0.8827933669090271, 0.4711459279060364, -1.377203106880188, 0.6707823276519775, -0.09047244489192963, -1.0362505912780762, -0.6766640543937683, -0.6003812551498413, -0.29993948340415955, 0.0578119233250618, -1.1082649230957031, 0.1274206042289734, -0.05616316944360733, -1.3121201992034912, -0.10973981767892838, 0.7598410844802856, 1.252471685409546, 1.3530473709106445, 0.13868466019630432, 0.9877708554267883, 0.08903589844703674, -0.8905518651008606, 0.07099543511867523, 0.6147943139076233, -0.4156089425086975, -0.5057874321937561, -1.0442599058151245, -0.8049352765083313, 1.057554006576538, 0.1642540991306305, 0.23212899267673492, -0.48110392689704895, 0.7880222201347351, 1.5142775774002075, -0.6795886754989624, -0.8852017521858215, 0.6789979338645935, -0.4064868092536926, 0.5575562715530396, 0.49785277247428894, -0.8973388075828552, 0.05357704311609268, 0.05506756529211998, -1.5769761800765991, 0.9949613809585571, -0.036222945898771286, -0.40338173508644104, 0.958954930305481, 0.3691959083080292, 0.5862270593643188, 0.9254629611968994, -1.2831637859344482, 0.010374479927122593, 0.33660513162612915, 0.4004173278808594, -0.8886725306510925, 0.943340003490448, 1.1671768426895142, -0.15977999567985535, 0.6594548225402832, 0.6222009062767029, -0.050387799739837646, 0.024575021117925644, 0.28489384055137634, -0.1388692706823349, 0.1334095150232315, 0.5273104906082153, 0.15499192476272583, -0.23169854283332825, 0.5334741473197937, -0.41880273818969727, -0.10482627153396606, 0.45399513840675354, 0.9510835409164429, 0.03657245263457298, -0.3410545587539673, 0.47369125485420227, -0.24275314807891846, 0.15617293119430542, 0.4850805997848511, 0.11430531740188599, 0.6012182831764221, -0.2329634428024292, 0.11372482776641846, 0.7713390588760376, 0.11120013892650604, -0.32585904002189636, -0.797305166721344, 0.02946636825799942, 0.39341166615486145, -1.1328296661376953, -0.48382285237312317, 0.3197769820690155, -0.2954353988170624, 0.28646165132522583, 0.04250108823180199, -0.18261995911598206, -1.1837754249572754, -1.7259595394134521, -0.3856836259365082, -0.8754299283027649, 0.3152647018432617, -0.5371546745300293, 0.9329638481140137, 0.08386893570423126, -1.6065673828125, 0.5866044759750366, 0.1679239571094513, -1.341735601425171, -0.41321173310279846, -0.5970957279205322, 0.44661328196525574, -0.47280991077423096, 0.5136011838912964, -0.2938002943992615, 0.34849098324775696, -0.5976315140724182, -0.7545130252838135, -0.5368701815605164, -0.43902328610420227, 0.40648624300956726, 1.4102190732955933, -1.2554130554199219, 0.9513294696807861, 0.43243733048439026, -0.0676010400056839, -0.18988493084907532, 0.35464420914649963, -0.9093438982963562, -0.20998381078243256, 0.4941541254520416, -0.029706357046961784, 0.15862011909484863, 1.3375061750411987, 0.7074348330497742, 1.0324703454971313, -0.11251436918973923, 0.7682092785835266, -0.9202717542648315, -0.7453364729881287, -0.11282757669687271, -0.1622486263513565, -1.0984437465667725, -0.4781795144081116, -0.0077330367639660835, -0.8312944173812866, -0.6605960130691528, 0.3564942479133606, 0.8929208517074585, -1.118309497833252, 0.33591681718826294, -0.6729608178138733, 0.7023782134056091, -0.3434784412384033, -0.2993256747722626, -0.21362411975860596, -0.3489736020565033, 0.28149929642677307, 0.1316506415605545, -0.2472493201494217, -1.03371262550354, -0.29945188760757446, 0.4166232645511627, 0.559460461139679, -0.8115965723991394, 0.8331050872802734, 0.21622323989868164, -0.06443801522254944, -0.12867394089698792, 0.872907817363739, 1.381210446357727, -0.4478488862514496, -0.04867401719093323, 0.044328343123197556, -0.8800223469734192, 0.6327608823776245, -1.2355549335479736, 0.013582533225417137, -0.8360537886619568, 1.0269312858581543, 0.22421373426914215, 0.20928366482257843, -0.6309187412261963, 0.42038288712501526, -0.45569881796836853, -0.05394718796014786, 0.45083045959472656, -0.8619840741157532, -0.20716553926467896, 0.6701790690422058, 0.8772875666618347, -0.2926202118396759, 0.5226000547409058, 0.3724357485771179, 0.8467893004417419, -0.2779397666454315, 0.5681763887405396, 0.013035953044891357, -0.21999205648899078, 0.43213677406311035, 0.5105466246604919, -0.07970502972602844, 0.4174633324146271, -0.45706310868263245, -1.429381251335144, 0.13820239901542664, -0.14477922022342682, -0.20152316987514496, 0.731172502040863, -1.0106505155563354, -0.9076792597770691, 0.16808471083641052, -0.09899559617042542, 0.22732488811016083, -0.0009877849370241165, -0.24268944561481476, -0.32777997851371765, 0.09957782924175262, 1.2271510362625122, -0.19611234962940216, 1.0585050582885742, -0.40328651666641235, -0.4625316262245178, -0.5543215274810791, -0.14291296899318695, -0.36404892802238464, 0.36013054847717285, -0.03248913958668709, -0.24046801030635834, 0.15871845185756683, -0.7697173357009888, -0.48755213618278503, 0.5084371566772461, 0.3515786826610565, 0.4848060607910156, 0.09714584797620773, -0.746111273765564, -0.5132423043251038, 0.37427738308906555, 0.7404612898826599, -0.06095424294471741, -0.7725396156311035, -0.5908479690551758, -0.24110116064548492, -0.004080981016159058, 0.5662029385566711, -0.5969614386558533, 0.5264069437980652, 0.7207852005958557, 0.21101014316082, -0.0804484561085701, -0.5091301202774048, -0.31778737902641296, -0.4614945650100708, 0.5219449400901794, -0.7784422039985657, -0.12375128269195557, -0.11415811628103256, -0.7500616312026978, 0.007652967236936092, 0.4446789622306824, -0.05551555007696152, 0.2783525288105011, -0.3870682418346405, -0.23853084444999695, -0.16254985332489014, 0.3103255331516266, 0.01908762753009796, 0.41053691506385803, 0.48890647292137146, -1.022972822189331, -0.8962762951850891, 0.03598570078611374, 0.4727029800415039, 0.23688839375972748, 0.33682647347450256, 2.005551815032959, 1.799576759338379, 0.30765631794929504, 0.027147457003593445, -0.48376739025115967, 0.872491717338562, -0.9103876352310181, -0.5455899238586426, -0.9632024168968201, 0.13269229233264923, 0.0743904784321785], [0.15209394693374634, 2.5880186557769775, -2.750401258468628, -0.7206113338470459, 0.34741321206092834, 0.7799856066703796, 1.116036057472229, 0.04531088471412659, -0.08967968076467514, -0.28281310200691223, -0.699684202671051, -0.14092162251472473, 1.0779154300689697, 0.30305179953575134, 0.16869209706783295, 0.8731561899185181, 0.6246100068092346, 0.006480194628238678, 0.31871336698532104, 0.5766254663467407, 0.25461655855178833, -1.7112410068511963, -0.5377128720283508, 0.1507088541984558, 0.3892609477043152, -0.7159793972969055, -1.4340194463729858, -0.5269966721534729, -1.1104719638824463, 0.3668059706687927, 0.5090451240539551, -0.009830884635448456, -0.32145464420318604, 0.1127420961856842, -1.2923126220703125, 0.3038705885410309, 0.7307202219963074, -0.3666642904281616, -0.3252837359905243, 0.3545498847961426, 1.6826890707015991, -0.2442014366388321, -0.33036673069000244, -0.8889930844306946, 0.9673201441764832, -0.18912474811077118, 0.9036795496940613, -0.17585885524749756, 0.15475915372371674, -0.6851396560668945, 1.2341779470443726, -0.40582001209259033, 0.16281281411647797, 1.0450648069381714, 0.9628772735595703, -0.7813068628311157, -0.15216071903705597, 0.8552330136299133, 0.2454100400209427, 0.11716035008430481, 0.7488333582878113, 0.6540209650993347, 1.2833271026611328, 1.4053521156311035, 1.0785553455352783, -0.42577120661735535, 0.7475330829620361, 0.2485027015209198, 0.43708667159080505, 0.04173274338245392, 0.7795265913009644, 0.2710705101490021, -0.30030617117881775, -0.4961951673030853, -1.0590064525604248, 0.6661517024040222, 0.006181113421916962, 0.3820776045322418, -0.09187407046556473, 1.1561864614486694, -0.304153174161911, -0.5314438939094543, -0.1658565104007721, -0.279083251953125, 0.5709465146064758, -0.07242632657289505, 0.5382676720619202, -0.1803298145532608, -0.07008698582649231, 1.3165695667266846, -0.40203502774238586, 0.22874653339385986, 0.4449903666973114, -0.10387641936540604, -0.2518772780895233, -0.02872272953391075, -1.2135472297668457, -0.44238343834877014, -0.7602525949478149, -1.2192814350128174, -0.9035554528236389, -0.4803923964500427, 0.266716867685318, 0.23499980568885803, 0.20314250886440277, 1.368005633354187, 0.7713254690170288, -0.44639939069747925, -0.1089576929807663, 0.005724221467971802, 0.26281502842903137, 0.014468150213360786, -0.8354314565658569, -1.2101106643676758, -0.22729302942752838, 0.837622344493866, 1.9346650838851929, 0.9377493858337402, 0.9933820366859436, 0.35047271847724915, 0.047899916768074036, -0.06710060685873032, -0.6026819348335266, 0.0026381611824035645, 0.9391642808914185, 0.39308077096939087, -0.8196107745170593, 0.13842228055000305, 0.5881702899932861, 0.17896027863025665, 0.6101784110069275, -0.10224712640047073, 0.13162104785442352, 0.32988062500953674, -0.3464414179325104, 1.0686628818511963, -0.16546599566936493, -1.4261600971221924, -0.3817271590232849, 0.6913828253746033, 0.58128821849823, -0.4916219413280487, -0.41463690996170044, -0.2793175280094147, -0.19628794491291046, -0.5375720858573914, 0.36466917395591736, -0.20813126862049103, -0.5736407041549683, 0.25972673296928406, -1.5596650838851929, 0.7686130404472351, -0.05939747020602226, 1.4034545421600342, 0.8823549747467041, -1.0211066007614136, 0.8135047554969788, 0.8599361181259155, 0.2970018982887268, -0.24016635119915009, 1.5028477907180786, -0.2293553501367569, -0.752844512462616, 0.8117468953132629, 0.31384992599487305, -0.13302470743656158, 0.6330778002738953, 0.14792008697986603, -0.12365821748971939, 0.3291913866996765, 0.1896737664937973, -0.21295538544654846, -0.7027740478515625, 0.17168119549751282, 0.14822503924369812, -0.7189772725105286, 1.0593286752700806, 0.5727179646492004, -1.3555052280426025, -1.4162888526916504, 0.7713145017623901, -0.7913073897361755, 0.1522028148174286, 0.25657919049263, 0.4482971131801605, -0.02338550239801407, 0.17320233583450317, -0.2955605983734131, -0.18150204420089722, -1.402337908744812, -0.23550811409950256, 0.17399714887142181, -1.4546478986740112, 0.4548209011554718, -0.7840008735656738, -0.6856632232666016, 1.313503384590149, 0.4358017146587372, -0.6309003829956055, -0.19103339314460754, 0.676376223564148, 0.3130101263523102, -1.1348501443862915, 0.1512746512889862, -0.5743274092674255, 0.760414719581604, -0.6606952548027039, 0.3633764386177063, -0.7384173274040222, 0.06986463069915771, 0.850327730178833, -0.9570736885070801, -0.7333892583847046, 0.3497343063354492, 0.09695646166801453, -1.0000433921813965, 1.034024953842163, -0.11110047996044159, -0.4540623128414154, -0.4279692769050598, 0.16653215885162354, -0.1880953162908554, 0.24581263959407806, 0.034020863473415375, 0.9560580253601074, -0.22397302091121674, -0.12506231665611267, -0.6659989953041077, -0.11510272324085236, 0.3940960168838501, -0.6473139524459839, -0.7956603765487671, 0.2627745568752289, 0.88219153881073, -1.1837214231491089, 0.7828061580657959, -0.1552930772304535, 0.42666369676589966, 0.06833627074956894, 0.9409451484680176, 0.593246579170227, 0.1019350066781044, -1.1666151285171509, 0.12144997715950012, -1.017316222190857, -0.06853556632995605, 0.576733410358429, -0.9744367003440857, -0.3775920569896698, 1.3091788291931152, 1.1713337898254395, 0.31562963128089905, 0.5588051080703735, -0.3243052661418915, -0.05369570478796959, -0.6254812479019165, -0.4301607310771942, 0.2788200378417969, -0.8908758163452148, 0.9241204857826233, 0.8941070437431335, -0.3973926901817322, 0.6066083312034607, -0.4616777300834656, -0.3956761062145233, -0.9584718942642212, -0.26160895824432373, -0.08382154256105423, 0.573617696762085, -0.514279842376709, -0.16300441324710846, 0.3354984223842621, -0.31849175691604614, 0.7758124470710754, 0.16686564683914185, -0.4211757481098175, 0.6976421475410461, 1.0876402854919434, -0.03529825806617737, 0.8263694047927856, -0.039191968739032745, -1.2509068250656128, -1.3077099323272705, -0.360564261674881, 0.47078752517700195, -0.07254613190889359, -0.11262606829404831, 1.0145715475082397, 0.4419150948524475, -0.08346246927976608, 0.3086019456386566, 0.38208284974098206, -0.24856381118297577, 0.10303408652544022, -0.3691115975379944, 0.1158829852938652, 0.586348831653595, -0.6174446940422058, -0.5171009302139282, -0.37548232078552246, 0.3188738226890564, 0.7420107126235962, 1.4524006843566895, 1.4075294733047485, -0.30376291275024414, -0.18490909039974213, 0.5969834923744202, 0.20902886986732483, -0.31095626950263977, -0.6899834275245667, -0.576069712638855, -0.6927047967910767, 0.022986404597759247, -0.7249483466148376, 0.18068000674247742, 1.0283288955688477, 0.5686248540878296, 0.5801821351051331, 0.8501924276351929, 0.11846152693033218, -1.0938658714294434, -0.07315089553594589, -1.2068895101547241, -0.7898198366165161, 0.8312076330184937, 0.8658943176269531, -1.5013781785964966, 0.133956179022789, -0.2417750060558319, 0.12879998981952667, 0.21411912143230438, 0.42887094616889954, 0.34556975960731506, -1.1915591955184937, -0.5749028921127319, -0.2819305956363678, 1.038619041442871, -0.141049325466156, -0.14975596964359283, -0.7123746871948242, 0.4653831720352173, 0.5546286106109619, -0.36021044850349426, -0.2487042397260666, -0.3196001946926117, -0.14197194576263428, -0.3807148039340973, 0.22896379232406616, 0.255094975233078, 0.31390342116355896, -1.0313549041748047, -1.1834176778793335, 0.6136893033981323, 0.2967442274093628, -1.0047370195388794, 0.5626917481422424, -0.33433058857917786, 1.4857773780822754, -0.13473054766654968, 0.7727271914482117, 1.3804843425750732, 0.2392951250076294, 0.3564099371433258, -1.4393274784088135, 0.6097970008850098, 0.42750468850135803, 1.130051851272583, 0.31066441535949707, 0.5217445492744446, -0.005781505256891251, -1.2364107370376587, -0.5544149279594421, 0.5561578869819641, 0.6967175006866455, 0.33871355652809143, -0.15389277040958405, -0.3263024091720581, -0.6723909974098206, -0.1299847811460495, 0.12226618081331253, 0.31656068563461304, 0.029971923679113388, -0.3867805302143097, -0.6734232306480408, 1.2553327083587646, 0.718181848526001, -0.9750323295593262, -1.25016450881958, 0.05003761500120163, 0.4977104961872101, -0.44217437505722046, 0.24469660222530365, -0.8614642024040222, 0.1913658082485199, 0.4545145630836487, -0.7301735877990723, -0.4440997242927551, -0.3767504096031189, 0.04254510998725891, 0.8186752796173096, -0.9044587016105652, -0.5412719249725342, -0.9208748936653137, 0.46238550543785095, 0.8905344605445862, 0.7184598445892334, 0.5115445256233215, 0.16506151854991913, -0.10788629204034805, -0.14921525120735168, 0.051614824682474136, 0.9917851686477661, -0.49618273973464966, -0.0007029264234006405, 0.18521851301193237, 0.500149667263031, 0.6251447200775146, -0.38019517064094543, -0.6119216680526733, 0.028266897425055504, 0.06641487032175064, 0.6108462810516357, 0.3340252935886383, -0.3038105070590973, 1.288772702217102, -0.5714711546897888, 0.24075880646705627, 0.3303954005241394, 0.10529695451259613, -1.1654982566833496, -0.14566592872142792, 0.33323729038238525, -0.39679282903671265, -0.9352426528930664, 0.22003059089183807, 0.5373343825340271, 0.5739004611968994, -0.0007632598280906677, 0.8375732898712158, 0.6392337679862976, 0.29944339394569397, 0.051232703030109406, 0.75996333360672, 0.14662228524684906, 1.208415150642395, 0.7211381793022156, 0.7433491945266724, -0.32045456767082214, -0.34561672806739807, 0.8415371179580688, 0.3047085106372833, -0.15562951564788818, 0.8440565466880798, -0.015645232051610947, 0.9766569137573242, -0.9725830554962158, -0.06908854842185974, 1.2993342876434326, -0.5760445594787598, 0.438312828540802, -0.1797744631767273, 0.9165596961975098, -0.9620524048805237, -0.01789439097046852, 0.8778585195541382, -0.07318000495433807, 0.6785157322883606, -0.2818332016468048, 0.35300537943840027, 0.13420969247817993, -0.636512815952301, 0.3369249105453491, -1.1998350620269775, -0.009940080344676971, -0.761174738407135, 0.15844959020614624, 0.8315917253494263, 0.5579656362533569, 0.28344982862472534, 1.3680822849273682, -0.6979859471321106, -1.0887240171432495, 0.36893534660339355, -0.817815899848938, 0.05222158879041672, -0.5597275495529175, -0.2160934954881668, -0.22437086701393127, -0.46885809302330017, -0.42324692010879517, 0.011078842915594578, -0.9301795959472656, -0.6961499452590942, -0.6738247275352478, -0.8329446315765381, 0.22559237480163574, 0.042494334280490875, 0.8728199005126953, 0.3467674255371094, 0.3351091742515564, 0.02114565670490265, -0.03376638516783714, -1.4982378482818604, -0.3207482397556305, 0.4646746516227722, -0.6390601992607117, -0.48364800214767456, -1.1019092798233032, -0.4503094553947449, 1.2306227684020996, 0.4839245080947876, -0.07424905151128769, -0.02916543558239937, 0.716350257396698, 1.631393551826477, -0.538783848285675, -0.5675237774848938, 0.2111743539571762, -0.030623240396380424, 0.7531182169914246, 0.3773064613342285, -0.7853789925575256, -0.46051540970802307, -1.4739347696304321, -2.15671968460083, 1.3307629823684692, 0.28178003430366516, 0.3392123281955719, 0.9040324091911316, 0.6944544911384583, -0.22630542516708374, 0.971785306930542, -0.44562944769859314, -0.402586966753006, -0.4663074314594269, -0.01830080896615982, -0.758444607257843, 0.49601131677627563, 0.824866771697998, -0.28287577629089355, -0.505740761756897, 0.49243155121803284, -0.15354715287685394, -0.2978077828884125, 0.11496550589799881, -0.18513983488082886, -0.17558883130550385, 0.11009792983531952, 0.26146113872528076, -0.5283936262130737, 0.7492955923080444, -1.0497381687164307, -0.029026906937360764, 0.4868505001068115, 0.015911370515823364, 0.383548766374588, -1.1816028356552124, 0.7768494486808777, 0.02807566151022911, 0.1915421038866043, 0.4937986433506012, -0.39648130536079407, 0.9237396121025085, -0.010865969583392143, 0.5253865718841553, 1.0706793069839478, 0.04680459573864937, -0.4028719365596771, -0.7518066167831421, 0.03894425183534622, -0.2570444643497467, -0.8839035034179688, -1.2389219999313354, -0.36974310874938965, -0.22569547593593597, 0.09715618193149567, 0.4805929362773895, -1.0927977561950684, -1.3505535125732422, -1.1026394367218018, 0.2509586215019226, -0.3133390247821808, 0.8836067318916321, -0.8440544605255127, -0.015725841745734215, 0.11622095853090286, -1.0910882949829102, -0.251778244972229, 0.28518521785736084, -2.0994534492492676, -0.16188907623291016, -0.5279513001441956, 0.9935073256492615, -0.18881641328334808, 0.05499480664730072, -0.38432395458221436, 1.1191649436950684, -1.158371925354004, -0.8156620860099792, -0.9957876801490784, -0.6841193437576294, 1.2744430303573608, 0.6953786015510559, -0.7032284736633301, 0.9402191638946533, 0.1609378606081009, -0.2215125560760498, 0.07312380522489548, 0.35680124163627625, -0.8293033838272095, -0.5176394581794739, 0.21306580305099487, -0.5518454909324646, 0.2994050979614258, 1.5344511270523071, 0.48792752623558044, 1.6311705112457275, -0.1554047167301178, 1.6964685916900635, -0.7601639628410339, -0.4636508822441101, 0.03945910930633545, 0.8394390940666199, -0.5995274186134338, -0.09589877724647522, 0.003847295418381691, -1.447052240371704, -0.2888795733451843, 0.4924536943435669, 0.938576340675354, -0.3773875832557678, -0.15510042011737823, -0.7525187730789185, 0.40133559703826904, -1.1459554433822632, 0.26783886551856995, -0.33732345700263977, -0.7657490372657776, 0.10730215162038803, 0.1283651441335678, 0.39723289012908936, -0.7173399925231934, 0.31940317153930664, 0.31541213393211365, 0.5985368490219116, -0.797074019908905, 0.326455295085907, -0.03643789514899254, -0.1137411966919899, -1.1206912994384766, 1.1638363599777222, 0.9254009127616882, -0.08687525242567062, -0.3083076477050781, 0.32963645458221436, -0.26144832372665405, 0.17440932989120483, -0.7170187830924988, -0.4541560709476471, -0.9262183308601379, 0.6067206263542175, 0.3382883369922638, -0.040415238589048386, 0.1672210544347763, 0.5220261216163635, -0.3738303482532501, -0.6829728484153748, 1.5154542922973633, -0.4852161407470703, -0.7289119362831116, 0.8425376415252686, 0.8772358298301697, -0.5402320623397827, 0.7112699747085571, 0.15265074372291565, 0.1257520467042923, 0.1759016513824463, 0.8875612020492554, 0.07080435752868652, -0.5616536140441895, 0.45452991127967834, 0.41096657514572144, -0.604794442653656, 0.27788329124450684, -0.35977795720100403, -1.8539118766784668, -0.26106300950050354, -0.03237748146057129, -0.35616666078567505, -0.26991844177246094, -0.9678881168365479, -1.070701003074646, 0.5252434611320496, -0.27029046416282654, -0.16790194809436798, -0.796501636505127, 0.14395785331726074, -0.34960123896598816, 0.11684698611497879, 0.33691391348838806, -0.3434324264526367, 0.8528762459754944, -0.3374274671077728, 0.21662399172782898, -0.7386550307273865, 0.11621564626693726, 0.5565243363380432, 0.3636234700679779, -0.26879891753196716, -0.41597434878349304, 0.6090935468673706, -0.8085618615150452, -0.6268507838249207, -0.009274812415242195, -0.27945899963378906, 0.4751392900943756, -0.2180686742067337, -0.2673918306827545, -0.10733287781476974, -0.08533564954996109, 1.1117812395095825, -0.3411485552787781, -0.8795739412307739, -0.8894070386886597, 0.4640384316444397, -0.029643846675753593, 1.2052308320999146, -0.38511693477630615, 0.3472709655761719, 0.07695543766021729, -0.8565357327461243, 0.06741498410701752, -0.7433196306228638, 1.4022231101989746, -0.33440786600112915, 0.09321807324886322, -0.8921211361885071, -0.4814392030239105, 0.8264889121055603, -0.9616557359695435, -0.5354293584823608, -0.07898551225662231, -0.41667622327804565, -0.19263295829296112, -0.40197575092315674, -1.0242670774459839, -0.6586612462997437, -0.19514554738998413, -0.07543410360813141, 0.708335280418396, 0.48921939730644226, -0.32734450697898865, -0.6628299951553345, -0.030463475733995438, 1.2410303354263306, -0.48717445135116577, 0.3441130518913269, 1.2247488498687744, 1.6089712381362915, 0.13847899436950684, -0.19169831275939941, -0.4661262333393097, 0.657362163066864, -0.7404472827911377, 0.4649903178215027, -1.3148438930511475, -0.7914369702339172, -0.43827763199806213], [-0.6468607783317566, 2.2647249698638916, -2.927760124206543, -1.1377586126327515, -0.04307497292757034, -0.3007517457008362, 1.1863325834274292, 0.6272547245025635, -0.21156270802021027, -1.256378412246704, -0.7934648990631104, 0.18263833224773407, 0.5491165518760681, 0.7449966073036194, 0.4010224938392639, 0.8033917546272278, 0.27390310168266296, 0.08932528644800186, 0.17422300577163696, 0.8901050090789795, 0.36111751198768616, -1.1041841506958008, -0.2818729877471924, -0.4577783942222595, 0.1711234301328659, -0.31218692660331726, -1.2622311115264893, 0.4475720524787903, -1.343800663948059, -0.5794089436531067, 1.4533610343933105, -0.45188528299331665, 0.06825710833072662, -0.26940101385116577, -1.4715063571929932, -0.9875062704086304, 0.27557703852653503, -0.3310016095638275, -0.88251793384552, 0.29702436923980713, 1.9857511520385742, -0.12816444039344788, -0.1925240308046341, -1.3089715242385864, 1.1588687896728516, -0.45286276936531067, -0.36547425389289856, -0.8533362746238708, 0.626768171787262, -0.7397992014884949, 0.6930710673332214, -0.3491285741329193, 0.5198242664337158, 0.6675940155982971, 0.7105171084403992, -0.20996630191802979, 0.2897483706474304, 1.0225356817245483, 0.09802814573049545, 0.8340622186660767, 0.8510024547576904, 0.7310730814933777, 0.24586139619350433, 0.6361545920372009, 0.3646305203437805, 0.05770581588149071, 0.38354772329330444, 0.5560734868049622, -0.33097368478775024, 0.06784535199403763, 1.2109545469284058, 0.39334869384765625, -0.3910810053348541, -0.6708301901817322, -0.942678689956665, 0.3797023296356201, -0.5686348676681519, 0.6784663200378418, -0.10241805016994476, 1.2299044132232666, 0.25731587409973145, 0.07721077650785446, -0.15241739153862, -0.35230687260627747, 0.4090779423713684, -0.09145797789096832, 0.30187636613845825, 0.07744092494249344, -0.38291677832603455, 1.5009267330169678, 0.19265596568584442, 0.5898595452308655, 0.6716402769088745, -0.10242284089326859, -0.16944414377212524, -0.37005460262298584, -0.29720890522003174, -0.4111952483654022, -0.22039136290550232, -0.757020115852356, -1.0100680589675903, -0.9325683116912842, 0.6219236254692078, 0.3338966965675354, 0.9743685722351074, 1.757285237312317, 0.7418131828308105, -1.1471387147903442, -1.096878170967102, 0.18161442875862122, 0.20451797544956207, -0.1267118752002716, -1.0063366889953613, -0.4246794879436493, -0.006364257074892521, 1.1373242139816284, 1.4650640487670898, 0.058401014655828476, 0.5951367020606995, 0.33273962140083313, -0.38135573267936707, -0.6610780358314514, -1.1290090084075928, 0.270271897315979, 1.3148292303085327, -0.3735447824001312, -0.83799809217453, 0.0758814811706543, -0.05208709090948105, -0.33657413721084595, 0.7833483815193176, 0.12954965233802795, -0.054749745875597, 0.7160871624946594, -0.07647402584552765, 0.806027352809906, 0.0033538276329636574, -0.8673019409179688, 0.9824835658073425, 0.5610116124153137, 0.06493481993675232, -0.45327404141426086, -0.7655943036079407, -0.807177722454071, 0.3348502516746521, -0.42174580693244934, -0.004458268638700247, -0.6947875618934631, -0.9362419247627258, 0.09213722497224808, -2.1549816131591797, 0.7538942694664001, -0.3560902774333954, 2.0646450519561768, 0.340343177318573, -0.2840900719165802, 0.3829682767391205, 0.0796954557299614, 0.0691804364323616, 0.6712401509284973, 1.5838441848754883, -0.15270178020000458, -0.45114630460739136, 1.8023338317871094, 0.6652097105979919, -0.8324804306030273, 0.797607421875, 0.5059722661972046, -0.7606003880500793, 0.32463377714157104, -0.3984106183052063, 0.0017957012169063091, -0.5424758791923523, 0.1658344864845276, 0.15840716660022736, -0.48977741599082947, 1.1815303564071655, -0.03973447158932686, -0.846299409866333, -1.2663633823394775, 0.5020096302032471, -0.5332967638969421, 0.025789618492126465, 0.7264783978462219, 0.7600909471511841, -0.22512146830558777, -0.8693979382514954, -0.1866748183965683, -0.25349196791648865, -0.5739546418190002, -1.1796298027038574, 0.49159619212150574, -1.5168018341064453, 0.5353742241859436, -0.706945538520813, -0.6136816143989563, 0.6174197196960449, -0.337552011013031, 0.15271860361099243, -0.257633775472641, -0.16947969794273376, -0.4154653251171112, -1.6123181581497192, -0.3694532811641693, -0.8781816959381104, 1.311186671257019, -0.3868989646434784, 0.4224846363067627, -0.2186952829360962, 0.6440572738647461, 1.284420371055603, -0.4222507178783417, -1.0384656190872192, 0.10350055992603302, 0.44470083713531494, -1.2153726816177368, 0.04180563986301422, -0.05518660694360733, -0.059996869415044785, -0.036653634160757065, 0.4068357050418854, -0.01695297844707966, 1.1492995023727417, 0.4268433153629303, 0.7199360728263855, -0.05252866446971893, 0.19207161664962769, -0.19578056037425995, -0.5301721096038818, 0.3967626988887787, -1.0609917640686035, 0.06146317347884178, 0.5392694473266602, 0.7722848653793335, -1.0173652172088623, 1.2892662286758423, -0.4141324758529663, 0.6643274426460266, 0.699178159236908, 0.7907006144523621, 1.0656654834747314, -0.08760540187358856, -0.4492361545562744, -0.21423190832138062, -0.5660125017166138, -0.4864151179790497, 1.1449722051620483, -0.525547206401825, -0.6925720572471619, 1.8557648658752441, 0.7593607306480408, 0.10848811268806458, 0.3284306824207306, -0.46481117606163025, 0.31475216150283813, -1.174850344657898, 0.41732367873191833, 0.1966087520122528, -0.9289020895957947, 0.3583056926727295, 0.25835415720939636, -1.48112952709198, -0.07900069653987885, -0.6540631055831909, 0.5158020853996277, -0.5229647159576416, 0.17175062000751495, -0.012232833541929722, 0.4667469561100006, -0.4403848350048065, 0.12758000195026398, -0.5836072564125061, -0.2098696529865265, 0.7977616786956787, 0.046051591634750366, -0.29200419783592224, 0.34199032187461853, 1.3780001401901245, 0.2939959168434143, 0.9607698917388916, -0.30371010303497314, -1.544590711593628, -1.0273183584213257, -0.7436941266059875, 0.933488667011261, -0.23041395843029022, -0.27899158000946045, 0.48415234684944153, 0.8704383969306946, -0.21478332579135895, 0.5350279808044434, 0.252017080783844, 0.06596361845731735, 0.02932598441839218, 0.24083778262138367, 0.6605480313301086, 0.12302060425281525, -0.7027448415756226, -0.9469212889671326, -0.4146900177001953, 0.23105166852474213, 0.48268789052963257, 1.0956660509109497, 1.021870732307434, -0.21927502751350403, 0.044893596321344376, -0.19022735953330994, 0.267536997795105, 0.15347465872764587, -0.5307093262672424, -0.8227089047431946, -0.18335306644439697, 0.18260401487350464, -0.8947588801383972, -0.17501401901245117, 1.2877448797225952, 0.453261137008667, 1.1944881677627563, 0.31764301657676697, -0.5516530871391296, -1.4959849119186401, -0.1354856938123703, -0.488008975982666, -0.9521438479423523, 0.9453831315040588, 1.0820930004119873, -1.203418493270874, 0.11088376492261887, 0.14539386332035065, 0.2004944533109665, 0.20908692479133606, -0.0940980389714241, 0.17184235155582428, -1.1428707838058472, -0.5550649166107178, 0.1200113520026207, 0.9127752780914307, -0.31988298892974854, -0.18571095168590546, -0.196754589676857, 0.7913367748260498, 0.9586805105209351, -0.2213989496231079, -0.31648218631744385, 0.2982705235481262, -0.08428309857845306, -0.9502994418144226, 0.1657288372516632, 0.20353297889232635, 1.4263147115707397, -0.7800217270851135, -0.5399892330169678, -0.5942797064781189, -0.17653608322143555, -0.9385070204734802, 0.31245607137680054, 0.49383673071861267, 0.7827185988426208, 0.36852794885635376, 0.4635980725288391, 0.697685956954956, 0.0016998124774545431, 0.5816804766654968, -1.838178277015686, 0.3679777979850769, 0.8581531643867493, 1.0971264839172363, 0.04324851557612419, 0.5120273232460022, 0.22949373722076416, -1.037034511566162, -0.058843955397605896, 0.037468522787094116, 0.19180569052696228, 0.23438818752765656, -0.42419230937957764, 0.23431400954723358, -0.16198933124542236, 0.23140238225460052, 0.25472593307495117, 0.32726559042930603, 0.2956884801387787, -0.07731381058692932, -0.1390780806541443, 1.2360262870788574, -0.30608120560646057, -0.44404280185699463, -0.8799749612808228, 0.2331436425447464, 0.2609693706035614, -0.19915278255939484, -0.056458741426467896, -0.679716169834137, 0.00026462238747626543, 0.36593833565711975, -0.15104731917381287, -1.0727068185806274, -0.39773884415626526, -0.02895263582468033, 0.8723435997962952, -0.9042506814002991, -0.9964220523834229, -0.6633796095848083, 0.6023184657096863, 0.5600312352180481, -0.10759487748146057, 0.9339815974235535, 0.1186588779091835, -0.4491185247898102, -0.2197214514017105, 0.16917777061462402, 1.5101608037948608, 0.2615742087364197, -0.3172447979450226, -0.17204269766807556, 0.5563132762908936, 0.7445865869522095, -0.5440239906311035, -0.3221611976623535, -0.2761668264865875, -0.833953320980072, 0.5051748752593994, 0.5224949717521667, -0.31688809394836426, 1.2233941555023193, -0.9547768235206604, 0.5190610289573669, 0.747148871421814, -0.286195307970047, -0.9516127705574036, -0.5653518438339233, 0.17853467166423798, -0.30118000507354736, -0.2941572964191437, 0.1448066085577011, 0.05110479146242142, 0.6173977255821228, 0.4771077632904053, 0.41661715507507324, 0.27498868107795715, 0.10892655700445175, -0.747305691242218, 0.26456889510154724, 0.6063560843467712, 0.6606465578079224, 0.9964643716812134, 0.9356052279472351, -0.5756158828735352, -0.7693538069725037, 0.9262727499008179, 0.14960893988609314, 0.04985528066754341, 1.1346135139465332, 0.311685711145401, 1.6834242343902588, -1.7162867784500122, 0.32091253995895386, 0.3741757273674011, 0.3173907697200775, 0.4038732349872589, -0.48133763670921326, 0.8198479413986206, -1.577937364578247, -0.1093081459403038, 0.42445436120033264, -0.3126603364944458, 0.8206880688667297, -0.19850365817546844, -0.004414440598338842, 0.46796295046806335, -0.1927787810564041, 0.1026766449213028, -0.5519335865974426, -0.1784338653087616, 0.13540053367614746, 0.6807615756988525, 0.7252371311187744, 0.8565211296081543, 0.2445545494556427, 1.2761523723602295, -1.3570079803466797, -1.5093834400177002, 0.5569397211074829, -1.3508762121200562, 0.3144490122795105, 0.2663761079311371, -0.4846149682998657, -0.36912667751312256, -1.3461657762527466, 0.06723809242248535, -0.3568874001502991, -0.8914827704429626, 0.07423925399780273, -0.3124241232872009, -1.404646396636963, -0.4516680836677551, -0.22341513633728027, 0.992729902267456, 0.2228093445301056, 0.35701221227645874, 0.6668825745582581, 0.39341413974761963, -0.6362688541412354, 0.22027955949306488, -0.01548434142023325, -0.4679241180419922, 0.1367095708847046, -1.1126333475112915, -0.6672679781913757, 0.7328792810440063, 0.7242993712425232, 0.7653235793113708, -0.1919737011194229, 0.9379785060882568, 1.652852177619934, -0.3733983039855957, -0.42295581102371216, 0.7855969071388245, -0.023108184337615967, 0.27961891889572144, 0.39684322476387024, -0.9255174398422241, -0.15728312730789185, -0.3066282868385315, -2.030059814453125, 1.272472858428955, -0.04580410569906235, -1.0772286653518677, 0.6820172071456909, 0.8151190280914307, -0.08724629133939743, 1.3232033252716064, -0.2986332178115845, -0.5323130488395691, 0.3652200400829315, -0.16688942909240723, -1.359131932258606, 0.277717649936676, 1.2700068950653076, 0.35049688816070557, -1.0549763441085815, -0.05013136565685272, -0.3058621883392334, -0.6615668535232544, 0.19457577168941498, -0.2612505257129669, 0.8476977944374084, 0.12072189152240753, -0.09945828467607498, -0.9039397239685059, 0.17927958071231842, -1.0136009454727173, 0.4979693591594696, 0.26237383484840393, 0.8093320727348328, -0.023835020139813423, -0.9459840059280396, 0.9703717827796936, -0.29846590757369995, -0.6343125700950623, 0.29130810499191284, -0.8702657222747803, 0.22130678594112396, 0.5670174956321716, 0.23006556928157806, 0.3244772255420685, -0.058559343218803406, -0.5252634286880493, -0.7194744348526001, 0.2532188594341278, 0.804487407207489, -1.4802234172821045, -0.8354744911193848, 0.0489928238093853, 0.004508325830101967, 0.3503904938697815, 0.6405201554298401, -0.5214478969573975, -1.0666935443878174, -1.1855907440185547, -0.6808870434761047, -0.9398742914199829, 0.5869090557098389, 0.03342514857649803, -0.26024332642555237, -0.2461378425359726, -1.39046049118042, 0.960111677646637, -0.5555760860443115, -1.984959602355957, -0.15847939252853394, -0.1421528458595276, 0.8847315907478333, -0.29541635513305664, -0.5250746011734009, 0.22466610372066498, 1.117659568786621, -0.5444061160087585, -0.09589529782533646, -1.1044511795043945, -0.5754256248474121, 0.9225298762321472, 1.3325376510620117, -1.23824143409729, 1.1115527153015137, 0.18841665983200073, -0.5888832807540894, -0.31455475091934204, 0.17517513036727905, -1.8172807693481445, -0.12017262727022171, 0.33524802327156067, -0.1410059928894043, 0.7401129007339478, 1.6596394777297974, 0.3735860288143158, 1.0605486631393433, 0.5750035047531128, 1.050278663635254, -0.36542513966560364, -0.4887697100639343, -0.3021705150604248, -0.22441136837005615, -1.0397660732269287, -0.1299980878829956, 0.21492688357830048, -0.9295832514762878, -0.7500362992286682, 1.0458896160125732, 0.6795055270195007, -0.7853800654411316, 0.42426732182502747, 0.03964175656437874, 0.4427003860473633, -1.349231243133545, 0.4310443103313446, 0.3170144557952881, -1.2714780569076538, -0.21914248168468475, 0.28605392575263977, 0.7151004076004028, -0.859592616558075, 0.5081402063369751, 0.5269162654876709, 0.43318817019462585, -0.609757125377655, 0.660090446472168, -0.2318982630968094, 0.1526639610528946, -0.8614569306373596, 1.20444917678833, 0.772086501121521, 0.40043753385543823, 0.514113187789917, 0.8145993947982788, -0.21320590376853943, 0.06452962756156921, -0.17357264459133148, -0.43056023120880127, -1.1015522480010986, 0.5256191492080688, 0.1868361532688141, -0.06205645948648453, -0.29453063011169434, 0.3094131648540497, -0.2510845959186554, -0.6751017570495605, 1.4095512628555298, -0.5782368183135986, -1.0789977312088013, 0.6028989553451538, 0.788642168045044, -0.21223735809326172, 0.48236483335494995, -0.055017050355672836, 1.30397629737854, -0.32212066650390625, 0.7556402683258057, -0.08179498463869095, -0.5110535025596619, 0.4011533558368683, 0.29825425148010254, -0.9249488115310669, 0.26516956090927124, -0.4985738694667816, -1.057337999343872, -0.08618493378162384, -0.16879452764987946, -0.23011644184589386, 0.3699600398540497, -0.8564552068710327, -1.3584216833114624, -0.12946854531764984, -0.22785967588424683, -0.2436659038066864, -0.43965592980384827, 0.0669417679309845, -0.4937499165534973, -0.4071754813194275, 1.1694425344467163, -0.4023970067501068, 0.7916502356529236, -0.02252129279077053, 0.18636645376682281, -0.11956053227186203, 0.15908187627792358, -0.2670508921146393, 0.016688678413629532, -0.3405211269855499, -0.6459894180297852, 0.15882916748523712, -0.926109254360199, 0.21985019743442535, 0.7559097409248352, 0.02143210358917713, 0.22212405502796173, 0.18672998249530792, -0.997717559337616, -0.46309375762939453, 0.6703246831893921, 0.8270057439804077, -0.711255669593811, -0.8293466567993164, -0.5085206031799316, -0.22239604592323303, 0.6569205522537231, 1.3036292791366577, -1.0606297254562378, 0.5668764710426331, 0.7280110716819763, -0.5006613731384277, -0.6486733555793762, -0.7807797789573669, 1.4814605712890625, -0.6492133140563965, 0.7928521037101746, -1.203485131263733, -0.4022165834903717, 0.04559672251343727, -0.9211066365242004, 0.048613496124744415, -0.3806377351284027, -0.21021495759487152, 0.554154098033905, -0.012915215454995632, -0.9202512502670288, -0.5085685849189758, 0.3695274293422699, -0.04479743912816048, -0.1045590341091156, 1.1750152111053467, 0.02217632345855236, -0.7421281337738037, -0.3336217999458313, 0.5812095999717712, 0.32209306955337524, 0.40573808550834656, 1.4793771505355835, 1.5953387022018433, 0.18032202124595642, -0.35239356756210327, -0.49229785799980164, 0.6261740326881409, -1.2234772443771362, 0.0359160453081131, -1.0082424879074097, -0.3248199224472046, 0.41184502840042114], [-0.454715371131897, 1.84957754611969, -2.247901678085327, -0.797571063041687, -0.05102625861763954, 0.12067216634750366, 0.15640392899513245, 0.8424597978591919, -0.5295817255973816, -1.4516551494598389, -0.5175600051879883, -0.0860099047422409, -0.26082539558410645, 0.4721167981624603, -0.9032976031303406, 0.794032633304596, 0.4780179262161255, 0.10118661820888519, 0.07676360011100769, 0.10478001832962036, -0.2507358491420746, -1.0877184867858887, 0.1408206969499588, -0.35980191826820374, 0.04183894768357277, 0.4869942367076874, -0.921898603439331, 0.005556457210332155, -0.9317516684532166, -0.30911922454833984, 1.168235421180725, -0.5110861659049988, 0.5565944314002991, -0.037854645401239395, -0.8114151358604431, -0.7404153943061829, -0.2065657675266266, -0.5617395043373108, -0.9422031044960022, 0.7945524454116821, 1.2643810510635376, -0.6229584813117981, -1.587362289428711, -0.8393074870109558, 0.2923138439655304, -0.04945174604654312, 1.1868345737457275, -1.1236590147018433, 0.13448397815227509, -0.7212048768997192, 0.3317371904850006, -0.8744322657585144, 0.6231943368911743, 0.6131487488746643, 1.9283418655395508, -2.1164584159851074, -0.2437267005443573, 0.29348692297935486, 0.21319440007209778, -0.39006516337394714, 1.6327924728393555, 0.12023870646953583, 0.25628462433815, 1.4461863040924072, 0.6939654350280762, -0.1700279265642166, 0.23347532749176025, 0.4385893940925598, 0.2873116135597229, -0.08537646383047104, 0.44582152366638184, 0.47867870330810547, -0.277376651763916, -0.6015875339508057, -0.9935054183006287, -0.20653925836086273, 0.42972150444984436, 0.33677613735198975, 0.31194114685058594, 0.3115057051181793, 0.17048439383506775, -0.02830350585281849, 0.8957464098930359, -0.902039647102356, 0.2999241054058075, -0.13763323426246643, -0.4487188756465912, -0.7736761569976807, -0.7304778695106506, 1.4923009872436523, -0.19373172521591187, 0.26253798604011536, 0.7251418828964233, 0.00813037995249033, -0.36881381273269653, -1.0609451532363892, 0.6121159791946411, -0.9003125429153442, -0.9102023243904114, -0.6115240454673767, -0.9552316665649414, -0.2675801217556, 0.06872965395450592, 0.12549416720867157, 0.26039478182792664, 1.4708884954452515, -0.5188220739364624, -0.2901601493358612, -0.06452462077140808, 0.5902017951011658, 0.7353286147117615, 0.03358350321650505, 0.15240494906902313, -0.46451425552368164, 0.6034930944442749, -0.2373713254928589, 1.6223210096359253, -0.04954550042748451, 0.33420097827911377, 0.6347230076789856, -0.5051229000091553, -0.2378578782081604, -0.8014321327209473, 0.34125378727912903, 0.841887354850769, 0.2137276828289032, -0.683922290802002, 0.4060199558734894, 0.114525206387043, 0.0032411422580480576, -0.0379449725151062, 0.445793479681015, -0.853900134563446, 0.6052839756011963, -0.1899486482143402, 0.6503881216049194, -0.5202398896217346, -1.6321113109588623, -0.11576472967863083, -0.3488192856311798, 0.4497734606266022, -0.3590218126773834, -1.707332730293274, -0.6475386619567871, 0.9247971773147583, -0.12653732299804688, 0.24543634057044983, -0.09394927322864532, -0.30194467306137085, 1.2677342891693115, -0.6271137595176697, 0.1550004780292511, -0.31796225905418396, 0.7443246245384216, 0.9180325865745544, 0.029845431447029114, 0.38391873240470886, 0.24573232233524323, 0.541191041469574, 0.3230915069580078, 0.6144338846206665, -0.20000164210796356, -1.6098958253860474, 0.49250927567481995, 1.2815734148025513, -0.6439101099967957, 0.6450130343437195, 0.8541700839996338, -0.4774855673313141, -0.0012627528049051762, -0.5625283122062683, -0.7175790667533875, -1.6690645217895508, 1.050818681716919, -0.3194427192211151, -0.011991994455456734, 0.16216082870960236, -0.5149458646774292, -0.8273159861564636, -0.9794106483459473, 0.8793280720710754, -0.42936286330223083, 0.7826076149940491, 0.003485271707177162, 0.5222452878952026, 0.14121028780937195, -0.3517347276210785, -1.2759969234466553, -1.0286259651184082, -1.482387900352478, -0.5873799920082092, -0.4007404148578644, -0.8947967886924744, 0.3997621238231659, -0.7819312810897827, -0.36182016134262085, 1.010967493057251, -0.16778455674648285, 0.4859807789325714, -0.09702520072460175, 0.3555664122104645, 0.09101299941539764, -0.16422294080257416, 0.09886201471090317, -0.2139635533094406, -0.014880897477269173, -0.8629385232925415, 0.30893459916114807, -0.8558133840560913, 0.23000752925872803, 1.241064190864563, -0.8325229287147522, -0.3465498685836792, 0.6209655404090881, 0.608413577079773, -1.1943094730377197, 0.2044041007757187, -0.43079784512519836, -0.08736498653888702, -0.18701522052288055, 0.6510207056999207, -0.2536097466945648, 0.7717604637145996, -0.18283119797706604, 0.5999473333358765, -0.4617933928966522, -1.1950312852859497, -0.7312371730804443, -0.4410814344882965, -1.0980165004730225, -0.12476874142885208, -0.9630900025367737, 1.0428640842437744, 0.2267436683177948, -0.3630633056163788, 0.6466252207756042, -0.8268641233444214, 0.5946294069290161, -0.043465565890073776, 0.6970869898796082, 0.7662519216537476, 0.16806919872760773, -0.658083975315094, -0.6782001256942749, -0.773517906665802, -0.6223041415214539, 0.10420000553131104, -0.7643330693244934, 0.24449941515922546, 0.7871341109275818, 0.7161350250244141, -0.6862283945083618, 0.4011772572994232, -0.8104250431060791, 0.16230207681655884, -1.1485167741775513, 0.039980847388505936, -0.09922116994857788, -0.7357199192047119, 0.7941150665283203, 1.073992371559143, -1.231457233428955, -0.987942636013031, -0.09887288510799408, 0.1106213927268982, -0.9456398487091064, -0.05543776974081993, -0.7137516736984253, 0.35188600420951843, 0.3643602728843689, 0.4442322552204132, 0.5030839443206787, -0.09882405400276184, 1.1049176454544067, 0.22339434921741486, 0.11966753005981445, 0.7719400525093079, 0.5566332340240479, 0.13863801956176758, 0.7896920442581177, -0.20300732553005219, -0.9914847612380981, -0.8149677515029907, -0.2443084418773651, 0.6921207904815674, -1.0174604654312134, -0.8575516939163208, 0.14747187495231628, 1.0231268405914307, -0.7492213845252991, 1.5152345895767212, 0.06581480801105499, 0.06664533913135529, 0.3327850103378296, -0.1355249285697937, 0.22035154700279236, 1.0206061601638794, -0.32900071144104004, -1.3137397766113281, 0.44711795449256897, 0.5723294019699097, 0.8349584937095642, 1.242222547531128, 1.1294326782226562, -0.7458463907241821, 0.3701106905937195, -0.18473760783672333, 0.06836618483066559, -0.8934662342071533, -0.24489924311637878, -0.04722142592072487, -0.7100907564163208, 0.2890554666519165, -0.12710948288440704, 0.07454913854598999, 1.0147089958190918, 0.1307186335325241, 0.036495961248874664, 0.05739643797278404, -1.085639476776123, -1.4898732900619507, -0.27525293827056885, -0.6711546778678894, -0.7964667677879333, 1.1772971153259277, 1.6018919944763184, -1.0190463066101074, 0.15211725234985352, -0.39651334285736084, 0.5242303013801575, 0.5474287867546082, 0.28886130452156067, 0.7935574054718018, -1.537192463874817, -0.4343937039375305, -0.34700527787208557, 1.1210086345672607, 0.2418629229068756, -0.14245419204235077, -0.9638981819152832, -0.5887380242347717, 0.24586091935634613, -0.37265220284461975, -0.18519246578216553, 0.243183434009552, -0.6343184113502502, -0.26514771580696106, -0.39208292961120605, 0.13965687155723572, 0.9176796078681946, -0.4898858368396759, -0.4294467568397522, 0.22935019433498383, -0.3215341567993164, -0.47523579001426697, 0.20380954444408417, -0.3144712746143341, 0.6208934187889099, 0.023908646777272224, 0.44651728868484497, 1.0655025243759155, 0.4051031470298767, 0.4814698398113251, -1.644515872001648, -0.024564893916249275, 0.8231192231178284, 1.3579407930374146, 0.2244964838027954, -0.2699364721775055, 0.3100299537181854, -0.900026261806488, -0.18746380507946014, -0.13734720647335052, 0.10334128886461258, 1.0065584182739258, -0.7852832078933716, -0.09741039574146271, -0.7683516144752502, -0.004787222482264042, -0.01440993882715702, -0.5938115119934082, 0.4263255000114441, 0.06605353951454163, -0.45401304960250854, 0.965515673160553, 0.7581083178520203, -0.07421057671308517, 0.1883753538131714, -0.18607212603092194, 0.426054447889328, -0.4074896275997162, -0.5293444395065308, -0.8338541984558105, 0.6196738481521606, 0.5092214345932007, 0.5879004001617432, -0.5991294980049133, -0.9240103960037231, 0.3733859956264496, 1.2055538892745972, -0.6202252507209778, -0.629516065120697, -1.011022686958313, 0.4006192088127136, 0.49263495206832886, -0.13003279268741608, 0.07215455174446106, 0.07443730533123016, -0.2531919777393341, -0.17666026949882507, 0.525911808013916, 0.9656857848167419, 0.007407866418361664, -0.12775211036205292, 0.3607199192047119, 0.15575627982616425, 0.7836273312568665, 0.7260341048240662, -0.4441225826740265, 0.027576901018619537, -1.5300965309143066, -0.2500643730163574, 0.03423920273780823, 0.22587265074253082, 1.1048270463943481, -0.6232418417930603, -0.31963294744491577, -0.030640989542007446, 0.5537100434303284, -0.6956673860549927, -0.5107191205024719, 0.5243174433708191, 0.030664460733532906, 0.017143724486231804, 0.8109831809997559, 0.23021574318408966, 0.8846274018287659, -0.0011850972659885883, 0.0750872790813446, 0.6691430807113647, -0.1588340699672699, -0.2914115786552429, 0.7064564228057861, 0.08501720428466797, 0.870482325553894, 2.2823715209960938, 0.928981602191925, -0.864386260509491, -0.4922766089439392, 0.567393958568573, 0.13267430663108826, 0.3691280782222748, 0.1483432501554489, 0.5393968820571899, 1.3852370977401733, -0.23012220859527588, -0.08215852081775665, 0.952967643737793, 0.4728408455848694, 0.6689043045043945, -0.0614832267165184, 0.11811885237693787, -0.9047808647155762, -0.05231565237045288, -0.4539942741394043, -0.17065565288066864, 0.5120458006858826, 0.31653162837028503, -0.1443348526954651, 0.1531195193529129, -0.8288646340370178, 0.44488629698753357, -0.24961605668067932, 0.33206048607826233, 0.7099503874778748, 0.5240033864974976, 0.0839766263961792, 0.4941713809967041, 0.4649523198604584, 1.355108380317688, -0.5213873982429504, -0.821098804473877, 0.49127572774887085, -1.1153740882873535, 0.7798819541931152, -0.736270010471344, -0.4013388454914093, -0.13645297288894653, -0.9134487509727478, -0.4847604036331177, -0.8330351710319519, -0.8680295944213867, -1.031482219696045, 0.580450177192688, -0.3879658579826355, -0.07917499542236328, -0.8931742906570435, 0.6042519807815552, 0.5229679942131042, 0.13872353732585907, 1.0797637701034546, 1.0239965915679932, 0.023133745416998863, 0.18037928640842438, -0.1864624321460724, 0.4126434624195099, -0.6525377035140991, -0.40948015451431274, -0.5290542840957642, 0.19193993508815765, 0.28156304359436035, 0.0571540892124176, -0.09227442741394043, 0.6268513202667236, 1.820305585861206, -0.6832968592643738, -0.41777026653289795, 0.43127837777137756, -0.35500675439834595, 0.9870832562446594, 0.27696508169174194, -0.8632051348686218, 0.6543735861778259, -0.13271647691726685, -2.4861152172088623, 1.3504621982574463, -0.5033413171768188, 0.7633769512176514, 0.6171688437461853, 0.8411566615104675, -0.47422581911087036, 1.251956820487976, -0.7136138677597046, -0.31909555196762085, -0.7250881195068359, 0.034628547728061676, -1.4554722309112549, 0.875950813293457, 1.2966121435165405, 0.16183505952358246, -1.1636240482330322, 0.12161125242710114, 0.1747230738401413, 0.10753263533115387, -0.4205116927623749, -0.7825812101364136, 0.09265811741352081, 0.5308898687362671, 0.8636120557785034, -0.25149837136268616, -0.21104146540164948, -0.7235323786735535, 0.8092656135559082, 0.7312209010124207, 0.6688914895057678, 0.20517165958881378, -0.4616818130016327, 0.785592257976532, -0.406927227973938, 0.022594809532165527, 0.5870429277420044, -0.2662856876850128, 1.410749912261963, 1.1467229127883911, -0.4613606035709381, 0.07292935997247696, -0.5342466831207275, -0.9539642333984375, -0.9592339396476746, 0.03024720586836338, 1.0620660781860352, -0.7327850461006165, -0.09314043074846268, -0.8274691700935364, -0.49390384554862976, 0.09455960988998413, 0.7255796194076538, -0.11671920865774155, -0.925109326839447, -0.7939714789390564, 0.18012000620365143, 0.3704400658607483, 0.7157095670700073, -0.3673996925354004, 0.5679640173912048, -0.39428651332855225, -1.5543920993804932, 0.540911853313446, 0.09591037780046463, -1.3693979978561401, -0.2776121199131012, -0.8088135123252869, 0.7593364715576172, -0.023335343226790428, -0.12168482691049576, 0.25035950541496277, 0.9625256061553955, -0.9482482075691223, -1.1053420305252075, -0.6141012907028198, -0.07293200492858887, 0.6130319833755493, 0.9939413666725159, 0.3477388620376587, 0.5190549492835999, 0.5151634216308594, -0.3111788332462311, -0.17906750738620758, -0.05333518981933594, -1.455871820449829, 0.6394672989845276, 0.32768210768699646, -0.25240930914878845, -0.03730880841612816, 1.6671593189239502, -0.09114272892475128, 1.4516661167144775, 0.21054451167583466, 1.180730938911438, -0.6167399287223816, -0.531214714050293, -0.5891202092170715, 0.5773318409919739, -0.8908623456954956, 0.12536479532718658, -0.2620929479598999, -0.9315335750579834, -0.23370790481567383, 0.47970548272132874, 0.9730029106140137, -0.7394886612892151, 0.8528560400009155, -0.3693726658821106, -0.45204177498817444, -1.265278935432434, 0.5770035982131958, 0.5421245694160461, -0.8224690556526184, 0.7822742462158203, 0.1783386468887329, 0.2498864382505417, -0.26661738753318787, -0.07212544977664948, 0.2072129100561142, 0.47455212473869324, -0.32919108867645264, 0.4606649875640869, -0.5007346272468567, 0.4067002236843109, -0.4669082462787628, 0.6039480566978455, 0.5106672048568726, -0.8085862398147583, 0.35110995173454285, 0.5383555293083191, -0.6296519041061401, -0.047875139862298965, -0.05376393720507622, -0.5599787831306458, -0.5696543455123901, 0.8562498092651367, 0.29212120175361633, 0.599585771560669, -0.3812794089317322, 0.3731157183647156, 0.15520213544368744, 0.33430397510528564, 1.214981198310852, -0.538931667804718, -0.6096590161323547, 1.167112112045288, 1.0690696239471436, -0.5562626719474792, 0.20434166491031647, 0.23391814529895782, 0.07388829439878464, 0.7328963875770569, 0.7423352599143982, 0.6266598701477051, -0.69685298204422, -0.1850862205028534, -0.23595939576625824, 0.2098788321018219, 0.6215954422950745, 0.6521586775779724, -1.527788758277893, 0.2078435719013214, 0.08394646644592285, -0.5388352274894714, 0.6394116878509521, -0.2478073388338089, -0.22595259547233582, 0.2106337994337082, -0.36337822675704956, -0.04993095621466637, -0.3754670321941376, -0.008104201406240463, -0.6171027421951294, -0.011034802533686161, 0.4887603521347046, 0.22118178009986877, 0.9274681210517883, 0.47481757402420044, 0.5594179034233093, -0.3452897369861603, -0.5995073914527893, -0.41405370831489563, 0.03011246956884861, -0.5358949899673462, -1.2483371496200562, 0.45563066005706787, -0.11514801532030106, -0.5094379186630249, 0.5539774298667908, -0.30788886547088623, 0.7017921209335327, -0.38274335861206055, 0.1982351690530777, 0.22883771359920502, 0.2143910825252533, -0.21530404686927795, -0.41172507405281067, -0.7873673439025879, -0.35048094391822815, 0.42514511942863464, 0.21820904314517975, 2.0124614238739014, -0.7284809350967407, 1.1548049449920654, 0.02039855346083641, 0.21368609368801117, -0.17585448920726776, -0.36494848132133484, 0.5062642097473145, 0.10810321569442749, 0.17073523998260498, -0.6402174830436707, 0.1488555371761322, 0.020436884835362434, -1.4802381992340088, -0.2338956743478775, -0.3033982813358307, 0.03198719024658203, -0.14823530614376068, 0.09872447699308395, -0.14193712174892426, -0.8012970685958862, -0.35291194915771484, 0.8580886125564575, 0.5841384530067444, 0.3428764045238495, -0.5509495139122009, -1.21940279006958, -0.5937505960464478, 0.5208020210266113, 0.23562949895858765, 0.6194131374359131, 0.7753158807754517, 0.8311880826950073, 0.15255121886730194, -0.27032461762428284, -0.06723303347826004, 0.06926664710044861, -0.4513673484325409, -0.6190465092658997, -0.6991376280784607, 0.6925542950630188, 0.2226061373949051], [-0.5970653295516968, 1.7474573850631714, -2.4479899406433105, -0.44638147950172424, 0.483467698097229, -0.38423240184783936, 0.8294991850852966, 0.00521784508600831, -0.2520427107810974, -0.9535742402076721, -0.04131929948925972, 0.07945875078439713, 0.9434725642204285, 0.7059954404830933, 0.23494581878185272, 1.0028584003448486, 0.17587579786777496, -0.3595127463340759, 0.22050826251506805, 0.5023100972175598, 0.6797831654548645, -1.691728949546814, -0.1663465052843094, -0.6917965412139893, 0.08547183126211166, 0.10537375509738922, -0.7247220873832703, 0.6474238634109497, -0.8481088280677795, -1.0239160060882568, 2.1241400241851807, -0.7974312901496887, -0.06858091056346893, -0.17463284730911255, -1.3359549045562744, -0.5219994783401489, 0.465859979391098, -0.405017614364624, -0.3647257089614868, 0.8244966864585876, 2.1490941047668457, 0.1950344294309616, -0.532620370388031, -1.275588870048523, 1.0229730606079102, 0.08437582850456238, 0.7099926471710205, -0.7133327126502991, 0.19040493667125702, -1.4132519960403442, 0.4173877239227295, -0.6892000436782837, 0.6157445311546326, 1.049343228340149, 0.6020168662071228, -0.42444658279418945, 0.33424612879753113, 0.8564415574073792, 0.03253272548317909, -0.03693528473377228, 1.1594158411026, 0.8688697814941406, 0.6291031837463379, 1.142911434173584, 0.670370876789093, -0.20726169645786285, 0.5217843651771545, 0.15348243713378906, 0.22265580296516418, -0.1867099553346634, 0.6840555667877197, 0.5936174392700195, -0.5204736590385437, -0.6864582300186157, -0.6083795428276062, -0.22199571132659912, -0.1460435837507248, 0.6143841743469238, -0.5376790165901184, 0.6117120981216431, -0.33821675181388855, 0.37603721022605896, 0.1114639937877655, -0.5745696425437927, 0.5383525490760803, -0.10300936549901962, 0.26678478717803955, -0.003215692937374115, -0.7604941725730896, 1.5995376110076904, 0.19373157620429993, -0.2080010622739792, 0.3700213134288788, -0.733533501625061, -0.9631403088569641, -1.2480000257492065, -0.20012596249580383, -0.8590465188026428, 0.19974955916404724, -1.0076305866241455, -0.7624150514602661, -0.9683017730712891, 0.4961756765842438, 0.1799902319908142, 0.6165226101875305, 2.094559669494629, 0.19271999597549438, 0.01390443928539753, -0.7563557624816895, 0.19575364887714386, 0.4129030108451843, 0.2861948013305664, 0.019247766584157944, -0.2763161361217499, 0.19543752074241638, 0.5412877202033997, 1.4803708791732788, 0.25361061096191406, 0.21873889863491058, 0.028818903490900993, -0.2760441303253174, -0.5590065717697144, -0.25224167108535767, 0.40637677907943726, 1.5024868249893188, -0.37265706062316895, -1.1287363767623901, -0.29503342509269714, 0.21786577999591827, -0.8736631870269775, 0.07355175912380219, -0.1662164032459259, -0.1573927402496338, 0.571690022945404, -0.35229018330574036, 1.049375295639038, -0.2833637595176697, -0.7697774171829224, 0.09056835621595383, -0.14206191897392273, -0.4317646026611328, -0.5668755173683167, -0.9937521815299988, 0.1551305651664734, 0.47397345304489136, -0.7804997563362122, 0.5451844930648804, 0.18398837745189667, -0.44254401326179504, 0.32502564787864685, -1.4059996604919434, 0.07211033999919891, -0.06786087900400162, 1.8524751663208008, 0.6690323352813721, -0.573125422000885, 0.4667567312717438, 0.6439613699913025, -0.006726516410708427, 0.39216262102127075, 0.8535569310188293, 0.08963428437709808, -0.9243041276931763, 1.1660876274108887, 0.720167875289917, -0.8693214654922485, 1.0347429513931274, 0.5493555068969727, -0.5812019109725952, 0.7158044576644897, -0.432563453912735, -0.012107044458389282, -1.180554986000061, 0.6851704716682434, -0.22710980474948883, -0.15503761172294617, 0.9923380613327026, -0.38630279898643494, -1.0991755723953247, -1.4953515529632568, 0.5644893646240234, -0.09035446494817734, -0.07088369131088257, 0.4960705637931824, 0.5345801711082458, 0.10532457381486893, -0.23620747029781342, -1.0145233869552612, -0.0966484546661377, -1.0900980234146118, -0.9968065023422241, -0.4157116115093231, -1.2990261316299438, 0.39901337027549744, -0.80083167552948, -0.3162814974784851, 0.8079231977462769, -0.8176245093345642, 0.23451490700244904, -0.014296984300017357, -0.11627324670553207, -0.04949810728430748, -1.2719594240188599, 0.264020174741745, -0.6165807247161865, -0.13625900447368622, -0.43954965472221375, 0.5249437689781189, -0.5289016962051392, 0.6176823377609253, 0.8809296488761902, -0.4942624866962433, -0.4199598729610443, -0.11260566860437393, 0.452318012714386, -1.691904067993164, 0.4444589614868164, -0.4076201319694519, -0.19900023937225342, -0.24384935200214386, 0.40879741311073303, 0.46484771370887756, 0.894252598285675, -0.051118865609169006, 0.975498616695404, -0.20544280111789703, -0.40721461176872253, -0.7066313624382019, -0.4227225184440613, -0.40353599190711975, -0.527532696723938, -0.37403762340545654, 0.23483140766620636, 0.5976912975311279, -0.9286876916885376, 0.9049591422080994, -0.5022802948951721, 0.5406078696250916, 0.45263126492500305, 1.4916176795959473, 0.7677175998687744, 0.00693883839994669, -0.8797013163566589, -0.09004170447587967, -0.5435209274291992, 0.10594422370195389, 0.581908643245697, -0.4292087256908417, 0.1738085299730301, 2.0735397338867188, 0.9741158485412598, -0.714423656463623, 0.3838847875595093, -0.7367401719093323, -0.05886590853333473, -0.8634455800056458, 0.2816426753997803, -0.5204898118972778, -1.2540487051010132, 0.8359358310699463, 0.07829716801643372, -1.2083046436309814, 0.14714424312114716, -0.19143980741500854, 0.7532886266708374, -0.47878706455230713, 0.3241473436355591, 0.06450334936380386, 0.43599462509155273, -0.04330972954630852, 0.021320553496479988, -0.2123222053050995, -0.6743061542510986, 1.0030744075775146, -0.2284458428621292, -0.18463295698165894, 0.5562242865562439, 1.0115032196044922, 0.026478886604309082, 0.9128549098968506, -0.8322056531906128, -1.6304521560668945, -1.042824387550354, -0.22259318828582764, 0.7866576313972473, 0.005388149991631508, -0.00500085623934865, -0.2676294147968292, 1.3858821392059326, 0.15242671966552734, 1.054473876953125, 0.1420467495918274, -0.04164595529437065, -0.08240344375371933, -0.43648988008499146, 0.3132458031177521, 0.25130361318588257, -0.8798776268959045, -1.195346713066101, -0.6580772399902344, 0.4079824388027191, 0.7147696614265442, 1.1298099756240845, 0.9597505927085876, -0.06413228809833527, 0.3872319459915161, -0.42542901635169983, 0.027497051283717155, -0.20880676805973053, -0.5188153982162476, -0.471584290266037, -0.46331077814102173, -0.1437811553478241, -0.05319664999842644, -0.24472470581531525, 1.2305899858474731, -0.060400817543268204, 0.9527867436408997, 0.6749298572540283, -0.8569974899291992, -1.5566157102584839, -1.3153173923492432, -0.21663321554660797, -1.1134847402572632, 0.8943176865577698, 1.0177687406539917, -0.8589479327201843, -0.1204681396484375, 0.45293161273002625, 0.40045085549354553, 0.764041006565094, 0.17087632417678833, 0.510827898979187, -1.8598644733428955, -0.08165353536605835, -0.1690840870141983, 0.7841545343399048, 0.2579120099544525, 0.846721887588501, -0.348953515291214, 0.2526232600212097, 0.37662023305892944, -0.44554606080055237, -0.1593727171421051, 0.19418862462043762, -0.5876151919364929, -0.036705438047647476, 0.18173804879188538, 0.29243385791778564, 1.3028216361999512, -0.5081843733787537, -0.4179871678352356, 0.043523963540792465, -0.0003104811767116189, -0.9308505058288574, 0.23368267714977264, -0.04539843648672104, 1.1382477283477783, 0.2646206319332123, 0.25499919056892395, 1.01966392993927, 0.16415581107139587, 0.6200423240661621, -2.0066440105438232, 0.7194365859031677, 0.8781834840774536, 1.4730440378189087, 0.0781431719660759, -0.0332111231982708, 0.21957927942276, -0.5486578941345215, -0.48933228850364685, -0.1311977654695511, 1.1397080421447754, 0.7233108878135681, -0.27631425857543945, -0.21556587517261505, -0.5606635808944702, -0.20719674229621887, -0.33066487312316895, 0.010929868556559086, 0.3751709461212158, 0.010957970283925533, -0.009213373064994812, 1.2556992769241333, -0.14834047853946686, -0.3874341547489166, -0.410652220249176, -0.07455887645483017, 0.5892713069915771, -0.08193067461252213, -0.13049905002117157, -0.16503030061721802, 0.4437577724456787, 0.018560141324996948, 0.02782805636525154, -1.0504562854766846, -0.6045898795127869, -0.14008986949920654, 0.8919697999954224, -1.1723711490631104, -0.39500921964645386, -0.9290289878845215, 0.9230438470840454, 0.9671291708946228, -0.23423577845096588, 0.655962347984314, 0.05146532133221626, -0.4200746417045593, -0.44918200373649597, 0.5891321301460266, 1.2404145002365112, 0.1365874707698822, -0.21244867146015167, 0.2912691533565521, 0.5312801599502563, 0.5318360924720764, -0.4476475715637207, -1.1438074111938477, 0.4006502032279968, -0.8186900615692139, 0.000961855985224247, 0.07620350271463394, 0.03017628751695156, 1.5641003847122192, -0.15022684633731842, 0.447477251291275, 0.2127256840467453, 0.0580017976462841, -1.7491734027862549, -0.13638140261173248, -0.005812891758978367, 0.3303366005420685, -0.13174346089363098, -0.37476906180381775, 0.45583683252334595, 0.28104865550994873, 0.33501893281936646, 0.6873098015785217, 0.10097619891166687, 0.42209765315055847, -0.31800633668899536, 0.3365594446659088, 0.2949174642562866, 0.795713484287262, 1.7623378038406372, 0.9406761527061462, -0.28682810068130493, -0.4658835828304291, 1.4643296003341675, 0.3296051323413849, 0.5271036028862, 0.5505644083023071, 0.5531008243560791, 1.3973021507263184, -1.4568305015563965, 0.13491912186145782, 0.14998939633369446, 0.039440449327230453, 0.4441315233707428, -0.23214435577392578, 0.5331864953041077, -0.9130785465240479, 0.21033619344234467, 0.2853073477745056, -0.5584459900856018, 1.1989972591400146, 0.19402417540550232, 0.0999065488576889, 1.0979148149490356, -0.7197620272636414, -0.1799170970916748, -0.746835470199585, 0.16253003478050232, -0.3038974404335022, -0.2817687392234802, 0.9429766535758972, 1.1836042404174805, 0.7827228903770447, 1.084073543548584, -0.8687093257904053, -1.2889472246170044, 0.2438749521970749, -0.9821949005126953, 0.0957612469792366, -0.15438497066497803, -0.3511568307876587, -0.1539868265390396, -0.9790938496589661, -0.540986180305481, -0.14072805643081665, -0.7657634019851685, -0.12715387344360352, -0.05556442588567734, -0.9240716099739075, 0.41573503613471985, -0.20392857491970062, 0.942432165145874, 0.6544507741928101, 0.31797292828559875, 0.9113170504570007, 0.2552196979522705, -0.2878677546977997, -0.20811069011688232, 0.05764086917042732, -0.09205678850412369, -0.35987964272499084, -0.6104021072387695, -0.19422926008701324, 0.4756755530834198, 0.6426276564598083, -0.32662084698677063, 0.19578438997268677, 1.3529201745986938, 1.1317594051361084, -0.7175601124763489, -0.38778603076934814, 0.526690661907196, -0.8702556490898132, 0.649298906326294, 0.2616662085056305, -1.3964165449142456, 0.4446077346801758, -0.4089614152908325, -2.543748140335083, 1.621527910232544, 0.06764795631170273, 0.04376017674803734, 0.4331449866294861, 0.6519913673400879, -0.39104172587394714, 1.3661069869995117, -0.09150534868240356, -0.688482403755188, 0.18855106830596924, -0.29023393988609314, -1.175301432609558, 1.0894593000411987, 1.2995872497558594, 0.4906880259513855, -0.6253206729888916, 0.5810086131095886, 0.05025337263941765, -0.03983540087938309, -0.41682669520378113, -0.45456552505493164, 0.5089322924613953, 0.8498722314834595, 0.013595560565590858, -0.3796112835407257, 0.5660019516944885, -0.6188045144081116, 0.6300381422042847, 0.293222576379776, 1.104466438293457, 0.25968363881111145, -0.28937023878097534, 0.5408431887626648, -0.459188312292099, -0.5106740593910217, 0.03523522615432739, -0.604981541633606, 0.8635220527648926, 0.07153518497943878, 0.257066935300827, 0.43153202533721924, -0.10835019499063492, -0.40896111726760864, -0.8535892367362976, 0.9100493788719177, 0.18582738935947418, -0.9009436368942261, -0.5535684823989868, -0.2444390058517456, 0.029396671801805496, -0.29208430647850037, 0.7890001535415649, -0.4954439103603363, -1.3988683223724365, -0.6192572712898254, -0.5003939270973206, -0.5186861753463745, 0.5760250687599182, -0.024346139281988144, 0.4348587691783905, 0.11717614531517029, -1.7205185890197754, 0.7212243676185608, 0.16236364841461182, -2.163877487182617, -0.13342605531215668, -1.0277525186538696, 1.3600233793258667, 0.08463361859321594, -0.16819128394126892, 0.5526597499847412, 1.0021005868911743, -0.8687719106674194, -0.3724796772003174, -1.1356120109558105, -0.8194372057914734, 0.7258774638175964, 0.8298228979110718, -0.8201414942741394, 0.734485924243927, -0.037444762885570526, -0.8287957310676575, -0.5267621874809265, -0.14812709391117096, -2.0008745193481445, 0.08909741044044495, 0.1885463148355484, 0.15009605884552002, -0.05002054572105408, 1.486855149269104, 0.2666076123714447, 0.7958372831344604, -0.2281917929649353, 1.287315011024475, -0.8806176781654358, -1.3366285562515259, -0.2718546688556671, 0.16819888353347778, -0.9050835967063904, -0.44573068618774414, -0.21823038160800934, -0.9173552989959717, -0.522697389125824, 0.28868886828422546, 1.3195058107376099, -0.46437132358551025, 0.413141131401062, -0.21862910687923431, -0.10552486032247543, -1.133243441581726, 0.48535001277923584, 0.771174967288971, -1.666292428970337, 0.3524748980998993, -0.26497769355773926, 0.41512420773506165, -1.1958147287368774, 0.21379505097866058, 1.1586068868637085, 0.25655728578567505, -0.5702918767929077, 0.3804109990596771, -0.7405177354812622, 0.13254794478416443, -0.35368937253952026, 0.8142099976539612, 0.7185536623001099, -0.362151175737381, 0.34568682312965393, 0.6911361813545227, -0.21011342108249664, 0.017018001526594162, -0.3522677421569824, -0.6712876558303833, -0.3894491195678711, 0.14676526188850403, 0.29935887455940247, 0.8668025135993958, -0.01765439845621586, 0.3907370865345001, -0.4208134114742279, -0.0595039427280426, 1.2119179964065552, -0.31295859813690186, -0.9964825510978699, 1.2238000631332397, 1.0153114795684814, 0.038106996566057205, 0.34690624475479126, -0.023941662162542343, 0.6463817358016968, 0.23689688742160797, -0.03947319835424423, 0.00985038559883833, -0.7597305774688721, 0.4088345170021057, -0.060997579246759415, 0.11963683366775513, 0.3455246686935425, -0.7019279599189758, -1.5654046535491943, 0.013085377402603626, 0.0677320584654808, -0.3106933534145355, 0.42392218112945557, -0.9264960885047913, -0.8708229064941406, 0.10451935231685638, -0.03386516869068146, 0.38326409459114075, -0.30086877942085266, -0.2145586609840393, -1.0726479291915894, -0.38224127888679504, 0.4126494824886322, -0.41905921697616577, 1.4757119417190552, -0.24709245562553406, 0.20582662522792816, -0.1190245971083641, 0.21690072119235992, -0.6021305322647095, -0.41343966126441956, -0.1702812761068344, -0.9313367009162903, -0.23046544194221497, -0.666016697883606, -0.3514419198036194, 0.4432845711708069, -0.6144866943359375, 0.5219338536262512, 0.42282095551490784, -0.417447954416275, 0.17370449006557465, 0.5944753885269165, 0.2883077561855316, -0.47515445947647095, -0.7961448431015015, -0.5066919326782227, 0.36289283633232117, 0.32011231780052185, 1.184231162071228, -0.7991707921028137, 0.8578487038612366, 0.3157968521118164, -0.036619432270526886, -0.7698807120323181, -0.717308521270752, 1.6413718461990356, -0.7265959978103638, 0.8064799904823303, -0.9892094731330872, -0.11198867857456207, -0.3738861083984375, -1.2819911241531372, -0.3647754490375519, -0.2787969708442688, -0.31864747405052185, -0.004182322416454554, -0.38069939613342285, -0.11607318371534348, -1.0143380165100098, 0.19539174437522888, -0.03886636346578598, -0.022942010313272476, 0.8011327385902405, -0.06714046746492386, -0.9416502714157104, -0.48909232020378113, 0.06968844681978226, 0.18639391660690308, 0.7412006258964539, 1.4492632150650024, 1.4129191637039185, 0.09728570282459259, -0.32556235790252686, -0.4004557132720947, 0.6950355768203735, -0.7312738299369812, -0.23915517330169678, -1.2835502624511719, -0.2960623502731323, 0.5116958022117615], [1.0959097146987915, 2.141512870788574, -2.369123697280884, -0.24214313924312592, 0.09650363773107529, -0.33652403950691223, 0.6166852116584778, 0.6009204387664795, -0.15809154510498047, -0.3184838593006134, -0.9295205473899841, -0.2791118323802948, 0.187245175242424, 0.13278760015964508, 0.3234948217868805, 1.171920657157898, 0.6951027512550354, 0.4743579030036926, 0.4563932418823242, 1.1636601686477661, -0.3541277050971985, -1.1893352270126343, -0.5215287804603577, 0.5664096474647522, 0.09668101370334625, -0.2486603856086731, -1.4501076936721802, -0.5262928605079651, -0.8688660264015198, -0.882200300693512, 1.5345633029937744, 0.2850666046142578, 0.23697051405906677, 0.06546909362077713, -2.3006956577301025, 0.577837347984314, 1.001565933227539, 0.08768849074840546, -0.023176399990916252, -0.0799839124083519, 2.417327880859375, 0.30847957730293274, -0.7075988054275513, -1.2364780902862549, 0.44233423471450806, 0.26582029461860657, 0.948139488697052, -1.190954327583313, 0.2180953025817871, -0.600351095199585, 0.4177874028682709, -0.07670922577381134, 0.5678309202194214, 1.16354238986969, 0.8422271609306335, -0.9974088668823242, 0.22953712940216064, 0.27172327041625977, 0.034832101315259933, 0.5462608337402344, 1.188075065612793, 0.22304962575435638, 0.5803138017654419, 0.7631714344024658, 0.6200322508811951, -0.9643233418464661, 0.6062601208686829, 0.5083056688308716, 0.28041791915893555, 0.8838817477226257, 0.5148893594741821, 0.4620016813278198, -0.4558617174625397, -0.04815283045172691, -0.3826785683631897, 0.5337554812431335, 0.011872009374201298, 0.8732556700706482, -0.20871730148792267, 0.43827009201049805, -0.3046121597290039, 0.14484994113445282, 0.2333022505044937, 0.322553426027298, -0.3430606424808502, 0.038119375705718994, 0.2944825291633606, -0.5216878056526184, -0.3662968873977661, 1.6254559755325317, -0.06266789883375168, 0.9200268387794495, 0.6040864586830139, 0.004946576897054911, -0.09609472006559372, -0.922674834728241, -0.24705316126346588, -1.5815016031265259, -0.7645139694213867, -0.5097169876098633, -0.015415809117257595, -0.9355775117874146, 1.1966907978057861, 0.8939799666404724, 0.6136500835418701, 1.685060739517212, 0.5095372200012207, -1.2139724493026733, -0.11303495615720749, -0.15661250054836273, -0.5937102437019348, -0.28903305530548096, -0.7131924033164978, -1.393206238746643, -0.12371787428855896, 1.2611349821090698, 1.502474069595337, 0.9757561087608337, 0.13880929350852966, 0.466363787651062, -0.3596731126308441, -0.3648894429206848, -0.3762451112270355, -0.04674305394291878, 1.0824252367019653, 0.3938397765159607, -0.486421674489975, -0.20318637788295746, 0.34442138671875, -0.019831374287605286, 0.2989136874675751, 0.027241505682468414, 0.2399657517671585, 0.35668864846229553, -0.40822461247444153, 0.5368642210960388, -0.4917321801185608, -0.6528836488723755, -0.01655949465930462, 0.5234785676002502, 0.37809208035469055, -0.35106581449508667, -0.2284407764673233, -0.027996089309453964, 0.1543906182050705, -0.6334053874015808, 0.9813541769981384, -0.632705569267273, -0.9237186312675476, 0.5632216334342957, -1.5269347429275513, -0.08739759027957916, -0.4251856505870819, 1.4675525426864624, 0.7464307546615601, -0.3863988518714905, 0.6157293915748596, 0.13330969214439392, -0.3843384385108948, 1.0650235414505005, 0.40729475021362305, 0.1616082787513733, -0.5274813175201416, 0.77814120054245, 0.6577606797218323, -0.3725833296775818, 1.0636969804763794, -0.04586854577064514, -0.5579312443733215, 1.3573765754699707, 0.5898598432540894, -0.8964551091194153, -0.4248158037662506, 0.03172997385263443, 0.7985005378723145, -0.5182181596755981, 1.0669667720794678, -0.035450346767902374, -0.8785766959190369, -0.4232158362865448, 0.5281659364700317, -0.04175259917974472, 0.7690142393112183, 0.21917669475078583, 0.5018536448478699, -0.1420344114303589, 0.027857845649123192, -0.2398156374692917, -0.7971460819244385, -1.0860213041305542, -0.8770885467529297, -0.19777080416679382, -1.0809839963912964, 0.11928841471672058, -0.2952550947666168, -0.6883531808853149, 0.778322160243988, -0.060548290610313416, -0.8817458152770996, 0.18099191784858704, 0.08657940477132797, -0.09739206731319427, -1.1545308828353882, -0.16804440319538116, -0.6016520857810974, 0.1990305483341217, -0.5256116986274719, 0.4015333652496338, -0.9355437755584717, 0.7813302874565125, 0.30799877643585205, -1.288280725479126, -1.361045241355896, 0.41092735528945923, 0.06217292323708534, -1.4291348457336426, 0.46491914987564087, -0.40094053745269775, -0.16983261704444885, -0.3009835481643677, -0.45367342233657837, 0.13330692052841187, 0.9212274551391602, 0.06042899563908577, 0.8938357830047607, -0.7496350407600403, -0.34420305490493774, -1.0822614431381226, -0.7315510511398315, 0.0716480240225792, -0.5562499165534973, -0.9965410828590393, 0.31378668546676636, 0.3752976655960083, -1.3375164270401, 0.3964691162109375, -0.3489115834236145, -0.008323995396494865, -0.20241674780845642, 1.0177160501480103, 0.47191935777664185, 0.3829061985015869, -1.027530312538147, 0.12553630769252777, -0.7490187883377075, 0.4899435043334961, 0.8208906650543213, -0.44639527797698975, -0.336215078830719, 1.587717056274414, 1.4505366086959839, -0.538979709148407, 1.1737587451934814, -0.3326661288738251, -0.5486778616905212, -0.7671281099319458, -0.17670251429080963, 0.4283500909805298, -0.7998073101043701, 1.4041564464569092, 0.33096081018447876, -1.0542292594909668, 0.3169475495815277, -0.051406778395175934, 0.4928048849105835, -0.7783707976341248, 0.302910715341568, -1.246351718902588, 0.4781511425971985, -0.19107401371002197, -0.20315799117088318, 0.007973401807248592, -0.17390380799770355, 0.5219250321388245, -0.010534019209444523, -1.1281824111938477, -0.20056666433811188, 1.0417070388793945, -0.36787065863609314, 0.9283226728439331, -0.19279904663562775, -1.3357946872711182, -1.234606385231018, 0.08102510869503021, 0.49761834740638733, -0.1984870731830597, -0.33017221093177795, 0.9553442597389221, 0.3708517849445343, 0.11931607127189636, 0.23794911801815033, 0.030786758288741112, 0.3755294978618622, -0.21610412001609802, 0.5998159646987915, -0.0443514846265316, 0.3313028812408447, -0.7850165963172913, -0.48647382855415344, 0.1004360169172287, 0.5742433667182922, 1.3876721858978271, 0.6649681925773621, 1.165963053703308, -0.7493804097175598, -0.023973528295755386, -0.6853700280189514, -0.06334131956100464, -0.7200362086296082, -0.3822607100009918, -0.46420520544052124, -1.3181084394454956, -0.2562021315097809, -0.5977478623390198, -0.3018563389778137, 0.3337568938732147, 0.30482208728790283, 0.6917295455932617, 0.7288775444030762, -0.4309917390346527, -1.275529146194458, -1.2731350660324097, -0.41916966438293457, -1.0854707956314087, 0.48191696405410767, 1.4015579223632812, -2.1263492107391357, -0.05080171674489975, -0.3894611895084381, -0.25153154134750366, -0.07492858916521072, -0.12731081247329712, 0.6270543336868286, -0.8069531321525574, -0.0720810666680336, -0.2169748842716217, 1.2657761573791504, 0.13680095970630646, -0.1033843383193016, -0.6434482932090759, 0.7241002321243286, 0.24384184181690216, -0.15528810024261475, -0.8493810892105103, -0.33904653787612915, -0.36599576473236084, -0.21961383521556854, 0.49033740162849426, 0.2204567790031433, 0.42030659317970276, -0.3052207827568054, -1.4578791856765747, -0.0843917652964592, -0.812316358089447, -0.41464847326278687, 1.0045702457427979, -0.023998426273465157, 0.9874555468559265, -0.296581894159317, 0.32484203577041626, 0.6325318813323975, -0.035724300891160965, 0.0736275315284729, -0.4960639774799347, 0.7746027112007141, 1.1559240818023682, 1.5248011350631714, 0.2678888440132141, 0.03838605433702469, 0.034529123455286026, -0.997520387172699, 0.35332679748535156, -0.3750426173210144, 0.26646220684051514, -0.038131233304739, -0.5291118621826172, -0.15396113693714142, -0.634605884552002, 0.38881394267082214, -0.001300943549722433, 0.5091950297355652, 0.5777713656425476, 0.03599085658788681, 0.24344463646411896, 0.7898921966552734, 0.6144307255744934, -0.4806152284145355, -0.465904176235199, 0.08196251094341278, 0.7002516388893127, -0.5624464154243469, 0.5723031163215637, -0.2560611963272095, -1.1749449968338013, 0.17658177018165588, -0.7259589433670044, -1.0635459423065186, -0.18800540268421173, 0.6050633192062378, 1.3611679077148438, -1.0499897003173828, -0.4339604675769806, -0.5764757990837097, 0.8793994188308716, 0.9835861325263977, 0.3630511462688446, 1.07760751247406, 0.5266740322113037, -0.4484647512435913, 0.3551337420940399, 0.08463471382856369, 1.2576394081115723, -0.287261426448822, -0.11897537857294083, -0.27117490768432617, 0.0057562654837965965, 0.5757478475570679, -0.9729551076889038, 0.3939622938632965, -0.0296114981174469, 0.11529693007469177, -0.4785933494567871, 0.3951073884963989, -0.3045588731765747, 1.933061122894287, 0.1345946043729782, -0.4786635637283325, -0.6261057257652283, 0.01400630921125412, -0.46748700737953186, 0.4084782898426056, 1.057714819908142, -0.6501104235649109, -0.344567209482193, -0.0012882091104984283, 0.5152732729911804, 0.3684846758842468, -0.02336743474006653, 0.173968106508255, 0.11430229246616364, 0.515317440032959, 0.12158522754907608, 0.7041884064674377, 0.2004755735397339, 1.2338358163833618, 0.8729931712150574, 1.4206782579421997, -0.2594788670539856, -0.016502730548381805, 0.9241505861282349, 0.28285881876945496, 0.5856086015701294, 0.9288887977600098, 0.29553505778312683, 0.9343931078910828, -0.5960025787353516, -0.46453744173049927, 0.7809939980506897, -0.0021227169781923294, 0.4283948242664337, -0.06801965832710266, 0.48781660199165344, -1.1616765260696411, -0.06769400835037231, 0.11392348259687424, -0.5533739924430847, 0.2742359936237335, -0.07491622120141983, 0.7085224390029907, 0.9743372201919556, -0.7006791830062866, 0.1483089029788971, -0.8366864323616028, -0.26061245799064636, -0.7778955101966858, -0.3849543333053589, 0.5962398052215576, 0.15027517080307007, 0.914013147354126, 0.8416606187820435, -0.3081327974796295, -1.018826961517334, -0.10604092478752136, -1.3342982530593872, 0.3853462338447571, -0.21230106055736542, -0.046130307018756866, -0.9327922463417053, -0.1262357234954834, -0.28571751713752747, -0.3214598000049591, -0.8183396458625793, -0.2856390178203583, -1.0862925052642822, -1.0826406478881836, 0.7963393330574036, 0.06937576085329056, 0.39664897322654724, 0.90983647108078, 0.5903892517089844, 0.005425659473985434, 0.522197425365448, -1.087593674659729, -0.3240281939506531, 0.7311522364616394, 0.5021852254867554, -0.5157580971717834, 0.17800486087799072, -0.8610702157020569, 0.20951209962368011, 0.0703561082482338, -0.038662441074848175, 0.7135806679725647, 0.6236461400985718, 1.308292269706726, -1.0187900066375732, -0.31971079111099243, 0.8485345840454102, -0.9921121001243591, 0.9696630239486694, 0.6630457639694214, -0.6748164296150208, -0.07153283804655075, -0.6278417110443115, -1.4778956174850464, 1.7200188636779785, 0.2970646023750305, 0.18915435671806335, 0.5411453247070312, 0.8718830943107605, -0.031455688178539276, 0.9221346974372864, -0.3629954159259796, 0.0011115269735455513, 0.10334132611751556, 0.07584535330533981, -0.38106635212898254, -0.025947852060198784, 0.9946402907371521, 0.05795183777809143, -0.4812379777431488, -0.02552301064133644, -0.31663262844085693, -0.214509055018425, -0.7205619215965271, -0.008002279326319695, 0.3690188229084015, 0.31662625074386597, 0.38446274399757385, -0.1877351999282837, 0.525869607925415, -1.0776151418685913, 0.10017040371894836, 0.6954393982887268, 0.6516902446746826, 0.39661070704460144, -0.3093441426753998, 1.0966532230377197, -0.7537133097648621, 0.23962128162384033, -0.25808265805244446, -0.41427165269851685, 1.106622576713562, -0.047062791883945465, -0.015216761268675327, 0.5266460180282593, 0.18083487451076508, -0.9270676970481873, -0.9918745160102844, -0.0811956524848938, 1.341077446937561, -0.9543097019195557, -0.8765451908111572, -0.3610944449901581, 0.007543180603533983, 0.07313786447048187, 0.2264205813407898, 0.11334218829870224, -1.1049933433532715, -1.3526687622070312, -0.13759441673755646, -0.4897456765174866, 1.127493143081665, -0.3468776047229767, 0.5653765797615051, 0.006676798686385155, -1.5590399503707886, 0.6874943971633911, -0.010503647848963737, -1.5934289693832397, 0.38239964842796326, -0.5839687585830688, 0.4174756705760956, -0.008586314506828785, 0.08346443623304367, 0.059022314846515656, 1.2912845611572266, -0.7174807190895081, -0.8378679752349854, -1.4817906618118286, -0.7717861533164978, 0.1276378035545349, 1.5311012268066406, -1.1121400594711304, 1.8411097526550293, -0.627157986164093, -0.19047966599464417, -0.30942007899284363, -0.01837347075343132, -0.33636045455932617, -0.012777951546013355, -0.2790079712867737, -0.1548253297805786, 0.4615718722343445, 0.8452108502388, 1.041358232498169, 1.4126273393630981, 0.23478421568870544, 1.2466011047363281, -1.026746392250061, -0.6233765482902527, -0.12360823154449463, -0.0645604282617569, -0.6877543330192566, -0.6937485337257385, -0.0077803065069019794, -0.8439880609512329, -0.8045617341995239, -0.3506562113761902, 1.2258403301239014, -1.1854655742645264, 0.7460061311721802, 0.3802102506160736, -0.5363979339599609, -0.7824856042861938, 0.05097631737589836, 0.09662795811891556, -0.4421705901622772, 0.27650582790374756, 0.041021693497896194, 0.15581350028514862, -0.8718594908714294, -0.4725518226623535, 0.6704597473144531, 0.07565389573574066, -0.42094239592552185, 0.22743678092956543, -0.015808148309588432, 0.38975390791893005, -0.5266897082328796, 1.1319222450256348, 0.787608802318573, -0.17202728986740112, 0.07227545231580734, -0.17178286612033844, -0.9497984051704407, 0.27452611923217773, -0.15097029507160187, -0.22647066414356232, -0.44100135564804077, 0.6979242563247681, 0.45512521266937256, -0.17890691757202148, 0.09677529335021973, 0.21025831997394562, 0.4766652584075928, 0.08649270981550217, 1.1384388208389282, -0.6934916973114014, 0.1320054978132248, 1.432702660560608, 1.1040648221969604, -0.5566328763961792, 0.6965308785438538, -0.3515738546848297, 0.22381484508514404, 0.5672568678855896, 0.19927246868610382, 0.1491767317056656, -0.7676494121551514, 0.3609967827796936, 0.37529873847961426, -0.3210360109806061, -0.4100104570388794, -0.7726694345474243, -1.6855648756027222, -0.10715460032224655, -0.31701263785362244, 0.09351260215044022, 0.5140453577041626, -0.971969723701477, -0.599814772605896, 0.04142744839191437, 0.08404990285634995, 0.0005183180328458548, -0.12422909587621689, 0.41194459795951843, -0.4585319757461548, -0.3149164319038391, 0.7980296015739441, -0.18323016166687012, 0.9424900412559509, -0.36277616024017334, -0.5073296427726746, -0.3284895718097687, -0.5507960915565491, 0.3124040365219116, -0.09880039095878601, -0.6510022878646851, -0.888712465763092, 0.47484835982322693, -0.6835448741912842, -0.13193799555301666, 0.13056062161922455, 0.4201776385307312, 0.35140830278396606, -0.22354763746261597, -0.0361587256193161, 0.46582522988319397, 0.5325469374656677, 0.41433650255203247, -0.39338040351867676, -0.8906688690185547, -1.182633399963379, 0.1349092721939087, -0.2927819490432739, 0.340090811252594, -0.505466878414154, 0.825959324836731, 0.21186526119709015, -0.664797306060791, -0.4588845670223236, -0.6332001686096191, 0.849263072013855, 0.3240344822406769, -0.11834016442298889, -1.2261731624603271, -0.18527962267398834, -0.10540338605642319, -1.22677481174469, -0.18460862338542938, -0.4208734333515167, -0.2110302895307541, -0.19915887713432312, -0.8992457985877991, -0.9290197491645813, -0.9636677503585815, 0.09630965441465378, 0.4874054789543152, 0.18487779796123505, 0.7375420331954956, -0.4336772561073303, -1.1915278434753418, 0.08320940285921097, 1.5045838356018066, 0.2560155987739563, 0.37660717964172363, 1.2882112264633179, 1.1503952741622925, 0.2559204399585724, -0.4711957275867462, -0.22602826356887817, 0.10690710693597794, -1.1320565938949585, 0.6469547152519226, -0.8133674263954163, -0.44523897767066956, -0.4064346253871918], [-0.3723863661289215, 2.2544918060302734, -2.53059458732605, -0.923529863357544, 0.10140477120876312, 0.002910822629928589, 1.4296375513076782, 0.4884054958820343, 0.03463757410645485, -1.4978984594345093, -0.056955769658088684, -0.1998804360628128, 0.5740365386009216, 0.6957622766494751, 0.15328101813793182, 0.3251182734966278, 0.3071214556694031, -0.6766011714935303, 0.5850779414176941, 0.9235190749168396, 0.19669322669506073, -1.402207851409912, -0.18484815955162048, -0.2179737538099289, 0.22423337399959564, -0.21546384692192078, -1.3879462480545044, 0.28273552656173706, -0.6945500373840332, -0.8439441323280334, 1.769718885421753, -0.5371209979057312, -0.02877913974225521, 0.13438327610492706, -0.9579429030418396, -0.3088705837726593, 0.34565794467926025, 0.0540100634098053, -0.3414762020111084, -0.06548518687486649, 2.5465080738067627, -0.06553728878498077, -0.4512960910797119, -1.3275189399719238, 0.6382509469985962, 0.05676031485199928, 0.12663981318473816, -1.207942247390747, -0.10102318972349167, -0.8292229175567627, 0.13618284463882446, -0.00836188904941082, 1.1925128698349, 0.6968124508857727, 1.1864875555038452, -1.016261100769043, 0.3298822045326233, 1.3988721370697021, 0.2580845355987549, 0.11127892136573792, 0.5428006052970886, 0.9413189888000488, 0.574997067451477, 1.4734574556350708, 0.4525604248046875, -0.6900373101234436, 0.6194140315055847, 0.014919149689376354, 0.21273669600486755, 0.27437442541122437, 0.13358387351036072, 0.22215533256530762, -0.2888962924480438, -0.525907576084137, -1.2285773754119873, 0.06231345608830452, -0.23399710655212402, 0.40889424085617065, 0.03843842074275017, 0.7544354796409607, -0.2430209219455719, -0.13665300607681274, 0.0056846244260668755, -0.006390061229467392, 0.47265443205833435, 0.5947560667991638, 0.3647483289241791, -0.4168488383293152, -0.6707624793052673, 1.6931192874908447, 0.002546636387705803, -0.010367038659751415, 0.44234922528266907, 0.02997034229338169, -0.519119143486023, -0.7080943584442139, -0.42986807227134705, -0.44745975732803345, -0.01905650645494461, -0.8574382066726685, -0.49620378017425537, -0.4806835949420929, 0.2790418565273285, 0.6976834535598755, -0.2328578531742096, 2.1925811767578125, 0.1332404911518097, -0.5658389329910278, -0.8389632105827332, -0.21313564479351044, -0.12106171995401382, 0.187638059258461, 0.1031675934791565, -0.13326673209667206, -0.3624417781829834, 0.7560604810714722, 1.5216363668441772, 0.34846991300582886, 0.15145398676395416, 0.11163129657506943, -0.28933537006378174, -1.1078683137893677, -0.4380984306335449, 0.10290568321943283, 1.8582231998443604, -0.05997907742857933, -1.0710521936416626, -0.3611527681350708, 0.10776523500680923, -0.1404956728219986, -0.007249265909194946, 0.12569384276866913, -0.09464527666568756, 0.4825090765953064, -0.18575701117515564, 1.009466290473938, 0.486910879611969, -1.066042423248291, 0.4161951541900635, 0.20553797483444214, -0.23172175884246826, -0.4477018415927887, -0.6626135110855103, -0.9737972021102905, 0.2782866954803467, -0.6337147355079651, 0.8401069045066833, 0.14513875544071198, -0.1732693463563919, 0.19858551025390625, -1.8308359384536743, -0.14218217134475708, 0.3215556740760803, 1.5576248168945312, 0.484898179769516, -0.9023062586784363, 0.35953837633132935, 0.4838407337665558, 0.5771051645278931, 0.7870330214500427, 1.0374523401260376, -0.43554598093032837, -0.8104262948036194, 0.9729456901550293, 1.2920514345169067, -0.8556274771690369, 0.7277746796607971, 0.19296981394290924, -0.4932481646537781, 0.49365368485450745, 0.18721161782741547, -0.19427284598350525, -0.46590498089790344, 0.7374765872955322, -0.10031615942716599, -1.1201846599578857, 1.2283529043197632, -0.46473804116249084, -0.8879565596580505, -1.3837370872497559, 0.7489610314369202, -0.05293118953704834, -0.13069431483745575, 0.18127791583538055, 0.5541865229606628, -0.6305062174797058, 0.0703018456697464, -1.079309344291687, 0.21498025953769684, -0.4877854287624359, -0.773785412311554, -0.015154695138335228, -1.5876491069793701, 0.17312631011009216, -0.4483749270439148, -0.9666467308998108, 1.085954189300537, -0.2462049126625061, -0.4795699715614319, -0.023577624931931496, -0.4217230975627899, -0.16181713342666626, -1.1762819290161133, -0.1238497868180275, -0.8540805578231812, 0.11526674777269363, -0.4929066002368927, 0.6611466407775879, -0.4642269015312195, 0.9771226048469543, 0.573266863822937, 0.10019002854824066, -0.6924280524253845, 0.42471081018447876, 0.5113717317581177, -0.9635102152824402, 0.2923434376716614, 0.021209686994552612, -0.25185489654541016, 0.041724324226379395, 0.10873634368181229, 0.37660133838653564, 0.8082126379013062, 0.30553677678108215, 0.8545008301734924, -0.27129343152046204, -0.6276001930236816, -0.29138508439064026, -0.6863864660263062, 0.20907019078731537, -0.3681219816207886, -1.0034723281860352, 0.5710111260414124, 0.20371989905834198, -0.652505099773407, 1.1127018928527832, -0.28208866715431213, 0.2494659274816513, 0.47728970646858215, 1.0798914432525635, 0.7027501463890076, 0.2014995813369751, -0.6943414807319641, -0.8132501244544983, -0.36265265941619873, -0.3903588652610779, 0.6740551590919495, -0.33717653155326843, 0.3223794996738434, 1.750348448753357, 0.9707763195037842, -0.2147199660539627, 0.22231124341487885, -0.7339682579040527, 0.041895490139722824, -0.9583987593650818, 0.059216130524873734, -0.11032944172620773, -0.9111279249191284, 1.3846657276153564, 0.48159709572792053, -1.8423986434936523, -0.5122196078300476, -0.2964380383491516, 0.09070783853530884, -0.7445864677429199, -0.49166417121887207, -0.3676203191280365, 0.08884114027023315, 0.0813026949763298, 0.010434497147798538, -0.47265303134918213, -0.29404041171073914, 1.0375596284866333, -0.40113165974617004, -0.5219353437423706, 0.18395766615867615, 0.8238527178764343, 0.02346445806324482, 1.2390472888946533, -0.017392344772815704, -1.6180247068405151, -0.828088641166687, 0.3017481863498688, 0.6804797053337097, 0.42417383193969727, -0.07030589878559113, -0.16889016330242157, 1.01918625831604, 0.17091532051563263, 0.5209524035453796, 0.4519617259502411, -0.016336629167199135, 0.062489550560712814, -0.2144172042608261, 0.1906357705593109, 0.6123842000961304, -1.009497046470642, -0.6694176197052002, -0.1284058541059494, 0.8859688639640808, 1.1662846803665161, 1.3342734575271606, 1.1316603422164917, -0.1406198889017105, 0.3253333568572998, -0.1425025910139084, -0.2891133427619934, -0.33135977387428284, -0.6957498788833618, -0.5499367713928223, -0.9939659833908081, -0.21354679763317108, -0.5243109464645386, -0.009628650732338428, 1.2267462015151978, 0.05341889336705208, 1.1173489093780518, 0.10506917536258698, -0.5458166599273682, -1.0206687450408936, -0.6469175815582275, -0.6436303853988647, -0.6206746101379395, 0.7306267023086548, 1.146987795829773, -0.6456022262573242, 0.05965554714202881, -0.07791253924369812, 0.5754518508911133, 0.9375780820846558, 0.3940723240375519, 0.10100710391998291, -1.3150999546051025, -0.46141529083251953, 0.16805340349674225, 1.0732494592666626, -0.29541686177253723, 0.10123979300260544, -0.4752453863620758, 0.7746497392654419, 1.1584749221801758, -0.1982853263616562, -0.29919466376304626, -0.002330780029296875, -0.6424344182014465, -0.35267752408981323, -0.25723057985305786, -0.14495381712913513, 0.9958478808403015, -0.10292088985443115, -0.36863332986831665, -0.2108100801706314, -0.47872841358184814, -0.49918946623802185, 0.5050526261329651, 0.13558639585971832, 1.091425895690918, -0.14543598890304565, 0.7071505188941956, 1.4454843997955322, 0.4502519965171814, 0.5577289462089539, -2.01656174659729, 0.5598326325416565, 0.9146445989608765, 0.718837559223175, 0.6113347411155701, 0.5230607390403748, 0.30532026290893555, -1.117563009262085, -0.48660603165626526, -0.1191079244017601, 0.6535320281982422, 0.6007646918296814, 0.2993094027042389, -0.3402823805809021, -0.09153925627470016, 0.5115841627120972, -0.3431670367717743, 0.607996940612793, 0.43382948637008667, -0.5552705526351929, -0.2364426702260971, 0.9277711510658264, 0.032560303807258606, -0.4122682213783264, -0.8472073078155518, 0.363348126411438, 0.24663646519184113, -0.18410877883434296, 0.023582449182868004, -0.5855649709701538, -0.045323941856622696, 0.08895085752010345, 0.13234864175319672, -0.7420644164085388, -0.8536865711212158, 0.10427214205265045, 1.0599452257156372, -1.3544769287109375, -0.6420531868934631, -0.8183232545852661, 0.4303489923477173, 0.42438894510269165, -0.39443448185920715, 0.5405547618865967, -0.03586101531982422, -0.20459435880184174, -0.44924283027648926, 0.20861653983592987, 1.3633010387420654, 0.38246625661849976, -0.1667340099811554, -0.14611031115055084, 0.51564621925354, 0.45880717039108276, -0.42215263843536377, -0.5025412440299988, -0.026157226413488388, -0.8971932530403137, 0.41627568006515503, 0.30472731590270996, -0.37048855423927307, 1.420219898223877, -0.47851189970970154, 0.0848333090543747, 0.41125091910362244, -0.3292613625526428, -1.0483238697052002, 0.20701144635677338, 0.12624257802963257, -0.050554800778627396, -0.19720569252967834, -0.11360543221235275, 0.4318270981311798, 0.1971317082643509, 0.4334847331047058, 0.5161882638931274, 0.17745669186115265, -0.240748330950737, -0.19186708331108093, 0.6376968622207642, 0.18583890795707703, 0.3151896595954895, 1.5083277225494385, 0.9925724864006042, -0.5853139758110046, -0.8196212649345398, 0.684020459651947, 0.07209789007902145, -0.1774844378232956, 1.1871484518051147, 0.7283732891082764, 1.0669050216674805, -1.668575644493103, -0.18574118614196777, 0.7582062482833862, -0.3225126564502716, 0.9937041401863098, -0.05927562341094017, 0.37687742710113525, -1.1026382446289062, -0.14196433126926422, 0.16068850457668304, -0.20282095670700073, 1.0038659572601318, 0.08484179526567459, -0.020450014621019363, 0.7157711386680603, -0.5794384479522705, -0.24843895435333252, -0.5704062581062317, -0.42214855551719666, -0.20611633360385895, 0.2152450829744339, 1.1805038452148438, 0.8160091042518616, 0.8753515481948853, 0.9153919816017151, -0.5078579783439636, -0.9319283366203308, 0.6046684980392456, -1.1351711750030518, -0.13692665100097656, -0.057931847870349884, -0.39721864461898804, -0.1097119003534317, -0.9266810417175293, -0.31802836060523987, 0.15717054903507233, -0.6586356163024902, -0.5675969123840332, -0.6939307451248169, -0.9804955720901489, 0.18619059026241302, -0.06680253148078918, 1.3975096940994263, 0.7904037833213806, 0.3348918855190277, -0.029235634952783585, 0.04562656581401825, -0.8033729195594788, -0.2513505816459656, 0.2757502496242523, -0.2915542423725128, 0.1999569833278656, -1.1053930521011353, -0.5980687141418457, 0.4575185179710388, 0.49540582299232483, 0.07036746293306351, 0.1992998719215393, 1.188855767250061, 1.77675199508667, -0.7498349547386169, -0.18182134628295898, 0.8529885411262512, -0.5258722305297852, 0.6735453009605408, 0.519203245639801, -0.8098804950714111, -0.06279660761356354, -0.11968177556991577, -2.301119327545166, 1.6989270448684692, -0.02005898952484131, -0.586903989315033, 0.6924272179603577, 0.8789438009262085, -0.3392089903354645, 1.4531018733978271, -0.5885007977485657, -0.4729902148246765, 0.17376279830932617, -0.2873535752296448, -1.6089354753494263, 0.36628252267837524, 0.7954242825508118, -0.06954269111156464, -0.8471983671188354, 0.6288950443267822, 0.018288597464561462, 0.11464524269104004, 0.5982035994529724, -0.37919870018959045, 0.7559922337532043, 0.39159321784973145, 0.04077534005045891, -0.6638134121894836, 0.8798955678939819, -1.0986608266830444, 0.4480205476284027, 0.3693060278892517, 0.9683871269226074, 0.2734251916408539, -0.8928183913230896, 0.7026383876800537, -0.6191901564598083, -0.17489251494407654, 0.1468367576599121, -0.5552339553833008, 0.5286176204681396, 0.28611263632774353, 0.6477799415588379, 0.3463573753833771, -0.34860438108444214, -0.42012733221054077, -0.7817266583442688, -0.12418895959854126, 0.15155689418315887, -1.4463865756988525, -0.07820657640695572, -0.48485466837882996, -0.21131961047649384, 0.25776827335357666, 0.3614465594291687, -0.21794560551643372, -1.3505781888961792, -0.9376106858253479, -0.8402333855628967, -0.6672884225845337, 0.8770828247070312, -0.28154125809669495, 0.4568088948726654, -0.11266979575157166, -1.583030104637146, 0.8315363526344299, -0.6725620031356812, -1.9992609024047852, -0.22440941631793976, -0.012111409567296505, 1.269429087638855, -0.1906575858592987, 0.1140093058347702, 0.6435978412628174, 0.8215177059173584, -0.0753663033246994, -0.55816251039505, -1.3478790521621704, -0.5752049684524536, 0.7567416429519653, 0.5492613911628723, -0.6188027262687683, 1.6699256896972656, 0.3497089743614197, -0.34770894050598145, -0.19497200846672058, 0.17405307292938232, -1.7868770360946655, -0.19660770893096924, 0.267142117023468, -0.1215563416481018, 0.28764966130256653, 1.232292890548706, 0.1878330260515213, 1.1225866079330444, 0.37623533606529236, 1.2381349802017212, -0.4311123192310333, -1.012593150138855, 0.1527271866798401, 0.08658691495656967, -0.8880807757377625, 0.07187715917825699, 0.2851578891277313, -0.9225649237632751, -0.9033225178718567, 0.3223186135292053, 1.0993326902389526, -0.7464540600776672, 0.688743531703949, -0.23737041652202606, 0.573189914226532, -1.5674285888671875, 0.398519903421402, 0.6949756741523743, -0.8205738067626953, -0.11019408702850342, 0.2802073657512665, 0.6340662837028503, -1.2513976097106934, 0.0626121535897255, 0.5802998542785645, -0.06734585762023926, -0.6213926672935486, -0.13389024138450623, -0.3155476152896881, 0.33551374077796936, -0.5783042311668396, 1.6401458978652954, 0.6961238384246826, -0.17642100155353546, 0.10427329689264297, 1.0425407886505127, -0.005365659948438406, 0.4346536695957184, -0.33241650462150574, -0.37333622574806213, -0.9071770310401917, 0.3799302577972412, 0.16177605092525482, 0.23761680722236633, -0.6598287224769592, 0.2604881525039673, -0.20497947931289673, -0.4115292429924011, 2.02646803855896, -0.47220200300216675, -0.604500412940979, 0.9792886972427368, 0.4828420877456665, -0.07805013656616211, 0.7554001808166504, -0.23859310150146484, 0.6622813940048218, -0.056265462189912796, 0.5606634020805359, 0.10151338577270508, -0.5178192853927612, 0.06698460131883621, 0.7518283724784851, -0.39656519889831543, 0.5871743559837341, -0.4471430480480194, -1.2716578245162964, -0.8790154457092285, -0.5331107974052429, -0.6259339451789856, 0.727940022945404, -0.38760602474212646, -0.5519428253173828, -0.3518770933151245, -0.21942541003227234, -0.0612955167889595, -0.9455339312553406, -0.08955660462379456, -1.07802152633667, -0.7948032021522522, 0.5614472031593323, -0.5214546918869019, 1.1827435493469238, 0.09945638477802277, 0.8208243250846863, -0.32165271043777466, -0.3596510589122772, -0.10410548001527786, 0.0001785573549568653, -0.19189250469207764, -0.6222345232963562, 0.8183398246765137, -0.8019896149635315, 0.15772832930088043, 0.33623263239860535, -0.7101964950561523, 0.4952491819858551, -0.13405348360538483, -1.2417356967926025, 0.14900819957256317, 0.22150388360023499, 0.10181549191474915, -0.4068397879600525, -0.7042093873023987, -0.8971533179283142, 0.66362464427948, 0.3705858290195465, 0.9121537208557129, -0.7087903022766113, 0.7638970017433167, 0.5183908343315125, -0.29979759454727173, -0.9897884726524353, -0.6891865134239197, 1.3427743911743164, -0.47291937470436096, 0.6702263355255127, -0.8255305290222168, 0.047991566359996796, -0.15460939705371857, -1.1804460287094116, -0.32044121623039246, -0.12169798463582993, -0.5156208872795105, -0.031358201056718826, -0.7291830778121948, -0.34527716040611267, -0.8268617391586304, 0.28569480776786804, -0.0443619005382061, 0.10322942584753036, 0.674892246723175, 0.2123442143201828, -0.7348799705505371, -0.8756810426712036, 0.20395882427692413, 0.2619740962982178, 0.6781546473503113, 1.2477020025253296, 1.3390116691589355, 0.08796478062868118, -0.20794008672237396, -0.4190950095653534, 0.154244065284729, -0.6043580174446106, -0.06693549454212189, -1.0559748411178589, -0.541242241859436, -0.05815467610955238], [-0.6466774344444275, 0.7929073572158813, -2.3725924491882324, -0.8073758482933044, 0.4500918984413147, -0.49151164293289185, 0.7349882125854492, -0.0012904815375804901, -0.7880847454071045, -0.28613466024398804, -1.3344005346298218, 0.49583932757377625, -0.5754044055938721, 0.1957225799560547, -0.27105867862701416, 0.8911151885986328, 1.0074611902236938, -0.1854296773672104, 0.7034185528755188, 0.7448040246963501, -0.5433462858200073, -1.106935739517212, 0.7779027223587036, 0.4329890012741089, 0.33496084809303284, 0.45798733830451965, -1.5011621713638306, -0.7333377003669739, -0.5554541945457458, -0.55805903673172, 1.9039968252182007, 0.25640833377838135, -0.46148526668548584, -0.1914229542016983, -1.3635835647583008, -0.5604103803634644, 0.4429357051849365, -0.05352296307682991, 0.18948984146118164, 1.1429224014282227, 1.35666024684906, 0.5456544160842896, -0.7880585193634033, -1.8348042964935303, 0.5394415259361267, -0.7144795656204224, 0.09324418753385544, -0.92400062084198, -0.5432806015014648, -1.3931559324264526, 0.5382136106491089, 0.32646024227142334, 0.5111181735992432, 0.11313968896865845, 1.4352083206176758, -0.7309923768043518, -0.14452825486660004, 0.9452807903289795, 0.4635547995567322, -0.29550501704216003, 1.5441792011260986, 0.19311147928237915, -0.25168725848197937, 0.26732149720191956, 0.5164057612419128, 0.1136353462934494, 0.6750127077102661, 0.36821675300598145, -0.43079304695129395, -0.09208569675683975, 0.34102532267570496, 0.044837549328804016, -0.6601642966270447, 0.3409768044948578, -0.6134703755378723, 0.5387156009674072, 1.1832387447357178, 0.03306533023715019, -0.24228891730308533, 0.36447519063949585, -0.3342956006526947, -0.07373624294996262, 0.12550559639930725, -0.12913063168525696, -0.2412494271993637, 0.20822595059871674, 0.35414063930511475, 0.6172224879264832, -0.7809507250785828, 2.01267409324646, 0.07622768729925156, 0.3569236993789673, 0.9738278388977051, -0.5974876880645752, 0.21920686960220337, -0.7090116143226624, -0.07987166196107864, -0.9561966061592102, -0.8902185559272766, -0.6026334166526794, 0.05805196985602379, -0.567278265953064, 0.6989962458610535, 0.2836059033870697, 0.7485577464103699, 1.3572077751159668, 0.43462657928466797, -0.32730767130851746, -0.26922059059143066, 0.18821030855178833, -0.09382788091897964, -0.10050907731056213, -1.3035165071487427, -0.7952826619148254, 0.5044186115264893, 1.1348645687103271, 1.0175962448120117, -0.5675690770149231, -0.021779270842671394, 0.7601314187049866, -0.6896531581878662, -0.32449620962142944, -1.128908634185791, 0.5089355707168579, 1.2780016660690308, 0.6298897862434387, -0.06081903725862503, -0.14341358840465546, 0.14947637915611267, -0.10858942568302155, 1.140586018562317, 0.3682138919830322, -0.07307994365692139, 0.48456260561943054, 0.11936648935079575, 1.219494104385376, -0.24497640132904053, -1.0175899267196655, 0.03393522650003433, -0.5628749132156372, -0.488958477973938, -0.47960934042930603, -0.8792271614074707, -0.34766143560409546, 0.39551976323127747, -0.6698969602584839, 0.4354352056980133, 0.2721119821071625, -0.7218141555786133, 0.2679320275783539, -1.0226870775222778, 0.07892841845750809, 0.21843576431274414, 0.5362939238548279, 0.5496541261672974, 0.4428638219833374, 0.40972957015037537, 0.025130392983555794, -0.08337213844060898, 1.2300732135772705, 0.7086376547813416, -0.18360809981822968, -0.594327449798584, 1.0093730688095093, 0.6843879818916321, -0.657680332660675, 0.9590311646461487, 0.24147899448871613, 0.28223949670791626, 0.30741065740585327, -0.37818795442581177, -1.2346431016921997, -0.33276131749153137, 0.4248884916305542, -0.12460093200206757, -0.7183137536048889, 0.33239901065826416, -0.6298204064369202, -1.4449024200439453, -0.9161653518676758, 0.31018179655075073, -0.7016996741294861, 0.3235442042350769, -0.178517684340477, 0.5886000990867615, -0.3708772361278534, 0.2957463562488556, 0.22474651038646698, -0.8202781677246094, -1.3767119646072388, -1.0568273067474365, -0.6334450244903564, -1.3001933097839355, -0.23854242265224457, -0.3055588901042938, -0.8135958909988403, -0.1961510330438614, -0.7651929259300232, -0.4405207335948944, 0.21077708899974823, -0.16252361238002777, -0.5351480841636658, -0.6253445744514465, 0.482340931892395, -0.41997653245925903, 0.6666219234466553, -0.7502243518829346, 0.24242721498012543, -0.7312555909156799, 0.2407686859369278, 1.6455501317977905, 0.5694254636764526, -1.1367777585983276, 0.7459772825241089, -0.08060998469591141, -1.947800874710083, 0.6186310052871704, -0.1468818038702011, -0.5547375082969666, 0.18276973068714142, 0.5597624778747559, 0.5786397457122803, 0.4841429889202118, 0.2234739363193512, 0.3505047857761383, 0.08867280185222626, -0.9989883899688721, -0.41450411081314087, -0.7463074922561646, -0.6317028403282166, -0.8484904170036316, -0.6124957203865051, 0.8944221138954163, 1.0652031898498535, -1.1489359140396118, 0.18617157638072968, -0.8316879272460938, 0.5222846865653992, 0.13876782357692719, 0.339960515499115, 0.2214486449956894, 0.8184511065483093, -1.044913649559021, 0.11485772579908371, -0.9566157460212708, -0.6733705997467041, 0.6817888021469116, -0.15163104236125946, 0.5761160850524902, 1.2805256843566895, 1.0369067192077637, -0.4086134135723114, -0.5172678828239441, -0.0950484573841095, -0.15545694530010223, -0.9705240726470947, -0.5205791592597961, 0.25354287028312683, -0.9641983509063721, 1.0474845170974731, 0.5138497352600098, -0.4813731014728546, -0.40679019689559937, 0.17733538150787354, -0.1782376766204834, -0.3835884630680084, 0.08408664166927338, -0.8663902878761292, 1.098557472229004, 0.007179230451583862, -0.5637162923812866, 0.24605585634708405, 0.22350025177001953, 0.4215434491634369, -0.3587031662464142, -0.14199581742286682, -0.48897597193717957, 0.7779192924499512, -0.3616006076335907, 0.25641849637031555, -0.3196892738342285, -1.5525578260421753, -0.8219019770622253, -0.7313295006752014, 0.8616233468055725, -0.016783030703663826, -0.35617852210998535, 0.24816705286502838, 0.48500722646713257, -0.3094947636127472, 0.27713096141815186, 0.5848109126091003, 0.9577704668045044, -0.2045908421278, 0.21733620762825012, 0.10924771428108215, 0.7599243521690369, -1.2211960554122925, -0.8320967555046082, 0.009363335557281971, -0.009864618070423603, 1.1669968366622925, 0.08777786046266556, 1.449161171913147, -0.897843599319458, -0.21611754596233368, -1.319313406944275, 0.25120919942855835, -1.0207593441009521, -0.12892811000347137, 0.04276452213525772, -1.1773154735565186, -0.6371715664863586, -1.0467760562896729, 0.05141431838274002, 0.29603075981140137, -0.9851942658424377, 0.5725189447402954, 0.8962704539299011, -0.2573050856590271, -1.7776497602462769, -0.7442936301231384, 0.388210266828537, -1.2042224407196045, 0.8837597370147705, 1.4676584005355835, -0.9356374740600586, -0.2815706431865692, 0.20538601279258728, -0.5215804576873779, 1.203017234802246, -0.38829952478408813, 1.0648140907287598, -0.7333957552909851, -0.6775543689727783, 0.3180658221244812, 1.2360116243362427, 0.505996584892273, -0.09660811722278595, -0.6934093832969666, 0.02243046835064888, 0.5263354778289795, -0.1017570048570633, -0.4721534848213196, 0.8362510204315186, 0.04207732900977135, -0.5188389420509338, 0.023097790777683258, 1.0656567811965942, 0.8915748000144958, -0.6189039349555969, -0.6726478934288025, -0.6147873401641846, -0.13404743373394012, -0.6234263777732849, 0.3526177406311035, -0.3158910572528839, 1.3690906763076782, -0.0594232939183712, -0.40342915058135986, 1.0075432062149048, 0.008968954905867577, -0.20616470277309418, -1.5242465734481812, 0.5597188472747803, 0.7089007496833801, 1.555027961730957, 0.609456479549408, -0.010230008512735367, 0.03392397612333298, -0.5421923995018005, 0.2232457399368286, 0.29909199476242065, 1.0445021390914917, 0.8288046717643738, -0.8559550046920776, -0.5241961479187012, -0.3209218978881836, 0.2793436348438263, -0.30985355377197266, -0.436977356672287, -0.1540943682193756, -0.7550769448280334, -0.3487990200519562, 1.1177868843078613, 0.9574883580207825, -0.016825513914227486, 0.1806231141090393, 0.18169938027858734, 0.633236825466156, -1.0067065954208374, -0.14921064674854279, -0.6012651324272156, -0.5824987292289734, 0.6708074808120728, -0.6772290468215942, -0.5398795008659363, 0.12580245733261108, 0.7178367376327515, 0.8211670517921448, -1.5356266498565674, 0.017582306638360023, -0.3694452941417694, 0.6183675527572632, 0.12762898206710815, 0.43690839409828186, 0.332561731338501, 0.013206308707594872, 0.26774588227272034, 0.576898992061615, 0.04680755361914635, 1.8287781476974487, 0.09002149105072021, -0.63386070728302, 0.45004338026046753, 0.41716504096984863, 0.13931801915168762, 0.24719324707984924, -0.4821189045906067, 0.2542414367198944, -0.27058684825897217, -0.8477196097373962, -0.32391422986984253, -0.36002182960510254, 1.622270941734314, -0.30749449133872986, 0.2035554051399231, 0.26372769474983215, -0.02694738283753395, -0.9830660820007324, 0.15961962938308716, 0.09625859558582306, -0.3711884021759033, -0.070896215736866, 0.25016090273857117, 0.6278859972953796, 0.6204410195350647, 0.8186314702033997, 0.13958683609962463, 1.2245689630508423, -0.13417857885360718, 0.30638566613197327, 0.49620628356933594, 0.3492448925971985, 1.1373432874679565, 0.8172429203987122, 1.4434503316879272, -0.6666797399520874, -0.6109955310821533, 1.6602238416671753, -0.19357141852378845, 0.5652025938034058, 0.33500319719314575, 0.6399911642074585, 1.1864486932754517, -1.3530086278915405, -0.36452001333236694, 0.3795185983181, 0.18213775753974915, 0.7405605912208557, -0.855400025844574, -0.6157618165016174, -0.9046661257743835, 0.09387984871864319, -0.1754707545042038, -0.010608295910060406, 0.8387725353240967, 0.2908113896846771, 0.3667996823787689, 0.7037279009819031, -0.5860645771026611, 0.7214860320091248, -0.6912247538566589, 0.7894577383995056, -0.23032744228839874, -0.512849748134613, 0.15901289880275726, 0.2032465636730194, 0.9052941203117371, 1.5607550144195557, -0.32749101519584656, -0.39474520087242126, 0.19218921661376953, -0.9428527355194092, -0.07717088609933853, -0.5054653286933899, 0.0959549993276596, -0.4206887185573578, -0.42572110891342163, 0.1762228012084961, 0.09579723328351974, 0.3468688726425171, -0.02477412112057209, 0.02632082626223564, -1.1943227052688599, -0.3115529716014862, 0.6937248706817627, 0.8136633634567261, -0.04136297106742859, 0.6342298984527588, 0.7198754549026489, 0.21972759068012238, -1.0024094581604004, -0.1869438737630844, 0.370444118976593, 0.6567791700363159, -0.037019696086645126, -0.6393361687660217, -0.9521489143371582, 0.10161886364221573, 0.5016121864318848, 0.09325800836086273, 0.18586722016334534, 0.9855616688728333, 0.9489268660545349, 0.07773090153932571, -0.7102457284927368, 0.5567288994789124, -0.9320219159126282, 0.1012839823961258, 0.1282372623682022, -1.2176768779754639, -0.29755082726478577, 0.24871404469013214, -2.3394079208374023, 1.3198401927947998, 0.017311278730630875, -0.7983534932136536, 0.5432254076004028, 1.1030369997024536, 0.16356261074543, 0.5319639444351196, -0.8390018939971924, 0.3479922413825989, 0.24010081589221954, -0.015219304710626602, -0.9027340412139893, 0.5310884714126587, 1.0783069133758545, 0.4768151640892029, -0.058887094259262085, 0.6248832941055298, 0.16869784891605377, -0.11209901422262192, -0.5450858473777771, -0.1395024210214615, 0.650759756565094, 0.38152340054512024, 0.42067915201187134, -0.825279951095581, 0.11674723774194717, -0.6812184453010559, 0.30178123712539673, -0.04930213838815689, 1.266758918762207, 0.6333968639373779, -0.4405789077281952, 0.35257694125175476, -1.077831506729126, 0.5610962510108948, 0.19555407762527466, -0.9915052056312561, 1.2702041864395142, 0.08157289028167725, -0.27488818764686584, 0.3560546934604645, -0.5686648488044739, -0.94185870885849, -0.8148636817932129, -0.1257622390985489, 1.4731602668762207, -1.651157021522522, -0.7134305834770203, -0.2601625919342041, -0.24269968271255493, 0.19679352641105652, -0.48137834668159485, 0.445349782705307, -0.7805252075195312, -1.6021462678909302, -0.29905447363853455, -0.1268269270658493, 0.8912715315818787, -0.5667470693588257, 0.2353798747062683, 0.571899950504303, -1.4664905071258545, 0.6430032849311829, -0.1017957404255867, -1.4885413646697998, -0.011875629425048828, -1.0486795902252197, 0.5677909851074219, -0.2345404028892517, 0.29744550585746765, 0.22848854959011078, 0.8997611999511719, -0.9817346930503845, -1.0224720239639282, -0.3569866418838501, -0.08490251004695892, 1.0287684202194214, 1.107640027999878, -0.5074307918548584, 0.9845627546310425, -1.0479825735092163, -0.7007095217704773, -0.9220724105834961, 0.006331562530249357, -0.9069321155548096, 0.13822655379772186, -0.09996519982814789, 0.0680658221244812, 0.5616231560707092, 1.1568549871444702, 1.378804087638855, 0.6966584324836731, 0.7840144038200378, 0.43092063069343567, -1.1217737197875977, -0.08341418951749802, -0.6991782188415527, 0.287848562002182, -1.7676494121551514, -0.48355939984321594, -0.23534156382083893, -0.25293034315109253, -1.2487070560455322, 0.3528450131416321, 0.7412208914756775, -0.9262169003486633, 0.5536820292472839, 0.47616270184516907, 0.07799732685089111, -0.2262488156557083, 0.2925415337085724, 0.29925358295440674, -0.9643460512161255, -0.15403716266155243, 0.5108532905578613, 1.389752984046936, -0.7119062542915344, -0.46670812368392944, 0.37769606709480286, 0.28561097383499146, -0.41353532671928406, 0.916822075843811, 0.48491206765174866, -0.4983288645744324, 0.4407329559326172, 1.204527497291565, 1.293649435043335, 0.04714658111333847, 0.38413068652153015, 0.40917885303497314, -0.49706923961639404, -0.042319800704717636, -0.16811317205429077, 0.31863313913345337, -0.42714834213256836, 1.0330458879470825, 0.5166721343994141, 0.1698802411556244, -0.8957453370094299, 0.6645431518554688, -0.274397611618042, 0.3955214321613312, 0.8837140798568726, -0.5691405534744263, -0.5659341812133789, 0.9182013273239136, 0.903986394405365, 0.04472600668668747, 0.39396199584007263, 0.25973549485206604, 0.1551532745361328, 0.014659527689218521, 0.38204216957092285, 0.5394762754440308, -0.5888082385063171, -0.07423105090856552, -0.25760701298713684, 0.3391997516155243, 0.31516319513320923, -0.2476528286933899, -0.7254670858383179, 0.048364393413066864, -1.0564613342285156, -0.7485507130622864, 1.0064178705215454, -1.3100391626358032, -0.2675310969352722, -0.441046804189682, 0.00019569694995880127, -0.22819532454013824, 0.0018116701394319534, -0.515320360660553, -0.6987265944480896, 0.19980531930923462, 1.5064047574996948, -0.26417040824890137, 0.700037956237793, 0.48091018199920654, 0.43675848841667175, -0.014075158163905144, -0.07437077164649963, -0.4937768280506134, -0.05630534142255783, 0.5290582776069641, -0.30996888875961304, 0.12477647513151169, -0.04600630700588226, -0.8787108659744263, -0.35483500361442566, -0.3961627185344696, -0.006071601063013077, -0.6881406307220459, -0.37137144804000854, 0.033959709107875824, 0.41791245341300964, 0.5940302014350891, -0.5737517476081848, -0.8306882381439209, -0.5308618545532227, 0.014592270366847515, 0.022287752479314804, 1.3407279253005981, -0.7491241693496704, 1.3967105150222778, -0.30135318636894226, -0.4355662167072296, -0.3102637827396393, -0.8519576191902161, 0.1868264526128769, -0.30568671226501465, 0.17591044306755066, -0.3004375994205475, -0.19248324632644653, 0.7923364043235779, -1.0965791940689087, 0.360226571559906, -0.23607131838798523, 0.36972370743751526, 0.33407601714134216, -0.8824464082717896, -0.36769363284111023, -0.6498596668243408, -0.01624346524477005, 0.3855896592140198, 0.30352041125297546, 0.8938083648681641, -0.5117896199226379, -1.2451355457305908, -0.21658030152320862, 1.1158894300460815, 0.34824880957603455, 1.3314956426620483, 0.9789448380470276, 1.827903389930725, 0.6328691840171814, -0.16229890286922455, -0.7547488212585449, 0.08818026632070541, -0.5686613917350769, -0.2640695869922638, -0.6215072274208069, 0.06926756352186203, -0.07748404890298843], [-0.5638975501060486, 1.3719847202301025, -2.457801103591919, -0.5487335324287415, 0.033907175064086914, 0.10977964848279953, 1.7551100254058838, -0.048535242676734924, -0.21205198764801025, -1.401423454284668, -0.30703532695770264, -0.37316957116127014, 0.24444639682769775, 0.3743365705013275, 0.3666606545448303, 0.2310602068901062, 0.8698928952217102, 0.10023242980241776, 0.14719325304031372, 0.9181488156318665, 0.29129689931869507, -1.4963891506195068, 0.27695178985595703, -0.4609884023666382, 0.41980957984924316, -0.2487642765045166, -1.503033995628357, 0.2248809039592743, -1.3406801223754883, -0.0194145105779171, 1.0146946907043457, -0.14767910540103912, 0.36142411828041077, -0.4121447503566742, -1.5948641300201416, -0.6103590726852417, 0.37940359115600586, -0.1647433191537857, -0.4392746686935425, -0.2787793278694153, 2.2242863178253174, -0.1650848239660263, -0.23213911056518555, -1.6451655626296997, 0.7383127212524414, -0.27942922711372375, 0.4463103711605072, -1.1626839637756348, 0.09171880781650543, -1.076704978942871, 0.8666112422943115, -0.6110346913337708, 0.7395808696746826, 1.4573814868927002, 0.9929550290107727, -1.1491636037826538, -0.06191100925207138, 1.5355321168899536, 0.20368538796901703, 0.44913217425346375, 1.2498648166656494, 0.13819535076618195, 0.9093424677848816, 1.0592373609542847, 0.29594919085502625, -0.7219398021697998, 0.8790174126625061, 0.1820678561925888, 0.4858901798725128, 0.22898626327514648, 0.9516945481300354, 0.1358902007341385, -0.442106157541275, 0.0033917464315891266, -0.6910295486450195, 0.7069635987281799, -0.17832686007022858, 0.4560002088546753, 0.2905098795890808, 0.5131816267967224, -0.015186638571321964, 0.12402449548244476, -0.10348134487867355, -0.5197827816009521, -0.8543092608451843, -0.33471977710723877, 0.4680212140083313, -0.3888194262981415, -0.4505067467689514, 1.0860642194747925, -0.04648091271519661, 0.49333706498146057, 0.7087985873222351, -0.38996899127960205, -0.40432029962539673, -0.5093740820884705, -0.19782352447509766, -0.5976905226707458, -0.18948380649089813, -0.6392444968223572, -0.3541859984397888, -1.4514610767364502, 0.7369794249534607, 0.5119681358337402, 0.4156971275806427, 1.3695954084396362, -0.09763620793819427, -0.8775248527526855, -0.627292811870575, 0.013488780707120895, 0.07182997465133667, 0.14957289397716522, -0.9760259389877319, -1.0322290658950806, 0.31593307852745056, 1.5284883975982666, 1.5369572639465332, 0.14336293935775757, 0.017856115475296974, -0.11537507176399231, -0.4179359972476959, -0.38834327459335327, -0.01903049647808075, -0.29473888874053955, 1.6524986028671265, -0.2869623303413391, -0.6485397815704346, -0.16019462049007416, -0.517255961894989, -0.22895899415016174, 0.6753098368644714, 0.1659698486328125, 0.3625563681125641, 0.6152885556221008, -0.6637097001075745, 0.9938808679580688, -0.14172177016735077, -0.976197361946106, 0.23515765368938446, 0.3748144507408142, 0.5298774242401123, -0.2038595974445343, -0.7142219543457031, -0.5649880766868591, 1.0008333921432495, -0.8223831653594971, 0.46715259552001953, -0.20079396665096283, -1.0406248569488525, 0.1998327076435089, -1.8417470455169678, -0.18771527707576752, 0.055460017174482346, 2.0190160274505615, 0.7551524639129639, -0.7721313834190369, 0.2797222137451172, 0.23430506885051727, 0.5373868942260742, 0.7663725018501282, 1.5692230463027954, -0.513412594795227, -0.8860357999801636, 0.9360543489456177, 1.57615327835083, -0.13167120516300201, 0.9716160297393799, 0.48798373341560364, -0.46632635593414307, 0.8137820363044739, -0.287399560213089, -0.7305695414543152, -0.34204909205436707, -0.13445092737674713, -0.11994460970163345, -0.6093142032623291, 1.0066945552825928, 0.11429966986179352, -1.0136300325393677, -1.3522523641586304, 0.9921794533729553, -0.1389620006084442, 0.17029745876789093, 0.3834187984466553, 0.5819377303123474, -0.582888662815094, -0.5643606781959534, 0.0889040008187294, -0.21091328561306, -1.169845461845398, -0.013967921026051044, 0.1399386078119278, -1.4138544797897339, 0.2809355556964874, -0.47053176164627075, -0.7355421781539917, 0.7613820433616638, -0.9808065295219421, -0.48484131693840027, -0.4335302412509918, 0.02980346977710724, 0.28991761803627014, -1.053696632385254, 0.1465042233467102, -0.5551501512527466, 0.5593205690383911, -0.9092853665351868, 0.6109012365341187, -0.26576510071754456, 0.7457228302955627, 0.7094348669052124, -0.4592169225215912, -1.2511519193649292, 0.8977603912353516, 0.5891261696815491, -1.4676530361175537, 0.7654460668563843, 0.2780807316303253, 0.026134993880987167, 0.16663846373558044, -0.13710558414459229, -0.16709047555923462, 1.049403190612793, 0.31323719024658203, 0.7891675233840942, 0.14065271615982056, -0.2052374929189682, -0.5663332939147949, -0.6763823628425598, 0.13387230038642883, -0.8682118654251099, -0.6311712265014648, 0.4478507936000824, -0.11427589505910873, -1.2710484266281128, 0.4559670686721802, -0.33556362986564636, 0.6123469471931458, 0.38582298159599304, 0.697232723236084, 0.9555875062942505, 0.16607563197612762, 0.06265680491924286, -0.2956690788269043, -0.7329890131950378, -0.34872710704803467, 0.9900310635566711, -0.18369831144809723, -0.015663547441363335, 1.472318410873413, 0.879628598690033, -0.1487227827310562, 0.3203521966934204, -0.5899799466133118, 0.4517652094364166, -0.9676470756530762, 0.42872387170791626, -0.2569015324115753, -1.0674288272857666, 1.7278664112091064, 0.5029627084732056, -1.2765312194824219, 0.14800313115119934, -0.8472958207130432, -0.1471920609474182, -0.7101694345474243, -0.34365707635879517, -0.25574082136154175, 0.35278066992759705, -0.26491281390190125, 0.07675895094871521, -0.3358345925807953, -0.2637519836425781, 0.9796813726425171, 0.17736275494098663, -0.7797338366508484, 0.061447348445653915, 0.9064362645149231, 0.3211819529533386, 0.9995362758636475, -0.10498996824026108, -1.424381136894226, -1.093534231185913, -0.09979428350925446, 0.7812920212745667, 0.13591501116752625, -0.24997973442077637, 0.7498171329498291, 0.924030065536499, -0.09318661689758301, 0.7297114133834839, 0.7789943814277649, 0.451212078332901, 0.30094823241233826, 0.2615613341331482, 0.5540990829467773, 0.21882279217243195, -1.3816524744033813, -1.3460848331451416, -0.12663212418556213, 0.26712852716445923, 1.5632351636886597, 1.2514469623565674, 0.8374324440956116, -0.4675534963607788, 0.38600409030914307, -0.3519987165927887, 0.2698718309402466, -0.42308083176612854, -0.2780532240867615, -0.27264565229415894, -0.31717541813850403, -0.23655052483081818, -0.9302241206169128, 0.023085234686732292, 1.355049967765808, 0.4274098575115204, 1.0775941610336304, 0.6742072105407715, -0.49630770087242126, -1.492669939994812, -0.5362289547920227, -0.2505144774913788, -1.1321327686309814, 1.0442043542861938, 1.9442367553710938, -1.3910270929336548, 0.07300499081611633, 0.35188162326812744, 0.06591078639030457, 0.18663296103477478, 0.20438863337039948, 0.3903959095478058, -1.2844369411468506, -0.07496541738510132, 0.09361528605222702, 1.456307053565979, -0.5158573985099792, 0.11815590411424637, -0.39785006642341614, 0.5667120218276978, 0.8508605360984802, -0.03967367485165596, -0.5627711415290833, 0.08728527277708054, -0.8616304397583008, -0.30015894770622253, -0.46445250511169434, 0.4263904094696045, 0.9272305369377136, -0.23085913062095642, -1.3331656455993652, -0.45846810936927795, -0.36415886878967285, -0.9568471908569336, 0.20091427862644196, -0.3178447186946869, 0.543900728225708, 0.42580685019493103, 0.8841189742088318, 1.0664615631103516, 0.28096768260002136, 0.0004683062434196472, -1.411673665046692, 0.3670807182788849, 0.974005937576294, 1.356221079826355, 0.2141093909740448, 0.7048466205596924, -0.03647275269031525, -1.3327996730804443, 0.22049450874328613, 0.28979137539863586, 0.17997154593467712, 0.5148932337760925, -0.521176278591156, -0.2954922020435333, -0.5259696841239929, 0.23960590362548828, 0.3008723258972168, 0.7169759273529053, 0.18253737688064575, 0.06536955386400223, -0.31044459342956543, 1.1267491579055786, 0.8062461614608765, 0.08300668001174927, -1.0267497301101685, -0.5032804608345032, 0.5948213338851929, -0.6679317355155945, -0.6775908470153809, -0.513629674911499, -0.1532561033964157, 0.6783863306045532, -0.13525360822677612, -0.17088335752487183, -0.3875131905078888, 0.44807514548301697, 1.1640328168869019, -0.9987215995788574, -0.623778223991394, -0.6152178645133972, 0.3210619390010834, 0.31898605823516846, -0.5516011118888855, 0.4742690920829773, 0.7191954255104065, -1.0685036182403564, 0.09064146131277084, 0.24734075367450714, 1.491546869277954, -0.04151025414466858, 0.17493613064289093, -0.16754482686519623, 0.27134740352630615, 0.7899814248085022, -0.6890878677368164, -0.9750102758407593, -0.28338170051574707, -0.4756826162338257, 0.35196787118911743, 0.052462488412857056, -0.1423964649438858, 1.8241746425628662, -0.5237306356430054, 0.3729249835014343, 0.536688506603241, 0.30792441964149475, -0.7637960910797119, 0.028317509219050407, -0.2507472336292267, -0.374324232339859, -0.016174834221601486, 0.2935366928577423, 0.007077813148498535, 0.5809712409973145, 0.33783861994743347, 0.2827599048614502, 0.18264888226985931, -0.20332679152488708, -0.40071889758110046, 0.5134657025337219, 0.5596444010734558, 1.1099553108215332, 1.1482036113739014, 1.2713176012039185, -0.7622287273406982, -0.5387650728225708, 0.9519270062446594, 0.25946328043937683, -0.27708500623703003, 0.8720371723175049, 0.2976365387439728, 0.7431163787841797, -1.1055165529251099, 0.21801866590976715, 1.26520836353302, -0.5608271360397339, 1.2575443983078003, -0.3808276057243347, 0.2974995970726013, -1.2377575635910034, -0.06147662550210953, 0.27071812748908997, -0.4689539968967438, 0.9387454986572266, 0.1100412905216217, -0.08671854436397552, 0.7563508749008179, -0.047225359827280045, 0.018027812242507935, -0.5142852067947388, -0.5209904313087463, -0.3399077355861664, 0.29254746437072754, 0.6665344834327698, 1.1615793704986572, 0.6820873022079468, 1.3527618646621704, -0.11263538897037506, -1.1498591899871826, 0.35932818055152893, -0.535076379776001, -0.01878385618329048, -0.8953268527984619, -0.20634594559669495, -0.4174206256866455, -0.9458945989608765, 0.03141377121210098, -0.24293141067028046, -0.9822787642478943, -0.7329803705215454, -0.7707349061965942, -1.0848721265792847, 0.3731168806552887, 0.37822574377059937, 1.7355502843856812, 0.7580536603927612, 0.18453949689865112, -0.3447083830833435, 0.014990240335464478, -0.6778711080551147, 0.025282680988311768, 0.06516429036855698, -0.18451063334941864, 0.12541088461875916, -1.2791815996170044, -0.6502566933631897, 0.7987551093101501, 0.913842499256134, 0.16856639087200165, 0.5330926179885864, 1.4989063739776611, 1.4643956422805786, -0.33790168166160583, -0.3382532298564911, 0.6473004221916199, -0.618302583694458, 0.5368859171867371, 0.32475653290748596, -0.8776252269744873, -0.1270809769630432, -0.3400364816188812, -2.039931535720825, 1.1240019798278809, -0.08469796180725098, -0.5016462802886963, 0.8334172368049622, 0.7121502161026001, 0.1149575412273407, 1.5036214590072632, -0.35218778252601624, -0.3993251919746399, -0.0948508083820343, -0.2724166810512543, -1.4386123418807983, 0.6496312022209167, 1.14320969581604, 0.08571402728557587, -1.144936203956604, 0.4980468153953552, -0.6163696050643921, -0.3657516539096832, -0.06046859174966812, -0.09178274124860764, 0.4070541262626648, 0.3278970718383789, 0.02055252157151699, 0.02877815067768097, 0.6119940876960754, -1.229434847831726, 0.6864673495292664, 0.08128144592046738, 0.2655101716518402, 0.2780844271183014, -1.0019197463989258, 1.2130513191223145, -0.040475040674209595, -0.5511212944984436, -0.2602677047252655, -1.0919545888900757, 0.25637882947921753, 0.9474831223487854, 0.4123830497264862, -0.1536089926958084, -0.3949616253376007, -0.5363726019859314, -0.9871797561645508, 0.2340129315853119, 0.5340327024459839, -0.6527284383773804, -0.10074428468942642, -0.26583465933799744, -0.20514726638793945, 0.11130859702825546, 0.49757078289985657, 0.6367483139038086, -0.9414162635803223, -1.0660984516143799, -0.7343476414680481, -0.8233903646469116, 0.5619280934333801, 0.49270060658454895, 0.37897175550460815, -0.09395227581262589, -1.3612773418426514, 0.9110350012779236, -0.7601444721221924, -1.994542121887207, 0.024872999638319016, -0.3262943625450134, 1.0157309770584106, -0.2778376042842865, 0.1265503168106079, 0.2557762861251831, 1.247599482536316, -0.9981250166893005, -0.9215962886810303, -1.0757101774215698, -0.6569469571113586, 0.8980922698974609, 0.5766781568527222, -0.3339436948299408, 1.1444745063781738, -0.09890898317098618, -0.8929184675216675, -0.31806111335754395, -0.3574672043323517, -1.4917751550674438, -0.687145471572876, -0.09416063129901886, 0.6984767317771912, 0.8026109337806702, 1.1564666032791138, 0.4075518250465393, 1.108283281326294, 0.1817840039730072, 1.6429013013839722, -0.3290726840496063, -0.7152000069618225, 0.18273024260997772, 0.22239069640636444, -0.5167666077613831, -0.24560610949993134, 0.3849320411682129, -0.6876051425933838, -0.8135591149330139, 0.5322291254997253, 0.44950395822525024, -0.581960916519165, 0.6984387040138245, 0.025126785039901733, -0.0004447121173143387, -0.9901328086853027, 0.6254203915596008, 1.1792012453079224, -1.2132607698440552, -0.576328694820404, 0.3776223361492157, 0.33317410945892334, -0.7399505376815796, 0.043418847024440765, 0.863775908946991, 0.6618483662605286, -0.40119731426239014, 0.5586879253387451, -0.23805324733257294, 0.9582645893096924, -0.3665790557861328, 0.7404670715332031, 0.8377445340156555, 0.05372006446123123, 0.49059662222862244, 0.5741654634475708, -0.11477440595626831, -0.19993843138217926, 0.21162322163581848, -1.0268443822860718, -0.8493770360946655, 0.19699417054653168, 0.26901477575302124, -0.33533716201782227, -0.10174770653247833, 0.4596349596977234, 0.44509583711624146, -0.5723488330841064, 2.30696439743042, -0.8831188678741455, -1.036135196685791, 0.851470410823822, 0.7012476921081543, -0.5001663565635681, 0.5838808417320251, -0.26168617606163025, 0.5168547630310059, -0.7207702398300171, 0.15346795320510864, -0.010861724615097046, -0.8392757177352905, -0.07602208852767944, 0.08673657476902008, -0.5329275727272034, 0.6592155694961548, -0.804004430770874, -1.5533990859985352, -0.6385577917098999, -0.6017824411392212, 0.05942583829164505, 0.51425701379776, -0.7423237562179565, -0.4684371054172516, 0.007635856978595257, 0.0696110650897026, -0.5616945028305054, -0.7048166394233704, -0.22229178249835968, -0.4472518563270569, -0.4899638295173645, 0.766409158706665, -0.3360276520252228, 1.1611307859420776, 0.1589098423719406, 0.4455943703651428, 0.03195025399327278, -0.033252473920583725, 0.05912769213318825, 0.18088263273239136, -0.619540810585022, -0.7858827710151672, 0.5430622696876526, -0.42075538635253906, 0.1079949140548706, 0.2610008716583252, -0.35902881622314453, 0.06687656044960022, -0.022017348557710648, -1.2945058345794678, -0.6894877552986145, 0.4445853531360626, 0.4268210232257843, -0.5751751065254211, -0.9506635665893555, -0.38282912969589233, 0.7607737183570862, -0.1474200338125229, 0.810167670249939, -0.5055526494979858, 0.7687076926231384, 0.3137265145778656, -0.7713723182678223, -0.9508603811264038, -1.4528955221176147, 1.3820579051971436, -0.885513186454773, 0.33315491676330566, -0.7801092863082886, -0.35758736729621887, 0.32966506481170654, -1.0181266069412231, -0.04599638283252716, -0.5432976484298706, 0.15058739483356476, 0.627469003200531, -0.5390858054161072, -1.1907002925872803, -0.4920511543750763, -0.31050238013267517, -0.11503558605909348, 0.11844577640295029, 0.5318449139595032, 0.028824161738157272, -1.5291022062301636, -0.6961588859558105, 0.6685689091682434, 0.32592424750328064, 0.44137561321258545, 1.1678763628005981, 1.2619643211364746, -0.19410419464111328, -0.479884535074234, -0.16872423887252808, 0.32388201355934143, -1.318897008895874, -0.028742734342813492, -0.7940083146095276, -0.15717117488384247, 0.015598506666719913], [0.010297281667590141, 2.391871929168701, -2.622643232345581, -0.22560277581214905, -0.10272381454706192, 0.14437630772590637, 1.4568307399749756, -0.06432528793811798, 0.04257320240139961, -0.3042462170124054, -0.5531690716743469, 0.0739409402012825, 0.4113883078098297, 0.5105074644088745, 0.22209888696670532, 1.2229876518249512, -0.3514728844165802, 0.32900097966194153, 1.0767945051193237, 1.5042903423309326, 0.05188065767288208, -1.6951857805252075, -0.774919331073761, -0.001707341056317091, -0.43962305784225464, -0.6408337950706482, -0.9788473844528198, 0.28833264112472534, -0.7875766158103943, -0.9987265467643738, 0.7771375179290771, -0.5365960597991943, 0.36657556891441345, -0.45743075013160706, -2.0810794830322266, -0.5122905969619751, 1.409938097000122, 0.14759159088134766, -0.5820919871330261, 0.42008495330810547, 2.5097908973693848, -0.5473307967185974, -0.37244725227355957, -1.2436386346817017, 0.45683443546295166, 0.43898719549179077, 0.3953559696674347, -0.8526023626327515, 0.4146886169910431, -0.8209150433540344, 0.8192257881164551, -0.1855955868959427, 0.4811949133872986, 1.5091763734817505, 0.631038248538971, -1.2725310325622559, -0.2411646693944931, 0.9749168753623962, -0.12532079219818115, 1.0430914163589478, 1.3951822519302368, 0.15926635265350342, 0.7438182234764099, 0.8382514119148254, 0.4151299297809601, -0.6998715400695801, 0.6886827945709229, 0.3771778643131256, 0.07880693674087524, 0.24810655415058136, 0.32670241594314575, -0.5420368313789368, -1.4190220832824707, -0.3091285228729248, -0.4761848449707031, 0.35157057642936707, -0.4992615580558777, 0.6540217399597168, 0.47262129187583923, 0.6112120747566223, -0.4443998634815216, 0.486077219247818, -0.08100175857543945, -0.21431958675384521, 0.09039761871099472, -0.09289627522230148, 0.7227276563644409, -0.5865287184715271, -0.342364102602005, 1.381901502609253, -0.23878878355026245, 0.17629674077033997, 0.9530449509620667, -0.13234709203243256, 0.024557389318943024, -0.8047714829444885, 0.38052207231521606, -0.92088383436203, -0.01544809341430664, -1.1129018068313599, -0.37198519706726074, -0.46543818712234497, 0.9066763520240784, 0.6708759069442749, 0.825766921043396, 1.732785701751709, 0.17480653524398804, -0.8264889121055603, -0.7009156346321106, 0.008436806499958038, -0.28196465969085693, 0.36365509033203125, -0.35963737964630127, -1.261941909790039, 0.06195710599422455, 1.1062310934066772, 1.5233232975006104, -0.14155463874340057, 0.6137219667434692, 0.543034017086029, -0.3510918617248535, -0.7225853204727173, -0.5397432446479797, 0.5721286535263062, 1.3944298028945923, 0.1825663298368454, -0.7746294736862183, -0.05566981062293053, -0.6249786615371704, -0.16696076095104218, 0.7018832564353943, 0.18046574294567108, -0.21604369580745697, 0.7350205779075623, -0.2744690179824829, 1.5601370334625244, -0.48934492468833923, -0.693555474281311, -0.3749663233757019, 0.6223766803741455, 0.255576491355896, 0.529898464679718, -0.625685453414917, -0.9897480607032776, 0.17834964394569397, -0.4904307425022125, 0.24785910546779633, -0.43095165491104126, -0.29676830768585205, 0.7694330811500549, -1.7083427906036377, -0.028188548982143402, -0.24395127594470978, 1.9068607091903687, 0.5253576636314392, -0.2078588604927063, 1.428174376487732, -0.07338700443506241, 0.07983040064573288, 0.9996791481971741, 1.0352920293807983, 0.005968020297586918, 0.16555188596248627, 1.5089315176010132, 0.6327024698257446, -0.8331195712089539, 1.0025238990783691, 0.7125771641731262, -0.5096850395202637, 0.5512145757675171, -0.28083890676498413, -0.27965065836906433, -0.9226841330528259, 0.34416666626930237, 0.10134872794151306, -0.3451332151889801, 0.8976263999938965, 0.4071336090564728, -1.2274850606918335, -1.1785379648208618, 0.7853631973266602, 0.19839239120483398, 0.8362960815429688, 0.49960145354270935, 0.1431744247674942, -0.04795357584953308, -0.7580768465995789, -0.5760613679885864, 0.15955087542533875, -0.8973423838615417, -0.6287916898727417, -0.1939866989850998, -1.3573510646820068, 0.5831731557846069, -0.7192540168762207, -0.9824481010437012, 1.5509638786315918, -0.7984551787376404, -0.6127318143844604, -0.4514754116535187, 0.18373563885688782, -0.3895784914493561, -1.2679247856140137, -0.3178020417690277, -0.4960629940032959, 0.7836425304412842, -0.7753874063491821, 0.25216951966285706, -0.8646151423454285, 1.0295448303222656, 0.6464530229568481, -0.6776857376098633, -0.9568677544593811, 0.07947076857089996, 0.5149570107460022, -1.1761435270309448, 0.28678813576698303, -0.0671684518456459, 0.492804616689682, -0.026681246235966682, -0.03171480447053909, -0.28303319215774536, 0.9367758631706238, -0.1648443639278412, 0.4925202429294586, -0.438761442899704, -0.6413766741752625, -0.6709204316139221, -0.07638335227966309, 0.19839279353618622, -0.33577483892440796, -0.8134249448776245, 0.16112031042575836, 0.6975353360176086, -0.9266956448554993, 0.491963267326355, -0.23878781497478485, 0.13367724418640137, 0.28427717089653015, 0.8772497177124023, 0.7593785524368286, 0.1557631641626358, -0.440548837184906, -0.6605701446533203, -0.8585284948348999, -0.4319734275341034, 0.6021308302879333, -0.14856821298599243, -0.18428441882133484, 1.4325919151306152, 0.7486231327056885, -0.22964665293693542, 0.5586355328559875, 0.005369482561945915, 0.19467279314994812, -1.0020866394042969, 0.3290809690952301, 0.23166710138320923, -0.19173690676689148, 1.312563419342041, 0.3321605324745178, -0.7945197224617004, 0.18742190301418304, -0.5912462472915649, 0.7668808698654175, -0.5336848497390747, 0.013895513489842415, -0.5349095463752747, -0.0048629892989993095, -0.00884514581412077, 0.34996700286865234, 0.06531441956758499, -0.6353619694709778, 0.6366281509399414, 0.22883038222789764, -0.9073198437690735, 0.2530321478843689, 1.0478917360305786, 0.08352615684270859, 0.7168602347373962, -0.32139503955841064, -1.7843998670578003, -0.9813714623451233, -0.41150516271591187, 0.8695623278617859, 0.31637394428253174, -0.2572060227394104, 0.7548194527626038, 1.440497636795044, 0.41719216108322144, 0.5825546383857727, 0.21737869083881378, -0.3486948609352112, -0.5351259112358093, 0.390129953622818, 0.0926230251789093, 0.6381880640983582, -0.7235412001609802, -0.9612380862236023, -0.2284087836742401, -0.20804943144321442, 1.1186964511871338, 1.4923620223999023, 1.1258974075317383, -0.7722448706626892, -0.15831205248832703, -0.2936958968639374, -0.16355060040950775, -0.5573057532310486, -0.3660302758216858, -0.3195875287055969, -0.7756678462028503, -0.37007489800453186, -0.4267585575580597, -0.32356253266334534, 0.6831644773483276, 0.27943873405456543, 0.8580800294876099, 0.857526957988739, -0.28569743037223816, -1.0966264009475708, -0.8984957933425903, -0.445620596408844, -1.394281029701233, 0.6318346858024597, 1.1602307558059692, -1.8134839534759521, -0.4197778105735779, 0.2865164875984192, 0.26529210805892944, 0.2919595241546631, 0.06493636965751648, 0.38534533977508545, -1.4179227352142334, -0.004161432385444641, -0.2853778898715973, 1.5820385217666626, 0.13495667278766632, 0.11585964262485504, -0.3107975721359253, 0.3123120665550232, 0.6687498092651367, -0.4741690158843994, -0.9737226366996765, 0.10811176151037216, -0.529379665851593, -0.6308976411819458, -0.04903503507375717, -0.1697710007429123, 0.5792733430862427, -0.792624294757843, -1.5357307195663452, -0.07837647199630737, -0.4922574758529663, -1.0580601692199707, 0.7837458848953247, 0.22651152312755585, 0.5866034030914307, -0.0664697214961052, 0.1166640967130661, 0.9472719430923462, -0.032130587846040726, 0.3993399143218994, -1.0646977424621582, 0.6283635497093201, 0.7123150825500488, 0.8611401319503784, 0.4557632803916931, 0.5061275959014893, -0.0787518098950386, -1.3363759517669678, -0.08694233745336533, -0.6460406184196472, 0.5288696885108948, -0.030929913744330406, -0.6198499798774719, 0.12351062893867493, -0.6075766682624817, 0.3277055621147156, -0.033437926322221756, 0.07329218089580536, 0.6357158422470093, 0.09223349392414093, 0.2509264051914215, 0.7173560857772827, -0.0990617498755455, -0.5807308554649353, -0.7101970314979553, -0.28288036584854126, 0.26978054642677307, -0.42355605959892273, -0.014776654541492462, 0.12496691197156906, -0.08232656866312027, 0.4180929660797119, -0.0005935837980359793, -0.20198707282543182, -0.6697310209274292, 0.6651506423950195, 1.3905465602874756, -1.0071959495544434, -0.7368671894073486, -0.8216189742088318, 0.5259437561035156, 1.0568931102752686, 0.16660583019256592, 0.7052769660949707, 0.815359354019165, -0.2838611900806427, 0.24291285872459412, 0.10168728232383728, 1.677477240562439, 0.10255701094865799, -0.5032323598861694, -0.425809770822525, 0.39103272557258606, 1.0056706666946411, -1.4378941059112549, 0.07043763995170593, -0.07042078673839569, -0.8098970651626587, 0.30683451890945435, -0.0003087229561060667, -0.80555260181427, 1.594200849533081, 0.05889206379652023, -0.14682750403881073, 0.48706433176994324, 0.12002666294574738, -0.8328253626823425, 0.18769647181034088, 0.5999420881271362, -0.9612698554992676, 0.23022620379924774, 0.3391948938369751, 0.4090999364852905, 0.8985971808433533, -0.2808803617954254, 0.676146388053894, -0.0602952316403389, -0.09077521413564682, -0.25454023480415344, 0.38589924573898315, -0.03196194767951965, 0.9120497107505798, 0.8242381811141968, 1.151336669921875, 0.06322315335273743, -0.5433676242828369, 0.3077954649925232, -0.26771655678749084, 0.22608980536460876, 1.2392772436141968, -0.01657712087035179, 1.1243276596069336, -1.7995786666870117, 0.36687541007995605, 1.2063716650009155, 0.07352563738822937, 0.5819194316864014, -0.16242749989032745, 0.1142394095659256, -1.418715238571167, 0.11679569631814957, 0.5332944393157959, -0.6331409811973572, 1.0022261142730713, 0.0827733650803566, 0.36999472975730896, -0.19465987384319305, -0.29756903648376465, -0.007960084825754166, -0.7956558465957642, -0.12959258258342743, -0.23770661652088165, -0.08590316027402878, 0.9854095578193665, 0.3996169865131378, 0.5023542046546936, 1.108459234237671, -0.42538243532180786, -1.5454683303833008, 0.2350824624300003, -0.618037760257721, -0.21988359093666077, -0.4578648805618286, -0.3456198275089264, -0.9121711850166321, -0.9631850719451904, -0.20022980868816376, -0.09055501967668533, -0.9974503517150879, -0.953970730304718, -0.2697889804840088, -1.6873278617858887, 0.8001524806022644, -0.17635679244995117, 1.0546181201934814, 0.6673910021781921, 0.071720190346241, 0.11647229641675949, 0.05394690856337547, -1.0141862630844116, 0.42887812852859497, 0.685173749923706, -0.5761334300041199, -0.38705873489379883, -0.4361667335033417, -0.43792667984962463, 1.1932212114334106, 0.42000627517700195, -0.14359839260578156, 0.8199148774147034, 0.9661590456962585, 1.1979213953018188, -0.5255661606788635, -0.550816535949707, 1.1486308574676514, -0.4461268484592438, 1.4270533323287964, 0.40382060408592224, -0.6389539241790771, -0.3765508532524109, 0.1071779876947403, -1.5483652353286743, 0.8714925646781921, 0.06915315985679626, -0.1357118785381317, 0.607833981513977, 0.7230777144432068, 0.08491139858961105, 1.2351347208023071, -0.4749051630496979, -0.6662352085113525, 0.5554559826850891, 0.1444583684206009, -0.7506626844406128, 0.40293848514556885, 1.3073818683624268, 0.48020896315574646, -0.719187319278717, -0.42974182963371277, -0.0737406462430954, -0.3006078600883484, 0.1920270323753357, -0.4716050922870636, 0.3201034963130951, 0.2708092927932739, 0.09827514737844467, -0.06781549751758575, 0.508399248123169, -0.8767942190170288, 0.1298561841249466, 0.8451656103134155, 0.9670442938804626, 0.7147107124328613, -0.5310221910476685, 0.9513242244720459, -0.32143548130989075, 0.1086023673415184, 0.2914678752422333, -0.29231417179107666, 0.6987926363945007, 0.321231484413147, 0.6011146306991577, 0.3202369511127472, -0.18964450061321259, -0.44304966926574707, -0.9040641784667969, -0.0011148119810968637, 0.31590238213539124, -0.5799689292907715, -0.45364198088645935, 0.06632234901189804, -0.2348935306072235, 0.2146434187889099, 0.14888712763786316, 0.30870911478996277, -1.3726556301116943, -1.015675663948059, -0.6946107149124146, -0.3555999994277954, 0.4699864089488983, -0.38339963555336, 0.5729045867919922, -0.025949111208319664, -2.1127476692199707, 0.337667316198349, -0.5812409520149231, -1.9427688121795654, -0.12025711685419083, -0.5932846665382385, 0.8470113277435303, -0.331853449344635, 0.09695397317409515, -0.13313448429107666, 1.1035128831863403, -0.9708783626556396, -1.0562286376953125, -1.0272818803787231, 0.07923270761966705, 0.7739575505256653, 0.675478458404541, -0.8632662892341614, 1.4455766677856445, 0.11472535878419876, -0.38313570618629456, -0.27372124791145325, -0.5098811984062195, -1.1872658729553223, -0.07369180023670197, -0.3339560031890869, 0.014135963283479214, 0.35802164673805237, 1.5527548789978027, 0.7058191299438477, 0.7589026689529419, 0.47561147809028625, 1.1619436740875244, -0.9723542928695679, -1.2189639806747437, 0.1643814742565155, 0.10053025186061859, -0.8912933468818665, -0.2432999312877655, 0.2372789829969406, -0.5251355171203613, -0.8878738284111023, 0.26732337474823, 1.0664490461349487, -0.5992628931999207, 0.5003772974014282, 0.4058828353881836, 0.14625075459480286, -0.9805785417556763, 0.19619959592819214, -0.1904880851507187, -1.2350690364837646, -0.0592539943754673, 0.018746845424175262, 0.5661157965660095, -1.6482067108154297, 0.4221401810646057, 0.5668731331825256, 0.34529128670692444, 0.17818187177181244, 0.12243181467056274, -0.3506298363208771, 1.0013866424560547, -0.29820412397384644, 0.7174345850944519, 0.7604698538780212, -0.006183556281030178, -0.24187041819095612, 0.5664795637130737, -0.5284814834594727, -0.16522054374217987, -0.05504574626684189, -0.5145039558410645, -0.6947427988052368, 1.0153334140777588, 0.10402039438486099, -0.004878803621977568, 0.5619436502456665, 0.4773987829685211, -0.081082783639431, -0.8182433843612671, 1.7255057096481323, -1.0218836069107056, -1.1031652688980103, 0.8154091835021973, 0.8030078411102295, -0.40449681878089905, 0.18929621577262878, -0.11295808851718903, 0.6970232725143433, -0.12201807647943497, 0.5565335154533386, -0.293067991733551, -0.8154287338256836, 0.3643266558647156, -0.12069245427846909, -0.6190751791000366, -0.24645358324050903, -0.7860903739929199, -1.402795672416687, -0.5979145765304565, -0.10925666987895966, 0.15054403245449066, 0.70100998878479, -0.5353791117668152, -1.333227515220642, -0.16900406777858734, 0.5287895798683167, 0.05998208373785019, -0.343730092048645, 0.07135593891143799, -0.8510313034057617, -0.20004859566688538, 1.1919256448745728, -0.6373625993728638, 1.1008386611938477, -0.07316894084215164, -0.07360871136188507, -0.8829755187034607, 0.8067112565040588, 0.597938060760498, 0.11169304698705673, -0.6586824655532837, -0.7004462480545044, 0.6684040427207947, -0.4075727164745331, 0.6642376780509949, 0.2946060001850128, 0.30477049946784973, 0.5454409718513489, 0.5908406972885132, -1.0938283205032349, -0.5347751975059509, 0.07455451041460037, 0.7648605704307556, -0.4969525635242462, -0.726453959941864, -0.6783750653266907, 0.3127797544002533, 0.016263417899608612, 0.726738691329956, -0.4733646810054779, 1.2852555513381958, 0.7469772100448608, -1.5089046955108643, -0.20479336380958557, -0.5328111052513123, 1.5265742540359497, -0.08199777454137802, 0.1433599591255188, -0.6030860543251038, 0.29223111271858215, -0.3139028251171112, -0.9971287250518799, -0.19054701924324036, -0.4830488860607147, -0.5268338918685913, -0.36911389231681824, -1.0180258750915527, -0.24956302344799042, -1.0987162590026855, -0.1881915181875229, 0.2798498570919037, 0.09741716831922531, 0.4488638937473297, -0.6802390217781067, -1.3651949167251587, -0.27955207228660583, 0.832866907119751, 0.3852829337120056, 0.25424227118492126, 1.5998260974884033, 1.4051045179367065, -0.2160273939371109, -0.8417130708694458, -0.5606553554534912, 0.5833019614219666, -0.639385998249054, 0.8327537178993225, -0.9057145118713379, -0.6426712274551392, -0.18024545907974243], [0.4255019426345825, 2.2603023052215576, -2.6630823612213135, -0.6376784443855286, 0.7043351531028748, 0.38070639967918396, 1.580428123474121, -0.25285643339157104, 0.1753581315279007, -0.9082460403442383, -0.03316260874271393, 0.04538312554359436, 1.2403452396392822, 0.5594602823257446, 0.6160067319869995, 0.49644872546195984, 0.5487469434738159, -0.14239829778671265, 0.07241818308830261, 0.8804488182067871, 0.02089826576411724, -0.9481446146965027, 0.13746672868728638, -0.05025837570428848, -0.7347660660743713, -0.3951285183429718, -1.17867112159729, 0.05031872168183327, -0.6725817918777466, -0.6261062026023865, 1.4488941431045532, -0.3937866687774658, -0.5394921898841858, -0.5740483999252319, -0.6646607518196106, -0.32223039865493774, 1.178524136543274, -0.18260495364665985, 0.5263820290565491, 0.8932321071624756, 2.023451805114746, 0.26482102274894714, -0.6383591890335083, -1.4010519981384277, 0.853618323802948, 0.3132439851760864, 0.3535222113132477, -0.7614766359329224, 0.5083553194999695, 0.09487203508615494, 0.883493959903717, -0.5880183577537537, 0.07788504660129547, 1.04271399974823, 1.282256841659546, -1.4845598936080933, 0.0801374614238739, 0.210363507270813, 0.4288467466831207, -0.15076814591884613, 0.7175524234771729, 0.08696555346250534, 0.006862870883196592, 1.0926775932312012, 0.14143317937850952, 0.003356418339535594, 0.31648534536361694, 0.21024374663829803, 0.2930741012096405, 0.1478263884782791, 0.23682962357997894, 0.22781115770339966, -0.5901719927787781, 0.06187710165977478, -1.1759320497512817, 0.15926194190979004, -0.16813747584819794, 0.3010236322879791, 0.3740786612033844, 0.5453935265541077, -0.3606525659561157, -0.28772732615470886, 0.15279445052146912, -0.24941487610340118, 0.4112473130226135, 0.26607829332351685, 0.6546486616134644, -0.2673158645629883, -0.31248632073402405, 2.052189826965332, 0.2033894807100296, 0.002256059553474188, 0.8713067770004272, 0.2654719650745392, -0.5321215391159058, -0.6917719841003418, 0.4310985803604126, -0.05876757949590683, -0.7804856300354004, -0.46302059292793274, -0.4978695213794708, -0.8196893334388733, 0.23642095923423767, 0.3511330187320709, 0.05984429270029068, 1.7823200225830078, 0.9270952939987183, -0.2894265949726105, -0.7826763391494751, 0.21272635459899902, 0.09411311894655228, 0.09698362648487091, -0.21190594136714935, -0.35844624042510986, -0.823888897895813, 1.0911946296691895, 1.1982643604278564, 0.42322295904159546, 0.2217978984117508, 0.757084310054779, -0.3717075288295746, -0.4059912860393524, -1.008711576461792, 0.5578678846359253, 0.7382955551147461, -0.1770687699317932, -0.9560896158218384, 0.19980032742023468, 0.06866497546434402, -0.012402809225022793, 0.44152966141700745, -0.2761867940425873, -0.19231174886226654, 0.5796293616294861, -0.35830798745155334, 1.354720115661621, 0.04558926820755005, -0.7968837022781372, 0.1742924302816391, 0.1230786144733429, 0.0813596174120903, 0.14887231588363647, -0.4702134132385254, -0.42353540658950806, 0.5490325689315796, -0.8488413095474243, 0.047079216688871384, -0.47969022393226624, -1.1981799602508545, 0.2717236578464508, -1.766129493713379, 0.22457867860794067, -0.5144038200378418, 1.6175575256347656, 0.4324324429035187, -0.18766118586063385, 0.30534493923187256, 0.9309521317481995, 0.6747549772262573, 0.25961005687713623, 1.0497465133666992, -0.3595763146877289, -0.647650957107544, 0.9633753299713135, 0.2119004726409912, -0.5143961310386658, 0.9386624693870544, 0.6089925169944763, 0.09074399620294571, 0.3866785764694214, -0.6536552309989929, -0.20835433900356293, -0.18265490233898163, 0.01797548122704029, -0.3376813530921936, 0.02133922278881073, 1.2283332347869873, -0.6086398959159851, -1.3427904844284058, -1.7670124769210815, 0.27748721837997437, -0.24089713394641876, -0.05761522427201271, -0.33260151743888855, 0.6067822575569153, 0.1496540904045105, 0.1235528513789177, -0.2001621425151825, -0.05309631675481796, -0.936332106590271, -0.4961759150028229, 0.12417417764663696, -0.8766290545463562, 0.1059064269065857, -1.1748299598693848, -1.0008004903793335, 0.47644171118736267, -0.5084042549133301, -0.6684209704399109, -0.4204351305961609, -0.5038108229637146, -0.6671189069747925, -0.8371584415435791, 0.14757777750492096, -0.4570144712924957, 0.590872049331665, -0.7413602471351624, 0.6777158975601196, -0.6010379195213318, 0.2514435350894928, 1.1064023971557617, -0.17872485518455505, -0.8135738968849182, 0.1924675852060318, 0.13074886798858643, -1.0459108352661133, 0.5941328406333923, 0.2861503064632416, 0.7129331231117249, 0.07130474597215652, 0.11668149381875992, -0.06741809844970703, 0.4651836156845093, -0.10723468661308289, 1.4911173582077026, 0.013033776544034481, -0.28566500544548035, -0.7945749759674072, -0.3787526488304138, -0.18497337400913239, -1.0589932203292847, -0.5002393126487732, 0.9294294118881226, 0.4043167531490326, -1.4153443574905396, 0.5122805237770081, -0.5389900207519531, 0.17829298973083496, 0.6111229658126831, 1.3435603380203247, 0.28643301129341125, 0.2165469527244568, -0.5921172499656677, -0.1622544229030609, -0.7658095955848694, 0.09580234438180923, 0.6740403175354004, -0.49895763397216797, 0.18056620657444, 1.5982630252838135, 0.6321132779121399, -0.22586947679519653, 0.5794263482093811, -1.2131997346878052, 0.3163476884365082, -0.3592284321784973, -0.11081695556640625, 0.2708684504032135, -1.0759536027908325, 1.2372264862060547, 0.04708702489733696, -0.5345436334609985, -0.3223024904727936, 0.10432472825050354, 0.5354478359222412, -0.7495568990707397, -0.3281046450138092, 0.013692371547222137, 0.21059873700141907, -0.21278199553489685, 0.0829404667019844, 0.2271924614906311, -0.4338972866535187, 0.42019376158714294, 0.0012310664169490337, -0.008208699524402618, 0.27110812067985535, 0.24929706752300262, 0.18239320814609528, 0.6663897037506104, -0.4589403569698334, -1.0549986362457275, -0.7452343702316284, -0.2461133599281311, 1.016624093055725, 0.15523111820220947, -0.638554036617279, -0.1257309913635254, 1.1633048057556152, -0.06696431338787079, 0.1906908005475998, 0.08458263427019119, -0.542253851890564, -0.25414496660232544, 0.3995034992694855, 0.1165182888507843, 1.1296635866165161, -0.8969175219535828, -0.4697181284427643, -0.4291227459907532, 0.5482348203659058, 0.8576558828353882, 0.39329811930656433, 1.1418862342834473, -0.4342765212059021, 0.059495989233255386, 0.3172996938228607, -0.4396003484725952, -0.7321164011955261, -0.5112569332122803, -0.551073431968689, -0.4979062080383301, -0.4883100688457489, 0.27335503697395325, -0.05412977933883667, 0.48138707876205444, -0.12103462219238281, 0.41376593708992004, 0.6514820456504822, -0.6336573362350464, -0.5114007592201233, -0.016714001074433327, -0.5377985835075378, -1.1938709020614624, 1.1236915588378906, 0.9919443130493164, -0.5675238370895386, -0.19066999852657318, 0.5865404605865479, 0.33622246980667114, 0.1171916201710701, -0.2524879276752472, 0.2681535482406616, -1.0814496278762817, -0.9002434015274048, -0.33602386713027954, 1.0736826658248901, -0.10348063707351685, -0.07999785989522934, -0.6071726083755493, 0.13719792664051056, 0.5912469029426575, -0.5551469326019287, -0.8115795850753784, 0.18945187330245972, -0.09212950617074966, -0.9955385327339172, 0.02236807532608509, 0.41020557284355164, 0.7114647030830383, -0.23428653180599213, -0.36578431725502014, -0.2837189733982086, -0.5043923258781433, -0.11972767114639282, 0.8353561758995056, 0.5138132572174072, 1.218286156654358, -0.0037560509517788887, -0.11706580966711044, 1.2775096893310547, -0.04881710931658745, 0.04009261727333069, -1.6165239810943604, 0.7483980059623718, 0.6236811280250549, 1.376207709312439, 0.2547147870063782, 0.17122837901115417, 0.0433867871761322, -0.7865970134735107, -0.13091516494750977, 0.11297260224819183, 1.087464690208435, -0.2849542200565338, 0.3841618001461029, -0.25500747561454773, -0.1172550693154335, 0.3037421703338623, -0.6652942299842834, -0.037324901670217514, -0.12130650132894516, 0.25665032863616943, -1.152487874031067, 1.5349810123443604, -0.20056571066379547, -0.17375105619430542, -1.430019736289978, -0.43320876359939575, 0.5348855257034302, 0.13977937400341034, -0.4123789668083191, -0.21759666502475739, 0.20197494328022003, 0.6233667135238647, -0.8164458870887756, -0.4612092077732086, -0.4895910322666168, 0.7068250179290771, 0.620035707950592, -1.1258288621902466, -0.06678392738103867, -0.19598329067230225, 0.6964440941810608, 0.17890490591526031, -0.10053648054599762, 0.6540544033050537, 0.01995995081961155, 0.2650330662727356, -0.18826928734779358, 0.14137031137943268, 1.0503383874893188, -0.06953442096710205, -0.6026560664176941, 0.26330408453941345, 0.4272528290748596, -0.03576464205980301, -0.16967809200286865, -0.4672538936138153, -0.059749238193035126, -0.2052087038755417, 0.313959538936615, 0.11276412010192871, -0.10070160031318665, 1.247655987739563, 0.37840697169303894, -0.18903718888759613, 0.2538054585456848, 0.2926712930202484, -1.110358715057373, 0.05582302808761597, 0.06167230010032654, -0.4886234402656555, -0.096369169652462, 0.04941481724381447, -0.5201699733734131, 0.4069431722164154, 0.11829638481140137, 0.508105456829071, 0.08389420807361603, -0.08537503331899643, -0.5056812167167664, 0.1050027459859848, 0.4242252707481384, 0.32026031613349915, 0.9734576344490051, 1.3455924987792969, 0.16861124336719513, -0.991223156452179, 0.6533817052841187, -0.5462179780006409, -0.13845308125019073, 1.2051899433135986, 0.40734827518463135, 1.596346378326416, -1.6162452697753906, -0.17418543994426727, 0.4468022286891937, 0.23480041325092316, 0.3130687475204468, -0.10213244706392288, 0.6160795092582703, -0.7162238359451294, 0.26232731342315674, 0.41382718086242676, -0.37337106466293335, 0.9136620163917542, -0.04701399803161621, 0.056077245622873306, 0.6897820830345154, -0.8389158248901367, 0.15523473918437958, -0.9338033199310303, -0.14990514516830444, 0.5150009989738464, -0.42324984073638916, 0.6703817844390869, 0.6898335218429565, 0.7369072437286377, 1.3883150815963745, -0.41736069321632385, -1.300169587135315, 0.9694635272026062, -1.235682487487793, 0.031049568206071854, 0.10765168815851212, -0.7433276772499084, -0.3431740403175354, -0.44452881813049316, -0.48673713207244873, -0.3501218855381012, -0.7601606249809265, -0.222567617893219, -0.6000186800956726, -1.1513935327529907, 0.056985627859830856, 0.08778480440378189, 1.297789454460144, 0.3574695587158203, 0.18221235275268555, 0.6726337671279907, 0.7484074234962463, -0.9816579818725586, -0.3948650658130646, 0.2114446461200714, -0.4541395604610443, 0.05067455768585205, -1.07785165309906, -0.7517681121826172, 1.1379072666168213, 0.4921441674232483, 0.5026125907897949, 0.5604013800621033, 1.022282600402832, 0.838495671749115, -0.8001458644866943, -0.3353172540664673, 0.5270026326179504, 0.07486171275377274, -0.24945351481437683, 0.37012770771980286, -0.7251166105270386, -0.38312843441963196, -0.2234182506799698, -1.6664272546768188, 0.5669627785682678, 0.040995217859745026, -0.27644744515419006, 0.7567609548568726, 0.24043817818164825, 0.8519566059112549, 1.1817129850387573, -0.27964964509010315, -0.12226174026727676, 0.33896100521087646, 0.4646380543708801, -1.1946823596954346, 0.6679897904396057, 0.7932437062263489, 0.6429993510246277, -0.9058667421340942, -0.03266089782118797, -0.05802658945322037, -0.6692673563957214, -0.11135242134332657, -0.10235808789730072, 0.7014849185943604, 0.9311778545379639, -0.2397187352180481, -0.41733288764953613, 0.4371338188648224, -0.4158923327922821, 0.22016282379627228, 0.2698010504245758, 0.062475401908159256, 0.5272499918937683, -0.25077351927757263, 0.5507712960243225, -0.9419979453086853, -0.8718783855438232, -0.051915284246206284, -0.5646511316299438, 1.0245015621185303, 0.20993925631046295, -0.043866563588380814, 0.11679142713546753, 0.45139235258102417, -0.5274800658226013, -0.25532227754592896, 0.45186930894851685, -0.06033040210604668, -1.11017906665802, -0.15269143879413605, -0.058483708649873734, -0.12331840395927429, 0.16329434514045715, 0.07311458140611649, -0.15234380960464478, -1.2514277696609497, -1.2982553243637085, -0.36706507205963135, -0.18930277228355408, 0.6009454727172852, -0.4557593762874603, 0.13897693157196045, 0.3788752257823944, -1.6636847257614136, 0.47290071845054626, 0.2312004566192627, -1.5127047300338745, -0.08100797981023788, -0.5281632542610168, 0.8993927836418152, 0.06364982575178146, 0.32039839029312134, -0.46306851506233215, 0.8789371252059937, -1.5621681213378906, -1.4186192750930786, -0.2960527837276459, -0.4259023368358612, 0.8928224444389343, 0.478538453578949, -0.9438599944114685, 1.0001704692840576, 0.45462659001350403, -0.22548989951610565, -0.17270860075950623, 0.6795457601547241, -0.9954238533973694, -0.12712769210338593, 0.1916051208972931, 0.13476639986038208, 0.28559228777885437, 1.8869407176971436, -0.13942043483257294, 0.9619322419166565, -0.31251704692840576, 0.74803227186203, -0.3948894143104553, -1.1625840663909912, -0.1764896810054779, 0.28024715185165405, -1.1066049337387085, -0.642101526260376, -0.5715680122375488, -0.45194289088249207, -0.699270486831665, 0.48421886563301086, 0.9512232542037964, -1.0118465423583984, 0.5835034251213074, -0.3665805459022522, 0.153614342212677, -1.3153501749038696, 0.6491442918777466, 0.2930087447166443, -0.46121668815612793, -0.17622122168540955, -0.34011322259902954, 0.6468867063522339, -1.376889705657959, -0.23085500299930573, 0.2091972380876541, -0.22119808197021484, -0.3962342441082001, 0.3403455317020416, 0.6234743595123291, 0.196499302983284, -0.40129607915878296, 1.298970341682434, 1.1785786151885986, -0.07356933504343033, -0.3545035421848297, 0.42348217964172363, 0.12509076297283173, 0.37540140748023987, 0.05485955625772476, -0.36679333448410034, -1.030256748199463, 0.8235434293746948, 0.4656374156475067, 0.0651681125164032, -0.0010233083739876747, 0.38368070125579834, -0.5631188750267029, -0.5008294582366943, 1.340632677078247, -0.5467405915260315, -0.9416602849960327, 0.6919719576835632, 0.5799505710601807, 0.09186828881502151, 0.17498692870140076, 0.32510119676589966, 0.5414710640907288, -0.05314198136329651, 0.5861150622367859, 0.49313658475875854, -0.21419405937194824, 0.13674718141555786, -0.03118116967380047, 0.0836298018693924, -0.053361982107162476, -1.1353507041931152, -1.5733586549758911, -0.570966362953186, -0.2247413992881775, 0.06519506871700287, 0.22196844220161438, -1.2056078910827637, -1.4810746908187866, 0.35922038555145264, -0.029253307729959488, -0.19470113515853882, -1.0428073406219482, -0.06037959083914757, -0.6724843978881836, -0.06740322709083557, 0.47525754570961, -0.03338802605867386, 0.7880147695541382, 0.11427178978919983, 0.025250019505620003, -0.27658286690711975, -0.04835204407572746, 0.0493449829518795, -0.06717103719711304, -0.121769018471241, -0.028967803344130516, 0.14404398202896118, -0.7718117833137512, -0.44064879417419434, 0.6022683382034302, 0.40702876448631287, 0.050578635185956955, 0.07726365327835083, -0.9854177832603455, 0.3498717248439789, 0.31360816955566406, 0.5761927962303162, -0.39220523834228516, -0.7700791358947754, -1.205987572669983, 0.14689107239246368, 0.017829153686761856, 1.306925892829895, -0.5990102887153625, 0.9512238502502441, 0.3863576352596283, -0.47531479597091675, -0.07294292002916336, -0.5127511620521545, 0.9007112383842468, 0.030740171670913696, 0.4511420428752899, -0.5727114677429199, -0.2704222500324249, -0.6683335900306702, -1.389756202697754, 0.2718963027000427, 0.2004997730255127, -0.1447765827178955, 0.335671603679657, -0.9669722318649292, -0.5205391645431519, -0.5943292379379272, 0.12251115590333939, -0.2755677402019501, 0.21246042847633362, 0.5589103102684021, -0.5328466892242432, -0.6559462547302246, -0.273316890001297, 0.012901500798761845, 0.5196828842163086, 0.3582902252674103, 1.0731873512268066, 1.935038685798645, 0.47379088401794434, 0.20567205548286438, -0.2009332925081253, 0.6369829177856445, -0.812221109867096, 0.30844956636428833, -1.265031337738037, -0.038671765476465225, -0.24251163005828857], [-0.343694806098938, 1.9625178575515747, -2.375685691833496, -0.2768937051296234, 0.4260280728340149, 0.22442077100276947, 1.2425543069839478, -0.2504919469356537, -0.1658092588186264, -0.8420299291610718, -0.6582894325256348, 0.09357324987649918, 0.5160896182060242, 0.38412606716156006, 0.4369991421699524, 0.8271948099136353, 0.9917100071907043, 0.47478702664375305, 0.3520936965942383, 1.6579028367996216, -0.31759360432624817, -0.8463040590286255, -0.6801486611366272, -0.434536337852478, -0.12321514636278152, -0.38810524344444275, -0.6432965993881226, 0.29739710688591003, -0.641029953956604, -0.8311090469360352, 0.9909844994544983, 0.209133118391037, 0.7909102439880371, -0.1858440637588501, -1.3795080184936523, -1.0614815950393677, 0.4562593698501587, 0.2573266327381134, 0.38071224093437195, 0.0036789514124393463, 1.7261875867843628, -0.03462149575352669, -0.632175862789154, -2.0949995517730713, 0.4601495862007141, -0.5957299470901489, 0.1789693832397461, -0.8122031092643738, 1.166148066520691, -0.3129478991031647, 0.326521098613739, -1.3912253379821777, 0.30930548906326294, 0.9647585153579712, 1.5993670225143433, -0.8059349656105042, 0.37407681345939636, 0.5777922868728638, -0.8573057651519775, 0.5583544969558716, 1.2665787935256958, 0.5579970479011536, 0.6911858916282654, 1.001477599143982, 0.1932951956987381, 0.13622695207595825, 0.26958608627319336, 0.49672985076904297, 0.008060241118073463, 0.3118465542793274, 0.9291746616363525, 0.10660791397094727, -0.2867332100868225, 0.5802794694900513, -0.6572152376174927, 0.0757608637213707, 0.14323103427886963, 0.6919217705726624, 0.4981365501880646, -0.44457918405532837, 0.11966125667095184, -0.0612218901515007, 0.2511846125125885, -0.8670823574066162, -0.3193925619125366, 0.2484501600265503, 0.33869263529777527, -0.7687584757804871, -0.29649388790130615, 1.1968574523925781, 0.7582235932350159, 0.038955070078372955, 0.9834092855453491, -0.027163835242390633, -0.16851955652236938, -0.963539183139801, 0.210757315158844, -0.34957587718963623, -0.21881301701068878, -0.691294252872467, -0.17436933517456055, -0.5949361324310303, 0.667972207069397, 0.4179110825061798, 0.3980937898159027, 1.356793761253357, 0.9861037135124207, 0.23606884479522705, -0.8779032826423645, 0.2460774928331375, -0.049326539039611816, -0.48161154985427856, -0.8896802663803101, -0.9910731315612793, -0.6581656336784363, 0.9721643924713135, 1.4207940101623535, -0.029309449717402458, 1.0518795251846313, 1.4958559274673462, 0.17122811079025269, -0.8533712029457092, -0.7244518399238586, 0.3728259801864624, 1.0306956768035889, -0.285478413105011, -1.6606501340866089, -0.2954708933830261, -0.30682989954948425, 0.12443143874406815, 0.8923538327217102, -0.5986779928207397, 0.053717002272605896, 0.8796413540840149, -0.13084730505943298, 0.994778573513031, -0.27647295594215393, -0.7090359330177307, 0.7276734113693237, 0.5468149781227112, 0.3909878730773926, 0.5154905319213867, -0.48228394985198975, 0.22676844894886017, 0.5910239815711975, -0.8115260601043701, 0.1750350445508957, -0.3676402270793915, -0.6249006986618042, 1.1157106161117554, -1.8409860134124756, 0.670746386051178, -0.3722810447216034, 1.7368853092193604, 0.5301207900047302, -0.5559476017951965, 0.019915103912353516, 0.5517739653587341, 0.3352035582065582, 0.39667972922325134, 1.4047209024429321, -0.2948928773403168, -0.827414333820343, 0.5573515295982361, 0.7545239329338074, -0.7341567873954773, 0.5926036238670349, 0.20646366477012634, -0.2889820337295532, 0.8005254864692688, -0.4239334464073181, 0.17047378420829773, -0.6895402073860168, -0.49551281332969666, 0.09378482401371002, -0.5631556510925293, 0.7755818367004395, 0.6055084466934204, -0.8967276215553284, -1.1740103960037231, 0.6283586025238037, -0.35219258069992065, 0.2449316680431366, -0.1682303249835968, 0.5015048980712891, -0.3198826313018799, 0.005316146649420261, -0.3411063253879547, -0.8262407779693604, -1.3849389553070068, -0.39760294556617737, 0.2880946099758148, -1.1126960515975952, 0.7046816349029541, -1.3605083227157593, -0.7367481589317322, 0.5213983058929443, -0.2163541465997696, -0.12668634951114655, -0.14860226213932037, -0.04942408949136734, -0.047844383865594864, -1.0621651411056519, 0.04943698272109032, -0.322095662355423, 0.6715396046638489, -0.5175132155418396, 0.5385156869888306, -0.42347875237464905, 0.3075524866580963, 0.9097792506217957, -0.3430558741092682, -0.9874196648597717, -0.060246992856264114, -0.2442929893732071, -1.3706402778625488, 0.23668040335178375, 0.16090275347232819, 0.3222825527191162, 0.20776765048503876, 0.3154222071170807, -0.2208571434020996, 0.6880677938461304, -0.0997559055685997, 0.992527961730957, -0.14355623722076416, -0.08969848603010178, -1.2330241203308105, 0.011860751546919346, 0.04621462523937225, -0.6296706795692444, -0.2531915009021759, 0.623890221118927, 0.606773853302002, -1.4117323160171509, 1.1213278770446777, -0.3261401951313019, 0.5295013785362244, 0.7477890253067017, 0.6522216200828552, 0.8814274072647095, 0.6371995210647583, 0.2192692905664444, -0.21081306040287018, -0.5890634655952454, -0.3934731185436249, 0.9405444860458374, -0.7423155307769775, 0.1850382387638092, 1.1311999559402466, 0.8323516845703125, -0.15499117970466614, 0.6913203597068787, -1.2919461727142334, 0.31044453382492065, -1.2521711587905884, -0.15437301993370056, 0.3875201344490051, -0.8732690215110779, 1.2196532487869263, 0.3481619656085968, -1.193825602531433, -0.3608490526676178, -0.30430370569229126, 0.6576962471008301, -0.49186718463897705, -0.13496385514736176, -0.26213544607162476, 0.6574817895889282, 0.23715882003307343, 0.009636947885155678, 0.213080033659935, -0.2309853881597519, 1.284211277961731, 0.0617218054831028, -0.12269411236047745, 0.19305318593978882, 1.3967024087905884, 0.18207602202892303, 0.9621849656105042, -0.2257971316576004, -0.8868412375450134, -0.7299841046333313, -0.8574604392051697, 0.6314170956611633, 0.19361042976379395, -0.4261901378631592, 0.3153907060623169, 1.132084608078003, -0.0055547431111335754, 1.5183324813842773, -0.14090529084205627, -0.011148333549499512, -0.12538032233715057, 0.6884745955467224, 0.6596513390541077, 0.7045769095420837, -0.8867234587669373, -0.622782826423645, 0.32160043716430664, 0.14140938222408295, 0.921838104724884, 0.7763587832450867, 1.2805429697036743, -0.9076089262962341, 0.10690770298242569, -0.19414998590946198, 0.10054393112659454, -0.6158729791641235, -0.12586276233196259, -0.579933762550354, -0.4651268422603607, -0.5713587403297424, -1.059662103652954, -0.02168460562825203, 0.37641119956970215, 0.15106706321239471, 0.6947575211524963, 0.6699918508529663, -1.1842126846313477, -1.8366230726242065, -0.5053335428237915, -0.06537625938653946, -1.1441447734832764, 1.3177917003631592, 1.018587589263916, -1.091550350189209, 0.3047631084918976, 0.2597757875919342, -0.2177516222000122, -0.3120698630809784, -0.4484247863292694, 0.11815886944532394, -0.6670706272125244, -0.7597360014915466, 0.025489570572972298, 1.0119014978408813, 0.08942627161741257, 0.06363280862569809, 0.09020751714706421, 0.7774282097816467, 0.30616092681884766, -0.3015364110469818, -0.9995706081390381, 0.2415292114019394, -0.07706591486930847, -1.0938663482666016, -0.3938055634498596, 1.126102089881897, 0.8178644776344299, -0.4671567678451538, -0.9923257827758789, -0.1986701637506485, -0.30142903327941895, -0.6994250416755676, 0.1692027598619461, 0.5072735548019409, 0.6595048904418945, -0.6754254102706909, 0.35554516315460205, 0.7535915970802307, -0.39687544107437134, 0.2856270670890808, -1.0998241901397705, 0.9007698893547058, 0.8561846017837524, 1.4418638944625854, -0.1631024181842804, 0.5078617930412292, 0.4662957489490509, -0.6174519658088684, -0.4177769124507904, -0.029663940891623497, 0.549955427646637, -0.366573691368103, -0.560593843460083, -0.4817095100879669, -0.267024427652359, 0.4516352713108063, 0.03800783306360245, -0.07722419500350952, 0.44690170884132385, -0.03843469172716141, -0.4001029431819916, 1.1964937448501587, -0.06758874654769897, -0.10366162657737732, -0.6192378401756287, 0.007954634726047516, 0.27747607231140137, -0.36129793524742126, -0.15981937944889069, -0.08959829807281494, -0.42509761452674866, 0.27633464336395264, -0.42506858706474304, -0.7317386269569397, -0.9545947313308716, 0.9387327432632446, 1.0147886276245117, -0.9192060232162476, -0.7227080464363098, -0.7639938592910767, 0.6441158056259155, 0.2025029957294464, -0.4530598223209381, 0.7998038530349731, 0.41466933488845825, -0.06482833623886108, -0.23688611388206482, -0.03134365752339363, 1.1884891986846924, 0.1845199167728424, -0.16515810787677765, 0.28372490406036377, 0.5355029106140137, -0.20929677784442902, -0.6937699317932129, -0.1290564090013504, -0.265509694814682, -0.08506074547767639, -0.3992050290107727, 0.6937727332115173, -0.14857451617717743, 1.9344866275787354, 0.6378381252288818, 0.6171175837516785, -0.004538011737167835, 0.2606174349784851, -1.2090187072753906, -0.09347359836101532, 0.6530641317367554, -0.26401323080062866, -0.3858618438243866, 0.03300287202000618, -0.3903525471687317, 0.4084163308143616, -0.18322575092315674, 0.67741858959198, 0.45596861839294434, 0.5642412304878235, -0.14604291319847107, 0.0019368752837181091, 0.397998571395874, 0.3728457987308502, 0.935566246509552, 1.1859813928604126, -0.4716167151927948, -0.7241648435592651, 0.5609102249145508, 0.037747692316770554, 0.2891109585762024, 0.6894075274467468, 0.5187579989433289, 1.1674610376358032, -1.5024861097335815, -0.03766930475831032, 0.8494300246238708, 0.11390317231416702, 0.3530295193195343, 0.44082510471343994, 0.33377090096473694, -0.8640305995941162, -0.1469782143831253, 0.3399884104728699, -0.18517427146434784, 0.7855759263038635, 0.1680632084608078, 0.3770561218261719, 0.5787212252616882, -0.015096204355359077, -0.03309231624007225, -0.7487292289733887, -0.19109827280044556, -0.03154272213578224, -0.18479622900485992, 0.9160801768302917, 0.09016397595405579, 0.9530786275863647, 1.096175193786621, -0.7392213940620422, -1.2292699813842773, 0.7388023734092712, -1.2177995443344116, 0.06259274482727051, -0.47758588194847107, -0.11069171875715256, -0.5604835748672485, -0.47199708223342896, -0.567898690700531, -0.47671693563461304, -0.7601742148399353, -0.16710269451141357, -1.227183222770691, -0.7044119238853455, 0.574101448059082, -0.0319334901869297, 0.9550691843032837, 0.12162336707115173, 0.6020742058753967, 0.6205465197563171, 0.10281915217638016, -0.6612123250961304, 0.2895817756652832, -0.21767859160900116, -0.07589273154735565, -0.09292236715555191, -1.2271126508712769, -0.7674850821495056, 0.2309272736310959, 1.0169918537139893, 0.38826820254325867, 0.3366983234882355, 1.1720962524414062, 1.3065779209136963, -0.8522899150848389, -1.3037482500076294, 0.7727005481719971, -0.31003719568252563, 0.5577513575553894, 0.03878581151366234, -0.8618928790092468, 0.12361352145671844, -1.243791103363037, -1.778941035270691, 1.0030994415283203, -0.01650257781147957, 0.07346402853727341, 1.2612684965133667, 0.5890071988105774, 0.02835746295750141, 1.846746802330017, 0.059399235993623734, 0.04396591708064079, -0.381203293800354, -0.2622244656085968, -1.271475911140442, 1.0771937370300293, 1.418111801147461, 0.21677516400814056, -1.4503719806671143, 0.3399673402309418, -0.3123822808265686, -1.0116474628448486, -0.30369216203689575, 0.2871367931365967, 0.1256955862045288, 0.7057232856750488, -0.3417789041996002, -0.16596579551696777, 0.12600301206111908, -0.9598357677459717, -0.11498585343360901, 0.2426360547542572, 0.6753602623939514, 0.9131141901016235, -0.5475649237632751, 0.8791245818138123, -0.957310676574707, -1.1296632289886475, -0.2735517621040344, -0.652365505695343, 0.16494645178318024, 0.5766540169715881, 0.5201789736747742, -0.13255617022514343, -0.30675652623176575, -0.16004036366939545, -0.7985584735870361, 0.2172715663909912, 0.7702713012695312, -0.9810665249824524, -0.6744224429130554, 0.31541210412979126, -0.3382222354412079, 0.1424049437046051, 0.005193844437599182, -0.4098811447620392, -0.725193202495575, -1.1066240072250366, -0.3002178370952606, -0.7259848713874817, 0.6085817813873291, -0.6575003862380981, 0.28659138083457947, -0.20467381179332733, -1.2779747247695923, 0.4642522633075714, -0.052276451140642166, -1.5677047967910767, -0.4021192789077759, -0.6305690407752991, 0.6604645252227783, -0.31033897399902344, 0.9150384664535522, -0.218329519033432, 1.3242658376693726, -1.6095774173736572, -0.44924017786979675, -0.5387738347053528, -0.3828839361667633, 0.9245964884757996, 0.7632747888565063, -1.2588969469070435, 0.9645566344261169, -0.34698450565338135, -0.6695023775100708, -0.849476158618927, 0.005238847807049751, -1.3418105840682983, 0.3642384111881256, 0.09589579701423645, -0.08243997395038605, 0.5857172012329102, 1.5629159212112427, 0.31135207414627075, 1.0965328216552734, -0.33521199226379395, 1.2840677499771118, -0.19113199412822723, -0.8282162547111511, -0.23651497066020966, 0.26103466749191284, -1.0778120756149292, -0.49959704279899597, 0.2830977439880371, -0.6305436491966248, -0.6258172988891602, 0.4406284689903259, 0.7981048226356506, -1.0848066806793213, 0.24586787819862366, -0.8843997120857239, -0.7391418814659119, -1.0619242191314697, 0.6488610506057739, 0.6938907504081726, -1.3051238059997559, -0.5092746019363403, 0.028557095676660538, 0.4443489909172058, -1.2229644060134888, 0.43313974142074585, 0.4837694466114044, 0.4216330051422119, -0.07473957538604736, 0.21600666642189026, -0.1006949171423912, 0.9539998173713684, -0.17611883580684662, 0.6155561208724976, 1.2969425916671753, -0.1599678099155426, 0.4717544913291931, -0.02750461921095848, -0.24467208981513977, 0.05591001361608505, -0.2640019953250885, -0.8518694043159485, -0.5059283971786499, 0.8224318623542786, 0.2440079003572464, -0.276587575674057, 0.45990580320358276, 0.3720948398113251, 0.16086991131305695, -0.5702967643737793, 1.7914206981658936, -0.6851773262023926, -0.8504550457000732, 0.6567445993423462, 0.8575392961502075, -0.27783241868019104, 0.1008925586938858, -0.3068683445453644, 0.3865739107131958, -0.2831188142299652, 0.8478663563728333, 0.20776936411857605, -0.6630844473838806, -0.05448592081665993, -0.16471454501152039, -0.22457580268383026, 0.3075207769870758, -0.871421217918396, -1.2262059450149536, 0.121575266122818, -0.10623842477798462, -0.2191666215658188, 0.47314876317977905, -1.3302432298660278, -1.8900080919265747, 0.30069035291671753, -0.3328762650489807, -0.5961782336235046, -0.6922059059143066, -0.07951277494430542, -0.2665890157222748, -0.12086579948663712, 0.7861995697021484, -0.2459011673927307, 0.6144009828567505, -0.19785162806510925, 0.0522531159222126, -0.46580561995506287, -0.42823249101638794, 0.14371739327907562, -0.2891167104244232, -0.0016804265324026346, -0.3666003942489624, 0.6302290558815002, -0.48696500062942505, -0.3322937786579132, 0.30290308594703674, 0.1366702765226364, 0.0731116533279419, -0.1861899197101593, -0.5219008922576904, 0.3007798492908478, 0.029917579144239426, 0.32715868949890137, -0.41655686497688293, -0.799280047416687, -0.42917370796203613, -0.45159226655960083, 0.3301040828227997, 0.6493264436721802, -0.7938258051872253, -0.04953104257583618, 0.9604841470718384, -0.8751248121261597, -0.6500978469848633, -0.3170166611671448, 0.8908622860908508, -0.4057779014110565, 0.23177705705165863, -0.4670647382736206, -0.5150641798973083, -0.5396466851234436, -1.1535676717758179, -0.20302197337150574, -0.1299612820148468, -0.05625919625163078, 0.7067732810974121, -0.5151692628860474, -0.3888244926929474, -0.5758722424507141, 0.9038726687431335, -0.055652979761362076, 0.4792373776435852, 0.5772308707237244, -0.09249113500118256, -0.7956779599189758, -0.07649490237236023, -0.10172298550605774, 0.8292564153671265, 0.4515458643436432, 1.504763126373291, 1.2481741905212402, 0.36017632484436035, 0.4753909409046173, 0.2009616494178772, 0.6941925883293152, -0.7899167537689209, -0.14966623485088348, -0.8985288739204407, -0.5320348739624023, -0.09070336073637009], [0.6907796263694763, 2.0888941287994385, -3.015634536743164, 0.8448196649551392, 0.3774552643299103, 0.16739968955516815, 1.7747435569763184, -0.17212754487991333, 0.4779823422431946, -0.7862173914909363, -0.2757798731327057, 0.0880194827914238, 0.04958445206284523, 0.3883498013019562, 0.4797629714012146, 0.5753671526908875, 0.2992786467075348, -0.5905726552009583, 1.0830210447311401, 1.0199013948440552, 0.7422101497650146, -0.5672982931137085, -0.453447550535202, -0.231380894780159, -0.3374170660972595, 0.8556742072105408, -1.2904689311981201, 0.24524104595184326, -0.5079820156097412, -0.849265992641449, 1.6155844926834106, 0.4803467392921448, 0.03828468546271324, 0.41972845792770386, -2.3396334648132324, -0.10693016648292542, 1.0974534749984741, -0.020488396286964417, 0.6701352596282959, -0.511325478553772, 2.4686996936798096, -0.4166143238544464, 0.0729505866765976, -1.6861056089401245, -0.11506795883178711, 0.5169854164123535, 0.38832154870033264, -0.5403941869735718, 0.19093067944049835, -0.6959635615348816, 0.5770502090454102, -0.6937631964683533, 0.12961137294769287, 1.2256611585617065, 0.5613369941711426, -0.23837041854858398, 0.09405902773141861, 0.002160182688385248, -0.17823311686515808, 0.0760338306427002, 0.895855188369751, -0.3155284821987152, 0.17828835546970367, 0.5068075060844421, 0.380509614944458, -0.009041105397045612, 0.7313787341117859, 0.2166641652584076, 0.38472604751586914, 0.4936997890472412, 0.36659637093544006, -0.20576684176921844, -0.9577489495277405, -0.2981626093387604, -0.5087665915489197, 0.19745442271232605, -0.17341738939285278, 0.31788167357444763, 0.45769959688186646, 0.7031648755073547, -0.479301780462265, 0.325531005859375, 0.8731685876846313, -0.1013140007853508, 0.31552937626838684, 0.15903422236442566, 0.46461591124534607, -0.8716564178466797, -0.3467339277267456, 1.8990026712417603, 0.502160370349884, 0.7338209748268127, 0.6854748725891113, -0.38303184509277344, -0.5811289548873901, -0.8138871788978577, -0.12814807891845703, -0.7376469969749451, 0.22512464225292206, -0.5882446765899658, -0.1943770945072174, -0.4981659948825836, 0.16178065538406372, -0.028300317004323006, -0.2038133144378662, 0.9608837962150574, -0.09315845370292664, -0.4932045638561249, -0.40877673029899597, -0.10485213994979858, -0.16318345069885254, -0.19124974310398102, -0.344679594039917, -1.4007633924484253, -0.7542974948883057, 1.3891814947128296, 1.409766435623169, 1.0017448663711548, 0.535376250743866, -0.08737586438655853, -0.3579881489276886, -0.17699120938777924, -0.6118958592414856, -0.1492524892091751, 0.770927369594574, -0.19844232499599457, -0.6719571352005005, 0.2428961992263794, -0.1899706870317459, 0.440262109041214, 0.719208836555481, -0.04618510231375694, -0.20059071481227875, 0.8329118490219116, -0.00374003779143095, 1.1991798877716064, -0.5086966156959534, 0.02946055680513382, 0.5705580115318298, 0.3604128658771515, 0.4453469216823578, -0.4075463116168976, 0.3891270160675049, -0.052830614149570465, 0.21954412758350372, -0.43384048342704773, 1.082704782485962, -0.18401722609996796, -0.5790677070617676, 0.7338396906852722, -1.5426818132400513, 0.5880579352378845, -0.7252601981163025, 0.941117525100708, 0.020234951749444008, -0.41666343808174133, 0.29448530077934265, 0.2794138193130493, 0.4485832154750824, 0.4403057396411896, 0.7054741382598877, -0.257997065782547, -1.3213320970535278, 0.5445749163627625, 0.5550520420074463, -0.9094225168228149, 0.3522973954677582, 0.33179771900177, -0.9229451417922974, 0.9119855165481567, -0.3758063018321991, -0.5350976586341858, -0.27539747953414917, -0.22201375663280487, 0.3087221384048462, -0.36393338441848755, 1.2166095972061157, 0.2502944767475128, -0.9025097489356995, -1.283903956413269, 0.8955876231193542, -0.18619494140148163, 0.39561474323272705, 0.5154948830604553, 0.5396537184715271, -0.32107844948768616, 0.6149584054946899, -0.3470645248889923, -0.6596314311027527, -0.5882772207260132, -0.6438814401626587, 0.15179601311683655, -1.5506144762039185, 0.26376378536224365, -0.3342617452144623, -0.5784565210342407, 1.5107760429382324, -0.650044322013855, -0.12550532817840576, -0.13843730092048645, -0.08461610227823257, -0.4947909712791443, -0.6961326599121094, -0.20435424149036407, -0.7076154947280884, 0.3778242766857147, -1.1335558891296387, 0.899808406829834, -0.24792194366455078, 0.48263245820999146, 0.7471646666526794, -1.079390287399292, -1.2064082622528076, 1.255110502243042, -0.3487827777862549, -2.259335994720459, 0.5285673141479492, 0.5572685599327087, 0.13666917383670807, -0.11738720536231995, -0.110940121114254, 0.1259346306324005, 0.49751296639442444, 0.4096585214138031, 1.0065914392471313, -1.11281418800354, 0.0935773178935051, -1.0842769145965576, -0.40017077326774597, 0.8668773174285889, -0.92754065990448, -0.9919415712356567, 0.36667317152023315, 0.1484985500574112, -1.482807993888855, 0.7729337811470032, 0.0013467799872159958, 0.03388785570859909, 0.4821024537086487, 1.3423776626586914, 0.7009317278862, 0.2702181935310364, -0.43876275420188904, -0.22184905409812927, -0.17549042403697968, -0.0817154049873352, 0.6757654547691345, -0.6246607303619385, -0.26047879457473755, 1.0260928869247437, 0.5943114161491394, -0.310131311416626, 0.9551021456718445, -0.6310238242149353, 0.3138439357280731, -1.4631365537643433, -0.46692126989364624, -0.28313758969306946, -1.4198073148727417, 1.2440001964569092, 1.058916687965393, -0.9170057773590088, 0.6435735821723938, -0.4232480525970459, -0.3479144275188446, -0.6499925851821899, -0.49610623717308044, -0.9242876172065735, -0.15281502902507782, -0.3201645612716675, -0.06116282939910889, -0.7231853008270264, -0.4468690752983093, 1.384569525718689, -0.37454888224601746, -0.24100103974342346, 0.2036363184452057, 0.38748323917388916, 0.7392128705978394, 0.4984804093837738, -0.024574993178248405, -1.9403091669082642, -0.7618798017501831, 0.5048769116401672, 1.3226836919784546, -0.07841333746910095, 0.8114867806434631, 0.35961174964904785, 0.9316574335098267, 0.6679502129554749, 0.33857962489128113, -0.1964636892080307, 0.22918207943439484, 0.33478090167045593, 0.19275720417499542, -0.03422274813055992, 0.2751956284046173, -0.6720921397209167, -0.6920552253723145, -0.5370252728462219, 0.6750284433364868, 0.9596831798553467, 0.9725319147109985, 0.7787280082702637, -0.23144418001174927, 0.5579254031181335, -0.40340831875801086, 0.013411354273557663, -0.2304583042860031, -0.5799351334571838, 0.12093417346477509, -0.6803703904151917, -0.4306652843952179, -0.4728606343269348, -0.005999094340950251, 0.484536349773407, 0.150238499045372, 1.3918551206588745, 0.9782760739326477, -0.784956693649292, -1.3412249088287354, -0.8976349830627441, 0.24000534415245056, -0.795748770236969, 0.829484760761261, 0.9729594588279724, -1.5602285861968994, 0.7550013065338135, 0.24185678362846375, 0.5148118138313293, 0.8947982788085938, -0.10467111319303513, 0.281622976064682, -1.3406661748886108, -0.5158384442329407, -0.1326867789030075, 1.327661156654358, -0.28530001640319824, 0.0017213569954037666, -0.5337722897529602, -0.028644418343901634, 0.842814028263092, -0.11008843779563904, 0.15899282693862915, 0.23613840341567993, -0.3892977237701416, -0.5997049808502197, -0.004978109151124954, 0.3169393539428711, 0.5137239098548889, -0.39092350006103516, -1.326794981956482, 0.12044361978769302, 0.11535058170557022, -0.7847573757171631, 0.26669418811798096, 0.779403805732727, 0.09866885095834732, -0.5738284587860107, 0.04473678395152092, 1.094105839729309, 0.17972664535045624, -0.11823353171348572, -0.4066976010799408, 0.5239754915237427, 0.7548521757125854, 1.2770394086837769, 0.30679643154144287, 0.5733119249343872, 0.30781570076942444, -1.4659888744354248, -0.4388626515865326, -0.004540991969406605, 0.66023850440979, -0.2054721564054489, -0.6287075877189636, -0.11801638454198837, -0.24727816879749298, -0.2212163507938385, 0.41524431109428406, 0.5514605641365051, -0.028666481375694275, -0.20003676414489746, -1.1020145416259766, 0.6709296107292175, -0.046659260988235474, -0.48278549313545227, -0.9666450619697571, -0.0169527605175972, 0.6043992638587952, -0.18321536481380463, -0.29483088850975037, -0.46378588676452637, -0.11694558709859848, 0.33725377917289734, -0.7174111604690552, -0.4199093282222748, -0.10108835250139236, 0.2607434391975403, 1.0434941053390503, -1.3245117664337158, -0.2284785360097885, -0.5222998857498169, 0.6510547399520874, 0.7719243168830872, -0.36657556891441345, 0.6647870540618896, 0.7081965804100037, -0.33512088656425476, -0.2308804839849472, -0.04920037463307381, 1.3687806129455566, -0.3302806615829468, -0.14732679724693298, 0.5019115209579468, -0.18701808154582977, 1.0100222826004028, -1.2863714694976807, -0.24762289226055145, 0.2743544280529022, -0.46701663732528687, 0.3164111375808716, -0.011932878755033016, -0.7896976470947266, 1.3318098783493042, 0.3029016852378845, -0.5532332062721252, 0.2816959023475647, 0.0103569645434618, -1.1228018999099731, 0.030246460810303688, 0.3668874502182007, -0.09664458781480789, -0.40311169624328613, 0.36840227246284485, 0.5320827960968018, 0.5493801832199097, 0.5800642967224121, 0.2863472104072571, 0.11074725538492203, 0.31307655572891235, 0.023470891639590263, 0.24065926671028137, 1.058850646018982, 0.9545316100120544, 1.056262493133545, 1.0066602230072021, -0.5642006397247314, -0.13569030165672302, 0.49390679597854614, -0.2821817100048065, 0.6948274374008179, 1.12704336643219, -0.239538311958313, 1.251860499382019, -1.4982223510742188, 0.28844520449638367, 0.8865323066711426, 0.39851853251457214, 1.3164424896240234, -0.1887723207473755, 0.6388672590255737, -0.8364578485488892, -0.5064999461174011, 0.9100950956344604, -0.5871227979660034, 1.0272380113601685, 0.18031008541584015, -0.13357742130756378, 0.73291015625, -0.8496260643005371, -0.4276510179042816, -0.730383038520813, -0.34987449645996094, -0.828116238117218, -0.46576690673828125, 0.512016236782074, 1.0000605583190918, 1.0551276206970215, 0.6081036329269409, 0.27361810207366943, -1.7052749395370483, 0.15320929884910583, -1.0022766590118408, 0.18727265298366547, -0.1307377815246582, 0.1300913244485855, -0.9900360703468323, -0.6743745803833008, -0.030945396050810814, 0.02152233012020588, -0.7498562335968018, -0.33751562237739563, -0.07654757797718048, -1.134519338607788, 0.3972405195236206, 0.9899142980575562, 0.2745720148086548, 0.47140222787857056, 0.23788657784461975, -0.1651010811328888, 0.2734549343585968, -0.5277650356292725, -0.6622902750968933, -0.7937373518943787, 0.03380989283323288, 0.16464926302433014, -1.250040054321289, -0.27723073959350586, 0.6009365320205688, 0.9754635691642761, 0.3588860034942627, 1.3664387464523315, 1.1518484354019165, 1.2260359525680542, -1.0825639963150024, -0.4487367868423462, 0.37780922651290894, -0.41815057396888733, 1.0140008926391602, 0.9698463082313538, -0.5261797904968262, -0.3904288411140442, -0.8287081122398376, -1.8572720289230347, 0.7613409161567688, -0.29998424649238586, -0.13329723477363586, 0.8948107361793518, 0.6106489300727844, 0.16834604740142822, 0.3737300634384155, -0.7294256687164307, -0.5758500695228577, -0.11373629420995712, 0.1169959157705307, -0.6110052466392517, 0.9369186758995056, 0.859146773815155, -0.4178548753261566, -1.3091500997543335, 0.42665988206863403, -0.4234273135662079, -0.5971757173538208, 0.04405141994357109, 0.40909823775291443, -0.7070584893226624, 0.41674894094467163, 0.11852160096168518, -0.8092434406280518, 0.41261377930641174, -1.3913999795913696, 0.6438437700271606, 0.3373122811317444, 0.20523640513420105, 0.7661881446838379, -0.24997460842132568, 1.003757357597351, -0.6543639898300171, -0.22890454530715942, -0.49597495794296265, -0.42023882269859314, 0.5361759662628174, 0.585989236831665, 0.6691503524780273, -0.31192538142204285, -0.894304096698761, -0.27147960662841797, -0.6406146883964539, 0.022777657955884933, 0.8399488925933838, -0.5742858648300171, 0.1920044720172882, 0.1662244349718094, -0.5596863031387329, 0.14160099625587463, -0.20435625314712524, 0.05711902305483818, -0.9805697202682495, -0.9902766942977905, -0.4164687395095825, -0.4577693045139313, 1.1540671586990356, -0.4739064872264862, 0.8293532729148865, -0.034574177116155624, -1.2227997779846191, 0.3394373953342438, -0.13020919263362885, -1.6443971395492554, 0.14511021971702576, -0.943077802658081, 0.7803040742874146, -0.692937970161438, -0.16152898967266083, -0.2363450825214386, 1.1704552173614502, -1.5873976945877075, -0.8836963772773743, -1.8853720426559448, -0.3575391173362732, 0.5615138411521912, 0.9410561919212341, -1.8805789947509766, 1.1891597509384155, -0.526041567325592, -0.7488875389099121, -0.4731290638446808, -0.22951312363147736, -1.1228728294372559, -0.366007536649704, 0.1532823145389557, 0.724504828453064, 0.3052223026752472, 1.8292160034179688, -0.0998721569776535, 0.9487418532371521, 0.3407277464866638, 1.336311936378479, -0.09199193865060806, -0.2765175700187683, 0.3410789966583252, 0.7248063683509827, -1.379563331604004, 0.1903010904788971, 0.04850784316658974, -0.03253742307424545, -1.118001103401184, 0.4407828748226166, 0.561795175075531, -0.37025704979896545, 0.22944475710391998, -0.38296476006507874, 0.30016428232192993, -0.7320575714111328, 0.2973410487174988, 0.6125278472900391, -0.925691545009613, -0.07257350534200668, -0.9623104929924011, 0.11221089959144592, -1.2158769369125366, -0.4021545648574829, 0.19734309613704681, -0.15177856385707855, -0.4146081209182739, 0.6127346158027649, 0.28855186700820923, 0.728955090045929, -0.5179001688957214, 0.8786314129829407, 0.8629745244979858, -0.5873575806617737, -0.2905382215976715, 0.4364316165447235, 0.39864206314086914, -0.19907614588737488, 0.06725436449050903, -0.21237529814243317, -0.7214857935905457, 0.40528759360313416, 0.2336198389530182, -0.36514797806739807, 0.010850009508430958, 0.594131350517273, -0.013094860129058361, 0.48036906123161316, 1.1308934688568115, -0.217729851603508, -0.8752927780151367, 1.0177732706069946, 0.6742197275161743, -0.9613384008407593, 0.013562552630901337, -0.058906834572553635, 0.6735141277313232, -0.05372868478298187, 0.39050644636154175, 0.4338077902793884, -0.7458999156951904, 0.4351855218410492, -0.20906223356723785, 0.13768209517002106, 0.26992860436439514, -0.4562247693538666, -0.8111711144447327, -0.9075262546539307, -0.8688415288925171, -0.21126072108745575, 0.3973639905452728, -1.075939655303955, -1.3799948692321777, 0.3418779671192169, 0.5566983222961426, -0.46722567081451416, 0.2353784143924713, -0.0052504814229905605, -0.2576224207878113, -0.4170321524143219, 0.8452498316764832, -0.17561087012290955, 1.359399676322937, -0.5131664872169495, 0.02088637463748455, -0.09615034610033035, -0.11096911877393723, -0.051738012582063675, -0.14362987875938416, 0.09221549332141876, -0.721123456954956, 0.6387514472007751, -1.072405219078064, -0.516994297504425, 0.16563557088375092, 0.3403588533401489, -0.07617663592100143, -0.3420945405960083, -1.2093929052352905, 0.7189873456954956, 0.34072306752204895, 0.13206784427165985, -0.5364436507225037, -0.44742482900619507, -0.6768575310707092, 0.1593042016029358, -0.3935287594795227, 0.8598617911338806, 0.01035594567656517, 0.8791396021842957, 0.5687424540519714, -0.6929140090942383, -1.099299430847168, -1.0980486869812012, 0.6796890497207642, 0.24507597088813782, 0.31377261877059937, -0.1309901624917984, 0.7922085523605347, -0.39366844296455383, -0.9873066544532776, -1.0034189224243164, 0.05791143327951431, 0.29837968945503235, 0.5748509764671326, -0.6902772188186646, -0.6929498910903931, -0.38392165303230286, 0.9398486614227295, -0.07434920221567154, 0.16351932287216187, 0.356251060962677, -0.31255173683166504, -0.9758297204971313, -0.12547168135643005, 0.47518062591552734, 0.2007184475660324, 0.6872552633285522, 1.723394513130188, 0.9659530520439148, 0.0833999365568161, -0.37817931175231934, 0.04105758294463158, 0.7298234701156616, -1.4789706468582153, -0.06546454131603241, -0.867336630821228, -0.483461856842041, -0.07834642380475998], [0.670873761177063, 2.5666115283966064, -2.8639564514160156, 0.4565143287181854, 1.019042730331421, 0.454334020614624, 0.9357755780220032, 0.6534588932991028, 0.07290693372488022, -0.673214852809906, -1.112908124923706, 0.5483556985855103, -0.1414954513311386, 0.8435606956481934, 0.31483954191207886, -0.21179994940757751, 0.8127113580703735, 0.19339270889759064, -0.10168522596359253, 1.1620842218399048, 0.49686071276664734, -0.6056675910949707, -0.6952574849128723, 0.2750544548034668, 0.004299473017454147, -0.023230750113725662, -0.9967606067657471, 0.24179407954216003, -0.9920597076416016, -0.4891241192817688, 1.5711414813995361, 0.6394340991973877, 0.6509617567062378, 0.17421363294124603, -1.9890691041946411, 0.03719101846218109, 0.5911147594451904, -0.29684796929359436, 0.32683855295181274, -0.17854458093643188, 1.7353222370147705, 0.1833494007587433, -0.18021845817565918, -1.3914690017700195, -0.36182957887649536, 0.16803638637065887, 0.4260185658931732, -0.5355978608131409, 0.41721999645233154, -0.7029899954795837, 0.9984534382820129, -0.4163798391819, 0.41215357184410095, 0.48339858651161194, 0.8915283679962158, -1.1850663423538208, 0.4799293577671051, 0.5639658570289612, -0.13564150035381317, 0.6941640377044678, 0.8964411616325378, -0.6710578799247742, 1.0969220399856567, 0.5982657074928284, 0.031294092535972595, -0.6939487457275391, 0.5275850296020508, 0.3052232563495636, 0.5466118454933167, 0.24963797628879547, 0.9004459977149963, 1.1664807796478271, -1.1563191413879395, 0.2859452962875366, -0.9756622314453125, 0.14333246648311615, -0.145871102809906, 0.38398268818855286, 0.005733763799071312, 0.40312764048576355, -0.0894542708992958, 0.4626834988594055, 0.4114088714122772, 0.44890326261520386, -0.2360934019088745, 0.16758964955806732, 0.4366002082824707, -0.4870177209377289, -0.34863439202308655, 1.1069130897521973, 0.04729855805635452, 0.6124024987220764, 0.9106763005256653, -0.2809833586215973, -0.30013415217399597, -0.7992616295814514, -0.3414173722267151, -1.3241041898727417, -0.40308743715286255, -0.6219027042388916, 0.008948049508035183, -0.6043736934661865, 0.7229329943656921, 0.6431050300598145, 0.23709695041179657, 1.6010345220565796, -0.12365357577800751, -0.5813052654266357, -0.26580652594566345, -0.3624878525733948, 0.09100289642810822, 0.15974970161914825, 0.1514105349779129, -1.7790921926498413, -0.17013311386108398, 0.9894523620605469, 1.115722417831421, 0.6556040048599243, -0.3729158937931061, 0.42445215582847595, -0.42094340920448303, -0.458204060792923, -0.736579179763794, 0.17278940975666046, 1.7550758123397827, -0.09295596182346344, -0.15338733792304993, 0.441741406917572, -0.11635483801364899, 0.20302249491214752, 0.27229464054107666, 0.043613169342279434, -0.12342521548271179, 0.5254051685333252, -0.6759414672851562, 0.8192430734634399, -0.49428725242614746, -0.20280689001083374, 0.0033356850035488605, 1.222444772720337, 0.5210340619087219, -0.35203808546066284, -0.0835859552025795, -0.4350638687610626, 0.38204485177993774, -0.19275303184986115, 0.743602454662323, 0.14190703630447388, -0.7896665334701538, 0.7624611258506775, -2.095228910446167, 0.38871219754219055, 0.03281873092055321, 0.947088897228241, 0.703006386756897, -0.09087809920310974, 0.4770418107509613, 0.09451130777597427, -0.012981596402823925, 0.24304084479808807, 1.1214838027954102, 0.05516327917575836, -0.9187544584274292, 0.9294232130050659, 0.7424876689910889, -0.33744844794273376, 0.30009549856185913, 0.3155458867549896, -0.27060022950172424, 1.1737803220748901, 0.005541522055864334, -0.5006855130195618, -0.8528767228126526, 0.32531028985977173, -0.1944524049758911, -0.18269731104373932, 0.8952212333679199, 0.23406384885311127, -0.7317565083503723, -0.910431981086731, 0.5481342077255249, -0.028789952397346497, 0.1939089298248291, -0.018648158758878708, 0.9828433990478516, -0.3710704445838928, -0.5743545293807983, -0.8485254049301147, -0.41730523109436035, -0.6531291604042053, -0.43399879336357117, 0.032107170671224594, -1.1180315017700195, 0.5875308513641357, -0.6720688939094543, -1.4384771585464478, 1.0113834142684937, -0.37403440475463867, -0.2893499433994293, -0.09771645069122314, 0.14077283442020416, -0.4991803467273712, -1.302164912223816, -0.4548482596874237, -0.48137471079826355, 0.5442538857460022, -1.035315752029419, 0.6639463305473328, -0.9749976396560669, 0.8407010436058044, 0.6766031980514526, -0.40717819333076477, -1.6375882625579834, 0.2011033147573471, -0.19515934586524963, -1.3036134243011475, 0.4029233753681183, -0.2483861744403839, 0.46330487728118896, -0.6830999255180359, -0.48830515146255493, 1.0973159074783325, 0.8146098852157593, -0.6297431588172913, 0.7845912575721741, -0.8568131327629089, 0.11710423231124878, -0.9466069936752319, -0.09756909310817719, 0.3079623281955719, -0.8755550384521484, -1.0584099292755127, 0.7079290151596069, 0.9197879433631897, -1.6039354801177979, 0.6963610649108887, -0.5848666429519653, 0.2818099856376648, 0.2810129225254059, 1.160141110420227, 0.22890597581863403, 0.9446596503257751, -1.0400408506393433, 0.010138992220163345, -1.2510685920715332, -0.6145921349525452, 0.5661441087722778, -0.3462525010108948, -0.08025245368480682, 1.3040434122085571, 0.6011239290237427, -0.21772369742393494, 0.8026323318481445, -0.27643027901649475, 0.04389705881476402, -0.958442211151123, -0.006084372755140066, -0.13880853354930878, -0.7294468283653259, 1.867631435394287, 1.106265664100647, -0.5537940263748169, 0.10530886799097061, -0.4606037437915802, -0.05813390389084816, -0.7984880208969116, 0.0059699625708162785, -0.7760704755783081, 0.1959514021873474, -0.4524126648902893, 0.06960780173540115, -0.7323402762413025, 0.06721610575914383, 1.3031224012374878, 0.5330471396446228, -0.7786775827407837, -0.32112252712249756, 0.5392919778823853, -0.2305169254541397, 0.4561992287635803, -0.6109866499900818, -1.1675877571105957, -1.354573369026184, 0.34009239077568054, 1.056038498878479, -0.1594826877117157, 0.40318605303764343, 0.5891366600990295, 1.0267192125320435, -0.21586035192012787, 0.3008187711238861, 0.07081626355648041, 0.09393195062875748, 0.004297053441405296, 0.7783551216125488, 0.46053487062454224, 0.23100829124450684, -0.7017304301261902, -0.6533703804016113, -0.35154032707214355, -0.056843455880880356, 1.0799190998077393, 0.7914322018623352, 1.2784959077835083, -1.0032463073730469, -0.09334680438041687, -0.620063841342926, -0.1366306096315384, -0.9162716865539551, -0.4397018849849701, -0.4054841995239258, -0.8192061185836792, -0.5193459391593933, -0.6356188654899597, -0.41986942291259766, 0.4901678264141083, 0.017073512077331543, 1.1210267543792725, 0.4349711537361145, -0.3913062512874603, -1.812825083732605, -1.048769474029541, -0.7894166111946106, -0.7257362604141235, 0.6790228486061096, 1.5348366498947144, -2.3530776500701904, 0.041247639805078506, -0.14560283720493317, -0.11416828632354736, -0.417441725730896, -0.7151418924331665, 0.24404111504554749, -1.1067678928375244, -0.19955679774284363, -0.48067039251327515, 1.3880170583724976, 0.31202274560928345, -0.5062370300292969, -0.19552841782569885, 0.9109766483306885, 1.0407230854034424, -0.37112483382225037, 0.20169579982757568, 0.26981982588768005, -1.4498552083969116, -0.001167519949376583, -0.235885888338089, 0.14001062512397766, 0.012048550881445408, -0.595780074596405, -1.1832228899002075, -0.5918026566505432, -0.6956688165664673, -0.7683932185173035, 0.8323136568069458, 1.2497546672821045, 0.6039428114891052, 0.2952008843421936, 0.10553449392318726, 1.0967689752578735, 0.18647918105125427, 0.4738523066043854, -1.0194660425186157, 0.5100403428077698, 0.8671022057533264, 1.848682165145874, 0.6426293849945068, 0.03718777373433113, 0.4215985834598541, -1.2791988849639893, -0.4900258779525757, 0.09670445322990417, 0.4347565770149231, 0.2727033197879791, -0.4584541618824005, -0.3794732391834259, -0.7152420878410339, 0.07709342241287231, 0.044182222336530685, 0.9902815222740173, 0.11185003072023392, -0.05158437788486481, -0.3659171164035797, 1.6763577461242676, 0.47183123230934143, 0.09830119460821152, -1.1131709814071655, -0.519881546497345, 0.8012152910232544, -1.0086441040039062, 0.2386402040719986, 0.09516967833042145, -0.09281393885612488, 0.5784637928009033, -0.832973837852478, -0.7769890427589417, -0.221268892288208, 0.4535566568374634, 0.9342345595359802, -1.5866621732711792, -0.36928990483283997, -0.6231312155723572, 0.4346897304058075, 0.9329907894134521, 0.8249600529670715, 0.46641647815704346, 0.5968179702758789, -0.7361539006233215, 0.18701769411563873, 0.37198200821876526, 1.2864489555358887, -0.33913713693618774, 0.07726123183965683, 0.1825382560491562, 0.22784776985645294, 0.5592800974845886, -0.8875962495803833, 0.0959348976612091, -0.2692532241344452, -0.7233638167381287, -0.3361749053001404, 0.30017325282096863, -0.936285138130188, 1.6209927797317505, -0.10368270426988602, -0.7508600354194641, 0.21430231630802155, 0.5070713758468628, -1.275933027267456, -0.05150327831506729, 0.6343560814857483, -1.1892826557159424, 0.017337270081043243, 0.588373601436615, 0.5391653180122375, 0.8292884826660156, 0.12418576329946518, 0.6393589973449707, 0.3623330593109131, 0.6465945839881897, 0.2597368061542511, 0.3241596221923828, 0.6246669888496399, 1.666945457458496, 0.6780076026916504, 1.9328261613845825, 0.07000409811735153, -0.7531312108039856, 0.9789590835571289, -0.7639408111572266, 0.2672426104545593, 0.9087960124015808, 0.05169522389769554, 1.1215815544128418, -1.5042107105255127, -0.0008627604693174362, 1.3731046915054321, -0.31175652146339417, 0.7165953516960144, 0.18633605539798737, 0.6499279141426086, -1.0877360105514526, 0.20015142858028412, 0.18827150762081146, -0.5839575529098511, 0.6832827925682068, 0.14050991833209991, 0.4981948733329773, 0.9936404228210449, -0.577111542224884, 0.12377613037824631, -0.9260258078575134, -0.5770307183265686, 0.240115687251091, 0.25688403844833374, 0.28017479181289673, 0.7298615574836731, 1.1123813390731812, 0.396742582321167, -0.27703821659088135, -1.8135117292404175, 0.5091424584388733, -1.0042543411254883, 0.33708181977272034, -0.2470424473285675, -0.0987364798784256, -0.822059690952301, -0.5205880999565125, 0.3771466910839081, -0.4773784577846527, -0.2752707302570343, -0.6590990424156189, -1.1812307834625244, -0.9004088044166565, 0.5121710896492004, 0.14690075814723969, 0.5013401508331299, 0.1880963295698166, 0.9765719771385193, 0.04899440333247185, 0.011384505778551102, -0.4737541973590851, -0.16116274893283844, 0.2896290719509125, 0.3346864879131317, -0.5918622612953186, -0.1316738724708557, -0.9460222125053406, 0.28148773312568665, 0.4360692501068115, 0.15617524087429047, 0.40450236201286316, 0.9119920134544373, 1.034929871559143, -0.4601973593235016, -0.43174099922180176, 0.3126239776611328, -0.7977978587150574, 0.9197767376899719, 0.5037820339202881, -0.2829494774341583, 0.12934137880802155, 0.022909121587872505, -1.7471126317977905, 1.1562297344207764, 0.3490886688232422, -0.002271127887070179, 0.7026017904281616, 0.9750661849975586, 0.47959697246551514, 0.6567673683166504, -0.6203945875167847, 0.011384275741875172, 0.6868472695350647, -0.29120969772338867, -0.38468098640441895, -0.09841465204954147, 0.44022682309150696, -0.29020956158638, -0.9657790660858154, 0.44387733936309814, -0.31508952379226685, -0.3583792448043823, -0.27301904559135437, 0.5819235444068909, -0.07732298970222473, 0.9836409687995911, 0.09183960407972336, -0.3004470467567444, 0.4880407750606537, -1.3793648481369019, -0.14358510076999664, 0.8627174496650696, 0.4038350582122803, 0.9248150587081909, -0.16185994446277618, 1.5548855066299438, -1.1468093395233154, -0.3978053629398346, 0.006104964762926102, -0.6774094700813293, 0.4880466163158417, 0.02674882672727108, 0.36877843737602234, 0.3334504961967468, -0.48450884222984314, -0.20406575500965118, -0.7626670002937317, -0.1489718109369278, 0.9586077928543091, -0.9618746638298035, -0.64095139503479, -0.6507078409194946, -0.8250868916511536, 0.2034495770931244, 0.31421002745628357, 0.5726873278617859, -0.44502338767051697, -1.266113042831421, -0.4265960454940796, -0.32387441396713257, 0.7150523662567139, -0.3122422397136688, 0.2800816595554352, -0.5968430638313293, -1.1060041189193726, 0.6780118942260742, -0.2604841887950897, -2.1234352588653564, 0.2497079223394394, -0.24075758457183838, 0.2546037435531616, -0.23267576098442078, -0.14626742899417877, 0.5174549221992493, 1.2283909320831299, -1.8284311294555664, -1.128906488418579, -1.3914110660552979, -0.8112620711326599, 0.24721528589725494, 0.9283527135848999, -0.9991292357444763, 1.4017298221588135, -1.0681908130645752, -0.20159688591957092, -0.6876874566078186, -0.1520927995443344, -0.8616453409194946, -0.09059832245111465, 0.30441638827323914, -0.19276946783065796, -0.010408395901322365, 1.4395233392715454, -0.06295940279960632, 0.8699932098388672, 0.12507887184619904, 1.546844720840454, -0.8343880772590637, -1.2622953653335571, 0.5015797019004822, 0.7278558015823364, -0.6281693577766418, -0.17175623774528503, 0.22938968241214752, -1.0084724426269531, -1.023316740989685, -0.06307603418827057, 0.4123997986316681, -0.7018508911132812, 0.15136292576789856, 0.6383805871009827, -0.3432161211967468, -0.9243425726890564, 0.4131108224391937, 0.7158148288726807, -0.7516469359397888, -0.023114094510674477, -0.8131119012832642, 0.6479038596153259, -0.8640106916427612, 0.44665566086769104, 0.3479451537132263, -0.566152811050415, -0.05593126267194748, -0.009112096391618252, 0.271140992641449, 0.5533090829849243, -0.6060150861740112, 1.1193474531173706, 0.40841931104660034, -0.3499666452407837, -0.06337545067071915, -0.04084296151995659, -0.13108868896961212, 0.26407766342163086, -0.06405894458293915, -0.34636837244033813, -0.48478105664253235, 0.6865532994270325, 0.6381569504737854, -0.016119226813316345, 0.6481199264526367, 0.8426513671875, -0.002992479130625725, 0.2413203865289688, 0.6978328824043274, -0.3712485134601593, -0.5035758018493652, 1.3676890134811401, 0.47791123390197754, -0.4271862208843231, -0.06352631002664566, -0.3725103437900543, 0.7334587574005127, 0.73249751329422, 0.9450436234474182, 0.5410686731338501, -0.34179598093032837, 0.5990748405456543, 0.3426298499107361, -0.46197763085365295, -0.4869426190853119, -0.33490869402885437, -1.6114329099655151, -0.08575286716222763, -0.4276781678199768, -0.10917369276285172, 0.6577346324920654, -0.9935255646705627, -1.007323980331421, -0.2607851028442383, -0.5252092480659485, -0.5557044744491577, -0.35468122363090515, -0.2405754178762436, -0.04985455423593521, 0.16488046944141388, 0.6536532044410706, -0.3086162209510803, 1.4409513473510742, -0.24576440453529358, -0.1351778656244278, -0.6594486236572266, -0.6635568737983704, -0.15897443890571594, 0.29801949858665466, -0.07878002524375916, -0.4577690064907074, 0.9801174998283386, -1.019837498664856, -0.12532438337802887, 0.08496847003698349, 0.363253653049469, 0.020838463678956032, -0.2807781398296356, -0.4421641230583191, 0.5762681365013123, 0.32660770416259766, 0.8814347386360168, -1.2560899257659912, -0.976944625377655, -1.3274638652801514, 0.968774139881134, 0.12289068102836609, 0.7761774659156799, -0.21824242174625397, 0.6548009514808655, 0.11197713762521744, -0.7541072368621826, -0.941300094127655, -0.3451522886753082, 1.4802417755126953, 0.26106590032577515, -0.21929307281970978, -0.6289983987808228, 0.39484909176826477, -0.04827195405960083, -1.3520079851150513, -0.8090924024581909, 0.6429456472396851, -0.41288650035858154, -0.302012175321579, -0.3514227867126465, -0.8553820848464966, -1.175708532333374, 0.21195687353610992, -0.11367881298065186, 0.1777767837047577, 0.7968912720680237, -0.48466020822525024, -0.3639054000377655, 0.09117212146520615, 0.9482290148735046, 0.25647789239883423, 0.4628205895423889, 1.4875609874725342, 1.1467630863189697, -0.07419446110725403, -0.7004702091217041, -0.31097444891929626, 0.10316009819507599, -1.6439014673233032, 0.16378580033779144, -0.6787332892417908, 0.04039771482348442, -0.1911274492740631], [0.7804491519927979, 1.4993640184402466, -2.7815399169921875, 0.5130330920219421, 0.7252818942070007, 0.39973583817481995, 0.4997656047344208, 0.4846724271774292, 0.47061747312545776, -0.4024360179901123, -0.6904162168502808, -0.06768489629030228, -0.05669927969574928, 0.38387933373451233, 0.8165030479431152, 0.24236980080604553, 0.533458948135376, 0.025916853919625282, 0.2041100412607193, 1.3516114950180054, 0.010491281747817993, -1.2440388202667236, -1.2891980409622192, 0.3636842668056488, -0.3485439419746399, 0.7580931186676025, -1.5906065702438354, 0.3147180378437042, -0.8836227655410767, -0.44623813033103943, 0.7779812812805176, -0.36254575848579407, 0.36467546224594116, 0.13783687353134155, -1.9148014783859253, 0.1925506889820099, 0.43559587001800537, 1.038373351097107, 0.0019528456032276154, 0.4248400032520294, 1.656360149383545, -0.2363114058971405, 0.25802144408226013, -1.057508945465088, 0.6536272764205933, -0.3730382025241852, 0.4526797831058502, -1.3276103734970093, 1.792885661125183, 0.036419883370399475, 0.5328765511512756, -0.2961787283420563, 0.04207136854529381, 0.2971455454826355, 1.7664586305618286, -1.8814677000045776, 0.9386719465255737, 0.18149268627166748, -0.33872100710868835, 0.6987165808677673, 1.5012199878692627, -0.6083580255508423, 1.5159029960632324, 0.8507929444313049, 0.4216301441192627, -1.006400465965271, 0.43831107020378113, 0.5630134344100952, -0.01921987719833851, 0.10149841010570526, 0.5688080191612244, 0.5860490798950195, -1.398497462272644, 0.22966018319129944, -0.8773508071899414, -0.07987136393785477, -0.4479838013648987, 0.557059109210968, 0.25334465503692627, 0.46608635783195496, -0.4899408519268036, 0.6374557614326477, 0.5677117109298706, 0.24523860216140747, -0.5579923391342163, -0.1680741310119629, 0.35545894503593445, -0.5208131074905396, -0.2269878387451172, 1.2114710807800293, 0.7529359459877014, 0.24774514138698578, 0.8332238793373108, 0.7148743867874146, -0.323678582906723, -0.4297720193862915, -0.24069766700267792, -0.8574717044830322, -0.48254990577697754, -0.9390754103660583, -0.36786195635795593, -0.39955568313598633, 1.114651083946228, 1.2183128595352173, 1.3875051736831665, 1.6756556034088135, -0.2626628279685974, -0.914425790309906, -0.3319936990737915, -0.21109150350093842, -0.035000432282686234, 0.23947301506996155, 0.04643239825963974, -1.6896878480911255, -0.6724419593811035, 1.277039647102356, 0.38890546560287476, 0.33270639181137085, -0.18011656403541565, 0.5083497762680054, -0.20567655563354492, -0.10296869277954102, -0.5962477326393127, 0.19489116966724396, 1.5893417596817017, -0.6911081671714783, -0.3821672797203064, 0.32877427339553833, -0.44593092799186707, 0.444685697555542, -0.007447018753737211, -0.07702363282442093, 0.1289222091436386, 1.1912457942962646, -0.039454661309719086, 0.8104674220085144, -0.22720971703529358, -0.00915578193962574, -0.0333695113658905, 0.7385101914405823, 0.6803107857704163, 0.05174577608704567, -0.8125094771385193, -0.5605826377868652, -0.5351144671440125, -0.6554864048957825, 0.5322849750518799, -0.11322342604398727, -0.2883448600769043, -0.24669934809207916, -2.2650721073150635, 0.08023752272129059, -0.43709447979927063, 1.1707801818847656, 0.48160234093666077, -0.49285316467285156, 1.042459487915039, 0.2460900843143463, 0.188133105635643, 0.5402438044548035, 0.5108143091201782, 0.03293817117810249, 0.05614693462848663, 0.6325292587280273, 1.0096160173416138, -0.7758703231811523, -0.0435083769261837, -0.17117178440093994, 0.08363760262727737, 1.4679145812988281, -0.21391215920448303, -0.7784185409545898, -0.5849467515945435, -0.21312366425991058, 0.15465109050273895, -1.3234295845031738, 0.6271774768829346, -0.06264287978410721, -0.7403429746627808, -1.2827597856521606, 0.603950023651123, 0.06311224400997162, 0.31539803743362427, -0.13823582231998444, 0.7530437111854553, -0.5244042277336121, -0.5255847573280334, -0.08639692515134811, -0.6036036014556885, -0.3279981017112732, -0.4354780912399292, -0.06822241097688675, -1.1772842407226562, -0.29857775568962097, -0.38373202085494995, -1.343374252319336, 0.8709056377410889, -0.03156406059861183, -0.5979125499725342, -0.553823709487915, 0.18349705636501312, -0.655674159526825, -1.2069175243377686, -0.6268454790115356, -0.10343532264232635, 0.8821053504943848, -0.6176518797874451, -0.004140467848628759, -0.8628509640693665, 0.3582715690135956, 1.010971188545227, -0.623275876045227, -1.2039412260055542, -0.4991358518600464, 0.328328013420105, -0.809273362159729, -0.04701698198914528, 0.3531024754047394, 0.37854743003845215, -0.825657069683075, 0.2810509502887726, 0.5573227405548096, 1.0140843391418457, -0.6736431121826172, 0.33045291900634766, -0.04320736229419708, -0.30759841203689575, -0.9068339467048645, -0.5015709400177002, 0.043692439794540405, -0.7401553988456726, -0.8902965784072876, 1.0088435411453247, 0.6680893301963806, -1.250104308128357, 0.9754880666732788, -0.13178038597106934, 0.5119459629058838, 0.3648001551628113, 0.8478385210037231, 0.587205171585083, 0.3793754279613495, -0.6083924770355225, -0.18849340081214905, -1.0668044090270996, -0.4445967674255371, -0.2117641419172287, -0.3502297103404999, -0.2341943234205246, 1.349606990814209, 0.6805949211120605, 0.004972465336322784, 0.5968114733695984, -0.09733965992927551, 0.5182725787162781, -0.9899145364761353, -0.19479697942733765, 0.11305508017539978, -0.7528541684150696, 1.9548053741455078, 0.814575731754303, -1.107729196548462, -0.2678685784339905, -0.5665587186813354, 0.18707175552845, -0.14524737000465393, -0.48186033964157104, -1.5084161758422852, 0.7960341572761536, -0.20512118935585022, 0.3854847252368927, -0.007152050733566284, -0.0972248986363411, 1.4172178506851196, 0.41058048605918884, -0.34971269965171814, -0.028246238827705383, 0.6078625321388245, -0.5608712434768677, 0.6037631034851074, -0.7295339703559875, -0.7051951289176941, -1.29706871509552, 0.5326188206672668, 0.5273948907852173, 0.12113888561725616, 0.5668591856956482, 1.9235609769821167, 1.3737585544586182, -0.34852996468544006, 0.031802620738744736, 0.606367826461792, 0.14885829389095306, -0.18155649304389954, 1.0674242973327637, 0.8618462085723877, 0.9614681005477905, -1.087833046913147, -0.4533684551715851, -0.6091161370277405, 0.006011802703142166, 0.9574625492095947, 0.9409908652305603, 0.9670408964157104, -1.1557365655899048, 0.05741763487458229, -0.4661814272403717, 0.20510900020599365, -0.8690831065177917, -0.5088517069816589, -0.4304765462875366, -1.1396490335464478, -0.009150569327175617, -0.7572554349899292, -0.42732295393943787, 0.39071452617645264, 0.08158764988183975, 0.6728207468986511, 0.17308025062084198, -0.5023865699768066, -1.066379427909851, -1.3199251890182495, -0.2619872987270355, -0.9052867889404297, 0.768695592880249, 0.8468752503395081, -2.0857644081115723, -0.06223507970571518, 0.6453489661216736, -0.09102712571620941, -0.3049308657646179, 0.06642406433820724, 0.3726597726345062, -1.2354741096496582, -0.26635342836380005, -0.2615599036216736, 1.1295665502548218, 0.2835887372493744, -0.5266486406326294, -0.5068734884262085, 1.195709228515625, 0.1853492558002472, 0.26637277007102966, -0.21088248491287231, 0.06818632036447525, -0.35727763175964355, -0.46427151560783386, -0.28156062960624695, 0.8741257786750793, 0.27894824743270874, -0.7536954283714294, -0.804539144039154, -0.5402963757514954, -0.35956817865371704, -0.8621656894683838, 0.2792779207229614, -0.001162022352218628, 0.5026108622550964, -0.19192223250865936, 0.42739337682724, 0.9197794795036316, -0.508930504322052, 0.4802476167678833, -0.9925069212913513, 1.0184252262115479, 0.9124727249145508, 1.3553861379623413, 0.03976451978087425, 0.5002774000167847, 0.44018274545669556, -1.1812055110931396, -0.7788297533988953, -0.11117102205753326, 0.6268674731254578, 0.09547226130962372, 0.1691543161869049, 0.03748144954442978, -0.9250985980033875, 0.13147245347499847, 0.0934443473815918, 0.366800457239151, 0.05433548241853714, -0.47007259726524353, 0.5125342607498169, 1.4893018007278442, -0.3082486689090729, -0.6822900772094727, -0.7516720294952393, 0.21496737003326416, 0.94727623462677, -0.4702290892601013, -0.27970951795578003, 0.15457291901111603, -0.08709997683763504, 0.6689409017562866, -0.7540464997291565, -0.8705524206161499, -0.000906599685549736, 0.7290188670158386, 0.732422947883606, -1.4514819383621216, 0.025725385174155235, -0.9805770516395569, 0.07467395067214966, 0.25243622064590454, 0.7329301238059998, 0.5590083599090576, 0.8822834491729736, -0.37758564949035645, -0.12542849779129028, -0.17397253215312958, 1.520941972732544, 0.10589636117219925, -0.06488816440105438, -0.03213489055633545, 1.200114369392395, 0.21548132598400116, -1.2459492683410645, 0.5548421740531921, 0.056170813739299774, -0.9495860934257507, 0.01912437379360199, 0.8383929133415222, -0.27084922790527344, 1.1642383337020874, -0.31825539469718933, -0.36481571197509766, 0.4355544149875641, -0.10131937265396118, -0.46404314041137695, 0.2859092354774475, 0.11816129833459854, -0.815213680267334, 0.5112070441246033, 0.26501503586769104, 0.8192397356033325, 0.30857375264167786, 0.22209203243255615, 0.5188025832176208, 0.4924016296863556, 0.8292043805122375, -0.3280581831932068, 0.6660330295562744, 0.36933720111846924, 1.2165669202804565, 0.1105593740940094, 1.0426987409591675, 0.5723368525505066, -0.11215074360370636, 0.9384033679962158, -1.0397166013717651, 0.4297703802585602, 0.8922231793403625, 0.15523625910282135, 0.8835616111755371, -1.7794898748397827, -0.4167483150959015, 0.9472296237945557, -0.07107453048229218, 0.5891363024711609, 0.6444642543792725, 0.4419748783111572, -0.9115185737609863, 0.6548724174499512, 0.1362062394618988, -0.1485917568206787, 0.42586636543273926, 0.5075146555900574, 1.0279552936553955, 1.0193182229995728, -0.2872450053691864, 0.5326528549194336, -0.595726490020752, -0.8792864680290222, 0.2886865735054016, -0.3631349802017212, 0.5708488821983337, 0.0193688552826643, 0.6150321364402771, 0.7060182094573975, -0.8312461376190186, -0.45952218770980835, 0.580380916595459, -1.7653669118881226, 0.3611844778060913, -0.1689678281545639, -0.6929824948310852, -0.3176656663417816, -0.12761762738227844, -0.15343782305717468, -0.5244365930557251, -0.4309462308883667, -0.7303122282028198, -0.622676432132721, -0.9555485844612122, 0.2389204055070877, 0.1048460528254509, 0.5521206259727478, 0.220870703458786, 0.039607126265764236, 0.23880499601364136, -0.09732262790203094, -0.5228343605995178, 0.15518607199192047, 0.5383622646331787, 0.5999730825424194, -0.6701012253761292, -0.7070885300636292, -1.518597960472107, 0.5356167554855347, 0.7329766154289246, -0.14822690188884735, -0.6016579866409302, 1.3647843599319458, 1.038037657737732, -0.6753061413764954, -0.5471317172050476, 0.6953282356262207, -0.6764400601387024, 0.5664222836494446, 0.3352983593940735, -0.779077410697937, 0.3316355049610138, -0.3957173228263855, -1.2527012825012207, 0.9630682468414307, -0.17072360217571259, -0.6496607065200806, 0.7496086359024048, 0.5785216093063354, 0.6464585065841675, 1.0231959819793701, -0.1939232349395752, -0.17774033546447754, 0.33634868264198303, 0.1435433179140091, -0.5962116122245789, 0.0325302928686142, 0.8635229468345642, 0.10883169621229172, -1.0795572996139526, -0.0959365963935852, -0.43376192450523376, 0.421773761510849, -0.1170801967382431, 0.7087790966033936, -0.33607229590415955, 0.5209730863571167, -0.507453203201294, 0.2873281240463257, 0.5748235583305359, -1.0720993280410767, -0.08814030885696411, 0.23683075606822968, 1.3892481327056885, 0.3431684970855713, 0.29462119936943054, 1.260273814201355, -1.0679845809936523, -0.6126847267150879, -0.24777871370315552, -0.16882559657096863, 0.6611506342887878, -0.002790282480418682, 0.6141736507415771, 0.23515936732292175, -0.20232228934764862, -0.248140349984169, -0.905026376247406, -0.1512448638677597, 0.5633848905563354, 0.01433729287236929, -0.48107820749282837, -0.18757936358451843, -0.18503935635089874, -0.39696311950683594, 0.2628062069416046, 0.192494198679924, -0.3066469132900238, -1.7837145328521729, -0.9900549054145813, -1.0944401025772095, 0.9151203632354736, 0.4082144796848297, 0.28608351945877075, -0.3071956932544708, -1.147316575050354, 0.4447643458843231, -0.5285046100616455, -1.5386883020401, -0.6934115886688232, 0.04801340401172638, 0.3857298493385315, -0.4156370759010315, 0.2793952524662018, -0.42644864320755005, 0.8098893761634827, -1.4405872821807861, -1.0649030208587646, -1.055750846862793, -0.21930409967899323, 0.6960299015045166, 0.6167839169502258, -0.45158758759498596, 1.2102487087249756, -0.929208517074585, 0.20794133841991425, -1.1510225534439087, -0.24762746691703796, -1.3462313413619995, 0.14869116246700287, 0.18828125298023224, 0.07052364200353622, 0.2582380473613739, 1.0336989164352417, 0.9283063411712646, 0.9425365328788757, -0.11113707721233368, 0.8686192631721497, -1.0193570852279663, -1.0987355709075928, 0.12115229666233063, 0.8989242911338806, -0.09456928074359894, -0.20021012425422668, 0.42246192693710327, -0.8728918433189392, -0.5862824320793152, 0.07444583624601364, 0.39939406514167786, -0.8085785508155823, 0.11444120854139328, 0.23890921473503113, 0.45803171396255493, -0.573208212852478, 0.3975617289543152, 0.5659536123275757, -0.6146852374076843, -0.12129075080156326, 0.08410341292619705, 0.8514594435691833, -0.841798722743988, 0.09388475120067596, 0.18153342604637146, -0.15102753043174744, -0.07952272146940231, 0.27058857679367065, -0.36322706937789917, 1.0545871257781982, -0.3450501561164856, 1.240423560142517, 1.4187248945236206, 0.20071303844451904, 0.38141629099845886, 0.3729313910007477, -0.43716707825660706, 0.31773608922958374, -0.6174939274787903, -0.2882860600948334, -0.5708266496658325, 0.8343252539634705, 0.3094291687011719, -0.3927103579044342, 0.5227051377296448, 0.5443354249000549, 0.11373220384120941, -0.2809904217720032, 0.6782062649726868, -0.39286279678344727, -0.0982419028878212, 0.7955510020256042, 0.924804151058197, -0.25910958647727966, -0.10612465441226959, -0.10060819983482361, 0.9960028529167175, -0.1382678747177124, 0.4196803867816925, 0.29694417119026184, 0.07572653144598007, 0.016827676445245743, 0.11798910051584244, -0.6657131314277649, -0.22481071949005127, -0.2855406701564789, -1.2036226987838745, -0.18142876029014587, 0.11641591042280197, -0.36043787002563477, 0.4072035551071167, -1.2312090396881104, -1.5032846927642822, -0.04572957754135132, -0.4530942142009735, 0.085739366710186, -0.12745818495750427, -0.32289209961891174, 0.24179907143115997, -0.46820637583732605, 0.25860121846199036, -0.5537393093109131, 1.0868839025497437, 0.4121726453304291, -0.3708655834197998, -0.9260488152503967, -0.872255802154541, 0.1641317754983902, -0.45647746324539185, -0.3373693525791168, 0.22630926966667175, 0.7600409388542175, -0.37713131308555603, -0.14398019015789032, -0.37959015369415283, 0.7655214071273804, 0.1404748558998108, 0.570789098739624, -0.886520266532898, -0.3540573716163635, 0.6977726221084595, 0.9621367454528809, -0.8783248662948608, -0.6976401209831238, -1.0697181224822998, 0.5109516978263855, -0.3639214336872101, 0.4589037001132965, -1.1188875436782837, 0.5289471745491028, 0.19821956753730774, -0.1958818882703781, 0.13807997107505798, -0.30610671639442444, 0.3634404242038727, -0.16677139699459076, 0.18349330127239227, -0.21310998499393463, 0.18018688261508942, -0.33296340703964233, -0.8484550714492798, -0.5215984582901001, -0.5744267702102661, 0.16174975037574768, 0.7343899011611938, -0.9873168468475342, -0.5447923541069031, -0.9533849358558655, 0.16428333520889282, 0.023301763460040092, 0.03031494840979576, 0.6202591061592102, -0.49297189712524414, -1.3047549724578857, 0.19808296859264374, 0.21019943058490753, 0.7192889451980591, 0.42929837107658386, 1.09677255153656, 1.274924874305725, 0.076046422123909, -0.4581338167190552, -0.48435086011886597, 0.30787336826324463, -1.4747183322906494, -0.31081900000572205, -1.4291796684265137, 0.19420009851455688, -0.5364486575126648], [0.5563545823097229, 1.0185250043869019, -2.6045238971710205, -0.3241741955280304, -0.043367013335227966, 0.10125239193439484, 2.2154877185821533, 0.3710455000400543, 0.3052982687950134, -0.8846278190612793, -0.9314035177230835, 0.06835587322711945, -0.3179006278514862, 0.25348129868507385, 0.18094024062156677, 0.4891911447048187, 0.848115086555481, 0.7572466731071472, 0.123323954641819, 0.7756714224815369, 0.4108387529850006, -0.5489293932914734, -0.0010576173663139343, -0.011391650885343552, 0.19309741258621216, 1.0505800247192383, -0.7041048407554626, 0.16338741779327393, -1.5243948698043823, -0.4360663592815399, 0.9509986042976379, -0.7670623064041138, 0.26023516058921814, 0.03092007152736187, -1.5068366527557373, -0.13519325852394104, 1.2202224731445312, 0.3984842002391815, 0.1617850512266159, 0.5441387295722961, 2.497987747192383, -0.25642770528793335, -0.33480048179626465, -1.315342664718628, -0.017890799790620804, -0.47567498683929443, 0.18672612309455872, -0.35307690501213074, 0.265279620885849, -0.7954450249671936, 1.0331557989120483, -0.22454187273979187, 0.2888244390487671, 1.1128931045532227, 0.9337112903594971, -1.5105546712875366, 0.20318081974983215, -0.07052943855524063, -0.4086686670780182, 0.26866036653518677, 1.6339346170425415, -0.6757072806358337, 0.28787946701049805, 1.4207850694656372, 0.6617875099182129, -1.0563061237335205, 0.8269310593605042, 0.05318661779165268, -0.6960713267326355, 0.20416070520877838, 1.042124629020691, 0.018974818289279938, -1.2958896160125732, 0.3329540193080902, -0.7411412596702576, 0.4107553958892822, -0.7490251660346985, 0.8684492707252502, 0.12189541757106781, 0.9217033386230469, -0.712002158164978, 0.641108512878418, 0.8775807023048401, -0.10327175259590149, -0.12029051035642624, -0.1056600883603096, 0.1839413195848465, -0.44395872950553894, -0.43596842885017395, 1.978299617767334, -0.078424833714962, 0.32530519366264343, 0.9972036480903625, -0.28012511134147644, -0.2444448173046112, -0.6491377353668213, 0.15992730855941772, -0.8104454278945923, -0.5211376547813416, -0.38845589756965637, -0.6493260860443115, -0.827289342880249, 0.9251653552055359, 0.7695363163948059, 0.9147989749908447, 1.1210277080535889, -0.5934008359909058, -0.9362409114837646, -0.8530099391937256, -0.19610154628753662, 0.024992618709802628, 0.9421128034591675, -0.1129232868552208, -1.1225733757019043, 0.3057462275028229, 0.28267496824264526, 0.9335222244262695, 0.060446590185165405, 0.29876869916915894, 0.33322426676750183, -0.398672878742218, -0.4808723032474518, -1.2498760223388672, 0.24989065527915955, 1.0494340658187866, 0.3565986752510071, -0.03753242269158363, 0.5803087949752808, -0.04119957238435745, 0.5937663912773132, 0.14185072481632233, 0.635593056678772, 0.3263462781906128, 1.5546661615371704, -0.5237302184104919, 0.03635891154408455, -1.604655385017395, -0.8308142423629761, 0.3588023781776428, 0.5805760025978088, 1.1395381689071655, -1.173951268196106, -0.48156359791755676, -0.5005701780319214, -0.5385611653327942, -0.07772812992334366, 0.4635877013206482, -0.671658456325531, -0.275393009185791, 0.2717362642288208, -2.3591816425323486, 0.2619616389274597, -0.12030747532844543, 0.7060235738754272, 0.7597419023513794, 0.43726107478141785, 0.3025340139865875, 0.4610312879085541, -0.2423524558544159, 0.3902110159397125, 0.36521145701408386, 0.3642372786998749, -0.3576621115207672, 1.266998052597046, 0.9615639448165894, -0.7280212044715881, -0.26194727420806885, 0.22410833835601807, 0.022732026875019073, 0.6755129098892212, -0.203341543674469, -0.8743111491203308, -0.8136072754859924, 0.05328156799077988, 0.28305718302726746, -0.2572157382965088, 0.7939350008964539, -0.012451587244868279, -1.0678157806396484, -1.3775217533111572, 0.8870140910148621, 0.14388474822044373, 0.5887951254844666, 0.010805631056427956, 0.6577547788619995, -0.669723391532898, -0.38739556074142456, 0.08652110397815704, -0.5859832167625427, -0.366316556930542, -1.1927266120910645, -0.2077862024307251, -1.4165217876434326, 0.251309871673584, -1.2723314762115479, -0.9670588970184326, 0.9788467288017273, -0.23416462540626526, -0.5671489238739014, -0.6299899220466614, 0.07847394794225693, -0.49363943934440613, -1.390488862991333, -0.4364112317562103, -0.9488023519515991, 0.6213385462760925, -1.375640869140625, 0.08684096485376358, -0.7681609392166138, 0.4838603138923645, 1.0636684894561768, 0.07096511125564575, -1.1908622980117798, -0.16804911196231842, -0.035764388740062714, -0.8943926095962524, -0.645222008228302, 0.28253209590911865, 0.4011485278606415, -0.41426509618759155, -0.10561283677816391, 0.4137900173664093, 1.1692607402801514, -0.5088199973106384, 1.0615750551223755, -0.31210315227508545, -0.5284250378608704, -0.13962408900260925, -1.2083625793457031, -0.08473321795463562, -0.6467331051826477, -0.5657016634941101, 0.9822413921356201, 0.8875769972801208, -1.6098181009292603, 0.5603744387626648, -0.3801748752593994, 0.5469712018966675, -0.3433157801628113, 0.09721142053604126, 0.813599705696106, 0.70890212059021, -0.39971405267715454, -0.47657468914985657, -0.4766347408294678, -0.01979251205921173, 0.36221998929977417, 0.3180433213710785, -0.1405610293149948, 1.1890652179718018, 0.9056633114814758, -0.3521883189678192, 0.4668363332748413, 0.8873671293258667, -0.03309698775410652, -1.7328671216964722, 0.10193753987550735, -0.3645413815975189, -0.598522961139679, 1.390297770500183, 0.8055402636528015, -0.803006112575531, -0.2670231759548187, -0.2821471393108368, 0.36672839522361755, -0.613891065120697, 0.3510211706161499, -0.14075852930545807, 0.44146081805229187, 0.08314564824104309, 0.2985460162162781, -0.5045817494392395, 0.8149150013923645, 1.2246038913726807, -0.008258271962404251, -0.4293908178806305, 0.037855733186006546, 0.7308312058448792, 0.11597523838281631, 0.6633745431900024, 0.27240264415740967, -1.6025186777114868, -0.7048773765563965, 0.5465058088302612, 0.12520599365234375, -0.27760401368141174, -0.18425917625427246, 1.2351958751678467, 1.100298285484314, 0.0020854584872722626, 0.49356481432914734, 0.3765234351158142, -0.1506119817495346, 0.3181346654891968, 0.3784539997577667, 0.10974092781543732, 0.37258321046829224, -0.8945459127426147, -1.1565032005310059, -0.7996612787246704, -0.07543062418699265, 0.770980179309845, 0.7356934547424316, 1.2328579425811768, -0.5196154117584229, -0.10036526620388031, -0.4918661117553711, -0.4264395534992218, -0.7765586376190186, -0.24066662788391113, -0.5043031573295593, -1.1449191570281982, 0.016841575503349304, -0.7907488346099854, 0.09329437464475632, 0.6548025012016296, -0.2859545648097992, 1.0503915548324585, 0.27393510937690735, -0.1423344761133194, -0.8093821406364441, -0.4902275502681732, 0.07643983513116837, -0.6744973659515381, 0.5625611543655396, 1.007565975189209, -1.742753028869629, -0.04370748624205589, -0.03409069776535034, 1.3340351581573486, 0.26167869567871094, -0.6643651127815247, 0.25078463554382324, -2.0252881050109863, -0.3480672240257263, 0.1331712156534195, 1.0364857912063599, 0.017068997025489807, -0.6013683676719666, -0.5108920335769653, 0.8323180675506592, 0.984658420085907, -0.2727217376232147, -0.019138697534799576, 0.8623058795928955, -1.0865519046783447, -0.7663213610649109, -0.021887771785259247, -0.07492737472057343, 0.9388487935066223, -0.4850691556930542, -0.7299046516418457, -0.28952550888061523, -0.0789085179567337, -0.4009527564048767, 0.27121037244796753, -0.05381610617041588, 0.4190748333930969, 0.6929165124893188, 0.49524495005607605, 0.8247095942497253, -0.5090559720993042, 0.2947688698768616, -1.568151593208313, 0.004643437452614307, 1.2003246545791626, 1.4541122913360596, 0.26794639229774475, 0.5110939145088196, 0.23553448915481567, -0.5835003852844238, -0.08891480416059494, -0.01606108248233795, 1.004708170890808, -0.6840687394142151, -0.23147542774677277, -0.3114134669303894, -1.0178269147872925, 0.06825242191553116, 0.5449504852294922, 0.45956867933273315, 0.2801889479160309, -0.3281990885734558, 0.21720896661281586, 1.2326853275299072, 0.46832677721977234, -0.23772622644901276, -0.21822261810302734, -0.26645249128341675, 0.9433785676956177, -0.330319881439209, -0.6101104617118835, -0.6540929079055786, 0.038991790264844894, 0.9176401495933533, -0.613520085811615, -0.689174234867096, 0.26140061020851135, 1.1192506551742554, 0.9411325454711914, -1.1314457654953003, 0.22234971821308136, -0.7892212867736816, 0.7478844523429871, 0.6812578439712524, 0.8465197682380676, 0.05128651112318039, 0.4417087137699127, -0.9340377449989319, -0.29393959045410156, -0.47245675325393677, 1.3326728343963623, -0.2532541751861572, -0.05592438578605652, 0.3109597861766815, -0.3935368061065674, 0.8587122559547424, -0.6942702531814575, -0.02970014326274395, 0.06804553419351578, -0.6921297311782837, 0.6228613257408142, -0.21409884095191956, -0.5206689238548279, 1.2824255228042603, -0.1409623622894287, -0.6798171997070312, 0.5363299250602722, 0.3926548659801483, -0.4044282138347626, -0.23794372379779816, 0.6073641777038574, -0.24303191900253296, -0.002093382179737091, 0.08368968963623047, 0.4435010552406311, 0.4255548417568207, 0.3271070122718811, 0.9989193677902222, -0.04837001860141754, 0.4540114998817444, -0.6445994973182678, 0.5384466052055359, 0.6936537027359009, 0.9478353261947632, 0.7240170836448669, 0.8334817290306091, -1.0304539203643799, -0.5132104158401489, 0.7581860423088074, 0.2032962441444397, 0.8968803286552429, 0.5248029828071594, -0.09741020947694778, 1.3379812240600586, -2.0427327156066895, -0.18178720772266388, 0.9065365195274353, 0.4001059830188751, 0.6346969604492188, -0.021389205008745193, 0.37508848309516907, -0.8315675854682922, -0.6710014343261719, -0.9177007675170898, -0.06638205796480179, 1.3159840106964111, 0.23031510412693024, -0.27589595317840576, 0.7857473492622375, -0.9898319840431213, -0.10552311688661575, -0.47160932421684265, -1.0561192035675049, 0.10453647375106812, -0.2852309048175812, 0.09311983734369278, 0.1253967583179474, 0.9100704789161682, 1.3952465057373047, -0.09841510653495789, -2.145071506500244, 0.24146826565265656, -0.8853518962860107, -0.23053480684757233, -0.46810224652290344, -0.2666145861148834, -1.3090450763702393, -0.39026376605033875, 0.5646873116493225, -0.2153858095407486, -0.5074644684791565, -0.63857102394104, -0.42668619751930237, -1.1177126169204712, 0.44342920184135437, 0.333878755569458, 0.5502068400382996, 0.3911621570587158, -0.35349926352500916, 0.07832692563533783, 0.3527337312698364, -0.20782549679279327, 0.28251612186431885, 0.562221109867096, 0.14185550808906555, -0.6730871200561523, -0.6699692606925964, -0.5919297933578491, 1.0195658206939697, 0.6752505302429199, -0.0011444874107837677, -0.2943837642669678, 1.3384584188461304, 1.328107237815857, -0.22096554934978485, -0.6796374320983887, 1.2608593702316284, -0.6161364316940308, 0.7550272941589355, 0.3214032053947449, -0.4675693213939667, 0.521391749382019, 0.320773720741272, -1.4110291004180908, 0.6601623892784119, -0.24765819311141968, -0.47923552989959717, 0.7895123362541199, 0.7701655030250549, 0.5769402384757996, 0.36510002613067627, -0.4003932774066925, -0.797541618347168, 0.3507000803947449, 0.03001321107149124, -0.8082752823829651, 0.5760601162910461, 1.0298134088516235, -0.08399787545204163, -0.5885397791862488, -0.3944242000579834, -0.1734834909439087, 0.4244632422924042, -0.4583781063556671, -0.020731627941131592, 0.5143916010856628, 0.3840141296386719, -0.009176375344395638, -0.3152711093425751, 0.15827316045761108, -0.5794579386711121, 0.18176697194576263, 0.13119275867938995, 0.8919728994369507, 0.6501040458679199, 0.6045586466789246, 1.1952471733093262, -0.4942854046821594, -0.19530175626277924, -0.3088292181491852, 0.15262708067893982, 0.8820196390151978, 0.5219814777374268, 0.3166910409927368, -0.7574130892753601, -0.9731852412223816, -0.5585334897041321, -0.7597745656967163, -0.22418345510959625, 1.1319788694381714, -0.5902698636054993, -0.11448681354522705, -0.3009019196033478, -0.8092359900474548, 0.6421672105789185, 0.15434256196022034, 0.36455437541007996, -1.1705577373504639, -1.1850780248641968, -1.1179438829421997, -0.13264267146587372, 0.9998357892036438, 0.21067437529563904, 0.5965942144393921, -0.032913126051425934, -1.5250056982040405, 0.4820484519004822, -0.03353337198495865, -1.6973371505737305, -0.36939331889152527, -0.2076939344406128, 0.8610602021217346, 0.1813448667526245, 0.202933669090271, 0.05671171844005585, 0.9370880722999573, -0.8039442896842957, -0.7775341272354126, -1.3518234491348267, -0.5961021184921265, 0.5159424543380737, 0.7877386212348938, -0.8066666722297668, 1.4501330852508545, 0.13077382743358612, -0.83302241563797, -0.9148632884025574, -0.560194730758667, -1.5015894174575806, 0.10435011237859726, 0.6156669855117798, 0.6915990114212036, 0.7621490359306335, 1.3865827322006226, 0.387158066034317, -0.03364628180861473, 0.7812071442604065, 0.7277918457984924, -1.3395483493804932, -1.3244208097457886, -0.5025590658187866, 0.7962002158164978, -0.7579816579818726, -0.5986682772636414, 0.06267919391393661, -0.8434484601020813, -0.9421079754829407, -0.007166162133216858, 0.9676414132118225, -0.8820327520370483, 1.0219799280166626, 0.6458173394203186, -0.3590697646141052, -0.5712999701499939, 0.2990260720252991, 0.48191118240356445, -0.6603910326957703, -0.3807474672794342, -0.3463584780693054, 0.04970730468630791, -0.5033266544342041, -0.1555631160736084, -0.2491394430398941, -0.13816951215267181, -0.11888595670461655, 0.696243941783905, 0.053238581866025925, 0.5892220735549927, -0.4059504270553589, 1.4308706521987915, 0.786226749420166, -0.2513035833835602, 0.2487344741821289, 0.763840913772583, 0.03725520893931389, -0.3949028253555298, -0.7392804026603699, -0.313912570476532, -0.1987423598766327, 0.4661896526813507, 0.14374597370624542, -0.1491059958934784, 0.128078892827034, 0.5720823407173157, 0.30747947096824646, 0.22209206223487854, 0.36841830611228943, -0.48905086517333984, -1.0333632230758667, 0.8446317911148071, 1.0722812414169312, 0.09912010282278061, -0.06631772220134735, 0.2071993052959442, 1.2458921670913696, -0.21708574891090393, 0.3269791007041931, 0.009933538734912872, -0.5265647172927856, 0.5172692537307739, 0.01169450581073761, -0.6673404574394226, 0.2226385623216629, 0.13370381295681, -1.7500983476638794, 0.35570254921913147, -0.5594340562820435, -0.7480477094650269, 0.7123957872390747, -0.36431413888931274, -0.03520897775888443, -0.30337387323379517, -0.4919948875904083, 0.532795250415802, 0.050661034882068634, -0.05694691836833954, -0.38145241141319275, 0.02802664041519165, 0.7973033785820007, -0.21530187129974365, 1.3784434795379639, -0.37615835666656494, -0.16474373638629913, -1.1115391254425049, -0.564420223236084, -0.656006932258606, -0.0631248727440834, 0.011757750995457172, -0.3489477336406708, 0.3700697720050812, -0.2723381519317627, -0.16362610459327698, -0.12815438210964203, 0.0204862579703331, 0.2521478533744812, 0.07392235100269318, -0.5878338813781738, 0.0661739930510521, 0.08643393218517303, 0.36162206530570984, -0.8756633996963501, -0.6508335471153259, -0.661605715751648, 0.4086953401565552, 0.013430126011371613, 1.2988859415054321, -0.5039737820625305, 1.3068701028823853, 0.6011293530464172, 0.0661325603723526, -0.6294130086898804, -0.6699646711349487, 1.0820232629776, -0.025587698444724083, 0.100898377597332, -0.6380294561386108, 0.3512006402015686, -0.1885257065296173, -1.6753220558166504, -0.5602994561195374, 0.40168386697769165, -0.8120787143707275, 0.6304229497909546, -0.9856684803962708, -0.33216363191604614, -0.5931708216667175, -0.6422430276870728, -0.05189668759703636, 0.015431905165314674, 0.5614291429519653, -0.9631368517875671, -1.0831798315048218, -0.027820833027362823, 0.44951868057250977, 0.6193544268608093, 0.31339436769485474, 1.29594886302948, 1.8870925903320312, 0.024128898978233337, -0.5802397131919861, -0.3135914206504822, 0.4901807904243469, -1.2762223482131958, -0.31509050726890564, -0.5378425717353821, 0.6572827100753784, 0.12249402701854706], [0.7426621913909912, 1.8914809226989746, -2.5365099906921387, -0.38954275846481323, -0.11787720024585724, 0.37433257699012756, 1.6079853773117065, 0.39648133516311646, 0.7670449018478394, -0.4293704330921173, -1.2823631763458252, 0.03673223406076431, 0.5136008262634277, 0.5724231004714966, 0.5608686208724976, 0.37959128618240356, 0.6154017448425293, 0.2713485658168793, -0.1559363156557083, 1.2681336402893066, 0.023012980818748474, -1.4905474185943604, -0.7607347369194031, 0.09278922528028488, 0.06420206278562546, -0.2774762809276581, -1.6788541078567505, 0.17471730709075928, -0.9905088543891907, -0.7155365943908691, 0.4349295198917389, -0.3854585886001587, 0.22754894196987152, 0.3086501657962799, -1.5570588111877441, -0.03237235173583031, 1.4829943180084229, 0.758175790309906, 0.3829355239868164, 0.9075961112976074, 1.8310068845748901, 0.12193727493286133, 0.9817250370979309, -1.1747289896011353, 0.4375925362110138, -0.20008689165115356, 0.6148416996002197, -1.26522958278656, 0.736068606376648, -0.0666150227189064, 1.1446043252944946, 0.44478872418403625, 0.19527462124824524, 0.6861889958381653, 0.587510883808136, -1.3533051013946533, 0.5124088525772095, -0.41959482431411743, -0.03381630405783653, 0.4672900438308716, 1.0086238384246826, 0.027238158509135246, 1.0341668128967285, 1.2364115715026855, 0.4906088411808014, -0.6469731330871582, 0.5097150206565857, 0.5739098787307739, -0.3601464331150055, -0.286307156085968, 0.6233261823654175, 0.7168235182762146, -1.52881920337677, 0.6163424253463745, -0.9703008532524109, 0.9751020669937134, -0.08223257213830948, 0.8136479258537292, -0.22372008860111237, 1.1758424043655396, -0.5582947134971619, -0.03787217289209366, 0.33001378178596497, 0.041187990456819534, 0.13526245951652527, 0.010218899697065353, 0.6891103982925415, -0.6184582710266113, -0.2316364049911499, 0.5728007555007935, -0.20434118807315826, 0.11365552246570587, 0.3718391954898834, 0.6182823181152344, 0.2144547700881958, -0.4660107493400574, -0.11853300034999847, -0.3042846918106079, -0.6413857340812683, -0.48398464918136597, -0.7914590239524841, -1.127524495124817, 0.443203866481781, 0.21021977066993713, 1.119154453277588, 1.8448281288146973, 0.02905469574034214, -1.1565146446228027, -0.7549652457237244, 0.24850918352603912, -0.4052383005619049, -0.22324268519878387, -0.12788163125514984, -1.3535462617874146, -0.5624315142631531, 1.0473114252090454, 0.8437526226043701, -0.030934929847717285, 0.6343005895614624, 0.6088013648986816, -0.7658578157424927, -0.370257169008255, -0.4321896731853485, 0.48945340514183044, 0.6692729592323303, 0.04178086668252945, -0.34542033076286316, 0.03167467191815376, -0.3800046741962433, 0.4089430272579193, 0.5257879495620728, 0.4911114573478699, 0.4770835041999817, 1.4629703760147095, 0.06439314782619476, 0.8521488904953003, -0.3840138018131256, -0.5937854647636414, -0.02423902414739132, 0.6906692385673523, 0.5578139424324036, -0.6387855410575867, -0.7873251438140869, -0.9194861650466919, -0.42655301094055176, -0.5406437516212463, 0.8477149605751038, -0.08496120572090149, -0.7304673790931702, -0.18786554038524628, -2.0208053588867188, 0.29879671335220337, -0.2560006380081177, 0.4895535111427307, 0.7818662524223328, -0.5083448886871338, 0.6959275007247925, 0.25017282366752625, -0.08473722636699677, 0.4034765660762787, 0.5575020909309387, 0.18258343636989594, -0.15651695430278778, 1.0399235486984253, 0.4107806980609894, -0.7644132971763611, -0.003264008089900017, 0.7628815174102783, -0.2883969247341156, 0.6455343961715698, -0.2682296335697174, -0.021054314449429512, -1.0163627862930298, -0.036894820630550385, -0.0005550198256969452, -1.0578892230987549, 0.9154685139656067, -0.23311083018779755, -0.948264479637146, -1.068321704864502, 1.2101643085479736, -0.37446263432502747, 0.3751493990421295, 0.07793240249156952, 0.7728009223937988, -0.7617766261100769, -0.4701690077781677, 0.36637526750564575, -0.9463021159172058, -0.1559993177652359, -0.5527781844139099, 0.06587251275777817, -1.2615764141082764, 0.1738242655992508, -0.8466582894325256, -1.0135496854782104, 0.582835853099823, -0.1249990463256836, -1.5128544569015503, -0.5306233167648315, 0.07811810821294785, -0.6981246471405029, -1.9111645221710205, -0.11651403456926346, -0.4312175512313843, 1.217215895652771, -1.2110077142715454, 0.33495646715164185, -1.394059181213379, 0.5617453455924988, 0.7058061957359314, 0.19017598032951355, -0.8844441175460815, -0.2539620101451874, 0.01994590274989605, -1.1077775955200195, -0.11519873887300491, 0.10318316519260406, 0.5311947464942932, -0.8085933923721313, 0.07131414115428925, 0.8013538122177124, 1.162915587425232, -0.40536874532699585, 0.3621627688407898, 0.11820965260267258, -0.4103940427303314, -0.6278524994850159, 0.0036230646073818207, 0.8443781733512878, -0.5302100777626038, -0.7362629175186157, 0.9708768129348755, 0.7248801589012146, -1.5091471672058105, 1.0020018815994263, 0.07613779604434967, 0.19181260466575623, 0.1215086430311203, 0.7653672695159912, 0.8237576484680176, 0.3181489109992981, -0.8467357754707336, -0.3956204354763031, -0.31818652153015137, 0.3115374743938446, 0.7945265173912048, -0.13480480015277863, 0.3322790563106537, 1.5770193338394165, 0.46298232674598694, 0.09252957999706268, 0.3858807682991028, -0.3145306706428528, -0.2154671847820282, -0.6710241436958313, -0.5001094341278076, -0.08996957540512085, -0.9276750683784485, 1.646165370941162, 0.7183024883270264, -0.9734383821487427, -0.6575503945350647, -0.26547470688819885, 0.4138905107975006, -0.3551926016807556, -0.006901897490024567, -0.6831076741218567, 0.6201426982879639, -0.10431300848722458, -0.2046469748020172, -0.41373610496520996, 0.08576004952192307, 1.4166194200515747, 0.07592888176441193, -0.5894164443016052, -0.24212148785591125, 0.3319970965385437, 0.02339758723974228, 0.9860955476760864, -0.23827791213989258, -1.297768235206604, -1.3488831520080566, -0.26155075430870056, 0.6694777011871338, 0.4683384895324707, 0.45528164505958557, 1.0473915338516235, 0.6167755126953125, -0.16704033315181732, -0.04727108031511307, 0.8099157810211182, 0.2667861878871918, 0.09772675484418869, 0.1548633575439453, 0.08059976994991302, 0.9413832426071167, -1.0217725038528442, -0.5750747919082642, 0.12443225085735321, 0.29221972823143005, 1.0825971364974976, 0.8324282765388489, 1.4104490280151367, -0.3975907266139984, 0.09504058957099915, -0.25103405117988586, -0.03955047205090523, -0.8689780235290527, -0.5796622633934021, -0.7527840733528137, -1.1223294734954834, -0.17929382622241974, -0.3218303322792053, -0.05309247970581055, 0.6684219837188721, 0.10370809584856033, 0.5550469756126404, 0.8393025994300842, -0.5206330418586731, -0.31842178106307983, -0.1181398257613182, -0.07138416171073914, -0.6433488130569458, 0.21419133245944977, 0.4440516233444214, -2.018145799636841, -0.391362726688385, 0.2335517406463623, 0.29341426491737366, 0.4472031593322754, 0.404941588640213, 0.602088987827301, -0.8365084528923035, -0.7105346322059631, -0.21539053320884705, 1.243100643157959, 0.035813990980386734, -0.7485056519508362, -0.6699923872947693, 0.6444745659828186, 0.8511691689491272, -0.29721251130104065, -0.30211350321769714, 0.18373823165893555, -0.5094537138938904, -0.08202656358480453, -0.42154017090797424, 0.39792248606681824, 0.2811180651187897, -1.0506929159164429, -0.9762841463088989, -0.030902110040187836, -0.2158132791519165, -0.4580744802951813, 0.6407275795936584, -0.1979432851076126, 1.1556750535964966, -0.12439213693141937, 0.8852155208587646, 0.8213974833488464, -0.8895537257194519, 0.15682712197303772, -1.4342315196990967, 0.9014881253242493, 0.8667742013931274, 1.6652439832687378, 0.4152231812477112, 0.5285411477088928, 0.2191353142261505, -0.9322642087936401, -0.07551314681768417, 0.16060060262680054, 1.1842542886734009, -0.34425103664398193, -0.10172867029905319, -0.09026192873716354, -1.0445821285247803, -0.06902729719877243, -0.35250863432884216, 0.20307119190692902, 0.6024765372276306, -0.8036118745803833, -0.025487368926405907, 1.3778307437896729, -0.04348563030362129, -1.0099248886108398, -0.9154548048973083, 0.21817219257354736, 0.8630653023719788, -0.47714370489120483, 0.16345587372779846, -0.20163112878799438, -0.1613961160182953, 0.8064382076263428, -0.8999547958374023, -0.3561753034591675, 0.7654275894165039, 0.585918128490448, -0.02635716274380684, -1.3217923641204834, 0.0016662066336721182, -1.1968865394592285, 0.297290176153183, 1.6379554271697998, 0.5157273411750793, 0.5278002023696899, 0.44984170794487, 0.10682138800621033, -0.5339928269386292, -0.683303952217102, 1.7794878482818604, -0.494067907333374, 0.04296426847577095, 0.22099412977695465, 0.11106119304895401, 1.2522690296173096, -0.35168835520744324, 0.060084469616413116, -0.03443748876452446, -0.5738322734832764, 0.17712996900081635, 0.6720869541168213, -0.5351558923721313, 2.2034189701080322, -0.24835553765296936, -0.5234975814819336, 0.8420584797859192, 0.20299199223518372, -0.6706128120422363, -0.18191102147102356, 0.057962529361248016, -0.87089604139328, -0.8706263899803162, 0.07102691382169724, 0.8855519890785217, -0.09633719176054001, 0.4494352340698242, 0.5459164977073669, 0.2094665765762329, 0.4564020037651062, 0.26634350419044495, 1.0305023193359375, 0.35444769263267517, 1.1604732275009155, 0.13996534049510956, 0.9109705686569214, -0.255899578332901, -0.2691424489021301, 0.8717437982559204, -0.8692522048950195, 0.37365251779556274, 0.42949387431144714, 0.6111812591552734, 1.1805076599121094, -1.8945732116699219, -0.7230681777000427, 0.8663995862007141, 0.1323339194059372, 0.7130119800567627, 0.7752912640571594, 0.45291826128959656, -1.0359857082366943, 0.33116084337234497, 0.3409108519554138, -0.5464593172073364, 0.5907314419746399, 0.23460762202739716, 0.19095739722251892, 0.6878775954246521, -0.25779086351394653, -0.0052263811230659485, -0.5387653112411499, -0.9583842754364014, 0.348987340927124, -1.08424973487854, 0.6461759209632874, 0.2639286518096924, 0.8482124209403992, 0.9527291655540466, -0.7035871148109436, -1.0900379419326782, 0.7185093760490417, -1.2451943159103394, 0.14131566882133484, -0.1132054328918457, -1.000840425491333, -1.1616970300674438, -0.5496392846107483, 0.11801449209451675, -0.3846985995769501, -0.688927948474884, -0.41894569993019104, -0.33897513151168823, -1.4587090015411377, 0.5638805031776428, 0.3876006007194519, 1.0385355949401855, 0.6314546465873718, 0.2678001821041107, 0.4121120870113373, 0.3318793475627899, -0.9420560002326965, 0.033829573541879654, 0.5871853232383728, -0.6413783431053162, -0.8089927434921265, -0.7477480173110962, -1.1056158542633057, 1.158577561378479, 0.7926860451698303, 0.140703484416008, 0.24851912260055542, 0.7403908371925354, 1.2625027894973755, -0.6499179005622864, -1.2504298686981201, 0.219476118683815, -0.7230747938156128, 0.3951532542705536, 0.9034378528594971, -0.6734879016876221, -0.4354836642742157, -0.01053912565112114, -1.6717432737350464, 1.2737655639648438, 0.0035646967589855194, -0.428943932056427, 1.1421434879302979, 0.6265786290168762, 0.8055053949356079, 1.021893858909607, -0.31872808933258057, -0.06361530721187592, 0.42124930024147034, 0.36129361391067505, -0.7443712949752808, -0.006346813403069973, 0.579483687877655, -0.2127065658569336, -0.22176001965999603, 0.22243037819862366, -0.16037385165691376, -0.021386900916695595, -0.11964632570743561, 0.6310104131698608, -0.24961189925670624, 0.7298905849456787, -0.8609134554862976, -0.055646926164627075, 0.36722439527511597, -0.9945700168609619, -0.09782018512487411, 0.10002044588327408, 0.95091712474823, 0.10153000801801682, -0.6143200397491455, 0.6192132830619812, -0.33360499143600464, -0.041817113757133484, -0.26515448093414307, -0.3142298758029938, 1.231799840927124, 0.18901565670967102, 0.2334790974855423, 0.8399859666824341, 0.16498993337154388, -0.13014709949493408, -0.564433217048645, 0.5371295809745789, 0.5466748476028442, -0.4391922056674957, -0.3238951861858368, 0.11599104106426239, -0.49164918065071106, -0.03796229138970375, 0.4110485315322876, -0.0969240665435791, -0.9416543245315552, -1.4286266565322876, -1.1592968702316284, -0.80198073387146, 0.43545523285865784, -0.10103879123926163, -0.13502922654151917, 0.04215552285313606, -1.3961645364761353, -0.28414642810821533, -0.10832996666431427, -1.7002443075180054, -0.5060667395591736, -0.4010755121707916, 0.5677940845489502, -0.11773791164159775, 0.2574481964111328, -0.43533140420913696, 0.5416271686553955, -1.2379546165466309, -0.46917814016342163, -1.4744679927825928, -0.7648698091506958, 1.0963711738586426, 0.6171716451644897, -0.624706506729126, 1.0288947820663452, -0.1266319751739502, -0.3026670515537262, -0.7982956767082214, 0.1704038828611374, -0.631291389465332, -0.13332629203796387, 0.06471370905637741, 0.03104495070874691, 0.36376798152923584, 1.4468649625778198, 0.7175036072731018, 1.1109675168991089, 0.5804752707481384, 0.917117178440094, -1.108731985092163, -1.2639719247817993, 0.24788494408130646, 1.0013469457626343, -0.6661067008972168, -0.12633116543293, 0.18509076535701752, -1.2444514036178589, -0.643892228603363, 0.5102853775024414, 0.44597306847572327, -0.8258137702941895, -0.30932316184043884, -0.6752395033836365, 0.4014073610305786, -0.830277681350708, -0.017739996314048767, 0.5771094560623169, -0.39015981554985046, -0.11481662839651108, 0.04076842591166496, -0.2806129455566406, -1.1488033533096313, -0.0020091403275728226, 0.058577731251716614, 0.3577885329723358, -0.2750532329082489, 0.288837194442749, -0.19514377415180206, 0.09266788512468338, -0.8664972186088562, 1.4037389755249023, 1.227960467338562, -0.24146123230457306, 0.07560897618532181, 0.024943772703409195, 0.02951984666287899, 0.31270071864128113, -0.6845120787620544, 0.07252005487680435, -0.839527428150177, 0.5666562914848328, 0.37649813294410706, 0.05559205636382103, -0.06779307872056961, 0.7255322337150574, 0.0016809217631816864, -0.15061886608600616, 0.5739717483520508, -0.3418876528739929, -0.5061389803886414, 1.2452515363693237, 1.4159787893295288, -0.4085818827152252, 0.31579598784446716, 0.5006366968154907, 0.7646175026893616, 0.08529200404882431, 0.4753638505935669, -0.07361603528261185, -0.6385765075683594, 0.705074667930603, 0.36969220638275146, -0.7812910079956055, -0.39165621995925903, -0.5628355741500854, -1.4056123495101929, -0.02361823432147503, -0.021407289430499077, -0.38296815752983093, 0.48915910720825195, -0.6571632623672485, -1.0166771411895752, -0.03123866394162178, -0.16429658234119415, 0.4094811677932739, -0.5518385171890259, -0.39713987708091736, -0.5090345740318298, 0.3881390690803528, 0.990748405456543, -0.3747776746749878, 1.0567737817764282, -0.255143940448761, -0.9625757932662964, -1.3702775239944458, -0.42257583141326904, 0.016459228470921516, 0.023390674963593483, -0.5222495794296265, 0.13330085575580597, 0.8376659154891968, -0.7756640911102295, 0.2856749892234802, 0.1025943011045456, -0.07072553783655167, -0.07063440978527069, 0.11742280423641205, -0.859031617641449, -0.32972630858421326, 0.7606738209724426, 0.5950739979743958, -0.3543713390827179, -0.6732438802719116, -0.7341152429580688, 0.39485713839530945, 0.08700287342071533, 0.3074365258216858, -0.6726101040840149, 0.6502888202667236, 0.7508611083030701, -0.1437128484249115, -0.21037878096103668, -0.24289485812187195, 0.8322339057922363, 0.19633951783180237, -0.15874312818050385, -1.0846853256225586, -0.5480676889419556, 0.09796393662691116, -1.1559289693832397, -0.38465848565101624, -0.34421440958976746, -0.11322121322154999, -0.024430308490991592, -0.34948596358299255, -0.8654866218566895, -0.8451817035675049, -0.3288635313510895, 0.009037647396326065, 0.531588613986969, 0.5399860739707947, -0.43862107396125793, -0.8573607802391052, 0.3153790831565857, 0.6082788705825806, 0.43047288060188293, 0.4719198942184448, 1.8499994277954102, 1.9895591735839844, 0.43453314900398254, -0.2905447781085968, -0.1613750010728836, 0.30873823165893555, -1.3748149871826172, -0.07931849360466003, -1.7173752784729004, 0.2637193202972412, -0.5756362080574036], [0.2986343502998352, 2.066756248474121, -2.3526291847229004, 0.7008398175239563, 0.10308200120925903, 0.6880887746810913, 0.4516335427761078, 0.1752861738204956, -0.05065976083278656, -0.2811453342437744, -1.461158275604248, 0.8556385040283203, 0.37419503927230835, 0.9773374199867249, 0.6376152038574219, 0.6365393400192261, 1.1158607006072998, -0.7711029052734375, -0.7601311206817627, 1.2211718559265137, 0.2333337664604187, -1.2712657451629639, -0.6647083163261414, 0.02876378782093525, 0.030947543680667877, -0.06407251954078674, -1.4497243165969849, -0.25052234530448914, -0.8673213720321655, -0.8565000295639038, 0.7799817323684692, 0.37547457218170166, 0.7595866322517395, -0.009636327624320984, -1.9376788139343262, -0.36191678047180176, 1.2495479583740234, 0.36650246381759644, -0.21237915754318237, 0.3466281294822693, 1.6727514266967773, -0.6515050530433655, -0.2638325095176697, -1.8844407796859741, 0.8840141296386719, -0.28400129079818726, 0.5677236318588257, -0.2578994631767273, 0.8676130175590515, -0.7979738712310791, 0.40640783309936523, 0.6410177946090698, -0.10611585527658463, 0.7494263052940369, 0.9766309261322021, -1.0097016096115112, 0.28486204147338867, -0.18467363715171814, 0.12179546058177948, 0.5793074369430542, 1.7679779529571533, -0.6643493175506592, 1.331434726715088, 0.8475445508956909, 0.41499829292297363, -0.49028053879737854, -0.08036468178033829, 0.8278717994689941, -0.745996356010437, -0.5546573400497437, 0.7355060577392578, 0.8414849638938904, -1.2165765762329102, 0.46365299820899963, -0.7293186783790588, -0.009114688262343407, 0.5064588785171509, 0.5328437089920044, -0.016923721879720688, 0.8104262351989746, -0.34739699959754944, 0.06444322317838669, 0.3947758674621582, 0.07081922143697739, -0.05160582810640335, 0.32799243927001953, 0.539874255657196, -0.6148797869682312, -0.5295628309249878, 0.8038623332977295, -0.11098150908946991, 0.17926497757434845, 0.8275671005249023, 0.05939452350139618, 0.34288787841796875, -0.5535891652107239, 0.020430676639080048, -1.1552189588546753, -0.48533201217651367, -0.6177855730056763, 0.1213831752538681, -1.044663667678833, 0.9285588264465332, 0.6726122498512268, 0.6658564805984497, 1.286712884902954, -0.4728028178215027, -1.3262064456939697, -0.2401425838470459, -0.03461582213640213, 0.1813790202140808, 0.27065014839172363, -0.6627562046051025, -1.4351234436035156, -0.343667209148407, 1.0175435543060303, 1.1023759841918945, -0.3334500789642334, 0.2622821033000946, 0.563807487487793, -0.6628482341766357, -0.8308886885643005, -0.7186222076416016, -0.12701673805713654, 1.3293688297271729, -0.30594050884246826, -0.41081753373146057, -0.33920836448669434, -0.5456641316413879, 0.045783981680870056, 0.9314935207366943, 0.9331640005111694, -0.3357737064361572, 1.2345008850097656, -0.6630154848098755, 1.2183220386505127, -0.2101200819015503, -0.804133415222168, -0.0032734721899032593, 0.5682823657989502, 0.5497622489929199, -0.41403335332870483, -0.38223642110824585, -0.3155679702758789, -0.7105711102485657, -0.7212731838226318, 1.4741976261138916, 0.42376309633255005, -0.35500603914260864, 0.2177467793226242, -1.5211111307144165, 0.1870170384645462, 0.21406419575214386, 0.7794935703277588, 0.6865648031234741, -0.11760114133358002, 0.438842236995697, 0.7978516221046448, 0.04999765008687973, 0.3541603684425354, 0.7434877157211304, -0.6108831167221069, -0.33493131399154663, 0.5840722322463989, 0.6730467081069946, -0.5816930532455444, 0.44495081901550293, 0.755415141582489, 0.019553102552890778, 0.6771352291107178, -0.12250837683677673, -0.11210329830646515, -0.9697027206420898, 0.26259660720825195, -0.011573749594390392, -0.6689451336860657, 1.3904565572738647, -0.08916784077882767, -0.8674347400665283, -0.6949295997619629, 0.8019965887069702, 0.23316839337348938, 0.571476936340332, 0.10744008421897888, 0.9339172840118408, -0.6986595392227173, -0.39309215545654297, -0.17511332035064697, -0.8811915516853333, -0.7320661544799805, -0.5370424389839172, -0.6360363960266113, -0.956534743309021, 0.6113482117652893, -0.737326443195343, -1.4710592031478882, 0.6915311217308044, -0.24901846051216125, -1.080601692199707, -0.4304608404636383, 0.3208046853542328, -0.44762304425239563, -1.1661794185638428, -0.5617193579673767, -0.23320382833480835, 0.6859003305435181, -0.306474506855011, 0.6741867065429688, -1.4425113201141357, 0.14810997247695923, 0.8506097793579102, -0.5064035654067993, -1.0957411527633667, -0.4469481110572815, 0.4218914210796356, -0.8713552355766296, 0.28659698367118835, -0.0763947069644928, -0.026762716472148895, -0.2695428431034088, -0.28934845328330994, 0.47793048620224, 1.113288402557373, -0.2703218460083008, 0.8149286508560181, -0.3691801428794861, -1.3530477285385132, -0.9561103582382202, -0.3206242024898529, 0.051496271044015884, -0.34170177578926086, -1.0324764251708984, 1.008725881576538, 1.1230437755584717, -1.0542986392974854, 0.9848587512969971, -0.3006601929664612, 0.7502380609512329, -0.11853654682636261, 0.5324366092681885, 0.6911813020706177, 0.9004125595092773, -1.4665369987487793, -0.08284902572631836, -0.48288559913635254, 0.004337683320045471, 0.5245029926300049, -0.4472711682319641, 0.16425158083438873, 1.4776721000671387, 0.6264090538024902, -0.6778326630592346, 0.7964398860931396, 0.27257561683654785, -0.33467942476272583, -1.0455448627471924, -0.41608381271362305, -0.03749100863933563, -0.8829065561294556, 1.6315953731536865, 0.37010952830314636, -1.3310234546661377, 0.2113480269908905, -0.5804060697555542, -0.014994633384048939, -0.9415868520736694, 0.27746227383613586, -1.1246113777160645, 0.9314127564430237, -0.5209536552429199, 0.13476556539535522, 0.04915935918688774, -0.009003564715385437, 1.5489574670791626, -0.008957482874393463, -1.00662100315094, -0.15445226430892944, 0.3959518074989319, 0.05734757333993912, 1.141076683998108, -0.6821601390838623, -1.0459543466567993, -1.0005615949630737, 0.0920676589012146, 0.9302129745483398, 0.13713939487934113, 0.2374878078699112, 1.227334976196289, 0.5885317921638489, -0.06537379324436188, 0.3891906142234802, 0.266364187002182, 0.6442805528640747, 0.47254517674446106, 0.4593244194984436, 0.19454380869865417, 0.8252713680267334, -0.5705347061157227, -0.4328870475292206, -0.17889626324176788, 0.5555417537689209, 0.539993941783905, 0.7493404150009155, 1.501050353050232, -0.5861349701881409, 0.48071610927581787, -0.5335170030593872, 0.36465996503829956, -1.0951027870178223, -0.39045336842536926, -0.819865345954895, -1.0903440713882446, -0.029203355312347412, -0.6457041501998901, 0.11677467823028564, 0.04579175263643265, 0.3440282344818115, 0.7444592714309692, 0.6113178730010986, 0.02959810197353363, -1.5669987201690674, -0.7907123565673828, -0.3909953236579895, -1.0536324977874756, -0.015101060271263123, 0.8606337308883667, -2.0636210441589355, -0.16097673773765564, -0.45228829979896545, -0.19407686591148376, -0.15084214508533478, -0.03454184532165527, 0.4909672141075134, -0.8459309339523315, -0.2335100769996643, -0.16140522062778473, 1.8019299507141113, 0.36342787742614746, -0.10652948915958405, -1.0692658424377441, 0.9058778285980225, 0.9358571171760559, -0.46480393409729004, -0.06432456523180008, 0.8033666610717773, -0.6638094186782837, 0.3299272358417511, -0.25872156023979187, 0.5557026863098145, 0.18638929724693298, -1.1452982425689697, -1.2667605876922607, -0.33582422137260437, -0.4379707872867584, -0.5695757269859314, 0.12932607531547546, -0.040550291538238525, 0.666019082069397, 0.16549131274223328, -0.0020484942942857742, 1.2766062021255493, -0.5941215753555298, 0.3592129349708557, -0.9410496950149536, 0.3166041374206543, 0.46789082884788513, 1.4718668460845947, 0.7065906524658203, 0.623114824295044, 0.27480313181877136, -0.38464635610580444, -0.6602068543434143, 0.07164395600557327, 1.1807974576950073, 0.1472839117050171, -0.32385241985321045, -0.09266488254070282, -1.090692400932312, -0.09151658415794373, -0.10587239265441895, -0.032719969749450684, 1.1431689262390137, -0.4385233223438263, 0.023534124717116356, 1.2632664442062378, 0.10668112337589264, -0.5260360240936279, -0.427763432264328, -0.19249692559242249, 0.659509539604187, -1.343130350112915, 0.21329864859580994, -0.16238394379615784, -0.5696448087692261, 0.5819492340087891, -0.65444016456604, -0.6866687536239624, 0.3463311195373535, 0.8428370952606201, 0.3686752915382385, -1.2653083801269531, -0.05563570559024811, -1.3365180492401123, 0.35142192244529724, 0.9381061792373657, 0.45739394426345825, 0.19019415974617004, 0.4932398200035095, 0.05298512428998947, -0.12426663935184479, 0.1702090948820114, 1.8110339641571045, -0.689190149307251, 0.42807891964912415, -0.0593133270740509, -0.3612323999404907, -0.0449000708758831, -0.5423694252967834, -0.07674424350261688, 0.2893650531768799, -0.5072656869888306, -0.13082875311374664, 0.6851657629013062, -0.4765673577785492, 1.3708086013793945, -0.08601599931716919, -0.42825761437416077, -0.09634216129779816, -0.06376613676548004, -0.2446966916322708, -0.3184114694595337, 0.6838462352752686, -0.5782807469367981, -0.003461550921201706, -0.03760761767625809, 1.5586678981781006, 0.00982677936553955, -0.02721598371863365, 0.27603664994239807, 0.6215533018112183, 0.5244821310043335, 0.18125008046627045, 0.885919988155365, 0.4555530548095703, 1.0250877141952515, 0.09981420636177063, 0.9713215827941895, -0.1398458182811737, -0.22170737385749817, 0.848175048828125, -0.7592746615409851, 0.8718730211257935, 0.25651028752326965, 0.44390347599983215, 1.1885939836502075, -1.8028837442398071, 0.10634933412075043, 0.6797796487808228, -0.027923710644245148, 0.8221563100814819, 0.8856639862060547, 0.42818185687065125, -1.0637074708938599, 0.2876654267311096, -0.07588599622249603, -0.08595655858516693, 0.07402205467224121, 0.354740709066391, 0.5726116299629211, 0.3109767436981201, -0.7342774271965027, 0.2524709403514862, -0.029392676427960396, -0.7999054193496704, 0.2695982754230499, -0.20673871040344238, 0.2706512212753296, 0.11515084654092789, 0.8724638223648071, 1.5758600234985352, -0.013519972562789917, -0.9113210439682007, 0.05218512564897537, -1.1065709590911865, 0.5635334253311157, -0.1932685822248459, -0.29500845074653625, -0.8193931579589844, 0.1991463303565979, 0.34850436449050903, 0.17690148949623108, -0.8854424953460693, -0.22679072618484497, -0.8063174486160278, -0.9994717836380005, 1.131235122680664, 0.4150424003601074, 0.6913571357727051, 0.4952409565448761, 0.7668635845184326, 0.7014836072921753, 0.3239856958389282, -0.9812952280044556, 0.1239345520734787, 0.18656432628631592, -0.0306730754673481, -1.0227856636047363, -0.4114843010902405, -0.9705811738967896, 0.5443419218063354, 0.37933290004730225, -0.05395972728729248, 0.08851202577352524, 0.7155832052230835, 1.4167522192001343, -0.6892415285110474, -0.4918607771396637, 0.11310382187366486, -1.0816335678100586, 0.22560691833496094, 0.47588014602661133, -0.7953203320503235, 0.7393031120300293, -0.10109215974807739, -1.521550178527832, 1.1057106256484985, 0.18773554265499115, 0.05917016789317131, 1.2597172260284424, 0.23180325329303741, -0.05397787317633629, 1.4584648609161377, -0.25253549218177795, 0.054618507623672485, 0.23553362488746643, -0.24787339568138123, 0.003965228796005249, 0.06157933175563812, 0.8178278207778931, -0.14235764741897583, -0.7401806116104126, 0.09685845673084259, -0.5331045985221863, 0.6111299991607666, -0.22414898872375488, 0.17023316025733948, -0.1893804967403412, 0.5781142711639404, -0.5198768377304077, -0.16681884229183197, 0.6594188213348389, -0.9247787594795227, -0.6201686859130859, 0.8378475904464722, 0.9408615827560425, 0.4930862784385681, 0.27224990725517273, 0.8992738723754883, -0.9121524095535278, -0.01247645728290081, 0.3015948235988617, -0.08774422109127045, 1.5181868076324463, -0.008792474865913391, 0.13987544178962708, 0.39508819580078125, -0.02895170822739601, 0.1130434200167656, -0.7866373062133789, 0.1982242316007614, 0.9425454139709473, -0.5305277705192566, -0.8882938027381897, -0.03511693701148033, -0.8001205921173096, -0.004275068640708923, 0.39417213201522827, -0.017040938138961792, -0.7365096211433411, -1.083681583404541, -0.6434321403503418, 0.1254693567752838, 0.85817551612854, -0.6517657041549683, 0.3828847110271454, -0.04301935434341431, -1.6339733600616455, 0.38300883769989014, 0.2771303951740265, -1.859133005142212, -0.2285379320383072, -0.7630511522293091, 0.3022991716861725, 0.14315444231033325, 0.031139444559812546, -0.2437441498041153, 0.4431554675102234, -1.4950847625732422, -1.0361781120300293, -1.3894330263137817, -0.5200850963592529, 0.534324049949646, 0.801109790802002, -0.8523173332214355, 0.9720227718353271, -0.6904821395874023, 0.5996124148368835, -0.6144328713417053, -0.3768812119960785, -1.0979125499725342, 0.49441003799438477, -0.1615528017282486, -0.2287161499261856, -0.08858059346675873, 1.5070931911468506, 0.7882001399993896, 1.1807893514633179, 0.25046640634536743, 1.2892762422561646, -1.2783150672912598, -1.0130940675735474, -0.2986488938331604, 0.6787830591201782, -0.6200107336044312, -0.34544938802719116, 0.19130489230155945, -0.7980102300643921, -1.0726876258850098, -0.25621524453163147, 1.015213966369629, -0.32604989409446716, 0.5110225081443787, -0.18742142617702484, 0.30845415592193604, -0.8206294775009155, 0.142438605427742, 0.7975913286209106, -1.0919618606567383, -0.40753450989723206, -0.45405346155166626, 0.4838593602180481, -1.0292686223983765, -0.01330623123794794, 0.2720312476158142, -0.08962399512529373, 0.118168905377388, -0.18553441762924194, 0.11735354363918304, 0.8475672602653503, -0.4948464035987854, 1.0351636409759521, 1.1733194589614868, -0.4670073390007019, 0.02451523020863533, -0.22103260457515717, -0.5844202637672424, 0.06014523655176163, -0.748771071434021, -0.6664009690284729, -0.7245259881019592, 1.0909382104873657, 0.4623503088951111, 0.2325364053249359, 0.07837896794080734, 0.8869771957397461, 0.32517367601394653, 0.18333682417869568, 0.035561561584472656, -1.1839027404785156, -0.7198777794837952, 0.722917914390564, 0.8665522336959839, -0.593695878982544, -0.18527169525623322, -0.16908085346221924, 0.5586560368537903, 0.8004135489463806, 0.3678857982158661, 0.19613118469715118, -0.5142389535903931, 0.6387752294540405, 0.9751275777816772, -0.20884566009044647, -0.4997737407684326, -0.5537105202674866, -1.8720932006835938, 0.07892641425132751, -0.08837378025054932, -0.29308199882507324, 0.6252152919769287, -0.9793535470962524, -0.7659237384796143, 0.10539841651916504, -0.4264034628868103, -0.02593567594885826, -0.006775088608264923, -0.11067645251750946, -0.44645529985427856, 0.4156196117401123, 0.7888336181640625, -0.1522824615240097, 1.0483660697937012, -0.16898798942565918, -0.402601420879364, -0.9641250371932983, -0.30126723647117615, 0.4694109857082367, -0.5373739004135132, -0.0020338408648967743, -0.3493032455444336, 0.7903343439102173, -0.8990691304206848, 0.03920214623212814, -0.05076253414154053, 0.10299323499202728, -0.05085407942533493, -0.05278190225362778, -0.18869996070861816, 0.28485599160194397, 0.0547289177775383, 0.711866021156311, -0.9450509548187256, -0.8406243324279785, -0.35483503341674805, 0.4556821584701538, -0.2223052829504013, 0.5928086638450623, -0.047422945499420166, 0.2642751634120941, 0.39062613248825073, -0.22059816122055054, -0.31312114000320435, 0.03592688590288162, 0.15654030442237854, -0.03429233655333519, -0.2853648364543915, -0.8862130641937256, 0.11908771842718124, 0.6274832487106323, -1.5158209800720215, -0.3272913098335266, 0.29654181003570557, -0.3304691016674042, -0.3697795271873474, -0.4885235130786896, -0.7620850801467896, -1.0403876304626465, 0.2788251042366028, 0.2576814293861389, 0.08338266611099243, 0.6709406971931458, -0.5298126935958862, -1.0695586204528809, 0.11762865632772446, 0.4981144666671753, 0.05459567904472351, 0.5560295581817627, 1.3418052196502686, 1.4155166149139404, -0.07100953161716461, -0.7591662406921387, -0.31116151809692383, 0.25103759765625, -1.4592878818511963, 0.07892198860645294, -0.9169096946716309, 0.14477750658988953, -0.11243705451488495], [1.0264744758605957, 0.7947080731391907, -2.612638235092163, 0.144480898976326, -0.5245968103408813, 0.7580782771110535, 0.6469892859458923, 0.8478497266769409, 0.43255099654197693, -0.9729399681091309, -1.4611217975616455, -0.2988700270652771, 1.0658378601074219, 0.11205367743968964, 0.2935244143009186, 0.37582024931907654, 0.7973353266716003, 0.3909919261932373, 0.10902136564254761, 0.731428861618042, -0.3549928367137909, -1.3125057220458984, -0.25566354393959045, -0.028045132756233215, -0.22234277427196503, 0.26812371611595154, -1.364211082458496, -0.18447245657444, -1.2926257848739624, -0.5156828165054321, 0.3475331962108612, -0.48462700843811035, 0.31311526894569397, -0.026759237051010132, -1.0938692092895508, 0.49415647983551025, 1.2319048643112183, 0.7188411355018616, 0.7724528312683105, -0.08924250304698944, 1.8500680923461914, 0.200020432472229, 0.21098703145980835, -0.7198236584663391, 0.5621070265769958, -0.467224657535553, 0.8744624853134155, -0.6869987845420837, -0.5843538641929626, 0.016977956518530846, 0.7539078593254089, -0.009107808582484722, -0.8373859524726868, 1.1509889364242554, 0.5087959170341492, -1.5193828344345093, -0.5759310722351074, -0.6441935300827026, -0.20186308026313782, -0.3135884702205658, 0.7913796901702881, -0.5153792500495911, 0.6409721374511719, 1.5673524141311646, 0.31408193707466125, -0.5392303466796875, 0.04821338132023811, 0.4288543164730072, 0.48306751251220703, -0.9138455986976624, 0.7252711653709412, 0.40022119879722595, -0.7842966318130493, 0.9573380947113037, -0.8600330352783203, 0.5675236582756042, 0.5528333783149719, 1.018541932106018, 0.2325257509946823, 1.1979947090148926, -0.422322541475296, -0.31265830993652344, 0.6087857484817505, -0.30666449666023254, 0.3440249264240265, -0.02102590538561344, 0.3649922311306, -0.8174673318862915, -0.19678995013237, 0.9190826416015625, -0.7671810984611511, 0.4584846496582031, 0.5034705996513367, 0.18953227996826172, -0.004319861531257629, -0.09648659080266953, -0.22259891033172607, -0.32886654138565063, -0.8718641996383667, -0.5169404149055481, -0.948744535446167, -1.407057285308838, -0.2503160834312439, -0.12422582507133484, 0.885796844959259, 0.8396123647689819, 0.6955919861793518, -1.3102457523345947, 0.3557666838169098, 0.17039553821086884, -0.22477392852306366, -0.01818251982331276, -0.21528120338916779, -1.6757874488830566, -1.0560392141342163, 0.577593982219696, 1.4077062606811523, -0.7482495903968811, 1.620044469833374, 0.2932712733745575, -0.16669920086860657, -0.12066514045000076, 0.07271625101566315, -0.11804213374853134, 0.8325903415679932, 0.18111969530582428, -0.7021796107292175, -0.4777917265892029, 0.4464351236820221, 0.7090213298797607, 0.2625136077404022, 0.4602205753326416, 0.26814958453178406, 1.1688681840896606, -0.1468677818775177, 0.21178875863552094, -0.7438340187072754, -0.813990592956543, -0.23901811242103577, 0.3516930937767029, 1.1557374000549316, -0.5487537384033203, -0.181208536028862, 0.276694118976593, -0.8252741694450378, -0.4698978364467621, 0.5304237008094788, -0.40792521834373474, -0.3366064429283142, 0.01123524084687233, -0.7896766066551208, -0.1544298678636551, -0.38441595435142517, 1.0653904676437378, 0.7262502908706665, -0.21778206527233124, 0.36049556732177734, 0.24535931646823883, 0.3051247298717499, -0.7322900295257568, 0.17278577387332916, 0.2950523793697357, -0.06874839961528778, 0.005012102425098419, 0.5696836113929749, -0.4533883333206177, -0.5938695669174194, 0.9637822508811951, 0.02300693839788437, -0.4984305799007416, 0.22791865468025208, 0.1662137657403946, -0.7875386476516724, -0.2502964437007904, 0.596680223941803, -0.7513930797576904, 0.8833945393562317, -0.26396605372428894, -1.6656091213226318, -1.569117546081543, 1.3816113471984863, -0.3996174931526184, 0.7466927766799927, -0.01667025312781334, 1.308295488357544, 0.13377203047275543, 0.254426509141922, -0.5508952736854553, 0.09448143094778061, -1.008341908454895, -0.34107619524002075, 0.22510303556919098, -0.8819689154624939, 0.3490796387195587, -0.8441027402877808, -0.7517768144607544, 0.7793726325035095, -0.13626845180988312, -0.47718942165374756, -0.593763530254364, 0.21604402363300323, -0.1664382815361023, -1.2882925271987915, 0.05433070287108421, -0.6516514420509338, 1.0179641246795654, -0.764971911907196, 0.2321707308292389, -1.1335422992706299, 0.007795413956046104, 0.6568651795387268, -0.13799098134040833, -0.7867569923400879, -0.07562283426523209, 0.05586455017328262, -0.6305753588676453, 0.6220595836639404, 0.25737759470939636, 0.3212151825428009, -0.2745051681995392, 0.10658593475818634, 0.9937077164649963, 0.9882408380508423, -0.4497115910053253, 1.2267464399337769, -0.27947044372558594, -1.0155375003814697, -0.7865868210792542, -0.3698071837425232, 0.17939262092113495, -0.7579154372215271, -1.1992021799087524, 0.5314822793006897, 0.36144474148750305, -0.9367327690124512, 0.4661574065685272, 0.06260514259338379, 0.2658124566078186, -0.2136421650648117, 0.8297101259231567, 0.5506166219711304, -0.12411718815565109, -0.19762860238552094, 0.11783859133720398, 0.10589238256216049, 0.27670449018478394, 0.31260451674461365, -0.5088220834732056, 0.04727769270539284, 0.9222456216812134, 0.6550722718238831, 0.22675150632858276, 0.8306970000267029, 0.327886700630188, -0.541934072971344, -0.2176523059606552, -0.9215376973152161, -0.008567974902689457, -0.6833451390266418, 1.3886793851852417, 0.40311697125434875, -0.7334272861480713, -0.32779961824417114, -0.2902410924434662, -0.1264658272266388, -0.3463984727859497, 0.05119903385639191, 0.0377887487411499, 0.17354966700077057, -0.8354095220565796, -0.03404069319367409, 0.015142888762056828, -0.2854037880897522, 0.7869218587875366, -0.4047078490257263, -0.5792021155357361, 0.3215372562408447, 0.23759698867797852, -0.014694621786475182, 1.6068086624145508, 0.2980543076992035, -0.9501277208328247, -0.6741227507591248, -0.13307395577430725, 0.35772162675857544, -0.550571084022522, 0.5760416984558105, 1.273791790008545, 0.4021424651145935, -0.5568103194236755, -0.04153120145201683, 0.4819257855415344, 0.14347194135189056, 0.3691921830177307, -0.14952075481414795, 0.01714162901043892, 0.41745415329933167, -0.22439593076705933, -0.5900359749794006, 0.13983291387557983, 0.544729471206665, 0.5538929104804993, 0.7711824774742126, 1.0400984287261963, 0.11113099008798599, -0.1765374392271042, 0.005278817377984524, -0.0031923330388963223, -0.8145633339881897, -0.8877783417701721, -0.21245723962783813, -0.868702232837677, -0.636592447757721, -0.1851321905851364, -0.19174903631210327, 0.8967356085777283, 0.6647427678108215, 0.2071746587753296, 1.1897971630096436, -0.4065290689468384, -0.14386619627475739, 0.6879053115844727, -0.5710483193397522, -0.24692507088184357, 0.5103792548179626, 0.28907328844070435, -1.6378554105758667, -0.0107661671936512, -0.3832746744155884, 0.3696211278438568, 0.0752638503909111, 0.3213094174861908, 0.00765405036509037, -1.1685154438018799, -0.7764068841934204, -0.37786829471588135, 0.968915581703186, 0.13892482221126556, -0.8292343616485596, -0.17525622248649597, 0.09637533128261566, 0.8134233951568604, 0.053773973137140274, -0.019735312089323997, 0.1928706020116806, -0.667850911617279, -0.6084187626838684, -0.07190632820129395, 0.5168314576148987, 0.4868202805519104, -0.4970100224018097, -1.0764511823654175, 0.27374765276908875, -0.11129770427942276, -0.6572331190109253, 0.3523099720478058, -0.48641666769981384, 0.862834095954895, 0.27227485179901123, 0.4563114047050476, 1.1904345750808716, -0.47364339232444763, 0.8369297981262207, -2.1534950733184814, 0.63236403465271, 0.5131031274795532, 1.9535765647888184, -0.2546238303184509, 0.6104242205619812, -0.1540292501449585, -0.8040763735771179, 0.14738333225250244, 0.4794453978538513, 0.7828441262245178, -0.11107040196657181, -0.06097620725631714, 0.19147071242332458, -0.8313804864883423, -0.3617892563343048, 0.12320704758167267, 0.029827965423464775, 0.24580219388008118, -0.8735267519950867, -0.3305305242538452, 0.9698539972305298, 0.5504297018051147, -1.0305088758468628, -0.6866329908370972, -0.10709455609321594, 0.5609040260314941, -0.5060566663742065, -0.19164031744003296, -0.47857001423835754, -0.2010474056005478, 1.1787952184677124, -0.9597494602203369, 0.7907110452651978, 1.2719438076019287, 0.4405616223812103, -0.029922060668468475, -1.057171106338501, 0.22018283605575562, -1.1371735334396362, -0.036134690046310425, 0.9248817563056946, 0.12337511777877808, 0.3320992887020111, 0.2491946816444397, 0.06836355477571487, -0.11745896935462952, -0.5731830596923828, 1.6891443729400635, -0.3938460350036621, 0.10490963608026505, -0.08580604195594788, -0.46844562888145447, 1.0469155311584473, -0.10844841599464417, -0.3011826276779175, 0.1321774274110794, -0.24643583595752716, 0.091523677110672, 0.10966671258211136, -0.0894780158996582, 1.7434331178665161, 0.5813817381858826, -0.2150283008813858, 0.39561641216278076, 0.15989187359809875, -0.3606572449207306, 0.03147764876484871, 0.6885842680931091, -0.3646218180656433, -0.8013947606086731, 0.18538379669189453, 0.22146040201187134, 0.2921672463417053, 0.076786108314991, 0.43439120054244995, 0.3942987322807312, 0.08494395017623901, -0.04067637026309967, 1.3459454774856567, 1.085654377937317, 0.7619349360466003, -0.08805935829877853, 1.211637258529663, -0.1847747415304184, 0.08654018491506577, 0.6566388607025146, -0.08799715340137482, 0.2499406486749649, 0.24756892025470734, 0.2665185034275055, 1.2132179737091064, -0.791262686252594, -0.4893062710762024, 0.8933729529380798, -0.015888039022684097, 0.9926160573959351, 1.058347463607788, 0.5620203018188477, -0.11038347333669662, 0.12650282680988312, 0.026706447824835777, -0.4080468416213989, 0.5200468301773071, 0.4398716986179352, -0.33261311054229736, 0.6112254858016968, -0.8371708393096924, 0.4752362072467804, -1.1917188167572021, -0.1576564759016037, -0.38318517804145813, -0.7368228435516357, 0.58968186378479, 0.7072179913520813, 0.1734568327665329, 1.1428816318511963, 0.2549891769886017, -1.1640599966049194, 0.27182599902153015, -1.0161224603652954, -0.26350271701812744, -0.23676909506320953, -0.8872663974761963, -0.9842169880867004, 0.30704042315483093, -0.17435817420482635, -0.2247931808233261, -0.5727536082267761, -0.06217539310455322, -0.07945241779088974, -0.7433821558952332, 0.6855438351631165, 0.45108762383461, 0.4962441623210907, 0.2653712034225464, -0.011993611231446266, 0.08168123662471771, 1.0827518701553345, -0.5527758002281189, 0.03979460895061493, 0.010177170857787132, -0.4194784164428711, -0.2840103805065155, -0.705435037612915, -0.27651292085647583, 1.2868589162826538, 0.28901079297065735, -0.2735517919063568, -0.6901676654815674, 0.4658692181110382, 1.2302595376968384, -0.27903318405151367, -1.0055725574493408, -0.04782237485051155, -0.4859321713447571, 0.454683780670166, 0.458481103181839, -0.4470658004283905, -0.8596433997154236, -0.49961358308792114, -1.0581880807876587, 1.0856008529663086, -0.0573713481426239, -0.11176986992359161, 0.7289814352989197, 0.9121724963188171, 0.36794808506965637, 0.47897377610206604, -0.2852120101451874, 0.044862162321805954, 0.04775378108024597, 0.27615663409233093, -0.5075117945671082, 0.563749372959137, 0.2722342610359192, 0.15411125123500824, -0.13012714684009552, 0.6551831960678101, -0.42491614818573, 0.2682712972164154, -0.6134341955184937, 0.409570574760437, -0.032422978430986404, 0.10092101246118546, 0.12969867885112762, 0.3152208924293518, -0.291638046503067, -0.6169175505638123, -0.10503043979406357, -0.06690787523984909, 1.0054105520248413, -0.1498975157737732, -0.581130862236023, 0.25752153992652893, -0.7949538230895996, 0.20867730677127838, -0.28173407912254333, -0.4569869637489319, 1.3238346576690674, 0.8073843121528625, 0.41123294830322266, 0.5667772889137268, -0.4179568886756897, 0.09995938092470169, -0.5666549801826477, -0.08741024881601334, 1.0664658546447754, -1.049380898475647, 0.41527947783470154, -0.10414615273475647, -1.009649634361267, 0.12543299794197083, 0.43605539202690125, -0.05922231450676918, -0.5522751808166504, -1.0462967157363892, -1.2179068326950073, -0.2917245626449585, 0.8397322297096252, -0.6491614580154419, -0.17436346411705017, 0.2178400158882141, -0.7499461770057678, -0.7229076027870178, 1.1702972650527954, -1.1261470317840576, -0.48040375113487244, -1.016683578491211, 0.641707718372345, 0.17617158591747284, 0.5848981738090515, -0.8569521307945251, 0.37065589427948, -1.2065919637680054, -1.1349483728408813, -1.3765052556991577, -0.4807989299297333, 0.9447776675224304, 0.44237762689590454, -1.06415855884552, 0.5687419176101685, 0.5040308237075806, 0.601851761341095, -0.5056367516517639, 0.20537564158439636, 0.022732309997081757, 0.4059249460697174, 0.284790575504303, -0.17412517964839935, -0.40020281076431274, 1.2606550455093384, 0.5147829055786133, 0.7483282685279846, 1.1571980714797974, 0.8763066530227661, -1.2726224660873413, -0.2974323034286499, -0.4648587703704834, 0.5516983866691589, -0.1268547922372818, -0.5643621683120728, -0.05817572399973869, -0.7729777693748474, -0.01272496860474348, 0.3573436439037323, 0.5981418490409851, -0.9836066961288452, -0.244262233376503, -1.817931056022644, 0.18375100195407867, -0.5271808505058289, 0.3948505222797394, -0.06108709052205086, -0.28939199447631836, 0.2698553204536438, -0.4852980375289917, -0.7364175915718079, -1.7424417734146118, -0.27565398812294006, 0.12033676356077194, 0.10170644521713257, -0.2996218800544739, -0.2234225571155548, 0.21255053579807281, 0.7572035193443298, -0.26419463753700256, 1.4913506507873535, 1.1831161975860596, 0.09470777958631516, 0.06886269897222519, -0.04570766165852547, 0.23002128303050995, 0.3103013336658478, -0.5660552382469177, -0.7641482949256897, -0.8045714497566223, 0.6189022064208984, -0.19577474892139435, -0.3465286195278168, 0.04397132992744446, 0.7651944160461426, 0.3273285925388336, 0.4743042290210724, 0.7979531288146973, -0.6511935591697693, -0.7490684390068054, 1.0312176942825317, 1.1022608280181885, -0.9977531433105469, 0.22014650702476501, 0.3277502954006195, 0.5619751811027527, 0.4490664005279541, 0.5977956652641296, 0.6624898314476013, -1.0867470502853394, 0.9222236275672913, 0.8502930998802185, -0.5578328371047974, -0.3432963788509369, -0.36825108528137207, -1.57517409324646, -0.11321259289979935, -0.21317629516124725, -1.0363789796829224, 0.12781845033168793, -0.8915512561798096, -0.45991966128349304, 0.3838701546192169, -0.13943533599376678, 0.5219907760620117, -0.8457143902778625, 0.8557326793670654, 0.017051439732313156, 0.21518200635910034, 0.1287962943315506, -0.42818883061408997, 0.7412152290344238, -0.2643603980541229, -0.593559980392456, -1.4863989353179932, -0.5453645586967468, 0.4699322283267975, -0.16488945484161377, -0.31757161021232605, 0.3847004473209381, 0.6183262467384338, -0.5704329013824463, -0.7588409781455994, 0.5721928477287292, -0.1770840287208557, -0.09579848498106003, -0.7359839081764221, -0.7799152731895447, 0.7605025172233582, 0.521515965461731, 0.08570457994937897, -0.4232921004295349, -0.6422794461250305, -0.40154752135276794, 0.37996330857276917, 0.16608552634716034, 0.1315649151802063, -0.23051421344280243, 0.8235471248626709, -0.13587598502635956, -0.22111597657203674, 0.0369432233273983, -0.6697942614555359, 0.6484652161598206, 0.09550473839044571, 0.27014032006263733, 0.020679160952568054, -0.38345634937286377, 0.5965136885643005, -1.1247390508651733, -0.5551034212112427, 0.6652475595474243, 0.012929554097354412, 0.20764437317848206, -0.5633094906806946, -1.551047444343567, -0.08135126531124115, 0.21274833381175995, -0.22734999656677246, 1.0959151983261108, 0.10932038724422455, -0.6130500435829163, -0.7177762985229492, 0.1515972912311554, 0.18608711659908295, -0.46495118737220764, 0.10350500792264938, 1.0846842527389526, 2.060354709625244, 0.28384798765182495, -0.026067273691296577, 0.08553767204284668, 0.503024697303772, -1.0725305080413818, 0.1983342170715332, -1.223835825920105, 0.36467769742012024, -0.694837749004364], [-0.0687083825469017, 0.4415515959262848, -1.7736446857452393, -0.5890169739723206, -1.176894187927246, 0.5281082987785339, 1.1394013166427612, 0.8952858448028564, 0.47942373156547546, -0.451374888420105, -1.5492091178894043, -0.4839942753314972, 0.40997055172920227, 0.48167502880096436, -0.5729172229766846, 0.36477723717689514, 0.10781247168779373, 0.5182710289955139, 0.6963578462600708, 0.8234840631484985, -0.8347403407096863, -0.5111109614372253, 0.1582929939031601, 0.5163741111755371, -0.5236921906471252, 0.9021382331848145, -1.6265288591384888, 0.1856178492307663, -1.4653515815734863, -1.1244032382965088, 0.5897364616394043, -0.9046613574028015, 0.033835846930742264, 0.3482513427734375, -1.0397714376449585, -0.11262808740139008, 1.4067838191986084, 1.452970266342163, 0.613125741481781, 0.7435472011566162, 2.829441547393799, 0.053277041763067245, -0.43222740292549133, -0.8805289268493652, 0.595474898815155, -0.38655996322631836, 1.0260694026947021, -1.5995581150054932, -0.2714327573776245, -0.06934383511543274, 0.8688632249832153, 0.7950237989425659, 0.1549430936574936, 0.6678085923194885, 1.2179532051086426, -1.1899964809417725, -0.130814790725708, -0.5124896168708801, 0.3042784035205841, -0.007866671308875084, 0.12620972096920013, 0.13650275766849518, 0.7068703174591064, 1.0171258449554443, 0.7340047955513, 0.22724786400794983, -0.32296544313430786, 0.5579842329025269, -0.5579911470413208, -0.6738640666007996, 0.46673783659935, -0.058592356741428375, -0.8654264807701111, 0.22759728133678436, -0.5567728281021118, 0.5386960506439209, 1.3701097965240479, 1.1218541860580444, -0.28701603412628174, 0.7637851238250732, -0.8213943839073181, 0.11029936373233795, 0.9669904708862305, -0.5064169764518738, 0.4358827471733093, -0.2653554379940033, 0.506417989730835, -0.88618403673172, -0.8588131666183472, 1.428847074508667, 0.1581726372241974, 0.22121135890483856, 0.30348384380340576, -0.02999471314251423, -0.3794029653072357, 0.22056743502616882, 0.3931288719177246, -0.347212016582489, -0.37263748049736023, -0.728996217250824, -1.1846975088119507, -0.6618982553482056, 0.49727025628089905, 0.08774195611476898, 1.1357771158218384, 1.9926459789276123, 0.16632741689682007, -0.6072846055030823, -0.6715763211250305, 0.09705211222171783, -0.4145975112915039, -0.3359314501285553, -0.23627246916294098, -1.282077431678772, -0.6925556659698486, 0.37079375982284546, 0.9411499500274658, -0.6236597895622253, 0.9416270852088928, 0.7935359477996826, -0.36425262689590454, -0.26607275009155273, -0.14129655063152313, -0.2863158583641052, 0.8382655382156372, 0.3986636996269226, -0.2671504616737366, -0.2596319019794464, 0.7553146481513977, 0.3329189121723175, 1.1641830205917358, 0.3540637791156769, 0.24785202741622925, 2.0587244033813477, 0.031748123466968536, 0.28854629397392273, 0.3766994774341583, -1.2229057550430298, -0.7331746220588684, 0.09498625248670578, 1.1742708683013916, -0.8534908890724182, -0.13899610936641693, -0.7370448112487793, -0.9716144800186157, -0.9534721374511719, 1.0191214084625244, -0.33995264768600464, -0.3334392309188843, 0.0803457573056221, -1.0072181224822998, 0.08419205248355865, 0.6494930386543274, 0.6556928753852844, 0.12737227976322174, 0.02405090630054474, 0.6047256588935852, 0.8692290782928467, 0.5579292178153992, 0.7240582704544067, 0.31638726592063904, -0.362674742937088, 0.0680353119969368, 0.6056140065193176, 0.8493208885192871, -0.2046387940645218, -0.36275219917297363, 0.28776803612709045, -0.08311634510755539, -0.048128124326467514, 0.27626270055770874, -0.2995627522468567, -0.8359482884407043, 0.5334370732307434, 0.09878960996866226, -1.0835986137390137, 1.3051567077636719, -0.7638951539993286, -1.1841720342636108, -1.4725687503814697, 1.6063770055770874, -0.11111003160476685, -0.14012672007083893, -0.04783051833510399, 1.251908779144287, -0.7382065057754517, -0.25651654601097107, -0.11400427669286728, -0.7677552103996277, -1.075310230255127, -0.6757990717887878, -0.20204389095306396, -1.1147631406784058, 0.16179360449314117, -0.402774840593338, -1.0639371871948242, 0.2539139986038208, -0.25820666551589966, -0.8097260594367981, -0.2841813564300537, 0.4735161066055298, 0.2437242567539215, -1.0364134311676025, -0.058024242520332336, -0.7087352275848389, 0.9486071467399597, -0.9028741717338562, 0.41690051555633545, -0.848603367805481, 0.04696808382868767, 0.2858653962612152, -0.0388614758849144, -0.7872570753097534, 0.3380342423915863, -0.336630254983902, -0.6252528429031372, 0.74278324842453, 0.01999509707093239, 0.5635848045349121, -0.7297289967536926, 0.8626110553741455, 0.6030681729316711, 0.610478401184082, -0.3653724193572998, 1.1079708337783813, 0.20745420455932617, -0.2277657836675644, -0.8058999180793762, -0.6182074546813965, 0.20286794006824493, -0.5219892263412476, -1.2978870868682861, 0.7901118397712708, 0.20702539384365082, -1.3597476482391357, 0.847316324710846, -0.05872279033064842, -0.27283036708831787, -0.31467992067337036, 0.8964117765426636, 0.34793028235435486, 0.7564241886138916, -0.1765493005514145, -0.5825666189193726, -0.3100387156009674, 0.6364116668701172, 0.8095831274986267, 0.037500906735658646, 0.9032666683197021, 1.2117719650268555, 0.42213910818099976, -0.17146460711956024, 0.31076017022132874, 0.3812009394168854, -0.43337973952293396, -0.6106070280075073, -0.3574048578739166, -0.10287385433912277, -1.3737484216690063, 2.2608394622802734, 0.7120332717895508, -1.0667012929916382, -0.335249125957489, 0.1670781672000885, -0.5937385559082031, -0.24865812063217163, -0.046685900539159775, -0.7808197140693665, 0.44619306921958923, 0.08931787312030792, -0.012908075004816055, 0.5291610360145569, 0.2545700669288635, 0.8919786214828491, -0.2281447798013687, -0.48277977108955383, 0.44218289852142334, 0.5015000700950623, -0.3464778661727905, 1.090471863746643, 0.5904523730278015, -1.1000694036483765, -0.31971272826194763, -0.5238303542137146, 1.1396116018295288, -0.3079582154750824, -0.4274976849555969, 0.9792467951774597, 0.1659812182188034, -0.45296546816825867, 0.12580759823322296, 0.899336040019989, 0.21695682406425476, 0.1732359677553177, -0.1800784021615982, 0.2799800634384155, 1.132257342338562, -1.13480806350708, -0.7963943481445312, 0.35705578327178955, 0.3768062889575958, 0.40663424134254456, 1.3345519304275513, 1.4347639083862305, -0.07535935938358307, -0.00022001378238201141, -0.31164050102233887, 0.027770794928073883, -1.0050320625305176, -0.6413033604621887, -0.28483906388282776, -1.0948421955108643, -0.03561815619468689, -0.48895707726478577, -0.2669195830821991, 0.5411139130592346, 0.013219115324318409, 0.3160732686519623, 0.8495752215385437, -0.8876983523368835, -0.2001749873161316, -0.012431183829903603, 0.22978079319000244, -0.5868672132492065, 0.8541160821914673, 0.10769690573215485, -1.3635468482971191, -0.7113983631134033, 0.24266955256462097, 0.09031667560338974, 0.982339084148407, 0.45719781517982483, -0.08161736279726028, -1.1492923498153687, -1.4654419422149658, 0.077733114361763, 1.334336280822754, -0.04255099967122078, -0.959109902381897, -0.7328034043312073, 0.2037913054227829, 0.6547630429267883, 0.11149125546216965, -0.704252302646637, 0.4827227294445038, -0.8900099396705627, -0.8807048797607422, -0.3115752339363098, -0.02622240222990513, 0.7829341888427734, -0.2298268973827362, -0.7892752289772034, 0.16484585404396057, 0.07280838489532471, -0.7196397185325623, 0.24216336011886597, -0.8858844041824341, 1.2041865587234497, -0.1792893260717392, 0.474928617477417, 1.3904727697372437, -1.332287311553955, -0.4402162730693817, -1.898361325263977, 1.0593039989471436, 0.49257686734199524, 1.5536072254180908, -0.10156909376382828, 0.6835830211639404, 0.3721961975097656, -0.3871944546699524, 0.024393552914261818, 0.6581476330757141, 0.8602266311645508, 0.1281503289937973, -0.2253945767879486, 0.013780291192233562, -0.23264913260936737, -0.4511696994304657, -0.4351775348186493, -0.5832293629646301, 0.4812084138393402, -0.8057991862297058, 0.07683414965867996, 0.6719157099723816, 0.7723026871681213, -1.7679699659347534, -0.32534924149513245, 0.2079247534275055, 0.1499863564968109, 0.20347392559051514, 0.11547041684389114, -0.24535581469535828, -0.34689950942993164, 0.736543595790863, -1.0156744718551636, -0.04850047826766968, 0.21318282186985016, -0.41439029574394226, 0.7171958684921265, -1.3725800514221191, 0.08223330229520798, -1.1951075792312622, 0.09282147139310837, 0.7758178114891052, 0.05646873265504837, 0.5053738355636597, 0.7121129631996155, 0.1169833317399025, -0.28379714488983154, -0.3567196726799011, 1.9620105028152466, 0.34027934074401855, -0.05699123814702034, -0.4055578410625458, 0.4336693286895752, 0.6668704748153687, -0.5976824760437012, -0.584874153137207, 0.29496151208877563, -0.8688559532165527, 0.6197048425674438, -0.16872970759868622, 0.2158433347940445, 1.4499709606170654, 0.09744521230459213, 0.3253897428512573, 0.13632524013519287, -0.4424348771572113, -0.5814344882965088, -0.4701886773109436, 0.10613219439983368, -0.09019573032855988, -0.3236899971961975, 0.17916104197502136, 1.1451436281204224, 0.09075235575437546, 0.1189543828368187, 0.2557346522808075, -0.148078054189682, -0.09924117475748062, -0.020097896456718445, 0.5968440771102905, 0.15901367366313934, 0.9299396872520447, 0.32538649439811707, 0.3414251208305359, -0.43709421157836914, 0.394281268119812, 1.5052402019500732, -0.3679392337799072, 0.36398380994796753, 0.5636945962905884, 0.5195698142051697, 1.1462419033050537, -1.817307949066162, -0.668677568435669, 0.5510091185569763, -0.11363004893064499, 0.9029639959335327, 0.9620518088340759, 0.36043986678123474, -1.1351091861724854, 0.20074495673179626, -0.24609197676181793, -0.44769206643104553, 0.4746457040309906, 0.4810204803943634, -0.40764304995536804, 0.2153751403093338, -0.6774728894233704, -0.23791615664958954, -1.1211491823196411, -0.05862446129322052, 0.2887493669986725, -1.3170132637023926, 0.47921231389045715, 0.2397925704717636, 0.26622867584228516, 0.579700767993927, -0.1726072132587433, -0.8730385899543762, 0.7334500551223755, -0.9100872874259949, -0.3303149342536926, -0.4185613989830017, -1.0772373676300049, -0.5179949402809143, 0.1463339775800705, -0.4419465661048889, 0.3810499310493469, -0.21080225706100464, -0.754569411277771, 0.232444629073143, -0.9607263207435608, 0.5433364510536194, 0.9464746117591858, 1.191042184829712, 0.7376705408096313, 0.1298244446516037, 0.6435539722442627, 0.5289291143417358, -0.9645540118217468, 0.48805391788482666, 0.7755365967750549, -0.15167437493801117, -0.4875526428222656, -0.6504715085029602, -0.6208115816116333, 1.2629185914993286, 0.6317028403282166, -0.42182764410972595, 0.09486694633960724, 0.12271389365196228, 1.3194799423217773, -0.011679602786898613, -0.7621303796768188, 0.048106156289577484, -0.18205562233924866, 0.4311060905456543, 0.9437498450279236, -0.8013458251953125, -0.25305497646331787, -0.4109466075897217, -1.0628421306610107, 1.3736482858657837, 0.3282671570777893, -0.8112131953239441, 1.5562244653701782, 1.1006910800933838, -0.1459013819694519, 0.5543236136436462, 0.31063762307167053, -0.7399328351020813, 0.20443658530712128, -0.004666642285883427, -1.6218211650848389, 0.7168809771537781, 0.0752720981836319, 0.20294946432113647, -0.7399323582649231, -0.20140796899795532, -1.1839268207550049, 0.567379891872406, -0.5963818430900574, -0.3359951972961426, 0.4578675925731659, 0.20370371639728546, 0.3334437906742096, 0.3048756718635559, -0.4368964433670044, -0.007269289810210466, -0.4734300374984741, -0.49983370304107666, 0.6841283440589905, -0.2767607271671295, -1.4220951795578003, 0.3249575197696686, 0.17394942045211792, 0.39535602927207947, 0.26626908779144287, -0.21045784652233124, 1.407742977142334, 1.0239791870117188, 0.2865585684776306, 0.6340008974075317, -0.424881249666214, -0.26508161425590515, -0.1384563446044922, -0.9361319541931152, 0.3851010799407959, -1.1929093599319458, 0.2381218671798706, -0.46974265575408936, -0.12233906239271164, 0.34894371032714844, 0.05796905606985092, -0.22793667018413544, -0.7415115237236023, -0.7674902081489563, -1.5737301111221313, 0.2530871331691742, 0.6667612791061401, -0.7039875388145447, -0.4349345862865448, 0.2495572715997696, -1.3598756790161133, 0.16922707855701447, 0.6458324790000916, -1.160017728805542, -0.34127989411354065, -1.159508466720581, 0.8019216060638428, -0.9068955779075623, 0.6209901571273804, -0.7070575952529907, 0.7189305424690247, -0.5230802893638611, -1.1239622831344604, -0.5871309041976929, -0.3711230158805847, 1.0931607484817505, 1.0935263633728027, -0.6919236779212952, 0.8634910583496094, 0.3090268075466156, -0.5832182765007019, -0.25818932056427, 0.3199038803577423, -0.045738741755485535, 0.7869952321052551, 0.19105570018291473, -0.4425411820411682, 0.655854344367981, 1.0015519857406616, 0.7138555645942688, 1.2610445022583008, 0.17791706323623657, 0.9931060075759888, -1.1760363578796387, -0.33351507782936096, -1.0732089281082153, -0.05408259108662605, -0.31340864300727844, -0.43031591176986694, -0.6626138687133789, -0.984404981136322, -0.14186103641986847, 0.8943981528282166, 1.2371476888656616, -0.8137583136558533, -0.23398199677467346, -0.8068240880966187, 0.8014866709709167, -0.2728356420993805, 0.4602300822734833, -0.004690042696893215, -0.24929183721542358, -0.053550392389297485, -0.6674671173095703, -0.4701937139034271, -0.5785536766052246, -0.6095070242881775, -0.2687637507915497, 0.43067944049835205, -0.19486375153064728, 0.3756425678730011, 0.7808033227920532, -0.011376718990504742, -0.2879164516925812, 2.185779571533203, 1.338724970817566, -0.23763597011566162, 0.8956605792045593, -0.4552321135997772, -0.3305172026157379, -0.31808438897132874, -0.8239647150039673, 0.4105474054813385, -0.7536178231239319, 0.5174142718315125, -0.1680101901292801, 0.0876619890332222, -1.1612704992294312, 0.3099052608013153, 0.15540045499801636, 0.47604337334632874, 0.8059001564979553, -0.2734833061695099, -0.2882634699344635, 0.6673901081085205, 0.9584078192710876, -0.49574366211891174, 0.5664117932319641, 0.3643024265766144, 0.5135656595230103, 0.14064466953277588, 0.603338360786438, 0.34045857191085815, -1.2336978912353516, 0.6484943628311157, 0.0385536290705204, -0.6766252517700195, -0.1346033662557602, -0.7691800594329834, -1.445975422859192, -0.523989200592041, -0.5751940608024597, -0.9162490367889404, 0.32277533411979675, -0.6713875532150269, -0.6466668248176575, 0.32212698459625244, -0.19269278645515442, 0.09401404112577438, -0.5909180641174316, 0.08767681568861008, -0.3569163680076599, 0.02914166823029518, 0.497883141040802, 0.016779005527496338, 0.4779849648475647, 0.32285773754119873, -0.16843095421791077, -0.9650471210479736, -0.626204252243042, -0.11081115901470184, 0.22178223729133606, 0.06548482924699783, 0.4309332072734833, 0.22100390493869781, -0.1576928049325943, -0.27473750710487366, 0.21741285920143127, -0.6331700086593628, 0.6790040731430054, -0.26680120825767517, -0.4751441776752472, 0.17191533744335175, 0.46665602922439575, -0.4867429733276367, -0.1692521870136261, -0.35460615158081055, -0.15567860007286072, -0.21646378934383392, -0.7496858239173889, 0.16903434693813324, -0.44751662015914917, 0.6332346200942993, 0.35701698064804077, 0.14762096107006073, 0.32295140624046326, -0.17744751274585724, 0.12687304615974426, -0.3869697153568268, 0.37336963415145874, 0.3154618442058563, -1.0491178035736084, 0.517585813999176, -1.3841441869735718, 0.3258962035179138, -0.3458639085292816, 0.5083483457565308, 0.05240525305271149, -0.7239858508110046, -0.9188185930252075, -0.45591798424720764, -0.23451216518878937, 1.149548888206482, 0.5061787366867065, 0.8047837018966675, -0.9110214710235596, -1.3073418140411377, -0.38382336497306824, -0.3267626166343689, 0.053374260663986206, 0.9259229898452759, 1.6973655223846436, 1.5179502964019775, 0.26817387342453003, -0.20797428488731384, -0.11025727540254593, 0.7304743528366089, -0.563367486000061, -0.8106915950775146, -1.1325749158859253, -0.2341698855161667, -0.255058616399765], [0.01391932275146246, 1.0474679470062256, -1.937429666519165, -0.20000383257865906, 0.658793032169342, -0.42883285880088806, 1.5673712491989136, -0.1776025891304016, 0.9716423153877258, -1.2055960893630981, -0.37566614151000977, -0.24651966989040375, 0.5735188126564026, 1.2779244184494019, -0.7231682538986206, 0.6035867929458618, 0.4548881947994232, -0.5358943939208984, -0.9760546684265137, 0.80268794298172, 0.181693896651268, -2.5137534141540527, -0.8282184600830078, -0.6299811005592346, -0.37914517521858215, -0.2525254189968109, -0.26463255286216736, 0.5712230801582336, -1.4687305688858032, -0.42638254165649414, 0.746318519115448, -0.4549766778945923, -0.3523164689540863, 0.7053971290588379, -0.5582041144371033, -0.6044514179229736, 0.4625830054283142, -0.21109521389007568, -0.25771665573120117, 0.5848783254623413, 1.0297377109527588, -0.25324657559394836, -0.588342547416687, -0.5680190324783325, 0.8131076693534851, -1.1706749200820923, 1.6412663459777832, -0.5438027381896973, 0.2885075807571411, -1.8545680046081543, 0.6068668961524963, -1.4637837409973145, 0.2110166996717453, 0.45036154985427856, 0.5267877578735352, -1.1981074810028076, 0.03552384674549103, 0.33260491490364075, -0.6023099422454834, 0.24225689470767975, 1.9388279914855957, 0.9216382503509521, 0.3069843649864197, 1.9446338415145874, 0.16057290136814117, -0.0941181480884552, -0.05207177996635437, -0.27928397059440613, -0.3071750998497009, -0.005889022722840309, 0.5707385540008545, -0.596555233001709, -0.04549730569124222, 0.5030041933059692, -0.4254438877105713, 0.5105909705162048, -0.5945845246315002, 0.136007621884346, -0.31415531039237976, 0.1778433471918106, 0.23035970330238342, -0.12067611515522003, 0.7771583795547485, -0.7720786333084106, -0.3131732642650604, -0.8503150343894958, 0.13005654513835907, -0.5426356196403503, -1.469155192375183, 2.116081476211548, -0.15971432626247406, -0.1249089166522026, 0.3411928415298462, 0.35647496581077576, -0.10163107514381409, -1.826526403427124, 0.044792983680963516, -0.49772393703460693, -0.4296461343765259, -0.07671058177947998, -0.6141166687011719, -0.36502888798713684, -0.25488540530204773, -0.17395231127738953, 0.7637153267860413, 1.1943787336349487, 0.005654420703649521, -0.9880701303482056, 0.3831489086151123, -0.1542406678199768, 1.1945172548294067, -0.1052100658416748, 0.038848862051963806, -0.1041235476732254, 0.04680902883410454, 0.1802045851945877, 0.7970153093338013, 0.03366721794009209, -0.11945538222789764, 1.5866461992263794, 0.33068838715553284, -1.417008876800537, -0.7687355279922485, -0.22623705863952637, 0.7531927824020386, -0.04021138325333595, -0.5697086453437805, -0.3113151788711548, -0.8529523611068726, -0.7836775779724121, -0.21676839888095856, -0.024879634380340576, -0.1361936777830124, 0.11253046989440918, -0.3886038362979889, 1.129923939704895, -0.6389278769493103, -1.0363855361938477, -0.23337815701961517, -0.3320237994194031, 1.0701481103897095, 0.2821251451969147, -0.8271719813346863, -0.11201479285955429, 0.41064324975013733, -0.37959718704223633, -0.4128621816635132, -0.07361385971307755, -0.08363693952560425, 0.5699219107627869, -0.7091654539108276, 0.140006884932518, 0.2315242439508438, 1.0818036794662476, 1.2709006071090698, -0.4978059232234955, -0.341147243976593, 1.0677242279052734, 0.7302471399307251, 0.5161838531494141, 0.9853654503822327, -0.08175419270992279, -0.0714707300066948, 1.1597199440002441, 0.3852269947528839, 0.052386097609996796, 0.630873441696167, 0.8323476314544678, -0.1266574114561081, 0.8977078795433044, -0.5891621112823486, 0.09078418463468552, -0.8212231993675232, 0.7048598527908325, 0.026504382491111755, 0.4457884430885315, 0.38331785798072815, 0.021885178983211517, -1.1727886199951172, -0.4490951895713806, 0.8625332713127136, -1.4551054239273071, -0.7708236575126648, -0.02363932877779007, -0.2852504551410675, 0.20996612310409546, -0.08271059393882751, -1.4738619327545166, -0.022483468055725098, -1.14975905418396, -0.7045770883560181, 0.009241837076842785, -0.7208647727966309, -0.14446595311164856, -0.9742339253425598, 0.01903640665113926, 1.2171924114227295, -0.026503615081310272, 0.35962358117103577, -0.5250189900398254, 0.1773132085800171, 0.8077855706214905, -0.7752283215522766, 0.5316557288169861, 0.27327072620391846, 0.42852503061294556, 0.5909690856933594, 0.7150754332542419, 0.11761920899152756, 0.6564642786979675, 1.1363309621810913, -1.4272801876068115, 0.19346362352371216, -0.2873873710632324, 0.09494465589523315, -0.056706514209508896, 0.2674371898174286, -0.8292248845100403, -0.7773545384407043, -0.026849305257201195, 0.7070208787918091, -0.4841296672821045, -0.2587205469608307, -0.5422652363777161, 0.7122504711151123, -0.3869323134422302, -1.7456234693527222, -0.23527298867702484, -0.6237932443618774, -0.05374174192547798, -0.07055007666349411, -0.524945855140686, 0.6013684272766113, 0.24308791756629944, -0.29187965393066406, 0.8828374147415161, -1.024367332458496, 0.7557836174964905, 0.030485689640045166, 0.7692429423332214, 1.137908935546875, -0.32797402143478394, 0.2536633610725403, -0.0860559493303299, -0.9511573910713196, -0.02122301608324051, 0.05003955960273743, -0.7107803821563721, -0.7205098867416382, 1.0676548480987549, 1.5156080722808838, -0.13913381099700928, 0.16755756735801697, -0.022095153108239174, 0.3427945077419281, -1.3058249950408936, 0.5357823371887207, 1.1174746751785278, -0.1463741511106491, -0.18801547586917877, 0.6378088593482971, -0.3651919364929199, -0.24132241308689117, -0.47399234771728516, -0.10794767737388611, -0.43611279129981995, -0.6328984498977661, -0.3181878328323364, -0.07054668664932251, 0.2158970683813095, -0.2613570988178253, 0.1360183209180832, -0.3404063284397125, 0.7927719354629517, 0.056882258504629135, 0.10719530284404755, 1.1378586292266846, 0.7711671590805054, 0.3247630298137665, 0.9763213396072388, -1.0616072416305542, -1.689150094985962, -0.7481792569160461, 0.3128673732280731, 0.1326325684785843, 0.12419907748699188, -0.7346490025520325, 0.137893944978714, 0.6925073862075806, -0.34660637378692627, 1.287402868270874, 0.005083865486085415, -0.25742530822753906, -0.6428363919258118, -0.8283932209014893, 0.17248187959194183, -0.05229353532195091, -1.0756868124008179, -1.0302122831344604, -0.12331247329711914, 0.23722046613693237, 0.9455630779266357, 1.3909828662872314, 0.9463610649108887, -0.2652747333049774, -0.4611668884754181, -0.33723556995391846, 0.20266303420066833, 0.48144474625587463, 0.06171102076768875, -0.4023565351963043, -0.028460539877414703, -0.8521331548690796, 0.4234611392021179, 0.3066583573818207, 0.9601927399635315, 0.21479685604572296, 0.2622189521789551, 0.49588000774383545, -0.3473994731903076, -1.3547550439834595, -0.32430705428123474, -0.7916646599769592, -0.9865075945854187, 0.23217976093292236, 1.4070487022399902, -0.800143837928772, -0.740135133266449, 0.357655793428421, 0.23347024619579315, 0.04187151789665222, 0.8363988399505615, 0.27484825253486633, -1.3341807126998901, 0.3575995862483978, -0.7168547511100769, 0.381187379360199, -0.13175496459007263, 0.30638810992240906, 0.30189216136932373, -0.09972210228443146, 0.500329852104187, -0.7557098865509033, -0.2626552879810333, -0.170701801776886, -0.25019583106040955, 0.1957530826330185, 0.06747576594352722, -0.05329698696732521, 0.4128822088241577, -0.049340467900037766, -1.0124484300613403, 0.24437794089317322, -0.5181971192359924, -0.1723678857088089, -0.33120498061180115, -0.2597879469394684, 0.7332221865653992, -0.21192912757396698, 0.3341095447540283, 1.2838242053985596, 0.7698757648468018, 0.42720136046409607, -1.2216318845748901, 0.20610663294792175, 0.24484187364578247, 1.1101195812225342, -0.2896896302700043, -0.9301734566688538, -0.0204915888607502, -0.2522144913673401, -0.0033223293721675873, -1.150891900062561, -0.2413095086812973, 0.2592506408691406, 0.32670730352401733, -0.9361575841903687, -0.5909484624862671, -0.5140408277511597, 0.04694833233952522, -0.3628634512424469, 0.211965873837471, 0.2776334881782532, -0.06582148373126984, 0.4807074964046478, 0.14248868823051453, 0.6730021834373474, -0.3329082131385803, 0.6459142565727234, -0.4602956771850586, 0.08772557973861694, 0.5204370617866516, -0.2611992657184601, -0.2386392056941986, 0.418204665184021, -0.9167437553405762, -0.40175461769104004, -1.3647537231445312, 0.3935006260871887, 1.5933810472488403, -0.9833102822303772, -1.1086087226867676, 0.24100801348686218, 0.4903292953968048, 0.8828364610671997, -0.32901009917259216, 0.8566601872444153, 0.4578436017036438, -0.2079334259033203, -0.8296441435813904, 1.349422812461853, 0.37438467144966125, -0.0792609378695488, -0.4156402349472046, 0.215787872672081, 0.05240270867943764, 0.6945217251777649, -0.34381404519081116, 0.1269785612821579, 0.5633035898208618, -0.8239840865135193, 0.26113376021385193, 0.33056148886680603, 0.061583369970321655, 1.4327210187911987, 0.6633485555648804, 0.15875352919101715, -0.048673372715711594, 0.041017256677150726, -1.121027946472168, -0.16403385996818542, 0.46596309542655945, 0.890024721622467, -0.9590277075767517, -0.01182048674672842, 0.2831173241138458, 0.2151486873626709, 0.41579216718673706, 1.078546166419983, -0.38556039333343506, 0.2819809913635254, -0.8758666515350342, 0.035103436559438705, -0.34031686186790466, 1.506999135017395, 1.4067047834396362, 0.2508769631385803, -0.09518489986658096, -0.23415659368038177, 0.7494279146194458, -0.5169573426246643, 0.25683143734931946, 0.5099920630455017, 0.731999933719635, 0.7300033569335938, -0.2533120810985565, 0.4212754964828491, 0.12966521084308624, -0.29855313897132874, 0.40220531821250916, 0.06699240207672119, 0.2126810997724533, -0.9659929275512695, 0.21631741523742676, 0.1922605335712433, 0.6409310698509216, 0.7351234555244446, -0.221589595079422, 0.09141941368579865, -0.08001775294542313, -0.8142358660697937, -0.028402427211403847, 0.19169379770755768, 1.118790626525879, -0.20629264414310455, -0.857412576675415, 0.3476100265979767, -0.04577383026480675, 0.7696987986564636, 2.1490869522094727, -0.7639845013618469, -1.3638089895248413, -0.23139020800590515, -0.7505563497543335, -0.1950095146894455, -0.9284441471099854, -0.1256314218044281, 0.19733014702796936, -0.2549787759780884, 0.17622505128383636, 0.08986054360866547, -0.9297212958335876, -0.6835724115371704, -1.0979981422424316, 0.48402470350265503, 0.8076899647712708, -0.5819312930107117, 1.0750994682312012, 0.30476823449134827, 0.11045125871896744, 1.2341327667236328, 0.296924889087677, -0.9420130848884583, -0.25027766823768616, 0.23075422644615173, 0.45167076587677, -0.2672966718673706, -0.042184967547655106, -0.314308226108551, 0.3780532479286194, -0.40950945019721985, -0.5654510855674744, -0.166591614484787, 1.083694338798523, 0.819664716720581, -0.5436603426933289, -0.6075674295425415, 0.908121645450592, -1.3827458620071411, 1.1992963552474976, 0.718854546546936, -1.2227457761764526, 0.7458063364028931, -0.6897067427635193, -2.0928566455841064, 1.2874618768692017, 0.4506949186325073, 0.4050905108451843, 1.4261339902877808, 0.8802462816238403, 0.05948669835925102, 1.0257481336593628, -0.11282545328140259, -0.4025545120239258, -0.20555007457733154, 0.44748005270957947, -1.4945307970046997, 0.8912542462348938, 1.8106180429458618, 0.47534215450286865, -0.49701905250549316, 0.6249334812164307, 0.7032354474067688, -0.15083934366703033, -0.03971463441848755, -0.21987445652484894, 0.16578486561775208, 0.8525235056877136, 0.06126568466424942, -0.2533535659313202, 0.6088864207267761, -0.7679145932197571, 0.29377713799476624, 0.9211841225624084, 1.0067576169967651, 0.441593736410141, 0.023758571594953537, -0.4986543655395508, 0.34943991899490356, -0.5037384033203125, 0.48942792415618896, 0.17912007868289948, 0.506393313407898, 0.3010372221469879, -0.275390625, -0.3596891462802887, -0.35743120312690735, -0.4819786548614502, -0.8116317987442017, 0.16729876399040222, 0.7381570339202881, -0.20146843791007996, -0.4701225757598877, -0.44304612278938293, -0.664495587348938, 0.10239937901496887, 0.769607663154602, 0.05103040859103203, -1.0970696210861206, -0.6509835720062256, 0.4175327718257904, 0.08443935960531235, 0.23401594161987305, 0.21806947886943817, 0.4158664047718048, -0.06582190841436386, -1.4921009540557861, 0.6662046909332275, 0.37182915210723877, -1.7853293418884277, -0.05214076489210129, -0.07562469691038132, 0.7415984869003296, 0.4027594327926636, 1.0140388011932373, -0.5698926448822021, 1.5308642387390137, -1.2284165620803833, -0.8873233199119568, -0.2704460918903351, -0.020197169855237007, 0.304820716381073, -0.12310396134853363, 0.4057183563709259, 0.26725631952285767, 0.1862560510635376, -0.21080027520656586, -0.18680405616760254, 0.36484095454216003, -1.3689024448394775, 0.09789424389600754, -0.781674325466156, 0.5370810627937317, -0.47532588243484497, 0.6883417963981628, 0.0828033983707428, 1.1813043355941772, -0.37481462955474854, 1.9035413265228271, -0.12574109435081482, -1.0005792379379272, -0.4508433938026428, 0.5700786709785461, -0.7353314161300659, -0.5689805746078491, -0.4955180883407593, -0.89431232213974, 0.3193117380142212, 0.07731104642152786, 0.2621358335018158, -0.34361574053764343, 0.17332591116428375, -0.05715493857860565, -0.014099566265940666, -0.9970501065254211, 0.44965529441833496, 0.5924243927001953, -1.9323303699493408, -0.002734158653765917, -0.0327339768409729, 0.5530233383178711, -0.9490167498588562, -0.1347111165523529, 1.3237192630767822, 1.2663159370422363, -0.19430023431777954, 0.5596639513969421, -0.4977478086948395, 1.1379022598266602, -0.6815384030342102, 0.5052469372749329, 0.09494943171739578, -0.045604899525642395, -0.7745842337608337, 0.21435463428497314, -0.33409783244132996, -0.479159414768219, -0.5513258576393127, -0.5271202921867371, 0.07437931001186371, 0.6425593495368958, 0.4602707326412201, 0.29764634370803833, 0.1519789695739746, 1.119896411895752, 0.33304500579833984, -0.2333916872739792, 1.204365849494934, -0.5769843459129333, -0.2813338339328766, 1.164792776107788, 1.205741047859192, -0.49372607469558716, -0.22187495231628418, 0.21329611539840698, -0.36463773250579834, 0.5351532697677612, 0.32738611102104187, -0.1696186363697052, -0.21255405247211456, 0.34562042355537415, -0.20609280467033386, -0.05993463099002838, -0.21631065011024475, -0.21058142185211182, -0.7207430005073547, 0.6684021949768066, -0.47925034165382385, 0.13760066032409668, -0.4485395550727844, -0.4726564884185791, -0.5107351541519165, -0.371932715177536, -0.3766736686229706, 0.5612375140190125, 0.5006357431411743, 0.28524449467658997, -0.8415365219116211, -0.6173771619796753, 0.7592878341674805, -0.7324415445327759, 1.030727744102478, 0.510242760181427, 0.2448296993970871, -1.1272889375686646, 0.7418997287750244, 0.16360127925872803, -0.4048728346824646, -0.13418053090572357, -1.7140536308288574, -0.6152080297470093, 0.14137235283851624, -0.4474159777164459, 0.9172172546386719, -0.021123744547367096, 1.151697039604187, 0.17965726554393768, -0.08325961232185364, -0.17779938876628876, -0.40922415256500244, -0.2921057641506195, -0.33330243825912476, -1.6258320808410645, -0.272255539894104, 0.30718687176704407, 0.8771895170211792, 0.9228496551513672, -0.6424562931060791, 0.07331462949514389, 0.62517249584198, -0.9346377849578857, -0.4539944529533386, -0.14989019930362701, 0.6371257901191711, 0.04057871922850609, -0.11474425345659256, -1.0764020681381226, -1.3911702632904053, 0.33154720067977905, -1.094980001449585, 0.047499194741249084, -0.48235857486724854, -0.9768320322036743, -0.17253488302230835, 0.05587070807814598, -0.1665315479040146, -0.3720601499080658, 0.15998448431491852, 0.8535434007644653, 0.6860135197639465, 0.24437955021858215, 0.43479228019714355, -0.507716953754425, 0.4205857217311859, 0.397358238697052, -0.1992068588733673, 0.8667399883270264, 0.42057666182518005, 1.5772043466567993, -0.2790394425392151, -1.0019900798797607, -0.001827790285460651, 0.43451830744743347, -0.3483763635158539, -0.04712885990738869, -1.0553516149520874, -0.5925674438476562, 0.560093104839325], [0.2716299891471863, 1.9378597736358643, -1.9707908630371094, -0.07027775794267654, 0.1018182709813118, 0.6830713152885437, 0.14081551134586334, 0.12874822318553925, -0.6393696069717407, -0.848108172416687, -0.5967137813568115, 0.06808449327945709, 0.018798483535647392, 0.4494878053665161, 0.4987258017063141, 1.3998603820800781, 1.2854030132293701, -0.06341433525085449, 0.19355757534503937, 0.7312001585960388, -0.5014523863792419, -1.1309441328048706, 0.06491797417402267, 0.19967271387577057, -0.33473843336105347, 0.023654606193304062, -1.457338571548462, -0.9047593474388123, -1.1282413005828857, -0.8519670367240906, 1.2536839246749878, 0.28106987476348877, 0.1395757645368576, -0.1558777540922165, -1.8707010746002197, -0.4782755970954895, 0.6304510831832886, 0.20354853570461273, -0.34717339277267456, 0.23611359298229218, 1.4023699760437012, 0.2850334346294403, -0.518805205821991, -1.7369582653045654, 1.1191848516464233, -0.002994721755385399, 0.6795684695243835, -0.7874767184257507, -0.03853783383965492, -0.9448371529579163, 0.8188810348510742, 0.0529063381254673, -0.04827991500496864, 0.5198966860771179, 1.2009358406066895, -0.7016285061836243, 0.251935213804245, 0.7152028679847717, 0.45565569400787354, 0.5181929469108582, 0.7654049396514893, -0.24820956587791443, 0.8794728517532349, 1.0183453559875488, 0.6456981897354126, -0.4455120861530304, 0.12711042165756226, 0.31790298223495483, -0.12184172868728638, -0.2273249477148056, 0.3631208539009094, 0.007603255100548267, -0.42413148283958435, -0.11539744585752487, -0.7213999629020691, 0.3948913812637329, 1.205801010131836, 0.49258777499198914, -0.2848481833934784, 0.031066378578543663, -0.889134407043457, 0.26312562823295593, 0.5804650783538818, 0.038804296404123306, -0.5120009779930115, -0.014045697636902332, 0.07208175212144852, -0.3308367133140564, -0.5651124119758606, 1.8764762878417969, 0.1787794828414917, 0.8353263735771179, 0.8659636378288269, -0.7884383201599121, -0.2999943196773529, -0.8751120567321777, 0.16958338022232056, -1.3622864484786987, -0.5228173732757568, -0.7447590231895447, -0.031763091683387756, -0.5271424055099487, 0.5234441757202148, 0.37338191270828247, 0.06832331418991089, 1.3013770580291748, 0.181487038731575, -0.7427215576171875, 0.26372894644737244, -0.11767417937517166, -0.36842578649520874, 0.04036611318588257, -1.3656911849975586, -1.1122597455978394, 0.019173547625541687, 1.4658316373825073, 1.8874608278274536, -0.062116291373968124, 0.2505062222480774, 0.7846857905387878, -0.7179259657859802, -0.4704720973968506, -0.5933560132980347, -0.21130609512329102, 1.1855597496032715, 0.16765107214450836, -0.6141304969787598, -0.15598635375499725, -0.021278884261846542, 0.3406537175178528, 1.1192609071731567, 0.4852631688117981, -0.12672409415245056, 0.9195183515548706, -0.41817107796669006, 1.473041296005249, -0.40524110198020935, -0.8779424428939819, -0.3202285170555115, 0.2905438542366028, 0.38863617181777954, -0.7213348150253296, -0.2532518804073334, -0.40079623460769653, -0.10412337630987167, -0.6371864080429077, 1.1790674924850464, -0.0419137142598629, -0.8154792189598083, 0.8593267202377319, -0.4892326593399048, -0.27885425090789795, 0.03198612853884697, 1.1678515672683716, 0.7961684465408325, -0.039734210819005966, 0.16452763974666595, 0.349168062210083, -0.10253918915987015, 0.16058748960494995, 1.0220868587493896, -0.3760681748390198, -0.6210490465164185, 0.031399328261613846, 0.7022969126701355, 0.24669261276721954, 0.9179385304450989, 0.8546888828277588, -0.03843645006418228, 0.7477677464485168, 0.16134725511074066, -0.5540549755096436, -0.5925832986831665, 1.181098222732544, 0.17095652222633362, -0.32519811391830444, 1.2020657062530518, -0.1599682867527008, -1.8598549365997314, -1.0063859224319458, 1.0346684455871582, -0.07579860091209412, 0.1919879913330078, -0.4378455877304077, 0.21724537014961243, -0.33280888199806213, 0.2839657962322235, -0.123445063829422, -1.1148293018341064, -1.4296313524246216, -0.18530254065990448, -0.46715834736824036, -1.1851660013198853, 0.5371993184089661, 0.15716001391410828, -1.0284885168075562, 0.4271625578403473, -0.2825576961040497, -0.6338146328926086, 0.44856929779052734, 0.5169180631637573, 0.017475347965955734, -1.0545259714126587, 0.059809207916259766, -0.4442700445652008, 0.4111751616001129, -0.9751678705215454, 0.5114967823028564, -0.9738864898681641, 0.1503743976354599, 1.0055372714996338, -0.5695411562919617, -1.348741054534912, 0.14949969947338104, 0.1499645859003067, -1.2692474126815796, 0.8377054333686829, 0.1453200876712799, -0.23652532696723938, 0.02887539751827717, 0.534411609172821, 0.19771932065486908, 0.1865837574005127, -0.0820332020521164, 0.5257711410522461, -0.11110147833824158, -0.5553139448165894, -1.603227138519287, -0.5503962635993958, -0.3000898063182831, -0.6942355632781982, -0.7683578133583069, 0.22159530222415924, 0.7276573777198792, -0.8265206217765808, 0.8080949783325195, -0.33989855647087097, -0.3205028474330902, -0.40688931941986084, 1.3494553565979004, 0.5111158490180969, 0.6475747227668762, -1.2834579944610596, -0.005991295445710421, -1.1565810441970825, -0.7383697032928467, 1.4202748537063599, -0.5926387906074524, 0.3647523820400238, 1.3777190446853638, 0.9796628952026367, -0.29511019587516785, 0.7284426689147949, 0.2566285729408264, -0.02225017361342907, -0.6415801048278809, -0.38612449169158936, -0.02313789166510105, -1.3781943321228027, 1.6932191848754883, 0.45381009578704834, -0.8487077355384827, 0.7379830479621887, -0.019500309601426125, -0.08524858951568604, -0.3352575898170471, -0.23026147484779358, -0.9215030074119568, 0.7089313864707947, -0.5085094571113586, -0.3241000771522522, 0.8221971988677979, 0.17146413028240204, 1.0206019878387451, -0.3413343131542206, -1.0280057191848755, -0.2557010352611542, 1.010788917541504, 0.2115633487701416, 0.8424239158630371, -0.40915125608444214, -0.9139524102210999, -0.7931910157203674, -0.23095804452896118, 1.0337070226669312, -0.2566666603088379, -0.6247161626815796, 0.9309271574020386, 0.6188156008720398, -0.39060866832733154, -0.10326913744211197, -0.009355323389172554, 0.1105865091085434, -0.3062174618244171, 0.06896747648715973, 0.33575838804244995, 0.8141629695892334, -0.6083991527557373, -0.7402823567390442, 0.18696050345897675, 0.5914597511291504, 1.244236707687378, 0.6770277619361877, 1.3851745128631592, -0.3103500008583069, 0.20144733786582947, -0.8418115377426147, 0.1339026540517807, -1.1102628707885742, -0.0543060377240181, -0.7063798308372498, -1.4684284925460815, 0.09512857347726822, -0.6890156865119934, 0.1848476082086563, 0.6853879690170288, 0.5110300183296204, 0.7925766110420227, 0.6093146800994873, -0.37653079628944397, -1.7041304111480713, -0.7272059321403503, -0.6241382360458374, -1.5058175325393677, 0.6691726446151733, 1.597350835800171, -1.2270936965942383, -0.3057643473148346, -0.049794942140579224, -0.4599135220050812, -0.023105086758732796, -0.20225682854652405, 0.5948153138160706, -1.4921083450317383, -0.8831988573074341, 0.11407860368490219, 1.7686976194381714, 0.4349656105041504, -0.3670571446418762, -0.749637246131897, 0.6894339919090271, 0.5065480470657349, 0.4805259108543396, -0.37876445055007935, 0.49446988105773926, -0.8059859871864319, 0.033620115369558334, 0.12046961486339569, 0.993886411190033, 0.2693963646888733, -0.5863215923309326, -1.187743902206421, -0.20080219209194183, -0.08474695682525635, -0.7498116493225098, 0.20393040776252747, -0.3549385368824005, 0.8983290791511536, -0.10842037200927734, 0.23802824318408966, 1.2241742610931396, -0.2217313051223755, -0.5399082899093628, -1.1659196615219116, 0.519301176071167, 0.7602221369743347, 1.4717692136764526, 1.107984185218811, 0.4559079110622406, 0.12130526453256607, -0.5158535838127136, 0.3438456356525421, 0.12409704178571701, 0.7616782188415527, 0.8168798089027405, -0.7259207367897034, -0.43162864446640015, -0.9964452385902405, 0.23676203191280365, 0.08273932337760925, -0.30083179473876953, 1.2160022258758545, -0.5992475748062134, -0.5700675249099731, 0.9347302317619324, 1.2245898246765137, -0.9500191807746887, -0.555553674697876, -0.1270681470632553, 0.674680233001709, -1.1604164838790894, 0.5604042410850525, -0.0068774232640862465, -0.6225007772445679, 0.26466965675354004, -0.9846709966659546, -0.9165198802947998, 0.19856242835521698, 0.6267994046211243, 1.08956778049469, -1.2184652090072632, 0.011715293861925602, -1.0655988454818726, 0.8585326075553894, 0.9236382842063904, 0.2308601438999176, 0.9162423014640808, 0.5515092611312866, -0.47231510281562805, 0.12762044370174408, 0.22013816237449646, 1.5391756296157837, -0.35652515292167664, -0.24011336266994476, -0.4090785086154938, -0.39318352937698364, -0.41814783215522766, -0.21701569855213165, -0.453444242477417, 0.26502808928489685, -0.6791994571685791, -0.07832609862089157, -0.341850221157074, -0.5610896348953247, 2.2088840007781982, -0.18123067915439606, -0.08046893775463104, -0.4693397879600525, 0.2081020325422287, -0.3350733518600464, 0.3202444911003113, 0.6167738437652588, -0.4487941563129425, -0.4294980466365814, -0.13348977267742157, 0.9217457175254822, 0.5809906125068665, -0.03416997939348221, 0.5213882327079773, 0.5880311131477356, 0.140165776014328, -0.0016507264226675034, 0.8439173698425293, 0.17215083539485931, 0.8691949248313904, 0.5144983530044556, 1.1269234418869019, -0.6351746320724487, -0.5245665907859802, 1.5004353523254395, -0.19428467750549316, 0.4070202708244324, -0.13629259169101715, 0.31804776191711426, 1.1261777877807617, -1.2129454612731934, -0.8382225632667542, 0.909561276435852, -0.8109909296035767, 0.032793596386909485, 0.39691343903541565, 0.4004902243614197, -1.2913391590118408, 0.3834388852119446, 0.16412398219108582, 0.033155657351017, 0.7528411746025085, -0.3971886932849884, 0.4182251989841461, 0.6805531978607178, -0.6633158326148987, 0.6142531037330627, -0.9875978231430054, 0.4738410413265228, -0.31073975563049316, -0.14277248084545135, 0.10208715498447418, 0.5780931115150452, 0.2870868146419525, 0.872564435005188, 0.006463420111685991, -1.0274819135665894, -0.10076936334371567, -1.0597469806671143, 0.44577717781066895, -1.171809434890747, 0.22219379246234894, -0.360612154006958, -0.3126806318759918, 0.22373110055923462, 0.5779585838317871, -0.5552456378936768, -0.7505347728729248, -1.0433597564697266, -0.7253741025924683, 1.2969942092895508, 0.3308974504470825, 0.6820834279060364, 0.36340975761413574, 1.0107864141464233, 0.7754538655281067, 0.07164782285690308, -0.49117669463157654, -0.04175736755132675, 0.1896294355392456, 0.32352471351623535, -0.6278379559516907, -0.3031497597694397, -0.19818761944770813, 0.20266634225845337, 0.9445635080337524, 0.6931564211845398, 0.3448824882507324, 0.44441989064216614, 1.4107434749603271, -0.5083453059196472, -0.5759080052375793, 0.05140167847275734, -0.32837268710136414, 0.4145607054233551, 0.4809052348136902, -1.3242555856704712, 0.1328694075345993, -0.7316083908081055, -1.691141963005066, 1.8342145681381226, 0.12271015346050262, 0.12733115255832672, 0.6074780225753784, 0.9126275181770325, -0.3099243938922882, 0.9530332684516907, 0.11575542390346527, 0.38002291321754456, -0.22291399538516998, -0.13911886513233185, -0.6802358627319336, -0.18411821126937866, 1.1938444375991821, -0.03250192105770111, -0.6849574446678162, 0.27303722500801086, -0.9277379512786865, 0.153151273727417, -0.9915623068809509, -0.2509545683860779, 0.8903512358665466, 0.8227643966674805, 0.839390218257904, -0.7083544135093689, 0.5978651642799377, -0.719525158405304, 0.31714314222335815, 0.3141489624977112, 0.5160397291183472, 0.3627317547798157, -0.5639669299125671, 0.511470377445221, -0.7788076996803284, 0.43693268299102783, 0.25969091057777405, -0.7344269752502441, 1.074629306793213, 0.8020516633987427, -0.4808347523212433, 1.2252857685089111, -0.36339953541755676, -0.36683908104896545, -0.8499307632446289, -0.3082652688026428, 1.1583349704742432, -1.1419957876205444, -1.1348549127578735, -0.25324100255966187, -0.67128586769104, -0.12333518266677856, 0.5298714637756348, -0.23443986475467682, -1.035166621208191, -0.9183358550071716, -0.27214688062667847, 0.5230721831321716, 0.2607749402523041, -0.7764040231704712, -0.028450530022382736, 0.1300881952047348, -0.9260928630828857, 0.06069780886173248, 0.5126834511756897, -1.546539545059204, -0.1152758002281189, -1.218195915222168, 0.5678155422210693, -0.3749036490917206, 0.4788326025009155, 0.04580904170870781, 0.9052317142486572, -1.202774167060852, -0.7006356716156006, -0.5604134798049927, -0.7368457317352295, 0.7251110076904297, 0.8389554619789124, -1.1071432828903198, 0.6532530188560486, -0.6915136575698853, -0.3959275484085083, -0.508527398109436, -0.4072655737400055, -0.4446215331554413, 0.5400794148445129, -0.13943055272102356, -0.07298161089420319, 0.572694718837738, 1.6180223226547241, 1.182674765586853, 1.4018263816833496, 0.07419035583734512, 1.361075520515442, -0.8119013905525208, -0.2985868453979492, -0.7033078670501709, 0.25306251645088196, -1.3017187118530273, -0.8616852760314941, 0.12619787454605103, -0.6602494716644287, -0.8874052166938782, 0.07807981967926025, 0.6988332271575928, -0.8429610729217529, 0.4365698993206024, 0.1241404339671135, 0.04404756799340248, -0.763018012046814, 0.3590603172779083, -0.008997812867164612, -0.9712598919868469, -0.013998571783304214, -0.11281754076480865, 0.2309168428182602, -0.8494380116462708, -0.79024338722229, 0.35412323474884033, 0.04957973212003708, -0.33293309807777405, -0.06124221533536911, 0.32329046726226807, 0.33290043473243713, -0.5328568816184998, 1.0727461576461792, 0.7995957732200623, -0.434301495552063, 0.23374295234680176, -0.1592419594526291, -0.16894342005252838, -0.23654645681381226, -0.6372815370559692, 0.38890284299850464, -0.7067145705223083, 0.8058156967163086, 0.15970061719417572, 0.15087267756462097, -0.15691576898097992, 0.5750005841255188, 0.2507108449935913, 0.675504207611084, 1.305929183959961, -0.7739053964614868, -0.8074561953544617, 1.243275761604309, 0.4952385425567627, -1.10185968875885, 0.44551074504852295, -0.025623686611652374, -0.584985613822937, 0.17021986842155457, 0.4341234564781189, 0.8353365063667297, -0.7133334279060364, 0.7164363861083984, 0.40922319889068604, -0.014269515872001648, -0.14256320893764496, -0.3998277187347412, -1.8025087118148804, -0.13378947973251343, -0.0016506239771842957, -0.13691522181034088, 0.6612281203269958, -1.0681606531143188, -0.9922338128089905, 0.3639048933982849, 0.39730215072631836, -0.3301078677177429, -0.8330240249633789, 0.5345970392227173, -0.44016000628471375, -0.10445767641067505, 0.6363768577575684, 0.49756184220314026, 1.3020325899124146, 0.2567007541656494, -0.0439789704978466, -0.7386801838874817, 0.11555293202400208, 0.8220387101173401, -0.05360759422183037, -0.1349267065525055, -0.34526127576828003, 0.4831487834453583, 0.21505571901798248, -0.19959671795368195, -0.1127350851893425, -0.6466765403747559, -0.12600445747375488, -0.3605845868587494, -0.26260343194007874, 0.3275968134403229, 0.13340705633163452, 0.8545044660568237, -0.7021461725234985, -0.9220292568206787, -0.8278347253799438, 0.1457248479127884, -0.30930471420288086, 0.9890583157539368, 0.27639949321746826, 0.8077155947685242, -0.29262399673461914, -0.6589390635490417, -0.23762832581996918, -0.7448197603225708, 0.4692325294017792, -0.0664660856127739, 0.4327560365200043, 0.0916377529501915, -0.41266798973083496, 0.45296958088874817, -1.2597250938415527, 0.001851685345172882, -0.33031195402145386, 0.2669964134693146, -0.4349677860736847, -0.9871876835823059, -0.7910919189453125, -1.0106581449508667, 0.1201682984828949, 0.48087450861930847, 0.7230570912361145, 0.5639845728874207, 0.5802404284477234, -1.18172025680542, -0.09919024258852005, 1.040894865989685, -0.5826483964920044, 0.17690257728099823, 1.707197666168213, 1.0076406002044678, 0.27496904134750366, -0.15624785423278809, 0.007129565812647343, 0.5420845746994019, -1.2832547426223755, -0.027694065123796463, -0.5951235890388489, -0.3255907893180847, -0.3425292372703552], [0.3334190249443054, 1.8408290147781372, -1.7979404926300049, -1.0414823293685913, -0.0005459459498524666, -0.525019109249115, 0.788112461566925, 0.43000704050064087, -0.29931339621543884, -0.7464616894721985, -0.8297680020332336, -0.05110343545675278, 0.9569726586341858, 0.7332573533058167, 0.27570533752441406, 0.5026518702507019, 0.7533797025680542, -0.04848892241716385, 0.525977611541748, 0.7833502292633057, 0.22960799932479858, -1.3379521369934082, 0.41296911239624023, -0.07858466356992722, 0.3269295394420624, 0.0916893258690834, -1.0493892431259155, -0.2139812409877777, -1.1370649337768555, -1.975278615951538, 1.2620567083358765, 0.6780591011047363, 0.353148490190506, -0.250324010848999, -1.5481624603271484, -0.9568122625350952, 0.5561535358428955, -0.019870754331350327, -0.7046836018562317, 0.8441654443740845, 1.626387357711792, -0.18227805197238922, -0.84536212682724, -0.8673904538154602, 0.9880071878433228, -0.5928212404251099, 0.3482338488101959, -1.026308298110962, -0.11169281601905823, -1.5293476581573486, 0.43981432914733887, 0.013859105296432972, -0.1110030859708786, 1.0700922012329102, 0.8185846209526062, -1.0068429708480835, 0.4436299204826355, 0.7890673875808716, -0.21025590598583221, 0.7342664003372192, 0.9070760607719421, -0.0031643109396100044, 0.43781009316444397, 0.7220231890678406, 0.09906399995088577, -0.2965361773967743, 0.9754064679145813, 0.5670037865638733, 0.26557981967926025, 0.8688219785690308, 0.7247104644775391, 0.2519421875476837, -0.35544899106025696, 0.18152198195457458, -0.15792639553546906, -0.37086164951324463, 0.22268171608448029, 0.6895763874053955, -0.3686327338218689, 1.4048519134521484, -0.35731351375579834, 0.09569796174764633, -0.23424562811851501, -0.3129187524318695, -0.13480645418167114, 0.037136662751436234, -0.4090626537799835, -0.5869958400726318, -0.36395445466041565, 1.5610076189041138, 0.13875561952590942, -0.08283808827400208, 0.46416378021240234, -0.43696874380111694, -0.5484653115272522, -0.9534568786621094, 0.4847048819065094, -0.7992455363273621, -0.37744107842445374, -0.716550886631012, -0.2244666963815689, -0.18269628286361694, 1.0616205930709839, 0.6256149411201477, 0.5619068145751953, 1.391194462776184, 0.9173288345336914, -1.3375493288040161, -0.4031594395637512, 0.2731170952320099, 0.04919165372848511, 0.10234884172677994, -0.8127318620681763, -0.9484732747077942, -0.4184790849685669, 0.9591607451438904, 0.872348427772522, -0.10375744849443436, 0.7142546772956848, 0.448207288980484, -0.34837085008621216, -0.9590675234794617, -0.7939853072166443, 0.08869931101799011, 1.5257829427719116, 0.15358582139015198, -0.6011655330657959, 0.17429614067077637, 0.34879299998283386, -0.6697434186935425, 0.12478100508451462, -0.0773129016160965, -0.5266097187995911, 0.6718327403068542, -0.22027496993541718, 1.3192543983459473, -0.603384792804718, -1.2165461778640747, 0.6867413520812988, -0.06728558987379074, -0.09145208448171616, -0.1544327735900879, -0.7366585731506348, -0.5907362103462219, 0.21450287103652954, -0.1655454933643341, 0.4694986641407013, -0.3651154339313507, -0.3592343330383301, 0.891446590423584, -1.3901019096374512, -0.027460282668471336, -0.4913928806781769, 1.215477705001831, 0.6593068838119507, 0.20699554681777954, 0.2187020480632782, -0.2905674874782562, 0.152180016040802, 0.5105965733528137, 0.821674108505249, 0.1589699387550354, -0.5862846970558167, 0.9540587067604065, 0.5800046920776367, 0.060503605753183365, 0.9108527302742004, 0.5402639508247375, -0.5899251103401184, 0.8024207353591919, -0.4708150625228882, -0.49137604236602783, -0.8620401620864868, 0.5452237725257874, 0.27581676840782166, -0.23625735938549042, 0.9776188731193542, -0.43904030323028564, -0.8533457517623901, -0.5645706057548523, 1.0053348541259766, -0.540411114692688, 0.011005629785358906, 0.21108968555927277, -0.030635757371783257, -0.26962125301361084, -1.0519312620162964, -0.7976141571998596, -0.5232551693916321, -0.8225666880607605, -0.9014574885368347, -0.2373083233833313, -0.9381224513053894, 1.0319855213165283, -0.7471194267272949, -0.5761736035346985, 0.5606555342674255, -0.4916374683380127, -0.5852291584014893, 0.3607737123966217, 0.32726967334747314, -0.20024478435516357, -1.5467092990875244, -0.23042240738868713, -0.36037421226501465, 0.6211014986038208, -0.12699317932128906, 0.2026478350162506, -0.7090694904327393, 0.23230886459350586, 1.4906560182571411, -0.3079495429992676, -1.1388450860977173, 0.12359768152236938, 0.17212940752506256, -1.2699898481369019, 0.013488790951669216, -0.16243956983089447, 0.1904277503490448, -0.01842084899544716, 0.1883544772863388, 0.27351030707359314, 0.4324115812778473, 0.132688507437706, 0.3740512430667877, -0.08062132447957993, -1.16128408908844, -0.23893548548221588, -0.33952999114990234, 0.32665199041366577, -0.6093334555625916, -0.9294437766075134, 0.6682776212692261, 0.6616576313972473, -0.7379767298698425, 0.5398364663124084, -0.98255854845047, 0.7408765554428101, 0.3169322609901428, 1.2120708227157593, 0.897260844707489, 0.11250606179237366, -0.510545015335083, -0.03120841644704342, -0.8230271935462952, -0.19210797548294067, 0.5982602834701538, -0.5928502082824707, -0.2713780105113983, 1.4202402830123901, 0.48989757895469666, -0.42080679535865784, 0.8574966192245483, -0.6170955896377563, -0.020356133580207825, -1.2503336668014526, 0.1678721308708191, -0.1652689129114151, -0.4691942632198334, 1.2651007175445557, 0.4195713400840759, -1.0650306940078735, -0.23149776458740234, -0.1538078337907791, 0.26798006892204285, -0.7828642129898071, -0.27922773361206055, -0.20710915327072144, 0.7598503232002258, -0.3037329614162445, 0.033991582691669464, -0.16946221888065338, -0.7045051455497742, 1.506610631942749, -0.20490719377994537, -0.23896357417106628, 0.13516999781131744, 1.2806780338287354, 0.009369014762341976, 0.9890422821044922, -0.6327876448631287, -1.9077056646347046, -1.4343730211257935, -0.6897619366645813, 1.3396273851394653, -0.06470201164484024, -0.537447988986969, 0.45061194896698, 1.4572458267211914, -0.4026890993118286, 0.8853451013565063, 0.1396840512752533, 0.04509836062788963, 0.17036984860897064, 0.4700714647769928, 0.12473580986261368, -0.02138872817158699, -0.5713522434234619, -0.8769077062606812, -0.2724195718765259, 0.5061737298965454, 0.8598513007164001, 0.963637113571167, 1.3420543670654297, -0.16154992580413818, 0.25544553995132446, -0.8304087519645691, 0.31659677624702454, -0.391448974609375, 0.2939918339252472, -0.17219439148902893, -0.9017881751060486, 0.09891753643751144, -0.21465995907783508, 0.2373959869146347, 0.4263359308242798, 0.4322851896286011, 0.603081226348877, 0.4939716160297394, -0.49586525559425354, -1.167167067527771, -0.7229800820350647, 0.1391892284154892, -1.261523723602295, 0.5371131896972656, 0.7881342172622681, -1.171246886253357, 0.12912395596504211, 0.13861185312271118, -0.2002180814743042, -0.004813791252672672, -0.08625553548336029, 0.4530782699584961, -0.9806379079818726, 0.44414815306663513, -0.455066978931427, 1.3492431640625, -0.38523781299591064, 0.06885406374931335, -0.4393778145313263, 0.7372402548789978, -0.09813010692596436, -0.006483287550508976, -0.21434342861175537, 0.4589484930038452, -0.3513546884059906, 0.1068413257598877, -0.06921211630105972, 0.1793527603149414, 1.0509285926818848, -0.3327091336250305, -0.6929826140403748, -0.869512140750885, -0.17440667748451233, -0.6474826335906982, 0.47003403306007385, 0.18161872029304504, 1.2636866569519043, -0.07340215891599655, -0.4094786047935486, 1.0838209390640259, -0.14040310680866241, 0.37008965015411377, -0.5315303206443787, 0.9968949556350708, 0.45172014832496643, 1.7377256155014038, 0.9021387100219727, -0.30513861775398254, 0.8281757831573486, -0.28314146399497986, -0.09104147553443909, -0.2916043698787689, 0.4617859125137329, 0.240465447306633, -0.14339424669742584, -0.5371282696723938, 0.13809774816036224, 0.2770281732082367, -0.4798796474933624, -0.5218200087547302, 0.9742332100868225, 0.10566453635692596, -0.33467593789100647, 1.098660945892334, -0.0808434933423996, -0.15396752953529358, -0.28623390197753906, 0.03582196682691574, 0.1325995922088623, -0.519382119178772, -0.14649955928325653, -0.16460877656936646, -0.6149947643280029, 0.3100724220275879, -0.2749706208705902, -0.840979814529419, -0.46227535605430603, 0.4358566105365753, 1.3398823738098145, -1.4147896766662598, -0.6241315007209778, -0.3040822446346283, 0.6157984733581543, 0.9258010387420654, 0.2085428684949875, 0.9856663942337036, 0.22262482345104218, -0.5437940955162048, 0.34381169080734253, 0.613315224647522, 1.3880127668380737, -0.24271897971630096, -0.26816585659980774, -0.20336902141571045, -0.37813395261764526, 0.23016402125358582, -0.6448761224746704, -0.9747448563575745, 0.0745922103524208, -0.7629749774932861, -0.05607791990041733, 0.5468653440475464, -0.42479580640792847, 1.4591026306152344, -0.4108589291572571, 0.011607213877141476, 0.11941961199045181, 0.20593443512916565, -1.010233998298645, -0.19990554451942444, 0.06775856763124466, -0.04346640408039093, -0.2712154686450958, 0.37436798214912415, 0.3491038382053375, 0.6998201608657837, 0.6110222339630127, 0.45932939648628235, 0.48814070224761963, 0.39439892768859863, -0.23154713213443756, 0.5252939462661743, 0.5219303369522095, 0.8040488958358765, 0.6714391112327576, 1.5689235925674438, 0.12739169597625732, -0.9550977945327759, 1.02920401096344, -0.18527504801750183, 0.5807302594184875, 0.5595016479492188, -0.02852565050125122, 1.3262183666229248, -1.0094094276428223, 0.17043879628181458, 1.1232670545578003, -0.5255648493766785, 0.3356458246707916, 0.2915107309818268, -0.189676433801651, -1.4129632711410522, -0.3202202618122101, 0.38378024101257324, -0.4892844557762146, 1.2958136796951294, -0.005693260580301285, 0.2891349196434021, 0.8270397782325745, -0.34834668040275574, 0.1375192552804947, -1.2076377868652344, -0.03429390490055084, 0.22108829021453857, 0.03862982988357544, 0.41920047998428345, 0.8931464552879333, 0.9114581346511841, 1.0911166667938232, -0.7979124188423157, -1.6450570821762085, 0.09966258704662323, -0.8524611592292786, 0.25424033403396606, -0.39171746373176575, -0.4867793023586273, -0.7291246056556702, -1.0899276733398438, 0.02675705775618553, -0.7611295580863953, -1.0538588762283325, -0.30464741587638855, -0.12756124138832092, -1.338943600654602, 0.326220840215683, -1.0604877471923828, 0.9495723247528076, 0.46185946464538574, 0.4338623285293579, 0.6686052680015564, 0.013450216501951218, -0.8033345341682434, 0.23884259164333344, 0.06029147654771805, 0.3643161952495575, 0.21165594458580017, -0.3489760756492615, -0.6528406739234924, 0.6166228652000427, 1.148749589920044, 0.21280571818351746, 0.08631888031959534, 0.35418668389320374, 1.7563576698303223, -0.7949938774108887, -0.5939011573791504, 0.6236463189125061, -0.7717180252075195, 0.627616822719574, 0.1836841106414795, -0.9955337643623352, 0.3927219808101654, -0.033127423375844955, -2.1204397678375244, 1.3326705694198608, 0.185487300157547, 0.04937593638896942, 0.5896927714347839, 0.46856629848480225, 0.2241402268409729, 0.6768608689308167, -0.6089712381362915, -0.42715075612068176, 0.2960273325443268, -0.47854915261268616, -0.7901099324226379, 0.7189560532569885, 1.2428526878356934, 0.15394318103790283, -0.8506629467010498, 0.44966521859169006, -0.27765533328056335, -0.13860727846622467, -0.31668421626091003, -0.12699690461158752, 0.8626516461372375, 0.44464316964149475, 0.36496707797050476, -1.0833133459091187, 0.44601526856422424, -0.859551191329956, 0.43109798431396484, 0.34030917286872864, 0.7171826958656311, 0.7410513162612915, -0.27084723114967346, 0.3458555042743683, -0.08960143476724625, -0.5700292587280273, -0.5087192058563232, -1.190165400505066, 0.8803419470787048, -0.33439117670059204, -0.3453204333782196, 0.022586174309253693, -0.46139732003211975, -0.2042292356491089, -0.39730241894721985, 0.8533762693405151, 0.48416996002197266, -1.1262825727462769, -0.6987108588218689, 0.04481135308742523, -0.7613378763198853, 0.08280592411756516, 0.7270792126655579, -0.22613009810447693, -0.9892118573188782, -1.0925344228744507, -0.02368774265050888, -0.09013360738754272, 0.7447690367698669, -0.28246578574180603, 0.15338487923145294, -0.30900081992149353, -1.6540799140930176, 0.629689633846283, -0.13894446194171906, -1.449448585510254, -0.41751375794410706, -0.885201632976532, 0.7016091346740723, -0.018811339512467384, -0.054202623665332794, 0.24931202828884125, 1.2760188579559326, -0.6024713516235352, -0.705411970615387, -0.5457589626312256, -0.5097823143005371, 0.292622447013855, 1.4885588884353638, -0.9207865595817566, 0.7567400932312012, 0.15988881886005402, -0.6070716381072998, -0.19975319504737854, -0.3033539354801178, -1.070908546447754, 0.21549883484840393, 0.25634369254112244, -0.18603576719760895, 0.6113758683204651, 1.4566577672958374, 0.20461174845695496, 1.1249700784683228, 0.7127373814582825, 2.014984130859375, -0.6691578030586243, -0.8283072710037231, -0.6029520034790039, 0.790681004524231, -0.7224436402320862, -0.743356466293335, -0.39183303713798523, -0.5752395391464233, -0.19024010002613068, 0.10977593064308167, 0.8628540635108948, -0.702957808971405, 0.5862231254577637, 0.27618664503097534, -0.733273983001709, -1.197922706604004, 0.8245530128479004, 0.6291692852973938, -1.556523323059082, 0.05837653577327728, 0.21825604140758514, 0.41612058877944946, -0.9598617553710938, -0.05650228634476662, 0.8132143020629883, 0.26848098635673523, 0.4492444694042206, 0.2694215178489685, -0.1072075366973877, 0.44336235523223877, -0.45743343234062195, 0.8327332735061646, 1.115692138671875, -0.28813958168029785, 0.14331048727035522, 0.9617640972137451, 0.17164264619350433, 0.2066143900156021, 0.13401299715042114, -0.8979818224906921, -0.48891931772232056, 0.7731665968894958, -0.10709120333194733, 0.16359838843345642, -0.5800333023071289, 0.873321533203125, 0.62840735912323, 0.27348044514656067, 1.3234843015670776, -0.3702090084552765, -0.7780998945236206, 0.5798372626304626, 0.8008397221565247, -0.5657570362091064, 0.2557336986064911, 0.2153017222881317, 0.5931148529052734, 0.22527408599853516, 0.5508748292922974, 0.4485268294811249, -0.3666287362575531, 0.7281222343444824, 0.40086451172828674, -1.1079427003860474, -0.27694958448410034, -0.5019690990447998, -1.5397357940673828, -0.4437902271747589, 0.09135741740465164, -0.9344077706336975, 0.41032469272613525, -0.7724291086196899, -0.771501362323761, -0.5238510370254517, -0.9449048638343811, 0.0708952397108078, -1.049998164176941, 0.25767961144447327, -0.965663731098175, -0.11798490583896637, 1.09619140625, -0.11467470228672028, 1.2920303344726562, 0.15067540109157562, -0.10964661836624146, 0.1623939573764801, 0.16630922257900238, 0.20676735043525696, -0.04641595110297203, -0.13139714300632477, -1.117010474205017, -0.10543052852153778, -0.4280325174331665, -0.42751386761665344, 0.6148802638053894, -0.5252954959869385, 0.2944365441799164, -0.2596719264984131, -0.12172320485115051, 0.17133623361587524, 0.049441032111644745, 0.47167521715164185, -0.5198290944099426, -0.9780421853065491, -0.31241700053215027, -0.07028871774673462, 0.39872896671295166, 0.8255195021629333, -0.37257739901542664, 0.8913904428482056, 0.0704863891005516, -0.4536049962043762, -0.5250786542892456, -0.5418992042541504, 0.7239956855773926, -0.326462984085083, -0.0823444128036499, -0.6208831071853638, -0.8998677134513855, -0.0524057112634182, -1.3421300649642944, -0.06822162121534348, -0.9606426954269409, -0.8673550486564636, -0.027454480528831482, -0.5077983140945435, -1.0866841077804565, -0.5489548444747925, 0.0004555918276309967, 0.37514159083366394, 0.14662882685661316, 0.45993292331695557, -0.3610151410102844, -0.4524039030075073, 0.09365793317556381, 0.762836754322052, 0.7039995193481445, 0.6744648218154907, 1.5124931335449219, 1.6636027097702026, 0.8981133103370667, -0.41268399357795715, 0.015654172748327255, 0.33548641204833984, -0.8720369338989258, -0.4062229096889496, -1.0124763250350952, 0.046117428690195084, 0.3962322771549225], [0.18413449823856354, 2.0837111473083496, -1.7279754877090454, -0.1171262338757515, 0.4953274428844452, 0.30922743678092957, 1.1506788730621338, 0.04109163209795952, 0.006524684838950634, -1.2793583869934082, -0.7456907629966736, 0.35674723982810974, 0.3744751214981079, 0.6219109892845154, 0.20853666961193085, 1.2353953123092651, 0.8602384328842163, 0.1314619779586792, -0.011568216606974602, 0.6846189498901367, 0.14034435153007507, -1.7445895671844482, 0.3121461868286133, -0.3654906153678894, -0.14541397988796234, -0.32416942715644836, -1.3600478172302246, -0.21130944788455963, -1.4288575649261475, -0.3468471169471741, 1.209473729133606, -0.13708028197288513, 0.16035443544387817, 0.19332483410835266, -1.910096287727356, -0.08002263307571411, 0.6067988872528076, -0.1390359103679657, 0.7875328063964844, 0.6649031639099121, 1.357032299041748, -0.3154314160346985, -0.3137621283531189, -0.9274731874465942, 1.019275426864624, -0.4377083480358124, 0.8995318412780762, -0.9391233921051025, 0.061274491250514984, -1.2754216194152832, 0.8052161335945129, -0.09526826441287994, -0.12908504903316498, 1.266790747642517, 1.5315735340118408, -1.6500130891799927, 0.5707104802131653, 0.3458419740200043, -0.21084722876548767, 0.576653778553009, 0.6840120553970337, 0.9073731899261475, 1.0789028406143188, 1.1846879720687866, 0.4342220723628998, -0.19788506627082825, 0.10817424952983856, -0.19881153106689453, 0.44511720538139343, 0.6480082273483276, 0.4192187190055847, 0.23001240193843842, -0.2479216456413269, 0.3304380476474762, -0.27768686413764954, 0.9536049962043762, 0.5238373279571533, 0.1867009699344635, -0.5403819680213928, 1.0273534059524536, 0.3561916947364807, -0.04321634769439697, -0.41357260942459106, -0.23415029048919678, -0.3660060167312622, -0.18032674491405487, 0.45477408170700073, -0.42505770921707153, -0.8769945502281189, 1.60139000415802, 0.1806415617465973, 0.2372138798236847, 0.20662976801395416, -0.169538214802742, -0.06697457283735275, -0.9998188614845276, -0.24056841433048248, -0.4978923797607422, -0.020016444846987724, 0.06201544404029846, -0.5515591502189636, -0.655975878238678, -0.3804985582828522, 0.7854217290878296, 0.8255688548088074, 1.169260025024414, -0.10719900578260422, -0.9722893834114075, -0.1332821249961853, 0.3167910575866699, -0.12646150588989258, -0.37941774725914, -0.7631214261054993, -1.1016343832015991, -0.3863660395145416, 1.4259670972824097, 1.0355414152145386, -0.012689891271293163, 0.639690637588501, 0.8093799352645874, -0.3854685425758362, -1.0261768102645874, -0.5955295562744141, -0.4038293659687042, 1.400387167930603, 0.489761084318161, -0.848315954208374, -0.15015222132205963, -0.2813178598880768, 0.04925618693232536, 0.517798662185669, -0.09323276579380035, -0.3280741572380066, 0.5530639290809631, -0.6436508893966675, 1.4494905471801758, -0.6874962449073792, -1.025863528251648, 0.4364235997200012, 0.17623840272426605, 0.632725715637207, 0.10775774717330933, -0.6553841829299927, -0.6299934387207031, 0.25794148445129395, -0.11343885213136673, -0.05862511321902275, -0.12969328463077545, -0.5071772933006287, 0.5683485865592957, -1.8576958179473877, 0.6033258438110352, 0.19155742228031158, 1.2644362449645996, 0.7645273208618164, -0.931571900844574, 0.06728431582450867, 0.20781543850898743, 0.09299518913030624, -0.2512337565422058, 0.7857160568237305, -0.008542587980628014, -0.4316943883895874, 0.6286205053329468, 0.4225371479988098, -0.4701515734195709, 0.3408922851085663, 0.33663010597229004, -0.006360780447721481, 0.8550477027893066, -0.28760820627212524, -0.21657627820968628, -0.5290160179138184, 0.16677866876125336, 0.013586228713393211, -0.8125803470611572, 0.693678617477417, 0.25852206349372864, -1.1526525020599365, -1.101862907409668, 1.137142539024353, -0.4050225615501404, -0.025422554463148117, 0.03429937735199928, -0.12605471909046173, 0.09868774563074112, -0.28782153129577637, -0.12602360546588898, -0.8835120797157288, -0.8668452501296997, -0.18717272579669952, -0.6683947443962097, -0.9419469237327576, 0.7848024964332581, -0.8025608062744141, -0.8446221351623535, 0.5072183609008789, 0.05937228724360466, -0.3588467836380005, -0.1404784470796585, -0.20850929617881775, -0.5300373435020447, -1.2602779865264893, -0.02522519789636135, -0.2707577049732208, 0.4630768895149231, -0.08451381325721741, -0.1060059517621994, -0.4655739963054657, -0.042532000690698624, 0.6372015476226807, -0.372590571641922, -1.3316594362258911, 0.007095403037965298, -0.130097895860672, -1.3400648832321167, 0.09468820691108704, -0.2440546452999115, -0.5382346510887146, 0.08184270560741425, 0.61396324634552, -0.11746512353420258, 1.0034937858581543, -0.14070847630500793, 0.8326869606971741, -0.5652668476104736, -0.6953075528144836, -0.47815626859664917, -0.3182532787322998, 0.1946299523115158, -0.11784950643777847, -0.6645117402076721, 0.6869974732398987, 0.42622196674346924, -0.18245156109333038, 0.8966456651687622, -0.331574410200119, 0.42428064346313477, 0.24126258492469788, 0.8012380599975586, 0.7001830339431763, 0.15512514114379883, -0.9523499011993408, -0.5593985319137573, -0.5929757952690125, -0.6288846731185913, 0.22011002898216248, -0.10544996708631516, -0.30498504638671875, 1.2616407871246338, 1.1858892440795898, -0.45450910925865173, 0.7317366600036621, -0.6159157156944275, 0.06483792513608932, -0.8954948782920837, -0.05493911728262901, 0.07574496418237686, -0.5309841632843018, 0.9794313311576843, 0.21955791115760803, -1.0629839897155762, -0.009679947048425674, -0.5863623023033142, 0.3286862373352051, -0.7326334118843079, -0.29306715726852417, -0.9709829688072205, 0.8193783760070801, -0.5022976398468018, 0.006192801520228386, -0.5397099256515503, -0.7737376093864441, 0.7158889770507812, -0.03472251445055008, -0.3514823913574219, 0.07121795415878296, 1.462058424949646, 0.06310868263244629, 0.9042552709579468, -0.49171000719070435, -1.6919968128204346, -1.0376852750778198, 0.24298644065856934, 0.8481622338294983, -0.01950981840491295, -0.648128092288971, 0.3828018605709076, 0.8918812274932861, -0.472980797290802, 0.7920774817466736, 0.2833281457424164, 0.12451616674661636, -0.11147486418485641, 0.3077766001224518, -0.2824689745903015, 0.27581125497817993, -0.5435287952423096, -0.7812063694000244, -0.1968730241060257, 0.2758351266384125, 1.004928469657898, 1.0776230096817017, 0.76332026720047, -0.102704256772995, -0.32564449310302734, -0.6968367099761963, 0.22947773337364197, -0.867864727973938, -0.3842129707336426, -0.1377880722284317, -1.0368766784667969, 0.13530635833740234, -0.32338130474090576, -0.04790221154689789, 0.9660369157791138, -0.1168166771531105, 0.10769058018922806, 0.837171196937561, -0.07751597464084625, -0.9649884700775146, -0.36142590641975403, -0.5789679884910583, -0.9306766390800476, 0.6290889382362366, 1.1162047386169434, -0.9115285873413086, 0.2681005001068115, 0.8792864084243774, 0.18364006280899048, -0.4262498915195465, -0.40941929817199707, -0.0374448224902153, -0.9099858403205872, -0.06680111587047577, -0.6908400058746338, 1.4825773239135742, 0.06930190324783325, 0.09108806401491165, -0.1666228324174881, 0.28436505794525146, 0.46384546160697937, -0.48133230209350586, -0.5018265843391418, -0.26205500960350037, -0.7275223135948181, -0.412771999835968, -0.17586718499660492, 0.5230540633201599, 0.34240978956222534, -0.3716873824596405, -0.964122474193573, -0.28394636511802673, -0.15671345591545105, -1.0083223581314087, 0.13390608131885529, -0.005493019707500935, 1.1297712326049805, -0.449228435754776, 0.30173972249031067, 0.7828348875045776, 0.30518588423728943, 0.6403894424438477, -0.8102409839630127, 0.31844592094421387, 0.8270749449729919, 1.6515947580337524, 0.5772270560264587, -0.08088432252407074, 0.2297600656747818, -0.5263319611549377, -0.43246889114379883, -0.11700708419084549, 1.082115888595581, -0.1937841773033142, -0.19310855865478516, -0.049087975174188614, -0.3614826500415802, 0.33963990211486816, -0.2568426728248596, 0.008933963254094124, 0.5289790630340576, -0.1816297471523285, -0.5096023678779602, 0.9675421714782715, -0.008548465557396412, -0.3297409117221832, -0.6095813512802124, -0.01866002380847931, 0.31273353099823, -0.40135741233825684, 0.7106982469558716, -0.512197732925415, -0.3239845335483551, 0.507537305355072, -0.4116279184818268, -0.4716081917285919, -0.4169504940509796, 0.6782286167144775, 0.8706382513046265, -1.1036440134048462, -0.25390011072158813, -0.5986507534980774, 0.49076205492019653, 0.8188298344612122, -0.30048879981040955, 0.8008508682250977, 0.44784289598464966, -0.6986345648765564, -0.40244483947753906, 0.3306504487991333, 1.0532883405685425, 0.31234249472618103, 0.06857677549123764, -0.10557352751493454, -0.8010270595550537, 0.5008152723312378, -0.81816166639328, -0.23795980215072632, 0.11895403265953064, 0.0026986245065927505, 0.3480057418346405, 0.5488244295120239, -0.36835145950317383, 1.783774733543396, 0.20631419122219086, -0.13253240287303925, 0.23081684112548828, -0.5160272717475891, -0.8242990970611572, 0.15369047224521637, 0.7126886248588562, -0.5905448198318481, -0.8343626260757446, -0.18917274475097656, 0.43990346789360046, 1.0673009157180786, 0.6870261430740356, 0.587743878364563, 0.3980318605899811, 0.7618839740753174, 0.11810826510190964, 0.4575839638710022, 0.15572865307331085, 1.1872599124908447, 0.4912453591823578, 1.2762115001678467, -0.2645959258079529, -0.7931103110313416, 1.0155924558639526, -0.4728258550167084, 0.17932702600955963, 0.7318230867385864, 0.1642848700284958, 1.2106800079345703, -1.0640031099319458, -0.4051268994808197, 0.39720776677131653, 0.002279209438711405, 0.7901731133460999, 0.03503241017460823, -0.3896150290966034, -1.239853024482727, 0.13117052614688873, 0.43243393301963806, 0.11841847747564316, 0.3065840005874634, -0.26561757922172546, 0.5595422387123108, 0.37243473529815674, -1.0819283723831177, 0.29678377509117126, -0.9021772742271423, 0.1836216002702713, -0.40392985939979553, 0.4117308557033539, 0.9546284079551697, 0.10563160479068756, 0.8457822203636169, 1.4509859085083008, -0.3529362082481384, -1.0225228071212769, 0.10381321609020233, -1.3390883207321167, 0.6344645619392395, -0.45365482568740845, -0.3580837547779083, -0.47764208912849426, -0.7182601690292358, 0.2111855149269104, 0.16885261237621307, -0.9644832015037537, -0.20744812488555908, -0.17496901750564575, -0.9312297701835632, 0.5770099759101868, 0.09698209911584854, 1.011259913444519, 0.31770530343055725, 0.14284542202949524, 0.24462683498859406, 0.4635041654109955, -1.1193788051605225, 0.32646650075912476, 0.034283347427845, 0.47367382049560547, -0.2215823084115982, -0.6810360550880432, -0.7584416270256042, 0.36537158489227295, 0.8741426467895508, -0.29021185636520386, -0.08619687706232071, 0.7768738269805908, 1.3221274614334106, -0.4842596650123596, -0.2594165802001953, 0.3615171015262604, -1.1280286312103271, 0.8819877505302429, 0.5255786776542664, -1.0143351554870605, 0.46327123045921326, -0.7663809061050415, -1.5902996063232422, 1.5801615715026855, 0.20652247965335846, -0.10312927514314651, 0.8039422631263733, 0.7120165824890137, 0.3029378354549408, 0.9684257507324219, -0.514150857925415, -0.3775028884410858, -0.10976249724626541, 0.24158473312854767, -0.8164911866188049, 0.5950050354003906, 0.7599491477012634, -0.16887328028678894, -0.7494069337844849, 0.05728629231452942, 0.12311244755983353, -0.2877057194709778, -0.5654552578926086, 0.16981391608715057, 0.33605140447616577, 0.9860542416572571, 0.6246710419654846, -0.8074834942817688, 0.8141096830368042, -0.6077095866203308, 0.13660597801208496, 0.6412394046783447, 0.8843047022819519, 0.4438413977622986, -0.17249460518360138, 0.18304239213466644, -0.2927381992340088, -0.6619570851325989, 0.1541827917098999, -0.5731401443481445, 0.5588854551315308, 0.3337499499320984, 0.31600648164749146, 0.7462021708488464, -0.2370055913925171, 0.4137190580368042, -1.066085934638977, 0.3866969048976898, 0.8041581511497498, -0.5658154487609863, -0.5809851288795471, 0.5057829022407532, -0.2938539385795593, 0.030743911862373352, 0.4222317636013031, 0.12090890854597092, -0.8875133991241455, -0.7912155389785767, -0.07346071302890778, -0.7477782964706421, 1.1707788705825806, 0.15333183109760284, 0.31553441286087036, 0.16865114867687225, -1.204569697380066, 0.002829190343618393, 0.17628179490566254, -1.3960824012756348, -0.1795666515827179, -0.4656197428703308, 0.7054967880249023, 0.13291510939598083, 0.1299467831850052, -0.3066157102584839, 0.9761195778846741, -1.3035811185836792, -1.1637600660324097, -0.6822076439857483, -0.7237228155136108, -0.22506245970726013, 0.636198103427887, -0.8605067133903503, 0.7396516799926758, 0.43358370661735535, -0.22547058761119843, -0.16079920530319214, -0.29158949851989746, -1.0331963300704956, -0.590613067150116, 0.5848291516304016, 0.2502855360507965, 0.07922215014696121, 1.3532466888427734, 0.8031255602836609, 1.3476215600967407, 0.24210968613624573, 1.6388550996780396, -1.181013822555542, -0.5384974479675293, -0.5148515701293945, 0.6991098523139954, -0.7837138772010803, -1.206663727760315, -0.2312411516904831, -0.502143919467926, -0.48938634991645813, 0.4430130422115326, 1.2306698560714722, -0.7986428737640381, 0.6761325001716614, -0.12312053143978119, 0.17742373049259186, -0.9779825806617737, -0.030750229954719543, 0.1659509539604187, -0.6692100167274475, 1.0410960912704468, -0.027703722938895226, 0.2213350385427475, -0.8229067325592041, -0.4332754611968994, 0.8090190291404724, 0.541248619556427, -0.20968462526798248, 0.2696194350719452, -0.17670540511608124, 0.4951423406600952, -0.6163159012794495, 0.8804547190666199, 0.8002037405967712, 0.0036833900958299637, -0.1413266807794571, -0.033644065260887146, 0.12405356764793396, -0.15584413707256317, -0.3318976163864136, -0.6612457036972046, -0.37960219383239746, 0.18700864911079407, 0.32368919253349304, 0.47630056738853455, -0.16133305430412292, 0.2962842583656311, 0.31581562757492065, -0.047634322196245193, 1.5275609493255615, -0.8070898652076721, -0.4529404938220978, 0.5293792486190796, 0.6393297910690308, -1.0703204870224, 0.24553550779819489, 0.1977846324443817, -0.09798943996429443, 0.0628216490149498, 0.48490095138549805, 0.7091331481933594, -0.40003398060798645, 0.6107430458068848, 0.7651112675666809, -0.7003350853919983, -0.2505730390548706, -0.5210883617401123, -1.1476138830184937, -0.7357118725776672, 0.24831125140190125, -0.6125386357307434, -0.13314737379550934, -0.7190897464752197, -0.6117159128189087, 0.49098703265190125, -1.1600561141967773, -0.33803385496139526, -0.41993415355682373, 1.0048599243164062, -0.45944055914878845, 0.08435092121362686, 1.2054495811462402, -0.365860253572464, 1.0414783954620361, 0.1735837608575821, -0.24169491231441498, -1.1231015920639038, 0.1086471676826477, 0.3341907858848572, 0.0306796133518219, -0.24694758653640747, -1.4780402183532715, 0.02572154998779297, -0.32419365644454956, -0.1191190630197525, 0.07200095802545547, -0.26638832688331604, 0.2590242922306061, -0.011085357517004013, 0.23582491278648376, 0.25112128257751465, 0.5252425074577332, 0.553394615650177, -0.27696067094802856, -0.7066131830215454, -1.083036184310913, 0.19953113794326782, 0.06293555349111557, 0.7852232456207275, -0.8702709674835205, 0.4322575628757477, 0.12317696958780289, -0.17979128658771515, -0.13966281712055206, -0.4780198335647583, 0.548247218132019, -0.09942518174648285, -0.3125847280025482, -0.5571905970573425, 0.007047010585665703, -0.12960106134414673, -1.1995091438293457, -0.06169801577925682, 0.18725599348545074, -1.0008161067962646, -0.34097009897232056, -0.5508144497871399, -0.2844441533088684, -0.6748561859130859, -0.25039708614349365, -0.09337827563285828, 0.28086423873901367, 0.8619155883789062, -0.17231053113937378, -0.6541967988014221, 0.43608230352401733, 0.9305602312088013, -0.12852349877357483, 0.49542906880378723, 1.2381895780563354, 0.763287365436554, 0.34933042526245117, -0.4294831156730652, 0.21176278591156006, 0.06819228082895279, -0.779544472694397, -0.23920834064483643, -0.6496886610984802, -0.23473861813545227, 0.2173353135585785], [0.3021467626094818, 1.9633523225784302, -2.0445563793182373, -1.2021766901016235, 0.6938896179199219, -0.4538392424583435, 0.40055009722709656, 0.8014158606529236, 0.4037812650203705, -1.7208824157714844, -1.3325750827789307, 0.7549015283584595, 0.7355369329452515, 0.9548215866088867, 0.6821091771125793, 0.3579995930194855, 0.22174210846424103, -0.4165399968624115, 0.025661297142505646, 0.8047227263450623, -0.5155569911003113, -0.8585100173950195, -0.3403884470462799, -0.08883291482925415, 0.264145165681839, 0.14154213666915894, -1.0251749753952026, -0.24564512073993683, -1.0589382648468018, -1.4703625440597534, 0.7790341973304749, -0.6036717295646667, -0.9040741324424744, -0.22433066368103027, -1.8574076890945435, -0.566709578037262, 0.38273951411247253, -0.6251186728477478, -0.6959023475646973, 0.9605209231376648, 1.985709547996521, 0.3995995819568634, -0.37579306960105896, -0.950604259967804, 0.4085536599159241, -0.7209981083869934, -0.03595421090722084, -0.7029237151145935, -0.43528977036476135, -1.385627269744873, 0.3919846713542938, -0.21248547732830048, -0.05203146114945412, 0.8050632476806641, 1.030395269393921, -0.5213307738304138, -0.0016479343175888062, 0.4177958071231842, -0.1599545180797577, 0.1977228820323944, 1.0701215267181396, 0.41664600372314453, -0.4330447316169739, -0.041415985673666, 0.05154147371649742, 0.5986395478248596, -0.28544607758522034, 1.1602729558944702, -0.2756196856498718, -0.15347565710544586, 0.32824981212615967, 0.4766392409801483, -0.1978253871202469, 0.002019330859184265, -0.623022735118866, -0.13551712036132812, 0.9498725533485413, 0.09900517761707306, 0.036509640514850616, 0.9451425075531006, -0.5992634296417236, 0.18711674213409424, -0.2939343750476837, -0.41227996349334717, 0.2896680533885956, -0.041787005960941315, -0.16869865357875824, 0.1547083854675293, -1.0991997718811035, 1.3093560934066772, 0.2353632152080536, -0.3248857259750366, 0.27803125977516174, 0.11013645678758621, -0.8031163215637207, -0.6727795600891113, 0.16578157246112823, -0.5191826224327087, -0.46412500739097595, -0.5444682836532593, -0.7006950378417969, -0.7113038301467896, 0.5148673057556152, 1.2839298248291016, 0.4067000448703766, 1.5516095161437988, 0.42515286803245544, -1.403586745262146, -0.3111531734466553, 0.08666755259037018, 0.4989706873893738, -0.05439485237002373, -0.7736865878105164, -1.389512538909912, -0.30378422141075134, 0.30250126123428345, 1.1255344152450562, -0.17736855149269104, 1.3097357749938965, 0.25365951657295227, -0.4544754922389984, -0.7865726947784424, -0.5649729371070862, 0.7713829278945923, 1.1890482902526855, -0.4864892065525055, -0.08442169427871704, -0.12200063467025757, 0.1074790358543396, -0.4751221239566803, -0.10323842614889145, -0.23824140429496765, -0.5749135613441467, 1.1546460390090942, 0.20906348526477814, 0.9680939316749573, -0.08523485064506531, -0.986680805683136, 0.6217477321624756, -0.2107694298028946, -0.007553018629550934, -0.41506630182266235, -0.7920271754264832, -1.258583903312683, 0.6811990737915039, -0.5815258622169495, 0.33560335636138916, -0.42809993028640747, -0.6792864203453064, 0.21049948036670685, -0.7160890102386475, -0.18041808903217316, -0.2180270105600357, 1.259440302848816, 0.37715014815330505, -0.09957517683506012, 0.07168729603290558, 0.13831943273544312, -0.15481197834014893, 0.47106996178627014, 0.8981151580810547, 0.061754755675792694, -0.8449999094009399, 1.2574723958969116, -0.12074176222085953, -0.5914871692657471, 1.5717895030975342, 0.365390419960022, -0.45003166794776917, 0.7867041230201721, -0.4932868480682373, -0.07622236758470535, -0.7518317103385925, 0.42739948630332947, -0.09958642721176147, -0.4536641240119934, 1.0048234462738037, -1.4614570140838623, -0.4031960070133209, -0.5024647116661072, 0.2634281814098358, -0.08652984350919724, 0.02565140649676323, -0.5892614722251892, 0.7983258962631226, -0.31354618072509766, -0.18528048694133759, -0.8104928135871887, 0.1956632286310196, -0.7748667001724243, -1.6432640552520752, -0.16016064584255219, -1.3468953371047974, -0.33493515849113464, -0.1169801726937294, -1.1371692419052124, 0.24296143651008606, -0.2071845531463623, -0.1930704563856125, 0.14323216676712036, -0.14069326221942902, -0.40706154704093933, -1.340483546257019, -0.20696856081485748, -0.5443323254585266, 0.6429411172866821, 0.29421696066856384, 0.3167586624622345, -0.6107531785964966, 0.6336976885795593, 0.838785707950592, -0.5341777801513672, -0.6128544211387634, 1.0765602588653564, 0.7169049382209778, -0.6642122864723206, -0.38182979822158813, -0.19889719784259796, 0.5396051406860352, 0.02791205421090126, 0.6608600616455078, 0.36783039569854736, 0.5856103897094727, -0.04273296147584915, 0.3543912470340729, -0.12589102983474731, -0.9593169093132019, -1.013641357421875, -1.1543591022491455, 0.1895802915096283, -0.8612026572227478, -0.3420242965221405, 0.36694350838661194, 1.7496438026428223, -0.9025280475616455, 1.1607741117477417, -0.8109130263328552, 0.3994928002357483, 0.3876272141933441, 0.42408308386802673, 0.36594662070274353, 0.07174025475978851, -1.0256890058517456, 0.2736870348453522, -0.25739070773124695, -0.1457967758178711, 0.31952396035194397, -0.11522478610277176, -0.8681061863899231, 1.5083366632461548, 0.03232313320040703, -0.16624440252780914, 0.9864112138748169, -0.006653249263763428, 0.10179077833890915, -0.8980119228363037, -0.047000620514154434, -0.07661829888820648, -0.8621330857276917, 1.1217772960662842, 0.1974346786737442, -1.6466468572616577, -0.6885851621627808, -0.6356439590454102, -0.1976403295993805, -0.6095409989356995, -0.41533926129341125, -0.9936075806617737, 0.8600446581840515, -0.35009896755218506, 0.03078440949320793, -0.13212737441062927, -0.14302575588226318, 1.252122163772583, -0.467746376991272, 0.6020657420158386, 0.4909954369068146, 0.1239396408200264, 0.23500682413578033, 0.5208738446235657, 0.03655011206865311, -1.3095754384994507, -0.7590253949165344, -0.6201627254486084, 1.1323350667953491, -0.3494716286659241, -0.6067860722541809, 0.21794018149375916, 0.17531448602676392, -0.642680287361145, 0.4601925015449524, -0.12405285239219666, -0.19705115258693695, 0.4113638699054718, 0.2668926417827606, -0.03761701658368111, 0.38862088322639465, -0.48797607421875, -0.4960130751132965, -0.49562227725982666, 0.8402934670448303, 1.1621266603469849, 1.2136082649230957, 1.1141570806503296, 0.0876360535621643, -0.024930451065301895, 0.3382285237312317, 0.3121473491191864, 0.3737705647945404, 0.3141472339630127, -0.7281785607337952, -0.5519570112228394, 0.5471078157424927, 0.10786152631044388, 0.018604347482323647, 0.7445652484893799, 0.38545170426368713, 1.138221263885498, 0.3427063524723053, -0.4442438781261444, -0.99797123670578, -0.6010043621063232, -0.35624703764915466, -0.7306578159332275, 0.8525196313858032, 0.6866629719734192, -1.0970993041992188, 0.7243202924728394, 0.3119652271270752, -0.6189390420913696, 0.46514892578125, 0.0038838014006614685, 0.3639960289001465, -0.8903181552886963, -0.3539848029613495, 0.17555159330368042, 1.3647737503051758, 0.5886486172676086, -0.19478467106819153, -0.3248124420642853, 0.05347415432333946, 0.13911469280719757, 0.25028756260871887, -0.7725940346717834, 0.9744828939437866, 0.1075240895152092, -0.864155113697052, -0.926347553730011, 0.30406510829925537, 1.3289433717727661, -0.28280696272850037, -0.2405678778886795, -0.9386463165283203, -0.5373900532722473, -0.49521955847740173, 0.7063031792640686, 0.20561029016971588, 0.6719690561294556, -0.027017414569854736, -0.34218695759773254, 0.6847572326660156, -0.11614476144313812, 0.24738022685050964, -1.2968391180038452, 1.161913275718689, 0.6052781939506531, 1.563670039176941, -0.09890197217464447, -0.20782595872879028, 0.8073569536209106, -0.7060522437095642, -0.6932846903800964, -0.12880371510982513, 0.7117709517478943, 0.14261852204799652, -0.412195086479187, -0.8478816747665405, 0.3512268364429474, 0.21341779828071594, -0.42146310210227966, -0.16770482063293457, 0.5985338687896729, 0.1429450809955597, -0.765923023223877, 0.8120806217193604, 0.051792047917842865, 0.05485682189464569, -0.5081528425216675, 0.4691658616065979, 0.02309490740299225, -0.13715292513370514, -0.05832463130354881, -0.3072560429573059, 0.049046196043491364, -0.14074184000492096, -0.6975755095481873, -1.436205506324768, 0.07289431989192963, 0.6736249327659607, 1.1484936475753784, -0.9099794626235962, -0.28964048624038696, -0.260923832654953, -0.31247881054878235, 0.5364806056022644, 0.31842052936553955, 0.6192061305046082, 0.33211955428123474, 0.00469622015953064, -0.010521546006202698, 0.9872686862945557, 1.252063274383545, -0.322793573141098, 0.11495433747768402, -0.4085051715373993, 0.45979148149490356, 0.5464978814125061, -0.37957000732421875, -1.1219371557235718, -0.26345139741897583, -0.6990475058555603, -0.028460804373025894, 0.5408085584640503, -0.30925294756889343, 1.459898829460144, 0.05566142499446869, 0.754891574382782, 0.4679872393608093, -0.590645432472229, -0.7661738991737366, 0.7020725607872009, 0.45119228959083557, 0.228166401386261, -0.6140110492706299, 0.5001233220100403, 0.6842161417007446, 0.679456353187561, 1.1067017316818237, 0.13392221927642822, 0.5687685608863831, 0.48463186621665955, -0.4626600444316864, 0.21537677943706512, 1.0398004055023193, 0.854549765586853, 0.46298089623451233, 1.494888424873352, -0.5497506856918335, -0.5137072205543518, 1.5183587074279785, -0.23565280437469482, 0.2232854962348938, 0.960543155670166, 0.2389879822731018, 1.9500612020492554, -0.7550556063652039, -0.4335794448852539, 0.3857590854167938, 0.08464805036783218, -0.14701971411705017, -0.0031634774059057236, 0.16671425104141235, -0.7880286574363708, -0.2172701358795166, 1.0220580101013184, -0.18197035789489746, 0.5667547583580017, -0.5000765919685364, -0.19735194742679596, 0.1185089498758316, -0.13617044687271118, -0.2721632122993469, -0.8035120964050293, -0.3598463833332062, -0.008060014806687832, 0.3242637515068054, 0.6830213665962219, 0.8705248832702637, -0.1123398169875145, 0.8142948150634766, -0.5663934946060181, -0.8416070938110352, 0.11598177254199982, -1.3225979804992676, 0.5522769093513489, 0.24603773653507233, -1.0459471940994263, -0.6605469584465027, -0.4957844316959381, -0.2952556908130646, -0.790306568145752, -0.8139863610267639, -0.28629106283187866, 0.50877445936203, -0.7363698482513428, -0.4674546718597412, -0.30514928698539734, 0.87313312292099, 0.6537601351737976, 0.7937813997268677, 0.9000096321105957, 0.33248454332351685, 0.17324239015579224, 0.408157080411911, -0.22939182817935944, -0.25824403762817383, 0.3970487117767334, -0.6839869618415833, -0.5019957423210144, 0.24068863689899445, 1.001317024230957, 0.6256093978881836, -0.4809626638889313, 0.21194462478160858, 1.8748782873153687, -1.0908758640289307, -0.6210605502128601, 0.28873616456985474, -0.4180781841278076, 1.4092864990234375, 0.21099060773849487, -1.2791754007339478, -0.340270459651947, 0.4667026996612549, -1.7278804779052734, 0.7162351608276367, -0.3054707944393158, -0.10348405689001083, -0.2896609306335449, 0.3731096088886261, -0.12787975370883942, 0.6814098954200745, -0.6589701175689697, 0.0760737732052803, 0.7743648886680603, -0.37615299224853516, -0.8523396849632263, 0.803581953048706, 0.4513864815235138, 0.6432103514671326, -0.4688352346420288, 0.29385992884635925, -0.02411198616027832, -0.2984822690486908, -0.07967568188905716, 0.07033491134643555, 1.2410556077957153, 0.5413944721221924, 0.3389335870742798, -1.5117597579956055, 0.7557839155197144, -0.6443656086921692, 0.9960463643074036, -0.2586807310581207, 0.803656280040741, 0.1360420286655426, -0.8552932143211365, 0.3286829888820648, -0.5656448006629944, -0.21893425285816193, -0.3475525379180908, -0.7643319964408875, 1.1171905994415283, 0.08798788487911224, -0.149930939078331, 0.4012903571128845, -0.19932685792446136, -0.711647629737854, -0.46314334869384766, -0.2844526469707489, 0.9921969771385193, -1.3454080820083618, -0.5502488613128662, 0.0853220596909523, 0.09938348829746246, 0.6619393229484558, 0.30075857043266296, -0.3252556324005127, -0.9868949055671692, -1.517427921295166, -0.26270949840545654, -0.00851023755967617, 0.7570450305938721, -0.8801532983779907, 0.27103447914123535, 0.012933820486068726, -1.8766741752624512, 0.6411933302879333, 0.21716845035552979, -1.324894666671753, -0.7397017478942871, -1.2588709592819214, 1.0279674530029297, 0.5546576976776123, -0.474656879901886, -0.22451196610927582, 0.62665855884552, -0.43259161710739136, -0.36702215671539307, -0.5621655583381653, 0.5671312212944031, -0.055481381714344025, 1.0302246809005737, -0.3092918395996094, 0.37562328577041626, -0.2554422914981842, 0.25517094135284424, -0.3014613091945648, -0.19680725038051605, -0.8275275826454163, 0.1984737068414688, 0.058142878115177155, 0.541856586933136, -0.0448172502219677, 0.5354477167129517, 0.1705915480852127, 0.9605711102485657, -0.6693062782287598, 0.876960039138794, -0.41628187894821167, -0.47548261284828186, -0.47116923332214355, 0.24165979027748108, -0.9859907627105713, -0.34668436646461487, -0.1838006228208542, -0.6086767911911011, -0.8838703632354736, 0.1374037116765976, 0.710191011428833, -0.20413155853748322, 0.9274804592132568, -0.12090550363063812, 0.8225083947181702, -1.0907889604568481, 1.0296409130096436, 0.2008533924818039, -0.6772603988647461, 0.3079530596733093, -0.6251924633979797, 0.6816210746765137, -0.6071194410324097, -0.01344403624534607, 0.4820479154586792, 0.6294971108436584, -0.2704410254955292, -0.1790352612733841, 0.38313567638397217, -0.5068374276161194, -0.4644275903701782, 0.9021823406219482, 0.8199342489242554, 0.15251824259757996, 0.6754974722862244, 0.6830071210861206, -0.39103326201438904, 0.19473384320735931, 0.3211078643798828, -0.5790334343910217, -0.4811348021030426, 0.29087120294570923, -0.33556807041168213, 0.20489002764225006, -1.1374763250350952, 0.6680639386177063, -0.5713669657707214, -0.21627676486968994, 0.8696914911270142, -0.12789031863212585, -0.3987714946269989, 0.762925922870636, 0.32091936469078064, -0.5118765234947205, -0.0546591579914093, 0.1400851011276245, 0.17714151740074158, 0.8461925983428955, 0.7586863040924072, 0.4936073124408722, 0.13466350734233856, 0.8447269201278687, 0.806587278842926, -0.5813798308372498, -0.14230650663375854, -0.3805239796638489, -1.5717217922210693, -0.8073466420173645, 0.2938340902328491, -0.5340608954429626, 0.4064168334007263, -0.9384209513664246, -0.6661722660064697, -0.07325417548418045, 0.038971662521362305, 0.576384961605072, -0.8541799783706665, -0.054257649928331375, -0.7006524801254272, 0.22472286224365234, 1.4490078687667847, -0.17765763401985168, 1.4277997016906738, 0.4016101062297821, 0.524031400680542, 0.49757203459739685, 0.27101555466651917, -0.018054507672786713, 0.44933366775512695, -0.1357274353504181, -0.8766071796417236, -0.00131618557497859, -0.7131497859954834, -0.7447111010551453, 0.9903066754341125, 0.22728438675403595, 0.6141461730003357, 0.43318477272987366, -0.6072394847869873, 0.2114790380001068, 0.5145310163497925, 0.7406179904937744, -0.5251675844192505, -0.840441107749939, -0.5633931159973145, 0.10923390090465546, 0.07033520191907883, 1.6186405420303345, -0.43077442049980164, 1.0545183420181274, 0.7215025424957275, 0.033250439912080765, -0.13364523649215698, -0.22726036608219147, 0.4726927876472473, -0.43065083026885986, 0.6295779347419739, -0.23707948625087738, -0.33435529470443726, 0.1688258945941925, -0.7282084226608276, -0.17752358317375183, -0.33134958148002625, -0.5087388157844543, 0.125247523188591, -0.24606947600841522, -1.1792443990707397, -0.9215845465660095, 0.41448158025741577, 0.04193801060318947, -0.37340840697288513, 0.7395591735839844, -0.2717461884021759, -0.4210785925388336, 0.773137092590332, 0.5626358389854431, 0.3173619508743286, 0.29773521423339844, 2.0719432830810547, 1.1177341938018799, 0.21735446155071259, -0.5254402756690979, -0.410256952047348, 0.7032796740531921, -0.9297409653663635, -0.29997116327285767, -1.0465753078460693, -0.1726263165473938, 0.5079619288444519], [-0.4531186819076538, 1.5076793432235718, -2.0014259815216064, -0.34682902693748474, 0.9863001108169556, -0.010308319702744484, 0.5102552175521851, 0.8320944905281067, 0.027293935418128967, -0.4272044599056244, -0.02878681570291519, -0.1642524152994156, 1.0203996896743774, 1.019324541091919, 0.6090759634971619, 0.28353339433670044, 0.47564321756362915, -0.41026389598846436, 0.1703599989414215, 0.9497610926628113, -0.38385453820228577, -1.2358297109603882, -0.8769550919532776, 0.10379988700151443, 0.08909910917282104, 0.002781609073281288, -2.042778968811035, -0.8096025586128235, -1.0781294107437134, -0.3445439338684082, 0.7869799137115479, -1.0494599342346191, -0.2624417841434479, 0.7717120051383972, -0.7577567100524902, -0.9985995888710022, 0.5968770384788513, 0.09653239697217941, -0.1543516218662262, 0.7040644288063049, 2.3801538944244385, -0.14436624944210052, -1.022498369216919, -0.8282119035720825, 1.0537734031677246, -0.824781596660614, 0.538753092288971, -1.1017941236495972, -0.06608577072620392, -1.0603107213974, 0.07510978728532791, -0.7555227279663086, 0.6708557605743408, 0.6611496210098267, 1.4975945949554443, -0.44161492586135864, -0.28948092460632324, -0.6040191650390625, 0.45743516087532043, 0.08070062100887299, 1.0736839771270752, 0.8411290645599365, -0.12327471375465393, 1.3626317977905273, 0.6968016624450684, 0.020450789481401443, -0.2763887643814087, 0.8734769225120544, 0.5399062037467957, -0.08996587246656418, 0.2182696908712387, -0.19643087685108185, -0.464321494102478, 0.04680255055427551, -0.08730889856815338, -0.5631395578384399, 0.3010807931423187, 0.558152973651886, -0.35846811532974243, 0.40433210134506226, 0.16698560118675232, -0.14652486145496368, 0.6444326639175415, -0.5630941390991211, 0.5828020572662354, -0.46967360377311707, 0.13214458525180817, -0.0313568040728569, -0.18950316309928894, 1.862382411956787, 1.0276737213134766, -0.13932715356349945, 0.4877011179924011, -0.6297093629837036, 0.29530981183052063, -1.427194595336914, -0.024791302159428596, -0.9710189700126648, -0.8703531622886658, -0.3308688998222351, -0.7839783430099487, -0.8075030446052551, 0.1534281224012375, 0.23295247554779053, 0.8227220177650452, 1.388901948928833, -0.11800410598516464, -0.726803183555603, -0.06719832867383957, -0.028819715604186058, 0.3816412091255188, -0.4321039319038391, -0.9001737236976624, -0.7322478890419006, -0.19535686075687408, 0.31649094820022583, 1.4833444356918335, 0.09423024952411652, 0.4073747396469116, 0.3151528239250183, -0.689652681350708, 0.15929320454597473, -0.5218091011047363, 0.11172996461391449, 0.3884963095188141, 0.27879494428634644, -0.42532071471214294, -0.01399518083781004, 0.08825145661830902, -0.3438238203525543, -0.1331709325313568, 0.5639663934707642, 0.16830749809741974, 0.628301739692688, -0.5021082758903503, 1.8035436868667603, -0.7493704557418823, -1.535340428352356, -0.0911112129688263, -0.0992380753159523, 0.8496214151382446, -0.37037527561187744, -0.76444411277771, -1.0562376976013184, 0.03132679685950279, -0.2843945324420929, 0.2207130640745163, -0.4391532838344574, -0.2535911798477173, 0.22325080633163452, -0.6374478936195374, 0.34929656982421875, 0.18439753353595734, 1.1646456718444824, 0.21504506468772888, -0.2681494653224945, 0.6209986209869385, 0.1555783450603485, -0.07586145401000977, -0.177217036485672, 0.7006084322929382, 0.1270374059677124, -1.5014816522598267, 1.3319110870361328, -0.08222678303718567, -0.8577433824539185, 0.9419105648994446, 0.4907601773738861, -0.16475586593151093, 0.8335102796554565, -1.2543692588806152, -0.0024496447294950485, -1.246327519416809, 0.8832317590713501, 0.1944427192211151, -0.8522660732269287, 1.036413550376892, -0.541059136390686, -0.7669850587844849, -0.9514845013618469, 0.45279380679130554, -0.7636842727661133, -0.015685267746448517, -0.4306599795818329, 0.7796936631202698, -0.7552146315574646, 0.009973691776394844, -0.4810074269771576, -0.29787707328796387, -1.3610244989395142, -1.1159907579421997, -0.2784220576286316, -0.7843656539916992, 0.5543190240859985, -0.5079142451286316, -0.27199921011924744, 1.0936775207519531, -0.7405088543891907, -0.10947593301534653, -0.14552350342273712, -0.07266931235790253, 0.513269305229187, -1.5221551656723022, 0.3790910840034485, -0.5697340369224548, 0.8582461476325989, 0.1975824534893036, 0.5231186151504517, -0.21215181052684784, 0.48115429282188416, 1.1163119077682495, -0.6345593929290771, -1.0799200534820557, 0.44543904066085815, -0.04223410040140152, -0.4672118127346039, -0.132894366979599, -0.7021984457969666, -0.12832045555114746, -0.2757299244403839, 0.4029650390148163, -0.09563156962394714, 0.33231544494628906, 1.0210504531860352, 0.025682121515274048, -0.17379362881183624, -0.5972541570663452, -0.16888727247714996, -0.7518166899681091, 0.33778131008148193, -0.6701003909111023, -0.4611688256263733, 0.39151179790496826, 0.5866407752037048, -1.226165771484375, 0.822536051273346, -0.6842748522758484, 0.7711120843887329, 0.3043884038925171, 0.02564316801726818, 0.16656404733657837, 0.3230617344379425, -0.17706996202468872, -0.2751747965812683, -0.34528785943984985, -0.2991694211959839, 0.5656682252883911, -0.2071233093738556, -0.6645241379737854, 1.2607049942016602, 1.4860492944717407, -0.029025303199887276, 0.9040226340293884, 0.6016198992729187, 0.22318880259990692, -0.967124879360199, 0.1919899731874466, -0.11028896272182465, -0.9081975817680359, 0.6619688272476196, 1.102751612663269, -0.7479449510574341, -0.2629946768283844, -0.38848382234573364, -0.9741119742393494, -0.3384203314781189, -0.5803781151771545, -0.9841532111167908, 0.4705025851726532, -0.1871451735496521, 0.2080681025981903, 0.27684205770492554, -0.6162238717079163, 0.48997732996940613, 0.0681150034070015, 0.15208099782466888, 0.013869248330593109, -0.0004086345434188843, 0.43137311935424805, 0.42694082856178284, -0.07466599345207214, -0.7362064719200134, -0.7630090117454529, -0.12310686707496643, 0.5511451363563538, -0.28520724177360535, -0.3944278955459595, 0.8420448899269104, 0.7617148160934448, -0.9689144492149353, 0.5991289019584656, 0.09661804139614105, 0.36791741847991943, -0.05648479610681534, -0.082585908472538, 0.9923872947692871, 0.7383599877357483, -0.8586823344230652, -1.324088454246521, -0.7255648374557495, 1.0252928733825684, 0.893521249294281, 1.3496615886688232, 1.0649431943893433, 0.09472376853227615, -0.11116298288106918, 0.1766321212053299, 0.3636268079280853, 0.3728269934654236, -0.5364357829093933, -0.809966504573822, -0.35598403215408325, -0.20503011345863342, -0.11822284013032913, -0.5408756732940674, 1.3100107908248901, -0.15425366163253784, 0.9238332509994507, 0.714968204498291, -0.46274620294570923, -0.6063109040260315, -0.6135170459747314, 0.10155171155929565, -1.1505581140518188, 0.6997628211975098, 1.0187053680419922, -0.8190339207649231, -0.3914034962654114, -0.1808997094631195, -0.34961065649986267, -0.01694481261074543, 0.4421042799949646, 0.3328162133693695, -1.4090312719345093, 0.07756055146455765, 0.2709888815879822, 0.9763110876083374, 0.3959245979785919, 0.024373050779104233, -0.35975366830825806, 0.51376873254776, 1.0521565675735474, -0.5001495480537415, -0.5936747789382935, 0.5163729190826416, -0.2035893052816391, -0.5283340215682983, -0.2198449820280075, -0.5265577435493469, 1.1452455520629883, -0.4446435570716858, 0.036785174161195755, 0.05789962410926819, -0.5905373096466064, -0.4414723217487335, 0.046482544392347336, -0.5256351828575134, 0.7410104870796204, 0.14941132068634033, 0.013950847089290619, 0.6073521375656128, 0.16794776916503906, 0.1754942089319229, -1.7654989957809448, 0.6635148525238037, 0.34938132762908936, 1.0380605459213257, -0.17397047579288483, 0.1342983990907669, 0.3515693247318268, -0.24018631875514984, -0.0704372376203537, 0.46331849694252014, 0.7786808013916016, 0.2859925925731659, -1.033251404762268, -0.45491716265678406, 0.495392769575119, -0.5828460454940796, -0.36824703216552734, -0.09689000248908997, 0.08457868546247482, -0.5044115781784058, -0.7379809617996216, 0.8181865811347961, 0.2858385443687439, -0.0779023990035057, -0.7182037234306335, 0.13632908463478088, 0.07444211095571518, -0.7363235354423523, 0.4705969989299774, -0.6513085961341858, -0.2549532353878021, -0.7473581433296204, -0.5357861518859863, -0.7994727492332458, -0.39671483635902405, 0.4467800259590149, 1.172754168510437, -0.6213378310203552, -0.07604433596134186, -1.0335752964019775, 0.6477721929550171, 0.9439377188682556, 0.39155313372612, 0.24556636810302734, 0.4368779957294464, -0.25560298562049866, -0.6941700577735901, 0.29150184988975525, 0.9312003254890442, -0.6286765336990356, -0.0008693849667906761, -0.30376318097114563, 0.850368320941925, 0.13411903381347656, -0.005707234144210815, -0.6530978083610535, -0.24154400825500488, -0.5581358075141907, 0.9606778621673584, 0.6841382384300232, 0.17355385422706604, 1.6805610656738281, 0.03030211478471756, -0.13915163278579712, 0.15373584628105164, 0.12216013669967651, -0.5699642300605774, 0.22621852159500122, 0.3518511652946472, -0.3669619560241699, -0.4814682602882385, 0.1421675682067871, 0.39759910106658936, 0.3999831974506378, 0.44606253504753113, 0.35944297909736633, 0.8235161304473877, 1.589185357093811, -1.0176787376403809, -0.48942437767982483, 0.2714146077632904, 1.2601892948150635, 1.5793157815933228, 0.47292962670326233, 0.1533736139535904, -1.1225411891937256, 0.5437958836555481, -0.061037130653858185, -0.5493693351745605, 0.48577284812927246, 0.07786306738853455, 1.2889262437820435, -1.2969990968704224, -0.17756381630897522, 0.622719943523407, 0.14673252403736115, 0.686432957649231, -0.06005983427166939, 0.013908224180340767, -0.3779866397380829, 0.2666800916194916, 0.6368894577026367, -0.054705411195755005, 0.7037372589111328, -0.7025151252746582, -0.27928438782691956, -0.49090418219566345, -0.7972213625907898, 0.1471175104379654, -0.36000239849090576, -0.140333890914917, -0.6972874402999878, 0.5245851874351501, 0.6148319244384766, -0.4696381986141205, 0.4107564389705658, 1.2867234945297241, -0.9195917248725891, -0.9349715709686279, 0.11729361116886139, -0.33216363191604614, 1.049875259399414, -0.2866653800010681, 0.23584352433681488, -0.10323618352413177, -0.9526667594909668, -0.6131964325904846, -0.2228441685438156, -0.9901444315910339, -0.6693612933158875, -0.5535456538200378, -0.8755740523338318, -0.6882664561271667, 0.31402677297592163, 1.0715022087097168, 0.7384935617446899, 0.4315703213214874, 0.7344180345535278, 0.09887844324111938, 0.1685423105955124, 0.24123559892177582, 0.09764765948057175, 0.1716790497303009, -0.3480735421180725, -0.9833712577819824, -0.5049289464950562, 0.5175982713699341, 0.7597070336341858, 0.013693999499082565, -0.20242814719676971, 1.0236719846725464, 2.000277042388916, 0.12466713786125183, -0.570866048336029, 0.7490045428276062, -0.2815325856208801, 1.1362097263336182, 0.8352404832839966, -1.4676703214645386, 0.26369526982307434, -0.19537340104579926, -1.6098641157150269, 0.9714952111244202, -1.0437698364257812, -0.2664656341075897, 1.392971158027649, 0.5840230584144592, -0.5506102442741394, 0.7977272868156433, -0.8950856924057007, 0.019183363765478134, -0.274177610874176, -0.4270092248916626, -0.937965452671051, 0.3405349850654602, 1.1623153686523438, 0.10762954503297806, -1.1536023616790771, 0.5932835936546326, -0.06626881659030914, -0.3776804208755493, 0.5938359498977661, -0.24081099033355713, 0.04562158137559891, 0.8701069951057434, 0.6134514212608337, -0.9786579012870789, 0.127770334482193, -0.3425581753253937, 0.2787996828556061, 0.5697917342185974, 0.18822835385799408, 0.41910043358802795, -0.23653273284435272, 0.10118900239467621, 0.014388617128133774, -1.1209297180175781, 0.9141432642936707, -0.017441773787140846, 0.8054782748222351, -0.06842871010303497, -0.5639738440513611, 0.5479288101196289, -0.4330372214317322, -1.1730284690856934, -0.7094564437866211, -0.2648311257362366, 0.6381708383560181, -0.6510230898857117, -0.5764400959014893, -0.6452011466026306, -0.26696935296058655, 0.6158371567726135, 0.5427311062812805, 0.46564099192619324, -1.209428071975708, -1.068144679069519, 0.011747792363166809, 0.1374988853931427, 0.5848000645637512, -0.20500081777572632, 1.090736985206604, -0.33651605248451233, -2.0795273780822754, 1.1631418466567993, 0.22809335589408875, -1.4444019794464111, -0.9928420782089233, -1.3823366165161133, 0.8120589852333069, -0.47270941734313965, -0.010043011046946049, -0.027767805382609367, 1.4816420078277588, -0.5538509488105774, -0.582868754863739, -0.3673211932182312, -0.18121227622032166, -0.09635332226753235, 1.2825816869735718, -1.176388144493103, 0.9853217601776123, -0.24562397599220276, -0.5849186778068542, -0.73019939661026, 0.4802701473236084, -1.0622742176055908, -0.11410489678382874, 0.37581849098205566, 0.6022397875785828, -0.0054549165070056915, 1.3094826936721802, -0.06765646487474442, 1.180531620979309, -0.6842899918556213, 1.0806469917297363, -1.0102026462554932, -0.4184768497943878, -0.3138887584209442, 0.22074903547763824, -0.958475649356842, -0.2196987271308899, -0.06833739578723907, -0.9653367400169373, -1.0283252000808716, 0.6136618256568909, 0.7960751056671143, -0.7323105931282043, -0.2621365785598755, 0.05359872058033943, 0.5501248836517334, -0.3558175265789032, -0.13511891663074493, 0.2183549702167511, -0.8081528544425964, 0.47693464159965515, -0.22306734323501587, 0.4372633397579193, -0.28267592191696167, 0.16407880187034607, 1.2058838605880737, 0.5055174827575684, -0.7428525686264038, 0.7133001089096069, 0.8856128454208374, -0.26663723587989807, -1.0769928693771362, 1.0399185419082642, 0.9009432792663574, -0.5216966867446899, 0.36375191807746887, 0.6353583931922913, 0.2694890797138214, 0.39085322618484497, -0.49984967708587646, -0.725171685218811, -0.2001211941242218, 0.7361164689064026, 0.23215335607528687, 0.7613433599472046, -0.5930399894714355, 0.5127397775650024, -0.2287645936012268, -0.1080947071313858, 0.5205590724945068, -0.11841173470020294, 0.04610639810562134, 1.0313800573349, 0.21418322622776031, 0.048511382192373276, 0.05906005576252937, 0.6597113609313965, 0.35361582040786743, -0.09627338498830795, 0.18702641129493713, 0.6250815987586975, -0.5393692851066589, -0.13120891153812408, 0.585304319858551, -0.35030752420425415, 0.14756999909877777, 0.38117220997810364, -1.9071651697158813, -0.6563801765441895, -0.13411220908164978, -0.6878674030303955, 0.29432737827301025, -0.5642809271812439, -0.9833831787109375, 0.10502983629703522, 0.16157522797584534, 0.5139937400817871, -0.3432586193084717, -0.3200731873512268, -0.20910726487636566, -0.22121432423591614, 1.0645184516906738, -0.35873332619667053, 0.9458057880401611, 0.23939554393291473, -0.016184352338314056, -0.15282462537288666, -0.09727636724710464, -0.30588406324386597, 0.09144733101129532, -0.009664056822657585, -0.7633395195007324, 0.059826042503118515, -0.6115723252296448, -0.29840436577796936, 0.3276844918727875, 0.8612866997718811, 0.928805947303772, -0.40471354126930237, -0.5786950588226318, -0.4979974925518036, 0.14241696894168854, 0.6038801074028015, -0.9023584723472595, -1.1457198858261108, -0.8462391495704651, 0.2117716521024704, 0.13114827871322632, 1.6468559503555298, -0.10055255144834518, 0.6478837132453918, 0.6784412860870361, 0.37847021222114563, -0.25873616337776184, -0.6390017867088318, 0.2567070722579956, -0.7219745516777039, 1.0766266584396362, -0.03377759829163551, -0.04579532891511917, 0.4396822154521942, -1.034939169883728, 0.21776320040225983, 0.6712902784347534, 0.04761085659265518, 0.59611976146698, -0.2972146272659302, -1.0686935186386108, -0.5808610916137695, 0.8217726349830627, -0.31721872091293335, 0.03666989877820015, 0.49098536372184753, -0.17316332459449768, -0.7762245535850525, -0.36367180943489075, 0.7765580415725708, -0.2912347912788391, 0.6726992726325989, 1.6898703575134277, 1.2334762811660767, -0.25724560022354126, -0.062426984310150146, -0.262226402759552, 1.0402380228042603, -1.3282239437103271, -0.318868488073349, -0.6013792157173157, 0.1534050852060318, -0.009209130890667439], [0.0015053562819957733, 1.188709020614624, -2.2578864097595215, -1.0145055055618286, 0.5693181157112122, -0.2081119418144226, 0.8988479375839233, 0.6917972564697266, -0.04540227726101875, -0.6909911036491394, -0.7978106141090393, -0.026521313935518265, 1.212215542793274, 1.0962302684783936, 0.18398797512054443, 0.46484503149986267, 1.2976291179656982, -0.32600632309913635, 0.5345835089683533, 1.545937180519104, -0.6273043155670166, -1.2637252807617188, -0.6839715242385864, 0.12975938618183136, -0.23276132345199585, 0.5112478733062744, -1.8634330034255981, -1.1645861864089966, -1.7764480113983154, -0.4539283812046051, 0.6171561479568481, -0.8864519000053406, -0.25329136848449707, 0.8666486144065857, -1.3516494035720825, -0.6604677438735962, 0.947884738445282, 0.3028516173362732, 0.1017480120062828, -0.36442774534225464, 2.4010350704193115, -0.12300775200128555, -0.44805091619491577, -0.9172479510307312, 0.42549923062324524, -0.8054159283638, 0.8316844701766968, -0.5662035942077637, 0.5952507853507996, -0.4380750358104706, 0.5785658955574036, -0.08801406621932983, -0.008163737133145332, 0.3678776025772095, 1.0052250623703003, -0.9088336229324341, -0.5794076919555664, 0.06125809997320175, 0.6773467659950256, 0.6798997521400452, 1.1625295877456665, 0.5662983655929565, -0.2689461410045624, 1.7604631185531616, 0.8069502711296082, 0.1471129208803177, -0.08948078006505966, 0.7803803086280823, -0.22606095671653748, 0.1801915317773819, 0.6632504463195801, -0.44752293825149536, 0.08502331376075745, 0.21001261472702026, -0.2678828835487366, 0.051976483315229416, 0.5308389663696289, 0.10080529004335403, -0.031859371811151505, 0.26322057843208313, -0.1241806149482727, 0.0630996897816658, 0.7289159893989563, -0.786000669002533, 1.1288707256317139, 0.15662889182567596, 0.10397127270698547, -0.22810643911361694, -0.7219625115394592, 1.4465289115905762, 0.8203387260437012, 0.23072253167629242, 0.13809414207935333, -0.5490023493766785, 0.3107532560825348, -0.26300039887428284, 0.1257466971874237, -1.349197268486023, -1.0684131383895874, -0.7868728041648865, -1.2749067544937134, -0.5514678359031677, 0.40297940373420715, 0.4230829179286957, 1.0168126821517944, 0.8825971484184265, -0.10608407855033875, -0.9207767248153687, 0.3735499083995819, 0.12326405942440033, 0.4674372971057892, 0.5488513708114624, -1.4842801094055176, -1.0464401245117188, 0.26747214794158936, 1.2279083728790283, 1.1411851644515991, -0.08173815160989761, 1.0556960105895996, 0.8728749752044678, -0.6109853982925415, 0.22726300358772278, -0.40984225273132324, 0.15188336372375488, 0.5853174924850464, 0.7746679186820984, 0.013754032552242279, -0.5329906344413757, 0.38030585646629333, 0.017425449565052986, 0.09280869364738464, -0.06003783643245697, -0.5774936676025391, 0.5542568564414978, -0.6407623887062073, 1.4159433841705322, -0.9415719509124756, -1.833831787109375, -0.011435255408287048, -0.11659889668226242, 1.3726637363433838, -0.23399236798286438, -0.7806791663169861, -0.8174489736557007, -0.3997838497161865, -0.6027525663375854, 0.07497727870941162, -1.0782817602157593, -0.504490315914154, 0.5123637914657593, -0.8706765174865723, 0.180103600025177, 0.1427517533302307, 1.2741830348968506, -0.23153848946094513, -0.3602524697780609, 0.5480324029922485, 0.24739450216293335, 0.5454256534576416, 0.24829255044460297, 1.3844584226608276, -0.3770615756511688, -0.5166329741477966, 1.5133116245269775, 0.7123978734016418, -0.35367679595947266, 0.3069159984588623, 0.8639316558837891, -0.18217667937278748, 0.42629462480545044, -0.33747339248657227, -0.3042290210723877, -0.6896016001701355, 0.16699457168579102, 0.46348410844802856, -0.4871930480003357, 1.4878077507019043, 0.013043505139648914, -0.6484010815620422, -1.1385241746902466, 1.3698384761810303, -0.7554991841316223, 0.16418495774269104, -0.8070724606513977, 0.6902178525924683, -0.705482542514801, 0.12539175152778625, -0.43916139006614685, 0.06085152551531792, -1.4626024961471558, -0.6154342889785767, 0.2888627350330353, -0.778536856174469, 0.2712570130825043, -0.5803141593933105, -0.5347482562065125, 0.8896964192390442, -0.2576369643211365, -0.27452006936073303, -0.05100938305258751, -0.20090177655220032, 0.09923272579908371, -1.612618327140808, -0.3294132649898529, -0.811226487159729, 0.9740366339683533, -0.21413618326187134, 0.49439820647239685, -0.3282659649848938, -0.4308987557888031, 0.9410562515258789, -0.2781899571418762, -1.3196018934249878, 0.6666290760040283, 0.3131754696369171, -0.1015637069940567, 0.3160371780395508, -1.1894426345825195, -0.47185543179512024, 0.0383782833814621, 0.3899960219860077, -0.33703556656837463, -0.10051227360963821, 0.7664808034896851, 0.45846861600875854, -0.011016623117029667, -0.2697206735610962, -0.14798273146152496, -0.32776984572410583, 0.1424103081226349, -1.1829103231430054, -1.063100814819336, 1.0915040969848633, 0.6862756609916687, -1.5554654598236084, 0.9603099822998047, -0.8226574659347534, 0.4367390275001526, 0.2886768877506256, 0.8030739426612854, 0.7426023483276367, 0.2831195592880249, -0.4149000346660614, -0.21486465632915497, -1.015844464302063, 0.34470584988594055, 0.8335673213005066, -0.04021381586790085, -0.6019258499145508, 1.690108060836792, 1.7777647972106934, 0.5733725428581238, 0.9651622772216797, 0.4610982835292816, 0.04490898549556732, -0.9377937912940979, 0.05705174803733826, 0.1762966364622116, -1.3565757274627686, 1.0471299886703491, 0.9395143985748291, -1.4026545286178589, 0.05597968026995659, -0.24190105497837067, -0.7015224695205688, -0.23299932479858398, -0.6515275835990906, -0.7864654660224915, 0.31008338928222656, -0.06737398356199265, 0.3230249583721161, 0.13702601194381714, -0.2967985272407532, 0.34745076298713684, -0.31439724564552307, -0.14188702404499054, 0.03879062831401825, 0.0184380654245615, 0.42630791664123535, 0.9473592042922974, 0.28956902027130127, -0.6063929796218872, -0.7567780613899231, -0.013904329389333725, -0.09018567949533463, -0.5529466271400452, -0.5070726871490479, 1.2645680904388428, 0.6875724196434021, -0.7528153657913208, 0.1451689749956131, 0.3507361114025116, 0.037921249866485596, -0.34507760405540466, 0.09264927357435226, 0.6832817196846008, 0.31221696734428406, -1.2788071632385254, -1.093878984451294, -0.5176395773887634, 0.8325745463371277, 1.7775400876998901, 1.4635623693466187, 1.0287142992019653, -0.048907533288002014, -0.3696284294128418, -0.1170271709561348, 0.07786742597818375, -0.45994654297828674, -0.5601159930229187, -0.707429051399231, -0.44570624828338623, 0.0808228850364685, 0.37427231669425964, -0.379978746175766, 0.8525692224502563, 0.7452377080917358, 1.1664063930511475, 0.9162405729293823, -0.6541635394096375, -0.4670984745025635, 0.4454466998577118, 0.33930641412734985, -0.9212134480476379, 0.7260016202926636, 0.8618451952934265, -0.5763142704963684, -0.42603781819343567, 0.2667739987373352, -0.31655189394950867, 0.010184995830059052, 0.8094586133956909, 0.3212132751941681, -1.0411672592163086, -0.7274780869483948, 0.1272551268339157, 0.8848255276679993, -0.1815803349018097, 0.18069680035114288, -0.30753880739212036, -0.19559668004512787, 0.9102105498313904, -0.3661600649356842, -0.7485219836235046, 0.3750437796115875, -1.0718485116958618, -0.4579654335975647, 0.08790206164121628, -0.39449843764305115, 1.470306634902954, -0.27616631984710693, -0.47267022728919983, 0.4076998829841614, -0.2612261176109314, -0.312939316034317, -0.1086854487657547, -0.6198815107345581, 0.5109485983848572, 0.5076212286949158, 0.7970704436302185, 0.8854027986526489, -0.3054752051830292, -0.11233246326446533, -1.6386878490447998, 0.6438173651695251, 0.6878029704093933, 1.1615149974822998, -0.30771005153656006, 0.47516000270843506, 0.16435445845127106, -0.2871701717376709, 0.4465983510017395, 0.13608677685260773, 0.9070830345153809, 0.23592324554920197, -0.4823094606399536, -0.8422412872314453, -0.4261101484298706, -0.05836564302444458, -0.6235756874084473, 0.11432456970214844, 0.18304575979709625, -0.8308050036430359, -0.08829108625650406, 0.8629058599472046, 0.6557101011276245, -1.0527992248535156, -1.0626873970031738, -0.24100536108016968, 0.2347346842288971, -0.5439935922622681, 0.5692965984344482, -0.6061164140701294, -0.2393103539943695, -0.22520554065704346, -1.4378383159637451, -0.40394049882888794, 0.23172777891159058, 0.33849385380744934, 1.420662522315979, -0.7713461518287659, -1.042062520980835, -0.323025643825531, 0.21286451816558838, 0.5368152856826782, -0.09917955100536346, 0.0904230996966362, 0.9485031366348267, -1.0703924894332886, -0.42860764265060425, 0.40948835015296936, 0.7569906115531921, -0.47306326031684875, 0.5149088501930237, -0.08551851660013199, -0.04261596128344536, 0.2705194354057312, -0.06224923953413963, -0.7441891431808472, -0.7358046174049377, -0.5321632623672485, 0.3336702287197113, 0.18690849840641022, 0.5697813630104065, 1.8319340944290161, -0.2840433716773987, -0.24138687551021576, 0.4213216006755829, -0.6128495335578918, -0.5341315269470215, -0.05753512680530548, 0.6306283473968506, -0.08189327269792557, -1.0769623517990112, 0.3551730513572693, 0.3413703441619873, 0.35011935234069824, 0.5578542947769165, -0.10269493609666824, 0.8611348271369934, 0.8923422694206238, -0.4181060492992401, -0.22674915194511414, 0.2837947905063629, 1.3586795330047607, 1.2076635360717773, 0.07548882067203522, 0.19368821382522583, -0.8106541037559509, 0.6076480150222778, 0.01998922973871231, -0.3814559280872345, 0.6758803129196167, -0.1426839977502823, 1.1749910116195679, -1.1515918970108032, -0.23607772588729858, 0.7386124730110168, -0.035086508840322495, 0.32860860228538513, -0.3889041841030121, 0.34204772114753723, -0.31179162859916687, 0.20492757856845856, 0.04572929069399834, 0.9737249612808228, 0.7057647109031677, -0.2746477425098419, 0.03206091374158859, -0.0630214512348175, -0.766647458076477, 0.3813174366950989, -0.38960808515548706, -0.4053199291229248, -0.46135997772216797, 0.48802903294563293, 0.11473698168992996, -0.23010686039924622, -0.2605293393135071, 1.646488904953003, -0.7888976335525513, -0.7954928278923035, 0.14470596611499786, -0.2934269607067108, 0.5764662623405457, -0.9930382370948792, -0.1542573869228363, -0.7403264045715332, -0.34469419717788696, -0.08804488182067871, 0.03289131447672844, -1.3089402914047241, -0.7868057489395142, -0.5927704572677612, -0.8639063835144043, 0.24131613969802856, 0.770359992980957, 1.0267611742019653, 0.4788336753845215, 0.36601129174232483, 0.07153903692960739, 0.1552281528711319, -0.3797682225704193, 0.2469012588262558, 0.1871791034936905, -0.2575473189353943, -0.1634322851896286, -0.8438780307769775, -0.372829794883728, 0.685299813747406, 0.6267301440238953, 0.2726210951805115, 0.3424065113067627, 1.088981032371521, 2.2084996700286865, 0.06805526465177536, -0.7297036647796631, 0.4181066155433655, -0.7059842348098755, 1.199688196182251, 0.6175028085708618, -1.5985764265060425, -4.0333718061447144e-05, -0.980804443359375, -0.8592588305473328, 1.1177560091018677, -0.5335910320281982, -0.994657039642334, 1.688202142715454, 0.43789905309677124, -0.16365890204906464, 1.3070943355560303, -0.1071561723947525, 1.0877461433410645, -0.4656188488006592, 0.005700979381799698, -1.3610161542892456, 0.7277027368545532, 0.9440757036209106, 0.27238890528678894, -1.321610689163208, 0.0799146518111229, -0.19133509695529938, -0.32242950797080994, 0.36268243193626404, -0.14543385803699493, 0.8938537240028381, 0.21862897276878357, -0.1685091257095337, -1.2106513977050781, -0.47960126399993896, -0.14547352492809296, -0.2709229588508606, 0.19034922122955322, 0.11497936397790909, -0.2383785843849182, -0.8447349071502686, 0.25414228439331055, 1.0612342357635498, -0.7331626415252686, -0.4109255373477936, -0.674627959728241, 0.7100276947021484, 0.18543843924999237, -0.284709095954895, -0.6357897520065308, -0.4172224998474121, -0.8669614195823669, -0.7594743371009827, -0.36616286635398865, 0.5638701915740967, -0.8303067088127136, -0.6932696104049683, 0.04501596838235855, -0.35795512795448303, 0.39043989777565, 0.45463496446609497, 0.5686421394348145, -1.4908497333526611, -1.143298625946045, -0.1835717111825943, 0.08011173456907272, 0.4987648129463196, -0.49702736735343933, 1.0687440633773804, -0.3282488286495209, -1.0439175367355347, 0.842976987361908, -0.03545233607292175, -1.693257451057434, -0.7143362760543823, -0.995849072933197, 1.072208285331726, -0.7767665386199951, 0.06870968639850616, 0.05785582959651947, 1.29676353931427, -0.41844597458839417, -1.2130440473556519, -0.49272674322128296, -0.08703869581222534, 0.4219681918621063, 1.0990715026855469, -0.658881425857544, 0.9307809472084045, 0.09071361273527145, -0.9303266406059265, 0.14499419927597046, 0.7828044891357422, -0.8202992677688599, -0.07445523887872696, 0.7363949418067932, 0.782686173915863, 0.37104710936546326, 1.1051123142242432, -0.039986610412597656, 1.3604481220245361, -0.33235278725624084, 0.7812882661819458, -0.8719021677970886, 0.4062320590019226, 0.417897492647171, 0.36995095014572144, -0.242855042219162, -0.7665672302246094, -0.41715720295906067, -0.8978304266929626, -0.8617093563079834, 0.3896544277667999, 0.9005029201507568, -1.0684372186660767, -0.03530797362327576, -0.2824043333530426, 1.0027283430099487, -1.0059515237808228, -0.04903645068407059, 0.010717352852225304, -0.7710481286048889, 0.27541208267211914, -0.41830503940582275, 0.5073471069335938, -0.4202928841114044, -0.16278371214866638, 0.8290700912475586, 0.7975282073020935, -0.6220961809158325, 0.598270833492279, 1.0030587911605835, -0.34820684790611267, -1.2902886867523193, 1.7118492126464844, 0.7878389358520508, 0.24993087351322174, 0.11491996794939041, -0.019315080717206, 0.5621364712715149, -0.012569875456392765, -0.6297727823257446, -0.3051791787147522, -0.2449217438697815, 0.7926382422447205, 0.12284465879201889, 0.17193667590618134, -0.6967146396636963, 0.313888281583786, 0.3886077404022217, -0.11210838705301285, 1.052565574645996, -0.37057673931121826, 0.021786505356431007, 0.7798637747764587, 0.32510513067245483, -0.429670125246048, 0.2949894368648529, 0.37951987981796265, 0.1697397083044052, -0.40567904710769653, 0.8098082542419434, 0.2600254416465759, -0.31124597787857056, 0.1664573848247528, 0.2905929386615753, -0.47850391268730164, 0.089478500187397, -0.4812689423561096, -2.5729620456695557, 0.022544309496879578, -0.24982328712940216, -0.8852514624595642, 0.5509619116783142, -0.7589349150657654, -0.6275912523269653, 0.36947932839393616, 0.3541538417339325, -0.39784175157546997, -0.38404783606529236, -0.26596799492836, -0.46895140409469604, -0.4941338896751404, 0.9711543917655945, -0.3645705580711365, 1.003660798072815, -0.15483640134334564, -0.15129753947257996, -0.36671870946884155, -0.020650628954172134, -0.07495928555727005, 0.5362593531608582, 0.3778913617134094, -0.6556007266044617, -0.26921507716178894, -0.5946194529533386, 0.13310889899730682, 0.022812966257333755, 0.8518771529197693, 0.7388060688972473, -0.5767229199409485, -0.8703726530075073, -0.14548315107822418, 0.7161217927932739, 0.27645641565322876, -1.2356698513031006, -1.0547776222229004, -0.8564844727516174, 0.6166301965713501, -0.5371732711791992, 1.019370675086975, -0.17511692643165588, 0.42100220918655396, 0.6474545001983643, -0.2230789065361023, -0.3313294053077698, -0.5579219460487366, 1.0882059335708618, -0.3392464816570282, 0.7186564803123474, -0.13364988565444946, -0.5677448511123657, 0.6451128721237183, -1.036161184310913, -0.29985311627388, 0.507999837398529, -0.21792832016944885, 0.41364291310310364, -1.0457149744033813, -0.8674834370613098, -0.5452225208282471, 0.09757757931947708, 0.6219066977500916, 0.4586867094039917, 0.6292263269424438, 0.3436446189880371, -1.1320161819458008, 0.004846431314945221, 0.2952740788459778, -0.47285619378089905, 0.7228938341140747, 1.33099365234375, 1.4894988536834717, 0.10831117630004883, -0.10856538265943527, -0.11282169818878174, 1.0838210582733154, -0.7916297316551208, -0.5735796093940735, -1.2554816007614136, -0.0670492947101593, 0.0940835177898407], [-0.2281634360551834, 0.9728761911392212, -2.307185649871826, -0.4867136776447296, 0.3183324933052063, 0.2567273676395416, 1.4728869199752808, -0.1977459341287613, 0.04001152515411377, -0.6821922063827515, -1.177156686782837, 0.10075021535158157, 0.7366175651550293, 1.0374932289123535, 0.3612104654312134, 0.3286864161491394, 0.66031414270401, -0.2858704924583435, 0.9499029517173767, 1.3152976036071777, -0.6161159873008728, -0.7537758946418762, -0.5385705828666687, 0.3947864770889282, 0.43544116616249084, 0.36106184124946594, -1.2498579025268555, -1.1572705507278442, -0.9924253225326538, -0.7936016917228699, 0.12350791692733765, -0.7045776844024658, -0.5253093242645264, 0.6684753894805908, -0.5817700624465942, 1.034686803817749, 1.4708662033081055, 0.5271317362785339, 0.8338282704353333, 1.0162854194641113, 2.704007148742676, -0.5021753311157227, 0.45864149928092957, -1.3775252103805542, 0.2496255785226822, -0.25293901562690735, 0.36603111028671265, -0.9785263538360596, -0.09086083620786667, -0.7839180827140808, 0.7600123286247253, 0.5446078777313232, 0.7138316631317139, 1.081096887588501, 1.0628100633621216, -1.1608223915100098, -0.10459958761930466, 0.06197250261902809, 0.07452838122844696, 0.4057338237762451, 0.763716459274292, 0.05654388293623924, -0.33904778957366943, 1.351511001586914, 0.47612860798835754, -0.4605241119861603, 0.07312469184398651, 0.09396186470985413, 0.04801810532808304, -0.22177734971046448, -0.10299976170063019, -0.22041454911231995, -0.125219464302063, 0.10988403111696243, -1.4860330820083618, 0.5591734051704407, 0.8018395304679871, 0.2864021062850952, 0.3587450683116913, 0.6430731415748596, -1.253357172012329, 0.3436563014984131, 0.452508807182312, 0.25753021240234375, 1.1073262691497803, 0.5893430113792419, 0.6743589639663696, -0.6829290986061096, -0.9291149377822876, 2.046548843383789, 0.48895329236984253, 0.16593733429908752, -0.06271388381719589, -0.5214003324508667, 0.1305590718984604, 0.11750692129135132, -0.3039443790912628, -0.9606491923332214, -0.5990315675735474, -0.7371036410331726, -0.5963236093521118, -0.7008289098739624, 0.49057769775390625, 0.5920799970626831, 1.029547095298767, 1.6491724252700806, 0.06302683055400848, -0.5980902910232544, -1.2806476354599, 0.23034274578094482, 0.4661048352718353, 0.3141736090183258, -0.5723494291305542, -1.5069606304168701, -0.5716461539268494, 0.2335524559020996, 0.47245749831199646, -0.4842034578323364, 0.5398713946342468, 0.577076256275177, -0.6222929358482361, -0.04211621358990669, -0.7052932977676392, 0.4458036720752716, 0.6666184663772583, 0.6959419846534729, -0.349573016166687, -0.21685777604579926, 0.2934112548828125, 0.4415155351161957, 0.23224219679832458, 0.26914381980895996, 0.1484275609254837, 0.9552584290504456, -1.0117533206939697, 1.488065481185913, -0.14309971034526825, -0.7668949961662292, -0.21326132118701935, -0.37023797631263733, 0.46405744552612305, -0.09899821877479553, -0.5216858386993408, -1.220268964767456, -0.13967783749103546, -0.8477180600166321, 0.63377445936203, -0.646713376045227, -0.47992295026779175, -0.4510918855667114, -1.131298542022705, -0.04586363211274147, 0.30784621834754944, 0.687666118144989, 0.36080193519592285, 0.02337535098195076, 0.9567078351974487, 0.26090696454048157, 0.007215565070509911, 0.28811800479888916, 0.8311960697174072, -0.207050621509552, -0.47052696347236633, 0.44730082154273987, 0.29689544439315796, -0.1274375468492508, 0.47062456607818604, 0.34339362382888794, 0.5320054888725281, 1.00407874584198, -0.16084438562393188, -0.3130733370780945, -1.0642048120498657, 0.32696443796157837, 0.09672217071056366, -1.7490919828414917, 0.7370406985282898, -0.06297709047794342, -1.5460172891616821, -1.290876865386963, 0.6259796023368835, -0.6516380906105042, -0.15365728735923767, -0.539261519908905, 0.1464540660381317, -0.18297360837459564, -0.0076753683388233185, -0.5174825191497803, -0.45723599195480347, -0.9421539306640625, -0.8670040965080261, -0.5298438668251038, -1.3269652128219604, 0.06285208463668823, -0.594731867313385, -0.9510248303413391, 0.40541601181030273, -0.21764366328716278, -1.4787201881408691, -0.08581776171922684, 0.24733375012874603, -0.35278528928756714, -1.2997583150863647, 0.10766281187534332, -0.9937984347343445, 0.7648336887359619, -1.1528472900390625, 0.18785251677036285, -1.0770639181137085, 0.11088135838508606, 0.2743225693702698, -0.19980865716934204, -0.8532770872116089, 0.8556192517280579, 0.020261624827980995, -0.7943487167358398, -0.1583511382341385, 0.004490816965699196, -0.18058428168296814, 0.20071829855442047, 0.6034323573112488, 0.28025853633880615, 0.3940373659133911, -0.006083826068788767, 0.9037227630615234, -0.24073123931884766, -0.9803227782249451, -0.2947655916213989, -0.7392389178276062, 0.6038526892662048, -0.8476238250732422, -1.24200439453125, 1.205660343170166, 0.3338814079761505, -1.1477097272872925, 0.769895613193512, -0.22244331240653992, -0.47384515404701233, 0.49842968583106995, 0.893454909324646, 0.06235280632972717, 0.33140435814857483, -0.4652544856071472, -0.2307419329881668, -0.2400057464838028, 0.5670968294143677, 0.17146264016628265, -0.256832093000412, 0.2061581164598465, 1.265707015991211, 0.47783270478248596, -0.28230464458465576, 0.336920827627182, -0.4007260203361511, -0.7212216258049011, -0.4285850524902344, -0.6798277497291565, 0.03205810487270355, -0.3270721137523651, 1.8123124837875366, 0.6992374062538147, -1.1497865915298462, -0.17705033719539642, -0.33470940589904785, 0.08859268575906754, -0.760214626789093, -0.4017006754875183, -1.0512052774429321, 0.5534102320671082, 0.3598231375217438, 0.4818188548088074, 0.09142784029245377, -0.3232276141643524, 0.8403998017311096, 0.029516709968447685, 0.10415966808795929, -0.7136210799217224, 0.325497567653656, 0.03797907009720802, 1.1764788627624512, 0.8175761699676514, -1.219642162322998, -0.8991115689277649, -0.0598251074552536, 0.5826786756515503, 0.07975704222917557, -0.06422580778598785, 0.9501747488975525, 1.0985536575317383, -0.48491567373275757, 0.14009180665016174, 0.713189423084259, -0.6054874658584595, 0.35311612486839294, 0.2572057843208313, 0.2620353698730469, 0.34030672907829285, -1.5360743999481201, -1.2127867937088013, -0.5918442010879517, 0.48232391476631165, 1.092050552368164, 1.740466594696045, 0.7782993316650391, -0.16527944803237915, -0.44565674662590027, 0.0543062798678875, 0.018097296357154846, -1.0173672437667847, -0.21405276656150818, -0.1770692616701126, -1.0558569431304932, 0.3462396562099457, 0.10674108564853668, 0.12990932166576385, 0.6101329326629639, -0.054345227777957916, 0.5512694716453552, 0.44665786623954773, -0.4596390724182129, -0.608622670173645, -0.32248935103416443, -0.2825410068035126, -1.0304914712905884, 0.23582465946674347, 0.6369761824607849, -0.987500786781311, 0.006120787933468819, 0.3800218403339386, 0.331552654504776, 0.6357026100158691, 0.36518946290016174, 0.9594184160232544, -1.0286043882369995, -0.16607525944709778, 0.10788999497890472, 1.690405249595642, -0.0994369387626648, -0.766978919506073, -1.1731594800949097, -0.2242138385772705, 0.9548788666725159, -0.06783195585012436, -1.0209823846817017, 0.23110774159431458, -0.35867902636528015, -0.9974018335342407, -0.5050727725028992, -0.25032222270965576, 0.8136541843414307, -0.16366225481033325, -1.1611192226409912, 0.6582305431365967, 0.1750781387090683, -0.03224522992968559, 0.7538554668426514, -0.5555678606033325, 1.1171272993087769, -0.05157039687037468, 0.2406664937734604, 1.4495922327041626, -0.2684383988380432, 0.5896810293197632, -1.413387417793274, 0.8779847621917725, 0.3937712013721466, 1.005994200706482, 0.5320486426353455, 0.06556306034326553, 0.4201802611351013, -0.7795864939689636, 0.023174874484539032, 0.18928486108779907, 1.1225581169128418, 0.06682135909795761, -0.3834882378578186, -0.915904700756073, 0.0029159036930650473, -0.12001828104257584, -0.9800952672958374, -0.5854665040969849, -0.028896767646074295, -0.9226232171058655, -0.8641408085823059, 1.3014724254608154, 1.1306586265563965, -0.7369540333747864, -0.4821670353412628, 0.5363771915435791, 0.15363657474517822, 0.1906765252351761, 0.131109356880188, -0.6919788122177124, 0.6182816624641418, 0.3684936761856079, -1.0987831354141235, 0.17621901631355286, 0.09679082781076431, 0.8902994990348816, 0.6131305694580078, -0.9272845983505249, -0.3945336639881134, -0.2533925771713257, -0.1583445966243744, 0.44967466592788696, 0.37510430812835693, -0.023120148107409477, 0.9803663492202759, -0.4692496359348297, 0.16547207534313202, 0.5477365851402283, 1.008955955505371, 0.229021817445755, 0.031326983124017715, -0.4022025167942047, 0.19241757690906525, 0.372464120388031, -0.7895753979682922, -0.5222165584564209, 0.2349526584148407, -0.4708282947540283, 0.8598951697349548, -0.014810326509177685, -0.13082243502140045, 1.6962858438491821, 0.40968403220176697, 0.1745513677597046, 0.8264362215995789, -0.24029269814491272, -0.46216511726379395, 0.31803175806999207, 0.29743775725364685, 0.28426551818847656, -0.7017264366149902, 1.0414139032363892, 0.15707287192344666, -0.3175086975097656, 0.831746518611908, 0.5170738697052002, 0.8080438375473022, 0.2524130642414093, -0.3743985593318939, -0.059503376483917236, 0.6542771458625793, 1.3904320001602173, 1.0926766395568848, 0.6231405735015869, 0.35968196392059326, -0.7314271330833435, 0.776279091835022, -0.2621404528617859, -0.4533301889896393, 0.8345433473587036, -0.1688690334558487, 1.107124924659729, -1.6310709714889526, -0.5071724653244019, 1.1331394910812378, 0.33533358573913574, 0.38240379095077515, 0.5326709151268005, 0.6187695860862732, -0.8818530440330505, -0.02714153565466404, 0.42023080587387085, -0.3476141095161438, 0.09989384561777115, 0.43063122034072876, -0.05748377740383148, -0.1712612807750702, -0.32755348086357117, 0.09458770602941513, -0.7002884745597839, -0.28536567091941833, -0.29398825764656067, -0.6300009489059448, 0.5862365365028381, 0.1258280724287033, -0.23252880573272705, 1.3548718690872192, -0.24602873623371124, -1.191450834274292, 0.17422990500926971, -0.532403290271759, -0.115984246134758, -0.44071057438850403, -0.8198203444480896, -1.0248775482177734, -1.3299514055252075, -0.09496372938156128, 0.493412584066391, -1.2995553016662598, -0.9527816772460938, 0.055757150053977966, -1.1752134561538696, 0.4221256971359253, 0.20783589780330658, 1.5709517002105713, 1.4997237920761108, 0.026832517236471176, -0.224420428276062, 0.34972983598709106, -0.9704505205154419, 0.10528348386287689, 0.8915233016014099, -0.42965275049209595, -0.11573950201272964, -1.1371337175369263, -0.5808024406433105, 1.4256759881973267, 0.9241787195205688, -0.4366019368171692, 0.39903178811073303, 1.0160776376724243, 1.203004002571106, -0.6027213931083679, -1.0177087783813477, 0.4349062144756317, -0.18318027257919312, 1.007157564163208, 0.14246469736099243, -0.9824939370155334, -0.5797143578529358, -0.44824695587158203, -1.1999653577804565, 1.5869107246398926, -0.12418298423290253, -0.7607845664024353, 0.5576733350753784, 0.4501207172870636, -0.2908362150192261, 0.6686429381370544, -0.8002716302871704, -0.15896938741207123, 0.19907882809638977, 0.22795815765857697, -1.2009247541427612, 0.7240723371505737, -0.3307349979877472, 0.6692827343940735, -0.3965114653110504, -0.2984234690666199, 0.2066352516412735, -0.14929735660552979, 0.5410676002502441, 0.3255312740802765, 0.008441489189863205, 0.6931170225143433, 0.8797954320907593, -0.7377653121948242, -0.0179192665964365, -0.5999635457992554, 0.16946861147880554, 0.5812088847160339, 0.33124104142189026, -0.2381121665239334, -1.073288917541504, 0.2590659260749817, -0.18052944540977478, 0.2888464629650116, 0.03913099318742752, -0.4426160156726837, 1.3415476083755493, 0.36265385150909424, 0.23714971542358398, 0.25501951575279236, -0.5979394912719727, -0.3770099878311157, -0.6200687289237976, -0.14640487730503082, 0.5190025568008423, -0.4148736000061035, -1.0591634511947632, -0.07526606321334839, 0.09644666314125061, 0.143999382853508, -0.28534695506095886, 0.22273653745651245, -0.8796747326850891, -1.2434167861938477, -0.6699270009994507, -0.24708500504493713, 0.6031028628349304, -0.42042073607444763, 0.8409637808799744, 0.01870802603662014, -1.4596654176712036, 0.2727021872997284, -0.709632396697998, -1.5122687816619873, -0.2603908181190491, -0.9424664378166199, 0.9678770899772644, 0.1244397759437561, 0.6059643030166626, -0.17708826065063477, 0.4133845865726471, -0.462146520614624, -1.0384814739227295, -0.9294552206993103, 0.23532047867774963, 0.5172895193099976, 0.7616363763809204, -0.532277524471283, 1.3062679767608643, 0.3008674681186676, -0.412630170583725, -0.059818707406520844, -0.11876191943883896, -0.26056551933288574, -0.05456704646348953, 1.1425211429595947, -0.08144614845514297, 0.8359218835830688, 0.9535263776779175, 0.18450787663459778, 0.9683945178985596, 0.6696931719779968, 0.4112713634967804, -1.0780515670776367, -0.9830828905105591, -0.6094234585762024, -0.003480694256722927, -0.6905823349952698, -0.37243732810020447, -0.39031195640563965, -0.930895984172821, -1.4312413930892944, 0.3601073622703552, 1.403423547744751, -0.7693785429000854, 0.2889130711555481, -0.30787113308906555, 0.9746369123458862, -1.184988260269165, 0.3626549541950226, 0.024918172508478165, -0.34614717960357666, 0.3946165144443512, -0.21110078692436218, 0.13650648295879364, -0.840509831905365, 0.01760917901992798, 0.05346569046378136, 0.6115343570709229, -0.07711555063724518, 0.7031835913658142, 0.8098646998405457, -0.10652616620063782, -0.3959895968437195, 1.0678391456604004, 1.2787691354751587, -0.21207669377326965, -0.7326554656028748, 0.6491003036499023, -0.3250397741794586, 0.8633337020874023, -0.38476887345314026, -0.09881235659122467, -0.5055297017097473, 0.8145477771759033, 0.14827921986579895, -0.00025880406610667706, -0.6897448301315308, 0.3777236044406891, -0.3712044060230255, -0.017907073721289635, 0.9402610659599304, -0.4928969442844391, 0.298654705286026, 1.1010843515396118, 0.1317393034696579, -0.6648518443107605, 0.19386371970176697, 0.7707299590110779, 0.21362543106079102, -0.012177880853414536, 0.35028016567230225, 0.2630370259284973, -0.3454665243625641, 0.5130956172943115, 0.48025211691856384, -0.7168043851852417, -0.39258214831352234, -0.46093103289604187, -1.918321132659912, -0.5189778208732605, -0.7569595575332642, 0.07274794578552246, 0.5227081179618835, -0.7741842269897461, -0.9530497789382935, 0.24000360071659088, -0.031078701838850975, 0.5265255570411682, -0.7950615286827087, -0.1196725070476532, -0.5556114912033081, -0.017953641712665558, 1.2286970615386963, -0.49311041831970215, 1.6902345418930054, -0.2472826987504959, 0.11101359128952026, -0.5274695158004761, 0.153124138712883, 0.22573241591453552, 0.8462600111961365, 0.19439439475536346, -0.18221579492092133, -0.07427435368299484, -0.6955880522727966, -0.6287490129470825, 0.07299260795116425, -0.04803711920976639, 0.40261608362197876, 0.038098014891147614, -0.5197837352752686, -0.3462177515029907, 0.6544354557991028, 0.3042183220386505, -0.392608106136322, 0.14701172709465027, -1.117039442062378, 0.8168104887008667, -0.35895225405693054, 0.855973482131958, -0.8701431155204773, 1.0156360864639282, 0.6387972831726074, -0.43158382177352905, 0.24269920587539673, 0.21135126054286957, 0.28525352478027344, -0.059162624180316925, 0.5525285005569458, 0.7025672793388367, 0.11146106570959091, 0.1550687700510025, -0.9547268152236938, 0.06652503460645676, -0.0862710252404213, -0.32995402812957764, 0.248485267162323, -0.6089390516281128, -0.8745511174201965, 0.06495015323162079, -0.07521753758192062, 0.1194351315498352, 0.4828801155090332, 0.21500219404697418, -0.15022990107536316, -1.1718906164169312, 0.4050310552120209, 0.5592842698097229, -0.6936213970184326, 0.6348315477371216, 1.3062011003494263, 1.3484376668930054, 0.22741246223449707, -0.3182508051395416, -0.5524793267250061, 0.5373926758766174, -0.9509127140045166, -0.7903534770011902, -0.6707741022109985, -0.2862666845321655, -0.37445929646492004], [-0.10762152820825577, 2.2107248306274414, -2.432352304458618, 0.054706573486328125, 0.8857226371765137, 0.36697858572006226, 1.1581426858901978, -0.07616706192493439, -0.3478933274745941, -0.15440568327903748, -0.9837016463279724, 0.5392048954963684, 0.6251378655433655, 0.2277611494064331, 0.4157823324203491, 1.140140175819397, 1.4334772825241089, -0.1036924421787262, 0.9443971514701843, 1.2353718280792236, -0.5474092364311218, -0.49504324793815613, 0.2015923112630844, 0.12513265013694763, -0.22736868262290955, 0.3989446759223938, -1.241223931312561, -1.399957537651062, -0.7370059490203857, -1.1072520017623901, 0.4417441785335541, -0.37949877977371216, -0.2471814602613449, -0.1278506964445114, -1.2332037687301636, -0.5785762071609497, 1.704314112663269, 1.412596583366394, 1.016144037246704, 0.3260897397994995, 1.9283078908920288, -0.22900578379631042, 0.4570372998714447, -1.689184546470642, -0.2525416910648346, 0.03506370261311531, 0.41290009021759033, -0.08378136157989502, 0.4827037453651428, -0.24191556870937347, 0.48169204592704773, -0.9068032503128052, 0.5531214475631714, 0.8424937129020691, 1.0486246347427368, -0.27363747358322144, 0.4591308534145355, 0.2832353413105011, 0.06278068572282791, -0.6355255842208862, 0.8007773160934448, 0.29908886551856995, 0.20213264226913452, 0.7601506114006042, 0.17066991329193115, -0.4574272632598877, 0.03534579649567604, 0.06595854461193085, -0.021821539849042892, 0.04507702589035034, -0.0012543294578790665, 0.11845393478870392, -0.8925691843032837, 0.5096595883369446, -1.990590214729309, 0.3743007183074951, 0.6185007691383362, 0.9118102788925171, 0.5919770002365112, 0.3564590811729431, -0.15225307643413544, 0.30976787209510803, 0.6056598424911499, 0.11864840984344482, 0.546332597732544, 0.3464880585670471, 0.8845224380493164, -0.6748378276824951, -0.3350750803947449, 1.525546669960022, 0.8250429630279541, 0.013775574043393135, 0.28579574823379517, -0.42609578371047974, -0.5940285921096802, -0.40353962779045105, 0.4741339683532715, -0.2630637288093567, -0.7090910077095032, -0.964850902557373, -0.5659589767456055, -0.962162435054779, 0.3092832863330841, 0.08756118267774582, -0.18784092366695404, 1.23432195186615, 0.6811308264732361, -0.12145071476697922, -0.35021838545799255, -0.14289070665836334, 0.11839872598648071, 0.6423308849334717, -1.1104522943496704, -1.4092679023742676, -0.8394098877906799, 1.0079147815704346, 1.0532758235931396, -0.17056500911712646, 0.3669646382331848, 1.3837774991989136, -0.16829119622707367, -0.40306007862091064, -0.15579019486904144, 1.128598928451538, 0.21602262556552887, 0.7145007848739624, -0.6477749347686768, -0.47154945135116577, 0.21673110127449036, -0.06753944605588913, 0.34859129786491394, -0.3072790503501892, -0.4003491997718811, 0.7066998481750488, -0.904826819896698, 1.444930076599121, -0.2796061038970947, -0.5098745226860046, -0.06252946704626083, -0.3450305163860321, 0.5713288187980652, 0.4089726507663727, -0.45572659373283386, -0.7293643355369568, -0.4181780219078064, -0.8382960557937622, 0.5517776012420654, 0.09616430848836899, -0.8734859824180603, 0.25796496868133545, -1.1598128080368042, 0.5590121150016785, -0.09495348483324051, 0.30077770352363586, 0.12732155621051788, 0.13892924785614014, 0.633564293384552, -0.025365019217133522, 0.5299794673919678, 0.2858406901359558, 0.8059541583061218, -0.36155468225479126, -0.8069919347763062, 0.2884475886821747, 0.26197001338005066, -0.26568111777305603, 0.2513929605484009, 0.6228066682815552, 0.1923569291830063, 0.6681016683578491, -0.31593430042266846, -0.2112453281879425, -0.33834633231163025, 0.30280712246894836, 0.48724034428596497, -0.9389567375183105, 1.2120105028152466, -0.10501903295516968, -1.3945953845977783, -1.552388072013855, 0.20297802984714508, -0.4945298135280609, 0.45717963576316833, -0.01409730315208435, 0.19911706447601318, -0.8850500583648682, 0.16766826808452606, -0.35853463411331177, -0.7458946108818054, -0.3272707164287567, -0.41060587763786316, -0.394661545753479, -0.6167114973068237, 0.440405011177063, -1.0511924028396606, -0.6409478187561035, 0.42326709628105164, -0.8820812702178955, -0.5471858978271484, 0.09700837731361389, 0.03649729862809181, -0.5758585929870605, -1.1776759624481201, 0.22271424531936646, -0.3449985086917877, 0.942718505859375, -1.3710401058197021, 1.009498119354248, -0.9801194667816162, -0.12706194818019867, 0.567110538482666, 0.11749957501888275, -0.9450355768203735, 0.4559532105922699, -0.0035311952233314514, -1.5973840951919556, 0.4409402012825012, 0.4274846613407135, -0.3523195683956146, 0.4932979643344879, -0.25370723009109497, 0.44223782420158386, 0.06454359740018845, 0.1214338093996048, 0.46058720350265503, -0.24354341626167297, -0.6420679688453674, -0.6709417700767517, -0.47822368144989014, -0.23429974913597107, -0.5709916949272156, -1.3015419244766235, 0.6755887269973755, 0.11558117717504501, -1.3733251094818115, 0.21258428692817688, 0.23851022124290466, 0.003032408654689789, 0.5174694061279297, 1.193809151649475, 0.2512364387512207, 0.595446765422821, -0.3710924983024597, -0.40352097153663635, -0.4138440787792206, 0.18235072493553162, 0.8335824608802795, -0.4789801836013794, 0.2887386381626129, 1.3426486253738403, 1.309685468673706, 0.029979797080159187, 0.3224470317363739, 0.25007155537605286, -0.4961503744125366, -0.7749823331832886, -0.640984833240509, 0.41602885723114014, 0.004194520879536867, 1.733166217803955, 0.47572070360183716, -0.9267093539237976, 0.20267996191978455, -0.0820697769522667, 0.19148540496826172, 0.035200752317905426, -0.5645315647125244, -0.21968373656272888, -0.10894030332565308, 0.4122737944126129, -0.15346455574035645, 0.4899212419986725, -0.14622871577739716, 0.4831353425979614, -0.33597174286842346, -0.7568272948265076, -0.8396355509757996, 0.8441733717918396, -0.39397600293159485, 0.7185295224189758, -0.3312096893787384, -1.1121808290481567, -0.34963253140449524, -0.14438314735889435, 0.7416045069694519, 0.10904490947723389, 0.12239708751440048, 0.3497203588485718, 0.6108607649803162, -0.1521150767803192, 0.2615632712841034, 0.060535043478012085, -0.036098312586545944, -0.04650979861617088, -0.01137620210647583, 0.6131852269172668, 0.8175393342971802, -1.0332889556884766, -0.44744065403938293, -0.05973832309246063, 0.31055471301078796, 1.3669441938400269, 0.4474024772644043, 0.838038444519043, -0.026460980996489525, -0.5155297517776489, -0.32658782601356506, -0.31223973631858826, -1.036981463432312, -0.7657558917999268, -1.1264046430587769, -0.7145410180091858, -0.02505047619342804, -0.0999731793999672, 0.2582181394100189, 0.37694504857063293, -0.3654748201370239, 0.29002904891967773, 1.3574938774108887, -0.30682533979415894, -0.9850828051567078, -0.17610511183738708, -0.5910567045211792, -0.7967019081115723, 0.4634549915790558, 1.1083834171295166, -1.1813106536865234, -0.7326127886772156, 0.1048719510436058, -0.018482627347111702, 0.283964604139328, -0.07546647638082504, -0.014510557055473328, -1.3687201738357544, -0.7832350730895996, -0.3995106816291809, 1.9792535305023193, 0.07169041782617569, -0.4254021644592285, -0.3826870024204254, 0.7942332029342651, 0.7357187271118164, 0.030901866033673286, -1.0388641357421875, 0.6237768530845642, -0.3070501983165741, -0.5287865400314331, -0.06450330466032028, 0.5344310998916626, 0.5056533217430115, -0.6090754270553589, -0.8046715259552002, -0.15271170437335968, -0.2376583218574524, -0.24441131949424744, 0.8286409378051758, 0.012549306266009808, 1.1776247024536133, -0.3274536728858948, 0.0644155815243721, 0.532759428024292, -0.004068966023623943, 0.142318457365036, -1.4452859163284302, 0.3410472869873047, 0.6423803567886353, 0.9441954493522644, 0.7611272931098938, 0.44362249970436096, 0.04245647415518761, 0.509150505065918, 0.25988298654556274, 0.35016152262687683, 1.4608738422393799, 0.0752103179693222, 0.32469916343688965, -0.8159022331237793, -0.4065669775009155, -0.08485466241836548, -0.8595396876335144, -0.048319607973098755, 0.7380987405776978, -0.9684329032897949, -0.38736602663993835, 1.24594247341156, 0.44943177700042725, -0.7544245719909668, -0.20243820548057556, 0.41256844997406006, 0.4178188443183899, -0.5874029994010925, 0.5408278107643127, -0.49375149607658386, 0.03152226656675339, 0.2581561803817749, -1.3248751163482666, 0.16528142988681793, 0.17149975895881653, 0.667031466960907, 0.40146803855895996, -1.321864128112793, -0.010154006071388721, -0.5002796649932861, 0.6769059300422668, 0.33215171098709106, 0.24739430844783783, 0.3059045970439911, -0.12622776627540588, -0.014637534506618977, 0.16761444509029388, 0.026157040148973465, 0.6722667217254639, -0.888302743434906, 0.22272612154483795, -0.10225064307451248, -0.04674287885427475, -0.5546647906303406, -0.44308769702911377, -0.48382553458213806, 0.2069893479347229, -0.02877049706876278, 0.030673496425151825, 0.7077089548110962, -0.2792721390724182, 1.4694195985794067, 0.2164144217967987, 0.8731203079223633, 0.34764620661735535, -0.05277356877923012, -1.18050217628479, -0.014734387397766113, 0.5839971303939819, -0.204222172498703, -0.5911504626274109, -0.4309833347797394, 0.4938102662563324, -0.3442060649394989, 0.368133008480072, 0.440276563167572, 1.0857492685317993, 0.3998940587043762, 0.3554944694042206, -0.22173509001731873, 0.7252495288848877, 0.8211722373962402, 1.276269793510437, 0.368671715259552, -0.14073386788368225, -1.1595057249069214, 0.6229738593101501, -0.8427122831344604, -0.23577560484409332, 0.8775882124900818, 0.024255752563476562, 1.5126361846923828, -1.6137077808380127, -0.40366658568382263, 0.8469758629798889, 0.46757984161376953, -0.07979152351617813, 1.0094231367111206, -0.6020979285240173, -0.3040001690387726, 0.4557786285877228, 0.1598820835351944, -0.09196693450212479, 0.0016033230349421501, 0.11570348590612411, 0.01784466579556465, 0.9128761887550354, -0.4813583791255951, 0.7970815896987915, -0.8398616313934326, 0.1425895243883133, 0.37365299463272095, -0.2651008069515228, 0.2530503273010254, 0.25886669754981995, 0.27621015906333923, 1.2414604425430298, -0.365630179643631, -1.1567848920822144, -0.024330737069249153, -0.7824003100395203, 0.17581981420516968, -0.835054337978363, -0.05469401553273201, -0.6884559392929077, -0.02840137481689453, -0.42369014024734497, 0.6394957304000854, -0.5058168172836304, -0.586106538772583, -0.5265129208564758, -1.4065519571304321, 0.7674693465232849, 0.8717789053916931, 1.3802618980407715, 0.8814371824264526, 0.21944670379161835, 0.6758018136024475, 0.48670968413352966, -0.9885862469673157, -0.31109708547592163, 0.29592227935791016, -0.10917079448699951, -0.03179888799786568, -1.151504397392273, -0.5093899965286255, 0.015484396368265152, 0.16729551553726196, 0.13982948660850525, 0.9255958199501038, 0.8019365072250366, 1.2460205554962158, -0.656247615814209, -0.6649844646453857, 0.7007925510406494, -0.44117531180381775, 0.2785893976688385, 0.7243196368217468, -0.32243168354034424, -0.556299090385437, -0.7867031097412109, -1.396836519241333, 1.2550532817840576, 0.1617647409439087, -0.520253598690033, 1.033941388130188, 0.24694333970546722, 0.5364669561386108, 0.4147856533527374, -0.2060786485671997, 0.40689730644226074, 0.06552676111459732, -0.2761019766330719, -1.066284418106079, 1.0292497873306274, -0.19498205184936523, 0.4587702751159668, 0.1855776309967041, -0.21398590505123138, 0.04135744273662567, -0.49315133690834045, 0.15839871764183044, 0.1805262267589569, 0.3024127781391144, 0.9267995357513428, 0.10124523192644119, -1.318917989730835, 0.5386582016944885, -0.4424934983253479, -1.0398855209350586, 0.5099970698356628, 0.36773398518562317, 0.029283571988344193, -0.21223965287208557, -0.24621495604515076, -0.9125624299049377, -0.6049544215202332, -0.22346986830234528, -0.2840021848678589, 1.112908124923706, 0.6700469851493835, 0.09016314893960953, 0.22266677021980286, -0.4570378065109253, -0.25177523493766785, -0.1999247968196869, 0.39114999771118164, 0.1507347673177719, -1.0347697734832764, -0.26259514689445496, 0.3947117030620575, -0.7662187814712524, -0.15493299067020416, -0.6966635584831238, -0.24299883842468262, -0.6686522960662842, -0.9504261612892151, -1.2356775999069214, 0.06588786840438843, 0.8603399395942688, -0.820527970790863, 0.7930165529251099, 0.040478937327861786, -1.4364101886749268, 0.34317463636398315, -0.2671453356742859, -1.2935731410980225, -0.01692548207938671, -1.1933079957962036, 0.7201250195503235, 0.08457471430301666, -0.026583164930343628, -0.3929574489593506, 0.7089749574661255, -1.4924973249435425, -1.539969563484192, -0.8646976947784424, 0.013474440202116966, 1.010288119316101, 0.24272947013378143, -0.6687788963317871, 1.020904541015625, 0.29132702946662903, -0.23474448919296265, -0.10861711204051971, 0.003988079726696014, -0.016904320567846298, 0.316854864358902, 0.5774695873260498, 0.117256298661232, 0.44536763429641724, 1.0353288650512695, -0.10045827925205231, 1.3721667528152466, 0.32625266909599304, 0.67435222864151, -0.8952503800392151, -0.3173460066318512, 0.14268678426742554, 0.6587681770324707, -1.1271915435791016, -1.0888581275939941, -0.0991661548614502, -0.6551550030708313, -0.7673143744468689, 0.5008137226104736, 0.7382141351699829, -1.1305279731750488, 0.3822879493236542, -0.7407377362251282, 0.09982923418283463, -1.2399815320968628, 0.30577370524406433, -0.3897799253463745, -0.5277447700500488, -0.25740909576416016, 0.7133654356002808, -0.06049944460391998, -1.4830831289291382, 0.3140144944190979, -0.2974972128868103, -0.17615042626857758, -0.5508307814598083, 0.6235960125923157, 1.0407108068466187, 0.562900960445404, -0.7123625874519348, 1.1623106002807617, 0.6321715712547302, -0.24376463890075684, -0.5420283079147339, 0.4841421842575073, -0.2810893952846527, 0.7084605693817139, -0.3077802360057831, -0.2653200030326843, -0.9917165637016296, 1.4787729978561401, 0.37023237347602844, 0.2080845981836319, 0.013962054625153542, 0.3613984286785126, -0.3450530171394348, 0.04741007834672928, 0.5167500972747803, -1.3516790866851807, 0.14560097455978394, 1.1900150775909424, 0.26236727833747864, -0.333074688911438, 0.34924304485321045, 0.48996877670288086, 0.47374388575553894, -0.5569992661476135, 0.4904486835002899, 0.7215558886528015, -0.6052908301353455, 0.16686509549617767, 0.4681461453437805, -0.275736927986145, -0.08866622298955917, -0.4190385937690735, -1.0264582633972168, 0.21950243413448334, -0.5293896198272705, -0.842129647731781, 0.5665827393531799, -1.3952314853668213, -0.6504015326499939, 0.34238186478614807, -0.487079381942749, -0.10119825601577759, -0.5594671368598938, -0.15166960656642914, 0.17926768958568573, -0.2720721364021301, 0.8106995820999146, -0.20900729298591614, 1.7896780967712402, -0.34365344047546387, 0.27972471714019775, -1.86501944065094, -0.5494785308837891, 0.92365962266922, 0.027792789041996002, -0.07460761070251465, 0.3627729117870331, 0.7361958622932434, -0.3219596743583679, -0.2259056568145752, 0.16590990126132965, 0.18482014536857605, 0.021786540746688843, 0.1043359637260437, -0.3889537453651428, -0.10075372457504272, 0.759337842464447, 0.8766707181930542, -0.038815710693597794, -0.5168929696083069, -1.210634469985962, 0.13476905226707458, -0.24755722284317017, 0.6686439514160156, -0.6338503956794739, 0.661392331123352, 0.20096488296985626, -0.6083418130874634, -0.019351013004779816, -0.1911182701587677, 1.212908148765564, 0.16293857991695404, 0.32735762000083923, -0.0034586936235427856, 0.040007755160331726, -0.25531378388404846, -0.9808269143104553, -0.08881565183401108, 0.28730639815330505, -0.6449719071388245, 0.09064783900976181, -1.0914053916931152, -0.38619911670684814, -0.49478626251220703, 0.2741027772426605, 0.6926200985908508, 0.9966964721679688, 0.6770648956298828, -0.03541304171085358, -0.7846208214759827, 0.22538426518440247, 0.24557186663150787, -0.495162695646286, -0.26610317826271057, 1.5842223167419434, 1.8145495653152466, 0.6846118569374084, 0.846407949924469, -0.625745952129364, 0.16188201308250427, -1.052676796913147, -0.8702528476715088, -0.5063503384590149, -0.9304731488227844, -0.15578776597976685], [0.23310746252536774, 1.4278903007507324, -2.1227834224700928, -0.0013359887525439262, 0.3008582592010498, 0.542358934879303, 0.20061683654785156, 0.24048146605491638, 0.1601279079914093, -0.44900789856910706, -1.6744047403335571, 0.18671606481075287, 0.17705923318862915, 0.7730186581611633, -0.6454611420631409, 0.28899574279785156, 0.3989223837852478, 0.39240124821662903, 0.06639847904443741, 0.7916886806488037, -0.8686342835426331, -0.6914786696434021, -0.48644235730171204, 0.16924002766609192, -0.15071633458137512, 0.5631812214851379, -1.7273164987564087, 0.5159450173377991, -1.2806364297866821, -1.0600923299789429, -0.2440098375082016, -0.20849379897117615, -0.0029046721756458282, -0.1921001821756363, -1.1359930038452148, -0.40035492181777954, -0.144361212849617, 0.2120652049779892, 0.03611825779080391, 0.3860289752483368, 1.717891812324524, 1.300004243850708, 0.42230111360549927, -1.384103775024414, 0.7246899008750916, -0.49890196323394775, 1.166635513305664, -1.0525972843170166, -0.3054504990577698, -0.18908853828907013, 0.6534474492073059, 0.10872237384319305, 0.7236050367355347, 0.9924842715263367, 1.3056960105895996, -0.6291726231575012, 0.1873691976070404, -0.10811382532119751, 0.5503983497619629, 0.6714937090873718, 0.7424443960189819, -0.12362820655107498, -0.3078012466430664, 0.9690056443214417, 0.23790723085403442, 0.1908324658870697, 0.03796781599521637, 0.3786236345767975, -0.5877575278282166, -0.04820946604013443, 0.4027002453804016, 0.05261644721031189, -0.22777722775936127, -0.19914419949054718, -0.6910868287086487, 0.24826136231422424, 0.7986147403717041, 0.28921830654144287, -0.49463510513305664, 0.6072691082954407, -0.8116118311882019, 0.19085389375686646, 0.7726139426231384, -0.6297479867935181, -0.11944285780191422, 0.3671623468399048, 0.6435603499412537, -0.48126956820487976, -0.6335395574569702, 1.1797261238098145, 0.4085511267185211, 0.15507684648036957, 0.2227214276790619, -0.012878654524683952, -0.20343449711799622, -0.46741238236427307, 0.2533179223537445, -0.629931628704071, -0.6141504645347595, -0.42592570185661316, -0.8799777030944824, -0.40646547079086304, 0.3141492009162903, 1.1180403232574463, 0.7334396243095398, 1.7478065490722656, -0.7655212879180908, -0.6731159687042236, 0.18913815915584564, 0.8737653493881226, -0.21360425651073456, 0.32893773913383484, -0.7154560685157776, -1.301483392715454, -0.4654480516910553, 0.7633097171783447, 0.9215831756591797, -0.18168842792510986, 0.9174221754074097, 0.9925140738487244, 0.31719765067100525, -0.400615394115448, -0.6625869870185852, 0.737936794757843, 0.6270554065704346, -0.2943347990512848, -0.59977126121521, 0.09925853461027145, 0.11279919743537903, 0.09500574320554733, 0.09188327193260193, -0.22347508370876312, 0.22401823103427887, 1.308854579925537, -0.22462362051010132, 0.8778181076049805, 0.05061694607138634, -1.1196601390838623, -0.239095076918602, 0.25634509325027466, 0.3240402042865753, -0.17993256449699402, -0.28752535581588745, -1.1721669435501099, -0.07295344024896622, -0.037083566188812256, -0.08031845092773438, -0.2243463546037674, -0.7653160095214844, 0.5886319279670715, -1.5705052614212036, 0.5863599181175232, -0.5285415649414062, 0.5946773290634155, 0.3079373240470886, -0.057566773146390915, 0.3155795931816101, 0.20667417347431183, 0.3650619685649872, 0.7665985226631165, 0.8131089210510254, 0.22077587246894836, -0.4080246090888977, 0.5323686599731445, 0.6339337229728699, -0.5180459022521973, 0.22488903999328613, 0.16929423809051514, -0.9301173686981201, 0.9548398852348328, -0.9090262055397034, -0.8999029994010925, -0.6358683109283447, -0.10471216589212418, -0.5027198195457458, -0.6539621353149414, 0.39206257462501526, -0.9749196767807007, -0.9748948812484741, -0.9956554770469666, 1.5433529615402222, -0.536853551864624, 0.45806437730789185, -0.07456962764263153, 0.3157948851585388, -0.48141634464263916, 0.17994274199008942, -0.0462958887219429, -0.26883262395858765, -0.41813141107559204, -1.0222272872924805, -0.09599948674440384, -0.7140877842903137, 0.6394293308258057, -0.30090853571891785, -0.7172701358795166, 0.46211594343185425, 0.11348296701908112, -0.598894476890564, -0.0998583734035492, -0.42442578077316284, -0.49548661708831787, -1.0532402992248535, 0.6898080706596375, 0.24628522992134094, 1.3003851175308228, -0.029620081186294556, 0.5304304957389832, -0.4037953317165375, -0.14067642390727997, 0.859717845916748, -0.17577233910560608, -0.8451278209686279, 0.46893227100372314, -0.05656279996037483, -0.8357998728752136, 0.3788549304008484, 0.1813916116952896, 0.5109861493110657, -0.12333715707063675, 1.111473798751831, 0.5697842836380005, 0.18169835209846497, -0.1403418630361557, 0.18595363199710846, 0.00951335858553648, -0.05997399240732193, -0.26922836899757385, -0.6986958384513855, -0.03863236680626869, -0.8269352316856384, -0.6958134174346924, 1.1850438117980957, 0.09266340732574463, -0.7868857979774475, 1.2758967876434326, -0.42263558506965637, 0.13117045164108276, -0.47532039880752563, 0.6861579418182373, 0.20911411941051483, -0.24508169293403625, -0.9953858852386475, -0.5209296345710754, -0.558621346950531, 0.30209046602249146, 0.6934399008750916, -0.07509656250476837, 0.17337974905967712, 1.6740385293960571, 0.6254227757453918, -0.41358160972595215, 0.8535221219062805, 0.23205623030662537, -0.3441530168056488, -1.0955854654312134, 0.007442876696586609, 0.12120886892080307, -0.8496128916740417, 1.481447458267212, 0.7464153170585632, -1.4593664407730103, -0.44310933351516724, -0.00610921299085021, 0.2801397740840912, -0.39330601692199707, -0.33365002274513245, -0.5496066212654114, 0.6435744762420654, 0.6838569045066833, 0.07285067439079285, -0.10383825749158859, 0.003408856689929962, 1.045656681060791, 0.19367259740829468, 0.32600849866867065, -0.29358816146850586, 0.19505712389945984, 0.25089266896247864, 0.6438420414924622, 0.09072735905647278, -1.618355631828308, -0.6908381581306458, -0.23489058017730713, 0.35160258412361145, -0.08043201267719269, -0.8458347916603088, 0.5943066477775574, 0.8273098468780518, -0.34386998414993286, 0.188558429479599, 0.4260108470916748, 0.14069907367229462, -0.1339043527841568, 0.48404377698898315, 0.36162951588630676, 0.9611651301383972, -0.9675120711326599, -0.7379522323608398, -0.04985545948147774, 0.2727743685245514, 1.5965462923049927, 0.7127408981323242, 1.252373456954956, -0.017344888299703598, -0.2089361995458603, -0.4866703450679779, -0.20428884029388428, -1.079616904258728, -0.446085661649704, -0.896675705909729, -1.0427218675613403, -0.1303950995206833, -0.5039531588554382, 0.44487640261650085, 0.2584313154220581, 0.308535635471344, 0.6355018019676208, 0.044364143162965775, -0.925697386264801, -0.5409746170043945, -0.14882425963878632, 0.4099571108818054, -1.8460667133331299, 1.170067548751831, 1.3119382858276367, -1.1115869283676147, 0.026357362046837807, 0.30333948135375977, -0.17521288990974426, 0.5174158811569214, 0.05993860214948654, 0.6814862489700317, -0.9318989515304565, -0.6614618301391602, -0.008325573056936264, 1.3143434524536133, 0.3845348656177521, -0.5070327520370483, 0.15181028842926025, 0.3121911287307739, 0.5008260011672974, -0.03341691195964813, -1.116401195526123, 0.19400480389595032, -0.1533421277999878, -1.040379524230957, -0.09023365378379822, 0.7612923383712769, 1.1280860900878906, -0.509480357170105, -0.2434232085943222, -0.0887475460767746, 0.036624521017074585, -0.7611689567565918, -0.1974198967218399, -0.4308628737926483, 0.3906809091567993, -0.2573985457420349, 0.09687642753124237, 0.8707171678543091, -0.17154814302921295, 0.02828206494450569, -1.5785497426986694, 0.5339173078536987, 1.0452860593795776, 2.0179615020751953, 0.5437769889831543, 0.26533985137939453, -0.012933650985360146, -0.9531343579292297, -0.5656975507736206, 0.47134119272232056, 0.23711147904396057, 0.6855915188789368, -0.49284929037094116, -0.7773457169532776, 0.05440894886851311, -0.25237444043159485, -0.7231801152229309, -0.742404043674469, 0.27272501587867737, -0.6401440501213074, -0.5077261328697205, 0.6324278116226196, 0.34998396039009094, -0.49596843123435974, -0.19802699983119965, 0.4161216914653778, -0.4589085876941681, -0.5829526782035828, 0.3325263261795044, -0.6483173370361328, -0.05060362070798874, 0.8985589742660522, -0.5715214014053345, -0.8946202397346497, -0.093247190117836, -0.35457414388656616, 0.9595378637313843, -1.3780356645584106, -0.958317220211029, -0.9875888824462891, 0.107378751039505, 0.35242295265197754, 0.08105185627937317, 0.8063363432884216, 0.007801257539540529, -0.05748017504811287, -0.44909289479255676, 0.008609396405518055, 1.239427089691162, -0.03602002188563347, 0.2396768480539322, -0.4522489607334137, -0.002263373229652643, 0.429536908864975, -0.8697735667228699, -0.40096747875213623, -0.4984027147293091, -0.7534886598587036, 0.5145173072814941, -0.0897928774356842, 0.06525132805109024, 0.8622953295707703, 0.00672277482226491, 0.2893499732017517, 0.886173665523529, -0.24543429911136627, -0.7253966331481934, -0.2900552749633789, 0.5345553159713745, -0.5433652997016907, -0.5292057991027832, 0.48444631695747375, 0.33065611124038696, 0.5628019571304321, 0.6805315017700195, -0.06710842996835709, 0.09037865698337555, 0.08545897901058197, -0.2706303894519806, -0.3789313733577728, 0.5487877726554871, 1.3121213912963867, 0.8127482533454895, 1.1254860162734985, -0.0843873992562294, -0.7642199993133545, 1.2521202564239502, -0.01109111774712801, 0.3639068603515625, -0.1929236501455307, 0.8371813297271729, 0.959322452545166, -1.02611243724823, -0.31591033935546875, 0.24825625121593475, 0.6040692925453186, 0.270956814289093, -0.33544260263442993, 0.34640073776245117, -0.7459618449211121, -0.23816055059432983, -0.06860313564538956, -0.11242567002773285, 0.8345855474472046, -0.3361330032348633, 0.12810705602169037, 0.0703035444021225, -0.14047099649906158, -0.07113365828990936, -1.115025520324707, 0.6157999038696289, 0.39436623454093933, 0.06295328587293625, 0.3504568040370941, 0.543167769908905, 0.1909523904323578, 0.43908876180648804, -0.30526968836784363, -0.226897194981575, 0.5996558666229248, -0.9477061033248901, 0.032052770256996155, -0.4963730275630951, -0.8081060647964478, -0.7129324674606323, -0.1042327880859375, -0.2812914550304413, -0.3737855553627014, -0.16319699585437775, 0.015188703313469887, 0.2159409523010254, -1.144948124885559, -0.2023714929819107, 0.5076521635055542, 1.1048763990402222, 0.42610716819763184, 0.7892624735832214, 0.5375963449478149, 0.17083200812339783, -0.7844515442848206, 0.27105963230133057, 0.023751288652420044, 0.05005275458097458, -0.5272477865219116, -0.5225417017936707, -0.5142203569412231, 0.2720237672328949, 0.700580894947052, 0.07316657900810242, -0.1612614095211029, 0.29145440459251404, 1.4701759815216064, -0.27437373995780945, -0.30311423540115356, 0.20471744239330292, -0.2736685872077942, 0.8000061511993408, 0.15496855974197388, -1.0692675113677979, -0.524402916431427, 0.039996951818466187, -2.2878384590148926, 1.3484208583831787, -0.063295878469944, -1.5104092359542847, 0.9872170090675354, 0.7629532814025879, 0.1628233790397644, 0.6184849143028259, -0.41858506202697754, 0.35885319113731384, 0.45872732996940613, 0.08027079701423645, -1.2819126844406128, 0.644389271736145, 0.6711283326148987, 0.2500319182872772, -0.7968510985374451, -0.07743779569864273, 0.052919935435056686, 0.18161864578723907, 0.04308338090777397, 0.25970518589019775, 0.5979771614074707, 0.6848933696746826, -0.038654107600450516, 0.2903848886489868, 0.3645493686199188, -0.4442252516746521, 0.45410647988319397, -0.3701859712600708, 1.3300697803497314, -0.23245419561862946, -0.39315760135650635, 0.2071252316236496, -0.8267092108726501, 0.32050833106040955, 0.04649750515818596, -0.6003515124320984, 0.7528823018074036, 0.38175657391548157, -0.25542980432510376, -0.0865967646241188, -0.5826607942581177, -0.7099388241767883, -0.7010423541069031, -0.4818408787250519, 0.8875207304954529, -1.4494191408157349, -0.40382274985313416, -0.7801417708396912, -0.3274930417537689, 0.11788902431726456, -0.32830706238746643, 0.07647708058357239, -1.0972685813903809, -1.2949588298797607, 0.23227231204509735, 0.3347858488559723, 0.35040727257728577, 0.2199544906616211, 0.5445005297660828, 0.27353155612945557, -1.326442003250122, 0.993462860584259, 0.27982693910598755, -2.3016197681427, -0.5840471982955933, -1.4405558109283447, 0.9959320425987244, 0.5930408239364624, 0.46231526136398315, -0.5296108722686768, 1.3732043504714966, -0.7979043126106262, -0.8179145455360413, -0.7485620379447937, -0.7410783767700195, 0.3516814410686493, 0.5323776006698608, -0.7179973721504211, 0.6148132681846619, 0.1775703728199005, -0.5721545815467834, 0.03237473964691162, 0.1987607777118683, -0.7178057432174683, 0.22855976223945618, 0.3569873869419098, 0.33347082138061523, 0.3994547128677368, 1.033132553100586, 0.7817093133926392, 1.3681050539016724, 0.011481720954179764, 1.1486029624938965, -0.379506379365921, 0.03823251649737358, -0.9033800959587097, -0.16856548190116882, -0.8012745976448059, 0.220183864235878, -0.054782770574092865, -1.061328411102295, -0.834469199180603, 0.23917709290981293, 0.7869868278503418, -1.3705605268478394, -0.2497340738773346, -0.29789209365844727, 0.18080544471740723, -0.748896598815918, 0.5070800185203552, 0.1784386783838272, -0.17141859233379364, 0.4628378450870514, -0.27326926589012146, 0.3446418344974518, -0.3505774140357971, 0.0751374214887619, 0.43261662125587463, 0.7653881311416626, -0.2675701081752777, 0.46697336435317993, 0.3717115521430969, -0.07277755439281464, -0.7079558372497559, 0.8410078287124634, 1.2739646434783936, -0.00036851316690444946, 0.5309520363807678, 0.6217482686042786, -0.42704296112060547, -0.14832302927970886, -0.2670688331127167, -0.07666733115911484, -0.6192597150802612, 0.8002907037734985, -0.05745574086904526, 0.27142593264579773, -0.5993104577064514, 0.7251469492912292, -0.13278284668922424, 0.7644402384757996, 1.1431455612182617, 0.18243356049060822, -0.8580314517021179, 0.6801925897598267, 0.8885654211044312, -0.11390797048807144, 0.23089590668678284, 0.527711808681488, -0.11518904566764832, 0.04221891239285469, 0.43453842401504517, 0.3136504292488098, -0.5102981328964233, 0.6051825881004333, 0.5048708319664001, -0.07617082446813583, -0.14634250104427338, -0.31761959195137024, -1.1967179775238037, -0.9191907048225403, -0.208438903093338, -0.2535458505153656, 0.2698003351688385, -1.671939492225647, -1.2076271772384644, 0.13639673590660095, -0.6997429132461548, 0.26320356130599976, -0.5384960174560547, -0.41155341267585754, -0.018249325454235077, 0.05896318331360817, 1.4434400796890259, -0.3155202865600586, 1.5713093280792236, 0.9370355606079102, -0.6856845617294312, -0.18845294415950775, -0.10195514559745789, -0.42177578806877136, 0.2933206558227539, 0.732658863067627, -0.11566250771284103, 0.8052091598510742, -0.6019156575202942, -0.706571638584137, 0.40971875190734863, 0.03421151638031006, 0.5256770849227905, -0.795045793056488, -0.7370737791061401, -0.31011638045310974, -0.040914617478847504, -0.0894622951745987, -0.6057233810424805, -0.3552560806274414, -0.8507340550422668, 0.08234793692827225, -0.05655255913734436, 0.8383944034576416, -0.261196106672287, 1.0087206363677979, 0.34272846579551697, -0.05580443888902664, -0.4694082736968994, -0.7508940100669861, -0.1818847507238388, -0.348381370306015, 0.3751557767391205, -0.16086049377918243, -0.33090609312057495, 0.2935633957386017, -1.0030450820922852, 0.7792062163352966, 0.5448071956634521, 0.12335441261529922, 0.2887111306190491, -0.3752634823322296, -1.2060292959213257, -1.0497721433639526, 0.3299887478351593, 0.738092303276062, 0.6865827441215515, 0.2819784879684448, -0.041440386325120926, -0.71500164270401, 0.07716326415538788, 0.15173690021038055, 0.036002688109874725, 0.9076883792877197, 1.9852453470230103, 1.6679751873016357, 0.11198706179857254, -0.509372353553772, -0.2572029232978821, 0.9054340124130249, -0.6245798468589783, -0.594743013381958, -0.7008996605873108, 0.13449057936668396, 0.04666280746459961], [-0.30578628182411194, 2.1703155040740967, -2.71166729927063, 0.6683415174484253, 0.6857660412788391, 0.15793654322624207, 0.6039053201675415, -0.016628706827759743, 0.046622276306152344, -0.5966033339500427, -1.036144733428955, 0.33358660340309143, -0.04235520586371422, 1.0344665050506592, -0.3348482847213745, 0.6172477006912231, 0.3970845341682434, 0.04063316062092781, 0.004491404630243778, 1.188252329826355, -0.42921561002731323, -0.7816891074180603, -0.42897579073905945, 0.5665960311889648, -0.11354424059391022, -0.20802080631256104, -1.2378050088882446, 0.29404565691947937, -0.7048581838607788, -0.5639029145240784, 1.6224769353866577, -0.2978211045265198, 0.36322295665740967, -0.3967670500278473, -1.2323795557022095, -0.30777740478515625, 0.38721412420272827, -0.4395856261253357, 0.2573506236076355, -0.15092243254184723, 1.6256698369979858, 0.9205251932144165, -0.13825629651546478, -2.020620107650757, -0.25883206725120544, -0.5022032856941223, 0.7894523739814758, -0.5341994762420654, 0.2642999589443207, -1.042009711265564, 0.5268548727035522, 0.0836343914270401, 0.9080925583839417, 1.715732455253601, 0.5605547428131104, -1.5392389297485352, 0.032757483422756195, 0.7474889159202576, 0.10153016448020935, 0.5464491248130798, 0.9229192733764648, -1.202034592628479, 0.2976699769496918, 0.7479187846183777, 0.3024173974990845, -0.3815043568611145, 0.40171515941619873, 0.3191317617893219, -0.037355970591306686, 0.1255231350660324, 0.17837053537368774, 0.612716019153595, -0.6127083897590637, 0.6995983719825745, -0.7270092964172363, 0.37997081875801086, 0.7439711093902588, 0.07329468429088593, -0.584094762802124, 0.6416012644767761, -0.14390704035758972, -0.016272034496068954, 0.7065466046333313, -0.05277622863650322, -0.22677768766880035, 0.10717800259590149, 0.39352497458457947, -0.2649337947368622, -0.6583683490753174, 1.1627097129821777, 0.4411623179912567, 1.3851312398910522, 1.0503934621810913, -0.20163017511367798, 0.0007798541337251663, -0.7801914215087891, 0.11512820422649384, -1.023238182067871, 0.057606156915426254, -0.6257583498954773, -0.03466382622718811, -1.0585801601409912, 1.3375067710876465, 0.34342458844184875, 0.2931046187877655, 0.8861572742462158, -0.378780335187912, -0.3328186571598053, 0.6903886198997498, -0.038785651326179504, -0.3620949387550354, -0.2457689493894577, -0.6673893928527832, -1.3588200807571411, 0.21790865063667297, 1.4665086269378662, 1.515784502029419, 0.3744022250175476, 0.625071108341217, 0.20258116722106934, -0.6888187527656555, -0.6800071001052856, -0.5709298253059387, 0.06125196814537048, 1.4492552280426025, 0.08628850430250168, -0.6481211185455322, -0.2237967699766159, 0.33981087803840637, 0.3775624930858612, 0.43580299615859985, 0.07468758523464203, -0.1045503318309784, 0.35720294713974, 0.049779415130615234, 0.8378692865371704, -0.44730591773986816, -0.9043088555335999, -0.23052994906902313, 0.8134253025054932, 0.06634389609098434, -0.4181945025920868, 0.24978075921535492, -0.24818794429302216, -0.20382344722747803, -1.2597522735595703, 0.8932402729988098, -0.04245857149362564, -0.2398589849472046, 0.633193850517273, -1.2792595624923706, 0.12493958324193954, 0.1656157225370407, 0.6222062706947327, 0.3739071488380432, -0.17308111488819122, 0.41906046867370605, 0.06814826279878616, 0.4235433042049408, 0.44314149022102356, 1.0836988687515259, -0.008790279738605022, -0.3716686964035034, 0.37348228693008423, 0.4324279725551605, 0.047361817210912704, 0.3126259446144104, -0.023036666214466095, -0.4018303155899048, 1.0892382860183716, 0.018100526183843613, -0.9068868160247803, -0.12591272592544556, 0.7213688492774963, 0.11331548541784286, -0.4142829477787018, 0.547204315662384, -0.39115333557128906, -1.1241830587387085, -0.8265394568443298, 1.002173900604248, -0.4617833197116852, 0.907364010810852, -0.2895181477069855, 0.7268968224525452, 0.3778359591960907, 0.22237059473991394, -0.5724111199378967, -0.5809302926063538, -1.2112687826156616, -0.49039921164512634, -0.09047044068574905, -1.462459683418274, 0.37849634885787964, -0.4971584677696228, -0.9727436304092407, 0.6588771939277649, -0.9404937028884888, -0.8084258437156677, 0.4445706009864807, 0.7746853828430176, -0.4460916221141815, -0.631521463394165, 0.05449783429503441, -0.4678463935852051, 0.7635068297386169, 0.21659892797470093, 1.0530434846878052, -0.6299455165863037, 0.4554120898246765, 0.699751615524292, -0.8195674419403076, -1.560896873474121, 0.7890905141830444, -0.534584641456604, -1.2255693674087524, 0.9328722357749939, 0.16441525518894196, 0.017256220802664757, 0.038836244493722916, -0.342072457075119, 1.1871321201324463, 0.1395796537399292, -0.5280283689498901, 0.34765440225601196, -0.973249077796936, -0.5013724565505981, -2.0465614795684814, -0.1506839245557785, -0.31353506445884705, -1.0633713006973267, -1.1917119026184082, 0.4514853060245514, 0.24474868178367615, -1.4723832607269287, 0.4275926351547241, -0.08758160471916199, 0.31008514761924744, -0.22215627133846283, 1.2180445194244385, 0.15788224339485168, 0.8180139660835266, -0.42608365416526794, 0.0001837071031332016, -0.5933375954627991, -0.07538291066884995, 0.6876713633537292, -0.2826189696788788, 0.8684291839599609, 1.4331517219543457, 0.6199986934661865, -0.48946237564086914, 0.6049674153327942, -0.5280619859695435, -0.3981929421424866, -0.8341154456138611, -0.029968174174427986, 0.5177090167999268, -0.5131898522377014, 1.4490805864334106, 0.41842958331108093, -0.9301003813743591, 0.31045001745224, 0.331920325756073, 0.20050114393234253, -0.096643827855587, -0.34835174679756165, -0.798101007938385, -0.07899196445941925, -0.355044424533844, -0.30188262462615967, 0.5257692337036133, 0.1966015249490738, 0.7842814326286316, -0.3718433082103729, -0.7812581062316895, -0.1155647486448288, 0.4551997482776642, -0.5757512450218201, 0.8574078679084778, -1.041512370109558, -1.5057612657546997, -0.6355594396591187, 0.4620135724544525, 0.10231570899486542, 0.19250671565532684, 0.23177005350589752, 0.711763858795166, 0.49469420313835144, 0.2149888128042221, 0.2887275218963623, 0.010760397650301456, 0.6794162392616272, -0.2738569378852844, 0.28814268112182617, 0.21450360119342804, 0.8478872776031494, -0.4066425561904907, -0.9342132210731506, 0.20814642310142517, 0.29834553599357605, 1.4084030389785767, 0.43834540247917175, 1.456676959991455, -0.5882181525230408, -0.0571427196264267, -0.7894995808601379, -0.1650514304637909, -1.374767780303955, -0.06266507506370544, -0.5124865174293518, -1.1770036220550537, -0.7233599424362183, -0.7127424478530884, 0.14295822381973267, 0.13356484472751617, 0.0719216912984848, 0.760807454586029, 0.3491438627243042, 0.30277445912361145, -1.664342999458313, -0.7607272863388062, -0.5562858581542969, -0.7719435691833496, 0.9413571953773499, 2.0257980823516846, -1.480736494064331, 0.07120420038700104, 0.005425245966762304, -0.12310456484556198, 0.4873320460319519, 0.5448099970817566, 0.23335357010364532, -1.3138984441757202, 0.012976037338376045, 0.6214514374732971, 1.1942740678787231, 0.8300880789756775, -0.8656749129295349, -0.550419270992279, 0.4590878188610077, 1.1868858337402344, -0.6664910912513733, -0.14958195388317108, 0.5882123708724976, -0.4631895422935486, -0.03259870037436485, 0.022458873689174652, 0.5190621018409729, 0.457234263420105, -0.6538257598876953, -1.2697858810424805, 0.2629299759864807, -0.07247994840145111, -0.7122573256492615, 0.12289821356534958, 0.40248194336891174, 0.4135652184486389, 0.010373223572969437, -0.31789958477020264, 1.3595033884048462, 0.09155848622322083, -0.015142092481255531, -0.8137333393096924, 0.43697553873062134, 0.6004030108451843, 1.8565385341644287, 0.19662706553936005, 0.7485974431037903, 0.1169772744178772, -0.8251534104347229, 0.18333107233047485, 0.24967196583747864, 0.1115512102842331, 0.38949793577194214, -0.7366570234298706, -0.6142972111701965, -0.9805101752281189, 0.18425260484218597, -0.3103351593017578, 0.12258921563625336, 0.7789059281349182, -0.7684807777404785, -0.7575116157531738, 0.7254637479782104, 0.9198473691940308, -0.7645334601402283, -0.3305755853652954, -0.14802266657352448, 0.629290759563446, -1.1069471836090088, 0.487373411655426, 0.6731224656105042, -0.10583006590604782, 0.4323655366897583, -0.774135410785675, -0.7209610342979431, -0.06011180207133293, 0.29958224296569824, 1.1736479997634888, -1.9411933422088623, -0.4103703200817108, -0.9999472498893738, 0.12500648200511932, 0.6393744349479675, 0.12497974932193756, 0.2055915892124176, 0.33911561965942383, -1.0045462846755981, 0.029550623148679733, 0.6356715559959412, 1.0231070518493652, -0.08087213337421417, 0.10782338678836823, -0.13698126375675201, -0.12831871211528778, -0.07510238140821457, -1.298823356628418, 0.25456365942955017, 0.5947491526603699, -0.4378887116909027, -0.23733817040920258, 0.4550022780895233, -0.5882512927055359, 2.342700958251953, 1.0653496980667114, 0.13408347964286804, -0.11681611835956573, 0.6053239703178406, -0.6606721878051758, -0.21555455029010773, 0.45651471614837646, -0.7408462166786194, -0.5626751780509949, 0.7222787737846375, 0.41960012912750244, 0.7391737103462219, -0.1863388866186142, 0.039282992482185364, 0.5520037412643433, 0.49910181760787964, -0.2161077857017517, -0.6135508418083191, 0.3821268379688263, 0.9328232407569885, 0.9943340420722961, 1.405418038368225, -0.04222039133310318, -0.43291613459587097, 1.0994343757629395, -0.49261876940727234, 0.8650254607200623, 0.7340906858444214, 0.2189476639032364, 1.2419536113739014, -1.0071709156036377, -0.3199462294578552, 0.08662208169698715, -0.3439490795135498, 0.5912795066833496, 0.19206443428993225, 0.6862031817436218, -0.568871796131134, -0.6226322054862976, -0.13147401809692383, -0.9806578159332275, 0.78379225730896, 0.08132176846265793, 0.5830281972885132, 0.30861619114875793, -0.810053825378418, -0.06738198548555374, -0.9155454039573669, 0.33840614557266235, -0.9384481906890869, -0.1531289666891098, 0.7327306270599365, 0.8766766786575317, 0.9303389191627502, 0.07918579876422882, 0.4856049716472626, -1.08182692527771, 0.39366352558135986, -1.0086408853530884, 0.17083021998405457, -0.6090692281723022, -0.1854553073644638, -0.8840025663375854, 0.29828283190727234, -0.19486501812934875, -0.16185320913791656, -0.3833714723587036, -0.6144574880599976, -0.872391402721405, -0.7297526001930237, 0.3763452172279358, 0.4999847114086151, 0.8617062568664551, 0.3661158084869385, 1.0213489532470703, 0.9234192371368408, -0.20060621201992035, -0.6182411313056946, -0.44689950346946716, 0.04410208389163017, 0.025094663724303246, -0.5286387801170349, -0.3539104163646698, -0.7238051295280457, 0.5237129330635071, 0.07880573719739914, -0.4541420340538025, 0.7562187910079956, 0.8717594742774963, 1.3116894960403442, -0.3298301100730896, -0.8810942769050598, 0.754443883895874, -0.13084407150745392, 1.497076392173767, 0.5610450506210327, -0.7111639380455017, -0.17338240146636963, -0.2403419315814972, -1.9472676515579224, 1.6352514028549194, -0.09725139290094376, 0.09971166402101517, 1.043654441833496, 0.24920699000358582, -0.10177414864301682, 0.761100709438324, -0.18865486979484558, 0.47835877537727356, 0.0061479657888412476, -0.4872664213180542, -0.3859347403049469, 0.5527579188346863, 0.6288754940032959, 0.17304149270057678, -0.7605059146881104, 0.750794529914856, -0.5215473771095276, -0.1653524935245514, -0.2732168734073639, 0.119303859770298, 0.5870726108551025, 0.18649786710739136, -0.024837231263518333, -0.18946735560894012, 0.27339503169059753, -1.0867559909820557, 0.1333128660917282, 0.6700828671455383, 0.042370010167360306, 0.49572646617889404, -0.40005168318748474, 0.3090016841888428, -1.0645864009857178, -0.021076951175928116, -0.2082444131374359, -0.5662862062454224, 0.8862771987915039, 0.5478212833404541, -0.14106042683124542, 0.6545767188072205, -0.09940574318170547, 0.12488298863172531, -0.3662674129009247, -0.9200650453567505, 1.2230433225631714, -1.2766008377075195, -0.6721758246421814, -1.234582543373108, -0.028726894408464432, 0.018987208604812622, 0.7424359321594238, 0.26287129521369934, -0.6947627067565918, -0.8006835579872131, -0.5300552845001221, 0.4180055856704712, 0.46112552285194397, -0.34551212191581726, 0.5924155712127686, 0.3368484079837799, -0.717143714427948, -0.37475475668907166, -0.1069083884358406, -2.0915095806121826, 0.23720130324363708, -1.145269513130188, 0.5951610803604126, 0.0704185962677002, -0.057403240352869034, 0.3344801664352417, 1.6803584098815918, -1.6823608875274658, -0.9529657363891602, -0.9595740437507629, -1.0284327268600464, -0.27034395933151245, 0.6409467458724976, -0.9683565497398376, 0.5750844478607178, -0.5992966294288635, -0.09457740187644958, -0.3772925138473511, 0.6767615079879761, -0.4259900152683258, 0.10265936702489853, -0.3993995189666748, -0.03593619540333748, -0.04407941550016403, 1.4761571884155273, 1.1256518363952637, 1.1153645515441895, -0.17221467196941376, 1.6393500566482544, 0.031899645924568176, -0.71015864610672, 0.06217820942401886, 0.3363623321056366, -0.45850062370300293, -0.3264656960964203, 0.735748291015625, -0.7839437127113342, -1.4381992816925049, -0.36639487743377686, 0.8881544470787048, -0.9473684430122375, -0.262922078371048, -0.4649287164211273, -0.5133587718009949, -1.2127045392990112, 0.4921736717224121, 0.6187882423400879, -1.1398180723190308, -0.9375250339508057, -1.0522890090942383, 0.014457550831139088, -1.0849299430847168, -0.5307692289352417, 1.1042722463607788, 0.7936105132102966, 0.06597092002630234, 0.306841105222702, 0.2510250508785248, 0.6080061793327332, -0.194205641746521, 0.8205381035804749, 0.8245493769645691, -0.48900672793388367, 0.0689917504787445, -0.40905633568763733, -0.07115547358989716, 0.09383238106966019, -0.6039118766784668, -0.49755311012268066, -0.4581461548805237, 0.6514028906822205, 0.7612065076828003, 0.20809988677501678, 0.14977221190929413, 1.0488438606262207, -0.012711839750409126, 0.7575300335884094, 1.1691910028457642, -0.6715824604034424, -0.12424701452255249, 1.3346142768859863, 0.09104930609464645, -1.1336382627487183, -0.07538126409053802, 0.11189399659633636, 0.236802875995636, 0.15275420248508453, 0.6302176713943481, 0.6085044145584106, -0.09252399206161499, 0.7184222936630249, 0.26755836606025696, -0.37945985794067383, -0.4947577714920044, 0.12829388678073883, -1.4011770486831665, -0.1550668627023697, -0.8466867804527283, 0.010873749852180481, 0.7227352261543274, -1.3142246007919312, -1.3759011030197144, -0.18438273668289185, 0.044130317866802216, -0.5801359415054321, -0.3124048709869385, 0.3991784155368805, 0.3385436534881592, -0.32926636934280396, 0.7698515057563782, -0.36900368332862854, 1.459916591644287, -0.47890448570251465, -0.12453107535839081, -0.5601319670677185, -0.6004745364189148, 0.1783248484134674, 0.37708383798599243, -0.20695531368255615, -0.5629185438156128, 0.590980589389801, -1.0472009181976318, -0.1577252298593521, 0.18714985251426697, 0.1708875447511673, -0.29580655694007874, -0.6439710855484009, -0.6364837288856506, 0.468809574842453, 0.2668903172016144, 0.31883394718170166, -0.4854390323162079, -0.9834647178649902, -0.6237350702285767, 0.37976792454719543, -0.21841849386692047, 0.510168194770813, -0.2633693516254425, 0.5296983122825623, -0.5822945237159729, -1.260060429573059, -1.2507350444793701, -0.0064911385998129845, 0.8141804337501526, 0.5707946419715881, -0.11341097950935364, -0.28547462821006775, -0.26133331656455994, 0.332155704498291, -0.8896490931510925, -0.2255677431821823, 0.718844473361969, 0.09886234998703003, -0.12840594351291656, -0.8290292620658875, -0.1967087835073471, -0.5005814433097839, 0.16774699091911316, 0.7774906158447266, 0.10146532952785492, 1.1429942846298218, 0.06874305009841919, -0.643234372138977, -0.09466478228569031, 0.3080403506755829, 0.4897631108760834, 0.5828169584274292, 1.3018511533737183, 0.9356774687767029, -0.7565270066261292, -0.4001815915107727, 0.04892275854945183, 0.1657976359128952, -1.1570473909378052, -0.3068975508213043, -0.6119601130485535, 0.03714485839009285, 0.7310871481895447], [-0.7649194002151489, 2.4790279865264893, -2.220818281173706, -0.6594656109809875, 1.4432783126831055, 0.408124178647995, 0.712708055973053, -0.20736682415008545, -0.6210689544677734, -0.5364825129508972, -0.5012758374214172, 0.37325048446655273, -0.5268993973731995, 1.9823492765426636, 0.4944929778575897, 0.6652581095695496, 0.14577476680278778, -0.4764440953731537, -0.6634977459907532, 1.2771587371826172, -0.33483317494392395, -1.3660253286361694, -0.44311976432800293, 0.12494460493326187, 0.21728362143039703, 0.28967007994651794, -1.5606446266174316, 0.18854859471321106, -1.0100696086883545, -0.8902290463447571, 0.7798698544502258, -0.33747559785842896, 0.33855873346328735, -0.18480592966079712, -2.1352221965789795, -0.041038721799850464, 0.8537367582321167, 0.051081933081150055, -0.6400994062423706, 0.03407252952456474, 1.6994518041610718, -0.10049251466989517, 0.0697266235947609, -1.9706270694732666, 0.874595046043396, -0.5177466869354248, 1.265824794769287, -1.0415993928909302, -0.3482908606529236, -0.8922194242477417, 0.18709200620651245, -0.9250320196151733, 0.6825292706489563, 1.1199451684951782, 0.9978298544883728, -0.5743328332901001, 0.16409750282764435, 0.309013694524765, 0.5886062979698181, 0.6297309398651123, 1.1145422458648682, 0.07739844918251038, -0.27420902252197266, 0.5933502316474915, 0.7346831560134888, -0.09110582619905472, 0.13346001505851746, 0.7238999605178833, -0.6577013731002808, 0.6342921257019043, 0.5383192896842957, 0.470777690410614, -0.08461932092905045, -0.45334696769714355, -0.7863868474960327, 0.09115076065063477, 0.49410250782966614, 0.2243499755859375, -0.1105489507317543, 0.7115328907966614, -0.607400119304657, -0.2997519373893738, 0.5146082043647766, -0.6882553696632385, 0.05515044927597046, 0.15431992709636688, -0.292082816362381, -0.510942280292511, -0.15813186764717102, 2.1737403869628906, 0.21862097084522247, 0.35521695017814636, 0.1107143685221672, -0.6957531571388245, 0.19716957211494446, -0.06115960329771042, 0.24240557849407196, -0.8712714910507202, -0.5711269378662109, -0.4474700689315796, -0.5672576427459717, -1.2860664129257202, 0.7003530859947205, 0.631307065486908, 0.2380850464105606, 1.3555018901824951, -0.10783789306879044, -1.2271889448165894, -0.10293525457382202, 0.3256729543209076, 0.35016611218452454, 0.5264518857002258, -1.2320339679718018, -1.1805472373962402, -0.2664646506309509, 0.4590364992618561, 1.4553080797195435, -0.4956306517124176, 0.48198202252388, 0.5800690054893494, -0.07629109919071198, -0.9842737913131714, -0.6946113705635071, -0.1589886099100113, 1.069551706314087, 0.6792346835136414, -0.15718339383602142, -0.3527294397354126, 0.4462553560733795, -0.4240167438983917, 0.23693639039993286, -0.15764476358890533, -1.180497646331787, 0.8112637996673584, -0.3432237207889557, 1.1493220329284668, -0.5325625538825989, -0.8149620294570923, 0.730283796787262, 0.11422962695360184, 0.19115446507930756, -0.17625536024570465, -0.27346089482307434, -0.8315389752388, 0.32606640458106995, -1.115134596824646, 1.0011169910430908, -0.3951120376586914, -0.5830034017562866, 0.49261462688446045, -1.5277118682861328, 0.12308799475431442, 0.30064889788627625, 1.1381022930145264, 0.9508855938911438, 0.2005281001329422, 0.40325868129730225, -0.0649360790848732, 0.31615889072418213, 0.6882988214492798, 1.0070008039474487, 0.5547044277191162, -1.1438480615615845, 0.3442096710205078, 0.17436964809894562, -0.4612570106983185, 0.7536619901657104, 0.6794869899749756, 0.6642106175422668, 0.47301217913627625, -0.3056611120700836, -0.30699509382247925, -0.03822220861911774, 1.1550430059432983, -0.1761125922203064, -0.9458166360855103, 0.578859269618988, -0.28788065910339355, -0.8809565305709839, -1.3813979625701904, 1.0299458503723145, -0.361909419298172, -0.02388123609125614, -0.3382400572299957, 0.26381415128707886, -0.3212382197380066, 0.14463385939598083, -0.06022876501083374, -0.6321389675140381, -0.9104426503181458, -1.539475679397583, -0.41632089018821716, -1.501862645149231, 0.026297586038708687, -0.35217761993408203, -1.4547475576400757, 1.1693429946899414, -0.20555174350738525, -0.6614432334899902, 0.6595377326011658, 0.18626396358013153, -0.5688312649726868, -1.286778450012207, -0.2888837158679962, -0.014485415071249008, 1.0595406293869019, -0.222065731883049, 0.10759522020816803, -0.788342297077179, 0.4429525136947632, 1.493189811706543, 0.18875546753406525, -0.8349051475524902, 0.0714949443936348, -0.3572663962841034, -0.803231954574585, 0.15420538187026978, -0.5680145025253296, 0.28043001890182495, 0.39078137278556824, 0.3005886971950531, -0.10542072355747223, 0.2117011845111847, 0.2949691116809845, 0.4017200171947479, -0.8132923245429993, -0.40678417682647705, -0.8927428126335144, -0.8000749349594116, -0.10378775000572205, -1.1684021949768066, -0.8167775869369507, 0.4536396563053131, 0.45365840196609497, -0.9634456038475037, 0.4139113128185272, 0.053423959761857986, 0.12051618844270706, 0.02739294059574604, 1.2409311532974243, 0.2622545063495636, 0.7994769215583801, -0.07152583450078964, -0.030273789539933205, -1.0701836347579956, -0.23149101436138153, 0.7874334454536438, 0.1320551037788391, -0.10608254373073578, 1.0455514192581177, 0.6020119190216064, -0.09307889640331268, 0.6522156000137329, 0.006833601277321577, -0.0025509349070489407, -0.7180888652801514, 0.3190328776836395, 0.23110981285572052, -0.13785867393016815, 1.3120044469833374, 0.46623966097831726, -1.3900034427642822, -0.18277832865715027, 0.0037544872611761093, 0.10656686872243881, -0.6587857007980347, -0.18185807764530182, -0.848222017288208, 0.26051095128059387, -0.10480205714702606, 0.2115279883146286, 0.5021439790725708, -0.3107249438762665, 1.2077745199203491, -0.460068017244339, -0.7402142286300659, 0.3852164149284363, 0.9781234264373779, 0.5872896313667297, 0.7099516987800598, -0.07660019397735596, -1.428649663925171, -0.6242430210113525, 0.12426099181175232, 0.5050219893455505, -0.05516301840543747, -0.06597694009542465, 1.4287757873535156, 0.34922677278518677, -0.10235609859228134, 0.6324765682220459, 0.22421973943710327, 0.06159088388085365, -0.04442856088280678, 0.6730617880821228, 0.48725542426109314, 0.6751677393913269, -0.7354029417037964, -0.8574385643005371, -0.2411658614873886, -0.10930763930082321, 0.7093014717102051, 0.30038756132125854, 1.3347358703613281, -0.47010546922683716, -0.07107225805521011, -0.009277936071157455, -0.1827252209186554, -0.47694408893585205, -0.18009434640407562, -0.7845717072486877, -0.9018213748931885, 0.05866873636841774, -0.3804919719696045, -0.1652674823999405, 0.3205263018608093, 0.3550955355167389, 1.3033215999603271, -0.04366161301732063, -0.11667530238628387, -1.076521635055542, -0.24476443231105804, -0.5743125081062317, -0.5929208397865295, 0.5463268160820007, 1.864727258682251, -1.0074235200881958, 0.061340052634477615, 0.5398242473602295, -0.6234844326972961, 0.3798283040523529, 0.01831408590078354, -0.06916845589876175, -1.1423143148422241, -0.18346062302589417, -0.5140070915222168, 1.6883403062820435, 0.07735393196344376, -0.8920544981956482, -0.46903103590011597, 0.36712315678596497, 1.1863914728164673, -0.06973718851804733, 0.14267583191394806, 0.5681400299072266, -0.8403348326683044, 0.10632339119911194, -0.3824824094772339, 0.892512857913971, 0.32575610280036926, -1.0958679914474487, -0.3565131723880768, -0.014596759341657162, -0.34039565920829773, -0.43221136927604675, -0.050337862223386765, -0.344808429479599, 0.5353666543960571, -0.3321417272090912, 0.13706529140472412, 1.2238582372665405, -0.698996901512146, 0.1828337013721466, -0.9857528805732727, 0.9108787178993225, 0.19445587694644928, 1.2774783372879028, 0.8291603922843933, 0.2577430009841919, 0.559038519859314, 0.3610922396183014, -0.4184723496437073, 0.26054805517196655, 0.7727867960929871, -0.16215276718139648, -1.0033769607543945, -1.0246992111206055, -0.4792570471763611, 0.1517907828092575, -0.6489312052726746, -0.26385682821273804, 0.3844117522239685, -0.7903397679328918, -1.0718010663986206, 1.0590741634368896, 0.6407283544540405, -0.3670676052570343, -0.22202761471271515, -0.11992155760526657, 0.8867413401603699, -0.5901946425437927, 0.3141702711582184, -0.18776097893714905, 0.1056133359670639, -0.19494469463825226, -0.6055932641029358, -1.2678964138031006, -0.9323115944862366, 0.16869641840457916, 1.082732915878296, -1.2082549333572388, -0.3140445649623871, -0.02359742484986782, 0.3318338692188263, 0.9102882742881775, 0.0067736078053712845, 0.41420677304267883, 0.4681871831417084, -0.07492201775312424, 0.6229435801506042, 1.0116019248962402, 1.1180975437164307, -0.0036054099909961224, -0.048914823681116104, -0.48971039056777954, -0.010614006780087948, 0.5113957524299622, -0.884983241558075, 0.02124783582985401, 0.19018852710723877, -0.8535968661308289, -0.24383029341697693, 0.25663354992866516, 0.13170477747917175, 1.2186154127120972, 0.5876305103302002, 0.6297159790992737, 0.5368555784225464, 0.23927250504493713, -0.6010329127311707, -0.39941683411598206, 0.06451579928398132, -0.11844661086797714, -0.623676061630249, 0.06534551829099655, 0.43929755687713623, 0.4094257950782776, -0.0857226774096489, -0.33657699823379517, 0.6754085421562195, -0.097539022564888, -0.5710791349411011, -0.2511316239833832, 0.20065967738628387, 0.9627484679222107, 1.2636665105819702, 1.5976516008377075, -0.37807995080947876, -1.5287933349609375, 0.8981335759162903, -0.6190513372421265, 0.12391025573015213, 0.8125998973846436, 0.38840827345848083, 1.7531757354736328, -1.1327506303787231, -0.7362683415412903, 0.6239657998085022, -0.16783680021762848, 0.1700192093849182, -0.38897785544395447, 0.7270027995109558, -0.3503451645374298, -0.1568753719329834, 1.1910743713378906, 0.05160706862807274, 0.8709784746170044, -0.3755112886428833, 0.6043208241462708, -0.052022162824869156, -0.24691563844680786, 0.2574620544910431, -0.6487954258918762, 0.4748481810092926, -0.36782094836235046, 0.2710762619972229, 0.9335544109344482, 0.14471708238124847, 0.47070083022117615, 1.3129886388778687, 0.27041107416152954, -1.4719138145446777, 0.15284501016139984, -0.7487406134605408, -0.31560274958610535, 0.0065343924798071384, 0.04188684746623039, -0.0802546888589859, -1.0146548748016357, -0.36091354489326477, -0.06473392993211746, -0.34082940220832825, -0.9916899800300598, -0.7169895172119141, -0.5270101428031921, 0.639970600605011, 0.18756702542304993, 1.0608360767364502, 0.41958221793174744, 0.6664689779281616, 0.6744211316108704, 0.31721392273902893, -1.0172820091247559, -0.061662912368774414, -0.00963938981294632, 0.03569108620285988, -0.3266216814517975, -0.5341108441352844, -0.5776461958885193, 0.8217843770980835, 0.4511914551258087, 0.29694899916648865, 0.3288562595844269, 1.0855549573898315, 0.9926614761352539, -0.31135284900665283, -0.7437666654586792, -0.30519601702690125, -0.3110855221748352, 1.5586936473846436, 0.8319690823554993, -0.8370708227157593, -0.43441152572631836, -0.5205145478248596, -2.323834180831909, 1.5958887338638306, -0.21954753994941711, -0.8888206481933594, 0.9144603610038757, 0.23905444145202637, 0.29525870084762573, 0.7498184442520142, -0.0761881023645401, 0.013845138251781464, 0.25948914885520935, -0.4570367932319641, -0.7347927689552307, 0.3077743649482727, 0.03689330071210861, 0.0005068590398877859, -1.6435273885726929, 0.2452026605606079, 0.1021452248096466, -0.6137007474899292, 0.9743183255195618, 0.5600924491882324, 0.37120506167411804, 0.13142672181129456, -0.21861635148525238, -0.2662394344806671, 0.5441733598709106, -0.2350347936153412, 0.22130174934864044, -0.5160596370697021, 0.28400519490242004, 0.1795896738767624, -0.11468935757875443, -0.46232372522354126, 0.45990151166915894, -0.11543173342943192, -0.10507262498140335, -0.6108360290527344, 0.6308832168579102, 1.043999195098877, -0.6077004075050354, 0.32762250304222107, -0.2426607608795166, -1.168096899986267, -0.8762409687042236, -0.49531203508377075, 0.8219517469406128, -0.9678253531455994, 0.06660202890634537, -0.7773784399032593, -0.4069754183292389, -0.25820910930633545, 0.581953227519989, -0.09420575946569443, -1.492296576499939, -1.6094958782196045, -0.29114294052124023, 0.17475281655788422, 0.36988022923469543, -0.7163670659065247, 1.1942999362945557, 0.01002766378223896, -1.3951643705368042, 0.9087938070297241, -0.22366616129875183, -1.3969224691390991, -0.7534480094909668, -1.2137138843536377, 0.8478817343711853, 0.1158866360783577, -0.6295368075370789, 0.15982945263385773, 0.5788632035255432, -1.402449131011963, -0.8634750843048096, -0.2672297954559326, -0.37603864073753357, 0.680700421333313, 0.44516825675964355, -0.43691036105155945, 0.8713770508766174, 0.002583000808954239, -0.2572902739048004, -0.16733576357364655, 0.4378628730773926, -1.3781377077102661, 0.20728753507137299, 0.4326435923576355, 0.353603333234787, 0.31623896956443787, 2.105255603790283, 1.336608648300171, 1.1226778030395508, -0.8716340661048889, 1.7453553676605225, -0.4762609899044037, -0.5879030227661133, -0.1289815902709961, 0.23139439523220062, -1.654962182044983, -1.0865468978881836, 0.5594034194946289, -1.1004548072814941, -1.033743143081665, 0.23564240336418152, 1.2969387769699097, -0.4764823615550995, -0.11416836827993393, -0.191053569316864, 0.54887855052948, -1.196495771408081, 1.0645517110824585, 0.6727068424224854, -1.361617088317871, -0.07111872732639313, -0.30614280700683594, 1.251572847366333, -0.8347988724708557, 0.37302252650260925, 0.4304434061050415, 0.6019600033760071, -0.3528505563735962, 0.24717387557029724, 0.26547443866729736, 0.2608877122402191, -1.0246955156326294, 1.1197854280471802, 0.7056267857551575, -0.4730151891708374, 0.03575733304023743, 0.6711963415145874, -0.13961981236934662, 0.29131579399108887, -0.15493392944335938, 0.07887300848960876, -0.579892635345459, 0.7790151238441467, 0.17590832710266113, 0.2824185788631439, -0.20517970621585846, 0.9999892115592957, 0.09965954720973969, 0.7470842599868774, 1.239811897277832, -0.9346896409988403, -0.46685129404067993, 0.932605504989624, 0.5001912713050842, -0.594331681728363, 0.14453931152820587, 0.4654100239276886, -0.29263320565223694, 0.23759271204471588, 0.8469697833061218, 0.5181365609169006, -0.7112112045288086, 0.6524080634117126, 0.38516566157341003, -0.535884439945221, -0.5868843793869019, -0.06198957562446594, -1.636223554611206, -0.0580270029604435, -0.3822576105594635, -0.3461126983165741, 0.6777318120002747, -0.37797513604164124, -1.778073787689209, -0.40185555815696716, -0.7777227163314819, -0.40570926666259766, 0.03830066695809364, -0.1547538787126541, 0.03268156945705414, -0.2346331775188446, 1.2383244037628174, -0.16100139915943146, 2.3410892486572266, -0.022558411583304405, 0.03646191582083702, -0.08871327340602875, 0.4236946105957031, 0.16633340716362, 0.3807854652404785, -0.21234381198883057, -1.048617959022522, 0.7826122045516968, -0.8697302937507629, -0.4247097373008728, 0.512497067451477, 0.23377203941345215, 0.6761561036109924, -0.4520946443080902, -0.4054476320743561, 0.7344694137573242, 0.5006352066993713, 0.953070342540741, -1.0278793573379517, -1.1524553298950195, -0.6871097683906555, 0.11977832764387131, -0.3830382227897644, 0.4584328532218933, -0.32487037777900696, 0.29822516441345215, 0.9952949285507202, -0.8895693421363831, -0.3758507966995239, -0.15945956110954285, 0.700325071811676, -0.27220600843429565, 0.34867072105407715, -0.22921064496040344, -0.23723119497299194, 0.34822919964790344, -0.8697436451911926, 0.46078088879585266, 0.15480327606201172, -0.4406888484954834, 0.2614502012729645, -0.3313191831111908, -0.5482163429260254, -0.8124369978904724, 0.02967584878206253, 0.46597450971603394, 0.4552929103374481, 0.018739696592092514, -0.017277128994464874, -1.0594714879989624, 0.3722946047782898, 0.645911455154419, -0.12622441351413727, 0.646531343460083, 1.7345106601715088, 0.8810498118400574, -0.3662629723548889, -0.18359620869159698, -0.3065931797027588, 1.1069188117980957, -0.7831209897994995, -0.16031916439533234, -0.4409601390361786, 0.04609034210443497, -0.7559508085250854], [0.7504335045814514, 1.689741849899292, -2.3607563972473145, 0.19870947301387787, 0.2767174243927002, 0.6186822056770325, 0.790856122970581, -0.4444393813610077, 0.12144254893064499, -0.6816451549530029, -0.5905376672744751, 0.18071922659873962, -0.3686829209327698, 0.14445848762989044, 0.12069172412157059, 0.7468646764755249, 1.0176640748977661, -0.31719839572906494, -0.6082623600959778, 1.7990318536758423, -0.2425176203250885, -1.1751928329467773, -0.42213350534439087, 0.2080996185541153, 0.06806621700525284, 0.22483985126018524, -1.335637092590332, 0.18242178857326508, -1.6308504343032837, -0.5295403599739075, 1.6039468050003052, -0.49958840012550354, 0.7745769023895264, 0.3707874119281769, -1.8113714456558228, 0.8835211396217346, 0.9444365501403809, 0.5680149793624878, -0.2566547989845276, 0.36664360761642456, 1.5274215936660767, 0.35006284713745117, -0.03407268598675728, -1.619950294494629, 0.26678770780563354, -0.7741285562515259, 1.325928807258606, -0.9473730325698853, 0.739611804485321, -0.4877997636795044, 1.1154159307479858, -0.15268132090568542, -0.3529738783836365, 0.9109992980957031, 0.6550408005714417, -1.0381215810775757, 0.06922295689582825, 0.36701443791389465, 0.37684008479118347, 0.16815978288650513, 1.401371955871582, -0.7142707705497742, 0.6837170720100403, 0.6063942909240723, 0.29710426926612854, -1.156261920928955, 0.35722100734710693, 0.32891836762428284, -0.05090983957052231, -0.03782209753990173, 0.8117111325263977, 1.0244803428649902, -0.28271055221557617, 0.8986806273460388, -0.9608955979347229, 0.9229522943496704, 0.6119371652603149, 0.2938145399093628, -0.23323044180870056, 0.0438908115029335, 0.36149105429649353, -1.0690929889678955, 0.3930628001689911, -0.43660491704940796, -0.27584943175315857, 0.3265365660190582, 0.44617578387260437, -0.5092285871505737, -0.451593816280365, 0.9801449179649353, -0.005818675272166729, 0.03860282152891159, 0.7798327803611755, -0.264629602432251, 0.15530632436275482, 0.22933518886566162, -0.8871899843215942, -1.1718060970306396, -0.6947609782218933, -0.7753238081932068, -0.3752211332321167, -0.23943088948726654, 0.6459067463874817, 0.7678413987159729, 0.3506700396537781, 0.8649312853813171, 0.4641495943069458, -1.1294596195220947, 0.6896557807922363, 0.37303635478019714, -0.5834513306617737, 0.17412373423576355, -0.8930506706237793, -1.8084774017333984, -0.8253180384635925, 0.9752897620201111, 1.5679309368133545, -0.05307117849588394, 0.8424788117408752, 0.06909483671188354, -0.5615843534469604, -0.6616057753562927, 0.14935633540153503, -0.027365608140826225, 1.3380478620529175, 0.722282350063324, -0.14781785011291504, -0.1152934581041336, 0.11319281160831451, 0.0845353901386261, 0.34421947598457336, -0.13065573573112488, -0.2532859742641449, 0.16395089030265808, -0.22442536056041718, 0.5322527885437012, -1.4693877696990967, -1.1732509136199951, 0.4470865726470947, 1.04398775100708, 0.38792985677719116, -0.10503019392490387, 0.14480793476104736, -0.1839619129896164, 0.13787251710891724, -0.22880537807941437, 0.39868879318237305, -0.31491023302078247, -0.30856838822364807, 0.5611141324043274, -1.2180255651474, 0.5128363370895386, -0.11804164201021194, 0.6462087631225586, 0.3622162342071533, -0.005954283755272627, 0.3314397931098938, -0.24795298278331757, 0.24157743155956268, 0.3702687919139862, 0.9087294340133667, 0.4437817633152008, -0.4059934616088867, -0.0582679882645607, 0.865790843963623, 0.014936540275812149, 0.2389330267906189, -0.19242453575134277, -0.16234295070171356, 1.133326768875122, 0.15124641358852386, -0.4122910499572754, -0.04268333315849304, 0.6076130270957947, 0.2693651020526886, -0.592223584651947, 0.7222095131874084, -0.4736066460609436, -1.5558792352676392, -1.0139206647872925, 1.016671895980835, -0.4572919011116028, 0.29125699400901794, -0.019939614459872246, 0.5613739490509033, -0.4294058382511139, 0.18850041925907135, -0.20466020703315735, -0.5768039226531982, -0.8429688811302185, -0.42388200759887695, 0.3260466158390045, -1.271389126777649, -0.7036328911781311, -0.5344959497451782, -0.9140164852142334, 1.2085717916488647, -0.39700961112976074, -0.7560828924179077, 0.28087788820266724, 0.2600965201854706, -0.5169994235038757, -1.3793281316757202, -0.003347208956256509, -0.36985960602760315, 1.5799168348312378, -0.49869394302368164, -0.1383741796016693, -1.2572438716888428, -0.017204180359840393, 1.0537887811660767, -0.662290632724762, -1.1396403312683105, 0.14408718049526215, -0.17464858293533325, -0.8458508253097534, 0.14103963971138, -0.5232548117637634, -0.4426005184650421, -0.6481804251670837, 0.10620176047086716, 0.5412424206733704, 0.19594459235668182, -0.6383545398712158, 0.2621840536594391, -0.4899895489215851, -0.05691233277320862, -0.7229459881782532, 0.171064093708992, -0.3831273913383484, -1.07696533203125, -0.7316064238548279, 0.25931400060653687, 0.6736383438110352, -1.3949483633041382, 0.27648526430130005, -0.043398648500442505, 0.053154632449150085, 0.11609719693660736, 1.2920223474502563, 0.6617720723152161, 0.5133626461029053, -0.5795900821685791, 0.7851282358169556, -0.7034751176834106, -0.7480969429016113, 0.749515175819397, -0.33780229091644287, -0.07456060498952866, 1.5145539045333862, 0.9622921943664551, 0.9676850438117981, 0.1878441721200943, -0.36156219244003296, -0.2538236379623413, -0.2256891131401062, -0.6818530559539795, 0.2938174307346344, -0.8131480813026428, 1.6068252325057983, 0.5693600177764893, -0.7400466799736023, 0.605400800704956, -0.4989689886569977, 0.10111706703901291, -0.8605419993400574, -0.2537168860435486, -0.35685017704963684, 0.5790306329727173, -0.5826249718666077, -0.09241360425949097, 0.5126715302467346, 0.6448574662208557, 0.8588740229606628, -0.14179803431034088, -0.3786434531211853, 0.20853880047798157, 0.6175076365470886, -0.23749005794525146, 1.0889027118682861, -0.7007350325584412, -0.6412643194198608, -1.30219304561615, -0.14989106357097626, 0.0008737463504076004, -0.13505248725414276, 0.4226876199245453, 1.645176887512207, 0.13073137402534485, -0.6493910551071167, 0.10207628458738327, 0.1596752554178238, 0.12505288422107697, -0.3250342309474945, 0.993736207485199, 0.11326295137405396, 0.5904319286346436, -0.8934465050697327, -1.1035466194152832, 0.13878382742404938, 0.3970980644226074, 0.8441182971000671, 0.4024771451950073, 1.2476005554199219, -0.3341819643974304, 0.054096248000860214, -0.6500962376594543, 0.14137206971645355, -1.1138864755630493, -0.2504931390285492, -0.04887927323579788, -0.7480760216712952, -0.26706841588020325, -0.49825021624565125, -0.26279181241989136, 0.7149470448493958, 0.5108768343925476, 0.5587802529335022, 0.6412162780761719, 0.2725962698459625, -1.4087607860565186, 0.1461978554725647, -0.2561440169811249, -0.918258547782898, 0.517292320728302, 1.6168344020843506, -0.9684932827949524, 0.4084591269493103, -0.07679546624422073, -0.17017421126365662, -0.3347622752189636, -0.06661687791347504, 0.5035341382026672, -1.001155138015747, -0.24299050867557526, 0.2092919647693634, 0.6878076791763306, 0.28949227929115295, -0.23064938187599182, -0.22490744292736053, 1.1877591609954834, 1.2697386741638184, -0.2356845736503601, -0.23309551179409027, 0.16842404007911682, -0.5010843276977539, -0.5732119083404541, -0.0882287472486496, 1.170897364616394, -0.2780255973339081, -0.8534107208251953, -0.6724709868431091, -0.23774924874305725, -1.02273690700531, -0.12604016065597534, 0.30265355110168457, -0.45711690187454224, 0.7111272215843201, -0.4803682863712311, 0.5415697693824768, 0.7415429949760437, 0.16681639850139618, -0.1432323157787323, -1.2885380983352661, 0.8741559982299805, 0.2865985333919525, 1.3105897903442383, -0.5400766730308533, 0.34354326128959656, 0.5576730966567993, -0.4075947105884552, -0.16203926503658295, 0.1587173491716385, 0.7597883343696594, 0.31850528717041016, -0.6110297441482544, -0.1491534411907196, -0.6717999577522278, 0.19355008006095886, 0.04731752723455429, 0.06164296343922615, 0.33586567640304565, -0.9597445130348206, 0.19216981530189514, 1.0301234722137451, 0.6636548638343811, -0.19468052685260773, -0.5495100617408752, -0.437660276889801, 0.2821667194366455, -0.9151266813278198, 0.37890735268592834, -0.1270136535167694, -0.605991780757904, 0.6605161428451538, -1.1286717653274536, -0.6571959257125854, 0.09185203909873962, 1.0153586864471436, 1.2884547710418701, -1.2093775272369385, -0.33842307329177856, -0.7075318694114685, -0.2555044889450073, 0.5133722424507141, 0.7704019546508789, 0.2839670479297638, 0.6636375784873962, -0.228105828166008, 0.41550958156585693, -0.050659600645303726, 1.3586119413375854, -0.25667062401771545, -0.12357170879840851, 0.4475741386413574, 0.0429488942027092, 0.09934714436531067, -0.7655459046363831, 0.3816955089569092, 0.2660703659057617, -0.5206890106201172, -0.4060838222503662, 0.25679704546928406, -0.4515193998813629, 1.6522055864334106, 0.7011063694953918, 0.10082700848579407, -0.4729602634906769, 0.22494074702262878, -0.8451823592185974, 0.6927960515022278, 0.5089006423950195, -1.3511604070663452, -0.7997052073478699, -0.005263104569166899, 0.37778156995773315, 0.5867313146591187, 0.2758883833885193, 0.1563410758972168, 0.7422108054161072, 0.11824077367782593, 0.1435486227273941, 0.5932440161705017, 0.5226824879646301, 1.3705366849899292, 0.31571102142333984, 1.1584031581878662, 0.12944908440113068, -0.5754334330558777, 1.0158271789550781, -0.2752155661582947, 0.1558026373386383, 0.6420750021934509, 0.31766989827156067, 0.8038639426231384, -0.9401344656944275, 0.06525032222270966, 0.9185210466384888, 0.16847702860832214, 0.8555944561958313, 0.13578857481479645, 0.48966270685195923, -0.17397437989711761, 0.16680379211902618, 0.9742014408111572, -0.03936086595058441, 0.4689605236053467, 0.1434505134820938, 0.8747742772102356, -0.04630795866250992, -0.7934767603874207, 0.54790860414505, -0.9869194626808167, 0.537727952003479, -0.55904221534729, -0.8302085399627686, 0.12706635892391205, 0.6743824481964111, 0.8628690242767334, 1.0227717161178589, -0.34230339527130127, -0.19249315559864044, 0.31305909156799316, -1.0371606349945068, 0.4654666781425476, -0.5627639293670654, 0.3083131015300751, -0.8158736228942871, 0.26558420062065125, 0.5860747694969177, -0.04916249215602875, -0.18042664229869843, -0.681204080581665, -1.0929045677185059, -0.8962419033050537, 0.9972810745239258, 0.5335223078727722, 0.6373669505119324, 0.2477426677942276, 0.33459433913230896, 0.5156333446502686, 0.315009742975235, -1.5199589729309082, -0.29039981961250305, 0.43233540654182434, 0.34459125995635986, -0.26089656352996826, -0.5595566034317017, -0.9297928810119629, 0.11775553971529007, -0.01813359558582306, -0.19273430109024048, -0.3005933165550232, 0.9933918714523315, 0.8800352215766907, -0.3076339662075043, -1.0492453575134277, 0.4757658839225769, -1.4099783897399902, 0.9166457653045654, 0.02375977858901024, -0.4297330677509308, -0.5681005716323853, -1.03632390499115, -1.2579950094223022, 1.1956268548965454, 0.1259678155183792, -0.0707540214061737, 0.6108753681182861, 1.0478160381317139, -0.027683299034833908, 1.1115845441818237, 0.17136506736278534, 0.3046655058860779, -0.4200807511806488, -0.17358511686325073, 0.06278597563505173, -0.009183445945382118, 0.5237331390380859, -0.989968478679657, -1.231292963027954, 0.906999945640564, 0.13915705680847168, -0.07676529884338379, -0.8661406636238098, 0.855338454246521, 0.0666026845574379, 0.8561550974845886, 0.16994714736938477, 0.2364019751548767, 0.6089984774589539, -1.259565830230713, -0.4826389253139496, 0.4042101800441742, 0.6062143445014954, 0.19452382624149323, 0.4217888414859772, 0.7865745425224304, -0.7737679481506348, -0.4189031422138214, -0.07126986980438232, -1.069191336631775, 0.3400746285915375, 0.17271876335144043, 0.31084054708480835, 0.5510172247886658, -0.5394756197929382, -0.31094977259635925, -1.0220530033111572, -0.6004124879837036, 1.1376398801803589, -0.6489476561546326, -0.8781231641769409, -0.3239724338054657, -0.4104510247707367, -0.15643423795700073, 0.09415005892515182, -0.3853599727153778, -0.8458418846130371, -1.3615344762802124, 0.011305471882224083, -0.30538323521614075, 0.8098970055580139, -0.17376410961151123, 0.5670691728591919, -0.34664228558540344, -0.9553684592247009, -0.3122172951698303, 0.30790281295776367, -2.2378153800964355, 0.02819063700735569, -0.4745297431945801, 0.4941195249557495, -0.09379834681749344, -0.14899280667304993, -0.08681046217679977, 1.2939651012420654, -1.399700403213501, -0.5507564544677734, -0.582623302936554, -0.41761314868927, 0.7761201858520508, 1.2824645042419434, -0.8017466068267822, 0.8385739922523499, -0.46855872869491577, 0.27335524559020996, -0.6353262662887573, 0.5129974484443665, -0.8913396000862122, 0.26811766624450684, -0.046373363584280014, 0.21139344573020935, 0.12051323056221008, 1.9173073768615723, 0.7943551540374756, 0.6743319034576416, 0.06734073907136917, 0.9129050374031067, -1.243967890739441, -0.21671772003173828, 0.07452426850795746, 0.45078831911087036, -0.6613683104515076, -0.607411801815033, 0.4480733573436737, -0.6313478946685791, -1.3841625452041626, -0.5613203644752502, 0.5531311631202698, -0.6445790529251099, 0.5200105905532837, -0.6519443988800049, -0.26511162519454956, -0.5150566697120667, 0.5391306281089783, 0.32811519503593445, -0.5345929861068726, -0.2272442877292633, -0.46908411383628845, 0.789429247379303, -0.5007205605506897, -0.14175571501255035, 1.0212234258651733, 0.24997152388095856, -0.847073495388031, -0.3753597140312195, 0.13867641985416412, 0.48016682267189026, -0.35932886600494385, 1.3443430662155151, 1.0410341024398804, 0.46856826543807983, -0.2049187868833542, -0.23703746497631073, 0.01174258068203926, 0.4749997854232788, -0.6658336520195007, -0.2630385756492615, -0.2369338870048523, 0.5537044405937195, -0.003368138102814555, 0.08426576852798462, 0.6693430542945862, 0.8590095639228821, -0.13432736694812775, 0.5146406888961792, 0.4344784915447235, -0.9792851805686951, -0.1608411818742752, 1.4213778972625732, 0.6891998648643494, -1.1844089031219482, 0.3226476013660431, 0.07035671174526215, 0.17725317180156708, 0.5058701038360596, 0.6285148859024048, 0.17111550271511078, -0.4028202295303345, 0.6764070987701416, 0.8949289321899414, -0.8955102562904358, -0.2706959843635559, -0.5373691320419312, -1.204752802848816, -0.02082490548491478, -1.0262819528579712, -1.2547221183776855, 0.4788341224193573, -1.6099153757095337, -1.2334734201431274, 0.29345670342445374, -0.4898206889629364, -0.09753071516752243, -0.7924814224243164, 0.45229798555374146, 0.6775935292243958, -0.7031345367431641, 0.5302512049674988, -0.3865011930465698, 1.4040542840957642, -0.3014121651649475, -0.2714996337890625, -0.8549771904945374, -0.3990103602409363, 0.48056185245513916, -0.2311154454946518, -0.02829698473215103, -0.02449602074921131, 0.5603448748588562, -0.4075194001197815, -0.6352673172950745, -0.22188524901866913, 0.32945141196250916, 0.00423634797334671, -0.19346120953559875, 0.03423279523849487, 0.6794030666351318, 0.4719393849372864, 0.48174580931663513, -0.9903152585029602, -0.5252503752708435, -1.0698045492172241, 0.47659537196159363, -0.3673611581325531, 0.5859585404396057, -0.4429267346858978, 0.3810824155807495, 0.2525222599506378, -0.6349114775657654, -0.4921755790710449, -0.5852593183517456, 0.28848758339881897, 0.4639725983142853, -0.47604039311408997, -0.4404703974723816, -0.2605415880680084, 0.39788979291915894, -1.0494167804718018, -0.39817702770233154, -0.04368015006184578, 0.25369587540626526, 0.5074400305747986, -0.6379926800727844, -0.4294309616088867, -0.6004143357276917, 0.2957930266857147, 0.6130362749099731, 0.8144111633300781, 0.36435574293136597, 0.3368076682090759, -0.7970595359802246, 0.5903449058532715, 0.6046696305274963, 0.36327633261680603, -0.03798370808362961, 0.7689827680587769, 0.9330302476882935, -0.6172649264335632, -0.45454472303390503, -0.541027307510376, 0.2913293242454529, -1.0219323635101318, -0.10272563248872757, -1.0679879188537598, -0.13301321864128113, -0.15965121984481812], [0.4934995472431183, 1.1374735832214355, -2.615983009338379, 0.4353025257587433, 0.9110274910926819, 0.9075161218643188, 0.5224610567092896, 0.3975931406021118, -0.0006017535924911499, -0.22775974869728088, -0.9430657625198364, 0.3153951168060303, -0.15697766840457916, 0.06726504117250443, -0.1831335425376892, 0.6808704733848572, 0.6106845140457153, 0.2740751802921295, 0.5368601083755493, 1.3537812232971191, -0.6891371011734009, -0.595007061958313, -0.8034354448318481, 0.3528822064399719, -0.231909841299057, 0.2445254921913147, -1.8751882314682007, 0.36098891496658325, -1.1930923461914062, -1.1773567199707031, 1.156862735748291, -1.053160548210144, 0.029034171253442764, -0.32029905915260315, -1.5036334991455078, -0.09624707698822021, 0.4397602081298828, -0.1740018129348755, -0.20918160676956177, -1.2341326475143433, 1.4889028072357178, 0.9356822967529297, -0.7306705713272095, -1.2087950706481934, -0.09023240208625793, 0.022127509117126465, 1.4724749326705933, -0.9157128930091858, 0.27028003334999084, -0.2779489755630493, 0.7813787460327148, 0.6016747951507568, 0.5880955457687378, 1.4582550525665283, 0.637021541595459, -0.8726344108581543, 0.5845130681991577, 0.6950201988220215, 0.311301589012146, 0.2095206081867218, 1.2197414636611938, -0.9516311883926392, 0.8858785629272461, 0.9875635504722595, 0.1683221161365509, -0.45513999462127686, 0.41848891973495483, 0.18803347647190094, 0.5204953551292419, -0.5220601558685303, 0.7544479966163635, 0.5142907500267029, 0.13427916169166565, 0.514228880405426, -1.1035873889923096, 0.07315999269485474, 1.012553095817566, 0.07288628071546555, -0.3677799701690674, 0.12781041860580444, -0.3749648928642273, -0.4261782765388489, 0.28439533710479736, -0.4447248578071594, -0.5076330900192261, 0.643638014793396, 0.1096593365073204, -0.5279079675674438, 0.05877513438463211, 1.0788533687591553, 0.19021081924438477, 1.1284611225128174, 0.6472841501235962, 0.3117874264717102, -0.2144204080104828, -0.2795799970626831, -0.5700259208679199, -0.7976300716400146, -0.47263744473457336, -1.3100954294204712, -0.4132120609283447, 0.045862700790166855, 0.6301048994064331, 0.588711142539978, -0.2551227807998657, 1.2377352714538574, 0.09816683083772659, -1.166703701019287, 0.5946750640869141, -0.02303718775510788, -0.32381904125213623, 0.06588417291641235, -0.4348669648170471, -1.4601681232452393, -0.23248541355133057, 0.9199464321136475, 1.7310240268707275, 0.5399475693702698, 1.0821534395217896, 0.9394726753234863, -0.4100605845451355, -0.2541923522949219, -0.0599723681807518, 0.04652812331914902, 0.842807948589325, 0.606156587600708, -0.8160338997840881, -0.47887563705444336, 0.9471061825752258, -0.2648474872112274, 0.8763704299926758, -0.0606328621506691, 0.5660324096679688, 1.1049927473068237, -0.7430588006973267, 0.46992725133895874, -0.27195313572883606, -0.8239504098892212, 0.1762394905090332, 0.70196533203125, 0.8421833515167236, -0.2177850753068924, -0.019963044673204422, -0.5889990329742432, 0.007347438484430313, -0.20494578778743744, 0.40864723920822144, -0.5107896327972412, -0.8129923939704895, 1.2891892194747925, -0.829627513885498, 0.708783745765686, 0.6470333933830261, 0.6735018491744995, 0.6372513771057129, -0.5636424422264099, 1.299467921257019, -0.47821784019470215, 0.3989684581756592, 0.24287867546081543, 0.9764899015426636, 0.5095363855361938, -0.37578946352005005, -0.08227936923503876, 0.5110040903091431, -0.3828067481517792, 0.45567578077316284, 0.080407053232193, -0.34048259258270264, 1.190159797668457, -0.2058432251214981, -1.1380441188812256, -0.25998806953430176, 0.6894172430038452, 0.02262183092534542, -0.6075332164764404, 0.47028428316116333, -0.4373622238636017, -1.4052062034606934, -0.37367749214172363, 1.651094913482666, -0.3348401188850403, 0.3211783170700073, 0.26836907863616943, 0.246662437915802, 0.21286514401435852, -0.238918736577034, -0.6815578937530518, -0.5199477672576904, -0.940482497215271, -0.5430505871772766, 0.37194108963012695, -1.4856882095336914, 0.23761244118213654, -0.06241844967007637, -1.0847814083099365, 0.39043641090393066, -1.10889732837677, -0.44326087832450867, 1.1822229623794556, 0.38069790601730347, 0.11510799080133438, -0.5594048500061035, -0.35173898935317993, -0.4288681745529175, 1.0650111436843872, -0.19075801968574524, 0.2815222144126892, -0.4971165060997009, 0.3824034631252289, 0.7778891324996948, -1.0513768196105957, -1.3662691116333008, 0.1839534193277359, 0.4957374334335327, -1.224216341972351, 0.6046725511550903, -0.2048901915550232, -0.12197840213775635, -0.7280256748199463, 0.13316945731639862, 0.8133536577224731, 0.3957168459892273, 0.15098141133785248, 0.4618993401527405, -0.09235435724258423, -0.12125781923532486, -1.2923963069915771, 0.29256707429885864, -0.7178041338920593, -0.5416393876075745, -1.1011137962341309, 0.2386331856250763, 0.45189741253852844, -1.1559009552001953, 0.2555781602859497, 0.2631351351737976, 0.11615709960460663, -0.08670182526111603, 1.5959899425506592, 0.41540032625198364, 1.0384297370910645, -0.6261606216430664, 0.003989465534687042, -1.1420648097991943, 0.0735776498913765, 1.0931248664855957, -0.27909135818481445, 0.12465696781873703, 1.7760597467422485, 1.0377131700515747, -0.06139405816793442, 0.4961504340171814, -0.6970357894897461, -0.1812095046043396, -0.4632145166397095, -0.27811264991760254, 0.604106068611145, -0.7016574144363403, 1.7578482627868652, 0.7723181247711182, -0.7078676223754883, 0.3378506898880005, 0.605660080909729, 0.08156754821538925, -0.12454935163259506, -0.2322775423526764, -0.7304308414459229, 0.1751514971256256, -0.6838860511779785, 0.478488564491272, 0.06947377324104309, 0.46331119537353516, 0.8480727672576904, -0.34821444749832153, -0.7009071111679077, 0.2937343120574951, 0.2439555525779724, -0.8641935586929321, 1.0149058103561401, -0.5250282287597656, -1.249940276145935, -0.338589608669281, -0.045416343957185745, 0.35182660818099976, -0.2628633379936218, 0.029915576800704002, 1.2021071910858154, 0.6608076095581055, -0.04271204397082329, 0.009018510580062866, 0.4446493983268738, 0.29040610790252686, -0.2462305873632431, 0.4753105044364929, -0.04697096720337868, 1.120442509651184, -0.6657776832580566, -0.415152370929718, 0.2297452837228775, 0.28408998250961304, 1.3175575733184814, 0.09713955968618393, 1.520444393157959, -0.858188807964325, -0.1399160921573639, -0.13074804842472076, -0.8231090903282166, -1.738922119140625, -1.2275500297546387, -0.5772697329521179, -0.7130619287490845, -0.32633769512176514, -0.7225420475006104, -0.26083457469940186, 0.2891222834587097, 0.18677470088005066, 0.893396258354187, 0.11450507491827011, 0.22876977920532227, -1.2636576890945435, -0.1352684199810028, -0.747079610824585, -0.7786094546318054, 0.8365538120269775, 1.43002450466156, -1.4337255954742432, 0.20152390003204346, -0.5900332927703857, -1.0019447803497314, 0.8980427980422974, 0.2711450457572937, 0.41428709030151367, -0.39624348282814026, -0.7123512029647827, -0.32718992233276367, 1.2319350242614746, 1.1032969951629639, -0.3349483609199524, -0.4935522675514221, 0.6300483345985413, 0.8375656008720398, 0.3343851566314697, -0.41563162207603455, 0.19131819903850555, -0.7381691932678223, -0.3213624358177185, 0.01945234090089798, 0.3154495358467102, 0.44501495361328125, -0.48150089383125305, -0.8028831481933594, -0.15337428450584412, -0.7615693807601929, -0.5708110928535461, 0.2798742353916168, 0.14968900382518768, 0.8438683152198792, -0.22363221645355225, -0.31394344568252563, 0.8299736380577087, 0.0291725043207407, 0.34452956914901733, -1.0721280574798584, 0.555056095123291, 0.8875308036804199, 1.150877833366394, -0.5968738198280334, 0.8777716159820557, 0.38252943754196167, -0.5975358486175537, 0.3897210657596588, 0.11476759612560272, 0.9174299240112305, 0.30163246393203735, -0.5996959209442139, -0.22383004426956177, -0.9956257939338684, 0.3317375183105469, -0.393665611743927, -0.08007486164569855, 0.20366211235523224, -0.8647869825363159, -0.20300185680389404, 0.648859977722168, 0.6107593178749084, -1.384324550628662, -0.7788835167884827, -0.6973837614059448, 0.05348929017782211, -0.48130911588668823, 0.2725882828235626, 0.2866562604904175, -0.35219040513038635, 1.1603648662567139, -1.261157751083374, -0.07014375180006027, -0.1596904844045639, -0.19143790006637573, 0.9867272973060608, -1.5276907682418823, -0.7626796364784241, -1.079054832458496, -0.0948532372713089, 0.775892436504364, 0.49702802300453186, 0.4398229420185089, 0.33608800172805786, -0.14948396384716034, 0.08912620693445206, 0.688205897808075, 1.7274696826934814, 0.036890819668769836, -0.3576801121234894, -0.03609567880630493, 0.11847599595785141, -0.4837648868560791, -1.0203523635864258, 0.009291715919971466, 0.05313058942556381, -0.584954023361206, -0.22797614336013794, 0.47361230850219727, -0.6009883880615234, 1.5869581699371338, 0.20247536897659302, 0.23785433173179626, 0.16673219203948975, -0.37045055627822876, -0.7747374773025513, -0.029546156525611877, 0.922448456287384, -0.7458958625793457, -0.5266943573951721, 0.40650683641433716, 0.6229310035705566, 0.5226033926010132, 0.23742884397506714, 0.5271830558776855, -0.008977361023426056, -0.2613842785358429, 0.04581984132528305, -0.043372832238674164, 0.2409244030714035, 1.3271706104278564, 0.8964065313339233, 0.6824286580085754, -0.5361344218254089, -0.6154760122299194, 1.263216495513916, 0.3934626877307892, 0.5679082870483398, -0.06860481202602386, 1.1922576427459717, 0.6289974451065063, -0.9930094480514526, -0.5370783805847168, 0.8328321576118469, -0.2421659231185913, 0.7357138395309448, 0.3213304877281189, 0.537287175655365, -0.6402090191841125, -0.26040178537368774, -0.1980234980583191, 0.24500250816345215, 0.2663908004760742, 0.2184716910123825, 1.1308107376098633, 0.6648339629173279, -1.1606321334838867, 0.08668643236160278, -0.7173376083374023, -0.059242088347673416, -0.45745849609375, -0.3655892014503479, 0.4071922302246094, 0.4762738347053528, 0.8425823450088501, -0.31016477942466736, -0.3070237934589386, -0.1404784619808197, 0.2858092784881592, -0.916658341884613, 0.07536472380161285, -0.20160357654094696, -0.5033480525016785, -1.3981636762619019, 0.4588744640350342, 0.001954288687556982, -0.23942476511001587, 0.12209387868642807, -0.20504257082939148, -1.0187636613845825, -0.7553761005401611, -0.3444432020187378, 0.7262630462646484, 1.300316333770752, -0.19511157274246216, 0.4672878682613373, 0.7625049352645874, -0.019511383026838303, -0.55854731798172, -0.12816694378852844, 0.4640403389930725, 0.02553454414010048, -0.13249841332435608, -0.7404236793518066, -0.42519596219062805, 0.29989784955978394, -0.1633610725402832, 0.16000095009803772, 0.4207730293273926, 0.011310454457998276, 1.245980978012085, -0.17242956161499023, -0.6527763605117798, 0.17746728658676147, -0.8749045133590698, 1.0439026355743408, 0.06529918313026428, 0.1702791005373001, -0.22054877877235413, -0.7536327838897705, -1.1096153259277344, 1.1823738813400269, -0.011694713495671749, -1.1287212371826172, 0.10648542642593384, 0.9254286289215088, -0.0956215113401413, 0.9244801998138428, -0.060886893421411514, 0.2775304317474365, 0.47171327471733093, 0.3330894112586975, -0.7146322131156921, -0.4970419108867645, 0.84211665391922, -0.15002337098121643, -0.5755026340484619, 0.9777469635009766, -0.37098583579063416, 0.36487704515457153, -0.0027287136763334274, 0.4387158155441284, 0.6569687128067017, 0.21236038208007812, 0.11499090492725372, -0.20968639850616455, -0.22705845534801483, -1.1528491973876953, -0.4443945288658142, -0.4584486186504364, 0.16472738981246948, 0.3113458454608917, -0.8850502371788025, 0.3837023675441742, -0.7051888704299927, 0.4137071371078491, 0.1971288025379181, -0.5032228231430054, 0.8062393665313721, 0.29465359449386597, 0.19978117942810059, 0.7309871912002563, -0.4290897250175476, -0.06162863224744797, -0.7469104528427124, -0.9882166385650635, 0.7985376715660095, -1.3171602487564087, -0.581855058670044, -0.5374417901039124, -0.5278427600860596, -0.4277733564376831, -0.29985636472702026, -0.10659598559141159, -0.628217875957489, -1.144179105758667, -0.6435784697532654, 0.29923051595687866, 0.6755397319793701, -0.25268155336380005, 0.3380800783634186, 0.5850169658660889, -0.8329998254776001, -0.29540807008743286, -0.014622273854911327, -1.627556324005127, -0.13508340716362, -0.7651041746139526, 0.5789275169372559, -0.30479416251182556, 0.3515312969684601, -0.007088825106620789, 0.8931742310523987, -1.9770565032958984, -0.928015410900116, -0.5063788294792175, -0.7073622941970825, 0.675894021987915, 1.1309618949890137, -1.3579092025756836, 1.0375733375549316, 0.17233732342720032, -0.24102333188056946, 0.22688227891921997, 0.16804227232933044, -0.6085031032562256, 0.19272847473621368, -0.5755628347396851, 0.39494556188583374, 0.45646941661834717, 1.6879658699035645, 1.433690071105957, 0.8324788808822632, -0.06373901665210724, 0.9369728565216064, 0.0001839771866798401, -0.2689475417137146, 0.1217832937836647, 0.4618682861328125, -0.0002733711153268814, -0.3113938570022583, 0.054854489862918854, -0.3513365387916565, -0.6694064140319824, -0.24043720960617065, 0.94789719581604, -0.8526462316513062, 0.11545819044113159, -0.17107707262039185, -0.07712632417678833, -0.36558133363723755, 0.3263132870197296, 0.32597362995147705, 0.6130213141441345, 0.10329177975654602, -0.32500317692756653, 0.608298659324646, -0.3718414306640625, -0.6989800930023193, 0.5537517070770264, 0.7581450939178467, -0.7128219604492188, 0.05366777256131172, 0.3892183303833008, 0.15577101707458496, -0.055002082139253616, 1.3935604095458984, 0.6508468389511108, -0.14782901108264923, 0.26054465770721436, -0.3610203266143799, -0.6086639761924744, 0.12327015399932861, -0.3759211003780365, -0.5948808193206787, -0.5642685890197754, 0.6448960304260254, 0.46114352345466614, -0.34922945499420166, -0.03345699980854988, 0.6900382041931152, -0.08828812092542648, 0.9046592712402344, 1.487838625907898, -0.5963455438613892, -0.9086971282958984, 0.9543355703353882, 0.3324912190437317, -1.1082763671875, 0.8189603090286255, 0.34401100873947144, 0.24420663714408875, -0.21866261959075928, 1.126600742340088, 0.218617245554924, -0.6334452629089355, 0.9242874383926392, 0.3490625321865082, -0.06436854600906372, -0.6160091161727905, -0.09790166467428207, -1.858100175857544, -0.08776780217885971, -0.46787774562835693, -1.183426856994629, 0.5990346670150757, -1.3157293796539307, -1.3459291458129883, 0.2314826399087906, 0.3071712255477905, -0.5117143392562866, -0.49268996715545654, 0.046635836362838745, 0.061129145324230194, -0.3512047827243805, 1.0037527084350586, -0.6501099467277527, 1.4128694534301758, 0.33058586716651917, -0.16127237677574158, -1.1942505836486816, -1.2442107200622559, 0.25567877292633057, 0.5322537422180176, -0.689776599407196, -0.6877105832099915, 0.9321600198745728, -0.547612190246582, -0.6498466730117798, 0.7919082045555115, 0.7075218558311462, -0.041131697595119476, -0.22754666209220886, -0.94278883934021, 0.7365951538085938, 0.4253964126110077, 0.09002850949764252, -0.838158369064331, -0.7517843246459961, -1.1556618213653564, -0.17758530378341675, -1.1419835090637207, 0.6623804569244385, 0.07707170397043228, 1.287616491317749, -0.8110073208808899, -0.8140501976013184, -0.560682475566864, -0.7072811722755432, -0.19595088064670563, 0.2949323058128357, -0.3653516173362732, -0.35263314843177795, -0.7395626306533813, -0.11637704074382782, -0.7977592349052429, -0.37051355838775635, 0.5424349308013916, 0.9064829349517822, -0.05873282253742218, -0.826945960521698, -0.602615237236023, -0.7687622308731079, 0.16068784892559052, 0.777004599571228, 0.19508694112300873, 0.2224520593881607, 0.2805292010307312, -0.8797286748886108, 0.23522254824638367, 0.40949541330337524, 0.1753837764263153, -0.07517263293266296, 1.2000267505645752, 1.1504859924316406, -0.4693414568901062, -0.2898779511451721, 0.0017963536083698273, 0.4525708556175232, -0.5379088521003723, 0.5329186916351318, -1.2523823976516724, -0.19986692070960999, -0.13148146867752075], [0.08801362663507462, 1.8274341821670532, -2.6404335498809814, -0.22077755630016327, 0.42459636926651, 0.0934380292892456, 0.6917510628700256, -0.27710387110710144, -0.15563909709453583, -0.6983884572982788, -0.47025397419929504, -0.14330412447452545, 0.6375563740730286, -0.06995993107557297, 0.02173570729792118, 0.5123456716537476, 0.6224338412284851, 0.09157471358776093, 0.14192849397659302, 1.605914831161499, -0.13913525640964508, -1.3848038911819458, -0.4287969768047333, 0.4419105052947998, 0.0687418133020401, 0.3026092052459717, -2.025979995727539, -0.18779703974723816, -1.6747368574142456, -1.3530439138412476, 1.643401861190796, -0.06545846164226532, 0.8034993410110474, 0.11039033532142639, -1.535553216934204, 0.31263628602027893, 1.3934332132339478, 0.30153390765190125, 0.6533949375152588, 0.2085547149181366, 2.042692184448242, 0.4171026647090912, -0.5052264332771301, -1.6885873079299927, 0.07605832815170288, 0.1859581470489502, 1.2553983926773071, -1.760326862335205, -0.42478200793266296, -0.5160215497016907, 0.7345223426818848, -0.19203057885169983, 0.4763548672199249, 0.9571365714073181, 1.015986442565918, -0.810542643070221, 0.7255946397781372, 1.2792294025421143, -0.10548705607652664, 0.462063729763031, 1.3863290548324585, -0.26342135667800903, 1.3846330642700195, 0.4086666703224182, 0.5357078909873962, -0.6890020966529846, 0.7639727592468262, 0.29201674461364746, 0.07760076969861984, -0.266772598028183, 0.796826958656311, 0.6797528862953186, -0.8237229585647583, 0.4321986138820648, -1.3042844533920288, 0.8480031490325928, 0.6264950037002563, 0.5130428075790405, 0.3998278081417084, 0.2859836518764496, 0.2340553104877472, 0.28290417790412903, 0.44203418493270874, -0.08652561902999878, -0.2561000883579254, 0.6067108511924744, -0.13566945493221283, -0.6005755662918091, -0.5317919850349426, 0.6635933518409729, 0.10221488773822784, 0.6071541905403137, 0.6869555711746216, -0.15475967526435852, -0.6359986066818237, -1.1001802682876587, -0.8322441577911377, -0.7371184229850769, -0.4203605651855469, -0.908970057964325, -0.20235185325145721, -0.8021332621574402, 1.2605549097061157, 0.3943059742450714, 0.21393394470214844, 1.4047863483428955, 0.4393264651298523, -1.2575749158859253, -0.08174794167280197, -0.4492506682872772, -0.31342098116874695, -0.10258419066667557, -0.6101571321487427, -1.747496247291565, -0.7198094129562378, 1.0799498558044434, 1.689941167831421, 1.0539882183074951, 0.4154883623123169, 0.5620009303092957, -0.3607539236545563, -0.20360635221004486, -0.6543051600456238, 0.10916370898485184, 1.7547025680541992, 0.8507882356643677, -0.6613246202468872, -0.15019762516021729, 0.17969535291194916, -0.6140468716621399, 1.3473542928695679, -0.049613986164331436, -0.2478603720664978, 0.785603940486908, -0.366842120885849, 0.8372307419776917, -0.4199812710285187, -0.6530573964118958, 0.17146413028240204, 0.9662808179855347, 0.015483028255403042, -0.4676240384578705, -0.33988115191459656, -0.9357516765594482, 0.0539417490363121, -0.5347623825073242, 0.782224714756012, 0.04364122077822685, -1.2221317291259766, 0.7082118391990662, -0.9747015833854675, 0.28199803829193115, 0.1777717024087906, 1.2085288763046265, 0.44432327151298523, -0.38048887252807617, 0.9224541187286377, 0.5698937177658081, 0.22020389139652252, 0.9100229740142822, 0.668373167514801, -0.12637068331241608, -0.6524845361709595, 0.4716455340385437, 0.6146037578582764, -0.18128450214862823, 0.705925464630127, -0.12608058750629425, -0.5603737235069275, 1.3300657272338867, 0.30657532811164856, -0.6491190791130066, -0.4606587886810303, 1.2612159252166748, 0.09324368834495544, 0.36570578813552856, 0.8252360224723816, -0.24051153659820557, -1.8992948532104492, -0.9189702272415161, 1.6614922285079956, -0.6649839878082275, 0.2184584140777588, -0.23665544390678406, 0.25061601400375366, -0.5528613924980164, 0.27644091844558716, -0.46224138140678406, -1.1512095928192139, -1.292000651359558, -0.1563805788755417, -0.15111246705055237, -0.9907359480857849, 0.3077530264854431, -0.5242799520492554, -1.165945291519165, 0.9191661477088928, -0.951648473739624, -1.4108914136886597, 0.25603044033050537, 0.8747114539146423, -0.06890565156936646, -1.2602754831314087, -0.35783651471138, -0.8929274082183838, 1.4768620729446411, -0.9704595804214478, 0.7801740169525146, -0.8352460265159607, 0.8191264867782593, 1.0024182796478271, -0.7021061182022095, -0.9305630922317505, 0.5964635610580444, -0.15535308420658112, -1.5969738960266113, 0.3299145996570587, -0.562006950378418, 0.20423834025859833, -0.9855177998542786, 0.07251712679862976, 0.5885473489761353, 0.7548924684524536, -0.27865070104599, 0.580706000328064, -0.1341165453195572, 0.0065153674222528934, -0.8231731653213501, 0.214553564786911, -0.4338968098163605, -1.0883766412734985, -0.49695339798927307, 0.22243931889533997, 0.1770390272140503, -1.2859188318252563, -0.20528572797775269, -0.21556073427200317, 0.09359192848205566, -0.20317357778549194, 1.5999785661697388, 0.534889280796051, 0.40650007128715515, 0.020093685016036034, -0.2302650362253189, -0.7102166414260864, -0.4683496057987213, 0.9796727299690247, -0.5661562085151672, 0.5002081990242004, 1.6496745347976685, 0.6132504940032959, 0.01733962446451187, -0.06860469281673431, -0.9166136384010315, 0.023260608315467834, -0.96085125207901, -0.3851231038570404, 0.14784274995326996, -0.994478166103363, 2.405219078063965, 1.1764719486236572, -0.39385750889778137, 0.15781350433826447, -0.23179668188095093, 0.397104948759079, -0.8077182769775391, 0.2601524889469147, -0.4388229250907898, 0.2335597723722458, -0.17529107630252838, -0.2263806164264679, -0.011369572021067142, -0.08294985443353653, 0.526768684387207, -0.27328720688819885, -0.5628800392150879, 0.11836351454257965, 0.4482204020023346, -0.2841605544090271, 0.6048890352249146, -0.443089097738266, -1.4484981298446655, -0.8916801810264587, -0.10225864499807358, 0.6499860882759094, 0.12763401865959167, 0.39425063133239746, 0.8260350227355957, 0.623893678188324, 0.02930186502635479, 0.6046924591064453, 0.29843389987945557, 0.18904557824134827, -0.4115762710571289, 0.4930482506752014, -0.008072914555668831, 0.6663237810134888, -0.7003300189971924, -0.9395896196365356, 0.5239154100418091, 0.0820021703839302, 1.8187657594680786, 0.45460015535354614, 1.305727481842041, -0.8228453993797302, 0.18898992240428925, -0.385383665561676, 0.19560204446315765, -1.149444818496704, -0.5767216682434082, -0.19771116971969604, -1.185188889503479, -0.7520031332969666, -0.11997990310192108, -0.3109889626502991, 0.5846436023712158, -0.2375451922416687, 0.8719589114189148, 0.5524667501449585, 0.08368973433971405, -1.7771199941635132, -1.215266227722168, -0.12165717780590057, -0.8447802662849426, 1.3749818801879883, 0.9093666076660156, -1.493074655532837, 0.01975107379257679, -0.1058245375752449, -0.24611257016658783, 0.3920711278915405, -0.27981430292129517, 0.043994463980197906, -0.7574349045753479, 0.07738780975341797, -0.008290101774036884, 0.38742947578430176, -0.19279544055461884, -0.570441484451294, -0.5603454113006592, 0.5658231973648071, 0.5823444724082947, -0.7010940313339233, -0.343049019575119, -0.04970410093665123, -1.2330197095870972, -0.285139262676239, 0.04908972233533859, 0.6920986771583557, -0.0582582913339138, -0.7115758061408997, -1.559152603149414, -0.0026946356520056725, -0.596443235874176, -0.6182190775871277, 0.18977928161621094, 0.17966300249099731, 0.9024358987808228, -0.8281174302101135, 0.5695835947990417, 1.0794199705123901, -0.009982115589082241, 0.1565455049276352, -1.41403329372406, 1.1267722845077515, 0.9147868156433105, 1.1218457221984863, 0.28404903411865234, 0.6046579480171204, 0.7364879250526428, -0.7781321406364441, -0.08282162249088287, 0.25327450037002563, 0.5192899703979492, 0.02636636793613434, -0.2033124715089798, 0.019520942121744156, -0.3240445852279663, 0.02257016859948635, -0.25792059302330017, 0.005079872440546751, 0.670083224773407, -0.23458489775657654, 0.16399262845516205, 0.9628203511238098, 0.6139785051345825, -0.4873815178871155, -0.49943074584007263, -0.011678694747388363, 0.29544198513031006, 0.026892803609371185, 0.20624712109565735, -0.30103710293769836, -0.6368018984794617, 0.8145134449005127, -1.6321220397949219, -0.22886314988136292, -0.17770087718963623, 0.09632819890975952, 1.347080945968628, -0.7854751944541931, -0.5656394362449646, -0.6455090641975403, 0.21962735056877136, 1.4653921127319336, 0.2547401785850525, 0.877443253993988, 0.9419630765914917, -0.2735128402709961, 0.3066740930080414, 0.3451429605484009, 1.8329066038131714, 0.3697786331176758, -0.8353937864303589, 0.5103935599327087, 0.3652624785900116, 0.17389430105686188, -0.47625574469566345, -0.04047894850373268, 0.5540857911109924, -0.3949698507785797, -0.36180779337882996, 0.01531714666634798, -0.5989928245544434, 2.3266289234161377, 0.6019311547279358, 0.12176623195409775, -0.15806540846824646, -0.11428449302911758, -1.3973734378814697, 0.011863569729030132, 0.4347536861896515, -0.8787463903427124, -0.423138827085495, 0.40009254217147827, 0.3751462996006012, 0.9770996570587158, 0.17983973026275635, 0.4046996235847473, 0.03843742981553078, 0.13105224072933197, 0.6026099920272827, 0.36124739050865173, 0.18275697529315948, 1.5533069372177124, 1.0213521718978882, 1.1811752319335938, 0.15448062121868134, -0.6539104580879211, 1.2218904495239258, -0.6250724792480469, 0.43598803877830505, 0.9367232322692871, 0.346463680267334, 0.7796842455863953, -1.7263823747634888, 0.1775868535041809, 0.7878546118736267, -0.19866794347763062, 0.997491717338562, 0.44018521904945374, 0.6362534761428833, -0.7446960806846619, -0.2830570936203003, 0.7333815693855286, -0.146389439702034, 0.3768971264362335, -0.12853612005710602, -0.07240231335163116, 0.8987614512443542, -0.9635486006736755, 0.16037069261074066, -1.4203399419784546, 0.037260837852954865, -0.0237482488155365, -0.850616455078125, 0.4439263641834259, 0.7417395114898682, 1.178362250328064, 0.27808329463005066, -0.3224390745162964, -0.7554597854614258, 0.4610263705253601, -0.7385808229446411, 0.08462219685316086, -0.7015042901039124, 0.04479590430855751, -1.2084019184112549, -0.5069573521614075, -0.3742430508136749, -0.025898408144712448, -0.3107943832874298, -0.4723917841911316, -1.0671128034591675, -0.8738449811935425, 0.5990153551101685, 0.7277434468269348, 0.7791659832000732, 0.5031132102012634, 0.6699846386909485, 0.3353920578956604, 0.09185337275266647, -1.1807363033294678, -0.5184226632118225, 0.36630329489707947, 0.06540393829345703, -0.1722204089164734, -0.20289675891399384, -0.6186317205429077, 0.4050890803337097, 0.38479676842689514, -0.4065345227718353, 0.9745866060256958, 0.6883043646812439, 1.0538568496704102, -0.7547030448913574, -1.2479418516159058, 0.6087798476219177, -0.517916202545166, 0.4977492392063141, 0.4722633361816406, -0.685032844543457, -0.7692530751228333, -0.552994966506958, -1.2934398651123047, 1.3618011474609375, 0.09429765492677689, -0.41511696577072144, 0.5736539363861084, 0.7713882923126221, -0.07938352227210999, 0.7121036052703857, -0.8189370036125183, -0.029559850692749023, 0.04719715192914009, -0.2094944268465042, -1.095560908317566, 0.023857226595282555, 0.8070637583732605, -0.026765206828713417, -1.1134642362594604, 0.682488203048706, -1.0600666999816895, -0.017726799473166466, -0.6549597978591919, 0.6585546731948853, 0.47606608271598816, 1.0945954322814941, 0.8420094847679138, 0.15108616650104523, 0.6295790672302246, -1.2490681409835815, -0.012224355712532997, 1.0373725891113281, 0.18799753487110138, 0.47382625937461853, -0.5978732109069824, 1.288438320159912, -0.767143964767456, -0.42643076181411743, -0.22809414565563202, -0.4924898147583008, 0.5280865430831909, 0.4877217411994934, 0.08282091468572617, 0.8023626804351807, -0.5193626880645752, -0.32681623101234436, -0.7668493390083313, -0.44829505681991577, 1.254194736480713, -1.6071988344192505, -0.6432669162750244, -0.19167056679725647, -0.4474424719810486, -0.47630131244659424, 0.4662345051765442, -0.12131564319133759, -0.48192712664604187, -1.0644919872283936, -0.33173131942749023, -0.25819867849349976, 1.1303468942642212, -0.5159679651260376, 0.6361464858055115, -0.20738759636878967, -1.076891303062439, 0.47639918327331543, -0.6341394186019897, -2.0734548568725586, 0.35021454095840454, -0.6022724509239197, 0.7788264751434326, -0.89403235912323, -0.24495519697666168, 0.24598701298236847, 1.4124699831008911, -1.461205005645752, -0.49283748865127563, -0.9713224768638611, -0.32283931970596313, 1.0029774904251099, 0.8913296461105347, -0.8075644373893738, 1.7582777738571167, -0.050971705466508865, -0.6009622812271118, -0.24414962530136108, 0.4087327718734741, -0.8373311161994934, 0.02822592295706272, -0.13050733506679535, -0.2435046285390854, 0.20285649597644806, 1.7375527620315552, 0.6698277592658997, 0.8928699493408203, 0.0921589806675911, 1.6963666677474976, -0.7976446151733398, -1.2000453472137451, 0.08038335293531418, 0.5429727435112, -0.16506901383399963, -1.2093031406402588, 0.24337461590766907, -0.8962502479553223, -1.3360011577606201, -0.3135494887828827, 0.9836033582687378, -0.6203718781471252, 0.5375461578369141, 0.2131776511669159, -0.15016262233257294, -0.41771215200424194, 0.592928946018219, -0.17459607124328613, -0.19228850305080414, 0.4268289804458618, -0.3416460454463959, 0.07056677341461182, -0.8083257079124451, -0.11861398816108704, 0.7673931121826172, 0.8695780634880066, -0.19627127051353455, -0.3572642505168915, 0.2581687271595001, 0.110661081969738, -0.43077412247657776, 1.536338210105896, 0.719135046005249, -0.19741658866405487, -0.018441328778862953, -0.134572833776474, -0.4790653586387634, 0.11046452820301056, 0.11323443800210953, -1.1455743312835693, -0.5894911885261536, 0.6494751572608948, 0.6439933776855469, -0.20920580625534058, 0.4712183177471161, 0.6713277101516724, 0.41125160455703735, 0.7429606914520264, 0.7139744162559509, -1.144690752029419, -0.47835224866867065, 1.3454091548919678, 0.5914967656135559, -0.8920503854751587, 0.25437867641448975, -0.19119541347026825, 0.10868056863546371, 0.09886404126882553, 0.9722424745559692, 0.3057177662849426, -0.7178501486778259, 0.375312864780426, 1.1663289070129395, -0.5665268898010254, -0.40275293588638306, -0.8388521075248718, -1.817959189414978, -0.7212580442428589, -0.31681615114212036, -0.6052404046058655, 0.5676042437553406, -1.3401031494140625, -1.5018951892852783, 0.23375380039215088, 0.1970117837190628, -0.36190322041511536, -0.6172979474067688, 0.3892774283885956, 0.13065633177757263, -0.6965311765670776, 1.2667804956436157, -0.5508943796157837, 1.2828062772750854, -0.29955655336380005, 0.21461701393127441, -0.3582388460636139, -0.24376684427261353, 0.10119657218456268, 0.06471600383520126, -0.22917605936527252, -0.5411608815193176, 0.38838082551956177, -0.5753774642944336, -0.6396334767341614, 0.15956413745880127, 0.14843402802944183, 0.4054085910320282, -0.2669476866722107, -0.2823163866996765, 0.0875447541475296, 0.9679431319236755, -0.08582747727632523, -0.5339667201042175, -0.48980653285980225, -1.1014337539672852, 0.46316713094711304, -0.2179919332265854, 0.14239326119422913, 0.22015289962291718, 0.4977226257324219, 0.48439815640449524, -1.1399611234664917, -0.385163813829422, -0.7065880298614502, 0.5308253169059753, 0.47557562589645386, -0.5741879940032959, -0.7149746417999268, -0.6056567430496216, 0.5064346790313721, -1.0731902122497559, -0.4841068983078003, -0.24824562668800354, 0.39890915155410767, -0.14267005026340485, -0.7379605770111084, -0.6083528995513916, -0.691895604133606, -0.08905183523893356, 0.32264789938926697, 0.5011596083641052, -0.15867716073989868, 0.08812951296567917, -0.5810682773590088, -0.3927513360977173, 1.1855082511901855, 0.5773380994796753, 0.4210692346096039, 1.2030223608016968, 0.8408308029174805, 0.11384943872690201, -0.39941084384918213, 0.06799513846635818, 0.14358724653720856, -1.1883569955825806, 0.24338935315608978, -0.7639710903167725, -0.5050064921379089, -0.07853051275014877], [1.0775146484375, -0.07632303237915039, -4.00146484375, -0.547882080078125, 1.3052978515625, -0.5041046142578125, 0.09389781951904297, 0.41823577880859375, -0.4677276611328125, 0.96405029296875, -0.5348010063171387, 0.526824951171875, 1.69305419921875, 0.3725433349609375, 1.1978759765625, -0.92279052734375, 0.0702362060546875, 0.6990318298339844, -0.6847648620605469, 0.716033935546875, -0.4580068588256836, -1.2548828125, -0.4835357666015625, 0.361663818359375, 2.091552734375, 1.02972412109375, 0.23765945434570312, -0.5589313507080078, -1.190673828125, 0.059897422790527344, 1.2335205078125, -0.06591796875, 0.422332763671875, -0.11250114440917969, -0.2476806640625, -0.86273193359375, 1.07000732421875, 0.97882080078125, 0.89208984375, -0.18286895751953125, -0.0585784912109375, 0.0771942138671875, -0.3929557800292969, -0.2258758544921875, 1.3756103515625, -0.997161865234375, 0.30809783935546875, -0.2583799362182617, 0.5055999755859375, 0.7176055908203125, 0.02552032470703125, 0.2598533630371094, 0.5641326904296875, -1.08526611328125, 0.813232421875, 0.2220306396484375, -0.30194091796875, -0.14327049255371094, 0.71234130859375, 1.0592041015625, 0.007916450500488281, -0.785400390625, 0.51593017578125, 1.165557861328125, 0.36664295196533203, -2.0234375, 0.013180732727050781, 0.6326904296875, -0.5038795471191406, -0.05454254150390625, 0.4120941162109375, -1.2637939453125, 0.35205078125, 0.80364990234375, -0.0004425048828125, 0.978759765625, 0.06806564331054688, 1.30767822265625, -0.4321441650390625, -0.8001556396484375, 0.09105682373046875, -0.81329345703125, 0.724273681640625, -0.3944740295410156, 0.4857826232910156, -0.7322235107421875, 0.2740135192871094, 0.3385467529296875, -1.3031005859375, 1.59027099609375, 0.2271289825439453, 0.8129119873046875, 0.21664857864379883, 1.09210205078125, -0.10491943359375, -0.3686065673828125, -0.20586395263671875, 0.870819091796875, -0.49066162109375, 1.0367546081542969, -0.45647430419921875, -0.5882110595703125, -0.0019826889038085938, -0.09266281127929688, 0.6441650390625, 0.45253753662109375, 0.6417808532714844, -0.33553600311279297, -0.5590362548828125, -0.336212158203125, -0.3051910400390625, -0.038330078125, 0.10413742065429688, -0.43988037109375, 0.8167877197265625, 0.6935062408447266, 1.25933837890625, -0.6748886108398438, -0.9798583984375, 1.099029541015625, 0.6717147827148438, -0.79119873046875, -0.81011962890625, 0.568634033203125, 0.9627685546875, 0.54840087890625, -0.92724609375, -0.396759033203125, 0.7393798828125, -1.29107666015625, -1.0194091796875, 0.2830963134765625, -0.11268877983093262, 1.369873046875, 0.2824716567993164, 1.3310546875, 0.038883209228515625, -0.7050108909606934, 0.67572021484375, 0.647979736328125, 1.45916748046875, -0.8458404541015625, -0.4565410614013672, 0.7889060974121094, 0.13848876953125, 0.10184860229492188, 0.232391357421875, -0.92987060546875, -1.08056640625, 0.6678619384765625, 0.3002128601074219, -0.05823516845703125, -0.063018798828125, 1.072265625, 0.42168426513671875, -0.803131103515625, -2.11328125, 0.7687835693359375, -0.25281524658203125, 0.4599151611328125, 0.4822540283203125, -0.1183013916015625, -0.9459228515625, 1.13726806640625, -0.7935943603515625, -0.3537101745605469, 0.6629753112792969, 0.22823333740234375, 0.12723946571350098, 1.04974365234375, -2.09375, -1.18695068359375, -0.08977222442626953, -0.325650691986084, 0.932403564453125, 0.3419189453125, 0.77545166015625, -0.849611759185791, -0.273040771484375, 0.48944091796875, 1.040771484375, -0.606292724609375, 0.963134765625, -0.419342041015625, -0.31136077642440796, 0.9041175842285156, -0.4453468322753906, 0.05916547775268555, -0.6597442626953125, -0.736083984375, 0.016374826431274414, 1.13543701171875, -0.5592384338378906, -0.10247611999511719, -1.5902099609375, -0.31949615478515625, 1.001220703125, 0.7440185546875, -0.47792816162109375, -1.428497314453125, -0.6059675216674805, 0.2418060302734375, -0.3669891357421875, 0.20949172973632812, -0.47521209716796875, 1.063201904296875, 1.01019287109375, 1.0059814453125, 0.05940723419189453, 0.8258056640625, 0.8243026733398438, -0.4240608215332031, -0.39405059814453125, -0.62103271484375, 0.2366790771484375, 0.18756675720214844, 0.22186040878295898, -1.1773681640625, -0.13056564331054688, 1.167633056640625, -0.43811988830566406, 1.25335693359375, -0.694976806640625, 0.12753582000732422, 0.8984375, 0.6048736572265625, -0.9664306640625, -0.66473388671875, -0.181396484375, -0.9239501953125, 0.8082275390625, -1.25701904296875, 0.8184814453125, -0.5335693359375, -0.6760101318359375, 0.1600780487060547, -0.22133255004882812, -0.146636962890625, 0.3527851402759552, 1.193939208984375, 0.669769287109375, -0.4065876007080078, -0.8167266845703125, -1.234130859375, -1.710693359375, -0.011566162109375, -0.2979736328125, 0.296356201171875, 0.437957763671875, 2.470947265625, 0.735382080078125, -0.3196258544921875, 0.5039520263671875, 0.267822265625, 1.23797607421875, -0.547576904296875, -0.18692779541015625, 0.8153076171875, -0.5406341552734375, 1.0116767883300781, -0.3312034606933594, -0.16844940185546875, -0.532318115234375, -0.22057533264160156, -0.43568897247314453, -0.17673492431640625, 0.96484375, 0.23255157470703125, 0.7013702392578125, -0.687744140625, 0.715118408203125, 1.266357421875, -0.05008697509765625, 0.25153160095214844, -0.30449676513671875, -0.027756690979003906, -0.17252731323242188, 0.5869827270507812, -0.870513916015625, 1.338623046875, -0.7476234436035156, -1.026763916015625, -1.472412109375, 0.4280853271484375, -0.5573959350585938, 0.33469390869140625, 0.043426513671875, -0.37528228759765625, 0.1965789794921875, 0.696014404296875, 0.8359756469726562, 0.609039306640625, 0.058345794677734375, -0.3404045104980469, 0.5484485626220703, 0.08700942993164062, 0.0829315185546875, -1.18817138671875, -0.146453857421875, -0.4518890380859375, 0.4624176025390625, -0.6502227783203125, 0.1720123291015625, 0.845062255859375, -0.87896728515625, -0.5353994369506836, -0.720306396484375, -0.19322967529296875, 0.61383056640625, -0.7557373046875, -0.91668701171875, 0.528289794921875, -1.02166748046875, -0.2913024425506592, -1.0557861328125, -0.19036865234375, 0.6406707763671875, 0.502044677734375, 0.83251953125, -0.10797500610351562, -0.16134262084960938, -0.06949043273925781, -0.66748046875, -0.470367431640625, 1.45947265625, 0.8856201171875, -0.779052734375, 0.37823486328125, -0.799072265625, -0.48638916015625, -1.72125244140625, 0.835174560546875, 1.6126708984375, -0.48209381103515625, -0.19217681884765625, 1.000732421875, -0.5932173728942871, -0.02489471435546875, 0.1838226318359375, 0.87396240234375, 0.7068157196044922, -1.33111572265625, -0.3065605163574219, -0.700347900390625, 0.23245620727539062, 1.1551513671875, -0.20189452171325684, 0.7169952392578125, 0.615447998046875, 0.3359203338623047, -0.3262596130371094, -0.7545166015625, -0.4103269577026367, -0.1855621337890625, 1.42138671875, 0.11436939239501953, 0.3884735107421875, 1.2513427734375, -1.179718017578125, 0.3128681182861328, 0.478973388671875, -0.3604736328125, -0.2583961486816406, -1.1787109375, 0.5567970275878906, 1.234466552734375, 1.6527099609375, -0.92584228515625, 0.445648193359375, -0.39083099365234375, 0.14499664306640625, 0.03473472595214844, -0.48666834831237793, -0.6134490966796875, -1.15625, -0.32320404052734375, -1.567138671875, -1.12762451171875, -1.60302734375, 0.6794586181640625, 0.19775390625, -0.7909393310546875, 0.67462158203125, 0.876373291015625, 0.7517299652099609, -0.5698089599609375, 0.585235595703125, -1.4417724609375, -0.3759307861328125, 0.24413299560546875, -1.0478515625, -1.3271484375, 0.084197998046875, -0.7880783081054688, 0.06776046752929688, -0.695831298828125, 0.32833099365234375, -1.14532470703125, -0.9516448974609375, -0.24458885192871094, -1.4912109375, -2.0455322265625, -0.422332763671875, 0.17224884033203125, -0.5972685813903809, 0.044826507568359375, 0.9130096435546875, -0.345672607421875, -0.19525146484375, -0.0283203125, 0.7841796875, 0.5462570190429688, -0.4054832458496094, -1.008056640625, -0.6656646728515625, 0.7491455078125, 1.1690673828125, -0.78887939453125, 0.8398551940917969, -0.43603515625, 0.2592430114746094, 0.019378662109375, -0.262176513671875, -0.10074996948242188, 0.804779052734375, 0.3750457763671875, 0.35530853271484375, -0.096771240234375, 0.2691984176635742, -1.028564453125, -0.6448745727539062, 0.7304229736328125, 0.762298583984375, 0.35137939453125, 0.5274810791015625, 0.2521209716796875, -0.38568115234375, -0.3959808349609375, 0.2279815673828125, 1.0946044921875, 1.2677764892578125, -1.24267578125, -0.34786224365234375, -0.1929779052734375, 0.9256591796875, 1.249786376953125, 0.96746826171875, -0.4784698486328125, -0.9700927734375, 0.3546905517578125, -0.7404880523681641, -0.14735031127929688, -0.3512115478515625, 1.05438232421875, 0.8051681518554688, -1.36492919921875, -0.3738861083984375, 0.5951766967773438, -0.6686477661132812, 0.959136962890625, 0.04581451416015625, -0.0277862548828125, -0.26814746856689453, -0.11968803405761719, -0.03408050537109375, 0.1308441162109375, 0.5341949462890625, -0.38739013671875, -0.3606414794921875, 0.940521240234375, -0.06810379028320312, 0.21311378479003906, -0.5644645690917969, -1.014373779296875, -0.383056640625, -0.79827880859375, -0.4217491149902344, 0.04310417175292969, 1.11907958984375, 0.22800636291503906, 0.88153076171875, -1.11419677734375, -0.2706146240234375, -0.7384567260742188, 0.375885009765625, 0.823211669921875, 0.08233642578125, -0.9849853515625, -0.26885986328125, -0.4040260314941406, 0.756591796875, -0.3760414123535156, 0.10881805419921875, -0.4472503662109375, 0.366668701171875, 0.0315399169921875, -0.13753318786621094, 1.31488037109375, 0.43482208251953125, -0.7556295394897461, 0.332916259765625, 2.636962890625, -0.3893089294433594, -0.26972198486328125, 0.31354522705078125, 0.854339599609375, 1.32696533203125, -0.14852380752563477, -1.034515380859375, 0.4171638488769531, -0.6925048828125, -0.802398681640625, 0.3285980224609375, 0.824951171875, 1.5225830078125, -0.4456138610839844, 0.10394287109375, -0.3275604248046875, -0.5516104698181152, -0.7001876831054688, 0.574432373046875, -0.2888298034667969, 0.9184112548828125, -2.1243896484375, -0.6380157470703125, 0.5127849578857422, 0.79376220703125, -0.3650856018066406, -0.39691162109375, 0.4528656005859375, 0.12070608139038086, -0.08072376251220703, -0.48651123046875, -0.5231475830078125, -0.6716499328613281, -0.2147674560546875, -1.07781982421875, 0.89410400390625, 0.953277587890625, 0.9031982421875, -0.0612640380859375, -0.629241943359375, 0.2060089111328125, -0.10080528259277344, -0.42156219482421875, 0.5833759307861328, -0.6414031982421875, 0.2812264561653137, -0.3218536376953125, 0.10888290405273438, 0.06401443481445312, -0.368804931640625, 0.19835054874420166, 0.7766342163085938, 0.7577056884765625, -0.828094482421875, 0.21732640266418457, -0.5753173828125, 0.1014862060546875, -1.00115966796875, 0.83831787109375, -0.809234619140625, 1.65234375, 1.11505126953125, 0.2985725402832031, 0.771484375, 0.12397360801696777, -0.768218994140625, 0.0620269775390625, 1.25946044921875, 1.734710693359375, -1.41314697265625, -0.07683563232421875, -1.12396240234375, 0.1465740203857422, 0.611358642578125, -0.19327163696289062, 0.6785888671875, -0.7108306884765625, -1.4013671875, -0.6292266845703125, -1.13470458984375, 0.3205232620239258, 0.5452661514282227, -0.01465606689453125, -0.23199200630187988, -1.358154296875, 0.01781463623046875, 1.2901153564453125, -0.723541259765625, 0.37496137619018555, -0.59954833984375, -0.248199462890625, 0.7203527092933655, 0.0584716796875, 0.14244842529296875, 0.524322509765625, -0.1993865966796875, -0.617889404296875, 1.0106964111328125, 0.6040191650390625, 0.028900146484375, 1.755126953125, -1.3406982421875, 1.068359375, 0.751678466796875, -0.3017578125, -0.22946929931640625, 0.9637374877929688, -0.2972679138183594, 0.462432861328125, 0.6295013427734375, -0.540008544921875, -0.058868408203125, -0.021953582763671875, -0.871429443359375, 1.5625, -0.3528900146484375, -0.77471923828125, 0.534271240234375, -0.5251922607421875, -0.24059295654296875, -0.3474922180175781, -0.71002197265625, 0.2471160888671875, -1.46563720703125, -1.3944091796875, -0.7694549560546875, 0.48772430419921875, 0.87030029296875, -1.8143310546875, 0.0008133649826049805, -1.518310546875, -0.18198776245117188, 0.08189773559570312, 0.407012939453125, -0.06886053085327148, 0.621124267578125, -0.6324844360351562, 1.052978515625, 0.8404541015625, -0.8108139038085938, -0.1883535385131836, 0.899017333984375, 0.6139926910400391, 0.042011260986328125, 1.6446533203125, 0.6927337646484375, 0.4292144775390625, -0.140594482421875, 0.88494873046875, 1.4794921875, 0.39487457275390625, 0.339752197265625, -1.27685546875, -0.4326133728027344, 0.796417236328125, -0.85076904296875, -0.1325969696044922, 0.21215057373046875, 0.94915771484375, -0.19472503662109375, -0.9775390625, 0.96990966796875, 0.35935211181640625, 0.10765838623046875, 0.470367431640625, -0.4689321517944336, -0.269134521484375, -0.026787757873535156, 0.836090087890625, 0.5208282470703125, 0.12993621826171875, 0.04283905029296875, 0.11869406700134277, 0.770660400390625, 1.43798828125, 0.562286376953125, 0.47907257080078125, 0.14968490600585938, -0.2415323257446289, -0.19699859619140625, 0.22707366943359375, -0.83294677734375, 0.01387786865234375, -1.08575439453125, 0.10925102233886719, -0.66656494140625, -0.6591415405273438, -0.45526885986328125, -0.47076416015625, -1.1279296875, 0.03798103332519531, 0.8863067626953125, 0.03873252868652344, 0.05616474151611328, -0.33649444580078125, 0.2491779327392578, -0.91632080078125, 0.66522216796875, -0.3931427001953125, 0.941009521484375, -0.721954345703125, 0.39296722412109375, -0.3455085754394531, 0.5110855102539062, 0.533782958984375, -0.89007568359375, 0.39089202880859375, 0.36046600341796875, -0.544677734375, -0.658050537109375, -0.20740699768066406, 0.6781158447265625, 1.5621337890625, 0.312164306640625, -1.2322998046875, -1.53216552734375, 0.16708683967590332, 0.428955078125, -0.11752700805664062, -0.4512939453125, -1.25982666015625, -0.744903564453125, 0.753021240234375, 0.3157806396484375, -0.22103500366210938, -1.32391357421875, -0.36868858337402344, -0.815643310546875, 0.1490936279296875, -0.55413818359375, -1.406494140625, 1.0885467529296875, -0.82318115234375, -0.18204498291015625, -1.4202880859375, 0.49559783935546875, -0.8932037353515625, -1.17022705078125, -1.027435302734375, 0.05148124694824219, -0.1896343231201172, 0.008195877075195312, 0.0651557445526123, 0.05808258056640625, 0.00994110107421875, 0.42176055908203125, 0.15546417236328125, 0.00644683837890625, -0.362152099609375, -0.8431396484375, -1.2608642578125, 0.2728309631347656, 0.537017822265625, 0.6863174438476562, 1.32684326171875, 0.3628692626953125, 1.95068359375, 0.11780166625976562, 0.160064697265625, -0.07209396362304688, -0.1861896514892578, -0.5300827026367188, -0.369537353515625, -1.24200439453125, -1.4501953125, -0.1416797637939453], [0.2451205849647522, 2.1424996852874756, -2.6274893283843994, -0.3248721957206726, 1.016411304473877, 0.16508440673351288, 1.4288442134857178, 0.2182430624961853, -0.11728992313146591, -0.6535104513168335, -0.7528513073921204, 0.04963482543826103, 0.5556259155273438, -0.1814650148153305, 0.4695238471031189, -0.1897886097431183, 0.22882544994354248, 0.18388527631759644, 0.39763540029525757, 1.1492186784744263, -0.7679171562194824, -0.9841697216033936, -0.4182060956954956, 0.47839537262916565, 0.12116555869579315, -0.05535686016082764, -1.4259592294692993, -0.3811067044734955, -1.102442741394043, -0.004983913153409958, 1.8314403295516968, -0.5871971249580383, 1.2366982698440552, 0.2584581673145294, -1.52310311794281, 0.2678028643131256, 1.0495740175247192, 0.26590415835380554, -0.5382739305496216, -0.9064152240753174, 1.4035755395889282, 1.6644898653030396, -0.698729932308197, -0.7360104918479919, -0.4643881022930145, 0.8024068474769592, 0.5751084685325623, -0.9996505379676819, -0.16342712938785553, -0.044404711574316025, 0.8875340223312378, -0.03177677467465401, 0.2677071690559387, 1.9329837560653687, 0.6250057816505432, -1.2041106224060059, 0.5137226581573486, 0.6499719619750977, -0.10174516588449478, 0.5965396165847778, 1.4621782302856445, -0.396660178899765, 1.174968957901001, 0.26195958256721497, 0.6329618692398071, -0.8428918719291687, 0.5643577575683594, 0.1043301671743393, 0.8261457681655884, -0.08797022700309753, 0.6708210706710815, -0.24765895307064056, -0.25377127528190613, 0.5204806923866272, -1.375706672668457, 0.26977527141571045, 0.2941499948501587, 0.27903228998184204, 0.06195454299449921, -0.5179508328437805, -0.3615959584712982, 0.17096836864948273, 0.8239087462425232, 0.19796352088451385, -0.023241247981786728, 0.17790213227272034, 0.5089239478111267, -0.48918992280960083, 0.05603119730949402, 1.5180230140686035, 0.023958081379532814, 0.7226377725601196, 0.8877363801002502, 0.30330348014831543, -0.44378286600112915, -0.625904381275177, -0.36432546377182007, -1.3387032747268677, -0.9428396821022034, -0.6351845860481262, -0.25441670417785645, -0.33771803975105286, -0.05679884925484657, 0.886608898639679, 0.13876965641975403, 1.7357388734817505, -0.13635776937007904, -0.40641963481903076, 0.4102843701839447, -0.1408405750989914, -0.8325783014297485, 1.1819556951522827, -0.05875144898891449, -1.4996185302734375, -0.7573006749153137, 1.2910388708114624, 1.2039783000946045, 0.7086601257324219, 0.38170892000198364, 0.9299166202545166, -0.45681488513946533, 0.29693207144737244, -0.2695257067680359, -0.00016400031745433807, 0.6576193571090698, 0.35024282336235046, -0.4667696952819824, -0.2256314903497696, 0.4268767237663269, -0.03374599665403366, 1.1694912910461426, -0.6309123039245605, -0.08620908856391907, 0.32310813665390015, -0.4842599928379059, 0.9472708702087402, -0.32105863094329834, -0.8343518972396851, 0.42633575201034546, 1.167733907699585, 0.5703425407409668, -0.04879198595881462, 0.022398510947823524, -0.9738152623176575, 0.3016141951084137, -0.5441774129867554, 0.421538770198822, -0.7715260982513428, -0.545060396194458, 0.17271190881729126, -1.1831461191177368, 0.3990756869316101, -0.14769183099269867, 0.8221826553344727, 0.669230580329895, -0.6651274561882019, 0.6009661555290222, -0.8019708395004272, 0.6237339973449707, 0.21450652182102203, -0.10524830967187881, 0.1574903130531311, -0.9352261424064636, 0.426543653011322, 0.08067343384027481, -0.7709764838218689, 0.6320421695709229, 0.38775086402893066, -0.4518110156059265, 1.0363367795944214, 0.008644934743642807, -0.6734432578086853, -0.6086763143539429, 0.5116948485374451, 0.3697988986968994, 0.02301117032766342, 0.9925797581672668, 0.4837372303009033, -0.8181156516075134, -0.04595308378338814, 1.0594590902328491, -0.21254116296768188, 0.8552713394165039, -0.3367031216621399, 0.0026040617376565933, -0.042373742908239365, -0.27456599473953247, -0.4480721056461334, -0.1307390183210373, -0.7339085340499878, -0.36095917224884033, -0.3705114424228668, -1.445427656173706, -0.03868135064840317, -0.5320994257926941, 0.11157608777284622, 1.0505926609039307, -0.6395388245582581, -0.5305230021476746, 0.5537993907928467, 0.4402351975440979, -0.22660179436206818, -0.7948305606842041, 0.2677280008792877, -0.7641414999961853, 0.8688300251960754, -0.6756144762039185, 0.29906800389289856, -0.6600793600082397, 0.40094509720802307, 1.4281755685806274, -1.3704156875610352, -1.1998004913330078, 0.7401339411735535, 0.5879595875740051, -1.3720108270645142, 0.4551801383495331, -0.359421968460083, -0.5603552460670471, -0.6799940466880798, -0.7434868812561035, 0.4058496356010437, 0.45522722601890564, 0.20624341070652008, 0.7109671235084534, -0.7375436425209045, 0.08218143880367279, -0.7374924421310425, 0.4267079532146454, -0.07185011357069016, -1.1960138082504272, -1.5335935354232788, 0.13706836104393005, 0.6897484064102173, -1.6981602907180786, -0.2494317889213562, -0.2709134519100189, 0.20670464634895325, -0.17976485192775726, 1.2859779596328735, -0.016690675169229507, 0.7038553357124329, -0.7296261191368103, -0.12148934602737427, -0.691749095916748, -0.15089155733585358, 1.2380387783050537, -0.5760256052017212, 0.16461512446403503, 0.8528014421463013, 0.46250930428504944, 0.0338362455368042, 0.9739739298820496, -0.8707212209701538, -0.22615863382816315, -0.2459058314561844, -0.538375973701477, 0.37850162386894226, -0.6257159113883972, 1.2913928031921387, 0.5882470011711121, -0.6851627230644226, 0.5589696764945984, 0.03485559672117233, 0.21334803104400635, -0.07070942968130112, -0.457411527633667, -0.2977593243122101, -0.10088372975587845, -0.5588856935501099, 0.13799411058425903, 0.4094865024089813, -0.16723036766052246, 0.4362056255340576, -0.5841803550720215, -0.7364968657493591, 0.24682332575321198, 1.0304603576660156, -1.022849678993225, 0.7633819580078125, -0.49858608841896057, -0.876639723777771, 0.11156124621629715, 0.1666799783706665, 0.46179676055908203, 0.2963188886642456, 0.19664184749126434, 0.3645358979701996, 0.788276731967926, -0.028521912172436714, 0.27718812227249146, 0.0752982422709465, -0.08004094660282135, 0.014704076573252678, 1.0981096029281616, -0.2548394501209259, 1.4376204013824463, -0.08931746333837509, -0.43203791975975037, 0.1075286716222763, 0.3195422887802124, 1.2799824476242065, 0.45703259110450745, 1.0587157011032104, -0.8076530694961548, -0.9312868714332581, 0.07161720097064972, -0.1100163608789444, -1.0728557109832764, -0.898577868938446, -0.27145516872406006, -0.7106274962425232, -0.2659202218055725, -0.04765111953020096, -0.6645505428314209, 0.2024029642343521, 0.46900495886802673, 0.7710403800010681, -0.04573286324739456, -0.058970220386981964, -1.1794451475143433, -0.11039722710847855, -0.5654233694076538, -0.3684151768684387, 0.7499628663063049, 1.6050969362258911, -1.6252292394638062, 0.10448185354471207, -0.6247025728225708, -1.1328474283218384, 0.022259056568145752, -0.23715811967849731, 0.6586513519287109, -0.7294020056724548, -0.5214626789093018, -0.48634448647499084, 0.6362417936325073, 0.2031930536031723, 0.02123708464205265, -0.6273486614227295, 1.2096630334854126, 0.8161104917526245, 0.3377630114555359, -0.7292581796646118, -0.048887934535741806, -0.7645817995071411, -0.3717026710510254, 0.04640014469623566, 0.6712254881858826, 0.10618893802165985, -0.6789158582687378, -1.1307802200317383, -0.26834696531295776, -0.5451157689094543, -0.261341392993927, 1.1938380002975464, 0.4186183512210846, 0.8516448140144348, -0.4170108139514923, -0.40668368339538574, 0.9122792482376099, -0.2931278645992279, 0.47081825137138367, -0.8123435974121094, 0.4005015790462494, 0.8222105503082275, 1.4377436637878418, -0.23957215249538422, 0.15458624064922333, 0.24833591282367706, -0.8440086841583252, 0.13269975781440735, -0.3453908860683441, 0.42930540442466736, 0.3747422695159912, -0.9302934408187866, 0.010628332383930683, -0.08123400062322617, -0.23811973631381989, -0.2140960544347763, 0.40627729892730713, -0.5515171885490417, -0.3370368480682373, -0.014166513457894325, 0.8447412848472595, 0.6163675785064697, -1.0904008150100708, -0.7428823113441467, -0.3542947769165039, 0.7298922538757324, -0.8438065648078918, 0.7339951992034912, -0.30358728766441345, 0.059303514659404755, 0.6214379668235779, -1.5543030500411987, 0.7720060348510742, -0.2547863721847534, 0.0030611716210842133, 1.303767442703247, -0.978035032749176, -0.47429776191711426, -0.3868093192577362, 0.3212612271308899, 0.7981915473937988, 1.485680341720581, 0.6446461081504822, 0.002630210015922785, -0.5179829001426697, 0.3941253125667572, 0.3340788185596466, 1.2863664627075195, -0.3812316954135895, -0.5264587998390198, 0.20973306894302368, -0.22526979446411133, -0.27103734016418457, -1.0021458864212036, 0.3653617203235626, 0.028543323278427124, 0.17437322437763214, -0.10441267490386963, 0.7329773306846619, -0.3333286643028259, 1.3693501949310303, 0.1059480607509613, 0.08155695348978043, 0.005412741098552942, -0.053991060703992844, -0.8077895045280457, 0.4237391948699951, 0.5935336947441101, -0.6434921622276306, 0.08575288951396942, -0.005776687990874052, 0.04068600758910179, 1.0743420124053955, -0.31210973858833313, 0.03860877454280853, 0.5829434394836426, 0.6708653569221497, -0.6329347491264343, 0.04163549095392227, 0.3834250569343567, 0.944480299949646, 0.6215963959693909, 1.1604163646697998, 0.8046876192092896, -1.1380493640899658, 0.9489468932151794, -0.22980408370494843, 0.38625970482826233, 0.9022119045257568, 0.006160931661725044, 0.9767817854881287, -1.3993799686431885, -0.08394353091716766, 0.6688321232795715, 0.009644518606364727, 0.5976816415786743, 0.1949053257703781, -0.37003788352012634, -0.8965759873390198, 0.2691977918148041, 0.4662185311317444, -0.32942676544189453, 0.34332355856895447, -0.026847831904888153, 0.8816636800765991, 1.3325773477554321, -0.8798895478248596, 0.40344300866127014, -0.8129341006278992, -0.8593025207519531, -0.29304033517837524, -0.015778884291648865, 0.9291432499885559, 0.6389124989509583, 0.7856196761131287, -0.044211819767951965, -0.1305670291185379, -0.468888521194458, 0.42304015159606934, -0.7865851521492004, 1.0109124183654785, -0.4620761275291443, -0.04908904805779457, -0.7817118763923645, -0.29245999455451965, -0.3260609209537506, -0.8836553692817688, -0.4745550751686096, -0.5793123841285706, -1.0562602281570435, -0.7811719179153442, -0.19740097224712372, 0.4698546528816223, 0.11167819052934647, 0.10988118499517441, 0.7359439134597778, 0.13459311425685883, 0.5695182681083679, -0.5548996329307556, 0.44212281703948975, 0.36758488416671753, 0.21702419221401215, 0.0020364364609122276, -0.7378973364830017, -1.0521800518035889, 0.6202231049537659, 0.25414735078811646, -0.17114980518817902, 0.21823987364768982, 0.328106552362442, 1.196117639541626, -0.6461269855499268, 0.01911076530814171, 0.850642740726471, -0.08763720095157623, 1.1704189777374268, 0.25602325797080994, -0.49802473187446594, -0.6253807544708252, 0.10048703849315643, -1.6671143770217896, 1.0136408805847168, -0.17491386830806732, 0.08504144847393036, 0.13739947974681854, 0.5402047038078308, 0.27986329793930054, 0.17872563004493713, -0.11319325864315033, 0.48754793405532837, -0.1581277698278427, -0.17851431667804718, -0.6036974191665649, 0.603172242641449, 0.5249404311180115, -0.32459884881973267, -1.0694916248321533, -0.048405684530735016, -0.17882344126701355, 0.13007238507270813, -0.26759710907936096, 0.6900174021720886, -0.20234468579292297, -0.056113045662641525, 0.22451040148735046, -0.5597620010375977, -0.18390913307666779, -0.047191768884658813, -0.45388564467430115, 1.114603042602539, 0.7807111740112305, -0.09308074414730072, -0.49066057801246643, 1.4234461784362793, -1.0250946283340454, -0.4669322073459625, -0.5032103061676025, -0.5998652577400208, 0.8648284673690796, 0.600296676158905, 0.3611994683742523, 1.5433555841445923, -0.3031812012195587, -0.40417855978012085, -0.8406245708465576, -0.2092389017343521, 0.7014614939689636, -0.9724640250205994, -1.1759459972381592, -0.4820546507835388, -0.6518996357917786, -0.18123291432857513, -0.2452443689107895, 0.5987027287483215, -0.439044326543808, -1.0402112007141113, -0.19761531054973602, 0.07719232887029648, 1.321081519126892, -0.46208351850509644, 0.4736877679824829, 0.6205182075500488, -0.9466220736503601, 0.3461931645870209, -0.3253883719444275, -1.275346279144287, -0.019319403916597366, -1.0954264402389526, 0.4119347929954529, -0.12039031088352203, 0.17664700746536255, -0.043208345770835876, 1.4725301265716553, -1.2583997249603271, -0.9786669611930847, -1.2955496311187744, -0.235224187374115, 1.161975383758545, 0.46853873133659363, -2.1301939487457275, 1.507543683052063, -0.1678370237350464, -0.19231468439102173, -0.28243330121040344, 0.18745297193527222, -0.3120092749595642, 0.07394534349441528, -0.5470554232597351, 0.33820900321006775, 0.358725905418396, 1.2689275741577148, 0.13196629285812378, 0.977530837059021, -0.1342899352312088, 1.1990243196487427, -0.7606555819511414, -0.35416266322135925, -0.017582902684807777, 0.7963110208511353, -0.27799543738365173, -0.5080443024635315, -0.22157177329063416, -0.8954156041145325, -0.571792483329773, 0.12766550481319427, 0.8762317895889282, -0.9667516946792603, 0.5712432861328125, -0.21012097597122192, -0.4592445492744446, -0.7444437742233276, 0.3576803207397461, -0.365202933549881, -0.316621869802475, 0.4415229856967926, -0.6198810935020447, 0.2503405809402466, -0.738733172416687, 0.4512275457382202, 1.0510828495025635, 0.7170733213424683, -0.9571365118026733, 0.1735362410545349, 0.8832347393035889, 0.33234137296676636, -0.7038701176643372, 1.1673030853271484, 0.7855843901634216, -0.6881502270698547, -0.4968068301677704, -0.29880309104919434, -0.40230223536491394, 0.6286441683769226, -0.1163174957036972, -0.4508097767829895, -0.7214909195899963, 0.3623163402080536, 0.26932552456855774, -1.058412790298462, 0.7627951502799988, 0.19564370810985565, -0.008647209964692593, -0.6662623286247253, 1.1368606090545654, -0.9165744781494141, -1.114192247390747, 1.3347665071487427, 0.45195460319519043, -1.0225108861923218, 0.409795343875885, -0.12049481272697449, -0.44149497151374817, 0.10645575076341629, 0.6319101452827454, 0.6329882144927979, -0.9305249452590942, -0.059503912925720215, 1.2796193361282349, -0.3706609904766083, -0.24921654164791107, -0.36023828387260437, -1.6774096488952637, -0.38760384917259216, -1.3394865989685059, -0.9076020121574402, 0.6530470848083496, -0.9241794943809509, -1.0388437509536743, 0.6900466084480286, 0.46880611777305603, -0.6611096858978271, -0.396074116230011, -0.16571049392223358, 0.2838437855243683, -0.5963561534881592, 0.9415751099586487, -0.2550235390663147, 1.553926706314087, -0.25267860293388367, -0.4261779189109802, -0.09974349290132523, -0.5291422009468079, 1.0781515836715698, 0.33270248770713806, -0.671058714389801, -0.6750162839889526, 0.4965921640396118, -0.6211853623390198, -0.7053831219673157, 0.4777139127254486, 0.34664928913116455, 0.513073205947876, -0.37732186913490295, -0.6679869890213013, 0.31874072551727295, 0.4120444059371948, 0.5687770247459412, -0.7452024221420288, -1.1896228790283203, -0.6172200441360474, 0.767533004283905, -0.7206956744194031, 0.2758291959762573, 0.511120080947876, 0.9011933207511902, 0.40235111117362976, -1.1622716188430786, -0.2876209616661072, -0.8174618482589722, 0.675383448600769, 0.14850063621997833, -0.5248932242393494, 0.10804177075624466, 0.4466976821422577, 0.1195136085152626, -0.8714914917945862, -0.6517122387886047, 0.5259556770324707, 0.1788363754749298, 0.018493952229619026, -0.7533516883850098, -1.0585389137268066, -0.8570071458816528, -0.00958029180765152, 0.14638842642307281, 0.7999326586723328, 0.5599537491798401, 0.41581496596336365, -1.1938332319259644, 0.8374931216239929, 0.9103052616119385, -0.037178389728069305, -0.3801790773868561, 0.484154611825943, 0.38229772448539734, -0.19141824543476105, -0.3166431188583374, -0.48131734132766724, 0.729239284992218, -0.8656796813011169, 0.9569892287254333, -0.7597128748893738, -0.6477221250534058, -0.07809417694807053], [-0.20768243074417114, 2.3101308345794678, -3.185514450073242, 0.4717504680156708, 0.9657737016677856, 0.1849443018436432, 1.2111748456954956, 0.39592570066452026, 0.1234307587146759, -0.7341877222061157, -0.8449513912200928, 0.134612575173378, 0.5829514861106873, 0.4508697986602783, -0.35329669713974, 0.5629965662956238, 0.22052887082099915, -0.1855935901403427, 0.6469832062721252, 1.1688381433486938, 0.0107234762981534, -1.2109527587890625, -0.8330621123313904, 0.47743576765060425, 0.08439968526363373, -0.12148521095514297, -1.5835776329040527, -0.05935022607445717, -0.7737670540809631, -0.575035572052002, 1.6300866603851318, -0.04917145520448685, 0.807000458240509, 0.5674382448196411, -1.1827609539031982, -0.08112850040197372, 0.43454110622406006, 0.2835920751094818, -0.0924365371465683, -0.7863932847976685, 1.1105698347091675, 0.8891416788101196, 0.25797349214553833, -0.9576922059059143, -0.4490998089313507, 0.8181922435760498, 1.5413479804992676, -0.9982461929321289, 0.5591009259223938, -0.6974519491195679, 0.6807037591934204, -0.3889677822589874, 0.4007270932197571, 1.6287732124328613, 0.8504615426063538, -1.1451112031936646, 0.417804092168808, 0.9971968531608582, -0.47931453585624695, 0.12334761023521423, 1.4058518409729004, 0.07566583156585693, 0.662880003452301, 0.19911742210388184, 0.2512172758579254, -0.43898555636405945, 0.4150209426879883, 0.4936787784099579, 1.258357048034668, -0.2048136591911316, 0.7558321952819824, 0.8779430985450745, -0.522316575050354, 0.7041066288948059, -0.8497548699378967, 0.4494154155254364, 0.5974613428115845, 0.2933194041252136, -0.4782960116863251, 0.3506065011024475, -0.21591144800186157, 0.1592463105916977, 0.5953978896141052, 0.6408848166465759, -0.09454882889986038, 0.16448530554771423, 0.14468304812908173, -0.28015533089637756, -0.5571700930595398, 1.4064552783966064, -0.3013100028038025, 0.6794266104698181, 1.1090329885482788, 0.07584326714277267, -0.06263846158981323, -0.7701289653778076, 0.06263191252946854, -1.11114501953125, -0.7304467558860779, -0.6807560920715332, -0.18173255026340485, -0.26952415704727173, 0.5360965132713318, 0.848970353603363, -0.0038039139471948147, 1.220339298248291, -0.14530187845230103, -0.8845839500427246, 0.6996681690216064, -0.06484534591436386, -0.32693567872047424, 1.0474574565887451, -0.1784582883119583, -1.0882840156555176, -0.4245544373989105, 1.2849689722061157, 0.3601817190647125, 0.4013453722000122, 1.1876327991485596, 0.6346749663352966, -0.5117784738540649, -0.5360167026519775, -0.4728465676307678, 0.09931732714176178, 1.4596667289733887, 0.5766144394874573, -0.4587586224079132, -0.384315550327301, 0.6862569451332092, 0.072083979845047, 1.2924357652664185, -0.2075187712907791, -0.41904428601264954, 0.3265936076641083, -0.06466539949178696, 1.5568692684173584, -0.5518779754638672, -0.6316336393356323, 0.03416989743709564, 0.9378809928894043, 0.11207804828882217, -0.06841826438903809, -0.1509115844964981, -0.6048864722251892, 0.1462918370962143, -0.394160658121109, -0.2811185419559479, -0.35720258951187134, -0.3423667252063751, 1.1099777221679688, -1.383908987045288, 0.8753125071525574, -0.02667730487883091, 1.1645742654800415, 0.9111150503158569, -0.6066796779632568, 0.3049444556236267, -0.7822296023368835, 0.6304985880851746, 0.4095730185508728, 0.4084547162055969, -0.06499070674180984, 0.04010983183979988, 0.6854311227798462, 0.12730292975902557, -0.596508264541626, 0.09135010093450546, 0.4647388756275177, -0.4606020152568817, 1.1250779628753662, -0.12573300302028656, -0.9331926107406616, -0.7495956420898438, 0.4125092029571533, 0.266193687915802, -0.8778169751167297, 0.7460975050926208, -0.038427338004112244, -1.364904522895813, -0.4461105763912201, 0.7011762261390686, -0.8073267936706543, 0.4306614398956299, 0.15410646796226501, 0.3912052810192108, -0.02348635159432888, -0.09274344146251678, -0.2685233950614929, -0.6681782007217407, -0.6697277426719666, -0.5372729301452637, -0.35095104575157166, -1.1849024295806885, -0.010738356038928032, -0.4865763783454895, -0.933281421661377, 0.9559447169303894, -0.2558538615703583, -0.9669068455696106, 0.49561282992362976, 0.637479305267334, -0.16557426750659943, -1.2463090419769287, -0.7874814867973328, -0.8660669326782227, 1.358839511871338, -0.9507570266723633, 0.27850306034088135, -1.2904499769210815, 0.5231143236160278, 1.2159944772720337, -1.0591756105422974, -1.0788719654083252, 0.4363052248954773, 0.7772994041442871, -1.5077749490737915, 0.9088761806488037, -0.04777619242668152, -0.025122500956058502, -0.5457240343093872, -0.348238468170166, 0.5078303813934326, 0.5579641461372375, 0.06440474838018417, 0.32375016808509827, -0.7031842470169067, -0.4613845944404602, -1.0599490404129028, 0.0785151794552803, -0.011012737639248371, -0.8150377869606018, -0.94190514087677, 0.37282344698905945, 0.4287548363208771, -1.030875325202942, 0.26098012924194336, -0.4849129617214203, 0.08407298475503922, 0.3286360502243042, 1.4352211952209473, 0.4748488962650299, 1.3674280643463135, -0.6716287136077881, -0.18020260334014893, -0.6905484795570374, -0.47291114926338196, 0.7166922688484192, -0.2630554139614105, -0.2123170644044876, 0.9554830193519592, 0.8365892767906189, -0.10281655192375183, 0.4272936284542084, -0.5042575597763062, 0.15116439759731293, -0.6672375798225403, -0.10869467258453369, 0.19662165641784668, -0.16396157443523407, 1.4677873849868774, 1.0674570798873901, -0.8253848552703857, 0.4029124975204468, -0.19712385535240173, 0.6334056258201599, 0.19910836219787598, -0.5256562829017639, -0.6358465552330017, -0.4475783705711365, -0.18366000056266785, -0.15363645553588867, -0.17984862625598907, 0.14610424637794495, 0.8800390958786011, -0.7669824361801147, -1.187900424003601, 0.305793821811676, 0.7144328951835632, -0.5792109370231628, 0.9145345091819763, -1.0857049226760864, -1.5106840133666992, -0.4826112389564514, 0.3985803723335266, 0.6371607184410095, -0.009283759631216526, -0.1464795172214508, 0.6774094104766846, 0.3540806174278259, 0.08974789828062057, 0.3494521677494049, -0.47151440382003784, 0.908488392829895, -0.030885495245456696, 0.20102350413799286, -0.18973304331302643, 0.8640716671943665, -0.2784923315048218, -1.004568099975586, 0.06036906689405441, 0.5378854870796204, 1.4724674224853516, 0.9170824289321899, 1.4193065166473389, -0.8946982026100159, -0.31446072459220886, -0.38284754753112793, -0.2568015456199646, -0.9082004427909851, -0.7104752659797668, -0.5286293625831604, -0.9124972820281982, -0.908197283744812, -0.11601623892784119, -0.46688467264175415, 0.05391767993569374, 0.2672100365161896, 0.5949728488922119, 0.9925998449325562, -0.4499436914920807, -1.1634902954101562, -0.31390324234962463, -0.1833297312259674, 0.06694653630256653, 0.695288896560669, 1.580001950263977, -1.6683987379074097, -0.5820176005363464, -0.3641199767589569, -0.46353840827941895, 0.10853970795869827, 0.5146589875221252, 0.20310766994953156, -1.4516663551330566, -0.39459481835365295, -0.1835561841726303, 0.7486110329627991, 0.0636935830116272, -0.542256236076355, -0.5633163452148438, 0.49524563550949097, 0.7327383756637573, 0.31929221749305725, -0.20490780472755432, 0.11017931997776031, -1.1173344850540161, -0.5733712315559387, -0.43717020750045776, 0.3519302010536194, 0.3987792432308197, -1.11647367477417, -1.4071861505508423, -0.5339532494544983, -0.17357923090457916, -0.5038644671440125, 0.8688972592353821, 0.6962172985076904, 1.1250113248825073, 0.226648211479187, -0.15375147759914398, 1.1463202238082886, -0.01047354843467474, 0.5249196290969849, -1.2247469425201416, 0.7677378058433533, 0.6043104529380798, 1.0363858938217163, 0.3993384540081024, 0.020144281908869743, 0.49748942255973816, -1.437050223350525, -0.17807060480117798, 0.14266976714134216, 0.17362825572490692, -0.23553146421909332, -0.3699333965778351, 0.04631703719496727, -0.4633767008781433, 0.059219732880592346, -0.7436240911483765, -0.21119625866413116, 0.2162407636642456, -0.27586543560028076, -0.2717221677303314, 0.8611515760421753, 0.8876096606254578, -0.4736986756324768, -0.06318692117929459, -0.46106693148612976, 0.7716407179832458, -0.32180505990982056, 0.48522838950157166, -0.19077667593955994, 0.6578643321990967, 1.002501368522644, -1.089505910873413, -0.04324251413345337, -0.8025928735733032, 0.4703330099582672, 1.2263668775558472, -1.0312542915344238, -0.5204110145568848, -0.20181585848331451, 0.4450434148311615, 0.4827805459499359, 0.8676442503929138, 0.47957584261894226, 0.3323642313480377, -0.24315474927425385, 0.1596670299768448, 0.6022920608520508, 1.2828401327133179, -0.03718459606170654, -0.20199377834796906, 0.9047706127166748, 0.2998887598514557, 0.45954716205596924, -0.9488168954849243, 0.3656318783760071, 0.43342268466949463, -0.1381024718284607, -0.42789238691329956, 0.4490148723125458, -0.5285162925720215, 1.5556528568267822, 0.7657560110092163, 0.4234427511692047, 0.41909313201904297, 0.20640721917152405, -1.3225599527359009, 0.19521591067314148, 0.15337920188903809, -0.9568545818328857, -0.27818024158477783, 0.5256687998771667, -0.061260223388671875, 0.9146307706832886, -0.07626573741436005, -0.050591617822647095, 0.5319356322288513, 0.4440271854400635, 0.28739896416664124, -0.16342733800411224, 0.5774658918380737, 1.100391149520874, 0.6912356615066528, 0.9380454421043396, -0.11531383544206619, -0.3123528063297272, 0.7874038219451904, -0.6932175159454346, 0.660686194896698, 1.5411279201507568, 0.5607628226280212, 1.1826748847961426, -1.4930446147918701, -0.2531262934207916, 0.8194770812988281, 0.03227562457323074, 0.5662840604782104, 0.4735746383666992, -0.06488804519176483, -0.5434108972549438, 0.18240809440612793, 0.47718414664268494, -0.2990444600582123, 0.3901427984237671, -0.7520374655723572, 0.5622230768203735, 0.7794368863105774, -0.8863511681556702, 0.21792614459991455, -0.8173890709877014, -0.07429418712854385, -0.2869378328323364, -0.3988064229488373, 0.7659252285957336, 0.48193052411079407, 0.7988928556442261, -0.24629609286785126, -0.5224274396896362, -0.37795430421829224, 0.619792640209198, -0.9339964389801025, 0.15820379555225372, -0.5953646302223206, 0.028903961181640625, -0.8104297518730164, -0.7556929588317871, -0.31166210770606995, -0.24601681530475616, -0.5708314776420593, -0.5072484612464905, -0.7356445789337158, -0.6770179271697998, 0.2947961091995239, 0.5484132766723633, 0.977175235748291, -0.18004551529884338, 0.30466923117637634, 0.12034823000431061, 0.06912726163864136, -0.6509932279586792, 0.09818707406520844, 0.5301637649536133, 0.12069970369338989, -0.11277875304222107, -0.4153652489185333, -1.1336637735366821, 0.5289737582206726, 0.2129317820072174, -0.5088916420936584, -0.15672484040260315, 0.49203798174858093, 1.3356165885925293, -0.759626030921936, -0.9624446630477905, 0.7784842252731323, -0.480663925409317, 1.0075949430465698, 0.7395954728126526, -0.7347813248634338, -1.1028165817260742, -0.09094905853271484, -1.8564095497131348, 1.456937313079834, -0.09908074140548706, -0.2713819444179535, 0.8427351117134094, 0.6016095876693726, 0.7032598257064819, 0.8354014754295349, -0.38819974660873413, 0.5621472597122192, 0.34970852732658386, 0.025585196912288666, -0.5097354054450989, 0.09362950176000595, 0.6440622210502625, -0.14207270741462708, -1.2794946432113647, 0.566590428352356, 0.316489040851593, -0.08435263484716415, -0.7744937539100647, 0.5871180295944214, -0.12070365250110626, 0.7111793756484985, 0.1633448749780655, -0.8712503910064697, 0.056861381977796555, -0.9120305180549622, 0.3193000555038452, 0.4736447036266327, 0.7564107775688171, 0.7099441885948181, -0.5822069048881531, 0.698885977268219, -1.010226845741272, 0.39473122358322144, -0.0016981243388727307, -0.2913621664047241, 0.7715585827827454, 0.5517650842666626, 0.4370814859867096, 1.332150936126709, 0.07221279293298721, -0.4659024178981781, -0.6163229942321777, -0.7140617966651917, 1.0681054592132568, -1.0170758962631226, -0.5049782395362854, -0.8769936561584473, -0.6374093890190125, -0.7218499183654785, 0.917147696018219, 0.5517371892929077, -0.6631346344947815, -1.267857551574707, -0.3425533175468445, 0.12141342461109161, 0.950264036655426, -0.5567725300788879, 0.8366947770118713, 0.12273894250392914, -0.8908316493034363, -0.16101160645484924, -0.2906864881515503, -1.5802851915359497, -0.14639145135879517, -1.0012612342834473, 0.3421086370944977, 0.1139807179570198, -0.2504434585571289, 0.4223300814628601, 1.2730644941329956, -1.6812630891799927, -1.347800850868225, -1.6752856969833374, -0.567408561706543, 1.0192270278930664, 0.6971792578697205, -1.632062315940857, 0.841582715511322, -0.5357885360717773, -0.4672086238861084, -0.20852907001972198, 0.28484615683555603, -0.6021811366081238, -0.0018458687700331211, -0.829626739025116, -0.3132413327693939, 0.24603864550590515, 1.37187659740448, 0.4429810345172882, 0.9957293272018433, 0.3057388663291931, 1.471909523010254, -0.5889869332313538, -0.8430643081665039, 0.1998884379863739, 0.9980692267417908, -0.8992065191268921, -0.5488516092300415, 0.08485529571771622, -0.8438924551010132, -0.8511198163032532, 0.28086137771606445, 0.9791877865791321, -0.6638563871383667, -0.04422765597701073, 0.03551115840673447, -0.38340049982070923, -0.8345752954483032, 0.7914388179779053, 0.18738240003585815, -0.6855194568634033, -0.15137559175491333, -0.670642614364624, 0.04141809046268463, -1.380714774131775, 0.35471034049987793, 0.7498022317886353, 0.6724075078964233, -0.5130926370620728, 0.07351226359605789, 0.5670457482337952, 0.7058098912239075, -0.7040214538574219, 1.4288134574890137, 0.0548291951417923, -0.3404596149921417, -0.7080442905426025, 0.11409526318311691, -0.4389934837818146, 0.5405874252319336, -0.1624995470046997, -0.03345131129026413, -0.8349950909614563, 0.13652357459068298, -0.10329920053482056, -0.2126755714416504, -0.20788313448429108, 0.8552422523498535, 0.1371617466211319, 0.48389753699302673, 1.0801626443862915, -1.1649508476257324, -0.34143438935279846, 0.8863071203231812, 0.21018818020820618, -0.8746143579483032, -0.018910937011241913, 0.009101109579205513, -0.2699747681617737, 0.24670051038265228, 0.676589846611023, 0.752158522605896, -0.9664197564125061, 0.5111107230186462, 0.045631490647792816, -0.33926916122436523, -0.4647862911224365, -0.3331264555454254, -1.6079821586608887, 0.4899652898311615, -0.886323869228363, -0.721595823764801, 0.047515083104372025, -0.7974262237548828, -0.9885837435722351, -0.3075636327266693, 0.5809745192527771, -0.854987621307373, -0.18993224203586578, 0.6564748287200928, -0.1376427710056305, -0.13943630456924438, 1.5774216651916504, -0.7734020948410034, 1.4586082696914673, -0.17605653405189514, -0.385934054851532, -0.8404979109764099, -0.12353957444429398, 0.21882788836956024, 0.344255268573761, -0.3694298267364502, -0.702416181564331, 0.5322005152702332, -0.11107078194618225, -0.4619951546192169, 1.0780915021896362, 0.020418070256710052, -0.08713844418525696, -0.5598117709159851, -0.7721247673034668, 0.7974207401275635, 0.22914113104343414, 0.68229740858078, -0.6601110100746155, -0.7084402441978455, -0.8622221946716309, 0.4183897376060486, -0.3614260256290436, 0.044828277081251144, -0.18720440566539764, 0.6291289329528809, 0.062272071838378906, -1.3964346647262573, -0.4646827280521393, -1.0054221153259277, 1.0733577013015747, 0.6674783825874329, -0.26267537474632263, -0.4081474840641022, -0.1985797882080078, -0.35375645756721497, -0.802889347076416, -0.7496685981750488, 0.18969722092151642, 0.02652108296751976, -0.6713456511497498, -0.5218053460121155, -0.1528794765472412, -1.163346767425537, 0.005178377963602543, 0.39195895195007324, 0.38213202357292175, 0.6171250939369202, -0.019568689167499542, -1.2962037324905396, 0.681952714920044, 0.6704469919204712, 0.6157775521278381, -0.021733025088906288, 1.0631495714187622, 0.7127867341041565, 0.14095087349414825, -0.5757497549057007, 0.027798738330602646, 0.6146173477172852, -0.9734360575675964, -0.3117290437221527, -1.056148648262024, -0.4082106351852417, 0.35677003860473633], [-0.3333817422389984, 2.103209972381592, -2.9494564533233643, -0.021117843687534332, 0.5160644054412842, -0.05034325271844864, 0.9849159121513367, 0.7002232670783997, 0.026354027912020683, -1.2057615518569946, -0.513616681098938, 0.30583107471466064, 1.0618922710418701, 0.9220775365829468, 0.021253859624266624, 0.6985846161842346, 0.3076416850090027, -0.6745290756225586, -0.46694275736808777, 0.8372313976287842, -0.8392040729522705, -1.0957049131393433, -0.04917808994650841, 0.6650558114051819, -0.04876670613884926, 0.4848257899284363, -1.901146411895752, -0.30804112553596497, -1.109379529953003, -1.009556770324707, 0.6221706867218018, -0.09948398917913437, 0.22464071214199066, 0.11113664507865906, -1.398446798324585, -0.3665301203727722, 0.6132457256317139, -0.0735919252038002, -0.29457616806030273, -1.074794054031372, 1.865761637687683, 0.12152011692523956, -0.12594850361347198, -1.3596880435943604, 0.16663670539855957, -0.16917185485363007, 1.5672798156738281, -0.8740314841270447, 0.35966047644615173, -0.8999584317207336, 0.09373650699853897, -0.09258558601140976, -0.005714752245694399, 1.4540544748306274, 0.6983276605606079, -1.0493659973144531, -0.05538693442940712, 0.6038822531700134, 0.3235034644603729, 1.3756256103515625, 1.0509467124938965, 0.07716149836778641, 0.042693138122558594, 1.2726813554763794, 0.5531972646713257, 0.2574901282787323, 0.4484454393386841, 0.25421464443206787, 0.25209301710128784, -0.3708368241786957, 0.17292988300323486, -0.3495507538318634, 0.1489434391260147, 0.2145804464817047, -0.3821698725223541, 0.3947471082210541, 0.08526010066270828, 0.24988482892513275, -0.7922075986862183, 0.28053995966911316, -0.3662258982658386, 0.10045907646417618, 0.7725191116333008, -0.11407341808080673, -0.8859946727752686, -0.05276751518249512, 0.17648136615753174, -0.43506866693496704, -0.01304258219897747, 1.425679087638855, 0.4068572223186493, 0.4382907748222351, 0.6151320934295654, -0.06784304976463318, -0.6735398769378662, -0.14141745865345, 0.25042271614074707, -1.0699728727340698, -0.49444857239723206, -1.055752158164978, -0.1969776153564453, -0.9223071336746216, 0.09518884867429733, 0.7115602493286133, 0.5842055082321167, 1.1859626770019531, -0.028814582154154778, -0.7037524580955505, 0.742845356464386, 0.05985981971025467, -0.43034327030181885, 1.0918666124343872, -1.2537248134613037, -1.3967812061309814, -0.10351572930812836, 1.2326685190200806, 0.6794357895851135, 0.0008656072895973921, 1.4131138324737549, 0.682589054107666, -0.13334645330905914, -0.5573073625564575, -0.3325953185558319, 0.2564535140991211, 0.81589275598526, 0.6967548131942749, -0.515302836894989, -0.646222710609436, 0.6162882447242737, -0.3276018798351288, 0.7961407899856567, -0.5586937069892883, -0.5806314945220947, 0.6887429356575012, 0.22257646918296814, 1.2862837314605713, -1.0840740203857422, -0.8218614459037781, 0.3927335739135742, 0.5925766825675964, 0.5028945803642273, -0.431294322013855, 0.24494969844818115, -0.8760724663734436, -0.1134270578622818, -0.3614415228366852, 0.1590099185705185, -0.7132853269577026, -0.5792727470397949, 0.8156604170799255, -1.2579312324523926, 0.7549759149551392, -0.2987615764141083, 1.0873312950134277, 0.6160397529602051, -0.8091492652893066, 0.5138869881629944, -0.4269634187221527, 0.7317667603492737, 0.677765965461731, 1.087843894958496, -0.3431764543056488, -0.011056162416934967, 0.21999645233154297, 0.48641446232795715, -0.40449953079223633, 0.8288934230804443, 0.5211085677146912, -0.5348191261291504, 1.058190107345581, -0.28238099813461304, -1.054382085800171, -0.12896369397640228, -0.1902257800102234, -0.052768006920814514, -0.5686812996864319, 1.0670684576034546, -0.489950031042099, -0.6681315302848816, -0.7597298622131348, 1.0188963413238525, -0.7864527702331543, 0.48264625668525696, -0.37996482849121094, 0.39278218150138855, -0.018320506438612938, 0.1089094951748848, -0.11093077063560486, 0.10888367146253586, -1.3838106393814087, -1.0048500299453735, -0.42763882875442505, -0.7968536019325256, 0.4969349205493927, -0.03623959422111511, -0.5964364409446716, 0.7596633434295654, -0.6215893626213074, -0.5095095038414001, 0.14543770253658295, 0.3584194481372833, 0.5198877453804016, -0.9949861168861389, -0.4562200605869293, 0.014566882513463497, 1.0385375022888184, -0.03858640044927597, 0.21495267748832703, -0.3625386357307434, 0.02903609909117222, 0.7948592305183411, -0.6460610628128052, -1.258151888847351, 0.9128220677375793, 0.6629347801208496, -0.8807047009468079, 0.3270077109336853, -0.2050316482782364, -0.2787003219127655, 0.0912998765707016, 0.3057880103588104, 0.31811439990997314, -0.1090056374669075, 0.07660552859306335, 0.3202837407588959, -0.3835498094558716, -0.6199778318405151, -1.125393271446228, -0.8071061372756958, 0.23225292563438416, -0.9077908992767334, -0.5150518417358398, 0.8032588958740234, 0.4275592863559723, -0.7958919405937195, 0.5315567851066589, -0.24343571066856384, 0.1926351636648178, 0.4858405292034149, 0.6740935444831848, 0.14347058534622192, 0.2059038132429123, -0.4953066110610962, -0.3465781807899475, -0.7573996186256409, 0.17949725687503815, 1.0536333322525024, -0.34661877155303955, -0.10923629999160767, 1.384620189666748, 1.2836294174194336, -0.2641596794128418, 0.9478574991226196, 0.11719494313001633, -0.35122695565223694, -0.5064707398414612, -0.2683785855770111, 0.29478827118873596, -0.8619769215583801, 1.5083684921264648, 0.9879240989685059, -1.3863449096679688, 0.10631993412971497, -0.46847689151763916, 0.32134923338890076, -0.08662953972816467, -0.9408319592475891, -0.9555975198745728, -0.27338317036628723, -0.5129268765449524, 0.4768155813217163, 0.08289309591054916, 0.24347195029258728, 0.7667629718780518, -0.7652373313903809, -0.6189692616462708, -0.2873918414115906, 1.0662745237350464, 0.27986451983451843, 1.3293278217315674, -0.5424743294715881, -1.4213474988937378, -0.7864219546318054, 0.4778513014316559, 0.2932700216770172, -0.21294768154621124, -0.4476207196712494, 1.3700276613235474, 0.47465837001800537, 0.19664716720581055, 0.8012999892234802, -0.1882714331150055, 0.5738274455070496, 0.02031729742884636, 0.2783392667770386, 0.057858940213918686, 0.9223974347114563, -0.9600557088851929, -1.0482457876205444, -0.06985937803983688, 0.8515005707740784, 1.5560812950134277, 0.7813925743103027, 1.0261399745941162, -0.5522969961166382, 0.011251645162701607, -0.32076871395111084, -0.441463828086853, -0.6157797574996948, -0.40473347902297974, -0.9383973479270935, -0.9370160698890686, -0.09252526611089706, -0.6896626353263855, -0.2968602478504181, 0.3835369646549225, 0.8174984455108643, 1.2112854719161987, 0.5908345580101013, -1.0132040977478027, -0.6767479181289673, 0.0015204104129225016, -0.40330472588539124, -0.6888684630393982, 0.5305994749069214, 1.4673892259597778, -1.372107744216919, -0.34524810314178467, -0.19354736804962158, -0.32144078612327576, 0.4210399091243744, 0.16527041792869568, -0.38954034447669983, -1.1402432918548584, -0.7985610961914062, 0.4460267722606659, 1.1266779899597168, -0.004623361397534609, -0.5510634183883667, -0.1838451325893402, 0.06260953843593597, 0.7401546835899353, 0.30222567915916443, -0.721524178981781, 0.5372949838638306, -0.7169502973556519, -0.07978656888008118, -0.523772120475769, 0.6200835704803467, 0.7711297273635864, -0.7217660546302795, -1.00679612159729, -0.6406252384185791, -0.28673607110977173, -0.7979729771614075, 0.15921121835708618, 0.6702438592910767, 0.5241522192955017, -0.08967867493629456, 0.24762757122516632, 1.866081714630127, -0.44565093517303467, -0.26937779784202576, -0.7609536647796631, 0.4997059404850006, 0.8289753198623657, 1.437267780303955, 0.30381351709365845, 0.8452126383781433, 0.7279502153396606, -0.8922994136810303, -0.04516516998410225, 0.31393587589263916, 0.874332070350647, 0.059879470616579056, -0.8786262273788452, -0.7439472675323486, -0.5229333639144897, 0.37626001238822937, -0.7564332485198975, -0.3372480571269989, 0.392077773809433, -0.06030898541212082, -0.4801512062549591, 0.5839217305183411, 1.1279224157333374, -0.4470803439617157, -0.6342586278915405, 0.18435414135456085, 0.7081269025802612, -0.8818160891532898, 0.22597143054008484, -0.37942782044410706, 0.3901781737804413, 0.42123809456825256, -0.9139155745506287, -0.4176810085773468, -0.1751011461019516, 0.30414092540740967, 2.0704550743103027, -1.476475477218628, -0.576099693775177, -0.3458932936191559, 0.250036358833313, 0.22203491628170013, -0.0040407306514680386, 0.08505389839410782, 0.785780131816864, -0.7788287997245789, 0.025282101705670357, 0.8770170211791992, 1.4731332063674927, 0.19287610054016113, -0.33989444375038147, -0.35710206627845764, -0.5158547163009644, 0.32639026641845703, -1.1711329221725464, -0.2803231477737427, 0.319879949092865, -0.5205714106559753, -0.07098738104104996, 0.22019481658935547, 0.32159537076950073, 2.349123477935791, 0.3761129677295685, 0.6977013349533081, 0.25718894600868225, 0.11421716213226318, -0.509580135345459, -0.4374079406261444, 0.7299359440803528, -0.6294682621955872, -0.8549957275390625, 0.8919548988342285, 0.12172851711511612, 0.30596020817756653, 0.08550797402858734, -0.1109049841761589, 0.4190385341644287, 0.13488756120204926, -0.5062257051467896, -0.19220004975795746, 0.3137836754322052, 1.345352053642273, 0.8916504383087158, 1.1094160079956055, -0.29973524808883667, -0.3592393398284912, 1.397167444229126, -0.06767042726278305, 0.41210031509399414, 0.6970473527908325, 0.24286052584648132, 1.1132159233093262, -1.1798603534698486, -1.0620383024215698, 0.39834511280059814, -0.43190228939056396, 0.48393309116363525, -0.33227449655532837, 0.3298039436340332, -0.9969528317451477, -0.6632222533226013, 0.35487785935401917, -0.16984207928180695, 1.1777777671813965, -0.8594129085540771, 0.6038373112678528, 0.6358820199966431, -0.3467293679714203, -0.5371177792549133, -0.4395318031311035, -0.07944715023040771, -0.5546438097953796, 0.125092014670372, 0.7434201240539551, 0.8907670974731445, 0.4345235228538513, 0.44856491684913635, 0.11443313211202621, -0.5442728400230408, 0.2702878415584564, -0.8684035539627075, 0.28184637427330017, -0.5947933197021484, -0.02661316469311714, -0.6014984250068665, -0.15017588436603546, -0.41580599546432495, -0.35655030608177185, -1.1181670427322388, -1.4229806661605835, -0.4957990348339081, -0.6794487237930298, 0.23472648859024048, 0.7220850586891174, 0.7644047737121582, 0.6303235292434692, 0.1297706514596939, 0.24843813478946686, 1.027036428451538, -0.5773846507072449, 0.15196800231933594, 0.6040225625038147, 0.22963492572307587, 0.26427608728408813, -0.834488034248352, -0.19865375757217407, 0.6764989495277405, 0.8147619962692261, -0.24558697640895844, 0.1384512037038803, 0.09365427494049072, 1.6254075765609741, -0.17638397216796875, -0.8097516894340515, 0.4600379765033722, -0.6198909878730774, 1.311481237411499, 0.9303457736968994, -1.0375144481658936, -0.325263112783432, -0.3370975852012634, -1.5981987714767456, 1.4379007816314697, -0.6516959071159363, -0.5653464198112488, 1.26385498046875, 0.8572698831558228, -0.16235119104385376, 0.9446565508842468, -0.2552856504917145, 0.4129583537578583, 0.8359803557395935, 0.27769970893859863, -0.24870924651622772, 0.8740788102149963, 1.183412790298462, -0.08517273515462875, -1.1728225946426392, 1.21575129032135, -0.33967798948287964, -0.29802024364471436, -0.5962801575660706, 0.5281139016151428, -0.01354222185909748, -0.1079094409942627, 0.0896938368678093, -0.14950303733348846, 0.4585615396499634, -0.9887771606445312, 0.6109732389450073, 0.023155227303504944, 0.5968632102012634, 0.18169397115707397, -0.7266953587532043, -0.2571060061454773, -0.5823966264724731, 0.16632840037345886, -0.1798209398984909, -0.6266939640045166, 1.251947045326233, 0.8190943598747253, 0.0816797986626625, 0.25423356890678406, 0.3334769308567047, -0.7710207104682922, -0.9546412825584412, -0.7216942310333252, 1.019227385520935, -1.6559475660324097, 0.27470940351486206, -1.4513356685638428, -0.6569252014160156, -0.7640001177787781, 0.3779688775539398, 0.6749069094657898, -1.2048810720443726, -1.212119698524475, 0.47246018052101135, 0.38559290766716003, 1.0020743608474731, -0.3810744881629944, 0.4915791451931, -0.3041808307170868, -1.0862380266189575, -0.137932687997818, 0.0035273078829050064, -1.490676760673523, -0.2449476420879364, -1.2495671510696411, 0.7360112071037292, 0.25026974081993103, -0.23083728551864624, 0.018822267651557922, 1.6969280242919922, -1.735425591468811, -1.3750823736190796, -0.6517676711082458, -0.217288538813591, 0.8413648009300232, 0.8746828436851501, -0.9601575136184692, 0.9698973894119263, -0.19999155402183533, -0.5566118359565735, -0.07050013542175293, 0.23494765162467957, -0.6854153871536255, 0.05569399520754814, -0.6570578217506409, 0.21998398005962372, 0.2389293611049652, 1.0330294370651245, 0.6895469427108765, 1.6095547676086426, 0.0550815649330616, 1.6699740886688232, -0.41154810786247253, -0.8097445368766785, 0.1496949940919876, 0.42275863885879517, -0.8911757469177246, -0.4374990165233612, 0.17855900526046753, -0.8109930157661438, -0.9336737394332886, 0.19015415012836456, 1.2196972370147705, -0.6439079642295837, 0.3848397433757782, -0.23791378736495972, 0.017676951363682747, -0.5751165747642517, 0.8835467100143433, 0.46047961711883545, -0.9591944217681885, -0.7137802839279175, -0.5162203311920166, -0.1700793206691742, -0.8343409299850464, -0.845132052898407, 0.6573591232299805, 0.9149159789085388, -0.5407382249832153, -0.31237128376960754, 0.03042716160416603, 0.37922343611717224, -0.7890436053276062, 1.2042063474655151, 0.21067039668560028, -0.44913583993911743, 0.06938014179468155, 0.11798453330993652, -0.3498799204826355, 0.13073498010635376, -0.22238832712173462, -0.11240483075380325, -0.37882155179977417, 0.02911956235766411, -0.43026500940322876, 0.36598607897758484, -0.9078199863433838, 0.8124042749404907, 0.5571601986885071, 0.7553263902664185, 1.9070005416870117, -1.0929585695266724, -0.3414429724216461, 1.1793758869171143, 0.1878984123468399, -0.9448472857475281, 0.355676531791687, -0.13029950857162476, -0.39484450221061707, -0.23339641094207764, 0.6629209518432617, 0.5547215342521667, -0.9504920840263367, 0.8660890460014343, 0.4775554835796356, -0.09451426565647125, 0.12943261861801147, -0.3094611167907715, -1.566200613975525, -0.24025312066078186, -0.5308508276939392, 0.39489907026290894, 0.7714418172836304, -0.6929802298545837, -0.5737292170524597, -0.3341865837574005, 0.42523133754730225, -0.1074763610959053, -0.6842605471611023, 0.43086251616477966, -0.23465099930763245, -0.07183325290679932, 0.9610359072685242, -0.8310986757278442, 1.5429065227508545, 0.07046139240264893, -0.39071735739707947, -0.2761992812156677, 0.19174210727214813, -0.012412150390446186, 0.26033225655555725, -0.459432452917099, -0.8482343554496765, 0.1563519686460495, -0.08769148588180542, -0.13599637150764465, 0.9256122708320618, 0.41221684217453003, 0.5424110293388367, -0.8913283348083496, -1.0417060852050781, 0.5508396029472351, 0.484668493270874, 0.0855618566274643, -0.56707364320755, -1.3193652629852295, -0.38252609968185425, 0.3944407105445862, -0.3660741150379181, 0.38005346059799194, -0.1532474309206009, 0.38713735342025757, 0.3466706871986389, -0.9148010611534119, -0.738649845123291, -1.0019527673721313, 1.1738035678863525, -0.0812363550066948, 0.1900179088115692, 0.16440488398075104, -0.6206585764884949, 0.1584714949131012, -0.5429006218910217, -0.32137662172317505, 0.36126652359962463, 0.09641185402870178, 0.2095855325460434, -1.022207260131836, -0.4016428589820862, -0.8966625928878784, -0.4731300175189972, 0.3630687892436981, 0.803284764289856, 0.7033842206001282, 0.7164287567138672, -1.478242039680481, 0.7658252716064453, 0.45121029019355774, -0.19726473093032837, 0.37131577730178833, 1.574152946472168, 0.9731098413467407, -0.4271085560321808, -0.4074433743953705, -0.08004465699195862, 0.9200097918510437, -0.7086910009384155, -0.29724109172821045, -1.3435908555984497, -0.6447597146034241, 0.11731468141078949], [-1.1223244667053223, 2.0527091026306152, -2.743731737136841, 0.36985883116722107, 1.0499197244644165, -0.08626023679971695, 1.3337534666061401, 0.004646657034754753, -0.17815673351287842, -0.4696984589099884, -0.6569536924362183, 0.5093085765838623, 0.7135547995567322, 0.8873103260993958, 0.327494353055954, 0.20099209249019623, 0.60172438621521, -0.40408337116241455, 0.5677622556686401, 0.8767159581184387, -0.5377410650253296, -0.9817512631416321, -0.40925782918930054, 0.31597188115119934, 0.4474058449268341, 0.1296733170747757, -1.3194881677627563, 0.4099811315536499, -1.150691270828247, -0.9264757633209229, 1.5373914241790771, -0.49042943120002747, -0.0008513191714882851, -0.10818549245595932, -1.194236159324646, 0.05474048852920532, 0.9524753093719482, 0.1267307698726654, -0.5650658011436462, -0.4168292284011841, 2.1412582397460938, 0.10672629624605179, -0.2454671859741211, -1.4871350526809692, 0.19450072944164276, -0.21602506935596466, 0.39344504475593567, -0.4638795852661133, 0.24327680468559265, -1.065610647201538, 0.2967032790184021, 0.6783242225646973, -0.02243027836084366, 1.2450071573257446, 0.5772045850753784, -0.694485604763031, 0.5656039714813232, 0.9495587348937988, -0.6427892446517944, 0.711164116859436, 0.7264355421066284, -0.521981418132782, -0.22973255813121796, 0.150911346077919, 0.5347968339920044, -0.2797575294971466, 1.3220244646072388, 0.555325984954834, 0.22262831032276154, 0.07223423570394516, 0.42706021666526794, 0.6475703120231628, -0.18362414836883545, 0.051297228783369064, -0.6383527517318726, 0.39079606533050537, 0.42112430930137634, 0.4598677158355713, -0.39153429865837097, 0.5947816967964172, -0.0830007940530777, 0.39001917839050293, 0.31878504157066345, 0.2669863700866699, 0.3331625759601593, -0.03090146742761135, -0.3241620659828186, -0.03260854259133339, 0.05219052731990814, 2.2010691165924072, 0.16059421002864838, 0.6178165674209595, 0.8865882158279419, 0.2779536545276642, 0.10889291018247604, -0.46758654713630676, -0.09578245878219604, -0.8855584859848022, -0.19321879744529724, -0.970925509929657, 0.15160007774829865, -0.9940407276153564, -0.3452524244785309, 0.7895785570144653, 0.5434407591819763, 1.9043397903442383, -0.7486463189125061, -0.6366764903068542, 0.048631858080625534, -0.3001711666584015, -0.6289950013160706, 0.6068089008331299, -0.7806087136268616, -0.9983437061309814, -0.042609803378582, 0.669158935546875, 0.8014394640922546, 0.42340371012687683, 0.7734048366546631, 0.324747771024704, -0.40434256196022034, -0.37557485699653625, -0.20887921750545502, 0.7241397500038147, 0.7833939790725708, 0.44759801030158997, -0.5890282988548279, -0.45235586166381836, 0.2864021062850952, 0.10686234384775162, 0.09786567836999893, -0.8492887616157532, 0.1466531902551651, 0.5191391110420227, -0.5558186769485474, 0.7000795006752014, -0.6930206418037415, -0.9137210249900818, 0.23681247234344482, -0.001766386441886425, 0.03983931615948677, -0.4005641043186188, -0.22965486347675323, -0.783683717250824, 0.5244379639625549, -0.7055230140686035, 0.6213490962982178, -0.27491796016693115, -0.6418287754058838, 0.0633029192686081, -1.2677416801452637, 0.43694421648979187, -0.19462457299232483, 1.0776304006576538, 0.1337091475725174, -0.2393355816602707, 0.6220694184303284, -0.21812692284584045, 0.4004116356372833, 1.2253477573394775, 0.4805130660533905, 0.27580803632736206, -0.9943655729293823, 0.9840435981750488, 0.8610774278640747, -0.8177493810653687, 0.6091309785842896, -0.14382928609848022, -0.5002736449241638, 1.0344175100326538, -0.10032514482736588, -0.6511730551719666, -0.6313984990119934, 0.35504329204559326, 0.09871882200241089, -0.6379605531692505, 0.9510418176651001, -0.3230036199092865, -1.0775243043899536, -1.361304521560669, 0.6549990773200989, -0.32763123512268066, 0.41504254937171936, -0.09609697014093399, 0.5776026248931885, -0.09933321923017502, 0.008499384857714176, -0.3453013300895691, 0.02789345383644104, -1.0753071308135986, -1.2716758251190186, -0.21863222122192383, -1.2097609043121338, -0.05879531428217888, -0.16680234670639038, -0.48218855261802673, 1.0998634099960327, -0.8703579902648926, -0.5999422669410706, -0.046353779733181, 0.3115127980709076, -0.6301231384277344, -1.6377779245376587, -0.12848612666130066, -0.3645946979522705, 1.0923283100128174, -0.3471936881542206, 0.6721792221069336, -0.8503998517990112, 0.31843042373657227, 0.9352619051933289, -0.15193867683410645, -1.3593848943710327, 0.43262919783592224, 0.10171741247177124, -1.517765760421753, 0.7811056971549988, -0.2656956911087036, 0.41290488839149475, 0.02067137323319912, -0.25323694944381714, 1.2504440546035767, 0.13128261268138885, 0.04327038303017616, -0.03746197745203972, -0.9185547232627869, -0.3033863604068756, -0.8861346244812012, -1.3850371837615967, 0.6476454138755798, -1.0837270021438599, -0.619778573513031, 0.40639281272888184, 0.7430161237716675, -1.487457513809204, 0.9100339412689209, -0.29262441396713257, 0.4343615472316742, 0.40698063373565674, 0.7036444544792175, 0.3022400736808777, 0.34085527062416077, -0.7983682751655579, -0.047458499670028687, -0.9784818291664124, -0.17326508462429047, 0.44733691215515137, -0.30591288208961487, 0.38322335481643677, 1.2013684511184692, 1.173335075378418, -0.282943993806839, 0.2934410870075226, -0.34898078441619873, 0.24081259965896606, -0.9278045892715454, -0.14146055281162262, 0.7369027137756348, -0.4633234143257141, 1.108932375907898, 0.6939570903778076, -1.5332621335983276, -0.2473771870136261, -0.29369476437568665, 0.1464574784040451, -0.6671988368034363, -1.0854963064193726, -0.8609445095062256, 0.02606184408068657, -0.21699319779872894, -0.09502827376127243, -0.031069165095686913, -0.586892306804657, 0.8831437826156616, -0.1439722329378128, 0.0659366324543953, -0.15105952322483063, 0.7424085736274719, 0.09931057691574097, 0.42818769812583923, -0.31882232427597046, -1.191907525062561, -0.5014002323150635, 0.535689115524292, 0.3612799048423767, 0.4011869430541992, 0.9769704937934875, 0.8364726305007935, 0.49308252334594727, 0.3575921952724457, 0.6094344854354858, 0.2945882976055145, 0.4304214417934418, 0.4335755705833435, 0.14373183250427246, 0.405476450920105, 0.9670354723930359, -1.6462633609771729, -0.7907525897026062, -0.02922859974205494, 0.396087110042572, 1.3628603219985962, 0.9813603758811951, 1.435225009918213, -0.4359135031700134, -0.3680749833583832, -0.3446700870990753, -0.03785134479403496, -0.03786521404981613, -0.1889292597770691, -0.8010494112968445, -0.7907391786575317, -0.6313411593437195, -0.8284956812858582, -0.25604310631752014, 0.31464529037475586, -0.2691165804862976, 1.1274641752243042, 0.5507224202156067, -0.6573765277862549, -0.6527105569839478, -0.5055278539657593, -0.19892868399620056, -0.40832749009132385, 0.9843679070472717, 1.4488500356674194, -1.6783123016357422, -0.12898977100849152, 0.20386242866516113, 0.20785854756832123, 0.311989963054657, 0.1334272027015686, 0.07616059482097626, -1.0614498853683472, -0.4060472249984741, -0.27267584204673767, 0.9224035739898682, 0.08727280795574188, -0.43874216079711914, -0.13066880404949188, 0.2514767646789551, 1.0216773748397827, 0.10707569122314453, -0.6083377003669739, 0.46001237630844116, -0.8329702019691467, -0.3781651556491852, -0.2061149626970291, 0.049301665276288986, 0.8619210124015808, -0.609585165977478, -0.7779896855354309, -0.38561707735061646, -0.38082563877105713, -0.2376541644334793, 0.9064707159996033, 0.46353623270988464, 0.4687953591346741, 0.042474955320358276, -0.40332847833633423, 1.4726125001907349, -0.16157017648220062, 0.522704005241394, -1.3348532915115356, 1.034018874168396, 0.7478360533714294, 1.2878763675689697, 0.8519868850708008, 0.22209139168262482, 0.6111435294151306, -0.5496874451637268, -0.4574393928050995, 0.19010122120380402, 0.5625687837600708, 0.6127631664276123, -0.2339356541633606, -0.2143539935350418, -0.110505111515522, -0.0033862562850117683, -0.5409835577011108, 0.21332179009914398, 0.5464561581611633, -0.446507066488266, -0.7429712414741516, 1.205114722251892, 0.669938862323761, -0.23119010031223297, -0.40227583050727844, -0.6027898192405701, 0.5278797149658203, -0.8620632886886597, 0.21641959249973297, -0.08158961683511734, -0.07995135337114334, 0.06805511564016342, -0.6321752667427063, 0.04902788996696472, -0.3789632022380829, 0.1616574376821518, 1.140708088874817, -1.2638089656829834, -0.15379278361797333, -0.5966828465461731, 0.023084213957190514, 0.9288991093635559, 0.17689283192157745, 0.18806637823581696, 0.10559029132127762, 0.11389192193746567, 0.7135856747627258, 0.14699697494506836, 1.1859990358352661, -0.1461307257413864, -0.3665861487388611, 0.5193822383880615, 0.05460093542933464, 0.3985461890697479, -0.9842071533203125, -0.7882388234138489, -0.22683964669704437, -0.5662791728973389, -0.6141754388809204, 0.5827281475067139, 0.38164329528808594, 1.8310467004776, 0.16267521679401398, 0.45650964975357056, 0.3569169342517853, -0.1690649688243866, -0.7231606841087341, -0.33566227555274963, 0.13254188001155853, -0.23749999701976776, 0.05397481471300125, -0.2534962296485901, 0.7561689615249634, 0.6048670411109924, -0.12555263936519623, 0.09597126394510269, 0.20484447479248047, 0.3002031445503235, 0.23038747906684875, -0.22299757599830627, 0.6347569227218628, 1.1194982528686523, 0.6851807832717896, 1.5081559419631958, -0.3599473237991333, -1.1395597457885742, 0.6937945485115051, 0.2316180169582367, -0.08077898621559143, 0.8813526630401611, 0.575107753276825, 1.3128173351287842, -1.3978593349456787, -0.17963261902332306, 0.735022246837616, 0.13414844870567322, 0.2687787711620331, -0.5330308079719543, 0.042560894042253494, -1.0636636018753052, -0.13373389840126038, 0.8829326629638672, -0.8740426898002625, 0.905358612537384, 0.12305354326963425, -0.1468518078327179, 1.138327956199646, -0.3420102298259735, 0.1446561962366104, -0.762834906578064, -0.2394072562456131, -0.6246044635772705, -0.10333137959241867, 0.7937342524528503, 1.0075714588165283, 1.0757948160171509, 0.3705978989601135, -0.04258997365832329, -0.5364761352539062, 0.18749885261058807, -1.034376859664917, 0.29328685998916626, -0.00754851009696722, 0.24330727756023407, -0.6676642894744873, -1.1718024015426636, -0.1709420531988144, -0.816055417060852, -1.0970937013626099, -0.10337641835212708, -0.35515472292900085, -1.0229895114898682, 0.4913875460624695, 0.13150541484355927, 0.8087950348854065, 0.7414022088050842, 0.5120738744735718, 0.45632320642471313, 0.2372858226299286, -0.7366296648979187, -0.07307445257902145, -0.20048744976520538, -0.16584917902946472, -0.017701048403978348, -0.7615880966186523, -0.5079740285873413, 0.6748865246772766, -0.25788891315460205, -0.37721675634384155, -0.4446044862270355, 0.7113043665885925, 1.8673536777496338, -0.11130734533071518, -0.2948322296142578, 0.6954565644264221, -0.4059409201145172, 1.4459718465805054, 1.3107496500015259, -1.1452323198318481, -0.4272034466266632, 0.32254862785339355, -1.999032974243164, 1.3192960023880005, -1.0561836957931519, -0.04225213825702667, 0.6968902349472046, 0.17204080522060394, -0.1271224319934845, 1.236317753791809, -1.2783833742141724, 0.3469022214412689, 0.46209123730659485, -0.5679185390472412, -0.6809791922569275, 0.3632737994194031, 1.2153764963150024, -0.11496228724718094, -1.0330666303634644, 0.5728232264518738, -0.1753542125225067, -0.626510739326477, -0.2987450659275055, 0.5240092277526855, 0.11107108741998672, 0.2662492096424103, -0.07131697237491608, -0.30743879079818726, 0.5226856470108032, -1.5228354930877686, 0.26132816076278687, -0.044952116906642914, 0.47940683364868164, 0.7800991535186768, -0.549551784992218, 0.7059096097946167, -0.3033955991268158, -0.0619724802672863, -0.36653563380241394, -1.037937879562378, 1.1158322095870972, 0.18075881898403168, -0.020439784973859787, 0.9114231467247009, -0.23511500656604767, -0.8799149990081787, -0.8675588369369507, -0.24028588831424713, 0.7488111853599548, -0.9775005578994751, -0.24473936855793, -0.8343843221664429, -0.5465319752693176, -0.13025417923927307, -0.019088611006736755, 0.6513977646827698, -1.3310655355453491, -1.206132411956787, -0.2686639130115509, -0.22458499670028687, 0.6567688584327698, -0.6265381574630737, -0.07724756002426147, 0.3557702898979187, -1.3091533184051514, 0.7835478782653809, -0.46590888500213623, -1.7799222469329834, 0.10837599635124207, -1.275781512260437, 0.8870435953140259, -0.3126380145549774, -0.5420414209365845, 0.3107939064502716, 1.7329130172729492, -1.517154335975647, -1.145128607749939, -0.8175719380378723, -0.1438130885362625, 0.6828474998474121, 0.7281943559646606, -0.6578369736671448, 1.480217456817627, -0.5193539261817932, -0.22978784143924713, -0.8252422213554382, 0.19714640080928802, -0.6968775391578674, -0.2600429058074951, -0.4435848593711853, 0.003973802551627159, -0.13181570172309875, 1.0639835596084595, 0.8723357319831848, 0.9052366614341736, -0.003414093516767025, 1.309919834136963, -0.7445166110992432, -0.6882825493812561, 0.07241590321063995, 0.46345505118370056, -1.0374575853347778, -0.6802701354026794, -0.2554980516433716, -0.4858855903148651, -1.0484050512313843, 0.19944262504577637, 1.1950782537460327, -0.46202975511550903, 0.4294178783893585, -0.16932745277881622, 0.5273483395576477, -1.15383780002594, 0.5602478981018066, 0.14258967339992523, -1.6887454986572266, -0.20463982224464417, -0.652296781539917, 0.16062520444393158, -0.9255390167236328, 0.44006916880607605, 0.7191120386123657, 0.6249280571937561, -0.6999475955963135, -0.02195393107831478, 0.5484977960586548, 0.030106352642178535, -0.705034613609314, 0.9910704493522644, 0.7036548852920532, -0.4022267162799835, -0.23493748903274536, 0.997471809387207, 0.08812448382377625, 0.3716799318790436, 0.46031472086906433, -0.008394014090299606, -0.4808080494403839, 0.03792174533009529, 0.011052542366087437, -0.012445870786905289, -0.05154244974255562, 0.14940759539604187, -0.2825564444065094, 0.2984057664871216, 0.9748867154121399, -0.6174129843711853, -0.8454970121383667, 1.513781189918518, 0.5616729855537415, 0.06152801960706711, -0.022930091246962547, -0.26949742436408997, 0.11853707581758499, 0.17501404881477356, 0.7989627122879028, 0.5811158418655396, -0.10587310045957565, 0.050042975693941116, 0.5740622282028198, -0.045340899378061295, -0.12768906354904175, -0.11791948974132538, -1.3169351816177368, -0.32530781626701355, -0.8522019982337952, 0.6417766213417053, 0.48061177134513855, -0.6651543974876404, -0.6724544763565063, -1.2291280031204224, -0.04923589527606964, -0.06165082007646561, -0.23065416514873505, -0.7647312879562378, -0.046453047543764114, -0.03774499520659447, 1.5950229167938232, -0.4511851668357849, 1.5891382694244385, -0.6116995215415955, -0.38930031657218933, -0.2697218060493469, 0.12198550999164581, 0.49878042936325073, 0.04479718953371048, 0.31223103404045105, -0.8348584771156311, 0.5850733518600464, -0.536209762096405, -0.8320261836051941, 0.7701785564422607, 0.33432427048683167, 0.2865542471408844, -0.6094480752944946, -0.6364780068397522, 0.3782987892627716, 0.3863182067871094, 0.36095112562179565, -0.7493330240249634, -1.1011309623718262, -0.7312891483306885, -0.05046851933002472, -0.04727242514491081, 0.46279019117355347, -0.48328301310539246, 0.9055132269859314, 0.6080271005630493, -0.8257912397384644, -0.691717803478241, -1.527672290802002, 0.8727987408638, 0.02914041094481945, 0.3891255557537079, -0.2201511114835739, 0.061174310743808746, 0.6364562511444092, -0.7193906307220459, -0.8222609758377075, -0.2349041849374771, 0.5212845206260681, 0.16264505684375763, -0.7560079097747803, -0.2922545373439789, -1.2519302368164062, -0.32177308201789856, 0.009408313781023026, 0.8094114661216736, 0.6948357820510864, 0.3182140588760376, -0.8614763021469116, 0.048972781747579575, 0.6034340262413025, 0.3456285893917084, 0.6898298859596252, 1.4465453624725342, 1.2404024600982666, -0.27559056878089905, -0.42986002564430237, -0.3140415847301483, 0.7352452278137207, -0.7644563317298889, -0.040983639657497406, -0.5291313529014587, -0.13322517275810242, 0.21572460234165192], [0.37878111004829407, 2.2354745864868164, -2.9160006046295166, 0.48581111431121826, 0.6083338856697083, -0.42939019203186035, 0.6181135177612305, 0.20114454627037048, -0.24036012589931488, -1.080702304840088, -0.6466184258460999, -0.09245496243238449, 0.8617374897003174, 0.8190584778785706, 0.4846747815608978, 0.6709504127502441, 0.31525328755378723, -0.4527246952056885, 0.5804045796394348, 1.603519082069397, -0.5727075338363647, -1.1098569631576538, -0.4427519738674164, 0.08748044818639755, -0.05623113736510277, 0.27539706230163574, -1.502987027168274, -0.22452853620052338, -0.9286849498748779, -0.8308998346328735, 1.3060016632080078, -0.24064189195632935, 0.8265595436096191, -0.223636656999588, -1.5229377746582031, 0.21185137331485748, 1.2307977676391602, -0.2235012799501419, 0.11934537440538406, -1.0588136911392212, 1.9240503311157227, 0.6094117760658264, -0.4999018907546997, -1.396647572517395, 0.27729323506355286, 0.029919186607003212, 0.704115629196167, -0.9771783947944641, 0.37373843789100647, -0.7281970977783203, 0.7560439109802246, 0.25985509157180786, -0.4380073845386505, 1.30888032913208, 0.7786426544189453, -0.9855237007141113, -0.10634976625442505, 0.6537444591522217, 0.1934545636177063, 0.8223401308059692, 1.1729344129562378, -0.51777583360672, 0.14821884036064148, 0.4793488085269928, 0.5185002088546753, -0.28724581003189087, 0.49013394117355347, 0.17644523084163666, 0.6854112148284912, -0.10844580084085464, 0.2238752841949463, 0.15253104269504547, -0.3313477039337158, 0.12304110080003738, -0.6491968035697937, 0.9371994733810425, 0.45329549908638, 0.29136142134666443, -0.03082374297082424, 0.3868826627731323, -0.03694683313369751, 0.012253538705408573, 0.8979735374450684, -0.537082850933075, -0.13199998438358307, -0.10203371942043304, 0.5549468994140625, 0.06714034080505371, -0.5976128578186035, 1.3721665143966675, -0.2203892320394516, 0.5693540573120117, 0.8595621585845947, 0.2973768711090088, -0.06587860733270645, -0.5771680474281311, 0.5431272983551025, -1.566705584526062, -0.18385791778564453, -0.7821863889694214, 0.13556085526943207, -0.8028281331062317, 0.4048795998096466, 1.0166287422180176, 0.5757288932800293, 0.9565660357475281, -0.22917672991752625, -0.6167579889297485, 0.1780935376882553, -0.009876572526991367, -0.6089047789573669, -0.5146539807319641, -0.7713923454284668, -1.446738362312317, -0.18112927675247192, 0.8425431847572327, 1.7213413715362549, 0.02613949589431286, 1.1610444784164429, 0.30338239669799805, -0.6067488193511963, -0.3112553656101227, -0.568635106086731, 0.2568947374820709, 1.2053959369659424, 0.5483874082565308, -0.6991428136825562, -0.659467339515686, 0.37431418895721436, 0.14205065369606018, 0.6410353183746338, -0.013797755353152752, -0.6318535804748535, 0.06470552831888199, -0.40270596742630005, 1.3074791431427002, -0.977008581161499, -0.34358134865760803, -0.045578133314847946, 0.808939516544342, 0.10396076738834381, -0.005859553813934326, 0.1265992522239685, -0.365548700094223, 0.3291454315185547, -0.9606345295906067, 0.20795844495296478, -0.48473140597343445, -0.6632183194160461, 1.193535327911377, -0.9121848344802856, 0.07889603078365326, -0.7455326318740845, 1.5190280675888062, 0.48473718762397766, -0.855096161365509, 0.32622578740119934, 0.019533826038241386, 0.34738844633102417, 0.45138540863990784, 0.6543466448783875, -0.10807374864816666, -0.6172373294830322, 0.018507016822695732, 0.48559507727622986, -0.3959178924560547, 0.796924889087677, 0.10778166353702545, -0.4381287693977356, 1.5324798822402954, -0.45591866970062256, -0.6765731573104858, -0.5638375878334045, 0.571030855178833, -0.19227449595928192, -0.10960686951875687, 1.073392629623413, -0.3527691662311554, -1.1553692817687988, -0.5806835889816284, 1.3198645114898682, -0.3814791142940521, 0.6214599013328552, 0.02820981852710247, 0.6276766061782837, 0.46150490641593933, 0.1821436882019043, -0.6100713610649109, -0.43070486187934875, -1.274034857749939, -0.6207498908042908, -0.398145854473114, -1.1636154651641846, 0.4563608765602112, -0.26024988293647766, -0.752072811126709, 1.001042366027832, -0.4324468970298767, -0.5972204804420471, 0.3015389144420624, -0.1586495339870453, -0.13605737686157227, -0.9673344492912292, -0.14338745176792145, -0.25869011878967285, 1.5589417219161987, -0.6242138147354126, 0.8629423975944519, -0.12851938605308533, 0.1744513362646103, 0.5840852856636047, -1.147236943244934, -1.1386191844940186, 0.6380786299705505, 0.2963557839393616, -1.6616623401641846, 0.8865612745285034, -0.19541789591312408, 0.036480896174907684, 0.007653495296835899, 0.20118562877178192, 1.197352409362793, 0.20738622546195984, -0.21308746933937073, 0.7362803220748901, -0.8910393118858337, -0.39122042059898376, -1.1363290548324585, -0.5480756163597107, -0.14174096286296844, -1.3153517246246338, -0.8585179448127747, 0.14311662316322327, 0.5342507362365723, -1.229261875152588, 0.23876987397670746, -0.16017277538776398, -0.2504122853279114, 0.22504939138889313, 1.1545549631118774, 0.5073477029800415, 0.1477302610874176, -0.49521538615226746, -0.11531843990087509, -1.1012409925460815, 0.629343569278717, 0.6698243021965027, -0.2816303074359894, -0.2629948854446411, 1.0719630718231201, 1.202815294265747, -0.2606743276119232, 0.9126500487327576, -0.34821003675460815, -0.14790652692317963, -0.5272348523139954, -0.6212753653526306, 0.41575098037719727, -0.6216702461242676, 1.2224079370498657, 0.8140106201171875, -0.9043706059455872, 0.09804735332727432, -0.36358222365379333, 0.09991341829299927, -0.5553399324417114, -0.34996092319488525, -1.5120540857315063, -0.26227569580078125, -0.6594298481941223, -0.3614027202129364, 0.4924229681491852, -0.11118988692760468, 0.44429245591163635, -0.4618479609489441, -0.43162527680397034, 0.3098539710044861, 0.7324086427688599, -0.25053685903549194, 0.8152307271957397, -0.2515721917152405, -1.5211851596832275, -1.1394178867340088, 0.2804483473300934, 0.2150876671075821, 0.20996788144111633, 0.4237976372241974, 0.9588561654090881, 0.7683152556419373, 0.2216765433549881, 0.6860181093215942, -0.12254028767347336, 0.44600850343704224, -0.37525859475135803, 0.27664464712142944, 0.4328787922859192, 0.9776762127876282, -0.6810015439987183, -0.8477472066879272, -0.3694479465484619, 0.705273449420929, 1.4640141725540161, 1.2174001932144165, 0.8272795677185059, -0.6148844361305237, 0.0642537772655487, -0.5499931573867798, -0.25632208585739136, -1.1564178466796875, -0.21546834707260132, 0.02093886211514473, -0.80889493227005, -1.209226369857788, -0.11807983368635178, -1.0120856761932373, 0.542547345161438, 0.36952510476112366, 0.6665078997612, 1.3033719062805176, -0.5731532573699951, -0.881537914276123, -0.7191984057426453, -0.21396060287952423, -1.1596189737319946, 0.9089851975440979, 1.1891484260559082, -1.4182207584381104, 0.02936922013759613, 0.20069323480129242, -0.19977346062660217, 0.07250610738992691, 0.28940021991729736, 0.27499058842658997, -1.0861412286758423, -0.09485678374767303, 0.2965643107891083, 0.7179747223854065, 0.2727627754211426, -0.10676003992557526, -0.019156277179718018, 0.03105221502482891, 0.4956316649913788, 0.32483452558517456, -0.8456193804740906, 0.1290169507265091, -0.47379931807518005, -0.3346676528453827, 0.06316731125116348, 0.4787801206111908, 0.2959986925125122, -0.9072394967079163, -1.1121121644973755, -0.4892606735229492, -0.35302454233169556, -0.7558239698410034, 0.5587853789329529, 0.508499026298523, 0.31160295009613037, -0.3286820948123932, 0.33478406071662903, 1.3185926675796509, 0.03389750048518181, 0.1277237832546234, -0.7976849675178528, 1.1795461177825928, 0.4325670003890991, 1.7331156730651855, 0.04663108289241791, 0.13431359827518463, 0.213369682431221, -1.465600609779358, 0.14078307151794434, -0.07383719086647034, 0.26069697737693787, 0.3787880539894104, -0.9145276546478271, 0.005301028490066528, -0.6354303956031799, 0.8735822439193726, -0.22750356793403625, 0.15462259948253632, 0.29223528504371643, -0.38536617159843445, -0.24572639167308807, 0.8895789384841919, 0.7328834533691406, -0.4183696508407593, -0.6050973534584045, -0.10775187611579895, 0.4293246269226074, -0.9047459363937378, 0.4754462242126465, -0.2105327993631363, -0.3957420587539673, 0.804298996925354, -0.29331502318382263, -0.024631408974528313, -0.3970756232738495, 0.390207439661026, 1.8088161945343018, -1.2439361810684204, -0.4103877544403076, -0.46688416600227356, 0.2771078050136566, 0.8350074291229248, 0.20909951627254486, 0.5358878374099731, 0.7180299758911133, -0.4765366017818451, 0.11888553202152252, 0.3413779139518738, 1.2968236207962036, 0.19775012135505676, -0.4061047434806824, 0.22573420405387878, -0.46037557721138, 0.7479600310325623, -1.6582698822021484, 0.6103214621543884, 0.25634002685546875, -0.1755484789609909, -0.5578818917274475, -0.16867175698280334, -0.2332337647676468, 2.1052515506744385, 0.611147403717041, -0.001504517043940723, 0.13957640528678894, 0.04640103131532669, -1.143746256828308, -0.04152876138687134, 0.8074743747711182, -0.8400630950927734, -0.6998008489608765, 0.7230265140533447, 0.12198012322187424, 0.6160687208175659, 0.06408359855413437, -0.05370548367500305, 0.24227462708950043, 0.4234221875667572, 0.24504989385604858, -0.10307232290506363, 0.6312863826751709, 1.5758047103881836, 0.34073418378829956, 1.4479984045028687, -0.06555262207984924, -0.5788741707801819, 0.6045194268226624, -0.12461301684379578, 0.6925949454307556, 0.9940491914749146, 0.38928958773612976, 0.9259209632873535, -0.5366073846817017, -0.25681161880493164, 0.43542927503585815, 0.18172378838062286, 0.5632778406143188, -0.2627006471157074, 0.6939886808395386, -0.42757609486579895, -0.10117164999246597, 0.6528118848800659, -0.3249163031578064, 0.5049106478691101, -0.2823624014854431, 0.20091164112091064, 0.9210606217384338, -0.3586522340774536, 0.348636269569397, -1.1340938806533813, -0.2902151346206665, -0.24331079423427582, -0.409109503030777, 0.8052220940589905, 0.5124829411506653, 0.9763724207878113, 0.4344367980957031, 0.49206116795539856, -0.5499905347824097, 0.08581619709730148, -0.7904030084609985, -0.0499747134745121, -0.2975701689720154, 0.2744286060333252, -0.8322449922561646, -0.27872976660728455, -0.3338063955307007, -0.3587256968021393, -0.2286389172077179, -0.21462364494800568, -0.29718127846717834, -0.9548612236976624, 0.5758910179138184, 0.7786113619804382, 0.3271481394767761, 0.5643703937530518, 0.14409618079662323, 0.1317369043827057, 0.8089451193809509, -0.6024089455604553, 0.027933793142437935, 0.38490208983421326, 0.09684378653764725, -0.029103847220540047, -0.500742495059967, -0.7046648859977722, 0.8025727868080139, 0.3251761794090271, -0.23910807073116302, 0.17043137550354004, 0.5521116852760315, 1.2868366241455078, -0.4799647927284241, -0.32212308049201965, 0.3959401547908783, -0.829163670539856, 1.1619725227355957, 1.2079956531524658, -0.7649558782577515, -0.8387755155563354, -0.6333877444267273, -1.8885592222213745, 1.524225115776062, -0.6251828670501709, 0.027752544730901718, 1.095509648323059, 0.5566152334213257, -0.07463381439447403, 1.3206723928451538, -0.14353005588054657, 0.6391946077346802, 0.2703826129436493, -0.39416059851646423, 0.0774957463145256, 0.7893968224525452, 0.7952272891998291, -0.23973600566387177, -0.8886343240737915, 0.9374701976776123, -0.11672385782003403, -0.33631592988967896, -0.49136972427368164, 0.11394897103309631, -0.0803324356675148, 0.3153817057609558, 0.3203035593032837, -0.07575874775648117, 0.18139728903770447, -1.193591594696045, 0.28482264280319214, 0.4765119254589081, 0.5712161660194397, 0.14044886827468872, -0.36493995785713196, 0.5472020506858826, -0.7905579805374146, 0.08625845611095428, -0.010437899269163609, -0.2324400097131729, 1.212609052658081, 0.5761561393737793, -0.038309305906295776, -0.0978904739022255, 0.07171198725700378, -0.6245802640914917, -1.0921194553375244, -0.49081918597221375, 1.457762598991394, -1.5123353004455566, 0.07451768964529037, -0.7362194061279297, -0.3385979235172272, -0.4576302170753479, 0.14919957518577576, 0.7544003129005432, -0.9379857182502747, -0.945794403553009, -0.12575305998325348, 0.004081390798091888, 0.6901296973228455, -1.1278082132339478, 0.18476620316505432, 0.12275831401348114, -1.0754798650741577, -0.11403780430555344, -0.04789716750383377, -1.7082797288894653, 0.5678611993789673, -1.1453958749771118, 0.545592725276947, -0.03631485626101494, 0.15336546301841736, -0.19172492623329163, 1.3375141620635986, -1.1840261220932007, -1.5347009897232056, -1.2001148462295532, -0.2792837917804718, 0.5318924188613892, 1.2929705381393433, -1.2485992908477783, 1.1657119989395142, -0.19794097542762756, -0.32626980543136597, -0.14214789867401123, 0.2784809470176697, -0.41835540533065796, -0.08101370185613632, -0.23979578912258148, 0.3655479848384857, -0.24620656669139862, 1.1791017055511475, 0.7406278252601624, 0.9455310702323914, 0.2561335861682892, 1.2915161848068237, -0.7587264776229858, -0.2160692662000656, 0.13086482882499695, 0.2933617830276489, -0.7121408581733704, 0.07973745465278625, 0.5155470371246338, -0.7274790406227112, -1.0836098194122314, 0.014693851582705975, 0.7151626348495483, -0.7138140201568604, 0.20339439809322357, -0.28294098377227783, -0.33286842703819275, -0.6840919256210327, 0.20910955965518951, 0.11153096705675125, -0.41246944665908813, -0.08688738942146301, -0.6825871467590332, -0.142588809132576, -0.7976071238517761, 0.2440856248140335, 1.0338057279586792, 0.6117250919342041, -0.18982888758182526, -0.1428823322057724, 0.2584141194820404, 0.41063302755355835, -0.5765640139579773, 0.6776542067527771, 0.6879634261131287, -0.3884379267692566, -0.02912629209458828, -0.10569184273481369, -0.36581891775131226, -0.09288721531629562, -0.14105863869190216, -0.4236699044704437, -0.8166813254356384, 0.5720030069351196, 0.3121670186519623, -0.22304922342300415, 0.43051138520240784, 0.2715664207935333, 0.19757212698459625, 0.22025255858898163, 1.584138035774231, -0.8305061459541321, -0.006476655602455139, 1.4230701923370361, 0.3997204005718231, -1.380923867225647, -0.09189843386411667, -0.8501768708229065, 0.21925146877765656, 0.44780755043029785, 0.08911523222923279, 0.6714332103729248, -0.40446552634239197, 0.7727224230766296, 0.001489236019551754, -0.25558972358703613, -0.4626349210739136, -0.46241793036460876, -1.19559907913208, -0.4583481252193451, -0.8314957022666931, -0.06068151816725731, 0.0769488513469696, -1.4852943420410156, -0.8453509211540222, -0.04891463741660118, 0.2478288859128952, -0.3500230610370636, -0.3568706512451172, 0.4482324719429016, 0.1353537142276764, -0.3282625377178192, 1.2326407432556152, -0.36309778690338135, 0.4550686478614807, 0.060273464769124985, -0.010453497059643269, -0.3393840789794922, -0.20534883439540863, 0.19139666855335236, 0.02477240189909935, -0.6732326745986938, -1.350033164024353, 0.276526540517807, -0.6713333129882812, -0.5346056818962097, 0.5489745140075684, 0.5774663090705872, 0.4733969271183014, -0.8086430430412292, -0.9693135023117065, 0.5532550811767578, 0.9041444659233093, 0.06769534945487976, -0.7270948886871338, -1.1357548236846924, -0.9344905018806458, 0.15678520500659943, -0.3025997579097748, 0.8056643009185791, -0.2685605585575104, 0.44810348749160767, 0.2343713939189911, -0.7925655841827393, -0.9636244177818298, -0.8796660304069519, 0.7894864678382874, 0.4785785675048828, -0.114455945789814, -0.5710898637771606, 0.07518327236175537, -0.3025137186050415, -0.8486092686653137, -0.6393380761146545, 0.04370792955160141, 0.32281991839408875, -0.04359692335128784, -1.131156086921692, -0.4413236379623413, -0.995685875415802, 0.10452957451343536, 0.5109044909477234, 0.8241901397705078, 0.17298977077007294, -0.2852298617362976, -1.3223897218704224, -0.09860308468341827, 1.4252010583877563, 0.2032734751701355, -0.006359881721436977, 1.2288885116577148, 0.4382171332836151, -0.10804051905870438, -0.7405375838279724, 0.10696873068809509, 0.23967598378658295, -0.8427165746688843, 0.43338289856910706, -0.6926855444908142, -0.5121281147003174, -0.40081897377967834], [-0.12617100775241852, 2.140777111053467, -2.737794876098633, 0.16213516891002655, 0.7787225246429443, -0.4163397550582886, 1.651484727859497, -0.3420312702655792, -0.23731127381324768, -0.9449273943901062, -0.9816679358482361, 0.02604692056775093, 0.7757999897003174, 0.8708007335662842, 0.7063698768615723, 0.6742120981216431, 0.42126700282096863, -0.27684932947158813, 0.4614161550998688, 1.2887362241744995, 0.0573611818253994, -0.915464460849762, -0.3088737726211548, 0.27058935165405273, -0.1970352977514267, 0.4014367461204529, -0.7151369452476501, 0.31976866722106934, -1.114963412284851, -0.9403015971183777, 1.4422187805175781, 0.3059546947479248, 0.673409640789032, 0.5067829489707947, -1.282726526260376, -0.07720385491847992, 1.0071070194244385, 0.27266114950180054, 0.13322962820529938, -0.17266307771205902, 1.9040430784225464, 0.6137620806694031, 0.012286249548196793, -1.4738571643829346, 0.06500354409217834, 0.27841371297836304, 0.896692156791687, -0.9901763200759888, 0.5518465042114258, -0.7189205288887024, 0.21246302127838135, -0.1026831641793251, -0.09212587028741837, 1.9983153343200684, 0.494423508644104, -0.9505903124809265, 0.6506442427635193, 0.6187673211097717, -0.30329230427742004, 0.22499026358127594, 0.8528380393981934, -0.04764708876609802, 0.7947022914886475, 0.3128422200679779, 0.5719015002250671, -0.31442612409591675, 0.444052517414093, -0.055767741054296494, -0.24704664945602417, 0.1574072390794754, 0.11649798601865768, -0.06528022885322571, -0.69089275598526, 0.32541289925575256, -0.8675023913383484, 0.5430732369422913, 0.5988290905952454, 0.7082121968269348, 0.07598672807216644, 0.3029678761959076, -0.7597311735153198, 0.5398284792900085, 0.7031951546669006, 0.04496161267161369, -0.40555086731910706, 0.17224948108196259, 0.8666597008705139, -0.6389669179916382, -0.5199534893035889, 1.8215599060058594, 0.30061808228492737, 0.7679665684700012, 0.9167389869689941, -0.4038281738758087, -0.7339490652084351, -0.9462106227874756, 0.38309264183044434, -1.1209654808044434, -0.20231911540031433, -0.2925732433795929, -0.34319236874580383, -0.6115019917488098, 0.6147794723510742, 1.0534260272979736, 0.2752753794193268, 1.3219512701034546, 0.033950358629226685, -1.0602291822433472, -0.16309857368469238, -0.2769054174423218, -0.5396419763565063, 0.14737266302108765, -0.2998710870742798, -1.0746088027954102, -0.19302624464035034, 1.0523157119750977, 1.1860285997390747, 0.0882207527756691, 0.48920390009880066, 0.47317224740982056, -0.5669045448303223, -0.5531051158905029, -1.069648265838623, 0.10392805188894272, 1.1589058637619019, -0.08327940851449966, -1.0542021989822388, -0.0870092436671257, 0.004629767499864101, 0.15347440540790558, 1.1274967193603516, 0.08832574635744095, -0.5179969668388367, 1.148095726966858, -0.3344520926475525, 1.544316053390503, -0.9248018264770508, -0.7680881023406982, 0.40013784170150757, 0.22879907488822937, 0.16274259984493256, -0.34646451473236084, -0.2442648708820343, -0.2617034912109375, 0.12010625004768372, -0.844317615032196, 0.45815393328666687, -0.39029863476753235, -0.7653566002845764, 0.47877180576324463, -1.5829052925109863, 0.5326825976371765, -0.3642112612724304, 0.8567711710929871, 0.44592317938804626, -0.3555004298686981, 0.020007766783237457, -0.10338927060365677, 0.25652971863746643, 0.7848075032234192, 0.40854254364967346, -0.11694321781396866, -0.7769070863723755, 0.550237774848938, 0.5980194211006165, -0.5546010136604309, 0.746163547039032, 0.2218039184808731, -0.729644238948822, 0.9511281251907349, -0.2504809498786926, -0.961401641368866, -0.78977370262146, 0.14074619114398956, -0.04877573251724243, -0.3141336441040039, 1.167296051979065, -0.013673360459506512, -1.2308083772659302, -0.7844587564468384, 1.0372921228408813, -0.9157620072364807, -0.1519673615694046, -0.30178403854370117, 0.5686970949172974, -0.4938645660877228, 0.02133309096097946, -0.08011932671070099, -0.8800948262214661, -0.5976709127426147, -0.728952169418335, -0.3018870949745178, -0.9237444400787354, 0.4339899718761444, -1.0959410667419434, -0.5155401825904846, 0.8160430192947388, -1.250052809715271, -0.8868604302406311, -0.4639632999897003, 0.1276794672012329, -0.8670743107795715, -1.0514404773712158, -0.047312621027231216, -0.7256721258163452, 0.6106847524642944, -0.7414541244506836, 0.5693246722221375, -0.5307636260986328, 0.3568367660045624, 0.6565868258476257, -0.5908677577972412, -1.3774160146713257, 0.3808172345161438, 0.5368850231170654, -1.9387776851654053, 0.6312978863716125, 0.5039934515953064, 0.28843894600868225, 0.4655402898788452, -0.3009064793586731, 0.2738681733608246, 0.7886595129966736, -0.28232094645500183, 0.5995785593986511, -0.6356359124183655, 0.31197232007980347, -1.063065767288208, -0.3600751459598541, 0.14785993099212646, -0.4140434265136719, -0.48421812057495117, 0.8329055905342102, -0.005188025534152985, -1.4684773683547974, 0.6194528937339783, -0.3651811480522156, 0.4283301830291748, 0.2530430257320404, 1.2871719598770142, 0.8892791867256165, 0.4102827310562134, -0.10277727246284485, -0.8043472766876221, -0.6804500818252563, 0.25724509358406067, 0.7828910946846008, -0.36716774106025696, 0.34878480434417725, 1.0581841468811035, 0.8894430994987488, -0.7532637119293213, 0.5378698110580444, -0.4372972846031189, 0.05004142224788666, -1.7835407257080078, -0.011294822208583355, -0.08301512151956558, -1.2705957889556885, 1.6058039665222168, 0.7910307049751282, -1.7275543212890625, -0.05028179660439491, 0.03537740558385849, 0.14211930334568024, -0.11145573109388351, -0.30863142013549805, -0.7830798625946045, 0.2130475640296936, 0.060660604387521744, -0.2483842968940735, -0.3567095696926117, -0.5371647477149963, 0.710787296295166, -0.4814799129962921, -0.5337105989456177, -0.20539866387844086, 0.6485052704811096, -0.15235300362110138, 0.848440945148468, -0.18709661066532135, -2.0170812606811523, -0.7443179488182068, 0.6150157451629639, 1.0438615083694458, 0.13080452382564545, 0.2703540325164795, 0.7985115647315979, 1.0595502853393555, 0.8977057933807373, 0.5357905030250549, 0.1513601392507553, 0.2591378092765808, 0.12071847170591354, 0.49154412746429443, -0.07389723509550095, 0.6123545169830322, -0.7086358666419983, -0.9521704316139221, -0.6605991721153259, 0.35444992780685425, 1.5834693908691406, 0.6984046101570129, 1.0343137979507446, -0.33882197737693787, 0.027561824768781662, -1.01920485496521, -0.2431531697511673, -1.3148391246795654, -0.11364983022212982, -0.3539469838142395, -1.3413447141647339, -0.6420601010322571, -0.42582014203071594, -0.19656872749328613, -0.10303676873445511, 0.6564950942993164, 0.678692102432251, 0.09406892955303192, -0.2205274999141693, -0.5143467783927917, -0.745018482208252, 0.26511815190315247, -0.9260185360908508, 0.70889812707901, 2.0742621421813965, -1.282819390296936, 0.2637926936149597, 1.0032762289047241, 0.04358680173754692, 0.1411820650100708, 0.047715891152620316, 1.0911080837249756, -1.1622405052185059, -0.6291972994804382, -0.25404971837997437, 1.006065845489502, 0.24140003323554993, -0.4652804136276245, -0.4806522727012634, 0.37567606568336487, 0.7430411577224731, -0.25124844908714294, -0.8934726119041443, 0.8553785085678101, -1.066759705543518, -0.4120366871356964, -0.04096458479762077, 0.4677024781703949, 0.5199351906776428, -0.5304422378540039, -1.1615358591079712, -0.4545772671699524, 0.16395869851112366, -0.45204973220825195, 0.3733144700527191, 0.6312242150306702, 0.3064478933811188, -0.3132084906101227, -0.0004142001271247864, 0.8788650631904602, -0.24690595269203186, 0.11111427843570709, -0.8854338526725769, 0.4465976357460022, 0.8504554033279419, 1.753031849861145, 0.9077293872833252, 0.3555332124233246, 0.7202708125114441, -0.6136559844017029, -0.1409491002559662, -0.22150862216949463, 0.6262388229370117, -0.15357472002506256, -0.3333766460418701, -0.08217567205429077, -0.20082208514213562, -0.12491527199745178, 0.045707523822784424, -0.2012205272912979, 0.6848695874214172, -0.5644785761833191, -1.0393356084823608, 0.8862869739532471, 0.8432913422584534, -0.6103237867355347, 0.074473075568676, -0.310324490070343, 1.2048215866088867, -0.23671990633010864, 0.33792421221733093, -0.33532530069351196, -0.32563552260398865, 0.3632393479347229, -0.8548775911331177, -0.29274991154670715, -0.34964871406555176, 0.32673001289367676, 1.1460232734680176, -1.3402169942855835, -0.31022438406944275, -0.5852128267288208, 0.26167377829551697, 0.4333832859992981, -0.2189934253692627, 0.21467629075050354, 0.7496959567070007, -0.3045620024204254, 0.06496892124414444, 0.5113336443901062, 1.399030089378357, -0.29945963621139526, -0.554039478302002, 0.474446564912796, -0.6419070363044739, 0.19930200278759003, -1.0566641092300415, -0.25503304600715637, 0.14098083972930908, -0.5258979201316833, -0.10870664566755295, 0.309774249792099, -0.21134193241596222, 2.0234475135803223, 0.5071771740913391, -0.05325400456786156, 0.2891503870487213, -0.32263055443763733, -0.7444756031036377, -0.33817487955093384, 0.27050507068634033, -0.06103389710187912, 0.3593728542327881, -0.2418016642332077, 0.4570564925670624, 0.17452684044837952, 0.20916594564914703, -0.361102432012558, 0.4501306414604187, 0.4494543671607971, 0.17845873534679413, -0.3840222954750061, 0.4424378275871277, 1.3877745866775513, 0.6641854643821716, 0.5606027245521545, -0.5546086430549622, -0.8215563297271729, 0.8588776588439941, -0.583737850189209, 0.9165441989898682, 1.1993072032928467, 0.7683313488960266, 1.5717047452926636, -1.7036948204040527, 0.18185076117515564, 0.15335765480995178, 0.3010793626308441, 0.45814305543899536, -0.20743907988071442, 0.0457761324942112, -1.3639190196990967, -0.15426023304462433, 0.3537525534629822, -0.527600109577179, 0.9604846835136414, -0.35890886187553406, 0.19575665891170502, 1.1639299392700195, -0.7347555756568909, -0.12017179280519485, -0.977177083492279, -0.05027628690004349, -0.6927326321601868, -0.4833911955356598, 0.7977586388587952, 0.971522867679596, 1.4209673404693604, 0.6383219361305237, -0.16228529810905457, -1.1723655462265015, 0.7021793127059937, -0.7475099563598633, 0.4552399516105652, -0.47371169924736023, -0.3523588180541992, -1.1256389617919922, -0.9449670314788818, -0.07800004631280899, -0.44763627648353577, -0.7008987069129944, -0.6507009267807007, -0.3133547604084015, -1.195273756980896, 0.7297230958938599, 0.7112200260162354, 0.7752401232719421, 0.2996511459350586, 0.35449934005737305, 0.8201146721839905, 0.5375385880470276, -0.515080451965332, 0.49311065673828125, -0.09239544719457626, 0.09222757816314697, 0.019682491198182106, -0.6380868554115295, -0.8953542113304138, 0.32767271995544434, 0.7528389692306519, -0.3410777151584625, 0.8040735721588135, 1.155394434928894, 1.3397583961486816, -0.607506275177002, -0.6305355429649353, 0.6366533637046814, -0.08060025423765182, 1.1626880168914795, 0.7913520336151123, -0.8009238243103027, -0.1535487323999405, -0.20547038316726685, -1.5491846799850464, 1.7176891565322876, -0.13814154267311096, -0.20774498581886292, 1.1695736646652222, 0.6319512724876404, 0.3196985125541687, 1.0239663124084473, -0.2568110227584839, -0.16201455891132355, 0.19772779941558838, 0.22246548533439636, -0.8258199095726013, 0.8754560351371765, 1.065918207168579, 0.07775135338306427, -1.2403441667556763, -0.34811875224113464, -0.3689514994621277, 0.2618376910686493, -0.6270288228988647, -0.4356992244720459, 0.26799604296684265, 0.08887138217687607, -0.1862489879131317, -0.793476402759552, 0.5149916410446167, -0.7919977307319641, 0.8219414353370667, 0.06055428460240364, 0.9385190010070801, 0.5181710720062256, -0.05023384466767311, 0.6937915086746216, -0.5921710729598999, -0.5825791954994202, -0.3452993333339691, -0.11115086078643799, 0.9908320307731628, 0.41609880328178406, 0.6035194993019104, 0.2580511271953583, -0.3271504342556, -0.5216813087463379, -0.1431797444820404, -0.5215504765510559, 1.2255215644836426, -1.169210433959961, 0.14948196709156036, -0.6735367774963379, -0.5266090035438538, -0.0186595618724823, 0.3011777997016907, 0.9782189130783081, -1.045871615409851, -0.9728691577911377, -0.452725350856781, -0.18197713792324066, 0.5483517646789551, -0.8434931039810181, 0.40609392523765564, 0.454638808965683, -1.233652949333191, 0.6272796392440796, -0.2685076594352722, -1.3662241697311401, -0.18081799149513245, -1.535975456237793, 0.9905965924263, -0.08244038373231888, -0.21446757018566132, 0.17010581493377686, 0.7517043948173523, -1.0321239233016968, -1.0706398487091064, -0.7856003642082214, -0.3313194513320923, 0.9784389138221741, 1.0092962980270386, -1.1245366334915161, 1.638195514678955, 0.08342036604881287, -0.6553676128387451, -0.6705015301704407, -0.18236729502677917, -1.3678115606307983, -0.21676984429359436, 0.022290097549557686, 0.6011333465576172, 0.149294912815094, 1.6814517974853516, 0.627448320388794, 0.639701783657074, 0.39299941062927246, 1.55045747756958, -0.8219792246818542, -1.0546661615371704, 0.026648536324501038, 0.5937978029251099, -1.0685746669769287, -0.6562957763671875, 0.07517131417989731, -0.7375265955924988, -1.2818528413772583, 0.24732908606529236, 1.0419187545776367, -0.27459436655044556, 0.5753753185272217, 0.02185504510998726, 0.0841745138168335, -0.8276011943817139, 0.6651975512504578, 0.1911165565252304, -1.033196210861206, -0.20887067914009094, -0.89073246717453, -0.02712726779282093, -1.127271056175232, -0.27180564403533936, 0.4132842719554901, 0.22322265803813934, -0.49690091609954834, 0.3888947069644928, 0.4057655334472656, 0.3907335698604584, -0.43369483947753906, 1.2662156820297241, 0.984082818031311, -0.2628629505634308, 0.13952970504760742, 0.2198757827281952, -0.46491938829421997, -0.6454836130142212, -0.22103925049304962, -0.005085172597318888, -0.41251957416534424, 0.3718979060649872, -0.037565458565950394, 0.11511442065238953, -0.3760407865047455, 0.5490120649337769, 0.10867255181074142, 0.6111723780632019, 1.2705698013305664, -0.7865809202194214, -0.5658290982246399, 0.8264220356941223, 0.6304815411567688, -1.1039221286773682, -0.2814882695674896, 0.33710208535194397, 0.2653002440929413, -0.5548049807548523, 0.04570821300148964, 0.8345341682434082, -0.9409414529800415, 0.3747967779636383, -0.1149340346455574, -0.08468741178512573, -0.2023490071296692, -0.5984501838684082, -1.6110726594924927, -0.4726727306842804, -0.6454499363899231, -0.4488157629966736, 0.5767198204994202, -0.7506507039070129, -0.9138852953910828, -0.3686307370662689, 0.05174756050109863, 0.14923566579818726, -0.03214147686958313, 0.037529658526182175, -0.3060947358608246, -0.30707037448883057, 1.871910810470581, -0.23894526064395905, 1.0546029806137085, -0.06903799623250961, -0.18176710605621338, 0.02316359244287014, -0.05797488987445831, -0.228787362575531, 0.04154670238494873, 0.26413723826408386, -0.6209182739257812, 0.16416555643081665, -0.40846747159957886, -0.2447177767753601, 0.3253440856933594, -0.2097276747226715, 0.20076078176498413, -0.591088056564331, -1.0318140983581543, 0.6880998015403748, 0.7439917922019958, -0.2311573177576065, -0.4597312808036804, -0.8519189953804016, -0.8529258370399475, 0.3914773166179657, -0.5857734680175781, 0.22895079851150513, -0.583125114440918, 0.8980972170829773, 0.6406363844871521, -0.9465550184249878, -0.5718305706977844, -1.030281662940979, 0.9495546221733093, 0.1387467384338379, 0.5042203664779663, -0.0672699585556984, 0.20083379745483398, 0.04256730526685715, -1.2099688053131104, -0.5951896905899048, -0.15693241357803345, -0.2746284306049347, 0.38876935839653015, -0.8575990200042725, 0.11604388058185577, -0.6430335640907288, -0.004285167902708054, 0.5531114339828491, 0.2209642380475998, 0.727091908454895, 0.3832550346851349, -1.6678540706634521, -0.1371716409921646, 0.4758688807487488, 0.7722764611244202, 0.756604790687561, 1.5385289192199707, 0.8451356291770935, 0.29940301179885864, 0.14575760066509247, 0.3018321096897125, 0.657226026058197, -1.1071110963821411, -0.28089624643325806, -0.8295450806617737, -0.3296565115451813, 0.1483272761106491], [0.529283344745636, 1.777596116065979, -2.231405019760132, -0.4371163845062256, 0.6981003880500793, -0.5900915861129761, 0.3602549135684967, -0.18411624431610107, 0.17992709577083588, -1.3284322023391724, -0.4726830720901489, 0.5274671912193298, 0.37142908573150635, 1.1287740468978882, 0.1723109781742096, -0.04580159857869148, 0.5019378662109375, -0.0017238417640328407, 0.1959438920021057, 0.8117348551750183, 0.014321304857730865, -1.7640070915222168, -0.41136011481285095, 0.6957665085792542, 0.2728911340236664, -0.4741354286670685, -1.2819887399673462, -0.6428653001785278, -1.5447137355804443, -1.2865817546844482, 1.10051691532135, 0.03447801247239113, -0.24315394461154938, 0.4109814763069153, -1.020035982131958, -0.6669421792030334, -0.020842012017965317, -0.1402151733636856, -0.4840123951435089, 0.69529789686203, 1.169460415840149, 1.0184242725372314, -0.8663296103477478, -1.8561207056045532, 0.6213609576225281, -0.38482964038848877, 1.3083797693252563, -1.0231682062149048, 0.8267298936843872, -2.0499813556671143, -0.1474127322435379, -0.14763705432415009, 0.11578574031591415, 0.9329971671104431, 1.170278787612915, -1.1589525938034058, 0.17436937987804413, 0.30577853322029114, -0.1645761877298355, 0.1445881873369217, 0.6669508218765259, 0.2249913066625595, 0.6321002840995789, 0.7200407385826111, 0.5522763729095459, 0.228913813829422, 0.9326238632202148, -0.2469618022441864, 0.2369266301393509, -0.45694664120674133, 0.5822687745094299, 0.359366774559021, -0.6282452344894409, 0.7120192646980286, -0.3436562120914459, 0.21513690054416656, 0.493226557970047, 0.32114535570144653, -0.6826983094215393, 0.856585681438446, 0.1492006629705429, -0.4845096468925476, -0.16560806334018707, -0.9320439100265503, -0.10870122164487839, 0.3189989924430847, -0.1805996596813202, 0.23012419044971466, -0.1164267286658287, 1.1106655597686768, 0.3425861895084381, -0.10878568142652512, 0.6403477787971497, -0.22645725309848785, 0.2088855803012848, -0.9049047231674194, -0.33503997325897217, -1.0730786323547363, -0.7034355998039246, 0.1291164755821228, -0.930592954158783, -1.2668790817260742, 1.0596431493759155, 0.7162429094314575, 0.10180847346782684, 1.4127565622329712, -0.4046684503555298, -1.0788098573684692, 0.14316117763519287, 0.019822610542178154, 0.19883723556995392, -1.1804773807525635, -0.8011431097984314, -1.8445887565612793, 0.34062522649765015, 0.9093312621116638, 2.0063157081604004, 0.23878170549869537, 0.9947343468666077, 0.4333764910697937, -0.5983856320381165, -0.6018396615982056, -0.8648263812065125, 0.5235459804534912, 1.3301634788513184, -0.5644363164901733, -0.6210448145866394, -0.4329858124256134, 0.5240633487701416, -0.09322740882635117, -0.09260711073875427, 0.023346666246652603, -0.4756932258605957, 0.7042363882064819, 0.24068337678909302, 1.3446530103683472, 0.10784821957349777, -0.9583316445350647, 0.28824129700660706, 0.8018147945404053, 0.3588191866874695, -0.4088488519191742, 0.0687498226761818, -0.5786935687065125, -0.02323964610695839, -0.07345763593912125, -0.02123439311981201, -0.07772257924079895, -0.6826692819595337, 0.7580647468566895, -1.4035152196884155, -0.49143683910369873, -0.5356159806251526, 0.744627833366394, 0.7845311760902405, 0.03923296183347702, -0.22864815592765808, -0.32311028242111206, 0.2528128921985626, 0.04952521622180939, 0.6808951497077942, -0.24431410431861877, -0.6212717890739441, 0.8637309670448303, 0.4100182354450226, -0.4819081127643585, 0.6212136149406433, 0.13343480229377747, -0.33476853370666504, 0.5111857652664185, -0.2802669107913971, -0.3949710726737976, -0.9357203245162964, 0.0022412813268601894, 0.15928606688976288, -0.34223997592926025, 1.0526220798492432, -0.4999617040157318, -0.8802192807197571, -1.0315179824829102, 1.0249497890472412, -0.41147223114967346, 0.7461709976196289, -0.345464289188385, 0.33031368255615234, 0.2868092358112335, 0.5073620080947876, -0.4710387587547302, -0.639151394367218, -1.1942535638809204, -0.08340699225664139, -0.8937990069389343, -1.0615712404251099, 0.6678644418716431, -0.8314374685287476, -0.5741541385650635, 0.4241439402103424, 0.040629152208566666, -0.2102908492088318, 0.21526923775672913, 0.3739624321460724, -0.12477215379476547, -1.5570383071899414, 0.2654419541358948, 0.18821333348751068, 0.5642646551132202, 0.2501348555088043, 0.31004059314727783, -0.621213972568512, 0.09377254545688629, 1.6226911544799805, -0.6038832664489746, -1.4212117195129395, 1.014397382736206, 0.121945321559906, -1.0746266841888428, 0.8430598974227905, -0.060268040746450424, -0.10351934283971786, -0.10803411155939102, -0.12562119960784912, 0.3315684497356415, -0.08064288645982742, -1.032779335975647, -0.015535637736320496, 0.13894782960414886, -0.6961535215377808, -1.610395908355713, -0.4551469683647156, -0.027571920305490494, -1.0395981073379517, -0.7601747512817383, 0.42414820194244385, 0.7881050109863281, -1.2798166275024414, 0.5739898085594177, 0.2729811370372772, 0.9554727673530579, 0.3204593062400818, 0.54783034324646, 0.7381147742271423, 0.7441215515136719, -0.22870731353759766, 0.22715197503566742, -0.7630503177642822, -0.5874525308609009, 0.6433262228965759, -0.45329779386520386, 0.16406886279582977, 1.6839046478271484, 0.9568126797676086, 0.08042626082897186, 0.0621931254863739, 0.22127634286880493, -0.03758317977190018, -0.8214355707168579, -0.07994308322668076, 0.38705018162727356, -0.9425302743911743, 1.0312594175338745, 0.6962003111839294, -1.295491099357605, -0.45212990045547485, -0.2221098691225052, 0.16507893800735474, -0.42814207077026367, -0.40888020396232605, -1.1694685220718384, 0.5776873826980591, -0.33072078227996826, -0.29487767815589905, 0.25937697291374207, 0.16148117184638977, 0.833008885383606, -0.3929401636123657, -0.4273856580257416, 0.9839159250259399, 0.35767170786857605, 0.32581567764282227, 0.7863816022872925, -0.9875501990318298, -1.0902316570281982, -1.445202112197876, 0.46978482604026794, 0.09471201151609421, -0.14842747151851654, -0.26701098680496216, 0.9955323934555054, 0.7429524660110474, -0.1361914724111557, 0.048545993864536285, -0.6342526078224182, 0.641236424446106, -0.6717370748519897, 0.801183819770813, 0.28303202986717224, 0.5003225803375244, -0.43819767236709595, -0.4805590510368347, -0.751533567905426, 0.5764667987823486, 0.8219207525253296, 0.7741528153419495, 1.4714829921722412, -0.5949717164039612, -0.00016672443598508835, -0.36088827252388, 0.03290024772286415, -0.16886594891548157, 0.5109575986862183, 0.10174276679754257, -0.6159453988075256, -0.3556785583496094, -0.430550754070282, -0.16100747883319855, 0.4200294315814972, -0.16128845512866974, 1.3177392482757568, 0.35793519020080566, 0.019149918109178543, -1.3397984504699707, -0.719451367855072, -0.6113576889038086, -0.9537661075592041, 0.6981897950172424, 1.1995880603790283, -1.1912007331848145, 0.5158299207687378, 0.24774613976478577, 0.007038983516395092, -0.03538966178894043, 0.700273871421814, 0.2568415105342865, -1.3263541460037231, 0.02098015882074833, 0.0515548475086689, 1.2763639688491821, 0.6449270248413086, -0.4994822144508362, -0.2012423872947693, 0.8101553320884705, 0.17126193642616272, -0.7934517860412598, -0.8828374743461609, 0.7613084316253662, -0.43452051281929016, 0.23012611269950867, -0.5565196871757507, 0.3735242187976837, 0.5774341821670532, -0.9558819532394409, -0.43824031949043274, -0.25549963116645813, -0.14569923281669617, -0.41350051760673523, 0.028846079483628273, 0.07980265468358994, 0.6459868550300598, 0.3364603817462921, 0.2604750692844391, 1.0000272989273071, 0.2988559901714325, 0.09908659756183624, -0.5395143628120422, 0.5510013103485107, 0.231537863612175, 1.9870381355285645, 0.33012208342552185, 0.4871467351913452, 0.053818557411432266, -1.0681092739105225, -0.5698899626731873, 0.6638150811195374, 0.9420853853225708, -0.23591248691082, -0.7414833903312683, -0.5144739151000977, -0.44129329919815063, -0.3175913095474243, 0.07977787405252457, -0.4641363322734833, -0.23565636575222015, -0.5084084868431091, -0.5539388060569763, 1.2354419231414795, 1.0048877000808716, 0.3247770071029663, -0.9291442036628723, 0.04645572602748871, 0.32625794410705566, -0.7579398155212402, 0.6598702073097229, -0.3562958240509033, -0.458610862493515, 0.8424984216690063, -0.2931683659553528, -1.0119167566299438, -0.4990650713443756, -0.043227940797805786, 1.5957499742507935, -1.8176372051239014, -0.07027559727430344, -0.03530336171388626, 0.19917836785316467, 1.0700677633285522, 0.5911745429039001, 0.6087769269943237, 0.4311509132385254, 0.4488808512687683, 0.07468437403440475, 0.8832243084907532, 1.2347934246063232, -0.2020082175731659, -0.22848770022392273, -0.07686448842287064, 0.13152474164962769, 0.5236838459968567, -1.222127079963684, -1.05825674533844, 0.4742569327354431, -0.5571457743644714, 0.10921689867973328, -0.21691463887691498, 0.22189536690711975, 1.4125680923461914, 0.26789388060569763, 0.3288784623146057, 0.1808302253484726, 0.6041762232780457, -0.3023304045200348, -0.3190751373767853, 0.17728425562381744, -1.2051537036895752, -0.2749515473842621, 0.21567299962043762, 0.37264707684516907, 0.6086418032646179, 0.2098798006772995, 0.5981932878494263, 0.9929490089416504, 0.619361162185669, 0.17036795616149902, -0.691021203994751, 0.41078558564186096, 1.1069880723953247, 1.043913722038269, 0.680070161819458, -0.08576942980289459, -0.9245871305465698, 1.9681243896484375, -0.3013067841529846, 0.01915881596505642, 1.1040363311767578, 0.4011821150779724, 1.053246021270752, -0.9073876142501831, -0.5392833352088928, 0.5948002934455872, 0.28302985429763794, 0.05600791797041893, -0.7232152819633484, 0.5178641676902771, 0.14914782345294952, 0.11201466619968414, 0.827401340007782, -0.513611376285553, 0.9266217350959778, -0.13078425824642181, 0.7112016677856445, -0.18193396925926208, -0.7858514785766602, 0.28541305661201477, -1.587617039680481, -0.20313480496406555, -0.2575279474258423, 0.2569773495197296, 1.2013239860534668, 0.6889523267745972, 0.5654489398002625, 1.1315654516220093, -0.017473358660936356, -1.1180448532104492, 0.012772220186889172, -0.7423231601715088, 0.42166104912757874, -0.913622260093689, 0.38698962330818176, -0.8364193439483643, -0.4648905098438263, 0.17763425409793854, -0.4674246907234192, 0.004513752181082964, -0.08748728781938553, -0.061415430158376694, -0.16836392879486084, 0.2417161762714386, 0.728285551071167, 0.2523396909236908, -0.24609270691871643, 0.55548095703125, 0.7134325504302979, 0.4184228181838989, -1.1755900382995605, -0.04704843834042549, 0.6422684788703918, -0.006037639919668436, -0.4131728410720825, -0.32887840270996094, -0.8318613171577454, 0.4749329388141632, 0.7595924735069275, -0.6415053606033325, 0.20213940739631653, 0.7062864303588867, 1.6082940101623535, -0.6615599989891052, -1.145062804222107, 0.41177091002464294, -0.3442063331604004, 0.6775617599487305, 0.2657434940338135, -1.2431098222732544, 0.1724463701248169, -0.5444082617759705, -1.8140287399291992, 1.7777975797653198, -0.1370764523744583, 0.39435189962387085, 0.9896835088729858, 0.9830172657966614, 0.030822481960058212, 1.068548321723938, -0.27451708912849426, 0.6463091969490051, 0.05818258970975876, 0.019542807713150978, -0.6954532265663147, 0.8271361589431763, 1.1508406400680542, -0.14043280482292175, -1.399189829826355, 0.3210969567298889, 0.35190731287002563, -0.23425878584384918, 0.10790847986936569, 0.0911419615149498, 0.5644069910049438, 0.31868231296539307, -0.1163366287946701, -1.0651071071624756, 0.6286212205886841, -0.7645120620727539, 0.43923625349998474, 0.7006645202636719, -0.2045779526233673, 1.0050534009933472, 0.24445614218711853, 0.5513655543327332, -0.5775145888328552, -0.510343611240387, 0.05729149281978607, -1.4807366132736206, 1.2819558382034302, 0.830734372138977, 0.27868926525115967, 0.46395018696784973, -0.3131720721721649, -1.4167728424072266, -0.30806219577789307, -0.5728585720062256, 0.95635586977005, -0.7675740122795105, -0.9601601362228394, -0.9081007242202759, -0.8582347631454468, -0.04750354588031769, 0.8567890524864197, 0.3252195417881012, -0.9101584553718567, -0.9718698263168335, -0.14564259350299835, 0.35270896553993225, 0.9440844655036926, -1.0910899639129639, 0.21231579780578613, -0.1809171587228775, -1.5719422101974487, 0.3130834102630615, 0.6032695770263672, -1.424250602722168, -0.7230417132377625, -1.007979393005371, 0.720781147480011, 0.5155615210533142, -0.8344572186470032, 0.42347559332847595, 0.8561023473739624, -0.9579421281814575, -0.7443863749504089, -0.9008241891860962, -0.5665503144264221, -0.32813405990600586, 0.7982804179191589, -0.3891195058822632, 0.7966756820678711, -0.9203503131866455, -0.02152649126946926, -0.3927473723888397, 0.47897619009017944, -0.9887900352478027, -0.042473480105400085, -0.12630952894687653, 0.17579255998134613, -0.4817064702510834, 1.3005549907684326, 0.9212307929992676, 1.0021330118179321, 0.13042721152305603, 1.5183355808258057, -0.4462451934814453, -0.49571672081947327, -0.182966411113739, 0.6445950269699097, -0.8186913132667542, -0.4593225419521332, 0.08240850269794464, -0.856704592704773, -0.6328145265579224, -0.059154413640499115, 0.7527234554290771, -1.448789358139038, 0.7549104690551758, -0.5071024298667908, -0.12771360576152802, -0.5445398688316345, 0.3873920440673828, 0.7543158531188965, -0.23641614615917206, 0.01721153035759926, -0.5739631056785583, 0.36321336030960083, -0.6935279369354248, 0.45896121859550476, 0.748447597026825, 0.7531255483627319, 0.08507968485355377, 0.1540931612253189, 0.5417753458023071, 0.2698271870613098, -0.5604487061500549, 1.0774544477462769, 0.6417823433876038, -0.25608277320861816, 0.034487009048461914, 0.5489234328269958, 0.06557857990264893, 0.2071988731622696, -0.1307019144296646, -0.7161892652511597, -0.6466512084007263, 0.5491270422935486, -0.17029103636741638, 0.95968097448349, -0.6796301007270813, 0.6448642015457153, -0.020228099077939987, 0.8424146771430969, 1.107730507850647, -0.49278801679611206, -0.003350885584950447, 0.9450220465660095, 0.44194844365119934, -0.46384504437446594, -0.08062362670898438, 0.474032998085022, 0.234438955783844, 0.732621431350708, 0.6692705154418945, 0.5356311798095703, -0.42320865392684937, 0.22469857335090637, 0.8550353646278381, -0.4774613082408905, -0.6853563189506531, -0.06992843002080917, -0.9627870321273804, -1.0207489728927612, -0.1604115217924118, -0.5971438884735107, -0.21579895913600922, -1.2143713235855103, -0.950569748878479, 0.5684590935707092, -0.5972971320152283, -0.15587936341762543, -0.4093417823314667, -0.6720660924911499, -0.3045380711555481, -0.6041276454925537, 0.9105282425880432, -0.36001259088516235, 1.0028349161148071, 0.25466471910476685, 0.47712182998657227, -0.28962644934654236, 0.08398765325546265, -0.19428503513336182, -0.0991937667131424, -0.10551069676876068, -0.6017253398895264, 0.005205394700169563, -0.6978960633277893, -0.11183930188417435, 0.05574502795934677, -0.637756884098053, 0.13788361847400665, -0.5242968201637268, -0.41957464814186096, 0.41950735449790955, 0.7450358867645264, -0.014497363939881325, -0.39357346296310425, -0.869627833366394, -1.1178410053253174, 0.35339829325675964, 0.10510414093732834, 0.9153594970703125, -0.1879088431596756, 0.8279122710227966, -0.20212624967098236, -0.9783636331558228, -0.358448326587677, -0.42433446645736694, 0.7092001438140869, -0.6915029883384705, 0.15281252562999725, -0.6127517223358154, -0.42350712418556213, 0.5962274074554443, -0.8043931722640991, 0.287678062915802, -0.09445653110742569, -0.2731209695339203, -0.11168154329061508, -0.5538089275360107, -1.1050047874450684, -0.3575630486011505, 0.0189411249011755, 0.4799179136753082, 0.7949811220169067, 0.8092595934867859, -0.5794654488563538, -0.7353392243385315, -0.25694552063941956, 0.9043958187103271, 0.6773070693016052, 0.7758685350418091, 1.1277655363082886, 1.2329058647155762, -0.223336860537529, -0.19209440052509308, -0.06871874630451202, -0.02446024678647518, -0.9937075972557068, 0.12880104780197144, -1.0207018852233887, -0.005575112532824278, 0.34206056594848633], [0.9876706600189209, 0.8324131369590759, -2.8793222904205322, -0.6578991413116455, 1.3979294300079346, -0.1432350128889084, 0.7877103090286255, 0.03503141552209854, -0.6995338201522827, -1.1091524362564087, -0.7884939908981323, 0.025787310674786568, 0.0795583426952362, 0.20693428814411163, 1.2233221530914307, 0.09816166013479233, 1.1594915390014648, 0.6167402863502502, 0.07665283977985382, 0.6459512710571289, -0.47315698862075806, -1.4503270387649536, -0.3032786548137665, 0.45536714792251587, -0.22785884141921997, 1.5577994585037231, -0.5456250905990601, -0.175740048289299, -1.2317570447921753, -0.5088061094284058, 1.4507105350494385, -1.000914216041565, 0.7951673269271851, -0.15877631306648254, -2.115161895751953, 0.2890744209289551, 1.5316739082336426, 0.8133525848388672, 0.5564924478530884, -0.5963462591171265, 2.2789711952209473, -0.03508258983492851, -0.08860352635383606, -1.930678129196167, -0.5834077000617981, 0.857420802116394, 0.6419271230697632, -0.4925646185874939, 0.06666533648967743, 0.08413400501012802, 0.18408913910388947, -0.7945425510406494, -0.47015389800071716, 0.9857504367828369, 1.1866393089294434, -0.796947717666626, 0.46457910537719727, 0.10017777979373932, 0.1459837257862091, -0.3509034514427185, 0.5494813919067383, -0.1668175309896469, 0.006508302874863148, 0.6377063989639282, 0.4011205732822418, -1.129871129989624, 0.1130816861987114, 0.5319966077804565, 0.3011971414089203, 0.833979606628418, 0.3286449909210205, -0.8964589834213257, -0.7716138362884521, 1.2633569240570068, -1.1502505540847778, 0.2178129255771637, 0.3713234066963196, 1.0140974521636963, 0.4258238971233368, 0.0950813814997673, -0.9457168579101562, 0.5991033315658569, 1.0249993801116943, -0.5594070553779602, -0.10905928909778595, 0.7441089153289795, 0.582192599773407, -0.8662866950035095, -0.15092864632606506, 1.8331422805786133, -0.08749961853027344, 0.8507885932922363, 0.057226795703172684, 0.10662829130887985, -0.8519163727760315, 0.01923477277159691, 0.4926633834838867, -1.1519461870193481, -0.3014865517616272, -0.39025676250457764, -0.4147697687149048, -1.0145082473754883, 0.08639083802700043, 0.4243469834327698, 0.19824042916297913, 0.4460347890853882, 0.1383979171514511, -0.3130761981010437, 0.09228971600532532, -0.0014919470995664597, -0.9127863645553589, 1.0310344696044922, -0.24043118953704834, -1.491687536239624, -0.1789221465587616, 1.0077729225158691, 1.0058624744415283, 0.36416107416152954, 0.41292303800582886, 0.836030125617981, -0.3577069044113159, -0.05552700161933899, -0.3001289367675781, 0.18012285232543945, 0.6255120635032654, -0.4909971058368683, -1.1295959949493408, -0.05661028251051903, 0.5496236085891724, -0.07109606266021729, 0.40759989619255066, -0.22423997521400452, 0.10262961685657501, 0.8423427939414978, -0.7553443312644958, 0.5207365155220032, -1.3899219036102295, -0.79167640209198, 0.05794353783130646, -0.1572745442390442, 0.8570114970207214, -0.18117676675319672, 0.022610696032643318, -0.41801175475120544, -0.28743577003479004, -0.441381573677063, 0.4947250485420227, -0.9316903352737427, -0.9367592334747314, 0.15752682089805603, -1.052929162979126, 0.3006439507007599, 0.149264395236969, 1.3513991832733154, 0.5172721147537231, -0.24199789762496948, -0.42074310779571533, 0.1308877319097519, -0.08256708085536957, 0.3734726905822754, -0.3820202350616455, -0.3595256507396698, -1.0129354000091553, 0.17724443972110748, 0.7346364855766296, -1.0318238735198975, -0.14339667558670044, 0.8149901628494263, 0.39695054292678833, 1.542586088180542, -0.36412087082862854, -0.7701443433761597, -0.7461977005004883, -0.49661314487457275, 0.4113711714744568, -0.27728691697120667, 1.4779613018035889, 0.18345525860786438, -0.708533525466919, -0.8121827840805054, 0.7877197265625, 0.19999626278877258, 0.9851524829864502, -0.43101438879966736, 0.5888046026229858, -0.1717013120651245, 0.18501216173171997, -0.539592981338501, -0.46835169196128845, -0.7261017560958862, -0.8272457122802734, -0.4391719698905945, -0.676404595375061, 0.5006812214851379, -0.2865273356437683, -1.126412034034729, 0.7287704944610596, -1.0170053243637085, -0.3659731149673462, 0.3065410852432251, 0.1053599864244461, -0.4391423463821411, -0.3397373557090759, -0.4720783531665802, -1.1970605850219727, 0.20356597006320953, -0.9465467929840088, 0.447881817817688, -0.5818580985069275, -0.887914776802063, 0.22196803987026215, -0.33153295516967773, -0.7381088137626648, 1.3091144561767578, -0.010520145297050476, -1.517677664756775, 0.6060184240341187, 0.19628265500068665, -0.3740503191947937, -0.5441226959228516, -0.370134562253952, -0.04431906342506409, 1.2094104290008545, -0.4140707850456238, 0.37457430362701416, -0.1328326165676117, 0.13911648094654083, -1.0925967693328857, -0.5277440547943115, -0.3977225422859192, -0.5988720059394836, -1.320197582244873, 0.6843120455741882, 0.08893799036741257, -1.418917179107666, 0.06301458179950714, -0.02381560578942299, 0.25752824544906616, -0.2694433629512787, 0.8251149654388428, 0.8181815147399902, 0.8049597144126892, -0.05149056762456894, -1.2803908586502075, -0.44777911901474, 1.127800703048706, 0.9872888326644897, -0.9706515073776245, -0.002296753227710724, 0.7289556860923767, 0.3141480088233948, -0.44714853167533875, 0.4556366503238678, -0.5951701998710632, 0.0805397629737854, -0.9525023698806763, -1.0421042442321777, -0.25158101320266724, -1.1334731578826904, 1.6853513717651367, 0.6907175779342651, -0.8917099237442017, 0.19027701020240784, -0.2662518322467804, -0.336509644985199, -0.46010416746139526, -0.3302091062068939, -0.5719150304794312, 0.24520288407802582, -0.12824900448322296, 0.1633186787366867, 0.09358078241348267, 0.05061463266611099, 0.7803281545639038, -0.4542834758758545, -0.576572060585022, -0.3146595060825348, 0.5716627836227417, -0.14075259864330292, 0.939865231513977, -0.30271828174591064, -0.8110654354095459, -0.4831685423851013, 0.3302972614765167, 0.2973054051399231, 0.32095474004745483, -0.4116467833518982, 0.7475977540016174, 0.9051905274391174, 0.22940969467163086, 0.43928125500679016, 0.9269957542419434, -0.42142337560653687, 0.57546067237854, 1.1373984813690186, 0.012684605084359646, 0.8514830470085144, -0.8567523956298828, -0.9446820020675659, -0.6217027306556702, 0.23789331316947937, 1.5938012599945068, 0.4757140874862671, 1.693467378616333, -0.18656302988529205, -0.2067272812128067, -0.5517213940620422, -0.5897480249404907, -0.6693121790885925, -0.49188053607940674, 0.18298855423927307, -1.4463202953338623, -0.666240930557251, -0.47356295585632324, 0.19271910190582275, 0.7574833631515503, 0.8180287480354309, 0.5441108345985413, 0.4554424583911896, -0.40680211782455444, -0.30033189058303833, -0.5783595442771912, -0.04316118359565735, -1.0189673900604248, 0.009252430871129036, 1.2336633205413818, -1.2448993921279907, 0.5849652290344238, -0.7315424680709839, -0.27269500494003296, 0.9867961406707764, -0.6383042931556702, 0.5055832862854004, -1.0952467918395996, -0.5753096342086792, 0.12892326712608337, 0.5418992042541504, -0.06806286424398422, 0.1754799485206604, -0.31347161531448364, 0.36479559540748596, 0.17807473242282867, -0.047003429383039474, -0.6510612368583679, 1.3698699474334717, -0.9602609872817993, -0.9283169507980347, -0.4962601363658905, 0.6665099263191223, 0.08831720054149628, -0.46934056282043457, -0.8562062978744507, -1.054874062538147, 0.20766358077526093, -0.4055064916610718, -0.21315759420394897, 0.03434455022215843, 0.2529923915863037, -0.12477480620145798, 1.203001618385315, 0.4807201623916626, 0.05267893522977829, -0.2008642554283142, -1.1432981491088867, 0.63059401512146, 1.5279183387756348, 2.0373716354370117, 0.9889190196990967, 0.3736332058906555, 0.22278979420661926, -0.1270517259836197, 0.6055797934532166, -0.2819984555244446, 0.965814471244812, -0.2755542993545532, -0.2119356393814087, -0.211390420794487, -0.38350504636764526, -0.11223433911800385, 0.8010473251342773, 0.8621945381164551, -0.21204964816570282, 0.02934500202536583, 0.34286099672317505, 1.5795419216156006, -0.2157275676727295, -0.4200921356678009, -0.5016849040985107, 0.07235097885131836, 1.1103639602661133, -1.4769792556762695, -0.5498745441436768, -0.31106460094451904, 0.0069613344967365265, 0.5540508031845093, -1.2028388977050781, 0.19382750988006592, 0.5872498750686646, -0.20894044637680054, 1.0184898376464844, -0.7997573018074036, -0.3541874289512634, -0.11130397766828537, 0.6986157894134521, 0.26986515522003174, -0.030279580503702164, -0.08432590961456299, 0.435960590839386, -0.7336785793304443, 0.29808852076530457, 0.24562552571296692, 1.562159538269043, -0.11185916513204575, -0.23910966515541077, 0.47716861963272095, -0.6868723034858704, 0.8462197780609131, -0.4199689030647278, -0.4663182497024536, -0.2874116599559784, -0.3392678499221802, -0.06925512850284576, 0.34604182839393616, 0.12571552395820618, 2.240083694458008, 0.28291624784469604, 0.29119521379470825, 0.034878067672252655, 0.48731493949890137, -1.134443759918213, 0.19437554478645325, 0.3576633036136627, 0.4191616177558899, -0.39158517122268677, 0.6369733810424805, 0.20524364709854126, -0.05517255514860153, 0.12896233797073364, -0.8387530446052551, 0.18350300192832947, -0.12498732656240463, -0.20538964867591858, 0.9179202318191528, 0.6691544055938721, 1.2029948234558105, 0.7020246386528015, 0.9705967903137207, -1.0542041063308716, -0.891524076461792, 0.8468866348266602, -0.07386627048254013, 0.5185453295707703, 0.9828379154205322, 0.7117762565612793, 1.229062557220459, -1.8689250946044922, 0.026720209047198296, 1.0027557611465454, -0.13396596908569336, 0.9688389897346497, 0.6092179417610168, -0.4743669927120209, -0.2930763363838196, 0.20200170576572418, 0.6227808594703674, -0.05984639376401901, 0.21520783007144928, 0.5413429737091064, 0.20404261350631714, 1.4538288116455078, -0.23252859711647034, 0.22163528203964233, -0.5580253601074219, -0.6318535208702087, 0.07218952476978302, -0.20412790775299072, 0.09481201320886612, 0.45943209528923035, 0.07386184483766556, 0.9428696632385254, 0.434385746717453, -1.1868020296096802, -0.06994122266769409, -0.23843564093112946, 0.698302149772644, -0.6453834176063538, -0.7550410628318787, -1.092254400253296, -0.31316685676574707, 0.06777868419885635, -0.26712605357170105, -0.94933021068573, -0.40686386823654175, -0.45791512727737427, -0.8282894492149353, 0.7063205242156982, 0.8236665725708008, -0.07996794581413269, 0.27457544207572937, -0.322534441947937, -0.11144295334815979, 0.2312052994966507, -0.21894557774066925, -0.2228975147008896, -0.07512693107128143, 0.19650256633758545, 0.2246645838022232, -1.199570894241333, -0.7637363076210022, -0.2902913987636566, 0.8365561962127686, 0.18835298717021942, 0.3921375274658203, 1.2368745803833008, 1.563609004020691, 0.5158115029335022, 0.16830669343471527, 0.509269118309021, -0.4855276644229889, 0.48842698335647583, 0.8884658813476562, 0.1874319612979889, 0.2343321144580841, -0.6798120737075806, -1.2129085063934326, 0.7671151161193848, -0.006186366081237793, -0.7383059859275818, 0.4823054373264313, 0.274874210357666, 0.19392351806163788, 0.23920699954032898, -0.44596147537231445, 0.3908989429473877, -0.3095518946647644, -0.5827338099479675, -0.6461755037307739, 0.7712570428848267, 0.5516498684883118, -0.017068158835172653, -0.2791042625904083, -0.1536567509174347, -0.5395808815956116, -0.03854283690452576, -0.488999605178833, 0.7713638544082642, 0.04270893707871437, 0.37084081768989563, -0.04770816117525101, 0.10043581575155258, 0.44122129678726196, -0.4312959909439087, -0.28657829761505127, -0.29136237502098083, 0.44675537943840027, 0.8191916346549988, 0.4452475905418396, 0.6014251708984375, -0.5419310927391052, -0.508155107498169, -0.6702800989151001, -0.06066185608506203, 0.7045320272445679, 1.0703089237213135, 0.5552115440368652, 0.47520673274993896, -0.6810144782066345, -0.12575861811637878, -0.4165157079696655, 0.5124810934066772, 1.9671658277511597, -0.6192066669464111, 0.10239222645759583, -0.3247903287410736, -0.6979029178619385, 0.2506428360939026, -0.2817729711532593, 0.6568926572799683, -1.0517531633377075, -1.4395701885223389, -1.799336314201355, -0.10496009886264801, 0.7161999940872192, -0.3192724883556366, 0.8561339378356934, 0.14119496941566467, -1.1564233303070068, 0.32100534439086914, 0.36065760254859924, -0.39740151166915894, 0.434865802526474, -1.4190170764923096, 0.3590858578681946, 0.6366234421730042, 0.6278972625732422, -0.5519239902496338, 1.0778882503509521, -1.521545171737671, -1.7792004346847534, -0.5813188552856445, 0.698445200920105, 1.0650063753128052, 0.5492614507675171, -1.4965202808380127, 1.5266997814178467, 0.016073256731033325, 0.052193693816661835, -0.38281646370887756, -0.31265169382095337, -0.26183438301086426, 0.3305504024028778, 0.18541398644447327, 0.9952554702758789, 0.23343077301979065, 1.4050540924072266, 0.200236976146698, 0.6680158376693726, 0.685280978679657, -0.08141452819108963, -1.1441240310668945, 0.008829042315483093, 0.20448166131973267, 0.9602909088134766, -0.46405577659606934, -0.5362012386322021, -0.1494426727294922, -0.4164119064807892, -0.5654077529907227, 0.1683332920074463, 0.859323263168335, -0.4525594711303711, 0.5737826228141785, -0.4348157048225403, 0.11522458493709564, -1.1394208669662476, 0.8534332513809204, 0.23376122117042542, -0.003035183995962143, -0.35431617498397827, 0.0027637779712677, 0.06638262420892715, -0.9174411296844482, -0.04992023482918739, 0.0480152890086174, -0.35845768451690674, -0.6020634174346924, 0.6020790338516235, -0.11170613020658493, 0.4569469690322876, -0.12722477316856384, 1.3560740947723389, 1.1565136909484863, -0.19728219509124756, 0.3435670733451843, -0.3987942337989807, 0.015118511393666267, -0.3270905315876007, -0.615084171295166, -1.3905999660491943, -0.5252599120140076, 0.4007936716079712, 0.4725446105003357, -0.19381123781204224, -0.14399990439414978, -0.07801283150911331, 0.3462798595428467, 0.47522950172424316, 0.9230031967163086, -0.9706296920776367, -0.4945090413093567, 0.8098250031471252, 0.4001767039299011, -0.48690134286880493, 0.06054473668336868, -0.06155642867088318, 0.04427281767129898, 0.008069571107625961, 0.20442143082618713, 0.35786426067352295, -0.8054747581481934, 0.17969736456871033, 0.40563762187957764, 0.47621482610702515, 0.005941152572631836, -0.12759117782115936, -1.7281148433685303, -0.32714998722076416, -1.3091638088226318, -0.0740974098443985, 1.0121320486068726, -1.1976654529571533, -0.8351417183876038, -0.06484188884496689, 0.5103741884231567, -0.09906141459941864, 0.26044437289237976, 0.1808270663022995, 0.7727693915367126, -0.4866384267807007, -0.1529739499092102, -0.648970365524292, 0.5337661504745483, 0.09630037099123001, 0.08095252513885498, -0.38866549730300903, -0.25473570823669434, 0.5843372344970703, -0.07917490601539612, 0.01638716273009777, -0.540261447429657, 0.767605721950531, -0.4747272729873657, -0.4778299331665039, 0.08552289009094238, 0.7031859159469604, 0.3881824016571045, -0.19049522280693054, -1.2354791164398193, 0.48990368843078613, 0.7664159536361694, 0.4422331750392914, -0.17760159075260162, -1.1409521102905273, -0.44948214292526245, 0.8751053810119629, -0.7974029779434204, 0.7937047481536865, 0.0685444250702858, 0.08433741331100464, 0.3514993190765381, -0.5357043743133545, -0.7354085445404053, -0.563563346862793, 0.37111419439315796, 0.17528441548347473, 0.17729264497756958, -0.014274386689066887, 0.3468266725540161, 0.00126754492521286, -1.3221514225006104, -0.4937986731529236, -0.10165026783943176, -0.4473956525325775, 0.2907163202762604, -1.0929045677185059, -0.32703858613967896, -0.6986636519432068, 0.3895445764064789, 0.6531765460968018, 0.0188225656747818, 0.7033596634864807, -0.002503514289855957, -1.6961252689361572, 0.2206541895866394, 0.3478800058364868, 0.0025282204151153564, -0.09485065191984177, 1.0672519207000732, 0.9278336763381958, 0.5154945254325867, 0.6821333765983582, -0.31945812702178955, 0.26358842849731445, -1.2703747749328613, -0.17259526252746582, -0.3295879065990448, 0.1225399523973465, -0.7553068399429321], [1.0388292074203491, 1.567883849143982, -2.4904069900512695, -0.515694797039032, 0.915591299533844, -0.6828662157058716, 0.8072577118873596, -0.49948233366012573, -0.5512784719467163, -1.3410911560058594, -0.6843780279159546, 0.20103658735752106, 0.5934271812438965, 0.4005252718925476, 0.8102210760116577, 0.0529228039085865, 0.8523557186126709, 0.8252488970756531, 0.0670025572180748, 0.49173229932785034, -0.11833344399929047, -1.5555636882781982, 0.3480704724788666, 0.11740292608737946, 0.5095639824867249, 0.28425151109695435, -0.8936201333999634, -0.4040434956550598, -1.1524879932403564, -0.9133641719818115, 1.1936594247817993, -0.7594735622406006, 0.19096918404102325, -0.17633868753910065, -1.8780667781829834, -0.1663413643836975, 0.8610876202583313, 0.6707549095153809, 0.43141260743141174, 0.41826969385147095, 2.1485300064086914, 0.09273836761713028, 0.10375551879405975, -1.525869607925415, 0.5142301321029663, -0.3379814028739929, 0.9679683446884155, -0.8250485062599182, -0.09543459862470627, -1.0545649528503418, 0.12444520741701126, -0.7444990873336792, -0.5100642442703247, 1.0151845216751099, 0.7431125640869141, -0.6986055374145508, 0.46136677265167236, 0.4055158197879791, 0.29614540934562683, -0.629552960395813, 0.5275563597679138, 0.6447892785072327, 0.6432119011878967, 0.3771354556083679, 0.08124597370624542, -0.1949702352285385, -0.20342959463596344, 0.5959240198135376, 0.28229066729545593, 0.6615482568740845, 0.48589426279067993, 0.3339070677757263, -0.6986157298088074, 0.4824283719062805, -1.2487846612930298, 0.6592370867729187, 0.7142403721809387, 0.6870344877243042, 0.09254050999879837, 0.7973145246505737, -0.7356147766113281, 0.03570730984210968, 0.10542220622301102, -0.17367422580718994, 0.22337785363197327, 0.6703660488128662, 0.609054684638977, -0.3100167214870453, -0.47640231251716614, 1.4527761936187744, 0.270381361246109, 0.6133929491043091, 0.6002998948097229, -0.5154479742050171, -0.2828904390335083, -0.8128639459609985, 0.026798121631145477, -1.1684327125549316, -0.43388301134109497, -0.3566933572292328, -0.8872619271278381, -1.2115414142608643, 0.25038576126098633, 0.6704908609390259, 0.3299235999584198, 1.079048991203308, 0.7664387822151184, -0.6972936987876892, 0.01341626513749361, -0.13585124909877777, -0.3910919427871704, 0.5022505521774292, -0.9090655446052551, -1.1414953470230103, -0.25243398547172546, 1.09296715259552, 1.5634056329727173, 0.033123619854450226, 0.631136953830719, 1.0505784749984741, -1.145463466644287, -0.48819008469581604, -1.3476792573928833, -0.4522479474544525, 1.6853383779525757, -0.09516526758670807, -1.1219193935394287, -0.04994707927107811, 0.30390357971191406, 0.16219156980514526, 0.7990823984146118, -0.03208659589290619, -0.11587761342525482, 1.0782839059829712, -0.7583678364753723, 1.2204471826553345, -0.21962818503379822, -1.532446026802063, 0.4709548354148865, 0.7088162899017334, 0.5522158145904541, 0.009418941102921963, -0.1255301833152771, -0.6365993022918701, 0.43140682578086853, -0.29341810941696167, -0.29459288716316223, 0.014138449914753437, -0.827534556388855, 0.01859487034380436, -1.409962773323059, 0.44982466101646423, -0.006000312976539135, 0.795179009437561, 0.853362500667572, -0.28494760394096375, -0.339855432510376, -0.04363316297531128, 0.0005037342198193073, 0.1494630128145218, 0.777283251285553, 0.07287537306547165, -1.1359933614730835, 0.44018304347991943, 0.9177548885345459, -0.9714818596839905, -0.10433510690927505, 0.7426918148994446, 0.1288580447435379, 1.0233519077301025, -0.287810355424881, -0.38036301732063293, -1.0030559301376343, 0.14232274889945984, 0.45825594663619995, -0.08478916436433792, 1.946171760559082, -0.0701398178935051, -0.98808354139328, -1.1073633432388306, 0.41975995898246765, -0.08389294892549515, 0.1399025321006775, -0.36196544766426086, 0.39716753363609314, -0.14582878351211548, 0.0626874640583992, -0.2986469268798828, -0.686886727809906, -1.354021668434143, -0.7401875257492065, -0.38647544384002686, -0.8123569488525391, 0.5649935007095337, -0.9661744236946106, -1.1696752309799194, 0.7811055779457092, -0.47058945894241333, -0.33088362216949463, -0.09618942439556122, 0.07007831335067749, -0.6436792612075806, -0.8404765129089355, -0.21552403271198273, -0.48157835006713867, 0.6933198571205139, -1.0004996061325073, 0.18463750183582306, -0.5226917862892151, -0.047991231083869934, 0.7538575530052185, 0.09869899600744247, -1.2976566553115845, 0.9798328876495361, -0.23153136670589447, -1.600525975227356, 0.7648420333862305, 0.27516070008277893, 0.37466269731521606, -0.20700576901435852, -0.06811463832855225, -0.19616767764091492, 0.8354578614234924, -0.37900909781455994, 0.5124250054359436, -0.07592595368623734, -0.5632182955741882, -0.9121177196502686, -0.4104178249835968, -0.2067820131778717, -0.6709931492805481, -0.9999014735221863, 0.6881538033485413, -0.0972195416688919, -0.9290722012519836, 0.4612169861793518, 0.25636908411979675, 0.5674746632575989, -0.08881620317697525, 1.013158917427063, 1.0546190738677979, 0.07052846997976303, -0.5908108949661255, -0.49145328998565674, -0.4573359489440918, -0.06551554799079895, 0.89128178358078, -0.1313430815935135, -0.12039612978696823, 1.3578583002090454, 0.9493868350982666, -0.38309717178344727, 0.7735394835472107, -0.10597545653581619, 0.05215787515044212, -1.344294548034668, -0.0478970929980278, -0.2723359167575836, -0.9665495753288269, 1.0458593368530273, 0.40985947847366333, -1.5663888454437256, 0.07452994585037231, -0.3207652270793915, -0.17717069387435913, -0.49988994002342224, -0.42731404304504395, -0.5113621950149536, 0.31503790616989136, -0.4958314299583435, -0.1460486650466919, -0.13737747073173523, -0.7005917429924011, 0.5786615610122681, -0.9624454975128174, -0.6368018984794617, 0.1176675409078598, 0.6974015831947327, -0.019256968051195145, 0.8133756518363953, -0.4486372172832489, -1.6122287511825562, -1.0461461544036865, -0.01206339243799448, 0.6938650012016296, 0.19868238270282745, -0.803758442401886, 1.2571709156036377, 1.1065839529037476, 0.3545858561992645, 0.015716370195150375, -0.03353815898299217, 0.09152548760175705, 0.049454834312200546, 0.35009005665779114, -0.05819828063249588, 0.42270219326019287, -0.6899184584617615, -0.5418137907981873, -0.5281316637992859, 0.38347846269607544, 1.2231392860412598, 0.5005708932876587, 1.2270606756210327, -0.24547044932842255, -0.403696209192276, -0.25470203161239624, 0.25722426176071167, 0.1626559942960739, 0.04937665909528732, -0.40474215149879456, -1.2590936422348022, -0.1580720990896225, -0.6503004431724548, -0.03496851027011871, 0.7826305031776428, 0.1528290957212448, 0.3914230465888977, 0.9527403116226196, 0.2979084551334381, -1.23517906665802, -0.669984757900238, 0.1727081537246704, -1.2459301948547363, -0.029363656416535378, 1.6158686876296997, -0.7942256927490234, 0.6408369541168213, -0.3255910277366638, 0.09508632123470306, 0.01210043765604496, -0.14384470880031586, 0.42141276597976685, -1.0462937355041504, -0.5258535742759705, -0.07810024172067642, 1.3116035461425781, 0.037849366664886475, 0.004713253118097782, -0.20498614013195038, 0.7448879480361938, 0.8565182685852051, -0.5239317417144775, -0.9410231113433838, 0.4510888457298279, -0.8830776810646057, -0.593591034412384, -0.4376492500305176, 0.5082554221153259, 0.3690088987350464, -0.4481005370616913, -0.6981074810028076, -0.820183515548706, -0.1239430159330368, -0.7725581526756287, 0.29353365302085876, 0.16863848268985748, 1.268547534942627, 0.0386444590985775, 0.21129857003688812, 0.9113829731941223, -0.093880295753479, 0.5518020391464233, -0.7773080468177795, 0.3252876102924347, 0.9077316522598267, 1.7776877880096436, 0.7417323589324951, 0.1715276539325714, 0.32023248076438904, 0.062037330120801926, 0.16091127693653107, -0.09943678975105286, 0.45833641290664673, -0.2522381842136383, -0.47072216868400574, -0.6637736558914185, 0.007591788657009602, 0.2357316017150879, 0.3840016722679138, 0.1938747763633728, 0.17144735157489777, -0.3672406077384949, -0.4781787395477295, 1.1157630681991577, 0.9030162692070007, 0.0687108039855957, -0.3157494366168976, -0.515767514705658, 0.5653245449066162, -0.9175154566764832, 0.08575442433357239, -0.8182470798492432, -0.23039713501930237, 0.6540822386741638, -1.3772519826889038, -0.1297990083694458, 0.5242310762405396, 0.2661263644695282, 1.175850510597229, -1.7127270698547363, -0.2615699768066406, 0.007217553909868002, 0.4642985463142395, 0.4855998158454895, -0.2644367516040802, 0.4869731366634369, -0.09459385275840759, -0.16082283854484558, 0.18555814027786255, 0.568747878074646, 1.3167086839675903, -0.4535193145275116, -0.31560301780700684, 0.3469927906990051, -0.9801556468009949, 0.15804129838943481, -0.5302351117134094, -0.4369979202747345, 0.10982999950647354, -0.09448754042387009, 0.2359112948179245, 0.06695476174354553, -0.1748872548341751, 2.2889246940612793, 0.327138215303421, 0.14889779686927795, 0.26908746361732483, 0.633912980556488, -0.9736401438713074, 0.49495571851730347, 0.4146591126918793, -0.13055749237537384, -0.3451496660709381, -0.012355568818747997, -0.09366992115974426, 0.40795981884002686, 0.4103821814060211, 0.019229935482144356, 0.4481421709060669, 0.48267295956611633, 0.6692612767219543, 0.17383091151714325, 0.05230049043893814, 1.1964448690414429, 0.7311005592346191, 1.1186723709106445, -0.4439416527748108, -1.1678102016448975, 0.8057950735092163, -0.3758367598056793, -0.10012511163949966, 1.2121020555496216, -0.14811567962169647, 1.4023696184158325, -1.0960594415664673, -0.4453100562095642, 0.6628199815750122, 0.16710326075553894, 0.39466822147369385, 0.39078453183174133, 0.2608223259449005, -0.7736903429031372, 0.16975006461143494, 0.7162264585494995, -0.5823894143104553, 0.1390271633863449, 0.090408094227314, -0.2854645848274231, 0.6568803191184998, -0.8595523238182068, 0.21839794516563416, -1.1308566331863403, -0.35354432463645935, 0.05949772149324417, -0.1733214557170868, 0.8711475729942322, 1.046708583831787, 0.6834133863449097, 0.8219563364982605, -0.15794098377227783, -1.8724775314331055, 0.060636006295681, -0.49865445494651794, 0.14660730957984924, -0.8046566247940063, -0.019794046878814697, -0.844019889831543, -0.4365234375, 0.33586063981056213, -0.11074209958314896, -0.295194536447525, -0.09135713428258896, 0.0376865528523922, -0.6996151208877563, 0.661953330039978, 0.3808269202709198, 0.3656686544418335, 0.16806356608867645, 0.383924275636673, 0.1617993265390396, 0.9020655751228333, -0.771645188331604, 0.3779583275318146, 0.1457848995923996, 0.020355818793177605, 0.21413739025592804, -0.7772313356399536, -0.7601361274719238, 0.2548045516014099, 0.8692829608917236, -0.03083168901503086, 0.23812933266162872, 0.950456976890564, 1.9345357418060303, -0.5100042819976807, -0.3949372470378876, 0.6658359169960022, -0.7855730652809143, 0.5826995372772217, 0.44561097025871277, -0.41539686918258667, -0.3480057716369629, -0.34891030192375183, -1.245039701461792, 1.4420294761657715, 0.42564958333969116, -0.32736852765083313, 0.6251211762428284, 0.37795764207839966, 0.7433628439903259, 0.9825557470321655, -0.9619002938270569, 0.40845948457717896, -0.06220811605453491, -0.5198032259941101, -0.8403013348579407, 0.6863952875137329, 0.4166455566883087, 0.06061389669775963, -1.031178593635559, 0.17420434951782227, 0.1203480139374733, -0.12666255235671997, -0.4857502281665802, 0.1247834712266922, 0.7343173027038574, 0.38726943731307983, 0.35114941000938416, -0.5969054102897644, 0.27762725949287415, -0.502720832824707, 0.07545952498912811, 0.022577127441763878, 0.33460599184036255, 0.8176268935203552, 0.2545575797557831, 0.5694618821144104, -0.4884565472602844, -0.6056288480758667, -0.05290069431066513, -0.7419776916503906, 1.2716484069824219, 1.2009530067443848, 0.7628886103630066, 0.15996050834655762, -0.4594394862651825, 0.06550364196300507, -0.2895948588848114, -0.06773431599140167, 1.2860057353973389, -0.7488847970962524, -0.2011062651872635, 0.06305969506502151, -0.6665914058685303, 0.47307848930358887, 0.07351477444171906, 0.3775009214878082, -0.976658284664154, -0.9269652962684631, -0.7223376035690308, -0.05674237757921219, 1.2749208211898804, -0.5552582144737244, 0.038898590952157974, 0.4237866699695587, -0.9998312592506409, 1.1929066181182861, 0.5401490926742554, -1.1766597032546997, -0.3107815086841583, -0.6677795648574829, 1.1178853511810303, 0.38446271419525146, -0.02610034868121147, 0.6505349278450012, 1.2400481700897217, -1.0089589357376099, -1.781479001045227, -0.9017438888549805, -0.08063139766454697, 0.748066782951355, 0.7568623423576355, -1.437364935874939, 1.4628698825836182, 0.08760825544595718, -0.1690334975719452, -0.038945335894823074, -0.42725077271461487, -0.8156833648681641, 0.1700161099433899, 0.4062287509441376, 0.2215748429298401, 0.2522982060909271, 1.1939691305160522, 0.6427499055862427, 0.7818356156349182, 0.29911887645721436, 1.174239158630371, -0.83693528175354, -0.05175900086760521, -0.05182167515158653, 0.9551178812980652, -0.8844079375267029, -0.9099213480949402, -0.10325223207473755, -0.8527334928512573, -0.9480119943618774, 0.23485659062862396, 0.7950682640075684, -0.6230829358100891, 0.7044721245765686, -0.5612415075302124, -0.3567650318145752, -1.2261862754821777, 0.41988444328308105, 0.06933467090129852, -0.799114465713501, 0.8350582122802734, -0.25130337476730347, 0.3402731418609619, -1.0808771848678589, -0.22121216356754303, 0.14737661182880402, 0.11648274213075638, -0.8309782147407532, 0.4354381859302521, 0.19803652167320251, -0.06633666157722473, -0.24489738047122955, 1.558699131011963, 0.9810366630554199, -0.18851332366466522, 0.2820900082588196, 0.31010985374450684, -0.06241649389266968, -0.47099193930625916, -0.161422997713089, -1.247193455696106, -0.6679098606109619, 0.5331541299819946, 0.823333740234375, 0.42814865708351135, -0.47179919481277466, 0.5234841108322144, 0.43140676617622375, 0.020650113001465797, 1.4390543699264526, -1.0053973197937012, -0.4049680233001709, 0.6107494235038757, 0.5529652833938599, -0.8656831383705139, -0.5488266348838806, -0.08799475431442261, 0.07911214977502823, 0.22539174556732178, 0.5215434432029724, 0.945149838924408, -0.6755995154380798, 0.4458022713661194, 0.9172443747520447, -0.6771805286407471, -0.08566911518573761, -0.12241347879171371, -1.6718271970748901, -0.5117202401161194, -0.5140770077705383, -1.158233642578125, 0.031181903555989265, -1.3059836626052856, -0.8206725120544434, 0.2612897455692291, -0.12195251882076263, -0.15303285419940948, -0.5369454026222229, 0.1547449678182602, -0.016086990013718605, -0.021941281855106354, 0.4050973653793335, -0.32906895875930786, 0.9146543145179749, 0.22392863035202026, 0.428841769695282, -0.3321283459663391, -0.12431009113788605, -0.12918387353420258, -0.1380426436662674, 0.17039906978607178, -0.6573277711868286, -0.24733972549438477, -0.33989763259887695, -0.5153413414955139, 0.3755108714103699, -0.2762473523616791, 0.057769909501075745, -0.3653661012649536, -0.8255541324615479, 0.330274760723114, 0.9494773149490356, 0.1497260332107544, -0.4707510769367218, -0.45191895961761475, -0.7214730381965637, 0.571686327457428, -0.14577488601207733, 0.8062387704849243, -0.5730956792831421, 0.5993897914886475, 0.30677178502082825, -0.25594332814216614, -0.3847557306289673, -0.9895374774932861, 1.5714656114578247, -0.7996134161949158, 0.312382310628891, -0.7047588229179382, -0.23919789493083954, 0.25044700503349304, -1.183994174003601, -0.044228456914424896, 0.10671024769544601, -0.691415548324585, -0.1910424530506134, -0.724006175994873, -0.5065000653266907, -0.179503932595253, 0.06873133033514023, 0.017279163002967834, 0.028249653056263924, 0.6807892322540283, -0.2164093405008316, -1.2362877130508423, -0.21852655708789825, 0.7049649953842163, -0.035800039768218994, 0.5924835801124573, 1.8125227689743042, 1.1175211668014526, 0.8657239079475403, 0.15479110181331635, 0.2879481315612793, -0.030485093593597412, -1.5273339748382568, 0.22586187720298767, -0.5173028111457825, -0.5217120051383972, -0.6922417879104614], [0.8137246370315552, 0.9896053075790405, -2.2359800338745117, 0.13452376425266266, 0.8368750810623169, 0.5065913200378418, 0.5864095687866211, -0.3089281916618347, -0.8695769906044006, -0.26082465052604675, -1.2968864440917969, 0.4599902331829071, -0.7443023920059204, 0.9620026350021362, 1.0248668193817139, 0.8186580538749695, 0.7723286747932434, 0.49467527866363525, 0.3754560649394989, 0.8526806831359863, 0.07737965881824493, -1.0306904315948486, 0.42870020866394043, -0.20836731791496277, 0.029937492683529854, 0.4161021113395691, -1.429965853691101, -0.7717549800872803, -0.8464693427085876, -0.7282903790473938, 0.47146546840667725, 0.057112935930490494, 0.487598717212677, -0.6116575598716736, -1.406044840812683, 0.4985578954219818, 1.6085224151611328, 1.207818865776062, 0.8269833326339722, 0.5718311071395874, 1.7023863792419434, -0.2340937852859497, -0.18051306903362274, -1.5404067039489746, -0.13731785118579865, -0.5175996422767639, 0.1505489945411682, -0.011034591123461723, -0.04557972401380539, -0.5543403625488281, 0.05430477112531662, -1.2229503393173218, 0.1764148324728012, 0.690349280834198, 0.6622684597969055, -1.409555196762085, 0.47397592663764954, 0.1351127177476883, -0.5253331065177917, -0.43023812770843506, 0.8213027715682983, -0.5618231892585754, 0.42629432678222656, 0.8334988951683044, 0.18694289028644562, -0.6708197593688965, 0.6763976216316223, 0.4422610402107239, -0.9326649904251099, 0.45914334058761597, 0.5210391283035278, 0.11983492225408554, -1.3766696453094482, 0.21370504796504974, -1.1902759075164795, 0.2852817475795746, 0.6804915070533752, 1.2653716802597046, 0.8955903053283691, 0.7717438340187073, 0.05922619253396988, 0.24365441501140594, -0.17573599517345428, -0.49858298897743225, -0.5543820261955261, 0.34922417998313904, 0.8530166745185852, -0.4854128658771515, -0.12658293545246124, 2.23264479637146, 0.32460346817970276, 0.18813228607177734, 1.309561014175415, -0.09357936680316925, -0.6952747702598572, -0.43481892347335815, 0.13600315153598785, -0.6051168441772461, -0.9348649382591248, -0.18115316331386566, -0.6065396666526794, -1.2884718179702759, 0.5228379964828491, 0.19711212813854218, 0.537697434425354, 0.9271350502967834, 0.12355818599462509, -0.6650018095970154, 0.17137669026851654, -0.030128631740808487, -0.1878662109375, 0.6718567609786987, -0.41486382484436035, -1.3793433904647827, 0.08828922361135483, 1.62177312374115, 1.5990017652511597, -0.6693337559700012, -0.3234311044216156, 0.6184731125831604, -0.2229696810245514, -0.22964559495449066, -1.082945704460144, -0.20730680227279663, 0.9869444370269775, 0.29079294204711914, -0.5846351981163025, 0.03358221799135208, -0.2716505825519562, 0.1128460168838501, 0.8945142030715942, 0.1923610419034958, -0.07779223471879959, 1.2866158485412598, -1.5274689197540283, 1.4713221788406372, -0.7349331974983215, -0.03224170207977295, -0.0571623332798481, 0.034696660935878754, 0.7437657713890076, 0.05796251446008682, -0.4599247872829437, -0.11597639322280884, 0.22293706238269806, -0.5726142525672913, 0.4054058790206909, -0.3508438169956207, -0.8658703565597534, 0.16108326613903046, -1.05538010597229, 0.10125921666622162, -0.017381206154823303, 0.5258252024650574, 0.5108797550201416, 0.4018409252166748, -0.013877029530704021, 1.0427944660186768, -0.015352130867540836, 0.24844346940517426, 0.4259333908557892, 0.2875891327857971, -0.2759583592414856, 0.40742307901382446, 1.1506353616714478, -0.5262194275856018, -0.12192553281784058, 1.469016194343567, 0.4665389358997345, 1.2389335632324219, -0.11878586560487747, -0.43781203031539917, -0.5101814866065979, 0.1357947140932083, 0.25031548738479614, 0.022219078615307808, 0.25106289982795715, -0.04563095420598984, -1.7561231851577759, -1.0940649509429932, 0.9450951218605042, -0.12224602699279785, 0.9614986777305603, -0.3540571331977844, 0.6319848895072937, -0.3244456946849823, 0.021466387435793877, -0.27413466572761536, -0.6920149326324463, -0.8855577111244202, -0.849790632724762, -0.7220414280891418, -0.6481215953826904, 0.8167668581008911, -0.6685362458229065, -1.192138671875, 0.3173476457595825, -1.2875734567642212, -0.6516637206077576, -0.6598110795021057, 0.33587026596069336, -0.5296489000320435, -0.26924753189086914, 0.15862517058849335, -0.24415259063243866, 0.9037770628929138, -1.295773983001709, 0.22041617333889008, -0.8897331953048706, 0.019243665039539337, 0.39412569999694824, 0.3108462691307068, -0.7719689607620239, 0.18501995503902435, 0.12906625866889954, -1.9427037239074707, 0.5889601707458496, 0.8497130870819092, -0.4775198698043823, 0.0878460481762886, -0.4571974277496338, 0.16560010612010956, 0.6393048763275146, -0.29237061738967896, 0.5595874190330505, -1.0274399518966675, -0.5512924194335938, -0.7584636211395264, -0.5289327502250671, -0.1350855678319931, -0.6574070453643799, -0.7080168724060059, 1.3271375894546509, 0.12121151387691498, -1.7557387351989746, 0.14485883712768555, 0.16352367401123047, 0.5434668064117432, -0.23816533386707306, 1.4186460971832275, 0.4428354501724243, 0.4649505913257599, -0.7065623998641968, -0.5843548774719238, -0.5044874548912048, 0.02247227542102337, 1.1282254457473755, -0.6658099293708801, 0.012332586571574211, 1.2934473752975464, 0.735822856426239, -0.2741624414920807, 0.3947788178920746, -0.3904536962509155, -0.1700620949268341, -1.7747907638549805, -0.27550140023231506, 0.39798471331596375, -0.1741790920495987, 1.5336774587631226, 1.0577187538146973, -0.815292477607727, -0.2971743941307068, -0.27521803975105286, -0.3114546537399292, -0.43053901195526123, -0.2696780860424042, -0.5457999110221863, 0.6372429728507996, -0.10329184681177139, 0.1254962831735611, 0.27788716554641724, -0.5518538951873779, 0.5489149689674377, -0.41995298862457275, -0.5202212929725647, -0.6735793352127075, 1.1297613382339478, -0.10386176407337189, 0.8809109330177307, -0.11796250194311142, -0.873430609703064, -0.3130991756916046, -0.1434866338968277, 0.7568768858909607, 0.2687739431858063, 0.0549577921628952, 0.4011317491531372, 0.9029804468154907, -0.24538899958133698, 0.4934011697769165, -0.028450867161154747, 0.05835413187742233, 0.3254871964454651, 0.5617090463638306, 0.3166462182998657, 0.8887358903884888, -0.7243874073028564, -0.7809969782829285, -0.012191628105938435, -0.17873051762580872, 1.4551087617874146, -0.2672581076622009, 1.0315195322036743, -0.34096580743789673, -0.5368760824203491, 0.08553540706634521, 0.3382169306278229, -1.3154348134994507, 0.12276273965835571, -0.37403780221939087, -1.2198865413665771, 0.3172294795513153, -0.30222761631011963, 0.19558461010456085, 0.3970177471637726, 0.044606875628232956, 0.4569585919380188, 0.6415627598762512, -0.2705463767051697, -0.6015031933784485, -0.7477546334266663, -0.32360151410102844, -0.8791637420654297, 0.4473050832748413, 1.4584029912948608, -1.5011316537857056, 0.06631232053041458, 0.14731495082378387, 0.057909220457077026, 0.013747703284025192, -0.6216515898704529, 1.078850269317627, -0.8669412732124329, -0.39191287755966187, -0.4273865222930908, 0.984590470790863, -0.3798529803752899, -0.6562007069587708, -0.5512790083885193, 0.6014593839645386, 0.7395365834236145, -0.8984411358833313, -0.13083508610725403, 0.5136778354644775, -0.3132239282131195, -0.1528746336698532, 0.3527810871601105, 0.7774834632873535, 0.6946783661842346, -0.48329830169677734, -1.274916172027588, -0.64759761095047, -0.1626334935426712, -0.2116330862045288, -0.14363643527030945, -0.3570023477077484, 0.8664256930351257, -0.24633274972438812, 0.25793910026550293, 0.6876784563064575, 0.39278852939605713, 0.7023056745529175, -0.9917891621589661, 0.4203706979751587, 0.689760148525238, 2.720978021621704, 0.7829969525337219, 0.6085957288742065, 0.32886144518852234, -0.005132149904966354, 0.3263512849807739, 0.5585649609565735, 0.9288860559463501, -0.1379057615995407, -0.41637057065963745, -0.3133302330970764, -0.6964857578277588, -0.22126702964305878, -0.18435436487197876, -0.12594442069530487, 0.14166472852230072, -0.8377034664154053, -0.258217990398407, 1.170552134513855, 0.6952697038650513, -0.22300684452056885, -0.17516981065273285, -0.3331391513347626, 0.3800131380558014, -1.1508902311325073, 0.005568706896156073, -0.6487768888473511, 0.28522002696990967, 0.6387196779251099, -0.8874040246009827, -0.36258140206336975, 0.5041075944900513, 0.10118506103754044, 0.3679940104484558, -0.5302236080169678, 0.16932342946529388, -0.8473289012908936, 0.8275079131126404, 0.5507820844650269, 0.08558689802885056, 0.4344552755355835, 0.9564032554626465, -0.7093457579612732, 0.1641336977481842, -0.21037565171718597, 1.410151720046997, -0.4675741195678711, 0.06644326448440552, 0.08445587754249573, -0.3934434950351715, -0.13126257061958313, -0.007955343462526798, -0.3208673894405365, -0.012497714720666409, -0.2522817552089691, 0.04249200224876404, 0.4483172595500946, -0.11279621720314026, 1.9184304475784302, -0.3271637260913849, -0.1292688399553299, 0.460908979177475, 0.6948012709617615, -1.3518263101577759, -0.41995829343795776, 0.04971202090382576, -0.10251986235380173, 0.08489765971899033, 0.03010123409330845, 0.042551085352897644, 0.13761931657791138, 0.23685631155967712, 0.2604997754096985, 0.6140137910842896, 0.3728186786174774, 0.3198925852775574, 0.06605565547943115, 0.7426075339317322, 1.4510228633880615, 0.6851291656494141, 0.9491177201271057, 0.10415089130401611, -1.2795947790145874, 0.10665544867515564, -0.8101786375045776, -0.015818774700164795, 0.44549012184143066, -0.2363462746143341, 1.671339750289917, -1.8561593294143677, 0.325298011302948, 0.7182266712188721, 0.23294629156589508, -0.02232733741402626, 0.8853764533996582, -0.6839277744293213, -0.04291395843029022, 0.17129766941070557, 0.024244172498583794, -0.36200544238090515, -0.15053828060626984, 0.596683144569397, -0.6733747720718384, 1.1259181499481201, -0.56288081407547, 0.8126033544540405, -0.5887388586997986, -0.012118826620280743, 0.281694233417511, -0.2921006679534912, -0.07613393664360046, 0.16548463702201843, 0.5892163515090942, 1.226678490638733, 0.14354673027992249, -1.3383570909500122, -0.13972468674182892, -0.6327734589576721, 0.26969006657600403, -0.3475967049598694, -0.4961538314819336, -0.6822504997253418, -0.5374711155891418, 0.2963707745075226, -0.03778230771422386, -0.5668098330497742, -0.17744135856628418, -0.35959818959236145, -1.3024344444274902, 0.7876205444335938, 0.6954932808876038, 0.4673033356666565, 0.5011724233627319, 0.3745594322681427, 0.1753966510295868, 0.26206010580062866, -1.1140453815460205, 0.2724626958370209, 0.05080127343535423, 0.1672901064157486, -0.3379795253276825, -0.669087290763855, -0.5711894631385803, 0.3012195825576782, 0.524222195148468, 0.23796527087688446, 0.6514618396759033, 1.1570595502853394, 1.2629188299179077, -0.5811872482299805, -0.3592551648616791, 0.3555982708930969, -0.6539111137390137, 0.3513474762439728, 0.28335216641426086, -0.13273857533931732, -0.011643040925264359, -0.7325618863105774, -1.7183388471603394, 0.7082284688949585, 0.41562098264694214, -0.4301537573337555, 0.6494318246841431, 0.6109434366226196, 1.1962673664093018, 0.6666204929351807, -0.6484706997871399, -0.07006696611642838, 0.10870147496461868, -0.09548301249742508, 0.011418134905397892, 0.8444387316703796, -0.021285057067871094, 0.09595110267400742, -0.24407438933849335, -0.41650110483169556, -0.49309733510017395, -0.1484876126050949, -0.5585938692092896, 0.5920692682266235, -0.15753158926963806, 0.18963193893432617, 0.7848588228225708, -0.16903960704803467, 0.5090997219085693, -0.17135757207870483, -0.1786235272884369, 0.296356737613678, 0.8535200357437134, 0.6741191148757935, 0.20021894574165344, 0.5396572351455688, -0.738491952419281, -0.5325448513031006, -0.3131846785545349, -0.3635126054286957, 1.289081335067749, 0.6072090268135071, 0.19129693508148193, -0.16606508195400238, -1.1780946254730225, 0.6829178929328918, -0.44346103072166443, 1.1875938177108765, 0.9407632946968079, -0.7215502262115479, -0.11989665031433105, -0.035806093364953995, -1.3508189916610718, -0.1442011445760727, -0.45972633361816406, 0.1470508724451065, -0.44286853075027466, -0.9955775737762451, -0.7906662225723267, 0.1724347621202469, 0.38677695393562317, -0.7794069051742554, 0.9620396494865417, 0.26710906624794006, -1.0456007719039917, 0.5008018612861633, 0.2960438132286072, -1.0686055421829224, 0.28500738739967346, -1.1894590854644775, 0.7311446070671082, 0.2708379328250885, 0.35796070098876953, -0.322719007730484, 0.6904124021530151, -1.182227611541748, -1.197424292564392, -0.8302210569381714, -0.17913833260536194, 0.44199246168136597, 0.8015245199203491, -0.8548973202705383, 1.3091185092926025, -0.07102905958890915, -0.4091174006462097, -0.8496502637863159, -0.6308538913726807, 0.05097610130906105, 0.20964941382408142, 0.7986447811126709, -0.04620113596320152, -0.10647300630807877, 1.1654146909713745, 0.7179687023162842, 0.9322535991668701, 0.23232969641685486, 0.9071639776229858, -1.0724151134490967, -0.7326091527938843, 0.23847819864749908, 0.23527783155441284, -0.7315912842750549, -1.4114412069320679, -0.24513313174247742, -0.20680418610572815, -1.015162467956543, -0.273679256439209, 0.49534109234809875, -0.5330296754837036, 0.2876792550086975, -0.20746980607509613, 0.04278064891695976, -1.0650521516799927, 0.7543138265609741, 0.4631173014640808, -0.9090564250946045, -0.3834972679615021, 0.10355523973703384, -0.04513369873166084, -1.0032480955123901, -0.27138233184814453, -0.2129640281200409, -0.5287984013557434, -0.07021047919988632, 0.7424847483634949, 0.19170553982257843, 0.6099680066108704, -0.3379414677619934, 0.6379198431968689, 0.9377599358558655, -0.22380633652210236, 0.08970905840396881, 0.49031394720077515, -0.8374401926994324, -0.29909834265708923, -0.6792447566986084, -1.1810581684112549, 0.14043311774730682, 1.3121224641799927, 0.40984565019607544, -0.15396784245967865, 0.42229771614074707, 0.05575639754533768, 0.6669235825538635, 0.06724489480257034, 0.5047977566719055, -1.0641697645187378, -0.5568659901618958, 0.6566649079322815, 0.6765722036361694, -0.35633864998817444, -0.591496467590332, 0.49375247955322266, 0.641122579574585, -0.9011159539222717, 0.4847959578037262, 0.6460481882095337, -0.24688154458999634, 0.259452760219574, 0.8114074468612671, 0.038273416459560394, -0.2864307463169098, -0.4451467990875244, -1.8380439281463623, 0.03796829655766487, -0.49037498235702515, -0.37424081563949585, 0.3825515806674957, -1.5806621313095093, -0.7945253252983093, -0.2862074673175812, -0.4925857484340668, -0.6251662969589233, -0.21113252639770508, 0.2657462954521179, 0.42999327182769775, 0.19084517657756805, 0.40962904691696167, 0.1471489816904068, 1.1094233989715576, -0.6576303839683533, 0.05574210360646248, -0.5128922462463379, -0.25972363352775574, 0.3645494282245636, 0.1689726710319519, -0.13004417717456818, -0.3210529088973999, 0.4002385139465332, -0.7576339840888977, -1.104131817817688, -0.44774216413497925, 0.2435918152332306, -0.17150317132472992, -0.14596262574195862, -0.6497324705123901, 0.3534669876098633, 0.8593141436576843, 0.5747014284133911, -0.09161826968193054, -0.9253414869308472, -0.8691912889480591, 0.45487678050994873, -0.5235006809234619, 0.5710621476173401, -0.16660422086715698, 0.6815022230148315, 0.25394681096076965, -0.49901989102363586, -0.3936328887939453, -0.3817960321903229, 0.9430760145187378, 0.1929522007703781, -0.09833615273237228, -0.5279503464698792, 0.6884541511535645, -0.11525703966617584, -1.200461745262146, -0.20591512322425842, -0.021247997879981995, -0.5154464840888977, 0.45259982347488403, -1.1454765796661377, -0.6114953756332397, -0.18432067334651947, -0.3409598767757416, -0.09369030594825745, 0.1250176876783371, 0.2350056916475296, -0.20012688636779785, -0.9014785289764404, 0.2757750153541565, 0.40578708052635193, -0.2725885808467865, 0.4088374376296997, 1.2282814979553223, 1.3027440309524536, 0.5107468366622925, -0.21494878828525543, 0.03234144300222397, 0.7598645091056824, -1.3945919275283813, 0.2835070490837097, -0.3550436496734619, 0.13439826667308807, -0.3565685749053955], [-0.004230991005897522, 0.9285115003585815, -2.1838035583496094, -1.0916192531585693, 0.564371645450592, -0.5757216811180115, 0.6949117183685303, 0.5341594219207764, 0.4691094756126404, -0.48415517807006836, -0.7997563481330872, 0.12772224843502045, -0.05001646280288696, -0.5976077914237976, -0.12078525125980377, 0.44817742705345154, 0.3232581913471222, -0.19429534673690796, -0.2535058259963989, 0.48559844493865967, -1.254392385482788, -1.2174522876739502, -0.006821736693382263, 0.390170156955719, -0.32615506649017334, -0.0897793173789978, -1.1833906173706055, -0.3042377531528473, -1.698796272277832, -0.3812670409679413, 1.5901899337768555, -0.3340299725532532, 0.006414666771888733, -0.03887969255447388, -1.8195085525512695, -0.1347019225358963, 1.549372673034668, 0.33186158537864685, -0.18030419945716858, 1.0788003206253052, 2.5195655822753906, 0.8714938759803772, -0.6761175394058228, -1.4454083442687988, 0.5764681100845337, -0.22816890478134155, 0.3443949520587921, -0.503730833530426, -1.1957039833068848, -0.4411506950855255, 0.574511706829071, -0.8628859519958496, 0.710329532623291, 0.2668994665145874, 1.062529444694519, -0.9441964626312256, 0.539340615272522, 0.10559113323688507, 0.8643431663513184, 0.16769960522651672, 0.9832513332366943, -0.9854114055633545, 0.18000628054141998, 0.25124141573905945, 0.33064284920692444, -0.13979922235012054, -0.05152106285095215, 0.9546322822570801, -0.36803582310676575, 0.48223230242729187, 0.7555333375930786, 0.5311246514320374, -0.4612770080566406, -0.11420105397701263, -0.9510328769683838, 1.362985610961914, 0.20001032948493958, 0.38578876852989197, 0.027311354875564575, 1.0001057386398315, -1.1620274782180786, 0.5284692049026489, 0.6191904544830322, -0.9018679857254028, -0.7223052978515625, 0.1329364776611328, 0.3648930788040161, 0.1891942024230957, -0.5951897501945496, 1.3564157485961914, -0.36254099011421204, -0.003311634063720703, 0.6368633508682251, -0.5104697346687317, 0.24327045679092407, -0.1367778778076172, -1.1922048330307007, -1.267499566078186, -0.7377802133560181, -1.0300283432006836, -0.8808784484863281, -0.8600419759750366, 1.143674612045288, 0.2141987681388855, 0.32883280515670776, 1.3954200744628906, 0.4481133818626404, -0.9104785323143005, -0.15975381433963776, -0.8951776623725891, 0.16710029542446136, 0.19244790077209473, -0.5191094279289246, -0.9975279569625854, 0.3003232479095459, 1.2776025533676147, 1.4012079238891602, 0.4521225690841675, 0.4066355526447296, 0.5901014804840088, -0.4266495704650879, -0.1772969365119934, -0.7326223850250244, 0.7740130424499512, 1.1896295547485352, 0.4461086392402649, 0.02332921326160431, 0.09116052836179733, 0.027160227298736572, -0.009709306061267853, 0.019131284207105637, 0.08387765288352966, 0.3240532875061035, 1.0625207424163818, -0.28138870000839233, 0.3169693946838379, 0.7469907999038696, -1.3372626304626465, 0.278384268283844, -0.398598849773407, 0.2021465301513672, -0.983170211315155, -0.43915724754333496, -0.7921798229217529, 0.34522414207458496, -0.29398924112319946, 0.5391583442687988, 0.016181260347366333, -0.923829197883606, 0.3509570062160492, -1.5262176990509033, -0.2773212790489197, 0.17015190422534943, 0.811765193939209, 0.4326612949371338, 0.18866263329982758, 0.028485000133514404, 0.2927599549293518, 0.4592941403388977, 0.7445798516273499, 0.5038085579872131, 0.19721871614456177, -0.818318247795105, 1.4699125289916992, 0.5058566331863403, -0.715752124786377, 1.151057243347168, 0.24363809823989868, 0.0167082529515028, 1.0844571590423584, 0.28457769751548767, -0.6921210885047913, 0.3545616567134857, 0.6755478382110596, 0.4961448311805725, -0.3506101667881012, 0.6028789281845093, -0.1478639841079712, -1.0800821781158447, -1.1023375988006592, 1.0314973592758179, -0.3854953348636627, 0.5678527355194092, 0.26433420181274414, 0.9499614238739014, -0.06598314642906189, -0.012809514999389648, 0.10892625898122787, -1.0236777067184448, -1.3498520851135254, -0.633445680141449, 0.1347137987613678, -1.2809553146362305, -0.30679166316986084, -0.3854563236236572, -0.49523046612739563, 0.8118914365768433, -0.5069558620452881, -0.7574078440666199, 0.19799834489822388, 0.6785792112350464, -0.2816859185695648, -1.4763622283935547, 0.11042845249176025, -0.6767549514770508, 0.999690055847168, -0.4856855273246765, 0.591327428817749, -0.6799136400222778, 0.3765929937362671, 1.0400301218032837, -0.036495089530944824, -0.7645148038864136, 0.2434430718421936, -0.9952973127365112, -1.1257879734039307, 0.40386590361595154, 0.08532029390335083, -0.15198081731796265, -0.26709693670272827, 0.06692525744438171, 0.6611214876174927, 0.794579803943634, 0.08515018224716187, 0.4308091104030609, 0.25085389614105225, -0.08723163604736328, -0.03784322738647461, -0.33891192078590393, -0.6483767032623291, -0.7077200412750244, -0.8881236910820007, 0.5013984441757202, 1.0786583423614502, -1.4052915573120117, 0.5388988852500916, -0.5307108759880066, 0.2832932770252228, 0.21444827318191528, 0.3428291082382202, 0.6990317106246948, 1.1208289861679077, -0.6132491230964661, 0.006481394171714783, -0.6024415493011475, 0.07074150443077087, 0.8000667095184326, -0.791802167892456, 0.3314318060874939, 1.4046189785003662, 0.6707722544670105, -0.1385551542043686, 0.2921942472457886, -0.9549686908721924, 0.303349107503891, -0.3085557818412781, 0.12973296642303467, 0.7507538795471191, -1.1624131202697754, 2.2313480377197266, 1.2501344680786133, -0.4641945958137512, 0.2774651050567627, 0.09619563817977905, -1.1639686822891235, -1.086834192276001, 0.34928643703460693, -0.27644696831703186, 0.22629916667938232, 0.017535239458084106, -0.2332303822040558, 0.09596803784370422, 0.28679269552230835, 0.7067875862121582, -0.21350665390491486, 0.32631027698516846, -0.15516217052936554, -0.06797032058238983, -0.262462317943573, 0.49987363815307617, -0.1200232058763504, -1.4012324810028076, -0.5131453275680542, 0.01813599094748497, 0.48933717608451843, 0.4858139753341675, -0.38017725944519043, 0.17315995693206787, 0.1317736953496933, -0.7161480188369751, 0.254709929227829, 0.475603312253952, -0.2894468307495117, 0.14030392467975616, 0.7500652074813843, 0.03837791830301285, 0.901456356048584, -1.0132193565368652, -0.9220168590545654, 0.22332549095153809, 0.03669077157974243, 0.6851454973220825, 0.09511002898216248, 1.3547160625457764, -0.4592238664627075, 0.5725115537643433, -0.25684431195259094, -0.5040419101715088, 0.5081889033317566, -0.18686282634735107, -0.33821457624435425, -0.9220972061157227, -0.5076032280921936, 0.13945943117141724, 0.05024275183677673, 0.7592698335647583, -0.5440835356712341, 1.007622241973877, 0.622342586517334, 0.5870181322097778, -0.8710496425628662, -0.20926706492900848, -0.3900732398033142, -0.961902379989624, 0.8081836700439453, 0.8550859689712524, -1.5552759170532227, -0.08718350529670715, 0.03665304183959961, 0.03836192190647125, 0.664470911026001, 0.14857852458953857, 0.7292468547821045, -1.5564274787902832, -0.24910122156143188, -0.11439928412437439, 0.5455098152160645, 0.189253568649292, -0.6681621670722961, -1.0650819540023804, 1.075714111328125, 0.017377734184265137, -0.2947171926498413, -0.4279148578643799, 1.031785011291504, -0.48852717876434326, -1.0280752182006836, 0.09568670392036438, 0.26274609565734863, 0.35996708273887634, -0.4545094966888428, -0.35582655668258667, -0.1281176507472992, -0.7150779962539673, -0.49188506603240967, -0.276370644569397, -0.23605680465698242, 0.7369848489761353, 0.45098933577537537, -0.16245293617248535, 0.6599979996681213, 0.03226163983345032, -1.227073311805725, -1.6926683187484741, 1.0160901546478271, 0.8938378095626831, 1.3753347396850586, 0.20833086967468262, 0.18659377098083496, 0.054905980825424194, -0.7536382675170898, -0.4274730086326599, -0.14395175874233246, 0.7070623636245728, -0.3967415690422058, -0.4034855365753174, -0.30428311228752136, -0.6494070887565613, -0.3493741452693939, 0.39346790313720703, -0.06309749186038971, 0.3038119971752167, 0.1220623105764389, -0.05326199531555176, 1.1279363632202148, 0.3604774475097656, -0.43474870920181274, -0.1456015408039093, -0.17139536142349243, 0.4691387414932251, -0.0664617121219635, 0.16322563588619232, 0.05763326585292816, -0.21815665066242218, 0.4819965064525604, -0.6992707252502441, -0.7799595594406128, -0.3116168975830078, 0.12131202220916748, 1.2944965362548828, -1.1246379613876343, -0.27043765783309937, -0.5331127047538757, 1.145453929901123, 0.1849178671836853, 1.0039787292480469, 0.38458383083343506, 0.30205294489860535, 0.3663094937801361, 0.3655339479446411, -0.048694998025894165, 1.226156234741211, -0.5197698473930359, 0.14754211902618408, 0.32846564054489136, 0.7859132289886475, 0.7068402171134949, 0.25722697377204895, 0.0534793958067894, -0.027842052280902863, -0.4494142532348633, -0.155656635761261, -0.30248650908470154, -0.03453725576400757, 1.2691490650177002, 0.2805791199207306, -0.14226973056793213, -0.4536828398704529, -0.050351209938526154, -0.375455379486084, -0.13086631894111633, 0.5002573132514954, -0.2991490960121155, -0.3139999508857727, 0.2662022113800049, 0.45967748761177063, 0.41077446937561035, 0.7616927623748779, 0.1284344494342804, 0.2928491234779358, -0.15607351064682007, -0.34143543243408203, 0.7353696227073669, 0.5995697379112244, 0.884514331817627, 0.2575150430202484, 1.325326919555664, 0.20859861373901367, -0.6897033452987671, 1.2198548316955566, -1.1149640083312988, 0.5616753101348877, 0.921903133392334, -0.07971662282943726, 0.7940931916236877, -2.271212577819824, 0.36768922209739685, 0.9814310073852539, -0.3285983204841614, 0.7675155401229858, 0.3015247881412506, 0.1447983682155609, -0.958460807800293, -0.02114320546388626, 0.04976000636816025, -0.013540752232074738, 0.4641423225402832, 0.32333505153656006, 0.6335589289665222, 0.5360530614852905, -0.6103640198707581, 0.5226314067840576, -0.6363526582717896, -0.12092837691307068, 0.03011620044708252, -0.5986518859863281, 0.9656561017036438, 0.11643632501363754, 0.26859933137893677, 1.4796932935714722, -0.008880987763404846, -0.9694284200668335, 0.13148953020572662, -1.0461616516113281, 0.512729287147522, -0.416970819234848, 0.36904144287109375, -0.656846284866333, -0.26320505142211914, 0.022957004606723785, 0.5944953560829163, -0.2935720682144165, -0.43654459714889526, -0.2782721519470215, -0.47318994998931885, -0.1014980673789978, 0.5622285604476929, 1.2081670761108398, 0.46480390429496765, 0.22917962074279785, 1.0457446575164795, 0.19054114818572998, -0.7919888496398926, -0.32046788930892944, 0.42961859703063965, 0.36871737241744995, -0.5588293671607971, -0.47949811816215515, -0.6700600981712341, 0.32053375244140625, 1.1184951066970825, -0.17006605863571167, 0.07247702777385712, 1.8645076751708984, 1.5693007707595825, -0.4560752809047699, -0.8435759544372559, 0.8273778557777405, 0.13979800045490265, 1.0487421751022339, 0.021115243434906006, -0.8780221939086914, -0.35578393936157227, -0.7923737168312073, -1.983349323272705, 0.4097125232219696, -0.4123579263687134, -0.015415385365486145, 0.13653099536895752, 0.9422512054443359, -0.22822576761245728, 0.21289992332458496, -0.6619192957878113, 0.493816077709198, -0.34975504875183105, -0.15148574113845825, -0.7520034313201904, 0.2185467630624771, 0.9899468421936035, 0.1396923065185547, -0.8779482841491699, 0.1270456165075302, -0.28096118569374084, -0.24979713559150696, 0.030129343271255493, -0.13395220041275024, 0.3049805164337158, 0.24986477196216583, -0.336764931678772, 0.1564972996711731, 0.5885231494903564, -0.8308848142623901, -0.24860918521881104, -0.1926327794790268, 0.8194578289985657, -0.015615671873092651, -0.9866636991500854, 0.4113231897354126, -0.586034893989563, -0.28283169865608215, -0.15489435195922852, -0.714061439037323, 0.8329233527183533, 0.6644579172134399, -0.671812891960144, 0.6524410843849182, -0.4540640115737915, -0.6966471672058105, -0.5558773875236511, -0.3183274567127228, 0.7038323879241943, -1.3410977125167847, -0.8915312886238098, -0.26397156715393066, -0.27425625920295715, 0.3033803701400757, 0.1376705914735794, -0.20255976915359497, -1.102174997329712, -1.2350541353225708, -1.2117221355438232, -0.009370088577270508, 1.3897595405578613, 0.19579675793647766, 0.2795073091983795, -0.4530907869338989, -2.8707427978515625, 0.3552902340888977, -0.22267603874206543, -1.689237117767334, 0.30997776985168457, -0.7010632157325745, 0.6212165355682373, -0.29056718945503235, -0.3512895107269287, -0.12004715204238892, 0.7413438558578491, -0.9663262367248535, -0.4077264666557312, 0.07210828363895416, -0.7782918810844421, 0.7421382069587708, 0.49736177921295166, -0.47588562965393066, 0.8456116914749146, -0.06935085356235504, 0.18860113620758057, -1.1129283905029297, 0.67316073179245, -1.2299426794052124, 0.03558175265789032, -0.09484865516424179, 0.3055691719055176, 0.5851374864578247, 0.8897121548652649, 0.7165384292602539, 0.4534885287284851, 0.6054547429084778, 0.4548247158527374, -1.171157956123352, -0.8138558864593506, -0.22037893533706665, 0.264252245426178, -0.9626690149307251, -0.5547938346862793, -0.21278420090675354, -0.6743545532226562, -1.1882529258728027, -0.06901252269744873, 0.5069247484207153, -0.87907475233078, 0.1486152708530426, -0.614250659942627, 1.0069830417633057, -0.23431533575057983, 0.8520827889442444, -0.278873473405838, -0.8912726044654846, 0.276144415140152, 0.2216949164867401, 0.3573817312717438, -0.3755202889442444, -0.3082766532897949, 0.1861065924167633, 0.27095359563827515, -0.29753798246383667, 0.28872424364089966, 0.6388707160949707, -0.638400137424469, 0.5632614493370056, 2.0056800842285156, 1.023103952407837, -0.0069170743227005005, 0.0476684495806694, -0.38742002844810486, 0.12471228837966919, 0.3688984811306, 0.02550628036260605, -0.019137054681777954, -0.2811637818813324, 1.3832392692565918, 0.12481603026390076, 0.10839737951755524, -0.7077410817146301, 0.5848367214202881, -0.4096977114677429, -0.14530235528945923, 0.27230018377304077, -0.7991434931755066, -1.1621861457824707, 0.6953821182250977, 1.1413469314575195, -0.3987974226474762, 0.739360511302948, 1.0963910818099976, -0.2672421634197235, 0.6669343709945679, 0.37456271052360535, 0.7831717729568481, -0.1328555941581726, 0.23173993825912476, 0.6821675300598145, -0.2508079707622528, -0.07713395357131958, -0.6124720573425293, -1.710404872894287, 0.5283549427986145, -1.1935213804244995, -0.9705374240875244, 1.0238020420074463, -0.5778101682662964, -1.2517551183700562, 0.2555805742740631, -0.21171605587005615, 0.04636663198471069, 0.05577808618545532, -0.48850977420806885, -0.28527987003326416, -0.5636694431304932, 0.7669568061828613, 0.10643534362316132, 2.0153369903564453, -0.4376581311225891, -0.3548768162727356, -0.5389742851257324, -0.3158300518989563, 0.13786014914512634, 0.03459632396697998, 0.03764235973358154, -0.8843235969543457, 0.2143985629081726, -0.45957863330841064, -0.8868709802627563, -0.026266857981681824, -0.3361183702945709, 0.25917962193489075, -0.11656153202056885, -0.7144469022750854, 0.2773306369781494, 0.47588732838630676, 0.18905580043792725, 0.3511875867843628, -0.3856797516345978, -0.8213606476783752, 0.2525666356086731, -0.22482246160507202, 0.5082770586013794, 0.19227924942970276, 0.8229951858520508, 0.47202068567276, -0.14676925539970398, -0.08112752437591553, -0.7919827699661255, 0.12112888693809509, -0.2894308865070343, -0.37715238332748413, -0.9267236590385437, -0.09326881170272827, 0.5572649240493774, -0.7752947807312012, 0.48082464933395386, 0.09090632200241089, 0.5415843725204468, 0.3657120168209076, -0.5146626234054565, -0.674979567527771, -0.8438724875450134, -0.5852110981941223, 0.6516354084014893, -0.5231893062591553, 0.20709770917892456, -0.7299900054931641, -0.5941237807273865, 0.5794469714164734, 1.1718615293502808, -0.15431320667266846, 0.45507657527923584, 0.7407413125038147, 1.7208278179168701, 0.2844181954860687, -0.4293793737888336, -0.5575317740440369, 0.5610668659210205, -0.5557835698127747, 0.2964949607849121, -0.5781614780426025, -0.004983842372894287, -0.21800822019577026], [1.0654515027999878, -0.05316123366355896, -1.692701816558838, -0.5222979187965393, 0.6590361595153809, -0.18545138835906982, 1.0233089923858643, -0.44930627942085266, -0.7856237888336182, -0.3602331280708313, -1.1351014375686646, 0.3092917203903198, 0.4835274815559387, 0.06581288576126099, 0.34079620242118835, 0.0023156865499913692, 0.7065603137016296, -0.050034184008836746, -0.4305172264575958, 0.5304619073867798, -0.13483063876628876, -1.547978401184082, -0.6355488896369934, -0.2414339780807495, -0.6018128395080566, 0.9480124711990356, -0.43370237946510315, 0.13605551421642303, -1.1319212913513184, 0.21078887581825256, 1.4079641103744507, -0.5766342878341675, 0.5557293891906738, 0.14685691893100739, -1.8629390001296997, -0.022368714213371277, 1.3251503705978394, 0.9483010172843933, 0.19110193848609924, 0.2590015232563019, 1.20639967918396, 1.2630997896194458, 0.5653180480003357, -1.1212109327316284, 0.3938387334346771, -0.5063348412513733, 0.5178555846214294, 0.09134172648191452, 0.27413409948349, 0.10771777480840683, 0.37185609340667725, -0.8220908641815186, -0.5691210627555847, 0.9786545038223267, 0.3942664861679077, -0.4779355525970459, 0.3590373694896698, -0.29904431104660034, -0.2598302662372589, -0.7977677583694458, 1.265583872795105, -0.4327944815158844, -0.22865360975265503, 0.34950143098831177, 0.623436689376831, -0.5948234796524048, 0.1795528382062912, -0.08437157422304153, -0.1799592524766922, -0.5148853063583374, 0.8819769024848938, 0.025328373536467552, -1.1473716497421265, 0.528837263584137, -0.7093262076377869, 0.8359261751174927, 1.313879370689392, 0.6360041499137878, 0.47126248478889465, 0.1709415763616562, -1.5558346509933472, 0.08779003471136093, 0.6781704425811768, 0.18978193402290344, -0.3149650990962982, 0.6197013258934021, 1.0798112154006958, -0.2086075395345688, -0.24142901599407196, 1.3345531225204468, -0.25905242562294006, 0.29342949390411377, 1.0345102548599243, -0.40711042284965515, -0.3595532476902008, -0.3242450952529907, -0.6473246216773987, -0.7288461923599243, -0.562088668346405, -0.35671675205230713, -0.9282984733581543, -0.9303802847862244, 0.3402954041957855, 0.8645801544189453, 0.8621317148208618, 1.0971978902816772, 0.7341597676277161, -1.38221275806427, 0.2028547078371048, -0.22474656999111176, 0.2741249203681946, 0.38652998208999634, -0.37550488114356995, -1.2143338918685913, -0.19550922513008118, 0.6332298517227173, 2.0543618202209473, -0.7157896757125854, 0.605461061000824, 0.9460884928703308, -0.7671979665756226, -0.10090192407369614, -0.8688743114471436, 0.44749125838279724, 1.0890415906906128, -0.06677452474832535, -0.2684193253517151, -0.33679723739624023, -0.0859856829047203, 0.731060802936554, 1.0447936058044434, 0.4062569737434387, -0.47007033228874207, 1.503176212310791, -0.14826785027980804, 1.0971848964691162, -0.09006141126155853, -1.2850725650787354, 0.21892622113227844, -0.09108980000019073, 0.06881067156791687, -0.8451661467552185, 0.039976511150598526, -0.3599553406238556, -0.4921484589576721, 0.21256770193576813, 0.14903971552848816, -0.2479245364665985, -0.72829270362854, -0.5052763819694519, -0.6810690760612488, -0.4752119481563568, -0.30512961745262146, 0.4715002775192261, 0.8337076306343079, -0.04847339168190956, -0.8067244291305542, 0.1954573690891266, -0.2964157164096832, -0.24758704006671906, -0.37520506978034973, 0.2754325866699219, -0.5988922715187073, 0.7029450535774231, 0.2299727201461792, -0.9509835839271545, 0.39683857560157776, 0.7885806560516357, -0.08704198151826859, 0.05859393998980522, -0.5289239883422852, -0.03554340824484825, -0.4634130001068115, -0.7030600309371948, 0.6713805198669434, 0.16912300884723663, 1.2334274053573608, 0.7593734264373779, -1.7421027421951294, -0.811937153339386, 1.0451923608779907, -0.15533365309238434, 0.30284473299980164, -0.4136468172073364, 1.2553982734680176, -0.002300238236784935, 0.5229706168174744, 0.6701695919036865, -0.773641049861908, -0.38239380717277527, -0.5060519576072693, -0.3623967170715332, -0.3959369659423828, 0.5825616121292114, -0.6424441337585449, -0.7816122174263, 0.4414246380329132, -1.0332025289535522, -0.3323795199394226, -0.3905477523803711, 0.3923931121826172, -0.38362881541252136, -1.1608211994171143, -0.18091051280498505, -0.7481337785720825, 0.7664549350738525, -0.7271955013275146, -0.13383139669895172, -1.1146924495697021, -0.0499410405755043, 1.0286142826080322, 0.0756555125117302, -1.1593658924102783, 0.22109977900981903, -0.5732857584953308, -1.2332454919815063, 0.4562366306781769, 0.4717459976673126, -0.02001018635928631, 0.5711630582809448, -0.9120254516601562, -0.27119481563568115, 0.5466480851173401, -0.6869101524353027, 0.3447107672691345, 0.06696344166994095, -0.7256426811218262, -1.0803173780441284, 0.20735974609851837, -0.5681390762329102, -0.5987593531608582, -1.6772198677062988, 1.0278568267822266, 0.31587889790534973, -1.1540926694869995, 0.33472931385040283, -0.03240128234028816, 0.8747150301933289, -0.6429719924926758, 0.4870522916316986, 0.6947534680366516, 0.34938451647758484, -0.0031037344597280025, -0.46652016043663025, -0.7935895919799805, 0.6747141480445862, 1.9724652767181396, -0.5705071091651917, 0.026448749005794525, 1.167054295539856, 1.3207098245620728, -0.13474206626415253, -0.21365462243556976, 0.12759657204151154, 0.44810745120048523, -1.0829111337661743, -0.3559753894805908, -0.0018999408930540085, -1.0203596353530884, 1.3180464506149292, 0.16079223155975342, -0.7063411474227905, -0.3166660964488983, 0.22323188185691833, -0.6706525087356567, -0.5987537503242493, -0.5367007851600647, -0.14023509621620178, 0.5310110449790955, -0.16045667231082916, -0.3092799186706543, 0.36139386892318726, -0.030035337433218956, 0.5782581567764282, -0.5214436054229736, 0.11760196089744568, 0.18339094519615173, 0.47279250621795654, 0.4500828683376312, 0.8475607633590698, -0.1528659462928772, -0.8208222985267639, 0.4436384439468384, 0.5077879428863525, 0.4944169223308563, 0.058387868106365204, -0.17433440685272217, 0.6557905077934265, 0.9411153197288513, 1.0106065273284912, -0.21083605289459229, 0.7328357100486755, 0.9759865403175354, 0.11968895047903061, 0.6048822999000549, -0.07161980122327805, 0.21619802713394165, -0.00992096122354269, -0.7286497354507446, -0.13697253167629242, 0.3652518689632416, 0.9492322206497192, -0.029762830585241318, 0.6716195344924927, 0.09715194255113602, 0.03541253134608269, -0.5110481381416321, -0.107762910425663, 0.2311238944530487, -0.6303896307945251, -0.0629638060927391, -0.8140907883644104, -0.7308356761932373, -0.28996798396110535, 0.02891230210661888, 0.8212037682533264, 0.29850777983665466, 0.39641377329826355, 0.07867972552776337, 0.48944613337516785, -0.3526837229728699, 0.017349466681480408, 0.6672043800354004, -0.7797538042068481, 0.24264013767242432, 0.7137075662612915, -1.2799526453018188, 0.11867986619472504, -0.16002336144447327, -0.22363901138305664, 0.30192437767982483, -0.3563225269317627, 1.0284284353256226, -0.6442872881889343, -0.531441867351532, -0.093538299202919, 0.4995358884334564, 0.12436744570732117, -0.3146020770072937, -0.7664536833763123, 0.5560128688812256, 0.8807544112205505, 0.15141965448856354, 0.36706358194351196, 0.9855841398239136, -0.2431384027004242, -0.9871504306793213, -0.02264859899878502, 1.177901268005371, -0.2727532982826233, -0.34111109375953674, -0.694588303565979, 0.11650655418634415, -0.6462162733078003, -1.2310166358947754, 0.25771021842956543, -0.39453595876693726, 0.4318307638168335, 0.21253058314323425, -0.28054818511009216, 0.42170989513397217, -0.3131199777126312, 0.2703718841075897, -1.3663469552993774, 0.5021513104438782, 0.8655262589454651, 0.9211817383766174, 0.6684101819992065, 0.32488515973091125, 0.16279107332229614, -0.6715410351753235, -0.4922448694705963, 0.10697823017835617, 0.9353858232498169, -0.4827144742012024, -0.46516162157058716, -0.4405205249786377, -0.7419450879096985, -0.531631588935852, 0.7090242505073547, -0.133122980594635, -0.17027276754379272, -0.7462780475616455, -0.005905495025217533, 1.1024227142333984, 0.5192102193832397, -0.5220136642456055, -0.1571764051914215, -0.45798513293266296, 0.8579549193382263, -0.6064420342445374, -0.41710638999938965, -0.27793899178504944, -0.1387200951576233, 0.7991303205490112, -1.0967286825180054, 0.27692753076553345, 0.3978073000907898, 0.538332462310791, 0.2621210515499115, -1.4061973094940186, 0.13296476006507874, -0.8339833617210388, 0.8049896359443665, 0.3132210075855255, 0.9420464038848877, 0.379755437374115, 0.380668044090271, 0.7575028538703918, 0.07682020962238312, -0.18229247629642487, 1.6752694845199585, -0.49444764852523804, 0.10031650960445404, 0.35058802366256714, -0.3473023474216461, 0.08670639246702194, -0.29780253767967224, 0.14232592284679413, 0.37920525670051575, -0.20844051241874695, 0.44281190633773804, 0.2486574500799179, -0.4397369921207428, 1.3957511186599731, 0.43593600392341614, -0.24308674037456512, 0.04904470965266228, 0.0676484927535057, -0.5531952977180481, -0.19436872005462646, -0.1772133708000183, -0.14551544189453125, -0.03549334406852722, 0.09930688887834549, 0.32588115334510803, 0.5023873448371887, 0.22433598339557648, -0.6524298787117004, 0.24805918335914612, 0.5449288487434387, 0.2871241271495819, 0.7126867771148682, 0.3719552755355835, 0.8516865372657776, 0.043357137590646744, 1.046882152557373, 0.4022984206676483, -0.6691482663154602, 0.5669651031494141, -0.2647044360637665, 0.8308563828468323, 0.4564128518104553, 0.22345057129859924, 1.3619836568832397, -1.889250636100769, 0.21666747331619263, 1.2652236223220825, 0.7421978116035461, 0.6409494876861572, 0.9319323301315308, -0.3248900771141052, -0.43784835934638977, 0.4269873797893524, 1.1017361879348755, 0.25145813822746277, 0.7499994039535522, -0.13712415099143982, 0.04061390459537506, 1.0808894634246826, -1.3397448062896729, 0.5010531544685364, -1.0787385702133179, -0.46189555525779724, -0.3871665894985199, -0.8453351259231567, -0.005006399005651474, 0.526692271232605, 0.8156701326370239, 1.5478651523590088, -0.06252583116292953, -1.4113956689834595, 0.10131771117448807, -0.7113556265830994, 0.6710867285728455, -0.8880655169487, 0.14781439304351807, -1.1851649284362793, -0.20543497800827026, 0.6334134936332703, 0.22652678191661835, -0.13654446601867676, -0.19531592726707458, 0.03846059739589691, -0.593850314617157, 0.5129338502883911, 0.7447702884674072, 0.16814269125461578, -0.6096215844154358, 0.2957642674446106, 0.2214413285255432, 0.4663774371147156, -0.3723253011703491, 0.45110002160072327, -0.3989771008491516, -0.1839178055524826, -0.4014524221420288, -0.6835636496543884, -1.2121168375015259, 0.25028327107429504, 1.4061444997787476, -0.16874322295188904, -0.3973070979118347, 1.5887621641159058, 1.7850008010864258, -0.5238981246948242, -0.5661455392837524, 0.3618154227733612, 0.10669993609189987, 0.5688549280166626, 0.052023157477378845, -1.3746592998504639, -0.41483479738235474, -0.5956960916519165, -0.5255479216575623, 0.24128322303295135, 0.008599255234003067, -0.021835386753082275, -0.05744393169879913, 0.4165785312652588, 0.2827860116958618, 0.4044369161128998, -0.6728261709213257, 0.7026134729385376, -0.2477775365114212, 0.48282691836357117, -0.5835551619529724, 0.5343221426010132, 0.8141524791717529, -0.031615082174539566, -0.9242697954177856, 0.2423650622367859, -0.17359785735607147, 0.4576250910758972, -0.31128886342048645, 0.21627666056156158, -0.16058479249477386, -0.47683069109916687, -0.10555952042341232, -1.0020705461502075, 0.6209746599197388, -0.35536083579063416, -0.5197945237159729, -0.09007055312395096, 1.3769707679748535, 0.32557347416877747, -0.22278587520122528, 0.36029690504074097, -1.2493098974227905, -0.2839360535144806, -0.9411633014678955, -0.6109441518783569, 1.0113327503204346, 0.7158575654029846, 0.4830801486968994, 0.5154300928115845, -0.37988319993019104, 0.01223358791321516, -0.645068883895874, -0.022961951792240143, 1.7807518243789673, 0.08483675867319107, -0.4066767990589142, 0.2431277185678482, -1.234744668006897, 0.36755305528640747, -0.17511716485023499, 0.5297195315361023, -0.49730101227760315, -1.1566053628921509, -0.6847065091133118, -0.14296846091747284, 1.240992546081543, -1.1108046770095825, -0.10142248123884201, 0.29627907276153564, -1.321481704711914, 0.0048608798533678055, 0.5950024724006653, -0.996703028678894, -0.12054502964019775, -0.882257878780365, 0.27686846256256104, 0.7827128171920776, 0.27363914251327515, 0.2262340486049652, -0.2809942364692688, -1.0656675100326538, -0.49644240736961365, -0.4489542245864868, -0.038250312209129333, 1.8325963020324707, 0.3690199851989746, -1.2976351976394653, 1.5881792306900024, -0.2447478026151657, -0.17382071912288666, -1.3632639646530151, -0.5717948079109192, -0.5516176223754883, 0.31624889373779297, 0.7133598327636719, 0.8858687877655029, 0.19137102365493774, 1.4591495990753174, 1.5234514474868774, -0.5009196400642395, 0.6432486772537231, -0.2742673456668854, -0.8949000835418701, 0.023232201114296913, -0.04459394887089729, 0.927830696105957, -1.198153018951416, -1.0971832275390625, 0.3286896347999573, -0.09277881681919098, -0.32894933223724365, -0.12233185768127441, -0.24317283928394318, -0.4632248282432556, -0.15522798895835876, -0.6020042896270752, 0.09116068482398987, -0.1557927429676056, 0.8274276852607727, 0.34437957406044006, -0.8082071542739868, 0.5173537135124207, -0.1592269092798233, 0.48473984003067017, -1.0107038021087646, -0.580971896648407, -0.5407009720802307, -0.07288723438978195, -0.31736648082733154, 0.13765493035316467, 0.21151374280452728, -0.3251968026161194, 0.1630619913339615, 1.5869847536087036, 1.4414894580841064, 0.38838425278663635, 0.08746788650751114, -0.43993425369262695, 0.1858132779598236, -0.24331168830394745, -0.5585322380065918, -0.09615685045719147, -0.5807070732116699, 1.1922109127044678, -0.41508713364601135, 0.04665416479110718, 0.14170604944229126, 0.22653062641620636, 0.12263928353786469, 0.0402284599840641, 0.5788185596466064, -0.4072030186653137, -1.6775751113891602, 0.3654666543006897, 0.33483707904815674, -0.38929715752601624, -0.6103174686431885, 1.0037117004394531, 0.0036475989036262035, -0.15001238882541656, -0.22694839537143707, 0.27968737483024597, -0.9062409400939941, -0.3098476827144623, 0.16451343894004822, -0.012705439701676369, 0.2857862412929535, -0.32474520802497864, -1.0728892087936401, 0.19186939299106598, -1.3854453563690186, -1.2881524562835693, 0.2143845558166504, -0.800693154335022, -0.6452925801277161, 0.33639124035835266, 0.19332139194011688, 0.862419068813324, -0.2525520920753479, -0.03591906279325485, 0.1825263798236847, -0.30394643545150757, 0.7366216778755188, 0.4543362259864807, 0.32288801670074463, -0.25289204716682434, -0.23613578081130981, -0.23133599758148193, 0.5273658037185669, 0.2934526801109314, -0.17044205963611603, -0.03383047506213188, -0.5110525488853455, -0.3935169279575348, -0.6484261155128479, -1.1536935567855835, 0.08869654685258865, -0.8325660824775696, -0.05694384127855301, -0.048684682697057724, -0.7496356964111328, -0.1086086854338646, 0.625525176525116, -0.5549919009208679, -0.20993344485759735, -0.5176884531974792, -0.5586513876914978, 0.5574727058410645, -0.15748164057731628, 0.40858617424964905, 0.47762662172317505, 0.21310491859912872, -0.06250827759504318, -0.6748377084732056, -0.11002795398235321, -1.1011537313461304, 0.4952322840690613, -0.4447633624076843, 0.7363767623901367, -0.6237555146217346, 0.5342935919761658, 0.3282693028450012, -1.338149070739746, 0.21858632564544678, 0.20853975415229797, -0.021051768213510513, 0.14249759912490845, -0.5895405411720276, -0.7118119597434998, -0.043695155531167984, 0.15813055634498596, 0.14313988387584686, 0.4753352105617523, 0.10596247762441635, -0.2911912798881531, -1.6171900033950806, 0.665256142616272, 0.2332143485546112, -0.5662028789520264, 0.2784952223300934, 0.7925149202346802, 1.2175443172454834, 0.09609628468751907, 0.1719529926776886, -0.19489476084709167, 0.46840527653694153, -0.8924777507781982, 0.15623220801353455, -1.0910735130310059, 0.2693174183368683, 0.20316439867019653], [0.9489157199859619, 0.7440871000289917, -2.572554349899292, -0.4039287269115448, 0.6372706294059753, 0.23932653665542603, -0.17454595863819122, 0.6796554327011108, 0.04566089063882828, -0.5295185446739197, -1.2813688516616821, 0.5525307059288025, 0.005097071640193462, 0.4810951054096222, 0.3981480896472931, 0.4513959586620331, 1.24402916431427, 0.5765973329544067, -0.24967478215694427, 0.8478155136108398, -0.751657247543335, -1.5184736251831055, -0.7210981249809265, 0.49995455145835876, 0.5460963249206543, 0.2600829601287842, -1.2846755981445312, 0.3947305679321289, -1.082507848739624, -0.5471671223640442, 2.102869749069214, -0.10575789958238602, 1.096958041191101, -0.7218182682991028, -1.2453655004501343, -0.16578362882137299, 0.3213542103767395, 0.7436371445655823, -0.41208112239837646, -0.14996160566806793, 2.0601439476013184, 1.260368824005127, -0.758658230304718, -1.6909698247909546, 0.28916141390800476, -1.085920810699463, 1.4147017002105713, -0.6144725680351257, 0.04198146238923073, -0.7891592383384705, -0.04680395498871803, -0.24045754969120026, 0.17743562161922455, 1.5449011325836182, 0.3932270407676697, -1.2063584327697754, 0.7844825983047485, 1.0436831712722778, -0.40592628717422485, 0.10884304344654083, 1.1056612730026245, -0.15956033766269684, 0.5383965969085693, 0.07227719575166702, 0.531672477722168, -0.17403031885623932, 0.03383871167898178, 0.04893169179558754, 0.2795805335044861, -0.14072051644325256, 0.21676652133464813, 0.06297902017831802, -0.3955479860305786, 0.30143818259239197, -0.8148854374885559, 0.8164648413658142, 0.6341250538825989, 0.495669424533844, 0.132628932595253, -0.1548856794834137, -0.8167127966880798, 0.18170799314975739, 0.949798047542572, 0.029223162680864334, -0.6317647099494934, 0.11313193291425705, 0.4863966405391693, -0.15041601657867432, -0.4285954535007477, 1.3287962675094604, 0.2732677161693573, 0.6299641728401184, 0.8078203797340393, -0.06499793380498886, -0.04890147224068642, -0.37643882632255554, -0.18421080708503723, -1.4160330295562744, -0.27245453000068665, -0.6387515664100647, -1.044389009475708, -0.963634192943573, 1.088606834411621, 0.8142589926719666, -0.3004520535469055, 1.6662007570266724, 0.034111205488443375, -0.40895697474479675, 0.1496274769306183, -0.417845755815506, -0.8588199615478516, 0.15516430139541626, -0.31415942311286926, -1.035361886024475, -0.1758764237165451, 0.21146440505981445, 1.3207664489746094, 0.09938418120145798, 0.6551346778869629, 0.5007304549217224, -0.49456077814102173, 0.029661647975444794, -1.2139897346496582, 0.1413501501083374, 1.4634431600570679, -0.3182970881462097, -1.0758578777313232, 0.6397040486335754, 0.9471718072891235, 0.19233785569667816, 0.24468259513378143, 0.3854719400405884, 0.4010064899921417, 1.6223737001419067, 0.04389262571930885, -0.08186085522174835, -0.3550676107406616, -1.7119001150131226, 0.06549622863531113, 0.01955035701394081, 0.38259127736091614, -0.27447986602783203, 0.08388163894414902, -0.8402142524719238, 0.3015426993370056, 0.11825977265834808, 0.6116611361503601, -0.014426950365304947, -0.9489712715148926, 0.386515736579895, -1.2236077785491943, -0.13631248474121094, -0.04562218487262726, 0.8007131218910217, 0.5822154879570007, -0.13823112845420837, 0.16022849082946777, -0.0529671236872673, -0.089784175157547, 0.7396839261054993, 0.2844461500644684, 0.08866273611783981, -0.7932934165000916, 0.48404935002326965, 0.5721569061279297, -0.5753000974655151, 0.7475913166999817, 0.2965204119682312, -0.8898375630378723, 0.8992537260055542, 0.03781009465456009, -1.3674818277359009, -0.4073498845100403, 0.3261857032775879, 0.6307119131088257, -0.43621188402175903, 0.19104433059692383, -0.1480357050895691, -1.3810676336288452, -0.9791134595870972, 1.1706880331039429, -0.4023398756980896, 0.4924742877483368, -0.47065532207489014, 0.31171715259552, 0.027616439387202263, -0.32825350761413574, 0.1374177783727646, -0.5205693244934082, -0.953689694404602, -1.0480905771255493, 0.024950752034783363, -1.060516119003296, 0.17295414209365845, -0.5151202082633972, -0.4902876317501068, 0.5082333087921143, -1.0772558450698853, -0.6684173941612244, -0.32564955949783325, 0.7777338624000549, -0.20905570685863495, -0.4044271409511566, -0.12434810400009155, -0.7232562303543091, 0.19748063385486603, -0.17923815548419952, 0.4080684781074524, -0.5819261074066162, 0.28502461314201355, 0.3306054472923279, -0.680390477180481, -1.1699364185333252, -0.17363300919532776, -0.07477213442325592, -1.392242431640625, 0.8017492294311523, -0.05641473829746246, -0.03714269399642944, -0.16956545412540436, 0.30733487010002136, 0.050166577100753784, 1.1270955801010132, -0.6331163048744202, 0.0535719059407711, 0.16099616885185242, -0.5104451179504395, -0.8492767810821533, -0.25435906648635864, -1.1161969900131226, -0.8087096810340881, -0.353763610124588, 0.6735406517982483, 0.4168267846107483, -2.078545093536377, 0.4830678403377533, -0.7829563617706299, 0.5293568968772888, -0.10097062587738037, 0.8253574371337891, 0.5136529803276062, 0.4265696406364441, -0.42140746116638184, -0.466457724571228, -0.6289936900138855, 0.3967437148094177, 0.6694988012313843, -0.532282829284668, 0.4725092649459839, 1.6782419681549072, 0.914046049118042, -1.0859566926956177, 0.7819401621818542, -0.5537161827087402, -0.16254252195358276, -1.2945661544799805, -0.04795989766716957, 0.5502265095710754, -0.8596470355987549, 1.3468958139419556, 0.7982251644134521, -1.1028697490692139, 0.2999389171600342, -0.3780987560749054, -0.9681941270828247, -0.4140930473804474, -0.04310104250907898, -1.0787222385406494, 0.18935967981815338, -0.034537263214588165, -0.4027480483055115, -0.03377929702401161, 0.10857456177473068, 0.38474902510643005, -0.4881875514984131, -0.6086155772209167, 0.04506923258304596, 0.4298088848590851, -0.4846963882446289, 0.6036319136619568, -0.17768599092960358, -0.7973557710647583, -0.3349546492099762, 0.010543029755353928, 0.7463395595550537, -0.37573176622390747, -0.014106913469731808, 1.107772946357727, -0.04496985673904419, 0.734370768070221, 0.4547162652015686, 0.551708996295929, 0.8296033143997192, -0.0038615702651441097, 0.7503449320793152, 0.579947292804718, 0.8321265578269958, -1.0255379676818848, -0.9246352314949036, 0.13377194106578827, 0.2005988359451294, 0.8320726752281189, 0.21591682732105255, 1.2637739181518555, -0.5484493970870972, 0.4267594516277313, -0.5379435420036316, -0.0170595683157444, -0.6934157609939575, -0.21519948542118073, -0.5448305606842041, -1.4981160163879395, -0.7274492979049683, -0.7195382118225098, -0.2793627679347992, 0.5626863837242126, 0.5134352445602417, 0.12058313935995102, -0.07891014963388443, 0.08203287422657013, -1.292364239692688, -0.6839028596878052, -0.6028690934181213, -0.8646397590637207, 0.9618616104125977, 0.9210137724876404, -1.2706071138381958, 0.2683940827846527, -0.09945932030677795, -0.4161059558391571, 1.1454015970230103, 0.26077404618263245, 1.802006483078003, -0.6781169772148132, -0.321834534406662, -0.17865167558193207, 0.42026135325431824, 0.3557683825492859, -0.8399435877799988, -0.22782623767852783, 0.8950446248054504, -0.2068934589624405, -0.19797568023204803, -0.8871893882751465, 0.1964787393808365, -0.6199299693107605, -0.739553689956665, -0.08310747891664505, 0.731185257434845, -0.00684779230505228, -1.4468456506729126, -1.4148627519607544, -0.49179157614707947, -0.5798094868659973, -0.3033018112182617, -0.013791155070066452, 0.4402352273464203, 0.27977052330970764, -0.441621869802475, -0.019307421520352364, 0.7726022005081177, -0.11809687316417694, 0.33408665657043457, -1.0479416847229004, 0.14555096626281738, 1.1819679737091064, 1.924567699432373, 0.479164719581604, 0.5336542725563049, 0.4837758541107178, -0.752791702747345, 0.07817548513412476, 0.06323894113302231, 0.23003435134887695, 0.2749711871147156, 0.2505570650100708, -0.16628023982048035, -0.2709282636642456, 0.051265567541122437, 0.22152693569660187, 0.20412108302116394, 0.3760668635368347, -0.48650291562080383, -0.7458503246307373, 0.49615076184272766, 0.9730392694473267, -0.5902050733566284, -0.025907959789037704, -0.9704580307006836, 0.5274077653884888, -0.6747746467590332, 0.30469825863838196, -0.37896737456321716, -0.5428811311721802, 1.0432313680648804, -0.9439184665679932, -0.22812005877494812, -0.3612246811389923, 0.38598883152008057, 0.6193822622299194, -1.4431390762329102, -0.32814690470695496, -0.777804434299469, 0.7142311334609985, 0.8071361184120178, 1.0595176219940186, 0.427400141954422, 0.376606285572052, 0.3490403890609741, 0.4760236442089081, 0.35061731934547424, 2.188823938369751, 0.22237445414066315, -0.27814748883247375, 0.2779131829738617, 0.46900859475135803, 0.05490986630320549, -0.4876849055290222, 0.651558518409729, 0.04269564896821976, -0.2962390184402466, 0.41028785705566406, 0.28791865706443787, -0.16491657495498657, 1.6924179792404175, 0.608210027217865, 0.07053440809249878, -0.3568195402622223, 0.4882003664970398, -0.2819926142692566, -0.3036823868751526, 0.4421609044075012, -0.4734654128551483, -0.10522125661373138, 0.06474882364273071, -0.22526225447654724, 0.7659170031547546, -0.10758499056100845, -0.3699089288711548, 0.5496735572814941, 0.5596752166748047, -0.3318250775337219, 0.5092176795005798, 0.2757013142108917, 1.3519253730773926, 0.5551180243492126, 0.9531159996986389, -0.7852402329444885, -0.3129001259803772, 1.117700219154358, -0.10658589005470276, 1.1060057878494263, 1.0599966049194336, 0.5366179943084717, 0.9544727802276611, -0.9302535057067871, -0.2502475380897522, 0.7032424211502075, 0.42097988724708557, 1.346376895904541, 0.15460239350795746, 0.34586820006370544, -0.5156879425048828, -0.4887523651123047, 0.03017006441950798, -0.22680234909057617, 0.43254655599594116, 0.08477333933115005, 0.47722098231315613, 1.1890708208084106, -1.3116189241409302, -0.25864386558532715, -0.7493957877159119, -0.17495158314704895, -0.9201875329017639, -1.0699251890182495, 0.5552598834037781, 0.5708003640174866, 0.8123469948768616, 0.8206857442855835, 0.24766972661018372, -0.5736672878265381, 0.4301544725894928, -1.41823410987854, 0.6620948314666748, 0.001343913609161973, 0.0025890888646245003, -0.7675254344940186, -0.3657228946685791, -0.12144066393375397, -0.6496540904045105, -0.34746208786964417, -0.39104029536247253, -0.7296422719955444, -0.2366686314344406, 0.22974610328674316, 0.794488251209259, 0.6647936105728149, 0.3300739526748657, 0.9622368216514587, 1.4139879941940308, 0.6748555898666382, -0.6023193597793579, 0.11106541007757187, -0.252238005399704, 0.21965014934539795, -0.46643462777137756, -0.18573921918869019, -1.0654261112213135, 0.13559918105602264, 0.36581599712371826, -1.0771701335906982, 0.3411857485771179, 1.3406457901000977, 1.3000662326812744, -0.3077342212200165, -1.0911980867385864, 0.9894099235534668, 0.02066637948155403, 0.7380203604698181, 0.46651414036750793, -0.5303075313568115, -0.11086861789226532, -0.39759159088134766, -1.9162049293518066, 1.2213962078094482, -0.7524135112762451, 0.17900888621807098, 0.6556541919708252, 1.0561585426330566, -0.2187669724225998, 0.8861989974975586, -0.26977837085723877, -0.08072154223918915, -0.15800142288208008, -0.05237436667084694, -0.8706967830657959, 0.4587551951408386, 0.8264576196670532, 0.16680079698562622, -0.6928014755249023, -0.37512749433517456, -0.8123827576637268, 1.5143113136291504, -0.8454084992408752, -0.13827760517597198, 0.8134505748748779, -0.7308304905891418, -0.44142788648605347, 0.31735485792160034, -0.21576239168643951, -0.6702114343643188, 0.17171569168567657, -0.12651784718036652, 1.4457967281341553, 0.6218411922454834, 0.05005565285682678, 1.3158726692199707, -0.5548030138015747, 0.4132041335105896, -0.08919763565063477, -0.46838629245758057, 1.0618377923965454, 0.5799614191055298, 0.40052348375320435, 0.6489914059638977, -0.29339897632598877, -0.5250451564788818, -0.524945080280304, -0.5788053274154663, 1.0946440696716309, -0.9598253965377808, -0.6948637962341309, -0.9698861837387085, -0.4427981972694397, 0.8813949823379517, 0.21367092430591583, 0.7873665690422058, -0.6314266324043274, -1.103076696395874, -1.021790623664856, 0.13566875457763672, 0.8530464172363281, 0.011353341862559319, 0.21199457347393036, 0.39692816138267517, -1.2920615673065186, 0.27483898401260376, 0.5339417457580566, -1.002760887145996, -0.0016384073533117771, -0.8442642688751221, 0.5724223256111145, 0.6436161398887634, -0.31388425827026367, 0.05044015496969223, 0.4399816691875458, -1.315121054649353, -0.47353896498680115, -0.15701402723789215, -0.6723420023918152, 0.07191869616508484, 0.9723365902900696, -1.3553804159164429, 0.7029191255569458, 0.1987934410572052, -0.03392903879284859, -0.5170676112174988, -0.1105697751045227, -1.3967642784118652, 0.34916073083877563, -0.11512687802314758, 0.46941980719566345, 0.20010097324848175, 1.2854851484298706, 1.0832430124282837, 0.5163906812667847, 0.4503551423549652, 0.5176281929016113, -0.38909006118774414, -0.28946420550346375, -0.11386313289403915, 0.5505459904670715, -0.30317190289497375, -1.0026665925979614, 0.11729377508163452, -0.5133219361305237, -0.8067635893821716, -0.0555877611041069, 1.1109435558319092, -0.23401671648025513, 0.5909938812255859, -0.32700955867767334, -1.3882564306259155, 0.17413388192653656, 0.4557071626186371, 0.14300207793712616, -0.47719308733940125, 0.014225313439965248, -0.47072121500968933, 0.25282108783721924, -0.3798513114452362, -0.262119323015213, 0.28190651535987854, 0.1387253999710083, 0.011363113299012184, 0.8470619916915894, -0.057229917496442795, 0.20576532185077667, -0.38882675766944885, 2.2217936515808105, 1.1309977769851685, -0.8566693663597107, 1.117572546005249, -0.2480388879776001, -0.710504949092865, -0.49097904562950134, -0.8096131086349487, -1.0576143264770508, 0.11867018789052963, 0.7729251980781555, 0.31097596883773804, 0.30210080742836, -0.36951473355293274, 0.19624081254005432, 0.16531500220298767, 0.7724676132202148, 0.6063863635063171, -0.796425998210907, -0.7140204906463623, 0.6428771615028381, 0.5052105784416199, -0.46741369366645813, -0.10926832258701324, 0.6773639917373657, 0.1417083889245987, 0.11211835592985153, 0.49857673048973083, 1.2110358476638794, -0.694033682346344, 0.7309693098068237, 0.6865601539611816, -0.3479471206665039, -0.6480861306190491, -0.07078469544649124, -1.7053804397583008, 0.15765410661697388, -0.8174028396606445, -1.2220635414123535, 0.5687757730484009, -1.2240221500396729, -1.1876964569091797, 0.0072962818667292595, -0.1131722554564476, -0.06337270140647888, -0.1702217161655426, -0.4209345579147339, 0.9292954206466675, -0.5349632501602173, 1.3616697788238525, 0.1820887178182602, 1.0994471311569214, -0.08557900041341782, -0.2905057966709137, -0.17485450208187103, -0.9182897210121155, -0.4089234173297882, -0.0730794370174408, 0.1804361194372177, 0.006157033611088991, 0.5646128058433533, -0.1956176608800888, -0.7315577268600464, 0.33451154828071594, 0.2723526954650879, 0.31221914291381836, -0.19401705265045166, -0.5870106220245361, 0.13754823803901672, -0.013825923204421997, -0.12455347925424576, -0.2606200575828552, -0.8647652268409729, -0.2825780212879181, -0.25194087624549866, -1.0301423072814941, 0.7601398825645447, -0.14637310802936554, 0.7526495456695557, -0.381409615278244, -0.8736507296562195, -0.23834723234176636, -0.9046099185943604, 0.47413554787635803, -0.07169058918952942, -0.48446154594421387, -1.1449620723724365, 0.24583664536476135, 0.3217315971851349, -1.2176207304000854, 0.1773366928100586, -0.025293894112110138, -0.008835437707602978, -0.15678755939006805, -0.47725415229797363, -0.5830484628677368, -0.7120856046676636, 0.38097044825553894, 0.332116961479187, 0.39336687326431274, 0.5181106328964233, -0.2613392174243927, -1.7305495738983154, 0.007613829802721739, 0.3838345408439636, 0.7530720829963684, 0.9460878968238831, 1.1012349128723145, 1.8181476593017578, -0.3596686124801636, -0.06644479185342789, 0.07094915211200714, 0.46462497115135193, -0.5579137802124023, -0.3374016284942627, -0.8044589757919312, 0.2310771644115448, -0.18465988337993622], [-0.0028198231011629105, 1.1157760620117188, -2.6761505603790283, -0.12161114066839218, 0.2925264835357666, 0.060342781245708466, 0.8118197321891785, -0.4708710014820099, -0.2420579344034195, -1.160138487815857, -0.9245257377624512, 0.7093574404716492, -0.12817047536373138, 1.0145745277404785, 0.418422132730484, 0.7613595128059387, 1.1403826475143433, 0.09222514182329178, -0.390145480632782, 1.2222235202789307, 0.4993436336517334, -1.435502529144287, -0.17564626038074493, -0.1343943327665329, 0.7508305311203003, 0.6010035276412964, -0.8858675956726074, 0.0746752992272377, -0.6183923482894897, -0.04700920730829239, 1.710179090499878, -0.2568410038948059, 0.7438058853149414, 0.016916023567318916, -1.538124680519104, -0.2821969985961914, 0.870788037776947, 0.4755147397518158, 0.5470173954963684, -0.6616230010986328, 1.9672958850860596, 0.2848615050315857, -0.2644194960594177, -1.7524076700210571, 0.2502174973487854, -0.5354312062263489, 0.050339389592409134, -0.6523058414459229, -0.07926762104034424, -1.1009650230407715, 0.07809635996818542, -0.24319221079349518, -0.21397943794727325, 1.3493093252182007, 0.4660249352455139, -1.2998615503311157, 1.1731114387512207, 0.9341313242912292, -0.24618273973464966, 0.22709931433200836, 1.0640746355056763, -0.23142145574092865, 0.9127905964851379, -0.025662440806627274, 0.5933570265769958, -0.443400114774704, 0.27411985397338867, 0.14577995240688324, 0.22729381918907166, 0.5030996203422546, 0.658237099647522, 0.5554311871528625, -0.25102055072784424, 0.41312798857688904, -0.6611096858978271, 0.5351828932762146, 0.5901113748550415, 0.6536387801170349, -0.2550532817840576, 0.5419158339500427, -1.143075942993164, 0.5141410827636719, 0.9485878348350525, -0.3373399078845978, -0.6495373845100403, 0.22629167139530182, 0.46865734457969666, 0.45239728689193726, -0.6329783797264099, 1.7208062410354614, 0.42720356583595276, 1.0633888244628906, 0.4627108573913574, -0.1479702889919281, 0.23796416819095612, -0.046248871833086014, -0.5254949331283569, -1.2702387571334839, -0.08793525397777557, -0.17130620777606964, -0.4432830512523651, -0.8493014574050903, 0.19827909767627716, 0.7657646536827087, 0.40111348032951355, 1.566344141960144, -0.03895245119929314, -0.33295726776123047, 0.635768473148346, -0.19692149758338928, -1.2827130556106567, 0.19874098896980286, -0.6482741236686707, -0.46037137508392334, 0.2380535900592804, 0.9112987518310547, 1.1478989124298096, -0.2236083447933197, 0.4758196473121643, 0.601006031036377, -0.5819004774093628, -0.3467082381248474, -1.293899416923523, 0.1631423383951187, 1.3726943731307983, 0.045909538865089417, -0.9211134910583496, 0.30415773391723633, 0.31539076566696167, 0.7753563523292542, 0.8702660799026489, -0.1301635205745697, 0.08707867562770844, 1.5626566410064697, -0.7747340798377991, 0.413394033908844, -0.6659937500953674, -0.9110851287841797, 0.458238810300827, 0.2764366567134857, 0.2572380006313324, -0.30346429347991943, -0.008654935285449028, -0.563980221748352, 0.24796099960803986, -0.4502470791339874, 0.3688981831073761, -0.37146586179733276, -0.9054535627365112, -0.24525265395641327, -1.1467634439468384, 0.29475459456443787, 0.22534188628196716, 1.1007453203201294, 0.8013691902160645, -0.524314820766449, -0.5374968647956848, -0.010950874537229538, 0.06568481773138046, 0.4697558879852295, 0.5828031897544861, 0.11485987901687622, -1.077450156211853, 0.07325297594070435, 0.9491686224937439, -1.0488379001617432, 0.39411425590515137, 0.22541919350624084, -0.6320345401763916, 0.9231850504875183, -0.27206745743751526, -1.2196458578109741, -0.3484675884246826, 0.21552474796772003, 0.5047268271446228, -0.17728972434997559, 0.6183469295501709, 0.29691433906555176, -1.1876834630966187, -0.9235363006591797, 1.0034414529800415, -0.458035409450531, 1.0160150527954102, -0.6195885539054871, 0.010250010527670383, -0.18703719973564148, -0.29322534799575806, -0.1577744483947754, -0.7302697896957397, -0.7300114631652832, -0.6720514893531799, -0.2584899663925171, -1.101183533668518, 0.69924396276474, -0.706271231174469, -0.5029340386390686, 0.5475342273712158, -0.5885146260261536, -0.4109753668308258, -0.09631739556789398, 0.6996030211448669, -0.45010483264923096, -0.6464154124259949, -0.22610071301460266, -0.5631945133209229, 0.541634202003479, 0.03478074446320534, 0.5162914395332336, -0.5462692975997925, 0.4579017460346222, 0.44231894612312317, -0.649334192276001, -1.8228428363800049, -0.008696507662534714, 0.16497796773910522, -1.5723682641983032, 0.6200472712516785, -0.0004880521446466446, -0.06306532770395279, 0.31261157989501953, -0.09187930822372437, 0.04131140559911728, 0.782508373260498, -0.5959559082984924, 0.06064692139625549, -0.5739291906356812, -0.02101990394294262, -1.2950000762939453, -0.24914973974227905, -0.12530528008937836, -1.1721218824386597, -0.4822002649307251, 0.5899652242660522, 0.6259782910346985, -1.2402865886688232, 0.7870767116546631, -0.4369746446609497, 0.18998199701309204, -0.0720055028796196, 1.015255331993103, 0.706523060798645, 0.34110739827156067, -0.8286339640617371, -0.47342514991760254, -0.6729630827903748, 0.03684019669890404, 0.8202531933784485, -0.33393654227256775, 0.15830527245998383, 1.0594464540481567, 1.277459740638733, -0.7369261384010315, 0.5688251256942749, -0.4479668438434601, -0.12638626992702484, -1.8420854806900024, -0.3850608170032501, 0.32251492142677307, -0.915396511554718, 0.9311253428459167, 0.7299076318740845, -2.0059235095977783, 0.39228904247283936, -0.10560978949069977, -0.028906600549817085, -0.4947807490825653, -0.5115354061126709, -0.4544996917247772, 0.3694639205932617, -0.3088075816631317, -0.408904492855072, -0.36585932970046997, -0.19695739448070526, 0.7872363924980164, -0.6560291051864624, -0.5838624238967896, -0.12034448981285095, 0.7884225845336914, 0.14784692227840424, 1.117051124572754, -0.05796169862151146, -1.345478892326355, -0.7041246294975281, 0.08321095257997513, 0.529660701751709, 0.19697551429271698, -0.03227046877145767, 0.8056545257568359, 0.2869899272918701, 0.47274482250213623, 0.45184144377708435, -0.4889199435710907, 0.6223495006561279, 0.628815770149231, 0.31170254945755005, 0.18250177800655365, 0.7859780788421631, -0.938330352306366, -0.6232382655143738, -0.4422529339790344, 0.826309084892273, 1.2633147239685059, 0.03181355074048042, 0.9409759044647217, -0.43287476897239685, -0.03172934800386429, -1.2186462879180908, -0.2452152967453003, -0.650403618812561, -0.1339634209871292, -0.43965762853622437, -1.297868013381958, -0.13706129789352417, -0.4377107322216034, -0.34480077028274536, 0.4158632755279541, 0.20218303799629211, 0.8623424172401428, 0.15006335079669952, 0.0361722931265831, -1.4473973512649536, -0.5917639136314392, 0.0014616474509239197, -0.6014490723609924, 0.6389827728271484, 1.8451262712478638, -1.1522901058197021, 0.2790762484073639, 0.16619248688220978, 0.14315445721149445, 0.4390221834182739, 0.1333126425743103, 1.0373014211654663, -0.8618685603141785, -0.14229705929756165, 0.44340479373931885, 0.6496434211730957, 0.2471732497215271, -0.6984741687774658, -0.561532735824585, 0.8939107656478882, 0.18568098545074463, -0.053817931562662125, -0.28943005204200745, 0.6741330027580261, -0.7632603645324707, -0.9266805052757263, -0.1817457675933838, 0.43954500555992126, 0.19960151612758636, -1.0277429819107056, -1.265846848487854, -0.79292231798172, -0.048702746629714966, -0.4376675486564636, 0.27950915694236755, 0.4873412847518921, 0.3759476840496063, -0.10220973938703537, -0.20588867366313934, 0.6738074421882629, 0.1067139059305191, 0.4503036439418793, -0.8200979828834534, 0.17916478216648102, 1.1860380172729492, 1.8373132944107056, 0.5353924036026001, 0.36343640089035034, 0.5088455677032471, -0.8362889885902405, 0.1021401658654213, 0.0762859657406807, 0.34834203124046326, 0.12846381962299347, -0.3110567033290863, -0.17123202979564667, -0.7173298001289368, 0.08934736996889114, 0.21027086675167084, -0.04310140758752823, 0.41818782687187195, -0.5920736193656921, -0.8199197053909302, 0.5127832889556885, 0.8509542346000671, -0.2269086092710495, 0.23345819115638733, -0.6827638745307922, 0.7931607961654663, -0.7388885021209717, 0.24690905213356018, -0.526452898979187, -0.3004627525806427, 0.67826247215271, -1.162887454032898, -0.3607190251350403, -0.21430206298828125, 0.470994770526886, 0.9541324973106384, -1.388878345489502, -0.29374420642852783, -0.6122921109199524, 0.648681640625, 1.0683081150054932, 0.6999523639678955, 0.47633033990859985, 0.4716246426105499, -0.5760011672973633, 0.3465891480445862, 0.6919347047805786, 1.667285680770874, -0.1787552535533905, -0.04806780070066452, 0.3573518693447113, -0.8329241275787354, -0.27790001034736633, -0.7066339254379272, 0.15276402235031128, 0.23236623406410217, -0.07978778332471848, 0.31970804929733276, 0.0675094798207283, -0.17835408449172974, 2.2376174926757812, 0.30049407482147217, 0.4388484060764313, 0.17439678311347961, 0.3712727129459381, -0.6561214923858643, -0.46220073103904724, 0.4113943874835968, -0.444498747587204, -0.3799828886985779, 0.11938337981700897, 0.03025214374065399, 0.4271557033061981, 0.29046630859375, -0.005061892792582512, 0.6177522540092468, 0.7318719029426575, 0.056950222700834274, -0.19368702173233032, 0.859557032585144, 1.256103754043579, 0.2939263582229614, 1.386722445487976, -0.9619196057319641, -0.620182454586029, 1.2754573822021484, -0.3608682155609131, 0.893416702747345, 0.5324523448944092, 0.5365183353424072, 1.2257977724075317, -1.2856359481811523, -0.1043260395526886, 0.7757651209831238, 0.020057927817106247, 1.077824354171753, -0.1759367734193802, 0.19966846704483032, -0.3002748489379883, -0.39894577860832214, -0.20554940402507782, -9.427405893802643e-05, 0.46471503376960754, -0.08061165362596512, 0.22854536771774292, 0.9607108235359192, -0.8562830090522766, -0.33067235350608826, -0.3707670569419861, -0.625816285610199, -1.182539939880371, -0.47465425729751587, 0.5623898506164551, 0.4340505003929138, 1.2304645776748657, 1.310883641242981, 0.5866408348083496, -1.028008222579956, 0.1678091585636139, -0.897739589214325, 0.49246543645858765, -0.24797073006629944, 0.06301112473011017, -0.5787336826324463, -0.5266452431678772, 0.4607309103012085, -0.28544747829437256, -0.5343177318572998, -0.05716030299663544, -0.3662998080253601, -1.0232843160629272, 0.7196400761604309, 0.597989559173584, 0.8838070034980774, 0.5020440220832825, 0.499743789434433, 0.5399678945541382, 0.23989371955394745, -0.4378305673599243, 0.12107902020215988, 0.01291186735033989, 0.5087525844573975, -0.17489409446716309, -0.43630561232566833, -1.0120984315872192, 0.19508887827396393, 0.6876407265663147, -0.23949329555034637, 0.5630353093147278, 1.2969380617141724, 1.673221230506897, -0.11194619536399841, -0.695122241973877, 0.7635161280632019, -0.49916529655456543, 1.1228200197219849, 0.5394834876060486, -0.38936835527420044, 0.40760698914527893, -0.11160560697317123, -1.7343989610671997, 1.4849907159805298, -0.6531360745429993, 0.0855613499879837, 0.7652040123939514, 1.0779019594192505, 0.4791003167629242, 1.0358569622039795, -0.6255294680595398, -0.004006918519735336, -0.36610308289527893, -0.7891416549682617, -0.32717815041542053, 0.9827044606208801, 0.39684224128723145, -0.4556652903556824, -0.7127521634101868, -0.3000662624835968, -0.5802121758460999, 0.816472589969635, -1.0703712701797485, 0.5682137608528137, 0.5245531797409058, -0.4251790940761566, 0.002630474977195263, -0.514298141002655, 0.35963767766952515, -1.2959758043289185, 0.15135709941387177, -0.10165213793516159, 1.2180907726287842, 0.7867202162742615, 0.08677104115486145, 0.8752498626708984, -0.5462058782577515, -0.24960856139659882, -0.526009202003479, -0.7983767986297607, 1.0706521272659302, 0.5694261789321899, 0.5870237350463867, 0.2986200749874115, -0.5765105485916138, -0.4859859049320221, -0.8990329504013062, 0.012598699890077114, 1.7227187156677246, -1.1810388565063477, -0.6886604428291321, -0.44475212693214417, -0.39014336466789246, 0.3462126553058624, -0.10762009024620056, 0.7050513625144958, -0.6946259140968323, -0.9771180748939514, -0.4237552583217621, -0.1306001842021942, 0.9881629347801208, -0.3630749583244324, 0.3611970543861389, 0.6170797348022461, -0.9244623780250549, 0.5148497819900513, 0.3642709255218506, -1.4424418210983276, 0.13240019977092743, -1.3992254734039307, 0.8392981290817261, 0.4802493453025818, -0.3977796733379364, 0.4642927348613739, 1.2060232162475586, -1.8536428213119507, -0.8435739874839783, -0.7037032246589661, -0.29580816626548767, 0.12784965336322784, 1.209036946296692, -1.678646206855774, 1.052708625793457, 0.13217684626579285, -0.39849916100502014, -0.3153071701526642, 0.031508225947618484, -1.0722649097442627, -0.08725936710834503, -0.40003472566604614, 0.42892029881477356, 0.5693300366401672, 0.9040549397468567, 0.46791478991508484, 0.7820925116539001, 0.10034490376710892, 0.8428748846054077, -1.0689072608947754, -0.8427324295043945, 0.15474437177181244, 0.5276548862457275, -0.4971717894077301, -1.16468346118927, 0.3282600939273834, -0.3584335148334503, -1.025078296661377, 0.011163618415594101, 1.0429447889328003, -0.45006951689720154, 0.37852540612220764, -0.5271130800247192, -0.5660040974617004, -0.31400376558303833, 0.4965716004371643, 0.6247528791427612, -1.0087132453918457, -0.2708636522293091, -0.6848442554473877, 0.33574748039245605, -0.7479097247123718, -0.22932401299476624, 0.7229143381118774, -0.07173464447259903, -0.8252002000808716, 0.5585306882858276, 0.029506783932447433, 0.6417175531387329, -0.6078155040740967, 1.4569860696792603, 0.6805092096328735, -0.7063013315200806, 0.9273843765258789, 0.11732058227062225, -0.17685146629810333, -0.779891312122345, -0.8938720226287842, -0.802925705909729, -0.24713736772537231, 0.5429551005363464, 0.576684296131134, -0.09773509949445724, -0.64961838722229, -0.038219500333070755, 0.446614146232605, 0.2510811686515808, 1.0375629663467407, -0.7974434494972229, -0.7707885503768921, 0.5093766450881958, 0.4196317493915558, -0.7914115190505981, -0.4376845061779022, 0.3970837891101837, -0.16765563189983368, -0.30183470249176025, 0.07028558850288391, 1.0252766609191895, -0.6809148192405701, 0.5956704020500183, 0.6262147426605225, -0.44824591279029846, -0.5948882102966309, 0.09394185245037079, -1.6411901712417603, -0.5207894444465637, -0.7713719606399536, -0.5641973614692688, 0.6844007968902588, -0.9554260969161987, -0.7917714715003967, 0.3647232949733734, -0.13774748146533966, -0.39790165424346924, -0.23719081282615662, 0.08098206669092178, 0.35349026322364807, -0.42258477210998535, 1.3369272947311401, -0.25992733240127563, 1.586531162261963, -0.3861117959022522, -0.2868979573249817, -0.32137343287467957, -0.5664754509925842, -0.2880096733570099, -0.4364742338657379, 0.32826724648475647, -0.23139327764511108, -0.16762802004814148, -0.5833325982093811, -0.47595059871673584, 0.029585065320134163, -0.2147521823644638, 0.3438867926597595, -0.036901846528053284, -1.3156384229660034, 0.4918944835662842, 1.0064059495925903, 0.09388060122728348, -0.5245935916900635, -1.0307624340057373, -0.4180513918399811, 0.48694321513175964, -0.45539969205856323, 0.5881503820419312, -0.5792208909988403, 1.0266368389129639, -0.04796529933810234, -0.5791592597961426, -0.3091413378715515, -1.0096112489700317, 0.8719939589500427, -0.4438443183898926, 0.1338626742362976, -0.3352045714855194, 0.07668221741914749, 0.2886281907558441, -1.1258742809295654, -0.03647088259458542, -0.06138520687818527, -0.045728567987680435, 0.3238079845905304, -0.6887767910957336, 0.06716417521238327, -0.5281164050102234, -0.23870444297790527, 0.30119603872299194, 0.5802748799324036, 0.6053229570388794, 0.24588648974895477, -1.686085820198059, 0.1323104053735733, 0.3425111770629883, -0.08099321275949478, 0.8341683745384216, 1.2401199340820312, 0.8586206436157227, 0.43998801708221436, -0.32623952627182007, 0.3365526795387268, 0.18510647118091583, -1.0701125860214233, 0.3291851580142975, -0.5710307955741882, -0.451533704996109, -0.21794696152210236], [0.3681657612323761, -0.031838156282901764, -2.459928035736084, -0.7651617527008057, -0.056081224232912064, -0.24489091336727142, 1.8173691034317017, -0.1901022344827652, -0.06255776435136795, -1.5353097915649414, -0.7312269806861877, 0.33043909072875977, 0.8767998218536377, 0.4073050916194916, 0.4780791699886322, 0.17301952838897705, 1.3521459102630615, 0.24465115368366241, 0.08144480735063553, 0.7331534624099731, -0.5450794696807861, -1.1047978401184082, -0.04312922805547714, -0.5034513473510742, -0.0127370934933424, 0.2758917212486267, -1.1418653726577759, 0.28946632146835327, -0.9896581172943115, -0.03583644703030586, 0.7203236222267151, -1.0428407192230225, 0.2603321671485901, 0.16507208347320557, -0.8462052941322327, 0.015049264766275883, 1.6641037464141846, 0.7172606587409973, 0.7927606701850891, 0.3347488045692444, 2.052597761154175, 0.31745707988739014, 1.1500251293182373, -0.8387081623077393, 0.008944448083639145, -0.7304919362068176, 1.367149829864502, -0.7231833338737488, -0.5010404586791992, -0.08842021226882935, 1.4349461793899536, -0.19263555109500885, -0.5319409966468811, 0.8959218859672546, 0.5745543241500854, -0.7387271523475647, 0.5179842114448547, -1.447225570678711, 0.0411655530333519, -0.6377593874931335, 0.8693774342536926, 0.12981896102428436, 0.06794513016939163, 1.1880813837051392, 0.1602543294429779, -1.183005928993225, -0.3743632137775421, 0.42580223083496094, -0.06753750145435333, -0.6264793276786804, 0.18462041020393372, 0.1264413595199585, -0.023844370618462563, 0.6135680079460144, -1.5296242237091064, 0.1633738875389099, 0.9211129546165466, 0.7883664965629578, 0.21564805507659912, 1.0153018236160278, -0.7113806009292603, 0.17026250064373016, 0.9724332690238953, -0.4124482274055481, 0.46375077962875366, -0.016275877133011818, 0.5405431985855103, -0.4101465940475464, -0.8867979049682617, 1.438563346862793, -0.29768720269203186, 0.19527554512023926, 0.24087484180927277, 0.08884960412979126, -0.40764275193214417, -0.33415937423706055, 0.3053407669067383, -0.21059244871139526, -0.08167419582605362, -0.18191632628440857, -0.9445763230323792, -1.1580032110214233, 0.1946353316307068, -0.1737082451581955, 1.0898771286010742, 1.7407798767089844, 0.4279560446739197, -0.6301180720329285, -0.4525262713432312, 0.1581990271806717, -1.0175833702087402, 0.1142222210764885, -0.5883414149284363, -1.072426676750183, -0.4927627146244049, 0.8121412992477417, 1.0668087005615234, -0.20522810518741608, 1.0351439714431763, 1.0236202478408813, -0.2002328485250473, -0.11087842285633087, 0.015616814605891705, 0.04906172677874565, 0.39606761932373047, -0.19421999156475067, -0.2657209038734436, -0.21873007714748383, 0.6636607646942139, 0.6264691948890686, 0.6828615069389343, -0.01027217973023653, 0.11125892400741577, 1.538573980331421, -0.3809579014778137, 0.1862897425889969, -0.0478726327419281, -0.9878835678100586, -0.23543605208396912, 0.17438967525959015, 0.8558505773544312, -0.9745966196060181, -0.3974047303199768, -0.012892399914562702, -0.32781434059143066, -0.7271813154220581, 0.5183209776878357, -0.21655242145061493, -0.31500980257987976, -0.7822337746620178, -0.9239712357521057, -0.45142337679862976, 0.28552865982055664, 0.8037049174308777, 0.8084412217140198, -0.7321837544441223, -0.6440605521202087, 0.45688462257385254, 0.20775999128818512, -0.22325026988983154, 0.7194863557815552, -0.23095254600048065, -0.5000853538513184, 0.4286063015460968, 0.3953326344490051, -0.6948782801628113, -0.4724065065383911, 0.9975688457489014, 0.5690299868583679, 0.1364593654870987, -0.5240446329116821, 0.16345062851905823, -1.3678842782974243, -1.140981912612915, 0.4561753273010254, -0.0820605605840683, 1.4842464923858643, -0.308335542678833, -1.5958333015441895, -1.2657440900802612, 1.244641900062561, -0.4829949736595154, 0.42515379190444946, -0.40285223722457886, 0.258015513420105, -0.6733631491661072, 0.12711173295974731, 0.16520443558692932, -0.6796994209289551, -0.26485443115234375, -0.4304712116718292, -0.10637831687927246, -0.6439041495323181, 0.5023093223571777, -0.5786958932876587, -0.4237849712371826, 0.5423569083213806, -0.6957409977912903, -1.0018223524093628, -0.4802326261997223, 0.14781199395656586, -0.24036848545074463, -1.7560460567474365, 0.6514887809753418, -0.671562671661377, 1.2401726245880127, -0.955608069896698, 0.443241149187088, -1.2090641260147095, -0.2255619466304779, 0.49843624234199524, 0.43378540873527527, -0.3674169182777405, 0.4693520665168762, -0.6669744253158569, -1.430066466331482, 0.44669589400291443, 0.09352952241897583, -0.2908910810947418, -0.0767882764339447, -0.2388361096382141, 0.8333168625831604, 0.7083380222320557, -0.673053503036499, 0.6324928998947144, -0.12940940260887146, 0.015592600218951702, -0.587775707244873, -0.2144167274236679, 0.822666347026825, -0.38964831829071045, -0.7648522853851318, 0.9324312806129456, 0.5248907804489136, -0.9452700614929199, 0.17051191627979279, -0.15189658105373383, 0.08391782641410828, -0.4012625217437744, 0.4019967019557953, 0.7600375413894653, 0.14069846272468567, 0.41088613867759705, -0.24379554390907288, -0.7266443967819214, 0.9905474185943604, 0.8396660685539246, -0.6011087894439697, 0.6113777756690979, 1.351919412612915, 1.1429295539855957, -0.14776982367038727, 0.6488644480705261, -0.018304914236068726, -0.6866177320480347, -0.6957728266716003, -0.9673004150390625, 0.4046081304550171, -1.10018789768219, 1.4038891792297363, 0.7951256632804871, -0.3262728452682495, -0.6286113262176514, -0.0042452155612409115, -0.2768602967262268, -0.5677655339241028, -0.4284367263317108, 0.46824824810028076, 0.008076192811131477, -0.48239752650260925, -0.24772793054580688, -0.09129958599805832, -0.0753851979970932, 0.1345071643590927, -0.428689181804657, 0.49295851588249207, 0.31196704506874084, 0.23589852452278137, 0.04926914721727371, 1.2331193685531616, 0.34552454948425293, -1.4949002265930176, -0.29194700717926025, 0.008132628165185452, -0.210911363363266, 0.002245369367301464, -0.4435167908668518, 0.6745705008506775, 0.07845913618803024, -0.4361952543258667, -0.10554368793964386, 0.9556537866592407, -0.3555890917778015, 0.5134099721908569, -0.35067620873451233, 0.13219614326953888, 1.4403355121612549, -0.4570268392562866, -0.5915398001670837, 0.14420263469219208, 0.4708945155143738, 0.8022081851959229, 0.19198118150234222, 0.9716382622718811, -0.025265252217650414, -0.36288949847221375, -0.40556877851486206, -0.187762051820755, -0.46341457962989807, -0.03901416435837746, -0.584956169128418, -1.179102897644043, -0.4538908302783966, -0.2335810512304306, 0.16958990693092346, 0.5029547214508057, 0.69893878698349, 0.4557676613330841, 0.8599614500999451, 0.09876225888729095, -0.08860227465629578, 0.5551764369010925, 0.23350226879119873, -0.7468759417533875, 0.4742756485939026, 0.5414488315582275, -1.3533309698104858, 0.12524493038654327, 0.1220628023147583, 0.1017616018652916, 0.5261750221252441, 0.039073362946510315, 0.14215509593486786, -1.2036052942276, -0.35184046626091003, 0.4244808852672577, 1.1583751440048218, -0.7664558291435242, 0.053037822246551514, -0.590160608291626, 0.5868862867355347, 0.8579103946685791, 0.8066418766975403, -0.41849833726882935, 1.1283178329467773, -0.642029881477356, -0.765142560005188, -0.4036860466003418, 0.20061342418193817, 0.7400676012039185, -0.43992894887924194, -0.7583969831466675, 0.2174205780029297, -0.332745760679245, -0.40252289175987244, 0.8914322853088379, -0.3163961172103882, 0.4573878049850464, -0.32262372970581055, 0.3313230276107788, 0.6927400231361389, -0.5335599184036255, 0.2338491976261139, -1.239630937576294, 0.6617880463600159, 1.0732554197311401, 1.751615047454834, 0.14799083769321442, 0.3651745319366455, 0.4373592436313629, -0.12027833610773087, 0.21426819264888763, 0.14651192724704742, 1.0430017709732056, -0.1791083812713623, -0.15366068482398987, -0.36925438046455383, -0.6110462546348572, -0.085926353931427, 0.05045847222208977, 0.45127996802330017, 0.3635088801383972, -1.1861063241958618, -0.14492271840572357, 1.209093689918518, 1.0153462886810303, -0.7758303880691528, -0.26502352952957153, 0.20864738523960114, 0.031939540058374405, -0.2661663293838501, 0.025165973231196404, -0.3057243227958679, -0.1301119178533554, 0.5018800497055054, -1.5185610055923462, 0.7413727045059204, 0.9549863338470459, -0.218706414103508, 0.45242637395858765, -1.4297373294830322, 0.41839733719825745, -1.0048856735229492, 0.7241331338882446, 0.5231839418411255, 0.040715981274843216, 0.4100794196128845, 0.1835457682609558, 0.2638531029224396, 0.23748788237571716, -0.015644829720258713, 1.2207469940185547, -0.5235627293586731, 0.14415961503982544, 0.009221120737493038, -0.613422691822052, 0.6897541880607605, -0.24573275446891785, -0.6381076574325562, -0.1498836725950241, 0.059421781450510025, 0.168848916888237, 0.15577638149261475, -0.05465254560112953, 2.3256595134735107, 0.3618350923061371, 0.13411182165145874, -0.03816773742437363, -0.32496216893196106, -1.3314783573150635, -0.1418556571006775, -0.025136923417448997, 0.236083522439003, -1.085587739944458, -0.2197723239660263, 0.49137282371520996, 0.2651158273220062, 0.2931915521621704, 0.22525526583194733, 0.06872902810573578, 0.5352818369865417, 0.3854880928993225, 0.7648630142211914, 0.6445133090019226, 1.4795469045639038, -0.13100354373455048, 0.6734827756881714, -0.5633068680763245, -0.3999882936477661, 0.19519735872745514, -0.7830716371536255, 0.2462255358695984, 0.5523865818977356, 0.15209755301475525, 0.930730402469635, -1.660893440246582, -0.20873600244522095, 1.310314655303955, 0.22187228500843048, 1.0798531770706177, 0.8212985992431641, 0.23377981781959534, 0.029316283762454987, 0.07851091027259827, 0.27261999249458313, -0.11087249964475632, 0.8037967681884766, 0.6096410751342773, -0.1995197981595993, 1.0132055282592773, -0.8141394257545471, 0.003448547562584281, -0.7906668782234192, -0.4031030237674713, -0.11491671204566956, -1.2708255052566528, 0.40340670943260193, 0.9067167639732361, 0.7400898933410645, 1.216482400894165, 0.21274083852767944, -1.7791099548339844, 0.69969242811203, -0.6235780715942383, -0.1835537850856781, -0.8467634916305542, -0.8377035856246948, -0.6982970833778381, -0.2660283148288727, 0.0366964191198349, 0.02089635841548443, -0.08773303031921387, -0.5493305325508118, 0.2558816075325012, -0.7425603270530701, 1.1302422285079956, 0.7559885382652283, 1.258395791053772, 0.2148919403553009, 0.26492780447006226, -0.009882916696369648, 0.8583818078041077, -0.6474348902702332, 0.036018334329128265, 0.6351751089096069, -0.618404746055603, -0.7539142966270447, -1.7294331789016724, -0.8617345094680786, 1.4227828979492188, 0.8685662746429443, -0.44240328669548035, -0.43093809485435486, 1.0128997564315796, 1.166511058807373, -0.28986793756484985, -0.35273611545562744, 0.26302391290664673, -0.9891103506088257, 0.43405547738075256, 0.6225698590278625, -0.6426807045936584, -0.5444246530532837, -0.9704039096832275, -1.5007988214492798, 0.5698083639144897, 0.20292910933494568, -0.2593689560890198, 0.42868107557296753, 1.0110116004943848, 0.4327407777309418, 0.26048803329467773, -0.31285449862480164, 0.5159377455711365, -0.531110942363739, 0.6910595297813416, -0.8793213367462158, 0.659443736076355, -0.20664361119270325, 0.18519775569438934, -0.5638743042945862, 0.6126536726951599, -0.21523542702198029, 0.015631860122084618, -0.5261462926864624, -0.06970831006765366, 0.29701414704322815, 0.7492117881774902, -0.47667840123176575, -0.3815670311450958, 0.2793501317501068, -0.4931916892528534, -0.1122409850358963, -0.6692039966583252, 0.7434548139572144, 0.05670485273003578, -1.4182847738265991, -0.239610955119133, -0.3656897246837616, -0.037159040570259094, 0.04526432603597641, -0.6218516230583191, 1.6926321983337402, 0.8193944692611694, 0.5750724673271179, 0.6535367965698242, -0.44726383686065674, 0.3050444722175598, -0.34907078742980957, 0.7035507559776306, 1.3553466796875, -0.6802181005477905, 0.22086846828460693, -0.1956057846546173, -0.7225221395492554, 0.24491015076637268, -0.22608056664466858, 0.06199515610933304, -0.8001269698143005, -0.8255493640899658, -0.6825212836265564, -0.33477985858917236, 0.5869776606559753, -0.010148223489522934, -0.48326295614242554, 0.5859284996986389, -1.1809139251708984, -0.35647961497306824, 0.43735530972480774, -1.0291956663131714, -0.4109179675579071, -1.383960485458374, 0.551770031452179, 0.14771725237369537, 1.1624627113342285, 0.05340156704187393, 0.4784069061279297, -1.145229458808899, -1.0364638566970825, -0.8134616613388062, -0.055544883012771606, 0.8293038606643677, 0.42592859268188477, -1.0878868103027344, 0.7246264219284058, 0.36601021885871887, -0.26461365818977356, -0.7266992330551147, 0.06236466392874718, -0.29225873947143555, 0.28085756301879883, -0.2601448893547058, 0.4483984708786011, 0.16714833676815033, 1.1176140308380127, 0.7130688428878784, 1.1518473625183105, 0.8370899558067322, 1.0776070356369019, -1.056018352508545, -0.32137417793273926, -0.3426746428012848, 0.8414547443389893, -1.2028146982192993, -0.6385138630867004, -0.5335033535957336, -0.9964515566825867, -0.4217670261859894, 0.5292300581932068, 0.519156813621521, -0.8695055842399597, -0.5715409517288208, -1.515110731124878, 0.5597087740898132, -0.8888206481933594, -0.1337786465883255, 0.007842754013836384, -0.553290605545044, 0.48116734623908997, 0.12915778160095215, -0.4632242023944855, -1.1909403800964355, -0.9069709181785583, 0.4205273389816284, 0.44002002477645874, -0.9175572395324707, 0.5626019835472107, 0.20327796041965485, -0.164287731051445, -0.7628527283668518, 1.3838320970535278, 1.6761441230773926, -0.009465521201491356, 0.2838335931301117, -0.47884079813957214, 0.6364989280700684, 0.40589460730552673, -0.7978194952011108, 0.06713628023862839, -0.6246308088302612, 0.7259085178375244, 0.09332015365362167, -0.2596748173236847, 0.0750102698802948, 0.28080517053604126, -0.3388994634151459, 0.14474545419216156, 0.7700204849243164, -0.10224289447069168, -0.8952184915542603, 1.380150318145752, 0.7865402698516846, -0.3821813762187958, -0.2736569344997406, 0.7183178067207336, 0.38542693853378296, 0.1432507187128067, 0.5172150135040283, 0.844612181186676, -1.237534999847412, 0.4259948432445526, 0.09873069822788239, -0.054306644946336746, 0.03728248551487923, -0.7247014045715332, -1.5630282163619995, -0.41176533699035645, -0.560477077960968, -1.2089101076126099, 0.029981564730405807, -1.0414714813232422, -0.17830371856689453, 0.11440415680408478, -0.03213290125131607, 0.4831271767616272, -0.8973010182380676, 0.030270757153630257, -0.9963438510894775, -0.003104392671957612, 0.4200747013092041, -0.5212502479553223, 0.5941575169563293, -0.29284170269966125, -0.3826773762702942, -1.102800726890564, -0.023585904389619827, 0.03222241625189781, 0.42149242758750916, 0.12133333086967468, -0.44582515954971313, -0.13272720575332642, -0.7060645222663879, -0.5496354699134827, 0.4876587986946106, -1.2204357385635376, 0.1157526969909668, -0.0606808103621006, -1.2134448289871216, 0.36538493633270264, 0.9572460055351257, -0.2913050949573517, -0.12831003963947296, -0.6839431524276733, -0.31761616468429565, 0.35073232650756836, 0.08236084133386612, 0.07052401453256607, -0.3502925932407379, 0.8803417086601257, -0.02001572586596012, -0.4914458990097046, 0.25837117433547974, -0.46902862191200256, 0.7937739491462708, -0.48136982321739197, 0.4783448278903961, 0.8051706552505493, -0.1792004555463791, 1.0510282516479492, -0.914286732673645, 0.1560809314250946, 0.25225532054901123, -0.14049167931079865, 0.1589011698961258, -0.5282823443412781, -1.313554286956787, 0.24646563827991486, 0.06469665467739105, 0.5612870454788208, 0.36976417899131775, 0.10667701810598373, -0.006996444426476955, -0.9605422019958496, 0.5277560353279114, 0.2108311653137207, -0.6221827268600464, 0.25590816140174866, 1.7750520706176758, 1.858909249305725, 0.3573552966117859, 0.5614404678344727, 0.227325901389122, 0.44523921608924866, -1.2467213869094849, -0.6457891464233398, -0.929860532283783, -0.03990095108747482, -0.8577861785888672], [0.07677395641803741, 1.3806259632110596, -1.2699363231658936, -1.5356322526931763, 0.28784123063087463, -0.6600820422172546, 0.3808666467666626, 0.09548139572143555, -0.11653673648834229, -0.943620502948761, -1.2869826555252075, 0.2603827714920044, 0.7064964771270752, 1.3548978567123413, 1.1988393068313599, 0.18649962544441223, 0.47548431158065796, -1.0430010557174683, 0.1967732459306717, 0.7167782187461853, 0.6623823642730713, 0.2816668748855591, -0.3298620581626892, -0.712647557258606, 0.3337882161140442, 0.26225709915161133, -1.3182188272476196, -0.12607836723327637, -1.2256340980529785, -0.5030423998832703, 1.0629892349243164, -0.8521609902381897, 0.6328336596488953, -0.5084280967712402, -2.006047248840332, -0.8524157404899597, 1.0501313209533691, 0.7970028519630432, -0.39185667037963867, 0.23745490610599518, 1.163370966911316, 0.8688482642173767, 0.07946927100419998, -1.2634555101394653, 0.8793937563896179, -0.7095260620117188, 0.3003305494785309, -0.6453291177749634, 0.21897484362125397, -1.2830053567886353, 0.9315306544303894, -0.9804143309593201, -0.1349584311246872, 0.6443076133728027, 0.6426131129264832, 0.45295456051826477, -0.47361186146736145, 0.3182075619697571, 0.5347548127174377, 0.0762651264667511, 1.2109607458114624, 0.5530859231948853, -1.133271336555481, 0.6734282374382019, 0.1683398187160492, -0.02213137410581112, -0.21751420199871063, 0.34552910923957825, -0.7009471654891968, -0.19861863553524017, 0.048688288778066635, 0.4266055226325989, -0.7008364200592041, 0.18486183881759644, -1.34322988986969, 0.7325365543365479, 0.2292095571756363, 0.3040083050727844, 0.430677592754364, 0.9410544037818909, -0.9943044781684875, -0.6342321634292603, 0.3019806146621704, -0.7355782389640808, 0.5559640526771545, 0.17867693305015564, 0.4085918068885803, -0.7705969214439392, -0.39057350158691406, 1.7995176315307617, -0.4921817481517792, 0.34358084201812744, -0.122661292552948, -0.15047724545001984, -0.2145165205001831, -0.31304284930229187, 0.40370622277259827, -0.542175829410553, 0.13593944907188416, -0.16933231055736542, -0.7189620733261108, -0.31108638644218445, 0.41670727729797363, -0.08561930805444717, 0.81560879945755, 1.351537823677063, 0.42163193225860596, -0.9785571098327637, -0.48656484484672546, -0.1423010230064392, 0.4801396131515503, -0.4237585961818695, -1.172247290611267, -1.4889798164367676, -0.6606987714767456, 0.5740432739257812, 0.9610428810119629, 0.03470531478524208, 0.9044538736343384, 1.309261679649353, -0.8128468990325928, -0.2621709406375885, -0.15001904964447021, 0.5778190493583679, 0.9277558326721191, 0.26243653893470764, -0.5886715650558472, -0.058925922960042953, -0.04187340661883354, -0.23356039822101593, -0.18212147057056427, 0.31275075674057007, -0.5020715594291687, 0.8131093382835388, -0.2330971360206604, 0.829891562461853, -0.45073482394218445, -0.6139722466468811, 0.5421504378318787, -0.5819083452224731, 0.2945268452167511, -0.7967106103897095, -0.8748414516448975, -0.9362154006958008, 0.3065093159675598, -0.6610477566719055, 0.09301811456680298, -0.1657586246728897, -0.6893379092216492, 0.5363911390304565, -0.5183603167533875, 0.6062725186347961, -0.16856464743614197, 1.358058214187622, -0.15808986127376556, 0.060468029230833054, 0.6049166321754456, -0.1453263759613037, -0.30961480736732483, -0.3202655613422394, 0.7158974409103394, 0.47444602847099304, -0.8426102995872498, 0.8267077803611755, -0.06057871878147125, -0.21555764973163605, 0.6185052990913391, 0.16059890389442444, -0.5764971375465393, 0.7836573719978333, -0.6300258636474609, -0.03356556221842766, -0.336588978767395, 0.18668901920318604, 0.5999709367752075, -0.13327720761299133, 1.1702325344085693, -0.7807235717773438, -0.19164608418941498, -0.8150057792663574, 0.6520563960075378, -0.8523508906364441, 0.17207194864749908, 0.13949546217918396, 0.347182035446167, -0.30826592445373535, -0.22873236238956451, -0.6627998948097229, 0.3976166546344757, -0.48923248052597046, -0.837409257888794, 0.01728380285203457, -1.0773849487304688, 0.2311161905527115, -0.19557271897792816, -0.9966260194778442, 0.9091746211051941, -1.1049385070800781, -0.38074779510498047, 0.5220676064491272, -0.22319923341274261, 0.03329313173890114, -0.9423344731330872, 0.396999329328537, -0.874788761138916, 0.9802021384239197, -0.10028577595949173, 0.09327081590890884, -0.4843990206718445, -0.032881058752536774, 1.0841795206069946, -0.23211826384067535, -0.41474974155426025, 0.8798545598983765, 0.31414005160331726, -0.7258337140083313, -0.09912698715925217, 0.4129366874694824, -0.012055560946464539, -0.044803619384765625, 0.8503963947296143, 0.0005677081644535065, 1.241368293762207, 0.9740049242973328, 0.09024330973625183, 0.09999401122331619, -0.9174879193305969, -0.2298884391784668, -1.0496505498886108, 0.2580782175064087, -0.6691705584526062, -1.1030375957489014, 0.6451396942138672, 0.7325820922851562, 0.19750022888183594, 0.9518560171127319, -0.3246753215789795, 0.809966504573822, 0.8839257955551147, 0.8911351561546326, 0.378470778465271, -0.328023761510849, -0.5228123068809509, -0.09553094953298569, -0.2057301104068756, 0.32259050011634827, 0.9379257559776306, -0.013096507638692856, -0.7358396649360657, 1.2085250616073608, -0.3378508388996124, -0.16680823266506195, 0.6601868271827698, -0.03360723704099655, -0.11990771442651749, -0.8607083559036255, 0.023753192275762558, 0.22966264188289642, -0.7933010458946228, 1.1439464092254639, 0.8388224840164185, -1.2664599418640137, -0.32092586159706116, -0.2074742317199707, -0.5341672301292419, -0.5014175772666931, -0.45322224497795105, -0.9018877148628235, 0.21845240890979767, -0.0757814422249794, 0.08929818123579025, -0.026647543534636497, 0.10307558625936508, 0.9529176354408264, -0.0035988306626677513, -0.05710273236036301, -0.3997691571712494, 0.3708120882511139, 0.5552378296852112, 0.7013579607009888, 0.3442513942718506, -1.7392083406448364, -0.48397621512413025, -0.06709574908018112, 0.2580215036869049, 0.3122435212135315, -0.49801307916641235, 0.5791497826576233, 0.45479488372802734, -0.8046103715896606, 0.3223384618759155, 0.06951528042554855, -0.3217509686946869, -0.47366780042648315, 0.1352577656507492, 0.3997054100036621, 0.3202735483646393, -0.6104236245155334, -0.891555666923523, -0.4419594705104828, 0.26130592823028564, 1.1269536018371582, 0.6493079662322998, 0.9161345362663269, 0.48089855909347534, -0.17252230644226074, -0.3969975709915161, -0.25686514377593994, -0.2886400818824768, 0.19382351636886597, 0.07124646753072739, -0.545630156993866, -0.2362951785326004, -0.21415407955646515, 0.057872410863637924, 1.60462486743927, 0.2937034070491791, 1.1085001230239868, 0.616168200969696, -0.14651483297348022, -0.7783207297325134, -0.5816746950149536, 0.5759197473526001, -1.052229642868042, -0.002659915015101433, 1.1434717178344727, -0.6389883160591125, -0.03269163519144058, -0.5278652310371399, -0.24851027131080627, 1.0929487943649292, 0.12289006263017654, 0.20727598667144775, -0.7444596290588379, -0.2144932746887207, -0.5034123063087463, 1.2480567693710327, 0.004542395938187838, 0.36008894443511963, 0.006451457738876343, -0.29231998324394226, 0.4241555631160736, 0.8982851505279541, -0.26882490515708923, 0.6584389209747314, -0.12912389636039734, -0.3083720803260803, -0.7276343107223511, 0.5432356595993042, 1.0483380556106567, -0.23921829462051392, -0.0661541223526001, -0.7357192039489746, -0.1704714447259903, -0.7258622646331787, 0.6096521615982056, 0.5895826816558838, 1.1225143671035767, 0.18101397156715393, 0.4686220586299896, 0.6326187252998352, -0.13210873305797577, 0.022387726232409477, -0.5591018795967102, 0.8971781134605408, 0.4096233546733856, 1.2036272287368774, 0.058178387582302094, -0.5088319182395935, 0.4270830750465393, -0.7456441521644592, -0.15033145248889923, 0.259827196598053, 0.5951660871505737, -0.5921875238418579, -0.6611849665641785, -1.067111611366272, 0.10493308305740356, 0.13352075219154358, -0.31967440247535706, 0.27178800106048584, 0.1823800653219223, -0.5125186443328857, -0.7436568140983582, 0.7173309922218323, 0.27253809571266174, -0.23074352741241455, -0.36237362027168274, 0.18888568878173828, 0.29103586077690125, 0.0079725980758667, -0.20175319910049438, -0.5132974982261658, 0.1045583188533783, -0.07576772570610046, -0.44578227400779724, -0.7607650756835938, -0.020222440361976624, -0.0974377766251564, 0.18571016192436218, -0.5206632614135742, -0.1202344074845314, -0.25559866428375244, -0.38780614733695984, 0.9081661701202393, 0.29545891284942627, 0.3104698061943054, -0.03160027787089348, -0.744675874710083, -0.15091195702552795, 0.28390854597091675, 0.6200782060623169, 0.0964110866189003, 0.7609161734580994, -0.5780855417251587, -0.4238855838775635, 0.27341678738594055, -0.5212638974189758, -0.35722091794013977, -0.12736453115940094, -1.1084481477737427, 0.3737258017063141, -0.2365940511226654, -0.3500305116176605, 1.5649844408035278, -0.2843477427959442, 0.25674188137054443, 0.7082337737083435, -0.40497130155563354, -1.0971463918685913, 0.3312560021877289, 0.5651206374168396, 0.6428191661834717, -0.42487746477127075, 0.6661490201950073, 0.11274012178182602, -0.36083313822746277, 1.1911230087280273, -0.5230044722557068, 0.7252320051193237, 0.3486858308315277, -1.3880549669265747, 0.09366907924413681, 0.4326212704181671, 0.9352934956550598, 0.7396877408027649, 0.2833280563354492, -0.19006019830703735, -1.2919390201568604, 0.7980775237083435, -0.44194120168685913, 0.730673611164093, 0.7631547451019287, -0.07725837081670761, 1.5956802368164062, -1.1789462566375732, -0.7006160020828247, 0.6847208142280579, 0.5323665142059326, 0.3379839360713959, 0.8768864274024963, 0.06324831396341324, -0.8279657959938049, 0.08402083069086075, 0.7857793569564819, -0.11285524070262909, 0.5985491275787354, -0.4420994818210602, -0.4452437162399292, 0.4258463680744171, -0.22881484031677246, 0.3422882556915283, -0.1778225600719452, -0.3183348476886749, -0.2191949039697647, 0.025645582005381584, 0.3065781891345978, 0.41716232895851135, 0.4557121694087982, 1.5496201515197754, -0.8877393007278442, -1.5756070613861084, 0.2399551272392273, -0.6641305685043335, 0.22716374695301056, 0.8130924105644226, -0.641526997089386, -0.43324699997901917, -0.8688603043556213, -0.40343207120895386, 0.2255474179983139, -0.7950252890586853, -0.2795006036758423, 0.036226462572813034, -1.5510789155960083, 0.05888598412275314, 0.16077403724193573, 1.5132378339767456, 0.9455281496047974, 0.2767052948474884, 0.13431093096733093, 0.3379494845867157, -0.0667891651391983, 0.30335167050361633, -0.029513690620660782, -0.8096449971199036, 0.868901789188385, -0.9498786330223083, -0.6156595945358276, 0.8785766959190369, 1.0949335098266602, 0.3215770721435547, -0.26678037643432617, 0.4775385856628418, 1.346093773841858, -0.36143413186073303, -0.4660737216472626, 0.11159200966358185, -0.9312162399291992, 0.8688282370567322, 0.3134683072566986, -0.8811243772506714, -0.4928604066371918, -0.15748059749603271, -1.908845067024231, 0.929354190826416, -0.538619339466095, -0.9004946947097778, 0.12061671912670135, 0.1754385530948639, 0.5971811413764954, 0.44589802622795105, -0.6867509484291077, 0.19522801041603088, 0.5713384747505188, -0.578320324420929, -0.9203327298164368, -0.020842308178544044, 0.5815801024436951, 0.05561407282948494, -0.29661107063293457, 0.550616443157196, 0.5506563782691956, 0.4861295819282532, 0.5607157349586487, 0.16276758909225464, 0.7191662192344666, 0.6269069910049438, 0.49483972787857056, -1.7959730625152588, -0.05693226680159569, -0.9808796644210815, 0.22775311768054962, -0.3470669388771057, 1.0499666929244995, -0.3290523588657379, -1.1209434270858765, -0.008448265492916107, 0.4484178125858307, -0.5815371870994568, -0.5077971816062927, -0.5145175457000732, 0.4334772825241089, 0.6245616674423218, -0.9602362513542175, 0.10073895752429962, -0.2579309940338135, -0.8000388145446777, -0.5235157608985901, 0.5557928085327148, 0.8035745024681091, -1.172700047492981, -0.13555078208446503, 0.3886544704437256, 0.14246851205825806, 0.07037915289402008, -0.10416383296251297, -0.05367007479071617, -0.9977031946182251, -0.9110884666442871, -0.21748588979244232, 0.0929533913731575, 0.5551129579544067, -0.34759992361068726, 0.018439941108226776, 0.14802969992160797, -1.6698623895645142, 0.5637828707695007, 0.16440066695213318, -1.184288501739502, -0.40341007709503174, -1.1307461261749268, 0.834144651889801, 0.6086521148681641, -0.1953401416540146, 0.2487819492816925, 0.7998754978179932, -0.506863534450531, -0.6897277235984802, -1.4294092655181885, 0.010800709947943687, 0.7598833441734314, 1.183397650718689, -0.834864616394043, 0.4853964149951935, 0.585618793964386, -0.25289568305015564, 0.22920653223991394, 0.18972837924957275, -1.3923678398132324, -0.5434566140174866, 0.3747464716434479, 0.5102306008338928, 0.5031461715698242, 0.9333145022392273, -0.0062044532969594, 0.2667692005634308, 0.18640179932117462, 0.451277494430542, -0.14275723695755005, -0.026061540469527245, -0.5534740090370178, 0.1552751660346985, -1.0083777904510498, -0.7735018730163574, 0.8361942172050476, -0.303524911403656, -0.4120694696903229, 0.642204761505127, 0.9817479848861694, -0.28353151679039, -0.20404116809368134, 0.005872579291462898, 0.6107168793678284, -0.446209192276001, 0.9331203699111938, -0.06275397539138794, -0.7416232824325562, -0.25580549240112305, -0.17144939303398132, 0.3710358440876007, -0.598864734172821, 0.3688177466392517, 0.35131141543388367, 0.03695237636566162, -0.4252743721008301, 0.6982394456863403, 0.428684800863266, -0.051401782780885696, -0.40762782096862793, 1.1867016553878784, 1.4739235639572144, -0.3987923264503479, 0.10511352866888046, 0.0917266309261322, 0.08420447260141373, 0.3073676526546478, -0.27444493770599365, -0.7230938673019409, -0.5136095881462097, 0.9412675499916077, 0.25601473450660706, -0.24044929444789886, -0.8557400107383728, 0.1756233274936676, -0.13141801953315735, -0.08104298263788223, 0.9796038269996643, -0.09278750419616699, -0.42163050174713135, 0.8281049132347107, -0.03720657154917717, -0.27082523703575134, 0.2495735138654709, 0.381132572889328, 0.4663940668106079, 0.18828947842121124, 0.3468914330005646, 0.4162493348121643, -0.11815428733825684, 1.0734953880310059, 0.5507495999336243, -0.3650485575199127, -0.521422803401947, -0.7849568724632263, -1.5338629484176636, -0.13090185821056366, -0.3194580376148224, -0.8435891270637512, 0.25848227739334106, -0.5081692934036255, -0.17257514595985413, 0.4420216977596283, -0.13005298376083374, 0.34449660778045654, -0.7162193059921265, 0.002079254947602749, 0.41401979327201843, 0.22765688598155975, 1.2774194478988647, -0.20293031632900238, 0.9105727672576904, 0.47310206294059753, 0.28167977929115295, -0.1058100014925003, -0.04701106250286102, -0.04849773645401001, 0.6158990263938904, -0.6271253228187561, -0.9315049052238464, -0.017217809334397316, -0.44522199034690857, -0.5182167887687683, 0.42193347215652466, 0.31086456775665283, 0.7137261033058167, 0.056439775973558426, -1.1453378200531006, -0.6624892950057983, 0.42977187037467957, 0.4649963676929474, -0.7050033211708069, -0.22242037951946259, -0.3356916308403015, 0.28504976630210876, -0.3140261173248291, 0.8836768865585327, -0.2769641876220703, 0.510994553565979, 0.8934174180030823, 0.06513644754886627, -1.179043173789978, -0.32954010367393494, 1.0783615112304688, -0.5624997615814209, 0.5850046277046204, -1.0615414381027222, -0.038976531475782394, -0.4773730933666229, -0.43601498007774353, -0.07759978622198105, -0.03612527996301651, -0.8314492106437683, -0.08014488965272903, -0.4907747507095337, -1.0464671850204468, -0.7646406888961792, 0.32006576657295227, 1.1116158962249756, -0.8605642914772034, 0.29647326469421387, 0.30594244599342346, -1.0659517049789429, 0.8152735233306885, 0.38615065813064575, -0.019138673320412636, 0.14671479165554047, 1.4974867105484009, 1.5170304775238037, -0.0737675279378891, -0.3280562162399292, -0.44858065247535706, 0.5113017559051514, -0.6719384789466858, -0.0006050984375178814, -0.5500922203063965, 0.24620871245861053, -0.45770585536956787], [0.32628145813941956, 1.921994924545288, -1.8438161611557007, -1.6716302633285522, 0.20231404900550842, -0.015833202749490738, -0.13701274991035461, 0.4930061399936676, -0.5480270385742188, -0.8625169396400452, -1.2527518272399902, 1.0902810096740723, 1.3410555124282837, 1.4350016117095947, 0.6010682582855225, 0.4681169092655182, 0.7468911409378052, -0.43957144021987915, 0.2608230412006378, 0.988936722278595, 0.6037111282348633, -0.4545603394508362, -0.5417208671569824, -0.8849959373474121, 0.376421183347702, 0.5439892411231995, -1.7898749113082886, -0.5557032823562622, -0.9383565783500671, -1.163804054260254, 0.9228030443191528, -0.5239741802215576, -0.45720118284225464, -0.3194696307182312, -1.9668363332748413, -1.1137357950210571, 0.30314627289772034, 0.5314669013023376, -0.09669595211744308, 0.9851673245429993, 0.7203163504600525, 0.6611511707305908, -0.027006305754184723, -1.3035968542099, 1.0258238315582275, -0.35567882657051086, -0.42483001947402954, -0.9469076991081238, 0.03579145297408104, -1.30118989944458, 0.5728465914726257, -0.6417860984802246, 0.27525773644447327, 0.24963942170143127, 0.4898563623428345, 0.9237989783287048, -0.017878353595733643, 1.0143877267837524, 0.17540761828422546, 0.05254814773797989, 1.374118447303772, 0.061194583773612976, -0.8162965774536133, -0.14761880040168762, 0.5750535726547241, 0.09022631496191025, 0.5517956018447876, 0.9095413684844971, -0.6485456228256226, 0.39853715896606445, 0.48608890175819397, 0.3136425316333771, -0.6566770672798157, 0.16952066123485565, -1.2922732830047607, 0.07957404106855392, 0.02910531498491764, -0.15570993721485138, -0.10089302062988281, 1.1618151664733887, -1.013416051864624, -0.42471519112586975, 0.15214252471923828, -0.30506572127342224, 0.5836457014083862, 0.37861981987953186, -0.264467716217041, -0.6653295159339905, -0.09602612257003784, 1.2638189792633057, -0.3510333001613617, 0.37358978390693665, 0.06856510043144226, 0.010496617294847965, -0.5739095211029053, -0.8061501979827881, 0.5518168210983276, -0.7401300072669983, 0.09525644779205322, -0.8716109991073608, -0.4627341628074646, -0.7348576784133911, 0.9255443215370178, 0.6875876188278198, 1.0488221645355225, 1.4501607418060303, 0.5332505702972412, -0.8640580773353577, -0.749352753162384, 0.5414978265762329, 0.357870489358902, 0.05776806175708771, -1.3973170518875122, -1.0774434804916382, -0.5060680508613586, 0.6095068454742432, 0.672960102558136, -0.7220097184181213, 1.0778712034225464, 0.9914866089820862, -0.3939964771270752, -0.9294272661209106, -0.9683211445808411, 1.0144442319869995, 1.2311354875564575, 0.38691309094429016, -0.5197381973266602, 0.1069340929389, 0.06860335916280746, -0.654815137386322, 0.18378053605556488, 0.15978489816188812, -0.7340490818023682, 0.5831504464149475, 0.2264251559972763, 1.0997834205627441, -0.23438136279582977, -0.767601728439331, 0.9034432172775269, -0.6586472988128662, -0.025968117639422417, -0.832632839679718, -0.8011084794998169, -0.8466947674751282, -0.2215806245803833, -0.007217132020741701, -0.2500390112400055, 0.06975405663251877, -1.3568999767303467, 0.208119735121727, -1.2241454124450684, 0.5093085169792175, -0.013803769834339619, 1.605486512184143, -0.368936151266098, 0.5774706602096558, 0.7968924045562744, -0.10582393407821655, -0.5603663325309753, 0.6197933554649353, 0.697787344455719, 0.17120002210140228, -1.189841389656067, 1.0047580003738403, 0.2608114778995514, -1.233959674835205, 1.5259195566177368, 0.0665464848279953, -0.1791219264268875, 0.9268644452095032, -0.9688248634338379, -0.07550641894340515, -0.4406132102012634, 0.3646884858608246, 0.5037547945976257, -0.4684503972530365, 0.7340047955513, -0.588437020778656, 0.03339190408587456, -0.6586658954620361, -0.11519312858581543, -0.6598106622695923, 0.26612234115600586, 0.10100862383842468, 0.3869819939136505, 0.07626812160015106, -0.1792334020137787, -0.5374497771263123, -0.6062873005867004, -0.18344494700431824, -1.4539765119552612, 0.22566714882850647, -1.5918716192245483, -0.23589195311069489, -0.2521922290325165, -0.9430881142616272, 0.5307716131210327, -0.056691478937864304, -0.061659932136535645, 0.39255619049072266, -0.47626376152038574, -0.4151713252067566, -1.4469114542007446, -0.2323208749294281, -1.1352373361587524, 0.8214721083641052, -0.26324713230133057, 0.5368818044662476, -0.5719915628433228, 0.2939355671405792, 1.3041318655014038, 0.19142763316631317, -1.115421175956726, 0.5656251311302185, 0.14131957292556763, -1.0933688879013062, -0.510585367679596, -0.03082440234720707, 0.2770423889160156, 0.7134939432144165, 0.8184497356414795, -0.04501519352197647, 0.5049569010734558, 0.6663867235183716, 0.0326785147190094, 0.15279550850391388, -1.190064787864685, -0.2662827968597412, -1.259790301322937, 0.16163946688175201, -0.6679757833480835, -0.3478807806968689, 1.2690485715866089, 1.0751953125, -0.5624279379844666, 0.8082947731018066, -0.2392202615737915, 0.6055549383163452, 1.0276012420654297, 0.8687385320663452, 0.26377296447753906, 0.5113332271575928, -0.8912036418914795, -0.31505292654037476, -0.3970082402229309, -0.22788240015506744, 1.3154546022415161, -0.020423606038093567, -0.21163073182106018, 1.1457171440124512, -0.4072229564189911, -0.3712880313396454, 0.24524709582328796, 0.33339792490005493, 0.2602875828742981, -0.743812620639801, 0.496398001909256, -0.2963584065437317, -0.7750941514968872, 1.1495059728622437, 0.4616168141365051, -1.7530144453048706, -0.8398271203041077, -0.31427711248397827, 0.19254624843597412, -0.3674203157424927, -0.20587724447250366, -0.9680440425872803, 0.8115509748458862, -0.12438299506902695, -0.06318913400173187, 0.28651291131973267, 0.1525839865207672, 0.6435204148292542, -0.24160441756248474, 0.017664644867181778, -0.27045726776123047, 0.5982337594032288, 0.24926769733428955, 0.5567165613174438, -0.4826154112815857, -2.1075241565704346, -0.40297025442123413, -0.3394581079483032, 0.5485498905181885, 0.4245069622993469, 0.23126542568206787, 0.562647819519043, 0.7647535800933838, -0.7552887201309204, 0.19237573444843292, -0.32801276445388794, -0.059713710099458694, -0.3571797311306, 0.3822251558303833, 0.419647753238678, 0.444487988948822, -0.29399603605270386, -0.9007295966148376, -0.5202773213386536, 0.03646309673786163, 1.0049872398376465, 0.5848501324653625, 1.090376615524292, -0.8205570578575134, -0.32100656628608704, -0.5141026973724365, -0.11904411762952805, -0.38543203473091125, 0.040820252150297165, -0.7569805979728699, -0.6316142678260803, -0.0896049216389656, -0.31751877069473267, -0.27875816822052, 0.9595367312431335, 0.05806224048137665, 1.755568265914917, 0.9431763887405396, 0.028942424803972244, -1.3298413753509521, -0.9544206857681274, 0.1322891116142273, -1.5635044574737549, 0.7143761515617371, 0.7062350511550903, -0.4286474585533142, 0.5969552397727966, -0.49471864104270935, -0.4685184359550476, 0.34855008125305176, -0.35567933320999146, 0.4157079756259918, -0.8248999714851379, -0.6629984378814697, -0.2084028422832489, 0.8815548419952393, 0.33322766423225403, -0.11069443076848984, -0.8767024874687195, -0.17720316350460052, -0.07595599442720413, -0.023650670424103737, -0.4701460301876068, 0.6491262912750244, 0.39567285776138306, -0.43569815158843994, -0.8240566849708557, 0.8203206062316895, 1.5768378973007202, -0.4325883388519287, 0.45622754096984863, -0.9315774440765381, 0.08635024726390839, -0.3813677728176117, 0.2583676278591156, 0.8617459535598755, 0.8048073053359985, 0.2933904230594635, -0.20629693567752838, 0.5075393915176392, -0.2671978771686554, 0.37372300028800964, -0.7517489194869995, 0.5076594948768616, 0.3063996136188507, 1.3463307619094849, 0.540214478969574, -0.12579475343227386, 0.5157300233840942, -0.665781557559967, -0.1305118203163147, 0.26297974586486816, 0.10400483012199402, 0.12097002565860748, -0.7570230960845947, -0.7166616320610046, 0.3823951482772827, -0.19890251755714417, -0.29629257321357727, -0.7919244170188904, -0.07655724883079529, 0.22896379232406616, -0.27073410153388977, 0.6169727444648743, -0.7015929818153381, -0.4822019636631012, 0.2645951807498932, 0.01374020054936409, 0.49269455671310425, -0.3579406440258026, -0.5238772630691528, -0.3082645833492279, 0.1684679239988327, -0.053362198173999786, -0.4853450357913971, -0.8702687621116638, -0.13819098472595215, 0.29169517755508423, 0.2661742866039276, -1.129875659942627, -0.5948014855384827, -0.03521718084812164, 0.0874939113855362, 0.0747426375746727, 0.7236540913581848, 0.8609139323234558, -0.5332314372062683, -0.08113593608140945, 0.23638123273849487, 0.509820282459259, 0.8381580114364624, 0.20922161638736725, 0.1690434217453003, -0.8833410739898682, -0.06413203477859497, 0.20596428215503693, -0.2733859717845917, -0.49117711186408997, -0.0970301404595375, -1.146910309791565, -0.2219427227973938, -0.3538982570171356, -0.40590420365333557, 1.4894709587097168, 0.2035006433725357, 0.3327224552631378, 1.1141564846038818, -0.3460330665111542, -0.7081987857818604, 0.4072197675704956, 0.4760606586933136, 0.3461824655532837, 0.20811259746551514, 0.8914614915847778, 0.6089432835578918, 0.4450323283672333, 0.6301257610321045, -0.607553243637085, 0.9468105435371399, 0.2939413785934448, -1.097240686416626, -0.324153333902359, 0.3885394036769867, 0.60442715883255, 0.5444966554641724, 0.5050492286682129, -0.15039299428462982, -1.4969936609268188, 1.2711853981018066, -0.19836977124214172, 0.9853341579437256, 0.5737542510032654, 0.8500818610191345, 1.6078319549560547, -1.0703760385513306, -0.34462302923202515, 0.3776947259902954, 0.43214473128318787, 0.4383682608604431, 0.2740427851676941, 0.4435046911239624, -1.2104065418243408, -0.002690340159460902, 0.5343762040138245, 0.1622038632631302, 0.7730218768119812, -0.6013630032539368, 0.026755886152386665, 0.388381689786911, -0.1389656364917755, 0.39500343799591064, -0.1651509702205658, -0.3874412775039673, 0.4807324707508087, -0.13056010007858276, 0.3164575397968292, 0.5604800581932068, 0.5937709808349609, 1.4995479583740234, -0.8690816164016724, -1.0902836322784424, 0.24272464215755463, -0.9049389958381653, 0.22798562049865723, 0.7292012572288513, -0.7249905467033386, -0.2775983214378357, -1.443016529083252, -0.2866688668727875, 0.11959762871265411, -0.4158547520637512, 0.06024222448468208, -0.017409900203347206, -0.810282289981842, -0.48075273633003235, -0.20853914320468903, 1.209523320198059, 1.2033406496047974, 0.8972777724266052, 0.6116865873336792, 0.3635473847389221, -0.3131341338157654, 0.5730659365653992, 0.11014824360609055, -0.43653520941734314, 0.27834340929985046, -0.8705494999885559, -1.1916322708129883, 0.7054147124290466, 1.222516655921936, 0.7093570232391357, 0.24029986560344696, 1.0502737760543823, 1.6712604761123657, -1.1749762296676636, -0.8926350474357605, 0.027996979653835297, -0.303139865398407, 0.8183532953262329, 0.1607932448387146, -0.766061007976532, -0.38317254185676575, 0.8560749888420105, -2.139199733734131, 1.2572312355041504, 0.023616008460521698, -1.177493929862976, -0.16642363369464874, -0.15061528980731964, 0.8394911885261536, 0.6331800818443298, -0.7193549275398254, 0.2059614062309265, 0.8520855903625488, -0.9469015002250671, -1.165853500366211, 0.5227713584899902, 0.12376154959201813, 0.6835066080093384, -0.3985799551010132, 0.6405400037765503, 0.5379164218902588, 0.15469014644622803, 0.7055099606513977, 0.687292754650116, 1.1010980606079102, 0.2541060149669647, 0.13413268327713013, -2.012146472930908, -0.44248631596565247, -0.9401341676712036, 0.21601149439811707, -0.018429363146424294, 1.4530588388442993, -0.00797165185213089, -0.5498302578926086, 0.5145759582519531, -0.10168828070163727, -0.4139029085636139, -0.7966955900192261, -0.5916980504989624, 0.9342043995857239, 0.3111436665058136, -0.5062512159347534, 0.029113883152604103, -0.19317716360092163, -0.3447759449481964, 0.031942371279001236, 0.27447211742401123, 0.7150377631187439, -1.6119859218597412, -0.5487121343612671, -0.018032655119895935, 0.12169229239225388, 0.10493858903646469, -0.07969033718109131, 0.2249501794576645, -0.9573458433151245, -1.399789571762085, -0.4323793053627014, -0.2197655737400055, 0.39912161231040955, -0.8846858739852905, -0.4661245346069336, -0.2308633029460907, -1.514255404472351, 1.0943628549575806, -0.15689167380332947, -1.2026069164276123, -0.543502688407898, -1.2641332149505615, 0.8812037706375122, 0.02996455691754818, -0.015667326748371124, 0.3930860459804535, 0.5968249440193176, -0.6094823479652405, 0.042818740010261536, -0.8341696858406067, 0.2027437835931778, 1.1029630899429321, 1.5576844215393066, -0.592064619064331, 0.09595954418182373, 0.26277032494544983, -0.13548073172569275, -0.252492755651474, 0.0018544960767030716, -1.1401474475860596, 0.476962685585022, 0.4002560079097748, 0.40213075280189514, 0.12061886489391327, 1.2865357398986816, 0.11374077945947647, 0.5577254891395569, -0.05327247828245163, 0.09392517805099487, -0.2099967896938324, -0.3024241030216217, -0.6886435747146606, 0.5080843567848206, -1.3149341344833374, -0.5191829204559326, 0.34016865491867065, -0.42769676446914673, -0.03928418084979057, 0.9438234567642212, 0.31547921895980835, -0.5457804799079895, -0.05009844899177551, 0.2320999801158905, 0.1584288775920868, -0.6565319299697876, 0.8080421686172485, 0.1547589898109436, -0.9842249751091003, -0.3773038387298584, 0.5442464351654053, 0.928969144821167, -0.9595156908035278, 0.35439613461494446, -0.07940296083688736, 0.5883737802505493, -0.24569754302501678, 0.7757411599159241, 0.44152697920799255, -0.400869756937027, -0.4765317738056183, 0.7872925400733948, 1.1573410034179688, 0.4301438629627228, 0.5114505887031555, 0.9462358951568604, -0.09942968189716339, 0.85714191198349, -0.28585517406463623, 0.07644322514533997, -1.2068402767181396, 0.3050263226032257, -0.19104769825935364, 0.012373348698019981, -0.6180023550987244, 0.5640604496002197, -0.002321343868970871, 0.08747400343418121, 0.6379756331443787, 0.3143670856952667, -0.343485027551651, 0.4043079614639282, 0.4278314411640167, -0.09134960174560547, 0.35973644256591797, 0.29796889424324036, 0.7806059718132019, -0.018494660034775734, 0.04020410403609276, 0.42041733860969543, 0.020128769800066948, -0.05504637584090233, 0.33908721804618835, -0.5320942401885986, -0.08824704587459564, -0.49916601181030273, -1.1825436353683472, 0.15439045429229736, 0.03934433311223984, -0.5795400738716125, 0.37233036756515503, -1.2862071990966797, -0.7325308918952942, -0.02168266661465168, -0.36025822162628174, -0.11701890826225281, -0.5725500583648682, -0.46781468391418457, 0.21520398557186127, 0.5981494188308716, 2.2312748432159424, 0.31078580021858215, 0.9591943025588989, 0.05696026608347893, 0.4245966970920563, 0.34365060925483704, -0.16864128410816193, 0.30956950783729553, 0.06860929727554321, -0.4056532680988312, -0.5579878687858582, -0.399827241897583, -0.5457080006599426, -0.3831396996974945, 0.9546093344688416, 0.10156671702861786, 0.43333005905151367, 0.10568835586309433, -1.4238373041152954, -1.0913137197494507, 0.835342288017273, 1.142175555229187, -1.4291720390319824, -0.21156786382198334, -0.04225519672036171, -0.19126658141613007, 0.18268823623657227, 1.2029647827148438, -0.6328698396682739, 0.8119885325431824, 0.2647917568683624, 0.09795812517404556, -1.0874240398406982, -0.3583873510360718, 0.3327762186527252, -0.6354967355728149, 0.420609712600708, -0.7771114706993103, -0.1082257553935051, -0.2797192335128784, -0.42594656348228455, -0.012362940236926079, 0.0016988329589366913, -0.23184140026569366, 0.36320674419403076, 0.3572237193584442, -0.8116267919540405, -0.5855244398117065, 0.9373539686203003, 0.31587743759155273, -0.3421449363231659, 0.6621325612068176, -0.5537499785423279, -0.9797406792640686, 0.7922824025154114, 0.6998917460441589, 0.2949279844760895, 0.5726812481880188, 1.9333553314208984, 1.531845211982727, -0.1836836040019989, -0.47384992241859436, -0.42108672857284546, 0.6684868335723877, -1.0128319263458252, -0.908044159412384, -0.2188391387462616, -0.08383277803659439, 0.3255707919597626], [0.5193480849266052, 1.7859516143798828, -1.7993453741073608, -1.3912668228149414, 0.1955994814634323, -0.11059939116239548, 0.6606051325798035, 0.5829099416732788, -0.5074655413627625, -0.8368289470672607, -0.7840495705604553, 0.6290220022201538, 0.8014944791793823, 1.6868261098861694, 1.1346769332885742, -0.34313899278640747, 0.6819494366645813, -0.8339492082595825, 0.85716313123703, 1.0355364084243774, 0.6186221837997437, 0.4631226062774658, -1.0007305145263672, -0.5786211490631104, 0.23049406707286835, 0.49928706884384155, -1.223922610282898, 0.21471847593784332, -1.7427558898925781, -1.0909901857376099, 0.9517908692359924, -0.4429440200328827, 0.13894255459308624, -0.8119634985923767, -2.0206048488616943, -1.4815655946731567, 1.425286889076233, 0.7472032904624939, -0.2214793711900711, 0.8999022245407104, 1.1890426874160767, 0.49301615357398987, -0.47199109196662903, -1.2587236166000366, 0.45145630836486816, 0.20563501119613647, 0.27356743812561035, -0.4688415825366974, -0.17449891567230225, -1.464880347251892, 0.5824679136276245, -0.4733082950115204, 0.6089394688606262, 0.6273667812347412, 0.9545872807502747, 0.4364170730113983, -0.31986483931541443, 0.7652508616447449, 0.20833691954612732, -0.2431047409772873, 1.0984054803848267, 0.2233646661043167, -0.8905618786811829, -0.22973015904426575, 0.05463726446032524, -0.213655486702919, 0.6292083859443665, 0.0687914788722992, -0.4710254967212677, 0.21853050589561462, 0.7765047550201416, 0.31460800766944885, -0.994964063167572, -0.10537492483854294, -1.644531488418579, -0.08845892548561096, -0.05870194733142853, 0.3247775435447693, 0.01799158565700054, 0.6232848167419434, -1.4117311239242554, 0.008343391120433807, 0.03298274427652359, -0.3769003748893738, 1.0129867792129517, 0.5928239822387695, 0.21269133687019348, -0.28940489888191223, 0.15972022712230682, 1.6724212169647217, -0.35887372493743896, 0.6646257638931274, 0.3096955418586731, -0.03700695186853409, -0.5354713797569275, -0.8766143321990967, 0.10406885296106339, 0.2679412364959717, 0.04902934283018112, -0.4515400230884552, -0.46221402287483215, -0.8591393232345581, 1.1956065893173218, 0.5062585473060608, 0.6593780517578125, 1.4426970481872559, 0.9645792245864868, -1.0037025213241577, -1.1442071199417114, -0.27280357480049133, 0.1617051512002945, -0.2863631546497345, -0.9372252225875854, -0.6930733919143677, -0.4377995729446411, -0.02099008858203888, 0.9584504961967468, 0.023118067532777786, 0.5204366445541382, 0.4811493456363678, -0.1014513447880745, -0.4911905825138092, -0.38058221340179443, 0.9675328135490417, 0.9740108251571655, -0.3465670943260193, -0.7883988618850708, -0.03357242792844772, 0.400234580039978, -0.8901227116584778, 0.12350883334875107, 0.3708838224411011, -0.3314967453479767, 0.8635138869285583, 0.11231624335050583, 0.6335203647613525, -0.17091555893421173, -0.2566530704498291, 0.42544829845428467, -0.9846084117889404, 0.056157294660806656, -0.9268414378166199, -0.5954148769378662, -0.824393630027771, 0.7612440586090088, -0.37275153398513794, 0.50630784034729, 0.20159770548343658, -1.1380540132522583, 0.405594140291214, -0.8111740946769714, 0.04819962754845619, 0.4156876504421234, 1.751101016998291, -0.2572847902774811, 0.25652238726615906, 0.9375028610229492, 0.2969514727592468, -0.5341964364051819, 0.7657194137573242, 0.7558263540267944, 0.2491227239370346, -1.471136450767517, 1.4291753768920898, 0.03201182559132576, -0.724635899066925, 1.4600753784179688, 0.16366344690322876, -0.06725581735372543, 0.7731029391288757, -0.9996261596679688, -0.10634621232748032, -0.6616307497024536, 0.48125872015953064, 0.11830821633338928, 0.3188090920448303, 1.2678658962249756, -0.7456645965576172, -0.7653156518936157, -0.5239382386207581, 0.2727971374988556, -0.13111089169979095, -0.2516029477119446, -0.5377378463745117, 0.3563210368156433, -0.5392113327980042, -0.21896734833717346, -0.7168830633163452, -0.14087693393230438, -0.47264039516448975, -1.1952475309371948, 0.6869494915008545, -1.765775442123413, -0.4020042419433594, -0.12387782335281372, -1.3577935695648193, 0.8886827230453491, -0.8590592741966248, -0.37035053968429565, 0.3420894742012024, -0.275333046913147, -0.09057123959064484, -0.980134904384613, 0.3122754693031311, -0.8932620286941528, 0.29374703764915466, -0.6928994655609131, 0.48448070883750916, -0.7248426079750061, 0.4254568815231323, 0.7750774621963501, 0.41645199060440063, -0.5094700455665588, 0.94403076171875, 0.20338965952396393, -1.29009211063385, -0.25742781162261963, 0.364517480134964, 0.5655887126922607, 0.721987247467041, 0.6175711154937744, -0.16081342101097107, 0.9840577840805054, 0.9161324501037598, 0.008998681791126728, 0.5420976877212524, -1.0854729413986206, -0.6197888851165771, -1.2693079710006714, 0.35471272468566895, -0.5247376561164856, -1.4891331195831299, 0.5619978308677673, 0.9843361973762512, -1.042291283607483, 0.24550189077854156, -0.34207403659820557, 0.3393198549747467, 0.9472107887268066, 1.1755715608596802, -0.24312081933021545, 0.2577071189880371, -0.26085591316223145, -0.4101385772228241, -0.5482375621795654, 0.5688050389289856, 1.5687625408172607, 0.3504275977611542, 0.2137308120727539, 1.5215041637420654, -0.6616315245628357, -0.34428051114082336, 0.44541600346565247, -0.10183797776699066, 0.273436963558197, -0.573299765586853, -0.058543816208839417, -0.7985246181488037, -1.4682389497756958, 1.4354205131530762, 0.6990247368812561, -1.7357362508773804, -0.572251558303833, -0.29880496859550476, 0.07263975590467453, -0.687491774559021, 0.1596325784921646, -0.3412320017814636, 0.35327476263046265, -0.1812170147895813, -0.2720208168029785, 0.15888670086860657, -0.3088493347167969, 0.6587729454040527, -0.021130641922354698, -0.07115179300308228, -0.23852065205574036, 0.18338385224342346, 0.8277117013931274, 0.5120276808738708, -0.14902140200138092, -1.9781694412231445, 0.08654291927814484, -0.25236591696739197, 0.8004918098449707, 0.18204903602600098, -0.16628940403461456, -0.1577802151441574, 0.7736806869506836, -0.4779304265975952, -0.3496286869049072, 0.044071607291698456, -0.6984631419181824, -0.2000410258769989, -0.5149655342102051, 0.6156690716743469, 0.13984182476997375, -0.5466985702514648, -0.8995656967163086, -0.44777676463127136, 0.07654811441898346, 1.1587094068527222, 0.43910926580429077, 1.4650722742080688, -0.4381992220878601, -0.477418452501297, -0.3219563066959381, -0.26432347297668457, -0.05926550179719925, 0.4040326476097107, -0.5436484813690186, -0.29132479429244995, -0.8522951006889343, -0.41323167085647583, -0.023703744634985924, 1.4383964538574219, -0.16348762810230255, 1.1627683639526367, 0.5700196027755737, -0.09194187819957733, -1.0234746932983398, -0.724425196647644, 0.3853370249271393, -1.4751591682434082, 0.827521800994873, 0.7445236444473267, -0.3342941105365753, 0.5057541728019714, -0.10825823247432709, -0.056981004774570465, 0.9716952443122864, 0.370715469121933, 0.35611873865127563, -0.6298778057098389, -0.3571292459964752, -0.14898884296417236, 0.6223989725112915, 0.0725899338722229, -0.011521072126924992, -1.071547031402588, 0.06927691400051117, 0.1998584270477295, -0.16255956888198853, -0.4078364372253418, 0.965665340423584, -0.450690895318985, -0.25762519240379333, -0.5962539911270142, 0.4334246814250946, 1.4826387166976929, 0.18484312295913696, 0.3305957317352295, -0.7069781422615051, -0.38575437664985657, -0.37975582480430603, 0.7853954434394836, 1.0420244932174683, 0.7642727494239807, -0.19345489144325256, 0.34337204694747925, 0.9118444919586182, 0.20790265500545502, -0.03964288905262947, -1.032914638519287, 1.0329951047897339, 0.2694509029388428, 1.1611878871917725, 0.5468913912773132, -0.18195655941963196, 0.03254270926117897, -0.05537259951233864, -0.21725493669509888, 0.062021780759096146, 0.11759260296821594, 0.29499125480651855, -0.5280197858810425, -0.520553708076477, 0.08222727477550507, -0.21720285713672638, -0.22942744195461273, 0.3833785951137543, 0.05394989252090454, 0.12565462291240692, -0.12512291967868805, 0.7665659785270691, -1.0027884244918823, -0.28040897846221924, -0.2894912660121918, -0.7476683855056763, 0.2867209017276764, -0.024670036509633064, -1.1200153827667236, -0.10589016228914261, 0.21239390969276428, 0.027820654213428497, -0.74410080909729, -0.9590764045715332, -0.4949905276298523, 0.30806463956832886, 0.7786392569541931, -1.1768288612365723, -0.022646663710474968, -0.2800322473049164, 0.2822081744670868, 0.26859328150749207, 0.04956101253628731, 0.5586400032043457, -0.18470433354377747, -0.07029121369123459, 0.470537930727005, 0.48344945907592773, 0.9621421694755554, 0.3237602412700653, -0.2810395061969757, -0.6927223801612854, -0.14956513047218323, 0.7559905648231506, -0.30221015214920044, -0.5699727535247803, 0.15734849870204926, -1.391878366470337, -0.040813859552145004, -0.8259053826332092, -0.4237261712551117, 1.1147133111953735, 0.010712350718677044, -0.3412685692310333, 1.1155805587768555, -0.2057335376739502, -1.447776198387146, 0.03750839829444885, 0.19320736825466156, 0.1727646142244339, -0.1755513697862625, 0.6774948835372925, 0.6615558862686157, -0.12523099780082703, 0.6199765205383301, -0.1177813708782196, 0.5732809901237488, -0.43197891116142273, -0.9766362309455872, 0.38596850633621216, 0.5082759857177734, 1.0769011974334717, 0.8251823782920837, 0.6464030146598816, -0.8705875277519226, -1.4599580764770508, 0.9395490288734436, -0.5762816667556763, 0.9111087322235107, 0.7165445685386658, 0.9706860184669495, 1.5875078439712524, -1.7860888242721558, -0.176711767911911, 0.7892964482307434, 0.4554746150970459, 0.8821069598197937, 0.38945308327674866, 0.24192969501018524, -0.7371686697006226, 0.12529803812503815, 0.4393424391746521, -0.01450119074434042, 0.32796990871429443, -0.26754000782966614, -0.5611038208007812, 0.5297099351882935, -0.698894739151001, -0.33483147621154785, 0.23802070319652557, -0.37058448791503906, 0.3746880888938904, -0.5010955929756165, 0.07178405672311783, 0.99283367395401, 0.8427188396453857, 1.249766230583191, -1.1508381366729736, -1.570353627204895, 0.4460562467575073, -0.44892042875289917, 0.011139526031911373, 0.6699689030647278, -0.9029281139373779, -0.3863792419433594, -1.2967665195465088, -0.2821268141269684, 0.6027872562408447, -0.3534564673900604, -0.20408698916435242, -0.4235520362854004, -0.7870963215827942, 0.2126058042049408, -0.008032413199543953, 1.4538942575454712, 1.1017324924468994, 0.6772112250328064, 0.5107054710388184, -0.4818325638771057, -0.5959444046020508, -0.014473016373813152, 0.0356704518198967, -0.6059489846229553, 0.3006620407104492, -0.8658905029296875, -0.9983261227607727, 1.1925157308578491, 1.227047085762024, 0.5645139217376709, 0.593419075012207, 1.1186528205871582, 1.893712043762207, -0.8537284731864929, -0.7745137214660645, -0.07370935380458832, -0.3308170437812805, 0.4721696972846985, 0.5615953803062439, -0.4063717722892761, -0.38949617743492126, 0.4157743453979492, -2.6056313514709473, 1.0043383836746216, 0.3861253261566162, -0.5072072744369507, -0.2078286111354828, -0.5337724685668945, 0.9241587519645691, 0.7920590043067932, -1.0557254552841187, 0.07003310322761536, 0.5135042071342468, -1.4143885374069214, -1.144117832183838, -0.28705650568008423, 0.4110807776451111, 0.7441458702087402, -0.8629262447357178, 0.7835168838500977, 0.20003686845302582, 0.489617258310318, 0.8057211637496948, 0.5339271426200867, 1.0128098726272583, 0.7649571895599365, -0.04681891202926636, -1.873822569847107, -0.1060902327299118, -0.7781344056129456, 0.2153978943824768, -0.33765795826911926, 1.4187045097351074, 0.46621423959732056, -0.649263858795166, 1.0697591304779053, -0.10211044549942017, -0.9470861554145813, -0.8563531637191772, -0.7192962765693665, 0.47532957792282104, 0.6175459027290344, -0.718001127243042, -0.17597469687461853, -0.7040005922317505, -0.1671663075685501, -0.36171674728393555, 0.271236777305603, 0.8557673692703247, -1.3044861555099487, -0.6543206572532654, 0.23654088377952576, -0.028566328808665276, 0.3450753390789032, -0.06472256779670715, 0.626688539981842, -0.658508837223053, -1.0942307710647583, -1.1759312152862549, 0.4079534709453583, 0.23996751010417938, -0.6809229254722595, -0.2879221737384796, 0.23005090653896332, -1.9900811910629272, 1.171910285949707, -0.4305958151817322, -1.1557484865188599, -0.27347588539123535, -0.77254718542099, 0.9877549409866333, -0.5173100829124451, 0.3365649878978729, 0.4656921625137329, 0.6974507570266724, -0.27796247601509094, -0.24059629440307617, -1.1890721321105957, 0.591027557849884, 1.3997375965118408, 0.8978816866874695, -0.6934682130813599, 0.7492884993553162, 0.10301363468170166, -0.6559833288192749, -0.08550361543893814, 0.032695140689611435, -1.8142409324645996, 0.45472609996795654, 0.5192579030990601, 0.6240037679672241, 0.6160475015640259, 1.1677912473678589, 0.6744846701622009, 0.9109872579574585, -0.36766302585601807, 0.1716138869524002, 0.21487519145011902, -0.24760939180850983, -0.6973125338554382, 0.42241743206977844, -1.4119926691055298, -0.8093987107276917, 0.6767822504043579, -0.7149267196655273, -0.27623969316482544, 0.9219108819961548, 0.05292040482163429, -0.036474570631980896, 0.017061632126569748, 0.06520219147205353, 0.18602675199508667, -0.6891626715660095, 1.0126140117645264, 0.21191559731960297, -1.0626696348190308, -0.36152321100234985, 0.582615315914154, 0.6296408772468567, -1.2899359464645386, 0.3086138665676117, -0.4257262349128723, 0.5642387270927429, 0.11019787192344666, 0.5551988482475281, 0.8757394552230835, -0.37168511748313904, -0.7461464405059814, 0.7606821656227112, 1.6087974309921265, -0.12565627694129944, -0.07049403339624405, 1.005842685699463, 0.14788605272769928, 0.2668799161911011, 0.1587291955947876, -0.463177889585495, -1.4011168479919434, 1.0153543949127197, -0.22792740166187286, -0.7035015225410461, -0.6163703203201294, 0.29231536388397217, -0.7633339166641235, -0.07059428840875626, 0.7589263319969177, 0.29867106676101685, -0.354458749294281, 0.7760723233222961, 0.3288755714893341, -0.14540702104568481, 0.46987617015838623, 0.3741964101791382, 0.5333572626113892, -0.38907739520072937, 0.46731191873550415, 0.06311012804508209, 0.007363041862845421, 0.055689360946416855, 0.14458557963371277, -0.0905189961194992, 0.4413492679595947, -0.6508772969245911, -1.9871207475662231, -0.16509880125522614, -0.6499739289283752, -0.10201883316040039, 0.7032983303070068, -0.9125736355781555, -0.3290926516056061, 0.19942902028560638, -0.10578639805316925, 0.009519878774881363, -1.1589696407318115, -0.5386360287666321, 0.0778437927365303, 0.5082961320877075, 1.4954010248184204, 0.350646048784256, 0.9144012331962585, 0.1859542578458786, 0.5034169554710388, 0.13760478794574738, -0.1939295083284378, -0.005503354128450155, 0.25907033681869507, 0.02589190937578678, -0.5312998294830322, 0.05000489950180054, -0.4360402524471283, -0.3999398648738861, 0.9644352197647095, -0.6028683185577393, 0.17757150530815125, -0.05039898678660393, -1.6414649486541748, -0.5789861083030701, -0.012078415602445602, 0.6762238144874573, -0.6325118541717529, -0.1554969698190689, -0.23607957363128662, 0.19260157644748688, -0.05495990067720413, 0.8181559443473816, 0.06491943448781967, 1.3778408765792847, 0.676440954208374, -0.1251082718372345, -1.2305402755737305, -0.45048075914382935, 0.6348522901535034, -0.3906988799571991, 0.22389085590839386, -0.8917437791824341, -0.06091396138072014, -0.30137935280799866, -0.7284929156303406, 0.2210829108953476, 0.21254689991474152, -0.3946245014667511, -0.17506837844848633, -0.05331439524888992, -0.7551557421684265, -1.1608291864395142, 0.6623319387435913, 1.0909428596496582, -0.24505387246608734, 0.11970584839582443, -0.341786652803421, -0.5373943448066711, 0.35932087898254395, 0.5516642928123474, 0.41438624262809753, 0.45617181062698364, 1.5153915882110596, 2.0122148990631104, -0.0007575768977403641, -0.18024367094039917, -0.09768415987491608, 0.557902455329895, -1.2017624378204346, -0.1796901822090149, -0.5314472317695618, -0.06701204925775528, -0.2711241841316223], [0.48334330320358276, 1.5124090909957886, -1.4560174942016602, -1.3149583339691162, 0.53092360496521, -0.7229890823364258, 0.5858429670333862, 0.7813279628753662, -0.6293761730194092, -1.2713872194290161, -1.228276014328003, 0.874670684337616, 0.5297130346298218, 0.7659842371940613, 1.0646103620529175, 0.22772669792175293, 1.2102043628692627, -0.6947996020317078, 0.14607533812522888, 0.9073978066444397, 0.6909390687942505, 0.13153280317783356, -0.2414659708738327, -0.9402483701705933, 0.7657018303871155, 0.12671443819999695, -1.3268200159072876, 0.8137428760528564, -1.3574645519256592, -1.5534119606018066, 1.3490560054779053, -0.9365476369857788, 0.35554835200309753, -0.5556647181510925, -1.6047074794769287, -0.901674747467041, 1.1282137632369995, 0.40121132135391235, -0.3977653384208679, 0.797925591468811, 1.500998616218567, 0.7940434813499451, -0.388313353061676, -1.018828272819519, 1.2008761167526245, -0.5341607332229614, 0.2619413435459137, -0.8886392712593079, -0.36802759766578674, -1.6219565868377686, 0.6367905139923096, -0.4076932966709137, -0.10243361443281174, 0.6370826959609985, 0.8160709142684937, 0.5170797109603882, -0.3060416281223297, 0.5520661473274231, -0.09220892190933228, -0.8850880861282349, 0.9286638498306274, 0.45615553855895996, -0.7533618211746216, 0.8041175603866577, -0.05273834615945816, -0.3248971402645111, -0.19230493903160095, 0.5445044636726379, -0.3371324837207794, -0.3694128692150116, 0.6426125764846802, 0.2928849458694458, -0.6206579208374023, 0.06339138001203537, -1.417046070098877, 0.22605641186237335, 0.2026747316122055, 0.2582281529903412, -0.18622513115406036, 1.3233662843704224, -0.4215999245643616, -0.6563271284103394, -0.463463693857193, -0.9905315041542053, 0.5305593013763428, -0.25652843713760376, 0.03165234625339508, -0.0029624514281749725, -0.40880832076072693, 1.9176852703094482, -0.11548809707164764, 0.06919555366039276, -0.2436271756887436, 0.5154539346694946, -0.5168254971504211, -0.7074613571166992, -0.025516383349895477, 0.24066868424415588, -0.16282328963279724, -0.467204749584198, -0.7882360219955444, -0.5143865346908569, 0.8012073040008545, 0.37180450558662415, 0.24810342490673065, 1.3280545473098755, 1.0241353511810303, -1.0840098857879639, -0.782650887966156, -0.22125017642974854, -0.2918529808521271, -0.2047978788614273, -0.6685206890106201, -0.7578142881393433, -1.3915550708770752, -0.059047553688287735, 0.9081129431724548, -0.00018780911341309547, 0.7892851233482361, 1.0066235065460205, -0.6065202951431274, -1.1858909130096436, -0.18655891716480255, 0.35701704025268555, 0.936279833316803, -0.2514718472957611, -0.9042997360229492, -0.18389007449150085, 0.7234559655189514, -0.4059368669986725, -0.03721456602215767, 0.27157479524612427, -0.27971363067626953, 1.0895476341247559, 0.36607763171195984, 0.9175659418106079, 0.18675115704536438, -0.717913031578064, 0.3933548033237457, -0.7012238502502441, -0.10016117990016937, -0.6439882516860962, -0.4953523278236389, -0.8971671462059021, 0.18022695183753967, -0.7718931436538696, -0.5508302450180054, 0.3315001428127289, -0.8434079885482788, 0.9576162695884705, -0.9486193060874939, 0.48432329297065735, -0.07156114280223846, 1.6393802165985107, -0.12140002846717834, 0.7371865510940552, 0.7433789968490601, 0.36406180262565613, -0.6957382559776306, 0.051748115569353104, 1.105031967163086, 0.2966386079788208, -1.3129780292510986, 0.9792352318763733, 0.3708422780036926, -0.49262431263923645, 0.6817227005958557, 0.5266921520233154, -0.5138969421386719, 0.8118484020233154, -1.1953414678573608, -0.2550944983959198, -0.670260488986969, 0.6335482597351074, -0.20181314647197723, 0.3278084695339203, 1.150070071220398, -1.151540756225586, -1.286281704902649, -1.0649603605270386, 0.32183438539505005, -0.5821604132652283, 0.12496335059404373, 0.14186754822731018, 0.09242565184831619, 0.2609426975250244, -0.10590406507253647, -0.8481811881065369, 0.2201840728521347, -0.7443735599517822, -0.8629354238510132, 0.1815875917673111, -1.1243298053741455, 0.10348399728536606, -0.21892227232456207, -0.9345365166664124, 0.6510105133056641, -1.1341700553894043, 0.24957819283008575, 0.35261231660842896, 0.06212877854704857, -0.4494125545024872, -1.3450170755386353, 0.03360667824745178, -0.5323390960693359, 0.6649784445762634, 0.08529738336801529, -0.0682426393032074, -0.5446248054504395, 0.6173002123832703, 1.2713335752487183, 0.026981418952345848, -0.3818730413913727, 0.5148479342460632, 0.7105885744094849, -1.016824722290039, -0.25720176100730896, 0.6573435664176941, 0.39883679151535034, 0.2996789216995239, 0.829353392124176, 0.010514296591281891, 0.7134179472923279, 0.613294243812561, 0.2075568288564682, -0.02027835324406624, -1.6167171001434326, 0.11676709353923798, -1.0446754693984985, -0.6907974481582642, -0.14022044837474823, -0.978874921798706, 0.6257860660552979, 0.724330484867096, -0.07777270674705505, 0.990475058555603, -0.12841156125068665, 0.4442325532436371, 0.3575799763202667, 1.4968957901000977, 0.5225791335105896, 0.15172195434570312, -0.656599223613739, 0.39179903268814087, -0.16738887131214142, 0.013844098895788193, 1.1853864192962646, -0.013841399922966957, -0.3126120865345001, 1.89449942111969, 0.06084166467189789, -0.16702499985694885, 0.7103089094161987, -0.08514430373907089, 0.05356423184275627, -0.5015965104103088, 0.14993201196193695, 0.0298320185393095, -1.051234483718872, 1.0615328550338745, 0.9030657410621643, -1.9230475425720215, -0.4394603669643402, -0.13959527015686035, -0.6130842566490173, -0.6114928722381592, -0.15079213678836823, -0.6700913906097412, 0.3394078016281128, -0.13492532074451447, -0.30747082829475403, 0.2579571306705475, 0.03909287974238396, 0.7704579830169678, -0.27843084931373596, -0.08446435630321503, 0.10972633212804794, 0.23385056853294373, 0.32452571392059326, 1.1188050508499146, -0.38975778222084045, -1.8809844255447388, -0.43649670481681824, -0.6521341800689697, 0.5385175347328186, 0.5753493309020996, -0.7886673212051392, 0.1259620487689972, 1.0432982444763184, -0.538062572479248, -0.09082116186618805, -0.04671400785446167, 0.14865481853485107, 0.14100144803524017, -0.6354559659957886, 1.1157509088516235, 0.28633633255958557, -0.5365705490112305, -0.5157297849655151, -0.7747673988342285, 0.139798104763031, 0.7812918424606323, 0.8823477625846863, 0.9595873355865479, 0.5013225078582764, 0.026491304859519005, -0.9057283997535706, -0.03540647402405739, -0.11200685054063797, 0.3117915689945221, -0.5444461703300476, -0.8471958041191101, -0.3657948076725006, -0.5476369857788086, -0.10953493416309357, 1.1746922731399536, -0.09668312966823578, 0.9956067800521851, 0.8955346941947937, 0.19342239201068878, -0.8288874626159668, -0.8412532806396484, 0.2115691602230072, -1.3859530687332153, 0.6446406841278076, 0.6895976662635803, -0.1464506834745407, 0.52989262342453, -0.09587980806827545, 0.2644481956958771, 0.7667312026023865, 0.42169004678726196, 0.1225278303027153, -0.8944647312164307, -0.14207576215267181, -0.08729307353496552, 1.1257692575454712, 0.12319584935903549, 0.0163510013371706, -0.12593358755111694, -0.5406284928321838, -0.37371230125427246, 0.7403380870819092, 0.1716257631778717, 0.6176930665969849, -0.19258463382720947, -0.23381634056568146, -0.49041587114334106, 0.925520122051239, 1.5019603967666626, -0.203485369682312, 0.8094407320022583, -0.7914735078811646, -0.2467762976884842, -0.6841509938240051, 0.9603711366653442, 0.5981417298316956, 1.1739516258239746, 0.6011718511581421, -0.06608449667692184, 1.1429808139801025, 0.0036788880825042725, 0.5093615055084229, -1.2436240911483765, 0.29271751642227173, 0.43379664421081543, 1.255142092704773, -0.06447680294513702, -0.06773661822080612, 0.4860093593597412, -0.01988997682929039, -0.8438672423362732, -0.1530395746231079, 0.6209047436714172, 0.08265314251184464, -0.468149334192276, -0.5983436107635498, -0.042367495596408844, -0.3049158751964569, -0.27562668919563293, 0.33112484216690063, -0.10832341760396957, -0.3341312110424042, -0.4760165810585022, 0.1960781067609787, -0.3651808798313141, -0.33703598380088806, -0.05928735062479973, 0.07110559940338135, 0.10790754109621048, -0.17404957115650177, -0.057433001697063446, 0.39057281613349915, -0.04578704759478569, 0.33927664160728455, -0.32034558057785034, -0.9157488942146301, -0.15434905886650085, -0.3969530165195465, 0.5611595511436462, -1.4843553304672241, -0.447642058134079, -0.43858519196510315, 0.44078725576400757, -0.33817583322525024, -0.06417211890220642, -0.06912403553724289, -0.11114072054624557, 0.3825731575489044, -0.40365713834762573, 0.6508499383926392, 1.1552002429962158, 0.06285158544778824, -0.1949406862258911, 0.22295349836349487, -0.39531034231185913, 0.5663830637931824, -0.6329490542411804, -0.45297956466674805, 0.165178582072258, -1.0584772825241089, 0.1449003666639328, 0.06806173920631409, -0.38483160734176636, 1.6634912490844727, -0.1431533694267273, -0.1449294537305832, 0.6523390412330627, 0.5148594975471497, -1.1917223930358887, 0.8542355298995972, 0.3994849920272827, 0.4486970603466034, -0.28064966201782227, 0.4595043659210205, 0.06220242753624916, -0.2566704750061035, 0.7051467299461365, -0.14420638978481293, 0.7388644218444824, 0.2456897348165512, -0.7788202166557312, 0.0018805647268891335, 0.6139256954193115, 0.984778881072998, 0.49681901931762695, 0.9679874777793884, -0.6627629995346069, -0.9806779623031616, 1.0804346799850464, -0.16048529744148254, 1.3758784532546997, 1.0898786783218384, 0.6422354578971863, 1.5304384231567383, -1.5152485370635986, -0.04956504702568054, 0.7567339539527893, 0.4579410254955292, 0.05214110389351845, 0.41043081879615784, 0.43408963084220886, -0.765720546245575, -0.07098497450351715, 0.7794910073280334, -0.3851009011268616, 1.0776537656784058, -0.6271846890449524, -0.2875177264213562, 0.11172207444906235, -1.090762734413147, 0.24756382405757904, -0.4455147385597229, -0.6278384923934937, 0.2043098658323288, -0.5024244785308838, 0.3633207678794861, 0.7694116234779358, 0.6749237179756165, 1.7330824136734009, -0.8534750938415527, -1.9106534719467163, 0.3247850835323334, -1.1273701190948486, -0.2712315022945404, 0.7185085415840149, -0.4905109107494354, -0.9788638949394226, -0.7883789539337158, -0.09180134534835815, 0.5240770578384399, 0.0024933628737926483, 0.14763756096363068, -0.22998666763305664, -1.0813716650009155, 0.17704781889915466, -0.24114571511745453, 1.002690315246582, 0.8742110729217529, 0.5253573060035706, 0.30458107590675354, 0.6718440651893616, 0.07550262659788132, -0.35404226183891296, -0.4212496876716614, -0.45701998472213745, 0.5869827270507812, -0.7074496746063232, -1.3534938097000122, 0.6559668183326721, 0.9349241852760315, 0.31555986404418945, -0.09915235638618469, 0.858574628829956, 1.5213873386383057, -0.8460241556167603, -0.859083354473114, 0.006229297257959843, -1.1479805707931519, 0.11044656485319138, 0.1172972247004509, -1.3343453407287598, -0.15312357246875763, -0.23879995942115784, -1.7289061546325684, 1.4941083192825317, -0.0036963969469070435, -0.8808702826499939, -0.26789721846580505, 0.3078826665878296, 0.23706664144992828, 0.5220023989677429, -0.348295658826828, 0.011040092445909977, 0.35698360204696655, -1.032547116279602, -1.1963781118392944, 0.19944141805171967, 0.35984495282173157, 0.24793191254138947, -0.18616798520088196, 0.6702951192855835, 0.15462203323841095, 0.5059248805046082, 0.5107313990592957, 0.4976089894771576, 0.9133033752441406, 0.4606287479400635, 0.12654522061347961, -1.847848892211914, 0.09161529690027237, -0.9702394008636475, 0.05699748918414116, -0.27920305728912354, 1.5677247047424316, 0.6876378059387207, -0.28038305044174194, 0.2124636471271515, 0.09408543258905411, -0.7662369012832642, -0.45709162950515747, -1.1672232151031494, 0.9593214392662048, 0.15117961168289185, -0.60824054479599, -0.0482354499399662, -0.553616464138031, -0.4761486351490021, -0.3885425329208374, 0.5059452652931213, 0.641997754573822, -1.1908107995986938, -0.7556341290473938, 0.3107708692550659, -0.2092134654521942, 0.0422530472278595, 0.4213278293609619, -0.03063609078526497, -0.7033678889274597, -1.0651636123657227, -0.6532014012336731, 0.09037644416093826, 0.48117050528526306, -0.6633765697479248, -0.5555694103240967, -0.026777775958180428, -1.7546207904815674, 0.6674804091453552, -0.28265106678009033, -1.003585696220398, -0.6723447442054749, -0.9551448822021484, 0.7741599082946777, 0.37218618392944336, 0.0977889820933342, 0.38749805092811584, 0.4193805754184723, -0.9060044884681702, -0.5829275250434875, -0.9827781915664673, -0.0516018383204937, 0.6648346185684204, 0.8922699093818665, -0.5878857970237732, 0.8579850196838379, 0.636772632598877, -0.7520997524261475, 0.7188552021980286, 0.00843833014369011, -1.3428013324737549, 0.6054381132125854, 0.5620010495185852, 0.4265614449977875, 0.530478298664093, 1.2015174627304077, 0.3680718243122101, 0.6713839173316956, 0.21476757526397705, 0.7352321147918701, -0.12265341728925705, -0.45020338892936707, -0.6814208626747131, 0.16048306226730347, -1.0051535367965698, -0.9289332628250122, 0.362419068813324, -0.20208334922790527, -0.3495650887489319, 0.5082305073738098, 0.14181479811668396, -0.393783301115036, -0.2329416573047638, -0.6565433740615845, 0.16985554993152618, -0.5740055441856384, 0.5415439605712891, 0.4518778920173645, -0.6762003302574158, -0.4108239710330963, 0.27729332447052, 0.665558397769928, -1.3085206747055054, 0.017170408740639687, 0.28752627968788147, 0.5489909052848816, -0.8114131093025208, 0.8299291133880615, 0.5143610835075378, -0.320320188999176, -0.2622169554233551, 1.6291450262069702, 1.6589853763580322, -0.11668440699577332, 0.5570585131645203, 0.5862647294998169, 0.23974160850048065, -0.003310857340693474, -0.43608880043029785, -0.7994334101676941, 0.012254534289240837, 1.0301295518875122, -0.2523457109928131, 0.3614351153373718, -0.8567031025886536, 0.9788732528686523, -0.48217034339904785, 0.1995202600955963, 0.7294568419456482, 0.4628271460533142, -0.6765085458755493, 0.7045953869819641, 0.501030683517456, -0.06482811272144318, -0.08461259305477142, 0.35738876461982727, 0.6991820931434631, -0.10431990772485733, 0.6566556096076965, 0.38451388478279114, -0.3179793357849121, 0.4109804928302765, 0.2924852669239044, -0.4913056194782257, 0.5552816390991211, -0.14949925243854523, -1.159897804260254, -0.3766302764415741, 0.06593269109725952, -0.8740301132202148, 0.09261208027601242, -0.440702348947525, 0.22367221117019653, 0.3435077667236328, -0.17324692010879517, 0.5958063006401062, -1.1742414236068726, -0.16660459339618683, -0.28460341691970825, 0.19562679529190063, 1.395342469215393, 0.0695134773850441, 1.1896347999572754, 0.024602919816970825, -0.013479482382535934, -0.3843015134334564, 0.058417126536369324, -0.3673783838748932, 0.38021770119667053, -0.22504524886608124, -0.395122766494751, -0.10041287541389465, -0.5319383144378662, -0.30805549025535583, 0.8668094873428345, 0.36274516582489014, 0.25069278478622437, -0.035572245717048645, -1.0516201257705688, -0.6886139512062073, 0.6221965551376343, 0.3151184916496277, -0.36558401584625244, -0.446973592042923, -0.27054572105407715, -0.06463460624217987, -0.016962382942438126, 1.1775017976760864, -0.6425945162773132, 0.4683365523815155, -0.31209033727645874, 0.31469398736953735, -0.9366633892059326, -0.3787270784378052, 0.8008769750595093, -0.5786105990409851, 0.60594642162323, -0.9626825451850891, -0.1464925855398178, -0.5010687112808228, -0.8261776566505432, -0.28592222929000854, -0.1454887092113495, -0.7716889381408691, 0.08899487555027008, 0.1571168452501297, -0.6394593715667725, -0.8593134880065918, 0.6643503904342651, 0.7877932786941528, -0.3434155583381653, 0.3718147277832031, -0.8479602932929993, -1.0936906337738037, 0.12598025798797607, 0.0962774008512497, 0.4690539836883545, 0.3877990245819092, 1.8644733428955078, 2.1510448455810547, 0.2440742552280426, -0.31250235438346863, -0.08002451062202454, 0.8036041259765625, -0.8463281393051147, -0.8349109292030334, -0.5145363211631775, -0.062259070575237274, 0.07673206180334091], [1.0899949073791504, 0.7509233355522156, -1.494874358177185, -0.9559431076049805, 1.0290119647979736, 0.5361577272415161, 0.869834840297699, 0.9159483909606934, -0.10586194694042206, -0.6210784316062927, -1.6175508499145508, 0.4901221990585327, -0.06465915590524673, 1.06734037399292, 0.5171496272087097, 0.21162164211273193, 1.300948977470398, 0.02250494435429573, -0.2478865534067154, 0.21007946133613586, 0.10043271631002426, -0.35542261600494385, 0.08697479218244553, -0.07724232971668243, 0.26408934593200684, 0.2957109212875366, -1.2531291246414185, -0.21682162582874298, -1.4455080032348633, -0.6089966297149658, 0.9693036079406738, -1.178305745124817, -0.5489514470100403, -0.2860060930252075, -1.7921626567840576, -0.2798708975315094, 0.6765385866165161, 0.7808229327201843, 0.5162895917892456, 1.0440444946289062, 2.061617851257324, -0.19540420174598694, -0.2904767692089081, -1.301134705543518, 0.23820936679840088, -0.5486639738082886, 0.7058125138282776, -0.9480266571044922, -0.4664456844329834, -1.5962063074111938, 1.2554819583892822, -0.23187780380249023, 0.5054449439048767, 1.0408935546875, 1.6362091302871704, -0.27580422163009644, -0.45254871249198914, -0.274738609790802, 0.9737206101417542, -0.16970115900039673, 1.5808179378509521, 0.29809218645095825, -0.5561549663543701, 1.2700749635696411, -0.064345583319664, -0.28525325655937195, -0.23124653100967407, 0.3472188413143158, -0.6336156129837036, 0.2837813198566437, 0.6212777495384216, 0.44236230850219727, -0.34437718987464905, 0.34104305505752563, -1.2806980609893799, 0.08961697667837143, 0.5365105271339417, 0.43778377771377563, 0.5114162564277649, 1.003418207168579, -1.032867193222046, 0.06564973294734955, -0.4835933744907379, -0.5154492855072021, 1.032397747039795, -0.33093613386154175, 0.2592030465602875, -0.2875957489013672, -1.0454697608947754, 2.310612916946411, 0.019612561911344528, -0.6334980726242065, -0.14084075391292572, -0.9186083078384399, -0.420263409614563, -0.5415054559707642, -0.379379540681839, -0.45786142349243164, -1.2056522369384766, -0.07035418599843979, -0.8630859851837158, -1.0184078216552734, 0.10056034475564957, 0.1434682011604309, 0.5086216926574707, 1.3580361604690552, 0.332491934299469, -0.9981326460838318, -0.17873147130012512, 0.07845094799995422, -0.13497090339660645, 0.4647570252418518, -1.0913548469543457, -1.2739598751068115, -0.590217649936676, 0.9653388261795044, 1.10643470287323, -0.3306652009487152, -0.15213654935359955, 0.4295400083065033, -0.6935776472091675, -0.1525712013244629, -0.8825258612632751, 0.29927492141723633, 0.7045629620552063, 0.5251876711845398, -0.26721665263175964, 0.1797017902135849, 0.5744091868400574, -0.1543918251991272, 0.0020492179319262505, -0.09455318003892899, 0.3901764750480652, 0.7091304659843445, -0.3290579915046692, 1.2201886177062988, -0.41691720485687256, -0.5980426669120789, -0.27980557084083557, -0.115179643034935, 0.1096530556678772, 0.035203829407691956, -0.7211288809776306, -0.5851032137870789, 1.072137475013733, -0.8512997031211853, 0.027406364679336548, -0.4149540066719055, -0.7899847030639648, -0.0631643757224083, -0.9099217057228088, 0.5393829345703125, -0.05873149633407593, 0.869513988494873, 0.5644525289535522, 0.7164792418479919, 0.1783294379711151, 0.6803874969482422, -0.10874233394861221, 0.2681485712528229, 1.3060840368270874, 0.05088585242629051, -0.40328821539878845, 1.145850419998169, 0.5730876922607422, -0.26685187220573425, -0.2593497931957245, 0.755768358707428, 0.16468161344528198, 0.3088034987449646, -0.6656063199043274, -0.2405858337879181, -0.3757811188697815, 0.7071635723114014, -0.23200620710849762, 0.22422733902931213, 0.6785671710968018, -0.7435188293457031, -0.8425109386444092, -0.09202162176370621, 0.5313181281089783, -0.1272970587015152, 0.7245228886604309, -0.5947278738021851, 0.6369777917861938, -0.114435113966465, 0.4867396950721741, -0.14141790568828583, -0.04719031974673271, -0.8381322026252747, -0.5726163387298584, -0.5871478915214539, -0.9460849761962891, 0.01926056668162346, -0.4954168498516083, -1.5918384790420532, 0.3110337555408478, -0.7261645197868347, 0.07666625827550888, 0.008480452932417393, -0.5880045294761658, -0.26900216937065125, -1.3022069931030273, 0.26858794689178467, -0.4641677439212799, 0.11882349848747253, -0.6358698010444641, 0.0874868705868721, -1.1727582216262817, 0.05488848686218262, 0.9300203919410706, 0.5766138434410095, -0.1752217561006546, 1.2691251039505005, -0.11539110541343689, -1.0110623836517334, -0.14717593789100647, 0.4398494064807892, 0.244759202003479, -0.055435001850128174, 0.24505680799484253, -0.2654699683189392, 0.5549740791320801, 0.32441800832748413, 0.5848062038421631, 0.16725802421569824, -1.1605786085128784, -0.23220233619213104, -0.9010010957717896, -0.6265136003494263, -0.44703570008277893, -1.1478455066680908, 0.9866000413894653, 0.7876211404800415, -0.7747789621353149, 1.1145873069763184, -0.5157098174095154, 0.05907266214489937, 0.06256982684135437, 0.8880363702774048, 0.05479740351438522, 0.5249205827713013, -0.4438687860965729, -0.1814327985048294, -0.2383790761232376, 0.4311739206314087, 0.9880825877189636, 0.007728365249931812, -0.03433055058121681, 1.1881494522094727, 0.11781270056962967, 0.40694886445999146, 0.6790400743484497, 0.25945526361465454, -0.16400402784347534, -0.4217691421508789, -0.1795891523361206, -0.680546224117279, -0.4202187657356262, 1.202072262763977, 1.4196968078613281, -1.3688373565673828, -0.5575072765350342, -0.27325525879859924, -0.38150614500045776, -0.20569713413715363, 0.3466675579547882, -0.2705131769180298, 0.7248174548149109, -0.004707593470811844, -0.10874543339014053, 0.24710723757743835, -0.18069572746753693, 0.3828892707824707, 0.05520469322800636, -0.2604234516620636, -0.31092745065689087, 0.06111074239015579, 0.24791841208934784, 0.6089916229248047, -0.7594075202941895, -1.0112054347991943, -0.3679315745830536, 0.3099328279495239, 0.40648552775382996, -0.18041805922985077, -1.3409870862960815, 0.5477344989776611, 0.6918084025382996, -0.4414382874965668, 0.06708353757858276, 0.7268375754356384, -0.4088904559612274, 0.3120899796485901, -0.1003303974866867, 0.6362255215644836, 0.3028450608253479, -0.5196684002876282, -1.0996495485305786, -0.8558611273765564, 0.504640519618988, 1.2711020708084106, 0.30516573786735535, 1.421650767326355, 0.4549518823623657, -0.3382059633731842, -0.14119014143943787, 0.07973909378051758, -1.096752643585205, -0.3821619153022766, -0.6776304244995117, -1.026107668876648, 0.29504790902137756, -0.38051003217697144, 0.2925468981266022, 1.5395143032073975, -0.024997228756546974, 1.0932596921920776, 0.6828879714012146, -0.4925990104675293, -0.9866980314254761, -0.14287519454956055, 0.6378663182258606, -1.091401219367981, 0.5917119979858398, 0.9982197880744934, -0.5295757055282593, -0.4822564125061035, 0.40979892015457153, 0.38382574915885925, 1.024817943572998, -0.8734779953956604, 0.4957978129386902, -1.0867788791656494, -0.11408217996358871, -0.4738748073577881, 1.0279134511947632, -0.24677792191505432, 0.05423495173454285, -0.9049584269523621, -0.01436435803771019, 0.7242281436920166, -0.2725313603878021, -0.14482080936431885, 0.5604716539382935, -0.7581015229225159, -0.463364839553833, -0.6021742224693298, 0.6902270317077637, 1.0996596813201904, -0.014191065914928913, 0.1630421131849289, -0.19327767193317413, -0.38627055287361145, -0.4066312611103058, 0.37594425678253174, -0.24385888874530792, 0.6513928771018982, -0.016737954691052437, 0.4162321090698242, 1.2126840353012085, -0.4187221825122833, 0.023514559492468834, -1.4850974082946777, 0.13515381515026093, 0.5985710024833679, 1.2369310855865479, -0.028476186096668243, 0.06988271325826645, 0.24375921487808228, -0.36485955119132996, 0.3331417441368103, 0.11904197931289673, 1.0953267812728882, -0.09456757456064224, -0.7689926624298096, -0.8275123834609985, -0.533573567867279, -0.0443384014070034, -0.48533082008361816, 0.2706223726272583, -0.15321744978427887, -0.5360719561576843, -0.972748339176178, 1.047960638999939, 0.32770344614982605, 0.10376518964767456, -0.7199926972389221, 0.33438077569007874, 0.06791606545448303, 0.012509765103459358, 0.5568132400512695, -0.5248838663101196, 0.09025280177593231, 0.5657995939254761, -0.8885124325752258, -0.9548236727714539, 1.071096420288086, 0.2805061638355255, 0.4659073054790497, -0.9136292934417725, 0.21484942734241486, -0.46455833315849304, 1.0689191818237305, 0.32151249051094055, -0.2152968794107437, 0.1516980677843094, 0.7308057546615601, -0.9317957162857056, -0.1102553978562355, 0.007900918833911419, 0.9143660664558411, -0.37890708446502686, -0.11743208020925522, -0.6894235610961914, -0.13384883105754852, 0.3126656711101532, 0.5837169885635376, -0.6161325573921204, -0.6264556646347046, -0.4453642666339874, 0.24310095608234406, 0.002990737557411194, 0.038370281457901, 1.7640119791030884, 0.07390603423118591, -0.45066335797309875, 0.8166974782943726, 0.3088007867336273, -1.2777429819107056, 0.4002995491027832, 0.32935237884521484, -0.1731557846069336, -0.4420018494129181, -0.15089580416679382, 0.11168770492076874, 0.015090162865817547, 0.8731406331062317, -0.1873323619365692, 0.3218270540237427, 0.10259629040956497, -0.2471373975276947, 0.09606630355119705, 0.6564711928367615, 1.1455475091934204, 0.6648083925247192, 1.3018386363983154, -0.5872259736061096, -0.9451276063919067, 1.171480655670166, -0.38340625166893005, 0.2550216615200043, 0.4115103483200073, -0.19354015588760376, 1.3653361797332764, -1.084282398223877, -0.2585986852645874, 0.5033338665962219, -0.4457396864891052, 0.5617784857749939, 0.09741012006998062, 0.10893162339925766, -0.5377691388130188, 0.541968822479248, 0.27114588022232056, -0.17016351222991943, 0.7219981551170349, -0.06318724900484085, -0.2998203635215759, 0.039477620273828506, -1.0111639499664307, 0.5699869394302368, -0.5718100070953369, -0.41806212067604065, 0.4299241900444031, -0.008128399029374123, 0.35683342814445496, 0.8628504872322083, 0.10858479142189026, 2.635101556777954, -0.2230287492275238, -1.6967978477478027, 0.2178323119878769, -0.4071250855922699, -0.10769066959619522, 0.19306734204292297, -0.0413239486515522, -0.8634107708930969, -0.7940466403961182, 0.09214290976524353, 0.7722923159599304, -0.3758394718170166, 0.07941988855600357, 0.08239294588565826, -1.2866252660751343, -0.1613815277814865, 0.5121865272521973, 1.3988691568374634, 1.166837453842163, 0.439474880695343, 0.3121001422405243, 0.4835515320301056, -0.07078203558921814, -0.6267488598823547, 0.22698292136192322, 0.2539827823638916, 0.13404399156570435, -0.6618649959564209, -0.5615576505661011, 0.7958593368530273, 0.8981786966323853, 0.08038844913244247, -0.0062330481596291065, 1.3455361127853394, 0.8984318375587463, 0.10345608741044998, -0.4985176622867584, 0.11793026328086853, -1.4122371673583984, 0.17813044786453247, 0.38736873865127563, -0.47655045986175537, -0.09496510028839111, -0.541425883769989, -1.5745435953140259, 0.6211282014846802, 0.016475534066557884, -0.7756680846214294, -0.016381990164518356, 1.1246256828308105, 0.418204128742218, 0.48020675778388977, -0.2606959640979767, -0.009422184899449348, 0.5226970911026001, -0.42314818501472473, -1.0961668491363525, 0.2142055630683899, 0.0890519991517067, 0.15430830419063568, -0.6228377223014832, 0.5674508213996887, 0.1537935882806778, 0.07605421543121338, -0.03036331571638584, 0.37536561489105225, 0.854557454586029, 0.6576260924339294, 0.7531024217605591, -1.691765546798706, 0.139678955078125, -0.1201818585395813, -0.09879874438047409, -0.43399733304977417, 0.9966339468955994, 0.5693304538726807, -0.04081825539469719, -0.36482712626457214, -0.14834646880626678, -0.8990360498428345, -0.1769089549779892, -1.2167668342590332, 1.1465812921524048, 0.4149961471557617, -0.7543209195137024, -0.45511049032211304, -0.640929102897644, -0.559980571269989, -0.8239620327949524, 0.8793855309486389, 0.5413584113121033, -0.7347427010536194, -0.7576485872268677, -0.09968970715999603, -0.18196777999401093, 0.7509267926216125, -0.33490100502967834, -0.2961289584636688, -1.1377142667770386, -1.5585261583328247, -0.4140923321247101, 0.41686221957206726, 1.0733195543289185, -0.363705039024353, 0.1924228072166443, -0.009713136591017246, -1.3867013454437256, 0.9046265482902527, 0.14117029309272766, -0.8785357475280762, -0.28160035610198975, -0.8085359930992126, 0.5336436033248901, 0.26647770404815674, 0.37404555082321167, -0.31416964530944824, 0.7740567326545715, -1.1029102802276611, -1.038061499595642, -0.9568594694137573, 0.09304915368556976, 0.2964020371437073, 0.3412996232509613, -0.4512137174606323, 1.1781203746795654, 0.10541525483131409, -0.7878287434577942, -0.0008023586124181747, -0.10119058936834335, -0.7154396772384644, -0.005736378952860832, 0.9185376167297363, 0.2972261607646942, 0.35532888770103455, 0.9536833167076111, 0.021884702146053314, 0.3670685291290283, 0.12042608112096786, 0.6671217083930969, -0.945544958114624, -0.2648354768753052, -0.025916114449501038, -0.16901801526546478, -0.7906678318977356, -0.8499509692192078, -0.1227467805147171, -0.15421907603740692, -1.071692705154419, 0.8445626497268677, 0.6691906452178955, -1.0604727268218994, 0.3061770498752594, -0.7287088632583618, 0.3216026723384857, 0.019178949296474457, 0.22721034288406372, 0.11320167034864426, -0.505702793598175, -0.4454502463340759, 0.15854603052139282, 0.3165908753871918, -0.9379745125770569, -0.22731554508209229, -0.09057691693305969, 0.0650855079293251, -0.7100082635879517, 0.7498055100440979, 0.4287741780281067, -0.4461284875869751, -0.7075940370559692, 1.3451358079910278, 1.5724574327468872, -0.26042479276657104, -0.15280592441558838, 0.28239455819129944, 0.20920835435390472, -0.13847388327121735, -0.5208309888839722, -0.7145273685455322, -0.029964199289679527, 0.8355987071990967, 0.49913281202316284, 0.5346706509590149, -0.13400185108184814, 0.6771014332771301, -0.22580167651176453, 0.07612265646457672, 0.018880493938922882, 0.07305416464805603, -0.6088389754295349, 0.6594595313072205, 0.4197886288166046, 0.0542105957865715, 0.4817032217979431, 0.4923158884048462, 0.021676955744624138, 0.05826099216938019, 1.0102133750915527, 0.2738780379295349, -0.21778514981269836, 0.661684513092041, 0.7522718906402588, -0.5236421823501587, 0.06097456440329552, -0.4541533589363098, -1.566522479057312, -0.19208472967147827, -0.3729613721370697, -1.0473212003707886, 0.6219092011451721, -0.8408010005950928, 0.03699561208486557, 0.598772406578064, 0.01180991716682911, 0.22618666291236877, -0.5599034428596497, 0.12469454854726791, -0.4045824110507965, 0.6488109230995178, 0.3994494676589966, -0.4979918897151947, 1.6725918054580688, 0.02273309975862503, -0.3735469579696655, -0.9265364408493042, 0.058022383600473404, 0.13111041486263275, 0.38058438897132874, -0.13610495626926422, 0.06059498339891434, 0.08148914575576782, -0.7907617092132568, -0.4688171148300171, -0.07244199514389038, -0.23588049411773682, 0.09358897060155869, -0.5444109439849854, -1.060682773590088, -0.3276025056838989, 0.28393951058387756, 0.3203982412815094, -0.2673056125640869, -0.7977970838546753, -0.3327096402645111, 0.6815717816352844, 0.036117587238550186, 1.1967145204544067, -0.6125324368476868, 0.7124963402748108, 0.42217880487442017, -0.0176980122923851, 0.06490333378314972, 0.12654463946819305, 0.6722924113273621, 0.1211479976773262, 0.8773038387298584, -0.19998902082443237, -0.258427232503891, 0.017799606546759605, -0.9766445755958557, -0.04031156003475189, 0.1531134396791458, -0.584483802318573, 0.04721399396657944, -0.5515251159667969, -0.7580823302268982, -0.6956192255020142, -0.4873460829257965, 0.130471333861351, -0.183668315410614, 0.31093937158584595, -0.9014307856559753, -0.3129805028438568, 0.460757315158844, 0.27152684330940247, -0.14238429069519043, 0.6229407787322998, 1.2474578619003296, 2.0623271465301514, 0.4083510935306549, -0.2839885354042053, -0.584843635559082, 0.6271197199821472, -1.218303918838501, -0.35857322812080383, -1.4578323364257812, 0.33615079522132874, -0.18110249936580658], [0.7497368454933167, 1.3498591184616089, -2.172292470932007, -1.5881892442703247, -0.03525746986269951, -0.10464414954185486, 1.1912555694580078, 0.6032661199569702, -0.380621075630188, -1.4927177429199219, -1.3969918489456177, 0.7670795321464539, 0.11303986608982086, 1.0515087842941284, 0.3797885477542877, 0.38102567195892334, 1.1876786947250366, 0.00770528893917799, 0.6376985311508179, 0.6411573886871338, -0.1884785145521164, 0.22717145085334778, -0.01520706806331873, -0.016385706141591072, 0.5978853106498718, 0.9304656982421875, -1.189231514930725, 0.2159116566181183, -1.737237811088562, -1.1558119058609009, 1.3987793922424316, -1.245409369468689, 0.11450057476758957, -0.9243862628936768, -1.476584792137146, -0.18051695823669434, 0.5841405987739563, 0.33336398005485535, -0.4835642874240875, 0.8766230940818787, 2.127882242202759, 0.28927093744277954, -0.9017784595489502, -0.6224992871284485, 0.4757022261619568, -0.831712007522583, 0.5473321676254272, -1.771068811416626, -0.5282933712005615, -1.5511577129364014, 0.7719354629516602, -0.7417307496070862, -0.21366047859191895, 0.9778196811676025, 1.0772573947906494, 0.057322949171066284, -0.3170028328895569, 0.4079764485359192, -0.09282511472702026, 0.11864513158798218, 1.6110358238220215, -0.15408897399902344, -0.03238635137677193, 1.2842930555343628, -0.1789000779390335, 0.10764221847057343, -0.24432320892810822, 0.026827828958630562, -0.6031993627548218, 0.5130684971809387, 0.8602616190910339, -0.2145054191350937, -0.6478827595710754, 0.2792970836162567, -2.0185468196868896, 0.27786821126937866, 0.42609313130378723, 0.201289564371109, 0.19135944545269012, 1.408045768737793, -0.44281643629074097, 0.3755761384963989, -0.7052471041679382, -0.9450652003288269, 0.1209627240896225, -0.5963158011436462, 0.3440763056278229, -0.7134822010993958, -1.2285163402557373, 1.3885304927825928, 0.4343456029891968, -0.05757014825940132, 0.5032264590263367, 0.04537351429462433, -0.2732878625392914, -0.4798540472984314, -0.10237323492765427, -0.03701406344771385, -0.25522077083587646, -1.0368727445602417, 0.02711852453649044, -0.8144035339355469, 0.6490422487258911, 0.6434070467948914, 0.617068350315094, 1.0660678148269653, 0.31515970826148987, -0.6883290410041809, -0.9829447269439697, -0.4538814425468445, -0.6986566185951233, -0.26704078912734985, -0.8573678731918335, -0.638031005859375, -0.9532942175865173, 0.9888944625854492, 1.2206674814224243, -0.8870853185653687, 0.2860361933708191, 1.2951059341430664, -0.4880262315273285, -1.0189619064331055, -0.17149750888347626, -0.20539195835590363, 1.3322657346725464, -0.3805159330368042, -0.6683109402656555, 0.20527392625808716, 0.1689125895500183, -0.34368622303009033, 0.6275997757911682, -0.32964012026786804, -0.18777599930763245, 0.860478401184082, 0.12283934652805328, 0.8689073920249939, -0.015075267292559147, -0.4894753396511078, 0.3499267101287842, -0.22807416319847107, -0.14596427977085114, -0.452095627784729, -0.5262007713317871, -0.37965595722198486, 0.7681388258934021, -0.367231547832489, -0.010688729584217072, 0.057114165276288986, -0.5848777294158936, 0.5033074617385864, -0.9849233627319336, 0.0016814526170492172, 0.2947312593460083, 1.6177301406860352, 0.39858299493789673, 0.05659942328929901, 0.4293455481529236, 0.326087087392807, -0.02056649513542652, 0.795266330242157, 0.9190932512283325, 0.017404919490218163, -0.6489474177360535, 0.8360152840614319, 1.0299816131591797, -0.6547256112098694, 0.3075418472290039, 0.3570508658885956, 0.03456401452422142, 0.6763147711753845, -0.9169993996620178, -0.7332804799079895, 0.015554605051875114, 0.5968160033226013, -0.3481476604938507, -0.43905574083328247, 1.1441112756729126, -0.9989149570465088, -1.1151360273361206, -0.7232507467269897, 0.6522575616836548, -0.9274588227272034, 1.012717843055725, -0.5068460702896118, 0.605755090713501, 0.3551595211029053, -0.40503016114234924, -0.33112791180610657, -0.13963335752487183, -0.9047116637229919, -1.1698188781738281, -0.32217928767204285, -0.8653867244720459, 0.19818685948848724, -0.7316752672195435, -1.1765758991241455, -0.011040693148970604, -1.3109034299850464, 0.19596882164478302, 0.050818633288145065, 0.14222954213619232, -0.02801935188472271, -1.345610499382019, -0.27120712399482727, -0.5844573378562927, 0.7685985565185547, -0.4058702886104584, 0.5056234002113342, -0.45478472113609314, 0.06034315377473831, 0.8484426140785217, -0.3226495683193207, -0.654642641544342, 0.9572309851646423, 0.5102941393852234, -1.2916702032089233, -0.27107539772987366, 0.3104858696460724, 0.1036379337310791, -0.20462895929813385, 0.8760085105895996, -0.08065517991781235, 0.5807107090950012, 0.4302847981452942, -0.005449168384075165, -0.01821484975516796, -1.5728065967559814, -0.11703478544950485, -0.6772109270095825, -0.24187235534191132, -0.7462785243988037, -0.34182876348495483, 1.0619640350341797, 0.8031489253044128, -0.5026435852050781, 1.1902517080307007, -0.3449864983558655, 0.09773795306682587, 0.2094869315624237, 0.4990690052509308, 1.128784418106079, -0.2022334337234497, -0.03116975910961628, 0.06625305861234665, -0.1846190094947815, -0.10167689621448517, 1.1420506238937378, -0.19570086896419525, 0.016812000423669815, 1.4323492050170898, 0.07784625887870789, -0.6178925037384033, 0.7492607235908508, 0.11093548685312271, 0.2030748426914215, -0.8352175354957581, -0.12578119337558746, 0.10771499574184418, -0.9433782696723938, 1.1691025495529175, 0.7769278883934021, -1.4559886455535889, -0.29740050435066223, -0.201022669672966, -0.3899967074394226, -0.28120386600494385, 0.33704036474227905, -0.46550360321998596, 0.5570310950279236, -0.03251083195209503, -0.09520186483860016, 0.2880485951900482, -0.07284781336784363, 0.5620551705360413, 0.12145739048719406, -0.0842440277338028, 0.02972196415066719, 0.6022840738296509, -0.018862633034586906, 0.9341028928756714, -0.12383092194795609, -1.7642523050308228, -0.6882904171943665, -1.1560386419296265, 0.7586441040039062, -0.18041928112506866, -0.3917165696620941, 0.7948985695838928, 1.1299947500228882, -0.2668938636779785, 0.5593478679656982, 0.4652692973613739, 0.14474281668663025, -0.1374322921037674, 0.5769934058189392, 1.0657535791397095, 0.7723239660263062, -1.0678592920303345, -0.43660327792167664, -0.6981118321418762, -0.2805282473564148, 1.0547016859054565, 0.3586045503616333, 1.3302475214004517, 0.09955252707004547, -0.1027831882238388, -1.2283287048339844, 0.181118443608284, -0.8512352108955383, -0.2838285565376282, -0.3785158097743988, -1.228786587715149, -0.00709433201700449, -0.8156706094741821, 0.05460210517048836, 1.0938800573349, 0.23325592279434204, 1.548574447631836, 1.0608679056167603, -0.28754723072052, -1.2999910116195679, -0.6600329875946045, 1.0175801515579224, -1.2253965139389038, 0.6431993246078491, 0.682637095451355, -0.2581844925880432, 0.04891616106033325, 0.021608486771583557, 0.47577619552612305, 1.2228337526321411, -0.06526545435190201, 0.5644844770431519, -0.605426549911499, -0.25483211874961853, 0.13480569422245026, 0.6656885147094727, -0.4590834975242615, -0.43883126974105835, -0.45856034755706787, 0.013369815424084663, -0.10281869024038315, 0.12119594216346741, -0.5996864438056946, 0.38157543540000916, -0.5044858455657959, -0.39881736040115356, -0.2195790559053421, 0.6408476829528809, 2.192129373550415, -0.16839773952960968, 0.07074964046478271, -0.3171652555465698, -0.4146893620491028, -0.46578994393348694, 0.4617418944835663, 0.025465214625000954, 0.6032674312591553, 0.08479473739862442, 0.02763814479112625, 1.262349009513855, -0.09025221318006516, 0.2540920078754425, -1.5442874431610107, -0.031951043754816055, 0.1604713797569275, 1.6829344034194946, 0.48930999636650085, 0.11400438845157623, 0.2633587419986725, -0.33637914061546326, 0.3437342643737793, -0.5026872158050537, 1.1594343185424805, 0.020704379305243492, -0.41739943623542786, -0.4445677101612091, -0.42253410816192627, 0.09881646931171417, -0.4549669325351715, -0.31379184126853943, 0.7316092848777771, -0.1496260166168213, -0.3129754066467285, 0.15054084360599518, 0.061475757509469986, -0.3189038038253784, 0.18093562126159668, 0.3886207938194275, -0.10897888988256454, 0.026526369154453278, -0.0394236221909523, -0.3395139276981354, -0.07830386608839035, 1.1648534536361694, -0.6939939856529236, -0.2678094506263733, 0.5007926821708679, 0.0798255130648613, 0.6733771562576294, -1.5653388500213623, 0.10127521306276321, -0.590256929397583, 0.7336430549621582, -0.3511071801185608, -0.6506603360176086, 0.23719079792499542, 0.23060205578804016, -0.3926742672920227, -0.1852095127105713, -0.054894305765628815, 1.2562001943588257, 0.292275995016098, -0.7846606969833374, 0.11751820147037506, -0.11708758026361465, 0.1899419128894806, 0.7076650261878967, -0.3578033447265625, -0.3032149076461792, -0.3290351629257202, 0.11143963038921356, -0.34028780460357666, -0.3818443715572357, 1.7331429719924927, 0.1579999327659607, -0.477054625749588, 0.6188092231750488, 0.13079647719860077, -0.5824834108352661, 0.41698718070983887, 0.279402494430542, 0.40051260590553284, 0.14229649305343628, 0.5195862054824829, 0.49253976345062256, -0.19240623712539673, 0.7237186431884766, 0.18846218287944794, -0.08894587308168411, 0.2558201253414154, -0.8896585702896118, 0.3539184033870697, 0.17733994126319885, 1.0644680261611938, 0.7709688544273376, 0.5130475759506226, -0.9180302023887634, -0.5739614963531494, 1.1808406114578247, 0.4711390435695648, 1.267928123474121, 0.670172393321991, 0.15423698723316193, 1.3985782861709595, -1.6073815822601318, -0.059059157967567444, 0.36953026056289673, 0.05806706100702286, 0.6267785429954529, 0.6674371361732483, 0.30914944410324097, -1.0720504522323608, -0.12951958179473877, -0.33934253454208374, -1.0314600467681885, 1.187355875968933, -0.17416909337043762, -0.12782621383666992, 1.0551644563674927, -0.27841079235076904, -0.1195220947265625, -0.38652464747428894, -1.2056924104690552, 0.5376530289649963, -0.5610280632972717, 0.218642458319664, 0.8701152205467224, 0.7078458070755005, 0.7691283226013184, -0.7045876383781433, -1.3962427377700806, 0.16239561140537262, -1.4171339273452759, -0.13764694333076477, 0.3014460504055023, -0.18863876163959503, -1.7022004127502441, -1.2703967094421387, -0.3285895586013794, 0.14561837911605835, -0.47411274909973145, -0.2114356905221939, 0.32339727878570557, -1.1968823671340942, -0.427918404340744, 0.2874075174331665, 1.535683035850525, 0.7248944044113159, -0.32483044266700745, 0.945258617401123, 0.3673074543476105, -0.12336275726556778, 0.13115592300891876, 0.0272198636084795, 0.5661038756370544, 0.23898819088935852, -0.998375415802002, -0.9997740387916565, 0.644108235836029, 0.767539918422699, 0.05152058228850365, -0.22017331421375275, 0.7643116116523743, 1.8919750452041626, -0.7840059995651245, -0.6953185796737671, 0.7482004761695862, -0.6981304287910461, 0.05312985181808472, 0.06218837574124336, -0.9078904986381531, 0.09976066648960114, -0.3117081820964813, -1.6514613628387451, 1.3624045848846436, -0.40128573775291443, -0.6961249709129333, 0.6484448313713074, 0.7775405645370483, -0.18749411404132843, 0.6101210117340088, -0.2896020710468292, -0.09061641991138458, 0.3571629524230957, -0.4600784182548523, -1.4832124710083008, 0.21017885208129883, 1.375265121459961, 0.28562548756599426, -0.672856867313385, 0.48267194628715515, -0.2874147593975067, 0.19585296511650085, -0.05377496778964996, 0.9330063462257385, 0.8081949949264526, 0.48970332741737366, 0.5693985819816589, -1.0715652704238892, 0.07986533641815186, -1.5791003704071045, 0.0704307109117508, -0.5669780373573303, 0.9659290313720703, 0.4852137267589569, -0.24490994215011597, 0.42415645718574524, 0.02932920679450035, -0.6840465068817139, -0.4434415102005005, -0.9207288026809692, 1.094016432762146, 0.5573188662528992, -0.7190935611724854, 0.14347226917743683, -0.5334513783454895, -0.07960668951272964, -0.321819007396698, 0.5038580298423767, 0.6035212278366089, -1.78287935256958, -0.8184314966201782, 0.23964422941207886, -0.3411097228527069, -0.8436015844345093, 0.5961167216300964, 0.042910136282444, -0.3916681408882141, -1.2322297096252441, -1.1307042837142944, 0.6123818755149841, 0.8599706292152405, -0.2859610915184021, -0.29512813687324524, 0.06552906334400177, -0.9470828771591187, -0.023704132065176964, -0.4958750307559967, -0.7610123157501221, -0.5341871380805969, -0.7658945918083191, 1.297717809677124, 0.5090906620025635, 1.0272266864776611, -0.46295246481895447, 0.9023258090019226, -0.7632737755775452, -0.14687655866146088, -0.9442318081855774, -0.02587631717324257, 0.9442312717437744, 0.9940779209136963, -0.9173881411552429, 0.991532564163208, 0.33633628487586975, -0.5843871235847473, -0.8155969977378845, -0.13795319199562073, -0.42642942070961, 0.18588361144065857, 0.49289003014564514, 0.007702012546360493, 0.676171064376831, 1.5491470098495483, -0.3026810884475708, 0.9681845903396606, 0.522533118724823, 0.8307088613510132, -0.3342699706554413, -0.7689548134803772, -0.6991788744926453, -0.4097643196582794, -0.5693212151527405, -0.7516419291496277, 0.6552410125732422, -0.8765504360198975, -0.7986929416656494, 0.2373291403055191, 0.8988913893699646, -0.7640868425369263, 0.4202530086040497, -0.9971375465393066, 0.22582285106182098, -0.8012135028839111, 0.8107532262802124, -0.08830974996089935, -0.8661852478981018, -1.3478785753250122, -0.0977979227900505, 0.13535885512828827, -0.6494157910346985, -0.41294366121292114, 0.32577553391456604, 0.5901281833648682, -0.6584653258323669, 0.9706502556800842, -0.2612444758415222, -0.1190272644162178, -0.0009085081983357668, 2.028658151626587, 1.7988239526748657, 0.2539386749267578, 0.4455139935016632, 0.3882642388343811, -0.29758524894714355, -0.3154047429561615, -0.827650249004364, -0.6549291610717773, 0.24187874794006348, 0.8120161890983582, 0.04943434149026871, 0.061784811317920685, -0.3997327387332916, 1.0177233219146729, -0.5714775323867798, -0.6105653047561646, 0.8109496235847473, 0.3438400626182556, -0.598405659198761, 0.7206992506980896, 0.39339005947113037, 0.28188467025756836, 0.7699061036109924, 0.2759529948234558, 0.7135456800460815, -0.9102778434753418, 0.8591049313545227, 0.3979339599609375, -0.40654879808425903, 0.9328677654266357, 0.18618135154247284, -0.9575427770614624, 0.553515613079071, -0.134647399187088, -1.4261507987976074, -0.5549536943435669, -0.19829879701137543, -0.698724627494812, 0.4069744944572449, -0.4364532232284546, 0.19843249022960663, 0.4746186137199402, -0.3001629710197449, 0.09652291238307953, -0.9107968211174011, 0.24784688651561737, -0.6221266388893127, 0.40726438164711, 0.8364746570587158, -0.27714115381240845, 1.5512443780899048, -0.2946521043777466, -0.7293006181716919, -0.1446237415075302, -0.4439963102340698, -0.2567424178123474, -0.0212150439620018, -0.3210917115211487, -0.5652949213981628, -0.1581871658563614, 0.07235211133956909, -0.45525404810905457, 0.5773187279701233, 0.577521800994873, 0.5126860737800598, -0.39811578392982483, -0.9130818843841553, -0.722255527973175, 0.9152210354804993, 0.2756298780441284, -0.403260737657547, -0.414504736661911, 0.27051496505737305, 0.6386077404022217, 0.13821566104888916, 0.956875741481781, -1.0872104167938232, 0.4658239781856537, 0.5838418006896973, 0.02606637217104435, -0.8608431816101074, -0.1785232275724411, 0.6980642080307007, -0.11109700798988342, 0.6267642378807068, -0.06440560519695282, -0.13076214492321014, -0.0066995322704315186, -0.9472395181655884, 0.27139461040496826, 0.21554571390151978, -0.14447177946567535, 0.32104170322418213, -0.7514855265617371, -0.5600653886795044, -1.0511435270309448, 0.29605698585510254, 0.4802379012107849, 0.04038356617093086, 0.6590381860733032, -0.45639458298683167, -1.2891095876693726, -0.22452318668365479, 0.5031581521034241, 0.5606600046157837, 0.8409788012504578, 1.6783344745635986, 2.175102710723877, 0.05687260627746582, -0.38943228125572205, -0.4549707770347595, 0.7025190591812134, -1.0866005420684814, -0.2058081477880478, -0.8925247192382812, 0.29317423701286316, -0.026898900046944618], [0.4175654947757721, 1.1076370477676392, -0.8686848878860474, -0.31670722365379333, 0.6700303554534912, 0.1857779324054718, 1.4144986867904663, 0.039431601762771606, 0.32513704895973206, -0.34178274869918823, -0.8103511929512024, -0.04314091429114342, 0.9073023200035095, 1.0382386445999146, 0.17342035472393036, 0.43932148814201355, 1.2018141746520996, -0.19438372552394867, 0.06324456632137299, 1.177187442779541, -0.20500406622886658, -0.48502498865127563, -0.3936218321323395, 0.46366822719573975, -0.46958959102630615, 0.62691330909729, -1.6320855617523193, -0.14471638202667236, -1.2199453115463257, -0.7330194711685181, 1.4256380796432495, -0.7838892936706543, -0.2974412441253662, 0.15485088527202606, -1.6922802925109863, -0.14423459768295288, 0.9322534203529358, 0.5491613149642944, 0.7861988544464111, 0.30539631843566895, 1.8858084678649902, -0.13029375672340393, -0.10280441492795944, -1.2981586456298828, 0.9277600646018982, -0.6415098309516907, 1.233984112739563, -1.6143600940704346, -0.06607773900032043, -0.4737853407859802, 0.6126260757446289, 0.04215867444872856, 0.24271509051322937, 1.035241961479187, 0.810572624206543, -1.0933760404586792, -0.17203757166862488, -0.14271478354930878, 0.241120383143425, 0.722758412361145, 0.9688540697097778, 0.6628650426864624, -0.0537450946867466, 0.7930533289909363, 0.6573354005813599, 0.31770798563957214, -0.016489343717694283, 0.3822340667247772, -1.162078857421875, 0.4776698350906372, 0.3716121315956116, 0.1945437341928482, -0.5639527440071106, 0.16578885912895203, -0.038918446749448776, 0.9192758798599243, 0.7843204140663147, 0.6330474019050598, 0.2726345658302307, 1.0320979356765747, -0.5828375816345215, 0.16480493545532227, 0.038848619908094406, -0.8598964214324951, 0.21265792846679688, -0.05378323420882225, -0.011237452737987041, -0.8246335387229919, -0.6385494470596313, 1.7039543390274048, 0.18507766723632812, 0.2424173206090927, 0.498071551322937, -0.6982290148735046, 0.015821631997823715, -0.8481962084770203, 0.6776198744773865, -0.6193865537643433, -0.9686539173126221, -0.07282711565494537, -0.9140639305114746, -0.9249046444892883, 0.38180437684059143, 0.5607761740684509, 1.100868821144104, 1.2152999639511108, -0.6993275880813599, -0.8547204732894897, -0.48287829756736755, 0.0856226310133934, -0.05752729997038841, 0.401979923248291, -0.7138481140136719, -0.22973483800888062, 0.4675045907497406, 1.3085473775863647, 1.3214819431304932, -0.11403678357601166, 0.4323035180568695, 0.7033257484436035, -0.22047725319862366, -0.2832215130329132, -0.810422956943512, 0.3918687701225281, 0.20903563499450684, 1.2286884784698486, -0.2989662289619446, -0.2501594126224518, 0.44459033012390137, 0.44753456115722656, 0.40074923634529114, 0.11744686216115952, -0.055248893797397614, 1.008682370185852, -0.286072701215744, 0.843859851360321, -0.5701661705970764, -1.3395500183105469, -0.013028251938521862, -0.3318619728088379, 0.8366624712944031, -0.4729281961917877, -0.7721909880638123, -0.2757374048233032, -0.0682339146733284, -0.27563369274139404, -0.46253716945648193, 0.007473666220903397, -0.4819176495075226, -0.26081690192222595, -1.2588717937469482, -0.08129781484603882, -0.3750113844871521, 0.7080538868904114, -0.31879138946533203, -0.24826103448867798, 0.13830819725990295, 0.6395281553268433, 0.3329326808452606, 0.1807154417037964, 1.1176968812942505, 0.2577856183052063, -0.6534621715545654, 1.1106071472167969, 0.5295169949531555, -0.1829490065574646, 0.7100266218185425, 0.015019233338534832, 0.06199377402663231, 0.4108545184135437, -0.35460925102233887, -0.8325937986373901, -0.08988851308822632, -0.17803791165351868, 0.4412958323955536, -0.21285127103328705, 1.5239241123199463, 0.01802576147019863, -1.113625168800354, -1.3677716255187988, 1.1088509559631348, -0.3475266993045807, 0.03370020166039467, -0.7814205288887024, 0.6175874471664429, -0.7371373772621155, 0.18789178133010864, 0.8420279026031494, -0.05314061790704727, -1.020450234413147, -0.6623467206954956, -0.24414394795894623, -0.9193558692932129, 0.4966588616371155, -0.8829782605171204, -0.7968816757202148, 0.5483164191246033, -0.752514660358429, -0.24439966678619385, -0.1738419085741043, -0.3322847783565521, -0.3783547878265381, -1.2715353965759277, 0.3261720538139343, -0.21647994220256805, 0.49499842524528503, -0.20426227152347565, 0.11096341162919998, -0.33392077684402466, -0.4299013018608093, 0.798760175704956, 1.0522569417953491, -1.0775463581085205, 0.6373053193092346, -0.6184424757957458, -0.6210764050483704, 0.06750239431858063, -0.11678609997034073, 0.09864183515310287, -0.2806858718395233, 0.15102049708366394, -0.3861066997051239, 0.6903775930404663, 0.18379166722297668, 0.6404000520706177, -0.22717970609664917, -1.1212875843048096, -0.7195385098457336, -0.7826631665229797, -0.18392236530780792, -0.8015263080596924, -0.786749005317688, 1.1933417320251465, 0.5818836092948914, -0.8645581007003784, 0.8197804689407349, -0.9448475241661072, 0.0077622029930353165, 0.39635169506073, 0.6912371516227722, 0.10494906455278397, 0.402424693107605, -0.25713515281677246, -0.41121187806129456, -0.5298791527748108, 0.4631474018096924, 0.6835426688194275, 0.17665740847587585, 0.4634036123752594, 1.0417948961257935, 1.299845576286316, -0.09488740563392639, 0.7554970979690552, 0.2474251538515091, -0.329819917678833, -1.4925233125686646, -0.04419628903269768, -0.1732005923986435, -0.6910645961761475, 1.3051902055740356, 0.3520154058933258, -1.1446263790130615, -0.9077672958374023, 0.19757455587387085, -0.1996781975030899, -0.25176799297332764, 0.217622771859169, -1.1363002061843872, 1.2939095497131348, 0.10661867260932922, 0.28678399324417114, 0.0356203131377697, -0.0789293423295021, 0.6053616404533386, -0.061238594353199005, -0.18047256767749786, -0.8449308276176453, -0.09511521458625793, 0.806327760219574, 0.5575022101402283, 0.7264428734779358, -1.2389726638793945, -0.43930718302726746, 0.046093832701444626, 0.10728982836008072, -0.5914789438247681, -0.23564524948596954, 1.3790942430496216, 0.16400381922721863, -0.405924528837204, -0.017709992825984955, 0.612910270690918, -0.5905670523643494, -0.6877666115760803, 0.41342443227767944, 0.9144115447998047, 0.793805718421936, -0.8908658623695374, -1.0704345703125, -0.26931628584861755, 0.6384009718894958, 0.725982129573822, 0.7888630032539368, 1.083817720413208, -0.4994613230228424, -0.38867971301078796, -0.44571778178215027, -0.20344707369804382, -0.9799846410751343, -0.5467895269393921, -0.24450837075710297, -0.99098801612854, -0.04616434499621391, 0.11120913177728653, -0.1670869141817093, 0.9124234914779663, -0.1300252377986908, 1.1033233404159546, 0.526495099067688, -0.41451922059059143, -0.30212172865867615, 0.14358486235141754, 0.4234364330768585, -0.6045193672180176, 0.6738994121551514, 0.9451583623886108, -0.5652377605438232, -0.4542589485645294, 0.48068392276763916, 0.1157279834151268, 0.2204963117837906, 0.06468132883310318, 0.1755504161119461, -1.2935599088668823, -0.3478386402130127, -0.2461903691291809, 0.8586094379425049, 0.32500749826431274, 0.21226008236408234, -0.699429452419281, 0.05501555651426315, 1.0336064100265503, -0.11058567464351654, -0.8509907722473145, 0.9918678998947144, -0.48159685730934143, -0.5227309465408325, 0.08247318863868713, 0.48521459102630615, 0.9968665838241577, -0.532020628452301, -0.34398534893989563, -0.19008852541446686, -0.3265170156955719, -0.07833681255578995, -0.3036828935146332, -0.5949552059173584, 0.6275882124900818, 0.32799431681632996, 0.12827323377132416, 0.6879814267158508, -1.1300921440124512, -0.13126254081726074, -1.1199493408203125, 0.6255267858505249, 0.571935772895813, 1.2632633447647095, -0.007740522734820843, -0.03915252909064293, 0.08069968223571777, -0.16212579607963562, 0.1274113953113556, 0.39601385593414307, 0.4700968563556671, -0.31888487935066223, -0.18680857121944427, -0.32100948691368103, 0.36803051829338074, -0.2971572279930115, -0.6301289796829224, -0.11617860943078995, 0.6903365850448608, -1.1623202562332153, -1.022371530532837, 0.6468603014945984, 0.19341857731342316, -0.5783531069755554, -0.6878153085708618, 0.08288081735372543, 1.0675318241119385, -0.30126073956489563, 0.7381209135055542, -0.4660661518573761, -0.3443242907524109, -0.05411115661263466, -0.8895983695983887, -0.9469146132469177, 0.01331295631825924, 0.3940645456314087, 0.9293098449707031, -1.2193471193313599, 0.14592856168746948, -0.940091609954834, 0.4904712438583374, 0.7018898129463196, -0.0249874796718359, 0.42276933789253235, 0.5531160235404968, -0.7379401326179504, -0.035110458731651306, 0.06678395718336105, 1.2689330577850342, 0.20214466750621796, 0.269055038690567, -0.11719809472560883, -0.1953437626361847, 0.06475727260112762, -0.31478720903396606, -0.09365277737379074, -0.4168172776699066, -0.26429006457328796, -0.2572630047798157, -0.18828193843364716, 0.4373572766780853, 1.761500358581543, -0.09497659653425217, -0.13055171072483063, 0.7150636911392212, -0.8520095348358154, -0.3195718824863434, -0.5891555547714233, 1.0110914707183838, -0.34094569087028503, -0.8586474061012268, 0.4539009630680084, 0.6048668026924133, 0.9308480024337769, 0.024471323937177658, -0.2065492570400238, 0.5104953050613403, 0.8362678289413452, -0.16325773298740387, -0.18540449440479279, 0.5905130505561829, 1.142163634300232, 0.526595950126648, 0.5282408595085144, -0.5597389340400696, -0.5899118781089783, 1.2241559028625488, -1.2465291023254395, 0.16456936299800873, 0.5551307201385498, 0.16046679019927979, 1.144640564918518, -1.3001998662948608, -0.582168459892273, 0.018154585734009743, -0.3130759596824646, 0.3827529549598694, 0.08224832266569138, 0.006949706003069878, -0.12304548174142838, 0.04561937600374222, 0.19211645424365997, 0.2134496569633484, 0.8530445694923401, -0.06342235952615738, -0.1490153968334198, 0.09819970279932022, -0.4903586208820343, 0.06966176629066467, -0.9639682769775391, -0.33042269945144653, -0.07561258226633072, -0.6344621181488037, -0.04395350441336632, 0.12727153301239014, 0.037676844745874405, 1.5512995719909668, -0.5938795804977417, -1.1365447044372559, 0.5666555166244507, -0.564628005027771, 0.5138370990753174, -0.9699444770812988, -0.42544907331466675, -0.7948916554450989, -0.6725316643714905, -0.08589527755975723, 0.43098902702331543, -0.32728004455566406, -0.5180179476737976, -0.600726842880249, -0.30331653356552124, 0.22672641277313232, 0.8200679421424866, 1.2030143737792969, 0.835111141204834, 0.39116567373275757, 0.09179452061653137, 0.27783846855163574, -0.4931781589984894, 0.24293631315231323, 0.4764416217803955, 0.2622087895870209, -0.4961337149143219, -1.1458326578140259, -0.5113202929496765, 1.18280827999115, 1.2287123203277588, -0.4014681279659271, -0.1887228637933731, 1.6691093444824219, 0.7751889824867249, 0.10379091650247574, -0.45346421003341675, 0.7284900546073914, -0.2324654459953308, 1.1509943008422852, 0.4525456428527832, -1.2774577140808105, 0.07461864501237869, -0.34235143661499023, -1.6283059120178223, 0.7386499643325806, -0.24101227521896362, -1.5897349119186401, 0.7811915278434753, 1.191827654838562, 0.27701476216316223, 0.9926680326461792, -0.08507685363292694, 0.5848726034164429, -0.29833441972732544, -0.10621482878923416, -1.6668572425842285, 0.6040905714035034, 0.8798165321350098, 0.0530240498483181, -1.0582735538482666, 0.27748903632164, 0.031701941043138504, 0.17536866664886475, 0.25802895426750183, 0.41103366017341614, 0.8919334411621094, 0.590207040309906, 0.1988135427236557, -0.8721904754638672, 0.05039256066083908, -0.23454883694648743, -0.1414032131433487, -0.3903355002403259, 1.3096387386322021, -0.01956523396074772, 0.01661008596420288, -0.5102691650390625, 0.8241902589797974, -0.6831910610198975, -0.857166588306427, -0.9545758366584778, 0.8641310334205627, 0.328961580991745, -0.22071944177150726, -0.3465445637702942, -0.27189257740974426, -0.8044634461402893, -0.8461595773696899, -0.4104146957397461, 1.4449645280838013, -1.0915435552597046, -0.17548048496246338, -0.27624770998954773, -0.08664675801992416, -0.16295437514781952, 0.1349882036447525, 0.23167653381824493, -1.4915225505828857, -1.6846919059753418, -0.7787802219390869, -0.062378011643886566, 1.0081852674484253, -0.24325445294380188, 0.39776721596717834, 0.08469275385141373, -1.6745256185531616, 0.6995202302932739, -0.356402188539505, -1.0301870107650757, -0.8706955909729004, -1.157412052154541, 0.9111830592155457, -0.47339561581611633, 0.1464470773935318, -0.03963788226246834, 1.278438687324524, -0.7486578822135925, -1.3859282732009888, -0.328919380903244, -0.2501199543476105, 0.8258238434791565, 0.2431512475013733, -0.03780103102326393, 0.9358522891998291, 0.26846224069595337, -0.6430750489234924, -0.6341462731361389, 1.2235389947891235, -1.2693979740142822, 0.1700543612241745, 0.32577547430992126, 0.9154601097106934, 0.49748843908309937, 1.1176142692565918, 0.4643378257751465, 0.656546950340271, 0.1836654543876648, 0.8371703028678894, -0.14904393255710602, -0.7173354029655457, 0.14041808247566223, -0.08297888189554214, -1.025296688079834, -1.535361409187317, 0.04202118515968323, -0.6191550493240356, -0.7609112858772278, 0.433884859085083, 1.4794646501541138, -1.1831259727478027, 0.09883210062980652, -0.3648586869239807, 1.220941185951233, -0.15567784011363983, 0.31355971097946167, 0.4177384078502655, -0.8594526052474976, 0.12636201083660126, -0.48330429196357727, -0.09520186483860016, -0.605914294719696, -0.2349119633436203, 0.3851109445095062, 0.13445943593978882, -0.26985132694244385, 0.5214061141014099, 0.44491714239120483, -0.6456178426742554, -0.7859262228012085, 1.6447771787643433, 1.1511551141738892, -0.282990962266922, 0.6087368726730347, 0.3397684693336487, 0.128363236784935, -0.00847243145108223, -0.5762879848480225, -0.1246298998594284, -0.11867286264896393, 0.7279196977615356, -0.030968403443694115, 0.29910194873809814, -0.5829150676727295, -0.3021691143512726, 0.889836847782135, 0.3674508333206177, 0.500426173210144, 0.43174412846565247, -0.3138929009437561, 0.6468903422355652, 0.4327588379383087, -0.49508771300315857, 0.14028143882751465, 0.3828134536743164, 0.028311695903539658, -0.5410025715827942, 0.4478023052215576, 0.4069467782974243, 0.07741513848304749, 0.38956961035728455, 0.1981126219034195, -0.14796403050422668, -0.5718412399291992, -0.9711602330207825, -1.7823703289031982, -0.6260014176368713, -0.20800907909870148, -0.5196224451065063, 1.2239116430282593, -1.4022517204284668, -0.41744139790534973, 0.01574878580868244, -0.3407423794269562, -0.3777138292789459, -0.46742475032806396, -0.23189683258533478, -0.5353155732154846, 0.4239497184753418, 1.4805364608764648, -0.5795149803161621, 1.1127079725265503, 0.25917792320251465, -0.6308309435844421, -0.3516840934753418, -0.3760315179824829, -0.48240169882774353, 0.33629918098449707, 0.02014012821018696, -0.2589186131954193, 0.13024838268756866, -0.5695700645446777, -0.13784007728099823, -0.30703189969062805, 0.13912059366703033, 0.7890332937240601, -0.6273014545440674, -0.7266086339950562, -0.466407835483551, 0.49774083495140076, -0.6992236375808716, -1.0685832500457764, -0.7569212317466736, -0.3764069974422455, 0.08067285269498825, -0.37493181228637695, 0.34319832921028137, -0.35420653223991394, 0.3620503842830658, 1.0215548276901245, -0.15616276860237122, -0.36561599373817444, -0.6791626811027527, 0.16248242557048798, -0.10925780236721039, 0.08459896594285965, -0.07763998955488205, -0.42200714349746704, 0.30115100741386414, -1.3708528280258179, 0.7612196803092957, 0.22977933287620544, -0.39770352840423584, 0.2512359917163849, -0.3541571795940399, -0.685298502445221, -0.46878430247306824, -0.7418652176856995, 0.894841730594635, -0.088199183344841, 0.20270627737045288, 0.29561281204223633, -1.0126765966415405, 0.4903644919395447, 0.6554880738258362, -0.130862757563591, 1.2025290727615356, 1.2531191110610962, 0.94356769323349, -0.22061020135879517, -0.3600175082683563, -0.2191305011510849, 0.9626439213752747, -0.9570536613464355, -0.2715488076210022, -1.087486743927002, 0.6086085438728333, 0.00935332104563713], [0.11202623695135117, 1.132148265838623, -2.399587631225586, -0.48053792119026184, 0.20819959044456482, -0.0177528765052557, 1.3860243558883667, 0.6474320292472839, -0.007369489409029484, -0.5364418029785156, -0.8268380761146545, -0.5656125545501709, 0.9651023745536804, 0.5545603632926941, -0.015825310721993446, -0.23413847386837006, 0.6174245476722717, -0.020079437643289566, 0.7530302405357361, 0.8850399255752563, -0.6405256986618042, 1.5601234436035156, 0.5393140912055969, 0.020052941516041756, 0.37494444847106934, 0.5745375156402588, -0.4837314188480377, 0.3333435654640198, -1.2122819423675537, -1.0568821430206299, 0.8219599723815918, -1.178237795829773, 0.20452772080898285, 0.8223569393157959, -0.5090976357460022, -0.020262861624360085, 1.2269929647445679, 1.282385230064392, 0.7944536209106445, 1.231442928314209, 2.494378089904785, -0.9746019244194031, -0.11593521386384964, -0.9392584562301636, 0.8562461733818054, -0.8982654809951782, 0.41878411173820496, -1.1833720207214355, -0.7880436182022095, -0.62808758020401, 0.13148000836372375, 0.7597866654396057, 0.8080139756202698, 1.239983320236206, 0.7935656905174255, -0.19120152294635773, 0.7449623346328735, -0.2782118022441864, 0.5127381086349487, 0.37956422567367554, 0.28075850009918213, -0.32643839716911316, -0.4929613173007965, 0.8118429780006409, 0.6999512314796448, 0.3688822388648987, -0.6607190370559692, 0.3802796006202698, 0.22631298005580902, -0.1844063103199005, 0.9732499122619629, 0.5339332222938538, -0.15015102922916412, 0.7977975010871887, -0.8994932770729065, 0.15233565866947174, 0.17839273810386658, 0.5176824331283569, 1.1059645414352417, 0.7783722281455994, -0.8814364671707153, -0.09174743294715881, 1.0968515872955322, -0.11805250495672226, 1.0209770202636719, 0.5268601179122925, 0.48899179697036743, -0.5979142189025879, -0.3476911783218384, 1.6707793474197388, -0.5728294849395752, -0.1849481761455536, 0.5841287970542908, 0.9555666446685791, -0.11191421002149582, -0.21569129824638367, -0.4248236119747162, 0.13819655776023865, 0.1771906614303589, -1.2386205196380615, -1.1972695589065552, -0.6313077211380005, 0.5245435237884521, 0.9414962530136108, -0.06490753591060638, 1.2862818241119385, 0.428937703371048, -0.4660032093524933, -1.101103663444519, -0.1648566573858261, -0.344953715801239, 0.4280104339122772, -0.4687153697013855, -0.591801643371582, -0.7831341028213501, 1.1498130559921265, 0.1600998193025589, 0.025862235575914383, 0.8578181862831116, 0.3223569095134735, -0.9940718412399292, 0.39067941904067993, 0.3274199068546295, 0.32601308822631836, 0.8410234451293945, 0.8578765392303467, -0.27236127853393555, 0.10783079266548157, 0.45132583379745483, 0.015829358249902725, 0.014298065565526485, -0.37584733963012695, 0.4912749230861664, 0.7475030422210693, -0.9929928183555603, 0.6808822154998779, -0.025425024330615997, -0.778753936290741, -0.32426977157592773, 0.0716886892914772, 0.7577229142189026, -0.35151252150535583, 0.5629280209541321, -1.015014886856079, -0.09425457566976547, -1.0529887676239014, 0.22878168523311615, -0.31326794624328613, -0.369610071182251, -0.0003637464251369238, -0.812625527381897, 0.7492383122444153, 0.19379587471485138, 0.7292624711990356, 0.7897395491600037, -0.6825189590454102, -0.18752074241638184, 0.4114890992641449, -0.15466056764125824, 0.8819400668144226, 0.4864276647567749, -0.293805330991745, -0.9180176258087158, 0.4949910044670105, 0.5212442874908447, -0.7909238934516907, -0.2767966389656067, 0.47975850105285645, -0.2103523164987564, 0.4981288015842438, -0.7762411832809448, -0.8199299573898315, -0.7418444752693176, 0.5911216139793396, 0.252143532037735, -0.9297513961791992, 0.6897858381271362, -0.6878165006637573, -0.6798053979873657, -1.6992231607437134, 0.8988386988639832, -0.3387101888656616, -0.07990794628858566, -0.15672458708286285, 0.626855731010437, -0.2452041059732437, -0.3502965569496155, -0.5546723008155823, -0.5311865210533142, -0.43336549401283264, -0.8433401584625244, -0.23796233534812927, -1.1246010065078735, 0.43761134147644043, 0.03988020494580269, -0.8821530342102051, 0.4442601501941681, -1.002152919769287, -0.8205069303512573, -0.4025171101093292, 0.22583156824111938, -0.5804014801979065, -0.7924793362617493, 0.17511044442653656, -0.6340295076370239, -0.0764261931180954, -1.336153268814087, 0.8263950347900391, -0.7122492790222168, 0.7310804724693298, 0.433301717042923, -0.029163094237446785, -0.7889946103096008, 1.414323329925537, -0.6614903211593628, -1.087765097618103, 0.21961617469787598, 0.29963311553001404, -0.21348202228546143, 0.27842217683792114, 0.8845083713531494, 0.257610946893692, 0.25377190113067627, 0.23436453938484192, 0.6245884895324707, -0.7246227264404297, -0.663489580154419, -0.5845686197280884, -1.0715949535369873, 0.5822107195854187, -1.0401688814163208, -1.1915788650512695, 1.0023270845413208, -0.08857803791761398, -0.3599417507648468, 0.3916272521018982, 0.39864128828048706, 0.14777952432632446, 0.8538467884063721, -0.006021205335855484, 0.3091776669025421, -0.7015035152435303, 0.5085723400115967, -0.9248998165130615, -0.685636579990387, 0.07280970364809036, 0.2433438003063202, -0.01938810758292675, 1.139755129814148, 0.7893649339675903, -0.6333211064338684, 0.07770630717277527, 0.7086034417152405, -0.22489343583583832, -0.07150591164827347, -1.0436642169952393, -0.9303921461105347, 0.2242281138896942, -0.3052780330181122, 1.9194624423980713, 1.0300383567810059, -1.333124041557312, -0.09350275248289108, 0.10321546345949173, 0.07630432397127151, -0.514448344707489, -0.33283039927482605, -0.6041536331176758, -0.0729951485991478, -0.19923599064350128, -0.3593132495880127, 0.979097306728363, -0.12418302148580551, 1.0154896974563599, -1.1556479930877686, 0.4007611572742462, -0.3802027702331543, 0.27846264839172363, 0.03915927931666374, 0.9989159107208252, 0.9275009036064148, -1.118237018585205, -0.8675150275230408, -0.11928257346153259, 0.5916181802749634, -0.644649088382721, 0.46849381923675537, 0.7190628051757812, 0.5045991539955139, -0.6313884854316711, 0.2893853187561035, 1.043735384941101, 0.014988874085247517, 0.35584619641304016, -0.4694533348083496, 0.3337636888027191, 0.7499540448188782, -1.3710293769836426, -0.7627076506614685, 0.17245833575725555, 0.8319786787033081, 0.6019086241722107, 1.0280014276504517, 1.1717493534088135, 0.6001115441322327, 0.42403802275657654, -0.07463818043470383, -1.1367138624191284, -0.3193778991699219, -0.6247544884681702, -0.46679234504699707, -0.6784830689430237, 0.22453349828720093, -0.03023601695895195, -0.7133111357688904, 0.49302616715431213, -0.5477923154830933, 0.8152191042900085, 0.6480957269668579, -0.45894286036491394, -0.08154191076755524, -0.031385164707899094, 0.13802345097064972, -0.3821381628513336, 0.3893238604068756, 0.9118360877037048, -0.4912065863609314, 0.5317896008491516, 0.283418208360672, 0.6051428318023682, 1.2249891757965088, 0.289992094039917, -0.22651909291744232, -1.0622174739837646, -0.5111973881721497, -0.05848041549324989, 0.19094447791576385, 0.05690382048487663, 0.19822748005390167, -1.632946491241455, 0.18904848396778107, 0.7936278581619263, 0.7661550045013428, -0.3579716980457306, 0.8556581139564514, -0.6997800469398499, -0.7281539440155029, -0.5249986052513123, -0.1358110010623932, 0.4600561857223511, -0.4683343470096588, -0.5468737483024597, -0.17249463498592377, -0.33673369884490967, 0.07457884401082993, 0.1637117713689804, 0.16941168904304504, 0.8776508569717407, -0.46124136447906494, -0.2968309223651886, 1.738667607307434, -0.08469662815332413, -0.08742848038673401, -1.4278528690338135, 0.9264481663703918, 0.26934903860092163, 0.732688844203949, 0.5561689734458923, 0.530795156955719, 0.41172391176223755, -0.34736761450767517, -0.03463298827409744, -0.014371257275342941, 1.2191520929336548, 0.193726047873497, -0.327829509973526, -0.6930184960365295, 0.2755751609802246, -0.43471968173980713, -0.5717342495918274, -0.6131902933120728, 0.29763662815093994, -0.5358553528785706, -0.16001345217227936, 0.15019038319587708, -0.19317150115966797, -0.4731995165348053, 0.02562675252556801, -0.2564433813095093, 0.478572279214859, 0.07720458507537842, -0.35887420177459717, -0.7205114364624023, -0.4749531149864197, -0.002157021313905716, -1.438946008682251, 0.2768809497356415, 0.2843784689903259, -0.05463054031133652, 0.5873602628707886, -0.8185912370681763, 0.14493806660175323, 0.5854743123054504, 0.5959216952323914, 0.3923572599887848, -0.3646039068698883, 0.31424954533576965, -0.08995267003774643, -0.22328612208366394, 0.24554131925106049, -0.1336144506931305, 1.930308222770691, 0.3125952482223511, 0.2675812840461731, 0.3381047546863556, 0.5954362750053406, 0.18569929897785187, -1.0619868040084839, -0.25093239545822144, 0.713863730430603, -0.3747234642505646, 0.18862071633338928, -0.7685800790786743, -0.3070678114891052, 1.5358591079711914, 0.4818285405635834, 0.36220744252204895, 1.016740083694458, -0.9447190165519714, -0.11798732727766037, -0.03862372785806656, 0.600409209728241, 0.8693141341209412, -1.0644220113754272, 0.47422677278518677, 0.004512373823672533, -0.8802805542945862, 0.4830544590950012, 0.5506243705749512, 0.38633978366851807, -0.47621938586235046, 0.0651715025305748, 0.9358088374137878, -0.20155201852321625, 0.8868131637573242, 0.6644569635391235, 0.5934548377990723, -0.8122308850288391, -0.10665930807590485, 0.6650477647781372, -0.07827677577733994, 0.9692967534065247, 0.5755065679550171, 0.3336760997772217, 1.4836937189102173, -0.6091750264167786, -0.162187397480011, 0.5273537635803223, 0.391940712928772, 0.993500828742981, 0.8157985210418701, 0.2829563021659851, -0.595920741558075, -0.021796002984046936, 0.6184610724449158, -1.1441056728363037, 0.7097493410110474, 0.5835834741592407, -0.3109108507633209, 0.04789157211780548, -0.13614162802696228, -0.4951946437358856, -0.2744276225566864, -0.9142912030220032, -0.7172549962997437, -0.8874263167381287, 0.20138044655323029, 1.051639437675476, -0.533223032951355, 0.429387629032135, -0.2690499722957611, -0.7348334193229675, 0.5163024067878723, -1.1738255023956299, -0.1528974026441574, -0.24976278841495514, -0.6080332398414612, -0.5328059792518616, -1.0764644145965576, -0.46142295002937317, 0.24839630722999573, -0.7077202200889587, -0.6887988448143005, 0.31574586033821106, -1.3648531436920166, 0.042662546038627625, 0.4132463335990906, 1.38588547706604, 0.3689296543598175, -0.24713139235973358, 0.17068010568618774, 0.26479941606521606, -0.7492250204086304, -0.03713947907090187, 1.063245415687561, -0.6368709802627563, 0.2728956639766693, -1.4457862377166748, -0.7301730513572693, 1.3517067432403564, 0.531787097454071, -0.5389312505722046, 0.018356522545218468, 0.15252354741096497, 1.1167608499526978, -0.21160762012004852, -0.5329179763793945, 0.11039993911981583, -0.19871382415294647, 0.9749115109443665, 0.14417923986911774, -0.6048415303230286, -0.7897987961769104, -0.32349684834480286, -2.0416204929351807, 0.9321791529655457, 0.2816484868526459, -1.8227463960647583, 0.4625157415866852, 0.36057281494140625, -0.2950321435928345, 0.5226060152053833, -0.5471645593643188, -0.5338478684425354, 0.029834086075425148, 0.012052265927195549, -1.3337372541427612, 0.11781950294971466, -0.3032073676586151, -0.010265611112117767, -0.14653290808200836, 0.0434054434299469, -0.005329053848981857, 1.015263319015503, -0.3285611867904663, 0.740810215473175, 0.425674170255661, 0.584251344203949, 0.10997641086578369, -0.06376004219055176, 0.15642675757408142, -1.1777491569519043, -0.303120493888855, -0.6896400451660156, 1.1849440336227417, -0.052071064710617065, -0.4988279640674591, -0.08056614547967911, -0.7151316404342651, -0.18819774687290192, -0.3906434178352356, -0.7034308910369873, 0.19646768271923065, 0.5768109560012817, 0.17500901222229004, -0.08459960669279099, -0.20936711132526398, 0.39077088236808777, -0.6385108232498169, -0.4380766451358795, 0.8537279367446899, -1.7742462158203125, 0.06191851571202278, -0.8839051723480225, -0.3474307954311371, -0.3377349078655243, -0.16046717762947083, 0.32839417457580566, -1.2529321908950806, -0.169994056224823, -1.3609641790390015, -0.18206000328063965, 1.2606076002120972, -0.5214066505432129, 0.1809668391942978, 0.7205485105514526, -1.4373302459716797, 0.5266152620315552, 0.012121081352233887, -1.4875547885894775, 0.10056690871715546, -1.139129638671875, 1.0699336528778076, -0.9850590229034424, 0.12238537520170212, -0.2625059485435486, 0.7626810669898987, -1.0801373720169067, -1.4182446002960205, -0.07122316211462021, -0.3536625802516937, 0.7572792768478394, 0.904663622379303, -0.24659085273742676, 1.3144572973251343, 0.8454247713088989, -0.5662325024604797, -0.3614242672920227, 0.36030805110931396, -0.7477600574493408, 0.07562211900949478, 0.777156412601471, 0.056284282356500626, 0.2601274847984314, 0.7150648832321167, -0.41610339283943176, 0.6901172399520874, 0.5435307621955872, 0.6778886914253235, -0.3919351398944855, -0.4952029287815094, -0.4980001747608185, 0.017695525661110878, -0.5670216679573059, -0.08856752514839172, -0.08939731866121292, -0.9865357279777527, -0.6899642944335938, 0.7652719616889954, 0.883561372756958, -0.5879665017127991, -0.47973042726516724, -0.7369384169578552, 0.566921591758728, -1.0495706796646118, 0.14397147297859192, -0.032077085226774216, -0.5174282789230347, 0.32330358028411865, -0.5303929448127747, -0.3116666078567505, -0.3159727454185486, -0.4160362780094147, 0.00831202045083046, 0.2661437392234802, -0.29699695110321045, 0.22158381342887878, 0.6552371978759766, -0.17079196870326996, -0.16213883459568024, 1.8979970216751099, 1.2126123905181885, -0.4868757426738739, 0.5301858186721802, -0.3654150068759918, -0.29828202724456787, 0.5667750239372253, -0.604620099067688, -0.08564551919698715, -0.6777462959289551, 0.314638614654541, 0.054160069674253464, -0.28708165884017944, -0.9697577357292175, -0.5312318801879883, -0.28394296765327454, 0.5858138203620911, 0.045278944075107574, -0.0024161338806152344, -0.33222275972366333, 1.3150973320007324, 0.2256777435541153, -0.39734286069869995, 0.22183476388454437, 0.08190680295228958, 0.3407299816608429, 0.18518640100955963, 0.7561233043670654, 0.10959012806415558, -0.07796254009008408, 0.48555704951286316, -0.14250071346759796, 0.2850480079650879, 0.37173765897750854, -0.7648383975028992, -1.614190697669983, -0.327671080827713, -0.670386791229248, -0.5472548604011536, 0.6783369183540344, -0.23710325360298157, 0.0269966721534729, 0.4607141315937042, 0.022864466533064842, -0.13570046424865723, -0.8023859262466431, -0.15552248060703278, -0.06889605522155762, 0.12937462329864502, 0.2784636616706848, -0.43978792428970337, 1.319138526916504, 0.31164154410362244, -0.004534682258963585, 0.044519610702991486, -0.6594595313072205, -0.45421546697616577, 0.22454895079135895, 0.029926929622888565, -0.3287758231163025, -0.004659026861190796, -0.03544017672538757, -0.5311082005500793, 0.4458995759487152, -0.16232579946517944, 0.3619050085544586, 0.003271050751209259, -0.9742931127548218, 0.02130657620728016, 1.1406059265136719, -0.11621969193220139, -0.7865350842475891, -0.489853173494339, -0.45626962184906006, 0.42740610241889954, 0.1927376091480255, 0.3568439781665802, -1.1531322002410889, 1.4675525426864624, 0.6299083232879639, -0.07269120216369629, 0.20514033734798431, -0.2923023998737335, 0.31420156359672546, -0.8303155303001404, 0.980499267578125, 0.05822622403502464, -0.11315440386533737, 0.15938131511211395, -0.5389386415481567, 0.018826112151145935, -0.2807879149913788, 0.3766089379787445, 0.899186372756958, -0.8001682162284851, -0.680718719959259, -0.3861953020095825, 0.1238226518034935, 0.9947250485420227, 0.04073430970311165, -0.07118771225214005, -0.02373863011598587, -1.2603973150253296, -0.16957531869411469, 0.025299392640590668, 0.04983771964907646, -0.050788916647434235, 1.0477466583251953, 2.1341419219970703, 0.41511258482933044, -0.27416735887527466, -0.16454418003559113, 0.7293832898139954, -0.6205145120620728, -0.11978030949831009, -0.7482923865318298, -0.28738701343536377, -0.6378082633018494], [0.1268572211265564, 1.8703793287277222, -2.107581853866577, 0.060935039073228836, -0.41868293285369873, 0.3765559792518616, 0.9806077480316162, 0.20548385381698608, -0.27270427346229553, -0.20133784413337708, -0.6034663915634155, 0.37304365634918213, 0.6658509969711304, 0.3585895299911499, 0.11082735657691956, 0.41304516792297363, -0.2174305021762848, 0.47289717197418213, 2.067333221435547, 0.8635741472244263, -0.27965062856674194, -1.0766334533691406, -0.4489867091178894, -0.045902155339717865, -0.6695761680603027, 0.7777286767959595, -0.46190452575683594, -0.11620746552944183, -1.2331717014312744, -1.4034063816070557, 0.7536184191703796, -0.4951134920120239, 0.018669236451387405, 0.11232320964336395, -1.7520263195037842, -0.8492259979248047, 2.074281692504883, 0.7776957154273987, 0.07920762151479721, 0.40651339292526245, 2.1632556915283203, 0.04928085207939148, -0.3586863577365875, -0.9805063009262085, 0.7873028516769409, 0.4232759475708008, 0.4749695658683777, -1.1186109781265259, 0.33504676818847656, -0.28357309103012085, 0.5867950320243835, 0.6177499294281006, 0.43555784225463867, 1.0626593828201294, 0.44595178961753845, -0.8393982648849487, -0.1703062355518341, 1.2384333610534668, -0.05714939534664154, 0.7580394744873047, 0.5393602848052979, 0.12799905240535736, 0.6261177062988281, 0.7366429567337036, 1.2606627941131592, 0.030875839293003082, 0.6103433966636658, 0.46662697196006775, -0.08497180044651031, -0.4633510708808899, 0.4917672574520111, -0.20213791728019714, -0.7068850994110107, -0.08023244142532349, -0.628792405128479, 0.6678952574729919, -0.2643741965293884, 0.8362327814102173, -0.37775370478630066, 0.6860806941986084, -0.6536315083503723, -0.20975230634212494, 0.8392248749732971, 0.07360299676656723, 0.37382563948631287, 0.4547048807144165, 0.37633436918258667, -0.580529510974884, 0.23756438493728638, 0.9664564728736877, 0.5029057860374451, 0.4862525463104248, 0.6043481230735779, -0.24803116917610168, -0.19076594710350037, -0.6300498247146606, -0.3153696060180664, -1.3822600841522217, -0.4307882785797119, -1.1438052654266357, -0.18073050677776337, -1.203027367591858, 0.11645984649658203, 0.794753909111023, 0.48543262481689453, 1.8156914710998535, -0.13448160886764526, -0.26104363799095154, -0.8396908044815063, 0.13149844110012054, -0.23636066913604736, 0.4349726438522339, 0.1315433531999588, -1.5362720489501953, 0.0392824150621891, 0.7104300260543823, 1.2995023727416992, -0.2219657301902771, 0.3106755018234253, 0.6911865472793579, -0.9297671318054199, 0.06658579409122467, -0.09060791879892349, 0.09784066677093506, 0.25503265857696533, 0.3615487813949585, -0.6762682199478149, -0.4027762711048126, -0.03686603158712387, 0.3099823594093323, 0.3622822165489197, -0.5444098114967346, -0.042353201657533646, 0.6854519844055176, -1.191306710243225, 1.1480965614318848, 0.1303318589925766, -0.6064194440841675, -0.11661718040704727, -0.47623103857040405, 0.48649561405181885, -0.4899638593196869, -0.9670252799987793, -0.6787395477294922, -0.2925594747066498, -0.7954709529876709, 0.47710418701171875, 0.5547515153884888, -0.9463990926742554, 0.19852226972579956, -0.9738671183586121, 0.5889869928359985, 0.2278544008731842, 0.7880642414093018, -0.039670541882514954, -0.22468741238117218, 1.1573623418807983, -0.01835968717932701, 0.08186303824186325, 0.890404224395752, 0.6497235894203186, 0.5142033696174622, -0.5055941343307495, 0.9633430242538452, 0.022753126919269562, -0.8617942333221436, 0.7688350677490234, 0.4050575792789459, -0.0631709173321724, 0.09446577727794647, -0.37501031160354614, -0.2606505751609802, -0.9574567675590515, 0.7902781963348389, 0.5084953904151917, -0.8448139429092407, 0.9254698753356934, -0.44920748472213745, -0.8506767749786377, -2.181602954864502, 0.15658676624298096, -0.014081870205700397, 0.5587061643600464, 0.6498340368270874, 0.9323612451553345, -0.6775221824645996, -0.02786404639482498, -0.2250491976737976, -0.32396718859672546, -1.0291008949279785, -1.118318796157837, 0.3320038318634033, -0.8118457794189453, 0.18191780149936676, -0.1633160561323166, -0.610985517501831, 0.9661996364593506, -0.21789517998695374, -0.4375372529029846, -0.0953022688627243, -0.4677840769290924, -0.6800801753997803, -1.1972566843032837, -0.12539581954479218, -0.34056803584098816, 0.6192260384559631, -1.2440769672393799, 0.31603288650512695, -0.7164427042007446, 0.38788339495658875, 0.9058900475502014, -0.3209199011325836, -1.1099073886871338, 0.7374986410140991, 0.21938253939151764, -1.5731010437011719, 0.40500086545944214, -0.005716340616345406, 0.43472787737846375, 0.1405288428068161, 0.24715980887413025, 0.9352480173110962, 0.8284248113632202, 0.36868637800216675, 1.0906699895858765, -0.3340713381767273, -1.0373268127441406, -0.9194537401199341, -0.6558816432952881, 0.2891736328601837, -0.8724023103713989, -1.0553209781646729, 0.4373946189880371, 0.7214877605438232, -0.36204907298088074, 1.2265580892562866, 0.3218018114566803, -0.2272781878709793, 0.4280833601951599, 0.6915909051895142, 0.22042883932590485, 1.1282111406326294, -1.131169080734253, -0.9504649639129639, -0.4027712941169739, -0.35798296332359314, 0.1262570470571518, -0.7242840528488159, 0.2494666576385498, 1.330280065536499, 1.5921499729156494, -0.37104088068008423, 0.4772568643093109, -0.438540518283844, 0.0881372019648552, -0.6649086475372314, 0.3074212074279785, -0.038401808589696884, -0.732650876045227, 0.9602015018463135, 0.7351862192153931, -1.2134822607040405, 0.5937576293945312, 0.04968739673495293, 0.46563616394996643, -0.43946748971939087, 0.02123287320137024, -0.45188310742378235, 0.6136930584907532, 0.2692343592643738, 0.009937804192304611, -0.05432150512933731, -0.5316502451896667, 0.5406227111816406, -0.13912582397460938, -0.18610486388206482, -0.3510957360267639, 0.2880439758300781, -0.04530344158411026, 0.2679968774318695, 0.26890116930007935, -1.4446051120758057, -1.2345305681228638, -0.2635790705680847, 0.4964194893836975, 0.36534711718559265, 0.680908739566803, 0.7329403758049011, 1.114140510559082, 0.07534565031528473, -0.1479901820421219, 0.1482832282781601, -0.6097645163536072, -0.25180336833000183, -0.2736859917640686, -0.6469003558158875, 0.4225422143936157, -0.27857017517089844, -0.3492293357849121, -0.040281299501657486, 0.4428470730781555, 0.5845521688461304, 1.4722740650177002, 1.313335657119751, -0.9357032775878906, -0.041604261845350266, -0.3274894058704376, -0.15191872417926788, -1.1390190124511719, -1.0962607860565186, 0.08787790685892105, -0.9236769676208496, -0.1614813357591629, -0.2647852301597595, -0.2401018738746643, 0.4843235909938812, 0.1268632411956787, 0.4106943905353546, 1.4331823587417603, -0.18427716195583344, -0.7748286128044128, -0.4443719983100891, -0.215695321559906, -0.9917992353439331, 0.6166297793388367, 0.6216299533843994, -0.9752886891365051, -0.7035373449325562, -0.10033786296844482, 0.31904280185699463, 0.5947057008743286, -0.23019173741340637, 0.5788267850875854, -0.7273997664451599, -0.8812326788902283, 0.5323869585990906, 1.0026400089263916, 0.7207235097885132, -0.15935875475406647, -0.8926715850830078, 0.1401222050189972, 0.6330030560493469, 0.38486531376838684, -0.7528924345970154, 0.36969882249832153, -0.08850501477718353, -0.38476699590682983, -0.2811230421066284, 0.13846059143543243, 0.8295807838439941, -0.6336060762405396, -0.5148838758468628, 0.21516817808151245, 0.14121469855308533, -1.3629565238952637, 0.6406465172767639, 0.07401677221059799, 1.1285474300384521, 0.2929767966270447, -0.2543456554412842, 1.1099154949188232, -0.34700632095336914, 0.023181870579719543, -1.9185110330581665, 0.6556581854820251, 0.9078885912895203, 1.2897634506225586, 0.8482829928398132, -0.14571380615234375, 0.020222142338752747, -0.4032997488975525, 0.5944397449493408, -0.12900111079216003, 0.6122068762779236, -0.25365880131721497, -0.28651875257492065, 0.019868992269039154, -0.5566695928573608, -0.0896911770105362, -0.5188730359077454, -0.3236842453479767, 0.6795058250427246, -0.16286993026733398, -0.058588266372680664, 0.47403448820114136, -0.1174878254532814, -0.8345886468887329, -0.8219759464263916, -0.13531261682510376, 0.24340218305587769, 0.28850695490837097, 0.322639524936676, -0.4286521077156067, -0.3246096968650818, 0.27052080631256104, -0.6186509132385254, 0.00044542551040649414, -0.5028886795043945, -0.20906749367713928, 1.02485191822052, -1.1040198802947998, -0.4996345043182373, -0.10115428268909454, -0.031842008233070374, 0.943913459777832, 0.2138231098651886, -0.22590941190719604, -0.056791964918375015, -0.32434338331222534, 0.1548653244972229, -0.24828481674194336, 1.1809799671173096, 0.781754732131958, -0.30736851692199707, -0.08409322053194046, 0.293517142534256, 0.5130143165588379, -0.7591971158981323, -0.47532111406326294, 0.3777257800102234, -1.302420735359192, -0.08172982931137085, -0.23371785879135132, -0.003377724438905716, 1.1184496879577637, -0.1682758927345276, 0.5888153910636902, 0.6713480949401855, -0.747346043586731, -0.11513392627239227, -0.045360442250967026, 0.7053586840629578, -0.9044190645217896, -0.2569226622581482, 0.3621536195278168, -0.006811417639255524, -0.3797016739845276, 0.2631751298904419, 0.3294251561164856, 0.47162753343582153, 0.10843956470489502, -0.49277710914611816, 0.5058729648590088, 0.4945492446422577, 0.445216566324234, 1.3824100494384766, 0.5188212394714355, -0.26112306118011475, -0.8682852983474731, 1.4130651950836182, -0.4411119520664215, 0.38483381271362305, 0.13507738709449768, 0.5002065300941467, 1.147169828414917, -1.2572736740112305, -0.6835076212882996, 0.6995674967765808, 0.32897546887397766, -0.19737647473812103, -0.26097628474235535, 0.3402576446533203, -1.355210781097412, -0.36825376749038696, 0.1632942408323288, 0.02704242244362831, 0.26756173372268677, -0.05008430778980255, -0.06925045698881149, 0.244961217045784, -0.0199180506169796, 0.050102557986974716, -0.7032996416091919, -0.129257470369339, 0.30187052488327026, -0.3930984139442444, 0.38196083903312683, 0.25182899832725525, 0.4219430387020111, 0.059676431119441986, -0.47364357113838196, -0.5938528180122375, 0.2182755023241043, -0.7949929237365723, 0.35182592272758484, -0.533760130405426, -0.5126999020576477, -0.47472846508026123, -0.7718427181243896, -0.9551326036453247, -0.269656240940094, -0.19635191559791565, 0.39558500051498413, 0.45759257674217224, -1.3512417078018188, 0.3896612524986267, 0.24302077293395996, 1.272841215133667, 0.8142163753509521, 0.21939370036125183, -0.3191685378551483, -0.012207895517349243, -0.4939430356025696, 0.4020702838897705, 0.23986712098121643, -0.13169628381729126, -0.23328953981399536, -1.209306240081787, -0.49021559953689575, 1.3497518301010132, 0.11272484064102173, 0.33874520659446716, 0.294067919254303, 0.3581587076187134, 1.8427456617355347, -0.42492127418518066, -0.5184842944145203, 0.8038516044616699, 0.12208405137062073, 0.706234335899353, 0.3057709336280823, -0.9033284187316895, -0.6216694116592407, -0.315015971660614, -1.218794345855713, 1.6506285667419434, 0.3389533758163452, -1.0985820293426514, 0.06423668563365936, 0.8097115755081177, 0.3929014205932617, 0.9568884372711182, -1.0243326425552368, -0.1550079584121704, 0.896294891834259, -0.37392133474349976, -1.050734043121338, 0.3324326276779175, 0.7619069814682007, 1.2318720817565918, -0.37670549750328064, 0.32809245586395264, -0.7321100234985352, 0.14679598808288574, -0.13120508193969727, -0.08739975839853287, 0.4796026349067688, 0.38932567834854126, 0.4315693974494934, -0.5784988403320312, 0.4607698917388916, -0.6922060251235962, 0.566338300704956, -0.12250245362520218, 1.6046500205993652, 0.35617825388908386, -0.7625311613082886, 0.3934793174266815, -0.6521955728530884, 0.01693597622215748, -0.48403075337409973, -0.5954133868217468, 0.5069305300712585, 1.1845966577529907, -0.19804245233535767, 0.5147759914398193, -0.05135681480169296, -0.5703723430633545, -0.606644868850708, -0.15968731045722961, 0.5300223231315613, -0.47330164909362793, 0.36953848600387573, -0.43260639905929565, 0.3045503795146942, -0.07205478847026825, -0.24550679326057434, 0.056733548641204834, -0.6112679243087769, -1.3903748989105225, -0.8812612891197205, -0.30682265758514404, 0.35656923055648804, -0.7428919672966003, 0.2118774652481079, 0.2715044319629669, -1.5038628578186035, 0.7442887425422668, -0.125564843416214, -2.048508644104004, -0.08445697277784348, -0.4884021282196045, 0.7394955158233643, -0.5784074068069458, 0.015741854906082153, 0.23505863547325134, 0.6837598085403442, -0.9390870332717896, -1.1487979888916016, -0.8828940391540527, -0.12013611197471619, 0.7218202352523804, 0.6576661467552185, -1.1477185487747192, 1.0702921152114868, -0.5129880309104919, -0.2833121716976166, -0.2714589238166809, -0.20735988020896912, -0.8740938901901245, -0.29893261194229126, 0.2927825450897217, -0.1882076859474182, 0.20786133408546448, 1.147108554840088, 0.8813896775245667, 0.6144607067108154, 0.11524355411529541, -0.17357036471366882, -1.3821241855621338, -0.3217769265174866, -0.21772021055221558, -0.5295605659484863, -0.9897778630256653, -0.48421406745910645, -0.07294531166553497, -0.5111439824104309, -0.7760598063468933, 1.0622022151947021, 1.4824490547180176, -1.176565408706665, 0.5028356909751892, 0.19790086150169373, 0.10339358448982239, -1.279529333114624, 0.4365151524543762, -0.4443846344947815, 0.11747489869594574, 0.7941370606422424, 0.20057925581932068, 0.4833531975746155, -0.9610621929168701, -0.2902086079120636, 0.2900692820549011, 0.2194218784570694, -0.39261049032211304, 0.3146599531173706, 0.522417426109314, 0.30336111783981323, -0.32228410243988037, 1.4205050468444824, 0.261442631483078, -0.3780457377433777, 0.3062293529510498, 0.1761489361524582, -0.4735541045665741, -0.3851308226585388, 0.07934801280498505, 0.431438148021698, -0.9555554389953613, 0.33530503511428833, 0.08067195117473602, 0.26968082785606384, -0.09751993417739868, 0.3026092052459717, -0.010314365848898888, 0.17203909158706665, 1.2942619323730469, 0.3893486261367798, -0.9084221124649048, 1.0669960975646973, 0.5525877475738525, -0.09251611679792404, 0.7973175644874573, -0.5338740348815918, 0.1896388828754425, 0.21478796005249023, 0.2979080080986023, 0.10445288568735123, -0.27829551696777344, 1.2171859741210938, 0.8033331036567688, -0.011230206117033958, -0.26793697476387024, -0.6673777103424072, -1.1594722270965576, -0.6728084087371826, 0.016470829024910927, 0.4258861839771271, 0.5108649134635925, -0.9421457648277283, -0.6746628284454346, -0.17963051795959473, 0.6245854496955872, -0.11707388609647751, -0.14690828323364258, 0.21276675164699554, -0.2083767056465149, -0.6280936002731323, 0.690666675567627, -0.6960327625274658, 1.0498313903808594, 0.5119492411613464, -0.05785498023033142, -1.0579771995544434, 0.10860052704811096, 0.5251073241233826, -0.1876171976327896, 0.39480412006378174, 0.1422964334487915, 0.2864511013031006, -0.9043405055999756, -0.06848487257957458, -0.09445424377918243, 0.2368396520614624, 0.5110592842102051, 0.23466148972511292, -1.558429479598999, 0.2672450840473175, 0.6146239042282104, -0.45883238315582275, -0.2801324725151062, -0.15653842687606812, -0.7931063175201416, 0.25812339782714844, 0.06840342283248901, 0.3078007996082306, -0.46100687980651855, 0.6263431310653687, 0.4133164882659912, 0.012179560959339142, -0.9717876315116882, -1.0678644180297852, 0.7754318714141846, -0.21498961746692657, 0.7037031650543213, -0.5033034682273865, 0.17163491249084473, 0.4088422656059265, -0.6405088901519775, -0.20665544271469116, -0.15364959836006165, -0.5110126733779907, -0.08846345543861389, -1.0743868350982666, -0.4014459550380707, -1.0383713245391846, -0.17848363518714905, 0.4680502116680145, 0.24731367826461792, -0.011729083955287933, 0.05843408405780792, -1.078185796737671, -0.32991623878479004, 0.7536776065826416, -0.04176284745335579, 0.14603032171726227, 1.4747785329818726, 1.7189509868621826, 0.307860404253006, 0.1514328420162201, -0.2846885621547699, 0.16990019381046295, -0.8526804447174072, 0.3162255585193634, -0.8575280904769897, -0.26155519485473633, -0.5733687877655029], [-0.5938746333122253, 1.7009835243225098, -2.1853394508361816, -0.24158231914043427, 0.5067654252052307, 0.14089654386043549, 1.293782114982605, -0.32601726055145264, -0.16637557744979858, -1.0364463329315186, -0.45878636837005615, 0.32243210077285767, 0.7095611095428467, 1.0833818912506104, 0.35414740443229675, 0.6736005544662476, 0.3401857912540436, -0.163908451795578, 0.6942148208618164, 1.2341996431350708, 0.34798628091812134, -1.2701044082641602, -0.2581457495689392, -0.19897721707820892, 0.08568504452705383, -0.3897830545902252, -0.43797263503074646, -0.0398775078356266, -0.6140038967132568, -0.6744182705879211, 0.9237887263298035, -0.21794600784778595, 0.37364494800567627, -0.27809271216392517, -1.0684117078781128, -1.1465619802474976, 0.44964325428009033, -0.359950989484787, -1.0826976299285889, 0.17031486332416534, 2.0379745960235596, -0.04039768502116203, -0.12718108296394348, -1.2595739364624023, 0.5434054732322693, -0.3113824129104614, 0.2765251100063324, -0.6045423746109009, -0.2256610095500946, -1.06777822971344, 0.44954603910446167, -0.4453229010105133, 0.5122482180595398, 0.9581810235977173, 0.42420145869255066, -0.44176238775253296, -0.02938961237668991, 0.9238321185112, -0.325227826833725, 0.4083385467529297, 0.9412536025047302, 0.42820775508880615, 0.3231278955936432, 1.1810681819915771, 0.4156431555747986, -0.4651270806789398, 0.5691156983375549, 0.21025224030017853, 0.5638522505760193, 0.44433310627937317, 0.6828102469444275, 0.35823044180870056, -0.3744560480117798, -0.22768400609493256, -0.4859974980354309, -0.03999566286802292, -0.46018746495246887, 0.39661306142807007, -0.21894079446792603, 0.3174584209918976, -0.30989348888397217, 0.800713300704956, -0.007087950594723225, -0.5348353385925293, 0.4511767327785492, -0.11991530656814575, 0.07794231921434402, -0.683448076248169, -0.704188883304596, 1.208247423171997, -0.09640452265739441, 0.012775547802448273, 0.905886709690094, -0.6379119157791138, -0.45091888308525085, -1.102596402168274, -0.211052805185318, -0.5088613033294678, 0.11642108857631683, -1.2027490139007568, -0.5522611737251282, -0.7790234088897705, 0.15355806052684784, 0.489681601524353, 0.37868115305900574, 1.6420848369598389, 0.7702323794364929, -0.285724937915802, -0.7152062654495239, 0.14446014165878296, 0.504176139831543, -0.2017875462770462, -0.9224060773849487, -0.4059564769268036, -0.1899007260799408, 0.678275465965271, 1.2619695663452148, -0.11649569123983383, 0.7539871335029602, 0.29525208473205566, -0.33032482862472534, -0.9598996639251709, -0.6936723589897156, 0.08280809223651886, 1.515468955039978, -0.19920532405376434, -0.7582783102989197, -0.05124397948384285, -0.43131163716316223, -0.25302380323410034, 0.47963255643844604, -0.10217534750699997, -0.1661132276058197, 0.6543874740600586, -0.40767714381217957, 1.1860392093658447, 0.06862073391675949, -0.9081641435623169, 0.1342039555311203, 0.40261906385421753, -0.16472728550434113, 0.3214060664176941, -0.6671748161315918, -0.7525513172149658, 1.089616060256958, -1.0375888347625732, 0.02152620255947113, -0.23728182911872864, -0.43231886625289917, 0.6724902391433716, -1.129516363143921, 0.03265134617686272, 0.011244475841522217, 1.9053630828857422, 0.21733352541923523, -0.10482367128133774, 0.5458182692527771, 0.13919179141521454, 0.1621864140033722, 0.4780479073524475, 1.5669931173324585, -0.38371598720550537, -0.9427812099456787, 1.3563790321350098, 0.15755538642406464, -0.7102497220039368, 0.6983957886695862, 0.2669369876384735, -0.6885591745376587, 0.44172611832618713, -0.15959309041500092, -0.21839703619480133, -1.299238681793213, 0.7711195945739746, -0.34471073746681213, 0.18363869190216064, 1.4871840476989746, 0.07048754394054413, -0.8092162013053894, -0.5451430082321167, 0.6487491726875305, -0.6564377546310425, 0.018007857725024223, 0.3495458662509918, 0.6621027588844299, -0.4524688422679901, -0.45440220832824707, -0.7745545506477356, 0.011794345453381538, -1.0707917213439941, -0.8445507884025574, -0.3764677345752716, -1.5039575099945068, 0.7500734925270081, -0.9356483221054077, -0.7116559743881226, 0.7180752158164978, -0.2309141606092453, -0.10266361385583878, -0.2948549687862396, -0.21051044762134552, -0.13047584891319275, -1.5256417989730835, 0.27612704038619995, -0.7836705446243286, 0.6570632457733154, -0.2483072429895401, 0.904909074306488, -0.2188732773065567, 0.47737571597099304, 1.0861883163452148, -0.6246727705001831, -1.1833959817886353, 0.4255085289478302, 0.09054487198591232, -1.1088494062423706, 0.2502420246601105, 0.11889612674713135, -0.0811186209321022, 0.42205289006233215, 0.3395840525627136, -0.057857125997543335, 0.37702545523643494, -0.013715543784201145, 0.6204662322998047, 0.08686292171478271, -0.7344498634338379, -0.25345900654792786, -0.4089919924736023, 0.27464184165000916, -0.9974384903907776, -0.7786960005760193, -0.03994038328528404, 0.041170381009578705, -1.2669914960861206, 1.254937767982483, -0.5147725939750671, 0.15021036565303802, 0.9181257486343384, 1.220845341682434, 0.6717270016670227, 0.1425231248140335, -0.13938374817371368, 0.5955314636230469, -0.7146826386451721, -0.40042340755462646, 0.9803747534751892, -0.1663827896118164, -0.10987680405378342, 1.496689796447754, 0.5672829151153564, -0.13845226168632507, 0.7892618775367737, -0.7519540786743164, 0.3518829047679901, -0.5787582993507385, 0.25492843985557556, -0.2585434317588806, -1.05055570602417, 0.8550530076026917, 0.13708147406578064, -0.6340544819831848, 0.21205675601959229, -0.13466113805770874, 0.5137747526168823, -0.37320876121520996, -0.1589004099369049, -0.2587202787399292, 0.21178090572357178, -0.4252718687057495, -0.4081408977508545, 0.14020445942878723, -0.7035978436470032, 1.0282843112945557, -0.028283942490816116, -0.2700507938861847, 0.2309429794549942, 1.5704859495162964, 0.4332694113254547, 1.2741895914077759, -0.0922318547964096, -1.5793733596801758, -0.7865507006645203, -0.06921867281198502, 0.7289533615112305, -0.31070277094841003, -0.3065413236618042, 0.22346509993076324, 0.9973517060279846, -0.3234096169471741, 1.3371281623840332, -0.13375677168369293, -0.09970979392528534, 0.2067522555589676, -0.23850888013839722, 0.4240926504135132, 0.10667318105697632, -0.6830182671546936, -0.6417882442474365, -0.06268216669559479, 0.7109038829803467, 1.1996303796768188, 1.2114615440368652, 0.8076050877571106, 0.11538314819335938, 0.5267949104309082, -0.4158174395561218, 0.2483772337436676, -0.37150147557258606, -0.6726650595664978, -0.3075541853904724, -0.3824811577796936, -0.8665175437927246, -0.15220791101455688, 0.0773148313164711, 0.9986861348152161, -0.28732824325561523, 1.0353333950042725, 0.12682728469371796, -1.2967851161956787, -1.5176092386245728, -0.0062205493450164795, -0.015524497255682945, -1.2485274076461792, 0.7300524711608887, 1.625989317893982, -1.1243832111358643, -0.04948127642273903, 0.5070598721504211, 0.12603285908699036, 0.3845760226249695, 0.7974684834480286, 0.24313880503177643, -0.987739086151123, -0.18998898565769196, -0.37867432832717896, 1.1633800268173218, -0.4557448923587799, 0.0732748880982399, -0.18870140612125397, 0.7975847721099854, 0.6993590593338013, 0.09837479889392853, 0.14575695991516113, 0.5290018916130066, -0.6928461790084839, -0.5311117172241211, -0.14725281298160553, 0.41827160120010376, 0.690747857093811, -0.0779692754149437, -1.1465392112731934, -0.6837747693061829, -0.14858384430408478, -0.5204073786735535, 0.7523475885391235, 0.4085516929626465, 1.0276594161987305, 0.06968383491039276, 0.08553649485111237, 1.1130263805389404, -0.11313224583864212, 0.3448021113872528, -1.4265069961547852, 0.8989978432655334, 0.8583579063415527, 1.1928352117538452, 0.2901725769042969, -0.005739610642194748, 0.27958300709724426, -0.6029396653175354, 0.020059939473867416, -0.27701300382614136, 0.5833548307418823, 0.2687655985355377, -0.651913583278656, -0.17295941710472107, -0.02117609977722168, 0.061683643609285355, -0.10269226133823395, 0.026168888434767723, 0.3254778981208801, -0.09234568476676941, -0.1255510002374649, 1.5359681844711304, 0.21656301617622375, -0.11219971626996994, -0.9217179417610168, 0.5179750919342041, 0.2426406443119049, -0.5497268438339233, -0.352607786655426, -0.03427981585264206, 0.11113478243350983, 0.6191396713256836, -0.19202233850955963, -0.15023477375507355, -0.555324137210846, 0.8155210018157959, 1.2749942541122437, -1.534912347793579, -0.24239343404769897, -0.9860202074050903, 0.7846634387969971, 0.9013646245002747, -0.2962718904018402, 0.97159343957901, 0.34013164043426514, -0.27513548731803894, 0.03671508654952049, 0.6724822521209717, 1.2354620695114136, -0.13029508292675018, 0.23275528848171234, 0.03863580524921417, -0.19763441383838654, 0.7025299668312073, -0.9242969155311584, -0.599534273147583, 0.06694955378770828, -0.6545402407646179, -0.02093678154051304, 0.35903993248939514, -0.41556915640830994, 1.1534483432769775, 0.492666631937027, 0.1257728487253189, 0.48737210035324097, 0.35669445991516113, -0.9321689009666443, 0.2553249001502991, -0.1337786763906479, -0.1006515845656395, -0.13946056365966797, 0.12074701488018036, -0.41823524236679077, 0.16221599280834198, 0.10571431368589401, 0.2557782530784607, 0.04120877385139465, -0.24816225469112396, -0.318440318107605, 0.17075982689857483, 0.3682788014411926, 0.6042187213897705, 1.2852803468704224, 1.5364961624145508, -0.2901856005191803, -0.600203812122345, 0.7161617279052734, 0.06425811350345612, 0.4333830773830414, 0.8994869589805603, 0.5454114079475403, 1.1342835426330566, -0.9644442796707153, 0.42281660437583923, 1.3563247919082642, -0.5342283248901367, 0.49765729904174805, -0.068075031042099, 0.21117202937602997, -1.4644184112548828, 0.2875519394874573, 0.2841624617576599, 0.04274487495422363, 0.7900580763816833, -0.05728905275464058, 0.25895726680755615, 0.45202142000198364, -0.27146831154823303, 0.46061959862709045, -0.2905142307281494, -0.11006040871143341, -0.1777406632900238, 0.02277008816599846, 1.030684232711792, 0.6923537850379944, 0.664958119392395, 0.9477069973945618, -0.5615395903587341, -1.6987543106079102, 0.5117691159248352, -0.7979394197463989, 0.21804878115653992, -0.21188129484653473, -0.1974261850118637, -0.39422374963760376, -0.9763217568397522, -0.3503307104110718, -0.3893093168735504, -0.4460713863372803, -0.9309197068214417, -0.30307573080062866, -0.9829122424125671, 0.0766320750117302, -0.5475688576698303, 1.0693374872207642, 0.515840470790863, 0.45793473720550537, 0.7373751997947693, 0.12374135106801987, -0.5258360505104065, 0.18713970482349396, -0.4428865909576416, -0.17499367892742157, -0.22265349328517914, -1.1704407930374146, -0.5901612043380737, 0.5456269383430481, 0.6941822171211243, 0.45246556401252747, 0.4812563359737396, 0.6869919300079346, 0.9752688407897949, -0.9668270945549011, -0.4511573016643524, 0.44905462861061096, -0.2118949443101883, 0.8208773136138916, 0.17977409064769745, -1.0162937641143799, -0.0620422437787056, -0.16789838671684265, -2.227416515350342, 1.1467362642288208, 0.1513756811618805, -0.3149532377719879, 0.5667961239814758, 0.5379419326782227, -0.002417993266135454, 1.3694286346435547, -0.5824409127235413, -0.00997666735202074, 0.1924293041229248, -0.8419045805931091, -1.4226936101913452, 1.0295097827911377, 0.737669050693512, 0.155255526304245, -1.4150723218917847, 0.03983812779188156, -0.43289268016815186, -0.7320353984832764, -0.3782888948917389, -0.46435773372650146, 0.5794650316238403, 0.6734387278556824, 0.10486210882663727, -0.9822748303413391, 0.07032755762338638, -0.6064445376396179, 0.7044041752815247, 0.6712051033973694, 0.3865344822406769, 0.9982378482818604, -0.4050574004650116, 0.9532471299171448, -0.6491085290908813, -0.34698620438575745, 0.3091142475605011, -0.37494131922721863, 0.44344890117645264, 0.472817063331604, 0.2376098334789276, 0.609367311000824, -0.06826512515544891, -0.5939094424247742, -0.5134033560752869, 0.11545303463935852, 0.7568651437759399, -0.7198031544685364, -0.3607352674007416, -0.3229178488254547, -0.4325924217700958, 0.16090106964111328, 0.6065806150436401, -0.020700804889202118, -1.0235356092453003, -0.5456609725952148, -0.47748997807502747, -0.41099146008491516, 0.6419628262519836, -0.36547932028770447, 0.3936183750629425, 0.14380614459514618, -1.3588995933532715, 0.6600341200828552, 0.1395753175020218, -2.216620683670044, -0.09884577244520187, -0.9597642421722412, 0.8746340870857239, 0.31612399220466614, 0.36829298734664917, 0.5859822630882263, 1.0105869770050049, -0.8880736827850342, -0.2708301246166229, -1.0098090171813965, -0.3696145713329315, 0.6218228340148926, 0.6914486289024353, -0.7205517292022705, 0.7916579246520996, 0.4503602683544159, -0.6388286352157593, -0.4727921187877655, 0.4638834595680237, -1.5279167890548706, -0.04649287089705467, 0.4414297342300415, 0.1718863546848297, 0.11425919085741043, 1.3356099128723145, 0.23706139624118805, 0.9317641854286194, -0.18208131194114685, 1.2528131008148193, -0.44140055775642395, -0.8377143740653992, -0.08983319997787476, 0.3537125289440155, -1.1085633039474487, -0.6641251444816589, 0.02922702394425869, -0.9194967746734619, -0.508021354675293, 0.28290313482284546, 0.940793514251709, -0.21044719219207764, 0.5764443874359131, -0.21011391282081604, -0.06268424540758133, -1.2856407165527344, 0.181965172290802, 0.4480275809764862, -1.3596298694610596, -0.574738621711731, -0.27009880542755127, 0.6912358403205872, -1.211273193359375, 0.4627833068370819, 1.376493215560913, 0.3940267264842987, -0.433640718460083, -0.03459080681204796, -0.0522601418197155, 0.5843615531921387, -1.1161504983901978, 0.6130434274673462, 0.3354455828666687, -0.16617915034294128, -0.12490666657686234, 0.8138637542724609, -0.1834181845188141, 0.2428494691848755, 0.0018467903137207031, -1.2383689880371094, -1.0042192935943604, 0.5143170952796936, 0.03456120193004608, 0.21840929985046387, 0.289169043302536, 0.7180418968200684, -0.41193896532058716, -0.1393134891986847, 1.579651117324829, -0.4910794794559479, -1.1106547117233276, 0.5936363339424133, 0.7569945454597473, -0.4720918834209442, 0.16119477152824402, 0.13252630829811096, 0.547301173210144, -0.0316879004240036, 0.8637607097625732, 0.2131066620349884, -0.8067994713783264, 0.2508494555950165, -0.06460665911436081, -0.9341630935668945, 0.27542462944984436, -0.21100522577762604, -1.0635697841644287, -0.47305822372436523, -0.5826793909072876, 0.03752071037888527, 0.5500637292861938, -1.3522043228149414, -1.1902891397476196, -0.007141639944165945, -0.0603279247879982, 0.038101546466350555, -0.7302168011665344, 0.16444970667362213, -0.8620937466621399, -0.2114013135433197, 0.9158480763435364, -0.4583677351474762, 1.3547015190124512, 0.1587178111076355, 0.05442476272583008, -0.01471959613263607, -0.13594874739646912, -0.0035579977557063103, -0.3915407955646515, -0.22400124371051788, -1.2716970443725586, -0.27730390429496765, -0.6360233426094055, -0.6135163307189941, 0.4631379246711731, -0.5769692659378052, 0.10926618427038193, -0.0827455073595047, -1.0695085525512695, 0.31274309754371643, -0.01000990904867649, 0.2872653603553772, -1.0230752229690552, -0.9359179735183716, -0.32498908042907715, 0.3521752953529358, 0.21829308569431305, 1.3333357572555542, -0.17892728745937347, 1.0128021240234375, 0.38916048407554626, -0.8635921478271484, -1.006186604499817, -0.0967082753777504, 1.5915734767913818, -0.6107531785964966, 0.5701251029968262, -0.34232860803604126, -0.5347778797149658, -0.17455053329467773, -1.2728705406188965, -0.132170170545578, 0.28105250000953674, -0.16154277324676514, -0.3654858469963074, -0.29656702280044556, -0.6450470685958862, -0.27155742049217224, 0.4453218877315521, -0.1564471572637558, 0.5638753771781921, 0.29507362842559814, -0.31954866647720337, -1.0390901565551758, -0.29340577125549316, 0.1836797446012497, -0.47743502259254456, 0.15188418328762054, 1.2322518825531006, 1.5357331037521362, -0.041044682264328, -0.42633095383644104, -0.2187291830778122, 0.7388021945953369, -1.140832781791687, -0.08919654041528702, -0.8692733645439148, -0.3944137394428253, 0.27502962946891785], [0.5222412347793579, 1.2732374668121338, -1.8672730922698975, -1.001229166984558, 1.4122461080551147, 0.6230877637863159, 0.47853487730026245, 0.5308550596237183, -0.08649026602506638, -0.4319004714488983, -0.4437362551689148, 0.5583253502845764, 1.2370043992996216, 1.8307600021362305, 0.6926263570785522, -0.5078340172767639, 0.9222701787948608, -0.33406543731689453, 0.222126767039299, 1.4628636837005615, -0.1314006745815277, -0.46628591418266296, -1.336051344871521, -0.09925210475921631, 0.0778493583202362, 0.5787363648414612, -1.4501593112945557, -0.7186765670776367, -1.2388603687286377, -0.4659549593925476, 0.545620322227478, -0.2637248635292053, -0.8794450163841248, -0.08553905040025711, -2.193638563156128, -0.34193506836891174, 0.6754105091094971, -0.5834181904792786, -0.7463638186454773, 0.6478387713432312, 2.0825634002685547, -0.198125958442688, 0.09577631205320358, -0.8245369791984558, 0.6303480267524719, -0.6899356245994568, -0.3852246105670929, -0.7348649501800537, -0.25951215624809265, -0.9539889693260193, 0.2050047665834427, -0.5556530952453613, 0.11634133756160736, 0.3031386733055115, 0.948630154132843, -0.18663443624973297, -0.8884410858154297, 0.6435648202896118, 0.051784757524728775, -0.35802632570266724, 0.7534526586532593, 0.5353298783302307, -1.340503454208374, 0.6674892902374268, 0.27238279581069946, 0.2951062023639679, -0.31928855180740356, 0.797358512878418, -0.38372498750686646, -0.012441636063158512, 0.4047257602214813, 0.09497381746768951, -0.12190291285514832, 0.6131507754325867, -0.6354085803031921, -0.337848037481308, 0.29362788796424866, -0.3440655767917633, 0.24954625964164734, 0.3233260214328766, -0.8534573912620544, 0.3689318597316742, 0.30452096462249756, -0.8955947756767273, 1.3610955476760864, -0.5645427107810974, 0.1071491539478302, -0.27167049050331116, -0.5561806559562683, 1.8935312032699585, 0.42860695719718933, -0.029797859489917755, 0.511036217212677, -0.951500654220581, -0.28174856305122375, -0.8435849547386169, -0.2690280079841614, -0.951259970664978, -0.9315392971038818, -0.8915695548057556, -0.8021833896636963, 0.031159164384007454, 0.41915419697761536, 0.8918635249137878, 0.6405419707298279, 0.9096044898033142, 0.6678819060325623, -0.37601497769355774, -0.34583231806755066, -0.05625538527965546, 0.9555829167366028, 0.35575464367866516, -0.6854560375213623, -0.9924258589744568, -0.3952030837535858, 1.0596950054168701, 1.1141424179077148, -0.3248702883720398, 0.7953193187713623, 0.23285537958145142, -0.17102493345737457, -0.04779977351427078, -1.0958261489868164, 0.3831707537174225, 1.0853760242462158, 0.45367172360420227, -0.1501990258693695, 0.025815404951572418, -0.2617771327495575, -0.0785192921757698, -0.15040798485279083, 0.03562329709529877, -0.11543535441160202, 0.26462647318840027, -0.37249934673309326, 1.8052443265914917, -0.5934536457061768, -0.9032726287841797, 0.3768143057823181, 0.0145264882594347, 1.0777884721755981, 0.5214566588401794, -0.8108222484588623, -0.8386138081550598, 0.42045509815216064, -0.28599268198013306, -0.08122219145298004, -0.2916356027126312, -0.29548001289367676, 0.5033225417137146, -0.743628978729248, 0.3018486201763153, -0.10965076833963394, 1.2416234016418457, -0.4244484603404999, 0.22316138446331024, 0.3879823088645935, 0.5734500885009766, 0.2794590890407562, 0.41680508852005005, 1.1748629808425903, 0.009800281375646591, -0.790628969669342, 1.4615411758422852, 0.12131007015705109, 0.049981143325567245, 0.4150344729423523, 0.07794103771448135, -0.03854634240269661, -0.12070581316947937, -0.7091560363769531, -0.2110103964805603, -0.33712926506996155, 0.45312902331352234, 0.13507527112960815, 0.0017171446233987808, 1.0734912157058716, -0.471102237701416, -0.911582350730896, -0.6799108386039734, -0.24555720388889313, -0.4154733717441559, 0.4575802981853485, -0.6742497086524963, 1.2335865497589111, -0.3670995235443115, -0.12417776882648468, 0.12516562640666962, 0.10750973969697952, -1.1406043767929077, -1.123464822769165, 0.5869605541229248, -1.3417223691940308, 0.6799910068511963, -0.4154886305332184, -0.9897521734237671, 0.8664910793304443, -0.13176999986171722, -0.04632740467786789, -0.29276591539382935, -0.44871747493743896, -0.5222934484481812, -1.0927101373672485, -0.11482483148574829, -1.124464750289917, 0.7513787746429443, -0.22138111293315887, 0.4059614837169647, -0.8062036037445068, -0.2692030668258667, 0.7432586550712585, -0.39821892976760864, -0.8826518654823303, 1.358184576034546, 0.24030879139900208, -0.175235316157341, -0.3432157039642334, -0.45208606123924255, 0.0587417334318161, 0.19447937607765198, 0.3126482665538788, -0.43597397208213806, 0.2244420051574707, 0.2546042501926422, -0.024010170251131058, -0.6353172659873962, -1.0065299272537231, -0.4063466787338257, -0.9704826474189758, 0.4789488613605499, -0.8756982088088989, -1.6210919618606567, 0.8018987774848938, 0.674143373966217, -1.076401948928833, 1.2779903411865234, -1.1185591220855713, 0.588847279548645, 0.47846388816833496, 0.4851965010166168, 0.2570776641368866, 0.72202068567276, -0.5680150985717773, 0.6180905103683472, -0.2184842824935913, -0.36534371972084045, 0.4305422902107239, -0.18093131482601166, -0.9781926274299622, 1.112406611442566, 0.265147864818573, -0.08918309211730957, 0.9056854248046875, 0.06048201769590378, 0.7476736903190613, -0.9215601086616516, 0.25828641653060913, -0.10059446841478348, -0.43316203355789185, 1.015960454940796, 0.43513616919517517, -1.1915075778961182, -0.6200114488601685, -0.524893045425415, -1.0469423532485962, -0.17109426856040955, -0.11299816519021988, -1.0999466180801392, 0.8116335868835449, -0.5153542757034302, 0.19159692525863647, -0.05518138408660889, -0.682590663433075, 1.0123258829116821, 0.011319148354232311, -0.4892452657222748, -0.4137718677520752, -0.08168105036020279, 0.9289670586585999, 0.42422914505004883, 0.4610106348991394, -0.5684159398078918, -0.29244285821914673, -0.5953384041786194, 1.1623128652572632, -0.8262650966644287, -0.5606383085250854, 0.29564738273620605, 0.7547739148139954, -0.8640111088752747, 0.6260117292404175, 0.16535241901874542, -0.5693945288658142, 0.09406346827745438, -0.22671183943748474, 0.31457680463790894, 0.07089118659496307, -0.8613123297691345, -0.6568910479545593, -0.5700086951255798, 0.7990249991416931, 1.054323673248291, 1.548592209815979, 0.97161865234375, 0.7881119251251221, -0.4555872082710266, 0.6640048027038574, 0.4752189815044403, 0.12669701874256134, -0.6086346507072449, -0.5565155148506165, -0.03191515803337097, -0.04434750974178314, -0.2919117212295532, -0.4063221514225006, 1.3839980363845825, 0.22040370106697083, 1.1595288515090942, 0.3484160304069519, -0.5071543455123901, -0.9205906391143799, -0.44860967993736267, 0.20192773640155792, -0.6035988330841064, 0.33204028010368347, 0.34214985370635986, -0.7481552362442017, 0.26871925592422485, 0.24301718175411224, 0.0987507775425911, 0.6868352293968201, -0.13344842195510864, 0.7376008033752441, -1.1209789514541626, -0.32627877593040466, -0.21219977736473083, 1.3504409790039062, 0.5850812196731567, 0.255344033241272, -0.5926393270492554, -0.21962876617908478, 0.5780003666877747, 0.1873798966407776, 0.06376048922538757, 0.8413222432136536, -0.3258468806743622, -0.6892415285110474, -0.3132249414920807, -0.0653415247797966, 1.0766395330429077, 0.1781829297542572, -0.06135212630033493, -0.03618001192808151, 0.029152952134609222, -0.20910030603408813, 0.3482653498649597, 0.5087555646896362, 0.8841610550880432, 0.3181922435760498, 0.0640367642045021, 0.8184351921081543, -0.19209685921669006, 0.5035051107406616, -0.777368426322937, 0.5232298970222473, 0.4012550711631775, 1.2727636098861694, -0.05751736834645271, -0.4135885536670685, 0.4836086332798004, -0.448696106672287, -0.0019437829032540321, -0.019392739981412888, 0.7461438179016113, 0.20829813182353973, -0.6035187840461731, -0.7380764484405518, 0.7121312022209167, -0.28859949111938477, -0.4497697353363037, 0.10880571603775024, 0.13354572653770447, -0.4837268888950348, -0.651160478591919, 1.075665831565857, 0.12084788084030151, 0.13108545541763306, -1.1357810497283936, -0.32433077692985535, 0.2734036445617676, -0.03452393040060997, -0.2214551419019699, -0.9306913614273071, 0.6386997103691101, -0.2431555688381195, -0.8905283212661743, -0.9003562927246094, 0.024526525288820267, 0.3996129035949707, 1.0388888120651245, -0.6488269567489624, -0.2743377387523651, -0.036055050790309906, -0.4265216290950775, 0.37604445219039917, 0.3671439588069916, -0.18825338780879974, 0.5081247091293335, -0.6600132584571838, -0.11404258012771606, 0.11994744837284088, 1.0913971662521362, -0.3517889976501465, -0.06672889739274979, 0.13255196809768677, 0.5935996174812317, 0.046687278896570206, -0.28825265169143677, -0.88358074426651, -0.9421825408935547, -0.9630908966064453, 0.17902061343193054, 0.22745965421199799, 0.05062289163470268, 0.5362399220466614, 0.1806652992963791, -0.12728236615657806, 1.1916251182556152, -0.4732970595359802, -0.6646952629089355, 0.6296190023422241, 0.3018700182437897, -0.04508126527070999, -0.19899117946624756, 0.7150894999504089, 0.6035483479499817, 0.40351197123527527, 0.821564793586731, -0.030312640592455864, 0.8597414493560791, 0.9398890733718872, -0.21870939433574677, -0.5058046579360962, 0.7063854336738586, 1.1621330976486206, 1.3823734521865845, 1.1589934825897217, -0.057999737560749054, -1.2113542556762695, 0.5801264643669128, -0.5307384133338928, 0.0753817930817604, 0.9947780966758728, 0.07568028569221497, 1.4086259603500366, -0.8620490431785583, -0.07218129932880402, 0.511236846446991, -0.19901695847511292, -0.25619029998779297, 0.14139088988304138, 0.5375183820724487, -0.4259292781352997, 0.01399151049554348, 0.6844476461410522, 0.23276126384735107, 0.7117116451263428, 0.1831618696451187, -0.0006161965429782867, -0.4030100107192993, -0.3491196036338806, -0.0813770741224289, -0.3808436691761017, -0.3285607397556305, 0.17609509825706482, 1.1514183282852173, -0.1615973263978958, -0.19752728939056396, 0.0567660853266716, 1.7785578966140747, -0.5526986122131348, -1.2093167304992676, 0.6828629970550537, -0.5524956583976746, -0.0634486973285675, -0.4636833667755127, -0.3610197603702545, -0.36126717925071716, -0.48118677735328674, 0.0023276647552847862, -0.00926988385617733, -0.5143764019012451, -0.6348066926002502, -0.2518284320831299, -0.7187083959579468, -0.4097108840942383, 0.27934205532073975, 0.8301138877868652, 0.9577833414077759, 0.8178202509880066, 0.3697315454483032, -0.28419268131256104, 0.5229368209838867, 0.43876415491104126, -0.22621330618858337, 0.13578368723392487, 0.583993673324585, -1.5868144035339355, -0.8953036069869995, 0.4059540331363678, 1.4109742641448975, 0.6410495042800903, 0.23844411969184875, 1.5111202001571655, 1.5386165380477905, -0.8587995171546936, -0.4118650257587433, 0.0054468195885419846, -0.3270631432533264, 0.7502854466438293, 0.4532749652862549, -1.1721750497817993, -0.14976854622364044, -0.29185426235198975, -1.8603931665420532, 0.6064040064811707, -0.41754019260406494, -0.9741061925888062, 0.18560130894184113, 0.6286459565162659, 0.244947612285614, 0.896294116973877, -1.5521719455718994, 0.5703085660934448, -0.2861892879009247, -0.3550068438053131, -1.0847305059432983, 0.592664897441864, 0.40247321128845215, 0.8196603059768677, -0.7683172225952148, 0.14900094270706177, 0.0181255042552948, -0.5910010933876038, 0.749059796333313, 1.1239176988601685, 0.6959511637687683, 0.37133875489234924, 0.22686229646205902, -1.4853078126907349, 0.06221042573451996, -0.9651877880096436, 0.1627219170331955, -0.1734127253293991, 0.837123453617096, -0.04124623164534569, -0.45100411772727966, -0.20437516272068024, 0.40073010325431824, -1.0364521741867065, -0.2854684591293335, -0.5965114235877991, 0.7735487818717957, 0.17955441772937775, 0.1703302264213562, -0.051923494786024094, -0.820670485496521, -0.8898358345031738, -0.5633115172386169, -0.49722564220428467, 0.8276143074035645, -0.5176734328269958, -0.6393781304359436, -0.39961689710617065, 0.06783194839954376, 0.4895733892917633, 0.21622063219547272, -0.3678543269634247, -1.309699296951294, -1.612352967262268, -0.6714199185371399, -0.0835309848189354, 0.4045919179916382, -1.018723964691162, 1.1553959846496582, -0.6250790357589722, -1.425347089767456, 0.8305545449256897, 0.014829069375991821, -1.156768798828125, -0.8097047805786133, -1.1733002662658691, 1.156724452972412, -0.05527977645397186, 0.22118300199508667, -0.07347045838832855, 0.8882049918174744, -0.4532565474510193, -0.51106196641922, -0.7807153463363647, 0.5072504281997681, 0.52672278881073, 0.8730340003967285, -0.8773818612098694, 0.6110727190971375, -0.07391492277383804, -0.09782332926988602, -0.3098531663417816, 0.1596081554889679, -0.9560025334358215, -0.01881684735417366, 1.0136613845825195, 0.7000775337219238, 0.44103482365608215, 1.1231262683868408, -0.3132938742637634, 0.7309688329696655, -0.5048704147338867, 0.3150961995124817, -0.5307364463806152, 0.3192112445831299, -0.173336461186409, 0.4306422472000122, -0.9281203150749207, -0.445438951253891, 0.6050914525985718, -0.6658200025558472, -0.8688288331031799, 0.26799094676971436, 1.1607824563980103, -0.3998906910419464, 0.0009242366068065166, -0.0591810867190361, 0.8129311203956604, -1.016806721687317, 0.5049417018890381, 0.6255496144294739, -0.3603302538394928, -0.17112115025520325, -0.31552067399024963, 0.9914746880531311, -0.6190219521522522, -0.052827950567007065, 0.3189350366592407, 0.255853533744812, -0.3843521475791931, 0.24458414316177368, 1.3209054470062256, -0.8918887972831726, -0.20119772851467133, 1.51374351978302, 1.325993299484253, -0.08116966485977173, -0.1440359503030777, 0.18690571188926697, 0.15817193686962128, 0.8138834834098816, -0.1998179405927658, -0.03702234849333763, -0.04450235888361931, 0.17458051443099976, -0.6074405312538147, -0.17841202020645142, -0.6545785665512085, 0.30145856738090515, 0.06429824978113174, -0.5098852515220642, 0.803581953048706, 0.5778899788856506, -0.3385534882545471, 0.607154369354248, -0.1064927726984024, -0.2191910445690155, 0.27381712198257446, -0.3100835084915161, 0.37303251028060913, 0.16011959314346313, 0.8568114638328552, 0.1802883893251419, 0.27168500423431396, 0.41873103380203247, 0.4278416335582733, -0.0581364780664444, -0.03770142048597336, -0.4774317741394043, -2.105203628540039, -0.29155728220939636, 0.05041716992855072, -0.6819749474525452, 0.6839185357093811, -1.068365454673767, -0.3950536847114563, -0.11581547558307648, 0.05388632416725159, -0.02492690458893776, -0.6328122615814209, -0.25763487815856934, -0.34465765953063965, 0.20818397402763367, 1.1685281991958618, 0.07075442373752594, 1.1458266973495483, -0.21388067305088043, -0.09390652179718018, 0.1559305489063263, -0.03407550975680351, -0.1368142068386078, 0.24033448100090027, 0.24181298911571503, -0.4458736479282379, 0.23562853038311005, -0.6017543077468872, -0.5782273411750793, -0.015986070036888123, 0.46881991624832153, 0.21664993464946747, 0.0018501360900700092, -1.2129251956939697, -0.24188917875289917, 0.38325247168540955, 0.6176571249961853, -0.9251811504364014, -0.9703301191329956, -0.5655838847160339, 0.3763303756713867, -0.20375777781009674, 1.6447045803070068, -0.6288201808929443, 0.8168241381645203, 0.992114245891571, -0.09643839299678802, -0.7416544556617737, -0.022852353751659393, 0.8684940338134766, -0.3711204528808594, 1.1815282106399536, 0.28691256046295166, 0.17520016431808472, 0.09844336658716202, -0.8480468392372131, -0.7626145482063293, 0.24230435490608215, -0.6981905698776245, 0.5627710819244385, -0.7307425737380981, -1.090057611465454, -0.7919809818267822, 0.4948740601539612, -0.3146984577178955, -0.32927650213241577, 0.7373319864273071, 0.03689400479197502, -1.0186256170272827, 0.2119341939687729, -0.14430710673332214, -0.6878464221954346, 0.5415525436401367, 1.5579074621200562, 1.06797194480896, -0.38085073232650757, -0.39541390538215637, -0.17733784019947052, 1.038881778717041, -1.579301118850708, -0.45703527331352234, -0.7750880122184753, -0.008561978116631508, -0.16065165400505066], [0.1695675551891327, 1.5944541692733765, -2.888674020767212, -0.6617189049720764, 0.41676878929138184, 0.28242167830467224, 1.5058305263519287, -0.30950507521629333, 0.7181710004806519, -0.21147365868091583, -0.9400073885917664, 0.15514229238033295, 1.4194347858428955, -0.04012482985854149, 0.22617067396640778, 0.3927910029888153, 0.44812700152397156, -0.0022498047910630703, 0.5978440046310425, 1.3434675931930542, -0.2760702669620514, -0.24618996679782867, -0.9702972173690796, -0.3011825680732727, -0.5083418488502502, 0.2392401546239853, -0.6817577481269836, -0.7285376191139221, -1.0554537773132324, -0.8372402191162109, 1.1466522216796875, -0.4287816882133484, -0.2728289067745209, -0.12235663086175919, -1.6354061365127563, -0.772980809211731, 0.9186621904373169, 0.20453369617462158, 0.28995752334594727, 0.2520400583744049, 2.1272904872894287, 1.224181056022644, 0.27290233969688416, -1.010733962059021, 0.5097242593765259, 0.544556200504303, 0.7450619339942932, -0.9980458617210388, 0.44258183240890503, -0.6212138533592224, 1.1449252367019653, -0.584234893321991, -0.474807471036911, 1.0104674100875854, 0.7348094582557678, 0.2549915015697479, 0.3514663279056549, 0.8400428891181946, 0.4100934565067291, -0.6601240038871765, 0.31743571162223816, 0.8707641959190369, -0.011230722069740295, 1.1460824012756348, 0.4448435306549072, -0.21239696443080902, 0.15066629648208618, 0.8688225150108337, -0.17837311327457428, -0.45623815059661865, 0.5828825235366821, 0.06748468428850174, -0.2334742546081543, 0.2175954431295395, -1.422085165977478, 1.0637840032577515, -0.09476649016141891, -0.07688869535923004, -0.11096178740262985, 0.45120033621788025, -0.7375524640083313, 0.5617783069610596, 0.7558122873306274, 0.24772943556308746, 0.7458564043045044, -0.2799488604068756, 0.1495330035686493, -0.6322683095932007, 0.05333187058568001, 1.8583526611328125, 0.04884260520339012, -0.3794788420200348, 0.24063093960285187, -0.8113816976547241, 0.3478533923625946, -0.28480401635169983, -0.15505439043045044, -0.7858749628067017, -0.6844231486320496, -0.5165552496910095, -0.8892032504081726, -0.7367367744445801, 0.5163414478302002, -0.1193707138299942, 0.2933445870876312, 0.5304381847381592, 0.22424890100955963, -0.3489201068878174, -0.5724084973335266, -0.5004444718360901, -0.42050790786743164, 1.0686259269714355, -1.0484641790390015, -0.3317791521549225, -0.45402735471725464, 0.7786250710487366, 0.9425089359283447, 0.4994291365146637, 0.9315835237503052, 1.393045425415039, -1.4137274026870728, -0.1653001308441162, -0.9839186668395996, 0.7498974800109863, 0.20262788236141205, 1.3841605186462402, -0.9178256392478943, -0.5388847589492798, 0.2501308023929596, -0.15573382377624512, 0.5281844139099121, -0.2354649156332016, -0.35593584179878235, 0.665189266204834, -0.1276838183403015, 0.9375208020210266, -0.6722901463508606, -0.4491680860519409, 0.7109089493751526, -0.07696360349655151, 0.9509592652320862, 0.2756398618221283, -0.6004862785339355, -0.36990687251091003, -0.5565305352210999, -0.53971928358078, 0.41594168543815613, -0.30929476022720337, -0.9329938888549805, -0.11192508041858673, -0.5882331132888794, 1.114530324935913, 0.08234567940235138, 1.5335100889205933, -0.4550248980522156, -0.04324732720851898, 0.5106722116470337, -0.07710152864456177, 0.568555474281311, 0.03098948486149311, 0.7556613087654114, 0.031419605016708374, -0.37287068367004395, 1.287513017654419, -0.09723532199859619, -0.5119696855545044, -0.2912137508392334, 0.20754720270633698, -1.2308114767074585, 0.25209978222846985, -0.38643878698349, -0.4044090211391449, -0.525351345539093, 0.22703582048416138, 0.5979557037353516, -0.5554645657539368, 1.4806069135665894, -0.7651109099388123, -1.2534422874450684, -1.3788058757781982, 0.2774779796600342, -0.8175619840621948, 0.1963684856891632, -0.3723907172679901, 0.19759134948253632, -0.6908310651779175, 0.23230774700641632, 0.22272321581840515, -0.35571566224098206, -1.3939361572265625, -0.2610325813293457, 0.43379953503608704, -1.0712170600891113, -0.03920607641339302, -1.0348517894744873, -1.2130513191223145, 1.2303578853607178, -0.2854926884174347, -0.4008677899837494, -0.4063049554824829, -1.1841959953308105, 0.08321157097816467, -0.9543261528015137, -0.32825300097465515, -0.8041872978210449, 1.3139197826385498, -0.5076474547386169, 0.23267045617103577, -0.6383023858070374, 0.5738459229469299, 1.5102298259735107, 0.2111639380455017, -1.0815964937210083, 0.7264207005500793, -0.15086787939071655, -0.28317761421203613, 0.4233078956604004, -0.08717619627714157, -0.19297590851783752, -0.04667969420552254, -0.15992270410060883, -0.04496022313833237, 0.6057575941085815, 0.08106973022222519, 0.7883168458938599, -0.6843807697296143, -0.1256021410226822, -0.9109671115875244, -0.24969500303268433, 0.2945781350135803, -0.11604536324739456, -1.341407299041748, -0.15073555707931519, 0.19801586866378784, -0.1334184855222702, 0.9733854532241821, 0.05289158225059509, 0.1840183585882187, 1.1637117862701416, 0.4366060793399811, 0.7936614751815796, 0.17252682149410248, -0.540625810623169, -0.5495553612709045, -0.5153584480285645, -0.31416231393814087, 0.907332181930542, -0.5794278383255005, 0.007668932434171438, 1.8432425260543823, 1.3764269351959229, -0.22645330429077148, 0.15221619606018066, 0.15957583487033844, 0.11980409175157547, -0.8324614763259888, -0.1506911665201187, 0.3547540605068207, -0.6494125127792358, 0.7835788726806641, 1.0793112516403198, -0.8587286472320557, 0.229900062084198, -0.1170690506696701, 0.24707920849323273, -0.44808587431907654, -0.5380411744117737, -0.20319819450378418, 0.043595775961875916, 0.043993983417749405, -0.13228583335876465, 0.06422918289899826, -0.7728288769721985, 0.7606436014175415, 0.25534117221832275, -0.5460507273674011, -0.7010690569877625, -0.08823644369840622, 0.08410118520259857, 0.6146352291107178, -0.4273990988731384, -1.9111225605010986, -0.33666086196899414, -0.2783258259296417, 0.09722676873207092, -0.17239955067634583, -0.4314008951187134, 0.48764410614967346, 0.5544789433479309, 0.1355811059474945, 0.0988825187087059, 0.6676223278045654, -0.48948192596435547, 0.16830015182495117, 0.5447670817375183, 0.6503681540489197, 0.362935334444046, 0.006678852718323469, -0.5471903681755066, -0.7114834785461426, 0.6636313796043396, 1.0711450576782227, 1.1462568044662476, 1.7171766757965088, 0.4819417893886566, -0.31927135586738586, -0.5287496447563171, -0.36995837092399597, 0.4585128128528595, -1.3348479270935059, -0.18772119283676147, -0.3279033899307251, -0.6757904887199402, -0.27509167790412903, -0.8725444674491882, 1.476377248764038, 0.477791428565979, 1.487912654876709, 0.8071301579475403, 0.1334569752216339, -0.18771295249462128, -0.03408708795905113, 0.9459157586097717, -0.8587403297424316, 0.5859373807907104, 1.0445653200149536, -0.8223653435707092, -0.27812740206718445, 0.003645650576800108, 0.413217157125473, 0.9785184860229492, 0.10882820188999176, 0.08535400032997131, -1.5878562927246094, -0.7414700984954834, -0.17943020164966583, 1.4429203271865845, 0.13705968856811523, -0.016516055911779404, -0.13082869350910187, 1.0265581607818604, 0.38204529881477356, 0.1051737368106842, -0.013313686475157738, 0.15467743575572968, -0.6091665625572205, -0.726714015007019, 0.44117435812950134, 0.7586207985877991, 0.9383135437965393, -0.11224012821912766, -0.3594939410686493, 0.03028690814971924, 0.3264416754245758, -0.18283189833164215, 0.9454077482223511, 0.08438056707382202, 0.8818616271018982, 0.004763833247125149, 0.6193910241127014, 1.0889767408370972, -0.6343435645103455, 0.49221426248550415, -1.011513113975525, 0.726924479007721, 0.8410319089889526, 0.6872808933258057, 0.23301683366298676, 0.07098694890737534, 0.11964872479438782, -1.0002758502960205, 0.15310963988304138, -0.05318857729434967, 0.5809357166290283, 0.06732475012540817, -0.00253984029404819, 0.20646509528160095, 0.2056821882724762, -0.6144672632217407, -0.13956645131111145, 0.44582509994506836, 0.1440797746181488, -0.8400096297264099, -1.138121485710144, 0.5813058614730835, -0.30083760619163513, -0.9729049205780029, -0.3893909752368927, -0.5660148859024048, 0.6334837079048157, 0.2945600152015686, 1.203710913658142, -0.17630305886268616, 0.24191561341285706, 0.49537643790245056, -1.9338765144348145, -0.16566528379917145, 0.27200257778167725, -0.05374366417527199, 0.09362906217575073, -0.7841362953186035, -1.0147480964660645, -0.14902812242507935, 0.02968212403357029, 0.5433886647224426, 0.24259540438652039, -0.04025522992014885, -0.035956479609012604, -0.1782585233449936, -0.9212244749069214, 0.04037518426775932, 0.5876778960227966, -0.6769093871116638, -0.2395719438791275, 0.42436283826828003, -0.12740835547447205, 0.39942699670791626, -0.1488761007785797, -0.635577380657196, -0.3848274350166321, -0.05854537710547447, -0.03457175940275192, -0.28660038113594055, -0.2967565357685089, 1.0142067670822144, 0.3712402582168579, 0.08902022987604141, 0.40137922763824463, -0.4083429276943207, -1.6850037574768066, 0.38850584626197815, 0.7066124677658081, -0.328605979681015, -0.0933346226811409, 1.0629199743270874, -0.10510028898715973, 0.3302750885486603, 0.2686789035797119, 0.02407877705991268, 1.0639309883117676, 0.5722811222076416, -0.09774430841207504, -0.6934739947319031, -0.21609750390052795, 0.5593973398208618, 1.3802040815353394, 0.2783925235271454, 0.2683829963207245, -0.3338589072227478, 0.31215861439704895, -0.48271074891090393, 0.3786156177520752, 1.2594776153564453, 0.19805192947387695, 1.5497304201126099, -2.15171480178833, 0.16463178396224976, -0.06182321533560753, -0.1633097380399704, 0.30913519859313965, -0.5664418935775757, 0.3072047531604767, -1.2848527431488037, 0.16627764701843262, 0.14336571097373962, 0.4043924808502197, 0.4784032106399536, -0.1823967695236206, -0.09044703096151352, 1.1303691864013672, -1.2705374956130981, 0.04074912518262863, -0.4742933213710785, 0.37643224000930786, -0.49664783477783203, 0.2767508327960968, 0.1557990461587906, -0.05299277976155281, 0.38876017928123474, 1.1640779972076416, -0.07344454526901245, -1.2663078308105469, 0.7037802338600159, -0.36971965432167053, 0.7289218306541443, -0.3973829746246338, 0.15038520097732544, -0.6684895753860474, -0.752475917339325, -0.10534566640853882, 0.7665531039237976, -0.5447542071342468, -0.47306719422340393, 0.04433276876807213, -1.1947211027145386, 0.08989416062831879, 0.48081710934638977, 1.003623604774475, 0.48599761724472046, 0.6532518863677979, 0.4011682868003845, 0.7422412633895874, 0.13862916827201843, -0.20210646092891693, 0.017491525039076805, -0.20893129706382751, 0.4111228287220001, -1.0395809412002563, -0.7030948996543884, 0.528656542301178, 0.5805584788322449, 0.29356276988983154, 0.4584028124809265, 1.2407258749008179, 2.206024646759033, 0.08944587409496307, -0.8875030875205994, 0.31720760464668274, -0.34469571709632874, 0.2565302848815918, 0.15635713934898376, -0.5442342162132263, -0.21368096768856049, -0.6495023965835571, -1.7087316513061523, 0.3507073223590851, -0.2126675397157669, -1.286864161491394, 0.9321357607841492, 0.2588666081428528, -0.05676213279366493, 0.7531515955924988, -0.7075090408325195, 0.3479454517364502, 0.2709367573261261, 0.07096146047115326, -1.4870339632034302, 0.40624281764030457, 1.1020629405975342, 0.8283472657203674, -1.1458806991577148, 0.3845062553882599, -0.13154801726341248, -0.16371876001358032, 0.40605998039245605, 0.3852671682834625, 0.5405439138412476, 0.7677827477455139, 0.4609878957271576, -1.1387079954147339, 0.009175513871014118, -0.9491146206855774, -0.5841947197914124, 0.33953872323036194, 0.35434845089912415, -0.3364236354827881, -0.1308239847421646, -0.043836746364831924, -0.31415146589279175, -0.7185704112052917, -0.49512529373168945, 0.016549570485949516, 0.8590365052223206, 0.4283115565776825, 0.018633075058460236, -0.021081196144223213, -0.05772583186626434, -0.48577073216438293, -0.3772694766521454, -0.15539045631885529, 0.7191939353942871, -1.1503517627716064, -0.30906954407691956, -0.27618730068206787, -0.17277976870536804, -0.5831419229507446, -0.1121828630566597, -0.5435357093811035, -1.1552484035491943, -1.2038732767105103, -0.46838438510894775, -0.6883593201637268, 1.133543848991394, -0.6257585883140564, 0.20530997216701508, -0.03704833984375, -1.0764542818069458, -0.12078368663787842, 0.10132786631584167, -1.0943493843078613, -0.548707127571106, -0.759041965007782, 1.2098878622055054, -0.47099170088768005, 0.11878671497106552, 0.32590657472610474, 0.8496298789978027, -0.8659087419509888, -0.9912183284759521, -0.5644464492797852, 0.06616714596748352, 0.8856185674667358, 1.2002249956130981, -1.2756166458129883, 0.9885098934173584, 0.08227690309286118, -1.1445797681808472, 0.09125329554080963, 0.9276734590530396, -0.734243631362915, -0.16891297698020935, 0.18550115823745728, 0.6670069694519043, 0.725628137588501, 1.646349549293518, -0.029706725850701332, 0.764512300491333, 0.5537168383598328, 0.6205834746360779, -0.3919709324836731, -0.08271283656358719, 0.05688714608550072, 0.3018200993537903, -1.074129581451416, -0.544705331325531, 0.2877778708934784, -1.2759569883346558, -0.8256831765174866, 0.9274412989616394, 1.012251615524292, -0.975014328956604, 0.12478991597890854, -0.5881841778755188, 0.2844720780849457, -0.9823344945907593, 0.045023974031209946, -1.376190423965454, -0.09811056405305862, 0.3119078278541565, -0.34774214029312134, 0.6304624676704407, -0.865943193435669, -0.07223350554704666, 0.5379338264465332, 0.35957401990890503, -0.6857492327690125, 0.7686964869499207, 0.6087849140167236, 0.2628495693206787, -0.5284656286239624, 1.4016120433807373, 1.277845025062561, -0.011682420037686825, -0.19795428216457367, 0.12755894660949707, 0.01929829642176628, 0.7632059454917908, -1.142083764076233, -0.4387657642364502, -0.3795875906944275, 0.3711443245410919, -0.06102302297949791, -0.18313829600811005, -0.02485533058643341, -0.03290635719895363, 0.23691490292549133, 0.33316776156425476, -0.17973865568637848, -0.22242707014083862, -0.23183950781822205, 0.6862861514091492, 0.4528275430202484, -0.10370247811079025, -0.2603631913661957, 0.7008001208305359, -0.4714019298553467, -0.5052270889282227, 0.7090473175048828, 0.11519132554531097, 0.006268427241593599, 0.6495590209960938, 0.5678787231445312, 0.09823296219110489, -0.3108646869659424, -0.37429407238960266, -1.261732816696167, -0.6211766600608826, -0.32317879796028137, -0.41820380091667175, 0.47213032841682434, -0.5204192399978638, -1.004379153251648, 0.31173866987228394, 0.5436895489692688, 0.26269015669822693, -0.11268103867769241, 0.5283454656600952, 0.21359920501708984, -0.5354686975479126, 1.0161786079406738, -0.16426584124565125, 1.3286672830581665, -0.3213099241256714, -0.6352643370628357, -0.739766538143158, -0.04646886885166168, -0.20890291035175323, -0.6746876835823059, 0.17236177623271942, -0.17382140457630157, -0.18326038122177124, 0.06916061043739319, 0.16469398140907288, -0.04104125499725342, 0.6891764998435974, 0.11150862276554108, -0.16399642825126648, -1.6006560325622559, 0.05973407253623009, 0.8635914921760559, -0.5993743538856506, -0.301129549741745, -0.5538713335990906, -0.8871066570281982, 0.6958526372909546, -0.4253688156604767, 0.7443413734436035, -0.7269054055213928, 0.12486107647418976, 0.39997586607933044, -0.29526740312576294, -0.9021367430686951, -0.6237759590148926, 1.4325124025344849, -0.41986361145973206, 1.0183387994766235, -0.15228918194770813, -0.16520768404006958, -0.6642246246337891, -1.2558029890060425, -0.9670363664627075, 0.7268689870834351, 0.128616601228714, 0.1548677384853363, -1.4847288131713867, -0.8882107734680176, -0.48824888467788696, 0.12362377345561981, -0.10689260810613632, 0.16262105107307434, 0.5741006731987, -0.6774056553840637, -1.093626618385315, -0.22947688400745392, 0.3278490900993347, -0.4392212927341461, 0.2880638837814331, 1.2606756687164307, 1.2554771900177002, 0.16962522268295288, -0.1850752830505371, 0.5221723318099976, 1.1890666484832764, -0.8232683539390564, 0.2669621706008911, -0.9815759658813477, -0.02683740295469761, 0.07144995033740997], [0.3367466926574707, 1.745367169380188, -2.727437973022461, -0.8687025904655457, 0.659944474697113, -0.1408555507659912, 0.8031864166259766, -0.15530087053775787, -0.2004619985818863, -0.024669064208865166, -0.956173837184906, 0.40356382727622986, 0.9493284225463867, 1.0792938470840454, 0.7682635188102722, -0.4369325637817383, 0.10352076590061188, 0.25361984968185425, 0.8935645818710327, 0.7406260967254639, -0.8241040706634521, -0.7462575435638428, -0.6361877918243408, -0.07477421313524246, 0.6189957857131958, 0.16984829306602478, -0.8673374056816101, 0.10378306359052658, -0.5839738845825195, -0.5696879625320435, 2.069430112838745, -0.630211591720581, 0.3309737741947174, 0.39492449164390564, -1.2946895360946655, 0.7909557819366455, 1.2202160358428955, 0.2519938349723816, 0.4257470965385437, 0.7476876974105835, 2.3805954456329346, 1.3703339099884033, -0.3393324315547943, -0.847084105014801, 0.06786390393972397, 0.0753273293375969, -0.038943395018577576, -1.043884515762329, 0.46924155950546265, -1.011743426322937, 0.5014305710792542, 0.5902186632156372, 0.2806634306907654, 1.497971773147583, -0.06802217662334442, -0.7963380813598633, 0.921220600605011, 0.7088530659675598, 0.10980760306119919, 1.2400389909744263, -0.11469458043575287, 1.162662148475647, 1.0643712282180786, 0.8002893328666687, 0.9340360164642334, -1.0656496286392212, 0.1832333505153656, 0.3968573212623596, -0.06549438834190369, 0.1702939122915268, 0.4133670926094055, -0.19959482550621033, -0.5685074329376221, 0.6705688238143921, -0.751528799533844, 0.7071642875671387, 0.23695920407772064, 0.6334116458892822, 0.05559636652469635, 0.10309164971113205, -0.9947774410247803, 0.19264496862888336, 0.5340871810913086, -0.23276779055595398, 0.3259664475917816, -0.0015688706189393997, 0.20666271448135376, -0.29838621616363525, -0.8223103880882263, 1.7481026649475098, -0.683929443359375, 0.06547853350639343, 0.54949951171875, 0.0819416344165802, 0.03542771562933922, -0.47475743293762207, -0.5043356418609619, -1.1751792430877686, -0.2850289046764374, -0.3039197027683258, -0.10066709667444229, -0.8352891802787781, -0.10254454612731934, 0.39544209837913513, 0.5965757966041565, 1.8173624277114868, -0.17516477406024933, -1.1205449104309082, 0.00018178741447627544, -0.14702416956424713, -0.8572846055030823, 0.4436642527580261, -0.2676646411418915, -1.4779701232910156, 0.09772300720214844, 1.016533374786377, 0.8723958730697632, 0.29484620690345764, 0.6937792301177979, 0.5814675688743591, -0.6691786646842957, -0.6548154354095459, -0.5448592305183411, -0.2655971050262451, 1.5936282873153687, -0.3957064151763916, -0.6165443658828735, -0.5232998728752136, 0.12078431993722916, 0.0836929902434349, 0.45265230536460876, -0.34680041670799255, 0.31804683804512024, 0.6093674302101135, -0.6058354377746582, 0.3513380289077759, -0.14519742131233215, -0.7974200248718262, 0.6449401378631592, 0.6242750287055969, 0.14938734471797943, -0.7700900435447693, 0.10095632076263428, -1.1256911754608154, 0.5607722997665405, -0.7607350945472717, 0.8468970060348511, -1.0060110092163086, -0.9133976697921753, 0.0053381482139229774, -1.172943353652954, 0.020565127953886986, 0.11067275702953339, 1.084980845451355, 0.34520184993743896, -0.5447975993156433, 0.7752910256385803, 0.2714497447013855, -0.25016072392463684, 0.5352773070335388, 0.4600572884082794, 0.0905432477593422, -0.06923869997262955, 1.157012701034546, 0.0662703588604927, -1.182586431503296, 0.7300495505332947, 0.6561977863311768, -1.0294163227081299, 1.3455942869186401, -0.3631250858306885, -0.33740848302841187, -0.9012040495872498, 0.07544110715389252, 0.25063860416412354, -0.5034614205360413, 0.8323842287063599, -0.14603370428085327, -0.7861727476119995, -1.163614273071289, 0.8030644655227661, 0.37233448028564453, 0.9557769298553467, 0.21171420812606812, 0.3584676682949066, 0.05270880088210106, -0.9375603795051575, 0.13709978759288788, -0.1432660073041916, -0.6591348052024841, -0.8119228482246399, -0.18294848501682281, -1.0889164209365845, 0.00027063116431236267, -0.08522236347198486, -0.7577471733093262, 0.31534940004348755, -0.11059165000915527, -0.8567895293235779, 0.13538126647472382, -0.04174164682626724, -0.5911686420440674, -1.1086376905441284, -0.328616738319397, -1.182915210723877, 0.4550246000289917, -0.5509699583053589, 0.2972007095813751, -0.280140221118927, 0.6497443318367004, 1.1938611268997192, -0.9608433842658997, -1.351930022239685, 0.6289898157119751, 0.04948798194527626, -1.1523925065994263, 0.7310590147972107, -0.4938846230506897, -0.16780610382556915, -0.05027289316058159, -0.9160873889923096, 0.1407824158668518, 0.7933614253997803, -0.43375566601753235, 1.1317375898361206, -0.1395934373140335, -0.2743780016899109, -0.8063997030258179, -0.13365104794502258, 0.3026515245437622, -0.7714465856552124, -0.9078161120414734, 0.9947120547294617, 0.28451085090637207, -1.3410612344741821, 1.0833208560943604, -0.16823925077915192, -0.28635814785957336, -0.2270624041557312, 0.6289164423942566, 0.7854308485984802, 0.4690125584602356, -0.9087312817573547, -0.20447349548339844, -0.9295573830604553, 0.3126351833343506, 0.6897483468055725, -0.4036441147327423, 0.18586672842502594, 1.814022183418274, 0.7203337550163269, -0.7830436825752258, 0.33761319518089294, -0.44665318727493286, 0.12490588426589966, -1.3092937469482422, -0.4043031930923462, 0.5569071173667908, -1.0552891492843628, 0.895429790019989, 0.12651821970939636, -1.6263644695281982, 0.15482644736766815, -0.4286704659461975, 0.13079124689102173, -0.11643798649311066, -0.22123180329799652, -0.9564083814620972, -0.100007064640522, -0.1806400865316391, -0.44935929775238037, -0.0846523568034172, -0.12453805655241013, 0.6971824765205383, -0.604137122631073, -0.9646855592727661, -0.3811919391155243, 0.7063561677932739, -0.20654787123203278, 0.7466951608657837, 0.004831151105463505, -1.0067942142486572, -1.2954368591308594, -0.09635178744792938, 0.5318923592567444, 0.4896461069583893, -0.13149824738502502, 0.6197654008865356, 0.925500214099884, 0.4267067611217499, -0.03710422292351723, 0.5585852265357971, 0.5261415839195251, 0.27524855732917786, 0.5674316883087158, -0.7794229388237, 1.073472023010254, -0.4734151065349579, -0.7133952379226685, -0.3913019299507141, 0.9008716940879822, 1.2400884628295898, 0.5480316281318665, 0.9991703033447266, 0.013895970769226551, -0.004357762169092894, -0.6524303555488586, 0.27416563034057617, -0.07146033644676208, -0.4600960910320282, 0.32622453570365906, -1.0753145217895508, 0.05165078863501549, -0.25015464425086975, -0.09769371151924133, 0.46071696281433105, 0.5562340617179871, 0.852528989315033, 0.0277545303106308, -0.40501856803894043, -0.8158940076828003, -0.9025605916976929, -0.2327904999256134, -0.7082115411758423, 0.8208271861076355, 1.3533591032028198, -1.3034467697143555, -0.04985983297228813, 0.35074955224990845, -0.6570946574211121, 0.8274803757667542, -0.04684557393193245, 1.0384546518325806, -0.7313903570175171, -0.07538711279630661, 0.013723200187087059, 0.7101081013679504, 0.1585886925458908, -0.6097146272659302, -0.4627472460269928, 0.43415841460227966, 0.6736263632774353, 0.14708873629570007, -0.5598552823066711, 0.18771809339523315, -0.6558336019515991, -0.7476145029067993, -0.18830490112304688, 0.2763049304485321, 0.5034998655319214, 0.14540457725524902, -1.0112996101379395, -0.5008217096328735, -0.08826158940792084, -0.43448856472969055, 0.38744404911994934, -0.039830464869737625, 0.8186743855476379, -0.01510148961097002, 0.2746467590332031, 1.2130393981933594, -0.29502081871032715, 0.24221062660217285, -0.923025906085968, 0.3980899751186371, 0.8830153346061707, 1.4877578020095825, 0.594822347164154, -0.4558566212654114, 0.04429753124713898, -1.3800098896026611, -0.29931262135505676, -0.7547680139541626, 0.6521161794662476, -0.13794639706611633, -0.4117718040943146, -0.3507247269153595, -0.23231573402881622, -0.11947844922542572, -0.02694583684206009, -0.1754886955022812, -0.1434284895658493, -0.11585839837789536, -0.21290993690490723, 0.7260125875473022, 1.0167510509490967, -0.7818929553031921, -0.8734380602836609, -0.6942471265792847, 0.936872661113739, -0.21519020199775696, 0.5632987022399902, -0.21237973868846893, -0.5039461255073547, 0.7169585227966309, -1.44945228099823, 0.2204243540763855, -0.3525720238685608, -0.5720753073692322, 0.672213077545166, -1.0233579874038696, -0.5878537893295288, 0.02510187029838562, -0.4821798503398895, 1.1543750762939453, 0.6891694068908691, 0.29188627004623413, 0.06018399819731712, 0.2962018847465515, -0.25020095705986023, -0.15826968848705292, 1.145850419998169, 0.010073893703520298, -0.5083593726158142, 0.05713703855872154, -0.5049046277999878, 0.5125398635864258, -0.6652097702026367, -0.3242582082748413, 0.0853966474533081, 1.0666242837905884, 0.22979584336280823, -0.04212595894932747, -0.40753382444381714, 1.5806270837783813, 0.18145743012428284, 0.08008076995611191, -0.09424802660942078, -0.17347106337547302, -0.853104293346405, 0.2359602451324463, 0.05560952425003052, -0.3378751575946808, -0.1931048184633255, 0.38975849747657776, -0.09635350853204727, -0.04218616709113121, 0.31324219703674316, 0.20285622775554657, 0.187333345413208, 0.5436577200889587, -0.7349933385848999, 0.3165612816810608, -0.3308260142803192, 0.9378288984298706, 1.0803606510162354, 1.3988093137741089, 0.15650799870491028, -0.9181262850761414, 1.5725741386413574, 0.1863657683134079, 0.6265187859535217, 1.354886770248413, 0.8186006546020508, 1.0434377193450928, -1.0786585807800293, -0.4172944128513336, 0.6210744976997375, 0.0030360582750290632, 0.8106878399848938, -0.1226424053311348, 0.06432732939720154, -1.168887734413147, -0.15827427804470062, 0.7778478860855103, -0.6741891503334045, 0.6022063493728638, 0.1803470253944397, 0.5457886457443237, 1.0134905576705933, -0.8571704626083374, -0.15029844641685486, -1.066975474357605, -0.5851998925209045, -0.8186284303665161, -0.479476660490036, 0.6247068643569946, 0.7183042168617249, 0.7653615474700928, 0.09533523768186569, 0.07927689701318741, -0.5639004707336426, 0.3257405757904053, -0.7185567021369934, 0.37433677911758423, 0.2840569317340851, -0.21904118359088898, -0.5654810070991516, -0.7662814855575562, -0.08849433064460754, -0.579075813293457, -0.7029700875282288, -0.12464027851819992, -0.37935933470726013, -1.1710292100906372, 0.1473756581544876, -0.0525524728000164, 0.9295275211334229, 0.7576196193695068, 1.366941213607788, 0.08625198155641556, 0.8637126684188843, -0.47185033559799194, 0.22742941975593567, 0.34782469272613525, -0.4748882055282593, 0.19967158138751984, -0.6574519276618958, -0.9354161024093628, 0.3032916784286499, 0.6651442646980286, -0.3528614938259125, 0.33043724298477173, 0.736792802810669, 1.3305809497833252, -0.5471038818359375, -0.42957526445388794, 0.5055550336837769, -0.3931792676448822, 0.6968532204627991, 0.5793069005012512, -1.2732222080230713, -0.10940626263618469, -0.24320557713508606, -1.4948116540908813, 1.479712963104248, 0.04295062646269798, -0.8870928883552551, 0.6271300911903381, 0.16142740845680237, 0.18762628734111786, 0.7007512450218201, -0.8392649292945862, -0.12823757529258728, 0.04045512154698372, 0.48920151591300964, -0.582050621509552, -0.004572439007461071, 0.5981011986732483, -0.218453511595726, -0.6864250302314758, -0.2708246111869812, -0.15833669900894165, 0.20167098939418793, -0.45332857966423035, 0.410658597946167, 0.9969295859336853, 0.09114956110715866, -0.29243403673171997, -1.0482161045074463, 0.5682460069656372, -0.506434440612793, 0.7151994109153748, 0.5085912346839905, 1.0176818370819092, 0.6300575137138367, -0.6476863026618958, 0.5544654726982117, -0.4924432635307312, 0.0332786999642849, -0.7326369881629944, -0.3840959370136261, 0.6158801913261414, 0.1423455774784088, 0.8686271905899048, 1.4947785139083862, 0.034653227776288986, -1.0792852640151978, -0.3192537724971771, -0.4738672971725464, 1.514309287071228, -0.6265375018119812, -0.575958788394928, -0.7175330519676208, -0.3043050467967987, 0.16774123907089233, 0.09742248803377151, 0.4960986077785492, -0.8646366596221924, -1.7840815782546997, -0.25984475016593933, -0.5422249436378479, 0.570206880569458, -0.3245331048965454, 0.38241633772850037, 0.6926447153091431, -1.2799988985061646, 0.488837331533432, 0.4293607771396637, -1.616483449935913, 0.6130666732788086, -0.7418121099472046, 0.6191960573196411, 0.25589361786842346, -0.23843857645988464, 0.3717573881149292, 0.5266862511634827, -0.7784631848335266, -0.7199558615684509, -1.1018836498260498, -0.3242529034614563, 0.3315865099430084, 1.0320433378219604, -1.221134901046753, 1.9086308479309082, -0.17738576233386993, -0.5466683506965637, -0.19185718894004822, 0.47843340039253235, -0.8145110011100769, -0.19912518560886383, -0.33433637022972107, -0.0022961788345128298, -0.20272071659564972, 1.12252938747406, 0.652726411819458, 0.9808343648910522, 0.14637590944766998, 1.3921095132827759, -0.9637690186500549, -0.7725879549980164, -0.9716424942016602, 0.20356416702270508, -0.6101729273796082, -0.38202404975891113, 0.12573949992656708, -0.3956944942474365, -0.7040084004402161, 0.13769981265068054, 1.2554645538330078, -0.3950783610343933, 0.6130684018135071, 0.4209119975566864, -0.15908262133598328, -0.7926846146583557, 0.4384862184524536, 0.18397009372711182, -0.4855585992336273, -0.10735484957695007, -0.9776932001113892, 0.9701806306838989, -0.5942983627319336, -0.025924842804670334, 0.7549536228179932, 0.7087736129760742, -0.27096399664878845, 0.5193200707435608, 0.25959086418151855, 0.34292834997177124, -0.5590569376945496, 0.8792223930358887, 1.146951675415039, -0.6943273544311523, 0.3171497583389282, 0.019739311188459396, -0.11007167398929596, -0.18744318187236786, -0.33068060874938965, -0.3985538184642792, -0.09716899693012238, -0.021946588531136513, 0.2543531358242035, -0.2904256582260132, -0.5273637175559998, 0.12917473912239075, -0.47733962535858154, 0.10893717408180237, 1.427870273590088, -0.43830573558807373, -1.0090140104293823, 1.2532238960266113, 0.22258321940898895, -0.40299761295318604, -0.21938905119895935, 0.06420569866895676, -0.16448892652988434, 0.3956456184387207, 0.7034064531326294, 0.23500367999076843, -0.6480138301849365, 0.7784838080406189, 1.12282133102417, 0.026928557083010674, -0.4519246518611908, -1.325101613998413, -1.640946626663208, -0.7107045650482178, -0.7603548765182495, -0.6284500360488892, 0.24625638127326965, -0.05943944305181503, -1.0707025527954102, 0.11621776223182678, 0.018475940451025963, 0.21697397530078888, -0.4103017747402191, -0.2294362485408783, -0.2793828547000885, -0.9644718766212463, 0.6701415181159973, -0.4774053990840912, 1.3941764831542969, 0.08133465051651001, 0.06010706350207329, -0.1721978634595871, -0.20147857069969177, -0.21697185933589935, 0.8470875024795532, -0.09599237889051437, -0.5460041761398315, -0.20385323464870453, -0.43934735655784607, -0.4262242317199707, 0.6784402132034302, 0.17368482053279877, 0.525252103805542, -0.3690861165523529, -1.4534716606140137, -0.04168742150068283, 1.2717623710632324, -0.1796402782201767, -0.5029948353767395, -0.7118792533874512, -0.6370792984962463, 0.8804455399513245, -0.03509703651070595, 0.8168154358863831, -0.9487463235855103, 0.8382511138916016, 0.8718401193618774, -1.028741717338562, -0.08299598842859268, -0.8689274787902832, 0.8780278563499451, -0.4590614140033722, 0.6913545727729797, -0.8890947699546814, 0.41550570726394653, 0.3681412637233734, -1.7381328344345093, -0.8906653523445129, -0.7716681361198425, -0.5083652138710022, -0.3480455279350281, -0.6372570395469666, -0.6942088603973389, -0.45619767904281616, 0.18329522013664246, 0.42710375785827637, -0.08074616640806198, 1.0989768505096436, -0.15199163556098938, -1.2334080934524536, 0.4354843199253082, 0.5321823358535767, 0.690203070640564, 0.6284448504447937, 1.10038161277771, 1.2379320859909058, -0.18081091344356537, -0.10696951299905777, -0.26428040862083435, 0.8381742238998413, -0.4297734498977661, 0.4799639582633972, -0.29047268629074097, -0.27933675050735474, -0.06043972074985504], [0.8450943827629089, 1.9337806701660156, -2.97733998298645, 0.11610313504934311, 0.9403656125068665, 0.05082640424370766, 0.6976273059844971, -0.32962432503700256, -0.2249482274055481, -0.7497565150260925, -0.8477506637573242, -0.06364519149065018, 1.082769513130188, 0.7511652708053589, 0.49986329674720764, -0.16488121449947357, -0.10892362147569656, -0.02520914375782013, 0.8004512190818787, 1.2463055849075317, 0.3620455265045166, -0.5270326137542725, -0.6829664707183838, 0.1642652004957199, -0.04341323673725128, 0.16700750589370728, -1.1024178266525269, -0.32662156224250793, -1.061662197113037, -0.6811010241508484, 1.5260664224624634, -0.3167397081851959, 0.7214042544364929, -0.6266542077064514, -2.0655057430267334, -1.000912070274353, 1.0292648077011108, -0.4144822657108307, -0.11255915462970734, -0.2154495120048523, 1.8010402917861938, 1.168929100036621, -0.22800537943840027, -1.4094774723052979, -0.8476971387863159, 0.10417730361223221, 1.1646831035614014, -0.2012997269630432, -0.2816782593727112, -0.7907166481018066, 0.7209141850471497, -0.2234029769897461, 0.2732838988304138, 1.9725353717803955, 0.20216359198093414, -0.04177544265985489, 0.6472927927970886, 0.9620842337608337, -0.48190850019454956, 0.6738826632499695, 0.8740978240966797, -0.6363419890403748, 0.7673813104629517, 0.5066123604774475, -0.07757038623094559, -0.2081567496061325, -0.00579855777323246, 0.41758421063423157, 0.5638405084609985, -0.04470929503440857, 0.9987841248512268, 0.38937655091285706, 0.17084455490112305, 0.19002650678157806, -0.5096645355224609, 0.5526094436645508, 0.31178948283195496, 0.33727413415908813, -0.014509767293930054, 0.3539230525493622, -1.1211867332458496, 0.5011233687400818, 1.1391997337341309, 0.6408106088638306, 0.3565317690372467, 0.738694965839386, 0.710719645023346, -1.0432554483413696, -0.5663349628448486, 1.1624971628189087, 0.09140442311763763, 0.6267003417015076, 1.1540639400482178, -0.2846481502056122, -0.6667328476905823, -0.6626110672950745, 0.1245916336774826, -1.6910208463668823, -0.4491462707519531, -0.3394731879234314, -0.4169805347919464, -0.41331470012664795, 0.3683297038078308, 1.3126320838928223, -0.09191927313804626, 1.088499665260315, -0.17630839347839355, -0.7331674695014954, 0.6981446743011475, -0.41193681955337524, -0.5604050159454346, 0.5553783774375916, 0.28861260414123535, -1.5368411540985107, -0.43417930603027344, 0.8220968246459961, 1.0457346439361572, 0.1505810022354126, 0.3904837667942047, 0.04444074258208275, -0.38443872332572937, -0.476322740316391, -1.3143749237060547, -0.22972002625465393, 0.987112283706665, -0.789290726184845, -0.6452450752258301, 0.17605510354042053, 0.43639448285102844, -0.29311004281044006, 0.4610505998134613, -0.5267753601074219, 0.14721539616584778, 0.712058961391449, -0.5107136964797974, 0.551689624786377, -0.03365836292505264, -0.8916141390800476, -0.47325193881988525, 1.2550605535507202, 0.35744476318359375, 0.13705594837665558, 0.18894675374031067, -0.36801889538764954, 0.47996869683265686, -0.656602144241333, 0.6716965436935425, -0.18614661693572998, -0.3368997871875763, 0.20611831545829773, -0.9724122881889343, 0.4150824248790741, -0.3874381184577942, 0.8176804780960083, 0.4316757619380951, -0.2341962605714798, 0.284974068403244, -0.5387235879898071, -0.04459284991025925, 0.7198988795280457, 0.4967460036277771, -0.02487603947520256, -0.3133886158466339, 0.4647597372531891, -0.021947789937257767, -0.36395788192749023, -0.4883785545825958, 0.3277074098587036, -0.8420222997665405, 1.13540780544281, -0.18760265409946442, -1.1433769464492798, -1.3927172422409058, 0.26111549139022827, 0.25568675994873047, -0.08686655759811401, 2.01450514793396, -0.27779844403266907, -0.3930851221084595, -0.608222484588623, 0.3935544192790985, -0.017510434612631798, 0.17639999091625214, 0.08730684965848923, 0.9106431007385254, -0.019002199172973633, -0.03299471363425255, -0.5130457282066345, -0.9326042532920837, -0.9874203205108643, -0.7320036888122559, 0.012170841917395592, -1.6128066778182983, 0.7923619151115417, -0.31666073203086853, -0.677560567855835, 0.9542128443717957, -0.30893585085868835, -0.960232138633728, -0.0836176797747612, -0.19902649521827698, -0.3462788760662079, -0.839509904384613, -0.349549263715744, -0.3535018265247345, 1.0389586687088013, -0.7906191349029541, 1.1911743879318237, -0.7116585373878479, 0.2751275897026062, 0.7291775941848755, -0.8536421060562134, -0.5460901260375977, 0.8495173454284668, -0.006435702089220285, -2.4916398525238037, 0.8466176986694336, 0.4997144937515259, 0.3435334861278534, -0.6530561447143555, 0.05696411803364754, 0.5157169699668884, 0.011500570923089981, -0.36219605803489685, 0.6821463704109192, -0.6904708743095398, -0.3426227569580078, -1.3176668882369995, -0.002824980765581131, -0.5483747124671936, -1.0192582607269287, -0.43155887722969055, -0.10290376842021942, 0.17031094431877136, -1.2113171815872192, -0.2672673761844635, 0.08051696419715881, 0.04578617587685585, 0.5754444003105164, 0.4452361464500427, 0.33240315318107605, 0.8017204403877258, -0.7389134764671326, -0.34353700280189514, -0.5707578063011169, 0.41583162546157837, 0.7165035605430603, -0.6808513402938843, -0.05755161494016647, 1.619871973991394, 0.14555083215236664, -0.8130474090576172, 1.0597718954086304, -0.5488685965538025, 0.3908342123031616, -0.7714079022407532, -0.6548983454704285, 0.07555128633975983, -0.7264310717582703, 1.107642650604248, 0.3284628391265869, -0.7927704453468323, 1.025253415107727, -0.3818429112434387, -0.04107397049665451, -0.6821574568748474, -0.8296362161636353, -0.7122156023979187, 0.13615810871124268, -0.7802268862724304, -0.0379040353000164, -1.0742682218551636, -0.3413253724575043, 0.8490669131278992, -0.048462290316820145, -0.7310328483581543, 0.10470449179410934, 1.0690172910690308, -0.4977235794067383, 0.9241893887519836, -0.42100778222084045, -0.721024751663208, -0.36429527401924133, 0.01568276807665825, 0.6327409744262695, 0.2649639844894409, 0.04730335623025894, 0.9415105581283569, 0.6766791939735413, 0.666138768196106, 0.28446176648139954, -0.013327628374099731, 0.14285694062709808, 0.20884691178798676, 0.4171483814716339, 0.16037596762180328, 0.28167641162872314, -0.5443587303161621, -0.8842498064041138, -0.44977566599845886, 0.45481982827186584, 1.4293625354766846, 0.8106591701507568, 2.001636028289795, -0.3538072109222412, 0.7315150499343872, -0.5685328245162964, -0.10514726489782333, -0.05593596771359444, -0.7590820789337158, -0.1254206895828247, -0.38496825098991394, -0.3162233531475067, -0.6483535170555115, -0.01464085839688778, 0.36350217461586, 1.0097633600234985, 0.797530472278595, 0.16599591076374054, -0.36963847279548645, -0.988966703414917, -0.6523037552833557, -0.009577635675668716, -0.7282416820526123, 0.14110998809337616, 0.8029180765151978, -1.3758198022842407, 0.3712455928325653, -0.32140663266181946, 0.08839975297451019, 0.7020217180252075, 0.10047955811023712, 0.6151776313781738, -0.9353819489479065, -0.42029818892478943, -0.2281905561685562, 1.006680965423584, 0.6938956379890442, 0.15015265345573425, -0.24751640856266022, 0.4224644601345062, 0.9573764801025391, 0.6116449236869812, -0.48504677414894104, 0.5474849939346313, -0.498453825712204, -0.7446210980415344, -0.07435029745101929, 0.8446359038352966, -0.12090948969125748, -0.2034073770046234, -1.3947088718414307, -0.33211013674736023, 0.00886352825909853, -0.7658243775367737, 0.9693548679351807, 0.28518950939178467, 0.14901335537433624, 0.03484001010656357, -0.0028582923114299774, 1.1068223714828491, -0.18626506626605988, 0.4190515875816345, -0.3178258538246155, 0.8866927623748779, 0.8639748692512512, 1.458834171295166, 0.8542578220367432, -0.05695407837629318, -0.27713513374328613, -1.0832215547561646, -0.029375417158007622, -0.28439509868621826, 0.6748085021972656, 0.27723628282546997, -0.2892736494541168, -0.27125489711761475, 0.07494194060564041, 0.30405011773109436, -0.2504567801952362, 0.6861040592193604, -0.013425055891275406, -0.8005465269088745, -0.3182516098022461, 0.5583019852638245, 0.8666993975639343, -0.86384516954422, -0.5245984792709351, -0.58216792345047, 0.28648465871810913, -0.812355101108551, 0.9446275234222412, -0.7629683613777161, -0.3643644154071808, 0.7829872369766235, -0.9267452955245972, -0.17661312222480774, -0.7425552606582642, -0.5139339566230774, 1.376595139503479, -0.7248768210411072, -0.31510215997695923, -0.34241780638694763, -0.10043132305145264, 1.2278681993484497, 0.5297071933746338, 0.2501112222671509, 0.6302008032798767, -0.34504425525665283, 0.623201310634613, 0.605421245098114, 1.423587679862976, -0.5590534806251526, -0.575392484664917, 0.7877249121665955, -0.16763247549533844, 0.36489808559417725, -1.38785719871521, 0.2886728048324585, -0.16242516040802002, 0.11797663569450378, -0.010274356231093407, 0.5052979588508606, -0.056055858731269836, 1.5636794567108154, 0.6081250309944153, -0.2682819962501526, -0.2887114882469177, -0.23199811577796936, -1.0661123991012573, 0.2559400200843811, 0.5934098958969116, -0.4218578338623047, 0.14268775284290314, 0.3606038987636566, 0.34754231572151184, 0.8449269533157349, 0.304715633392334, -0.026854991912841797, 0.37738317251205444, 0.5042102336883545, -0.49233487248420715, 0.00697360560297966, 0.3381381630897522, 1.6542012691497803, 0.5501418709754944, 0.7896491289138794, -0.5794979929924011, -1.2261531352996826, 0.9951075315475464, -0.28600651025772095, 0.7959651947021484, 0.6992180943489075, 0.36504194140434265, 0.9213886857032776, -1.2338597774505615, 0.19423554837703705, 0.7030105590820312, 0.246579110622406, 0.736757218837738, 0.380108118057251, 0.538990318775177, -1.145833134651184, 0.0152374766767025, 0.1549260914325714, -0.41534724831581116, 0.3948970437049866, 0.46165797114372253, 0.06576195359230042, 0.7639230489730835, -0.5764918327331543, 0.07710324227809906, -1.648314118385315, 0.20470547676086426, 0.0069653186947107315, 0.3475223183631897, 0.46145641803741455, 1.3042480945587158, 0.18034180998802185, 0.5378263592720032, 0.16010673344135284, -1.1927653551101685, 0.16347673535346985, -0.14838841557502747, 0.38440823554992676, 0.23670098185539246, -0.1634225994348526, -0.612572193145752, -0.18288306891918182, -0.18385860323905945, -0.032147713005542755, -0.17297382652759552, -0.35602059960365295, -0.3586941063404083, -0.9555804133415222, 0.4548393487930298, 0.40123575925827026, 0.09949726611375809, -0.10947661846876144, 0.7104361057281494, 0.25431114435195923, 0.4852292239665985, -0.2904488742351532, 0.3881293833255768, 0.3006752133369446, -0.16377699375152588, -0.3503667712211609, -0.6392337679862976, -1.2463122606277466, 0.28220102190971375, 0.6443015336990356, 0.17788401246070862, 0.2511175870895386, 0.5743221044540405, 1.5770220756530762, -1.0561753511428833, -0.7669622302055359, 0.24649040400981903, 0.14257396757602692, 1.0949034690856934, 0.3550463616847992, -0.52896648645401, -0.7276359796524048, -0.11897000670433044, -1.9064475297927856, 0.7034308910369873, 0.0015547946095466614, -0.9428233504295349, 0.42447054386138916, -0.43479642271995544, 0.3147047460079193, 0.5129379034042358, -0.2699089050292969, 0.8315537571907043, 0.048814840614795685, -0.2671114504337311, -0.25756508111953735, 0.4317026138305664, 0.935001790523529, 0.3097771406173706, -0.7839524745941162, 0.4319860637187958, -0.7316486239433289, 0.05506282299757004, 0.014232903718948364, 0.07846984267234802, 0.6054192185401917, -0.052303362637758255, -0.031011318787932396, -0.5403254628181458, 0.40050971508026123, -0.8118345141410828, -0.25468167662620544, -0.4465232789516449, 0.5747270584106445, -0.4501219093799591, -0.11937639117240906, 0.5593444108963013, -0.8740547895431519, 0.3530135452747345, -0.2672605514526367, -0.15408174693584442, 0.40733781456947327, 0.5964620113372803, 0.2581411600112915, 0.8754575848579407, -0.8113047480583191, 0.2040117233991623, -0.8970711827278137, -0.1879212111234665, 1.74175226688385, -0.23256486654281616, -0.14418376982212067, -0.5801430344581604, -0.6934810876846313, 0.1527245044708252, -0.0089262081310153, 0.829702615737915, -0.8098506331443787, -0.9986734986305237, -0.24409401416778564, 0.11246412992477417, 0.6424464583396912, -0.34238243103027344, 1.1921823024749756, 0.4276828169822693, -0.8346397876739502, 0.34232398867607117, -0.1921231597661972, -0.8080695271492004, 0.11406980454921722, -1.2075512409210205, 0.013330037705600262, -0.13568951189517975, -0.014742588624358177, 0.16585730016231537, 1.1036087274551392, -0.5058599710464478, -0.8108305335044861, -1.6427403688430786, -1.1226012706756592, 0.48652228713035583, 1.061918020248413, -1.486225962638855, 0.7746220827102661, -0.5454830527305603, -0.43539726734161377, 0.18818119168281555, -0.2039157599210739, -0.6423664689064026, -0.09775347262620926, -0.004207042045891285, 0.4923465847969055, -0.39338797330856323, 1.500666618347168, 0.6058023571968079, 0.755054771900177, 0.0837126299738884, 1.1730701923370361, -0.8810800909996033, 0.04944106191396713, -0.14365439116954803, 0.5491819977760315, -0.45610231161117554, 0.32048726081848145, 0.3793361783027649, -1.1378636360168457, -0.9400355219841003, 0.0038674166426062584, 0.8268068432807922, -0.7632372379302979, 0.33705252408981323, -0.5277586579322815, -0.8439235091209412, -0.7538160681724548, 0.5494505763053894, -0.6783473491668701, -0.45071354508399963, 0.31017985939979553, -0.8988228440284729, 0.11405280977487564, -0.7416696548461914, 0.13555780053138733, 0.8167011737823486, 0.6049496531486511, -0.8442674875259399, 0.17941021919250488, 0.6609086990356445, 0.5498105883598328, -0.660971462726593, 0.8113663792610168, 0.9814948439598083, -0.3750322759151459, 0.18869858980178833, -0.054408926516771317, -0.3337549567222595, 0.3409557044506073, 0.05108942463994026, -0.49416595697402954, -0.584251344203949, 0.6584997773170471, -0.28482314944267273, -0.3736802339553833, 0.24373821914196014, 0.45054706931114197, 0.2356242686510086, 0.8385589122772217, 1.2844572067260742, -0.8058011531829834, -0.8303534984588623, 0.4421747624874115, 0.2867754101753235, -0.6287636160850525, 0.36147359013557434, 0.11763325333595276, -0.20283326506614685, 0.6197633147239685, 0.7409870028495789, 0.9905840754508972, -0.877409040927887, 1.056943416595459, 0.8128563761711121, -0.09631402790546417, 0.013502966612577438, -0.7574455142021179, -1.5252158641815186, 0.025084298104047775, -0.8481396436691284, -0.3614942729473114, 0.5197179317474365, -0.6779927611351013, -1.155291199684143, 0.3612370789051056, 0.49787554144859314, -0.6118303537368774, 0.10368333011865616, 0.4439774751663208, -0.34319010376930237, -0.6656268239021301, 0.5345122814178467, 0.12548282742500305, 1.414842963218689, -0.24229590594768524, -0.1702704280614853, -0.10014896839857101, -0.1287151426076889, 0.8729179501533508, 0.0042151231318712234, 0.01046384871006012, -0.47255656123161316, 0.5049284100532532, -0.8247079849243164, -1.032953143119812, 0.08976466953754425, -0.6302922368049622, 0.2412123829126358, -0.39803412556648254, -1.1510887145996094, 0.6134921312332153, -0.25196608901023865, -0.24278533458709717, -0.5186403393745422, -1.0409001111984253, -0.4476330280303955, 0.518750786781311, -0.3476535379886627, 0.6172833442687988, 0.3928837776184082, 0.5753346681594849, 0.502104640007019, -1.187046766281128, -1.1124283075332642, -0.6023639440536499, 1.2799714803695679, 0.1297549605369568, 0.03862715885043144, -0.3976326584815979, -0.0070455027744174, -0.10566940903663635, -0.9645292162895203, -0.6689277291297913, -0.35885927081108093, -0.07316020131111145, -0.44424787163734436, -1.1838887929916382, -1.1710861921310425, -0.6496477723121643, 0.9373262524604797, 0.4661363959312439, 0.18193450570106506, 0.4354286789894104, 0.03277387097477913, -1.5379765033721924, -0.0834198072552681, 0.8541207909584045, 0.6543486714363098, 0.5701562762260437, 1.6008515357971191, 0.6572083830833435, -0.10496751219034195, 0.18071435391902924, -0.45644503831863403, 0.2580879330635071, -1.4758729934692383, -0.3804047405719757, -1.0733590126037598, -0.3598095178604126, 0.3436152935028076], [0.5236385464668274, 1.360308051109314, -2.1064836978912354, -0.6354657411575317, 2.2398056983947754, 0.35133498907089233, 0.8467134833335876, 0.02122628502547741, 0.022978205233812332, -0.46203693747520447, -0.5268329977989197, 0.7260488271713257, 0.07380736619234085, 1.027334451675415, 1.0709012746810913, -0.1918269246816635, 0.3144683241844177, 0.47410398721694946, -0.2208956480026245, 0.4054548144340515, -1.187605857849121, -0.25020545721054077, -0.8105477094650269, 0.07799021899700165, -0.09319761395454407, 0.44277942180633545, -0.6988920569419861, 0.011657781898975372, -0.6575709581375122, -0.8736495971679688, 0.8713124990463257, -0.7718655467033386, -0.2111641764640808, 0.7026090621948242, -2.818528652191162, 0.11492414772510529, 1.1540117263793945, -0.34991756081581116, -0.42205968499183655, 0.7654991745948792, 2.386561870574951, -0.07038954645395279, -0.2432853877544403, -1.6595721244812012, -0.41428259015083313, 0.46606776118278503, 0.8769480586051941, -0.7340298295021057, -0.3440254330635071, -0.6288967728614807, 0.337371826171875, -0.16848494112491608, 0.6079452633857727, 0.9441313743591309, 0.6113834381103516, -0.614506185054779, 0.7453787326812744, 0.69645756483078, 0.35643309354782104, 0.08834829926490784, 0.2770269811153412, -0.014469880610704422, -0.7093833684921265, 1.456139326095581, 0.12445637583732605, 0.08849728852510452, -0.6272972226142883, 1.1193214654922485, -0.01790096051990986, -0.26096203923225403, 0.5474594831466675, -0.14623600244522095, -0.5284869074821472, 0.31474512815475464, -0.5485039353370667, 0.585089385509491, 0.6665047407150269, -0.12670409679412842, 0.5460749864578247, 0.44100573658943176, -1.544500708580017, 0.27092474699020386, 0.759875476360321, -0.8746902346611023, 0.8155316114425659, 0.3041548728942871, 0.19297654926776886, -0.6014150977134705, -0.6858000159263611, 1.1492446660995483, 0.5162176489830017, 0.006282164715230465, 0.8524330854415894, -1.0852108001708984, -0.45329615473747253, -0.5068692564964294, -0.17010557651519775, -1.0004994869232178, -1.078535795211792, -0.5149333477020264, -0.7350547909736633, -0.07359989732503891, 0.4212900996208191, 0.5354727506637573, -0.070074163377285, 1.354651927947998, 0.00848774891346693, -0.038235265761613846, -0.1717745065689087, -0.3576394021511078, -0.619818389415741, 0.82734614610672, -0.5223347544670105, -1.2546446323394775, -0.09736451506614685, 0.16218610107898712, 0.9709392786026001, 0.27632540464401245, 0.4275873005390167, 0.9285415410995483, -0.04995773360133171, -0.08661419153213501, -0.7706277966499329, 0.3902297019958496, 0.5723848342895508, -0.10921585559844971, -0.8662375211715698, 0.06834019720554352, 0.4052484333515167, -0.22696621716022491, 0.18289107084274292, -0.20191343128681183, 0.3125187158584595, 1.201368808746338, -0.3001154065132141, 1.0163017511367798, -0.23520183563232422, -1.2383837699890137, 0.34697484970092773, -0.12815570831298828, 0.9484373927116394, -0.4665915369987488, 0.07492238283157349, -1.0673798322677612, 0.18370862305164337, -0.7535752654075623, 0.5314751863479614, -0.5986168384552002, -0.7071989178657532, 0.37156277894973755, -1.290352463722229, 0.5592761039733887, 0.06461955606937408, 1.0309100151062012, 0.46851128339767456, 0.04696503281593323, 0.6101589202880859, 0.27179715037345886, 0.5386374592781067, 0.4471491575241089, 0.5537781715393066, -0.480839341878891, -0.9452015161514282, 0.4750072956085205, 0.15168648958206177, -0.41910508275032043, 0.2588672637939453, 0.3891298770904541, -0.6151265501976013, 0.6066645383834839, -0.41888242959976196, -0.34370774030685425, -1.1381773948669434, 0.3198995590209961, 0.36552590131759644, 0.21749012172222137, 1.3010553121566772, -0.4821985065937042, -1.504940390586853, -0.3798481225967407, 0.667773425579071, 0.4713437557220459, 0.6380557417869568, -0.44403550028800964, 1.0688296556472778, 0.17851881682872772, 0.2537086009979248, 0.1816541701555252, 0.3355221450328827, -1.4656031131744385, -1.2022664546966553, -0.09369204193353653, -0.84006667137146, 0.2641906142234802, 0.2750962972640991, -0.7781802415847778, 0.8034839630126953, -1.0790350437164307, -0.433142751455307, -0.09274856001138687, -0.6307401657104492, -0.8149498105049133, -0.7184069752693176, -0.215783953666687, -0.404665470123291, 0.03040519915521145, -0.5745923519134521, 0.5164651274681091, -0.7850260138511658, -0.515014111995697, 0.7223575711250305, 0.3496658205986023, -0.7838386297225952, 0.7416968941688538, -0.7503350973129272, -0.815594494342804, -0.01913035660982132, 0.44099023938179016, 0.08726246654987335, -0.32793399691581726, 0.19512279331684113, -0.3714796304702759, -0.1436389982700348, -0.5442360639572144, 0.17752200365066528, -0.7555526494979858, -0.1523539125919342, -1.0727006196975708, -0.8913170099258423, -0.13397997617721558, -0.6133823394775391, -2.24301815032959, 0.1935979425907135, 0.37509632110595703, -1.2601635456085205, 0.5219172239303589, 0.23456481099128723, 0.7150493264198303, 0.40014198422431946, 0.7576999664306641, 0.3560519814491272, 1.2417633533477783, -1.029949426651001, 0.5332315564155579, -0.3613349199295044, 0.5942026376724243, 0.8676980137825012, -0.8055075407028198, -0.2839724123477936, 1.1173336505889893, 0.6168757081031799, 0.43739742040634155, 0.7952566742897034, -0.36568543314933777, 0.6553670167922974, -0.7382680177688599, -0.3973621726036072, -0.2664168179035187, -0.38717642426490784, 1.3672791719436646, 0.7693808078765869, -1.213979959487915, 0.08220391720533371, 0.20664972066879272, -0.4757888615131378, -1.329572319984436, 0.012343683280050755, -0.37319472432136536, 0.2378210723400116, -0.4311337172985077, 0.03005911596119404, 0.1538086235523224, 0.07065236568450928, 0.7110568284988403, -0.6758699417114258, -0.24245451390743256, -0.12178265303373337, -0.11798093467950821, 0.6713065505027771, 1.0604990720748901, 0.07491061836481094, -0.08534349501132965, -0.2951118052005768, -0.2290666699409485, 0.6799182295799255, -0.18695829808712006, -0.4601067304611206, 0.7957353591918945, 0.6661871075630188, 0.5448327660560608, -0.10545415431261063, -0.030851993709802628, -1.039777159690857, 0.7909572124481201, 0.13396424055099487, 0.07831670343875885, 0.7724056243896484, -0.7075972557067871, -0.538513720035553, -0.4785347878932953, 0.49176448583602905, 1.1422655582427979, 0.9072715044021606, 1.7582712173461914, 0.38743847608566284, 0.1320769041776657, -0.03850126639008522, -0.29387062788009644, -0.011571270413696766, -0.4104580581188202, -0.7698169946670532, -0.8745054006576538, -0.582543134689331, -0.5254709124565125, 0.5779154896736145, 1.1436830759048462, -0.21093951165676117, 1.0203696489334106, 0.19669322669506073, -0.5397098064422607, -0.7808748483657837, 0.24315237998962402, 0.29897958040237427, -0.538581371307373, -0.03511275723576546, 0.6742207407951355, -1.0565781593322754, 0.07102248817682266, -0.47406041622161865, -0.08387435972690582, 1.5110245943069458, -0.367572158575058, 0.6164736747741699, -1.2056199312210083, -0.5222097635269165, -0.3139193058013916, 1.8513882160186768, 0.5895909667015076, 0.03501307964324951, -0.08795972168445587, 0.3120216131210327, 0.459164559841156, -0.1234966292977333, -0.5149530172348022, 1.0148379802703857, -0.8701804280281067, -1.3400505781173706, -0.4653543531894684, -0.11893964558839798, 0.24650456011295319, -0.7609834671020508, -0.41362765431404114, -0.1296144723892212, -0.1533806174993515, -0.32605770230293274, 0.281502902507782, 0.4062277376651764, 0.1265224814414978, -0.14339853823184967, 0.33261820673942566, 1.4707010984420776, -0.20700019598007202, 0.03795685991644859, -1.1185803413391113, 0.2712724208831787, 0.9178495407104492, 1.391800045967102, 0.5370795130729675, -0.014415188692510128, 0.6769065260887146, 0.05055601894855499, -0.10273896157741547, 0.06155099347233772, 0.6876447200775146, 0.4173707067966461, -0.6238600015640259, -0.3266430199146271, -0.42979419231414795, 0.21972636878490448, 0.42651796340942383, 0.04107752442359924, 0.4207868278026581, -0.5276074409484863, -0.5078483819961548, 0.9750146269798279, 0.46608036756515503, -0.42750313878059387, -1.0317966938018799, -0.12280261516571045, 0.9332637190818787, -0.6617761254310608, 0.07298514246940613, -0.47099316120147705, -0.0009114723652601242, -0.05038733035326004, -0.8508402705192566, -0.5062193870544434, 0.2549193501472473, 0.1228121891617775, 1.3216369152069092, -0.24660691618919373, -0.5339013338088989, -0.020998340100049973, -0.09169432520866394, 0.14903460443019867, 0.26427188515663147, 0.368366539478302, 0.26931118965148926, -0.2562086880207062, -0.44586753845214844, 0.31519895792007446, 1.75105881690979, -0.44018858671188354, -0.30444273352622986, 0.33971625566482544, -0.3393597900867462, 0.19703030586242676, -0.24007022380828857, -0.6001814603805542, -1.1110663414001465, -1.0318522453308105, -0.12160630524158478, -0.148126021027565, -0.0070834169164299965, 1.1705527305603027, 0.346435010433197, 0.12336450070142746, 0.51004958152771, -0.3936198353767395, -0.7903154492378235, 0.3009532690048218, 0.29401248693466187, -0.0309244766831398, -0.10458432137966156, 0.03545863926410675, 0.04439312964677811, -0.32792776823043823, 0.033528655767440796, -0.03951350972056389, 0.564301609992981, 0.21099668741226196, -0.07333289086818695, 0.015082518570125103, 0.49045082926750183, 1.0003693103790283, 0.5908252000808716, 0.8241459727287292, -0.5947383046150208, -1.188289761543274, 0.47035783529281616, -0.590782105922699, 0.17906644940376282, 0.6212950348854065, 0.2456032633781433, 1.1107395887374878, -1.8446705341339111, -0.443183034658432, 0.9035957455635071, -0.17685867846012115, -0.008619315922260284, 0.08959602564573288, 0.6427713632583618, -0.51921546459198, 0.19182640314102173, 1.1746008396148682, 0.35981684923171997, 0.6434780955314636, 0.09194693714380264, 0.6864864230155945, -0.029752492904663086, -0.35230714082717896, -0.43368303775787354, -0.3129272162914276, -0.49327096343040466, 0.21307982504367828, -0.07182144373655319, 0.7487191557884216, 0.8112719058990479, 0.1774783879518509, 1.232588529586792, 0.17736555635929108, -1.3974039554595947, 0.6881212592124939, -0.03045070916414261, -0.3418896198272705, -0.29510053992271423, -0.3669140040874481, -0.5875505208969116, -0.09110986441373825, 0.45267799496650696, -0.09544818103313446, -0.6881634593009949, -0.8081533312797546, 0.013602197170257568, -0.9952343702316284, 0.7465187907218933, 0.3273584842681885, 0.6339572668075562, 0.18035250902175903, 0.677344024181366, 0.5031765699386597, 0.3773674964904785, -0.5015382170677185, -0.11211210489273071, -0.02342192456126213, 0.023241275921463966, -0.026485418900847435, -1.2459872961044312, -0.6617780327796936, -0.37250879406929016, 1.063386082649231, 0.3682079017162323, 0.6277008056640625, 1.4678325653076172, 1.5031228065490723, 0.19538764655590057, -0.5692099332809448, -0.007794308941811323, -0.819538414478302, 0.3759081959724426, 1.032297134399414, -0.3687949776649475, -0.1899193674325943, -1.2197626829147339, -1.3401603698730469, 1.098844289779663, 0.07739760726690292, -1.2922999858856201, 0.03351924568414688, 0.3508945405483246, -0.020059019327163696, 0.8015850186347961, -0.5672829747200012, 0.8114063739776611, -0.10853715240955353, -0.6198859214782715, -0.4922374188899994, 0.5782638788223267, 0.38437941670417786, 0.6488455533981323, -0.9606549739837646, 0.4222724437713623, -0.41760191321372986, -0.3610277473926544, 0.5342822074890137, 0.5803540349006653, 0.9014454483985901, 0.7038854956626892, 0.18855084478855133, 0.26141858100891113, 0.06712663173675537, -1.230820655822754, -0.12806378304958344, -0.8696253895759583, 0.8138936161994934, -0.04636964201927185, 0.19408096373081207, 0.4537937641143799, -0.3340767025947571, -0.599882960319519, -0.3931436538696289, -0.24214564263820648, 0.7694333791732788, 0.7177976369857788, -0.0414360910654068, -0.3270924687385559, -1.1343812942504883, -0.32303357124328613, -0.598696231842041, -0.645254373550415, 1.257407784461975, -0.04564766213297844, 0.054255206137895584, -0.1151890903711319, -0.33683067560195923, 0.6045895218849182, -0.3096936345100403, 0.19577950239181519, -1.5537583827972412, -1.41496741771698, -1.5992432832717896, -0.03046598844230175, 0.36903467774391174, -0.4524988532066345, 0.739200234413147, 0.4643208682537079, -1.1201667785644531, 0.5094641447067261, 0.46918973326683044, -0.9422160983085632, 0.07505287230014801, -1.6070071458816528, 0.5400099754333496, 0.24923181533813477, 0.3516674041748047, -0.06070702150464058, 0.8285034894943237, -1.3337856531143188, -1.665724754333496, -0.11253193765878677, 0.8061877489089966, 0.9338968396186829, 0.5949644446372986, -1.1014726161956787, 1.3011555671691895, 0.37904998660087585, -0.49958112835884094, -0.566996157169342, -0.7322869300842285, -1.1083112955093384, 0.5084869265556335, 0.2525518238544464, 1.4679646492004395, 0.1197291910648346, 1.212135910987854, 0.10129808634519577, 0.29904797673225403, -0.21253077685832977, -0.008436620235443115, -0.4526248276233673, -0.13020087778568268, -0.25569039583206177, 0.807242751121521, -0.7600657939910889, 0.10462763160467148, -0.4484196901321411, -0.9301833510398865, -1.8847217559814453, 0.15699255466461182, 1.1100529432296753, -0.1265123188495636, 0.6664758324623108, 0.2180912047624588, 0.20313340425491333, -1.2425529956817627, -0.00946742482483387, 0.5701170563697815, -0.5040192008018494, -0.23623397946357727, -0.31406518816947937, 0.3398417830467224, -0.20160862803459167, -0.13100673258304596, 0.2456652671098709, 0.2657380998134613, -0.9109857678413391, 0.561719536781311, 0.6558454632759094, -0.49358513951301575, -0.036934178322553635, 1.6420644521713257, 0.9012852907180786, 0.32158201932907104, 0.0036926837638020515, 0.06758607178926468, 0.09133893251419067, 0.42766284942626953, -0.20123116672039032, -0.16064582765102386, 0.172105610370636, 0.41277772188186646, -0.04610600695014, -0.06292254477739334, -0.7289516925811768, -0.20645670592784882, -0.581472635269165, -0.20128493010997772, 0.9572990536689758, -0.31534942984580994, -0.7704252600669861, 0.6215980648994446, -0.422518253326416, -0.20224951207637787, 0.2735438048839569, -0.08787627518177032, -1.196318507194519, 0.09328562021255493, 1.0431530475616455, 0.4897930920124054, -0.5433120131492615, 0.6255139708518982, 0.786110520362854, 0.49365803599357605, 0.07156852632761002, -0.0437922403216362, -2.467313766479492, -0.05075838416814804, -0.6250775456428528, -0.7315633296966553, 1.534791350364685, -0.618178129196167, -0.9448035359382629, 0.24634398519992828, 0.6884818077087402, 0.04620639607310295, 0.5114060044288635, -0.16992081701755524, 0.048910561949014664, -0.2362285703420639, 0.16984006762504578, -0.6589578986167908, 1.3012967109680176, 0.32469815015792847, -0.3490069508552551, -0.10663639008998871, -0.08989717066287994, -0.06482726335525513, 0.09542687982320786, 0.11700110882520676, -0.5447932481765747, 1.1077008247375488, -0.05542979761958122, -1.0799744129180908, 0.16689547896385193, 0.4819898009300232, -0.196913480758667, 0.18493349850177765, -1.2146886587142944, 0.5676136612892151, 0.41591185331344604, 0.3473275303840637, -0.5465077757835388, -0.7777706384658813, -0.9255702495574951, 0.5153918266296387, -1.4222146272659302, 1.3278107643127441, -0.18140438199043274, 1.010912537574768, 0.9282466173171997, -0.5978580117225647, -0.35229799151420593, -0.232144296169281, 0.3290882706642151, 0.254734605550766, 0.2853945791721344, -0.31952977180480957, 0.12779895961284637, 0.19337265193462372, -1.4653526544570923, -0.015508739277720451, -0.5680603384971619, 0.2720169425010681, 0.15964071452617645, -1.4194520711898804, -0.4586980938911438, -0.49348413944244385, -0.03593114763498306, 0.357468843460083, -0.17335891723632812, 0.6534013748168945, 0.13013237714767456, -0.7359965443611145, -0.1928049921989441, 0.3270789384841919, 0.10482560098171234, 0.19117708504199982, 1.6565815210342407, 1.36981201171875, 0.742885172367096, 0.12908843159675598, -0.4639330804347992, 0.5531821250915527, -0.7260738611221313, -0.04404420778155327, -0.5663886070251465, -0.0654616728425026, 0.03749900683760643], [1.0813614130020142, 1.0741063356399536, -2.1841719150543213, -1.4675272703170776, 0.8159412741661072, 0.3631075322628021, -0.19747591018676758, -0.20683521032333374, -0.587999701499939, -0.6780514717102051, -1.1567304134368896, 0.6464138627052307, 0.9291284084320068, 1.2380560636520386, 0.5421227812767029, -0.27281978726387024, 1.2723808288574219, -0.47969314455986023, 0.03784271702170372, 0.6725338697433472, 0.4166320562362671, 0.3202784061431885, -0.4903111755847931, 0.5837584137916565, 0.19369807839393616, 0.6139256358146667, -0.642582356929779, -0.06509296596050262, -0.7319162487983704, -1.6024199724197388, 1.975630283355713, -0.8594670295715332, 0.44709983468055725, 0.015263880603015423, -1.723929762840271, -1.0971615314483643, 0.8217827081680298, 0.4027734696865082, -0.4661429226398468, 1.0263301134109497, 1.1983901262283325, 1.0937302112579346, -0.31987711787223816, -0.9660235643386841, 0.13466601073741913, -0.15696972608566284, -0.4835818111896515, -1.1299059391021729, 0.7776118516921997, -0.4000823497772217, 0.9855343103408813, -0.17568336427211761, 0.1605207920074463, 1.194329857826233, 0.35029366612434387, 0.9189924597740173, -0.022129356861114502, -0.30275610089302063, 0.9836482405662537, -1.036887526512146, 0.9964567422866821, -0.038186654448509216, -0.25842753052711487, 0.5780508518218994, 0.4039110243320465, -0.10671402513980865, 0.0916372761130333, 0.919195830821991, 0.05837177485227585, -0.8575305342674255, 0.9733405113220215, -0.016110321506857872, -0.509006679058075, 1.0424199104309082, -2.040363073348999, 1.203174114227295, 0.2903693914413452, 0.026021631434559822, 0.33537808060646057, 0.715050995349884, -1.07379150390625, -0.06601575016975403, 1.0004304647445679, -0.30367735028266907, 0.4659534692764282, 0.128080353140831, 0.33408987522125244, -0.9839301109313965, -0.3551345765590668, 1.144508719444275, 0.08235950022935867, -0.19944585859775543, 0.6718859076499939, -0.36878702044487, -0.09205997735261917, 0.0107608987018466, 0.4180353581905365, -0.20533429086208344, -0.5773025751113892, -0.7187678217887878, -0.44883549213409424, -0.6344443559646606, 0.1252790093421936, 0.7311960458755493, 0.5453882813453674, 1.1365212202072144, 0.1699099987745285, -0.6595519781112671, -0.563640296459198, 0.1977291852235794, 0.1854156255722046, -0.11302580684423447, -0.2917689383029938, -0.756749153137207, -0.4688706398010254, 0.001314481720328331, 0.3355778753757477, -0.41977426409721375, 1.002120018005371, 1.0791990756988525, -1.0682222843170166, -0.20695345103740692, -0.9641738533973694, 0.018639901652932167, 0.5650526285171509, 0.2512795031070709, -0.17688053846359253, -0.4336300492286682, 0.051704373210668564, 0.0788666158914566, -0.5909593105316162, 0.23260889947414398, -0.14474421739578247, 0.8977960348129272, -0.4841286540031433, 0.7297704815864563, 0.12657694518566132, -0.21835559606552124, 0.7253500819206238, -0.4550948143005371, 0.19933173060417175, -0.08563903719186783, -0.230721116065979, -0.7454130053520203, 0.33470281958580017, 0.03649264946579933, 0.22547708451747894, -0.12635768949985504, -0.7469847202301025, 0.3974056541919708, -0.22758357226848602, 0.6973578333854675, 0.1946399211883545, 0.7898253798484802, -0.6726595759391785, 0.2176247537136078, 0.16620241105556488, 0.02316204272210598, -0.47183850407600403, 0.3506545126438141, 0.23015743494033813, 0.14120593667030334, -1.0498907566070557, 1.0494871139526367, -0.13439638912677765, -0.33706584572792053, 0.07678960263729095, -0.5959458947181702, -0.8597829937934875, 0.4636602997779846, -1.0572388172149658, -0.5284690856933594, -0.17853227257728577, 0.8907692432403564, -0.16179153323173523, 0.15817007422447205, 1.0602972507476807, -1.4805961847305298, -0.7384172677993774, -0.9856827855110168, 0.4047899842262268, -0.9824933409690857, 0.3558770418167114, 0.11795094609260559, 0.5716996788978577, -0.38359346985816956, -0.15488676726818085, -0.192435160279274, 0.04737544432282448, -0.6211857795715332, -1.1909736394882202, 0.15877334773540497, -1.0737746953964233, 0.2720203995704651, 0.20187067985534668, -0.9577038288116455, 0.3492175340652466, -0.5028788447380066, -0.8516145348548889, 0.6306553483009338, -1.0322954654693604, 0.006870364770293236, -0.8937716484069824, -0.39701932668685913, -0.9716134667396545, -0.012151670642197132, -0.3063916862010956, 0.17752620577812195, -0.930140495300293, 0.08647636324167252, 0.8700321316719055, -0.3826391398906708, -0.5450615882873535, 0.6451791524887085, 0.39239302277565, -0.8097158670425415, 0.010231252759695053, 0.9658254981040955, 0.3506411910057068, -0.1838955283164978, 0.831416130065918, 0.45480796694755554, 1.0683825016021729, 0.06836335361003876, 0.024680670350790024, 0.05335491895675659, -1.3405282497406006, -0.5546320080757141, -0.8474419116973877, -0.32934755086898804, -0.4415495693683624, -1.3021224737167358, 0.5718527436256409, 0.8082979917526245, -0.7893651723861694, 0.3964182138442993, -0.30456769466400146, -0.1057780310511589, 0.20203152298927307, 1.1070342063903809, 0.3145109713077545, 0.012166363187134266, -0.6751025915145874, -0.2642221748828888, -0.5824649930000305, 0.3680807948112488, 0.14475680887699127, -0.1753993034362793, -0.10025208443403244, 1.5829523801803589, 0.25835156440734863, -0.3146895170211792, 0.31012552976608276, 0.07542643696069717, 0.3396758437156677, -0.9497696757316589, -0.7071757316589355, 0.43091362714767456, -1.0912877321243286, 0.5262851715087891, 0.465921550989151, -1.7349268198013306, -0.2802334129810333, -0.3536323010921478, -0.17066062986850739, -1.0774505138397217, -0.584027111530304, 0.03667007014155388, 0.306011438369751, -0.5971218943595886, -0.2631906270980835, -0.16008485853672028, -0.06551232188940048, 0.6910786628723145, -0.5969478487968445, -0.3584210276603699, -0.09321989119052887, 0.167107492685318, -0.14737334847450256, 0.4107198417186737, -0.29176267981529236, -1.0246444940567017, -0.23374919593334198, 0.27535462379455566, 0.3367144465446472, -0.1581258326768875, -0.33842799067497253, 0.6036367416381836, 0.4864028990268707, -0.2502608001232147, -0.04586820304393768, 0.059108931571245193, -0.14343073964118958, 0.06884395331144333, 0.6542330384254456, 0.7495844960212708, 0.6178498268127441, 0.1411316841840744, -0.5232410430908203, -0.8497293591499329, 1.3338347673416138, 0.44941893219947815, 0.9053336977958679, 1.4192885160446167, 0.03960263356566429, 0.17308972775936127, -1.3267189264297485, -0.3095510005950928, -0.027507971972227097, -0.8009650707244873, -0.01929321140050888, -0.5199321508407593, 0.0054494584910571575, -0.3512580990791321, -0.014555512927472591, 1.4245193004608154, 0.5093806385993958, 0.6468501091003418, 0.47326138615608215, 0.16855891048908234, -1.2294894456863403, -0.6397153735160828, 0.6765874028205872, -1.1840697526931763, 0.6563746333122253, 0.9361791610717773, -1.0289682149887085, 0.4468483328819275, -1.0999705791473389, -0.11295420676469803, 0.922295331954956, -0.26069921255111694, 0.47554895281791687, -1.0913548469543457, -0.9754443764686584, 0.155738964676857, -0.03270484879612923, 0.43264687061309814, -0.14452214539051056, -0.5306427478790283, 0.39470374584198, 0.5959537029266357, 0.513817548751831, 0.20561055839061737, 0.8536243438720703, -0.3534833788871765, -0.8656007051467896, -0.27502572536468506, 0.7629597187042236, 0.710984468460083, -0.2025994211435318, -0.17984241247177124, -0.34973278641700745, 0.05076112598180771, -0.2694862186908722, 0.7479724884033203, 0.4575484097003937, 0.5143636465072632, 0.4662708640098572, -0.0692678913474083, 0.7169044017791748, -0.1760767549276352, 0.7955005764961243, -1.2322579622268677, 0.4612897038459778, -0.037373606115579605, 1.0534319877624512, 0.08408001810312271, -0.16143739223480225, 0.276845246553421, -0.9990934133529663, 0.4597824811935425, -0.23010586202144623, 0.44805455207824707, 0.02719867043197155, -0.7236944437026978, -0.6393250823020935, -0.17578470706939697, -0.607008695602417, 0.0076480433344841, 0.048773542046546936, -0.30693304538726807, -0.26892971992492676, -1.047514796257019, 1.2568669319152832, 0.2256249338388443, -0.5998278260231018, -0.0044365739449858665, -0.6561869382858276, 0.7138395309448242, -0.3743663728237152, -0.1141929179430008, -0.5055372714996338, -0.05206197872757912, 0.5423229932785034, -1.4535250663757324, -0.6657407879829407, 0.059467609971761703, 0.1174069195985794, -0.3199709951877594, -1.0843608379364014, -0.06733211874961853, 0.2711176574230194, 0.07707862555980682, 0.16739563643932343, 0.15539056062698364, 0.5946862101554871, 0.1787879914045334, 0.07765724509954453, -0.18732793629169464, 0.11349987983703613, 1.10682213306427, -0.4287584125995636, 0.010370587930083275, -0.5388678312301636, -0.5335487723350525, -0.04185974597930908, -0.5516353249549866, 0.31210780143737793, -0.004624612629413605, -0.4551680386066437, 0.10866626352071762, 0.19746184349060059, -0.35386645793914795, 0.8314235210418701, 1.1275944709777832, -0.2336329221725464, 1.2070462703704834, -0.3076385259628296, -0.9987184405326843, 0.7329217195510864, 0.040166135877370834, 0.586833119392395, 0.1984356939792633, 0.04313627630472183, 0.15625235438346863, 0.1547696739435196, 0.6680788397789001, -0.1776355803012848, 0.8295182585716248, 0.29838135838508606, -0.6346609592437744, 0.43684154748916626, 0.24368013441562653, 0.8906379342079163, 1.3114484548568726, 0.34372371435165405, -0.1081017479300499, -0.6161530017852783, 0.857986330986023, 0.06736402958631516, 0.5672180652618408, 0.5790196061134338, 0.4995622932910919, 1.634885311126709, -0.9756720662117004, -0.08811018615961075, 0.3425874710083008, 0.7874347567558289, 0.2916778326034546, 0.48445212841033936, 0.35200798511505127, -0.7221890091896057, 0.6639329791069031, 0.2955537438392639, -0.02918889746069908, 0.20322570204734802, -0.14006567001342773, 0.11328473687171936, 1.1374183893203735, -0.7540345191955566, 0.24061782658100128, 0.22477968037128448, -0.4793075621128082, -0.4162624180316925, 0.26760658621788025, -0.3267305791378021, 0.7393409013748169, -0.06172637641429901, 0.4750202000141144, -0.5454245805740356, -0.5412189364433289, 0.2589989900588989, -0.9903204441070557, 0.43715327978134155, 0.7335132956504822, -1.0199662446975708, -0.5013460516929626, -0.790751576423645, 0.2168796956539154, 0.14159992337226868, -0.4668946862220764, 0.3149414658546448, 0.1897895634174347, -1.1791391372680664, -0.7246169447898865, 0.25115346908569336, 0.29202088713645935, 0.014515450224280357, 0.7848364114761353, 0.8120538592338562, 0.4857115149497986, 0.11876481771469116, 0.5974854230880737, -0.5029386281967163, -0.5511078238487244, 0.38217639923095703, -1.010048747062683, -1.3324649333953857, 0.5570365190505981, 0.6946753263473511, 0.3456868529319763, -0.7698874473571777, 1.260128378868103, 1.796591877937317, -0.7464837431907654, -0.6243771910667419, 0.5204706192016602, -0.33475515246391296, 0.2457306981086731, 0.04396125674247742, -0.5149611234664917, -0.07007484138011932, 0.08581827580928802, -1.4236066341400146, 0.8543826341629028, -0.37206563353538513, -0.9211243391036987, 0.014622525312006474, 0.34571143984794617, 0.7104598879814148, 0.7538201808929443, -0.6455368399620056, 0.5373032689094543, 0.9251338839530945, -0.9453825950622559, -0.9009761810302734, -0.33225908875465393, 0.5550894737243652, 0.7945215702056885, -0.8264460563659668, -0.037114303559064865, -0.23280872404575348, 0.3881952464580536, 0.8001591563224792, 0.6474478244781494, 0.503263533115387, 0.7401400208473206, 0.542378842830658, -1.0879045724868774, -0.3066330552101135, -1.0839139223098755, -0.05915485695004463, 0.1470436155796051, 0.6009569764137268, -0.5775323510169983, -0.19295665621757507, 0.24928230047225952, -0.6350382566452026, -0.1260221153497696, -0.38561543822288513, -0.2763810157775879, 1.0442700386047363, 0.41743984818458557, -0.876121997833252, -0.09316282719373703, -0.1940286010503769, -0.5292131900787354, 0.28462982177734375, -0.46306002140045166, 1.242773175239563, -0.9187269806861877, -0.15822936594486237, 0.1040857657790184, 0.2522019147872925, 0.10817509144544601, 0.13666988909244537, 0.32024651765823364, -0.8330974578857422, -1.6347957849502563, -0.43290528655052185, 0.48647212982177734, 0.6661540865898132, -0.6550412178039551, 0.16953641176223755, 0.53469318151474, -1.5644536018371582, 0.12370231747627258, 0.32055947184562683, -1.0335259437561035, 0.5517011880874634, -0.8280289769172668, 0.5615845322608948, 1.0647259950637817, -0.2794307768344879, 0.15294364094734192, 0.3690865635871887, -0.7064782977104187, -0.4982229471206665, -0.7317252159118652, 0.2604093551635742, 0.7113211750984192, 1.3601619005203247, -0.7880261540412903, 0.8780643343925476, -0.5427061319351196, -0.009807745926082134, 0.5209366679191589, 0.2785959243774414, -0.8886798024177551, -0.16347822546958923, 0.8216776847839355, 0.2569761872291565, -0.12315564602613449, 1.3240946531295776, -0.46443459391593933, 0.7752653956413269, -0.13267500698566437, -0.7415505051612854, -0.1682075411081314, 0.414010226726532, -1.1462032794952393, -0.35164350271224976, -0.797003448009491, -0.6553479433059692, 0.03100016340613365, -0.5281221270561218, -0.6573691368103027, 0.30630257725715637, 0.6566860675811768, -0.5102803111076355, 0.2214348316192627, 0.2970084547996521, -0.5481704473495483, -0.43709418177604675, 0.7727190256118774, -0.47851791977882385, 0.16756638884544373, 0.15359258651733398, -0.660905659198761, 0.40732207894325256, -0.8744989633560181, 0.023588092997670174, 0.1606137901544571, -0.12304449826478958, -0.2538200914859772, 0.6153250932693481, 0.8034124374389648, -0.12115959078073502, -0.5225114226341248, 1.4935259819030762, 1.2491228580474854, -0.10663717240095139, 0.3078490197658539, 0.06873442232608795, -0.27081942558288574, 0.37711772322654724, -0.44475460052490234, -0.8676738739013672, -0.367876261472702, 1.0018415451049805, -0.20371009409427643, -0.08116047829389572, -0.29030510783195496, 0.05126534029841423, -0.41510435938835144, 0.3043607473373413, -0.05724112316966057, -0.10949564725160599, -0.10761695355176926, 0.6145375370979309, 0.10368804633617401, -0.5826621055603027, -0.17236469686031342, 0.11674421280622482, 0.44277530908584595, 0.4139416515827179, 0.018705526366829872, -0.11299854516983032, 0.028990011662244797, 0.7463400363922119, 0.2299705147743225, -0.4016343653202057, 0.28993669152259827, -0.41236749291419983, -1.3489282131195068, -0.003883674740791321, -0.7062160968780518, -0.9122022390365601, 0.5996055603027344, -0.926272451877594, -0.5935683846473694, 0.6197908520698547, -0.023318592458963394, 0.5238885879516602, -0.6311811804771423, 0.1867179572582245, 1.0644103288650513, 0.06051301956176758, 1.5966756343841553, 0.08302832394838333, 0.6307662129402161, 0.7206422686576843, -0.07853754609823227, -0.4048343300819397, -0.8572415709495544, 0.0810447633266449, 0.05995189771056175, 0.04916638135910034, -0.35418736934661865, 0.12588471174240112, -0.09162283688783646, -0.7866196036338806, 0.5175307989120483, 0.559604287147522, 0.2019050121307373, 0.030816011130809784, -1.2185744047164917, 0.32723408937454224, 0.5332979559898376, 0.20379705727100372, -0.868879497051239, -0.17256397008895874, -0.7193610072135925, 0.17695900797843933, 0.20336955785751343, 0.9804989099502563, -0.2934819459915161, 0.6885631680488586, -0.095285564661026, 0.2733718454837799, -0.4362742006778717, -0.4069138765335083, 0.5374575853347778, -0.1653146892786026, 0.26206082105636597, -0.5011754631996155, 0.1918250024318695, -0.41812416911125183, -1.1028636693954468, -0.3362465798854828, 0.42498451471328735, 0.3095274865627289, -0.35795024037361145, -0.4864918887615204, -1.0523381233215332, -0.5996405482292175, 0.7823271155357361, 0.08434851467609406, -0.1015748605132103, 0.8237066864967346, -0.5629622340202332, -0.8102506399154663, 0.7843004465103149, 0.039746079593896866, 0.21244026720523834, 0.29883909225463867, 1.2656272649765015, 1.557538390159607, -0.19318769872188568, 0.2088930606842041, 0.0942218154668808, 0.6467500329017639, -0.7583659887313843, -0.009740293957293034, -0.3740827739238739, 0.8573700785636902, 0.547469973564148], [-0.10803024470806122, 0.3472050130367279, -1.3867559432983398, -1.0013949871063232, 1.597456455230713, -0.9298052191734314, -0.07315647602081299, 0.670966625213623, -0.02409428358078003, 1.162136197090149, -0.25997188687324524, -0.428402304649353, 1.1951543092727661, 0.27344009280204773, 0.7517148852348328, 0.2237693965435028, 1.0960416793823242, 0.045416008681058884, 0.8402508497238159, 0.032512959092855453, -1.4627599716186523, -0.25145280361175537, 0.33117493987083435, 0.32764098048210144, 0.8005227446556091, 0.6139127016067505, -1.2237861156463623, -0.6302927732467651, -1.1066983938217163, -0.8774165511131287, 1.8914517164230347, 0.31684213876724243, -0.797657310962677, -0.9355025291442871, -0.18468111753463745, 0.4271642863750458, 0.7029919028282166, 0.9825591444969177, -0.7912851572036743, 0.8743581175804138, 1.2341363430023193, 1.087899923324585, -0.1871500313282013, -1.7027710676193237, 1.2393203973770142, -0.16143344342708588, 0.987328052520752, -0.4130585789680481, -0.1285114288330078, -0.21157395839691162, 0.12782572209835052, -0.677768886089325, 0.8478555679321289, 0.2959447503089905, 0.6093969941139221, 0.4559969902038574, -0.17566904425621033, -0.8530757427215576, -0.20257999002933502, 0.43130412697792053, 0.7510742545127869, -0.18099752068519592, -1.038081169128418, 0.5232135653495789, -0.6781173348426819, 0.3314359188079834, -0.12061654776334763, 0.38847675919532776, 0.6336339116096497, -0.03308701515197754, 0.8279466032981873, -0.19248992204666138, -0.23073026537895203, 0.8539828062057495, -0.5214794874191284, 0.29605498909950256, 0.4560015797615051, 0.2997639775276184, 0.3916066884994507, 0.2062450796365738, 0.04434359446167946, -0.10835348814725876, 1.119847059249878, -0.004892975091934204, 0.021995991468429565, 0.40838557481765747, 0.6405155658721924, 0.06745569407939911, -0.1323028802871704, 1.5190749168395996, 1.1403635740280151, 0.31906571984291077, 0.0850621908903122, -0.31419190764427185, 0.7196909189224243, 0.934873640537262, 0.23313365876674652, -0.3400534689426422, -0.4114414155483246, -0.7424763441085815, -1.087171196937561, 0.09090027213096619, 0.30901846289634705, -0.02343606948852539, 0.6793044209480286, 0.8344632983207703, 1.0579661130905151, 0.35417455434799194, -0.4751330614089966, -0.9962804913520813, -1.2223002910614014, 0.1255398690700531, -0.580774188041687, -1.1209951639175415, 0.5541894435882568, -0.10253670811653137, 1.1018993854522705, -0.8175908327102661, -0.8393580913543701, 1.0135090351104736, -1.041237235069275, 0.30930832028388977, 0.6970286965370178, 0.8312110900878906, -0.21631433069705963, 0.19453319907188416, -0.20531730353832245, -0.49589356780052185, -0.3795388340950012, -0.9301047325134277, -0.4772548973560333, 0.31446051597595215, 0.508152425289154, 0.13378335535526276, -0.4649444818496704, -0.09066445380449295, -0.5127943158149719, -0.9644066095352173, 0.18074935674667358, -0.004287809133529663, 0.2758325934410095, -0.10123162716627121, -0.32641950249671936, -0.19916968047618866, 0.5300227403640747, 0.20608378946781158, -0.7564029097557068, -0.32194003462791443, -0.29341816902160645, -0.12263057380914688, -0.3718603253364563, 0.1592249572277069, 0.004845976829528809, 1.048187494277954, -0.4284549653530121, -0.6035504341125488, 0.1439710259437561, -0.2281244546175003, -0.15008284151554108, 1.418912410736084, 0.061906810849905014, -0.13941870629787445, -1.5027809143066406, 1.227439522743225, -0.1446765959262848, -0.24108053743839264, 0.835880696773529, -0.0783153623342514, 0.8295822739601135, 0.8171297907829285, -0.8301950693130493, -0.7563303709030151, -0.2328103929758072, 0.5695480704307556, 0.49576178193092346, -0.7093603610992432, 0.7952898144721985, -0.4276755750179291, -0.11777149140834808, -0.41711148619651794, 0.11977604776620865, -0.3495883345603943, 0.577532172203064, 0.1645776480436325, 0.31180521845817566, -0.9853636622428894, 0.2787514626979828, -0.47743678092956543, -0.9081305861473083, -0.08306695520877838, -1.1159409284591675, 0.3445168435573578, -0.6131823658943176, -0.7001240253448486, -0.566990077495575, -0.13600283861160278, 0.7037816643714905, -0.2077304720878601, -0.1053411066532135, -0.5840564966201782, -0.8611083030700684, -0.22133010625839233, -0.5301491022109985, 0.4884866774082184, -0.37121158838272095, 0.4952692687511444, 0.4311913847923279, 0.10725952684879303, -0.6107922792434692, 0.0817239060997963, 0.20438000559806824, -0.1393672078847885, -0.5135073661804199, 0.2583111822605133, -0.062386274337768555, -0.13647353649139404, 0.6852321028709412, -0.16389989852905273, -0.6137983202934265, 0.6341509819030762, 1.0939406156539917, 1.6805838346481323, -0.04644421488046646, -0.344537615776062, -0.17365853488445282, -0.5476399660110474, -0.09951228648424149, -0.782417893409729, 0.5139321088790894, -0.2100631445646286, -0.0710923820734024, -1.5859142541885376, 1.669706106185913, 1.4387277364730835, -1.5188862085342407, -0.8924114108085632, 0.08964221924543381, -0.018279075622558594, -0.19009041786193848, 1.1682825088500977, 0.3288600444793701, 0.1601848006248474, -0.12376569956541061, -0.6145402789115906, -0.6880741715431213, 0.9324814081192017, 1.469198226928711, -0.4112758934497833, 0.37340256571769714, 0.9598979949951172, 0.5274423956871033, -0.15003298223018646, 1.1312400102615356, -0.09333601593971252, -0.12068314105272293, -0.03840792924165726, 0.2465018481016159, -0.20960062742233276, 0.2974281311035156, 0.5298264622688293, 0.5835583209991455, -0.9906521439552307, -0.9484879970550537, 0.21777822077274323, 0.0254561435431242, -0.75403892993927, 0.1018078476190567, -0.22791935503482819, -0.24258260428905487, 0.5588608384132385, 0.21585221588611603, 0.7124587893486023, -0.2448360174894333, 0.15188264846801758, -0.34520140290260315, 0.284130722284317, -0.5874291062355042, -0.30000990629196167, -0.937060534954071, 0.36757171154022217, -0.45807528495788574, -0.20937035977840424, 0.46456268429756165, 0.4449232220649719, 0.6422581672668457, 0.39152792096138, -0.18159794807434082, 0.8298996090888977, 0.8346670866012573, -0.7169370651245117, 0.18017007410526276, 0.7596414089202881, 0.2598196566104889, 0.39794689416885376, 0.5770818591117859, 0.5851110816001892, 0.9602938890457153, -0.8371198177337646, -0.8645694255828857, -0.14600561559200287, 0.5043753385543823, 0.6762139797210693, 0.7445847392082214, 1.5692627429962158, 0.14670535922050476, 0.4047843813896179, -0.29955318570137024, -0.09197773039340973, 1.0923916101455688, -0.5498515963554382, -1.36883544921875, -0.6297406554222107, -0.8030728101730347, -0.1632879674434662, 0.5927854776382446, 0.7269213199615479, -0.32691100239753723, -0.4764820337295532, 0.14436523616313934, -0.5516148209571838, 0.6247249245643616, -0.3464924395084381, -0.42349350452423096, -0.30280688405036926, -0.02068115770816803, 1.09135103225708, -0.7689036130905151, -0.5663332343101501, 0.25942811369895935, -0.5830487012863159, 0.42803776264190674, -0.13617528975009918, 1.901279330253601, -0.3088757395744324, -1.134390950202942, -0.5900744795799255, 0.007220372557640076, 0.8615641593933105, 0.1216689720749855, 0.2357373684644699, -0.018059812486171722, 0.009683946147561073, -0.4080376625061035, -0.7963724732398987, 0.660847544670105, -0.7014608383178711, -0.16184931993484497, -0.10381872951984406, -0.01162794791162014, -0.4838868975639343, -1.1347792148590088, -0.1396559476852417, -0.09749042987823486, -0.4805760085582733, 0.3536263704299927, 0.6989927887916565, -0.16909857094287872, 1.1401946544647217, 0.18073225021362305, -0.4693087339401245, -0.3614281415939331, -0.6893006563186646, -0.6359832286834717, -0.5466911196708679, 1.3625342845916748, 0.7433173060417175, 0.6102838516235352, 0.48529496788978577, 0.34583529829978943, 0.19923223555088043, -0.5845617055892944, -0.3508816957473755, 0.6784693002700806, -0.006585713475942612, -0.1406848132610321, -1.2645795345306396, -0.45277974009513855, -0.11556418240070343, -0.06510362029075623, 0.27387356758117676, 0.16908438503742218, 0.020812075585126877, -0.5640627145767212, 0.022693052887916565, 1.2461168766021729, 0.500819206237793, 0.2285609096288681, -0.4283369779586792, -0.33665144443511963, -0.1810532808303833, -0.34758260846138, 0.573769211769104, -0.5749596357345581, 0.16750460863113403, 0.38593217730522156, -0.02518557570874691, 0.041769180446863174, 0.8056637644767761, -0.2945050299167633, 0.3334181606769562, -1.4116766452789307, -1.1895209550857544, -0.16609348356723785, 0.8111449480056763, 0.019099289551377296, -0.34159716963768005, -0.17293289303779602, -0.4130823612213135, -0.10700157284736633, 0.22056472301483154, -0.16766734421253204, -0.29756227135658264, 0.5098986625671387, -0.23096773028373718, 0.10106872022151947, 1.4043045043945312, 0.4767838418483734, -0.31594058871269226, -0.18595068156719208, 0.3989467918872833, 0.8094147443771362, -1.0115687847137451, -0.2544604539871216, -0.31360602378845215, 0.8565862774848938, 0.23601314425468445, 0.3279257118701935, 0.7347729206085205, 0.6132856607437134, -0.6900837421417236, 0.8119152784347534, 0.6085273027420044, 0.36015966534614563, 0.48074325919151306, -0.20505790412425995, 0.18329574167728424, -0.5554497838020325, -0.11281408369541168, -0.4467746317386627, -0.6314408779144287, -0.23607119917869568, -0.26331520080566406, -1.0279309749603271, -0.25221943855285645, 0.5086572170257568, 0.8471421599388123, -0.08767980337142944, -0.32045501470565796, -0.9631993770599365, 0.5875962972640991, 0.4680434763431549, -0.5377574563026428, 0.2504006028175354, 0.7213531732559204, 1.5051029920578003, -0.45662081241607666, 0.12625201046466827, -0.44876301288604736, 0.07496130466461182, -0.18367940187454224, 0.5839053988456726, 0.360278457403183, -1.048757553100586, 0.351622611284256, -0.5274584293365479, -0.28545212745666504, 0.13164283335208893, 0.7956319451332092, 1.0031068325042725, 0.466185986995697, -0.5337311625480652, 0.13855229318141937, -0.5219939351081848, -0.8297187089920044, -0.7594203352928162, 0.10916180163621902, 0.10970363765954971, 0.33899372816085815, 0.004117108881473541, 1.5897804498672485, -0.6602464318275452, -0.42971935868263245, 0.2793000042438507, -1.254390001296997, 0.23390929400920868, -0.30011221766471863, 0.7180382013320923, -0.12662529945373535, -0.5441002249717712, 0.24227750301361084, -0.4176989197731018, 0.4496128261089325, 0.1916390210390091, 0.4658207893371582, -0.1689179390668869, -0.24575510621070862, 0.5418820977210999, 0.8739117383956909, -0.16664887964725494, -0.027964450418949127, 0.5665596723556519, 1.1837794780731201, -0.09069569408893585, -0.10395780950784683, 0.19623081386089325, 0.17178572714328766, 0.4461663067340851, 0.04133104532957077, -0.8000134825706482, -0.031742535531520844, -0.6163975596427917, -0.8058049082756042, 0.17490467429161072, 0.717471182346344, 0.7233355641365051, -0.4856531023979187, 0.632508397102356, 0.5897984504699707, -0.6401344537734985, 0.2410484105348587, 0.3017038404941559, -0.04607916623353958, 0.11550198495388031, -0.33801504969596863, -1.3354641199111938, 1.4978643655776978, -0.06191682070493698, -0.982734203338623, 0.5058057308197021, 0.30719244480133057, -0.6410292387008667, -0.043716058135032654, -0.8053435683250427, -0.442647248506546, 1.2412723302841187, -0.8722198009490967, -0.9928833842277527, 0.04996838793158531, -0.4664388597011566, 0.585377037525177, -0.7189899682998657, -0.7318633198738098, 0.10542716830968857, 0.6384883522987366, -1.7885401248931885, 0.052639249712228775, -0.09192822873592377, 0.19713804125785828, -0.29576823115348816, 0.2595024108886719, -0.6278185844421387, -0.4125734865665436, -0.4372769892215729, -0.4459678530693054, 0.5474146604537964, -1.0708118677139282, 0.8697524666786194, -0.20798033475875854, 0.023504897952079773, -0.5528010725975037, 0.7056105732917786, -0.26030027866363525, 0.5171338319778442, 0.6855929493904114, -1.3402472734451294, -0.0017471984028816223, 0.3290405869483948, -1.1069139242172241, 0.24133458733558655, 0.511512815952301, 0.2915850579738617, -2.298755645751953, -1.3598226308822632, -0.7677887082099915, 0.4114227890968323, 0.10521525889635086, -0.1108708381652832, 0.08725932985544205, -1.1668559312820435, -1.1268017292022705, -0.5264861583709717, -0.8325028419494629, 0.12818565964698792, 0.8102801442146301, -0.2851441502571106, -0.16373063623905182, -1.1708650588989258, 0.0057720765471458435, -0.0043027363717556, -0.5300033092498779, -0.27697303891181946, -0.8213955760002136, 0.9634449481964111, -0.27715325355529785, 0.9984115958213806, 0.25654736161231995, 0.9573509693145752, -0.18832166492938995, -1.783003330230713, 0.3052951693534851, -0.5018310546875, -0.16634772717952728, 0.36969688534736633, -1.5886564254760742, 0.6805827021598816, -0.35975757241249084, -0.8461042046546936, -0.47136980295181274, 0.5099180340766907, 0.10350655019283295, -0.30822500586509705, 0.1516025960445404, 0.0456978976726532, -0.276780366897583, 0.9917379021644592, 0.05157153308391571, 0.8071220517158508, 0.07118123024702072, 1.0369011163711548, -0.44194626808166504, 0.4902377426624298, -1.2149174213409424, 0.1666260063648224, -1.13372802734375, -0.732029378414154, -0.17003370821475983, -1.233503818511963, -0.1690937578678131, -0.39434051513671875, 0.5694332718849182, -0.21675308048725128, -0.03621402382850647, -0.5672090649604797, -1.2369126081466675, -0.38411441445350647, 0.13190169632434845, -0.3846810460090637, 0.3536974787712097, -0.14243756234645844, 0.042104944586753845, -0.36129042506217957, -0.9234910607337952, -0.3988179862499237, 0.39144983887672424, -0.34933996200561523, -0.7392917275428772, 1.0006052255630493, 0.5835909247398376, 0.2329438328742981, -0.5307384729385376, 0.765368640422821, 1.348490595817566, 0.43578729033470154, -0.09257323294878006, -0.10438999533653259, 0.47601422667503357, 0.6774281859397888, 0.03192742168903351, 0.4607701897621155, -0.14827267825603485, 0.8311569094657898, -0.4158247709274292, -0.7263569831848145, -0.6198006868362427, -0.9136744737625122, 0.48752471804618835, 0.3523443639278412, 0.168767511844635, -0.4492863714694977, 0.23201411962509155, 0.918898344039917, 0.4935806393623352, 0.4994943141937256, -0.03224553167819977, 0.33522164821624756, -0.10162080079317093, 0.338957816362381, 0.4597085416316986, 0.6562201380729675, -0.3718439042568207, 0.32924535870552063, 0.24204391241073608, 0.28452107310295105, -0.3704371154308319, -0.05397750437259674, -1.4487426280975342, -0.07088515907526016, -1.0959362983703613, 0.18680298328399658, 0.44731706380844116, -1.1950945854187012, -0.6476463079452515, -0.7034520506858826, -0.21060946583747864, 0.3325422704219818, 0.37415555119514465, -0.4448671042919159, 0.804550290107727, -0.10209913551807404, 0.36941659450531006, 0.08681356906890869, 0.5478684306144714, -0.15338967740535736, -0.17251597344875336, -0.0783483162522316, -1.170065999031067, 0.4873584508895874, -0.12334025651216507, 0.5293481945991516, -0.7621291279792786, -0.3377223312854767, -0.23052777349948883, -0.7775793671607971, 1.43929123878479, 1.7442326545715332, 0.45273178815841675, -0.5062747597694397, 0.23287178575992584, -0.07881148159503937, 0.8158915042877197, 1.6476668119430542, -0.4998853802680969, -0.3804246783256531, -1.17522394657135, 0.2981271743774414, -0.9635002017021179, 0.32361164689064026, -0.03217312693595886, 1.3228858709335327, -0.056430649012327194, 0.8136886954307556, -0.09308073669672012, -0.7304412722587585, -0.3456195592880249, -0.25690367817878723, 0.7528963088989258, -1.4077025651931763, -0.43597012758255005, 0.5651123523712158, -0.6947013735771179, 0.8877063393592834, -0.23391039669513702, 0.6159376502037048, 0.20393827557563782, -0.10710039734840393, -0.6595228910446167, -1.300212025642395, -0.6338443756103516, 0.37607112526893616, 0.1107223704457283, 0.6898693442344666, -0.9123657941818237, -0.48099485039711, 0.13577139377593994, -0.2159823179244995, 0.09535093605518341, 0.32347390055656433, 1.0419667959213257, 1.0428240299224854, 1.0116685628890991, 0.151570662856102, -0.9761862754821777, 1.0560622215270996, -0.0707591325044632, -0.13335853815078735, 0.06970356404781342, -0.5406243801116943, 0.5455614924430847]], node_map={'5aca51fd-22c4-45c3-b7b3-50ed488de038': Node(page_content='How to Do Great Work\\n\\nJuly 2023\\n\\nIf you collected lists of techniques for doing great work in a lot of different fields, what would the intersection look like? I decided to find out by making it.\\n\\nPartly my goal was to create a guide that could be used by someone working in any field. But I was also curious about the shape of the intersection. And one thing this exercise shows is that it does have a definite shape; it\\'s not just a point labelled \"work hard.\"\\n\\nThe following recipe assumes you\\'re very ambitious.\\n\\nThe first step is to decide what to work on. The work you choose needs to have three qualities: it has to be something you have a natural aptitude for, that you have a deep interest in, and that offers scope to do great work.\\n\\nIn practice you don\\'t have to worry much about the third criterion. Ambitious people are if anything already too conservative about it. So all you need to do is find something you have an aptitude for and great interest in. [1]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5aca51fd-22c4-45c3-b7b3-50ed488de038'), 'ea8d692d-2d93-41a6-b814-721f8a0eba80': Node(page_content='That sounds straightforward, but it\\'s often quite difficult. When you\\'re young you don\\'t know what you\\'re good at or what different kinds of work are like. Some kinds of work you end up doing may not even exist yet. So while some people know what they want to do at 14, most have to figure it out.\\n\\nThe way to figure out what to work on is by working. If you\\'re not sure what to work on, guess. But pick something and get going. You\\'ll probably guess wrong some of the time, but that\\'s fine. It\\'s good to know about multiple things; some of the biggest discoveries come from noticing connections between different fields.\\n\\nDevelop a habit of working on your own projects. Don\\'t let \"work\" mean something other people tell you to do. If you do manage to do great work one day, it will probably be on a project of your own. It may be within some bigger project, but you\\'ll be driving your part of it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ea8d692d-2d93-41a6-b814-721f8a0eba80'), 'defa86f2-201a-493b-9e51-4c52b6d22f82': Node(page_content=\"What should your projects be? Whatever seems to you excitingly ambitious. As you grow older and your taste in projects evolves, exciting and important will converge. At 7 it may seem excitingly ambitious to build huge things out of Lego, then at 14 to teach yourself calculus, till at 21 you're starting to explore unanswered questions in physics. But always preserve excitingness.\\n\\nThere's a kind of excited curiosity that's both the engine and the rudder of great work. It will not only drive you, but if you let it have its way, will also show you what to work on.\\n\\nWhat are you excessively curious about — curious to a degree that would bore most other people? That's what you're looking for.\\n\\nOnce you've found something you're excessively interested in, the next step is to learn enough about it to get you to one of the frontiers of knowledge. Knowledge expands fractally, and from a distance its edges look smooth, but once you learn enough to get close to one, they turn out to be full of gaps.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='defa86f2-201a-493b-9e51-4c52b6d22f82'), '7a41dd22-0f90-4920-9659-427308ab5374': Node(page_content=\"The next step is to notice them. This takes some skill, because your brain wants to ignore such gaps in order to make a simpler model of the world. Many discoveries have come from asking questions about things that everyone else took for granted. [2]\\n\\nIf the answers seem strange, so much the better. Great work often has a tincture of strangeness. You see this from painting to math. It would be affected to try to manufacture it, but if it appears, embrace it.\\n\\nBoldly chase outlier ideas, even if other people aren't interested in them — in fact, especially if they aren't. If you're excited about some possibility that everyone else ignores, and you have enough expertise to say precisely what they're all overlooking, that's as good a bet as you'll find. [3]\\n\\nFour steps: choose a field, learn enough to get to the frontier, notice gaps, explore promising ones. This is how practically everyone who's done great work has done it, from painters to physicists.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7a41dd22-0f90-4920-9659-427308ab5374'), 'fbe6561c-75ae-48bf-8f1e-285cae90085e': Node(page_content=\"Steps two and four will require hard work. It may not be possible to prove that you have to work hard to do great things, but the empirical evidence is on the scale of the evidence for mortality. That's why it's essential to work on something you're deeply interested in. Interest will drive you to work harder than mere diligence ever could.\\n\\nThe three most powerful motives are curiosity, delight, and the desire to do something impressive. Sometimes they converge, and that combination is the most powerful of all.\\n\\nThe big prize is to discover a new fractal bud. You notice a crack in the surface of knowledge, pry it open, and there's a whole world inside.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='fbe6561c-75ae-48bf-8f1e-285cae90085e'), 'e1a13047-9806-4639-a2a6-9404cfd2b86b': Node(page_content=\"Let's talk a little more about the complicated business of figuring out what to work on. The main reason it's hard is that you can't tell what most kinds of work are like except by doing them. Which means the four steps overlap: you may have to work at something for years before you know how much you like it or how good you are at it. And in the meantime you're not doing, and thus not learning about, most other kinds of work. So in the worst case you choose late based on very incomplete information. [4]\\n\\nThe nature of ambition exacerbates this problem. Ambition comes in two forms, one that precedes interest in the subject and one that grows out of it. Most people who do great work have a mix, and the more you have of the former, the harder it will be to decide what to do.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e1a13047-9806-4639-a2a6-9404cfd2b86b'), 'cd2f5b64-32e8-42f0-ba14-4f22a0d37803': Node(page_content=\"The educational systems in most countries pretend it's easy. They expect you to commit to a field long before you could know what it's really like. And as a result an ambitious person on an optimal trajectory will often read to the system as an instance of breakage.\\n\\nIt would be better if they at least admitted it — if they admitted that the system not only can't do much to help you figure out what to work on, but is designed on the assumption that you'll somehow magically guess as a teenager. They don't tell you, but I will: when it comes to figuring out what to work on, you're on your own. Some people get lucky and do guess correctly, but the rest will find themselves scrambling diagonally across tracks laid down on the assumption that everyone does.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd2f5b64-32e8-42f0-ba14-4f22a0d37803'), 'ed92cc5f-6350-4ac8-9097-605342ed58f1': Node(page_content=\"What should you do if you're young and ambitious but don't know what to work on? What you should not do is drift along passively, assuming the problem will solve itself. You need to take action. But there is no systematic procedure you can follow. When you read biographies of people who've done great work, it's remarkable how much luck is involved. They discover what to work on as a result of a chance meeting, or by reading a book they happen to pick up. So you need to make yourself a big target for luck, and the way to do that is to be curious. Try lots of things, meet lots of people, read lots of books, ask lots of questions. [5]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ed92cc5f-6350-4ac8-9097-605342ed58f1', wins=1), '9dbdc198-e1f6-446b-9b95-bbd6be77492e': Node(page_content=\"When in doubt, optimize for interestingness. Fields change as you learn more about them. What mathematicians do, for example, is very different from what you do in high school math classes. So you need to give different types of work a chance to show you what they're like. But a field should become increasingly interesting as you learn more about it. If it doesn't, it's probably not for you.\\n\\nDon't worry if you find you're interested in different things than other people. The stranger your tastes in interestingness, the better. Strange tastes are often strong ones, and a strong taste for work means you'll be productive. And you're more likely to find new things if you're looking where few have looked before.\\n\\nOne sign that you're suited for some kind of work is when you like even the parts that other people find tedious or frightening.\\n\\nBut fields aren't people; you don't owe them any loyalty. If in the course of working on one thing you discover another that's more exciting, don't be afraid to switch.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dbdc198-e1f6-446b-9b95-bbd6be77492e'), 'ebd76502-a324-4fe9-86db-58b4f1184052': Node(page_content=\"If you're making something for people, make sure it's something they actually want. The best way to do this is to make something you yourself want. Write the story you want to read; build the tool you want to use. Since your friends probably have similar interests, this will also get you your initial audience.\\n\\nThis should follow from the excitingness rule. Obviously the most exciting story to write will be the one you want to read. The reason I mention this case explicitly is that so many people get it wrong. Instead of making what they want, they try to make what some imaginary, more sophisticated audience wants. And once you go down that route, you're lost. [6]\\n\\nThere are a lot of forces that will lead you astray when you're trying to figure out what to work on. Pretentiousness, fashion, fear, money, politics, other people's wishes, eminent frauds. But if you stick to what you find genuinely interesting, you'll be proof against all of them. If you're interested, you're not astray.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebd76502-a324-4fe9-86db-58b4f1184052'), 'bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa': Node(page_content=\"Following your interests may sound like a rather passive strategy, but in practice it usually means following them past all sorts of obstacles. You usually have to risk rejection and failure. So it does take a good deal of boldness.\\n\\nBut while you need boldness, you don't usually need much planning. In most cases the recipe for doing great work is simply: work hard on excitingly ambitious projects, and something good will come of it. Instead of making a plan and then executing it, you just try to preserve certain invariants.\\n\\nThe trouble with planning is that it only works for achievements you can describe in advance. You can win a gold medal or get rich by deciding to as a child and then tenaciously pursuing that goal, but you can't discover natural selection that way.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa'), '2f6da706-f47d-4336-b3f6-78ff254eae9c': Node(page_content='I think for most people who want to do great work, the right strategy is not to plan too much. At each stage do whatever seems most interesting and gives you the best options for the future. I call this approach \"staying upwind.\" This is how most people who\\'ve done great work seem to have done it.\\n\\nEven when you\\'ve found something exciting to work on, working on it is not always straightforward. There will be times when some new idea makes you leap out of bed in the morning and get straight to work. But there will also be plenty of times when things aren\\'t like that.\\n\\nYou don\\'t just put out your sail and get blown forward by inspiration. There are headwinds and currents and hidden shoals. So there\\'s a technique to working, just as there is to sailing.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2f6da706-f47d-4336-b3f6-78ff254eae9c'), '29ad26ae-8a90-4634-aff2-b4f662e421e0': Node(page_content=\"For example, while you must work hard, it's possible to work too hard, and if you do that you'll find you get diminishing returns: fatigue will make you stupid, and eventually even damage your health. The point at which work yields diminishing returns depends on the type. Some of the hardest types you might only be able to do for four or five hours a day.\\n\\nIdeally those hours will be contiguous. To the extent you can, try to arrange your life so you have big blocks of time to work in. You'll shy away from hard tasks if you know you might be interrupted.\\n\\nIt will probably be harder to start working than to keep working. You'll often have to trick yourself to get over that initial threshold. Don't worry about this; it's the nature of work, not a flaw in your character. Work has a sort of activation energy, both per day and per project. And since this threshold is fake in the sense that it's higher than the energy required to keep going, it's ok to tell yourself a lie of corresponding magnitude to get over it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='29ad26ae-8a90-4634-aff2-b4f662e421e0'), 'cd668cf0-3881-44b4-ad84-628203f14f72': Node(page_content='It\\'s usually a mistake to lie to yourself if you want to do great work, but this is one of the rare cases where it isn\\'t. When I\\'m reluctant to start work in the morning, I often trick myself by saying \"I\\'ll just read over what I\\'ve got so far.\" Five minutes later I\\'ve found something that seems mistaken or incomplete, and I\\'m off.\\n\\nSimilar techniques work for starting new projects. It\\'s ok to lie to yourself about how much work a project will entail, for example. Lots of great things began with someone saying \"How hard could it be?\"\\n\\nThis is one case where the young have an advantage. They\\'re more optimistic, and even though one of the sources of their optimism is ignorance, in this case ignorance can sometimes beat knowledge.\\n\\nTry to finish what you start, though, even if it turns out to be more work than you expected. Finishing things is not just an exercise in tidiness or self-discipline. In many projects a lot of the best work happens in what was meant to be the final stage.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd668cf0-3881-44b4-ad84-628203f14f72'), '25f94528-87d2-4c1a-9f75-3670e66aefd6': Node(page_content=\"Another permissible lie is to exaggerate the importance of what you're working on, at least in your own mind. If that helps you discover something new, it may turn out not to have been a lie after all. [7]\\n\\nSince there are two senses of starting work — per day and per project — there are also two forms of procrastination. Per-project procrastination is far the more dangerous. You put off starting that ambitious project from year to year because the time isn't quite right. When you're procrastinating in units of years, you can get a lot not done. [8]\\n\\nOne reason per-project procrastination is so dangerous is that it usually camouflages itself as work. You're not just sitting around doing nothing; you're working industriously on something else. So per-project procrastination doesn't set off the alarms that per-day procrastination does. You're too busy to notice it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='25f94528-87d2-4c1a-9f75-3670e66aefd6'), '7fae8eb9-3a0f-4651-9d30-3973508310f4': Node(page_content=\"The way to beat it is to stop occasionally and ask yourself: Am I working on what I most want to work on? When you're young it's ok if the answer is sometimes no, but this gets increasingly dangerous as you get older. [9]\\n\\nGreat work usually entails spending what would seem to most people an unreasonable amount of time on a problem. You can't think of this time as a cost, or it will seem too high. You have to find the work sufficiently engaging as it's happening.\\n\\nThere may be some jobs where you have to work diligently for years at things you hate before you get to the good part, but this is not how great work happens. Great work happens by focusing consistently on something you're genuinely interested in. When you pause to take stock, you're surprised how far you've come.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7fae8eb9-3a0f-4651-9d30-3973508310f4'), '1f84089c-1ae3-4652-9f00-ba02164c24d3': Node(page_content=\"The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='1f84089c-1ae3-4652-9f00-ba02164c24d3', wins=1), '857bbce1-c4c8-4095-b9ac-c988d50addfc': Node(page_content=\"Something that grows exponentially can become so valuable that it's worth making an extraordinary effort to get it started. But since we underrate exponential growth early on, this too is mostly done unconsciously: people push through the initial, unrewarding phase of learning something new because they know from experience that learning new things always takes an initial push, or they grow their audience one fan at a time because they have nothing better to do. If people consciously realized they could invest in exponential growth, many more would do it.\\n\\nWork doesn't just happen when you're trying to. There's a kind of undirected thinking you do when walking or taking a shower or lying in bed that can be very powerful. By letting your mind wander a little, you'll often solve problems you were unable to solve by frontal attack.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='857bbce1-c4c8-4095-b9ac-c988d50addfc'), 'f41b7677-9e6c-46e2-92fd-993606e5835e': Node(page_content=\"You have to be working hard in the normal way to benefit from this phenomenon, though. You can't just walk around daydreaming. The daydreaming has to be interleaved with deliberate work that feeds it questions. [10]\\n\\nEveryone knows to avoid distractions at work, but it's also important to avoid them in the other half of the cycle. When you let your mind wander, it wanders to whatever you care about most at that moment. So avoid the kind of distraction that pushes your work out of the top spot, or you'll waste this valuable type of thinking on the distraction instead. (Exception: Don't avoid love.)\\n\\nConsciously cultivate your taste in the work done in your field. Until you know which is the best and what makes it so, you don't know what you're aiming for.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f41b7677-9e6c-46e2-92fd-993606e5835e'), '4cb188bc-4106-4204-a6c7-ea3752f34543': Node(page_content=\"And that is what you're aiming for, because if you don't try to be the best, you won't even be good. This observation has been made by so many people in so many different fields that it might be worth thinking about why it's true. It could be because ambition is a phenomenon where almost all the error is in one direction — where almost all the shells that miss the target miss by falling short. Or it could be because ambition to be the best is a qualitatively different thing from ambition to be good. Or maybe being good is simply too vague a standard. Probably all three are true. [11]\\n\\nFortunately there's a kind of economy of scale here. Though it might seem like you'd be taking on a heavy burden by trying to be the best, in practice you often end up net ahead. It's exciting, and also strangely liberating. It simplifies things. In some ways it's easier to try to be the best than to try merely to be good.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cb188bc-4106-4204-a6c7-ea3752f34543'), 'b2c1b809-e821-452c-a352-4b82293e0d98': Node(page_content=\"One way to aim high is to try to make something that people will care about in a hundred years. Not because their opinions matter more than your contemporaries', but because something that still seems good in a hundred years is more likely to be genuinely good.\\n\\nDon't try to work in a distinctive style. Just try to do the best job you can; you won't be able to help doing it in a distinctive way.\\n\\nStyle is doing things in a distinctive way without trying to. Trying to is affectation.\\n\\nAffectation is in effect to pretend that someone other than you is doing the work. You adopt an impressive but fake persona, and while you're pleased with the impressiveness, the fakeness is what shows in the work. [12]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b2c1b809-e821-452c-a352-4b82293e0d98'), 'a49d877b-69b4-4171-880a-9931fd094a4d': Node(page_content='The temptation to be someone else is greatest for the young. They often feel like nobodies. But you never need to worry about that problem, because it\\'s self-solving if you work on sufficiently ambitious projects. If you succeed at an ambitious project, you\\'re not a nobody; you\\'re the person who did it. So just do the work and your identity will take care of itself.\\n\\n\"Avoid affectation\" is a useful rule so far as it goes, but how would you express this idea positively? How would you say what to be, instead of what not to be? The best answer is earnest. If you\\'re earnest you avoid not just affectation but a whole set of similar vices.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='a49d877b-69b4-4171-880a-9931fd094a4d'), '88e2775e-93a9-47b0-a512-2fb4080c590b': Node(page_content=\"The core of being earnest is being intellectually honest. We're taught as children to be honest as an unselfish virtue — as a kind of sacrifice. But in fact it's a source of power too. To see new ideas, you need an exceptionally sharp eye for the truth. You're trying to see more truth than others have seen so far. And how can you have a sharp eye for the truth if you're intellectually dishonest?\\n\\nOne way to avoid intellectual dishonesty is to maintain a slight positive pressure in the opposite direction. Be aggressively willing to admit that you're mistaken. Once you've admitted you were mistaken about something, you're free. Till then you have to carry it. [13]\\n\\nAnother more subtle component of earnestness is informality. Informality is much more important than its grammatically negative name implies. It's not merely the absence of something. It means focusing on what matters instead of what doesn't.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88e2775e-93a9-47b0-a512-2fb4080c590b', wins=2), '6546e3fd-326b-413e-a345-374e27163847': Node(page_content='What formality and affectation have in common is that as well as doing the work, you\\'re trying to seem a certain way as you\\'re doing it. But any energy that goes into how you seem comes out of being good. That\\'s one reason nerds have an advantage in doing great work: they expend little effort on seeming anything. In fact that\\'s basically the definition of a nerd.\\n\\nNerds have a kind of innocent boldness that\\'s exactly what you need in doing great work. It\\'s not learned; it\\'s preserved from childhood. So hold onto it. Be the one who puts things out there rather than the one who sits back and offers sophisticated-sounding criticisms of them. \"It\\'s easy to criticize\" is true in the most literal sense, and the route to great work is never easy.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6546e3fd-326b-413e-a345-374e27163847'), '531a5c72-e191-4563-863a-a797751b1fc6': Node(page_content=\"There may be some jobs where it's an advantage to be cynical and pessimistic, but if you want to do great work it's an advantage to be optimistic, even though that means you'll risk looking like a fool sometimes. There's an old tradition of doing the opposite. The Old Testament says it's better to keep quiet lest you look like a fool. But that's advice for seeming smart. If you actually want to discover new things, it's better to take the risk of telling people your ideas.\\n\\nSome people are naturally earnest, and with others it takes a conscious effort. Either kind of earnestness will suffice. But I doubt it would be possible to do great work without being earnest. It's so hard to do even if you are. You don't have enough margin for error to accommodate the distortions introduced by being affected, intellectually dishonest, orthodox, fashionable, or cool. [14]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='531a5c72-e191-4563-863a-a797751b1fc6', wins=1), 'c333306a-d7e5-4c78-b4ce-bebcee166ce5': Node(page_content=\"Great work is consistent not only with who did it, but with itself. It's usually all of a piece. So if you face a decision in the middle of working on something, ask which choice is more consistent.\\n\\nYou may have to throw things away and redo them. You won't necessarily have to, but you have to be willing to. And that can take some effort; when there's something you need to redo, status quo bias and laziness will combine to keep you in denial about it. To beat this ask: If I'd already made the change, would I want to revert to what I have now?\\n\\nHave the confidence to cut. Don't keep something that doesn't fit just because you're proud of it, or because it cost you a lot of effort.\\n\\nIndeed, in some kinds of work it's good to strip whatever you're doing to its essence. The result will be more concentrated; you'll understand it better; and you won't be able to lie to yourself about whether there's anything real there.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c333306a-d7e5-4c78-b4ce-bebcee166ce5'), 'c75308b1-0b08-4e09-a009-df856bef3945': Node(page_content='Mathematical elegance may sound like a mere metaphor, drawn from the arts. That\\'s what I thought when I first heard the term \"elegant\" applied to a proof. But now I suspect it\\'s conceptually prior — that the main ingredient in artistic elegance is mathematical elegance. At any rate it\\'s a useful standard well beyond math.\\n\\nElegance can be a long-term bet, though. Laborious solutions will often have more prestige in the short term. They cost a lot of effort and they\\'re hard to understand, both of which impress people, at least temporarily.\\n\\nWhereas some of the very best work will seem like it took comparatively little effort, because it was in a sense already there. It didn\\'t have to be built, just seen. It\\'s a very good sign when it\\'s hard to say whether you\\'re creating something or discovering it.\\n\\nWhen you\\'re doing work that could be seen as either creation or discovery, err on the side of discovery. Try thinking of yourself as a mere conduit through which the ideas take their natural shape.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c75308b1-0b08-4e09-a009-df856bef3945', wins=1), '4f2c5ade-5e17-4002-a1a4-2187f5d88171': Node(page_content=\"(Strangely enough, one exception is the problem of choosing a problem to work on. This is usually seen as search, but in the best case it's more like creating something. In the best case you create the field in the process of exploring it.)\\n\\nSimilarly, if you're trying to build a powerful tool, make it gratuitously unrestrictive. A powerful tool almost by definition will be used in ways you didn't expect, so err on the side of eliminating restrictions, even if you don't know what the benefit will be.\\n\\nGreat work will often be tool-like in the sense of being something others build on. So it's a good sign if you're creating ideas that others could use, or exposing questions that others could answer. The best ideas have implications in many different areas.\\n\\nIf you express your ideas in the most general form, they'll be truer than you intended.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4f2c5ade-5e17-4002-a1a4-2187f5d88171'), '599933be-8cc7-47b3-9079-771faeffc324': Node(page_content='True by itself is not enough, of course. Great ideas have to be true and new. And it takes a certain amount of ability to see new ideas even once you\\'ve learned enough to get to one of the frontiers of knowledge.\\n\\nIn English we give this ability names like originality, creativity, and imagination. And it seems reasonable to give it a separate name, because it does seem to some extent a separate skill. It\\'s possible to have a great deal of ability in other respects — to have a great deal of what\\'s often called \"technical ability\" — and yet not have much of this.\\n\\nI\\'ve never liked the term \"creative process.\" It seems misleading. Originality isn\\'t a process, but a habit of mind. Original thinkers throw off new ideas about whatever they focus on, like an angle grinder throwing off sparks. They can\\'t help it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='599933be-8cc7-47b3-9079-771faeffc324'), 'df268d9c-bb83-4274-adec-131a05765453': Node(page_content=\"If the thing they're focused on is something they don't understand very well, these new ideas might not be good. One of the most original thinkers I know decided to focus on dating after he got divorced. He knew roughly as much about dating as the average 15 year old, and the results were spectacularly colorful. But to see originality separated from expertise like that made its nature all the more clear.\\n\\nI don't know if it's possible to cultivate originality, but there are definitely ways to make the most of however much you have. For example, you're much more likely to have original ideas when you're working on something. Original ideas don't come from trying to have original ideas. They come from trying to build or understand something slightly too difficult. [15]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='df268d9c-bb83-4274-adec-131a05765453'), '7390fd94-b307-468e-9888-4ba2fc15eb38': Node(page_content=\"Talking or writing about the things you're interested in is a good way to generate new ideas. When you try to put ideas into words, a missing idea creates a sort of vacuum that draws it out of you. Indeed, there's a kind of thinking that can only be done by writing.\\n\\nChanging your context can help. If you visit a new place, you'll often find you have new ideas there. The journey itself often dislodges them. But you may not have to go far to get this benefit. Sometimes it's enough just to go for a walk. [16]\\n\\nIt also helps to travel in topic space. You'll have more new ideas if you explore lots of different topics, partly because it gives the angle grinder more surface area to work on, and partly because analogies are an especially fruitful source of new ideas.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7390fd94-b307-468e-9888-4ba2fc15eb38'), '9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b': Node(page_content=\"Don't divide your attention evenly between many topics though, or you'll spread yourself too thin. You want to distribute it according to something more like a power law. [17] Be professionally curious about a few topics and idly curious about many more.\\n\\nCuriosity and originality are closely related. Curiosity feeds originality by giving it new things to work on. But the relationship is closer than that. Curiosity is itself a kind of originality; it's roughly to questions what originality is to answers. And since questions at their best are a big component of answers, curiosity at its best is a creative force.\\n\\nHaving new ideas is a strange game, because it usually consists of seeing things that were right under your nose. Once you've seen a new idea, it tends to seem obvious. Why did no one think of this before?\\n\\nWhen an idea seems simultaneously novel and obvious, it's probably a good one.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b'), '6f83f951-f81a-4afc-9dbc-91e43bbaea88': Node(page_content=\"Seeing something obvious sounds easy. And yet empirically having new ideas is hard. What's the source of this apparent contradiction? It's that seeing the new idea usually requires you to change the way you look at the world. We see the world through models that both help and constrain us. When you fix a broken model, new ideas become obvious. But noticing and fixing a broken model is hard. That's how new ideas can be both obvious and yet hard to discover: they're easy to see after you do something hard.\\n\\nOne way to discover broken models is to be stricter than other people. Broken models of the world leave a trail of clues where they bash against reality. Most people don't want to see these clues. It would be an understatement to say that they're attached to their current model; it's what they think in; so they'll tend to ignore the trail of clues left by its breakage, however conspicuous it may seem in retrospect.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6f83f951-f81a-4afc-9dbc-91e43bbaea88', wins=1), 'c9a8c206-a7da-456c-82a6-635ab33aa7b3': Node(page_content=\"To find new ideas you have to seize on signs of breakage instead of looking away. That's what Einstein did. He was able to see the wild implications of Maxwell's equations not so much because he was looking for new ideas as because he was stricter.\\n\\nThe other thing you need is a willingness to break rules. Paradoxical as it sounds, if you want to fix your model of the world, it helps to be the sort of person who's comfortable breaking rules. From the point of view of the old model, which everyone including you initially shares, the new model usually breaks at least implicit rules.\\n\\nFew understand the degree of rule-breaking required, because new ideas seem much more conservative once they succeed. They seem perfectly reasonable once you're using the new model of the world they brought with them. But they didn't at the time; it took the greater part of a century for the heliocentric model to be generally accepted, even among astronomers, because it felt so wrong.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c9a8c206-a7da-456c-82a6-635ab33aa7b3'), 'f5be2dd9-c85c-418c-a716-eb0b78880cae': Node(page_content=\"Indeed, if you think about it, a good new idea has to seem bad to most people, or someone would have already explored it. So what you're looking for is ideas that seem crazy, but the right kind of crazy. How do you recognize these? You can't with certainty. Often ideas that seem bad are bad. But ideas that are the right kind of crazy tend to be exciting; they're rich in implications; whereas ideas that are merely bad tend to be depressing.\\n\\nThere are two ways to be comfortable breaking rules: to enjoy breaking them, and to be indifferent to them. I call these two cases being aggressively and passively independent-minded.\\n\\nThe aggressively independent-minded are the naughty ones. Rules don't merely fail to stop them; breaking rules gives them additional energy. For this sort of person, delight at the sheer audacity of a project sometimes supplies enough activation energy to get it started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f5be2dd9-c85c-418c-a716-eb0b78880cae'), 'e2362524-ba22-4fb7-8c77-d289a352850b': Node(page_content=\"The other way to break rules is not to care about them, or perhaps even to know they exist. This is why novices and outsiders often make new discoveries; their ignorance of a field's assumptions acts as a source of temporary passive independent-mindedness. Aspies also seem to have a kind of immunity to conventional beliefs. Several I know say that this helps them to have new ideas.\\n\\nStrictness plus rule-breaking sounds like a strange combination. In popular culture they're opposed. But popular culture has a broken model in this respect. It implicitly assumes that issues are trivial ones, and in trivial matters strictness and rule-breaking are opposed. But in questions that really matter, only rule-breakers can be truly strict.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2362524-ba22-4fb7-8c77-d289a352850b'), '018ff54f-2f81-408b-8b62-20443ab66da9': Node(page_content=\"An overlooked idea often doesn't lose till the semifinals. You do see it, subconsciously, but then another part of your subconscious shoots it down because it would be too weird, too risky, too much work, too controversial. This suggests an exciting possibility: if you could turn off such filters, you could see more new ideas.\\n\\nOne way to do that is to ask what would be good ideas for someone else to explore. Then your subconscious won't shoot them down to protect you.\\n\\nYou could also discover overlooked ideas by working in the other direction: by starting from what's obscuring them. Every cherished but mistaken principle is surrounded by a dead zone of valuable ideas that are unexplored because they contradict it.\\n\\nReligions are collections of cherished but mistaken principles. So anything that can be described either literally or metaphorically as a religion will have valuable unexplored ideas in its shadow. Copernicus and Darwin both made discoveries of this type. [18]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='018ff54f-2f81-408b-8b62-20443ab66da9'), '88ff37b8-75c7-48aa-9441-f8cba80464b1': Node(page_content=\"What are people in your field religious about, in the sense of being too attached to some principle that might not be as self-evident as they think? What becomes possible if you discard it?\\n\\nPeople show much more originality in solving problems than in deciding which problems to solve. Even the smartest can be surprisingly conservative when deciding what to work on. People who'd never dream of being fashionable in any other way get sucked into working on fashionable problems.\\n\\nOne reason people are more conservative when choosing problems than solutions is that problems are bigger bets. A problem could occupy you for years, while exploring a solution might only take days. But even so I think most people are too conservative. They're not merely responding to risk, but to fashion as well. Unfashionable problems are undervalued.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88ff37b8-75c7-48aa-9441-f8cba80464b1'), '963e48ca-37ea-4002-b0b2-78fa521f3597': Node(page_content=\"One of the most interesting kinds of unfashionable problem is the problem that people think has been fully explored, but hasn't. Great work often takes something that already exists and shows its latent potential. Durer and Watt both did this. So if you're interested in a field that others think is tapped out, don't let their skepticism deter you. People are often wrong about this.\\n\\nWorking on an unfashionable problem can be very pleasing. There's no hype or hurry. Opportunists and critics are both occupied elsewhere. The existing work often has an old-school solidity. And there's a satisfying sense of economy in cultivating ideas that would otherwise be wasted.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='963e48ca-37ea-4002-b0b2-78fa521f3597'), '263b1659-4c96-4db0-a5b9-6e766bc7a928': Node(page_content='But the most common type of overlooked problem is not explicitly unfashionable in the sense of being out of fashion. It just doesn\\'t seem to matter as much as it actually does. How do you find these? By being self-indulgent — by letting your curiosity have its way, and tuning out, at least temporarily, the little voice in your head that says you should only be working on \"important\" problems.\\n\\nYou do need to work on important problems, but almost everyone is too conservative about what counts as one. And if there\\'s an important but overlooked problem in your neighborhood, it\\'s probably already on your subconscious radar screen. So try asking yourself: if you were going to take a break from \"serious\" work to work on something just because it would be really interesting, what would you do? The answer is probably more important than it seems.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='263b1659-4c96-4db0-a5b9-6e766bc7a928', wins=2), 'f3a439f9-a726-4007-90d3-d7e4ac34c811': Node(page_content=\"Originality in choosing problems seems to matter even more than originality in solving them. That's what distinguishes the people who discover whole new fields. So what might seem to be merely the initial step — deciding what to work on — is in a sense the key to the whole game.\\n\\nFew grasp this. One of the biggest misconceptions about new ideas is about the ratio of question to answer in their composition. People think big ideas are answers, but often the real insight was in the question.\\n\\nPart of the reason we underrate questions is the way they're used in schools. In schools they tend to exist only briefly before being answered, like unstable particles. But a really good question can be much more than that. A really good question is a partial discovery. How do new species arise? Is the force that makes objects fall to earth the same as the one that keeps planets in their orbits? By even asking such questions you were already in excitingly novel territory.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f3a439f9-a726-4007-90d3-d7e4ac34c811'), 'ac0c284a-93cc-4f20-8f95-644471bc59e2': Node(page_content=\"Unanswered questions can be uncomfortable things to carry around with you. But the more you're carrying, the greater the chance of noticing a solution — or perhaps even more excitingly, noticing that two unanswered questions are the same.\\n\\nSometimes you carry a question for a long time. Great work often comes from returning to a question you first noticed years before — in your childhood, even — and couldn't stop thinking about. People talk a lot about the importance of keeping your youthful dreams alive, but it's just as important to keep your youthful questions alive. [19]\\n\\nThis is one of the places where actual expertise differs most from the popular picture of it. In the popular picture, experts are certain. But actually the more puzzled you are, the better, so long as (a) the things you're puzzled about matter, and (b) no one else understands them either.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ac0c284a-93cc-4f20-8f95-644471bc59e2'), '43d899d8-1f03-4594-89b0-c8d98a5b6feb': Node(page_content=\"Think about what's happening at the moment just before a new idea is discovered. Often someone with sufficient expertise is puzzled about something. Which means that originality consists partly of puzzlement — of confusion! You have to be comfortable enough with the world being full of puzzles that you're willing to see them, but not so comfortable that you don't want to solve them. [20]\\n\\nIt's a great thing to be rich in unanswered questions. And this is one of those situations where the rich get richer, because the best way to acquire new questions is to try answering existing ones. Questions don't just lead to answers, but also to more questions.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='43d899d8-1f03-4594-89b0-c8d98a5b6feb'), '36d31bd1-f966-4b1b-97de-447c6e1a6413': Node(page_content=\"The best questions grow in the answering. You notice a thread protruding from the current paradigm and try pulling on it, and it just gets longer and longer. So don't require a question to be obviously big before you try answering it. You can rarely predict that. It's hard enough even to notice the thread, let alone to predict how much will unravel if you pull on it.\\n\\nIt's better to be promiscuously curious — to pull a little bit on a lot of threads, and see what happens. Big things start small. The initial versions of big things were often just experiments, or side projects, or talks, which then grew into something bigger. So start lots of small things.\\n\\nBeing prolific is underrated. The more different things you try, the greater the chance of discovering something new. Understand, though, that trying lots of things will mean trying lots of things that don't work. You can't have a lot of good ideas without also having a lot of bad ones. [21]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='36d31bd1-f966-4b1b-97de-447c6e1a6413'), '2351f0d2-96fe-4a21-845f-11bf4e69dbd6': Node(page_content=\"Though it sounds more responsible to begin by studying everything that's been done before, you'll learn faster and have more fun by trying stuff. And you'll understand previous work better when you do look at it. So err on the side of starting. Which is easier when starting means starting small; those two ideas fit together like two puzzle pieces.\\n\\nHow do you get from starting small to doing something great? By making successive versions. Great things are almost always made in successive versions. You start with something small and evolve it, and the final version is both cleverer and more ambitious than anything you could have planned.\\n\\nIt's particularly useful to make successive versions when you're making something for people — to get an initial version in front of them quickly, and then evolve it based on their response.\\n\\nBegin by trying the simplest thing that could possibly work. Surprisingly often, it does. If it doesn't, this will at least get you started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2351f0d2-96fe-4a21-845f-11bf4e69dbd6'), '55306b2a-343d-4e44-8b24-25e471975cd3': Node(page_content='Don\\'t try to cram too much new stuff into any one version. There are names for doing this with the first version (taking too long to ship) and the second (the second system effect), but these are both merely instances of a more general principle.\\n\\nAn early version of a new project will sometimes be dismissed as a toy. It\\'s a good sign when people do this. That means it has everything a new idea needs except scale, and that tends to follow. [22]\\n\\nThe alternative to starting with something small and evolving it is to plan in advance what you\\'re going to do. And planning does usually seem the more responsible choice. It sounds more organized to say \"we\\'re going to do x and then y and then z\" than \"we\\'re going to try x and see what happens.\" And it is more organized; it just doesn\\'t work as well.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='55306b2a-343d-4e44-8b24-25e471975cd3'), '8776ddf1-1e65-458c-9cc2-63a7fe40f800': Node(page_content=\"Planning per se isn't good. It's sometimes necessary, but it's a necessary evil — a response to unforgiving conditions. It's something you have to do because you're working with inflexible media, or because you need to coordinate the efforts of a lot of people. If you keep projects small and use flexible media, you don't have to plan as much, and your designs can evolve instead.\\n\\nTake as much risk as you can afford. In an efficient market, risk is proportionate to reward, so don't look for certainty, but for a bet with high expected value. If you're not failing occasionally, you're probably being too conservative.\\n\\nThough conservatism is usually associated with the old, it's the young who tend to make this mistake. Inexperience makes them fear risk, but it's when you're young that you can afford the most.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8776ddf1-1e65-458c-9cc2-63a7fe40f800'), 'c325c260-d37e-4bb0-a8b8-7d2633f1c55e': Node(page_content=\"Even a project that fails can be valuable. In the process of working on it, you'll have crossed territory few others have seen, and encountered questions few others have asked. And there's probably no better source of questions than the ones you encounter in trying to do something slightly too hard.\\n\\nUse the advantages of youth when you have them, and the advantages of age once you have those. The advantages of youth are energy, time, optimism, and freedom. The advantages of age are knowledge, efficiency, money, and power. With effort you can acquire some of the latter when young and keep some of the former when old.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c325c260-d37e-4bb0-a8b8-7d2633f1c55e'), '9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62': Node(page_content='The old also have the advantage of knowing which advantages they have. The young often have them without realizing it. The biggest is probably time. The young have no idea how rich they are in time. The best way to turn this time to advantage is to use it in slightly frivolous ways: to learn about something you don\\'t need to know about, just out of curiosity, or to try building something just because it would be cool, or to become freakishly good at something.\\n\\nThat \"slightly\" is an important qualification. Spend time lavishly when you\\'re young, but don\\'t simply waste it. There\\'s a big difference between doing something you worry might be a waste of time and doing something you know for sure will be. The former is at least a bet, and possibly a better one than you think. [23]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62'), '8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7': Node(page_content=\"The most subtle advantage of youth, or more precisely of inexperience, is that you're seeing everything with fresh eyes. When your brain embraces an idea for the first time, sometimes the two don't fit together perfectly. Usually the problem is with your brain, but occasionally it's with the idea. A piece of it sticks out awkwardly and jabs you when you think about it. People who are used to the idea have learned to ignore it, but you have the opportunity not to. [24]\\n\\nSo when you're learning about something for the first time, pay attention to things that seem wrong or missing. You'll be tempted to ignore them, since there's a 99% chance the problem is with you. And you may have to set aside your misgivings temporarily to keep progressing. But don't forget about them. When you've gotten further into the subject, come back and check if they're still there. If they're still viable in the light of your present knowledge, they probably represent an undiscovered idea.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7'), 'ebcb18af-82cb-4367-bb8f-60de302902d8': Node(page_content=\"One of the most valuable kinds of knowledge you get from experience is to know what you don't have to worry about. The young know all the things that could matter, but not their relative importance. So they worry equally about everything, when they should worry much more about a few things and hardly at all about the rest.\\n\\nBut what you don't know is only half the problem with inexperience. The other half is what you do know that ain't so. You arrive at adulthood with your head full of nonsense — bad habits you've acquired and false things you've been taught — and you won't be able to do great work till you clear away at least the nonsense in the way of whatever type of work you want to do.\\n\\nMuch of the nonsense left in your head is left there by schools. We're so used to schools that we unconsciously treat going to school as identical with learning, but in fact schools have all sorts of strange qualities that warp our ideas about learning and thinking.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebcb18af-82cb-4367-bb8f-60de302902d8'), '16440cdc-9b76-475c-bd3a-8e43dae9a434': Node(page_content=\"For example, schools induce passivity. Since you were a small child, there was an authority at the front of the class telling all of you what you had to learn and then measuring whether you did. But neither classes nor tests are intrinsic to learning; they're just artifacts of the way schools are usually designed.\\n\\nThe sooner you overcome this passivity, the better. If you're still in school, try thinking of your education as your project, and your teachers as working for you rather than vice versa. That may seem a stretch, but it's not merely some weird thought experiment. It's the truth, economically, and in the best case it's the truth intellectually as well. The best teachers don't want to be your bosses. They'd prefer it if you pushed ahead, using them as a source of advice, rather than being pulled by them through the material.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='16440cdc-9b76-475c-bd3a-8e43dae9a434'), '017c0f04-9f7c-4c8f-b6e9-23539e87f9a1': Node(page_content='Schools also give you a misleading impression of what work is like. In school they tell you what the problems are, and they\\'re almost always soluble using no more than you\\'ve been taught so far. In real life you have to figure out what the problems are, and you often don\\'t know if they\\'re soluble at all.\\n\\nBut perhaps the worst thing schools do to you is train you to win by hacking the test. You can\\'t do great work by doing that. You can\\'t trick God. So stop looking for that kind of shortcut. The way to beat the system is to focus on problems and solutions that others have overlooked, not to skimp on the work itself.\\n\\nDon\\'t think of yourself as dependent on some gatekeeper giving you a \"big break.\" Even if this were true, the best way to get it would be to focus on doing good work rather than chasing influential people.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c0f04-9f7c-4c8f-b6e9-23539e87f9a1'), 'c8acb19e-fb92-4e15-a633-895f474f5fd1': Node(page_content=\"And don't take rejection by committees to heart. The qualities that impress admissions officers and prize committees are quite different from those required to do great work. The decisions of selection committees are only meaningful to the extent that they're part of a feedback loop, and very few are.\\n\\nPeople new to a field will often copy existing work. There's nothing inherently bad about that. There's no better way to learn how something works than by trying to reproduce it. Nor does copying necessarily make your work unoriginal. Originality is the presence of new ideas, not the absence of old ones.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c8acb19e-fb92-4e15-a633-895f474f5fd1'), '5358b733-dcf2-4681-99ff-dd89b89c6718': Node(page_content='There\\'s a good way to copy and a bad way. If you\\'re going to copy something, do it openly instead of furtively, or worse still, unconsciously. This is what\\'s meant by the famously misattributed phrase \"Great artists steal.\" The really dangerous kind of copying, the kind that gives copying a bad name, is the kind that\\'s done without realizing it, because you\\'re nothing more than a train running on tracks laid down by someone else. But at the other extreme, copying can be a sign of superiority rather than subordination. [25]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5358b733-dcf2-4681-99ff-dd89b89c6718', wins=1), 'f087a707-515e-4c49-9772-187a7075ed75': Node(page_content=\"In many fields it's almost inevitable that your early work will be in some sense based on other people's. Projects rarely arise in a vacuum. They're usually a reaction to previous work. When you're first starting out, you don't have any previous work; if you're going to react to something, it has to be someone else's. Once you're established, you can react to your own. But while the former gets called derivative and the latter doesn't, structurally the two cases are more similar than they seem.\\n\\nOddly enough, the very novelty of the most novel ideas sometimes makes them seem at first to be more derivative than they are. New discoveries often have to be conceived initially as variations of existing things, even by their discoverers, because there isn't yet the conceptual vocabulary to express them.\\n\\nThere are definitely some dangers to copying, though. One is that you'll tend to copy old things — things that were in their day at the frontier of knowledge, but no longer are.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f087a707-515e-4c49-9772-187a7075ed75'), 'daf67766-a44c-4c3b-bd77-dc6d1045d490': Node(page_content=\"And when you do copy something, don't copy every feature of it. Some will make you ridiculous if you do. Don't copy the manner of an eminent 50 year old professor if you're 18, for example, or the idiom of a Renaissance poem hundreds of years later.\\n\\nSome of the features of things you admire are flaws they succeeded despite. Indeed, the features that are easiest to imitate are the most likely to be the flaws.\\n\\nThis is particularly true for behavior. Some talented people are jerks, and this sometimes makes it seem to the inexperienced that being a jerk is part of being talented. It isn't; being talented is merely how they get away with it.\\n\\nOne of the most powerful kinds of copying is to copy something from one field into another. History is so full of chance discoveries of this type that it's probably worth giving chance a hand by deliberately learning about other kinds of work. You can take ideas from quite distant fields if you let them be metaphors.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='daf67766-a44c-4c3b-bd77-dc6d1045d490'), '18f9beba-e410-4473-97ad-959d232cd009': Node(page_content=\"Negative examples can be as inspiring as positive ones. In fact you can sometimes learn more from things done badly than from things done well; sometimes it only becomes clear what's needed when it's missing.\\n\\nIf a lot of the best people in your field are collected in one place, it's usually a good idea to visit for a while. It will increase your ambition, and also, by showing you that these people are human, increase your self-confidence. [26]\\n\\nIf you're earnest you'll probably get a warmer welcome than you might expect. Most people who are very good at something are happy to talk about it with anyone who's genuinely interested. If they're really good at their work, then they probably have a hobbyist's interest in it, and hobbyists always want to talk about their hobbies.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='18f9beba-e410-4473-97ad-959d232cd009'), 'e4ed843d-1771-424a-91fc-5b74bcd2bc37': Node(page_content=\"It may take some effort to find the people who are really good, though. Doing great work has such prestige that in some places, particularly universities, there's a polite fiction that everyone is engaged in it. And that is far from true. People within universities can't say so openly, but the quality of the work being done in different departments varies immensely. Some departments have people doing great work; others have in the past; others never have.\\n\\nSeek out the best colleagues. There are a lot of projects that can't be done alone, and even if you're working on one that can be, it's good to have other people to encourage you and to bounce ideas off.\\n\\nColleagues don't just affect your work, though; they also affect you. So work with people you want to become like, because you will.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e4ed843d-1771-424a-91fc-5b74bcd2bc37'), '6c16f93b-75ea-4884-8959-b8d243716257': Node(page_content=\"Quality is more important than quantity in colleagues. It's better to have one or two great ones than a building full of pretty good ones. In fact it's not merely better, but necessary, judging from history: the degree to which great work happens in clusters suggests that one's colleagues often make the difference between doing great work and not.\\n\\nHow do you know when you have sufficiently good colleagues? In my experience, when you do, you know. Which means if you're unsure, you probably don't. But it may be possible to give a more concrete answer than that. Here's an attempt: sufficiently good colleagues offer surprising insights. They can see and do things that you can't. So if you have a handful of colleagues good enough to keep you on your toes in this sense, you're probably over the threshold.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6c16f93b-75ea-4884-8959-b8d243716257'), '41972435-555e-4d47-977a-b91de1f27a90': Node(page_content=\"Most of us can benefit from collaborating with colleagues, but some projects require people on a larger scale, and starting one of those is not for everyone. If you want to run a project like that, you'll have to become a manager, and managing well takes aptitude and interest like any other kind of work. If you don't have them, there is no middle path: you must either force yourself to learn management as a second language, or avoid such projects. [27]\\n\\nHusband your morale. It's the basis of everything when you're working on ambitious projects. You have to nurture and protect it like a living organism.\\n\\nMorale starts with your view of life. You're more likely to do great work if you're an optimist, and more likely to if you think of yourself as lucky than if you think of yourself as a victim.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='41972435-555e-4d47-977a-b91de1f27a90'), 'e2821136-b037-4332-bbbd-de2fcbeae316': Node(page_content=\"Indeed, work can to some extent protect you from your problems. If you choose work that's pure, its very difficulties will serve as a refuge from the difficulties of everyday life. If this is escapism, it's a very productive form of it, and one that has been used by some of the greatest minds in history.\\n\\nMorale compounds via work: high morale helps you do good work, which increases your morale and helps you do even better work. But this cycle also operates in the other direction: if you're not doing good work, that can demoralize you and make it even harder to. Since it matters so much for this cycle to be running in the right direction, it can be a good idea to switch to easier work when you're stuck, just so you start to get something done.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2821136-b037-4332-bbbd-de2fcbeae316', wins=1), '4593e897-c389-4639-98bd-7c159e1b3eae': Node(page_content='One of the biggest mistakes ambitious people make is to allow setbacks to destroy their morale all at once, like a balloon bursting. You can inoculate yourself against this by explicitly considering setbacks a part of your process. Solving hard problems always involves some backtracking.\\n\\nDoing great work is a depth-first search whose root node is the desire to. So \"If at first you don\\'t succeed, try, try again\" isn\\'t quite right. It should be: If at first you don\\'t succeed, either try again, or backtrack and then try again.\\n\\n\"Never give up\" is also not quite right. Obviously there are times when it\\'s the right choice to eject. A more precise version would be: Never let setbacks panic you into backtracking more than you need to. Corollary: Never abandon the root node.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4593e897-c389-4639-98bd-7c159e1b3eae'), 'b00c903d-199c-47b5-9884-f47a81649533': Node(page_content=\"It's not necessarily a bad sign if work is a struggle, any more than it's a bad sign to be out of breath while running. It depends how fast you're running. So learn to distinguish good pain from bad. Good pain is a sign of effort; bad pain is a sign of damage.\\n\\nAn audience is a critical component of morale. If you're a scholar, your audience may be your peers; in the arts, it may be an audience in the traditional sense. Either way it doesn't need to be big. The value of an audience doesn't grow anything like linearly with its size. Which is bad news if you're famous, but good news if you're just starting out, because it means a small but dedicated audience can be enough to sustain you. If a handful of people genuinely love what you're doing, that's enough.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b00c903d-199c-47b5-9884-f47a81649533'), '53911edb-1d5b-42d8-8f83-00572631b56a': Node(page_content=\"To the extent you can, avoid letting intermediaries come between you and your audience. In some types of work this is inevitable, but it's so liberating to escape it that you might be better off switching to an adjacent type if that will let you go direct. [28]\\n\\nThe people you spend time with will also have a big effect on your morale. You'll find there are some who increase your energy and others who decrease it, and the effect someone has is not always what you'd expect. Seek out the people who increase your energy and avoid those who decrease it. Though of course if there's someone you need to take care of, that takes precedence.\\n\\nDon't marry someone who doesn't understand that you need to work, or sees your work as competition for your attention. If you're ambitious, you need to work; it's almost like a medical condition; so someone who won't let you work either doesn't understand you, or does and doesn't care.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='53911edb-1d5b-42d8-8f83-00572631b56a', wins=1), '4cc70f37-da0e-44f9-a413-70a2f96e884a': Node(page_content=\"Ultimately morale is physical. You think with your body, so it's important to take care of it. That means exercising regularly, eating and sleeping well, and avoiding the more dangerous kinds of drugs. Running and walking are particularly good forms of exercise because they're good for thinking. [29]\\n\\nPeople who do great work are not necessarily happier than everyone else, but they're happier than they'd be if they didn't. In fact, if you're smart and ambitious, it's dangerous not to be productive. People who are smart and ambitious but don't achieve much tend to become bitter.\\n\\nIt's ok to want to impress other people, but choose the right people. The opinion of people you respect is signal. Fame, which is the opinion of a much larger group you might or might not respect, just adds noise.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cc70f37-da0e-44f9-a413-70a2f96e884a'), '017c6cc7-ee83-4bdb-a16f-fb64224418df': Node(page_content='The prestige of a type of work is at best a trailing indicator and sometimes completely mistaken. If you do anything well enough, you\\'ll make it prestigious. So the question to ask about a type of work is not how much prestige it has, but how well it could be done.\\n\\nCompetition can be an effective motivator, but don\\'t let it choose the problem for you; don\\'t let yourself get drawn into chasing something just because others are. In fact, don\\'t let competitors make you do anything much more specific than work harder.\\n\\nCuriosity is the best guide. Your curiosity never lies, and it knows more than you do about what\\'s worth paying attention to.\\n\\nNotice how often that word has come up. If you asked an oracle the secret to doing great work and the oracle replied with a single word, my bet would be on \"curiosity.\"\\n\\nThat doesn\\'t translate directly to advice. It\\'s not enough just to be curious, and you can\\'t command curiosity anyway. But you can nurture it and let it drive you.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c6cc7-ee83-4bdb-a16f-fb64224418df'), '518b39aa-59f8-4cb7-9c23-4ac7197f8250': Node(page_content=\"Curiosity is the key to all four steps in doing great work: it will choose the field for you, get you to the frontier, cause you to notice the gaps in it, and drive you to explore them. The whole process is a kind of dance with curiosity.\\n\\nBelieve it or not, I tried to make this essay as short as I could. But its length at least means it acts as a filter. If you made it this far, you must be interested in doing great work. And if so you're already further along than you might realize, because the set of people willing to want to is small.\\n\\nThe factors in doing great work are factors in the literal, mathematical sense, and they are: ability, interest, effort, and luck. Luck by definition you can't do anything about, so we can ignore that. And we can assume effort, if you do in fact want to do great work. So the problem boils down to ability and interest. Can you find a kind of work where your ability and interest will combine to yield an explosion of new ideas?\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='518b39aa-59f8-4cb7-9c23-4ac7197f8250', wins=1), '4bd8c91f-16e5-4aab-a361-b2e98eee6b10': Node(page_content=\"Here there are grounds for optimism. There are so many different ways to do great work, and even more that are still undiscovered. Out of all those different types of work, the one you're most suited for is probably a pretty close match. Probably a comically close match. It's just a question of finding it, and how far into it your ability and interest can take you. And you can only answer that by trying.\\n\\nMany more people could try to do great work than do. What holds them back is a combination of modesty and fear. It seems presumptuous to try to be Newton or Shakespeare. It also seems hard; surely if you tried something like that, you'd fail. Presumably the calculation is rarely explicit. Few people consciously decide not to try to do great work. But that's what's going on subconsciously; they shy away from the question.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4bd8c91f-16e5-4aab-a361-b2e98eee6b10'), '5098c334-acd7-4051-8409-88ae99b130c4': Node(page_content=\"So I'm going to pull a sneaky trick on you. Do you want to do great work, or not? Now you have to decide consciously. Sorry about that. I wouldn't have done it to a general audience. But we already know you're interested.\\n\\nDon't worry about being presumptuous. You don't have to tell anyone. And if it's too hard and you fail, so what? Lots of people have worse problems than that. In fact you'll be lucky if it's the worst problem you have.\\n\\nYes, you'll have to work hard. But again, lots of people have to work hard. And if you're working on something you find very interesting, which you necessarily will if you're on the right path, the work will probably feel less burdensome than a lot of your peers'.\\n\\nThe discoveries are out there, waiting to be made. Why not by you?\\n\\nNotes\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5098c334-acd7-4051-8409-88ae99b130c4'), '85fcc3b5-ead2-41ce-bd52-c45b5555894f': Node(page_content='Notes\\n\\n[1] I don\\'t think you could give a precise definition of what counts as great work. Doing great work means doing something important so well that you expand people\\'s ideas of what\\'s possible. But there\\'s no threshold for importance. It\\'s a matter of degree, and often hard to judge at the time anyway. So I\\'d rather people focused on developing their interests rather than worrying about whether they\\'re important or not. Just try to do something amazing, and leave it to future generations to say if you succeeded.\\n\\n[2] A lot of standup comedy is based on noticing anomalies in everyday life. \"Did you ever notice...?\" New ideas come from doing this about nontrivial things. Which may help explain why people\\'s reaction to a new idea is often the first half of laughing: Ha!\\n\\n[3] That second qualifier is critical. If you\\'re excited about something most authorities discount, but you can\\'t give a more precise explanation than \"they don\\'t get it,\" then you\\'re starting to drift into the territory of cranks.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='85fcc3b5-ead2-41ce-bd52-c45b5555894f'), '2e5f7714-e0a8-4be5-ab6f-433a316b1c41': Node(page_content=\"[4] Finding something to work on is not simply a matter of finding a match between the current version of you and a list of known problems. You'll often have to coevolve with the problem. That's why it can sometimes be so hard to figure out what to work on. The search space is huge. It's the cartesian product of all possible types of work, both known and yet to be discovered, and all possible future versions of you.\\n\\nThere's no way you could search this whole space, so you have to rely on heuristics to generate promising paths through it and hope the best matches will be clustered. Which they will not always be; different types of work have been collected together as much by accidents of history as by the intrinsic similarities between them.\\n\\n[5] There are many reasons curious people are more likely to do great work, but one of the more subtle is that, by casting a wide net, they're more likely to find the right thing to work on in the first place.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2e5f7714-e0a8-4be5-ab6f-433a316b1c41'), 'f43e912a-048c-44f0-8a64-9b58b1fa4f58': Node(page_content=\"[6] It can also be dangerous to make things for an audience you feel is less sophisticated than you, if that causes you to talk down to them. You can make a lot of money doing that, if you do it in a sufficiently cynical way, but it's not the route to great work. Not that anyone using this m.o. would care.\\n\\n[7] This idea I learned from Hardy's A Mathematician's Apology, which I recommend to anyone ambitious to do great work, in any field.\\n\\n[8] Just as we overestimate what we can do in a day and underestimate what we can do over several years, we overestimate the damage done by procrastinating for a day and underestimate the damage done by procrastinating for several years.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f43e912a-048c-44f0-8a64-9b58b1fa4f58'), 'af0eafcf-c1b7-46cd-b1b2-223f4aed0984': Node(page_content=\"[9] You can't usually get paid for doing exactly what you want, especially early on. There are two options: get paid for doing work close to what you want and hope to push it closer, or get paid for doing something else entirely and do your own projects on the side. Both can work, but both have drawbacks: in the first approach your work is compromised by default, and in the second you have to fight to get time to do it.\\n\\n[10] If you set your life up right, it will deliver the focus-relax cycle automatically. The perfect setup is an office you work in and that you walk to and from.\\n\\n[11] There may be some very unworldly people who do great work without consciously trying to. If you want to expand this rule to cover that case, it becomes: Don't try to be anything except the best.\\n\\n[12] This gets more complicated in work like acting, where the goal is to adopt a fake persona. But even here it's possible to be affected. Perhaps the rule in such fields should be to avoid unintentional affectation.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='af0eafcf-c1b7-46cd-b1b2-223f4aed0984'), '6afc67d5-0fd7-48a8-829f-201370a6be57': Node(page_content='[13] It\\'s safe to have beliefs that you treat as unquestionable if and only if they\\'re also unfalsifiable. For example, it\\'s safe to have the principle that everyone should be treated equally under the law, because a sentence with a \"should\" in it isn\\'t really a statement about the world and is therefore hard to disprove. And if there\\'s no evidence that could disprove one of your principles, there can\\'t be any facts you\\'d need to ignore in order to preserve it.\\n\\n[14] Affectation is easier to cure than intellectual dishonesty. Affectation is often a shortcoming of the young that burns off in time, while intellectual dishonesty is more of a character flaw.\\n\\n[15] Obviously you don\\'t have to be working at the exact moment you have the idea, but you\\'ll probably have been working fairly recently.\\n\\n[16] Some say psychoactive drugs have a similar effect. I\\'m skeptical, but also almost totally ignorant of their effects.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6afc67d5-0fd7-48a8-829f-201370a6be57'), '875a91c1-a9d8-4c9b-a094-4e865ec91c81': Node(page_content=\"[17] For example you might give the nth most important topic (m-1)/m^n of your attention, for some m > 1. You couldn't allocate your attention so precisely, of course, but this at least gives an idea of a reasonable distribution.\\n\\n[18] The principles defining a religion have to be mistaken. Otherwise anyone might adopt them, and there would be nothing to distinguish the adherents of the religion from everyone else.\\n\\n[19] It might be a good exercise to try writing down a list of questions you wondered about in your youth. You might find you're now in a position to do something about some of them.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='875a91c1-a9d8-4c9b-a094-4e865ec91c81'), '9dc1d1d4-e75c-4e42-9567-9d7f2e048319': Node(page_content='[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they\\'re generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling\\'s \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you\\'re wasting time is to ask if you\\'re producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don\\'t.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dc1d1d4-e75c-4e42-9567-9d7f2e048319', wins=1), 'e2cbfecc-dc00-438a-ab59-b82bfd683a65': Node(page_content=\"[24] Another related advantage is that if you haven't said anything publicly yet, you won't be biased toward evidence that supports your earlier conclusions. With sufficient integrity you could achieve eternal youth in this respect, but few manage to. For most people, having previously published opinions has an effect similar to ideology, just in quantity 1.\\n\\n[25] In the early 1630s Daniel Mytens made a painting of Henrietta Maria handing a laurel wreath to Charles I. Van Dyck then painted his own version to show how much better he was.\\n\\n[26] I'm being deliberately vague about what a place is. As of this writing, being in the same physical place has advantages that are hard to duplicate, but that could change.\\n\\n[27] This is false when the work the other people have to do is very constrained, as with SETI@home or Bitcoin. It may be possible to expand the area in which it's false by defining similarly restricted protocols with more freedom of action in the nodes.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2cbfecc-dc00-438a-ab59-b82bfd683a65'), 'd64ee58e-fa36-495b-8ef7-df70c6375e80': Node(page_content='[28] Corollary: Building something that enables people to go around intermediaries and engage directly with their audience is probably a good idea.\\n\\n[29] It may be helpful always to walk or run the same route, because that frees attention for thinking. It feels that way to me, and there is some historical evidence for it.\\n\\nThanks to Trevor Blackwell, Daniel Gackle, Pam Graham, Tom Howard, Patrick Hsu, Steve Huffman, Jessica Livingston, Henry Lloyd-Baker, Bob Metcalfe, Ben Miller, Robert Morris, Michael Nielsen, Courtenay Pipkin, Joris Poort, Mieke Roos, Rajat Suri, Harj Taggar, Garry Tan, and my younger son for suggestions and for reading drafts.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='d64ee58e-fa36-495b-8ef7-df70c6375e80'), '8941624d-30a5-4c1f-936b-72b3c0e8feb1': Node(page_content='What I Worked On\\n\\nFebruary 2021\\n\\nBefore college the two main things I worked on, outside of school, were writing and programming. I didn\\'t write essays. I wrote what beginning writers were supposed to write then, and probably still are: short stories. My stories were awful. They had hardly any plot, just characters with strong feelings, which I imagined made them deep.\\n\\nThe first programs I tried writing were on the IBM 1401 that our school district used for what was then called \"data processing.\" This was in 9th grade, so I was 13 or 14. The school district\\'s 1401 happened to be in the basement of our junior high school, and my friend Rich Draves and I got permission to use it. It was like a mini Bond villain\\'s lair down there, with all these alien-looking machines — CPU, disk drives, printer, card reader — sitting up on a raised floor under bright fluorescent lights.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8941624d-30a5-4c1f-936b-72b3c0e8feb1', wins=1), '2ddb6920-17bc-405e-9cbe-5b2852d92feb': Node(page_content='The language we used was an early version of Fortran. You had to type programs on punch cards, then stack them in the card reader and press a button to load the program into memory and run it. The result would ordinarily be to print something on the spectacularly loud printer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2ddb6920-17bc-405e-9cbe-5b2852d92feb'), '2cae8c4f-333e-4615-8808-6e9ab6f79097': Node(page_content=\"I was puzzled by the 1401. I couldn't figure out what to do with it. And in retrospect there's not much I could have done with it. The only form of input to programs was data stored on punched cards, and I didn't have any data stored on punched cards. The only other option was to do things that didn't rely on any input, like calculate approximations of pi, but I didn't know enough math to do anything interesting of that type. So I'm not surprised I can't remember any programs I wrote, because they can't have done much. My clearest memory is of the moment I learned it was possible for programs not to terminate, when one of mine didn't. On a machine without time-sharing, this was a social as well as a technical error, as the data center manager's expression made clear.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2cae8c4f-333e-4615-8808-6e9ab6f79097', wins=1), 'd0f65811-4213-4ff8-bf54-07ee86007f73': Node(page_content='With microcomputers, everything changed. Now you could have a computer sitting right in front of you, on a desk, that could respond to your keystrokes as it was running instead of just churning through a stack of punch cards and then stopping. [1]\\n\\nThe first of my friends to get a microcomputer built it himself. It was sold as a kit by Heathkit. I remember vividly how impressed and envious I felt watching him sitting in front of it, typing programs right into the computer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d0f65811-4213-4ff8-bf54-07ee86007f73'), '0cc36135-748a-47b8-9a05-cf6d0a8ea13b': Node(page_content=\"Computers were expensive in those days and it took me years of nagging before I convinced my father to buy one, a TRS-80, in about 1980. The gold standard then was the Apple II, but a TRS-80 was good enough. This was when I really started programming. I wrote simple games, a program to predict how high my model rockets would fly, and a word processor that my father used to write at least one book. There was only room in memory for about 2 pages of text, so he'd write 2 pages at a time and then print them out, but it was a lot better than a typewriter.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0cc36135-748a-47b8-9a05-cf6d0a8ea13b', wins=1), '8ced309b-74f2-4240-917b-e28b30dc433b': Node(page_content=\"Though I liked programming, I didn't plan to study it in college. In college I was going to study philosophy, which sounded much more powerful. It seemed, to my naive high school self, to be the study of the ultimate truths, compared to which the things studied in other fields would be mere domain knowledge. What I discovered when I got to college was that the other fields took up so much of the space of ideas that there wasn't much left for these supposed ultimate truths. All that seemed left for philosophy were edge cases that people in other fields felt could safely be ignored.\\n\\nI couldn't have put this into words when I was 18. All I knew at the time was that I kept taking philosophy courses and they kept being boring. So I decided to switch to AI.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8ced309b-74f2-4240-917b-e28b30dc433b'), '01436d32-d282-4de9-9b73-7faec7d1b772': Node(page_content=\"AI was in the air in the mid 1980s, but there were two things especially that made me want to work on it: a novel by Heinlein called The Moon is a Harsh Mistress, which featured an intelligent computer called Mike, and a PBS documentary that showed Terry Winograd using SHRDLU. I haven't tried rereading The Moon is a Harsh Mistress, so I don't know how well it has aged, but when I read it I was drawn entirely into its world. It seemed only a matter of time before we'd have Mike, and when I saw Winograd using SHRDLU, it seemed like that time would be a few years at most. All you had to do was teach SHRDLU more words.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01436d32-d282-4de9-9b73-7faec7d1b772'), 'c7dd7bbf-08ac-408f-b975-8274b58b91ca': Node(page_content=\"There weren't any classes in AI at Cornell then, not even graduate classes, so I started trying to teach myself. Which meant learning Lisp, since in those days Lisp was regarded as the language of AI. The commonly used programming languages then were pretty primitive, and programmers' ideas correspondingly so. The default language at Cornell was a Pascal-like language called PL/I, and the situation was similar elsewhere. Learning Lisp expanded my concept of a program so fast that it was years before I started to have a sense of where the new limits were. This was more like it; this was what I had expected college to do. It wasn't happening in a class, like it was supposed to, but that was ok. For the next couple years I was on a roll. I knew what I was going to do.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c7dd7bbf-08ac-408f-b975-8274b58b91ca'), 'd7d640a0-9b5e-4e18-a7fe-7655b8ae5979': Node(page_content='For my undergraduate thesis, I reverse-engineered SHRDLU. My God did I love working on that program. It was a pleasing bit of code, but what made it even more exciting was my belief — hard to imagine now, but not unique in 1985 — that it was already climbing the lower slopes of intelligence.\\n\\nI had gotten into a program at Cornell that didn\\'t make you choose a major. You could take whatever classes you liked, and choose whatever you liked to put on your degree. I of course chose \"Artificial Intelligence.\" When I got the actual physical diploma, I was dismayed to find that the quotes had been included, which made them read as scare-quotes. At the time this bothered me, but now it seems amusingly accurate, for reasons I was about to discover.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d7d640a0-9b5e-4e18-a7fe-7655b8ae5979'), '90c72e6c-8c79-4feb-86ae-f8f685cf5e7c': Node(page_content='I applied to 3 grad schools: MIT and Yale, which were renowned for AI at the time, and Harvard, which I\\'d visited because Rich Draves went there, and was also home to Bill Woods, who\\'d invented the type of parser I used in my SHRDLU clone. Only Harvard accepted me, so that was where I went.\\n\\nI don\\'t remember the moment it happened, or if there even was a specific moment, but during the first year of grad school I realized that AI, as practiced at the time, was a hoax. By which I mean the sort of AI in which a program that\\'s told \"the dog is sitting on the chair\" translates this into some formal representation and adds it to the list of things it knows.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='90c72e6c-8c79-4feb-86ae-f8f685cf5e7c'), 'd5b018a6-f262-4758-b059-4da34cd51a58': Node(page_content=\"What these programs really showed was that there's a subset of natural language that's a formal language. But a very proper subset. It was clear that there was an unbridgeable gap between what they could do and actually understanding natural language. It was not, in fact, simply a matter of teaching SHRDLU more words. That whole way of doing AI, with explicit data structures representing concepts, was not going to work. Its brokenness did, as so often happens, generate a lot of opportunities to write papers about various band-aids that could be applied to it, but it was never going to get us Mike.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d5b018a6-f262-4758-b059-4da34cd51a58'), 'd52b4a20-0c6f-455d-9362-e99f3f87f0b4': Node(page_content=\"So I looked around to see what I could salvage from the wreckage of my plans, and there was Lisp. I knew from experience that Lisp was interesting for its own sake and not just for its association with AI, even though that was the main reason people cared about it at the time. So I decided to focus on Lisp. In fact, I decided to write a book about Lisp hacking. It's scary to think how little I knew about Lisp hacking when I started writing that book. But there's nothing like writing a book about something to help you learn it. The book, On Lisp, wasn't published till 1993, but I wrote much of it in grad school.\\n\\nComputer Science is an uneasy alliance between two halves, theory and systems. The theory people prove things, and the systems people build things. I wanted to build things. I had plenty of respect for theory — indeed, a sneaking suspicion that it was the more admirable of the two halves — but building things seemed so much more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d52b4a20-0c6f-455d-9362-e99f3f87f0b4'), 'a7e3201d-8d1c-4f50-87cc-0674b17ce7c8': Node(page_content=\"The problem with systems work, though, was that it didn't last. Any program you wrote today, no matter how good, would be obsolete in a couple decades at best. People might mention your software in footnotes, but no one would actually use it. And indeed, it would seem very feeble work. Only people with a sense of the history of the field would even realize that, in its time, it had been good.\\n\\nThere were some surplus Xerox Dandelions floating around the computer lab at one point. Anyone who wanted one to play around with could have one. I was briefly tempted, but they were so slow by present standards; what was the point? No one else wanted one either, so off they went. That was what happened to systems work.\\n\\nI wanted not just to build things, but to build things that would last.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a7e3201d-8d1c-4f50-87cc-0674b17ce7c8'), '88ce0eef-afcd-4066-b99a-ab84ade3eb18': Node(page_content=\"In this dissatisfied state I went in 1988 to visit Rich Draves at CMU, where he was in grad school. One day I went to visit the Carnegie Institute, where I'd spent a lot of time as a kid. While looking at a painting there I realized something that might seem obvious, but was a big surprise to me. There, right on the wall, was something you could make that would last. Paintings didn't become obsolete. Some of the best ones were hundreds of years old.\\n\\nAnd moreover this was something you could make a living doing. Not as easily as you could by writing software, of course, but I thought if you were really industrious and lived really cheaply, it had to be possible to make enough to survive. And as an artist you could be truly independent. You wouldn't have a boss, or even need to get research funding.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='88ce0eef-afcd-4066-b99a-ab84ade3eb18'), '9f8eaf30-eedb-4747-97bb-c5c699392270': Node(page_content=\"I had always liked looking at paintings. Could I make them? I had no idea. I'd never imagined it was even possible. I knew intellectually that people made art — that it didn't just appear spontaneously — but it was as if the people who made it were a different species. They either lived long ago or were mysterious geniuses doing strange things in profiles in Life magazine. The idea of actually being able to make art, to put that verb before that noun, seemed almost miraculous.\\n\\nThat fall I started taking art classes at Harvard. Grad students could take classes in any department, and my advisor, Tom Cheatham, was very easy going. If he even knew about the strange classes I was taking, he never said anything.\\n\\nSo now I was in a PhD program in computer science, yet planning to be an artist, yet also genuinely in love with Lisp hacking and working away at On Lisp. In other words, like many a grad student, I was working energetically on multiple projects that were not my thesis.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f8eaf30-eedb-4747-97bb-c5c699392270'), 'c14d29a3-c37e-4821-ae34-c407c6676ee1': Node(page_content='I didn\\'t see a way out of this situation. I didn\\'t want to drop out of grad school, but how else was I going to get out? I remember when my friend Robert Morris got kicked out of Cornell for writing the internet worm of 1988, I was envious that he\\'d found such a spectacular way to get out of grad school.\\n\\nThen one day in April 1990 a crack appeared in the wall. I ran into professor Cheatham and he asked if I was far enough along to graduate that June. I didn\\'t have a word of my dissertation written, but in what must have been the quickest bit of thinking in my life, I decided to take a shot at writing one in the 5 weeks or so that remained before the deadline, reusing parts of On Lisp where I could, and I was able to respond, with no perceptible delay \"Yes, I think so. I\\'ll give you something to read in a few days.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c14d29a3-c37e-4821-ae34-c407c6676ee1'), '48b6ee95-ea42-4980-9ad5-1dd6a2062500': Node(page_content=\"I picked applications of continuations as the topic. In retrospect I should have written about macros and embedded languages. There's a whole world there that's barely been explored. But all I wanted was to get out of grad school, and my rapidly written dissertation sufficed, just barely.\\n\\nMeanwhile I was applying to art schools. I applied to two: RISD in the US, and the Accademia di Belli Arti in Florence, which, because it was the oldest art school, I imagined would be good. RISD accepted me, and I never heard back from the Accademia, so off to Providence I went.\\n\\nI'd applied for the BFA program at RISD, which meant in effect that I had to go to college again. This was not as strange as it sounds, because I was only 25, and art schools are full of people of different ages. RISD counted me as a transfer sophomore and said I had to do the foundation that summer. The foundation means the classes that everyone has to take in fundamental subjects like drawing, color, and design.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='48b6ee95-ea42-4980-9ad5-1dd6a2062500'), '92b5cdd8-6d6d-4d9c-9510-48a3096427b8': Node(page_content=\"Toward the end of the summer I got a big surprise: a letter from the Accademia, which had been delayed because they'd sent it to Cambridge England instead of Cambridge Massachusetts, inviting me to take the entrance exam in Florence that fall. This was now only weeks away. My nice landlady let me leave my stuff in her attic. I had some money saved from consulting work I'd done in grad school; there was probably enough to last a year if I lived cheaply. Now all I had to do was learn Italian.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='92b5cdd8-6d6d-4d9c-9510-48a3096427b8'), '01fdd3e3-243a-4e82-9c18-5d7492d029c1': Node(page_content=\"Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01fdd3e3-243a-4e82-9c18-5d7492d029c1', wins=1), '0f488de3-2fec-444b-9cd1-58ffd491a687': Node(page_content=\"I'm only up to age 25 and already there are such conspicuous patterns. Here I was, yet again about to attend some august institution in the hopes of learning about some prestigious subject, and yet again about to be disappointed. The students and faculty in the painting department at the Accademia were the nicest people you could imagine, but they had long since arrived at an arrangement whereby the students wouldn't require the faculty to teach anything, and in return the faculty wouldn't require the students to learn anything. And at the same time all involved would adhere outwardly to the conventions of a 19th century atelier. We actually had one of those little stoves, fed with kindling, that you see in 19th century studio paintings, and a nude model sitting as close to it as possible without getting burned. Except hardly anyone else painted her besides me. The rest of the students spent their time chatting or occasionally trying to imitate things they'd seen in American art magazines.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f488de3-2fec-444b-9cd1-58ffd491a687'), 'e8486722-e708-4b69-a5ef-1469253415c8': Node(page_content=\"Our model turned out to live just down the street from me. She made a living from a combination of modelling and making fakes for a local antique dealer. She'd copy an obscure old painting out of a book, and then he'd take the copy and maltreat it to make it look old. [3]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e8486722-e708-4b69-a5ef-1469253415c8'), 'c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee': Node(page_content=\"While I was a student at the Accademia I started painting still lives in my bedroom at night. These paintings were tiny, because the room was, and because I painted them on leftover scraps of canvas, which was all I could afford at the time. Painting still lives is different from painting people, because the subject, as its name suggests, can't move. People can't sit for more than about 15 minutes at a time, and when they do they don't sit very still. So the traditional m.o. for painting people is to know how to paint a generic person, which you then modify to match the specific person you're painting. Whereas a still life you can, if you want, copy pixel by pixel from what you're seeing. You don't want to stop there, of course, or you get merely photographic accuracy, and what makes a still life interesting is that it's been through a head. You want to emphasize the visual cues that tell you, for example, that the reason the color changes suddenly at a certain point is that it's the edge of an object. By\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee'), '00ad760e-6fbb-43ca-a51c-519425b2aaff': Node(page_content='of an object. By subtly emphasizing such things you can make paintings that are more realistic than photographs not just in some metaphorical sense, but in the strict information-theoretic sense. [4]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='00ad760e-6fbb-43ca-a51c-519425b2aaff'), 'f7f0e91c-4312-46dc-b4d1-ff380e0f7227': Node(page_content='I liked painting still lives because I was curious about what I was seeing. In everyday life, we aren\\'t consciously aware of much we\\'re seeing. Most visual perception is handled by low-level processes that merely tell your brain \"that\\'s a water droplet\" without telling you details like where the lightest and darkest points are, or \"that\\'s a bush\" without telling you the shape and position of every leaf. This is a feature of brains, not a bug. In everyday life it would be distracting to notice every leaf on every bush. But when you have to paint something, you have to look more closely, and when you do there\\'s a lot to see. You can still be noticing new things after days of trying to paint something people usually take for granted, just as you can after days of trying to write an essay about something people usually take for granted.\\n\\nThis is not the only way to paint. I\\'m not 100% sure it\\'s even a good way to paint. But it seemed a good enough bet to be worth trying.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f7f0e91c-4312-46dc-b4d1-ff380e0f7227'), '395264d3-3625-46d0-8636-110e597f48b7': Node(page_content=\"Our teacher, professor Ulivi, was a nice guy. He could see I worked hard, and gave me a good grade, which he wrote down in a sort of passport each student had. But the Accademia wasn't teaching me anything except Italian, and my money was running out, so at the end of the first year I went back to the US.\\n\\nI wanted to go back to RISD, but I was now broke and RISD was very expensive, so I decided to get a job for a year and then return to RISD the next fall. I got one at a company called Interleaf, which made software for creating documents. You mean like Microsoft Word? Exactly. That was how I learned that low end software tends to eat high end software. But Interleaf still had a few years to live yet. [5]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='395264d3-3625-46d0-8636-110e597f48b7'), '32082230-290a-46db-a914-19f705defd46': Node(page_content=\"Interleaf had done something pretty bold. Inspired by Emacs, they'd added a scripting language, and even made the scripting language a dialect of Lisp. Now they wanted a Lisp hacker to write things in it. This was the closest thing I've had to a normal job, and I hereby apologize to my boss and coworkers, because I was a bad employee. Their Lisp was the thinnest icing on a giant C cake, and since I didn't know C and didn't want to learn it, I never understood most of the software. Plus I was terribly irresponsible. This was back when a programming job meant showing up every day during certain working hours. That seemed unnatural to me, and on this point the rest of the world is coming around to my way of thinking, but at the time it caused a lot of friction. Toward the end of the year I spent much of my time surreptitiously working on On Lisp, which I had by this time gotten a contract to publish.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='32082230-290a-46db-a914-19f705defd46'), 'b102bff3-51da-44e2-9679-ed6445de3808': Node(page_content='The good part was that I got paid huge amounts of money, especially by art student standards. In Florence, after paying my part of the rent, my budget for everything else had been $7 a day. Now I was getting paid more than 4 times that every hour, even when I was just sitting in a meeting. By living cheaply I not only managed to save enough to go back to RISD, but also paid off my college loans.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='b102bff3-51da-44e2-9679-ed6445de3808'), '17ed5227-f4f7-4c2b-a28e-4265a141653e': Node(page_content=\"I learned some useful things at Interleaf, though they were mostly about what not to do. I learned that it's better for technology companies to be run by product people than sales people (though sales is a real skill and people who are good at it are really good at it), that it leads to bugs when code is edited by too many people, that cheap office space is no bargain if it's depressing, that planned meetings are inferior to corridor conversations, that big, bureaucratic customers are a dangerous source of money, and that there's not much overlap between conventional office hours and the optimal time for hacking, or conventional offices and the optimal place for it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='17ed5227-f4f7-4c2b-a28e-4265a141653e'), '03c17beb-1dbd-4c5a-9445-4d4f0c57379f': Node(page_content='But the most important thing I learned, and which I used in both Viaweb and Y Combinator, is that the low end eats the high end: that it\\'s good to be the \"entry level\" option, even though that will be less prestigious, because if you\\'re not, someone else will be, and will squash you against the ceiling. Which in turn means that prestige is a danger sign.\\n\\nWhen I left to go back to RISD the next fall, I arranged to do freelance work for the group that did projects for customers, and this was how I survived for the next several years. When I came back to visit for a project later on, someone told me about a new thing called HTML, which was, as he described it, a derivative of SGML. Markup language enthusiasts were an occupational hazard at Interleaf and I ignored him, but this HTML thing later became a big part of my life.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='03c17beb-1dbd-4c5a-9445-4d4f0c57379f'), 'ad27e028-f220-4b7e-a914-a2c67860e511': Node(page_content='In the fall of 1992 I moved back to Providence to continue at RISD. The foundation had merely been intro stuff, and the Accademia had been a (very civilized) joke. Now I was going to see what real art school was like. But alas it was more like the Accademia than not. Better organized, certainly, and a lot more expensive, but it was now becoming clear that art school did not bear the same relationship to art that medical school bore to medicine. At least not the painting department. The textile department, which my next door neighbor belonged to, seemed to be pretty rigorous. No doubt illustration and architecture were too. But painting was post-rigorous. Painting students were supposed to express themselves, which to the more worldly ones meant to try to cook up some sort of distinctive signature style.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad27e028-f220-4b7e-a914-a2c67860e511'), 'd996dddb-ee2a-4347-b6ff-0adf7c382d19': Node(page_content='A signature style is the visual equivalent of what in show business is known as a \"schtick\": something that immediately identifies the work as yours and no one else\\'s. For example, when you see a painting that looks like a certain kind of cartoon, you know it\\'s by Roy Lichtenstein. So if you see a big painting of this type hanging in the apartment of a hedge fund manager, you know he paid millions of dollars for it. That\\'s not always why artists have a signature style, but it\\'s usually why buyers pay a lot for such work. [6]\\n\\nThere were plenty of earnest students too: kids who \"could draw\" in high school, and now had come to what was supposed to be the best art school in the country, to learn to draw even better. They tended to be confused and demoralized by what they found at RISD, but they kept going, because painting was what they did. I was not one of the kids who could draw in high school, but at RISD I was definitely closer to their tribe than the tribe of signature style seekers.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d996dddb-ee2a-4347-b6ff-0adf7c382d19'), 'e6849fc6-388f-4476-905f-c07b44d846ff': Node(page_content=\"I learned a lot in the color class I took at RISD, but otherwise I was basically teaching myself to paint, and I could do that for free. So in 1993 I dropped out. I hung around Providence for a bit, and then my college friend Nancy Parmet did me a big favor. A rent-controlled apartment in a building her mother owned in New York was becoming vacant. Did I want it? It wasn't much more than my current place, and New York was supposed to be where the artists were. So yes, I wanted it! [7]\\n\\nAsterix comics begin by zooming in on a tiny corner of Roman Gaul that turns out not to be controlled by the Romans. You can do something similar on a map of New York City: if you zoom in on the Upper East Side, there's a tiny corner that's not rich, or at least wasn't in 1993. It's called Yorkville, and that was my new home. Now I was a New York artist — in the strictly technical sense of making paintings and living in New York.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6849fc6-388f-4476-905f-c07b44d846ff'), 'dd3809f5-9bbd-440d-b993-2b25e729584d': Node(page_content=\"I was nervous about money, because I could sense that Interleaf was on the way down. Freelance Lisp hacking work was very rare, and I didn't want to have to program in another language, which in those days would have meant C++ if I was lucky. So with my unerring nose for financial opportunity, I decided to write another book on Lisp. This would be a popular book, the sort of book that could be used as a textbook. I imagined myself living frugally off the royalties and spending all my time painting. (The painting on the cover of this book, ANSI Common Lisp, is one that I painted around this time.)\\n\\nThe best thing about New York for me was the presence of Idelle and Julian Weber. Idelle Weber was a painter, one of the early photorealists, and I'd taken her painting class at Harvard. I've never known a teacher more beloved by her students. Large numbers of former students kept in touch with her, including me. After I moved to New York I became her de facto studio assistant.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='dd3809f5-9bbd-440d-b993-2b25e729584d'), '6097a0d7-807d-4820-9ecd-7e8e373cc23d': Node(page_content=\"She liked to paint on big, square canvases, 4 to 5 feet on a side. One day in late 1994 as I was stretching one of these monsters there was something on the radio about a famous fund manager. He wasn't that much older than me, and was super rich. The thought suddenly occurred to me: why don't I become rich? Then I'll be able to work on whatever I want.\\n\\nMeanwhile I'd been hearing more and more about this new thing called the World Wide Web. Robert Morris showed it to me when I visited him in Cambridge, where he was now in grad school at Harvard. It seemed to me that the web would be a big deal. I'd seen what graphical user interfaces had done for the popularity of microcomputers. It seemed like the web would do the same for the internet.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6097a0d7-807d-4820-9ecd-7e8e373cc23d'), '8821373c-c593-4754-bce4-07fdf2b9bed1': Node(page_content=\"If I wanted to get rich, here was the next train leaving the station. I was right about that part. What I got wrong was the idea. I decided we should start a company to put art galleries online. I can't honestly say, after reading so many Y Combinator applications, that this was the worst startup idea ever, but it was up there. Art galleries didn't want to be online, and still don't, not the fancy ones. That's not how they sell. I wrote some software to generate web sites for galleries, and Robert wrote some to resize images and set up an http server to serve the pages. Then we tried to sign up galleries. To call this a difficult sale would be an understatement. It was difficult to give away. A few galleries let us make sites for them for free, but none paid us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8821373c-c593-4754-bce4-07fdf2b9bed1'), '5190c08b-1add-44df-a89c-71da5b21a81f': Node(page_content='Then some online stores started to appear, and I realized that except for the order buttons they were identical to the sites we\\'d been generating for galleries. This impressive-sounding thing called an \"internet storefront\" was something we already knew how to build.\\n\\nSo in the summer of 1995, after I submitted the camera-ready copy of ANSI Common Lisp to the publishers, we started trying to write software to build online stores. At first this was going to be normal desktop software, which in those days meant Windows software. That was an alarming prospect, because neither of us knew how to write Windows software or wanted to learn. We lived in the Unix world. But we decided we\\'d at least try writing a prototype store builder on Unix. Robert wrote a shopping cart, and I wrote a new site generator for stores — in Lisp, of course.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5190c08b-1add-44df-a89c-71da5b21a81f'), '0c153247-5ff8-48f7-bd31-5139f0fc7302': Node(page_content=\"We were working out of Robert's apartment in Cambridge. His roommate was away for big chunks of time, during which I got to sleep in his room. For some reason there was no bed frame or sheets, just a mattress on the floor. One morning as I was lying on this mattress I had an idea that made me sit up like a capital L. What if we ran the software on the server, and let users control it by clicking on links? Then we'd never have to write anything to run on users' computers. We could generate the sites on the same server we'd serve them from. Users wouldn't need anything more than a browser.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0c153247-5ff8-48f7-bd31-5139f0fc7302'), '4ed7e80d-dc07-49eb-8d99-cb33fb56d042': Node(page_content=\"This kind of software, known as a web app, is common now, but at the time it wasn't clear that it was even possible. To find out, we decided to try making a version of our store builder that you could control through the browser. A couple days later, on August 12, we had one that worked. The UI was horrible, but it proved you could build a whole store through the browser, without any client software or typing anything into the command line on the server.\\n\\nNow we felt like we were really onto something. I had visions of a whole new generation of software working this way. You wouldn't need versions, or ports, or any of that crap. At Interleaf there had been a whole group called Release Engineering that seemed to be at least as big as the group that actually wrote the software. Now you could just update the software right on the server.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='4ed7e80d-dc07-49eb-8d99-cb33fb56d042'), '1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e': Node(page_content=\"We started a new company we called Viaweb, after the fact that our software worked via the web, and we got $10,000 in seed funding from Idelle's husband Julian. In return for that and doing the initial legal work and giving us business advice, we gave him 10% of the company. Ten years later this deal became the model for Y Combinator's. We knew founders needed something like this, because we'd needed it ourselves.\\n\\nAt this stage I had a negative net worth, because the thousand dollars or so I had in the bank was more than counterbalanced by what I owed the government in taxes. (Had I diligently set aside the proper proportion of the money I'd made consulting for Interleaf? No, I had not.) So although Robert had his graduate student stipend, I needed that seed funding to live on.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e'), '1f39257d-0248-4959-b47d-f2447a171058': Node(page_content=\"We originally hoped to launch in September, but we got more ambitious about the software as we worked on it. Eventually we managed to build a WYSIWYG site builder, in the sense that as you were creating pages, they looked exactly like the static ones that would be generated later, except that instead of leading to static pages, the links all referred to closures stored in a hash table on the server.\\n\\nIt helped to have studied art, because the main goal of an online store builder is to make users look legit, and the key to looking legit is high production values. If you get page layouts and fonts and colors right, you can make a guy running a store out of his bedroom look more legit than a big company.\\n\\n(If you're curious why my site looks so old-fashioned, it's because it's still made with this software. It may look clunky today, but in 1996 it was the last word in slick.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1f39257d-0248-4959-b47d-f2447a171058'), 'a5d7623b-6552-4ca9-a712-8cb0986696fe': Node(page_content='In September, Robert rebelled. \"We\\'ve been working on this for a month,\" he said, \"and it\\'s still not done.\" This is funny in retrospect, because he would still be working on it almost 3 years later. But I decided it might be prudent to recruit more programmers, and I asked Robert who else in grad school with him was really good. He recommended Trevor Blackwell, which surprised me at first, because at that point I knew Trevor mainly for his plan to reduce everything in his life to a stack of notecards, which he carried around with him. But Rtm was right, as usual. Trevor turned out to be a frighteningly effective hacker.\\n\\nIt was a lot of fun working with Robert and Trevor. They\\'re the two most independent-minded people I know, and in completely different ways. If you could see inside Rtm\\'s brain it would look like a colonial New England church, and if you could see inside Trevor\\'s it would look like the worst excesses of Austrian Rococo.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a5d7623b-6552-4ca9-a712-8cb0986696fe'), '6e31fe4b-e85c-4ad7-a092-be367364b972': Node(page_content=\"We opened for business, with 6 stores, in January 1996. It was just as well we waited a few months, because although we worried we were late, we were actually almost fatally early. There was a lot of talk in the press then about ecommerce, but not many people actually wanted online stores. [8]\\n\\nThere were three main parts to the software: the editor, which people used to build sites and which I wrote, the shopping cart, which Robert wrote, and the manager, which kept track of orders and statistics, and which Trevor wrote. In its time, the editor was one of the best general-purpose site builders. I kept the code tight and didn't have to integrate with any other software except Robert's and Trevor's, so it was quite fun to work on. If all I'd had to do was work on this software, the next 3 years would have been the easiest of my life. Unfortunately I had to do a lot more, all of it stuff I was worse at than programming, and the next 3 years were instead the most stressful.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6e31fe4b-e85c-4ad7-a092-be367364b972', wins=1), '7a732a06-6878-41be-9947-1c07a23ea4a7': Node(page_content=\"There were a lot of startups making ecommerce software in the second half of the 90s. We were determined to be the Microsoft Word, not the Interleaf. Which meant being easy to use and inexpensive. It was lucky for us that we were poor, because that caused us to make Viaweb even more inexpensive than we realized. We charged $100 a month for a small store and $300 a month for a big one. This low price was a big attraction, and a constant thorn in the sides of competitors, but it wasn't because of some clever insight that we set the price low. We had no idea what businesses paid for things. $300 a month seemed like a lot of money to us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7a732a06-6878-41be-9947-1c07a23ea4a7'), '9f865fd1-57c6-4f67-ac9d-4f0d17bd751b': Node(page_content='We did a lot of things right by accident like that. For example, we did what\\'s now called \"doing things that don\\'t scale,\" although at the time we would have described it as \"being so lame that we\\'re driven to the most desperate measures to get users.\" The most common of which was building stores for them. This seemed particularly humiliating, since the whole raison d\\'etre of our software was that people could use it to make their own stores. But anything to get users.\\n\\nWe learned a lot more about retail than we wanted to know. For example, that if you could only have a small image of a man\\'s shirt (and all images were small then by present standards), it was better to have a closeup of the collar than a picture of the whole shirt. The reason I remember learning this was that it meant I had to rescan about 30 images of men\\'s shirts. My first set of scans were so beautiful too.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f865fd1-57c6-4f67-ac9d-4f0d17bd751b'), '0df392b3-eb59-4359-b340-6e211caa3aae': Node(page_content='Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we\\'d have so many users that I couldn\\'t scan their images for them, but in the meantime there was nothing more important to do.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0df392b3-eb59-4359-b340-6e211caa3aae', wins=1), 'd57da0e4-fee3-4442-aa88-7c461dc9c4b4': Node(page_content=\"Another thing I didn't get at the time is that growth rate is the ultimate test of a startup. Our growth rate was fine. We had about 70 stores at the end of 1996 and about 500 at the end of 1997. I mistakenly thought the thing that mattered was the absolute number of users. And that is the thing that matters in the sense that that's how much money you're making, and if you're not making enough, you might go out of business. But in the long term the growth rate takes care of the absolute number. If we'd been a startup I was advising at Y Combinator, I would have said: Stop being so stressed out, because you're doing fine. You're growing 7x a year. Just don't hire too many more people and you'll soon be profitable, and then you'll control your own destiny.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d57da0e4-fee3-4442-aa88-7c461dc9c4b4', wins=1), '9bc68607-b275-4e2e-877a-8b9f23e349c2': Node(page_content=\"Alas I hired lots more people, partly because our investors wanted me to, and partly because that's what startups did during the Internet Bubble. A company with just a handful of employees would have seemed amateurish. So we didn't reach breakeven until about when Yahoo bought us in the summer of 1998. Which in turn meant we were at the mercy of investors for the entire life of the company. And since both we and our investors were noobs at startups, the result was a mess even by startup standards.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9bc68607-b275-4e2e-877a-8b9f23e349c2'), '5d19d396-aa70-4bf0-992e-069c632de8ad': Node(page_content=\"It was a huge relief when Yahoo bought us. In principle our Viaweb stock was valuable. It was a share in a business that was profitable and growing rapidly. But it didn't feel very valuable to me; I had no idea how to value a business, but I was all too keenly aware of the near-death experiences we seemed to have every few months. Nor had I changed my grad student lifestyle significantly since we started. So when Yahoo bought us it felt like going from rags to riches. Since we were going to California, I bought a car, a yellow 1998 VW GTI. I remember thinking that its leather seats alone were by far the most luxurious thing I owned.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5d19d396-aa70-4bf0-992e-069c632de8ad'), '56272a9f-8b83-4b82-a1a2-598765c2b068': Node(page_content=\"The next year, from the summer of 1998 to the summer of 1999, must have been the least productive of my life. I didn't realize it at the time, but I was worn out from the effort and stress of running Viaweb. For a while after I got to California I tried to continue my usual m.o. of programming till 3 in the morning, but fatigue combined with Yahoo's prematurely aged culture and grim cube farm in Santa Clara gradually dragged me down. After a few months it felt disconcertingly like working at Interleaf.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='56272a9f-8b83-4b82-a1a2-598765c2b068'), 'fd511710-4a0b-4af9-834f-8c2d984a6dd0': Node(page_content=\"Yahoo had given us a lot of options when they bought us. At the time I thought Yahoo was so overvalued that they'd never be worth anything, but to my astonishment the stock went up 5x in the next year. I hung on till the first chunk of options vested, then in the summer of 1999 I left. It had been so long since I'd painted anything that I'd half forgotten why I was doing this. My brain had been entirely full of software and men's shirts for 4 years. But I had done this to get rich so I could paint, I reminded myself, and now I was rich, so I should go paint.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='fd511710-4a0b-4af9-834f-8c2d984a6dd0'), 'e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8': Node(page_content='When I said I was leaving, my boss at Yahoo had a long conversation with me about my plans. I told him all about the kinds of pictures I wanted to paint. At the time I was touched that he took such an interest in me. Now I realize it was because he thought I was lying. My options at that point were worth about $2 million a month. If I was leaving that kind of money on the table, it could only be to go and start some new startup, and if I did, I might take people with me. This was the height of the Internet Bubble, and Yahoo was ground zero of it. My boss was at that moment a billionaire. Leaving then to start a new startup must have seemed to him an insanely, and yet also plausibly, ambitious plan.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8'), '07e153a7-98c9-45f5-9873-0415175e5887': Node(page_content=\"But I really was quitting to paint, and I started immediately. There was no time to lose. I'd already burned 4 years getting rich. Now when I talk to founders who are leaving after selling their companies, my advice is always the same: take a vacation. That's what I should have done, just gone off somewhere and done nothing for a month or two, but the idea never occurred to me.\\n\\nSo I tried to paint, but I just didn't seem to have any energy or ambition. Part of the problem was that I didn't know many people in California. I'd compounded this problem by buying a house up in the Santa Cruz Mountains, with a beautiful view but miles from anywhere. I stuck it out for a few more months, then in desperation I went back to New York, where unless you understand about rent control you'll be surprised to hear I still had my apartment, sealed up like a tomb of my old life. Idelle was in New York at least, and there were other people trying to paint there, even though I didn't know any of them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='07e153a7-98c9-45f5-9873-0415175e5887'), 'e6f53cbc-6f54-4287-ad99-52473f5e3cfa': Node(page_content=\"When I got back to New York I resumed my old life, except now I was rich. It was as weird as it sounds. I resumed all my old patterns, except now there were doors where there hadn't been. Now when I was tired of walking, all I had to do was raise my hand, and (unless it was raining) a taxi would stop to pick me up. Now when I walked past charming little restaurants I could go in and order lunch. It was exciting for a while. Painting started to go better. I experimented with a new kind of still life where I'd paint one painting in the old way, then photograph it and print it, blown up, on canvas, and then use that as the underpainting for a second still life, painted from the same objects (which hopefully hadn't rotted yet).\\n\\nMeanwhile I looked for an apartment to buy. Now I could actually choose what neighborhood to live in. Where, I asked myself and various real estate agents, is the Cambridge of New York? Aided by occasional visits to actual Cambridge, I gradually realized there wasn't one. Huh.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6f53cbc-6f54-4287-ad99-52473f5e3cfa'), '209c154b-eaa4-4d0c-9ee3-9de983548416': Node(page_content='Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='209c154b-eaa4-4d0c-9ee3-9de983548416', wins=1), '725c5f11-2423-4e18-bc97-752009c281de': Node(page_content=\"I got so excited about this idea that I couldn't think about anything else. It seemed obvious that this was the future. I didn't particularly want to start another company, but it was clear that this idea would have to be embodied as one, so I decided to move to Cambridge and start it. I hoped to lure Robert into working on it with me, but there I ran into a hitch. Robert was now a postdoc at MIT, and though he'd made a lot of money the last time I'd lured him into working on one of my schemes, it had also been a huge time sink. So while he agreed that it sounded like a plausible idea, he firmly refused to work on it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='725c5f11-2423-4e18-bc97-752009c281de'), '9b17eb54-1f33-4904-bc1a-b18254f2f85a': Node(page_content='Hmph. Well, I\\'d do it myself then. I recruited Dan Giffin, who had worked for Viaweb, and two undergrads who wanted summer jobs, and we got to work trying to build what it\\'s now clear is about twenty companies and several open source projects worth of software. The language for defining applications would of course be a dialect of Lisp. But I wasn\\'t so naive as to assume I could spring an overt Lisp on a general audience; we\\'d hide the parentheses, like Dylan did.\\n\\nBy then there was a name for the kind of company Viaweb was, an \"application service provider,\" or ASP. This name didn\\'t last long before it was replaced by \"software as a service,\" but it was current for long enough that I named this new company after it: it was going to be called Aspra.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9b17eb54-1f33-4904-bc1a-b18254f2f85a', wins=1), '1185a7b9-b8da-441e-89b1-12b8a81c2502': Node(page_content=\"I started working on the application builder, Dan worked on network infrastructure, and the two undergrads worked on the first two services (images and phone calls). But about halfway through the summer I realized I really didn't want to run a company — especially not a big one, which it was looking like this would have to be. I'd only started Viaweb because I needed the money. Now that I didn't need money anymore, why was I doing this? If this vision had to be realized as a company, then screw the vision. I'd build a subset that could be done as an open source project.\\n\\nMuch to my surprise, the time I spent working on this stuff was not wasted after all. After we started Y Combinator, I would often encounter startups working on parts of this new architecture, and it was very useful to have spent so much time thinking about it and even trying to write some of it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1185a7b9-b8da-441e-89b1-12b8a81c2502', wins=1), '33017a92-fecc-4bf1-ae08-cc414c62cbf7': Node(page_content=\"The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='33017a92-fecc-4bf1-ae08-cc414c62cbf7'), 'a746d02f-1466-434d-addd-04b936502bec': Node(page_content=\"Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a746d02f-1466-434d-addd-04b936502bec', wins=1), 'ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881': Node(page_content=\"In the print era, the channel for publishing essays had been vanishingly small. Except for a few officially anointed thinkers who went to the right parties in New York, the only people allowed to publish essays were specialists writing about their specialties. There were so many essays that had never been written, because there had been no way to publish them. Now they could be, and I was going to write them. [12]\\n\\nI've worked on several different things, but to the extent there was a turning point where I figured out what to work on, it was when I started publishing essays online. From then on I knew that whatever else I did, I'd always write essays too.\\n\\nI knew that online essays would be a marginal medium at first. Socially they'd seem more like rants posted by nutjobs on their GeoCities sites than the genteel and beautifully typeset compositions published in The New Yorker. But by this point I knew enough to find that encouraging instead of discouraging.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881', wins=1), '836f9505-8112-4300-a484-655731655443': Node(page_content=\"One of the most conspicuous patterns I've noticed in my life is how well it has worked, for me at least, to work on things that weren't prestigious. Still life has always been the least prestigious form of painting. Viaweb and Y Combinator both seemed lame when we started them. I still get the glassy eye from strangers when they ask what I'm writing, and I explain that it's an essay I'm going to publish on my web site. Even Lisp, though prestigious intellectually in something like the way Latin is, also seems about as hip.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='836f9505-8112-4300-a484-655731655443'), 'ad36fb50-0350-45a4-925e-29f0980a9cba': Node(page_content=\"It's not that unprestigious types of work are good per se. But when you find yourself drawn to some kind of work despite its current lack of prestige, it's a sign both that there's something real to be discovered there, and that you have the right kind of motives. Impure motives are a big danger for the ambitious. If anything is going to lead you astray, it will be the desire to impress people. So while working on things that aren't prestigious doesn't guarantee you're on the right track, it at least guarantees you're not on the most common type of wrong one.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad36fb50-0350-45a4-925e-29f0980a9cba', wins=1), '271b9209-34c1-4eb9-a7d4-5c8cb047c3a7': Node(page_content=\"Over the next several years I wrote lots of essays about all kinds of different topics. O'Reilly reprinted a collection of them as a book, called Hackers & Painters after one of the essays in it. I also worked on spam filters, and did some more painting. I used to have dinners for a group of friends every thursday night, which taught me how to cook for groups. And I bought another building in Cambridge, a former candy factory (and later, twas said, porn studio), to use as an office.\\n\\nOne night in October 2003 there was a big party at my house. It was a clever idea of my friend Maria Daniels, who was one of the thursday diners. Three separate hosts would all invite their friends to one party. So for every guest, two thirds of the other guests would be people they didn't know but would probably like. One of the guests was someone I didn't know but would turn out to like a lot: a woman called Jessica Livingston. A couple days later I asked her out.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='271b9209-34c1-4eb9-a7d4-5c8cb047c3a7'), '7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc': Node(page_content='Jessica was in charge of marketing at a Boston investment bank. This bank thought it understood startups, but over the next year, as she met friends of mine from the startup world, she was surprised how different reality was. And how colorful their stories were. So she decided to compile a book of interviews with startup founders.\\n\\nWhen the bank had financial problems and she had to fire half her staff, she started looking for a new job. In early 2005 she interviewed for a marketing job at a Boston VC firm. It took them weeks to make up their minds, and during this time I started telling her about all the things that needed to be fixed about venture capital. They should make a larger number of smaller investments instead of a handful of giant ones, they should be funding younger, more technical founders instead of MBAs, they should let the founders remain as CEO, and so on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc'), 'ce520b00-c87c-4bfe-a179-0fa11c9d5273': Node(page_content=\"One of my tricks for writing essays had always been to give talks. The prospect of having to stand up in front of a group of people and tell them something that won't waste their time is a great spur to the imagination. When the Harvard Computer Society, the undergrad computer club, asked me to give a talk, I decided I would tell them how to start a startup. Maybe they'd be able to avoid the worst of the mistakes we'd made.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce520b00-c87c-4bfe-a179-0fa11c9d5273', wins=1), 'e9a82e89-0d8f-480b-9f26-1acfffaab9a1': Node(page_content='So I gave this talk, in the course of which I told them that the best sources of seed funding were successful startup founders, because then they\\'d be sources of advice too. Whereupon it seemed they were all looking expectantly at me. Horrified at the prospect of having my inbox flooded by business plans (if I\\'d only known), I blurted out \"But not me!\" and went on with the talk. But afterward it occurred to me that I should really stop procrastinating about angel investing. I\\'d been meaning to since Yahoo bought us, and now it was 7 years later and I still hadn\\'t done one angel investment.\\n\\nMeanwhile I had been scheming with Robert and Trevor about projects we could work on together. I missed working with them, and it seemed like there had to be something we could collaborate on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e9a82e89-0d8f-480b-9f26-1acfffaab9a1'), '073bc744-8e07-42e7-8595-39496927fe88': Node(page_content=\"As Jessica and I were walking home from dinner on March 11, at the corner of Garden and Walker streets, these three threads converged. Screw the VCs who were taking so long to make up their minds. We'd start our own investment firm and actually implement the ideas we'd been talking about. I'd fund it, and Jessica could quit her job and work for it, and we'd get Robert and Trevor as partners too. [13]\\n\\nOnce again, ignorance worked in our favor. We had no idea how to be angel investors, and in Boston in 2005 there were no Ron Conways to learn from. So we just made what seemed like the obvious choices, and some of the things we did turned out to be novel.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='073bc744-8e07-42e7-8595-39496927fe88'), '7ffe9bfd-9225-407c-9048-5ae1b0f25fc6': Node(page_content=\"There are multiple components to Y Combinator, and we didn't figure them all out at once. The part we got first was to be an angel firm. In those days, those two words didn't go together. There were VC firms, which were organized companies with people whose job it was to make investments, but they only did big, million dollar investments. And there were angels, who did smaller investments, but these were individuals who were usually focused on other things and made investments on the side. And neither of them helped founders enough in the beginning. We knew how helpless founders were in some respects, because we remembered how helpless we'd been. For example, one thing Julian had done for us that seemed to us like magic was to get us set up as a company. We were fine writing fairly difficult software, but actually getting incorporated, with bylaws and stock and all that stuff, how on earth did you do that? Our plan was not only to make seed investments, but to do for startups everything Julian had done for\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7ffe9bfd-9225-407c-9048-5ae1b0f25fc6'), '83ef6c3c-2575-48c1-bf79-8376e2afe2e1': Node(page_content='Julian had done for us.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='83ef6c3c-2575-48c1-bf79-8376e2afe2e1'), 'f4142432-6daa-4c6b-ad89-00e3712c373c': Node(page_content='YC was not organized as a fund. It was cheap enough to run that we funded it with our own money. That went right by 99% of readers, but professional investors are thinking \"Wow, that means they got all the returns.\" But once again, this was not due to any particular insight on our part. We didn\\'t know how VC firms were organized. It never occurred to us to try to raise a fund, and if it had, we wouldn\\'t have known where to start. [14]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f4142432-6daa-4c6b-ad89-00e3712c373c', wins=1), 'a4c983c2-a43c-49f6-9ca0-db73867728a9': Node(page_content=\"The most distinctive thing about YC is the batch model: to fund a bunch of startups all at once, twice a year, and then to spend three months focusing intensively on trying to help them. That part we discovered by accident, not merely implicitly but explicitly due to our ignorance about investing. We needed to get experience as investors. What better way, we thought, than to fund a whole bunch of startups at once? We knew undergrads got temporary jobs at tech companies during the summer. Why not organize a summer program where they'd start startups instead? We wouldn't feel guilty for being in a sense fake investors, because they would in a similar sense be fake founders. So while we probably wouldn't make much money out of it, we'd at least get to practice being investors on them, and they for their part would probably have a more interesting summer than they would working at Microsoft.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4c983c2-a43c-49f6-9ca0-db73867728a9', wins=1), '0198787d-a061-45f0-92d5-e45f6e7ae912': Node(page_content='We\\'d use the building I owned in Cambridge as our headquarters. We\\'d all have dinner there once a week — on tuesdays, since I was already cooking for the thursday diners on thursdays — and after dinner we\\'d bring in experts on startups to give talks.\\n\\nWe knew undergrads were deciding then about summer jobs, so in a matter of days we cooked up something we called the Summer Founders Program, and I posted an announcement on my site, inviting undergrads to apply. I had never imagined that writing essays would be a way to get \"deal flow,\" as investors call it, but it turned out to be the perfect source. [15] We got 225 applications for the Summer Founders Program, and we were surprised to find that a lot of them were from people who\\'d already graduated, or were about to that spring. Already this SFP thing was starting to feel more serious than we\\'d intended.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0198787d-a061-45f0-92d5-e45f6e7ae912'), '745dd18f-832f-4d1e-b688-319f7c617464': Node(page_content=\"We invited about 20 of the 225 groups to interview in person, and from those we picked 8 to fund. They were an impressive group. That first batch included reddit, Justin Kan and Emmett Shear, who went on to found Twitch, Aaron Swartz, who had already helped write the RSS spec and would a few years later become a martyr for open access, and Sam Altman, who would later become the second president of YC. I don't think it was entirely luck that the first batch was so good. You had to be pretty bold to sign up for a weird thing like the Summer Founders Program instead of a summer job at a legit place like Microsoft or Goldman Sachs.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='745dd18f-832f-4d1e-b688-319f7c617464'), 'bf8387d0-b094-4f59-8c13-ca1014ea67ac': Node(page_content='The deal for startups was based on a combination of the deal we did with Julian ($10k for 10%) and what Robert said MIT grad students got for the summer ($6k). We invested $6k per founder, which in the typical two-founder case was $12k, in return for 6%. That had to be fair, because it was twice as good as the deal we ourselves had taken. Plus that first summer, which was really hot, Jessica brought the founders free air conditioners. [16]\\n\\nFairly quickly I realized that we had stumbled upon the way to scale startup funding. Funding startups in batches was more convenient for us, because it meant we could do things for a lot of startups at once, but being part of a batch was better for the startups too. It solved one of the biggest problems faced by founders: the isolation. Now you not only had colleagues, but colleagues who understood the problems you were facing and could tell you how they were solving them.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='bf8387d0-b094-4f59-8c13-ca1014ea67ac'), '526ba90a-5223-4530-a966-baea4886bdc1': Node(page_content='As YC grew, we started to notice other advantages of scale. The alumni became a tight community, dedicated to helping one another, and especially the current batch, whose shoes they remembered being in. We also noticed that the startups were becoming one another\\'s customers. We used to refer jokingly to the \"YC GDP,\" but as YC grows this becomes less and less of a joke. Now lots of startups get their initial set of customers almost entirely from among their batchmates.\\n\\nI had not originally intended YC to be a full-time job. I was going to do three things: hack, write essays, and work on YC. As YC grew, and I grew more excited about it, it started to take up a lot more than a third of my attention. But for the first few years I was still able to work on other things.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='526ba90a-5223-4530-a966-baea4886bdc1', wins=1), 'aa1dfbc4-133a-4f2d-99fe-c0ebce320d09': Node(page_content=\"In the summer of 2006, Robert and I started working on a new version of Arc. This one was reasonably fast, because it was compiled into Scheme. To test this new Arc, I wrote Hacker News in it. It was originally meant to be a news aggregator for startup founders and was called Startup News, but after a few months I got tired of reading about nothing but startups. Plus it wasn't startup founders we wanted to reach. It was future startup founders. So I changed the name to Hacker News and the topic to whatever engaged one's intellectual curiosity.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='aa1dfbc4-133a-4f2d-99fe-c0ebce320d09'), 'c8505964-4597-440a-9044-033cf10ca40e': Node(page_content=\"HN was no doubt good for YC, but it was also by far the biggest source of stress for me. If all I'd had to do was select and help founders, life would have been so easy. And that implies that HN was a mistake. Surely the biggest source of stress in one's work should at least be something close to the core of the work. Whereas I was like someone who was in pain while running a marathon not from the exertion of running, but because I had a blister from an ill-fitting shoe. When I was dealing with some urgent problem during YC, there was about a 60% chance it had to do with HN, and a 40% chance it had do with everything else combined. [17]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c8505964-4597-440a-9044-033cf10ca40e'), '251faa7a-72ec-4bd9-ad69-1af024efbbc4': Node(page_content=\"As well as HN, I wrote all of YC's internal software in Arc. But while I continued to work a good deal in Arc, I gradually stopped working on Arc, partly because I didn't have time to, and partly because it was a lot less attractive to mess around with the language now that we had all this infrastructure depending on it. So now my three projects were reduced to two: writing essays and working on YC.\\n\\nYC was different from other kinds of work I've done. Instead of deciding for myself what to work on, the problems came to me. Every 6 months there was a new batch of startups, and their problems, whatever they were, became our problems. It was very engaging work, because their problems were quite varied, and the good founders were very effective. If you were trying to learn the most you could about startups in the shortest possible time, you couldn't have picked a better way to do it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='251faa7a-72ec-4bd9-ad69-1af024efbbc4'), '454a991d-29ac-4982-a8e5-72a02f0ef5a2': Node(page_content='There were parts of the job I didn\\'t like. Disputes between cofounders, figuring out when people were lying to us, fighting with people who maltreated the startups, and so on. But I worked hard even at the parts I didn\\'t like. I was haunted by something Kevin Hale once said about companies: \"No one works harder than the boss.\" He meant it both descriptively and prescriptively, and it was the second part that scared me. I wanted YC to be good, so if how hard I worked set the upper bound on how hard everyone else worked, I\\'d better work very hard.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='454a991d-29ac-4982-a8e5-72a02f0ef5a2'), 'edd1ff8d-62c3-4e10-95c6-6ef7b27a4531': Node(page_content='One day in 2010, when he was visiting California for interviews, Robert Morris did something astonishing: he offered me unsolicited advice. I can only remember him doing that once before. One day at Viaweb, when I was bent over double from a kidney stone, he suggested that it would be a good idea for him to take me to the hospital. That was what it took for Rtm to offer unsolicited advice. So I remember his exact words very clearly. \"You know,\" he said, \"you should make sure Y Combinator isn\\'t the last cool thing you do.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edd1ff8d-62c3-4e10-95c6-6ef7b27a4531'), '71c27b46-b79b-48ef-ad7e-3a0400ece844': Node(page_content=\"At the time I didn't understand what he meant, but gradually it dawned on me that he was saying I should quit. This seemed strange advice, because YC was doing great. But if there was one thing rarer than Rtm offering advice, it was Rtm being wrong. So this set me thinking. It was true that on my current trajectory, YC would be the last thing I did, because it was only taking up more of my attention. It had already eaten Arc, and was in the process of eating essays too. Either YC was my life's work or I'd have to leave eventually. And it wasn't, so I would.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='71c27b46-b79b-48ef-ad7e-3a0400ece844'), '949a121e-1e69-45a4-98cd-e7f7c47c8bf9': Node(page_content=\"In the summer of 2012 my mother had a stroke, and the cause turned out to be a blood clot caused by colon cancer. The stroke destroyed her balance, and she was put in a nursing home, but she really wanted to get out of it and back to her house, and my sister and I were determined to help her do it. I used to fly up to Oregon to visit her regularly, and I had a lot of time to think on those flights. On one of them I realized I was ready to hand YC over to someone else.\\n\\nI asked Jessica if she wanted to be president, but she didn't, so we decided we'd try to recruit Sam Altman. We talked to Robert and Trevor and we agreed to make it a complete changing of the guard. Up till that point YC had been controlled by the original LLC we four had started. But we wanted YC to last for a long time, and to do that it couldn't be controlled by the founders. So if Sam said yes, we'd let him reorganize YC. Robert and I would retire, and Jessica and Trevor would become ordinary partners.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='949a121e-1e69-45a4-98cd-e7f7c47c8bf9'), 'ee41cd68-792e-4ebf-aa6c-672740604a7e': Node(page_content=\"When we asked Sam if he wanted to be president of YC, initially he said no. He wanted to start a startup to make nuclear reactors. But I kept at it, and in October 2013 he finally agreed. We decided he'd take over starting with the winter 2014 batch. For the rest of 2013 I left running YC more and more to Sam, partly so he could learn the job, and partly because I was focused on my mother, whose cancer had returned.\\n\\nShe died on January 15, 2014. We knew this was coming, but it was still hard when it did.\\n\\nI kept working on YC till March, to help get that batch of startups through Demo Day, then I checked out pretty completely. (I still talk to alumni and to new startups working on things I'm interested in, but that only takes a few hours a week.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ee41cd68-792e-4ebf-aa6c-672740604a7e'), '70bcf8a8-1e2c-4cbd-a93f-ade0c453e437': Node(page_content=\"What should I do next? Rtm's advice hadn't included anything about that. I wanted to do something completely different, so I decided I'd paint. I wanted to see how good I could get if I really focused on it. So the day after I stopped working on YC, I started painting. I was rusty and it took a while to get back into shape, but it was at least completely engaging. [18]\\n\\nI spent most of the rest of 2014 painting. I'd never been able to work so uninterruptedly before, and I got to be better than I had been. Not good enough, but better. Then in November, right in the middle of a painting, I ran out of steam. Up till that point I'd always been curious to see how the painting I was working on would turn out, but suddenly finishing this one seemed like a chore. So I stopped working on it and cleaned my brushes and haven't painted since. So far anyway.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='70bcf8a8-1e2c-4cbd-a93f-ade0c453e437'), 'de347d59-7d93-4174-b095-30666d86c163': Node(page_content=\"I realize that sounds rather wimpy. But attention is a zero sum game. If you can choose what to work on, and you choose a project that's not the best one (or at least a good one) for you, then it's getting in the way of another project that is. And at 50 there was some opportunity cost to screwing around.\\n\\nI started writing essays again, and wrote a bunch of new ones over the next few months. I even wrote a couple that weren't about startups. Then in March 2015 I started working on Lisp again.\\n\\nThe distinctive thing about Lisp is that its core is a language defined by writing an interpreter in itself. It wasn't originally intended as a programming language in the ordinary sense. It was meant to be a formal model of computation, an alternative to the Turing machine. If you want to write an interpreter for a language in itself, what's the minimum set of predefined operators you need? The Lisp that John McCarthy invented, or more accurately discovered, is an answer to that question. [19]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='de347d59-7d93-4174-b095-30666d86c163'), 'd8717b54-2764-42ab-a7b9-7dc8f36ee9b4': Node(page_content=\"McCarthy didn't realize this Lisp could even be used to program computers till his grad student Steve Russell suggested it. Russell translated McCarthy's interpreter into IBM 704 machine language, and from that point Lisp started also to be a programming language in the ordinary sense. But its origins as a model of computation gave it a power and elegance that other languages couldn't match. It was this that attracted me in college, though I didn't understand why at the time.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d8717b54-2764-42ab-a7b9-7dc8f36ee9b4'), 'ab5cf714-67cb-4e35-a7a5-cef31b3093c2': Node(page_content=\"McCarthy's 1960 Lisp did nothing more than interpret Lisp expressions. It was missing a lot of things you'd want in a programming language. So these had to be added, and when they were, they weren't defined using McCarthy's original axiomatic approach. That wouldn't have been feasible at the time. McCarthy tested his interpreter by hand-simulating the execution of programs. But it was already getting close to the limit of interpreters you could test that way — indeed, there was a bug in it that McCarthy had overlooked. To test a more complicated interpreter, you'd have had to run it, and computers then weren't powerful enough.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ab5cf714-67cb-4e35-a7a5-cef31b3093c2'), 'ccc691c6-2730-445f-a301-3e6d29614239': Node(page_content=\"Now they are, though. Now you could continue using McCarthy's axiomatic approach till you'd defined a complete programming language. And as long as every change you made to McCarthy's Lisp was a discoveredness-preserving transformation, you could, in principle, end up with a complete language that had this quality. Harder to do than to talk about, of course, but if it was possible in principle, why not try? So I decided to take a shot at it. It took 4 years, from March 26, 2015 to October 12, 2019. It was fortunate that I had a precisely defined goal, or it would have been hard to keep at it for so long.\\n\\nI wrote this new Lisp, called Bel, in itself in Arc. That may sound like a contradiction, but it's an indication of the sort of trickery I had to engage in to make this work. By means of an egregious collection of hacks I managed to make something close enough to an interpreter written in itself that could actually run. Not fast, but fast enough to test.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ccc691c6-2730-445f-a301-3e6d29614239'), '6c6c1376-f7e2-4435-84ea-1324fd16912e': Node(page_content='I had to ban myself from writing essays during most of this time, or I\\'d never have finished. In late 2015 I spent 3 months writing essays, and when I went back to working on Bel I could barely understand the code. Not so much because it was badly written as because the problem is so convoluted. When you\\'re working on an interpreter written in itself, it\\'s hard to keep track of what\\'s happening at what level, and errors can be practically encrypted by the time you get them.\\n\\nSo I said no more essays till Bel was done. But I told few people about Bel while I was working on it. So for years it must have seemed that I was doing nothing, when in fact I was working harder than I\\'d ever worked on anything. Occasionally after wrestling for hours with some gruesome bug I\\'d check Twitter or HN and see someone asking \"Does Paul Graham still code?\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6c6c1376-f7e2-4435-84ea-1324fd16912e'), '0f927fda-431c-4163-9b61-6b3c9eff403b': Node(page_content=\"Working on Bel was hard but satisfying. I worked on it so intensively that at any given time I had a decent chunk of the code in my head and could write more there. I remember taking the boys to the coast on a sunny day in 2015 and figuring out how to deal with some problem involving continuations while I watched them play in the tide pools. It felt like I was doing life right. I remember that because I was slightly dismayed at how novel it felt. The good news is that I had more moments like this over the next few years.\\n\\nIn the summer of 2016 we moved to England. We wanted our kids to see what it was like living in another country, and since I was a British citizen by birth, that seemed the obvious choice. We only meant to stay for a year, but we liked it so much that we still live there. So most of Bel was written in England.\\n\\nIn the fall of 2019, Bel was finally finished. Like McCarthy's original Lisp, it's a spec rather than an implementation, although like McCarthy's Lisp it's a spec expressed as code.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f927fda-431c-4163-9b61-6b3c9eff403b'), '6af9ede9-1b89-44db-a81f-20ce45d1802a': Node(page_content=\"Now that I could write essays again, I wrote a bunch about topics I'd had stacked up. I kept writing essays through 2020, but I also started to think about other things I could work on. How should I choose what to do? Well, how had I chosen what to work on in the past? I wrote an essay for myself to answer that question, and I was surprised how long and messy the answer turned out to be. If this surprised me, who'd lived it, then I thought perhaps it would be interesting to other people, and encouraging to those with similarly messy lives. So I wrote a more detailed version for others to read, and this is the last sentence of it.\\n\\nNotes\\n\\n[1] My experience skipped a step in the evolution of computers: time-sharing machines with interactive OSes. I went straight from batch processing to microcomputers, which made microcomputers seem all the more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6af9ede9-1b89-44db-a81f-20ce45d1802a'), '67d6eed8-0267-4500-a3b2-8c7ed2ac83a6': Node(page_content=\"[2] Italian words for abstract concepts can nearly always be predicted from their English cognates (except for occasional traps like polluzione). It's the everyday words that differ. So if you string together a lot of abstract concepts with a few simple verbs, you can make a little Italian go a long way.\\n\\n[3] I lived at Piazza San Felice 4, so my walk to the Accademia went straight down the spine of old Florence: past the Pitti, across the bridge, past Orsanmichele, between the Duomo and the Baptistery, and then up Via Ricasoli to Piazza San Marco. I saw Florence at street level in every possible condition, from empty dark winter evenings to sweltering summer days when the streets were packed with tourists.\\n\\n[4] You can of course paint people like still lives if you want to, and they're willing. That sort of portrait is arguably the apex of still life painting, though the long sitting does tend to produce pained expressions in the sitters.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='67d6eed8-0267-4500-a3b2-8c7ed2ac83a6'), 'edacd5b2-60d6-434b-ac59-273dd42896e8': Node(page_content=\"[5] Interleaf was one of many companies that had smart people and built impressive technology, and yet got crushed by Moore's Law. In the 1990s the exponential growth in the power of commodity (i.e. Intel) processors rolled up high-end, special-purpose hardware and software companies like a bulldozer.\\n\\n[6] The signature style seekers at RISD weren't specifically mercenary. In the art world, money and coolness are tightly coupled. Anything expensive comes to be seen as cool, and anything seen as cool will soon become equally expensive.\\n\\n[7] Technically the apartment wasn't rent-controlled but rent-stabilized, but this is a refinement only New Yorkers would know or care about. The point is that it was really cheap, less than half market price.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edacd5b2-60d6-434b-ac59-273dd42896e8'), '46a2d3c9-dcd7-4d1d-a520-af1518532c01': Node(page_content=\"[8] Most software you can launch as soon as it's done. But when the software is an online store builder and you're hosting the stores, if you don't have any users yet, that fact will be painfully obvious. So before we could launch publicly we had to launch privately, in the sense of recruiting an initial set of users and making sure they had decent-looking stores.\\n\\n[9] We'd had a code editor in Viaweb for users to define their own page styles. They didn't know it, but they were editing Lisp expressions underneath. But this wasn't an app editor, because the code ran when the merchants' sites were generated, not when shoppers visited them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='46a2d3c9-dcd7-4d1d-a520-af1518532c01'), 'a4bd607d-62be-4ee7-a34d-3bd5305da820': Node(page_content=\"[10] This was the first instance of what is now a familiar experience, and so was what happened next, when I read the comments and found they were full of angry people. How could I claim that Lisp was better than other languages? Weren't they all Turing complete? People who see the responses to essays I write sometimes tell me how sorry they feel for me, but I'm not exaggerating when I reply that it has always been like this, since the very beginning. It comes with the territory. An essay must tell readers things they don't already know, and some people dislike being told such things.\\n\\n[11] People put plenty of stuff on the internet in the 90s of course, but putting something online is not the same as publishing it online. Publishing online means you treat the online version as the (or at least a) primary version.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4bd607d-62be-4ee7-a34d-3bd5305da820', wins=1), '6d435c9f-7f32-4be9-931b-854ce5d29546': Node(page_content=\"[12] There is a general lesson here that our experience with Y Combinator also teaches: Customs continue to constrain you long after the restrictions that caused them have disappeared. Customary VC practice had once, like the customs about publishing essays, been based on real constraints. Startups had once been much more expensive to start, and proportionally rare. Now they could be cheap and common, but the VCs' customs still reflected the old world, just as customs about writing essays still reflected the constraints of the print era.\\n\\nWhich in turn implies that people who are independent-minded (i.e. less influenced by custom) will have an advantage in fields affected by rapid change (where customs are more likely to be obsolete).\\n\\nHere's an interesting point, though: you can't always predict which fields will be affected by rapid change. Obviously software and venture capital will be, but who would have predicted that essay writing would be?\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6d435c9f-7f32-4be9-931b-854ce5d29546', wins=1), '522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e': Node(page_content=\"[13] Y Combinator was not the original name. At first we were called Cambridge Seed. But we didn't want a regional name, in case someone copied us in Silicon Valley, so we renamed ourselves after one of the coolest tricks in the lambda calculus, the Y combinator.\\n\\nI picked orange as our color partly because it's the warmest, and partly because no VC used it. In 2005 all the VCs used staid colors like maroon, navy blue, and forest green, because they were trying to appeal to LPs, not founders. The YC logo itself is an inside joke: the Viaweb logo had been a white V on a red circle, so I made the YC logo a white Y on an orange square.\\n\\n[14] YC did become a fund for a couple years starting in 2009, because it was getting so big I could no longer afford to fund it personally. But after Heroku got bought we had enough money to go back to being self-funded.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e', wins=1), '27b2bd1d-8de5-4424-ba1f-323592eaf441': Node(page_content='[15] I\\'ve never liked the term \"deal flow,\" because it implies that the number of new startups at any given time is fixed. This is not only false, but it\\'s the purpose of YC to falsify it, by causing startups to be founded that would not otherwise have existed.\\n\\n[16] She reports that they were all different shapes and sizes, because there was a run on air conditioners and she had to get whatever she could, but that they were all heavier than she could carry now.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='27b2bd1d-8de5-4424-ba1f-323592eaf441'), 'edabe432-0c59-4ba5-aa37-d5cddb072669': Node(page_content=\"[17] Another problem with HN was a bizarre edge case that occurs when you both write essays and run a forum. When you run a forum, you're assumed to see if not every conversation, at least every conversation involving you. And when you write essays, people post highly imaginative misinterpretations of them on forums. Individually these two phenomena are tedious but bearable, but the combination is disastrous. You actually have to respond to the misinterpretations, because the assumption that you're present in the conversation means that not responding to any sufficiently upvoted misinterpretation reads as a tacit admission that it's correct. But that in turn encourages more; anyone who wants to pick a fight with you senses that now is their chance.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edabe432-0c59-4ba5-aa37-d5cddb072669'), 'e508308d-e2bf-46db-a3c4-c98d86a7d9d4': Node(page_content=\"[18] The worst thing about leaving YC was not working with Jessica anymore. We'd been working on YC almost the whole time we'd known each other, and we'd neither tried nor wanted to separate it from our personal lives, so leaving was like pulling up a deeply rooted tree.\\n\\n[19] One way to get more precise about the concept of invented vs discovered is to talk about space aliens. Any sufficiently advanced alien civilization would certainly know about the Pythagorean theorem, for example. I believe, though with less certainty, that they would also know about the Lisp in McCarthy's 1960 paper.\\n\\nBut if so there's no reason to suppose that this is the limit of the language that might be known to them. Presumably aliens need numbers and errors and I/O too. So it seems likely there exists at least one path out of McCarthy's Lisp along which discoveredness is preserved.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e508308d-e2bf-46db-a3c4-c98d86a7d9d4'), 'cf0b9256-68dd-4e82-86f0-7a7464e0d0fe': Node(page_content='Thanks to Trevor Blackwell, John Collison, Patrick Collison, Daniel Gackle, Ralph Hazell, Jessica Livingston, Robert Morris, and Harj Taggar for reading drafts of this.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='cf0b9256-68dd-4e82-86f0-7a7464e0d0fe')}, run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), node_filter=NodeFilter(llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), threshold=1.5, context_scoring_prompt=Prompt(name='score_context', instruction='\\n Given a context, perform the following task and output the answer in VALID JSON format: Assess the provided context and assign a numerical score of 1 (Low), 2 (Medium), or 3 (High) for each of the following criteria in your JSON response:\\n\\nclarity: Evaluate the precision and understandability of the information presented. High scores (3) are reserved for contexts that are both precise in their information and easy to understand. Low scores (1) are for contexts where the information is vague or hard to comprehend.\\ndepth: Determine the level of detailed examination and the inclusion of innovative insights within the context. A high score indicates a comprehensive and insightful analysis, while a low score suggests a superficial treatment of the topic.\\nstructure: Assess how well the content is organized and whether it flows logically. High scores are awarded to contexts that demonstrate coherent organization and logical progression, whereas low scores indicate a lack of structure or clarity in progression.\\nrelevance: Judge the pertinence of the content to the main topic, awarding high scores to contexts tightly focused on the subject without unnecessary digressions, and low scores to those that are cluttered with irrelevant information.\\nStructure your JSON output to reflect these criteria as keys with their corresponding scores as values\\n ', output_format_instruction='The output should be a well-formatted JSON instance that conforms to the JSON schema below.\\n\\nAs an example, for the schema {\"properties\": {\"foo\": {\"title\": \"Foo\", \"description\": \"a list of strings\", \"type\": \"array\", \"items\": {\"type\": \"string\"}}}, \"required\": [\"foo\"]}\\nthe object {\"foo\": [\"bar\", \"baz\"]} is a well-formatted instance of the schema. The object {\"properties\": {\"foo\": [\"bar\", \"baz\"]}} is not well-formatted.\\n\\nHere is the output JSON schema:\\n```\\n{\"type\": \"object\", \"properties\": {\"clarity\": {\"title\": \"Clarity\", \"type\": \"integer\"}, \"depth\": {\"title\": \"Depth\", \"type\": \"integer\"}, \"structure\": {\"title\": \"Structure\", \"type\": \"integer\"}, \"relevance\": {\"title\": \"Relevance\", \"type\": \"integer\"}}, \"required\": [\"clarity\", \"depth\", \"structure\", \"relevance\"]}\\n```\\n\\nDo not return any preamble or explanations, return only a pure JSON string surrounded by triple backticks (```).', examples=[{'context': 'The Pythagorean theorem is a fundamental principle in geometry. It states that in a right-angled triangle, the square of the length of the hypotenuse (the side opposite the right angle) is equal to the sum of the squares of the lengths of the other two sides. This can be written as a^2 + b^2 = c^2 where c represents the length of the hypotenuse, and a and b represent the lengths of the other two sides.', 'output': {'clarity': 3, 'depth': 1, 'structure': 3, 'relevance': 3}}, {'context': 'Albert Einstein (14 March 1879 - 18 April 1955) was a German-born theoretical physicist who is widely held to be one of the greatest and most influential scientists of all time.', 'output': {'clarity': 3, 'depth': 2, 'structure': 3, 'relevance': 3}}, {'context': \"I love chocolate. It's really tasty. Oh, and by the way, the earth orbits the sun, not the other way around. Also, my favorite color is blue.\", 'output': {'clarity': 2, 'depth': 1, 'structure': 1, 'relevance': 1}}], input_keys=['context'], output_key='output', output_type='json', language='english')), question_filter=QuestionFilter(llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), filter_question_prompt=Prompt(name='filter_question', instruction='\\nAsses the given question for clarity and answerability given enough domain knowledge, consider the following criteria:\\n1.Independence: Can the question be understood and answered without needing additional context or access to external references not provided within the question itself? Questions should be self-contained, meaning they do not rely on specific documents, tables, or prior knowledge not shared within the question.\\n2.Clear Intent: Is it clear what type of answer or information the question seeks? The question should convey its purpose without ambiguity, allowing for a direct and relevant response.\\nBased on these criteria, assign a verdict of \"1\" if a question is specific, independent, and has a clear intent, making it understandable and answerable based on the details provided. Assign \"0\" if it fails to meet one or more of these criteria due to vagueness, reliance on external references, or ambiguity in intent.\\nProvide feedback and a verdict in JSON format, including suggestions for improvement if the question is deemed unclear. Highlight aspects of the question that contribute to its clarity or lack thereof, and offer advice on how it could be reframed or detailed for better understanding and answerability.\\n', output_format_instruction='The output should be a well-formatted JSON instance that conforms to the JSON schema below.\\n\\nAs an example, for the schema {\"properties\": {\"foo\": {\"title\": \"Foo\", \"description\": \"a list of strings\", \"type\": \"array\", \"items\": {\"type\": \"string\"}}}, \"required\": [\"foo\"]}\\nthe object {\"foo\": [\"bar\", \"baz\"]} is a well-formatted instance of the schema. The object {\"properties\": {\"foo\": [\"bar\", \"baz\"]}} is not well-formatted.\\n\\nHere is the output JSON schema:\\n```\\n{\"type\": \"object\", \"properties\": {\"feedback\": {\"title\": \"Feedback\", \"type\": \"string\"}, \"verdict\": {\"title\": \"Verdict\", \"type\": \"integer\"}}, \"required\": [\"feedback\", \"verdict\"]}\\n```\\n\\nDo not return any preamble or explanations, return only a pure JSON string surrounded by triple backticks (```).', examples=[{'question': 'What is the discovery about space?', 'output': {'feedback': \"The question is too vague and broad, asking for a 'discovery about space' without specifying any particular aspect, time frame, or context of interest. This could refer to a wide range of topics, from the discovery of new celestial bodies to advancements in space travel technology. To improve clarity and answerability, the question could specify the type of discovery (e.g., astronomical, technological), the time frame (e.g., recent, historical), or the context (e.g., within a specific research study or space mission).\", 'verdict': 0}}, {'question': \"How does ALMA-13B-R perform compared to other translation models in the WMT'23 study, based on the results in context1 and context2?\", 'output': {'feedback': \"This question asks for a comparison of the ALMA-13B-R model's performance against other translation models within the WMT'23 study, specifically referring to results in 'context1' and 'context2'. While it clearly specifies the model of interest (ALMA-13B-R) and the study (WMT'23), it assumes access to and understanding of 'context1' and 'context2' without explaining what these contexts entail. This makes the question unclear for those not familiar with the WMT'23 study or these specific contexts. To improve clarity and answerability for a broader audience, the question could benefit from defining or describing 'context1' and 'context2' or explaining the criteria used for comparison in these contexts.\", 'verdict': 0}}, {'question': 'How do KIWI-XXL and XCOMET compare to the gold standard references in Table 1 in terms of evaluation scores, translation model performance, and success rate in surpassing the references?', 'output': {'feedback': \"The question requests a comparison between KIWI-XXL and XCOMET models and gold standard references in 'Table 1', focusing on evaluation scores, translation model performance, and success rates in surpassing the references. It specifies the models and criteria for comparison, making the intent clear. However, the question assumes access to 'Table 1' without providing its content or context, making it unclear for those without direct access to the source material. To be clearer and more answerable for a general audience, the question could include a brief description of the content or key findings of 'Table 1', or alternatively, frame the question in a way that does not rely on specific, unpublished documents.\", 'verdict': 0}}, {'question': 'What is the configuration of UL2 training objective in OpenMoE and why is it a better choice for pre-training?', 'output': {'feedback': 'The question asks for the configuration of the UL2 training objective within the OpenMoE framework and the rationale behind its suitability for pre-training. It is clear in specifying the topic of interest (UL2 training objective, OpenMoE) and seeks detailed information on both the configuration and the reasons for its effectiveness in pre-training. However, the question might be challenging for those unfamiliar with the specific terminology or the context of OpenMoE and UL2. For broader clarity and answerability, it would be helpful if the question included a brief explanation or context about OpenMoE and the UL2 training objective, or clarified the aspects of pre-training effectiveness it refers to (e.g., efficiency, accuracy, generalization).', 'verdict': 1}}, {'question': 'What is the detailed configuration of the UL2 training objective in OpenMoE, based on the provided context?', 'output': {'feedback': \"The question seeks detailed information on the UL2 training objective's configuration within the OpenMoE framework, mentioning 'the provided context' without actually including or describing this context within the query. This makes the question unclear for those who do not have access to the unspecified context. For the question to be clear and answerable, it needs to either include the relevant context directly within the question or be framed in a way that does not require external information. Detailing the specific aspects of the configuration of interest (e.g., loss functions, data augmentation techniques) could also help clarify the query.\", 'verdict': 0}}], input_keys=['question'], output_key='output', output_type='json', language='english')), question_answer_prompt=Prompt(name='answer_formulate', instruction=\"Answer the question using the information from the given context. Output verdict as '1' if answer is present '-1' if answer is not present in the context.\", output_format_instruction='', examples=[{'context': 'Climate change is significantly influenced by human activities, notably the emission of greenhouse gases from burning fossil fuels. The increased greenhouse gas concentration in the atmosphere traps more heat, leading to global warming and changes in weather patterns.', 'question': 'How do human activities contribute to climate change?', 'answer': {'answer': 'Human activities contribute to climate change primarily through the emission of greenhouse gases from burning fossil fuels. These emissions increase the concentration of greenhouse gases in the atmosphere, which traps more heat and leads to global warming and altered weather patterns.', 'verdict': '1'}}, {'context': 'The concept of artificial intelligence (AI) has evolved over time, but it fundamentally refers to machines designed to mimic human cognitive functions. AI can learn, reason, perceive, and, in some instances, react like humans, making it pivotal in fields ranging from healthcare to autonomous vehicles.', 'question': 'What are the key capabilities of artificial intelligence?', 'answer': {'answer': 'Artificial intelligence is designed to mimic human cognitive functions, with key capabilities including learning, reasoning, perception, and reacting to the environment in a manner similar to humans. These capabilities make AI pivotal in various fields, including healthcare and autonomous driving.', 'verdict': '1'}}, {'context': 'The novel \"Pride and Prejudice\" by Jane Austen revolves around the character Elizabeth Bennet and her family. The story is set in the 19th century in rural England and deals with issues of marriage, morality, and misconceptions.', 'question': \"What year was 'Pride and Prejudice' published?\", 'answer': {'answer': 'The answer to given question is not present in context', 'verdict': '-1'}}], input_keys=['context', 'question'], output_key='answer', output_type='json', language='english'), find_relevant_context_prompt=Prompt(name='find_relevant_context', instruction='Given a question and set of contexts, find the most relevant contexts to answer the question.', output_format_instruction='', examples=[{'question': 'What is the capital of France?', 'contexts': ['1. France is a country in Western Europe. It has several cities, including Paris, Lyon, and Marseille. Paris is not only known for its cultural landmarks like the Eiffel Tower and the Louvre Museum but also as the administrative center.', '2. The capital of France is Paris. It is also the most populous city in France, with a population of over 2 million people. Paris is known for its cultural landmarks like the Eiffel Tower and the Louvre Museum.', '3. Paris is the capital of France. It is also the most populous city in France, with a population of over 2 million people. Paris is known for its cultural landmarks like the Eiffel Tower and the Louvre Museum.'], 'output': {'relevant_contexts': [1, 2]}}, {'question': 'How does caffeine affect the body and what are its common sources?', 'contexts': ['1. Caffeine is a central nervous system stimulant. It can temporarily ward off drowsiness and restore alertness. It primarily affects the brain, where it alters the function of neurotransmitters.', '2. Regular physical activity is essential for maintaining good health. It can help control weight, combat health conditions, boost energy, and promote better sleep.', '3. Common sources of caffeine include coffee, tea, cola, and energy drinks. These beverages are consumed worldwide and are known for providing a quick boost of energy.'], 'output': {'relevant_contexts': [1, 2]}}], input_keys=['question', 'contexts'], output_key='output', output_type='json', language='english'), rewrite_invalid_question_prompt=Prompt(name='rewrite_question', instruction='Given a context, question and feedback, rewrite the question to improve its clarity and answerability based on the feedback provided.', output_format_instruction='', examples=[{'context': \"The Eiffel Tower was constructed using iron and was originally intended as a temporary exhibit for the 1889 World's Fair held in Paris. Despite its initial temporary purpose, the Eiffel Tower quickly became a symbol of Parisian ingenuity and an iconic landmark of the city, attracting millions of visitors each year. The tower's design, created by Gustave Eiffel, was initially met with criticism from some French artists and intellectuals, but it has since been celebrated as a masterpiece of structural engineering and architectural design.\", 'question': 'Who created the design for the Tower?', 'feedback': \"The question asks about the creator of the design for 'the Tower', but it does not specify which tower it refers to. There are many towers worldwide, and without specifying the exact tower, the question is unclear and unanswerable. To improve the question, it should include the name or a clear description of the specific tower in question.\", 'output': 'Who created the design for the Eiffel Tower?'}, {'context': \"'Exploring Zero-Shot Learning in Neural Networks' was published by Smith and Lee in 2021, focusing on the application of zero-shot learning techniques in artificial intelligence.\", 'question': 'What datasets were used for the zero-shot evaluations in this study?', 'feedback': \"The question asks about the datasets used for zero-shot evaluations in 'this study', without specifying or providing any details about the study in question. This makes the question unclear for those who do not have access to or knowledge of the specific study. To improve clarity and answerability, the question should specify the study it refers to, or provide enough context about the study for the question to be understood and answered independently.\", 'output': 'What datasets were used for the zero-shot evaluations Exploring Zero-Shot Learning in Neural Networks paper?'}], input_keys=['context', 'question', 'feedback'], output_key='output', output_type='str', language='english'), max_tries=5, is_async=True, seed_question_prompt=Prompt(name='seed_question', instruction='Generate a question that can be fully answered from given context. The question should be formed using topic', output_format_instruction='', examples=[{'context': 'Photosynthesis in plants involves converting light energy into chemical energy, using chlorophyll and other pigments to absorb light. This process is crucial for plant growth and the production of oxygen.', 'keyphrase': 'Photosynthesis', 'question': 'What is the role of photosynthesis in plant growth?'}, {'context': 'The Industrial Revolution, starting in the 18th century, marked a major turning point in history as it led to the development of factories and urbanization.', 'keyphrase': 'Industrial Revolution', 'question': 'How did the Industrial Revolution mark a major turning point in history?'}, {'context': 'The process of evaporation plays a crucial role in the water cycle, converting water from liquid to vapor and allowing it to rise into the atmosphere.', 'keyphrase': 'Evaporation', 'question': 'Why is evaporation important in the water cycle?'}], input_keys=['context', 'keyphrase'], output_key='question', output_type='str', language='english'))\n", "max retries exceeded for SimpleEvolution(generator_llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), docstore=InMemoryDocumentStore(splitter=, nodes=[Node(page_content='How to Do Great Work\\n\\nJuly 2023\\n\\nIf you collected lists of techniques for doing great work in a lot of different fields, what would the intersection look like? I decided to find out by making it.\\n\\nPartly my goal was to create a guide that could be used by someone working in any field. But I was also curious about the shape of the intersection. And one thing this exercise shows is that it does have a definite shape; it\\'s not just a point labelled \"work hard.\"\\n\\nThe following recipe assumes you\\'re very ambitious.\\n\\nThe first step is to decide what to work on. The work you choose needs to have three qualities: it has to be something you have a natural aptitude for, that you have a deep interest in, and that offers scope to do great work.\\n\\nIn practice you don\\'t have to worry much about the third criterion. Ambitious people are if anything already too conservative about it. So all you need to do is find something you have an aptitude for and great interest in. [1]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5aca51fd-22c4-45c3-b7b3-50ed488de038'), Node(page_content='That sounds straightforward, but it\\'s often quite difficult. When you\\'re young you don\\'t know what you\\'re good at or what different kinds of work are like. Some kinds of work you end up doing may not even exist yet. So while some people know what they want to do at 14, most have to figure it out.\\n\\nThe way to figure out what to work on is by working. If you\\'re not sure what to work on, guess. But pick something and get going. You\\'ll probably guess wrong some of the time, but that\\'s fine. It\\'s good to know about multiple things; some of the biggest discoveries come from noticing connections between different fields.\\n\\nDevelop a habit of working on your own projects. Don\\'t let \"work\" mean something other people tell you to do. If you do manage to do great work one day, it will probably be on a project of your own. It may be within some bigger project, but you\\'ll be driving your part of it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ea8d692d-2d93-41a6-b814-721f8a0eba80', wins=1), Node(page_content=\"What should your projects be? Whatever seems to you excitingly ambitious. As you grow older and your taste in projects evolves, exciting and important will converge. At 7 it may seem excitingly ambitious to build huge things out of Lego, then at 14 to teach yourself calculus, till at 21 you're starting to explore unanswered questions in physics. But always preserve excitingness.\\n\\nThere's a kind of excited curiosity that's both the engine and the rudder of great work. It will not only drive you, but if you let it have its way, will also show you what to work on.\\n\\nWhat are you excessively curious about — curious to a degree that would bore most other people? That's what you're looking for.\\n\\nOnce you've found something you're excessively interested in, the next step is to learn enough about it to get you to one of the frontiers of knowledge. Knowledge expands fractally, and from a distance its edges look smooth, but once you learn enough to get close to one, they turn out to be full of gaps.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='defa86f2-201a-493b-9e51-4c52b6d22f82'), Node(page_content=\"The next step is to notice them. This takes some skill, because your brain wants to ignore such gaps in order to make a simpler model of the world. Many discoveries have come from asking questions about things that everyone else took for granted. [2]\\n\\nIf the answers seem strange, so much the better. Great work often has a tincture of strangeness. You see this from painting to math. It would be affected to try to manufacture it, but if it appears, embrace it.\\n\\nBoldly chase outlier ideas, even if other people aren't interested in them — in fact, especially if they aren't. If you're excited about some possibility that everyone else ignores, and you have enough expertise to say precisely what they're all overlooking, that's as good a bet as you'll find. [3]\\n\\nFour steps: choose a field, learn enough to get to the frontier, notice gaps, explore promising ones. This is how practically everyone who's done great work has done it, from painters to physicists.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7a41dd22-0f90-4920-9659-427308ab5374'), Node(page_content=\"Steps two and four will require hard work. It may not be possible to prove that you have to work hard to do great things, but the empirical evidence is on the scale of the evidence for mortality. That's why it's essential to work on something you're deeply interested in. Interest will drive you to work harder than mere diligence ever could.\\n\\nThe three most powerful motives are curiosity, delight, and the desire to do something impressive. Sometimes they converge, and that combination is the most powerful of all.\\n\\nThe big prize is to discover a new fractal bud. You notice a crack in the surface of knowledge, pry it open, and there's a whole world inside.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='fbe6561c-75ae-48bf-8f1e-285cae90085e'), Node(page_content=\"Let's talk a little more about the complicated business of figuring out what to work on. The main reason it's hard is that you can't tell what most kinds of work are like except by doing them. Which means the four steps overlap: you may have to work at something for years before you know how much you like it or how good you are at it. And in the meantime you're not doing, and thus not learning about, most other kinds of work. So in the worst case you choose late based on very incomplete information. [4]\\n\\nThe nature of ambition exacerbates this problem. Ambition comes in two forms, one that precedes interest in the subject and one that grows out of it. Most people who do great work have a mix, and the more you have of the former, the harder it will be to decide what to do.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e1a13047-9806-4639-a2a6-9404cfd2b86b'), Node(page_content=\"The educational systems in most countries pretend it's easy. They expect you to commit to a field long before you could know what it's really like. And as a result an ambitious person on an optimal trajectory will often read to the system as an instance of breakage.\\n\\nIt would be better if they at least admitted it — if they admitted that the system not only can't do much to help you figure out what to work on, but is designed on the assumption that you'll somehow magically guess as a teenager. They don't tell you, but I will: when it comes to figuring out what to work on, you're on your own. Some people get lucky and do guess correctly, but the rest will find themselves scrambling diagonally across tracks laid down on the assumption that everyone does.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd2f5b64-32e8-42f0-ba14-4f22a0d37803'), Node(page_content=\"What should you do if you're young and ambitious but don't know what to work on? What you should not do is drift along passively, assuming the problem will solve itself. You need to take action. But there is no systematic procedure you can follow. When you read biographies of people who've done great work, it's remarkable how much luck is involved. They discover what to work on as a result of a chance meeting, or by reading a book they happen to pick up. So you need to make yourself a big target for luck, and the way to do that is to be curious. Try lots of things, meet lots of people, read lots of books, ask lots of questions. [5]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ed92cc5f-6350-4ac8-9097-605342ed58f1', wins=1), Node(page_content=\"When in doubt, optimize for interestingness. Fields change as you learn more about them. What mathematicians do, for example, is very different from what you do in high school math classes. So you need to give different types of work a chance to show you what they're like. But a field should become increasingly interesting as you learn more about it. If it doesn't, it's probably not for you.\\n\\nDon't worry if you find you're interested in different things than other people. The stranger your tastes in interestingness, the better. Strange tastes are often strong ones, and a strong taste for work means you'll be productive. And you're more likely to find new things if you're looking where few have looked before.\\n\\nOne sign that you're suited for some kind of work is when you like even the parts that other people find tedious or frightening.\\n\\nBut fields aren't people; you don't owe them any loyalty. If in the course of working on one thing you discover another that's more exciting, don't be afraid to switch.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dbdc198-e1f6-446b-9b95-bbd6be77492e'), Node(page_content=\"If you're making something for people, make sure it's something they actually want. The best way to do this is to make something you yourself want. Write the story you want to read; build the tool you want to use. Since your friends probably have similar interests, this will also get you your initial audience.\\n\\nThis should follow from the excitingness rule. Obviously the most exciting story to write will be the one you want to read. The reason I mention this case explicitly is that so many people get it wrong. Instead of making what they want, they try to make what some imaginary, more sophisticated audience wants. And once you go down that route, you're lost. [6]\\n\\nThere are a lot of forces that will lead you astray when you're trying to figure out what to work on. Pretentiousness, fashion, fear, money, politics, other people's wishes, eminent frauds. But if you stick to what you find genuinely interesting, you'll be proof against all of them. If you're interested, you're not astray.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebd76502-a324-4fe9-86db-58b4f1184052'), Node(page_content=\"Following your interests may sound like a rather passive strategy, but in practice it usually means following them past all sorts of obstacles. You usually have to risk rejection and failure. So it does take a good deal of boldness.\\n\\nBut while you need boldness, you don't usually need much planning. In most cases the recipe for doing great work is simply: work hard on excitingly ambitious projects, and something good will come of it. Instead of making a plan and then executing it, you just try to preserve certain invariants.\\n\\nThe trouble with planning is that it only works for achievements you can describe in advance. You can win a gold medal or get rich by deciding to as a child and then tenaciously pursuing that goal, but you can't discover natural selection that way.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa'), Node(page_content='I think for most people who want to do great work, the right strategy is not to plan too much. At each stage do whatever seems most interesting and gives you the best options for the future. I call this approach \"staying upwind.\" This is how most people who\\'ve done great work seem to have done it.\\n\\nEven when you\\'ve found something exciting to work on, working on it is not always straightforward. There will be times when some new idea makes you leap out of bed in the morning and get straight to work. But there will also be plenty of times when things aren\\'t like that.\\n\\nYou don\\'t just put out your sail and get blown forward by inspiration. There are headwinds and currents and hidden shoals. So there\\'s a technique to working, just as there is to sailing.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2f6da706-f47d-4336-b3f6-78ff254eae9c'), Node(page_content=\"For example, while you must work hard, it's possible to work too hard, and if you do that you'll find you get diminishing returns: fatigue will make you stupid, and eventually even damage your health. The point at which work yields diminishing returns depends on the type. Some of the hardest types you might only be able to do for four or five hours a day.\\n\\nIdeally those hours will be contiguous. To the extent you can, try to arrange your life so you have big blocks of time to work in. You'll shy away from hard tasks if you know you might be interrupted.\\n\\nIt will probably be harder to start working than to keep working. You'll often have to trick yourself to get over that initial threshold. Don't worry about this; it's the nature of work, not a flaw in your character. Work has a sort of activation energy, both per day and per project. And since this threshold is fake in the sense that it's higher than the energy required to keep going, it's ok to tell yourself a lie of corresponding magnitude to get over it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='29ad26ae-8a90-4634-aff2-b4f662e421e0'), Node(page_content='It\\'s usually a mistake to lie to yourself if you want to do great work, but this is one of the rare cases where it isn\\'t. When I\\'m reluctant to start work in the morning, I often trick myself by saying \"I\\'ll just read over what I\\'ve got so far.\" Five minutes later I\\'ve found something that seems mistaken or incomplete, and I\\'m off.\\n\\nSimilar techniques work for starting new projects. It\\'s ok to lie to yourself about how much work a project will entail, for example. Lots of great things began with someone saying \"How hard could it be?\"\\n\\nThis is one case where the young have an advantage. They\\'re more optimistic, and even though one of the sources of their optimism is ignorance, in this case ignorance can sometimes beat knowledge.\\n\\nTry to finish what you start, though, even if it turns out to be more work than you expected. Finishing things is not just an exercise in tidiness or self-discipline. In many projects a lot of the best work happens in what was meant to be the final stage.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd668cf0-3881-44b4-ad84-628203f14f72'), Node(page_content=\"Another permissible lie is to exaggerate the importance of what you're working on, at least in your own mind. If that helps you discover something new, it may turn out not to have been a lie after all. [7]\\n\\nSince there are two senses of starting work — per day and per project — there are also two forms of procrastination. Per-project procrastination is far the more dangerous. You put off starting that ambitious project from year to year because the time isn't quite right. When you're procrastinating in units of years, you can get a lot not done. [8]\\n\\nOne reason per-project procrastination is so dangerous is that it usually camouflages itself as work. You're not just sitting around doing nothing; you're working industriously on something else. So per-project procrastination doesn't set off the alarms that per-day procrastination does. You're too busy to notice it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='25f94528-87d2-4c1a-9f75-3670e66aefd6'), Node(page_content=\"The way to beat it is to stop occasionally and ask yourself: Am I working on what I most want to work on? When you're young it's ok if the answer is sometimes no, but this gets increasingly dangerous as you get older. [9]\\n\\nGreat work usually entails spending what would seem to most people an unreasonable amount of time on a problem. You can't think of this time as a cost, or it will seem too high. You have to find the work sufficiently engaging as it's happening.\\n\\nThere may be some jobs where you have to work diligently for years at things you hate before you get to the good part, but this is not how great work happens. Great work happens by focusing consistently on something you're genuinely interested in. When you pause to take stock, you're surprised how far you've come.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7fae8eb9-3a0f-4651-9d30-3973508310f4'), Node(page_content=\"The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='1f84089c-1ae3-4652-9f00-ba02164c24d3', wins=1), Node(page_content=\"Something that grows exponentially can become so valuable that it's worth making an extraordinary effort to get it started. But since we underrate exponential growth early on, this too is mostly done unconsciously: people push through the initial, unrewarding phase of learning something new because they know from experience that learning new things always takes an initial push, or they grow their audience one fan at a time because they have nothing better to do. If people consciously realized they could invest in exponential growth, many more would do it.\\n\\nWork doesn't just happen when you're trying to. There's a kind of undirected thinking you do when walking or taking a shower or lying in bed that can be very powerful. By letting your mind wander a little, you'll often solve problems you were unable to solve by frontal attack.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='857bbce1-c4c8-4095-b9ac-c988d50addfc'), Node(page_content=\"You have to be working hard in the normal way to benefit from this phenomenon, though. You can't just walk around daydreaming. The daydreaming has to be interleaved with deliberate work that feeds it questions. [10]\\n\\nEveryone knows to avoid distractions at work, but it's also important to avoid them in the other half of the cycle. When you let your mind wander, it wanders to whatever you care about most at that moment. So avoid the kind of distraction that pushes your work out of the top spot, or you'll waste this valuable type of thinking on the distraction instead. (Exception: Don't avoid love.)\\n\\nConsciously cultivate your taste in the work done in your field. Until you know which is the best and what makes it so, you don't know what you're aiming for.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f41b7677-9e6c-46e2-92fd-993606e5835e'), Node(page_content=\"And that is what you're aiming for, because if you don't try to be the best, you won't even be good. This observation has been made by so many people in so many different fields that it might be worth thinking about why it's true. It could be because ambition is a phenomenon where almost all the error is in one direction — where almost all the shells that miss the target miss by falling short. Or it could be because ambition to be the best is a qualitatively different thing from ambition to be good. Or maybe being good is simply too vague a standard. Probably all three are true. [11]\\n\\nFortunately there's a kind of economy of scale here. Though it might seem like you'd be taking on a heavy burden by trying to be the best, in practice you often end up net ahead. It's exciting, and also strangely liberating. It simplifies things. In some ways it's easier to try to be the best than to try merely to be good.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cb188bc-4106-4204-a6c7-ea3752f34543'), Node(page_content=\"One way to aim high is to try to make something that people will care about in a hundred years. Not because their opinions matter more than your contemporaries', but because something that still seems good in a hundred years is more likely to be genuinely good.\\n\\nDon't try to work in a distinctive style. Just try to do the best job you can; you won't be able to help doing it in a distinctive way.\\n\\nStyle is doing things in a distinctive way without trying to. Trying to is affectation.\\n\\nAffectation is in effect to pretend that someone other than you is doing the work. You adopt an impressive but fake persona, and while you're pleased with the impressiveness, the fakeness is what shows in the work. [12]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b2c1b809-e821-452c-a352-4b82293e0d98'), Node(page_content='The temptation to be someone else is greatest for the young. They often feel like nobodies. But you never need to worry about that problem, because it\\'s self-solving if you work on sufficiently ambitious projects. If you succeed at an ambitious project, you\\'re not a nobody; you\\'re the person who did it. So just do the work and your identity will take care of itself.\\n\\n\"Avoid affectation\" is a useful rule so far as it goes, but how would you express this idea positively? How would you say what to be, instead of what not to be? The best answer is earnest. If you\\'re earnest you avoid not just affectation but a whole set of similar vices.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='a49d877b-69b4-4171-880a-9931fd094a4d'), Node(page_content=\"The core of being earnest is being intellectually honest. We're taught as children to be honest as an unselfish virtue — as a kind of sacrifice. But in fact it's a source of power too. To see new ideas, you need an exceptionally sharp eye for the truth. You're trying to see more truth than others have seen so far. And how can you have a sharp eye for the truth if you're intellectually dishonest?\\n\\nOne way to avoid intellectual dishonesty is to maintain a slight positive pressure in the opposite direction. Be aggressively willing to admit that you're mistaken. Once you've admitted you were mistaken about something, you're free. Till then you have to carry it. [13]\\n\\nAnother more subtle component of earnestness is informality. Informality is much more important than its grammatically negative name implies. It's not merely the absence of something. It means focusing on what matters instead of what doesn't.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88e2775e-93a9-47b0-a512-2fb4080c590b', wins=2), Node(page_content='What formality and affectation have in common is that as well as doing the work, you\\'re trying to seem a certain way as you\\'re doing it. But any energy that goes into how you seem comes out of being good. That\\'s one reason nerds have an advantage in doing great work: they expend little effort on seeming anything. In fact that\\'s basically the definition of a nerd.\\n\\nNerds have a kind of innocent boldness that\\'s exactly what you need in doing great work. It\\'s not learned; it\\'s preserved from childhood. So hold onto it. Be the one who puts things out there rather than the one who sits back and offers sophisticated-sounding criticisms of them. \"It\\'s easy to criticize\" is true in the most literal sense, and the route to great work is never easy.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6546e3fd-326b-413e-a345-374e27163847'), Node(page_content=\"There may be some jobs where it's an advantage to be cynical and pessimistic, but if you want to do great work it's an advantage to be optimistic, even though that means you'll risk looking like a fool sometimes. There's an old tradition of doing the opposite. The Old Testament says it's better to keep quiet lest you look like a fool. But that's advice for seeming smart. If you actually want to discover new things, it's better to take the risk of telling people your ideas.\\n\\nSome people are naturally earnest, and with others it takes a conscious effort. Either kind of earnestness will suffice. But I doubt it would be possible to do great work without being earnest. It's so hard to do even if you are. You don't have enough margin for error to accommodate the distortions introduced by being affected, intellectually dishonest, orthodox, fashionable, or cool. [14]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='531a5c72-e191-4563-863a-a797751b1fc6', wins=1), Node(page_content=\"Great work is consistent not only with who did it, but with itself. It's usually all of a piece. So if you face a decision in the middle of working on something, ask which choice is more consistent.\\n\\nYou may have to throw things away and redo them. You won't necessarily have to, but you have to be willing to. And that can take some effort; when there's something you need to redo, status quo bias and laziness will combine to keep you in denial about it. To beat this ask: If I'd already made the change, would I want to revert to what I have now?\\n\\nHave the confidence to cut. Don't keep something that doesn't fit just because you're proud of it, or because it cost you a lot of effort.\\n\\nIndeed, in some kinds of work it's good to strip whatever you're doing to its essence. The result will be more concentrated; you'll understand it better; and you won't be able to lie to yourself about whether there's anything real there.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c333306a-d7e5-4c78-b4ce-bebcee166ce5'), Node(page_content='Mathematical elegance may sound like a mere metaphor, drawn from the arts. That\\'s what I thought when I first heard the term \"elegant\" applied to a proof. But now I suspect it\\'s conceptually prior — that the main ingredient in artistic elegance is mathematical elegance. At any rate it\\'s a useful standard well beyond math.\\n\\nElegance can be a long-term bet, though. Laborious solutions will often have more prestige in the short term. They cost a lot of effort and they\\'re hard to understand, both of which impress people, at least temporarily.\\n\\nWhereas some of the very best work will seem like it took comparatively little effort, because it was in a sense already there. It didn\\'t have to be built, just seen. It\\'s a very good sign when it\\'s hard to say whether you\\'re creating something or discovering it.\\n\\nWhen you\\'re doing work that could be seen as either creation or discovery, err on the side of discovery. Try thinking of yourself as a mere conduit through which the ideas take their natural shape.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c75308b1-0b08-4e09-a009-df856bef3945', wins=1), Node(page_content=\"(Strangely enough, one exception is the problem of choosing a problem to work on. This is usually seen as search, but in the best case it's more like creating something. In the best case you create the field in the process of exploring it.)\\n\\nSimilarly, if you're trying to build a powerful tool, make it gratuitously unrestrictive. A powerful tool almost by definition will be used in ways you didn't expect, so err on the side of eliminating restrictions, even if you don't know what the benefit will be.\\n\\nGreat work will often be tool-like in the sense of being something others build on. So it's a good sign if you're creating ideas that others could use, or exposing questions that others could answer. The best ideas have implications in many different areas.\\n\\nIf you express your ideas in the most general form, they'll be truer than you intended.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4f2c5ade-5e17-4002-a1a4-2187f5d88171'), Node(page_content='True by itself is not enough, of course. Great ideas have to be true and new. And it takes a certain amount of ability to see new ideas even once you\\'ve learned enough to get to one of the frontiers of knowledge.\\n\\nIn English we give this ability names like originality, creativity, and imagination. And it seems reasonable to give it a separate name, because it does seem to some extent a separate skill. It\\'s possible to have a great deal of ability in other respects — to have a great deal of what\\'s often called \"technical ability\" — and yet not have much of this.\\n\\nI\\'ve never liked the term \"creative process.\" It seems misleading. Originality isn\\'t a process, but a habit of mind. Original thinkers throw off new ideas about whatever they focus on, like an angle grinder throwing off sparks. They can\\'t help it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='599933be-8cc7-47b3-9079-771faeffc324'), Node(page_content=\"If the thing they're focused on is something they don't understand very well, these new ideas might not be good. One of the most original thinkers I know decided to focus on dating after he got divorced. He knew roughly as much about dating as the average 15 year old, and the results were spectacularly colorful. But to see originality separated from expertise like that made its nature all the more clear.\\n\\nI don't know if it's possible to cultivate originality, but there are definitely ways to make the most of however much you have. For example, you're much more likely to have original ideas when you're working on something. Original ideas don't come from trying to have original ideas. They come from trying to build or understand something slightly too difficult. [15]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='df268d9c-bb83-4274-adec-131a05765453'), Node(page_content=\"Talking or writing about the things you're interested in is a good way to generate new ideas. When you try to put ideas into words, a missing idea creates a sort of vacuum that draws it out of you. Indeed, there's a kind of thinking that can only be done by writing.\\n\\nChanging your context can help. If you visit a new place, you'll often find you have new ideas there. The journey itself often dislodges them. But you may not have to go far to get this benefit. Sometimes it's enough just to go for a walk. [16]\\n\\nIt also helps to travel in topic space. You'll have more new ideas if you explore lots of different topics, partly because it gives the angle grinder more surface area to work on, and partly because analogies are an especially fruitful source of new ideas.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7390fd94-b307-468e-9888-4ba2fc15eb38'), Node(page_content=\"Don't divide your attention evenly between many topics though, or you'll spread yourself too thin. You want to distribute it according to something more like a power law. [17] Be professionally curious about a few topics and idly curious about many more.\\n\\nCuriosity and originality are closely related. Curiosity feeds originality by giving it new things to work on. But the relationship is closer than that. Curiosity is itself a kind of originality; it's roughly to questions what originality is to answers. And since questions at their best are a big component of answers, curiosity at its best is a creative force.\\n\\nHaving new ideas is a strange game, because it usually consists of seeing things that were right under your nose. Once you've seen a new idea, it tends to seem obvious. Why did no one think of this before?\\n\\nWhen an idea seems simultaneously novel and obvious, it's probably a good one.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b'), Node(page_content=\"Seeing something obvious sounds easy. And yet empirically having new ideas is hard. What's the source of this apparent contradiction? It's that seeing the new idea usually requires you to change the way you look at the world. We see the world through models that both help and constrain us. When you fix a broken model, new ideas become obvious. But noticing and fixing a broken model is hard. That's how new ideas can be both obvious and yet hard to discover: they're easy to see after you do something hard.\\n\\nOne way to discover broken models is to be stricter than other people. Broken models of the world leave a trail of clues where they bash against reality. Most people don't want to see these clues. It would be an understatement to say that they're attached to their current model; it's what they think in; so they'll tend to ignore the trail of clues left by its breakage, however conspicuous it may seem in retrospect.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6f83f951-f81a-4afc-9dbc-91e43bbaea88', wins=1), Node(page_content=\"To find new ideas you have to seize on signs of breakage instead of looking away. That's what Einstein did. He was able to see the wild implications of Maxwell's equations not so much because he was looking for new ideas as because he was stricter.\\n\\nThe other thing you need is a willingness to break rules. Paradoxical as it sounds, if you want to fix your model of the world, it helps to be the sort of person who's comfortable breaking rules. From the point of view of the old model, which everyone including you initially shares, the new model usually breaks at least implicit rules.\\n\\nFew understand the degree of rule-breaking required, because new ideas seem much more conservative once they succeed. They seem perfectly reasonable once you're using the new model of the world they brought with them. But they didn't at the time; it took the greater part of a century for the heliocentric model to be generally accepted, even among astronomers, because it felt so wrong.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c9a8c206-a7da-456c-82a6-635ab33aa7b3'), Node(page_content=\"Indeed, if you think about it, a good new idea has to seem bad to most people, or someone would have already explored it. So what you're looking for is ideas that seem crazy, but the right kind of crazy. How do you recognize these? You can't with certainty. Often ideas that seem bad are bad. But ideas that are the right kind of crazy tend to be exciting; they're rich in implications; whereas ideas that are merely bad tend to be depressing.\\n\\nThere are two ways to be comfortable breaking rules: to enjoy breaking them, and to be indifferent to them. I call these two cases being aggressively and passively independent-minded.\\n\\nThe aggressively independent-minded are the naughty ones. Rules don't merely fail to stop them; breaking rules gives them additional energy. For this sort of person, delight at the sheer audacity of a project sometimes supplies enough activation energy to get it started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f5be2dd9-c85c-418c-a716-eb0b78880cae'), Node(page_content=\"The other way to break rules is not to care about them, or perhaps even to know they exist. This is why novices and outsiders often make new discoveries; their ignorance of a field's assumptions acts as a source of temporary passive independent-mindedness. Aspies also seem to have a kind of immunity to conventional beliefs. Several I know say that this helps them to have new ideas.\\n\\nStrictness plus rule-breaking sounds like a strange combination. In popular culture they're opposed. But popular culture has a broken model in this respect. It implicitly assumes that issues are trivial ones, and in trivial matters strictness and rule-breaking are opposed. But in questions that really matter, only rule-breakers can be truly strict.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2362524-ba22-4fb7-8c77-d289a352850b'), Node(page_content=\"An overlooked idea often doesn't lose till the semifinals. You do see it, subconsciously, but then another part of your subconscious shoots it down because it would be too weird, too risky, too much work, too controversial. This suggests an exciting possibility: if you could turn off such filters, you could see more new ideas.\\n\\nOne way to do that is to ask what would be good ideas for someone else to explore. Then your subconscious won't shoot them down to protect you.\\n\\nYou could also discover overlooked ideas by working in the other direction: by starting from what's obscuring them. Every cherished but mistaken principle is surrounded by a dead zone of valuable ideas that are unexplored because they contradict it.\\n\\nReligions are collections of cherished but mistaken principles. So anything that can be described either literally or metaphorically as a religion will have valuable unexplored ideas in its shadow. Copernicus and Darwin both made discoveries of this type. [18]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='018ff54f-2f81-408b-8b62-20443ab66da9'), Node(page_content=\"What are people in your field religious about, in the sense of being too attached to some principle that might not be as self-evident as they think? What becomes possible if you discard it?\\n\\nPeople show much more originality in solving problems than in deciding which problems to solve. Even the smartest can be surprisingly conservative when deciding what to work on. People who'd never dream of being fashionable in any other way get sucked into working on fashionable problems.\\n\\nOne reason people are more conservative when choosing problems than solutions is that problems are bigger bets. A problem could occupy you for years, while exploring a solution might only take days. But even so I think most people are too conservative. They're not merely responding to risk, but to fashion as well. Unfashionable problems are undervalued.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88ff37b8-75c7-48aa-9441-f8cba80464b1'), Node(page_content=\"One of the most interesting kinds of unfashionable problem is the problem that people think has been fully explored, but hasn't. Great work often takes something that already exists and shows its latent potential. Durer and Watt both did this. So if you're interested in a field that others think is tapped out, don't let their skepticism deter you. People are often wrong about this.\\n\\nWorking on an unfashionable problem can be very pleasing. There's no hype or hurry. Opportunists and critics are both occupied elsewhere. The existing work often has an old-school solidity. And there's a satisfying sense of economy in cultivating ideas that would otherwise be wasted.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='963e48ca-37ea-4002-b0b2-78fa521f3597'), Node(page_content='But the most common type of overlooked problem is not explicitly unfashionable in the sense of being out of fashion. It just doesn\\'t seem to matter as much as it actually does. How do you find these? By being self-indulgent — by letting your curiosity have its way, and tuning out, at least temporarily, the little voice in your head that says you should only be working on \"important\" problems.\\n\\nYou do need to work on important problems, but almost everyone is too conservative about what counts as one. And if there\\'s an important but overlooked problem in your neighborhood, it\\'s probably already on your subconscious radar screen. So try asking yourself: if you were going to take a break from \"serious\" work to work on something just because it would be really interesting, what would you do? The answer is probably more important than it seems.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='263b1659-4c96-4db0-a5b9-6e766bc7a928', wins=2), Node(page_content=\"Originality in choosing problems seems to matter even more than originality in solving them. That's what distinguishes the people who discover whole new fields. So what might seem to be merely the initial step — deciding what to work on — is in a sense the key to the whole game.\\n\\nFew grasp this. One of the biggest misconceptions about new ideas is about the ratio of question to answer in their composition. People think big ideas are answers, but often the real insight was in the question.\\n\\nPart of the reason we underrate questions is the way they're used in schools. In schools they tend to exist only briefly before being answered, like unstable particles. But a really good question can be much more than that. A really good question is a partial discovery. How do new species arise? Is the force that makes objects fall to earth the same as the one that keeps planets in their orbits? By even asking such questions you were already in excitingly novel territory.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f3a439f9-a726-4007-90d3-d7e4ac34c811'), Node(page_content=\"Unanswered questions can be uncomfortable things to carry around with you. But the more you're carrying, the greater the chance of noticing a solution — or perhaps even more excitingly, noticing that two unanswered questions are the same.\\n\\nSometimes you carry a question for a long time. Great work often comes from returning to a question you first noticed years before — in your childhood, even — and couldn't stop thinking about. People talk a lot about the importance of keeping your youthful dreams alive, but it's just as important to keep your youthful questions alive. [19]\\n\\nThis is one of the places where actual expertise differs most from the popular picture of it. In the popular picture, experts are certain. But actually the more puzzled you are, the better, so long as (a) the things you're puzzled about matter, and (b) no one else understands them either.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ac0c284a-93cc-4f20-8f95-644471bc59e2'), Node(page_content=\"Think about what's happening at the moment just before a new idea is discovered. Often someone with sufficient expertise is puzzled about something. Which means that originality consists partly of puzzlement — of confusion! You have to be comfortable enough with the world being full of puzzles that you're willing to see them, but not so comfortable that you don't want to solve them. [20]\\n\\nIt's a great thing to be rich in unanswered questions. And this is one of those situations where the rich get richer, because the best way to acquire new questions is to try answering existing ones. Questions don't just lead to answers, but also to more questions.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='43d899d8-1f03-4594-89b0-c8d98a5b6feb'), Node(page_content=\"The best questions grow in the answering. You notice a thread protruding from the current paradigm and try pulling on it, and it just gets longer and longer. So don't require a question to be obviously big before you try answering it. You can rarely predict that. It's hard enough even to notice the thread, let alone to predict how much will unravel if you pull on it.\\n\\nIt's better to be promiscuously curious — to pull a little bit on a lot of threads, and see what happens. Big things start small. The initial versions of big things were often just experiments, or side projects, or talks, which then grew into something bigger. So start lots of small things.\\n\\nBeing prolific is underrated. The more different things you try, the greater the chance of discovering something new. Understand, though, that trying lots of things will mean trying lots of things that don't work. You can't have a lot of good ideas without also having a lot of bad ones. [21]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='36d31bd1-f966-4b1b-97de-447c6e1a6413'), Node(page_content=\"Though it sounds more responsible to begin by studying everything that's been done before, you'll learn faster and have more fun by trying stuff. And you'll understand previous work better when you do look at it. So err on the side of starting. Which is easier when starting means starting small; those two ideas fit together like two puzzle pieces.\\n\\nHow do you get from starting small to doing something great? By making successive versions. Great things are almost always made in successive versions. You start with something small and evolve it, and the final version is both cleverer and more ambitious than anything you could have planned.\\n\\nIt's particularly useful to make successive versions when you're making something for people — to get an initial version in front of them quickly, and then evolve it based on their response.\\n\\nBegin by trying the simplest thing that could possibly work. Surprisingly often, it does. If it doesn't, this will at least get you started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2351f0d2-96fe-4a21-845f-11bf4e69dbd6'), Node(page_content='Don\\'t try to cram too much new stuff into any one version. There are names for doing this with the first version (taking too long to ship) and the second (the second system effect), but these are both merely instances of a more general principle.\\n\\nAn early version of a new project will sometimes be dismissed as a toy. It\\'s a good sign when people do this. That means it has everything a new idea needs except scale, and that tends to follow. [22]\\n\\nThe alternative to starting with something small and evolving it is to plan in advance what you\\'re going to do. And planning does usually seem the more responsible choice. It sounds more organized to say \"we\\'re going to do x and then y and then z\" than \"we\\'re going to try x and see what happens.\" And it is more organized; it just doesn\\'t work as well.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='55306b2a-343d-4e44-8b24-25e471975cd3'), Node(page_content=\"Planning per se isn't good. It's sometimes necessary, but it's a necessary evil — a response to unforgiving conditions. It's something you have to do because you're working with inflexible media, or because you need to coordinate the efforts of a lot of people. If you keep projects small and use flexible media, you don't have to plan as much, and your designs can evolve instead.\\n\\nTake as much risk as you can afford. In an efficient market, risk is proportionate to reward, so don't look for certainty, but for a bet with high expected value. If you're not failing occasionally, you're probably being too conservative.\\n\\nThough conservatism is usually associated with the old, it's the young who tend to make this mistake. Inexperience makes them fear risk, but it's when you're young that you can afford the most.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8776ddf1-1e65-458c-9cc2-63a7fe40f800'), Node(page_content=\"Even a project that fails can be valuable. In the process of working on it, you'll have crossed territory few others have seen, and encountered questions few others have asked. And there's probably no better source of questions than the ones you encounter in trying to do something slightly too hard.\\n\\nUse the advantages of youth when you have them, and the advantages of age once you have those. The advantages of youth are energy, time, optimism, and freedom. The advantages of age are knowledge, efficiency, money, and power. With effort you can acquire some of the latter when young and keep some of the former when old.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c325c260-d37e-4bb0-a8b8-7d2633f1c55e'), Node(page_content='The old also have the advantage of knowing which advantages they have. The young often have them without realizing it. The biggest is probably time. The young have no idea how rich they are in time. The best way to turn this time to advantage is to use it in slightly frivolous ways: to learn about something you don\\'t need to know about, just out of curiosity, or to try building something just because it would be cool, or to become freakishly good at something.\\n\\nThat \"slightly\" is an important qualification. Spend time lavishly when you\\'re young, but don\\'t simply waste it. There\\'s a big difference between doing something you worry might be a waste of time and doing something you know for sure will be. The former is at least a bet, and possibly a better one than you think. [23]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62'), Node(page_content=\"The most subtle advantage of youth, or more precisely of inexperience, is that you're seeing everything with fresh eyes. When your brain embraces an idea for the first time, sometimes the two don't fit together perfectly. Usually the problem is with your brain, but occasionally it's with the idea. A piece of it sticks out awkwardly and jabs you when you think about it. People who are used to the idea have learned to ignore it, but you have the opportunity not to. [24]\\n\\nSo when you're learning about something for the first time, pay attention to things that seem wrong or missing. You'll be tempted to ignore them, since there's a 99% chance the problem is with you. And you may have to set aside your misgivings temporarily to keep progressing. But don't forget about them. When you've gotten further into the subject, come back and check if they're still there. If they're still viable in the light of your present knowledge, they probably represent an undiscovered idea.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7'), Node(page_content=\"One of the most valuable kinds of knowledge you get from experience is to know what you don't have to worry about. The young know all the things that could matter, but not their relative importance. So they worry equally about everything, when they should worry much more about a few things and hardly at all about the rest.\\n\\nBut what you don't know is only half the problem with inexperience. The other half is what you do know that ain't so. You arrive at adulthood with your head full of nonsense — bad habits you've acquired and false things you've been taught — and you won't be able to do great work till you clear away at least the nonsense in the way of whatever type of work you want to do.\\n\\nMuch of the nonsense left in your head is left there by schools. We're so used to schools that we unconsciously treat going to school as identical with learning, but in fact schools have all sorts of strange qualities that warp our ideas about learning and thinking.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebcb18af-82cb-4367-bb8f-60de302902d8'), Node(page_content=\"For example, schools induce passivity. Since you were a small child, there was an authority at the front of the class telling all of you what you had to learn and then measuring whether you did. But neither classes nor tests are intrinsic to learning; they're just artifacts of the way schools are usually designed.\\n\\nThe sooner you overcome this passivity, the better. If you're still in school, try thinking of your education as your project, and your teachers as working for you rather than vice versa. That may seem a stretch, but it's not merely some weird thought experiment. It's the truth, economically, and in the best case it's the truth intellectually as well. The best teachers don't want to be your bosses. They'd prefer it if you pushed ahead, using them as a source of advice, rather than being pulled by them through the material.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='16440cdc-9b76-475c-bd3a-8e43dae9a434'), Node(page_content='Schools also give you a misleading impression of what work is like. In school they tell you what the problems are, and they\\'re almost always soluble using no more than you\\'ve been taught so far. In real life you have to figure out what the problems are, and you often don\\'t know if they\\'re soluble at all.\\n\\nBut perhaps the worst thing schools do to you is train you to win by hacking the test. You can\\'t do great work by doing that. You can\\'t trick God. So stop looking for that kind of shortcut. The way to beat the system is to focus on problems and solutions that others have overlooked, not to skimp on the work itself.\\n\\nDon\\'t think of yourself as dependent on some gatekeeper giving you a \"big break.\" Even if this were true, the best way to get it would be to focus on doing good work rather than chasing influential people.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c0f04-9f7c-4c8f-b6e9-23539e87f9a1'), Node(page_content=\"And don't take rejection by committees to heart. The qualities that impress admissions officers and prize committees are quite different from those required to do great work. The decisions of selection committees are only meaningful to the extent that they're part of a feedback loop, and very few are.\\n\\nPeople new to a field will often copy existing work. There's nothing inherently bad about that. There's no better way to learn how something works than by trying to reproduce it. Nor does copying necessarily make your work unoriginal. Originality is the presence of new ideas, not the absence of old ones.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c8acb19e-fb92-4e15-a633-895f474f5fd1'), Node(page_content='There\\'s a good way to copy and a bad way. If you\\'re going to copy something, do it openly instead of furtively, or worse still, unconsciously. This is what\\'s meant by the famously misattributed phrase \"Great artists steal.\" The really dangerous kind of copying, the kind that gives copying a bad name, is the kind that\\'s done without realizing it, because you\\'re nothing more than a train running on tracks laid down by someone else. But at the other extreme, copying can be a sign of superiority rather than subordination. [25]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5358b733-dcf2-4681-99ff-dd89b89c6718', wins=1), Node(page_content=\"In many fields it's almost inevitable that your early work will be in some sense based on other people's. Projects rarely arise in a vacuum. They're usually a reaction to previous work. When you're first starting out, you don't have any previous work; if you're going to react to something, it has to be someone else's. Once you're established, you can react to your own. But while the former gets called derivative and the latter doesn't, structurally the two cases are more similar than they seem.\\n\\nOddly enough, the very novelty of the most novel ideas sometimes makes them seem at first to be more derivative than they are. New discoveries often have to be conceived initially as variations of existing things, even by their discoverers, because there isn't yet the conceptual vocabulary to express them.\\n\\nThere are definitely some dangers to copying, though. One is that you'll tend to copy old things — things that were in their day at the frontier of knowledge, but no longer are.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f087a707-515e-4c49-9772-187a7075ed75'), Node(page_content=\"And when you do copy something, don't copy every feature of it. Some will make you ridiculous if you do. Don't copy the manner of an eminent 50 year old professor if you're 18, for example, or the idiom of a Renaissance poem hundreds of years later.\\n\\nSome of the features of things you admire are flaws they succeeded despite. Indeed, the features that are easiest to imitate are the most likely to be the flaws.\\n\\nThis is particularly true for behavior. Some talented people are jerks, and this sometimes makes it seem to the inexperienced that being a jerk is part of being talented. It isn't; being talented is merely how they get away with it.\\n\\nOne of the most powerful kinds of copying is to copy something from one field into another. History is so full of chance discoveries of this type that it's probably worth giving chance a hand by deliberately learning about other kinds of work. You can take ideas from quite distant fields if you let them be metaphors.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='daf67766-a44c-4c3b-bd77-dc6d1045d490'), Node(page_content=\"Negative examples can be as inspiring as positive ones. In fact you can sometimes learn more from things done badly than from things done well; sometimes it only becomes clear what's needed when it's missing.\\n\\nIf a lot of the best people in your field are collected in one place, it's usually a good idea to visit for a while. It will increase your ambition, and also, by showing you that these people are human, increase your self-confidence. [26]\\n\\nIf you're earnest you'll probably get a warmer welcome than you might expect. Most people who are very good at something are happy to talk about it with anyone who's genuinely interested. If they're really good at their work, then they probably have a hobbyist's interest in it, and hobbyists always want to talk about their hobbies.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='18f9beba-e410-4473-97ad-959d232cd009'), Node(page_content=\"It may take some effort to find the people who are really good, though. Doing great work has such prestige that in some places, particularly universities, there's a polite fiction that everyone is engaged in it. And that is far from true. People within universities can't say so openly, but the quality of the work being done in different departments varies immensely. Some departments have people doing great work; others have in the past; others never have.\\n\\nSeek out the best colleagues. There are a lot of projects that can't be done alone, and even if you're working on one that can be, it's good to have other people to encourage you and to bounce ideas off.\\n\\nColleagues don't just affect your work, though; they also affect you. So work with people you want to become like, because you will.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e4ed843d-1771-424a-91fc-5b74bcd2bc37'), Node(page_content=\"Quality is more important than quantity in colleagues. It's better to have one or two great ones than a building full of pretty good ones. In fact it's not merely better, but necessary, judging from history: the degree to which great work happens in clusters suggests that one's colleagues often make the difference between doing great work and not.\\n\\nHow do you know when you have sufficiently good colleagues? In my experience, when you do, you know. Which means if you're unsure, you probably don't. But it may be possible to give a more concrete answer than that. Here's an attempt: sufficiently good colleagues offer surprising insights. They can see and do things that you can't. So if you have a handful of colleagues good enough to keep you on your toes in this sense, you're probably over the threshold.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6c16f93b-75ea-4884-8959-b8d243716257'), Node(page_content=\"Most of us can benefit from collaborating with colleagues, but some projects require people on a larger scale, and starting one of those is not for everyone. If you want to run a project like that, you'll have to become a manager, and managing well takes aptitude and interest like any other kind of work. If you don't have them, there is no middle path: you must either force yourself to learn management as a second language, or avoid such projects. [27]\\n\\nHusband your morale. It's the basis of everything when you're working on ambitious projects. You have to nurture and protect it like a living organism.\\n\\nMorale starts with your view of life. You're more likely to do great work if you're an optimist, and more likely to if you think of yourself as lucky than if you think of yourself as a victim.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='41972435-555e-4d47-977a-b91de1f27a90'), Node(page_content=\"Indeed, work can to some extent protect you from your problems. If you choose work that's pure, its very difficulties will serve as a refuge from the difficulties of everyday life. If this is escapism, it's a very productive form of it, and one that has been used by some of the greatest minds in history.\\n\\nMorale compounds via work: high morale helps you do good work, which increases your morale and helps you do even better work. But this cycle also operates in the other direction: if you're not doing good work, that can demoralize you and make it even harder to. Since it matters so much for this cycle to be running in the right direction, it can be a good idea to switch to easier work when you're stuck, just so you start to get something done.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2821136-b037-4332-bbbd-de2fcbeae316', wins=1), Node(page_content='One of the biggest mistakes ambitious people make is to allow setbacks to destroy their morale all at once, like a balloon bursting. You can inoculate yourself against this by explicitly considering setbacks a part of your process. Solving hard problems always involves some backtracking.\\n\\nDoing great work is a depth-first search whose root node is the desire to. So \"If at first you don\\'t succeed, try, try again\" isn\\'t quite right. It should be: If at first you don\\'t succeed, either try again, or backtrack and then try again.\\n\\n\"Never give up\" is also not quite right. Obviously there are times when it\\'s the right choice to eject. A more precise version would be: Never let setbacks panic you into backtracking more than you need to. Corollary: Never abandon the root node.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4593e897-c389-4639-98bd-7c159e1b3eae'), Node(page_content=\"It's not necessarily a bad sign if work is a struggle, any more than it's a bad sign to be out of breath while running. It depends how fast you're running. So learn to distinguish good pain from bad. Good pain is a sign of effort; bad pain is a sign of damage.\\n\\nAn audience is a critical component of morale. If you're a scholar, your audience may be your peers; in the arts, it may be an audience in the traditional sense. Either way it doesn't need to be big. The value of an audience doesn't grow anything like linearly with its size. Which is bad news if you're famous, but good news if you're just starting out, because it means a small but dedicated audience can be enough to sustain you. If a handful of people genuinely love what you're doing, that's enough.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b00c903d-199c-47b5-9884-f47a81649533'), Node(page_content=\"To the extent you can, avoid letting intermediaries come between you and your audience. In some types of work this is inevitable, but it's so liberating to escape it that you might be better off switching to an adjacent type if that will let you go direct. [28]\\n\\nThe people you spend time with will also have a big effect on your morale. You'll find there are some who increase your energy and others who decrease it, and the effect someone has is not always what you'd expect. Seek out the people who increase your energy and avoid those who decrease it. Though of course if there's someone you need to take care of, that takes precedence.\\n\\nDon't marry someone who doesn't understand that you need to work, or sees your work as competition for your attention. If you're ambitious, you need to work; it's almost like a medical condition; so someone who won't let you work either doesn't understand you, or does and doesn't care.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='53911edb-1d5b-42d8-8f83-00572631b56a', wins=1), Node(page_content=\"Ultimately morale is physical. You think with your body, so it's important to take care of it. That means exercising regularly, eating and sleeping well, and avoiding the more dangerous kinds of drugs. Running and walking are particularly good forms of exercise because they're good for thinking. [29]\\n\\nPeople who do great work are not necessarily happier than everyone else, but they're happier than they'd be if they didn't. In fact, if you're smart and ambitious, it's dangerous not to be productive. People who are smart and ambitious but don't achieve much tend to become bitter.\\n\\nIt's ok to want to impress other people, but choose the right people. The opinion of people you respect is signal. Fame, which is the opinion of a much larger group you might or might not respect, just adds noise.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cc70f37-da0e-44f9-a413-70a2f96e884a'), Node(page_content='The prestige of a type of work is at best a trailing indicator and sometimes completely mistaken. If you do anything well enough, you\\'ll make it prestigious. So the question to ask about a type of work is not how much prestige it has, but how well it could be done.\\n\\nCompetition can be an effective motivator, but don\\'t let it choose the problem for you; don\\'t let yourself get drawn into chasing something just because others are. In fact, don\\'t let competitors make you do anything much more specific than work harder.\\n\\nCuriosity is the best guide. Your curiosity never lies, and it knows more than you do about what\\'s worth paying attention to.\\n\\nNotice how often that word has come up. If you asked an oracle the secret to doing great work and the oracle replied with a single word, my bet would be on \"curiosity.\"\\n\\nThat doesn\\'t translate directly to advice. It\\'s not enough just to be curious, and you can\\'t command curiosity anyway. But you can nurture it and let it drive you.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c6cc7-ee83-4bdb-a16f-fb64224418df'), Node(page_content=\"Curiosity is the key to all four steps in doing great work: it will choose the field for you, get you to the frontier, cause you to notice the gaps in it, and drive you to explore them. The whole process is a kind of dance with curiosity.\\n\\nBelieve it or not, I tried to make this essay as short as I could. But its length at least means it acts as a filter. If you made it this far, you must be interested in doing great work. And if so you're already further along than you might realize, because the set of people willing to want to is small.\\n\\nThe factors in doing great work are factors in the literal, mathematical sense, and they are: ability, interest, effort, and luck. Luck by definition you can't do anything about, so we can ignore that. And we can assume effort, if you do in fact want to do great work. So the problem boils down to ability and interest. Can you find a kind of work where your ability and interest will combine to yield an explosion of new ideas?\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='518b39aa-59f8-4cb7-9c23-4ac7197f8250', wins=1), Node(page_content=\"Here there are grounds for optimism. There are so many different ways to do great work, and even more that are still undiscovered. Out of all those different types of work, the one you're most suited for is probably a pretty close match. Probably a comically close match. It's just a question of finding it, and how far into it your ability and interest can take you. And you can only answer that by trying.\\n\\nMany more people could try to do great work than do. What holds them back is a combination of modesty and fear. It seems presumptuous to try to be Newton or Shakespeare. It also seems hard; surely if you tried something like that, you'd fail. Presumably the calculation is rarely explicit. Few people consciously decide not to try to do great work. But that's what's going on subconsciously; they shy away from the question.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4bd8c91f-16e5-4aab-a361-b2e98eee6b10'), Node(page_content=\"So I'm going to pull a sneaky trick on you. Do you want to do great work, or not? Now you have to decide consciously. Sorry about that. I wouldn't have done it to a general audience. But we already know you're interested.\\n\\nDon't worry about being presumptuous. You don't have to tell anyone. And if it's too hard and you fail, so what? Lots of people have worse problems than that. In fact you'll be lucky if it's the worst problem you have.\\n\\nYes, you'll have to work hard. But again, lots of people have to work hard. And if you're working on something you find very interesting, which you necessarily will if you're on the right path, the work will probably feel less burdensome than a lot of your peers'.\\n\\nThe discoveries are out there, waiting to be made. Why not by you?\\n\\nNotes\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5098c334-acd7-4051-8409-88ae99b130c4'), Node(page_content='Notes\\n\\n[1] I don\\'t think you could give a precise definition of what counts as great work. Doing great work means doing something important so well that you expand people\\'s ideas of what\\'s possible. But there\\'s no threshold for importance. It\\'s a matter of degree, and often hard to judge at the time anyway. So I\\'d rather people focused on developing their interests rather than worrying about whether they\\'re important or not. Just try to do something amazing, and leave it to future generations to say if you succeeded.\\n\\n[2] A lot of standup comedy is based on noticing anomalies in everyday life. \"Did you ever notice...?\" New ideas come from doing this about nontrivial things. Which may help explain why people\\'s reaction to a new idea is often the first half of laughing: Ha!\\n\\n[3] That second qualifier is critical. If you\\'re excited about something most authorities discount, but you can\\'t give a more precise explanation than \"they don\\'t get it,\" then you\\'re starting to drift into the territory of cranks.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='85fcc3b5-ead2-41ce-bd52-c45b5555894f'), Node(page_content=\"[4] Finding something to work on is not simply a matter of finding a match between the current version of you and a list of known problems. You'll often have to coevolve with the problem. That's why it can sometimes be so hard to figure out what to work on. The search space is huge. It's the cartesian product of all possible types of work, both known and yet to be discovered, and all possible future versions of you.\\n\\nThere's no way you could search this whole space, so you have to rely on heuristics to generate promising paths through it and hope the best matches will be clustered. Which they will not always be; different types of work have been collected together as much by accidents of history as by the intrinsic similarities between them.\\n\\n[5] There are many reasons curious people are more likely to do great work, but one of the more subtle is that, by casting a wide net, they're more likely to find the right thing to work on in the first place.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2e5f7714-e0a8-4be5-ab6f-433a316b1c41'), Node(page_content=\"[6] It can also be dangerous to make things for an audience you feel is less sophisticated than you, if that causes you to talk down to them. You can make a lot of money doing that, if you do it in a sufficiently cynical way, but it's not the route to great work. Not that anyone using this m.o. would care.\\n\\n[7] This idea I learned from Hardy's A Mathematician's Apology, which I recommend to anyone ambitious to do great work, in any field.\\n\\n[8] Just as we overestimate what we can do in a day and underestimate what we can do over several years, we overestimate the damage done by procrastinating for a day and underestimate the damage done by procrastinating for several years.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f43e912a-048c-44f0-8a64-9b58b1fa4f58'), Node(page_content=\"[9] You can't usually get paid for doing exactly what you want, especially early on. There are two options: get paid for doing work close to what you want and hope to push it closer, or get paid for doing something else entirely and do your own projects on the side. Both can work, but both have drawbacks: in the first approach your work is compromised by default, and in the second you have to fight to get time to do it.\\n\\n[10] If you set your life up right, it will deliver the focus-relax cycle automatically. The perfect setup is an office you work in and that you walk to and from.\\n\\n[11] There may be some very unworldly people who do great work without consciously trying to. If you want to expand this rule to cover that case, it becomes: Don't try to be anything except the best.\\n\\n[12] This gets more complicated in work like acting, where the goal is to adopt a fake persona. But even here it's possible to be affected. Perhaps the rule in such fields should be to avoid unintentional affectation.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='af0eafcf-c1b7-46cd-b1b2-223f4aed0984'), Node(page_content='[13] It\\'s safe to have beliefs that you treat as unquestionable if and only if they\\'re also unfalsifiable. For example, it\\'s safe to have the principle that everyone should be treated equally under the law, because a sentence with a \"should\" in it isn\\'t really a statement about the world and is therefore hard to disprove. And if there\\'s no evidence that could disprove one of your principles, there can\\'t be any facts you\\'d need to ignore in order to preserve it.\\n\\n[14] Affectation is easier to cure than intellectual dishonesty. Affectation is often a shortcoming of the young that burns off in time, while intellectual dishonesty is more of a character flaw.\\n\\n[15] Obviously you don\\'t have to be working at the exact moment you have the idea, but you\\'ll probably have been working fairly recently.\\n\\n[16] Some say psychoactive drugs have a similar effect. I\\'m skeptical, but also almost totally ignorant of their effects.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6afc67d5-0fd7-48a8-829f-201370a6be57'), Node(page_content=\"[17] For example you might give the nth most important topic (m-1)/m^n of your attention, for some m > 1. You couldn't allocate your attention so precisely, of course, but this at least gives an idea of a reasonable distribution.\\n\\n[18] The principles defining a religion have to be mistaken. Otherwise anyone might adopt them, and there would be nothing to distinguish the adherents of the religion from everyone else.\\n\\n[19] It might be a good exercise to try writing down a list of questions you wondered about in your youth. You might find you're now in a position to do something about some of them.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='875a91c1-a9d8-4c9b-a094-4e865ec91c81'), Node(page_content='[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they\\'re generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling\\'s \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you\\'re wasting time is to ask if you\\'re producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don\\'t.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dc1d1d4-e75c-4e42-9567-9d7f2e048319', wins=1), Node(page_content=\"[24] Another related advantage is that if you haven't said anything publicly yet, you won't be biased toward evidence that supports your earlier conclusions. With sufficient integrity you could achieve eternal youth in this respect, but few manage to. For most people, having previously published opinions has an effect similar to ideology, just in quantity 1.\\n\\n[25] In the early 1630s Daniel Mytens made a painting of Henrietta Maria handing a laurel wreath to Charles I. Van Dyck then painted his own version to show how much better he was.\\n\\n[26] I'm being deliberately vague about what a place is. As of this writing, being in the same physical place has advantages that are hard to duplicate, but that could change.\\n\\n[27] This is false when the work the other people have to do is very constrained, as with SETI@home or Bitcoin. It may be possible to expand the area in which it's false by defining similarly restricted protocols with more freedom of action in the nodes.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2cbfecc-dc00-438a-ab59-b82bfd683a65'), Node(page_content='[28] Corollary: Building something that enables people to go around intermediaries and engage directly with their audience is probably a good idea.\\n\\n[29] It may be helpful always to walk or run the same route, because that frees attention for thinking. It feels that way to me, and there is some historical evidence for it.\\n\\nThanks to Trevor Blackwell, Daniel Gackle, Pam Graham, Tom Howard, Patrick Hsu, Steve Huffman, Jessica Livingston, Henry Lloyd-Baker, Bob Metcalfe, Ben Miller, Robert Morris, Michael Nielsen, Courtenay Pipkin, Joris Poort, Mieke Roos, Rajat Suri, Harj Taggar, Garry Tan, and my younger son for suggestions and for reading drafts.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='d64ee58e-fa36-495b-8ef7-df70c6375e80'), Node(page_content='What I Worked On\\n\\nFebruary 2021\\n\\nBefore college the two main things I worked on, outside of school, were writing and programming. I didn\\'t write essays. I wrote what beginning writers were supposed to write then, and probably still are: short stories. My stories were awful. They had hardly any plot, just characters with strong feelings, which I imagined made them deep.\\n\\nThe first programs I tried writing were on the IBM 1401 that our school district used for what was then called \"data processing.\" This was in 9th grade, so I was 13 or 14. The school district\\'s 1401 happened to be in the basement of our junior high school, and my friend Rich Draves and I got permission to use it. It was like a mini Bond villain\\'s lair down there, with all these alien-looking machines — CPU, disk drives, printer, card reader — sitting up on a raised floor under bright fluorescent lights.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8941624d-30a5-4c1f-936b-72b3c0e8feb1', wins=1), Node(page_content='The language we used was an early version of Fortran. You had to type programs on punch cards, then stack them in the card reader and press a button to load the program into memory and run it. The result would ordinarily be to print something on the spectacularly loud printer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2ddb6920-17bc-405e-9cbe-5b2852d92feb'), Node(page_content=\"I was puzzled by the 1401. I couldn't figure out what to do with it. And in retrospect there's not much I could have done with it. The only form of input to programs was data stored on punched cards, and I didn't have any data stored on punched cards. The only other option was to do things that didn't rely on any input, like calculate approximations of pi, but I didn't know enough math to do anything interesting of that type. So I'm not surprised I can't remember any programs I wrote, because they can't have done much. My clearest memory is of the moment I learned it was possible for programs not to terminate, when one of mine didn't. On a machine without time-sharing, this was a social as well as a technical error, as the data center manager's expression made clear.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2cae8c4f-333e-4615-8808-6e9ab6f79097', wins=1), Node(page_content='With microcomputers, everything changed. Now you could have a computer sitting right in front of you, on a desk, that could respond to your keystrokes as it was running instead of just churning through a stack of punch cards and then stopping. [1]\\n\\nThe first of my friends to get a microcomputer built it himself. It was sold as a kit by Heathkit. I remember vividly how impressed and envious I felt watching him sitting in front of it, typing programs right into the computer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d0f65811-4213-4ff8-bf54-07ee86007f73'), Node(page_content=\"Computers were expensive in those days and it took me years of nagging before I convinced my father to buy one, a TRS-80, in about 1980. The gold standard then was the Apple II, but a TRS-80 was good enough. This was when I really started programming. I wrote simple games, a program to predict how high my model rockets would fly, and a word processor that my father used to write at least one book. There was only room in memory for about 2 pages of text, so he'd write 2 pages at a time and then print them out, but it was a lot better than a typewriter.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0cc36135-748a-47b8-9a05-cf6d0a8ea13b', wins=1), Node(page_content=\"Though I liked programming, I didn't plan to study it in college. In college I was going to study philosophy, which sounded much more powerful. It seemed, to my naive high school self, to be the study of the ultimate truths, compared to which the things studied in other fields would be mere domain knowledge. What I discovered when I got to college was that the other fields took up so much of the space of ideas that there wasn't much left for these supposed ultimate truths. All that seemed left for philosophy were edge cases that people in other fields felt could safely be ignored.\\n\\nI couldn't have put this into words when I was 18. All I knew at the time was that I kept taking philosophy courses and they kept being boring. So I decided to switch to AI.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8ced309b-74f2-4240-917b-e28b30dc433b'), Node(page_content=\"AI was in the air in the mid 1980s, but there were two things especially that made me want to work on it: a novel by Heinlein called The Moon is a Harsh Mistress, which featured an intelligent computer called Mike, and a PBS documentary that showed Terry Winograd using SHRDLU. I haven't tried rereading The Moon is a Harsh Mistress, so I don't know how well it has aged, but when I read it I was drawn entirely into its world. It seemed only a matter of time before we'd have Mike, and when I saw Winograd using SHRDLU, it seemed like that time would be a few years at most. All you had to do was teach SHRDLU more words.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01436d32-d282-4de9-9b73-7faec7d1b772'), Node(page_content=\"There weren't any classes in AI at Cornell then, not even graduate classes, so I started trying to teach myself. Which meant learning Lisp, since in those days Lisp was regarded as the language of AI. The commonly used programming languages then were pretty primitive, and programmers' ideas correspondingly so. The default language at Cornell was a Pascal-like language called PL/I, and the situation was similar elsewhere. Learning Lisp expanded my concept of a program so fast that it was years before I started to have a sense of where the new limits were. This was more like it; this was what I had expected college to do. It wasn't happening in a class, like it was supposed to, but that was ok. For the next couple years I was on a roll. I knew what I was going to do.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c7dd7bbf-08ac-408f-b975-8274b58b91ca'), Node(page_content='For my undergraduate thesis, I reverse-engineered SHRDLU. My God did I love working on that program. It was a pleasing bit of code, but what made it even more exciting was my belief — hard to imagine now, but not unique in 1985 — that it was already climbing the lower slopes of intelligence.\\n\\nI had gotten into a program at Cornell that didn\\'t make you choose a major. You could take whatever classes you liked, and choose whatever you liked to put on your degree. I of course chose \"Artificial Intelligence.\" When I got the actual physical diploma, I was dismayed to find that the quotes had been included, which made them read as scare-quotes. At the time this bothered me, but now it seems amusingly accurate, for reasons I was about to discover.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d7d640a0-9b5e-4e18-a7fe-7655b8ae5979'), Node(page_content='I applied to 3 grad schools: MIT and Yale, which were renowned for AI at the time, and Harvard, which I\\'d visited because Rich Draves went there, and was also home to Bill Woods, who\\'d invented the type of parser I used in my SHRDLU clone. Only Harvard accepted me, so that was where I went.\\n\\nI don\\'t remember the moment it happened, or if there even was a specific moment, but during the first year of grad school I realized that AI, as practiced at the time, was a hoax. By which I mean the sort of AI in which a program that\\'s told \"the dog is sitting on the chair\" translates this into some formal representation and adds it to the list of things it knows.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='90c72e6c-8c79-4feb-86ae-f8f685cf5e7c'), Node(page_content=\"What these programs really showed was that there's a subset of natural language that's a formal language. But a very proper subset. It was clear that there was an unbridgeable gap between what they could do and actually understanding natural language. It was not, in fact, simply a matter of teaching SHRDLU more words. That whole way of doing AI, with explicit data structures representing concepts, was not going to work. Its brokenness did, as so often happens, generate a lot of opportunities to write papers about various band-aids that could be applied to it, but it was never going to get us Mike.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d5b018a6-f262-4758-b059-4da34cd51a58'), Node(page_content=\"So I looked around to see what I could salvage from the wreckage of my plans, and there was Lisp. I knew from experience that Lisp was interesting for its own sake and not just for its association with AI, even though that was the main reason people cared about it at the time. So I decided to focus on Lisp. In fact, I decided to write a book about Lisp hacking. It's scary to think how little I knew about Lisp hacking when I started writing that book. But there's nothing like writing a book about something to help you learn it. The book, On Lisp, wasn't published till 1993, but I wrote much of it in grad school.\\n\\nComputer Science is an uneasy alliance between two halves, theory and systems. The theory people prove things, and the systems people build things. I wanted to build things. I had plenty of respect for theory — indeed, a sneaking suspicion that it was the more admirable of the two halves — but building things seemed so much more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d52b4a20-0c6f-455d-9362-e99f3f87f0b4'), Node(page_content=\"The problem with systems work, though, was that it didn't last. Any program you wrote today, no matter how good, would be obsolete in a couple decades at best. People might mention your software in footnotes, but no one would actually use it. And indeed, it would seem very feeble work. Only people with a sense of the history of the field would even realize that, in its time, it had been good.\\n\\nThere were some surplus Xerox Dandelions floating around the computer lab at one point. Anyone who wanted one to play around with could have one. I was briefly tempted, but they were so slow by present standards; what was the point? No one else wanted one either, so off they went. That was what happened to systems work.\\n\\nI wanted not just to build things, but to build things that would last.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a7e3201d-8d1c-4f50-87cc-0674b17ce7c8'), Node(page_content=\"In this dissatisfied state I went in 1988 to visit Rich Draves at CMU, where he was in grad school. One day I went to visit the Carnegie Institute, where I'd spent a lot of time as a kid. While looking at a painting there I realized something that might seem obvious, but was a big surprise to me. There, right on the wall, was something you could make that would last. Paintings didn't become obsolete. Some of the best ones were hundreds of years old.\\n\\nAnd moreover this was something you could make a living doing. Not as easily as you could by writing software, of course, but I thought if you were really industrious and lived really cheaply, it had to be possible to make enough to survive. And as an artist you could be truly independent. You wouldn't have a boss, or even need to get research funding.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='88ce0eef-afcd-4066-b99a-ab84ade3eb18'), Node(page_content=\"I had always liked looking at paintings. Could I make them? I had no idea. I'd never imagined it was even possible. I knew intellectually that people made art — that it didn't just appear spontaneously — but it was as if the people who made it were a different species. They either lived long ago or were mysterious geniuses doing strange things in profiles in Life magazine. The idea of actually being able to make art, to put that verb before that noun, seemed almost miraculous.\\n\\nThat fall I started taking art classes at Harvard. Grad students could take classes in any department, and my advisor, Tom Cheatham, was very easy going. If he even knew about the strange classes I was taking, he never said anything.\\n\\nSo now I was in a PhD program in computer science, yet planning to be an artist, yet also genuinely in love with Lisp hacking and working away at On Lisp. In other words, like many a grad student, I was working energetically on multiple projects that were not my thesis.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f8eaf30-eedb-4747-97bb-c5c699392270'), Node(page_content='I didn\\'t see a way out of this situation. I didn\\'t want to drop out of grad school, but how else was I going to get out? I remember when my friend Robert Morris got kicked out of Cornell for writing the internet worm of 1988, I was envious that he\\'d found such a spectacular way to get out of grad school.\\n\\nThen one day in April 1990 a crack appeared in the wall. I ran into professor Cheatham and he asked if I was far enough along to graduate that June. I didn\\'t have a word of my dissertation written, but in what must have been the quickest bit of thinking in my life, I decided to take a shot at writing one in the 5 weeks or so that remained before the deadline, reusing parts of On Lisp where I could, and I was able to respond, with no perceptible delay \"Yes, I think so. I\\'ll give you something to read in a few days.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c14d29a3-c37e-4821-ae34-c407c6676ee1'), Node(page_content=\"I picked applications of continuations as the topic. In retrospect I should have written about macros and embedded languages. There's a whole world there that's barely been explored. But all I wanted was to get out of grad school, and my rapidly written dissertation sufficed, just barely.\\n\\nMeanwhile I was applying to art schools. I applied to two: RISD in the US, and the Accademia di Belli Arti in Florence, which, because it was the oldest art school, I imagined would be good. RISD accepted me, and I never heard back from the Accademia, so off to Providence I went.\\n\\nI'd applied for the BFA program at RISD, which meant in effect that I had to go to college again. This was not as strange as it sounds, because I was only 25, and art schools are full of people of different ages. RISD counted me as a transfer sophomore and said I had to do the foundation that summer. The foundation means the classes that everyone has to take in fundamental subjects like drawing, color, and design.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='48b6ee95-ea42-4980-9ad5-1dd6a2062500'), Node(page_content=\"Toward the end of the summer I got a big surprise: a letter from the Accademia, which had been delayed because they'd sent it to Cambridge England instead of Cambridge Massachusetts, inviting me to take the entrance exam in Florence that fall. This was now only weeks away. My nice landlady let me leave my stuff in her attic. I had some money saved from consulting work I'd done in grad school; there was probably enough to last a year if I lived cheaply. Now all I had to do was learn Italian.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='92b5cdd8-6d6d-4d9c-9510-48a3096427b8'), Node(page_content=\"Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01fdd3e3-243a-4e82-9c18-5d7492d029c1', wins=1), Node(page_content=\"I'm only up to age 25 and already there are such conspicuous patterns. Here I was, yet again about to attend some august institution in the hopes of learning about some prestigious subject, and yet again about to be disappointed. The students and faculty in the painting department at the Accademia were the nicest people you could imagine, but they had long since arrived at an arrangement whereby the students wouldn't require the faculty to teach anything, and in return the faculty wouldn't require the students to learn anything. And at the same time all involved would adhere outwardly to the conventions of a 19th century atelier. We actually had one of those little stoves, fed with kindling, that you see in 19th century studio paintings, and a nude model sitting as close to it as possible without getting burned. Except hardly anyone else painted her besides me. The rest of the students spent their time chatting or occasionally trying to imitate things they'd seen in American art magazines.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f488de3-2fec-444b-9cd1-58ffd491a687'), Node(page_content=\"Our model turned out to live just down the street from me. She made a living from a combination of modelling and making fakes for a local antique dealer. She'd copy an obscure old painting out of a book, and then he'd take the copy and maltreat it to make it look old. [3]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e8486722-e708-4b69-a5ef-1469253415c8'), Node(page_content=\"While I was a student at the Accademia I started painting still lives in my bedroom at night. These paintings were tiny, because the room was, and because I painted them on leftover scraps of canvas, which was all I could afford at the time. Painting still lives is different from painting people, because the subject, as its name suggests, can't move. People can't sit for more than about 15 minutes at a time, and when they do they don't sit very still. So the traditional m.o. for painting people is to know how to paint a generic person, which you then modify to match the specific person you're painting. Whereas a still life you can, if you want, copy pixel by pixel from what you're seeing. You don't want to stop there, of course, or you get merely photographic accuracy, and what makes a still life interesting is that it's been through a head. You want to emphasize the visual cues that tell you, for example, that the reason the color changes suddenly at a certain point is that it's the edge of an object. By\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee', wins=1), Node(page_content='of an object. By subtly emphasizing such things you can make paintings that are more realistic than photographs not just in some metaphorical sense, but in the strict information-theoretic sense. [4]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='00ad760e-6fbb-43ca-a51c-519425b2aaff'), Node(page_content='I liked painting still lives because I was curious about what I was seeing. In everyday life, we aren\\'t consciously aware of much we\\'re seeing. Most visual perception is handled by low-level processes that merely tell your brain \"that\\'s a water droplet\" without telling you details like where the lightest and darkest points are, or \"that\\'s a bush\" without telling you the shape and position of every leaf. This is a feature of brains, not a bug. In everyday life it would be distracting to notice every leaf on every bush. But when you have to paint something, you have to look more closely, and when you do there\\'s a lot to see. You can still be noticing new things after days of trying to paint something people usually take for granted, just as you can after days of trying to write an essay about something people usually take for granted.\\n\\nThis is not the only way to paint. I\\'m not 100% sure it\\'s even a good way to paint. But it seemed a good enough bet to be worth trying.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f7f0e91c-4312-46dc-b4d1-ff380e0f7227'), Node(page_content=\"Our teacher, professor Ulivi, was a nice guy. He could see I worked hard, and gave me a good grade, which he wrote down in a sort of passport each student had. But the Accademia wasn't teaching me anything except Italian, and my money was running out, so at the end of the first year I went back to the US.\\n\\nI wanted to go back to RISD, but I was now broke and RISD was very expensive, so I decided to get a job for a year and then return to RISD the next fall. I got one at a company called Interleaf, which made software for creating documents. You mean like Microsoft Word? Exactly. That was how I learned that low end software tends to eat high end software. But Interleaf still had a few years to live yet. [5]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='395264d3-3625-46d0-8636-110e597f48b7'), Node(page_content=\"Interleaf had done something pretty bold. Inspired by Emacs, they'd added a scripting language, and even made the scripting language a dialect of Lisp. Now they wanted a Lisp hacker to write things in it. This was the closest thing I've had to a normal job, and I hereby apologize to my boss and coworkers, because I was a bad employee. Their Lisp was the thinnest icing on a giant C cake, and since I didn't know C and didn't want to learn it, I never understood most of the software. Plus I was terribly irresponsible. This was back when a programming job meant showing up every day during certain working hours. That seemed unnatural to me, and on this point the rest of the world is coming around to my way of thinking, but at the time it caused a lot of friction. Toward the end of the year I spent much of my time surreptitiously working on On Lisp, which I had by this time gotten a contract to publish.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='32082230-290a-46db-a914-19f705defd46'), Node(page_content='The good part was that I got paid huge amounts of money, especially by art student standards. In Florence, after paying my part of the rent, my budget for everything else had been $7 a day. Now I was getting paid more than 4 times that every hour, even when I was just sitting in a meeting. By living cheaply I not only managed to save enough to go back to RISD, but also paid off my college loans.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='b102bff3-51da-44e2-9679-ed6445de3808'), Node(page_content=\"I learned some useful things at Interleaf, though they were mostly about what not to do. I learned that it's better for technology companies to be run by product people than sales people (though sales is a real skill and people who are good at it are really good at it), that it leads to bugs when code is edited by too many people, that cheap office space is no bargain if it's depressing, that planned meetings are inferior to corridor conversations, that big, bureaucratic customers are a dangerous source of money, and that there's not much overlap between conventional office hours and the optimal time for hacking, or conventional offices and the optimal place for it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='17ed5227-f4f7-4c2b-a28e-4265a141653e'), Node(page_content='But the most important thing I learned, and which I used in both Viaweb and Y Combinator, is that the low end eats the high end: that it\\'s good to be the \"entry level\" option, even though that will be less prestigious, because if you\\'re not, someone else will be, and will squash you against the ceiling. Which in turn means that prestige is a danger sign.\\n\\nWhen I left to go back to RISD the next fall, I arranged to do freelance work for the group that did projects for customers, and this was how I survived for the next several years. When I came back to visit for a project later on, someone told me about a new thing called HTML, which was, as he described it, a derivative of SGML. Markup language enthusiasts were an occupational hazard at Interleaf and I ignored him, but this HTML thing later became a big part of my life.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='03c17beb-1dbd-4c5a-9445-4d4f0c57379f'), Node(page_content='In the fall of 1992 I moved back to Providence to continue at RISD. The foundation had merely been intro stuff, and the Accademia had been a (very civilized) joke. Now I was going to see what real art school was like. But alas it was more like the Accademia than not. Better organized, certainly, and a lot more expensive, but it was now becoming clear that art school did not bear the same relationship to art that medical school bore to medicine. At least not the painting department. The textile department, which my next door neighbor belonged to, seemed to be pretty rigorous. No doubt illustration and architecture were too. But painting was post-rigorous. Painting students were supposed to express themselves, which to the more worldly ones meant to try to cook up some sort of distinctive signature style.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad27e028-f220-4b7e-a914-a2c67860e511'), Node(page_content='A signature style is the visual equivalent of what in show business is known as a \"schtick\": something that immediately identifies the work as yours and no one else\\'s. For example, when you see a painting that looks like a certain kind of cartoon, you know it\\'s by Roy Lichtenstein. So if you see a big painting of this type hanging in the apartment of a hedge fund manager, you know he paid millions of dollars for it. That\\'s not always why artists have a signature style, but it\\'s usually why buyers pay a lot for such work. [6]\\n\\nThere were plenty of earnest students too: kids who \"could draw\" in high school, and now had come to what was supposed to be the best art school in the country, to learn to draw even better. They tended to be confused and demoralized by what they found at RISD, but they kept going, because painting was what they did. I was not one of the kids who could draw in high school, but at RISD I was definitely closer to their tribe than the tribe of signature style seekers.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d996dddb-ee2a-4347-b6ff-0adf7c382d19'), Node(page_content=\"I learned a lot in the color class I took at RISD, but otherwise I was basically teaching myself to paint, and I could do that for free. So in 1993 I dropped out. I hung around Providence for a bit, and then my college friend Nancy Parmet did me a big favor. A rent-controlled apartment in a building her mother owned in New York was becoming vacant. Did I want it? It wasn't much more than my current place, and New York was supposed to be where the artists were. So yes, I wanted it! [7]\\n\\nAsterix comics begin by zooming in on a tiny corner of Roman Gaul that turns out not to be controlled by the Romans. You can do something similar on a map of New York City: if you zoom in on the Upper East Side, there's a tiny corner that's not rich, or at least wasn't in 1993. It's called Yorkville, and that was my new home. Now I was a New York artist — in the strictly technical sense of making paintings and living in New York.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6849fc6-388f-4476-905f-c07b44d846ff'), Node(page_content=\"I was nervous about money, because I could sense that Interleaf was on the way down. Freelance Lisp hacking work was very rare, and I didn't want to have to program in another language, which in those days would have meant C++ if I was lucky. So with my unerring nose for financial opportunity, I decided to write another book on Lisp. This would be a popular book, the sort of book that could be used as a textbook. I imagined myself living frugally off the royalties and spending all my time painting. (The painting on the cover of this book, ANSI Common Lisp, is one that I painted around this time.)\\n\\nThe best thing about New York for me was the presence of Idelle and Julian Weber. Idelle Weber was a painter, one of the early photorealists, and I'd taken her painting class at Harvard. I've never known a teacher more beloved by her students. Large numbers of former students kept in touch with her, including me. After I moved to New York I became her de facto studio assistant.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='dd3809f5-9bbd-440d-b993-2b25e729584d'), Node(page_content=\"She liked to paint on big, square canvases, 4 to 5 feet on a side. One day in late 1994 as I was stretching one of these monsters there was something on the radio about a famous fund manager. He wasn't that much older than me, and was super rich. The thought suddenly occurred to me: why don't I become rich? Then I'll be able to work on whatever I want.\\n\\nMeanwhile I'd been hearing more and more about this new thing called the World Wide Web. Robert Morris showed it to me when I visited him in Cambridge, where he was now in grad school at Harvard. It seemed to me that the web would be a big deal. I'd seen what graphical user interfaces had done for the popularity of microcomputers. It seemed like the web would do the same for the internet.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6097a0d7-807d-4820-9ecd-7e8e373cc23d'), Node(page_content=\"If I wanted to get rich, here was the next train leaving the station. I was right about that part. What I got wrong was the idea. I decided we should start a company to put art galleries online. I can't honestly say, after reading so many Y Combinator applications, that this was the worst startup idea ever, but it was up there. Art galleries didn't want to be online, and still don't, not the fancy ones. That's not how they sell. I wrote some software to generate web sites for galleries, and Robert wrote some to resize images and set up an http server to serve the pages. Then we tried to sign up galleries. To call this a difficult sale would be an understatement. It was difficult to give away. A few galleries let us make sites for them for free, but none paid us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8821373c-c593-4754-bce4-07fdf2b9bed1'), Node(page_content='Then some online stores started to appear, and I realized that except for the order buttons they were identical to the sites we\\'d been generating for galleries. This impressive-sounding thing called an \"internet storefront\" was something we already knew how to build.\\n\\nSo in the summer of 1995, after I submitted the camera-ready copy of ANSI Common Lisp to the publishers, we started trying to write software to build online stores. At first this was going to be normal desktop software, which in those days meant Windows software. That was an alarming prospect, because neither of us knew how to write Windows software or wanted to learn. We lived in the Unix world. But we decided we\\'d at least try writing a prototype store builder on Unix. Robert wrote a shopping cart, and I wrote a new site generator for stores — in Lisp, of course.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5190c08b-1add-44df-a89c-71da5b21a81f'), Node(page_content=\"We were working out of Robert's apartment in Cambridge. His roommate was away for big chunks of time, during which I got to sleep in his room. For some reason there was no bed frame or sheets, just a mattress on the floor. One morning as I was lying on this mattress I had an idea that made me sit up like a capital L. What if we ran the software on the server, and let users control it by clicking on links? Then we'd never have to write anything to run on users' computers. We could generate the sites on the same server we'd serve them from. Users wouldn't need anything more than a browser.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0c153247-5ff8-48f7-bd31-5139f0fc7302'), Node(page_content=\"This kind of software, known as a web app, is common now, but at the time it wasn't clear that it was even possible. To find out, we decided to try making a version of our store builder that you could control through the browser. A couple days later, on August 12, we had one that worked. The UI was horrible, but it proved you could build a whole store through the browser, without any client software or typing anything into the command line on the server.\\n\\nNow we felt like we were really onto something. I had visions of a whole new generation of software working this way. You wouldn't need versions, or ports, or any of that crap. At Interleaf there had been a whole group called Release Engineering that seemed to be at least as big as the group that actually wrote the software. Now you could just update the software right on the server.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='4ed7e80d-dc07-49eb-8d99-cb33fb56d042'), Node(page_content=\"We started a new company we called Viaweb, after the fact that our software worked via the web, and we got $10,000 in seed funding from Idelle's husband Julian. In return for that and doing the initial legal work and giving us business advice, we gave him 10% of the company. Ten years later this deal became the model for Y Combinator's. We knew founders needed something like this, because we'd needed it ourselves.\\n\\nAt this stage I had a negative net worth, because the thousand dollars or so I had in the bank was more than counterbalanced by what I owed the government in taxes. (Had I diligently set aside the proper proportion of the money I'd made consulting for Interleaf? No, I had not.) So although Robert had his graduate student stipend, I needed that seed funding to live on.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e', wins=1), Node(page_content=\"We originally hoped to launch in September, but we got more ambitious about the software as we worked on it. Eventually we managed to build a WYSIWYG site builder, in the sense that as you were creating pages, they looked exactly like the static ones that would be generated later, except that instead of leading to static pages, the links all referred to closures stored in a hash table on the server.\\n\\nIt helped to have studied art, because the main goal of an online store builder is to make users look legit, and the key to looking legit is high production values. If you get page layouts and fonts and colors right, you can make a guy running a store out of his bedroom look more legit than a big company.\\n\\n(If you're curious why my site looks so old-fashioned, it's because it's still made with this software. It may look clunky today, but in 1996 it was the last word in slick.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1f39257d-0248-4959-b47d-f2447a171058'), Node(page_content='In September, Robert rebelled. \"We\\'ve been working on this for a month,\" he said, \"and it\\'s still not done.\" This is funny in retrospect, because he would still be working on it almost 3 years later. But I decided it might be prudent to recruit more programmers, and I asked Robert who else in grad school with him was really good. He recommended Trevor Blackwell, which surprised me at first, because at that point I knew Trevor mainly for his plan to reduce everything in his life to a stack of notecards, which he carried around with him. But Rtm was right, as usual. Trevor turned out to be a frighteningly effective hacker.\\n\\nIt was a lot of fun working with Robert and Trevor. They\\'re the two most independent-minded people I know, and in completely different ways. If you could see inside Rtm\\'s brain it would look like a colonial New England church, and if you could see inside Trevor\\'s it would look like the worst excesses of Austrian Rococo.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a5d7623b-6552-4ca9-a712-8cb0986696fe'), Node(page_content=\"We opened for business, with 6 stores, in January 1996. It was just as well we waited a few months, because although we worried we were late, we were actually almost fatally early. There was a lot of talk in the press then about ecommerce, but not many people actually wanted online stores. [8]\\n\\nThere were three main parts to the software: the editor, which people used to build sites and which I wrote, the shopping cart, which Robert wrote, and the manager, which kept track of orders and statistics, and which Trevor wrote. In its time, the editor was one of the best general-purpose site builders. I kept the code tight and didn't have to integrate with any other software except Robert's and Trevor's, so it was quite fun to work on. If all I'd had to do was work on this software, the next 3 years would have been the easiest of my life. Unfortunately I had to do a lot more, all of it stuff I was worse at than programming, and the next 3 years were instead the most stressful.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6e31fe4b-e85c-4ad7-a092-be367364b972', wins=1), Node(page_content=\"There were a lot of startups making ecommerce software in the second half of the 90s. We were determined to be the Microsoft Word, not the Interleaf. Which meant being easy to use and inexpensive. It was lucky for us that we were poor, because that caused us to make Viaweb even more inexpensive than we realized. We charged $100 a month for a small store and $300 a month for a big one. This low price was a big attraction, and a constant thorn in the sides of competitors, but it wasn't because of some clever insight that we set the price low. We had no idea what businesses paid for things. $300 a month seemed like a lot of money to us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7a732a06-6878-41be-9947-1c07a23ea4a7'), Node(page_content='We did a lot of things right by accident like that. For example, we did what\\'s now called \"doing things that don\\'t scale,\" although at the time we would have described it as \"being so lame that we\\'re driven to the most desperate measures to get users.\" The most common of which was building stores for them. This seemed particularly humiliating, since the whole raison d\\'etre of our software was that people could use it to make their own stores. But anything to get users.\\n\\nWe learned a lot more about retail than we wanted to know. For example, that if you could only have a small image of a man\\'s shirt (and all images were small then by present standards), it was better to have a closeup of the collar than a picture of the whole shirt. The reason I remember learning this was that it meant I had to rescan about 30 images of men\\'s shirts. My first set of scans were so beautiful too.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f865fd1-57c6-4f67-ac9d-4f0d17bd751b'), Node(page_content='Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we\\'d have so many users that I couldn\\'t scan their images for them, but in the meantime there was nothing more important to do.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0df392b3-eb59-4359-b340-6e211caa3aae', wins=1), Node(page_content=\"Another thing I didn't get at the time is that growth rate is the ultimate test of a startup. Our growth rate was fine. We had about 70 stores at the end of 1996 and about 500 at the end of 1997. I mistakenly thought the thing that mattered was the absolute number of users. And that is the thing that matters in the sense that that's how much money you're making, and if you're not making enough, you might go out of business. But in the long term the growth rate takes care of the absolute number. If we'd been a startup I was advising at Y Combinator, I would have said: Stop being so stressed out, because you're doing fine. You're growing 7x a year. Just don't hire too many more people and you'll soon be profitable, and then you'll control your own destiny.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d57da0e4-fee3-4442-aa88-7c461dc9c4b4', wins=1), Node(page_content=\"Alas I hired lots more people, partly because our investors wanted me to, and partly because that's what startups did during the Internet Bubble. A company with just a handful of employees would have seemed amateurish. So we didn't reach breakeven until about when Yahoo bought us in the summer of 1998. Which in turn meant we were at the mercy of investors for the entire life of the company. And since both we and our investors were noobs at startups, the result was a mess even by startup standards.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9bc68607-b275-4e2e-877a-8b9f23e349c2'), Node(page_content=\"It was a huge relief when Yahoo bought us. In principle our Viaweb stock was valuable. It was a share in a business that was profitable and growing rapidly. But it didn't feel very valuable to me; I had no idea how to value a business, but I was all too keenly aware of the near-death experiences we seemed to have every few months. Nor had I changed my grad student lifestyle significantly since we started. So when Yahoo bought us it felt like going from rags to riches. Since we were going to California, I bought a car, a yellow 1998 VW GTI. I remember thinking that its leather seats alone were by far the most luxurious thing I owned.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5d19d396-aa70-4bf0-992e-069c632de8ad'), Node(page_content=\"The next year, from the summer of 1998 to the summer of 1999, must have been the least productive of my life. I didn't realize it at the time, but I was worn out from the effort and stress of running Viaweb. For a while after I got to California I tried to continue my usual m.o. of programming till 3 in the morning, but fatigue combined with Yahoo's prematurely aged culture and grim cube farm in Santa Clara gradually dragged me down. After a few months it felt disconcertingly like working at Interleaf.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='56272a9f-8b83-4b82-a1a2-598765c2b068'), Node(page_content=\"Yahoo had given us a lot of options when they bought us. At the time I thought Yahoo was so overvalued that they'd never be worth anything, but to my astonishment the stock went up 5x in the next year. I hung on till the first chunk of options vested, then in the summer of 1999 I left. It had been so long since I'd painted anything that I'd half forgotten why I was doing this. My brain had been entirely full of software and men's shirts for 4 years. But I had done this to get rich so I could paint, I reminded myself, and now I was rich, so I should go paint.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='fd511710-4a0b-4af9-834f-8c2d984a6dd0'), Node(page_content='When I said I was leaving, my boss at Yahoo had a long conversation with me about my plans. I told him all about the kinds of pictures I wanted to paint. At the time I was touched that he took such an interest in me. Now I realize it was because he thought I was lying. My options at that point were worth about $2 million a month. If I was leaving that kind of money on the table, it could only be to go and start some new startup, and if I did, I might take people with me. This was the height of the Internet Bubble, and Yahoo was ground zero of it. My boss was at that moment a billionaire. Leaving then to start a new startup must have seemed to him an insanely, and yet also plausibly, ambitious plan.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8'), Node(page_content=\"But I really was quitting to paint, and I started immediately. There was no time to lose. I'd already burned 4 years getting rich. Now when I talk to founders who are leaving after selling their companies, my advice is always the same: take a vacation. That's what I should have done, just gone off somewhere and done nothing for a month or two, but the idea never occurred to me.\\n\\nSo I tried to paint, but I just didn't seem to have any energy or ambition. Part of the problem was that I didn't know many people in California. I'd compounded this problem by buying a house up in the Santa Cruz Mountains, with a beautiful view but miles from anywhere. I stuck it out for a few more months, then in desperation I went back to New York, where unless you understand about rent control you'll be surprised to hear I still had my apartment, sealed up like a tomb of my old life. Idelle was in New York at least, and there were other people trying to paint there, even though I didn't know any of them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='07e153a7-98c9-45f5-9873-0415175e5887'), Node(page_content=\"When I got back to New York I resumed my old life, except now I was rich. It was as weird as it sounds. I resumed all my old patterns, except now there were doors where there hadn't been. Now when I was tired of walking, all I had to do was raise my hand, and (unless it was raining) a taxi would stop to pick me up. Now when I walked past charming little restaurants I could go in and order lunch. It was exciting for a while. Painting started to go better. I experimented with a new kind of still life where I'd paint one painting in the old way, then photograph it and print it, blown up, on canvas, and then use that as the underpainting for a second still life, painted from the same objects (which hopefully hadn't rotted yet).\\n\\nMeanwhile I looked for an apartment to buy. Now I could actually choose what neighborhood to live in. Where, I asked myself and various real estate agents, is the Cambridge of New York? Aided by occasional visits to actual Cambridge, I gradually realized there wasn't one. Huh.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6f53cbc-6f54-4287-ad99-52473f5e3cfa'), Node(page_content='Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='209c154b-eaa4-4d0c-9ee3-9de983548416', wins=1), Node(page_content=\"I got so excited about this idea that I couldn't think about anything else. It seemed obvious that this was the future. I didn't particularly want to start another company, but it was clear that this idea would have to be embodied as one, so I decided to move to Cambridge and start it. I hoped to lure Robert into working on it with me, but there I ran into a hitch. Robert was now a postdoc at MIT, and though he'd made a lot of money the last time I'd lured him into working on one of my schemes, it had also been a huge time sink. So while he agreed that it sounded like a plausible idea, he firmly refused to work on it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='725c5f11-2423-4e18-bc97-752009c281de'), Node(page_content='Hmph. Well, I\\'d do it myself then. I recruited Dan Giffin, who had worked for Viaweb, and two undergrads who wanted summer jobs, and we got to work trying to build what it\\'s now clear is about twenty companies and several open source projects worth of software. The language for defining applications would of course be a dialect of Lisp. But I wasn\\'t so naive as to assume I could spring an overt Lisp on a general audience; we\\'d hide the parentheses, like Dylan did.\\n\\nBy then there was a name for the kind of company Viaweb was, an \"application service provider,\" or ASP. This name didn\\'t last long before it was replaced by \"software as a service,\" but it was current for long enough that I named this new company after it: it was going to be called Aspra.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9b17eb54-1f33-4904-bc1a-b18254f2f85a', wins=1), Node(page_content=\"I started working on the application builder, Dan worked on network infrastructure, and the two undergrads worked on the first two services (images and phone calls). But about halfway through the summer I realized I really didn't want to run a company — especially not a big one, which it was looking like this would have to be. I'd only started Viaweb because I needed the money. Now that I didn't need money anymore, why was I doing this? If this vision had to be realized as a company, then screw the vision. I'd build a subset that could be done as an open source project.\\n\\nMuch to my surprise, the time I spent working on this stuff was not wasted after all. After we started Y Combinator, I would often encounter startups working on parts of this new architecture, and it was very useful to have spent so much time thinking about it and even trying to write some of it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1185a7b9-b8da-441e-89b1-12b8a81c2502', wins=1), Node(page_content=\"The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='33017a92-fecc-4bf1-ae08-cc414c62cbf7'), Node(page_content=\"Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a746d02f-1466-434d-addd-04b936502bec', wins=1), Node(page_content=\"In the print era, the channel for publishing essays had been vanishingly small. Except for a few officially anointed thinkers who went to the right parties in New York, the only people allowed to publish essays were specialists writing about their specialties. There were so many essays that had never been written, because there had been no way to publish them. Now they could be, and I was going to write them. [12]\\n\\nI've worked on several different things, but to the extent there was a turning point where I figured out what to work on, it was when I started publishing essays online. From then on I knew that whatever else I did, I'd always write essays too.\\n\\nI knew that online essays would be a marginal medium at first. Socially they'd seem more like rants posted by nutjobs on their GeoCities sites than the genteel and beautifully typeset compositions published in The New Yorker. But by this point I knew enough to find that encouraging instead of discouraging.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881', wins=1), Node(page_content=\"One of the most conspicuous patterns I've noticed in my life is how well it has worked, for me at least, to work on things that weren't prestigious. Still life has always been the least prestigious form of painting. Viaweb and Y Combinator both seemed lame when we started them. I still get the glassy eye from strangers when they ask what I'm writing, and I explain that it's an essay I'm going to publish on my web site. Even Lisp, though prestigious intellectually in something like the way Latin is, also seems about as hip.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='836f9505-8112-4300-a484-655731655443', wins=1), Node(page_content=\"It's not that unprestigious types of work are good per se. But when you find yourself drawn to some kind of work despite its current lack of prestige, it's a sign both that there's something real to be discovered there, and that you have the right kind of motives. Impure motives are a big danger for the ambitious. If anything is going to lead you astray, it will be the desire to impress people. So while working on things that aren't prestigious doesn't guarantee you're on the right track, it at least guarantees you're not on the most common type of wrong one.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad36fb50-0350-45a4-925e-29f0980a9cba', wins=2), Node(page_content=\"Over the next several years I wrote lots of essays about all kinds of different topics. O'Reilly reprinted a collection of them as a book, called Hackers & Painters after one of the essays in it. I also worked on spam filters, and did some more painting. I used to have dinners for a group of friends every thursday night, which taught me how to cook for groups. And I bought another building in Cambridge, a former candy factory (and later, twas said, porn studio), to use as an office.\\n\\nOne night in October 2003 there was a big party at my house. It was a clever idea of my friend Maria Daniels, who was one of the thursday diners. Three separate hosts would all invite their friends to one party. So for every guest, two thirds of the other guests would be people they didn't know but would probably like. One of the guests was someone I didn't know but would turn out to like a lot: a woman called Jessica Livingston. A couple days later I asked her out.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='271b9209-34c1-4eb9-a7d4-5c8cb047c3a7'), Node(page_content='Jessica was in charge of marketing at a Boston investment bank. This bank thought it understood startups, but over the next year, as she met friends of mine from the startup world, she was surprised how different reality was. And how colorful their stories were. So she decided to compile a book of interviews with startup founders.\\n\\nWhen the bank had financial problems and she had to fire half her staff, she started looking for a new job. In early 2005 she interviewed for a marketing job at a Boston VC firm. It took them weeks to make up their minds, and during this time I started telling her about all the things that needed to be fixed about venture capital. They should make a larger number of smaller investments instead of a handful of giant ones, they should be funding younger, more technical founders instead of MBAs, they should let the founders remain as CEO, and so on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc'), Node(page_content=\"One of my tricks for writing essays had always been to give talks. The prospect of having to stand up in front of a group of people and tell them something that won't waste their time is a great spur to the imagination. When the Harvard Computer Society, the undergrad computer club, asked me to give a talk, I decided I would tell them how to start a startup. Maybe they'd be able to avoid the worst of the mistakes we'd made.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce520b00-c87c-4bfe-a179-0fa11c9d5273', wins=1), Node(page_content='So I gave this talk, in the course of which I told them that the best sources of seed funding were successful startup founders, because then they\\'d be sources of advice too. Whereupon it seemed they were all looking expectantly at me. Horrified at the prospect of having my inbox flooded by business plans (if I\\'d only known), I blurted out \"But not me!\" and went on with the talk. But afterward it occurred to me that I should really stop procrastinating about angel investing. I\\'d been meaning to since Yahoo bought us, and now it was 7 years later and I still hadn\\'t done one angel investment.\\n\\nMeanwhile I had been scheming with Robert and Trevor about projects we could work on together. I missed working with them, and it seemed like there had to be something we could collaborate on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e9a82e89-0d8f-480b-9f26-1acfffaab9a1'), Node(page_content=\"As Jessica and I were walking home from dinner on March 11, at the corner of Garden and Walker streets, these three threads converged. Screw the VCs who were taking so long to make up their minds. We'd start our own investment firm and actually implement the ideas we'd been talking about. I'd fund it, and Jessica could quit her job and work for it, and we'd get Robert and Trevor as partners too. [13]\\n\\nOnce again, ignorance worked in our favor. We had no idea how to be angel investors, and in Boston in 2005 there were no Ron Conways to learn from. So we just made what seemed like the obvious choices, and some of the things we did turned out to be novel.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='073bc744-8e07-42e7-8595-39496927fe88'), Node(page_content=\"There are multiple components to Y Combinator, and we didn't figure them all out at once. The part we got first was to be an angel firm. In those days, those two words didn't go together. There were VC firms, which were organized companies with people whose job it was to make investments, but they only did big, million dollar investments. And there were angels, who did smaller investments, but these were individuals who were usually focused on other things and made investments on the side. And neither of them helped founders enough in the beginning. We knew how helpless founders were in some respects, because we remembered how helpless we'd been. For example, one thing Julian had done for us that seemed to us like magic was to get us set up as a company. We were fine writing fairly difficult software, but actually getting incorporated, with bylaws and stock and all that stuff, how on earth did you do that? Our plan was not only to make seed investments, but to do for startups everything Julian had done for\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7ffe9bfd-9225-407c-9048-5ae1b0f25fc6'), Node(page_content='Julian had done for us.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='83ef6c3c-2575-48c1-bf79-8376e2afe2e1'), Node(page_content='YC was not organized as a fund. It was cheap enough to run that we funded it with our own money. That went right by 99% of readers, but professional investors are thinking \"Wow, that means they got all the returns.\" But once again, this was not due to any particular insight on our part. We didn\\'t know how VC firms were organized. It never occurred to us to try to raise a fund, and if it had, we wouldn\\'t have known where to start. [14]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f4142432-6daa-4c6b-ad89-00e3712c373c', wins=1), Node(page_content=\"The most distinctive thing about YC is the batch model: to fund a bunch of startups all at once, twice a year, and then to spend three months focusing intensively on trying to help them. That part we discovered by accident, not merely implicitly but explicitly due to our ignorance about investing. We needed to get experience as investors. What better way, we thought, than to fund a whole bunch of startups at once? We knew undergrads got temporary jobs at tech companies during the summer. Why not organize a summer program where they'd start startups instead? We wouldn't feel guilty for being in a sense fake investors, because they would in a similar sense be fake founders. So while we probably wouldn't make much money out of it, we'd at least get to practice being investors on them, and they for their part would probably have a more interesting summer than they would working at Microsoft.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4c983c2-a43c-49f6-9ca0-db73867728a9', wins=1), Node(page_content='We\\'d use the building I owned in Cambridge as our headquarters. We\\'d all have dinner there once a week — on tuesdays, since I was already cooking for the thursday diners on thursdays — and after dinner we\\'d bring in experts on startups to give talks.\\n\\nWe knew undergrads were deciding then about summer jobs, so in a matter of days we cooked up something we called the Summer Founders Program, and I posted an announcement on my site, inviting undergrads to apply. I had never imagined that writing essays would be a way to get \"deal flow,\" as investors call it, but it turned out to be the perfect source. [15] We got 225 applications for the Summer Founders Program, and we were surprised to find that a lot of them were from people who\\'d already graduated, or were about to that spring. Already this SFP thing was starting to feel more serious than we\\'d intended.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0198787d-a061-45f0-92d5-e45f6e7ae912'), Node(page_content=\"We invited about 20 of the 225 groups to interview in person, and from those we picked 8 to fund. They were an impressive group. That first batch included reddit, Justin Kan and Emmett Shear, who went on to found Twitch, Aaron Swartz, who had already helped write the RSS spec and would a few years later become a martyr for open access, and Sam Altman, who would later become the second president of YC. I don't think it was entirely luck that the first batch was so good. You had to be pretty bold to sign up for a weird thing like the Summer Founders Program instead of a summer job at a legit place like Microsoft or Goldman Sachs.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='745dd18f-832f-4d1e-b688-319f7c617464'), Node(page_content='The deal for startups was based on a combination of the deal we did with Julian ($10k for 10%) and what Robert said MIT grad students got for the summer ($6k). We invested $6k per founder, which in the typical two-founder case was $12k, in return for 6%. That had to be fair, because it was twice as good as the deal we ourselves had taken. Plus that first summer, which was really hot, Jessica brought the founders free air conditioners. [16]\\n\\nFairly quickly I realized that we had stumbled upon the way to scale startup funding. Funding startups in batches was more convenient for us, because it meant we could do things for a lot of startups at once, but being part of a batch was better for the startups too. It solved one of the biggest problems faced by founders: the isolation. Now you not only had colleagues, but colleagues who understood the problems you were facing and could tell you how they were solving them.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='bf8387d0-b094-4f59-8c13-ca1014ea67ac'), Node(page_content='As YC grew, we started to notice other advantages of scale. The alumni became a tight community, dedicated to helping one another, and especially the current batch, whose shoes they remembered being in. We also noticed that the startups were becoming one another\\'s customers. We used to refer jokingly to the \"YC GDP,\" but as YC grows this becomes less and less of a joke. Now lots of startups get their initial set of customers almost entirely from among their batchmates.\\n\\nI had not originally intended YC to be a full-time job. I was going to do three things: hack, write essays, and work on YC. As YC grew, and I grew more excited about it, it started to take up a lot more than a third of my attention. But for the first few years I was still able to work on other things.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='526ba90a-5223-4530-a966-baea4886bdc1', wins=1), Node(page_content=\"In the summer of 2006, Robert and I started working on a new version of Arc. This one was reasonably fast, because it was compiled into Scheme. To test this new Arc, I wrote Hacker News in it. It was originally meant to be a news aggregator for startup founders and was called Startup News, but after a few months I got tired of reading about nothing but startups. Plus it wasn't startup founders we wanted to reach. It was future startup founders. So I changed the name to Hacker News and the topic to whatever engaged one's intellectual curiosity.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='aa1dfbc4-133a-4f2d-99fe-c0ebce320d09'), Node(page_content=\"HN was no doubt good for YC, but it was also by far the biggest source of stress for me. If all I'd had to do was select and help founders, life would have been so easy. And that implies that HN was a mistake. Surely the biggest source of stress in one's work should at least be something close to the core of the work. Whereas I was like someone who was in pain while running a marathon not from the exertion of running, but because I had a blister from an ill-fitting shoe. When I was dealing with some urgent problem during YC, there was about a 60% chance it had to do with HN, and a 40% chance it had do with everything else combined. [17]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c8505964-4597-440a-9044-033cf10ca40e'), Node(page_content=\"As well as HN, I wrote all of YC's internal software in Arc. But while I continued to work a good deal in Arc, I gradually stopped working on Arc, partly because I didn't have time to, and partly because it was a lot less attractive to mess around with the language now that we had all this infrastructure depending on it. So now my three projects were reduced to two: writing essays and working on YC.\\n\\nYC was different from other kinds of work I've done. Instead of deciding for myself what to work on, the problems came to me. Every 6 months there was a new batch of startups, and their problems, whatever they were, became our problems. It was very engaging work, because their problems were quite varied, and the good founders were very effective. If you were trying to learn the most you could about startups in the shortest possible time, you couldn't have picked a better way to do it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='251faa7a-72ec-4bd9-ad69-1af024efbbc4'), Node(page_content='There were parts of the job I didn\\'t like. Disputes between cofounders, figuring out when people were lying to us, fighting with people who maltreated the startups, and so on. But I worked hard even at the parts I didn\\'t like. I was haunted by something Kevin Hale once said about companies: \"No one works harder than the boss.\" He meant it both descriptively and prescriptively, and it was the second part that scared me. I wanted YC to be good, so if how hard I worked set the upper bound on how hard everyone else worked, I\\'d better work very hard.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='454a991d-29ac-4982-a8e5-72a02f0ef5a2'), Node(page_content='One day in 2010, when he was visiting California for interviews, Robert Morris did something astonishing: he offered me unsolicited advice. I can only remember him doing that once before. One day at Viaweb, when I was bent over double from a kidney stone, he suggested that it would be a good idea for him to take me to the hospital. That was what it took for Rtm to offer unsolicited advice. So I remember his exact words very clearly. \"You know,\" he said, \"you should make sure Y Combinator isn\\'t the last cool thing you do.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edd1ff8d-62c3-4e10-95c6-6ef7b27a4531'), Node(page_content=\"At the time I didn't understand what he meant, but gradually it dawned on me that he was saying I should quit. This seemed strange advice, because YC was doing great. But if there was one thing rarer than Rtm offering advice, it was Rtm being wrong. So this set me thinking. It was true that on my current trajectory, YC would be the last thing I did, because it was only taking up more of my attention. It had already eaten Arc, and was in the process of eating essays too. Either YC was my life's work or I'd have to leave eventually. And it wasn't, so I would.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='71c27b46-b79b-48ef-ad7e-3a0400ece844'), Node(page_content=\"In the summer of 2012 my mother had a stroke, and the cause turned out to be a blood clot caused by colon cancer. The stroke destroyed her balance, and she was put in a nursing home, but she really wanted to get out of it and back to her house, and my sister and I were determined to help her do it. I used to fly up to Oregon to visit her regularly, and I had a lot of time to think on those flights. On one of them I realized I was ready to hand YC over to someone else.\\n\\nI asked Jessica if she wanted to be president, but she didn't, so we decided we'd try to recruit Sam Altman. We talked to Robert and Trevor and we agreed to make it a complete changing of the guard. Up till that point YC had been controlled by the original LLC we four had started. But we wanted YC to last for a long time, and to do that it couldn't be controlled by the founders. So if Sam said yes, we'd let him reorganize YC. Robert and I would retire, and Jessica and Trevor would become ordinary partners.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='949a121e-1e69-45a4-98cd-e7f7c47c8bf9'), Node(page_content=\"When we asked Sam if he wanted to be president of YC, initially he said no. He wanted to start a startup to make nuclear reactors. But I kept at it, and in October 2013 he finally agreed. We decided he'd take over starting with the winter 2014 batch. For the rest of 2013 I left running YC more and more to Sam, partly so he could learn the job, and partly because I was focused on my mother, whose cancer had returned.\\n\\nShe died on January 15, 2014. We knew this was coming, but it was still hard when it did.\\n\\nI kept working on YC till March, to help get that batch of startups through Demo Day, then I checked out pretty completely. (I still talk to alumni and to new startups working on things I'm interested in, but that only takes a few hours a week.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ee41cd68-792e-4ebf-aa6c-672740604a7e'), Node(page_content=\"What should I do next? Rtm's advice hadn't included anything about that. I wanted to do something completely different, so I decided I'd paint. I wanted to see how good I could get if I really focused on it. So the day after I stopped working on YC, I started painting. I was rusty and it took a while to get back into shape, but it was at least completely engaging. [18]\\n\\nI spent most of the rest of 2014 painting. I'd never been able to work so uninterruptedly before, and I got to be better than I had been. Not good enough, but better. Then in November, right in the middle of a painting, I ran out of steam. Up till that point I'd always been curious to see how the painting I was working on would turn out, but suddenly finishing this one seemed like a chore. So I stopped working on it and cleaned my brushes and haven't painted since. So far anyway.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='70bcf8a8-1e2c-4cbd-a93f-ade0c453e437'), Node(page_content=\"I realize that sounds rather wimpy. But attention is a zero sum game. If you can choose what to work on, and you choose a project that's not the best one (or at least a good one) for you, then it's getting in the way of another project that is. And at 50 there was some opportunity cost to screwing around.\\n\\nI started writing essays again, and wrote a bunch of new ones over the next few months. I even wrote a couple that weren't about startups. Then in March 2015 I started working on Lisp again.\\n\\nThe distinctive thing about Lisp is that its core is a language defined by writing an interpreter in itself. It wasn't originally intended as a programming language in the ordinary sense. It was meant to be a formal model of computation, an alternative to the Turing machine. If you want to write an interpreter for a language in itself, what's the minimum set of predefined operators you need? The Lisp that John McCarthy invented, or more accurately discovered, is an answer to that question. [19]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='de347d59-7d93-4174-b095-30666d86c163'), Node(page_content=\"McCarthy didn't realize this Lisp could even be used to program computers till his grad student Steve Russell suggested it. Russell translated McCarthy's interpreter into IBM 704 machine language, and from that point Lisp started also to be a programming language in the ordinary sense. But its origins as a model of computation gave it a power and elegance that other languages couldn't match. It was this that attracted me in college, though I didn't understand why at the time.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d8717b54-2764-42ab-a7b9-7dc8f36ee9b4'), Node(page_content=\"McCarthy's 1960 Lisp did nothing more than interpret Lisp expressions. It was missing a lot of things you'd want in a programming language. So these had to be added, and when they were, they weren't defined using McCarthy's original axiomatic approach. That wouldn't have been feasible at the time. McCarthy tested his interpreter by hand-simulating the execution of programs. But it was already getting close to the limit of interpreters you could test that way — indeed, there was a bug in it that McCarthy had overlooked. To test a more complicated interpreter, you'd have had to run it, and computers then weren't powerful enough.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ab5cf714-67cb-4e35-a7a5-cef31b3093c2'), Node(page_content=\"Now they are, though. Now you could continue using McCarthy's axiomatic approach till you'd defined a complete programming language. And as long as every change you made to McCarthy's Lisp was a discoveredness-preserving transformation, you could, in principle, end up with a complete language that had this quality. Harder to do than to talk about, of course, but if it was possible in principle, why not try? So I decided to take a shot at it. It took 4 years, from March 26, 2015 to October 12, 2019. It was fortunate that I had a precisely defined goal, or it would have been hard to keep at it for so long.\\n\\nI wrote this new Lisp, called Bel, in itself in Arc. That may sound like a contradiction, but it's an indication of the sort of trickery I had to engage in to make this work. By means of an egregious collection of hacks I managed to make something close enough to an interpreter written in itself that could actually run. Not fast, but fast enough to test.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ccc691c6-2730-445f-a301-3e6d29614239'), Node(page_content='I had to ban myself from writing essays during most of this time, or I\\'d never have finished. In late 2015 I spent 3 months writing essays, and when I went back to working on Bel I could barely understand the code. Not so much because it was badly written as because the problem is so convoluted. When you\\'re working on an interpreter written in itself, it\\'s hard to keep track of what\\'s happening at what level, and errors can be practically encrypted by the time you get them.\\n\\nSo I said no more essays till Bel was done. But I told few people about Bel while I was working on it. So for years it must have seemed that I was doing nothing, when in fact I was working harder than I\\'d ever worked on anything. Occasionally after wrestling for hours with some gruesome bug I\\'d check Twitter or HN and see someone asking \"Does Paul Graham still code?\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6c6c1376-f7e2-4435-84ea-1324fd16912e'), Node(page_content=\"Working on Bel was hard but satisfying. I worked on it so intensively that at any given time I had a decent chunk of the code in my head and could write more there. I remember taking the boys to the coast on a sunny day in 2015 and figuring out how to deal with some problem involving continuations while I watched them play in the tide pools. It felt like I was doing life right. I remember that because I was slightly dismayed at how novel it felt. The good news is that I had more moments like this over the next few years.\\n\\nIn the summer of 2016 we moved to England. We wanted our kids to see what it was like living in another country, and since I was a British citizen by birth, that seemed the obvious choice. We only meant to stay for a year, but we liked it so much that we still live there. So most of Bel was written in England.\\n\\nIn the fall of 2019, Bel was finally finished. Like McCarthy's original Lisp, it's a spec rather than an implementation, although like McCarthy's Lisp it's a spec expressed as code.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f927fda-431c-4163-9b61-6b3c9eff403b'), Node(page_content=\"Now that I could write essays again, I wrote a bunch about topics I'd had stacked up. I kept writing essays through 2020, but I also started to think about other things I could work on. How should I choose what to do? Well, how had I chosen what to work on in the past? I wrote an essay for myself to answer that question, and I was surprised how long and messy the answer turned out to be. If this surprised me, who'd lived it, then I thought perhaps it would be interesting to other people, and encouraging to those with similarly messy lives. So I wrote a more detailed version for others to read, and this is the last sentence of it.\\n\\nNotes\\n\\n[1] My experience skipped a step in the evolution of computers: time-sharing machines with interactive OSes. I went straight from batch processing to microcomputers, which made microcomputers seem all the more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6af9ede9-1b89-44db-a81f-20ce45d1802a'), Node(page_content=\"[2] Italian words for abstract concepts can nearly always be predicted from their English cognates (except for occasional traps like polluzione). It's the everyday words that differ. So if you string together a lot of abstract concepts with a few simple verbs, you can make a little Italian go a long way.\\n\\n[3] I lived at Piazza San Felice 4, so my walk to the Accademia went straight down the spine of old Florence: past the Pitti, across the bridge, past Orsanmichele, between the Duomo and the Baptistery, and then up Via Ricasoli to Piazza San Marco. I saw Florence at street level in every possible condition, from empty dark winter evenings to sweltering summer days when the streets were packed with tourists.\\n\\n[4] You can of course paint people like still lives if you want to, and they're willing. That sort of portrait is arguably the apex of still life painting, though the long sitting does tend to produce pained expressions in the sitters.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='67d6eed8-0267-4500-a3b2-8c7ed2ac83a6'), Node(page_content=\"[5] Interleaf was one of many companies that had smart people and built impressive technology, and yet got crushed by Moore's Law. In the 1990s the exponential growth in the power of commodity (i.e. Intel) processors rolled up high-end, special-purpose hardware and software companies like a bulldozer.\\n\\n[6] The signature style seekers at RISD weren't specifically mercenary. In the art world, money and coolness are tightly coupled. Anything expensive comes to be seen as cool, and anything seen as cool will soon become equally expensive.\\n\\n[7] Technically the apartment wasn't rent-controlled but rent-stabilized, but this is a refinement only New Yorkers would know or care about. The point is that it was really cheap, less than half market price.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edacd5b2-60d6-434b-ac59-273dd42896e8'), Node(page_content=\"[8] Most software you can launch as soon as it's done. But when the software is an online store builder and you're hosting the stores, if you don't have any users yet, that fact will be painfully obvious. So before we could launch publicly we had to launch privately, in the sense of recruiting an initial set of users and making sure they had decent-looking stores.\\n\\n[9] We'd had a code editor in Viaweb for users to define their own page styles. They didn't know it, but they were editing Lisp expressions underneath. But this wasn't an app editor, because the code ran when the merchants' sites were generated, not when shoppers visited them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='46a2d3c9-dcd7-4d1d-a520-af1518532c01'), Node(page_content=\"[10] This was the first instance of what is now a familiar experience, and so was what happened next, when I read the comments and found they were full of angry people. How could I claim that Lisp was better than other languages? Weren't they all Turing complete? People who see the responses to essays I write sometimes tell me how sorry they feel for me, but I'm not exaggerating when I reply that it has always been like this, since the very beginning. It comes with the territory. An essay must tell readers things they don't already know, and some people dislike being told such things.\\n\\n[11] People put plenty of stuff on the internet in the 90s of course, but putting something online is not the same as publishing it online. Publishing online means you treat the online version as the (or at least a) primary version.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4bd607d-62be-4ee7-a34d-3bd5305da820', wins=1), Node(page_content=\"[12] There is a general lesson here that our experience with Y Combinator also teaches: Customs continue to constrain you long after the restrictions that caused them have disappeared. Customary VC practice had once, like the customs about publishing essays, been based on real constraints. Startups had once been much more expensive to start, and proportionally rare. Now they could be cheap and common, but the VCs' customs still reflected the old world, just as customs about writing essays still reflected the constraints of the print era.\\n\\nWhich in turn implies that people who are independent-minded (i.e. less influenced by custom) will have an advantage in fields affected by rapid change (where customs are more likely to be obsolete).\\n\\nHere's an interesting point, though: you can't always predict which fields will be affected by rapid change. Obviously software and venture capital will be, but who would have predicted that essay writing would be?\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6d435c9f-7f32-4be9-931b-854ce5d29546', wins=1), Node(page_content=\"[13] Y Combinator was not the original name. At first we were called Cambridge Seed. But we didn't want a regional name, in case someone copied us in Silicon Valley, so we renamed ourselves after one of the coolest tricks in the lambda calculus, the Y combinator.\\n\\nI picked orange as our color partly because it's the warmest, and partly because no VC used it. In 2005 all the VCs used staid colors like maroon, navy blue, and forest green, because they were trying to appeal to LPs, not founders. The YC logo itself is an inside joke: the Viaweb logo had been a white V on a red circle, so I made the YC logo a white Y on an orange square.\\n\\n[14] YC did become a fund for a couple years starting in 2009, because it was getting so big I could no longer afford to fund it personally. But after Heroku got bought we had enough money to go back to being self-funded.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e', wins=1), Node(page_content='[15] I\\'ve never liked the term \"deal flow,\" because it implies that the number of new startups at any given time is fixed. This is not only false, but it\\'s the purpose of YC to falsify it, by causing startups to be founded that would not otherwise have existed.\\n\\n[16] She reports that they were all different shapes and sizes, because there was a run on air conditioners and she had to get whatever she could, but that they were all heavier than she could carry now.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='27b2bd1d-8de5-4424-ba1f-323592eaf441'), Node(page_content=\"[17] Another problem with HN was a bizarre edge case that occurs when you both write essays and run a forum. When you run a forum, you're assumed to see if not every conversation, at least every conversation involving you. And when you write essays, people post highly imaginative misinterpretations of them on forums. Individually these two phenomena are tedious but bearable, but the combination is disastrous. You actually have to respond to the misinterpretations, because the assumption that you're present in the conversation means that not responding to any sufficiently upvoted misinterpretation reads as a tacit admission that it's correct. But that in turn encourages more; anyone who wants to pick a fight with you senses that now is their chance.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edabe432-0c59-4ba5-aa37-d5cddb072669'), Node(page_content=\"[18] The worst thing about leaving YC was not working with Jessica anymore. We'd been working on YC almost the whole time we'd known each other, and we'd neither tried nor wanted to separate it from our personal lives, so leaving was like pulling up a deeply rooted tree.\\n\\n[19] One way to get more precise about the concept of invented vs discovered is to talk about space aliens. Any sufficiently advanced alien civilization would certainly know about the Pythagorean theorem, for example. I believe, though with less certainty, that they would also know about the Lisp in McCarthy's 1960 paper.\\n\\nBut if so there's no reason to suppose that this is the limit of the language that might be known to them. Presumably aliens need numbers and errors and I/O too. So it seems likely there exists at least one path out of McCarthy's Lisp along which discoveredness is preserved.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e508308d-e2bf-46db-a3c4-c98d86a7d9d4'), Node(page_content='Thanks to Trevor Blackwell, John Collison, Patrick Collison, Daniel Gackle, Ralph Hazell, Jessica Livingston, Robert Morris, and Harj Taggar for reading drafts of this.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='cf0b9256-68dd-4e82-86f0-7a7464e0d0fe')], node_embeddings_list=[[-0.4864840507507324, 1.4953278303146362, -2.483095169067383, -0.13090671598911285, 0.5388283133506775, 0.03263700380921364, 1.6049073934555054, 0.36927375197410583, 0.376899778842926, -0.32016417384147644, 0.07661844789981842, -0.5045113563537598, 0.9932118654251099, 0.46091392636299133, 0.7749782800674438, 0.9791772365570068, 0.8240299224853516, -0.8413733839988708, 0.6601390242576599, 1.3214250802993774, -0.0014541863929480314, -0.4771997928619385, 0.07429936528205872, 0.03984106332063675, -0.09612180292606354, -0.12854205071926117, -1.0106065273284912, -0.13552778959274292, -1.2062469720840454, -1.2566789388656616, 0.09926658868789673, -0.5969429612159729, 0.0797877088189125, -0.5030465722084045, -0.863521158695221, 0.22742527723312378, 1.751513957977295, 1.4107850790023804, 0.6539307832717896, -0.049645375460386276, 1.7124297618865967, -0.6065614223480225, -0.09038663655519485, -1.2873902320861816, 0.6141224503517151, -0.7533595561981201, 1.3934601545333862, -0.8361425399780273, 0.12231005728244781, -0.02527104876935482, -0.8479353785514832, -0.388369083404541, 0.9572935104370117, 0.6533073782920837, 0.3450480103492737, 0.10119814425706863, 0.5645934343338013, 0.3290162682533264, 0.7490019202232361, -0.8425675630569458, 0.8562667965888977, 0.2986101508140564, -0.16312725841999054, 0.956280529499054, 0.18660210072994232, -0.7380489706993103, 0.19443431496620178, -0.042870186269283295, -0.9188985228538513, -0.32503587007522583, 0.37486231327056885, -0.12768426537513733, 0.10120801627635956, 0.5478570461273193, -1.463741660118103, 0.7016229033470154, 0.8774287104606628, 0.6986828446388245, 0.242282435297966, 0.918313205242157, -0.18654917180538177, -0.5197450518608093, 0.6731451153755188, -0.34729307889938354, 0.5859284996986389, -0.20247028768062592, 0.5007225871086121, -0.4599517583847046, -0.6350828409194946, 1.3337548971176147, 0.6650770306587219, 0.27963149547576904, 0.745192289352417, 0.1925511658191681, -0.706494152545929, -0.456095814704895, 0.3918251693248749, 0.5511340498924255, -0.8179551959037781, -0.5342932343482971, -1.003893494606018, -0.8676432967185974, 0.4654110372066498, 0.14215533435344696, -0.26477742195129395, 1.1163444519042969, 0.9311187267303467, -0.2409319430589676, -0.7403976917266846, -0.14410300552845, -0.11927824467420578, 0.24945108592510223, -0.831882119178772, -1.1742546558380127, -0.6094582676887512, 1.3488527536392212, 1.680446982383728, -0.43459680676460266, 1.1821043491363525, 1.0273462533950806, 0.4146674871444702, -0.9667333364486694, -0.2677384614944458, 0.8891524076461792, 0.4087006151676178, 0.14999008178710938, -0.7848932147026062, -1.168020248413086, 0.04931287094950676, -0.007302671205252409, 0.3466438353061676, 0.08718530088663101, -0.25867927074432373, 0.6377221345901489, -1.0164848566055298, 0.940284013748169, -0.4555308520793915, -0.4656195640563965, 0.10037780553102493, -0.4937652349472046, 0.41780993342399597, -0.38811758160591125, -0.299204021692276, -0.3402453064918518, 0.21063047647476196, -0.37330830097198486, 0.1334509402513504, -0.8741703629493713, -0.6385286450386047, 0.08279707282781601, -1.0080052614212036, 0.27800291776657104, 0.6665276885032654, 0.19590061902999878, -0.03686940297484398, -0.06524474173784256, 0.35422196984291077, 0.45578640699386597, 0.49152231216430664, 0.3231486976146698, 1.0174719095230103, -0.21855074167251587, -0.9000975489616394, 0.6486086249351501, 0.7941189408302307, -0.7382852435112, 0.3381063640117645, 0.49302586913108826, 0.5660306215286255, 1.0242059230804443, -0.22204113006591797, -0.8297144770622253, -0.26603496074676514, 0.15612533688545227, -0.13804891705513, -0.5354702472686768, 1.7772196531295776, -0.41576120257377625, -1.4959434270858765, -0.9221198558807373, 0.8635861277580261, -0.5337693095207214, 0.5428102016448975, -0.12925800681114197, -0.006798029411584139, -0.6638987064361572, 0.7628021240234375, 0.1651991903781891, -0.8000989556312561, -0.5578874945640564, -0.28020697832107544, 0.04170459136366844, -0.5740565061569214, 0.10696211457252502, -0.7794063091278076, -0.07896891236305237, 0.2929765582084656, -1.9465612173080444, -0.4136141538619995, -0.17718680202960968, -0.5294054746627808, -0.18766257166862488, -0.5769191980361938, 0.9238768815994263, -0.5683004260063171, 1.148861289024353, -0.9523991346359253, 0.9919272661209106, -0.5582164525985718, 0.5712845921516418, 0.6332875490188599, 0.03987528011202812, -0.6593706011772156, 0.8304091095924377, -0.29218727350234985, -1.5043035745620728, -0.06861027330160141, 0.604152500629425, -0.8428583741188049, 0.02139166370034218, 0.11010527610778809, -0.0374000184237957, 0.3474631607532501, 0.134092777967453, 0.24004912376403809, 0.06575784832239151, -0.6132557988166809, -0.449791818857193, -1.0398544073104858, 0.06678025424480438, -0.5211718082427979, -0.7613722681999207, 0.6515987515449524, -0.1048809140920639, -0.7440483570098877, -0.14736463129520416, 0.12449736148118973, 1.358614444732666, 0.3712126910686493, 1.3060123920440674, 0.32902052998542786, 0.4818570613861084, 0.16507375240325928, -0.403365820646286, -0.2599639594554901, 1.0439560413360596, 0.5630043148994446, -0.03142046555876732, 0.23179379105567932, 1.161116361618042, 1.357587456703186, -0.27601414918899536, 0.9227680563926697, 0.07535906136035919, -0.1400170624256134, -0.7634768486022949, -0.9875643253326416, 0.49662089347839355, -0.3044302761554718, 1.8602900505065918, 0.6348282098770142, -1.1338945627212524, 0.258952260017395, 0.05048736184835434, -0.41620317101478577, -0.46701309084892273, -0.6092929244041443, -0.8003408908843994, -0.4618443250656128, -0.21072936058044434, -0.6562128663063049, 0.37345728278160095, -0.1380358338356018, 0.44051072001457214, -0.7580539584159851, -1.3042107820510864, -0.6466823220252991, 0.057890791445970535, -0.25264856219291687, 1.4553565979003906, 0.495835542678833, -1.2061182260513306, -0.36699068546295166, 0.3047058582305908, 0.6620574593544006, 0.610964834690094, -0.009077725000679493, 0.6451467871665955, 0.35781168937683105, -1.033898115158081, 0.05771877244114876, 0.09978344291448593, -0.01823464408516884, -0.11920860409736633, -0.34799909591674805, 0.6403312087059021, 1.4997375011444092, -1.1170541048049927, -0.43419477343559265, -0.6393699049949646, 0.5955172181129456, 1.83098566532135, 0.44622448086738586, 0.7924044728279114, 0.07948658615350723, -0.21424907445907593, -0.03365898132324219, -0.7351117134094238, -1.1587777137756348, -0.14470358192920685, -0.8133431077003479, -1.1081510782241821, -0.6399529576301575, -0.5836365222930908, -0.04823201149702072, 0.3113213777542114, -0.38585320115089417, -0.02064032480120659, 1.514155626296997, -0.20877645909786224, -0.4331432282924652, -0.6479352712631226, 0.5128329992294312, -0.5013390183448792, 0.1703261137008667, 1.700183391571045, -0.7974804639816284, -0.6085972189903259, 0.16185623407363892, 0.4215621054172516, -0.1978544294834137, 1.1134042739868164, 0.05850605666637421, -1.341753363609314, -0.9876771569252014, 0.2342088371515274, 1.4850772619247437, -0.29661092162132263, 0.48468950390815735, -0.22470246255397797, 0.7247509956359863, 0.6032288074493408, -0.5868939161300659, -1.0654345750808716, 1.4457513093948364, -0.3439600169658661, -0.4960450232028961, -0.17079654335975647, 0.5452933311462402, 0.42754805088043213, -0.3220060169696808, -0.9048166871070862, -0.4495933949947357, -0.7373155951499939, 0.10886538028717041, 0.5721672177314758, -0.22332359850406647, 1.2284318208694458, -0.4999241232872009, -0.19005508720874786, 0.7815330624580383, 0.8681657314300537, -0.3793509900569916, -0.8809196352958679, 0.3760776221752167, 0.7392125129699707, 1.3769245147705078, -0.17826591432094574, 0.17852512001991272, 0.9797710180282593, 0.6399626731872559, -0.1204434409737587, 0.46684926748275757, 1.1811004877090454, -0.38026729226112366, 0.6723397970199585, -1.269701600074768, 0.016828233376145363, -0.013311827555298805, -0.7737100124359131, -0.2618798315525055, 0.9120712876319885, -0.6972975134849548, -0.867381751537323, 0.6442795991897583, 0.23807421326637268, -0.019191332161426544, -0.12437578290700912, 0.28963401913642883, 0.4819529056549072, -0.156572625041008, -0.12950283288955688, -0.3729536235332489, -0.03210362792015076, 0.01254374347627163, -1.102274775505066, -0.08934585750102997, 0.18384571373462677, -0.08077319711446762, 1.3221306800842285, -0.621619462966919, 0.12974736094474792, -1.1539034843444824, -0.13277393579483032, 0.5453199744224548, -0.7359796166419983, 0.3887213468551636, 0.03783005475997925, 0.1337936967611313, 0.3154546022415161, 0.11973193287849426, 2.170264482498169, -0.08577362447977066, -0.10385073721408844, 0.4783230721950531, -0.021054813638329506, -0.2103542685508728, -0.9993698596954346, -0.39852601289749146, 0.07840584218502045, -0.311281681060791, -0.12490491569042206, 0.5241817235946655, -0.09970910102128983, 1.703011393547058, 1.1719911098480225, 0.5574577450752258, 0.11698168516159058, 0.06578563153743744, -0.6458771228790283, -0.2881545424461365, 0.5147825479507446, -0.6344001293182373, -0.6870360374450684, -0.401914119720459, 0.18223480880260468, -0.7134068012237549, 0.38949429988861084, 0.683576226234436, 0.40536344051361084, -0.006641748361289501, 0.3234425485134125, 0.2646399736404419, 0.8518924713134766, 1.0499662160873413, 1.4853832721710205, 0.19854964315891266, -0.9766244292259216, -0.5216121077537537, 0.14666278660297394, -0.5127107501029968, 0.15583264827728271, 0.42920199036598206, 1.196698546409607, 1.034114956855774, -1.3651326894760132, -0.07042748481035233, 0.2790479063987732, 0.6284422278404236, 0.5966250896453857, 1.1302331686019897, -0.9467818737030029, -0.052118606865406036, 0.4411720931529999, 0.5663307905197144, -0.17442145943641663, -0.24892474710941315, 0.3761994242668152, -0.6440271735191345, 0.8194637894630432, -0.8886706233024597, 0.452502965927124, -0.7640030980110168, -0.8166048526763916, 0.13193413615226746, -0.8551043272018433, -0.16186925768852234, 0.48991820216178894, 0.7327815890312195, 1.2326518297195435, -0.2560814321041107, -0.861160933971405, 0.09156633168458939, -0.9370567202568054, 0.6710080504417419, -0.5694254040718079, -0.6655397415161133, -0.8271812200546265, -0.39884480834007263, -0.4058659076690674, 0.1791781485080719, -0.43065014481544495, -0.28494206070899963, -0.7286369204521179, -1.3619372844696045, 0.6563009023666382, 1.2224546670913696, 1.7455487251281738, 1.1589974164962769, -0.44041937589645386, 0.41388386487960815, 0.0012405912857502699, -1.3806440830230713, -0.09402249753475189, 0.8506878614425659, -0.02931027300655842, 0.3702852725982666, -1.4281792640686035, -0.4547490179538727, 0.06478706747293472, 0.007101014256477356, -0.5073710083961487, 1.0537631511688232, 0.699770987033844, 1.1404316425323486, -0.21720319986343384, -0.7101011872291565, 0.7401707768440247, -0.7416391968727112, 0.7974838018417358, 0.7599862813949585, -0.032167382538318634, -1.4077223539352417, -0.7132616639137268, -1.3464022874832153, 0.3726373314857483, -0.4093955159187317, -0.7578126788139343, 0.9836755990982056, 0.6008113622665405, 0.8755245804786682, 0.5445013642311096, -1.207647442817688, 0.26085853576660156, 0.06888733804225922, -0.3390505611896515, -0.8218275308609009, 0.02165374904870987, 0.3732382357120514, -0.14445346593856812, 0.23948442935943604, 0.39477118849754333, 0.040843892842531204, -0.6245413422584534, -0.16595597565174103, 0.04144813120365143, 0.31525734066963196, 0.5413529276847839, 0.05178333818912506, -0.7409623861312866, -0.051476411521434784, -0.5970669388771057, -0.450377494096756, -0.4719521999359131, 1.1608638763427734, 0.05060403794050217, -0.7776395678520203, -0.22644439339637756, 0.20142270624637604, -0.9119824171066284, 0.20337475836277008, -0.6210832595825195, 0.633095920085907, 0.7724893093109131, 0.09968167543411255, -0.5874606370925903, -0.29977351427078247, 0.03867649659514427, 0.04668499156832695, 0.4471057057380676, 0.31716665625572205, -1.7476564645767212, 0.00022490054834634066, 0.17692694067955017, -0.686568558216095, -0.6285669803619385, -0.05823054909706116, 0.13873380422592163, -1.1641279458999634, -0.6990417838096619, -0.3869599401950836, 0.8934739828109741, 0.9007747173309326, -0.9428307414054871, 0.4952140748500824, 1.3800077438354492, -1.618570327758789, 0.7026103138923645, -0.5327660441398621, -1.6226803064346313, -0.32584404945373535, -0.7362183928489685, 0.5861504673957825, -0.5209220051765442, 0.45349442958831787, -0.3442174196243286, 1.155558705329895, -1.4392129182815552, -1.7026771306991577, -1.2527408599853516, -0.3043428659439087, 1.5757249593734741, 0.5375774502754211, -0.3168468475341797, 1.6441760063171387, 1.422086477279663, -0.3701988160610199, -0.8100652098655701, 0.21271643042564392, -1.0588411092758179, -0.018628206104040146, 0.5888960957527161, 0.42660462856292725, 0.6234060525894165, 0.8501317501068115, 0.3700736463069916, 1.5171966552734375, -0.2632322609424591, 1.4128687381744385, -0.9273568391799927, -0.8189752101898193, 0.5682811737060547, 0.6821929216384888, -1.4808132648468018, -1.3075262308120728, -0.3991391062736511, -0.5632664561271667, -0.33524152636528015, -0.09572520107030869, 0.26891690492630005, -0.2835579514503479, -0.11138652265071869, -0.8638671636581421, 0.8083613514900208, -0.9339322447776794, 0.1427474319934845, -0.0031674527563154697, -0.3786966800689697, -0.03400310128927231, 1.0078201293945312, -0.28335508704185486, -2.029181480407715, -0.1163470670580864, 0.19117650389671326, 0.5940204858779907, -1.0862820148468018, 0.17665429413318634, 0.2528420686721802, 0.27239465713500977, -0.17994074523448944, 2.1409494876861572, 0.8216951489448547, -0.6055282354354858, -0.26278671622276306, 0.23389559984207153, -0.41914528608322144, 0.2729293406009674, -0.9524579644203186, -0.8105363845825195, -0.7522731423377991, 1.013993740081787, 0.2345469444990158, 0.5389344692230225, -0.25316640734672546, 0.39761894941329956, -0.2399633824825287, 0.011293256655335426, 1.5864683389663696, -1.0937626361846924, -0.36979544162750244, 0.5917309522628784, 0.08077359199523926, -0.6819072961807251, 0.27771416306495667, 0.5732125639915466, 0.61294025182724, -1.2371845245361328, 0.7193108797073364, 0.4108108580112457, -0.9333896636962891, 0.6148304343223572, 0.43206506967544556, -0.5029415488243103, -0.17245350778102875, -0.45186108350753784, -1.7772626876831055, -0.2665807008743286, -0.1840539425611496, -0.426052451133728, 1.034081220626831, -1.0003129243850708, -0.3953058421611786, 0.7386963367462158, -0.7327293157577515, -0.13644543290138245, -0.6374603509902954, 0.2577351927757263, -0.15362760424613953, -0.4327804148197174, 1.2466089725494385, 0.28286808729171753, 1.3237837553024292, 0.07075303047895432, 0.21751610934734344, -1.5321215391159058, -0.1418807953596115, -0.45741209387779236, -0.30032992362976074, -0.2629093825817108, 0.054488275200128555, 1.1303176879882812, -0.04624050855636597, -0.8897368907928467, -0.23950664699077606, 0.13743874430656433, 0.9924253225326538, 0.12109889835119247, -0.6786760091781616, 0.48097091913223267, 0.49176719784736633, 0.15034602582454681, 0.09690239280462265, -0.4726406931877136, -0.646044909954071, -0.39116230607032776, -0.5770983695983887, 0.11890588700771332, -0.25356990098953247, 0.7826312780380249, 0.43924763798713684, -0.21402406692504883, -0.3667421340942383, -1.2852896451950073, 0.8288066387176514, -0.47107937932014465, -0.7125102281570435, 0.02994934283196926, -0.31071484088897705, -0.09900836646556854, -0.20278987288475037, 0.5238033533096313, 0.4074316620826721, -0.36703482270240784, -0.05883868783712387, -1.2347214221954346, -0.6211671233177185, -0.2126273214817047, 0.2643027901649475, 1.0639921426773071, -0.019644614309072495, -0.195327490568161, 0.04137634485960007, -0.9405891299247742, 0.07086382806301117, 0.17125330865383148, 0.43744030594825745, 0.6838149428367615, 1.2986122369766235, 2.0996789932250977, 0.5884167551994324, 0.20228005945682526, -0.4811590909957886, 0.7988602519035339, -0.532646894454956, -0.35231730341911316, -0.7695010304450989, -0.7009415030479431, -0.39163246750831604], [-0.2762235105037689, 1.0435179471969604, -2.147933006286621, 0.17702092230319977, 0.4676657021045685, -0.17406833171844482, 1.0754215717315674, -0.1986594945192337, 0.03638250008225441, -0.5488455891609192, -1.0492887496948242, -0.21867531538009644, 0.6868480443954468, 0.5931729078292847, -0.06991837173700333, 0.2988024353981018, 0.8736750483512878, -0.5168519616127014, 0.5584871768951416, 1.122403860092163, 0.44882744550704956, -0.8136898279190063, 0.3054348826408386, 0.07413244247436523, -0.16741672158241272, 0.02150951512157917, -1.4033187627792358, -0.6280221343040466, -0.7395836710929871, -0.937179684638977, 0.5416960716247559, -1.2958731651306152, 0.286794513463974, 0.020528770983219147, -0.9370978474617004, -1.0245035886764526, 1.222577452659607, 1.1457678079605103, 0.9215420484542847, 0.315981924533844, 1.560907006263733, -0.22851651906967163, 0.06862188130617142, -1.3104591369628906, -0.11360728740692139, -0.37366148829460144, 0.8356195688247681, -1.1418182849884033, 0.26620572805404663, 0.06606942415237427, 0.12958109378814697, -0.5726176500320435, 0.4822477102279663, 1.177152156829834, 0.9044185280799866, -0.37794968485832214, 0.3986935317516327, 0.2430546134710312, 0.7013170719146729, -0.11224061250686646, 1.5856280326843262, 0.4902336299419403, -0.7472681403160095, 1.5452443361282349, -0.17273958027362823, -0.45807763934135437, -0.15327085554599762, -0.17386522889137268, 0.3580778241157532, 0.19921933114528656, 0.7662603855133057, 0.22445276379585266, -0.1263090968132019, 0.7572992444038391, -1.3925268650054932, 0.5292388200759888, 0.5424891114234924, 0.6076132655143738, 0.43336737155914307, 0.9932827949523926, 0.39540916681289673, 0.03523635491728783, 0.3637565076351166, -0.32457202672958374, 0.03027627058327198, -0.23367834091186523, 0.1011764332652092, 0.1691635698080063, -0.2564716637134552, 1.917168140411377, 0.7053709626197815, -0.15163420140743256, -0.24908021092414856, -0.1941699981689453, -0.3549090027809143, -0.6743176579475403, 0.6422973275184631, 0.48472678661346436, -0.8488268852233887, -0.8885774612426758, -0.7712924480438232, -0.5819073915481567, -0.3925069570541382, -0.26628240942955017, 0.36407244205474854, 1.2617264986038208, -0.26471081376075745, -0.8662840723991394, -0.28924259543418884, 0.07268410921096802, -0.8701607584953308, -0.02933628298342228, -0.8742074370384216, -0.5897912383079529, -0.6483034491539001, 1.1810640096664429, 0.8855341076850891, -0.5284353494644165, 0.8733596205711365, 0.5858824253082275, -0.36969897150993347, -0.6537447571754456, -0.693209171295166, 0.6939261555671692, 0.5696896910667419, 0.992433488368988, -0.4603581428527832, -0.8321208357810974, 0.35519489645957947, -0.09910981357097626, 0.46007177233695984, 0.028178295120596886, -0.3780938386917114, 1.1898322105407715, -0.7141819596290588, 1.233057975769043, -0.7085003852844238, -0.5793725848197937, -0.09041060507297516, 0.47430935502052307, 0.7506034970283508, -0.16685596108436584, -0.6031367778778076, -0.7475606799125671, 0.5222858190536499, -0.45633402466773987, -0.38295653462409973, -0.4645574986934662, -0.7880285382270813, 0.37265247106552124, -1.022291898727417, 0.6139141917228699, 0.3619597554206848, 0.6345071792602539, 0.406679630279541, -0.03402864187955856, 0.04392712935805321, 0.03396403044462204, 0.9067963361740112, 0.4219152331352234, 0.5078160166740417, -0.0367269404232502, -0.7368472218513489, 1.2974371910095215, 0.4119081497192383, -0.3024914562702179, -0.38621053099632263, 1.373828411102295, 0.18685749173164368, 0.9678274989128113, -0.9153609275817871, 0.34008151292800903, -0.7315624356269836, 0.35045602917671204, 0.5127485394477844, -0.2073451578617096, 1.0623242855072021, -0.30001118779182434, -1.1843314170837402, -0.7621354460716248, 0.8719851970672607, -0.5297222137451172, -0.3276306092739105, -0.5053360462188721, 0.10218438506126404, -0.09255043417215347, 0.4837804138660431, -0.5009375810623169, -1.2976456880569458, -0.5108283758163452, -0.44907528162002563, -0.3826083838939667, -0.521337628364563, 0.3665682077407837, -0.09790810197591782, -0.6941621899604797, 0.014517505653202534, -1.0349246263504028, -0.28082016110420227, 0.1376040279865265, -0.5323244333267212, -0.27229830622673035, -0.6817211508750916, 0.5964270234107971, -0.32075512409210205, 1.7278969287872314, -1.213127851486206, 0.754491925239563, -0.5594972968101501, 0.04744010046124458, 1.3652361631393433, -0.39029932022094727, -0.9625536799430847, 0.787190854549408, 0.29716041684150696, -1.638767123222351, 0.017138736322522163, 0.2549121379852295, -0.46535465121269226, 0.26275238394737244, 0.020476682111620903, 0.6726825833320618, 0.790407121181488, 0.2706238329410553, 0.3091830313205719, 0.21481910347938538, -0.986110270023346, -0.07905810326337814, -0.3572339117527008, 0.5393883585929871, -0.12977546453475952, -0.7793175578117371, 1.1137893199920654, 0.7425740361213684, -0.9360461831092834, -0.07774105668067932, -0.0503075011074543, -0.3017916977405548, -0.052580732852220535, 1.6790940761566162, 0.5552127957344055, 0.1764427274465561, 0.27044010162353516, -0.7549957036972046, -0.7949334383010864, 0.4919065833091736, 1.3662703037261963, -0.407819002866745, 0.43830862641334534, 1.6993573904037476, 1.1992107629776, 0.1377868503332138, 0.1215856522321701, 0.4438161253929138, -0.05240321159362793, -0.5634496212005615, -0.7863461971282959, 0.34546276926994324, -1.0506172180175781, 1.0068838596343994, 0.6986384391784668, -0.735052764415741, -0.8421558141708374, 0.1438516080379486, -0.1515084207057953, -0.578880250453949, -0.8708451986312866, -0.38435158133506775, -0.3300357460975647, -0.04915918782353401, 0.1723911166191101, -0.022562328726053238, -0.029402798041701317, 0.21788261830806732, -0.9054563045501709, -0.7481980323791504, -0.23460374772548676, 0.6905785799026489, -0.15270397067070007, 1.288449764251709, -0.5917378067970276, -1.5346674919128418, -0.2819984555244446, 0.061902642250061035, 0.8594236969947815, 0.2729814052581787, -0.6170285940170288, -0.11593996733427048, 0.32282623648643494, -0.34302404522895813, 0.6633561253547668, 0.04462987929582596, 0.4348137676715851, 0.017683817073702812, 0.025532543659210205, 0.8104696273803711, 0.9549503922462463, -0.7910693883895874, -1.4875832796096802, -0.05836310237646103, 0.1759985089302063, 1.0051599740982056, 0.6051481366157532, 0.6548299193382263, 0.20201575756072998, -0.6423584222793579, -0.8680848479270935, -0.10372292995452881, -0.7151662707328796, -0.6489991545677185, -0.8457215428352356, -0.715534508228302, -0.23710547387599945, -0.1068524494767189, -0.03278028592467308, 1.0171564817428589, 0.06959261745214462, 0.6896021962165833, 1.3978790044784546, -0.5672703981399536, -0.6061393618583679, -0.1300804615020752, 0.3184666335582733, -1.1271706819534302, 0.5954163074493408, 1.3206405639648438, -1.5060230493545532, -0.6460133194923401, -0.4422643780708313, 0.03681860864162445, -0.5730381608009338, 0.2123924046754837, -0.3311940133571625, -1.1054514646530151, -0.8132855892181396, -0.1899007111787796, 1.001909852027893, -0.5232822895050049, 0.3192318379878998, -0.5945964455604553, 0.2968616485595703, 0.8749769926071167, -0.17431806027889252, -0.42200618982315063, 0.4689674973487854, -0.7449824810028076, -0.769957423210144, -0.5218564867973328, 0.25933778285980225, 1.5799952745437622, -0.45882710814476013, -0.5617051720619202, -0.7480464577674866, 0.4190049469470978, -0.21595542132854462, 0.3527986705303192, -0.2863916754722595, 0.7623932957649231, -0.0027284277603030205, -0.1729700118303299, 0.8004288077354431, -0.11178229004144669, -0.18529869616031647, -1.2415571212768555, 0.3869352638721466, 0.49797555804252625, 0.9276190996170044, -0.18568868935108185, 0.755973756313324, 0.32934603095054626, 0.16104422509670258, 0.2121131867170334, 0.5857518911361694, 1.1674331426620483, -0.03676112741231918, -0.36383670568466187, -0.5896072387695312, -0.6619505286216736, -0.018521619960665703, -0.6746865510940552, 0.13586625456809998, 0.2822858393192291, -0.9299793243408203, -0.6642640829086304, 0.7846919298171997, 0.6515389680862427, -0.03240605816245079, -0.08476271480321884, 0.12402061372995377, 0.8537225127220154, -0.16936571896076202, -0.29546573758125305, -0.2760045826435089, 0.3766329288482666, 0.6409080028533936, -1.5674262046813965, 0.28945937752723694, 0.255682110786438, 0.2669807970523834, 0.5434024930000305, -0.8712978363037109, 0.11624662578105927, -0.4316636025905609, 0.3645147979259491, 0.7678184509277344, 0.029643375426530838, 0.17946885526180267, -0.04125203564763069, 0.1556069254875183, -0.2757226526737213, -0.0009713852778077126, 1.2906922101974487, -0.34439000487327576, 0.10170125216245651, -0.16375622153282166, -0.14707794785499573, -0.6718043088912964, -0.1478005349636078, -0.45539596676826477, 0.48428118228912354, -0.18099655210971832, 0.7917231321334839, 0.40884625911712646, -0.22421365976333618, 0.9982113838195801, -0.004923101980239153, 0.7484694123268127, 0.9320806264877319, 0.27514851093292236, -1.432821273803711, -0.4181910753250122, 0.15149396657943726, -0.25633588433265686, -1.2022221088409424, -0.7795764207839966, 0.18536770343780518, 0.31146496534347534, 0.1936621516942978, 0.027174359187483788, 0.6568194031715393, 0.4829258918762207, 0.060606949031353, 0.03578454256057739, 0.6012817025184631, 0.9215062260627747, 1.0010809898376465, 0.4110986888408661, -0.143641859292984, -1.1087698936462402, 0.875560998916626, -1.2190407514572144, 0.09938657283782959, 0.46377718448638916, -0.07816727459430695, 0.9879717230796814, -1.2367697954177856, -0.3341219425201416, 0.625045657157898, -0.03579201176762581, 0.4767037630081177, 0.6615999341011047, -0.48928430676460266, 0.36733463406562805, 0.5950943827629089, -0.2960995137691498, -0.5438185930252075, 0.3246203064918518, -0.15124687552452087, 0.040042806416749954, 0.743457019329071, -0.9852390289306641, 0.9047005772590637, -0.9020677804946899, -0.4366312623023987, -0.5283105373382568, -0.46307000517845154, 0.42792338132858276, 0.17534495890140533, -0.08231165260076523, 1.2524513006210327, -0.05874139443039894, -1.0363754034042358, -0.05980587378144264, -0.5312548875808716, 0.5199055075645447, -0.42625850439071655, -0.5723546147346497, -0.14504240453243256, -0.5885515213012695, 0.2698417901992798, 0.9218564033508301, -0.6785215735435486, -0.1781175434589386, -0.24496671557426453, -1.6866037845611572, 0.013640522956848145, 0.27014878392219543, 1.1194919347763062, 0.6333684325218201, -0.4151111841201782, 0.4590245187282562, 0.6538079380989075, -1.1724302768707275, 0.1351732462644577, 0.3366554379463196, -0.4300615191459656, -0.42835062742233276, -1.287503957748413, -0.5059044361114502, 1.0661108493804932, 0.807515025138855, -0.13012942671775818, 0.2980881929397583, 1.0550698041915894, 1.4484394788742065, -0.26129716634750366, -0.13152047991752625, 0.7205493450164795, -0.35648924112319946, 0.23053069412708282, 0.6570132970809937, -0.008349809795618057, -0.3678499758243561, -0.7074211835861206, -1.8485291004180908, 0.7129113078117371, -0.519183337688446, -0.6190979480743408, 1.1408069133758545, 0.6176238059997559, 0.7867937684059143, 0.20219603180885315, -0.5444259643554688, 0.2820621132850647, 0.12122189998626709, 0.1360563039779663, -1.5216646194458008, 0.27906641364097595, 0.506258487701416, -0.4165571331977844, 0.15797750651836395, -0.10242167115211487, -0.1912005990743637, -0.6846937537193298, -0.2155650109052658, 0.48054346442222595, 0.35689398646354675, 0.28129222989082336, 0.48466014862060547, -0.3540821075439453, 0.3330104947090149, -0.5787815451622009, -0.9055835008621216, 0.2824101448059082, 0.6702770590782166, 0.5127533674240112, -0.622739851474762, -0.19960016012191772, -0.012654340825974941, -0.03917400911450386, -0.16835783421993256, -0.7701234817504883, 1.013226866722107, 0.23178087174892426, -0.2112000584602356, -0.3894290030002594, -0.5127435922622681, -0.31206586956977844, -0.5716086030006409, 0.36741235852241516, 0.3718002438545227, -1.5295112133026123, 0.013336212374269962, 0.36746373772621155, -0.8094426989555359, -0.2686251401901245, -0.10070651024580002, 0.5963056087493896, -0.9319296479225159, -0.5529571175575256, -0.7326639294624329, 0.6081287264823914, 0.737280547618866, -0.4040399491786957, 0.6978673934936523, 0.7727034687995911, -1.409510612487793, 0.44052091240882874, 0.30862048268318176, -0.8307693004608154, 0.08769655972719193, -1.272884726524353, 0.754736602306366, -0.16507290303707123, 0.23800736665725708, -0.061387017369270325, 1.6221545934677124, -1.3637794256210327, -0.5103985071182251, -0.98374342918396, 0.10340876877307892, 1.1313689947128296, 1.0435782670974731, -0.19796739518642426, 1.0952953100204468, 0.7303349375724792, -1.017189860343933, -0.028401857241988182, -0.10565095394849777, -0.6615384221076965, 0.4383907616138458, 0.4558967351913452, 0.3688057065010071, 0.4640614986419678, 1.494846224784851, 0.1931179016828537, 0.6166942119598389, 0.4229682683944702, 1.3507643938064575, -1.2228933572769165, -0.32641321420669556, 0.24100039899349213, 0.5139521956443787, -0.7440794706344604, -1.1815953254699707, -0.1045801118016243, -0.7589271664619446, -0.7573317885398865, 0.3972143232822418, 0.27664873003959656, -0.608190655708313, -0.29785048961639404, -0.040723297744989395, 0.5170796513557434, -0.4233982264995575, 0.36507776379585266, 0.36523979902267456, -0.20566248893737793, -0.39831969141960144, 0.62625652551651, -0.4921216666698456, -1.837116003036499, 0.40285688638687134, 0.6305745840072632, 0.48441725969314575, -0.6745423078536987, 0.36442285776138306, 0.49986422061920166, 0.1225128173828125, -0.5913260579109192, 1.4407618045806885, 1.3125909566879272, -0.9261640906333923, 0.07208440452814102, 0.5946183800697327, 0.29107168316841125, 0.08718232810497284, -0.7867512106895447, -1.043257474899292, -0.8161843419075012, 0.7998484373092651, 0.5085076689720154, 0.13694727420806885, -0.4299597442150116, 0.18988071382045746, 0.10666681826114655, 0.17549192905426025, 1.0603926181793213, -1.1690526008605957, -0.5264047384262085, 0.45648589730262756, 0.17067596316337585, 0.2044835090637207, 0.8313398361206055, 0.3921031951904297, 0.8484909534454346, -0.6007767915725708, 0.07813427597284317, 1.0489864349365234, -0.8333816528320312, 0.14057795703411102, 0.022272519767284393, -0.8520503044128418, 0.3815549910068512, -0.15956465899944305, -1.6466693878173828, 0.1313883513212204, -0.6255310773849487, -0.96354740858078, 0.2688208222389221, -1.1019372940063477, -0.7384890913963318, 0.4322347342967987, -0.11941927671432495, 0.036213867366313934, -0.6296105980873108, 0.4298686683177948, 0.006603708956390619, 0.2927655875682831, 1.2613826990127563, -0.4415152370929718, 0.8011163473129272, -0.3162899613380432, -0.3427336812019348, -1.7419034242630005, 0.4552565813064575, -0.07053724676370621, 0.3840051591396332, -0.6466817855834961, -0.08200104534626007, -0.16534258425235748, -0.20568497478961945, -0.49233341217041016, 0.4930437505245209, -0.38738712668418884, 0.3392791450023651, 0.6558170914649963, -0.319947749376297, -0.9171062111854553, 0.3178272247314453, 0.7039527893066406, -0.15048128366470337, -0.7037985324859619, -0.37274256348609924, -0.3240579068660736, -0.06992074847221375, 0.9478099346160889, 0.048167407512664795, 1.0039992332458496, 0.16811442375183105, -0.40129774808883667, -0.31423085927963257, -0.9295132160186768, 0.5617550611495972, -0.9760094285011292, 0.5315940380096436, -0.6186608076095581, -0.39129725098609924, -0.21295146644115448, -0.6033167839050293, 0.6972644329071045, 0.8647212386131287, -0.09541777521371841, 0.07909313589334488, -0.9700567722320557, -0.8174899220466614, -0.4017753601074219, 0.04471824690699577, 1.1843539476394653, 0.3203049302101135, -0.03442711755633354, -0.038286514580249786, -0.88640958070755, 0.27989116311073303, -0.028285518288612366, -0.3017543852329254, -0.0950838252902031, 0.9656713604927063, 1.7933372259140015, 0.48112210631370544, 0.42965537309646606, 0.07469786703586578, 0.5968982577323914, -0.24530011415481567, -0.2842484414577484, -0.4399813115596771, -0.8960545659065247, 0.3499375879764557], [0.10801251232624054, 1.7401522397994995, -2.004685163497925, -0.013756264932453632, 0.46990564465522766, -0.09817343950271606, 1.0337167978286743, -0.7275130748748779, 0.06275860220193863, -0.9594452381134033, -0.041161082684993744, 0.002737252041697502, 1.0470868349075317, 0.9073339104652405, 0.06230712682008743, 0.2721346616744995, 0.6164716482162476, -0.5832828879356384, 0.4377419948577881, 0.6583498120307922, -0.05294511839747429, -0.7676753401756287, 0.3792605400085449, 0.6497117280960083, -0.5750406384468079, 0.11493223160505295, -1.1959681510925293, -0.355874627828598, -0.42068973183631897, -0.28657102584838867, 0.617831826210022, -0.5199248194694519, -0.09212622046470642, 0.796649158000946, -0.9034935832023621, -0.9956817030906677, 1.2648956775665283, 1.1272697448730469, 0.5215920805931091, 0.9303048253059387, 1.961841344833374, -0.13033883273601532, -0.26226767897605896, -1.2785544395446777, 0.20684336125850677, -0.03878951817750931, 0.9396726489067078, -1.1952977180480957, 1.079596757888794, -0.2160481959581375, 0.16004779934883118, -0.371097594499588, 0.2386314570903778, 1.130516529083252, 1.0556528568267822, 0.24282494187355042, 0.23902598023414612, -0.38138964772224426, 1.1875102519989014, -0.30475884675979614, 1.088246464729309, -0.4114841818809509, 0.04692479968070984, 1.03854238986969, -0.01849622093141079, -0.7731118202209473, -0.18290138244628906, -0.054048653692007065, 0.3973965048789978, -0.31569191813468933, 0.8083475828170776, -0.40772777795791626, -0.5355914235115051, 0.607290506362915, -1.4212182760238647, 0.43492385745048523, 0.9969441890716553, 0.7605239152908325, 0.011025622487068176, 0.6093167066574097, -0.02329808659851551, -0.2535631060600281, 0.7433437705039978, -0.48467499017715454, -0.2570962607860565, -0.32314810156822205, -0.11344855278730392, 0.2023288607597351, -0.33540791273117065, 1.5074325799942017, 0.8763335943222046, -0.16716663539409637, 0.3543393909931183, -0.33623939752578735, 0.11790471524000168, -0.1457562893629074, 1.1417365074157715, 0.02808462455868721, -0.5720534920692444, -0.7655102014541626, -0.792769193649292, -0.49629002809524536, 0.36323001980781555, -0.17114640772342682, 0.20714043080806732, 1.512047290802002, 0.0009512528777122498, -0.40133482217788696, -0.29975777864456177, -0.25598809123039246, -0.6401874423027039, -0.3543626070022583, -1.1671040058135986, -1.1768426895141602, -0.6768673658370972, 0.9605981707572937, 0.785286545753479, -0.17791502177715302, 0.5244778990745544, 0.9009268283843994, 0.01819670759141445, -0.5757376551628113, -0.12253886461257935, 0.3224334716796875, 0.387971967458725, 0.384628027677536, -0.1739397495985031, -0.6393897533416748, -0.2890353500843048, 0.26819658279418945, 0.8214815855026245, -0.10562773793935776, -0.6168711185455322, 0.8173802495002747, -0.28828299045562744, 1.228018879890442, -0.8340940475463867, -0.04660706967115402, 0.3593929409980774, -0.03898192197084427, 0.5136744976043701, -0.8579070568084717, -0.7633877396583557, -0.49234798550605774, -0.2947230637073517, -0.17913416028022766, 0.11236213147640228, -0.16316808760166168, -0.7053623795509338, -0.2889974117279053, -1.0708112716674805, 0.4124296307563782, 0.7504978775978088, 0.11623312532901764, 0.11777595430612564, -0.4069848358631134, -0.11274606734514236, -0.036096516996622086, 0.47387465834617615, 0.21128080785274506, 0.38859453797340393, 0.2780325412750244, -1.11577308177948, 1.531077265739441, -0.014412112534046173, -0.2923133969306946, -0.07846318185329437, 0.7512256503105164, 0.17025789618492126, 1.0332809686660767, -0.8297569751739502, -0.31964603066444397, -0.37630075216293335, 0.2468092441558838, 0.7946517467498779, -0.902556836605072, 1.7031571865081787, -0.8692577481269836, -0.6985952258110046, -1.4133952856063843, 0.6264949440956116, -0.7505237460136414, 0.37732893228530884, -0.10295719653367996, -0.10911288857460022, -0.5864593982696533, 0.2353944480419159, -0.7103467583656311, -0.8502374887466431, 0.3109040856361389, -0.24498458206653595, -0.4034404754638672, -0.8538030982017517, 0.07205609232187271, -0.2909931540489197, -0.7112600207328796, 0.6529890894889832, -0.7724153995513916, -1.2493230104446411, -0.10407561808824539, 0.11412355303764343, -0.45475736260414124, -0.7403374910354614, 0.3752003312110901, -0.5344462394714355, 1.3770086765289307, -1.3175843954086304, 0.8744733929634094, -0.4042850434780121, 0.3822861611843109, 0.9417547583580017, -0.19853194057941437, -0.32560184597969055, 0.8140034079551697, -0.22872687876224518, -1.341357946395874, 0.8273959159851074, 0.2700549364089966, -0.5059314966201782, 0.4126582741737366, 0.6338122487068176, 0.10626190155744553, 0.18265976011753082, 0.05084032565355301, 0.6049526929855347, -0.2111956626176834, -0.3948642909526825, -0.8485051393508911, -0.30226826667785645, 0.6413218379020691, -0.5846388339996338, -1.177329421043396, 1.1982091665267944, 0.7965415120124817, -0.5674648284912109, 0.39337870478630066, -0.11471656709909439, 0.2070888727903366, 0.21035675704479218, 0.6619669795036316, 0.6380754113197327, 0.6249905824661255, 0.09116952121257782, -0.7682010531425476, -0.8708110451698303, -0.2560720443725586, 0.4169076979160309, 0.41615456342697144, 0.3269367516040802, 0.8974785804748535, 1.0648773908615112, 0.10369407385587692, 0.1445799022912979, 0.987510085105896, 0.38433486223220825, -0.7161148190498352, -0.8677762150764465, 0.4417758584022522, -0.8190637826919556, 0.6375711560249329, 1.039402961730957, -0.7823986411094666, -0.49345189332962036, -0.3289353549480438, 0.07798880338668823, -0.3394383192062378, -1.0905482769012451, -0.8244019746780396, -0.5032138228416443, -0.008694642223417759, 0.007830934599041939, 0.8861221671104431, -0.15216746926307678, 0.5764645934104919, -0.33377012610435486, -0.14516404271125793, -0.2683849334716797, 0.5561696290969849, 0.025772955268621445, 0.9186933636665344, -0.5569642186164856, -1.2386317253112793, -0.5361276865005493, 0.5771404504776001, 0.35496577620506287, 0.02576231025159359, 0.052800845354795456, 0.35074323415756226, 0.29581794142723083, -0.6537510752677917, 0.2731890380382538, -0.16892191767692566, 0.06690704077482224, -0.04349164664745331, 0.011032402515411377, 0.5366957187652588, 0.23649117350578308, -0.6834043860435486, -0.8222976326942444, -0.007139451336115599, 0.35363543033599854, 0.5184109807014465, 0.1928253173828125, 0.6825733780860901, -0.3045707643032074, -0.10357116162776947, -0.6443458199501038, -0.06737066060304642, -1.137366533279419, -0.012035202234983444, -1.1167898178100586, -1.1685371398925781, -0.019353477284312248, 0.09815815091133118, -0.25492480397224426, 0.7408860921859741, -0.48711898922920227, 0.9044485092163086, 0.8972805142402649, -0.8493083715438843, -0.6182687878608704, -0.3122641146183014, 0.07758362591266632, -1.0421996116638184, 0.5607411861419678, 1.1039438247680664, -0.42242130637168884, -0.7920158505439758, -0.041192006319761276, 0.23801745474338531, 0.30481860041618347, -0.47042980790138245, -0.4561900794506073, -1.4186221361160278, -0.737011730670929, 0.23527905344963074, 1.098156452178955, -0.2905939817428589, 0.4218972623348236, -0.5900270938873291, 0.7805193662643433, 1.0995358228683472, 0.031505733728408813, -0.9009912014007568, 0.2454940229654312, -0.5770244598388672, -0.5268307328224182, -0.1506161093711853, 1.351220726966858, 0.6452804207801819, -0.7073574662208557, -0.2869483530521393, -0.21308736503124237, -0.11972580850124359, -0.44463226199150085, 0.46407562494277954, -0.1309611052274704, 0.48656198382377625, -0.5893849730491638, -0.3361823558807373, 0.15127301216125488, -0.12886810302734375, -0.3050435781478882, -1.7562625408172607, 0.11956152319908142, -0.08256423473358154, 1.0796821117401123, 0.2602229416370392, 0.3797282576560974, 0.02091595157980919, 0.2722172439098358, 0.28837350010871887, -0.22750426828861237, 1.3126158714294434, 0.24354209005832672, 0.24104365706443787, -0.8451530337333679, -0.6258048415184021, -0.13075995445251465, -1.0786837339401245, 0.027880549430847168, 0.2605611979961395, -0.6628673076629639, -0.3449086844921112, 0.9223315119743347, 0.32291293144226074, -0.3343217372894287, -0.13160528242588043, 0.3409169316291809, 0.025871388614177704, 0.06577689945697784, -0.09256428480148315, -0.4311670660972595, -0.4276534616947174, -0.10644099116325378, -1.6818304061889648, -0.22990165650844574, 0.3223208785057068, 0.2132495939731598, 0.7453029751777649, -1.2918957471847534, 0.3808995187282562, -0.7912184000015259, 0.5450199246406555, 0.7460896968841553, 0.01996104046702385, 0.6355336904525757, -0.09285186231136322, 0.05010610073804855, -0.24443523585796356, 0.13749198615550995, 1.3882039785385132, -0.44234102964401245, -0.16063635051250458, -0.33362969756126404, -0.20869790017604828, -0.24662631750106812, -0.8572916984558105, -0.3187721073627472, 0.038675080984830856, -0.3701474964618683, -0.20343232154846191, 0.3282511532306671, 0.09861112385988235, 1.1134803295135498, 0.3710140883922577, 0.5801358819007874, -0.2816110849380493, -0.634441614151001, -0.44802114367485046, -0.09773337095975876, -0.022662481293082237, -0.24158433079719543, 0.03419005498290062, -0.4585174322128296, 0.3439682126045227, 0.28189417719841003, 0.5950731635093689, 0.7359358668327332, 0.9311003684997559, 0.40898844599723816, 0.2680285573005676, -0.3138572573661804, 0.24801446497440338, 0.45715054869651794, 1.2755014896392822, 0.005973958410322666, 0.016802119091153145, -0.9432833790779114, 1.1459347009658813, -1.535841941833496, -0.0013031763955950737, 0.25520938634872437, 0.22471995651721954, 1.636498212814331, -1.7709736824035645, -0.6002069115638733, 0.27009040117263794, 0.5187397599220276, 0.058323848992586136, 0.21238034963607788, -0.6634615659713745, -0.30559858679771423, 0.721740186214447, 0.12489597499370575, -0.049410950392484665, 0.43211573362350464, -0.7939012050628662, -0.37689757347106934, 0.6266393661499023, -0.6827001571655273, 0.327294260263443, -0.394898384809494, 0.10623566061258316, -0.5883302688598633, -0.2110442966222763, 0.3156891167163849, 0.3466353416442871, -0.1988985389471054, 0.2973625957965851, -0.9410373568534851, -0.9579915404319763, 0.030708782374858856, -0.5836580991744995, 0.5566057562828064, -0.5715861916542053, 0.13908806443214417, -0.6285477876663208, -0.9823972582817078, -0.029419776052236557, 0.9172491431236267, -0.44280990958213806, -0.46748629212379456, 0.03266741707921028, -1.3130459785461426, -0.30391383171081543, 0.49524497985839844, 1.2200661897659302, 1.0066163539886475, -0.36572200059890747, 1.182149887084961, 0.6659702658653259, -1.3205769062042236, 0.006272770464420319, 0.3695535659790039, -0.4000898599624634, -0.6173727512359619, -1.392958402633667, -1.1210384368896484, 0.22945457696914673, 0.03151427581906319, 0.09704206138849258, 0.618180513381958, 0.9033966660499573, 1.3970578908920288, -0.022139428183436394, -0.8767309784889221, 1.3358255624771118, -0.41851356625556946, 0.6863635778427124, 0.948106586933136, -0.7170662879943848, -0.5349456071853638, -0.4348243474960327, -1.2362866401672363, 1.4556320905685425, -0.08008792251348495, -0.6863674521446228, 1.2079120874404907, 0.44913753867149353, 0.25276291370391846, 0.2440376579761505, -0.7053561806678772, 0.023744763806462288, 0.16696318984031677, 0.5823046565055847, -1.1198527812957764, 0.13075894117355347, 0.8936587572097778, 0.07643261551856995, 0.03480914607644081, 0.35109543800354004, -0.17440146207809448, 0.021161291748285294, 0.6180580258369446, -0.29909607768058777, 0.5905869603157043, 1.0578397512435913, 1.1830121278762817, -0.9151061773300171, 0.44486042857170105, -0.6839634776115417, -0.4599032700061798, 0.05466612055897713, 0.4701465368270874, 0.1403607726097107, -0.21517124772071838, 0.24372999370098114, -0.4117335379123688, -0.6898625493049622, -0.5081716179847717, -1.0494604110717773, 0.6559800505638123, 0.16188335418701172, -0.45316964387893677, 0.010348235256969929, -0.06762449443340302, -0.6298923492431641, 0.11395513266324997, 0.3974166214466095, 0.4552866816520691, -1.4533677101135254, 0.2518029808998108, 0.4275006949901581, -0.3116087019443512, 0.04663268104195595, 0.002955838805064559, 0.05312925949692726, -1.0363030433654785, -0.9954673647880554, -1.049862265586853, 0.40802326798439026, 0.7952602505683899, -0.38218164443969727, 0.10834471881389618, 0.9291192293167114, -1.31931471824646, 0.15606819093227386, 0.035494960844516754, -1.110870361328125, 0.06836442649364471, -1.3262085914611816, 0.9970922470092773, -0.01894642785191536, 0.38345175981521606, 0.09538228064775467, 1.2597792148590088, -0.8955082297325134, -0.729472815990448, -1.0431795120239258, 0.03536071255803108, 1.0215129852294922, 1.274376630783081, -0.5197412371635437, 0.884963870048523, 0.0902925655245781, -0.3064115345478058, -0.5738537907600403, -0.20084501802921295, -0.5982933640480042, 0.42901936173439026, 0.12001208961009979, 0.2739903926849365, 0.30975890159606934, 0.6353069543838501, 0.6312077045440674, 1.0753393173217773, -0.023620540276169777, 1.320803165435791, -1.1154483556747437, -0.11627896875143051, 0.43464216589927673, 0.39162319898605347, -1.2366714477539062, -1.1019419431686401, -0.16668638586997986, -0.5098460912704468, -0.5198227167129517, 0.269309937953949, 0.6133402585983276, -0.5925387740135193, 0.02746567130088806, -0.3722062110900879, 0.4054059386253357, -0.13296225666999817, 0.08089376240968704, -0.31518790125846863, -0.02888556197285652, -0.2027217298746109, 0.4293847978115082, 0.14140260219573975, -1.6945128440856934, -0.12096085399389267, 0.6072260141372681, 0.3002909719944, -0.8209370970726013, 0.5617448091506958, 0.45964619517326355, 0.5385533571243286, -0.5153942704200745, 1.6742804050445557, 0.9171797633171082, -0.5163480043411255, -0.1009453758597374, 0.49926355481147766, 0.09723276644945145, 0.5463661551475525, -1.3209342956542969, 0.4617544710636139, -0.9750621914863586, 0.8820978403091431, 0.6482841372489929, 0.4992206394672394, -0.3331625759601593, 0.4376950263977051, -0.3864971101284027, 0.3330962061882019, 0.568320095539093, -1.2264131307601929, -0.2757630944252014, 0.8823752403259277, 0.4439452588558197, -0.5393132567405701, 0.18164031207561493, 0.41483303904533386, 0.5316603779792786, -0.5040627121925354, 0.04802648723125458, 1.0137578248977661, -0.6151056885719299, 0.5535139441490173, 0.11976093798875809, -0.6868206262588501, 0.2605084180831909, -0.5458053350448608, -0.8469961285591125, -0.43180879950523376, -0.7393752932548523, -1.5558979511260986, 0.4943247139453888, -1.1138986349105835, -0.8502416610717773, 0.4136356711387634, -0.27209874987602234, -0.12560568749904633, -0.03488307073712349, 0.11678367853164673, -0.25203123688697815, -0.32788437604904175, 0.7118555307388306, -0.5496906042098999, 1.200585126876831, 0.2631281018257141, 0.024570157751441002, -0.9931600093841553, 0.11211524158716202, 1.0037070512771606, -0.2403661012649536, -0.2147376984357834, 0.6082332730293274, -0.0022877678275108337, 0.13183265924453735, 0.23164524137973785, 0.039705466479063034, -0.054880138486623764, 0.7428910136222839, 0.7404381632804871, -0.3402714729309082, 0.0028741154819726944, 0.08290069550275803, 0.3493387699127197, -0.18852366507053375, -0.2506430149078369, -0.693641722202301, -0.1162959560751915, -0.42433908581733704, 0.05701172724366188, -0.5838339924812317, 0.46727070212364197, 0.42421942949295044, -0.736735463142395, 0.03290907293558121, -0.795698881149292, 0.5687485337257385, -0.7042875289916992, 0.8362991213798523, 0.2916830778121948, 0.12072327733039856, 0.05686409771442413, -0.5818049907684326, 0.5294286608695984, 0.6459257006645203, 0.03884623199701309, 0.14437063038349152, -0.782994270324707, -0.8032065629959106, -0.5650615692138672, 0.5371084809303284, 1.6286554336547852, 0.28220224380493164, 0.20231737196445465, 0.3451188802719116, -0.5822598934173584, 0.383114755153656, -0.0554957278072834, 0.07330925017595291, 0.3262375593185425, 1.4966890811920166, 1.8064745664596558, 0.5958225131034851, 0.6060192584991455, 0.2368721216917038, 0.548785388469696, -0.6195372939109802, -0.8588204383850098, -0.5887480974197388, -0.3174104392528534, -0.0767427384853363], [0.2624015212059021, 1.478757619857788, -2.4849510192871094, -0.3478687107563019, 1.043252944946289, 0.8166347146034241, 1.3748162984848022, 0.05148276314139366, 0.6020443439483643, -0.46565842628479004, 0.0519840307533741, -0.1789296567440033, 0.718146026134491, 1.1136423349380493, -0.10148387402296066, 0.8411595225334167, 0.7561543583869934, -0.9999678730964661, 0.8331830501556396, 0.7293510437011719, -0.3187803030014038, -0.008703858591616154, 0.30912813544273376, 0.13834969699382782, -0.6564419865608215, -0.08616037666797638, -1.3353486061096191, -0.32994967699050903, -0.1576271653175354, -1.3836101293563843, 1.066054105758667, -0.5544627904891968, -0.4900217354297638, -0.24361561238765717, -0.7317301034927368, -0.5431115627288818, 1.6287397146224976, 1.308882474899292, 0.8404388427734375, 1.0196775197982788, 1.5892982482910156, -0.16608360409736633, -0.05397574603557587, -1.5804626941680908, 0.12278886884450912, -0.45654740929603577, 0.6548374891281128, -1.08904230594635, 0.6682493090629578, -0.550342857837677, 0.36558082699775696, 0.44251829385757446, 0.8014483451843262, 0.8619442582130432, 0.17619486153125763, 0.5399944186210632, -0.048969198018312454, -0.17937082052230835, 2.0705766677856445, -0.6231793761253357, 1.1514588594436646, 0.16530002653598785, 0.10013396292924881, 0.24468675255775452, 0.33505427837371826, 0.029211068525910378, -0.7622979283332825, 0.9677170515060425, 0.3689159154891968, -1.1224136352539062, 0.5476427674293518, 0.28843414783477783, 0.06386956572532654, 0.7236948609352112, -1.8876762390136719, 0.8281145095825195, 0.5627033114433289, 1.043967604637146, 0.13995444774627686, 0.849648654460907, -0.38961854577064514, -0.19371679425239563, 0.8960064649581909, -0.19408728182315826, 0.6995401978492737, -0.41886165738105774, 0.3931300938129425, -0.771913468837738, -0.4092974066734314, 1.3020496368408203, 0.03943462669849396, -0.09989827871322632, 0.37519586086273193, -0.448026567697525, 0.13841426372528076, -0.41087499260902405, 0.5429008603096008, 0.008024636656045914, -0.9044497013092041, -1.0733882188796997, -0.9620575308799744, -0.843664824962616, -0.5152467489242554, -0.29681187868118286, -0.7091808319091797, 1.5514250993728638, 0.319512277841568, 0.37527748942375183, 0.19737392663955688, 0.30594614148139954, -0.7138950824737549, -0.4859659969806671, -0.487746000289917, -0.9115239381790161, -0.8098945021629333, 0.44589248299598694, 1.040587306022644, -0.401591956615448, 0.75066077709198, 1.2183631658554077, -0.5162286758422852, 0.46717071533203125, -0.3324207365512848, 0.5446309447288513, 0.2709965705871582, 0.65218186378479, -0.7129713296890259, -0.8893372416496277, 0.5049474835395813, -0.1405859887599945, 0.7702723145484924, 0.1059018224477768, -0.3238271176815033, 0.9899681210517883, -0.7852070331573486, 0.924942672252655, -0.043105050921440125, -0.27982082962989807, 0.32816800475120544, -0.2752861976623535, 0.11282496154308319, -0.25346052646636963, -0.5545422434806824, -0.5159963965415955, -0.02264379896223545, -1.1150853633880615, -0.08845128864049911, -0.11211808770895004, -0.7848736643791199, -0.03278520330786705, -0.5588028430938721, 0.6323474049568176, 0.6354861855506897, 0.8185372948646545, 0.5147333741188049, -0.34586429595947266, 0.3499945402145386, 0.14142154157161713, 0.5281873941421509, 0.1156000867486, 0.470119446516037, -0.1318068504333496, -0.9280646443367004, 1.1468929052352905, 0.042547378689050674, -0.5052033066749573, 0.9580056667327881, 0.48998603224754333, 0.3767263889312744, 0.674286961555481, -1.0010074377059937, 0.07227948307991028, -0.6469976902008057, 0.21925824880599976, -0.26446011662483215, -0.23892736434936523, 0.787628173828125, -1.514567494392395, -1.3394633531570435, -0.5245693325996399, 0.6887292861938477, -0.8274527788162231, 0.35356074571609497, 0.4743536114692688, 0.7488804459571838, -0.5430992841720581, 0.3391479551792145, 0.05589867755770683, -0.6011093854904175, -0.8797019720077515, -0.41957953572273254, -0.5728978514671326, -0.8890525102615356, 0.04113377258181572, -0.04897518828511238, -0.47351208329200745, 0.2826786935329437, -1.3771278858184814, -0.6952084898948669, -0.40771743655204773, -0.4475068151950836, -0.5709606409072876, -1.1429575681686401, 0.872765839099884, -0.3192250728607178, 0.8634790778160095, -1.055463433265686, 1.0756175518035889, -0.7020883560180664, -0.03565725311636925, 0.4080994129180908, -0.0948449969291687, 0.06660331785678864, 0.6086380481719971, -0.7858341932296753, -1.2567836046218872, 1.0164008140563965, -0.0015497393906116486, -0.28163111209869385, 0.39672866463661194, 0.2737213373184204, 0.4585283696651459, 0.05062964931130409, -0.07019808888435364, 0.4521341919898987, 0.18854759633541107, -1.2088500261306763, -0.8597833514213562, -0.5546852350234985, 0.25594794750213623, -0.5893504619598389, -0.7092527151107788, 0.8212499618530273, 0.14181070029735565, -0.2058515101671219, 0.15085969865322113, -0.5040002465248108, -0.3079420328140259, 0.6390330195426941, 1.2936152219772339, 0.27955362200737, 0.4609842896461487, -0.31908687949180603, 0.10924877971410751, -0.1705697625875473, 0.6726192831993103, 0.7081126570701599, -0.11808700114488602, 0.08477992564439774, 1.444206953048706, 0.834803581237793, 0.29696762561798096, 0.4177016019821167, 0.05097868666052818, -0.3547806739807129, -0.6036457419395447, -1.042223334312439, 0.6233624815940857, -0.18610981106758118, 1.201638102531433, 0.5498614311218262, -0.6532349586486816, 0.11215724796056747, -0.11009734123945236, -0.4689174294471741, -0.4869863986968994, -0.810358464717865, 0.2156832069158554, -0.40469831228256226, -0.19602803885936737, 0.012266958132386208, 0.5294481515884399, -0.27372249960899353, 0.49235227704048157, -0.8539975881576538, -0.07805421948432922, 0.02234080620110035, 0.46101638674736023, 0.23854520916938782, 0.8905319571495056, -0.5038647055625916, -1.1299684047698975, -0.4345601499080658, -0.281109482049942, 0.9681785702705383, -0.05611153319478035, 0.4387713074684143, -0.403389573097229, 0.31162673234939575, -0.48775389790534973, 0.27014732360839844, -0.010148432105779648, -0.02742084674537182, 0.45489779114723206, -0.6194477081298828, 0.3055984377861023, 1.424221158027649, -0.5769718885421753, -0.7579941749572754, -0.5111896395683289, 0.824682891368866, 0.895017147064209, 1.2308685779571533, 1.4416857957839966, 0.3577919006347656, 0.12836073338985443, -0.2030058652162552, -0.44081494212150574, -0.8184372186660767, -0.7991872429847717, -0.5078191757202148, -0.6762086153030396, -0.37806978821754456, -0.06338418275117874, 0.14669662714004517, 0.6616639494895935, -0.1269146353006363, 0.8908211588859558, 1.542635440826416, -0.2066839188337326, -0.8120040893554688, 0.2221103310585022, -0.1496739536523819, -1.0251048803329468, 0.5724160671234131, 0.7044910192489624, -1.022097110748291, -0.8514164686203003, -0.656618595123291, 0.06214884668588638, 0.6756892204284668, 0.10004988312721252, -0.30732882022857666, -1.1848045587539673, -0.9576493501663208, -0.4601729214191437, 1.1796609163284302, -0.20242874324321747, 0.0791732668876648, -0.811670184135437, 0.07148965448141098, 0.15801948308944702, -0.7398173809051514, -0.8123195767402649, 0.7488853335380554, -0.7628440856933594, -0.38228097558021545, 0.2112068384885788, 0.25813010334968567, -0.15257516503334045, -0.6153128147125244, -0.14316925406455994, 0.13699625432491302, -0.07161487638950348, -0.2165609449148178, 0.7302780151367188, 0.13510718941688538, 1.077891230583191, 0.20974351465702057, -0.5175093412399292, 1.1168718338012695, -0.15983113646507263, -0.1535727083683014, -1.2018568515777588, 0.33737656474113464, -0.09076416492462158, 1.5068105459213257, 0.11303569376468658, 0.9752611517906189, 0.2808680534362793, 0.2745416760444641, 0.13526737689971924, 0.3585244417190552, 1.4154791831970215, 0.3229539394378662, -0.548845648765564, -0.34975412487983704, 0.005903742276132107, -0.005199737381190062, -0.7417136430740356, -0.7784575819969177, 0.38512396812438965, -0.43923717737197876, -1.271399736404419, 0.9204506874084473, 0.36010998487472534, -0.5579041838645935, -0.7065880298614502, -0.19038650393486023, 0.8326646089553833, 0.022538527846336365, 0.17455706000328064, -0.8377483487129211, 0.3479725122451782, -0.1850261688232422, -1.4240025281906128, 0.06573644280433655, 0.7894104719161987, 0.08159443736076355, 0.5071418881416321, -1.0388679504394531, 0.22272305190563202, -0.10918329656124115, 0.6941282153129578, 0.32049527764320374, -0.5549417734146118, 0.17449960112571716, 0.07603368908166885, 0.5532093644142151, 0.12868660688400269, 0.23960816860198975, 1.5379014015197754, -0.02558302879333496, -0.06141955405473709, 0.5762155055999756, -0.13075514137744904, -0.0031811995431780815, -0.5605348348617554, -0.6525914072990417, -0.0013317442499101162, -0.04918481037020683, 0.31172654032707214, -0.07259504497051239, -0.6218045949935913, 1.494405746459961, 1.3380173444747925, 0.40031424164772034, 0.7493155598640442, -0.3464108407497406, -0.4895746111869812, 0.34534889459609985, 0.6723459959030151, -0.0318727008998394, -0.9032614231109619, -0.3327111601829529, 0.030449645593762398, -0.4134844243526459, 0.5031440854072571, 0.09358684718608856, 0.8588635921478271, 0.15310679376125336, 0.38500139117240906, -0.34839004278182983, 0.03229888156056404, 0.6341962218284607, 1.7246989011764526, -0.05989157781004906, -0.13558828830718994, -0.7307185530662537, 0.7970162630081177, -1.3367395401000977, -0.2544417083263397, 0.5190500617027283, 0.7090532183647156, 1.2749872207641602, -1.9146728515625, -0.7873866558074951, 0.3929021656513214, 0.3968425393104553, 0.6621072888374329, 0.3840138018131256, 0.12471947073936462, -0.19467857480049133, 0.49765151739120483, 0.5520491003990173, -0.2880251407623291, -0.253378689289093, 0.07637662440538406, -0.08675935864448547, -0.12954504787921906, -0.7790033221244812, 0.7258589863777161, -0.519189178943634, -0.2740902006626129, -0.8343279361724854, -0.32784178853034973, 0.18866494297981262, 0.7330381274223328, 0.28151631355285645, 1.177242398262024, -0.07632016390562057, -0.4079296290874481, 0.601882815361023, -0.5507228374481201, 0.3021993041038513, 0.06080891191959381, -0.7437050342559814, -0.455559104681015, -1.1417838335037231, -0.19828657805919647, 0.4555739760398865, -0.8919369578361511, 0.07347877323627472, -0.43353062868118286, -1.4097758531570435, 0.004637557547539473, 0.9251989722251892, 1.156551718711853, 0.9232827425003052, 0.2176039218902588, 0.186819925904274, 0.9178867340087891, -0.842926561832428, -0.11287675052881241, 0.1718108206987381, -0.14195869863033295, 0.09658334404230118, -1.7123476266860962, -0.4114535450935364, 0.3179496228694916, 0.11964063346385956, -0.3033916652202606, 0.2901507318019867, 1.1561264991760254, 1.0083332061767578, -0.14297108352184296, -0.580247163772583, 0.28890660405158997, -0.9925051331520081, 0.1397813856601715, 0.5132163763046265, -0.7966015934944153, -0.0999758318066597, -0.4853486716747284, -0.9773833155632019, 0.7350562810897827, -0.7436516284942627, -0.7808681130409241, 1.1829878091812134, -0.08733881264925003, 0.2799917161464691, 0.4213060736656189, -0.3354288637638092, 0.3018556535243988, 0.6963522434234619, -0.276234894990921, -0.9527466297149658, 0.10575124621391296, 0.5261749625205994, 0.49660754203796387, -0.05304047837853432, 0.7627595067024231, 0.5634832382202148, -0.28247642517089844, 0.22735081613063812, -0.009191320277750492, 0.6713594794273376, 0.9824463725090027, 0.6881142258644104, -0.8824561238288879, -0.19361896812915802, -0.7750246524810791, -0.879105806350708, 0.12318813800811768, 0.37964314222335815, -0.3498540222644806, -1.1669528484344482, -0.5222716927528381, -0.40528419613838196, -0.031277988106012344, 0.14455293118953705, -0.7082638740539551, 0.8129667639732361, 0.014895768836140633, -0.13244351744651794, 0.034440502524375916, -0.4902280867099762, -0.18021342158317566, 0.055744484066963196, -0.01838049665093422, 0.34267616271972656, -1.6444225311279297, -0.19834646582603455, 0.05604953318834305, -0.5203763842582703, 0.11412648111581802, 0.33228057622909546, 0.5249267816543579, -1.4267339706420898, -1.3222347497940063, -1.0348318815231323, 0.1716352254152298, 0.7071461081504822, -1.464162826538086, 0.1250821053981781, 1.6059556007385254, -1.9071565866470337, -0.33553948998451233, 0.4710334539413452, -1.4549973011016846, -0.18928441405296326, -1.604570984840393, 1.1021896600723267, -0.18877866864204407, 0.19570624828338623, -0.5113556981086731, 1.4349619150161743, -0.9874256253242493, -1.6347509622573853, -0.4798542857170105, -0.13557526469230652, 0.5465113520622253, 1.0988726615905762, -0.6374061107635498, 1.138185977935791, 0.65234375, -0.4379740059375763, -0.8048437833786011, 0.30853116512298584, -0.9512988924980164, 0.6991510987281799, 0.2931666672229767, 0.1159379780292511, 0.19047145545482635, 1.2239283323287964, -0.3952083885669708, 0.9401617646217346, 0.19939498603343964, 1.1688776016235352, -1.1620045900344849, -0.1556577980518341, -0.1308588683605194, 0.47757020592689514, -1.3290661573410034, -0.21819891035556793, -0.6731084585189819, -0.6344332695007324, -1.249241828918457, 0.690073549747467, 0.5188474655151367, -1.0487686395645142, -0.1652234047651291, -0.11560361832380295, 0.447224885225296, -0.3570307195186615, 0.0783017948269844, -0.14669835567474365, -0.08075596392154694, 0.29100722074508667, 0.4492504596710205, -0.1945137232542038, -1.7481226921081543, 0.2535116970539093, 0.26583898067474365, 0.6029338240623474, -0.6094457507133484, 0.8043069839477539, 0.6658835411071777, -0.38022056221961975, -0.6025951504707336, 1.7169848680496216, 0.8446548581123352, -0.3196799159049988, -0.22220748662948608, 0.17401356995105743, 0.39259371161460876, 0.6761637926101685, -0.44305482506752014, 0.4683360159397125, -0.8297353386878967, 0.772311806678772, 0.39460307359695435, 0.3208118677139282, -0.6426733136177063, -0.02278665080666542, -0.5331943035125732, 0.3274219036102295, 0.04595963656902313, -0.955920934677124, 0.13010366261005402, 0.9787425994873047, 0.20758050680160522, -0.6988789439201355, 0.7844803929328918, 0.5968615412712097, -0.10753010213375092, -0.0830683708190918, 0.62876296043396, 0.44874587655067444, -1.1596921682357788, 0.4372084140777588, 0.638005793094635, -0.15090565383434296, -0.2666245698928833, -0.8264731168746948, -0.8080670833587646, -0.016283484175801277, -0.18941710889339447, -0.9537336826324463, 0.48750460147857666, -0.9268849492073059, -0.8438416123390198, 0.6442979574203491, -0.302682101726532, -0.19134852290153503, -0.20073439180850983, 0.5658091306686401, -0.4339909255504608, 0.4971258044242859, 0.9435189962387085, -0.6871581077575684, 0.5872192978858948, 0.34914880990982056, -0.38513118028640747, -1.0468546152114868, -0.45968103408813477, -0.31249284744262695, 0.36859437823295593, -0.3926648199558258, 0.260883629322052, 0.6392585635185242, 0.10460298508405685, -0.6328880190849304, 0.23876963555812836, 0.12305634468793869, 0.15584653615951538, -0.43483954668045044, -0.15759970247745514, 0.3791789710521698, 0.35733333230018616, 0.6197731494903564, -0.04080818593502045, -1.2194416522979736, -0.4086208641529083, 0.3368340730667114, -0.36427047848701477, 0.2983398139476776, -0.11842961609363556, 1.0452642440795898, 0.01580449938774109, 0.08224038034677505, -0.23825882375240326, -0.8899075388908386, -0.23957347869873047, -0.3986341953277588, 0.4456826448440552, -0.06360075622797012, -0.5032121539115906, 0.008643228560686111, -1.1531285047531128, 0.33130916953086853, -0.24838887155056, 0.14796172082424164, -0.2026737928390503, -0.9385685324668884, -1.0307823419570923, -0.28809601068496704, 0.35795655846595764, 0.9331397414207458, 0.24334529042243958, 0.13753753900527954, -0.3800719976425171, -0.7074911594390869, 0.5862389802932739, 0.08566340059041977, -0.09532129019498825, 0.2986864745616913, 1.1780906915664673, 1.7674169540405273, 0.2937249541282654, 0.4372052252292633, -0.0651395320892334, 0.40185144543647766, 0.3766496479511261, -0.3758625090122223, -0.42873767018318176, -0.2439148724079132, 0.3065917491912842], [-0.22785523533821106, 2.2373828887939453, -2.2456398010253906, 0.4039178192615509, 1.0387638807296753, -0.11745643615722656, 1.0879347324371338, -0.061171337962150574, -0.21780507266521454, -0.15630672872066498, -0.47304943203926086, -0.38628050684928894, 0.35573649406433105, 0.6189746856689453, 0.04966402053833008, 0.7730790972709656, 0.8258230686187744, -0.41605350375175476, 1.0061343908309937, 1.3454910516738892, 0.1671840101480484, -0.42834052443504333, 0.10946690291166306, 0.20513346791267395, -0.8351485729217529, 0.3865463137626648, -0.7504324316978455, -0.6073112487792969, -0.6499089598655701, -1.12537682056427, 0.9982943534851074, -0.6764819622039795, 0.37343183159828186, 0.06117478758096695, -0.7907814383506775, -0.5771318674087524, 1.6982972621917725, 1.694701075553894, 0.37593355774879456, 0.4299807548522949, 1.2656840085983276, -0.47502750158309937, 0.06333303451538086, -1.613202691078186, -0.45652511715888977, -0.05063660815358162, 0.9907670021057129, -0.7896416187286377, 0.11879066377878189, -0.3696594834327698, 0.33121055364608765, -0.31715908646583557, 1.1016967296600342, 0.5559731125831604, 0.4234812557697296, 0.3370603621006012, 0.4151964783668518, -0.32297733426094055, 0.7522987127304077, -0.37494972348213196, 1.323598861694336, -0.3735935389995575, -0.3726560175418854, 0.3168726861476898, 0.5787918567657471, -0.7958365678787231, 0.9602218270301819, 0.06519154459238052, -0.19409680366516113, -0.08878346532583237, 0.3467271029949188, 0.09259974956512451, -0.6883520483970642, -0.1808028221130371, -1.4201687574386597, 0.12185791879892349, 1.1777855157852173, 1.0398036241531372, 0.19258713722229004, 0.7513161301612854, -0.3234427273273468, -0.10868306457996368, 0.9617471694946289, -0.05418969318270683, 0.346606582403183, -0.22006560862064362, -0.031655699014663696, -0.48713770508766174, -0.2068920135498047, 1.6697067022323608, 0.1238255575299263, 0.25098344683647156, 0.4620455205440521, -0.36308005452156067, -0.022850699722766876, -0.6870232820510864, 0.22523684799671173, 0.1846543252468109, -0.5707270503044128, -0.21202591061592102, -1.1479065418243408, -1.418201208114624, 0.52789306640625, -0.28137555718421936, -0.06044241040945053, 1.2523077726364136, 0.5107556581497192, 0.03099033422768116, -0.6808274388313293, 0.012660758569836617, -0.44523385167121887, 0.327173113822937, -0.7778862118721008, -1.2376118898391724, -0.2320006638765335, 0.78693687915802, 1.2697993516921997, 0.17065081000328064, 0.0079941526055336, 0.8590127825737, 0.30191272497177124, -0.20837071537971497, -0.23785966634750366, 1.3643471002578735, -0.2902359366416931, 0.26249760389328003, -0.7015889883041382, -0.31122463941574097, -0.0499800406396389, 0.056275609880685806, 0.5543016791343689, 0.6328334808349609, -0.23826216161251068, 0.8704175353050232, -0.49474313855171204, 0.8045950531959534, -0.8202505111694336, -0.040825482457876205, -0.36539867520332336, -0.3312375843524933, 0.2515961229801178, -0.5990952253341675, -0.5639703869819641, 0.027106909081339836, -0.783245861530304, -0.4375079572200775, 0.2244163304567337, -0.09656219929456711, -0.7461557984352112, 0.029319074004888535, -1.1512269973754883, 0.26073595881462097, 0.7936707735061646, -0.1108248233795166, 0.5877388715744019, 0.02898314595222473, 0.4267706573009491, 0.19675005972385406, 0.173061341047287, 0.6443688869476318, 0.8950648903846741, -0.08364826440811157, -1.2384164333343506, 0.9267991185188293, 0.5905659794807434, -0.005758625455200672, 0.7864751815795898, 0.6371635794639587, 0.4106811285018921, 0.7701586484909058, -0.6394748091697693, -0.8000850677490234, -0.5670034289360046, 0.6700995564460754, 0.22765451669692993, 0.04039822891354561, 0.657564640045166, -0.3825187087059021, -1.7282981872558594, -1.2009201049804688, 0.8305754661560059, -0.6803281307220459, 0.04719000309705734, 0.6090233325958252, 0.23843327164649963, -0.4381226897239685, 0.45305389165878296, -0.1429382562637329, -0.29509857296943665, -0.20584693551063538, -0.8415999412536621, -0.09151758253574371, -0.24340040981769562, 0.3680608868598938, -0.13700321316719055, -0.47340208292007446, 0.39216476678848267, -1.4327318668365479, -0.7093251347541809, -0.2233094573020935, 0.20894896984100342, -0.5785483121871948, -0.693469226360321, 0.17641426622867584, -0.6479983925819397, 1.1649354696273804, -1.6401363611221313, 1.0612270832061768, -0.719397246837616, 0.6104215383529663, 0.3585023283958435, 0.18409806489944458, -0.4097810983657837, 0.8869937658309937, -0.003151940181851387, -1.9291714429855347, 0.2914007604122162, 0.41503047943115234, -0.4114908277988434, 0.4555265009403229, 0.14920751750469208, 0.35501906275749207, 0.10180817544460297, -0.09668587893247604, 0.4678270220756531, 0.13471975922584534, -0.5889852643013, -1.2965023517608643, -0.5481626987457275, 0.07369954138994217, -0.3475653827190399, -1.2513482570648193, 1.3173245191574097, 0.209189772605896, -0.8095027804374695, 0.47465750575065613, -0.23481255769729614, 0.25462159514427185, 0.21581405401229858, 1.524114966392517, 0.3839344382286072, -0.22387300431728363, 0.34418973326683044, -0.6807446479797363, -0.5712338089942932, 0.738266110420227, 0.3405890166759491, 0.0004492737352848053, 0.005168125033378601, 1.2309365272521973, 1.2280027866363525, -0.4383864998817444, 0.15749689936637878, 0.22917580604553223, -0.11135576665401459, -0.8419535756111145, -0.7102165222167969, 0.11398406326770782, -0.7441355586051941, 1.7042020559310913, 1.2807896137237549, -0.8806345462799072, -0.2472328096628189, 0.12979747354984283, -0.4990723729133606, -0.18466344475746155, -0.9382440447807312, -0.7368553280830383, -0.468222051858902, 0.4400516450405121, -0.3618190586566925, 0.5173205137252808, -0.3201025724411011, 0.17253142595291138, -0.561395525932312, -0.561120867729187, -0.028090575709939003, 0.08333232998847961, -0.032432787120342255, 0.6592358350753784, -0.07771491259336472, -1.6923094987869263, -0.25250402092933655, 0.3384104073047638, 0.40801510214805603, -0.051035404205322266, 0.19047430157661438, -0.10251335054636002, 0.18840017914772034, -0.12188772857189178, 0.18307951092720032, -0.07939623296260834, -0.13656778633594513, -0.06420347094535828, -0.4572482705116272, 0.751613199710846, 0.7964110970497131, -1.4375678300857544, -0.10237818211317062, -0.21322119235992432, 0.6144965291023254, 1.4580918550491333, 0.4532800018787384, 1.2205331325531006, -0.1574595868587494, 0.1318710744380951, -0.41426992416381836, -0.8730002045631409, -1.5337077379226685, -0.25328513979911804, -0.6585462093353271, -0.9961957931518555, 0.11334224790334702, 0.3800256550312042, 0.2329310029745102, 0.09445065259933472, -0.6522655487060547, 0.5999457836151123, 1.2106988430023193, -0.25038468837738037, -0.7876133322715759, -0.2670644223690033, -0.5368695259094238, -0.9697149991989136, 0.6671193838119507, 1.25532066822052, -1.4191025495529175, -0.6917511224746704, 0.28731489181518555, 0.33742162585258484, 1.1755023002624512, 0.3711440861225128, 0.2203143686056137, -1.0666007995605469, -0.9707087278366089, -0.13176363706588745, 0.9916465282440186, -0.47089672088623047, -0.4248453676700592, -0.3691237270832062, 0.5684471130371094, 0.3692469596862793, -0.7938137650489807, -0.31105339527130127, 0.834223747253418, -0.42786967754364014, -0.8009086847305298, 0.2896675169467926, 0.6664333343505859, -0.06061217561364174, -0.6309053897857666, -0.7034061551094055, -0.8021005392074585, -0.35134798288345337, -0.059238821268081665, 0.3877880275249481, 0.22573091089725494, 0.6255958080291748, -0.32770997285842896, -0.29150140285491943, 0.643143355846405, 0.2102525681257248, -0.16475924849510193, -1.1775397062301636, 0.40160512924194336, 0.44887495040893555, 0.8748040199279785, 0.22998543083667755, 0.3831334412097931, 0.5868667960166931, 0.3024653494358063, 0.013214340433478355, 0.6185821294784546, 1.3439040184020996, 1.0275715589523315, 0.37387004494667053, -0.40235358476638794, -0.33980000019073486, -0.4987275004386902, -0.23505094647407532, -0.048826664686203, 0.38468384742736816, -0.4338268041610718, -0.6301988363265991, 0.7159565091133118, 0.2809445261955261, -0.7637959718704224, -0.1553489714860916, 0.22177529335021973, 0.6448743343353271, -0.1816481500864029, -0.20270395278930664, -0.660963237285614, -0.3120761811733246, -0.25419753789901733, -1.2251139879226685, -0.27979186177253723, 0.3992200791835785, -0.07934024930000305, 0.9750484228134155, -0.8373006582260132, 0.5144224166870117, -1.1992701292037964, 0.8619219064712524, 0.5308647155761719, -0.1908080279827118, 0.16122180223464966, 0.0034679267555475235, 0.32791686058044434, 0.4081834554672241, 0.3463399410247803, 1.001857876777649, 0.12229528278112411, 0.2771366238594055, 0.48293814063072205, -0.5336170196533203, -0.15507951378822327, -1.344577670097351, -0.5770959854125977, 0.12171752005815506, -0.6862106919288635, -0.35818105936050415, 0.3081471621990204, -0.2167980968952179, 0.6121984720230103, 0.8398903608322144, 0.1955101490020752, 0.7753261923789978, -0.10122480243444443, -0.41777852177619934, -0.33269309997558594, 0.13795585930347443, -0.22062155604362488, -0.21612298488616943, 0.2788400948047638, 0.780462384223938, -0.08182253688573837, 0.6348367929458618, 0.2780235707759857, 0.6660827398300171, 0.14638078212738037, 0.608199417591095, -0.09329154342412949, 0.43260204792022705, 1.0097886323928833, 1.4630616903305054, -0.004486028105020523, -0.5588210225105286, -0.8541399836540222, 0.5827996730804443, -1.4147005081176758, 0.27169710397720337, 0.2775648236274719, 0.7650831937789917, 1.5924240350723267, -1.4296770095825195, 0.024846158921718597, 0.8151515126228333, 0.5080351233482361, 0.7830361127853394, 0.45957353711128235, -0.6802054643630981, -0.23567259311676025, 0.5539263486862183, 0.4990188777446747, -0.201370969414711, 0.031061163172125816, 0.11705554276704788, -0.3592835068702698, 0.676120400428772, -0.8242924809455872, 0.1832466572523117, -0.39754432439804077, -0.35605213046073914, -0.3017062842845917, -0.869106113910675, 0.3011229634284973, 0.5058380961418152, 0.7926794290542603, 0.8871760368347168, -0.008831813931465149, -1.2816401720046997, -0.04390927031636238, -0.7897673845291138, 0.262423574924469, -0.5269729495048523, -1.1324187517166138, -0.9064223766326904, -0.975821316242218, -0.3381868600845337, 0.07346390187740326, -0.1823660433292389, -0.3484361171722412, -0.7252933979034424, -1.053511619567871, 0.5903090238571167, 1.1240233182907104, 1.0815178155899048, 1.2436503171920776, -0.08844584971666336, 1.2112510204315186, -0.07083891332149506, -0.9564362168312073, -0.21427389979362488, 0.4003485143184662, -0.0661611258983612, 0.058248016983270645, -1.3436353206634521, -0.6340950131416321, 0.4714076817035675, 0.3050670027732849, -0.3202850818634033, 1.1198039054870605, 1.2631739377975464, 1.030511498451233, -0.03188025578856468, -0.40522706508636475, 0.5286447405815125, -0.2601882815361023, 0.4125155508518219, 0.7643907070159912, -0.09843427687883377, -0.1317296326160431, -0.6893662810325623, -1.2082099914550781, 1.0282814502716064, -0.38580945134162903, 0.08351331949234009, 0.9014619588851929, -0.18340040743350983, 0.752819836139679, 0.18440182507038116, -0.572883129119873, 0.4942838251590729, 0.21766670048236847, -0.855937659740448, -0.8478487730026245, -0.259954035282135, 0.3068452775478363, -0.02540876530110836, -0.08002474159002304, -0.12645210325717926, 0.09135639667510986, 0.33650660514831543, -0.1317652016878128, -0.16257542371749878, 0.3609243929386139, 0.5876141786575317, 0.3676932454109192, -0.8410636186599731, -0.3502233326435089, -0.7978652715682983, -0.49398908019065857, -0.0011064107529819012, 0.5370075702667236, 0.43492192029953003, -0.6158583760261536, -0.030067339539527893, -0.608780026435852, -0.5227062106132507, -0.20613296329975128, -0.11372826993465424, 0.725375771522522, 0.5665811896324158, 0.21150177717208862, -0.6520248651504517, -0.667655885219574, -0.1759267896413803, 0.00135841965675354, 0.13258874416351318, 0.596627414226532, -0.9785099029541016, -0.19970624148845673, 0.26574668288230896, -0.349173903465271, 0.18168634176254272, -0.11250142008066177, 0.4113949239253998, -0.7173133492469788, -0.9050090312957764, -0.7571355104446411, -0.05439654737710953, 0.6891889572143555, -0.5716102719306946, 0.7194176316261292, 0.5658722519874573, -1.7777851819992065, 0.40875443816185, -0.4140724241733551, -1.8564372062683105, 0.20718428492546082, -1.2322415113449097, 0.8898681998252869, 0.014213060960173607, -0.14009533822536469, -0.05138031020760536, 1.0494617223739624, -1.4758667945861816, -0.9621855020523071, -0.9361824989318848, -0.418047159910202, 1.1094287633895874, 0.850042998790741, -0.3838527798652649, 1.376530408859253, 0.39087605476379395, -0.12416452914476395, -0.7102813720703125, 0.3994019627571106, -0.3975943624973297, 0.53331458568573, 0.3883848488330841, 0.1137750893831253, 0.3804532289505005, 0.7829322814941406, 0.17566461861133575, 1.0241636037826538, 0.040135834366083145, 1.437720775604248, -1.0993973016738892, -0.49947401881217957, 0.3249814808368683, 0.8260900378227234, -1.3328232765197754, -1.2086108922958374, -0.4666571319103241, -0.681257963180542, -0.6169041991233826, -0.09526293724775314, 0.5952696800231934, -0.18727031350135803, -0.33590078353881836, -0.32517746090888977, 0.7967218160629272, -0.9823150038719177, 0.16991585493087769, 0.5272596478462219, -0.3392471373081207, -0.5543686151504517, 0.16436506807804108, -0.2265574038028717, -1.5293238162994385, 0.286716490983963, -0.3584386110305786, 0.15837813913822174, -0.7491689324378967, 0.5346406698226929, 0.39795994758605957, 0.3394485116004944, -0.047064971178770065, 1.3778786659240723, 0.5624397993087769, -0.3553043305873871, -0.3246922194957733, -0.03311822563409805, -0.39619356393814087, -0.361591637134552, -0.8569578528404236, -0.4018113315105438, -0.8431091904640198, 1.2672182321548462, 0.07544556260108948, 0.08424710482358932, -0.5047550797462463, 0.42975592613220215, -0.6449558138847351, 0.18752285838127136, 0.4737573564052582, -0.8028111457824707, -0.1956975758075714, 1.209696650505066, 0.5173267722129822, -0.7870743274688721, 0.24643678963184357, 0.29795947670936584, 0.49633538722991943, -0.5833953022956848, 0.15127168595790863, 1.0107226371765137, -0.5652956366539001, -0.12134787440299988, -0.17238961160182953, -0.4170668125152588, -0.10677313804626465, -0.34982946515083313, -1.5665847063064575, -0.24645264446735382, -0.5636792182922363, -0.5325038433074951, 1.1282145977020264, -1.253427505493164, -0.37121883034706116, 0.3741675913333893, -0.04232078418135643, 0.26854291558265686, 0.1369909644126892, -0.10202227532863617, -0.3672889471054077, 0.340505450963974, 1.0550708770751953, -0.29288455843925476, 1.0701528787612915, 0.2617706060409546, 0.26335248351097107, -0.7948395609855652, -0.1477934718132019, -0.17801421880722046, 0.028010301291942596, -0.1461229771375656, 0.1400335282087326, 0.6812500357627869, 0.16310171782970428, -0.6949052810668945, -0.016715796664357185, -0.22329162061214447, 0.41105377674102783, -0.48476114869117737, 0.022644754499197006, 0.5008945465087891, 0.4706219732761383, 0.4112304449081421, -0.25457388162612915, -0.8354753255844116, -0.6752229332923889, -0.5314415693283081, -0.7362421154975891, 0.06391126662492752, -0.5500633120536804, 1.151565670967102, 0.2927199900150299, -0.413712739944458, -0.49549710750579834, -0.5633295178413391, 0.6058862805366516, -0.005080765578895807, 0.04150596633553505, -0.24057906866073608, 0.3801710307598114, 0.15292701125144958, -0.7512966990470886, 0.5423058271408081, 0.6582276821136475, -0.39334720373153687, 0.18535862863063812, -1.2157025337219238, -0.8664947748184204, -0.4907052218914032, 0.6293572783470154, 2.192929983139038, 0.7340728044509888, 0.021966028958559036, -0.19479504227638245, -0.8613547682762146, -0.4868135452270508, 0.17566965520381927, 0.7177695035934448, -0.17515714466571808, 1.5901761054992676, 2.3413054943084717, 0.40558990836143494, 0.40250280499458313, -0.04108231142163277, 0.5087684988975525, -0.7433497905731201, -0.34147557616233826, -0.9038982391357422, -0.10477621853351593, 0.42237383127212524], [-0.17672094702720642, 1.621644377708435, -2.274167060852051, 0.4035872519016266, 0.384313702583313, 0.4594663381576538, 1.4124928712844849, -0.4941955804824829, -0.4209184944629669, -0.30006319284439087, -0.7752721309661865, 0.04752945154905319, 0.7782857418060303, 0.19357255101203918, 0.7556052207946777, 1.0532811880111694, 0.9120571613311768, -0.5455566048622131, 0.7457415461540222, 1.0691030025482178, 0.02881619520485401, -0.2779920697212219, 0.2840351164340973, -0.14054080843925476, -0.6868820786476135, 0.10131917148828506, -1.4494373798370361, -1.0033546686172485, -0.635256826877594, -0.8047274947166443, 0.3527170419692993, -0.1812538504600525, 0.2250131517648697, 0.04734416678547859, -1.1464118957519531, -0.7365709543228149, 1.8949440717697144, 0.9517704248428345, 0.6520074605941772, 0.6554428339004517, 1.0794038772583008, -0.9507446885108948, 0.45174655318260193, -1.245727777481079, 0.7819578647613525, -0.19849224388599396, 0.8180361390113831, -0.6016074419021606, 0.4932107627391815, -0.725473165512085, 0.3994295597076416, -0.2100500613451004, 0.15582218766212463, 0.8113975524902344, 0.6298880577087402, 0.03170875087380409, 0.40494152903556824, 0.3293026089668274, 0.4678110182285309, -0.6314868927001953, 1.2135289907455444, -0.13608084619045258, -0.1261187046766281, 1.5204734802246094, 0.2078344076871872, -0.7189492583274841, 0.32267627120018005, 0.5933084487915039, 0.2993795871734619, -0.4071042835712433, 0.7255382537841797, 0.4722817838191986, -0.4519162178039551, 0.9087212085723877, -1.5260109901428223, 0.7315530180931091, 0.9958367347717285, 0.6104435324668884, 0.14101985096931458, 0.6987362504005432, 0.07204294949769974, -0.23342975974082947, 0.7984232902526855, 0.09455779194831848, -0.07481686025857925, 0.2679775655269623, 0.8630573749542236, -0.2942022681236267, -0.06266313791275024, 1.410448670387268, 0.5876668095588684, 0.6340188384056091, 0.5578529238700867, -0.5865656137466431, -0.44935712218284607, -0.38140642642974854, 0.5229847431182861, 0.42069122195243835, -1.3778409957885742, -0.813398540019989, -0.9012076258659363, -0.7917594909667969, -0.04102421551942825, -0.1412895768880844, 0.5602254867553711, 1.2617332935333252, 0.45408278703689575, 0.06672004610300064, -0.5973274111747742, 0.21495206654071808, -0.6430007815361023, 0.07338336110115051, -1.0570656061172485, -0.7134658098220825, -1.0913310050964355, 1.0581395626068115, 0.7509440183639526, -0.259839802980423, 0.3944483995437622, 0.8185912370681763, -0.448466956615448, -0.649453341960907, 0.225660040974617, 0.8203412890434265, 0.7478656768798828, 0.49789103865623474, -0.6451820731163025, -0.7548779249191284, 0.15579931437969208, 0.4905361831188202, 0.497760146856308, -0.21501874923706055, 0.1404886096715927, 1.0141605138778687, -1.076125144958496, 1.4987527132034302, -0.9201064109802246, -0.9069100618362427, -0.5336041450500488, 0.29911887645721436, 1.0022563934326172, 0.024627361446619034, -0.035226114094257355, -0.48040324449539185, 0.010248793289065361, -0.4656359851360321, -0.07753001153469086, -0.27715134620666504, -0.9584395885467529, 0.24474453926086426, -0.9040161967277527, 0.9041545391082764, 0.10487519204616547, 0.7347759008407593, 0.36988893151283264, -0.0722104087471962, 0.2115197777748108, 0.4713189899921417, 0.44279736280441284, -0.06927560269832611, 0.9622827768325806, -0.0030493754893541336, -1.164194107055664, 1.0652683973312378, 0.4324782192707062, -0.3484989106655121, -0.15353259444236755, 0.9549651145935059, 0.07385013997554779, 0.5795741677284241, -0.1706533133983612, -0.1339409053325653, -0.8706281185150146, 0.5690674781799316, 0.3351391851902008, -0.06584782153367996, 1.8708980083465576, -0.5023415684700012, -1.745489239692688, -1.2192944288253784, 0.42906418442726135, -0.7910353541374207, -0.22541138529777527, 0.16147840023040771, 0.03593318164348602, -0.8949916958808899, 0.7601486444473267, -0.5107277035713196, -0.5069928765296936, -1.080614686012268, -0.21723297238349915, -0.3500916659832001, -0.7601171731948853, 0.10623271018266678, -0.21275442838668823, -0.7723716497421265, 0.4460251033306122, -1.570190668106079, -0.41208693385124207, -0.17766010761260986, -0.23852145671844482, -0.5799693465232849, -0.8290969729423523, 0.8330252766609192, -0.011396314948797226, 1.115666151046753, -0.9006977081298828, 1.118242859840393, -0.6287444233894348, 0.03168186545372009, 1.1937310695648193, 0.2561441957950592, -0.9192126393318176, 1.1953223943710327, 0.13194260001182556, -1.7445112466812134, 0.8767375349998474, 0.7096145749092102, -0.14244908094406128, 0.3661361634731293, 0.15978915989398956, 0.12623360753059387, 0.2714722752571106, -0.05696553364396095, 0.014565303921699524, -0.48992353677749634, -0.6549461483955383, -0.7589261531829834, -0.6192569732666016, 0.4925718605518341, -0.7835414409637451, -1.4424089193344116, 1.3022106885910034, 0.6132326126098633, -0.9971462488174438, 0.003561088815331459, 0.09761645644903183, 0.20759153366088867, 0.3705812692642212, 1.5896081924438477, 0.2919814884662628, 0.24466830492019653, -0.4638054370880127, -0.6112381815910339, -0.2687491476535797, 0.23822227120399475, 1.265608787536621, 0.4333534240722656, 0.27850988507270813, 1.2821680307388306, 1.062999963760376, 0.1538589894771576, 0.5637555122375488, -0.10873405635356903, -0.43637919425964355, -0.6752830147743225, -1.112574577331543, 0.530585527420044, -0.535300612449646, 1.3609321117401123, 0.7543901801109314, -0.5647104382514954, 0.2071121335029602, 0.12215876579284668, -0.09686890989542007, -0.22251062095165253, -0.7451666593551636, -0.13548371195793152, 0.06599050760269165, -0.2967747449874878, -0.4123019874095917, 0.7306304574012756, -0.5947848558425903, 0.2592189908027649, -0.6760563254356384, -0.5667694211006165, -1.3332529067993164, 0.43069350719451904, -0.17397016286849976, 1.022047519683838, 0.05600109323859215, -1.3636418581008911, -0.7355663776397705, -0.05567963793873787, 0.668621301651001, 0.23113077878952026, 0.3388499617576599, 0.13149189949035645, 0.5873106122016907, -0.5563694834709167, 0.5114798545837402, -0.21615596115589142, -0.23426276445388794, -0.20943768322467804, 0.04221830144524574, 0.4361480176448822, 0.9592086672782898, -0.5326777696609497, -0.8887330293655396, -0.08838757872581482, 0.32800209522247314, 1.3151488304138184, 0.5986949801445007, 0.44583994150161743, 0.3506544828414917, -0.8531807661056519, -0.7096635699272156, -0.439167320728302, -1.1625043153762817, -0.7016194462776184, -1.0009536743164062, -1.0856831073760986, -0.10598666220903397, 0.05614222586154938, -0.02632240392267704, 0.6418297290802002, -0.29575926065444946, 0.6719126105308533, 1.9306538105010986, -0.12414267659187317, -0.4533098340034485, 0.04339456930756569, -0.3611205816268921, -0.9146994948387146, 0.1548391729593277, 1.2869495153427124, -1.1850471496582031, -0.9243360757827759, -0.059701696038246155, 0.6508095860481262, 0.24179749190807343, -0.2238229215145111, -0.20008130371570587, -1.4263900518417358, -0.3742203712463379, -0.21475890278816223, 1.615312099456787, -0.45433640480041504, -0.3824353516101837, -0.20793265104293823, 0.6053348183631897, 1.0818042755126953, -0.4613765776157379, -0.6795815825462341, 0.8983929753303528, -0.5074393153190613, -0.6674280762672424, 0.25895383954048157, 0.43235570192337036, 0.7507489323616028, -0.7326796650886536, -0.5059598684310913, -0.39870622754096985, 0.18819914758205414, -0.0422525629401207, 0.5057674646377563, -0.21507062017917633, 1.295356273651123, -0.3898327052593231, -0.17342303693294525, 0.6133860945701599, -0.5604179501533508, 0.21746811270713806, -1.0939052104949951, 0.3259452283382416, 0.33903366327285767, 1.1190154552459717, 0.07106717675924301, 0.3625059425830841, 0.23847438395023346, 0.6711313128471375, -0.18836797773838043, 0.36385205388069153, 1.2080860137939453, 0.43435442447662354, 0.07555446028709412, -0.8043442964553833, -0.32252129912376404, 0.048852983862161636, -0.3669002652168274, 0.11053802073001862, 0.9038928747177124, -1.149665355682373, -1.0418907403945923, 0.760492205619812, 0.5037440061569214, -0.3152388632297516, -0.377229243516922, -0.414554625749588, 0.7111827731132507, -0.28892549872398376, 0.19771568477153778, -0.970137357711792, -0.04645948112010956, 0.04300058260560036, -1.3380776643753052, 0.12231703847646713, 0.6618890166282654, 0.45942530035972595, 0.25327593088150024, -1.0110735893249512, 0.4014015197753906, -0.7621094584465027, 0.4506908059120178, 0.7297048568725586, 0.5493136048316956, 0.18752454221248627, 0.0738459974527359, -0.254395455121994, -0.02400893345475197, 0.0610659122467041, 1.813439965248108, -0.49400466680526733, 0.3960399031639099, 0.38737285137176514, -0.37298867106437683, -0.6456005573272705, -0.6203044652938843, -0.3779016435146332, -0.05838238447904587, -0.05698086693882942, 0.10105618089437485, 0.4577978551387787, -0.8269091844558716, 1.660125732421875, 0.4971850514411926, 0.6336691379547119, 0.8483002185821533, -0.07691136747598648, -0.8489494919776917, -0.3246220648288727, 0.4684239327907562, 0.036262672394514084, -0.7522971630096436, -0.5840819478034973, 0.08409802615642548, -0.020554518327116966, 0.2873615324497223, 0.3511892557144165, 1.3022618293762207, 0.5006539821624756, 0.7309169769287109, -0.052676159888505936, 0.5853807330131531, 0.9384487867355347, 0.6134957075119019, 0.2801113426685333, -0.25894567370414734, -0.9930904507637024, 0.863281786441803, -0.811209499835968, -0.46123746037483215, 0.2808692157268524, -0.2279597520828247, 1.4238858222961426, -1.2751785516738892, -0.6291172504425049, 0.6251279711723328, 0.4948138892650604, 0.3362131714820862, 0.7858352065086365, -0.5932830572128296, -0.5526740550994873, 0.8109477162361145, 0.2870769202709198, -0.39765334129333496, -0.053268127143383026, 0.33694908022880554, -0.5447695851325989, 0.3768480122089386, -0.6943851709365845, 0.2891412079334259, -0.8161470890045166, 0.6001183986663818, -0.5557524561882019, -0.6833103895187378, -0.3063233494758606, 0.39231258630752563, 0.654050886631012, 1.2657290697097778, -0.24361105263233185, -1.2479197978973389, 0.34734734892845154, -0.7009727358818054, 0.29866963624954224, -1.065300464630127, -0.2938941419124603, -0.8728664517402649, -0.09849037975072861, 0.10683559626340866, 0.7607333660125732, -0.29042765498161316, -0.4300994575023651, -0.5604560375213623, -1.5680922269821167, 0.5784745812416077, 0.6087546944618225, 1.5022138357162476, 0.4784398078918457, 0.1765984743833542, 0.7247817516326904, 0.5773820281028748, -0.7570422887802124, -0.2432907521724701, 0.47681763768196106, -0.18023110926151276, 0.295930415391922, -1.4919335842132568, -0.03836807608604431, 0.5759286284446716, 0.18645797669887543, -0.3262290060520172, 0.7410531640052795, 1.0195975303649902, 1.1009430885314941, -0.4120155870914459, -0.24971537292003632, 0.5524557828903198, -0.07171134650707245, 0.1402348130941391, 0.36255353689193726, 0.2765149474143982, -0.8585891723632812, -0.4612407386302948, -0.8981433510780334, 0.6773684024810791, 0.26108822226524353, -0.598041296005249, 0.5827190279960632, 0.1612267643213272, 1.5498688220977783, 0.7372630834579468, -0.03460770845413208, 0.6936190724372864, -0.14372645318508148, -0.36772772669792175, -1.0830944776535034, 0.5902937054634094, -0.14672839641571045, 0.1791212260723114, -0.4269416630268097, 0.3725645840167999, -0.22534531354904175, -0.06028739735484123, -0.23603187501430511, 0.3950091302394867, 0.3910825848579407, 0.9062830805778503, 0.6192708611488342, -0.5611864328384399, 0.1360102742910385, -0.9019784927368164, -0.6523467898368835, -0.31108152866363525, 0.012072283774614334, -0.07599187642335892, -0.33983808755874634, 0.3206765949726105, -0.2982216477394104, -0.9587849974632263, 0.19878335297107697, -0.7118752002716064, 0.7035545110702515, 0.2456919252872467, 0.27063533663749695, -0.016169890761375427, -0.2248014658689499, 0.10115034133195877, -0.2126585990190506, 0.6063427329063416, 0.11813722550868988, -1.218124270439148, -0.14309270679950714, 0.3369000256061554, -0.8286210894584656, -0.21056243777275085, -0.2000841349363327, 0.09848268330097198, -0.8457618355751038, -0.9775633811950684, -0.5999213457107544, 0.39645177125930786, 0.6285902857780457, -0.6467127203941345, 0.4145409166812897, 0.9095190167427063, -1.3968205451965332, 0.2969128489494324, -0.16292904317378998, -0.9054487943649292, -0.18177221715450287, -0.7828019857406616, 1.1237536668777466, 0.07354189455509186, 0.11642570793628693, 0.42301324009895325, 0.9758509397506714, -1.7529877424240112, -1.3993269205093384, -0.9197384715080261, 0.13245373964309692, 1.0678025484085083, 0.6514393091201782, -0.4037073254585266, 0.864725649356842, 1.1428323984146118, -0.6345378160476685, -0.28981420397758484, -0.18779145181179047, -1.0034691095352173, 0.5082188844680786, 0.6355360150337219, 0.1632813811302185, 0.4454038441181183, 1.1446596384048462, -0.0784306526184082, 0.7492548823356628, 0.19844353199005127, 1.2192716598510742, -1.2009333372116089, -0.4096483290195465, 0.2747323215007782, 0.6617680191993713, -1.2617946863174438, -1.0070991516113281, -0.6135569214820862, -0.6263745427131653, -0.5498185753822327, 0.2798953354358673, 0.508453905582428, -0.8183160424232483, -0.756921112537384, -1.1447710990905762, 0.36157557368278503, -0.5895327925682068, -0.2303004413843155, -0.24611704051494598, -0.4852203130722046, -0.5534419417381287, 0.5230114459991455, 0.05006246268749237, -2.046889066696167, 0.11317754536867142, -0.11490461230278015, 0.3078150749206543, -0.9126355051994324, 0.47834235429763794, 0.020322300493717194, 0.3208328187465668, -0.4337858557701111, 1.1763752698898315, 0.8633029460906982, -0.30897384881973267, -0.4137845039367676, 0.09050966799259186, 0.415031760931015, 0.18720079958438873, -1.1262657642364502, -0.6818907260894775, -1.1898150444030762, 0.9454784393310547, 0.5725075006484985, -0.04057908430695534, 0.31797724962234497, 0.2903331518173218, -0.2786630392074585, 0.7966693043708801, 0.8681538105010986, -1.2792531251907349, -0.4065851867198944, 0.574900209903717, 0.39759352803230286, -0.6269723176956177, 0.2140411138534546, 0.5357787013053894, 0.6853694915771484, -0.9596107602119446, 0.28282907605171204, 0.5029609799385071, -0.6981082558631897, -0.048038091510534286, 0.33587977290153503, -0.2798900306224823, 0.11938376724720001, -0.38726314902305603, -1.3705730438232422, -0.17890416085720062, -0.18538247048854828, -0.4953806698322296, 0.5297460556030273, -1.5113966464996338, -0.7555738091468811, 0.7259737253189087, -0.2754901647567749, -0.3599949777126312, -0.3780193626880646, 0.4376867115497589, -0.30926257371902466, -0.17068341374397278, 1.1211299896240234, -0.15019868314266205, 1.0933077335357666, 0.12372332066297531, 0.16023454070091248, -1.4398189783096313, -0.8530095815658569, 0.34197723865509033, 0.8183348178863525, -0.2898850739002228, 0.41416051983833313, -0.06291097402572632, -0.5211632251739502, -1.015488624572754, -0.2013387531042099, 0.0028494475409388542, 0.09674163162708282, 0.05892609432339668, -0.4833894968032837, -0.42172348499298096, 0.3724115788936615, 1.025126338005066, -0.7568652629852295, -1.0816134214401245, -0.9806352257728577, -0.030974017456173897, -0.43847113847732544, 0.43270066380500793, -0.6580321192741394, 1.1325007677078247, 0.43991512060165405, -0.03159681707620621, -0.44413477182388306, -0.6769497990608215, 1.1363445520401, -0.46175578236579895, 0.1922561079263687, 0.08510585129261017, -0.1566716432571411, 0.13914740085601807, -0.8373937010765076, -0.16212362051010132, 0.36205536127090454, 0.1247391626238823, -0.11481288075447083, -0.9666321873664856, -0.9213067293167114, -0.3844809830188751, 0.43658894300460815, 1.12208890914917, 0.3153340518474579, -0.023747775703668594, -0.007308878004550934, -0.9531449675559998, 0.3328474164009094, -0.39151695370674133, -0.11357565224170685, 0.0841764286160469, 1.7333825826644897, 2.1333484649658203, 0.831139862537384, 0.4526994526386261, -0.629386842250824, 0.3331376314163208, -0.6586752533912659, -0.175201416015625, -0.35302209854125977, -0.568543016910553, -0.2309112399816513], [-0.6581152677536011, 1.6396565437316895, -2.0918335914611816, 0.21144556999206543, 1.988892674446106, 0.8692334294319153, 1.7479602098464966, 0.007288071326911449, 0.7443130612373352, -0.6643525958061218, -0.8148419857025146, 0.0009867050684988499, 0.23365418612957, 0.6420363783836365, 0.17292553186416626, 0.2910539209842682, 0.44178301095962524, -0.11875453591346741, 0.6033714413642883, 1.0447782278060913, 0.5562571883201599, -0.09175687283277512, -0.002002950757741928, 0.8667835593223572, -0.043135955929756165, 0.27421313524246216, -1.3533529043197632, -0.4085557162761688, -1.148576021194458, -1.077439546585083, 1.2231637239456177, -0.8302479386329651, 0.3157443106174469, -0.18784290552139282, -1.9789751768112183, -0.4917010962963104, 0.9419385194778442, 0.7265887260437012, 0.35737115144729614, 0.3456543982028961, 1.526041865348816, -0.05362454429268837, -0.2858382761478424, -1.7358548641204834, -0.8027259111404419, 0.4575214684009552, 1.07957923412323, -0.970197856426239, 0.01466461829841137, -0.053149253129959106, 0.3152987062931061, -0.6516901850700378, 1.1984084844589233, 1.1165733337402344, 0.908905029296875, -0.31695011258125305, 0.6134877800941467, 0.04814188554883003, 0.18932677805423737, -0.6376225352287292, 1.31403648853302, 0.2269701212644577, -1.3410485982894897, 0.2230507880449295, -0.3338388204574585, 0.39297008514404297, -0.031457725912332535, 0.5866495370864868, 0.37174224853515625, 0.09879516810178757, 0.982003927230835, 0.610760509967804, -0.8074008226394653, -0.017712360247969627, -1.0464398860931396, -0.26738014817237854, 0.41705241799354553, 0.5839055776596069, 0.7924792766571045, 1.2276469469070435, -0.35434356331825256, 0.24041114747524261, -0.046741221100091934, 0.15855644643306732, 0.2120853215456009, 0.5975332856178284, 0.3614216446876526, -0.6894967555999756, -0.7201101183891296, 1.727138638496399, 0.26971662044525146, -0.01373034343123436, 0.6476876139640808, -0.5264800190925598, -0.16968683898448944, -0.7948935627937317, 0.03327731788158417, -0.25332218408584595, -0.46048256754875183, -0.9129361510276794, -0.5677998661994934, -0.9182329773902893, 0.0036889472976326942, -0.29568052291870117, 0.31468307971954346, 1.221415638923645, 0.08505845814943314, -0.4512940049171448, -0.1066618338227272, -0.4705670177936554, -0.0197521410882473, 0.8978608846664429, -0.8004733324050903, -0.544815719127655, -0.24225062131881714, 0.872047483921051, 0.6640069484710693, -0.11565695703029633, 0.7196035981178284, 0.012874136678874493, -0.2921285927295685, 0.18882186710834503, -0.8144233822822571, 0.9922434687614441, 0.5660260915756226, 0.6803079843521118, -0.39412474632263184, -0.5032685399055481, 0.915925920009613, -0.18606993556022644, 0.7875991463661194, 0.036083489656448364, 0.042570073157548904, 0.9560336470603943, -0.4758816659450531, 1.514431357383728, -0.20694942772388458, -0.6872221827507019, -0.12378933280706406, -0.07290240377187729, -0.027457384392619133, 0.2292357087135315, -0.23877397179603577, -1.078084111213684, 0.48669853806495667, -0.6522760987281799, 0.5626681447029114, 0.48015767335891724, -0.34652575850486755, -0.015156403183937073, -1.134990930557251, 0.5096065998077393, 0.07355474680662155, 0.9275142550468445, 0.4105859100818634, 0.18579019606113434, 1.19817316532135, 0.3920058012008667, 0.6262179017066956, 0.48459577560424805, 0.9465669989585876, 0.10777980089187622, -1.4264730215072632, 1.2354944944381714, -0.1781725138425827, -0.14001084864139557, 0.7918780446052551, 0.7553600072860718, -0.10740560293197632, 0.8709064722061157, -0.4516354501247406, -0.7891861200332642, -0.6671082973480225, 0.7474825382232666, 0.08423222601413727, -0.0808676928281784, 1.279272437095642, -0.5557361841201782, -1.5509603023529053, -0.7259911894798279, 1.097446322441101, -0.4807933270931244, 0.7506093978881836, -0.12738710641860962, 0.9357742667198181, -0.6485020518302917, -0.20274317264556885, -0.2957143783569336, -0.10169155150651932, -0.7800664305686951, -0.8847349882125854, -0.5479387640953064, -1.1233819723129272, -0.28002315759658813, -0.12967030704021454, -0.6134681105613708, 0.384316086769104, -0.9378303289413452, -0.6014409065246582, 0.5301374793052673, 0.2474128156900406, -0.34644097089767456, -0.8024130463600159, -0.39129534363746643, -0.5358843207359314, 0.3044261932373047, -1.0719411373138428, 1.0461825132369995, -1.00257408618927, 0.4438139498233795, 1.0608363151550293, 0.13487029075622559, -1.1454194784164429, 1.1915688514709473, 0.3782971203327179, -1.6498253345489502, 0.7013893723487854, 0.25823473930358887, 0.015639981254935265, -0.23266510665416718, 0.1887558400630951, 0.14287212491035461, 0.5157338380813599, 0.22496266663074493, 0.505422830581665, -0.04491134732961655, -1.2849950790405273, -1.1077110767364502, -0.6498677730560303, 0.41077202558517456, 0.09820220619440079, -1.334010362625122, 0.8311668038368225, 0.6471247673034668, -0.8897184133529663, 0.12615251541137695, -0.21325771510601044, -0.13713116943836212, 0.7203191518783569, 1.3846596479415894, 0.07539670914411545, 0.9236953854560852, 0.42353588342666626, -0.3835046589374542, -0.34953996539115906, 0.11125072091817856, 1.476477861404419, -0.26900938153266907, 0.15365146100521088, 1.0636173486709595, 0.57392418384552, 0.14467507600784302, -0.2551376521587372, -0.4032003879547119, -0.3683132827281952, -0.990772545337677, -0.6292861104011536, -0.3688407838344574, -0.25829049944877625, 1.898073434829712, 0.7074134349822998, -0.5515446662902832, -0.8386452794075012, 0.20120809972286224, -0.330753356218338, -0.3209131062030792, -0.5170084238052368, -0.6074069142341614, 0.04345569387078285, -0.002529754303395748, 0.01077295746654272, 0.2421169877052307, 0.18091124296188354, 0.747439444065094, -0.3129713833332062, -0.7956451177597046, -0.801705539226532, -0.030621889978647232, 0.1532469093799591, 0.7134752869606018, -0.15084101259708405, -0.9073165655136108, 0.05995254963636398, -0.040614936500787735, 1.4766643047332764, -0.5490111112594604, 0.21282552182674408, 0.04521356523036957, 0.9452296495437622, 0.09237750619649887, 0.4234088063240051, 0.43172532320022583, -0.09129589796066284, 0.2833346724510193, 0.19148853421211243, 0.634295642375946, 0.6983973979949951, -1.187738299369812, -1.231213092803955, -0.11421467363834381, 0.2751219868659973, 1.6655490398406982, 0.6458724737167358, 0.8969991207122803, -0.21200738847255707, -0.16705168783664703, -0.7400158643722534, -0.3845461308956146, -0.4828025698661804, -0.5653649568557739, -1.0880398750305176, -0.7179571390151978, -0.0609130784869194, -0.3315350413322449, 0.5396719574928284, 0.11340634524822235, -0.7334431409835815, 1.0302125215530396, 0.6367818713188171, -0.4976157546043396, -0.964978039264679, -0.30024921894073486, -0.30188775062561035, -0.9579609036445618, 0.5057946443557739, 1.3898637294769287, -1.4518625736236572, -1.2591711282730103, -0.2072848081588745, -0.037904705852270126, 1.1325910091400146, -0.06904638558626175, 0.3085000216960907, -1.1013015508651733, -0.5281079411506653, -0.5554431676864624, 1.1294457912445068, -0.0839659720659256, -0.8122780919075012, -1.3915657997131348, 0.18951639533042908, 0.7086938619613647, -0.6247121095657349, 0.2966194450855255, 0.8214610815048218, -0.5829710960388184, -0.41960862278938293, -0.6356569528579712, 0.13567228615283966, 1.0104910135269165, -0.6808119416236877, -0.40949463844299316, -0.5662455558776855, -0.49295544624328613, -0.5681283473968506, 0.8570418357849121, 0.6466465592384338, 0.7528921961784363, 0.6941189169883728, -0.38182318210601807, 1.626700758934021, -0.6815651655197144, 0.2882443070411682, -1.3664920330047607, 0.39740461111068726, 0.6911579966545105, 1.1379272937774658, -0.28814342617988586, 0.41881823539733887, 0.041022107005119324, -0.3532048165798187, 0.009773443453013897, 0.3824272155761719, 1.0041112899780273, 0.47531431913375854, -0.6530548930168152, 0.28856533765792847, -0.27501481771469116, -0.9197410941123962, -1.1796811819076538, -0.4639698266983032, 0.669352650642395, -0.6607048511505127, -0.4538109302520752, 1.6408473253250122, 0.622808039188385, 0.009979795664548874, -0.3493759036064148, -0.3318824768066406, 1.345896601676941, 0.20054635405540466, -0.5010256171226501, -0.16708339750766754, 0.380031943321228, 0.05158940330147743, -0.7321094274520874, -0.5368868112564087, -0.19873039424419403, 0.6729457974433899, 0.8990111947059631, -1.0907222032546997, -0.17310269176959991, -0.25513318181037903, 0.6299825310707092, 0.35570093989372253, 0.02495594508945942, -0.22520489990711212, -0.20054301619529724, 0.07024449110031128, 0.02091214619576931, 0.5397087931632996, 1.0816036462783813, -0.08383605629205704, -0.4250226318836212, 0.09748802334070206, 0.3893337845802307, 0.1302809715270996, -0.06272342056035995, -0.4915623962879181, 0.092011958360672, -0.9751074314117432, -0.2649708390235901, -0.15330065786838531, -0.3852986991405487, 1.212648630142212, 0.10145675390958786, 0.41055747866630554, 1.1496647596359253, 0.5221176147460938, -1.3051589727401733, 0.11340637505054474, 0.004885035566985607, -0.4315088987350464, -0.7101557850837708, 0.21523422002792358, 0.26444101333618164, -0.032384879887104034, 0.15977998077869415, 0.32174357771873474, 0.9128842353820801, -0.38956350088119507, 0.6578835248947144, 0.2694575786590576, 0.5917918682098389, 0.9446987509727478, 0.9907920956611633, 0.6985624432563782, -0.2569906711578369, -1.1338565349578857, 0.6751337051391602, -1.0385656356811523, 0.20308510959148407, 0.8081520795822144, 0.3800327181816101, 0.8402061462402344, -2.5167124271392822, -1.0465526580810547, 0.2023410052061081, 0.12040463835000992, 0.39183178544044495, 0.8657310009002686, -0.39043110609054565, -0.5415728092193604, 0.19034601747989655, -0.07418972998857498, -0.43121641874313354, 0.45442333817481995, -0.15435287356376648, -0.17240199446678162, 0.28777337074279785, -0.6267033219337463, 0.2057761251926422, -0.6123049855232239, -0.5363758206367493, 0.13426774740219116, -0.22765617072582245, 0.023654330521821976, 0.7745926380157471, 0.7321226596832275, 0.6808139681816101, -1.2068984508514404, -1.1506491899490356, 0.6981436610221863, -0.2230987399816513, -0.1076788380742073, 0.007249295711517334, -0.4409750699996948, -0.6454651355743408, -0.5244570970535278, -0.7496327757835388, 0.9617720246315002, -0.26270872354507446, -0.9568430185317993, -0.6293336749076843, -1.403826117515564, -0.7274718284606934, 0.3307349383831024, 1.1179611682891846, 1.4143266677856445, 0.5182601809501648, 0.23173105716705322, -0.12761026620864868, -0.932005763053894, 0.21672481298446655, 0.42410770058631897, 0.10393192619085312, -0.3816944658756256, -0.9535780549049377, -0.6067425012588501, 0.7222273945808411, 1.112208604812622, -0.23356148600578308, 0.6685919761657715, 1.3128118515014648, 0.9919762015342712, -0.3573344647884369, -1.4228472709655762, 0.7491172552108765, -0.11735163629055023, 0.40030452609062195, 0.7705652117729187, -0.3132505714893341, -0.5013763904571533, 0.21995648741722107, -1.631919503211975, 0.706847608089447, -0.5675978064537048, -1.146405577659607, 0.7148941159248352, 0.28319644927978516, 0.7690178155899048, 0.8350341320037842, -0.8492114543914795, 0.3049406111240387, 0.5664389729499817, -0.5158408284187317, -0.6322757005691528, 0.4975210428237915, 0.2641817033290863, 0.4927695393562317, -0.2157207727432251, 0.6818507313728333, 0.13822327554225922, -1.2769142389297485, 0.04507329314947128, 0.5643845200538635, 0.1408894956111908, 0.6996368765830994, 0.6571593880653381, -1.1718829870224, 0.39087724685668945, -0.60269695520401, -0.42654964327812195, -0.6420485973358154, 0.16514547169208527, 0.9191845655441284, -0.15798072516918182, 0.12386025488376617, -0.4065704047679901, -0.7121105790138245, -0.7174025774002075, -0.8157095909118652, 0.43816670775413513, 0.5793955326080322, -0.6873641610145569, 0.02234232984483242, -0.8435823321342468, -0.4181007444858551, -0.634009599685669, -0.3518305718898773, 0.3161231279373169, -1.3110215663909912, -0.42548874020576477, 0.1963663399219513, -0.545257031917572, -0.6561908721923828, -0.2969011068344116, 0.43229421973228455, -0.4727764129638672, -1.1313577890396118, -1.021220088005066, 0.6602450609207153, 0.7088720202445984, -0.8553982973098755, 0.5135540962219238, 0.090912826359272, -1.7144170999526978, 0.11504613608121872, -0.5746828317642212, -1.0062119960784912, -0.03330615535378456, -1.024814486503601, 0.9582509398460388, -0.21479836106300354, -0.004597063641995192, -0.07655398547649384, 1.455157995223999, -1.4572057723999023, -0.9930209517478943, -0.944467306137085, -0.019029885530471802, 1.1680593490600586, 0.5338999032974243, -0.6168878078460693, 1.7325602769851685, 0.3274848759174347, -1.0771112442016602, -0.5103893876075745, 0.5814847946166992, -1.0276274681091309, 0.38284817337989807, 0.4684281051158905, 0.6862058639526367, 0.5805323719978333, 1.606066107749939, 0.10107779502868652, 0.5140860080718994, 0.15267519652843475, 0.30327144265174866, -0.5604091286659241, -0.8523921966552734, -0.4066084027290344, 0.6738668084144592, -1.4037044048309326, -0.867386519908905, -0.2009590119123459, -0.1287134289741516, -1.1773762702941895, 0.5444958806037903, 0.43523845076560974, -0.9748692512512207, 0.4151756167411804, 0.5346125364303589, 0.3019174039363861, -0.15331634879112244, 1.1079885959625244, 0.7701334953308105, -1.2048759460449219, -0.16088242828845978, -0.14449657499790192, -0.2821897268295288, -0.9922645092010498, 0.170105442404747, -0.11981365829706192, 0.24211017787456512, -0.025116760283708572, 0.16097526252269745, 0.6778253316879272, -0.5662406086921692, -0.5006389021873474, 1.4298062324523926, 0.8695401549339294, -0.5552879571914673, -0.35635238885879517, 0.8462905287742615, -0.10818566381931305, 0.8644427061080933, 0.0522179938852787, 0.5161607265472412, -0.3394297659397125, 0.7696083188056946, 0.3404395878314972, 0.07135429978370667, -0.34423479437828064, 0.16552422940731049, -0.6872947216033936, 0.5744602084159851, 0.2137278914451599, -0.8396568894386292, -0.6430959701538086, 1.2607755661010742, 0.13866645097732544, 0.00965836551040411, 0.40581220388412476, 0.37013810873031616, 0.5122069716453552, -0.08073817193508148, 0.4329625070095062, 0.6509307026863098, -1.1614587306976318, 0.07907421886920929, -0.23275204002857208, 0.11419246345758438, 0.28231361508369446, 0.02779802680015564, -1.9185917377471924, 0.7027381658554077, -0.8600049614906311, -0.55577152967453, 0.7679347991943359, -0.7801126837730408, -0.6932699084281921, -0.03110515885055065, 0.14121192693710327, 0.25118324160575867, 0.03290870785713196, -0.5970875024795532, -0.19157004356384277, 0.7183504104614258, 0.13556469976902008, -0.8479203581809998, 1.3544224500656128, -0.35772058367729187, -0.05882987752556801, -0.5068572163581848, -0.24334834516048431, -0.16549701988697052, 0.8450995683670044, -0.127470925450325, -0.38415008783340454, 0.9920724630355835, -0.3463003635406494, -0.80471271276474, 0.20748279988765717, -0.14100483059883118, 0.20388759672641754, -0.3104933798313141, -0.29032304883003235, -0.28514546155929565, 0.3649105131626129, 0.5975886583328247, -0.7322986721992493, -0.37438684701919556, -0.49564212560653687, 0.20674599707126617, -0.5265288949012756, 0.7640729546546936, -0.5595723986625671, 1.1949005126953125, -0.03643948584794998, -0.6021814942359924, -0.3427211046218872, -0.06800267100334167, 0.5456691384315491, 0.07258205860853195, 0.5696225762367249, -0.28956639766693115, -0.22331811487674713, -1.1343809366226196, -0.7791057229042053, 0.04974576085805893, 0.9079607129096985, 0.02514035440981388, -0.3339470624923706, -0.8469246029853821, -0.4850563704967499, -0.812861442565918, -0.15560492873191833, 0.753617525100708, 0.2555370628833771, 0.12512587010860443, 0.0892556831240654, -0.6474204659461975, 0.5251177549362183, -0.10454187542200089, 0.45586398243904114, 0.4096349775791168, 1.0810012817382812, 1.3183454275131226, 0.20346562564373016, 0.09976989030838013, -0.4208381175994873, 0.9278064370155334, -0.7007107734680176, -0.2463027536869049, -0.8064283132553101, -0.3816251754760742, 0.10385258495807648], [-0.27454328536987305, 1.425248146057129, -2.473788022994995, 0.18851768970489502, 0.747577428817749, 0.24007061123847961, 1.9964004755020142, -0.6006693243980408, 0.5000813007354736, -0.4443661570549011, -0.8832708597183228, -0.2886675298213959, 0.4508390724658966, 0.5978891849517822, 0.1739782840013504, 1.035631537437439, 0.5739539265632629, -0.7612840533256531, 0.10249457508325577, 1.0397311449050903, 0.38166627287864685, -0.8832384347915649, -0.1657762974500656, 0.9842340350151062, -0.48326271772384644, -0.0017935093492269516, -1.3307781219482422, -0.42761433124542236, -0.9005762338638306, -0.8043467998504639, 0.5658870935440063, -0.9161427617073059, 0.13711169362068176, 0.2258627712726593, -1.2307945489883423, -0.013796673156321049, 2.2469382286071777, 0.629023015499115, 1.312562108039856, 0.12630338966846466, 1.4421058893203735, -0.25249141454696655, 0.532541811466217, -1.6288481950759888, 0.42093899846076965, -0.4086221158504486, 1.607401967048645, -0.5808631777763367, 0.5682916641235352, -0.41656479239463806, -0.09461664408445358, -0.6416246294975281, 0.4859810769557953, 0.2939690351486206, 1.066848635673523, 0.4546400010585785, 0.864008903503418, -0.18475943803787231, 0.36261993646621704, -0.5559713840484619, 1.5450283288955688, -0.4326685667037964, -0.452117919921875, 0.7016952633857727, 0.04077203944325447, -0.3652760982513428, 0.0018812473863363266, 0.41167527437210083, -0.23031693696975708, 0.05330197885632515, 1.1890476942062378, 0.1916859745979309, -0.1379489302635193, 0.4557284414768219, -0.9527162909507751, 0.48207512497901917, 0.2994747459888458, 1.16520094871521, 0.4341644048690796, 0.4805445671081543, -0.1838318556547165, -0.2311563342809677, 1.317625641822815, -0.19113211333751678, -0.41630613803863525, -0.14840221405029297, 0.8415820598602295, -0.09493211656808853, -0.44754865765571594, 0.6623340845108032, 0.6861459612846375, 0.45643705129623413, 0.737109899520874, -0.11122877150774002, 0.045752547681331635, -0.3706904351711273, 0.42969512939453125, 0.10708053410053253, -0.7015456557273865, -1.1579780578613281, -0.4994562566280365, -0.7754604816436768, -0.15890353918075562, -0.3537745773792267, 0.3184329867362976, 1.4330556392669678, 0.245415598154068, 0.36686187982559204, -0.2800128161907196, -0.06078847125172615, -0.6196436285972595, 0.34080180525779724, -0.8927160501480103, -2.128944158554077, -0.9649144411087036, 0.9117366671562195, 1.0711191892623901, 0.6920451521873474, 0.6496323347091675, 0.5355376601219177, -0.636315107345581, 0.09535837173461914, 0.4079660177230835, 0.7294147610664368, 0.5938639640808105, 0.5923471450805664, -0.5392408967018127, -0.8402851223945618, 0.40718185901641846, 0.24776223301887512, 0.8975234031677246, -0.2778395712375641, -0.2765229642391205, 1.2921383380889893, -0.6354930400848389, 0.9262838959693909, -0.5607758164405823, -0.5787657499313354, -0.2511771619319916, -0.11594871431589127, 0.6489545702934265, -0.44700491428375244, 0.020072804763913155, -0.022362466901540756, 0.024602385237812996, -0.2867301404476166, -0.09466928243637085, -0.2905648350715637, -0.6631776094436646, -0.39743974804878235, -1.1704050302505493, 0.5172235369682312, 0.028794893994927406, 0.3533609211444855, 0.5477669835090637, -0.1806195229291916, 0.27119189500808716, 0.04471024125814438, 1.0191235542297363, -0.47458338737487793, 0.3317815363407135, -0.09445103257894516, -1.275453805923462, 0.9032799005508423, -0.46362489461898804, -0.07540750503540039, 0.30942925810813904, 1.3545984029769897, 0.1952441781759262, 0.8842577934265137, -0.6429494023323059, -0.5701197385787964, -0.550195038318634, 0.38712072372436523, 0.2998899519443512, -0.6003699898719788, 1.3275424242019653, -0.23364095389842987, -1.7680678367614746, -1.4452210664749146, 0.5515474677085876, -1.0133411884307861, 0.35576096177101135, -0.1424977034330368, 0.23622502386569977, -0.29681020975112915, 0.8142991662025452, -0.2904830873012543, -0.26558464765548706, -0.28266632556915283, 0.04429549723863602, -0.633459746837616, -0.5848469138145447, -0.22546742856502533, -0.028946325182914734, 0.12918037176132202, 0.8433138728141785, -1.1651191711425781, -0.8881934881210327, -0.3118138909339905, -0.5239109396934509, -0.29025518894195557, -0.619945764541626, 0.42429089546203613, -0.05795690789818764, 0.5367283225059509, -0.8440421223640442, 1.0844193696975708, -0.39964327216148376, 0.5358250737190247, 1.325459599494934, -0.2618407607078552, -0.8514742851257324, 0.6486230492591858, -0.33718204498291016, -1.3047142028808594, 0.2569555640220642, 0.13472643494606018, -0.3715941309928894, 0.25885486602783203, -0.0640893280506134, 0.392205148935318, 0.0783151239156723, -0.1859387904405594, 0.5042192339897156, -0.046528566628694534, -0.22482632100582123, -1.1861050128936768, -0.6245672106742859, 0.5606610178947449, -1.175590991973877, -1.176238775253296, 0.8610309958457947, 0.6593891382217407, -0.43399399518966675, -0.12367048859596252, -0.14137764275074005, 0.5419302582740784, 0.14935114979743958, 1.7682645320892334, 0.3828936815261841, 0.9676015973091125, 0.27608945965766907, -0.11882670968770981, 0.1908598095178604, 0.5390812754631042, 0.7329879999160767, 0.315986692905426, -0.38663890957832336, 1.07125723361969, 1.4591532945632935, 0.6792522072792053, 0.41146233677864075, 0.03535105660557747, -0.22893552482128143, -0.8155779242515564, -1.2413264513015747, 0.5441871285438538, -0.15195664763450623, 1.370805263519287, 0.44565701484680176, -0.49772465229034424, -0.49018827080726624, 0.5197749137878418, 0.13809582591056824, -0.06819126009941101, -0.6898052096366882, -0.6618720889091492, -0.6810809969902039, -0.1800168752670288, -0.29350194334983826, 0.3319132626056671, 0.3576008379459381, 0.7791083455085754, -0.45399370789527893, -0.6296060681343079, -0.5494325160980225, 0.38567182421684265, 0.039976853877305984, 1.0458025932312012, 0.10345398634672165, -1.6282073259353638, 0.17492012679576874, 0.30707064270973206, 0.7746044397354126, -0.1964452564716339, 0.06732071936130524, -0.32496029138565063, 0.6858394145965576, -0.6354727149009705, 0.24709928035736084, -0.2734098732471466, -0.6493735313415527, 0.43783286213874817, 0.02084643766283989, 0.6984687447547913, 1.0356274843215942, -1.0462663173675537, -1.3430275917053223, 0.3282996714115143, 0.4254671037197113, 1.3282039165496826, 0.32040369510650635, 1.7226717472076416, -0.6618586778640747, -0.05256873741745949, -0.5222612619400024, -0.9737938046455383, -1.2628543376922607, -1.1423736810684204, -0.532518208026886, -0.9129317402839661, -0.5410722494125366, -0.3700718283653259, -0.2625488042831421, 0.8624935150146484, -0.4825930893421173, 0.1791190356016159, 1.838229775428772, -0.20559807121753693, -0.6624566912651062, 0.049977824091911316, -0.15025272965431213, -0.14236664772033691, 0.34510836005210876, 1.7092748880386353, -1.18328058719635, -0.4910675287246704, -0.2124335616827011, 0.16030941903591156, 0.2740347385406494, 0.5415363311767578, -0.09337466955184937, -1.3960171937942505, -1.0935815572738647, -0.38786566257476807, 1.2191587686538696, -0.011452202685177326, -0.23762251436710358, -0.5315608978271484, 0.10712356865406036, 0.8472549319267273, -0.8234347105026245, -0.3229411542415619, 0.9074970483779907, -0.2811811566352844, -0.5718308687210083, -0.14113451540470123, 0.3820496201515198, 0.2560393214225769, -1.3925957679748535, -0.7763330340385437, -0.7643254995346069, -0.46983519196510315, -0.2671373188495636, 0.787003755569458, -0.19155898690223694, 1.2505412101745605, -0.4803999066352844, -0.45357996225357056, 0.5479021668434143, 0.12716221809387207, -0.3700968623161316, -0.4207545518875122, 0.4365848898887634, 0.7015870809555054, 1.3090624809265137, -0.5151556730270386, 0.5560107231140137, 0.7855034470558167, -0.014665277674794197, -0.03623589128255844, 0.6379216313362122, 1.0049247741699219, -0.39462727308273315, -0.012431547045707703, -0.25556233525276184, -0.6096992492675781, 0.009861811995506287, -0.6254783868789673, 0.07841984182596207, 0.2656395733356476, -1.151702880859375, -0.5849944353103638, 1.1201571226119995, 0.16904519498348236, -0.19762152433395386, -0.5721360445022583, 0.7407260537147522, 0.9445149898529053, 0.08363979309797287, 0.2680281400680542, -0.6335284113883972, -0.16180039942264557, 0.2474054992198944, -1.506066918373108, -0.01728067360818386, 0.6143786907196045, 0.12791720032691956, 0.9730930924415588, -0.811971127986908, 0.10831339657306671, -1.0749422311782837, 0.9767677783966064, 0.695914626121521, 0.019915126264095306, 0.3035047650337219, -0.09276293218135834, -0.04307720437645912, -0.2413501888513565, 0.49949735403060913, 1.9311468601226807, 0.023499445989727974, -0.33397409319877625, -0.0706402063369751, -0.2147853523492813, -0.3961041271686554, -0.5973381400108337, -0.2090451717376709, 0.3810751438140869, -0.5566296577453613, -0.2096259891986847, 0.3041226863861084, -0.1453997939825058, 1.1134778261184692, 0.2142602503299713, 0.3835349678993225, 0.13281862437725067, 0.33409151434898376, -1.108399748802185, 0.04780171439051628, 0.6216959953308105, -0.08466114848852158, -1.1490384340286255, -0.3861519694328308, 0.4135529398918152, 0.47161105275154114, 0.13914088904857635, 0.3456834554672241, 0.8803189396858215, 0.7073302268981934, 0.43794262409210205, -0.18146871030330658, 1.0409377813339233, 0.5917208194732666, 1.2670918703079224, 0.030098911374807358, -0.24668213725090027, -0.33401793241500854, 0.2506087124347687, -1.5602327585220337, 0.27943727374076843, 0.6051269173622131, -0.23101404309272766, 1.2293899059295654, -2.108853578567505, -1.167397141456604, 0.07508737593889236, 0.37854307889938354, 0.26508980989456177, 0.8187055587768555, -0.6412606835365295, 0.3356730341911316, 0.638616681098938, 0.01065896824002266, -0.5354845523834229, 0.12249456346035004, -0.38179776072502136, 0.10716325789690018, 0.22443924844264984, -0.9926148056983948, 0.48401984572410583, -0.2992400825023651, -0.1682147979736328, -0.41218042373657227, -0.7823048830032349, -0.00534213799983263, 0.503109872341156, -0.06421828269958496, 1.7314485311508179, -0.41604670882225037, -0.8105464577674866, -0.1391807645559311, -0.7543358206748962, 0.450236052274704, -0.7111301422119141, 0.12284629791975021, -0.9224792122840881, 0.2471843808889389, -0.002190595492720604, 0.29387956857681274, -0.06320270895957947, -0.22502046823501587, -0.4731811285018921, -1.2668333053588867, 0.09471014887094498, 1.0348786115646362, 1.3644509315490723, 0.5335782766342163, -0.1240929439663887, 0.9941956400871277, 0.3287806510925293, -0.887189507484436, -0.29699015617370605, 0.09107483178377151, -0.24298587441444397, 0.26169368624687195, -1.29612398147583, 0.040930453687906265, -0.23294474184513092, 0.02242649719119072, -0.10189793258905411, 0.7885066270828247, 1.210290551185608, 0.8537927269935608, 0.06712044030427933, -0.5454643368721008, 1.1694236993789673, -0.3014961779117584, 1.0431874990463257, 0.7981936931610107, -0.43874114751815796, -1.3224811553955078, -0.591907262802124, -1.1454987525939941, 0.20491871237754822, -0.2284993976354599, -0.4833020269870758, 1.1447694301605225, 0.2738354206085205, 0.7837026715278625, 0.05704944208264351, -0.37322527170181274, 0.6304904222488403, -0.20568184554576874, 0.01750589907169342, -1.1618742942810059, 0.3608757555484772, 0.10114121437072754, -0.1612694263458252, 0.23633208870887756, 0.5783504843711853, 0.02735128253698349, -0.2978568971157074, -0.1199134811758995, 0.7575226426124573, -0.023732688277959824, 0.9751861095428467, 0.5821990966796875, -0.5248481035232544, 0.3577549457550049, -0.5746115446090698, -0.7693359851837158, 0.06743663549423218, 0.27994468808174133, 0.2002672702074051, -0.22657456994056702, -0.2006121724843979, -0.26709964871406555, -0.26992830634117126, 0.16878212988376617, -0.676616370677948, 0.5425662994384766, 0.1629818081855774, 0.3710450530052185, -0.27034592628479004, -0.1551169604063034, 0.18562845885753632, -0.2379283607006073, 0.33685943484306335, 0.4753641188144684, -1.188109278678894, 0.01703527569770813, 0.5705560445785522, -0.7935360074043274, -0.4318634271621704, -0.12977062165737152, 0.5051866769790649, -1.0627940893173218, -1.3307684659957886, -1.055600881576538, 0.547513484954834, 0.6038030982017517, -0.5246458649635315, 0.6753920912742615, 0.550494909286499, -1.220957636833191, 0.35867229104042053, 0.4694640636444092, -1.2689796686172485, -0.3209938108921051, -0.5236920714378357, 0.2792767584323883, -0.0032407157123088837, 0.2821144461631775, 0.21042056381702423, 1.0185285806655884, -1.8295326232910156, -1.937091588973999, -1.124551773071289, -0.617756724357605, 0.5919860005378723, 0.6422494053840637, -0.9717826247215271, 0.6299955248832703, 0.488127201795578, -0.45444223284721375, -0.9874730110168457, 0.20733879506587982, -0.49238258600234985, 0.1683253049850464, -0.5012680888175964, 0.7376731634140015, 0.19269080460071564, 0.7078273892402649, 0.3121352791786194, 0.9203892350196838, 0.2501837909221649, 0.9574254751205444, -1.2000864744186401, -0.25715044140815735, 0.2650505304336548, 0.39985644817352295, -1.868503451347351, -1.0173779726028442, -0.6048519611358643, -0.5168826580047607, -1.0382161140441895, 0.029716383665800095, 0.5943052172660828, -1.3019477128982544, 0.04907919093966484, -0.7655948996543884, 0.5205225944519043, -0.4835059642791748, 0.44918668270111084, -0.0961957797408104, -0.05138147622346878, -0.2779037654399872, -0.037953078746795654, -0.2438279688358307, -1.5727367401123047, -0.15489034354686737, 0.24585068225860596, 0.6600902676582336, -1.1509792804718018, 0.6861390471458435, 0.3580750823020935, 0.44752123951911926, -0.5917017459869385, 1.5869972705841064, 0.36278849840164185, -0.3876418173313141, -0.0009035961702466011, 0.48610278964042664, -0.004454853944480419, 0.9031898379325867, -0.8302504420280457, -0.047643423080444336, -0.7187725305557251, 0.4340156316757202, 0.3022669851779938, 0.29095515608787537, -0.2562728524208069, 0.17871008813381195, -0.17333468794822693, 0.3706655204296112, 0.638883650302887, -0.7741885781288147, -0.4974518418312073, 0.5916680097579956, 0.034728050231933594, -0.587908148765564, 0.20187370479106903, 0.45588988065719604, 0.1724061220884323, -0.7009902000427246, 0.8209311366081238, 0.028700904920697212, -0.8280840516090393, 0.5015048384666443, -0.3075910806655884, -0.5460540652275085, -0.338985800743103, 0.13245336711406708, -0.8982371687889099, -0.043968964368104935, -0.5201408863067627, -0.30953919887542725, 0.8737525939941406, -1.619057536125183, -0.7480952739715576, 0.5955162644386292, -0.5788583755493164, -0.4483410716056824, -0.05225008726119995, 0.2435772567987442, 0.3996870517730713, -0.15963150560855865, 0.7775701284408569, -0.5481452345848083, 1.519425392150879, -0.12976707518100739, -0.2176464945077896, -1.599205493927002, -0.38047999143600464, 0.4803895652294159, 0.020843110978603363, -0.3111215829849243, 0.11030600219964981, 0.18438920378684998, -0.5659557580947876, -0.630122721195221, 0.032110318541526794, 0.6605083346366882, 0.5604189038276672, 0.19880782067775726, -0.018161065876483917, 0.32863855361938477, 0.46263840794563293, 1.1899651288986206, -0.6630096435546875, -0.6593703031539917, -0.7752782702445984, -0.09416479617357254, -0.4791030287742615, 0.538923442363739, 0.45019155740737915, 0.7449751496315002, 0.2455090582370758, -0.18384557962417603, -0.5544754266738892, -1.0295262336730957, -0.429593563079834, -0.1302286833524704, 0.21445733308792114, 0.22149860858917236, -0.3111080825328827, 0.021465929225087166, -0.861899733543396, -0.14638489484786987, 0.5300970077514648, -0.07304376363754272, 0.37914490699768066, -0.9697610139846802, -0.4197864830493927, -0.22127065062522888, 0.2581969201564789, 1.2375156879425049, -0.0552690327167511, 0.4665910005569458, 0.03661464899778366, -0.9676557779312134, 0.7278875112533569, -0.004708103835582733, -0.08895399421453476, 0.36869871616363525, 1.1615257263183594, 2.283677339553833, 0.8413439989089966, 0.12064892053604126, -0.3865496516227722, 0.07218039035797119, -0.4303421676158905, -0.13036197423934937, -0.2688993513584137, -0.11474040150642395, -0.3926011621952057], [-0.10231316089630127, 1.542541742324829, -2.5506792068481445, 0.013770210556685925, 1.2372721433639526, 0.5622664093971252, 1.1710025072097778, -0.9833927154541016, 0.1498948037624359, -0.3079138994216919, -0.3785657584667206, 0.4632406234741211, 0.6828749179840088, 0.4239039719104767, -0.45974239706993103, 0.7621223330497742, 0.764174222946167, -0.4301944375038147, 0.8106884360313416, 0.5587571859359741, -0.38365012407302856, 0.18004631996154785, 0.792761504650116, -0.05460880696773529, -0.8478711247444153, 0.36871448159217834, -1.2890188694000244, -0.3753182590007782, -0.3124174475669861, -0.9001851081848145, -0.05127725377678871, -0.22348536550998688, -0.010182750411331654, 0.5973308086395264, -1.102583885192871, -0.7767161726951599, 1.0224993228912354, 1.5099375247955322, 0.7008718848228455, 1.1153331995010376, 1.5115242004394531, 0.08390673995018005, 0.2979271709918976, -1.6554392576217651, 0.723034679889679, -0.010783819481730461, 1.0885413885116577, -0.5856197476387024, 0.7545608878135681, -0.3287335932254791, 0.07870077341794968, -0.5825939178466797, 0.3568214476108551, 1.0353864431381226, 0.938971757888794, -0.2800944149494171, 0.44765397906303406, 0.43912073969841003, 1.0784560441970825, -0.8654992580413818, 1.0047310590744019, -0.127078577876091, -0.2456158697605133, 0.838921070098877, -0.11633844673633575, -0.013134530745446682, -0.2689526081085205, 0.19662906229496002, -0.3315935730934143, -0.2791432738304138, 0.3744652271270752, 0.31373801827430725, -0.9511387944221497, 0.8101162314414978, -1.186665654182434, 0.6297048926353455, 0.7611989378929138, 0.28999945521354675, 0.2186119109392166, 0.25517287850379944, -0.11349886655807495, 0.08669935911893845, 0.5192532539367676, 0.035532526671886444, 0.5262278318405151, 0.11843375116586685, 0.6235029697418213, -0.7701300382614136, -0.4527175724506378, 1.4729357957839966, 0.1048300713300705, 0.05931166559457779, 0.7939170002937317, -0.41254153847694397, -0.8020449280738831, -0.4894216060638428, 0.6362111568450928, -0.11138636618852615, -1.1058419942855835, -1.09734308719635, -0.45135369896888733, -0.6384994983673096, 0.259846031665802, 0.36946073174476624, 0.04388076066970825, 1.076377034187317, -0.1404271274805069, 0.0741674154996872, -0.3683939278125763, 0.05495676025748253, -0.020158806815743446, 0.6962958574295044, -1.1231826543807983, -1.2435716390609741, -0.426788866519928, 1.2117348909378052, 1.0080504417419434, -0.6785250902175903, 0.6132621765136719, 1.0413048267364502, -0.2725670635700226, -0.27276936173439026, -0.22333978116512299, 0.6949103474617004, 0.4352472424507141, 0.651987612247467, -0.4928848147392273, -0.6242700815200806, 0.18361616134643555, -0.2150023877620697, 0.5492573976516724, -0.2766513526439667, -0.3070913851261139, 1.100867748260498, -1.0243871212005615, 1.3780319690704346, -0.465109258890152, -0.3676786720752716, 0.10224078595638275, -0.24221384525299072, 0.8622627258300781, -0.37735283374786377, -0.2501908540725708, -0.658111035823822, -0.06965436041355133, -0.12603361904621124, -0.21702317893505096, -0.22171999514102936, -0.4089087247848511, 0.3007877469062805, -0.8146853446960449, 1.0381641387939453, 0.36342111229896545, 0.572378933429718, 0.13966664671897888, -0.3910057842731476, 0.31160110235214233, 0.4819345474243164, 1.0633087158203125, -0.286376953125, 1.0811105966567993, -0.16222122311592102, -0.9859532713890076, 0.945068895816803, 0.6298798322677612, -0.16987749934196472, 0.18016240000724792, 0.8748063445091248, -0.07519809901714325, 0.7374365925788879, -0.9230512976646423, -0.24188455939292908, -0.1223180964589119, 0.055103760212659836, 0.5046265721321106, -0.7511190176010132, 1.0255671739578247, -0.7083187103271484, -0.9875540137290955, -1.2366834878921509, 0.12454628944396973, -0.7122258543968201, 0.25384119153022766, -0.20629337430000305, 0.9651548266410828, -0.5340790152549744, 0.038932204246520996, -0.10718107968568802, -1.1991050243377686, -0.8907564878463745, -0.6217089891433716, -0.7304518222808838, -1.1152387857437134, 0.21884861588478088, -0.6517482995986938, -0.5078680515289307, 0.24859540164470673, -0.9185852408409119, -0.6684621572494507, -0.4868849217891693, -0.48254844546318054, -0.2011757344007492, -1.175481915473938, 0.5747261643409729, -0.6006377339363098, 1.1641041040420532, -1.072034239768982, 0.9367864727973938, -0.6275250315666199, -0.14257913827896118, 1.0604329109191895, -0.022112812846899033, -0.30105921626091003, 0.8900443911552429, -0.12390142679214478, -1.169551968574524, 0.7359105348587036, 0.3674589991569519, -0.5237475037574768, 0.6366515159606934, 0.8875514268875122, -0.17835716903209686, 0.37832990288734436, 0.05626624450087547, 0.33793261647224426, -0.31086742877960205, -0.5590149164199829, -0.500451385974884, -0.6186354756355286, 0.15344814956188202, -0.323744535446167, -1.2546131610870361, 1.1128665208816528, 0.2933349311351776, -0.9001065492630005, 0.009009882807731628, 0.29597607254981995, -0.06082524359226227, 0.8123360276222229, 0.91533362865448, 0.301168829202652, 0.708925724029541, -0.46245452761650085, -0.24760958552360535, -0.7188349962234497, -0.04996161162853241, 1.2519092559814453, -0.039388809353113174, 0.21923215687274933, 1.5847285985946655, 1.2612569332122803, -0.13160733878612518, 0.10082478076219559, 0.7669843435287476, -0.1704980880022049, -0.893307626247406, -0.8012451529502869, 0.09899440407752991, -0.2967660427093506, 1.1355485916137695, 1.0471404790878296, -1.1951130628585815, 0.0756956934928894, 0.06576573848724365, 0.23449182510375977, -0.23210817575454712, -0.8790729641914368, 0.4227767884731293, -0.2950938045978546, 0.37890490889549255, -0.11291307955980301, 0.5149054527282715, -0.15805242955684662, 1.0213947296142578, -0.6982010006904602, -0.3518829047679901, -0.6107677221298218, 0.9321362376213074, 0.18050290644168854, 0.4681689441204071, 0.14338427782058716, -1.604533314704895, -1.031211018562317, 0.1114993467926979, 0.9869373440742493, 0.3990553617477417, 0.18813714385032654, -0.21920625865459442, 0.025228600949048996, -0.11942527443170547, 0.2552604377269745, -0.17545486986637115, 0.29564592242240906, -0.1384926289319992, 0.16741999983787537, 0.12490396201610565, 1.1198104619979858, -0.6858652830123901, -0.8614170551300049, 0.13930542767047882, 0.19448663294315338, 1.525374412536621, 0.7330523729324341, 1.1587047576904297, 0.06768381595611572, -0.07266384363174438, -0.8443458676338196, -0.9565651416778564, -0.6795392036437988, -0.4303591847419739, -1.3113727569580078, -0.8221682906150818, -0.1656128615140915, -0.55936199426651, -0.09720733016729355, 0.6690772771835327, -0.5879802703857422, 0.9274789690971375, 1.5463922023773193, -0.7789992690086365, -0.6651318669319153, -0.05892867222428322, 0.4395228624343872, -0.9051902294158936, 0.8236761689186096, 1.84831964969635, -1.0919811725616455, -0.5457037687301636, -0.6144863367080688, -0.16474387049674988, 0.4446415901184082, -0.020250754430890083, -0.41060671210289, -1.8632646799087524, -1.1042113304138184, -0.21932528913021088, 1.7312614917755127, -0.18162395060062408, 0.03912055119872093, -0.7200474739074707, 0.6599632501602173, 0.4607388377189636, -0.7686264514923096, -1.0631790161132812, 0.19647951424121857, 0.044099994003772736, -0.36838632822036743, -0.34212827682495117, 0.6643418073654175, 0.7577449679374695, -0.5689123868942261, -0.9387974739074707, -0.20941196382045746, 0.32425016164779663, -0.44323062896728516, -0.1592494547367096, 0.5313073396682739, 0.5729627013206482, -0.4962719976902008, -0.15714192390441895, 0.09878645092248917, -0.8122641444206238, -0.014000770635902882, -1.3217641115188599, 0.1454285830259323, 0.32762351632118225, 1.1397291421890259, 0.21541288495063782, 0.27942073345184326, 0.16170242428779602, 0.0653095617890358, -0.21413572132587433, 0.3824671506881714, 1.4677616357803345, 0.0968833640217781, -0.20568901300430298, -0.4631725549697876, -0.45684221386909485, -0.37969258427619934, -1.070909857749939, -0.4569498598575592, 0.7219296097755432, -0.5487783551216125, -0.8021495342254639, 0.7812312841415405, 0.5312719345092773, -0.352776437997818, 0.022265251725912094, 0.16864950954914093, 1.36404287815094, -0.5969666838645935, 0.12551578879356384, -0.7331348657608032, -0.0887996107339859, -0.06338667869567871, -1.3067954778671265, -0.01719859056174755, 0.5497382879257202, 0.6907269954681396, 0.4764687716960907, -1.0307122468948364, -0.2841529846191406, -0.5874122381210327, 0.12901939451694489, 0.20666776597499847, -0.08399499207735062, 0.06683816760778427, -0.2527499198913574, -0.38235077261924744, -0.2763349115848541, -0.04451845958828926, 0.8099690675735474, -0.7226864695549011, -0.16078747808933258, -0.421735018491745, -0.013569526374340057, -0.5876710414886475, -0.21350660920143127, -0.35397741198539734, -0.22176241874694824, 0.10328330844640732, 0.15161888301372528, 0.17505960166454315, -0.22549806535243988, 1.3397938013076782, 0.16507376730442047, 0.5567508339881897, 0.6023733019828796, -0.1666577309370041, -1.033624291419983, 0.32829979062080383, 0.688874363899231, -0.40866225957870483, -0.5758578777313232, -0.5424262285232544, 0.3932817876338959, -0.453635573387146, 0.4818716049194336, 0.35679197311401367, 0.9649537801742554, 0.31783828139305115, -0.0311411265283823, -0.5730422735214233, -0.2233525663614273, 0.30160167813301086, 1.0901328325271606, -0.2754804790019989, -0.09268797934055328, -1.2909021377563477, 0.3277031481266022, -1.1064784526824951, 0.21449647843837738, 0.9402879476547241, 0.17463965713977814, 1.5316561460494995, -1.9385480880737305, -0.530474066734314, 0.5879806280136108, 0.18471533060073853, 0.544795572757721, 0.33414652943611145, -0.4558317959308624, -0.404636412858963, 0.5872147679328918, -0.0040379236452281475, 0.07860153913497925, 0.13993483781814575, -0.17041023075580597, -0.3180626332759857, 0.3715268671512604, -0.444863885641098, 0.8071303963661194, -0.4712575376033783, -0.236494243144989, 0.18375618755817413, -0.36825937032699585, 0.37709417939186096, 0.48847898840904236, 0.15499845147132874, 0.23617017269134521, -0.7237904667854309, -0.6926307082176208, 0.7848001718521118, -0.0032785525545477867, 0.3889795243740082, -0.5996139645576477, -0.06568867713212967, -0.05742857977747917, -0.38202378153800964, -0.3360244631767273, 0.5791136622428894, -0.2892870604991913, -0.23548899590969086, -0.5113545060157776, -1.5420078039169312, 0.02063687890768051, 0.5218178629875183, 1.131056547164917, 0.491170734167099, -0.46287938952445984, 0.3044077455997467, 0.49470627307891846, -1.3692916631698608, 0.25185850262641907, -0.3278457820415497, -0.42320147156715393, -0.1937026083469391, -1.4921913146972656, -0.16021472215652466, 0.021147506311535835, 0.6954541206359863, -0.01055359560996294, 0.6064412593841553, 1.3094336986541748, 1.7628625631332397, -0.5567868947982788, -0.6697114109992981, 0.7414041757583618, -0.37405872344970703, -0.04736978933215141, 0.5947000980377197, -0.5397692322731018, -0.4372890591621399, -0.6372461318969727, -1.2026474475860596, 1.2542550563812256, -0.8802140355110168, -0.9853997826576233, 1.1265109777450562, 0.2109367549419403, 0.7281823754310608, 0.9126255512237549, -0.49580323696136475, 0.5049984455108643, 0.3734165132045746, -0.7737831473350525, -1.2983771562576294, 1.0880351066589355, 0.035630300641059875, 0.39841461181640625, -0.5003156065940857, 0.3175101578235626, 0.22790409624576569, -0.6711214184761047, 0.29877883195877075, 0.09810654819011688, 0.24119725823402405, 0.7790305018424988, 0.8906238675117493, -0.3474443256855011, 0.17594687640666962, -0.3380889892578125, -0.17808935046195984, -0.03397656977176666, 0.5956985354423523, -0.4026908278465271, -0.1748562753200531, -0.17582154273986816, -0.14316070079803467, -0.24385017156600952, -0.5544984936714172, -0.3557758629322052, 0.6142158508300781, 0.3305511176586151, 0.2797183692455292, -0.26503708958625793, -0.38660910725593567, -0.5863239169120789, -0.020095383748412132, -0.014618908055126667, 0.2307777851819992, -1.3416123390197754, 0.13984133303165436, 0.43040338158607483, -0.5588451623916626, -0.272504061460495, -0.6167787313461304, -0.11988294869661331, -1.3602426052093506, -0.945042073726654, -0.8792372345924377, -0.020984122529625893, 0.6616271734237671, -1.5229853391647339, 0.32758721709251404, 0.9598925113677979, -1.3961480855941772, 0.07414960116147995, 0.4627076983451843, -1.607606291770935, -0.2701992392539978, -1.2757964134216309, 1.5566531419754028, -0.030643846839666367, -0.03216054290533066, 0.18140672147274017, 0.6325477957725525, -0.9557703733444214, -1.357481598854065, -0.6582772731781006, 0.23560455441474915, 0.8833414316177368, 0.9673000574111938, -0.4287685751914978, 1.246781826019287, 1.0405534505844116, -0.8495060801506042, -0.6080679297447205, 0.15687815845012665, -1.0468999147415161, 0.5808387994766235, 0.22291123867034912, 0.1998300999403, 0.20388686656951904, 1.1699297428131104, 0.31060725450515747, 1.2345633506774902, 0.24783524870872498, 0.9884822368621826, -0.9889090657234192, -0.6905050873756409, -0.1682056039571762, 0.5721977949142456, -1.4590911865234375, -1.344221591949463, -0.17662836611270905, -0.8422954082489014, -0.8720694780349731, 0.6875048875808716, 0.468600869178772, -0.29717808961868286, 0.4505036771297455, -0.3565726578235626, 0.5957347750663757, -0.5679238438606262, 0.36896440386772156, -0.16046357154846191, -0.4259026050567627, -0.314787358045578, 0.23775869607925415, -0.13212712109088898, -1.0563921928405762, 0.22726784646511078, -0.21258646249771118, 0.43681198358535767, -0.3643760681152344, 0.9410406947135925, 1.0715736150741577, 0.5488640666007996, -0.26743853092193604, 1.3162517547607422, 1.3982576131820679, -0.03836870566010475, -0.1872359663248062, 0.814820408821106, 0.509753942489624, 0.768521785736084, -0.7204880714416504, -0.12821219861507416, -1.011518955230713, 0.7026308178901672, 0.5050060153007507, 0.24486373364925385, -0.05056528002023697, 0.0544915497303009, -0.12523813545703888, 0.17313963174819946, 0.5205854177474976, -1.1925253868103027, 0.12609200179576874, 0.983284592628479, 0.051209427416324615, -0.11633514612913132, 0.09831403940916061, 0.7051864266395569, 0.22666507959365845, -0.5739220380783081, 0.5311790108680725, 0.968930721282959, -0.9394833445549011, 0.4768018424510956, 0.041474226862192154, -0.19579121470451355, 0.193698912858963, -0.5787867903709412, -1.0476593971252441, -0.11306217312812805, -0.5519726872444153, -0.7485575079917908, 0.6102635860443115, -0.9818041324615479, -1.2752563953399658, 0.016918767243623734, -0.08363431692123413, -0.49797818064689636, -0.07990339398384094, 0.0737743228673935, 0.1138148233294487, 0.9072331786155701, 0.8419924974441528, -0.3928593099117279, 1.3123260736465454, 0.2579287886619568, -0.20670375227928162, -0.840013861656189, -0.510047972202301, 0.3029838800430298, -0.5252906084060669, -0.17613661289215088, 0.6152767539024353, 0.2730642855167389, 0.4264106750488281, -0.10901393741369247, 0.20321249961853027, -0.02613331377506256, 0.3865772783756256, 0.3827623426914215, -0.35024744272232056, -0.07350252568721771, 0.24549318850040436, 0.48904454708099365, -0.22958187758922577, -0.3687293231487274, -0.35881054401397705, 0.29008811712265015, -0.5874639749526978, 0.33941149711608887, -0.626034677028656, 1.1880614757537842, 0.4938359260559082, -0.3051072359085083, -0.6594597697257996, -0.653170645236969, 0.5531207323074341, -0.5670992732048035, 0.9048628211021423, -0.20669645071029663, -0.019692618399858475, -0.3180420994758606, -1.0417417287826538, 0.7642834186553955, 0.5779191255569458, -0.12159989774227142, -0.0037934044376015663, -1.2632064819335938, -0.41582420468330383, -0.46182867884635925, 0.717191219329834, 0.9226292967796326, 0.15292513370513916, 0.12685425579547882, -0.2537633776664734, -1.3269237279891968, 0.5053715109825134, -0.3277422785758972, 0.4282628893852234, 0.28540122509002686, 1.5336966514587402, 1.6879991292953491, 0.5692395567893982, 0.5159778594970703, -0.12402727454900742, 0.7566080093383789, -0.16173724830150604, -0.6294638514518738, -0.45296141505241394, -0.402966171503067, 0.7261004447937012], [-0.5504437685012817, 1.6988457441329956, -2.4347567558288574, -0.09955545514822006, 0.9236358404159546, 0.34286391735076904, 1.1964350938796997, -0.3242260217666626, -0.22195957601070404, -0.7027676701545715, -0.1476317197084427, 0.3379792273044586, 0.2751501500606537, 1.1706074476242065, 0.9123806357383728, 0.897379457950592, 0.9562603831291199, -0.13769812881946564, 0.5283569693565369, 1.6610535383224487, -0.9517268538475037, -0.9164197444915771, -0.10789318382740021, -0.08491668105125427, -0.7345659732818604, -0.11060842871665955, -1.8143551349639893, -0.5817765593528748, -0.9156638979911804, -0.9867561459541321, 0.21527370810508728, -0.295510858297348, -0.49505600333213806, 0.260782927274704, -1.3040486574172974, -0.47153759002685547, 0.3287571370601654, 0.42163917422294617, 0.1567041575908661, 1.0629537105560303, 1.7504345178604126, 0.18072117865085602, -0.4136602580547333, -1.3577938079833984, 0.07841046899557114, -0.6107240319252014, 1.6713573932647705, -0.5535105466842651, -0.17470411956310272, -1.0064283609390259, 0.6623156666755676, -0.9049625396728516, 0.3650875687599182, 0.3475257158279419, 0.8119980096817017, 0.1426817625761032, -0.10406515002250671, -0.037887219339609146, 0.7338320016860962, -0.39071157574653625, 0.27867403626441956, 0.8095948100090027, -0.3059232831001282, 1.36448335647583, -0.34816473722457886, 0.07969595491886139, -0.8839495778083801, 1.078170657157898, -0.15081210434436798, -0.700598418712616, 1.1580523252487183, -0.3947907090187073, -0.2040833681821823, -0.271232932806015, -1.40916907787323, 0.10330571234226227, 0.18250393867492676, 0.3929603397846222, 0.7761706709861755, 0.22314518690109253, 0.06158037111163139, -0.02229228802025318, 0.914658784866333, -0.7737895250320435, 0.0020392099395394325, -0.2217862755060196, 0.8373197913169861, -0.46396276354789734, -0.6739827990531921, 1.217921495437622, 0.8514751195907593, -0.33418914675712585, 1.0842992067337036, -0.9585481286048889, -0.21167123317718506, -0.9172548055648804, -0.2629491984844208, -0.3602893352508545, -0.46294209361076355, -0.7801081538200378, -0.3576008677482605, -0.636303186416626, 0.1705806702375412, -0.4616509974002838, -0.6844292283058167, 0.9141449928283691, 0.43281108140945435, 0.07235179841518402, -0.021181747317314148, -0.028456728905439377, -0.2196047306060791, -0.03056037798523903, -1.2211273908615112, -1.1706455945968628, -0.7161030173301697, 0.806367039680481, 1.2175956964492798, 0.3830437958240509, 0.5981156229972839, 0.7160210013389587, -0.16160069406032562, -0.11418352276086807, -0.004570509307086468, 0.14294150471687317, 0.5889280438423157, 0.07568424940109253, -0.5264231562614441, -0.23634928464889526, 0.033398646861314774, -0.31840839982032776, -0.4152161478996277, -0.28199535608291626, -0.2729857563972473, 0.5328395962715149, -0.5872698426246643, 1.8781616687774658, 0.1683129221200943, -0.5240161418914795, -0.13347628712654114, -0.08621957153081894, 0.6018090844154358, -0.2921738922595978, 0.18594543635845184, -1.2398982048034668, -0.4967271089553833, -0.25572243332862854, -0.10160931944847107, -0.01303035020828247, -0.5416425466537476, 0.3281210958957672, -0.6687162518501282, 0.37599658966064453, 0.7230812907218933, 1.0529108047485352, 0.02942262962460518, -0.5032589435577393, 0.7480480074882507, 0.06699782609939575, 0.8083342909812927, -0.31616246700286865, 0.5590718984603882, -0.5019392371177673, -1.3005530834197998, 0.8017234802246094, 0.32404330372810364, -0.11592186242341995, 0.41480860114097595, 1.6034148931503296, -0.27851295471191406, 0.8374485373497009, -0.7128769159317017, 0.45527133345603943, -1.5822551250457764, 0.5227130055427551, 0.02374323643743992, -0.9671816825866699, 1.3527302742004395, -0.48090028762817383, -1.3786026239395142, -0.7508375644683838, 0.9525460600852966, -0.7960389852523804, -0.007741612382233143, -0.5131558179855347, 0.628607451915741, -0.351875364780426, 0.3109595775604248, -0.5331376194953918, 0.36444079875946045, -0.4015820026397705, -0.7770418524742126, -0.5665847063064575, -0.7373068332672119, 0.11921676993370056, -0.28282877802848816, -0.46478942036628723, 0.8873735070228577, -1.1105695962905884, -0.28044161200523376, 0.25529512763023376, 0.26033368706703186, -0.05829012393951416, -0.36041539907455444, 0.424457848072052, -0.4702688753604889, 0.47449058294296265, -0.5737406015396118, 0.3714025020599365, -0.748053789138794, -0.4163599908351898, 0.8529875874519348, 0.01703258790075779, -0.7336828708648682, 0.7715087532997131, -0.1740194857120514, -0.7774103283882141, 0.8174789547920227, 0.16705870628356934, -0.7474225759506226, -0.020482895895838737, 0.22257238626480103, 0.06401965022087097, -0.4049835503101349, -0.032326262444257736, 0.38679584860801697, -0.28900834918022156, -0.9286813735961914, -0.6057255864143372, -0.804553747177124, 0.41732102632522583, -1.2400627136230469, -1.2616387605667114, 0.31008732318878174, 0.6540287137031555, -0.4803992211818695, -0.1919018030166626, 0.1650664061307907, 0.3053862750530243, 0.9207254648208618, 0.5569131374359131, -0.1323503702878952, 0.40029585361480713, -0.4189484119415283, 0.27404317259788513, -0.5544177889823914, 0.3322477340698242, 0.40416035056114197, -0.6472058892250061, -0.09809400886297226, 1.2337186336517334, 0.9730891585350037, 0.5310215950012207, 0.7901497483253479, -0.36719053983688354, -0.04480467736721039, -0.8736417293548584, -0.7380337119102478, 0.2337130457162857, -0.25961488485336304, 1.584839105606079, 0.3398831784725189, -0.4510171115398407, -0.28286290168762207, -0.43357518315315247, -0.3472122251987457, -0.3451229929924011, -0.446447491645813, -0.6038488149642944, -0.5792033076286316, 0.012421153485774994, -0.9225979447364807, 0.27119752764701843, 0.2006719559431076, 0.22139237821102142, -0.16029150784015656, -0.3298788368701935, 0.09792481362819672, 0.21172770857810974, 0.17854885756969452, 1.2759450674057007, -0.38528263568878174, -1.3291338682174683, -0.3350982367992401, -0.46447402238845825, 0.48898327350616455, -0.48686710000038147, -0.14161449670791626, 0.20840580761432648, 0.697212815284729, -1.1400986909866333, 0.09326688200235367, -0.10611899942159653, -0.37185850739479065, -0.19046345353126526, 0.2987547516822815, 0.740350067615509, 0.6847918033599854, -0.42270374298095703, -0.4507676064968109, -0.0948338508605957, 0.202593594789505, 1.0718934535980225, 0.8611963987350464, 1.2582298517227173, -0.48036855459213257, 0.25559869408607483, 0.3058697283267975, 0.17619436979293823, -0.2571813464164734, -0.995954155921936, -0.7107735276222229, -0.7075791358947754, -0.4871407449245453, 0.034369051456451416, 0.6050713658332825, 1.3959531784057617, -0.3638356029987335, 1.2651845216751099, 0.7017500996589661, -0.8636437654495239, -1.3522135019302368, 0.15514080226421356, 0.44812825322151184, -0.0015246113762259483, 0.457279235124588, 1.2386459112167358, -0.2111176699399948, -0.7755663990974426, -0.010411020368337631, -0.8901336193084717, 0.6124408841133118, 0.20402821898460388, -0.22150753438472748, -1.5317378044128418, -0.5747197270393372, -0.3692266643047333, 1.7573490142822266, 0.3921319842338562, -0.3625742197036743, -0.14614172279834747, 0.022888433188199997, 0.5708303451538086, 0.12190134078264236, -0.585429310798645, 0.6022192239761353, 0.008900880813598633, -0.6567378044128418, 0.08792215585708618, 0.8175268173217773, 0.5620852112770081, -0.7445506453514099, -0.895983874797821, -0.32014572620391846, -0.34423545002937317, -0.9321059584617615, 0.24509869515895844, 0.16872327029705048, 0.7525082230567932, -0.7413657903671265, -0.3797591030597687, 0.7762516736984253, 0.09277883917093277, 0.23473377525806427, -1.4716757535934448, 0.33485162258148193, 0.47322750091552734, 1.2131224870681763, 0.19083328545093536, 0.1315062791109085, 0.636528730392456, 0.1435973346233368, -0.12811757624149323, 0.5326734781265259, 0.01566297747194767, 0.04217839986085892, -0.20871730148792267, -0.3666320741176605, 0.3200606405735016, -0.07722119987010956, -0.44894540309906006, 0.16593687236309052, 0.7762595415115356, -1.1411840915679932, -0.5408492684364319, 0.6880658864974976, 0.5477315187454224, -0.5844806432723999, -0.7499300241470337, 0.7050067782402039, 0.46284881234169006, -1.114670753479004, 0.32452264428138733, -0.5909906625747681, -0.1840941607952118, 0.3131815195083618, -1.4361908435821533, -0.2429606169462204, -0.1328931450843811, 0.4138181209564209, 0.7469090223312378, -1.2263190746307373, -0.3168322443962097, 0.0016717934049665928, 0.28508588671684265, 0.9916803240776062, 0.16140389442443848, 0.6927906274795532, 0.29383185505867004, -0.2733875811100006, -0.38089999556541443, 0.14049378037452698, 1.7634669542312622, 0.1856893002986908, -0.04622581601142883, 0.28107109665870667, 0.49240803718566895, -0.2742401957511902, -0.06437642872333527, 0.08267434686422348, -0.22822542488574982, -0.5071195960044861, 0.190407395362854, -0.09172419458627701, 0.18111003935337067, 1.3471488952636719, 0.23998531699180603, 0.4507794678211212, 0.3142945170402527, -0.5730406641960144, -0.7904426455497742, 0.15963563323020935, 0.23615524172782898, -0.4156394898891449, -0.8682800531387329, 0.05225125700235367, 0.20516633987426758, 0.44922956824302673, 0.603977620601654, 0.4823031723499298, 1.869663953781128, 0.11646996438503265, -0.21538382768630981, -0.0170203298330307, 0.34672632813453674, 0.9566695094108582, 1.2901005744934082, 0.41261985898017883, -0.03609290346503258, -1.1297932863235474, 0.8507664203643799, -0.500283420085907, 0.009566066786646843, 0.7507582306861877, 0.10096427798271179, 1.0199041366577148, -0.9118465185165405, -0.4770265221595764, 0.5063832998275757, -0.007537243887782097, -0.07822060585021973, 0.17997244000434875, -0.4053542912006378, -0.2759513854980469, 0.23146240413188934, 0.12871888279914856, 0.45255374908447266, 0.8782485127449036, -0.6151639819145203, 0.45780959725379944, 0.16609813272953033, -0.5438476800918579, 0.5198086500167847, -0.529620349407196, 0.6460844874382019, -0.27046361565589905, -0.22240778803825378, 0.03580596297979355, 0.7994433045387268, 0.015012710355222225, 1.5441277027130127, -0.4387739598751068, -0.7679281234741211, 0.39429739117622375, -0.4565463066101074, 0.49148446321487427, -0.7147799730300903, 0.3334307372570038, 0.16059240698814392, -0.0837029367685318, -0.22624339163303375, -0.26316338777542114, -0.8718962669372559, -0.9581984877586365, -0.7628484964370728, -0.7899670600891113, 0.33991119265556335, 0.9752700328826904, 1.206581473350525, 1.0247141122817993, 0.5960108041763306, 0.7144023776054382, 0.6207512617111206, -0.7080824971199036, -0.5608307123184204, -0.14724406599998474, -0.7662475109100342, 0.30566754937171936, -1.3151988983154297, -0.301540732383728, 0.679844081401825, 0.8192260265350342, -0.013321724720299244, 0.6369622349739075, 0.8421425819396973, 1.2717005014419556, -0.5058252811431885, -0.9130959510803223, 0.6090035438537598, -0.42022502422332764, 0.7784875631332397, 0.6034804582595825, -0.8740461468696594, -0.4821685254573822, -1.1314469575881958, -1.4184004068374634, 1.1445306539535522, 0.020984752103686333, -0.2161659300327301, 1.195000171661377, 0.668705940246582, -0.5336891412734985, 0.7485933899879456, -0.08602040261030197, 0.30007311701774597, 0.2849707305431366, -0.15334369242191315, -0.4138699173927307, 0.5529584288597107, 0.2746056616306305, 0.7050802111625671, -0.11680078506469727, 0.9495900869369507, -0.6123939156532288, -0.0511857308447361, 0.5849425196647644, 0.18850725889205933, 0.366794228553772, 1.3086202144622803, 0.728536069393158, -0.24457786977291107, 0.5363046526908875, -0.06781528890132904, -0.4582426846027374, -0.19637930393218994, 0.5344889760017395, -0.0740995705127716, -0.4929695725440979, -0.1376267820596695, 0.2886516749858856, -0.438800573348999, -0.23662438988685608, -0.8525302410125732, 0.558769166469574, 0.2904717028141022, 0.3264968991279602, 0.2828105688095093, -0.1729932576417923, -0.30374157428741455, -0.1727915108203888, 0.10709346830844879, 0.6321166753768921, -1.201332926750183, 0.10589326173067093, 0.20087899267673492, -0.5744897127151489, -0.11646297574043274, 0.4078391194343567, -0.5085281133651733, -0.945101797580719, -0.757643461227417, -0.8608863949775696, 0.1747441589832306, 0.4770706593990326, -0.7518993020057678, 0.8373271822929382, 0.2008899301290512, -1.5325531959533691, -0.0364542230963707, 0.1619102656841278, -1.2164652347564697, -0.6155609488487244, -1.323028564453125, 0.966626763343811, 0.6047762632369995, 0.402078777551651, -0.29514986276626587, 0.8271195888519287, -1.5960347652435303, -1.3415566682815552, -1.2116798162460327, -0.03814031928777695, 0.9474483132362366, 0.4258292019367218, -0.5363762974739075, 1.1480724811553955, -0.03082229383289814, -0.4549078345298767, -0.5774925351142883, 0.4462273418903351, -0.5761388540267944, 0.4799702763557434, -0.11946440488100052, 0.6181394457817078, -0.3621458411216736, 1.3071480989456177, 0.19965499639511108, 1.6381449699401855, 0.19250988960266113, 1.2445061206817627, -0.6907202005386353, 0.3157598376274109, -0.7905004620552063, 0.695820152759552, -1.2361822128295898, -0.3872195780277252, -0.055356938391923904, -1.0293117761611938, -0.7479600310325623, 0.5135972499847412, 0.7178340554237366, -0.9256037473678589, -0.6092715859413147, -0.9981293082237244, 0.5777417421340942, -0.8129792809486389, 0.29986900091171265, -0.5376174449920654, -0.4906492233276367, -0.035214588046073914, -0.05671007186174393, -0.23636631667613983, -0.8970663547515869, 0.1286071538925171, 0.7354360222816467, 0.03674684464931488, -0.5733070373535156, 0.9759699106216431, 1.020867109298706, 0.586301326751709, -1.3409051895141602, 1.466450572013855, 0.9388426542282104, -0.14439062774181366, -0.19991447031497955, 0.2899887263774872, 0.24870966374874115, 0.3832384943962097, -0.49500542879104614, -0.30376026034355164, -0.3763745427131653, 0.7558353543281555, -0.030981458723545074, 0.16042596101760864, -0.10441979020833969, 0.036605849862098694, -0.3224185109138489, -0.19108568131923676, 0.9434860944747925, -0.8989689350128174, 0.12261945754289627, 1.2693437337875366, -0.006271610036492348, -0.3464325964450836, -0.3026454746723175, 0.4701710343360901, -0.14513376355171204, -0.41036754846572876, 1.0700443983078003, 0.9217126965522766, -1.1109453439712524, 0.22074764966964722, 0.19524599611759186, 0.030648328363895416, 0.135538250207901, -0.2614927291870117, -1.4409860372543335, -0.5100566744804382, -0.20875991880893707, -1.1907442808151245, 0.5528069138526917, -1.241154670715332, -0.5978883504867554, 0.15648230910301208, 0.2952360510826111, -0.15484073758125305, -0.08348984271287918, 0.2064276933670044, -0.33008724451065063, -0.04120873287320137, 0.4939925968647003, -0.24721656739711761, 0.9556857347488403, 0.047906018793582916, 0.22730380296707153, -0.6024202108383179, -0.4273228943347931, 0.3663718104362488, 0.3721833825111389, -0.03347228094935417, -0.2300073802471161, 0.7444348335266113, -0.11378500610589981, -1.0071905851364136, 0.1524752527475357, 0.5805057287216187, 0.8348162174224854, -0.7125467658042908, -0.5287206768989563, 0.01111016608774662, 0.3026379346847534, 0.8490278720855713, -0.033945824950933456, -0.5035400986671448, -0.7923649549484253, 0.32146283984184265, -1.1829739809036255, 0.7913932800292969, -0.30255740880966187, 0.2532350718975067, 0.7935570478439331, -0.584807813167572, 0.153462752699852, 0.01788582094013691, 0.21010136604309082, -0.07162296772003174, 0.10756196081638336, 0.3868451416492462, -0.17841389775276184, 0.18389278650283813, -0.8639879822731018, 0.7157042622566223, 0.5731704235076904, -0.3295125365257263, -0.1996798813343048, -0.7642883062362671, -0.7882051467895508, -0.6414603590965271, 0.23672063648700714, 0.3828791677951813, 0.057707011699676514, 0.2574450969696045, 0.026418685913085938, -0.6606862545013428, 0.00016190065070986748, 0.4206637740135193, -0.6119818687438965, 0.3743831217288971, 1.4700182676315308, 1.0845836400985718, 0.19785867631435394, 0.4998818337917328, -0.6077418923377991, 0.23938484489917755, -0.259286105632782, -0.3503479063510895, 0.1384253054857254, -0.17287683486938477, 0.23879434168338776], [-0.26269057393074036, 2.0114192962646484, -2.2336983680725098, 0.4929974377155304, 0.6928521990776062, 0.3636435866355896, 1.491621494293213, -0.5336926579475403, 0.4684593081474304, -0.6953877210617065, -0.5014642477035522, -0.6642090082168579, 0.9079687595367432, 0.9542452692985535, 0.43884792923927307, 0.8040472865104675, 0.8979049921035767, -0.6204701066017151, 0.6565388441085815, 0.9153786897659302, -0.04164694622159004, -0.43873006105422974, 0.23863442242145538, 0.5939335823059082, -0.4104519188404083, 0.363055944442749, -0.703499436378479, -0.9149930477142334, -1.2014180421829224, -1.362367868423462, 0.5098375082015991, -0.32799679040908813, 0.2617669105529785, 0.107327900826931, -1.160182237625122, -0.016792774200439453, 1.2377567291259766, 1.011857032775879, 0.54903244972229, -0.2792036235332489, 1.9158673286437988, -0.4021987318992615, 0.003141420427709818, -1.7142643928527832, 0.34084951877593994, -0.19737836718559265, 1.2263822555541992, -1.2867348194122314, 0.11037658900022507, -0.5939464569091797, 0.5458009243011475, -0.2548089921474457, 0.6962236166000366, 0.6242616176605225, 0.7642725110054016, -0.19377441704273224, 0.2564209997653961, 0.1234837993979454, 0.5186502933502197, -0.1948477327823639, 1.3379642963409424, -0.16702833771705627, -0.16639673709869385, 0.526890218257904, 0.528293251991272, -0.6074504256248474, -0.2604891359806061, 0.2683236598968506, -0.4072893559932709, 0.23851189017295837, 0.6705740094184875, 0.16182848811149597, -0.8496447205543518, -0.17836865782737732, -1.4012296199798584, 0.6680701971054077, 0.5436201095581055, 0.7200532555580139, 0.414384663105011, 0.6665703058242798, -0.7430622577667236, -0.5872821807861328, 0.7042810916900635, -0.181522399187088, 0.4720442295074463, -0.12632428109645844, 0.023060154169797897, -0.29092341661453247, -0.5276744365692139, 1.511279821395874, 0.3041727542877197, 0.3873533308506012, 0.7182657122612, -0.2967642545700073, -0.16927766799926758, -0.01007022149860859, 0.11829552054405212, -0.5794825553894043, -0.7536958456039429, -0.8282163143157959, -0.059288427233695984, -0.7268345952033997, 0.4687325954437256, 0.5678189396858215, -0.21822497248649597, 0.791469931602478, 0.5359109044075012, -0.2423679232597351, -0.8424282073974609, -0.22770872712135315, -0.2877729535102844, 0.29914653301239014, -0.9612720012664795, -1.5803552865982056, -0.6913624405860901, 1.095920205116272, 1.5164291858673096, -0.024105418473482132, 0.6817717552185059, 0.6143604516983032, -0.33906981348991394, -0.3932625651359558, 0.35416027903556824, 0.47609376907348633, 0.5570744276046753, 0.8954012393951416, -0.9800295233726501, -1.1690316200256348, 0.6085212230682373, 0.0840839296579361, 0.7517768740653992, 0.16701993346214294, -0.5617154836654663, 0.9189208745956421, -0.7236605882644653, 1.152702808380127, -0.7122853398323059, -0.4367685317993164, 0.16812396049499512, -0.561413049697876, 0.4990890622138977, -0.5374579429626465, -0.37514275312423706, -0.7236433625221252, -0.04498446732759476, -0.7692813873291016, 0.4493982195854187, -0.2609812915325165, -0.7759830951690674, 0.20168116688728333, -1.243154764175415, 0.03669073432683945, 0.5598572492599487, 0.8554090261459351, 0.4597587585449219, 0.010767445899546146, 0.542873203754425, 0.45654749870300293, 0.3651176691055298, 0.25362104177474976, 1.1331787109375, -0.03313804417848587, -0.9156506061553955, 0.782070517539978, 0.22695326805114746, -0.02498757839202881, 1.160386323928833, 0.979955792427063, -0.11647126823663712, 1.0946993827819824, 0.0822807103395462, -0.5901702642440796, -0.31976190209388733, 1.134545922279358, 0.456643283367157, -0.9332370758056641, 1.412773847579956, -0.39645814895629883, -2.1313581466674805, -1.348833680152893, 0.8572283387184143, -0.35299593210220337, 0.08373171836137772, 0.020030293613672256, -0.05336323380470276, -0.9692203998565674, 0.5827077627182007, 0.2571190595626831, -0.922582745552063, -0.7166142463684082, -0.23030471801757812, 0.027305006980895996, -1.023283839225769, 0.021501077339053154, -0.376489520072937, -0.6680989265441895, 0.3850119113922119, -1.4471001625061035, -0.7181569337844849, 0.45343393087387085, -0.07897671312093735, -0.37234580516815186, -0.5979475378990173, 0.27567827701568604, -0.41234371066093445, 1.0653630495071411, -1.5178043842315674, 0.9889734983444214, -0.3510042428970337, 0.562024712562561, 0.8564882278442383, -0.07798640429973602, -1.1416232585906982, 0.5673927068710327, 0.13341644406318665, -1.712676763534546, 0.6617212295532227, 0.5069401860237122, -0.5126201510429382, 0.03879540041089058, -0.33995527029037476, -0.2381402552127838, -0.20595629513263702, 0.4376299977302551, 0.5732395648956299, 0.2999749183654785, -0.6179823279380798, -0.7602820992469788, -0.5855077505111694, 0.09390889108181, -0.5471364259719849, -1.0863393545150757, 0.6762786507606506, 0.5127570629119873, -0.6575967073440552, 0.11385641992092133, 0.2628142237663269, 0.9297724366188049, 0.23842522501945496, 1.6646445989608765, 0.24326887726783752, 0.4703977704048157, 0.38419467210769653, -0.21149605512619019, -0.7294315099716187, 0.9872545003890991, 0.6088828444480896, 0.12560918927192688, 0.08354247361421585, 1.544917106628418, 0.9481974244117737, -0.15398208796977997, 0.5374734997749329, -0.30019059777259827, 0.03424731642007828, -0.5352964997291565, -0.9765655994415283, 0.033719491213560104, -0.7397266626358032, 1.8434094190597534, 0.9310778975486755, -1.2165923118591309, -0.23742039501667023, -0.0973464623093605, -0.19457823038101196, 0.07834912836551666, -0.3944268822669983, -0.5132687091827393, -0.352963924407959, 0.44035351276397705, -0.13941314816474915, 0.3098851442337036, -0.0067077623680233955, 0.7887827157974243, -0.8618192672729492, -0.9172731637954712, -0.5157670974731445, 0.03567681089043617, 0.19271983206272125, 1.2079596519470215, 0.38298654556274414, -1.5997685194015503, -0.4073837399482727, 0.3194635510444641, 1.0650583505630493, 0.17898809909820557, 0.2806265652179718, 0.36520206928253174, 0.19696828722953796, -0.30562102794647217, 0.12868425250053406, 0.3082641363143921, 0.13601332902908325, 0.4948658049106598, -0.3599897027015686, 0.6268380880355835, 0.7479705810546875, -1.9244191646575928, -0.5736370086669922, 0.05416953191161156, 0.5655966997146606, 1.8464305400848389, 0.7616503238677979, 1.050661563873291, -0.17166171967983246, -0.013963605277240276, -0.6606816649436951, -0.7489047646522522, -1.28086519241333, -0.6414490938186646, -0.7100054025650024, -0.8051431775093079, -0.11534818261861801, 0.3308711647987366, -0.1252979040145874, 0.29994073510169983, -0.366788387298584, 0.4449195861816406, 1.807259440422058, -0.2906961441040039, -0.6291738152503967, -0.3849119246006012, -0.32694947719573975, -0.6559039354324341, 0.5653226971626282, 1.2212014198303223, -1.1476718187332153, -0.6899683475494385, 0.6188065409660339, 0.09340991079807281, 0.4588963985443115, 0.5139611959457397, -0.09632362425327301, -1.2984614372253418, -1.1991820335388184, 0.02246735990047455, 1.543149471282959, -0.11128281056880951, -0.4544670581817627, -0.6735665798187256, 0.2882290780544281, 0.06685100495815277, -0.4539496600627899, -0.28703802824020386, 0.6430302262306213, -0.9718316793441772, -0.24039748311042786, -0.48293426632881165, 0.2983151376247406, 0.4081823229789734, -0.8059329986572266, -0.6595480442047119, -0.6585550308227539, -0.5005329847335815, -0.36671361327171326, 0.665229320526123, 0.0683252140879631, 1.6246418952941895, -0.2122282087802887, 0.19425857067108154, 0.9030159711837769, 0.7064982652664185, -0.3999911844730377, -0.7417800426483154, 0.448916494846344, 0.7999135851860046, 0.7578120231628418, -0.09655455499887466, 0.29192453622817993, 0.5272811651229858, 0.5097281336784363, 0.22246187925338745, 0.5474591851234436, 1.4145066738128662, 0.30490177869796753, 0.15792900323867798, -1.1957672834396362, -0.09061700105667114, -0.20761840045452118, -0.9072245359420776, 0.3103591799736023, 0.7179979681968689, -0.41357529163360596, -0.5353257656097412, 1.187492847442627, 0.1025998443365097, -0.5551974177360535, -0.10467939078807831, 0.014925525523722172, 1.093205213546753, 0.10820549726486206, -0.030265217646956444, -0.28525441884994507, -0.08461356163024902, 0.31014344096183777, -1.19462251663208, -0.22996553778648376, 0.09453420341014862, 0.3955349326133728, 1.0817584991455078, -0.45719271898269653, 0.07088581472635269, -1.0951324701309204, -0.00497552752494812, 0.5417134761810303, -0.3889732360839844, 0.35304439067840576, -0.08185270428657532, -0.41778379678726196, -0.11441948264837265, 0.5820696949958801, 1.3497884273529053, -0.5046313405036926, -0.31583866477012634, -0.06516920775175095, -0.3127886652946472, -0.2433624267578125, -0.7980043888092041, -0.5441420078277588, 0.23852887749671936, -0.8647211194038391, -0.14836350083351135, -0.04748857766389847, -0.5078795552253723, 1.4456119537353516, 0.41131722927093506, 0.3820263147354126, 0.05804537981748581, -0.25519609451293945, -0.6375430226325989, 0.06576407700777054, 0.26777973771095276, -0.10134708881378174, -0.42008620500564575, -0.37401172518730164, 0.5327736139297485, -0.4030492901802063, 0.42235565185546875, 0.4336407780647278, 0.6585126519203186, -0.15215378999710083, 0.3402481973171234, 0.05102530121803284, 0.6321139931678772, 1.1357605457305908, 0.9784810543060303, 0.6010862588882446, -0.25714921951293945, -0.29162442684173584, 0.4238853454589844, -0.940781831741333, 0.3523573577404022, 0.9756699800491333, 0.5146024823188782, 0.8901586532592773, -1.4842360019683838, -0.8927700519561768, 0.7749748229980469, 0.505622386932373, 0.6231623291969299, 1.0429720878601074, -0.44319793581962585, 0.5473634004592896, 0.43196922540664673, 0.1984228491783142, 0.03968214616179466, 0.1667291522026062, -0.07857357710599899, -0.5052698254585266, 0.7268751263618469, -1.138807773590088, 0.49565669894218445, -0.6466060876846313, -0.682146430015564, -0.4496658444404602, -0.9018077850341797, 0.06151410937309265, 0.44083887338638306, 0.6514855623245239, 0.911104679107666, -0.5127918720245361, -0.8086066842079163, -0.20865553617477417, -0.5726895928382874, 0.474854439496994, -0.6245242357254028, -0.12042311578989029, -1.1166762113571167, -0.1970173418521881, -0.5050241947174072, 0.565375566482544, -0.3600369095802307, -0.8022246360778809, -0.6725780963897705, -1.3095595836639404, -0.04646521434187889, 1.0824575424194336, 1.5022475719451904, 0.6873831748962402, -0.24990767240524292, 0.37346935272216797, -0.2734885811805725, -1.189269781112671, 0.142356276512146, 0.7872583866119385, 0.21416157484054565, -0.037625752389431, -1.027363657951355, -0.43616968393325806, -0.002361040562391281, 0.004517490044236183, -0.23113776743412018, 0.9400039911270142, 0.7231108546257019, 0.8489489555358887, -0.3742603063583374, -0.678591787815094, -0.06410536170005798, -0.5805956125259399, 0.7174372673034668, 0.7786324620246887, -0.852377712726593, -0.5462737083435059, -0.6342540383338928, -0.8559633493423462, 0.8455460071563721, -0.8122730255126953, -0.8621054887771606, 1.0793702602386475, 0.26369673013687134, 0.13317489624023438, 0.43068528175354004, -0.8127452731132507, 0.6316298842430115, 0.016963263973593712, -0.25353896617889404, -1.3015968799591064, 0.09746788442134857, 0.43248414993286133, -0.14706745743751526, -0.4206162095069885, 0.3716297149658203, -0.1017417311668396, 0.05605969950556755, -0.4918431043624878, 0.3191552460193634, 0.5933464765548706, 0.9977996349334717, -0.004427550360560417, -0.6514534950256348, 0.2421913892030716, -0.6656690239906311, -0.8186299800872803, -0.06654669344425201, 0.6612812876701355, 0.22170360386371613, -0.8193974494934082, -0.07570675760507584, -0.20454207062721252, -0.4672602415084839, -0.30332744121551514, -0.43303075432777405, 0.5719465017318726, 0.4846835434436798, 0.561267077922821, -0.25568825006484985, -0.1257420927286148, -0.4288538992404938, -0.763357400894165, 0.2044440507888794, 0.5988982915878296, -1.3184314966201782, -0.26289260387420654, 0.4825974106788635, -0.744732677936554, -1.0398002862930298, -0.025688057765364647, 0.10788464546203613, -1.4252009391784668, -0.9772909283638, -1.2436251640319824, 0.7232221364974976, 0.427232563495636, -0.9106371402740479, 0.6702471971511841, 0.5538550615310669, -1.5415964126586914, 0.4775247573852539, -0.5404620170593262, -1.4360486268997192, 0.17468306422233582, -0.8880102634429932, 0.6353490352630615, -0.3064448833465576, -0.3013104200363159, 0.010254180058836937, 0.999243974685669, -1.4851853847503662, -1.279937982559204, -0.9238395094871521, -0.4377080798149109, 1.5659878253936768, 0.46344733238220215, -0.6017889380455017, 1.669480800628662, 0.9765470623970032, -0.4136342406272888, -0.07313628494739532, 0.33301445841789246, -0.6679912209510803, -0.09925080090761185, 0.5788660049438477, 0.6094176769256592, 0.6274701356887817, 1.1108403205871582, 0.31605714559555054, 0.9744268655776978, 0.167551651597023, 1.088139295578003, -0.8186361789703369, -0.7822808027267456, 0.4050236642360687, 0.9482909440994263, -0.7633578777313232, -0.4900081157684326, -0.6162055730819702, -0.5087133646011353, -1.1487654447555542, -0.2494555413722992, 0.6232054233551025, -0.5316593050956726, 0.5059218406677246, -0.46667641401290894, 0.811269998550415, -0.6045956015586853, 0.4088911712169647, 0.35318055748939514, -0.15030185878276825, -0.4096721410751343, 0.22459127008914948, -0.32819753885269165, -1.590163230895996, 0.47039973735809326, 0.3027569651603699, -0.29890328645706177, -0.18418382108211517, 0.07116229832172394, 0.3494841158390045, 0.30574703216552734, -0.42006707191467285, 1.959320068359375, 0.6042090058326721, -0.6981472373008728, -0.1137780100107193, 0.40550678968429565, -0.10263322293758392, 0.4044750928878784, -0.3431853652000427, -0.3488963842391968, -0.7827485799789429, 0.9006261229515076, 0.2958064675331116, 0.17868191003799438, -0.3764718174934387, 0.5081087350845337, -0.5308345556259155, 0.2790171205997467, 1.3510868549346924, -0.9979552030563354, -0.25343579053878784, 1.4925488233566284, 0.11515539884567261, -0.6519705057144165, 0.4761820435523987, 0.40391770005226135, -0.1075267642736435, -0.7067677974700928, 0.33249062299728394, 0.7960066795349121, -0.8441070318222046, 0.5632385015487671, -0.4890797436237335, -0.4522758722305298, 0.06478658318519592, -0.6285920739173889, -1.513300895690918, -0.02899783104658127, -0.2703174352645874, -0.8868210911750793, 1.011546015739441, -1.2070021629333496, -0.40099868178367615, 0.7622008323669434, -0.15376709401607513, -0.03395049646496773, -0.162305548787117, -0.050955332815647125, 0.027334697544574738, -0.19035673141479492, 1.1491109132766724, -0.38267815113067627, 1.4485032558441162, -0.021464388817548752, -0.023627422749996185, -1.134710431098938, -0.1095079705119133, 0.2388937920331955, -0.05797616019845009, -0.3349906802177429, 0.10004738718271255, 1.0610406398773193, -0.08137556910514832, -0.6003401279449463, 0.19261473417282104, -0.15207186341285706, 0.39023858308792114, 0.10568058490753174, -0.14575359225273132, 0.5054386854171753, 0.7049840092658997, 0.5127711296081543, -0.6231209635734558, -0.4235053062438965, -0.6322464346885681, 0.3018656373023987, -0.5205928087234497, -0.058527104556560516, 0.08264818787574768, 0.9780523777008057, 0.503089189529419, -0.24727141857147217, -0.8233237266540527, -1.032639741897583, 0.4773940443992615, 0.19891777634620667, -0.18938995897769928, -0.36934906244277954, -0.08274690806865692, -0.5103470683097839, -0.7747089862823486, 0.05011153966188431, 0.47865891456604004, -0.2244039922952652, 0.5621212720870972, -1.1973400115966797, -0.8326431512832642, -0.4847605526447296, 0.41086632013320923, 1.4962728023529053, 0.6089668869972229, 0.30829280614852905, 0.39090055227279663, -1.3175266981124878, -0.12171228229999542, 0.07084901630878448, 0.8511179089546204, 0.3987749516963959, 1.3806633949279785, 2.122384786605835, 0.29429003596305847, 0.07181181758642197, -0.2171260118484497, 0.48199158906936646, -0.6847634315490723, -0.3570733070373535, -0.6663975715637207, -0.5373631715774536, -0.7365257740020752], [0.16929972171783447, 1.4101616144180298, -3.0822412967681885, -0.3959779143333435, 0.3171832859516144, 0.4027473032474518, 1.1384221315383911, -1.129006266593933, 0.10062458366155624, -0.970025360584259, -0.11561718583106995, -0.21165087819099426, 0.3884228765964508, 1.2441200017929077, 0.7955259680747986, 0.9754440784454346, 1.107479453086853, -0.6606162786483765, 0.45860496163368225, 0.21131333708763123, 0.08712107688188553, -0.8118746280670166, 0.5310503244400024, 0.7717674970626831, -0.6558167338371277, -0.29048678278923035, -0.9122682213783264, -0.37997502088546753, -1.2976000308990479, -1.5631163120269775, 0.6094422936439514, -0.6751211285591125, -0.5918026566505432, -0.9823375940322876, -1.5797522068023682, -0.786465048789978, 0.8719318509101868, 0.5876774787902832, 0.4215773344039917, -0.09860426187515259, 1.19271981716156, -0.51641845703125, 0.19555895030498505, -1.1168158054351807, 0.8702453374862671, -0.7299513816833496, 1.76693856716156, -1.1473180055618286, -0.2873325049877167, -0.4113541543483734, 0.3810955882072449, -0.5424908995628357, 0.2243167757987976, 0.30924543738365173, 0.5441774725914001, -0.3165150582790375, 1.1570676565170288, 0.5833053588867188, 0.33819580078125, -0.3861781656742096, 1.3117581605911255, -0.40788090229034424, 0.2664754390716553, 0.874168336391449, -0.0937063992023468, -0.584723949432373, -0.34747952222824097, 0.22970591485500336, -0.05410327389836311, -0.08111545443534851, 1.2916240692138672, -0.32804960012435913, -0.3910471200942993, -0.25868117809295654, -1.8146042823791504, 0.7787150740623474, 0.9474179148674011, 0.3403931260108948, -0.18741676211357117, 0.5077787041664124, 0.21403953433036804, -0.7118709087371826, -0.2062217742204666, -0.4002017080783844, 0.8269836902618408, 0.4009975790977478, 1.091957688331604, -0.3989965617656708, -1.1852951049804688, 1.2334119081497192, 0.32665756344795227, -0.5833746790885925, 1.0540999174118042, -0.39210015535354614, -0.0711640864610672, -0.4292597472667694, 0.1164344772696495, -0.254478394985199, -0.911028265953064, -1.0211910009384155, -0.6210671067237854, -0.9725121855735779, 0.051263172179460526, -0.0667872279882431, 0.38428178429603577, 1.1864739656448364, 0.7891483902931213, -0.5658130645751953, -0.5436538457870483, -0.4670662581920624, -0.30728498101234436, 0.40750303864479065, -0.5917841792106628, -0.8023138046264648, -0.828959584236145, 1.5297750234603882, 1.8529456853866577, -0.4558458626270294, 0.6939961314201355, 1.5220916271209717, -0.47900885343551636, -0.6383665204048157, -0.40283605456352234, 0.85679692029953, 0.9896119832992554, 1.046937346458435, -0.9882315993309021, -0.6583964824676514, 0.561352550983429, -0.18184687197208405, 0.7386539578437805, -0.07988999783992767, -0.4461783170700073, 1.098158359527588, -1.0249496698379517, 0.6498847007751465, -0.12462998181581497, 0.04135879874229431, 0.8857417106628418, 0.36782342195510864, 0.15522170066833496, -0.8186819553375244, -0.3256031274795532, -0.6230951547622681, 0.16083136200904846, 0.34408146142959595, -0.07264763861894608, -0.04757281020283699, -0.5721502304077148, -0.11791862547397614, -0.5346806049346924, 0.5083780288696289, 0.4152297377586365, 1.065128207206726, 0.2239614576101303, -0.20107485353946686, 0.009750776924192905, 0.1592094451189041, 0.8649749159812927, 0.20751558244228363, 1.445747971534729, -0.08872710168361664, -0.4488685429096222, 0.5498854517936707, 0.5133881568908691, -0.44514986872673035, 0.136947900056839, 0.7387660145759583, 0.18465514481067657, 0.6556522250175476, -0.8208406567573547, -0.6932047009468079, -0.5415316820144653, 0.15434181690216064, 0.4768821895122528, -0.33837562799453735, 1.7054173946380615, -0.7487560510635376, -1.8281599283218384, -1.1038204431533813, 0.20021022856235504, -0.1362723708152771, 0.681069552898407, 0.07219855487346649, 0.08846043050289154, -0.4865931272506714, 0.2130812406539917, -0.41146257519721985, -0.9079980254173279, -0.6377514600753784, -0.3148641586303711, -0.3235219120979309, -0.5631729960441589, 0.32384607195854187, -0.6701923608779907, -0.6870296001434326, 1.0925631523132324, -1.307889461517334, -0.37786582112312317, 0.1843688189983368, -0.12690649926662445, 0.1499357670545578, -0.7035434246063232, 0.21932241320610046, -0.43963921070098877, 1.504140019416809, -0.3098110258579254, 0.9571660757064819, -0.2879191040992737, -0.25334852933883667, 0.8341786861419678, 0.6144946813583374, -0.9816992282867432, 0.02289498783648014, 0.13834019005298615, -1.837928056716919, 0.6068100929260254, 0.9312645196914673, -0.5648164749145508, -0.14049988985061646, 0.22898131608963013, 0.559136152267456, 0.3361155092716217, 0.00940363947302103, 0.32658445835113525, -0.3386511206626892, -1.1617541313171387, -0.5683713555335999, -0.20941102504730225, -0.1452711671590805, -0.33935147523880005, -0.5186963081359863, 0.21963709592819214, 0.34055793285369873, -0.4765728712081909, 0.06003076955676079, 0.6460596323013306, 1.1063547134399414, 0.3918803632259369, 1.0367244482040405, 0.6856208443641663, -0.11611419171094894, -0.333476722240448, -0.6229157447814941, -0.5523785352706909, 1.6271579265594482, 1.0836553573608398, 0.03980432078242302, 0.14159469306468964, 1.5744788646697998, 1.8852440118789673, -0.33981695771217346, 0.47607240080833435, -0.1388060450553894, -0.23627698421478271, -0.23980584740638733, -1.1310296058654785, 0.558284342288971, -0.8522430658340454, 1.2022182941436768, 0.804244875907898, -0.9002599716186523, 0.07095666974782944, -0.4169601500034332, 0.5827407836914062, -0.36292240023612976, -0.6861838698387146, 0.4208104610443115, -0.04718296229839325, -0.25131452083587646, -0.153213769197464, 0.06551478803157806, -0.0008138539269566536, 0.6574157476425171, -1.0505810976028442, -1.008886456489563, -0.5461398363113403, 0.43294423818588257, -0.020019829273223877, 1.6883264780044556, -0.17108634114265442, -2.167924165725708, -0.36756131052970886, 0.4198002219200134, 0.8358104228973389, 0.38608527183532715, -0.45997557044029236, 0.80601567029953, 0.20249372720718384, -0.9426900744438171, 0.7835072875022888, 0.2857104539871216, 0.16208331286907196, -0.014790000393986702, -0.025771310552954674, 0.27321064472198486, 1.263859748840332, -0.5077283978462219, -0.575555145740509, -0.43432071805000305, 0.04598259925842285, 1.466101884841919, 0.15053729712963104, 1.1585001945495605, -0.08399134129285812, 0.5016459822654724, -0.07221788167953491, -0.38202622532844543, -0.23683632910251617, -0.8738523125648499, -0.6999766230583191, -0.274402379989624, -0.2190876007080078, 0.014157038182020187, -0.43547943234443665, 1.0497618913650513, 0.09604883193969727, 0.3857101798057556, 1.2286652326583862, 0.1516154557466507, -0.855198085308075, 0.19103631377220154, 0.02021515928208828, -0.6590859889984131, 0.42060908675193787, 0.9010944962501526, -1.2333927154541016, -0.43038469552993774, -0.27389079332351685, 0.3933463394641876, 0.14693264663219452, 0.14109653234481812, 0.5720295906066895, -1.0380254983901978, -0.500953197479248, 0.07434285432100296, 1.7084065675735474, -0.18150685727596283, -0.10825556516647339, -0.1606757789850235, 0.8327076435089111, 0.027736375108361244, -0.5381829142570496, -0.8332752585411072, 0.7823852300643921, -0.3577013909816742, 0.17113010585308075, 0.3354690968990326, 0.3959420621395111, 0.9481950402259827, -0.6659355759620667, -0.27667298913002014, -0.7181344628334045, -0.15112680196762085, -0.22940295934677124, 0.4792536795139313, 0.03968040645122528, 1.1097912788391113, 0.24017761647701263, 0.4988463521003723, 0.48184657096862793, 0.9285743236541748, -0.11547920107841492, -1.1862002611160278, 0.6341949105262756, 0.4194563031196594, 1.5052001476287842, 0.31221169233322144, 0.15331856906414032, 0.7995601296424866, 0.30328473448753357, -0.1423197239637375, -0.10437901318073273, 0.9136380553245544, 0.04669030383229256, -0.03588982671499252, -0.25842612981796265, -0.018218034878373146, 0.5565174221992493, -0.6987921595573425, 0.5087830424308777, 0.43891069293022156, -1.1582564115524292, -0.27022817730903625, 1.245129942893982, 0.46002593636512756, -0.7024285793304443, -0.42351478338241577, 0.5597983598709106, -0.11717800050973892, -0.24914364516735077, 0.2502003312110901, 0.07273554056882858, 0.1401969939470291, 0.4993569254875183, -0.9552090167999268, -0.1143757700920105, 1.098607063293457, -0.1551102101802826, 0.6955353021621704, -0.7675998210906982, -0.02156871370971203, -1.3795193433761597, 0.423726350069046, 0.36215415596961975, -0.507342517375946, 0.6384831666946411, -0.30910035967826843, -0.36528778076171875, -0.25248053669929504, 0.6545921564102173, 1.356984257698059, -0.5933350324630737, -0.11423857510089874, -0.2889280617237091, -0.33195871114730835, -0.22108852863311768, -0.306016206741333, -0.7221257090568542, 0.3982258141040802, -0.8052533268928528, 0.7648022174835205, 0.21107079088687897, -0.049360062927007675, 0.8268499374389648, 0.3373260796070099, 0.5894221067428589, 0.049157194793224335, 0.2373746931552887, -1.399300217628479, 0.30608534812927246, 0.3590940535068512, -0.5129749774932861, -0.7213110327720642, -0.22311550378799438, 0.31649303436279297, -0.1098281666636467, 0.12227089703083038, 0.8654654026031494, 0.8863031268119812, 0.11438194662332535, 0.1420644223690033, -0.545226514339447, 0.8578542470932007, 1.473433256149292, 1.4843316078186035, 1.3599532842636108, -0.5810451507568359, 0.003036783542484045, 0.3217774033546448, -1.26633620262146, -0.2634502351284027, 0.6004208922386169, 0.807145893573761, 1.348612666130066, -1.8215254545211792, -0.6712039113044739, 0.4735735356807709, 0.5988741517066956, 0.2757609486579895, 1.0827550888061523, -0.20688007771968842, -0.2048252522945404, 0.16865520179271698, -0.0014264564961194992, 0.4319404661655426, 0.12328983098268509, -0.49170053005218506, -0.5000820159912109, 0.8181315660476685, -1.023725986480713, 1.0906426906585693, -1.0011295080184937, -0.49789077043533325, -0.03891478851437569, -0.6906682252883911, 0.591384768486023, 0.9757914543151855, 0.49339014291763306, 1.4457751512527466, -0.019768906757235527, -0.9828906655311584, -0.46058669686317444, -1.095821738243103, 0.7211762070655823, -0.4938296675682068, 0.1049651950597763, -0.824246883392334, -0.3279697895050049, -0.46296387910842896, 0.5869256258010864, -0.48608070611953735, -0.6780022382736206, 0.0736382007598877, -1.4828810691833496, 0.4438602328300476, 0.4891706705093384, 0.6300000548362732, 0.1350964456796646, -0.796352744102478, 0.21109560132026672, 0.07022249698638916, -1.0667511224746704, -0.07503850013017654, 0.6316882967948914, 0.016515957191586494, 0.17798149585723877, -1.232384443283081, -0.807341992855072, 0.605688214302063, -0.06389254331588745, -0.24887917935848236, 0.03127853944897652, 0.8835394978523254, 1.6083565950393677, -0.8408352136611938, -0.27684882283210754, -0.01878528669476509, -0.29396966099739075, 0.8019323348999023, -0.0073944199830293655, -0.028099622577428818, -1.352612853050232, -0.8491153717041016, -1.6040881872177124, 0.7764459252357483, -0.6391651034355164, -0.5986232757568359, 1.0665044784545898, 0.5501449704170227, 0.6873553395271301, 0.7745851874351501, -0.42687246203422546, 0.27630674839019775, 0.5459844470024109, -1.170095682144165, -0.8005552291870117, 0.30599287152290344, 0.8337897658348083, 0.2515328824520111, -0.36244261264801025, 1.004014492034912, 0.3451218605041504, -0.08814848959445953, -0.35095831751823425, 0.39917683601379395, -0.24512577056884766, 0.4539095461368561, 0.11341513693332672, 0.030038509517908096, -0.11396002024412155, -0.7175747752189636, -0.7626832723617554, 0.23830486834049225, 0.3928702175617218, 0.14485570788383484, -0.2965206503868103, -0.6639001369476318, -0.2353346198797226, -0.21839550137519836, 0.18666352331638336, -0.3990607261657715, 1.27420175075531, 0.8274683356285095, -0.02382243238389492, -0.16388177871704102, -0.3784768283367157, 0.28814300894737244, -0.42257779836654663, 0.21776391565799713, 0.09730749577283859, -2.152337074279785, 0.014469554647803307, 0.559123158454895, -1.2912198305130005, -0.8723791241645813, -0.24290211498737335, 0.04961560294032097, -1.4999951124191284, -0.9457247853279114, -0.8455987572669983, 0.4596710503101349, 1.0518056154251099, -0.745298445224762, -0.0996503159403801, 0.8879314064979553, -1.0479782819747925, 0.1228090450167656, -0.33726802468299866, -0.4013060927391052, -0.12364931404590607, -0.7430512309074402, 0.3759456276893616, 0.6880264282226562, 0.31624966859817505, -0.004075328819453716, 0.9964417815208435, -1.828176498413086, -1.0124846696853638, -1.0178145170211792, -0.6787549257278442, 0.9384507536888123, 0.8715365529060364, -1.1996163129806519, 0.9920644760131836, 1.2372958660125732, 0.007589858025312424, -0.14194656908512115, 0.3278225362300873, 0.02962728962302208, 0.5200198888778687, -0.1068175882101059, 0.6224192976951599, 0.2772268056869507, 0.6302675008773804, 0.24816009402275085, 1.2238889932632446, 0.6655367612838745, 0.9645123481750488, -0.5779192447662354, -0.5211672782897949, 0.07323861867189407, 1.1498188972473145, -1.473427653312683, -0.49523860216140747, -0.207221120595932, -1.2483936548233032, -1.1848325729370117, -0.31296205520629883, 0.3888109028339386, -0.47048139572143555, -0.016078099608421326, -1.1709089279174805, 0.7868117094039917, -0.8862394094467163, 0.12222666293382645, -0.06136227771639824, -0.05431602895259857, 0.3848222494125366, 1.1114439964294434, -0.9397552013397217, -0.8430331349372864, 0.1748633235692978, -0.25192663073539734, -0.3946431577205658, -1.1464331150054932, 0.16342796385288239, -0.17855700850486755, 0.07399271428585052, -0.6890990138053894, 1.7410866022109985, 0.6029654145240784, -0.29266631603240967, 0.14110079407691956, 0.3234487473964691, 0.4454096257686615, 0.27824243903160095, -0.6791248321533203, -0.9890503287315369, -0.678091824054718, 1.6865664720535278, 0.6413828730583191, 0.7091473937034607, 0.17398323118686676, -0.1957857757806778, -0.07509731501340866, 0.13959690928459167, 1.0246057510375977, -1.883447289466858, -0.22508738934993744, 0.6872912645339966, 0.11201488971710205, -0.20026259124279022, 0.31544506549835205, 0.5895508527755737, 0.37791943550109863, -0.48625072836875916, 0.752541720867157, 0.3717937171459198, -0.8306861519813538, 1.2316107749938965, -0.08526117354631424, -0.28524813055992126, -0.28817853331565857, -0.1696341335773468, -0.9341937303543091, -0.12414462864398956, -0.2186303287744522, -0.7730350494384766, 0.3666325509548187, -1.384461760520935, 0.26834338903427124, 0.5454273819923401, -0.8840712904930115, -0.12584124505519867, -0.11289827525615692, 1.1145379543304443, -0.031465958803892136, -0.4937208592891693, 0.5905942916870117, 0.09629732370376587, 1.2449297904968262, 0.3210165798664093, 0.15043754875659943, -1.6953856945037842, -0.2573888897895813, -0.02974294312298298, -0.7122797966003418, -0.13562829792499542, -0.37498632073402405, 0.3546619713306427, -0.2843400835990906, -0.8351455330848694, 0.6032931208610535, -0.14287599921226501, -0.1862923502922058, 0.09234710782766342, -0.8068573474884033, -0.2461022436618805, 1.19815194606781, 0.6329699158668518, 0.18228018283843994, -0.5850820541381836, -0.8364099860191345, 0.812301754951477, -0.7765295505523682, 0.44738635420799255, -0.47775155305862427, 0.6441017985343933, -0.40743425488471985, -0.05928266793489456, -0.5972024202346802, -0.9506908655166626, 0.338937371969223, -0.735546350479126, -0.1327277272939682, 0.01696551777422428, -0.34953489899635315, -0.15978200733661652, -1.3249653577804565, 0.47850877046585083, 0.6941253542900085, -0.07010604441165924, -0.21010762453079224, -1.0846644639968872, -0.8630236387252808, -0.04159722849726677, -0.17960357666015625, 0.0476071760058403, 0.3982005715370178, 0.3850715160369873, 0.10139204561710358, -1.0156716108322144, 0.03942758962512016, 0.4062829613685608, -0.0024155848659574986, 0.33640339970588684, 0.9053518772125244, 1.414316177368164, 0.6837261319160461, 0.18389669060707092, -0.45035117864608765, -0.013592347502708435, -0.8553619980812073, -0.18809325993061066, -0.6290979981422424, -0.3913171589374542, -0.22772128880023956], [0.5282629132270813, 1.6232267618179321, -2.8511526584625244, -0.1685606986284256, 0.5842646360397339, -0.03017278201878071, 0.9437267184257507, -0.13223887979984283, 0.15241269767284393, -0.27334100008010864, -0.8732209205627441, -0.06864295154809952, -0.42386868596076965, 0.12076998502016068, 0.7348502278327942, 0.5215221047401428, 0.8771207332611084, -0.7366580963134766, 0.34650182723999023, 0.5196231603622437, -0.15973010659217834, -0.04995044693350792, 0.3016519844532013, -0.20240335166454315, -0.4907805621623993, 0.9147211909294128, -0.8931825757026672, -0.1492389291524887, -0.18548917770385742, -1.361373782157898, 1.0211137533187866, -0.7030619382858276, 0.23840248584747314, -0.7158133387565613, -1.6537432670593262, -0.05980653315782547, 1.2262660264968872, 1.2223715782165527, 0.7218245267868042, 0.5329490900039673, 0.6273571848869324, -0.6017782688140869, 0.5821639895439148, -1.3426768779754639, -0.33701035380363464, 0.43110087513923645, 0.7352538108825684, 0.40950244665145874, -0.34647026658058167, -0.3394204080104828, 0.8051391839981079, -1.0086721181869507, 0.06543061137199402, 0.6451385021209717, 1.5031908750534058, -0.9225350618362427, -0.057535722851753235, -0.37174537777900696, 0.3042508065700531, -0.9560897946357727, 1.438683032989502, 0.5178950428962708, -0.4876239001750946, 0.7859818339347839, 0.24882830679416656, -0.5515839457511902, 0.45297807455062866, 0.5356830954551697, 0.11878112703561783, -0.5120239853858948, 0.4152301847934723, 0.3676033914089203, -0.8251270651817322, 0.14226971566677094, -0.6083292365074158, 0.5440050363540649, 0.46671295166015625, 0.9287704825401306, 0.7160620093345642, 0.9518672227859497, -0.12606702744960785, -0.19569048285484314, 0.6850468516349792, -0.11308244615793228, 0.9026884436607361, 0.07609743624925613, 0.8419991731643677, -0.5519885420799255, -0.013645418919622898, 2.042081117630005, 0.25890785455703735, -0.059522807598114014, 0.6742025017738342, -0.20634731650352478, -0.47209882736206055, -0.6211192011833191, 0.4528493583202362, 0.3093309998512268, -1.3676661252975464, -0.3371962010860443, -0.772699773311615, -1.3122822046279907, 0.3741820156574249, -0.6659296154975891, -0.37091878056526184, 0.8316687941551208, -0.16761276125907898, -0.22406423091888428, -0.4074912965297699, -0.22379744052886963, -0.06292359530925751, 0.7253360152244568, -0.7497643232345581, -1.5245648622512817, -0.2479410469532013, 0.7254437804222107, 1.4707913398742676, -0.34042617678642273, 0.062090251594781876, 0.5747948288917542, -0.2288903146982193, -0.4319941997528076, -0.4783633053302765, 1.2663216590881348, 0.19842518866062164, 0.4115808606147766, -0.7126296758651733, 0.25749120116233826, 0.571013331413269, -0.3198258578777313, 0.21264095604419708, 0.2699510455131531, -0.6987191438674927, 0.8312110304832458, -0.8269022703170776, 1.2322319746017456, -0.30349865555763245, -0.248849019408226, -0.5448383092880249, 0.14261308312416077, 0.5732617378234863, -0.13124430179595947, -0.09973060339689255, -0.26371392607688904, -0.6154563426971436, -0.27908438444137573, -0.19934885203838348, -0.5592212080955505, -0.5199173092842102, 0.6530314087867737, -0.7246450185775757, 0.7126919031143188, -0.12428274750709534, 0.23973233997821808, 0.7702597379684448, -0.4149557054042816, -0.11539050936698914, 0.324923574924469, 0.2874956727027893, 0.736910879611969, 0.7568473219871521, -0.2934744358062744, -0.9689946174621582, 0.40740352869033813, 0.6449424624443054, -0.4343240559101105, -0.4460417330265045, 1.533677577972412, 0.002925530541688204, 0.8422108292579651, -0.3969722092151642, -0.7580869197845459, -0.22423461079597473, -0.4042585790157318, -0.210385262966156, 0.48527979850769043, 1.373586893081665, -0.7673208713531494, -1.440949559211731, -1.1111549139022827, 0.5004854202270508, -0.1548081934452057, 0.46663767099380493, -0.06209971755743027, 0.38121530413627625, -0.5986777544021606, 0.7193583250045776, -0.41199880838394165, -0.41626811027526855, -0.3314880132675171, -0.6498023271560669, -0.1542624682188034, -0.16504333913326263, 0.35184216499328613, -0.46118471026420593, -0.873323380947113, 0.9788697957992554, -0.9519496560096741, -0.07444626837968826, -0.7915846109390259, 0.031711943447589874, -0.4664197266101837, -0.4137677252292633, 0.38251861929893494, -0.6020734906196594, 0.911523699760437, -0.8685393929481506, 0.7963494658470154, -0.7014105319976807, -0.5468330979347229, 0.8350479602813721, 0.1354185938835144, -0.38229891657829285, 0.23770597577095032, 0.21665365993976593, -1.2661327123641968, -0.06114200875163078, 0.5232771635055542, -0.5537495613098145, 0.5341600179672241, 0.5339253544807434, 0.18155667185783386, 0.8683897256851196, -0.0025402086321264505, 0.4118506908416748, -0.521475613117218, -0.8466241359710693, -0.4068705439567566, -0.36419349908828735, -0.4008499085903168, -0.07049200683832169, -0.8396075963973999, 0.8921579122543335, 0.18861974775791168, -0.7644494771957397, 0.2787136137485504, -0.5857254266738892, 0.5080357789993286, -0.048950809985399246, 0.8444715142250061, 0.6375975608825684, 0.5445282459259033, -0.28837910294532776, -0.2812599837779999, -1.056612253189087, 0.6658169031143188, -0.11254191398620605, -1.012096881866455, 0.3662482798099518, 0.8065603375434875, 0.5015037059783936, -0.22449390590190887, 0.4708613455295563, -0.05741839110851288, -0.06459805369377136, -0.4083150327205658, -0.8306195139884949, -0.07615025341510773, -0.6741278767585754, 1.5616382360458374, 0.6966391205787659, -0.2985006868839264, 0.2036903202533722, 0.3411486744880676, -0.5321729183197021, -0.4452359080314636, -0.3741142451763153, -0.2152635157108307, -0.7684791684150696, -0.15258939564228058, -0.06000099703669548, 0.43668332695961, 0.1054985523223877, 0.7599144577980042, -0.26881712675094604, -0.9055840373039246, 0.17899321019649506, -0.220280259847641, 0.11390602588653564, 0.36566299200057983, -0.3518903851509094, -1.3638770580291748, -0.3436795473098755, 0.4253186583518982, 0.6316262483596802, -0.2046075463294983, -0.05874112248420715, -0.20085509121418, 0.4371323585510254, 0.012377124279737473, 0.20632487535476685, 0.15133801102638245, -0.2889293432235718, 0.8813958168029785, -0.39581114053726196, 0.29670417308807373, 1.4073495864868164, -0.34860628843307495, -0.698214590549469, -0.5094029307365417, 0.4070991277694702, 1.2665891647338867, 0.14619077742099762, 1.1975141763687134, 0.2476244419813156, 0.1427074670791626, -0.35039037466049194, -0.2650146782398224, -1.2159385681152344, -0.25366005301475525, -1.1856082677841187, -0.9988745450973511, 0.3740127682685852, 0.5875067114830017, 0.0008813384920358658, 0.851545512676239, -0.311345636844635, 0.18487992882728577, 1.3277643918991089, -0.6396785378456116, 0.07995540648698807, -0.18176032602787018, 0.06394737213850021, -0.5603997707366943, -0.010502945631742477, 1.0732313394546509, -1.2775886058807373, -0.25553515553474426, -0.5634902715682983, 0.5399630069732666, 0.9559435844421387, -0.07742604613304138, 0.36509114503860474, -1.6514285802841187, -0.9834167957305908, 0.13505740463733673, 0.6182674169540405, 0.25636816024780273, -0.05807334929704666, -0.27917927503585815, 0.41798555850982666, 0.9629608988761902, -0.47368282079696655, -0.5820030570030212, 0.6760753393173218, -0.28742659091949463, -1.1399847269058228, 0.21314886212348938, 0.43732258677482605, 0.3082354962825775, -0.6142244935035706, -0.7687952518463135, -0.6687250137329102, -0.38545092940330505, 0.2084779292345047, 0.16425380110740662, 0.10045839101076126, 1.1414276361465454, -0.03349582850933075, -0.2980635464191437, 0.8547637462615967, 0.3029005825519562, 0.4548579454421997, -1.2557398080825806, 0.2592044770717621, 0.656879186630249, 1.0500404834747314, 0.39929258823394775, 0.4802609384059906, 0.07960773259401321, 0.5037857294082642, -0.7492687106132507, 0.633728563785553, 1.461267113685608, 0.278312623500824, 0.24156232178211212, -0.5778475403785706, -0.39980652928352356, -0.08148077875375748, 0.11692992597818375, -0.4219822585582733, 0.1840590536594391, -0.647505521774292, -0.6878513097763062, 1.1760838031768799, 0.34367868304252625, 0.07022538781166077, -0.3758651912212372, 0.3466182053089142, 0.9238764047622681, -0.35809335112571716, -0.22909200191497803, -0.41606688499450684, -0.07666719704866409, 0.6676979064941406, -1.025256633758545, -0.1540081948041916, 0.3885449469089508, 0.12487111240625381, 0.42260295152664185, -0.4439740777015686, 0.6781728863716125, -0.34642642736434937, 0.6110095381736755, 0.6192811727523804, -0.4231191575527191, -0.056416574865579605, 0.45416438579559326, -0.15690448880195618, -0.39772310853004456, -0.1831478625535965, 0.1704087257385254, -1.0923773050308228, -0.205749049782753, 0.7196674346923828, 0.0861923024058342, 0.015926387161016464, 0.1289701610803604, -0.30978643894195557, 0.3919442892074585, -0.5018953680992126, 0.404379665851593, -0.1834843009710312, -0.6223249435424805, 0.5989074110984802, 0.3426710069179535, 0.0658775344491005, 0.6076812148094177, -0.23041602969169617, -1.125138759613037, 0.5311988592147827, 0.3324602544307709, -0.19288723170757294, -0.5042257308959961, 0.12238489836454391, 0.6977643966674805, -0.19686970114707947, 0.5894811749458313, 0.07527667284011841, 0.7983503937721252, 0.25999027490615845, -0.060638878494501114, 0.5864912271499634, 0.9213356971740723, 0.47007128596305847, 1.383198618888855, -0.4471982419490814, -1.309687614440918, -0.3529498279094696, 0.12073035538196564, -0.9860404133796692, 0.4493895471096039, 0.7942984104156494, -0.32921892404556274, 1.8512024879455566, -1.6923191547393799, 0.10211130976676941, 0.9234803915023804, 0.36384716629981995, 0.48269033432006836, 0.3857229948043823, -0.6841370463371277, 0.008817414753139019, 0.5389615297317505, -0.13664188981056213, -0.3400774300098419, 0.2812061309814453, 0.729200541973114, -0.2893422842025757, 0.6782357692718506, -0.9771151542663574, 0.5523521304130554, -0.49076855182647705, -0.38730674982070923, 0.3901885151863098, -0.7017860412597656, -0.31376275420188904, 0.9081708788871765, 0.16131290793418884, 1.484609603881836, 0.4330753684043884, -0.9297013282775879, -0.10924152284860611, -0.7833751440048218, 0.142558753490448, 0.0336630754172802, -0.5344159603118896, -0.7729257345199585, 0.22657836973667145, 0.3992893397808075, 0.8532532453536987, 0.16890034079551697, -0.1453808844089508, -0.0758950337767601, -0.7565610408782959, 1.116017460823059, 0.913547158241272, 0.8835686445236206, -0.20570741593837738, -0.4447692632675171, -0.01863809861242771, 0.6852023005485535, -0.6595548391342163, -0.9392226338386536, -0.07668501883745193, -0.3653327226638794, -0.07838544249534607, -0.7504892945289612, -0.5326364636421204, 0.3269282281398773, 0.17394863069057465, 0.07822252064943314, 0.502050518989563, 1.1592403650283813, 1.4785254001617432, -0.4682069718837738, -0.3844435214996338, 0.4004110097885132, -0.43993502855300903, -0.040680304169654846, 0.4374649226665497, -0.566335141658783, 0.3540346622467041, -0.6450782418251038, -1.5660245418548584, 0.4233303666114807, -0.13555674254894257, -0.8068929314613342, 0.9128360748291016, 0.5979050993919373, 1.5476773977279663, 0.4015450179576874, -1.047390103340149, -0.04646507650613785, -0.16216549277305603, -0.12918463349342346, -0.5503699779510498, 0.7439938187599182, -0.23863539099693298, 0.8728013038635254, -0.0625731348991394, -0.5293327569961548, 0.1959470510482788, 0.5477011203765869, -0.479904443025589, -0.34719526767730713, 0.03944535553455353, 0.26744115352630615, -0.14578138291835785, -0.6574145555496216, 0.45881426334381104, -0.21795685589313507, -0.3430945873260498, -0.28041499853134155, 1.0455645322799683, -0.24988003075122833, 0.5995488166809082, 0.4516233205795288, -0.7607564926147461, -0.29605403542518616, -0.3465270698070526, 0.27167370915412903, 0.6883445382118225, 0.20355045795440674, 0.8010972738265991, -1.131006121635437, -0.5259138941764832, -0.32468974590301514, -0.003408293705433607, 0.5736336708068848, 1.1401431560516357, -0.7933183908462524, 0.5995977520942688, 0.31582772731781006, -1.1569355726242065, -0.28330692648887634, -0.10481670498847961, -0.14432187378406525, -1.1424707174301147, -0.46599915623664856, -0.8848447203636169, 0.12224536389112473, 0.5575668215751648, -0.2614862620830536, 0.7469624876976013, 0.6238872408866882, -1.3494302034378052, 0.19377176463603973, 0.24099135398864746, -1.2126654386520386, 0.036441005766391754, -0.9675673842430115, 0.4766846001148224, 0.4010196626186371, 0.055978529155254364, -0.3933889865875244, 0.18965478241443634, -1.7103346586227417, -0.9442280530929565, -1.1688958406448364, -0.09941194206476212, 0.6582918167114258, 0.39920011162757874, -0.9849667549133301, 1.349670171737671, 0.4181320369243622, -0.48878979682922363, 0.03398580849170685, -0.1670379787683487, -0.22084061801433563, 0.9906129837036133, 0.17158257961273193, 0.11060687899589539, 0.3911585509777069, 0.4443073272705078, -0.20000961422920227, 0.8914147615432739, 0.6908685564994812, 1.2373297214508057, -0.4561700224876404, -0.18386077880859375, 0.5088130235671997, 1.1770622730255127, -0.8544993996620178, -0.7058643102645874, -0.5994321703910828, -0.5341870784759521, -0.6251339912414551, 0.12000110745429993, 1.113840937614441, -0.38299646973609924, 0.040130868554115295, -0.7295875549316406, 0.9594566822052002, -0.4340982735157013, 0.09760113060474396, -0.2231166511774063, -0.26311036944389343, -0.40513938665390015, 0.24630679190158844, -0.15586106479167938, -1.7174389362335205, 0.2829558253288269, -0.20436856150627136, -0.1930062472820282, -0.5950860977172852, 0.6549185514450073, 0.3046253025531769, 0.7043965458869934, -0.3808496296405792, 1.4637342691421509, 0.7033870816230774, -0.4898015558719635, -0.294930100440979, -0.09097958356142044, 0.05273183062672615, -0.19840854406356812, -0.6729416251182556, -0.9546105861663818, -1.075169324874878, 1.600809931755066, 0.3232937455177307, -0.17247943580150604, -0.592583954334259, 0.2530187666416168, 0.16053706407546997, 0.35640135407447815, -0.014135732315480709, -1.5348094701766968, -0.9296132922172546, 0.8332113027572632, 0.3490377962589264, -0.12617437541484833, -0.07109982520341873, 0.49490851163864136, 0.663955807685852, -0.11033948510885239, 0.36658987402915955, 0.46376359462738037, -0.6093508005142212, -0.18113143742084503, -0.04424704611301422, -0.27164334058761597, -0.07493767142295837, 0.017780238762497902, -0.565884530544281, 0.2609569728374481, -0.16964565217494965, -0.25563183426856995, 0.9157506823539734, -0.9832145571708679, 0.2456086128950119, -0.02453056536614895, -0.1556132733821869, 0.31339213252067566, -0.36211538314819336, 0.7462096214294434, 0.22949697077274323, 0.583916187286377, 0.4924665093421936, -0.11482715606689453, 1.2313393354415894, -0.09468292444944382, 0.4698166251182556, -1.2927016019821167, 0.4201149344444275, -0.03975125029683113, -0.13005274534225464, -0.1530470997095108, 0.23797017335891724, 1.0086311101913452, 0.0032948097214102745, -0.06489043682813644, 0.27918073534965515, -0.06263265758752823, 0.1499708890914917, -0.16790322959423065, -0.8574004173278809, 0.5576984286308289, 0.48796162009239197, 1.0227421522140503, -0.357403963804245, -1.271079659461975, -0.6028629541397095, 0.3980792164802551, -0.6611301302909851, 0.7213061451911926, -0.5830022692680359, 1.1871662139892578, -0.0379893034696579, 0.0004154574126005173, -0.6836216449737549, 0.0506233312189579, 0.018925268203020096, -0.004851434845477343, -0.12462779134511948, -0.9691595435142517, 0.7246516942977905, -0.8750758171081543, -0.8686232566833496, -0.7465183734893799, 0.07559032738208771, -0.5183427929878235, -0.3734823763370514, -0.9082202315330505, -0.8697099089622498, -0.642543375492096, -0.09972009807825089, 0.7379918098449707, -0.13851124048233032, -0.2077605128288269, -0.9553146958351135, -0.6718056797981262, -0.292205810546875, -0.03828881308436394, -0.11871056258678436, -0.525571346282959, 0.8031128644943237, 1.892031192779541, 0.5415928363800049, 0.19909320771694183, -0.7125316858291626, 0.5363519191741943, -1.0637565851211548, 0.01567050628364086, -0.5987042784690857, -0.5080622434616089, -0.19254004955291748], [0.6358144283294678, 1.2439895868301392, -2.5517003536224365, -0.3331723213195801, 0.3549256920814514, 0.29693663120269775, 0.8737603425979614, -0.5344955921173096, -0.37961599230766296, -0.24281610548496246, -0.6464278101921082, -0.7490995526313782, 0.27598342299461365, 1.0957391262054443, 0.7511743307113647, 0.8195441961288452, 1.514665126800537, -0.7715020775794983, 0.3179202973842621, 1.0617215633392334, 0.19058506190776825, -0.7346155643463135, 0.15770898759365082, 0.08205154538154602, -0.17927438020706177, 0.6027950644493103, -1.7761355638504028, -0.766471803188324, -0.6055748462677002, -0.9127917885780334, 1.0336599349975586, -0.7803210616111755, -0.2765287458896637, -0.2647882103919983, -1.1875592470169067, -0.17892134189605713, 1.5901776552200317, 0.3681119680404663, 0.779373049736023, -0.07451581954956055, 1.3674952983856201, -0.11094674468040466, -0.07763492316007614, -1.0111606121063232, -0.21174739301204681, -0.34597519040107727, 0.3088412582874298, -0.2368272989988327, 0.2316695749759674, -0.5218692421913147, 0.8469379544258118, -0.4203417897224426, 0.05886581167578697, 1.1834107637405396, 1.4559152126312256, -0.40067702531814575, 0.14233751595020294, -0.07935411483049393, 0.7635942697525024, -0.760449230670929, 1.2606754302978516, -0.05157012492418289, -0.14501778781414032, 1.1607006788253784, -0.2890964448451996, -0.5123867988586426, -0.10851284116506577, 0.6276516318321228, 0.3665522038936615, 0.14285695552825928, 0.8273539543151855, 0.7267860770225525, -0.16848261654376984, 0.5788809061050415, -0.7258867621421814, 0.3990717828273773, 0.5787389874458313, 1.038668155670166, -0.05004119873046875, 0.8305784463882446, -0.19364893436431885, 0.1369723528623581, 0.10974591225385666, -0.2753390967845917, 0.4324730336666107, -0.010172867216169834, 0.5847464799880981, -0.570787250995636, -0.6701101064682007, 1.9993741512298584, 0.14786042273044586, -0.28137296438217163, 0.2711644470691681, -0.36387133598327637, -0.4790099859237671, -0.4458273947238922, 0.2515234053134918, 0.5441283583641052, -1.077621579170227, -0.44485941529273987, -0.42841389775276184, -0.4433414041996002, -0.23803254961967468, -0.5207685828208923, -0.12318312376737595, 0.9081166386604309, 0.561543345451355, -0.41255828738212585, -0.4468938708305359, -0.29744845628738403, -0.392494797706604, 0.5136638879776001, -0.9675231575965881, -1.0170284509658813, -0.6094841361045837, 1.14211106300354, 1.639076590538025, -0.7636558413505554, 0.7089719176292419, 0.5944957733154297, -0.5834812521934509, -0.7432635426521301, -0.5982111096382141, -0.11198652535676956, 1.0486308336257935, 0.7448509931564331, -0.7140852808952332, -0.4970702826976776, 0.40958619117736816, -0.35793712735176086, 0.3539491891860962, 0.302890419960022, -0.6765826344490051, 0.9314281940460205, -0.766031801700592, 1.3351529836654663, -0.1867162585258484, -0.5443379282951355, 0.23853056132793427, 0.2594095468521118, 0.23265400528907776, 0.07449551671743393, -0.36034172773361206, -0.16618433594703674, 0.20816640555858612, -0.4936138391494751, -0.020505232736468315, -0.37387815117836, -0.8776880502700806, 0.5373461842536926, -0.7674164772033691, 0.28741273283958435, 0.6122225522994995, 1.139527678489685, 0.30767759680747986, 0.05832713842391968, -0.12838852405548096, 0.06387072056531906, 0.7261581420898438, -0.12639856338500977, 0.4871602952480316, 0.36101070046424866, -0.8708975315093994, 0.5426876544952393, 0.37303459644317627, -0.5923373103141785, -0.4872087836265564, 1.2100318670272827, -0.04114712029695511, 0.3382180333137512, -0.25855639576911926, -0.36031490564346313, -0.5137773752212524, 0.20452551543712616, 0.5499405264854431, -0.8250439763069153, 1.3117601871490479, -0.26130226254463196, -1.1101233959197998, -0.8862547278404236, 0.7011932134628296, 0.17195439338684082, 0.5604786276817322, -0.048114113509655, -0.010256553068757057, -0.7228820323944092, 0.4484715163707733, -0.4296245574951172, -0.8856084942817688, -0.5203465819358826, -0.18760070204734802, -0.20435908436775208, -0.400210976600647, 0.6762340664863586, -0.9448055028915405, -0.9827843904495239, 0.42120853066444397, -0.7856794595718384, -0.0009163473732769489, 0.2522353529930115, 0.07784799486398697, -0.586465060710907, -0.9864205718040466, 0.39301928877830505, -0.5394814610481262, 1.459145188331604, -1.4756700992584229, 0.7350525259971619, -0.7799158096313477, -0.4219863712787628, 0.9617011547088623, 0.22251209616661072, -0.6150119304656982, 0.6201176047325134, 0.45003706216812134, -1.087813138961792, 0.2103847861289978, 0.7321033477783203, -0.4851878583431244, -0.028211086988449097, -0.11354697495698929, -0.0554836243391037, 0.9511890411376953, -0.3702549338340759, 0.5095800161361694, -0.19375737011432648, -0.6260300278663635, -0.4500471353530884, -0.903954803943634, -0.2985292077064514, -0.4134468734264374, -0.9503284692764282, 0.7193939685821533, 0.2657243609428406, -0.4085308015346527, -0.08230599761009216, -0.5819078087806702, 0.4831694960594177, 0.40678849816322327, 1.5653263330459595, 0.3516695499420166, 0.574353039264679, -0.35093310475349426, -0.22778409719467163, -0.8281764388084412, 0.4275149405002594, 0.4911552965641022, -0.44162803888320923, 0.38186073303222656, 0.7418912649154663, 1.2390819787979126, 0.26821741461753845, 0.530493438243866, 0.014204222708940506, 0.026094159111380577, -0.2589748203754425, -0.9763257503509521, 0.27427834272384644, -0.2769296169281006, 1.2676825523376465, 0.5758411288261414, -1.1943140029907227, -0.1316298544406891, 0.09987253695726395, -0.07772906869649887, -0.5085663199424744, -0.5768461227416992, -0.46321386098861694, -0.4014051556587219, 0.1135491281747818, 0.21908223628997803, 0.36479178071022034, -0.09993298351764679, 0.479617178440094, -0.4790586233139038, -1.0544984340667725, -0.5062369704246521, 0.5682671666145325, -0.19074007868766785, 1.2487744092941284, -0.5375664830207825, -1.4296592473983765, -0.40020751953125, 0.3771010935306549, 0.5973208546638489, -0.2567860186100006, -0.7968371510505676, 0.11069739609956741, -0.10136362165212631, -0.25449520349502563, 0.5075969696044922, 0.3968101739883423, 0.5995320677757263, 0.05160330608487129, 0.09539823234081268, 0.4817815124988556, 0.9150925278663635, -0.8212217688560486, -0.8739755153656006, -0.6575671434402466, 0.297446608543396, 1.0190706253051758, 0.36078283190727234, 0.8715600967407227, 0.49050185084342957, 0.3534814119338989, -0.09964101761579514, 0.49610933661460876, -1.0659503936767578, -0.7965732216835022, -0.7937098145484924, -1.3224115371704102, -0.2389668971300125, -0.32517415285110474, 0.2552519142627716, 0.650496244430542, -0.07272391766309738, 0.11135361343622208, 1.534313440322876, -0.4701348543167114, -0.6972801089286804, 0.10937788337469101, -0.017112670466303825, -0.6944504976272583, 0.4863497316837311, 1.2129989862442017, -1.1471649408340454, -0.4868408739566803, -0.3116022050380707, 0.21453386545181274, -0.01157393865287304, 0.15434256196022034, -0.08267606794834137, -1.1573127508163452, -0.025639090687036514, -0.41946521401405334, 1.2613097429275513, -0.1153738796710968, -0.43451380729675293, -0.2442512810230255, 0.1904660016298294, 1.1428120136260986, 0.11201369762420654, -0.0910283774137497, 0.604637861251831, -0.8298274278640747, -0.36515524983406067, -0.001454292330890894, 0.6983041763305664, 0.30537039041519165, -0.6903519034385681, -0.38481366634368896, -0.44550174474716187, 0.15679886937141418, -0.41776925325393677, 1.0166772603988647, -0.03972269967198372, 0.9172707200050354, 0.730566143989563, -0.04042527824640274, 1.3552414178848267, -0.04180275276303291, 0.1789996325969696, -1.5463923215866089, 0.0440177321434021, 0.6074672937393188, 1.289053201675415, 0.4022291600704193, 0.4073910415172577, 0.3652211129665375, 0.2859830856323242, 0.25873199105262756, 0.34642836451530457, 1.4635009765625, -0.3324078321456909, -0.2640073597431183, -0.8345947861671448, -0.17312756180763245, 0.49283576011657715, -0.5038012862205505, 0.10571122169494629, 0.40734076499938965, -0.9205392003059387, -0.6124093532562256, 1.0202897787094116, 0.5651392936706543, -0.190519317984581, -0.30073410272598267, 0.5197485089302063, 0.6410068273544312, -0.32656189799308777, 0.3523159325122833, -0.3382169008255005, -0.019628500565886497, 0.7419619560241699, -0.9116501808166504, -0.11660368740558624, 0.3985241651535034, 0.25039899349212646, 0.2215544879436493, -1.1005477905273438, 0.6351248025894165, -0.6967925429344177, 0.4886408746242523, 0.6457164883613586, -0.41566532850265503, -0.26233622431755066, -0.19324378669261932, -0.3678933382034302, -0.4117855727672577, -0.11451300978660583, 1.1361122131347656, -0.8388757705688477, -0.003810744732618332, 0.16889502108097076, -0.4287286102771759, -0.03302459791302681, -0.5681619644165039, 0.10420253127813339, 0.018733320757746696, -0.3061307966709137, 0.28949257731437683, -0.12010101228952408, -0.28582999110221863, 0.9874975681304932, 0.38689878582954407, 0.41887134313583374, 0.33644190430641174, -0.06173355132341385, -1.2321646213531494, 0.26433050632476807, 0.3327901363372803, 0.29385489225387573, -0.5466154217720032, -0.3218599259853363, 0.18971215188503265, 0.2431110292673111, 0.32123681902885437, -0.18137751519680023, 0.5773425698280334, 0.42270809412002563, 0.08299166709184647, -0.005475040525197983, 0.5442029237747192, 0.7967174053192139, 1.0974897146224976, 0.31037604808807373, -0.5107350945472717, -0.6920328140258789, 0.7599009275436401, -1.1053725481033325, 0.3677870035171509, 0.6243224143981934, 0.3077906370162964, 1.452190637588501, -1.414576768875122, -0.3339058458805084, 1.1383452415466309, -0.02856897935271263, 0.1723535805940628, 0.9221097826957703, -0.29484930634498596, 0.19147072732448578, 0.7251675128936768, -0.04227123409509659, -0.3312089443206787, 0.28484925627708435, -0.2568439245223999, 0.1247042566537857, 0.707419216632843, -0.8706649541854858, 1.0892256498336792, -0.9065878391265869, 0.10057529807090759, 0.37098589539527893, -0.595517635345459, 0.0033118044957518578, 0.9668292999267578, 0.23405961692333221, 2.0897200107574463, -0.044692233204841614, -1.0099889039993286, -0.33169856667518616, -1.05536949634552, 0.1105763167142868, -0.40325650572776794, -0.07456421852111816, -1.0089918375015259, -0.10340932011604309, -0.17330974340438843, 1.236624836921692, -0.17315317690372467, -0.3295123279094696, -0.23740200698375702, -1.3204163312911987, 0.8375997543334961, 0.5611581802368164, 0.8501497507095337, 0.08309689909219742, 0.2600792348384857, -0.22276929020881653, 0.6457537412643433, -0.803598165512085, -0.4168379306793213, 0.4536695182323456, 0.10178090631961823, -0.4045838713645935, -0.9817925095558167, -0.7376807332038879, 0.48425719141960144, 0.6174507141113281, 0.2804722785949707, -0.13721057772636414, 1.2959504127502441, 1.4206558465957642, -0.4971480369567871, -0.36437830328941345, 0.2375422716140747, -0.43931180238723755, 0.3604864776134491, 0.06438001245260239, 0.014769896864891052, -0.4667840898036957, -0.2578728199005127, -1.8778860569000244, 0.7254621982574463, 0.04039423167705536, -0.647962749004364, 0.9022120833396912, 0.5083907842636108, 0.8983566164970398, 0.343403697013855, -0.17335934937000275, 0.2680499851703644, -0.3805578351020813, 0.28289666771888733, -1.0661827325820923, 0.44932445883750916, 0.37774139642715454, 0.22929534316062927, -0.03427205607295036, 0.5294992327690125, -0.02796429954469204, 0.2571409046649933, -0.25353607535362244, 0.312057226896286, 0.3098283112049103, 0.2899710536003113, 0.36159849166870117, -0.9084604382514954, 0.30210891366004944, 0.20306162536144257, -1.2015718221664429, -0.3122355043888092, 0.06207922473549843, 0.20694346725940704, -0.10975635051727295, -0.17580220103263855, -0.6764608025550842, -0.2112409621477127, -0.15833128988742828, -0.3303886651992798, 1.1021825075149536, -0.1783955693244934, -0.060295332223176956, -0.119082510471344, -0.26175767183303833, -0.1990475058555603, -0.7852910161018372, 0.2575516104698181, 0.42806681990623474, -1.3749271631240845, 0.4464503526687622, 0.044432323426008224, -1.307815670967102, -0.08908350020647049, 0.06941116601228714, -0.22991852462291718, -0.887955367565155, -1.3770097494125366, -0.5461810827255249, 0.2413392812013626, 0.5913599729537964, 0.18548917770385742, 0.9698053598403931, 0.6039881110191345, -1.0282772779464722, 0.2513272762298584, 0.08431645482778549, -0.39323073625564575, -0.5659304261207581, -1.3987494707107544, 0.9688037633895874, 0.16237930953502655, 0.33771812915802, 0.053981952369213104, 0.46548962593078613, -1.7569442987442017, -1.079461693763733, -0.7865216135978699, -0.6738104820251465, 0.8282499313354492, 1.0810184478759766, -1.0311949253082275, 0.9775528311729431, 0.4882471263408661, -0.10501887649297714, 0.4616177976131439, 0.1364404857158661, -0.35298681259155273, 0.667799174785614, 0.5086526870727539, 0.1935177743434906, 0.33970293402671814, 0.7667389512062073, 0.14807632565498352, 1.1171622276306152, 0.49725115299224854, 0.9919506907463074, -0.8068721294403076, 0.0367405079305172, 0.12000873684883118, 0.888752818107605, -0.759666919708252, -0.5284726023674011, -0.2629527747631073, -0.7574398517608643, -0.6381853818893433, 0.07703474164009094, 0.8887221217155457, -0.7279006242752075, -0.3858165144920349, -0.9338157773017883, -0.009210814721882343, -0.44232213497161865, 0.16825395822525024, -0.021302901208400726, -0.3699137270450592, -0.029482970014214516, -0.016064990311861038, 0.13102921843528748, -1.6792227029800415, 0.5432923436164856, 0.2594987750053406, -0.2290014922618866, -0.48774588108062744, 0.04015057906508446, 0.35022470355033875, 0.34959736466407776, -0.921046793460846, 1.2992233037948608, 1.166338562965393, -0.3496823012828827, -0.23683665692806244, 0.17138850688934326, 0.19379019737243652, 0.7091178894042969, -0.6571555733680725, -0.7051215767860413, -0.8479861617088318, 1.521591067314148, 0.5752334594726562, 0.4290917217731476, -0.10900019854307175, 0.3590586185455322, -0.1948472559452057, 0.5129032731056213, 1.0497218370437622, -1.845421314239502, -0.48032549023628235, 0.892267107963562, 0.5477249026298523, -0.4100226163864136, 0.666359007358551, 0.8484897017478943, 0.37598469853401184, -0.4356555640697479, 0.5315659642219543, 0.8000906109809875, -1.07918381690979, 0.1722540557384491, 0.07195910066366196, -0.5453694462776184, 0.01713947020471096, -0.10452780872583389, -1.2628161907196045, 0.263040155172348, -0.24586473405361176, -1.2590500116348267, -0.04637924209237099, -1.1447136402130127, -0.273425817489624, 0.3943072259426117, -0.11115789413452148, -0.4059869349002838, -0.30351555347442627, 1.0854320526123047, -0.42286795377731323, 0.09063706547021866, 0.15780837833881378, -0.15056924521923065, 1.021140694618225, -0.4239732325077057, 0.1713642179965973, -1.6741896867752075, -0.041530758142471313, 0.48344138264656067, 0.331180214881897, -0.33085307478904724, 0.03912918642163277, 0.4545123279094696, -0.24725428223609924, -0.5471403002738953, -0.16926723718643188, -0.3238980770111084, -0.3628655970096588, -0.5787107348442078, -0.8156455755233765, 0.10060302168130875, -0.1225171834230423, 0.708730936050415, -0.16518259048461914, -0.9924581050872803, -0.12102866917848587, 0.4795481562614441, -0.4622722864151001, 1.0159865617752075, -0.5144180655479431, 0.4417477548122406, -0.027138765901327133, 0.02364754118025303, -0.14622259140014648, -0.16675874590873718, 0.3006170690059662, -0.03296886384487152, 0.30412158370018005, -0.3398270010948181, -0.1329679936170578, -0.44603997468948364, -1.0634087324142456, 0.07806043326854706, 0.21886536478996277, -0.32974711060523987, 0.06151226907968521, -0.9421772360801697, -0.9721459746360779, -0.5306875109672546, -0.18040968477725983, 0.5190033912658691, 0.1668255776166916, -0.31894734501838684, -0.14098721742630005, -1.0151668787002563, 0.6395937204360962, 0.1170126423239708, -0.15748964250087738, -0.22580507397651672, 1.3275666236877441, 1.7592430114746094, 0.671608567237854, 0.18354961276054382, -0.2499343603849411, 0.169184148311615, -1.0514997243881226, -0.5035713315010071, -0.6103329062461853, -0.3973672688007355, -0.19403167068958282], [0.8913699984550476, 1.7378484010696411, -2.3055267333984375, -0.7541120648384094, 0.7060104012489319, -0.18602517247200012, 1.349100112915039, -0.3970383107662201, -0.19346076250076294, -0.9383531212806702, -1.0003197193145752, -0.5026552081108093, 0.06803261488676071, 0.9337188601493835, 0.35512575507164, 0.5987035036087036, 1.2695376873016357, -0.1213163360953331, 0.13716639578342438, 0.521019697189331, 0.41854166984558105, -0.8378854990005493, 0.3463168144226074, 0.0784609392285347, 0.3153357207775116, 0.7909010052680969, -1.1547534465789795, -1.160088300704956, -0.9897585511207581, -0.7046907544136047, 1.1862223148345947, -0.6353041529655457, 0.09226186573505402, -0.6439980864524841, -1.2046138048171997, -1.5900847911834717, 1.425357699394226, 1.2139792442321777, 0.41745302081108093, 0.06838709115982056, 1.259320855140686, -0.7885478138923645, 0.2379438430070877, -1.6946916580200195, -0.9954556822776794, -0.22412286698818207, 0.6607784032821655, 0.09358394891023636, -0.3460289239883423, -0.8611909747123718, 0.8874953389167786, -0.5452931523323059, 0.6305255889892578, 1.1227517127990723, 0.9605259895324707, -0.9680730700492859, 0.016344327479600906, -0.6218119263648987, 0.18086479604244232, -0.0644194632768631, 1.386039137840271, 0.699296236038208, -0.55142742395401, 1.2531068325042725, 0.006143223028630018, -0.8580607175827026, 0.06615771353244781, 0.49365323781967163, 0.04904348403215408, 0.7438593506813049, -0.013345584273338318, 0.549801766872406, -0.19253499805927277, 0.3089815676212311, -1.1130740642547607, 0.17248770594596863, 0.8490884900093079, 0.9302887320518494, 0.334812730550766, 0.7701945304870605, 0.2658489942550659, 0.37084612250328064, 0.6266513466835022, -0.051463428884744644, 0.7371729612350464, -0.36589315533638, 0.40387916564941406, -0.15942052006721497, -0.42133307456970215, 1.466940999031067, 0.12377532571554184, -0.5160478353500366, 0.7088815569877625, 0.24750731885433197, -0.6860157251358032, -0.5758151412010193, 0.15425923466682434, 0.028941692784428596, -1.0712807178497314, 0.01770324632525444, -0.8709589242935181, -0.7615352272987366, -0.13367155194282532, 0.26384881138801575, -0.627188503742218, 1.2637583017349243, 0.5649892687797546, -0.3831440806388855, -0.3059323728084564, -0.1583789885044098, -0.10487698018550873, 0.7274715900421143, -1.4900693893432617, -1.002395749092102, -0.021867146715521812, 1.1120753288269043, 1.5394816398620605, -0.7578985095024109, 0.5367583632469177, 0.3543476462364197, -0.9895948171615601, -0.9907037615776062, -0.3796980679035187, 0.6172290444374084, 0.26886487007141113, 0.5298639535903931, -0.44655755162239075, -0.19901424646377563, 0.3387387990951538, -0.08768688142299652, 0.7983332276344299, 0.12428003549575806, -0.8580807447433472, 0.7475330829620361, -0.7621252536773682, 1.350935459136963, -0.5147169828414917, -0.8801290988922119, -0.15768858790397644, 0.28197216987609863, -0.06491564959287643, 0.26481199264526367, -0.5231205224990845, -0.7678371667861938, -0.1496831327676773, -0.27804815769195557, 0.0853482112288475, -0.19042731821537018, -0.765383780002594, 0.1743556410074234, -0.9437412619590759, 0.14255446195602417, 0.3790622353553772, 0.9246425628662109, 0.585536003112793, -0.5746858716011047, -0.562934160232544, -0.2944452166557312, 0.14676779508590698, 0.41513699293136597, 0.7196233868598938, -0.04341062903404236, -1.393489122390747, 1.2009319067001343, 0.20192310214042664, -0.9092013835906982, -0.001955387182533741, 1.3909872770309448, -0.5585278868675232, 0.41788366436958313, 0.2480548471212387, -0.984287440776825, -0.4718625545501709, 0.06032513082027435, 0.47324150800704956, -0.3380677402019501, 0.6499307751655579, -0.36874204874038696, -0.9705155491828918, -0.7886980772018433, 0.7174561619758606, -0.16492217779159546, 0.17580468952655792, 0.016223039478063583, -0.09588003903627396, -1.1651145219802856, 0.08745771646499634, -0.8092997670173645, -0.658206045627594, -0.2555049955844879, -1.0298823118209839, 0.04038205370306969, -0.17227108776569366, 0.41253623366355896, -0.6047770977020264, -1.1143232583999634, 0.27675798535346985, -0.9469994902610779, -0.1039169654250145, 0.10512898862361908, -0.07511366158723831, -0.36428359150886536, -1.3384984731674194, 0.10717035830020905, -0.12035264819860458, 0.7193917036056519, -1.2921006679534912, 0.770207405090332, -0.5927860140800476, -0.7457613945007324, 1.1666733026504517, 0.20144742727279663, -0.3599279522895813, 0.7405065298080444, 0.3251052796840668, -1.6449607610702515, -0.021220285445451736, 0.7790067791938782, -0.7014991044998169, -0.009496885351836681, 0.1659967303276062, -0.023958006873726845, 1.672978162765503, 0.4672296941280365, 0.7683281302452087, -0.2766222059726715, -0.3826819956302643, -0.4068097770214081, -0.7920375466346741, -0.32338204979896545, -0.1747092306613922, -1.2151618003845215, 0.2117040902376175, -0.08543073385953903, -0.9432520270347595, 0.4488680362701416, 0.18774265050888062, 0.20980463922023773, 0.3746863603591919, 0.7229803204536438, 0.2591606080532074, 0.7067131400108337, -0.7224551439285278, -0.211997389793396, -0.7352244853973389, -0.15666133165359497, 0.48957905173301697, -0.22642746567726135, 0.4867461919784546, 0.9981966614723206, 0.8530920743942261, -0.11704712361097336, -0.08540478348731995, -0.3690020442008972, 0.37538477778434753, -0.39769038558006287, -0.7631992101669312, -0.3635822534561157, -0.3860630989074707, 1.6274988651275635, 0.7882596254348755, -0.994354784488678, 0.4607807993888855, 0.0675194188952446, -0.13828182220458984, -0.15421690046787262, -0.8422175049781799, -0.35031065344810486, 0.2647970914840698, -0.14271238446235657, -0.10023718327283859, 0.20058561861515045, 0.21787302196025848, 0.5442959666252136, -0.46912336349487305, -0.7701863050460815, -0.41458311676979065, -0.029848521575331688, -0.37950050830841064, 1.065511703491211, 0.005510070361196995, -1.418949007987976, -0.6818097829818726, 0.2589391767978668, 0.525071382522583, -0.05481255427002907, -0.6109985709190369, 0.23502376675605774, 0.030100692063570023, -0.446687251329422, 0.568718433380127, 0.14085742831230164, -0.1580393761396408, 0.879850447177887, -0.11470922827720642, 0.49073144793510437, 0.8503913283348083, -0.5714831948280334, -0.48212140798568726, -0.6049574613571167, 1.208038091659546, 1.5614302158355713, 0.6399955153465271, 1.7863223552703857, 0.7146025896072388, -0.26957762241363525, -0.2798800468444824, -0.5066392421722412, -0.8197265863418579, -0.8857371211051941, -1.009718656539917, -0.6148656606674194, 0.5084603428840637, 0.7224730253219604, 0.5232752561569214, 0.5063661932945251, -0.14741374552249908, 0.5918586254119873, 1.271007776260376, 0.07666820287704468, -0.6240354180335999, 0.3978300988674164, -0.4943723678588867, -0.916944146156311, 0.3630312979221344, 0.9370750188827515, -1.2931941747665405, -0.43602287769317627, 0.4019140303134918, 0.02266061305999756, 0.4164589047431946, -0.5130179524421692, 0.5501143336296082, -1.5663458108901978, -1.0152854919433594, -0.453948438167572, 1.3870396614074707, -0.0017915188800543547, -0.5200271606445312, -0.031218716874718666, 0.4169663190841675, 0.8709995746612549, 0.6530522704124451, -0.5395250916481018, 0.9154775142669678, -1.238786220550537, -0.5276440978050232, -0.11407288163900375, 0.6811766028404236, 0.3741912841796875, -0.4606873393058777, -0.6544368863105774, -0.6518288254737854, -0.32595276832580566, 0.2770649790763855, 0.5684312582015991, -0.12743906676769257, 1.2408217191696167, 0.7427777051925659, -0.24235382676124573, 0.570228099822998, 0.2989856004714966, -0.23141752183437347, -1.3488614559173584, 0.4971219003200531, 0.32026419043540955, 1.091836929321289, 0.8897293210029602, -0.028963664546608925, -0.029059674590826035, -0.286973774433136, -0.019175661727786064, 0.25105541944503784, 1.1947767734527588, 0.48251092433929443, 0.06105252355337143, -0.7863543629646301, -0.47333192825317383, 0.17573761940002441, 0.04827194660902023, -0.3319362699985504, 0.7733578085899353, -0.6714543104171753, -0.7641770839691162, 0.7061965465545654, 0.08724724501371384, -0.17841275036334991, 0.04387335479259491, -0.10219649970531464, 0.39153626561164856, -0.6789893507957458, 0.012913629412651062, -0.4890577495098114, -0.18973146378993988, 0.48123642802238464, -0.5089981555938721, -0.4468183219432831, 0.5153235793113708, 0.6450312733650208, 0.7410792112350464, -0.8563901782035828, 0.46278852224349976, -0.6632112264633179, 0.9162367582321167, 0.13706155121326447, -0.2572477459907532, 0.151563361287117, 0.4799099862575531, -0.7289667725563049, 0.33890435099601746, 0.27274462580680847, 1.0833582878112793, -0.7489359974861145, 0.8753601908683777, 0.47205135226249695, -0.3732970952987671, 0.19513723254203796, 0.38592422008514404, -0.22993424534797668, 0.638239324092865, -0.1689947247505188, -0.03923961892724037, -0.08836168050765991, -0.1804850995540619, 0.6139649748802185, 0.7033701539039612, 0.24136534333229065, 0.9770304560661316, -0.22303688526153564, -1.4843803644180298, 0.3830033540725708, 0.6748286485671997, -0.007895240560173988, -0.5845018625259399, -0.2759828269481659, -0.019358772784471512, 0.06554754078388214, 0.9689454436302185, 0.152427539229393, 0.7965729236602783, 0.24335481226444244, -0.18341736495494843, 0.10324081778526306, 0.7247920632362366, 0.7057753801345825, 0.5546377897262573, -0.09807553887367249, -1.447099208831787, -0.7722687125205994, 0.5206040740013123, -0.3987002670764923, 0.5525725483894348, 0.29887092113494873, 0.2004896104335785, 1.2148003578186035, -1.2629188299179077, 0.46234142780303955, 0.6680520176887512, 0.1246630921959877, 0.647970974445343, 0.7730740308761597, -0.07374142110347748, -0.3341886103153229, 0.4832248091697693, 0.3595735728740692, -0.4307704567909241, -0.49425265192985535, -0.2763773202896118, -0.3648250102996826, 0.6396977305412292, -0.5738548636436462, 0.024096062406897545, -1.0017273426055908, -0.5295014977455139, 0.3205699026584625, -0.4379885196685791, 0.49707603454589844, 0.8117730617523193, 0.4155644476413727, 1.5972630977630615, 0.1601366251707077, -0.8872804641723633, -0.455457866191864, -0.6657041311264038, 0.9311821460723877, -0.833957314491272, -0.1756879836320877, -1.101116418838501, -0.5356668829917908, -0.16222819685935974, 0.8516557216644287, -0.4209659993648529, -0.2844267189502716, -0.3502655327320099, -0.8380461931228638, 0.7013880610466003, 0.910142183303833, 0.8962969183921814, 0.6758405566215515, 0.37478727102279663, -0.15352463722229004, 0.4273649752140045, -0.11495356261730194, -0.5398867130279541, 0.11622034013271332, -0.38275837898254395, -0.11494371294975281, -0.6652233600616455, -0.7232229113578796, 0.7358915209770203, 0.734248161315918, 0.44778844714164734, 0.3506163954734802, 0.36921122670173645, 1.0420838594436646, -0.2090648114681244, -0.39135172963142395, 0.03469313681125641, -0.5725078582763672, 0.8322287797927856, 0.32118743658065796, -0.11406350135803223, -0.2975514829158783, -0.10094214230775833, -1.4575694799423218, 0.3257657587528229, -0.3731728792190552, -1.1780362129211426, 0.9346336126327515, 0.6396148800849915, 0.2699906826019287, 0.5805137753486633, -0.24534165859222412, 0.19132304191589355, -0.09748221188783646, -0.44325023889541626, -0.9793424606323242, 0.46499326825141907, 0.4813758432865143, -0.31984853744506836, -0.41467994451522827, -0.1384110450744629, 0.3561270534992218, -0.07052313536405563, -0.46171072125434875, -0.23569989204406738, 0.5621100664138794, 0.6822329759597778, -0.44531142711639404, -0.7301889657974243, 0.6909453868865967, 0.19543172419071198, -0.04522079601883888, -0.18666468560695648, 0.730877161026001, 0.5635621547698975, 0.43798333406448364, 0.17517594993114471, -0.8503175377845764, -0.26739874482154846, -0.05868593975901604, -0.354198157787323, 0.945786714553833, 0.3974517583847046, 0.06533879041671753, -0.7832220196723938, -0.6287528276443481, 0.09607543051242828, -0.7076398134231567, 0.5834692120552063, 1.0171993970870972, -1.2232600450515747, 0.16562993824481964, 0.07649075984954834, -0.6907128095626831, 0.10264845937490463, -0.3498172163963318, -0.49741432070732117, -0.790151059627533, -0.985318660736084, -0.15569010376930237, 0.2799031436443329, 0.20468086004257202, -0.05573740974068642, 0.982772707939148, 0.7529550194740295, -1.0165101289749146, 0.1350286900997162, -0.011571228504180908, -0.8786577582359314, -0.1600421816110611, -1.1013938188552856, 0.8211843371391296, -0.3747549057006836, 0.6133813261985779, -0.36288437247276306, 1.0755324363708496, -1.5283653736114502, -0.7744671106338501, -1.156713604927063, 0.3762564957141876, 0.42208433151245117, 1.1567919254302979, -1.2947221994400024, 1.19792902469635, 0.45085465908050537, -0.5577513575553894, 0.191306471824646, -0.48145291209220886, -0.25323620438575745, 0.6512122750282288, 0.44371920824050903, 0.6928382515907288, 0.19187140464782715, 0.8160338997840881, 0.153778538107872, 0.9664729833602905, 0.30886322259902954, 1.3457996845245361, -0.9307011961936951, 0.01501499954611063, 0.4465496838092804, 0.9524150490760803, -0.6175209879875183, -0.5420951247215271, 0.06445128470659256, -0.429208368062973, -0.9230215549468994, 0.3623304069042206, 1.1738455295562744, -0.7216712832450867, 0.4074177145957947, -0.35842737555503845, 0.3399367332458496, -0.9489379525184631, 1.118515968322754, 0.0476544052362442, -0.4069465696811676, -0.29367971420288086, -0.12596012651920319, -0.4390687048435211, -1.434456467628479, 0.05808534845709801, 0.45259028673171997, -0.5523822903633118, -0.9484094381332397, 0.2994271516799927, 0.3228543698787689, 0.6134087443351746, -0.6458325982093811, 0.9082740545272827, 0.4861936867237091, -0.7724004983901978, -0.12557215988636017, 0.2474605292081833, 0.16382093727588654, 0.3031148314476013, -0.5293582081794739, -0.7161017656326294, -1.679877519607544, 1.172871470451355, 0.3982206881046295, 0.1957545280456543, -0.6716163754463196, 0.19442418217658997, -0.39079806208610535, 0.329924076795578, 1.3480204343795776, -1.145321011543274, -0.7236579060554504, 0.9114865660667419, 0.5104880928993225, -0.4622671604156494, 0.35176244378089905, 1.0680603981018066, 0.6065831184387207, -0.08658374100923538, 0.11145805567502975, 0.6107749342918396, -0.5968903303146362, 0.904288113117218, 0.20267491042613983, 0.25723156332969666, 0.030290931463241577, -0.3797614872455597, -1.6485092639923096, 0.14509359002113342, -0.611045777797699, -0.5335115194320679, 0.383465051651001, -1.140418291091919, -0.11191031336784363, 0.40748509764671326, 0.11749330163002014, 0.2003621608018875, -0.03812215104699135, 0.4484793245792389, -0.8003684282302856, 0.7141209244728088, 0.5841391086578369, 0.11170599609613419, 0.7590853571891785, -0.16503967344760895, -0.150737926363945, -1.4913231134414673, -0.1570160686969757, 0.45480579137802124, 0.5125664472579956, -0.4771724045276642, -0.1818920224905014, 0.8693300485610962, -0.4127328097820282, -0.08059894293546677, -0.19141831994056702, -0.9977365732192993, 0.16519273817539215, -0.6178665161132812, -0.8593533039093018, 0.49434125423431396, 0.14681139588356018, 1.0043948888778687, -0.6085758805274963, -1.3166842460632324, -1.0785294771194458, 0.7590958476066589, -0.42448845505714417, 1.1226938962936401, -0.25897687673568726, 1.0703709125518799, -0.04388560727238655, -0.047876276075839996, -0.29559728503227234, -0.2909562587738037, 0.6286367177963257, -0.12176871299743652, 0.2774636149406433, -0.019595906138420105, 0.26632386445999146, -0.34321868419647217, -0.6976439356803894, -0.026247022673487663, 0.11628513038158417, -0.4845993220806122, 0.03222104534506798, -0.6234474182128906, -0.9774419069290161, -0.8928912281990051, -0.17129185795783997, 1.3077657222747803, 0.34707605838775635, 0.12906785309314728, 0.034975823014974594, -1.3373180627822876, -0.01795428805053234, 0.40020260214805603, -0.886678159236908, -0.06633341312408447, 1.489339828491211, 1.3989914655685425, 0.44462835788726807, 0.2264980673789978, -0.11256567388772964, 0.8555609583854675, -0.731156587600708, 0.26789072155952454, -1.1883536577224731, -0.05011110380291939, -0.43024730682373047], [0.38617831468582153, 1.48563551902771, -2.437533378601074, -0.34590286016464233, 0.9808434844017029, 0.023377761244773865, 1.846603274345398, -0.6154314279556274, 0.4199925363063812, -0.5051085948944092, -0.5181677341461182, -0.8254944086074829, 0.04138365015387535, 0.7055740356445312, 0.19605578482151031, 0.5286830067634583, 1.384753704071045, -0.3806757926940918, 0.47467514872550964, 1.456534504890442, 0.5167080760002136, -0.49539750814437866, 0.05900140851736069, -0.16595377027988434, -0.1793506145477295, 0.0916009321808815, -1.2120301723480225, -0.8817811012268066, -0.9173277616500854, -0.46324706077575684, 0.5964342951774597, -0.9386832118034363, -0.2667962908744812, -0.348084956407547, -1.4167814254760742, -0.39364492893218994, 1.5788192749023438, 1.115721344947815, 0.5798823237419128, -0.20157518982887268, 1.8822492361068726, -0.5234207510948181, 0.5643120408058167, -1.537546157836914, 0.12043315172195435, -0.537926971912384, 0.5583755373954773, -0.789177656173706, -0.03140610456466675, -0.34554073214530945, 0.5040091872215271, -0.9666668176651001, 0.492995947599411, 0.8796382546424866, 0.8633916974067688, -0.26175639033317566, 0.5101714730262756, 0.20454426109790802, 0.2295796275138855, -0.9012109637260437, 1.304155707359314, 0.27137503027915955, -0.2093910425901413, 1.1527858972549438, -0.07590873539447784, -0.4523542821407318, -0.08253451436758041, 0.2304966151714325, -1.174681305885315, 0.5065271258354187, 0.1148173063993454, -0.04172405228018761, -0.6156381964683533, 0.24551023542881012, -1.0614315271377563, 0.835575520992279, 0.47929033637046814, 0.49084916710853577, 0.7339455485343933, 0.8197098970413208, -0.7185752987861633, -0.6087784767150879, 0.1748037189245224, -0.7014462947845459, 0.01059647835791111, 0.24460414052009583, 0.7010740637779236, -0.6089053153991699, -0.7510234117507935, 1.9173486232757568, 0.35121163725852966, 0.11448303610086441, 0.2811397910118103, 0.019602790474891663, -0.4523455798625946, -0.941430926322937, 0.9341944456100464, 0.18776829540729523, -1.2250508069992065, -0.30399850010871887, -1.3655320405960083, -0.9765754342079163, 0.05191933363676071, -0.026754140853881836, -0.10770289599895477, 1.0508031845092773, 0.617986261844635, -0.7553985118865967, -0.5639901161193848, -0.07351063936948776, -0.4633345305919647, -0.10372402518987656, -0.6691278219223022, -0.9907609820365906, -0.1168130561709404, 1.8779805898666382, 1.299603819847107, -0.2049073427915573, 0.2663704752922058, 0.7771225571632385, -0.19439885020256042, -0.5796508193016052, -0.5455191731452942, 0.6276376843452454, 0.4439205527305603, 0.3730281591415405, -0.5722305178642273, -0.30946752429008484, -0.27612796425819397, 0.30700060725212097, 0.7041693329811096, 0.3296336233615875, -0.18538540601730347, 1.009043574333191, -1.094872236251831, 1.4692668914794922, -0.9242660999298096, -0.2553626298904419, -0.4031372666358948, 0.00522086676210165, 0.6928163766860962, -0.0850568413734436, -0.4364303946495056, 0.06856989115476608, 0.4313875138759613, -0.6315233707427979, -0.0542399100959301, -0.23184122145175934, -0.7976127862930298, 0.4278038442134857, -1.130829930305481, 0.5452008843421936, 0.534246027469635, 0.6211087703704834, 0.34575173258781433, -0.22919844090938568, 0.06761251389980316, 0.2727018892765045, 0.4744742214679718, 0.08249235153198242, 1.1252833604812622, -0.18154677748680115, -0.9082026481628418, 1.182396411895752, 0.34078559279441833, 0.15411068499088287, -0.28605207800865173, 1.034732699394226, 0.4773235619068146, 1.0426284074783325, -0.43711167573928833, -0.7553830146789551, -0.10090954601764679, 0.22115816175937653, 0.2431911826133728, -0.46128368377685547, 1.2029961347579956, 0.010775575414299965, -1.6923508644104004, -0.9306754469871521, 0.46078842878341675, -0.6860076189041138, 0.3976761996746063, -0.19344420731067657, 0.7066640257835388, -0.4257509410381317, 0.8798708915710449, -0.3373226523399353, -0.4159725606441498, -0.5014632344245911, -0.9884420037269592, -0.25105154514312744, -0.4868205487728119, 0.35105255246162415, -0.4408798813819885, -0.8093105554580688, 0.48663654923439026, -1.3914296627044678, -0.2845930755138397, -0.15101191401481628, -0.49303120374679565, -0.2784130275249481, -0.9648770093917847, 0.4609927833080292, -0.6375251412391663, 1.0787817239761353, -1.3841910362243652, 1.0995121002197266, -0.38145703077316284, 0.14750880002975464, 1.0965808629989624, 0.10487987846136093, -0.6855744123458862, 0.8633438348770142, -0.3472152352333069, -1.2198371887207031, -0.025164218619465828, 0.37472182512283325, -0.4936450719833374, 0.37301456928253174, 0.1725267916917801, 0.15640409290790558, 0.7230570912361145, 0.19411465525627136, 0.6412382125854492, -0.3496626317501068, -0.9781731963157654, -0.5920968055725098, -0.8986081480979919, 0.5821306109428406, -0.3988072872161865, -0.5335614085197449, 0.37856051325798035, -0.06920439004898071, -1.072512149810791, -1.7210841178894043e-05, -0.2950846254825592, 0.6941792964935303, 0.383868545293808, 1.3803482055664062, 0.9501574039459229, 0.09652295708656311, 0.05214676633477211, -0.6310020685195923, -0.8417701125144958, 0.9662083983421326, 0.8436211943626404, -0.2053397297859192, -0.24061600863933563, 0.8130329251289368, 1.4425125122070312, -0.14762037992477417, 0.3771393895149231, 0.40115025639533997, -0.28423574566841125, -1.089234471321106, -0.4098004996776581, 0.6646834015846252, -0.4222484529018402, 1.382560133934021, 0.8585498332977295, -0.5633418560028076, -0.4261057674884796, -0.21950657665729523, -0.5822968482971191, -0.24201828241348267, -1.006330132484436, -0.3751603662967682, -0.29312169551849365, -0.030725345015525818, 0.11673489958047867, 0.4570985734462738, 0.2785445749759674, 0.5146393179893494, -0.07683751732110977, -0.9064144492149353, -0.3506612777709961, 0.2918896973133087, 0.1722971647977829, 1.015601396560669, -0.026907160878181458, -1.6975904703140259, -0.0009888315107673407, 0.13004599511623383, 0.7746536135673523, 0.4295509159564972, -0.3994118869304657, 0.1325792819261551, 0.04263812676072121, -0.24484284222126007, 0.4382924437522888, 0.1766224503517151, -0.13253453373908997, 0.20354413986206055, -0.6296511292457581, 0.8346594572067261, 1.145371913909912, -1.167689323425293, -0.7496680021286011, -0.3734170198440552, 0.2602887749671936, 1.6039748191833496, 0.5239627361297607, 0.9435205459594727, 0.2685442566871643, -0.3520587980747223, -0.3043820559978485, -0.032022424042224884, -1.1010643243789673, -0.6249038577079773, -0.3252545893192291, -1.0561001300811768, -0.2242731899023056, -0.24672900140285492, 0.0694139152765274, 0.6030623316764832, -0.38073259592056274, 0.4390539526939392, 1.5146043300628662, -0.3958836495876312, -0.34644678235054016, 0.2504054307937622, 0.17365646362304688, -0.6997710466384888, 0.05707278102636337, 1.1505955457687378, -1.022451400756836, -0.7154358625411987, -0.31516557931900024, 0.5829870104789734, 0.5297279357910156, -0.11757608503103256, 0.5640925168991089, -1.859628677368164, -0.670680582523346, -0.3659370541572571, 1.3258405923843384, -0.5094713568687439, -0.15764164924621582, -0.3392273485660553, 0.13957074284553528, 0.9199427962303162, -0.3672716021537781, -0.5455644726753235, 0.8690212368965149, -0.48903268575668335, -0.7219529747962952, -0.1322767436504364, 0.5144235491752625, 0.7715868949890137, -0.3848249316215515, -0.4596341550350189, -0.7316585183143616, -0.5766631960868835, -0.3073839843273163, 0.46572479605674744, -0.2220887541770935, 0.5466582775115967, 0.17346477508544922, 0.3548968434333801, 0.6714382171630859, 0.6843281388282776, -0.4059765040874481, -0.9524338245391846, 0.07794854044914246, 0.8307563662528992, 1.1566035747528076, 0.2149200737476349, 0.3550342619419098, 0.7045952677726746, 0.10568004101514816, 1.112725019454956, 0.5534102320671082, 1.154318928718567, -0.28573355078697205, -0.22042635083198547, -0.7687734961509705, -0.25582191348075867, 0.05277499556541443, -0.14063064754009247, -0.18879255652427673, 0.16034245491027832, -0.9535959959030151, -0.9015564322471619, 0.9581417441368103, 0.7575202584266663, -0.23474520444869995, -0.5107262134552002, 0.5079891085624695, 0.1755456179380417, -0.08699148148298264, 0.38874751329421997, -0.5309665203094482, -0.05642811954021454, -0.015923356637358665, -1.2148417234420776, -0.35372889041900635, 0.686254620552063, 0.6928856372833252, 0.8094851970672607, -0.5614439845085144, 0.7820767760276794, -1.0673694610595703, 0.5867405533790588, 0.6364836096763611, -0.503552258014679, 0.25023382902145386, -0.05401746556162834, -0.5698136687278748, -0.17637062072753906, -0.1087222769856453, 0.9849066138267517, -0.9322993755340576, -0.09557217359542847, 0.2853280007839203, -0.4586007297039032, -0.22228780388832092, -0.5139912366867065, -0.298705518245697, 0.2616112530231476, -0.3347112834453583, 0.5358377695083618, 0.29094699025154114, -0.26927071809768677, 1.5329515933990479, 0.4226081371307373, 0.012576214969158173, 0.7094882726669312, 0.7338969707489014, -1.2693860530853271, 0.09777689725160599, 0.220565527677536, -0.1889936923980713, -0.885262131690979, -0.21361544728279114, 0.48004350066185, -0.6600780487060547, 0.5961093306541443, 0.21815374493598938, 0.48200738430023193, 0.31496796011924744, 0.13068798184394836, 0.3163221478462219, 0.8033883571624756, 1.1085835695266724, 0.9121147394180298, 0.14035092294216156, -0.8080419898033142, -0.3973745107650757, 0.13049061596393585, -1.4077552556991577, 0.3625073730945587, 0.7753920555114746, 0.3599702715873718, 1.3112843036651611, -1.4674456119537354, -0.5032567381858826, 0.5726309418678284, 0.29668113589286804, 0.8224745988845825, 0.9562662839889526, -0.6366238594055176, 0.15565472841262817, 0.5693874359130859, 0.07234436273574829, -0.6319422125816345, 0.4052915871143341, -0.20090055465698242, -0.7365095615386963, 0.2569323480129242, -0.9470497369766235, 0.5945621132850647, -0.025632474571466446, -0.6239302158355713, -0.14592081308364868, -0.9482000470161438, 0.16389359533786774, 0.31878483295440674, 0.5038381814956665, 2.026522397994995, -0.528113842010498, -0.9736077785491943, -0.007701309397816658, -1.0096204280853271, 0.25777485966682434, -0.5906752347946167, -0.43192389607429504, -0.729729413986206, 0.08311256021261215, -0.440502792596817, 0.8347567915916443, -0.22384367883205414, -0.5428155064582825, -0.5505965352058411, -1.196987509727478, 0.3520931303501129, 1.5522935390472412, 1.2244997024536133, 0.3169459104537964, -0.251657098531723, 0.45997175574302673, 0.28723177313804626, -0.8396236300468445, -0.35922059416770935, 0.23015232384204865, 0.13260596990585327, -0.00546632707118988, -1.1659839153289795, -0.7092186212539673, 0.5900591015815735, 0.40099769830703735, -0.16675949096679688, 0.9217649102210999, 1.3044192790985107, 0.9183385968208313, -0.4236249625682831, -0.3818928301334381, 0.38567695021629333, -0.6199917793273926, 0.4509182870388031, 0.8333762288093567, 0.022208325564861298, -1.1452006101608276, -0.6633715033531189, -0.9436110854148865, 0.5263415575027466, -0.23912300169467926, -0.9099996089935303, 1.466617465019226, 0.19942152500152588, 1.0638147592544556, 0.05837385728955269, -0.4470594823360443, 0.41922464966773987, -0.04147526994347572, 0.0033373553305864334, -1.144217610359192, 0.46715807914733887, 0.03347208723425865, -0.28328147530555725, -0.16584423184394836, 0.3510565161705017, 0.2628248929977417, 0.13969938457012177, 0.22179217636585236, 0.17067986726760864, 0.3970376253128052, -0.0683380737900734, -0.08143221586942673, -0.7843679189682007, 0.4212404191493988, -0.6411397457122803, -0.6207751035690308, 0.44619107246398926, 0.49316340684890747, 0.6638614535331726, -0.15958906710147858, -0.4260590970516205, -0.3960783779621124, -0.4363689720630646, -0.26089996099472046, 0.03443211689591408, 0.5612810850143433, 0.09753178805112839, 0.31714364886283875, -0.6410512924194336, -0.8868372440338135, -0.32851359248161316, -0.36098065972328186, 0.3814801573753357, 0.4893004298210144, -0.7761828899383545, 0.8267933130264282, 0.3757534921169281, -1.346042275428772, 0.34510043263435364, -0.5482414364814758, 0.28328055143356323, -0.94826740026474, -0.8232879042625427, -0.6421098113059998, 0.319399356842041, 0.40683430433273315, -0.5500730276107788, 1.2106685638427734, 0.851676344871521, -1.072363257408142, 0.4286487400531769, 0.056321822106838226, -0.6675920486450195, -0.15703117847442627, -0.8666642904281616, 0.6553717255592346, -0.03264366462826729, 0.6371857523918152, -0.5150893330574036, 1.7708638906478882, -1.5657718181610107, -1.1351090669631958, -1.1012966632843018, -0.48129716515541077, 1.348645567893982, 0.6740400791168213, -0.5417579412460327, 1.55141019821167, 0.4332934319972992, -0.37092724442481995, -0.19848394393920898, -0.19809603691101074, -0.4486660063266754, 0.11214735358953476, 0.4157518148422241, 0.755413293838501, 0.265652596950531, 0.8400713205337524, 0.15031707286834717, 0.8551929593086243, 0.3536970019340515, 1.1520421504974365, -0.7377668619155884, -0.4962274134159088, 0.67662513256073, 1.141656517982483, -0.8883094787597656, -1.3509119749069214, 0.07962431013584137, -0.5855759382247925, -0.7504224181175232, 0.010997457429766655, 0.5261212587356567, -0.27747124433517456, 0.29550373554229736, -0.5349626541137695, 0.39041557908058167, -0.5538346767425537, 0.2834344506263733, 0.3787389397621155, -0.5692672729492188, -0.9326086640357971, 0.4352043569087982, 0.019813179969787598, -2.0400590896606445, -0.19476871192455292, 0.2217884063720703, 0.2748597264289856, -0.9631636142730713, 0.723273754119873, 0.26465022563934326, 0.24796591699123383, -0.928719162940979, 1.831276774406433, 0.648521363735199, -0.6013936996459961, -0.09895090758800507, 0.4770621657371521, 0.3238699734210968, -0.028314605355262756, -1.0844281911849976, -0.610683023929596, -0.5302436947822571, 1.0866484642028809, 0.6686657071113586, 0.5781750679016113, -0.11200615763664246, 0.056450147181749344, 0.14151129126548767, -0.050536610186100006, 0.8884975910186768, -1.0295586585998535, -0.10073478519916534, 0.802046537399292, 0.25991296768188477, 0.09336449950933456, 0.11426091194152832, 0.8044854998588562, 0.5356305837631226, -1.1193467378616333, 0.21267719566822052, 0.22531747817993164, -0.7165660262107849, 0.7224134206771851, 0.22229596972465515, -0.38044148683547974, 0.13116604089736938, -0.3000544309616089, -1.106665849685669, 0.19378933310508728, -0.6328067779541016, -0.8087222576141357, 0.49216559529304504, -0.9703896045684814, -0.6124650835990906, 0.26234447956085205, 0.07306740432977676, 0.13408440351486206, -0.6823686361312866, 0.842372715473175, -0.1427888125181198, 0.09220343083143234, 1.0900667905807495, -0.008123229257762432, 1.6002135276794434, -0.49128836393356323, 0.3426190912723541, -1.6138867139816284, 0.27150505781173706, 0.35380280017852783, 0.24619849026203156, -0.22762037813663483, -0.20138025283813477, 0.4722098112106323, -0.051791712641716, -0.5892987251281738, -0.378377765417099, 0.1150154247879982, 0.12297994643449783, -0.030373353511095047, -1.2987785339355469, -0.08718402683734894, 0.26320067048072815, 0.9234421849250793, -0.020569531247019768, -0.6684070229530334, -0.9155912399291992, 0.23569168150424957, -0.6831536889076233, 0.6396180391311646, -0.6399670243263245, 0.41012704372406006, 0.6320397853851318, -0.4942606985569, -0.7826765179634094, -0.595834493637085, 0.9819990992546082, 0.18983829021453857, 0.1381787359714508, -0.4508000612258911, -0.12865839898586273, -0.08821304142475128, -0.915049135684967, 0.5985240936279297, 0.5098671913146973, -0.5325279831886292, 0.4960523247718811, -1.5376607179641724, -0.5186719298362732, -0.6442906856536865, -0.12966659665107727, 0.940662682056427, -0.1260342001914978, -0.155926913022995, 0.14745785295963287, -1.0728716850280762, 0.24088382720947266, 0.5831632018089294, -0.6602495312690735, 0.20057417452335358, 1.5183035135269165, 2.2311904430389404, 0.4484383165836334, -0.1595427244901657, -0.57815021276474, 0.29628780484199524, -0.8730894327163696, -0.1721130758523941, -0.8406224846839905, -0.7067888379096985, -0.4219820201396942], [0.7998701333999634, 1.7986658811569214, -2.743407726287842, -0.24230735003948212, 0.9534332752227783, 0.24091725051403046, 1.7064011096954346, -0.3409430682659149, 0.05650847777724266, -0.25539323687553406, 0.1227121502161026, 0.06601251661777496, 1.7660269737243652, 0.9851018786430359, 0.25398603081703186, 0.566478967666626, -0.02257576957345009, -0.7657016515731812, 0.3503440022468567, 0.8212364315986633, 0.510863721370697, 0.051796335726976395, 0.38390710949897766, 0.036433953791856766, -0.3446310758590698, 1.0381295680999756, -1.6083498001098633, -0.9339393377304077, -0.7395435571670532, -1.0210754871368408, 1.17326021194458, 0.20619851350784302, -0.5570310354232788, 0.3140009343624115, -1.6404377222061157, -0.0017782773356884718, 1.6318349838256836, 0.44743478298187256, 0.65504390001297, 0.5105332136154175, 1.6541506052017212, -0.20376260578632355, 0.42711949348449707, -0.4106318950653076, 0.004043250344693661, 0.020591462031006813, 0.5837726593017578, -0.14590799808502197, 0.2125484049320221, -0.282539039850235, 0.211678147315979, -0.5968566536903381, 0.10885286331176758, 1.2681818008422852, 0.9104905724525452, 0.48258736729621887, -0.04141993820667267, -0.4261474609375, 0.6592069268226624, -1.011250376701355, 1.3551536798477173, 0.2725311815738678, -0.10481879115104675, 0.8608505725860596, 0.3570690453052521, -0.5751456618309021, 0.4860825836658478, 0.40973031520843506, -0.024246834218502045, -0.1700390875339508, 0.5473964214324951, -0.049094002693891525, -1.1821694374084473, 0.03818976506590843, -0.8408995866775513, 0.5394043922424316, 0.5230528116226196, 0.5906153917312622, 0.34985798597335815, 1.0817251205444336, -0.1167793869972229, 0.2095521092414856, 0.056544117629528046, -0.29499372839927673, 0.7007165551185608, 0.2942960858345032, -0.021724870428442955, -0.8813791871070862, -1.0913962125778198, 1.601536750793457, 0.7676013112068176, -0.05828769877552986, 0.4191523790359497, -0.547633707523346, -0.8346008658409119, -1.374326229095459, -0.0028020236641168594, -0.6715551018714905, -0.9248345494270325, -0.7779697775840759, -0.9293174147605896, -0.20806784927845, 0.2491936832666397, -0.12681140005588531, 0.15695936977863312, 1.3780434131622314, -0.17387820780277252, -0.3876855671405792, -0.4529622197151184, -0.07170937210321426, -0.5099340677261353, -0.21956028044223785, -0.9177122712135315, -1.2478257417678833, -0.5004096031188965, 0.991168200969696, 1.2060612440109253, -0.1290816068649292, 0.39464330673217773, 0.5445940494537354, -0.6042179465293884, -0.16939744353294373, -0.35758382081985474, -0.08743877708911896, 0.31065282225608826, 0.8172101378440857, -0.4389847218990326, -0.27537962794303894, 0.14972834289073944, -0.2159125804901123, 0.8320485353469849, 0.18148474395275116, -0.7559400796890259, 0.9467660188674927, -0.2174631953239441, 1.6809169054031372, -0.8788813352584839, -0.1794176697731018, 0.054116811603307724, 0.23792825639247894, 0.3887081444263458, -0.10241900384426117, 0.0952918529510498, 0.3117222785949707, -0.41873398423194885, 0.33542895317077637, 0.33983030915260315, -0.6028457283973694, -0.2340831309556961, 0.056948527693748474, -1.0213828086853027, 0.38680732250213623, -0.07120159268379211, 0.5099081993103027, 0.31437572836875916, 0.1656261682510376, 0.5225070714950562, -0.16450950503349304, 0.6792722344398499, 0.43173953890800476, 0.40787893533706665, 0.044791195541620255, -0.8754953742027283, 0.9365984201431274, 0.10737583041191101, -0.4999462366104126, 0.43434467911720276, 0.3894805610179901, -0.8592984080314636, 0.7943141460418701, -0.6147679090499878, -0.634635865688324, -0.3060877025127411, 0.020869864150881767, -0.3995265066623688, -0.1768311709165573, 1.9239413738250732, -0.6791166067123413, -1.0762625932693481, -1.8532230854034424, 0.6517337560653687, -0.599609911441803, 0.2868506610393524, 0.44777044653892517, 1.0882118940353394, -0.5714032649993896, 0.2170082926750183, 0.23312881588935852, -0.6643626093864441, -0.9263960719108582, -0.8288955092430115, -0.6793582439422607, -0.4509597420692444, 0.8791781067848206, -0.6444188952445984, -0.6276821494102478, 1.3118326663970947, -1.8221243619918823, -0.07634539902210236, -0.2306782752275467, 0.020239681005477905, -0.18368835747241974, -1.1775377988815308, 0.14111900329589844, -0.2262841910123825, 1.0462316274642944, -0.8387264609336853, 0.6273966431617737, -0.7820100784301758, -0.02981686405837536, 1.3951977491378784, 0.00447919312864542, -0.8035318851470947, 0.8087434768676758, -0.03326813504099846, -1.8942389488220215, 0.3053043782711029, 0.42697224020957947, -0.3184052109718323, -0.012813802808523178, 0.0846644714474678, -0.23498088121414185, -0.31169164180755615, 0.7121758460998535, 0.7557374238967896, -0.3880349397659302, -0.15967978537082672, -0.8491629958152771, -0.8016102313995361, 0.46068474650382996, -1.1300511360168457, -0.8204930424690247, 0.5002448558807373, -0.13748204708099365, -0.6386234760284424, 0.10507150739431381, 0.015206604264676571, 0.47253626585006714, 0.3879885673522949, 1.2676148414611816, 0.5348492860794067, 0.18326200544834137, -0.6622141003608704, -0.14961937069892883, -0.5545752048492432, -0.43527671694755554, 1.1646960973739624, -0.3242834210395813, -0.5406484007835388, 1.5234116315841675, 1.0980184078216553, 0.041977740824222565, 0.90468829870224, 0.14430952072143555, 0.5173866748809814, -0.6639602184295654, -0.4668736755847931, 0.1394481062889099, -0.2695522606372833, 0.8163546323776245, 1.0183833837509155, -0.8304077386856079, -0.09107028692960739, -0.3567734956741333, -0.6724267601966858, -0.7281071543693542, -0.610942542552948, -0.37584900856018066, -0.4410459101200104, 0.02061467431485653, 0.0022417083382606506, 0.3614308834075928, -0.9819027781486511, 0.6852307319641113, -0.727279007434845, -0.3244680166244507, -0.2518666684627533, 0.059133853763341904, 0.5239742398262024, 0.23752209544181824, 0.002585143782198429, -1.1881579160690308, -0.8039926290512085, 0.29315993189811707, 1.1887434720993042, 0.44502460956573486, 0.01493292860686779, 0.46272093057632446, 0.3114403784275055, -0.09598114341497421, 0.33449625968933105, -0.0063146683387458324, -0.12876367568969727, -0.07508879899978638, 0.08862382173538208, 0.8824001550674438, 1.0886837244033813, -0.6285104751586914, -0.7987892031669617, -0.5319778323173523, 0.5243653059005737, 1.0351027250289917, 1.1582437753677368, 1.0864508152008057, -0.12994173169136047, 0.35908228158950806, -0.5837275385856628, -0.030158277601003647, -0.3936030864715576, -0.6935646533966064, -0.3151787519454956, -0.5202456116676331, -0.3025958836078644, -0.04802614450454712, 0.11393860727548599, 0.1736019104719162, -0.2651349604129791, 0.6317731142044067, 1.395131230354309, -0.3639748692512512, -0.8321073651313782, -0.7451940178871155, -0.12751281261444092, -0.7007027268409729, 0.22795559465885162, 0.4805009961128235, -0.7272565960884094, -0.5925469994544983, -0.049493346363306046, 0.534436047077179, 0.968885600566864, -0.32832300662994385, 0.30274271965026855, -1.5537117719650269, -0.20824246108531952, -0.2723073661327362, 0.9001396894454956, -0.004229946993291378, -0.008318296633660793, -0.1566706895828247, -0.4386684000492096, 1.0625087022781372, 0.15017732977867126, -0.7930523753166199, 0.5018211007118225, -0.07756620645523071, -0.9429003000259399, -0.2686273455619812, 0.27889591455459595, 1.0236083269119263, -0.47061705589294434, -0.305306613445282, -0.16423623263835907, -0.1372995227575302, -0.016755491495132446, 0.5459805130958557, -0.0987541526556015, 0.8317604660987854, -0.059271179139614105, -0.7908069491386414, 0.5163245797157288, 0.12327511608600616, -0.10672162473201752, -0.76873779296875, 0.31156736612319946, 0.8257635235786438, 0.940621554851532, 0.6307348012924194, 0.6934441328048706, 0.7546018958091736, -0.23294535279273987, -0.5857431888580322, 0.7330621480941772, 1.020749807357788, 0.4024950861930847, -0.04893902689218521, -0.1633274108171463, 0.42146655917167664, -0.15269729495048523, -0.531572699546814, 0.16779182851314545, 0.23634107410907745, -0.24696044623851776, -0.718756914138794, 0.4645726680755615, 0.6130914688110352, -0.16917315125465393, -0.6508974432945251, 0.21582461893558502, 0.7630685567855835, 0.05347045511007309, 0.0674886479973793, -0.4242912232875824, -0.03875931724905968, -0.38090601563453674, -1.1500097513198853, 0.27184465527534485, 0.8997752070426941, -0.2759530544281006, 0.9013567566871643, -0.5948525071144104, -0.3224104046821594, -0.6321043372154236, 0.41758525371551514, 0.5415975451469421, -0.18818168342113495, 0.5912284255027771, 0.08834318816661835, -0.1969461739063263, -0.27969294786453247, 0.26449525356292725, 1.0352028608322144, -0.7396438717842102, -0.2301207184791565, 0.5037351846694946, 0.03782273083925247, 0.4013119339942932, -0.8775623440742493, -0.6951342821121216, -0.030570680275559425, -0.6461881399154663, 0.3403726816177368, -0.002258762251585722, 0.2084498554468155, 0.8480995893478394, 0.8716696500778198, -0.1414971798658371, 0.5047438144683838, -0.6499055027961731, -0.7164623141288757, 0.15128189325332642, 0.652756929397583, -0.17777694761753082, -0.3455227017402649, -0.7014653086662292, 0.28220391273498535, 0.2953612804412842, 1.1793255805969238, 0.08004332333803177, 1.1348503828048706, 1.0043857097625732, -0.26450982689857483, -0.5260048508644104, 0.5699000954627991, 1.5856760740280151, 1.5191630125045776, 0.25073373317718506, -0.5179501175880432, -0.6384169459342957, 0.7019636631011963, -0.5445066690444946, 0.6783753037452698, 1.2213002443313599, -0.27851295471191406, 1.610228180885315, -1.3369264602661133, -0.30510029196739197, 0.9806814789772034, 0.9302427768707275, 0.8766884207725525, 0.01875940151512623, 0.1674046665430069, -0.2943591773509979, 0.34071311354637146, 0.26332616806030273, -0.2681907117366791, 0.33835068345069885, 0.014780059456825256, -0.37031129002571106, 0.6985533237457275, -1.318082571029663, 0.4798167943954468, -0.7292213439941406, -0.0741933062672615, -0.30734071135520935, -0.5704063773155212, 0.03930249810218811, 0.5740531086921692, 0.1760101467370987, 1.0568443536758423, -0.10343775898218155, -1.7966673374176025, -0.027310334146022797, -0.7854881882667542, 0.14061489701271057, -0.03476559370756149, -0.4904209077358246, -0.6667832136154175, -0.5490939021110535, -0.39256078004837036, 0.31637895107269287, -0.07655581831932068, 0.15543723106384277, -0.29856353998184204, -1.7185924053192139, -0.5616719126701355, 0.9666920304298401, 1.282284140586853, 0.7368438839912415, 0.018383368849754333, -0.34706154465675354, 0.38032248616218567, -1.1114643812179565, -0.4323577284812927, 0.449867844581604, -0.02890353463590145, 0.30097517371177673, -1.1292787790298462, -0.6220539212226868, 0.6912280321121216, 0.042534880340099335, 0.19847986102104187, 0.9689904451370239, 1.0191305875778198, 1.31111478805542, -0.7340764403343201, -0.9018258452415466, 0.12806732952594757, -0.6311502456665039, 0.44823944568634033, 0.792314887046814, -0.558223307132721, -0.4440614581108093, -0.845036506652832, -1.1580349206924438, 1.0418341159820557, -0.5651825666427612, -1.1418452262878418, 1.1898013353347778, 0.8037095069885254, 0.47418928146362305, 0.42193880677223206, -0.884714663028717, -0.09911049902439117, 0.7203643321990967, 0.09571518003940582, -0.7880941033363342, 0.3064960241317749, 0.6401360630989075, 0.010837347246706486, -0.3704812824726105, 0.1518685519695282, -0.30040594935417175, -0.26249685883522034, 0.5355527997016907, 0.3355221748352051, -0.04833042249083519, 0.9467447400093079, 0.9115912914276123, -0.8137122988700867, 0.12408645451068878, -0.6744290590286255, -0.06819991767406464, -0.37935319542884827, 0.19306160509586334, -0.03159530460834503, 0.23123297095298767, -0.1236853152513504, -0.5583124160766602, -0.5096368193626404, -0.5287874341011047, -0.05493750795722008, 1.5192580223083496, -0.29662463068962097, 0.3959203064441681, -0.7188582420349121, -0.21614040434360504, -0.22380192577838898, -0.09749098122119904, 0.5124212503433228, 1.1715309619903564, -1.4696823358535767, 0.2520197927951813, 0.5490394234657288, -0.6999961137771606, 0.19280318915843964, -0.2763189375400543, -0.15849743783473969, -1.4333668947219849, -1.3426519632339478, -0.4592670202255249, -0.01014222577214241, 0.9061001539230347, -0.28998011350631714, 0.5767534971237183, -0.07574362307786942, -1.836490511894226, 0.7812434434890747, 0.45082396268844604, -1.3732796907424927, -0.5368853211402893, -1.664038896560669, 0.7151618003845215, -0.9243975281715393, -0.6031238436698914, 0.02352367714047432, 0.9574592113494873, -1.5541036128997803, -0.8855659365653992, -1.2618412971496582, 0.060907330363988876, 1.6114776134490967, 1.5571725368499756, -1.813278079032898, 1.3928160667419434, 0.07779978215694427, -0.8093145489692688, -0.11113256216049194, 0.8734574317932129, -1.0101747512817383, -0.24959801137447357, 0.43612995743751526, 0.24417001008987427, -0.1437021791934967, 0.9480010271072388, -0.2512684464454651, 1.3789770603179932, 0.3688226044178009, 1.0474077463150024, -0.9583378434181213, -0.5369808673858643, -0.09803435951471329, 1.1813302040100098, -1.1646639108657837, -0.4390714764595032, -0.2590496838092804, -0.7953241467475891, -1.2816765308380127, 0.31859341263771057, -0.24509499967098236, -1.1637004613876343, 0.49416303634643555, -0.8825221657752991, 0.8265672922134399, -0.5753212571144104, 0.34758836030960083, -0.4444618225097656, -0.27434900403022766, -0.30906006693840027, 0.18801170587539673, -0.054111238569021225, -1.1308852434158325, -0.2266910821199417, 0.43459561467170715, -0.31432363390922546, -0.6469797492027283, 0.5277359485626221, 0.869256854057312, -0.2892254889011383, -0.9280980229377747, 1.2603981494903564, 1.1448843479156494, 0.42058199644088745, -0.4669809639453888, 0.480953186750412, 0.191341370344162, 0.5040805339813232, -0.5418692231178284, -0.3933199942111969, -0.2896936535835266, 0.5350598096847534, 0.3515099883079529, 0.6278715133666992, -0.12975916266441345, 0.22878700494766235, -0.5182243585586548, 0.7885328531265259, 0.4398966431617737, -0.6108158230781555, -0.44805875420570374, 1.1564476490020752, 0.4802716374397278, 0.21777507662773132, -0.0822344645857811, 0.8373404145240784, 0.5005601644515991, -0.48884955048561096, 0.14580410718917847, 0.4537462890148163, -0.7703120112419128, 0.7000391483306885, 0.2704766094684601, 0.6137365698814392, 0.010862989351153374, -0.5444737076759338, -0.9562037587165833, -0.9113837480545044, -0.30367904901504517, -0.7003291845321655, 0.23422406613826752, -1.3096604347229004, -0.7034512758255005, -0.029788436368107796, 0.04003360867500305, 0.26324543356895447, 0.4984726905822754, -0.3516036868095398, -0.35833314061164856, -0.41728076338768005, 0.8728955388069153, -0.30609917640686035, 0.32849249243736267, -0.13762593269348145, -0.5803995728492737, -0.3893751800060272, -0.20771630108356476, -0.11844310164451599, 0.3178749680519104, -0.5327504277229309, -0.6886278390884399, 0.07858913391828537, -0.5327871441841125, -1.0835903882980347, -0.14931242167949677, 0.35516664385795593, 0.2389475256204605, -0.1237703338265419, -1.4278604984283447, 0.5384157299995422, 1.1796013116836548, -0.36544016003608704, -0.6369223594665527, -0.7735869884490967, -1.089131474494934, 0.7681206464767456, -0.3420078754425049, 0.7301173806190491, -0.884426474571228, 0.5834882855415344, 0.9790217280387878, -0.6502793431282043, -0.08259985595941544, -0.511810839176178, 0.8302934169769287, -0.13625216484069824, 0.6118712425231934, 0.018010681495070457, 0.6619779467582703, -0.6160621643066406, -1.1361007690429688, -0.1694633811712265, 0.5526328086853027, -0.0252202358096838, 0.625722348690033, -1.196022391319275, -0.9785856604576111, -0.0706099420785904, 0.746983528137207, 0.45547178387641907, 0.11621531844139099, -0.20700013637542725, -0.3245905339717865, -1.0166895389556885, -0.1292269378900528, 0.06612692773342133, -0.07393155992031097, 0.04441018030047417, 1.706327199935913, 1.6128101348876953, 0.17363721132278442, -0.2644115090370178, -0.2499338835477829, 0.8011996150016785, -1.2361934185028076, -0.09528457373380661, -0.45639681816101074, -0.1946360319852829, 0.4231894910335541], [0.17974981665611267, 2.5534701347351074, -2.851006507873535, 0.22735512256622314, 1.4354698657989502, 0.6204962730407715, 1.16908597946167, -0.1265755593776703, 0.40156787633895874, -0.6621720194816589, -0.30006924271583557, 0.25640979409217834, 1.09389066696167, 1.0969064235687256, 0.37333908677101135, 0.57274329662323, 0.3967881202697754, -0.8560584783554077, 0.3776210844516754, 0.7194836139678955, 0.32699108123779297, -0.31736642122268677, 0.3141865134239197, 0.1334676891565323, -0.6987326741218567, 0.5786443948745728, -0.9320130944252014, -0.47155946493148804, -0.5391885638237, -0.9937498569488525, 2.08219575881958, -0.6048064827919006, -0.3038909137248993, 0.5064741373062134, -1.9676673412322998, -0.6760667562484741, 1.4369235038757324, 0.4088168144226074, 0.6115415692329407, 0.389845609664917, 1.2942965030670166, -0.26454469561576843, 0.6428079009056091, -0.8779078125953674, -0.33837252855300903, 0.3685864806175232, 0.970349133014679, -0.6273768544197083, 0.3515613079071045, -0.6802532076835632, 0.5876399278640747, -0.15680527687072754, 0.3116009831428528, 1.3037492036819458, 0.919120192527771, 0.003486890345811844, 1.082369089126587, -0.34924083948135376, 0.15192903578281403, -0.290316641330719, 1.1151564121246338, -0.28776830434799194, 0.44957131147384644, 0.10694772005081177, 0.3177274465560913, -0.26969295740127563, 0.21227680146694183, 0.36721643805503845, 0.5644056797027588, 0.17406779527664185, 0.6374768018722534, -0.17508795857429504, -0.9958392381668091, -0.11505824327468872, -0.7740058302879333, 0.7240562438964844, 0.8064152002334595, 0.5958976149559021, 0.1860874891281128, 0.7908660769462585, -0.7362762093544006, -0.02845907211303711, 0.2558225095272064, -0.4142008125782013, 0.7941757440567017, 0.5459257364273071, 0.16844013333320618, -1.3063970804214478, -0.6965376138687134, 1.6308636665344238, 0.8806555271148682, -0.035687122493982315, 0.022178124636411667, -0.3332268297672272, -0.6049376130104065, -1.2992008924484253, 0.25516119599342346, -0.5713396668434143, -0.704277515411377, -0.5883870720863342, -0.767937421798706, -0.13803938031196594, 0.24351748824119568, 0.009110960178077221, 0.19982050359249115, 1.2901129722595215, 0.3544773757457733, -0.4095563590526581, -0.7268736362457275, 0.3791574239730835, -0.07302187383174896, 0.1902206987142563, -0.6807429790496826, -1.3845360279083252, -0.8241376876831055, 0.8006969690322876, 1.277933120727539, 0.3651743531227112, 0.7990747690200806, 0.6458405256271362, -0.4935935139656067, 0.012351732701063156, -0.33754414319992065, 0.37467944622039795, 0.6393247842788696, 0.9482293128967285, -0.4624934792518616, -0.4290986657142639, 0.34407979249954224, -0.18651938438415527, 0.3354337811470032, -0.243070587515831, -0.050154224038124084, 0.7067902088165283, -0.35498911142349243, 1.3761351108551025, -0.913455069065094, -0.3627973794937134, 0.07776510715484619, 0.19184686243534088, 0.21599248051643372, -0.17695637047290802, -0.0768592357635498, 0.17871764302253723, -0.154770627617836, -0.04307524859905243, 0.6815119385719299, -0.3684563636779785, -0.7481963038444519, 0.04661843925714493, -1.6659538745880127, 0.6209321618080139, -0.475151002407074, 0.7693681120872498, 0.7039677500724792, -0.3033785820007324, 0.5479076504707336, 0.018217414617538452, 0.6911925077438354, 0.14996376633644104, 0.3034631609916687, 0.40556883811950684, -1.1360723972320557, 0.7371852397918701, 0.549399733543396, -0.609866201877594, 0.9123971462249756, 0.39082804322242737, -0.3820594549179077, 0.5019269585609436, -1.0577785968780518, -0.6947075724601746, -0.41465944051742554, 0.2904190421104431, 0.07234865427017212, 0.17788824439048767, 1.5462175607681274, -0.642681360244751, -1.1843185424804688, -1.722034215927124, 0.45204371213912964, -0.48201191425323486, 0.004722909070551395, 0.5575405359268188, 1.0901196002960205, -0.266666442155838, 0.21553421020507812, 0.20773287117481232, -0.5996850728988647, -0.938417911529541, -0.7798843383789062, -0.21240635216236115, -0.9848135709762573, 0.3810957074165344, -0.6116982102394104, -0.1995571106672287, 0.887675404548645, -1.0174953937530518, -0.12844061851501465, -0.09484279900789261, -0.013437099754810333, -0.39654430747032166, -1.0691313743591309, -0.1408335566520691, -0.3384582996368408, 0.7735369801521301, -1.1124814748764038, 1.0123242139816284, -0.4589318633079529, 0.1369665116071701, 1.440381407737732, -0.16621635854244232, -1.0721001625061035, 0.5162116885185242, -0.4353528320789337, -2.0063846111297607, 0.6351503729820251, 0.3110451102256775, -0.5368891954421997, 0.32011428475379944, 0.07265239953994751, 0.394641637802124, -0.17991821467876434, 0.4000172019004822, 0.6995142698287964, -1.1124019622802734, -0.4835076928138733, -1.5705556869506836, -0.32717087864875793, 0.4858001172542572, -0.7027531266212463, -0.904679536819458, 0.9002336263656616, 0.2556419372558594, -0.7727574110031128, 0.009861531667411327, -0.13168743252754211, 0.20060622692108154, 0.38133758306503296, 1.523794174194336, 0.6236032843589783, 0.411010205745697, -0.6971442103385925, -0.1506061553955078, -0.6322988271713257, -0.01799406111240387, 0.7767104506492615, -0.40295663475990295, -0.42777207493782043, 1.2277042865753174, 0.8805761337280273, -0.2227630615234375, 0.56756192445755, -0.5775939226150513, 0.13673527538776398, -1.0236330032348633, -0.48456740379333496, 0.06410621851682663, -0.49046769738197327, 1.1747212409973145, 0.9740167856216431, -1.3663303852081299, -0.17033331096172333, -0.056160688400268555, 0.1550883650779724, -0.1745034158229828, -0.5360596179962158, -0.2897063195705414, -0.20515750348567963, 0.037127092480659485, -0.009978408925235271, 0.13625475764274597, -0.8665109872817993, 0.32587766647338867, -0.8034510612487793, -0.39468246698379517, -0.05412705987691879, 0.19442424178123474, 0.3233051300048828, 0.25360533595085144, -0.5228216052055359, -1.2124886512756348, -0.9334815740585327, 0.21169865131378174, 1.3291839361190796, 0.16266706585884094, 0.5409641265869141, 0.49008095264434814, 0.07490108907222748, -0.22724448144435883, 0.4388541579246521, 0.19392089545726776, -0.22884684801101685, -0.036188118159770966, -0.030968721956014633, 0.8070081472396851, 1.0932718515396118, -1.1517629623413086, -0.7406632900238037, -0.12698397040367126, 1.268007516860962, 0.6870458722114563, 1.0682446956634521, 0.7739114165306091, -0.2118278592824936, 0.13986194133758545, -0.2613373398780823, -0.45606544613838196, -0.5659922957420349, -0.9338297843933105, -0.2065344601869583, -0.12631581723690033, -1.0087567567825317, 0.302217960357666, -0.0023386646062135696, -0.1588059812784195, -0.1647404432296753, 0.35083574056625366, 1.6371409893035889, -0.39042022824287415, -1.0949510335922241, -0.7486640214920044, -0.45744431018829346, -0.8335117101669312, 0.5133793950080872, 0.6051830053329468, -0.7925251126289368, -0.4975038766860962, 0.5117895603179932, 0.23185884952545166, 0.6221411824226379, -0.38702476024627686, 0.5295413732528687, -1.4645216464996338, -0.8952542543411255, -0.646754264831543, 1.351905107498169, 0.6361063718795776, -0.32019904255867004, -0.6950266361236572, -0.12759289145469666, 0.5281959772109985, -0.1809263825416565, -0.330338716506958, 0.6801515817642212, -0.2192922979593277, -0.7907797694206238, -0.20966380834579468, 0.20791344344615936, 0.7043471932411194, -0.9060957431793213, -0.14909793436527252, -0.13563144207000732, 0.0953855887055397, -0.0339345708489418, 0.7683698534965515, 0.9374675750732422, 0.4416942596435547, -0.12299371510744095, -0.9060351252555847, 0.12061136215925217, -0.34960466623306274, -0.19247287511825562, -1.1748135089874268, 0.4621712565422058, 0.9614266157150269, 0.7398189306259155, 0.6234707236289978, 0.3502840995788574, 0.9849671721458435, -0.034586772322654724, -0.7110838890075684, 0.3503277897834778, 1.0839059352874756, 0.4377134442329407, 0.07290304452180862, -0.07326430082321167, 0.38030993938446045, 0.23590952157974243, -0.7186129093170166, 0.10500170290470123, 0.3554441034793854, -0.2531367540359497, -0.3977547883987427, 0.529933750629425, 0.41390693187713623, -0.49982544779777527, -0.5865429639816284, 0.06116248667240143, 1.1233552694320679, 0.505878210067749, 0.39717650413513184, -0.256592333316803, -0.5686262845993042, -0.3543265461921692, -0.842917263507843, -0.3435564637184143, 0.1858540177345276, 0.2991461753845215, 0.9093098044395447, -0.8710035681724548, -0.57784104347229, -0.9432927370071411, 0.7256687879562378, 0.5498594045639038, 0.09484114497900009, 0.7213202714920044, 0.10389313101768494, 0.005205690860748291, -0.03179537504911423, 0.5723568797111511, 1.121157169342041, -0.38273733854293823, -0.27614307403564453, 0.19845019280910492, 0.10273483395576477, -0.13605238497257233, -0.8188373446464539, -0.26181328296661377, 0.0409327931702137, -0.7008458375930786, -0.5882760286331177, 0.1445550173521042, 0.18458081781864166, 0.9244149923324585, 0.8114888668060303, 0.2045111060142517, 0.6765648126602173, -0.7115538716316223, -1.0044808387756348, -0.085394948720932, 0.799527108669281, -0.2499440610408783, -0.2509169578552246, -0.5060081481933594, 0.5092150568962097, 0.3256814777851105, 0.7446578741073608, -0.029990628361701965, 0.8386159539222717, 0.7520661354064941, 0.1260930299758911, -0.6898794174194336, 0.9329427480697632, 1.1856626272201538, 1.434457540512085, 0.8918392658233643, -0.43255484104156494, -0.6036460399627686, 0.8503372669219971, -0.6618221402168274, 0.6781842708587646, 1.0479811429977417, 0.21634116768836975, 1.8114413022994995, -1.1796079874038696, -0.7886968851089478, 1.0957088470458984, 0.48854684829711914, 0.44916313886642456, 0.12374268472194672, 0.14452676475048065, -0.5608556270599365, 0.39770716428756714, 0.5521559715270996, 0.07978930324316025, 0.3129703998565674, -0.16179291903972626, -0.01023537665605545, 0.5011795163154602, -0.6782413721084595, 0.3963696360588074, -0.9238763451576233, 0.014102326706051826, -0.317817747592926, -0.4601931869983673, 0.2566886246204376, 0.587407648563385, 0.2742268443107605, 0.6200272440910339, -0.47798699140548706, -1.3663843870162964, 0.11436563730239868, -1.3541784286499023, 0.2930338382720947, -0.6091064214706421, -0.862113356590271, -0.26864656805992126, -0.3979630470275879, -0.4653463363647461, 0.38815128803253174, 0.06296680122613907, -0.4158381223678589, -0.06423325836658478, -1.116389513015747, -0.3204697370529175, 0.7400600910186768, 1.3287267684936523, 0.5566631555557251, 0.0011472105979919434, 0.17446401715278625, 0.5990592241287231, -1.1955697536468506, -0.09795752912759781, 0.09260288625955582, 0.014204081147909164, 0.23828953504562378, -0.8731385469436646, -0.7053835391998291, 0.4664626717567444, 0.4375291168689728, -0.07464128732681274, 0.8046377897262573, 0.8907897472381592, 0.9952405095100403, -0.6319879293441772, -0.5338212847709656, -0.46738070249557495, -0.294735848903656, 0.5660625100135803, 0.75400710105896, -0.41574275493621826, -0.40298593044281006, -0.36284103989601135, -1.579253911972046, 1.3207283020019531, 0.07132658362388611, -0.5361096262931824, 0.25424033403396606, 0.639507532119751, 0.813937246799469, -0.039214130491018295, -0.5711205005645752, 0.032859332859516144, 0.1962365061044693, 0.009653091430664062, -0.48463380336761475, 0.4228029251098633, 0.06935203075408936, -0.22761133313179016, -0.3141506314277649, 0.06089191511273384, -0.30895155668258667, -0.3181213140487671, 0.07343453168869019, 0.7882051467895508, -0.20932075381278992, 0.7398816347122192, 0.1470911204814911, -0.9071078300476074, 0.3634299635887146, -0.669520914554596, -0.1504705846309662, -0.10402828454971313, 0.4981324374675751, -0.002465873956680298, 0.001566283404827118, -0.35400545597076416, -0.6508017778396606, -0.43077629804611206, -0.6340051889419556, -0.02812967263162136, 1.098335862159729, -0.3660375475883484, 0.516755998134613, -0.364753782749176, 0.1565297693014145, -0.22717435657978058, -0.3560670018196106, 0.5515310764312744, 0.6041451692581177, -1.2351932525634766, -0.24963097274303436, 0.2982006072998047, -0.3998405933380127, -0.0656772032380104, -0.1906828135251999, 0.5706397891044617, -1.7232294082641602, -1.019230604171753, -0.9578360319137573, -0.5816156268119812, 1.067613124847412, -0.5538185238838196, 0.7016558647155762, -0.026102788746356964, -1.8312348127365112, 0.6930679082870483, 0.19297334551811218, -1.87245774269104, -0.23251643776893616, -1.578683614730835, 0.6519376039505005, -1.1909756660461426, -0.3787844181060791, -0.03165781497955322, 1.6267989873886108, -2.2710423469543457, -1.2272326946258545, -1.0015987157821655, -0.3702026903629303, 1.2925219535827637, 0.6409088373184204, -1.3247581720352173, 0.9307369589805603, 0.3915548622608185, -0.5670374035835266, -0.34319087862968445, 0.7911659479141235, -0.9892697334289551, 0.06730320304632187, 0.09758178889751434, 0.49718594551086426, -0.2611885964870453, 0.7907532453536987, -0.29422175884246826, 0.954952597618103, -0.05966119095683098, 0.7798082828521729, -0.2833411693572998, -0.6022292971611023, 0.5049647688865662, 1.193284034729004, -1.0296491384506226, -0.6529865264892578, -0.762786865234375, -0.71329665184021, -1.514709711074829, 0.1911599487066269, 0.46169036626815796, -0.9196491837501526, 0.15179996192455292, -0.7203023433685303, 0.8031977415084839, -0.7593886852264404, -0.14559906721115112, 0.058722712099552155, -0.0920485258102417, 0.10495930165052414, -0.2430325150489807, 0.20998790860176086, -1.4322195053100586, -0.10459505766630173, 0.3254375457763672, 0.19190937280654907, -0.22851379215717316, 0.6497186422348022, 1.179704189300537, -0.18114179372787476, -0.7134701013565063, 1.2021763324737549, 0.9781484603881836, 0.10817025601863861, -0.6100382208824158, 0.28672656416893005, -0.0026000365614891052, 0.7567758560180664, -0.7063002586364746, -0.11892584711313248, -0.7170623540878296, 0.4407230019569397, 0.41073039174079895, 0.03622063621878624, -0.18977269530296326, -0.35768041014671326, -0.571304202079773, 0.9207248687744141, 0.45483070611953735, -0.4944891631603241, -0.24812251329421997, 1.1989468336105347, 0.4446774125099182, -0.20802776515483856, -0.32057082653045654, 0.33558040857315063, 0.33685576915740967, 0.06848248839378357, 0.26493531465530396, 0.5862247347831726, -0.8180976510047913, 0.6521322727203369, -0.04466647654771805, 0.36725735664367676, -0.022317707538604736, -0.6721487045288086, -1.324756383895874, -0.3633052110671997, -0.349892795085907, -0.6944955587387085, 0.662889838218689, -1.4344991445541382, -0.6161419749259949, 0.1915120929479599, 0.3544226288795471, -0.08403241634368896, 0.07946383208036423, -0.23646539449691772, -0.3166840672492981, -0.03435099869966507, 1.091662883758545, -0.5979149341583252, 0.922730565071106, 0.4792167842388153, -0.5341132879257202, -0.5390572547912598, -0.3895307183265686, 0.2701474130153656, 0.34879451990127563, -0.3786279559135437, -0.5293091535568237, 0.32475435733795166, -0.4823301434516907, -0.7453258037567139, 0.3165399432182312, 0.09145832806825638, 0.11743272095918655, 0.1877763420343399, -0.7016794681549072, 1.0900694131851196, 1.5747853517532349, 0.27847936749458313, -0.7673514485359192, -0.9211968183517456, -0.8903771638870239, 0.19556117057800293, -0.3140108585357666, 0.6147931814193726, -0.4735533595085144, 1.2631809711456299, 0.507520854473114, -0.2480871081352234, -0.7993546724319458, -0.3019847273826599, 0.32219043374061584, 0.3176671862602234, 0.6123141646385193, -0.17151571810245514, 0.4692060649394989, -0.49901294708251953, -1.2800289392471313, 0.007545972242951393, 0.3223324418067932, 0.09356074035167694, 0.5194991230964661, -0.681820273399353, -0.710350513458252, -0.3176020383834839, 0.5368899703025818, 1.003478765487671, 0.4959506690502167, 0.19128219783306122, -0.37163037061691284, -1.076294183731079, -0.03150862455368042, 0.02590293437242508, 0.1919039487838745, -0.06960636377334595, 1.8786954879760742, 1.5211155414581299, 0.8216391801834106, 0.06628676503896713, -0.10361133515834808, 0.6849864721298218, -0.7286837697029114, -0.3217996060848236, -0.9412881731987, -0.3654676079750061, 0.35077667236328125], [0.03597282990813255, 1.5644361972808838, -2.0824456214904785, -0.03580111637711525, 0.20133887231349945, -0.21522587537765503, 2.089434862136841, -0.7032407522201538, 0.5316605567932129, -1.1843500137329102, -0.29676008224487305, -0.17795027792453766, 0.2684856653213501, 0.7945030331611633, 0.21366137266159058, 1.744667649269104, 0.8099814057350159, -0.43747347593307495, 0.23402221500873566, 0.4795045256614685, -0.5183221101760864, 0.09353013336658478, 0.36673274636268616, -0.16308799386024475, -0.1449020653963089, 1.0807263851165771, -1.0496599674224854, -0.2955073416233063, -0.8706651329994202, -0.8583686947822571, 0.5879886150360107, -0.4381639063358307, -0.2931012511253357, -0.2974391281604767, -1.649061918258667, -0.4961056411266327, 1.1778959035873413, 1.044690489768982, 0.18413281440734863, 0.6307650804519653, 1.8801848888397217, -0.5053853988647461, 0.503487229347229, -1.853340983390808, 0.07517287135124207, -0.07614007592201233, 1.189509630203247, -0.9539983868598938, -0.3248988091945648, -0.08027001470327377, 0.8176323175430298, -0.2918647229671478, 0.7034425735473633, 0.7583647966384888, 1.3866554498672485, -0.7135798931121826, 1.1345716714859009, -0.17323331534862518, 0.6380676031112671, -0.9045591354370117, 1.883923053741455, 0.07465219497680664, -0.3921775221824646, 1.281251072883606, -0.22495923936367035, -1.0433460474014282, -0.3729100525379181, 0.2180260419845581, -0.6308855414390564, 0.18709836900234222, -0.09488595277070999, 0.14288724958896637, -0.4589729607105255, 1.0340344905853271, -1.4259779453277588, 0.43050631880760193, 1.0695728063583374, 0.5302525758743286, 0.652101457118988, 0.5727896690368652, -0.2688598930835724, -0.18354757130146027, 0.34201177954673767, -1.0790413618087769, 0.384029358625412, 0.7255169749259949, 0.5972636342048645, -1.1452580690383911, -0.27219104766845703, 1.5758510828018188, 0.5846494436264038, -0.5349611639976501, 0.4695851504802704, -0.2058248072862625, 0.1793651580810547, -0.1864718794822693, 0.8345175981521606, -0.22347111999988556, -0.766941249370575, -0.3590952157974243, -0.76882404088974, -0.37878555059432983, 0.1528298258781433, -0.16484597325325012, -0.0027850684709846973, 0.9285728335380554, 0.2519669830799103, -0.19484733045101166, 0.08544925600290298, 0.09454533457756042, -0.18134064972400665, 0.29443004727363586, -0.6863011717796326, -1.320900797843933, -0.6176305413246155, 0.9384986758232117, 1.3372544050216675, -0.004716992378234863, 1.002545952796936, 0.9215106964111328, -1.007228970527649, -0.22543534636497498, 0.009836461395025253, 0.7217788100242615, 0.5960741639137268, 0.48678654432296753, -1.1593719720840454, -0.9219552278518677, -0.013788387179374695, -0.19078652560710907, 0.8392856121063232, -0.10481622070074081, -0.28738296031951904, 1.5144085884094238, -1.6440997123718262, 1.3541877269744873, -0.2773972451686859, -0.19230785965919495, 0.09694628417491913, -0.2747212052345276, 0.6597422361373901, -0.06148982420563698, -0.8359341621398926, -0.4694620966911316, -0.4341123104095459, -0.39481261372566223, -0.034521762281656265, -0.4751073718070984, -0.9640884399414062, 0.38562875986099243, -0.7091708183288574, 0.6090498566627502, 0.2153610736131668, 0.36772066354751587, 0.9042027592658997, -0.6545352935791016, -0.18680799007415771, 0.4787535071372986, 0.7783039808273315, 0.21992957592010498, 1.5463008880615234, 0.030858103185892105, -1.1065138578414917, 0.7285277247428894, 0.861504077911377, -0.11777996271848679, 0.4558829367160797, 0.9221218824386597, 0.14838047325611115, 0.42004746198654175, -0.5372975468635559, -1.0374269485473633, -0.7643002271652222, 0.10051801800727844, 0.1589181125164032, 0.0057635121047496796, 1.3096823692321777, -0.7434956431388855, -1.3406225442886353, -1.040404200553894, 0.6529053449630737, -0.3510589003562927, -0.09337866306304932, 0.1912999451160431, 0.3151428997516632, -0.931771457195282, 0.4826696813106537, -0.10486999899148941, -0.7240336537361145, -0.22169534862041473, -0.19586169719696045, -0.2266773134469986, -0.15056417882442474, -0.3341440260410309, -1.1630481481552124, -0.6570578813552856, 0.26654741168022156, -1.258212924003601, -0.19824086129665375, 0.071462482213974, -0.5084933042526245, -0.10809635370969772, -1.3602180480957031, 0.5445874333381653, -0.6404201984405518, 1.0207107067108154, -0.7640066742897034, 0.8503262400627136, -0.785700798034668, -0.5347713232040405, 0.9274687767028809, 0.12375866621732712, -0.741804301738739, 0.7111219167709351, -0.03202446177601814, -1.4387257099151611, -0.10930902510881424, 0.02482772432267666, -0.6429131031036377, 0.6976845860481262, 0.031772613525390625, 0.35988521575927734, 0.5538610219955444, 0.1512642204761505, 0.11761178821325302, -0.07520417124032974, -0.6455870866775513, -0.6963742971420288, -0.21618212759494781, 0.06413459032773972, -0.45358946919441223, -1.2939187288284302, 0.784644603729248, 0.6721291542053223, -1.0467299222946167, 0.26041141152381897, -0.1356612741947174, 0.9973035454750061, 0.0656658411026001, 0.9365142583847046, 1.2000434398651123, 0.8046106100082397, -0.31348106265068054, -0.5682368278503418, -1.044626235961914, 0.7656755447387695, 0.8257191777229309, -0.16921141743659973, -0.13337211310863495, 0.6418788433074951, 1.5459157228469849, -0.1659352332353592, 0.6350354552268982, 0.07758048176765442, 0.0476442351937294, -1.2155218124389648, -1.120450496673584, 0.18442374467849731, -0.26320043206214905, 1.3681427240371704, 0.5776615142822266, -0.9779420495033264, 0.4397066533565521, 0.19098712503910065, -0.24681304395198822, -0.01885678991675377, -0.7999303340911865, 0.21183952689170837, 0.07981083542108536, -0.3882617652416229, 0.11454268544912338, 0.01848486065864563, -0.2557518184185028, 0.6076902151107788, -0.30715176463127136, -0.8541407585144043, -0.6180291175842285, 0.27775755524635315, -0.06457935273647308, 1.1458839178085327, 0.2011856734752655, -2.014038324356079, 0.06048790365457535, -0.3835294246673584, 0.9057693481445312, 0.025572100654244423, -0.47746509313583374, 0.29009515047073364, 0.5941057205200195, -0.5257839560508728, 0.29977017641067505, 0.09805899858474731, -0.3592507839202881, 0.5677393078804016, -0.04024358466267586, 0.0902840718626976, 1.5208063125610352, -0.4991898834705353, -1.0009020566940308, 0.44320547580718994, 1.0807522535324097, 1.9836527109146118, 0.7850472331047058, 1.6052089929580688, -0.27470266819000244, 0.28124353289604187, -0.5243617296218872, -0.19083240628242493, -1.2062827348709106, -0.6326372027397156, -0.6786976456642151, -0.7906637787818909, -0.06269046664237976, 0.12243509292602539, 0.396179735660553, 1.1242057085037231, -0.3016754388809204, 0.029209300875663757, 1.2349494695663452, 0.11292381584644318, 0.0743257999420166, 0.5384932160377502, 0.08762622624635696, -0.826423704624176, -0.2312086522579193, 1.1848053932189941, -1.0023609399795532, -0.6294550895690918, 0.11273904889822006, 0.09365824609994888, 0.7669008374214172, 0.1413564682006836, 0.12597918510437012, -2.017881155014038, -0.7934243083000183, 0.19571447372436523, 1.6704355478286743, -0.2796561121940613, -0.09427908807992935, -0.33441853523254395, 0.7436700463294983, 0.6275312900543213, -0.20894204080104828, -1.4100862741470337, 0.9049285054206848, -0.22909387946128845, -1.0209511518478394, 0.12160646170377731, 0.5030229091644287, 0.8126904368400574, -0.5054435729980469, -0.6762477159500122, -0.531435489654541, -0.6390476226806641, 0.1386222094297409, 0.5875226259231567, -0.20406575500965118, 0.9004214406013489, 0.09008544683456421, -0.06078866124153137, 0.5428285002708435, 0.0884125754237175, -0.45020854473114014, -1.2251574993133545, 0.5115000009536743, 0.00040138140320777893, 1.2486037015914917, 0.5751742124557495, 0.2474854588508606, 0.24810104072093964, 0.24279743432998657, 0.3748719394207001, -0.009109941311180592, 1.240208387374878, 0.1701703667640686, 0.9098321795463562, -0.3880736529827118, -0.012846441008150578, -0.001602410338819027, -0.30230000615119934, -0.48345446586608887, 0.8524736166000366, -1.4529372453689575, -0.628515362739563, 1.149442434310913, 0.5057438611984253, -0.14902600646018982, -0.2732001841068268, 0.4711735248565674, 1.005873203277588, 0.21500656008720398, -0.4281306266784668, -0.6563535928726196, -0.8927717804908752, 0.13677039742469788, -1.1787121295928955, 0.23789335787296295, 1.001785397529602, 0.21505850553512573, 0.818473219871521, -0.32958388328552246, 0.14507396519184113, -1.0632269382476807, 0.4794621467590332, 0.8941329121589661, -0.5013859272003174, 0.3664328455924988, 0.49239662289619446, -0.08292687684297562, -0.004970367066562176, 0.6259562969207764, 1.0101242065429688, -0.9236982464790344, 0.25330790877342224, 0.708269476890564, -0.7265477776527405, -0.3986387252807617, -0.2604030966758728, -0.8820714354515076, 0.14503556489944458, -0.3437040448188782, 0.014375997707247734, -0.17618194222450256, -0.31396758556365967, 1.2565350532531738, 0.3180087208747864, 0.21474991738796234, 0.05156407132744789, -0.5548840165138245, -0.38814085721969604, 0.36630889773368835, 0.07047316431999207, -0.29838618636131287, -1.0488381385803223, -1.0461294651031494, 0.49732810258865356, -0.3433097004890442, 0.8216984868049622, -0.1531381607055664, 0.2701999843120575, -0.10244593024253845, 0.12643565237522125, 0.2837885916233063, 0.8524888753890991, 0.2963797450065613, 1.1968400478363037, 0.06966284662485123, -0.6984184384346008, -0.4426904022693634, 0.3290267884731293, -0.9097811579704285, 0.8838645219802856, 0.14777790009975433, 0.3471551835536957, 1.2975544929504395, -1.3045406341552734, 0.04473976045846939, 0.5470048189163208, 0.5526426434516907, 0.7986351847648621, 1.0849977731704712, -0.5943892598152161, -0.2608155608177185, 0.48883816599845886, -0.21209773421287537, 0.4331410825252533, 0.03441349044442177, 0.06462486833333969, -0.5580511689186096, 0.22896495461463928, -0.9098548889160156, 0.33063364028930664, -0.28987735509872437, -0.7836727499961853, -0.24443571269512177, -1.0188345909118652, -0.31855687499046326, 0.5606188178062439, 0.20363183319568634, 1.901313304901123, -0.15629981458187103, -0.8025803565979004, 0.09516313672065735, -0.6820786595344543, 0.8614878058433533, -0.7820156216621399, -0.5006053447723389, -0.9072892665863037, -0.24248389899730682, -0.12488451600074768, 0.3607187867164612, -0.8633164763450623, -0.6870905160903931, -0.187530979514122, -0.8505861759185791, 0.3326111137866974, 0.7679113149642944, 1.1146504878997803, 0.1188831478357315, -0.7892550826072693, 0.4782158434391022, -0.09680107235908508, -0.3687998354434967, -0.4902189373970032, 0.31540733575820923, -0.09653395414352417, 0.027371609583497047, -1.3581441640853882, -0.6698557734489441, 0.45032986998558044, 0.4439442753791809, -0.11688753217458725, 1.0588780641555786, 1.1066886186599731, 1.128345012664795, -0.4726390540599823, -0.2935134768486023, 0.2997700870037079, -0.37913650274276733, -0.010498509742319584, 0.22246986627578735, -0.23568663001060486, -0.30369576811790466, -0.65101557970047, -1.2139613628387451, 0.3501245379447937, -0.13607755303382874, -0.6508437991142273, 0.8178021907806396, 0.630646824836731, 0.6258779764175415, 0.41229134798049927, -0.7453706860542297, 0.43504101037979126, 0.14497312903404236, -0.9513497948646545, -0.7263599634170532, 0.5735490918159485, 0.35578054189682007, 0.4562699496746063, -0.014323852956295013, 0.2571091055870056, 0.045473791658878326, 0.05861912667751312, -0.6758546233177185, 0.5087673664093018, 0.24744541943073273, 0.7965136766433716, -0.3161652386188507, -0.5305554270744324, 0.19865307211875916, -0.35582828521728516, 0.00671660341322422, 0.28947094082832336, 1.105675220489502, -0.3188314735889435, 0.18195201456546783, -0.6074918508529663, -0.5405337810516357, -0.5098872780799866, -0.7464559078216553, -0.2700824439525604, 0.655707836151123, 0.37800487875938416, 0.5407971143722534, -0.7847204208374023, -0.17093800008296967, 0.44201794266700745, 0.0025813353713601828, 0.4422759413719177, 0.05913843214511871, -0.8979513049125671, -0.1816282868385315, 0.5970066785812378, -0.5230851173400879, 0.07116769254207611, -0.12845194339752197, -0.2525347173213959, -1.4354795217514038, -1.0901433229446411, -0.9473419785499573, 0.17579278349876404, 0.7457313537597656, -1.0737930536270142, 0.9549959897994995, 0.6352105736732483, -1.3601919412612915, 0.511660635471344, 0.19984975457191467, -1.4506099224090576, -0.32044968008995056, -1.5438412427902222, 0.7922843098640442, 0.24119062721729279, 0.5423014760017395, -0.2854093015193939, 0.8710741400718689, -1.2450240850448608, -0.8822925090789795, -0.7065232992172241, -0.19602513313293457, 0.581928551197052, 0.6760416626930237, -0.9035550355911255, 1.03835928440094, 0.9554638266563416, -0.7540158033370972, -0.47256550192832947, -0.3788639008998871, -0.5227175951004028, 0.5193644762039185, -0.14307783544063568, 0.9662619829177856, 0.5620966553688049, 0.5024125576019287, 0.5031545162200928, 1.0076960325241089, 0.34273993968963623, 1.12770676612854, -0.8516929745674133, -0.4136107861995697, 0.34275534749031067, 1.2398920059204102, -0.7722883820533752, -0.8893226385116577, -0.183841735124588, -0.6657826900482178, -1.2981244325637817, 0.43800804018974304, 1.2354848384857178, -0.2526127099990845, 0.20984585583209991, -1.0597411394119263, 0.4912897050380707, -1.3317725658416748, 0.308033287525177, -0.5043310523033142, -0.4062120020389557, -0.40606579184532166, 0.21640704572200775, -0.3220703601837158, -0.8856378197669983, 0.033751390874385834, 0.44071558117866516, -0.09674011915922165, -0.7415403723716736, 0.8746040463447571, 0.4023773670196533, 0.7615509629249573, -0.5078614354133606, 1.620158076286316, 0.9373247027397156, -0.2577134668827057, 0.2560836970806122, -0.09437523037195206, 0.026009781286120415, 0.2482946217060089, -0.7217459082603455, -0.5342651009559631, -1.46317458152771, 1.1500238180160522, 0.21211855113506317, 0.13023853302001953, -0.6567361950874329, 0.18341709673404694, -0.24571551382541656, 0.3677620589733124, 0.6925351619720459, -1.2312015295028687, -0.46492666006088257, 0.5482768416404724, 0.23405785858631134, -0.2553585469722748, 0.06007261574268341, 0.3181609511375427, 0.2762075662612915, -0.49062466621398926, 0.12314864248037338, 0.505989670753479, -1.019543170928955, 0.4393720328807831, 0.07097465544939041, -0.2121477872133255, -0.10136638581752777, -0.5092065334320068, -1.2730967998504639, 0.30066704750061035, -0.5075381398200989, -1.0624765157699585, 0.6795816421508789, -1.3687069416046143, 0.02639917843043804, 0.2912401854991913, -0.2622995674610138, -0.24978917837142944, -0.05831038951873779, 0.7824112176895142, 0.11720867455005646, 0.08144082874059677, 1.1405680179595947, -0.4040023386478424, 1.3822177648544312, 0.41031941771507263, 0.17142631113529205, -1.178123950958252, -0.4648509919643402, 0.14896972477436066, -0.4204350709915161, 0.04580559581518173, -0.061751872301101685, 0.42669060826301575, -0.4390307068824768, -0.07376378029584885, -0.1482015997171402, 0.5834776759147644, 0.09960795193910599, 0.006418648175895214, -0.4986060559749603, 0.6338694095611572, 1.1360608339309692, 0.5766484141349792, 0.002327151596546173, -0.8205289840698242, -0.5595187544822693, 0.48649725317955017, -0.5794574618339539, 0.6698092818260193, -0.03783934935927391, 1.0770983695983887, -0.15715496242046356, -0.2785811424255371, -0.7517103552818298, -0.7667440176010132, -0.026251930743455887, 0.17806780338287354, 0.2785325348377228, -0.35089072585105896, -0.22984519600868225, -0.05394182354211807, -0.6428567171096802, 0.06858891993761063, -0.13412977755069733, -0.2016046643257141, -0.18689186871051788, -1.4008280038833618, -1.0295593738555908, -0.16020093858242035, -0.45215779542922974, 1.0773627758026123, 0.32318171858787537, 0.12513409554958344, -0.4554589092731476, -1.4445507526397705, -0.23196718096733093, 0.35417863726615906, -1.1248522996902466, 0.30388081073760986, 1.2342803478240967, 1.778123140335083, 0.8306286931037903, 0.1067931205034256, -0.5312548875808716, 0.5459620356559753, -0.23253460228443146, 0.1791975051164627, -0.5452834963798523, -0.1751798540353775, -0.16183939576148987], [-0.28775379061698914, 1.6365820169448853, -2.1061136722564697, 0.7371761798858643, 0.9194611310958862, 0.8419415950775146, 1.0671097040176392, -0.12865743041038513, -0.11451692879199982, -0.086463563144207, -0.024720316752791405, -0.037626542150974274, 0.9201013445854187, 0.6065061688423157, 1.11990487575531, 0.38320595026016235, 0.6795989274978638, -0.3431828022003174, 1.006448745727539, 1.1356624364852905, -0.4649266004562378, -1.1410754919052124, -0.3882480263710022, -0.7822344899177551, -0.22849346697330475, 0.6622926592826843, -1.7200731039047241, -0.5203911662101746, -1.637873888015747, -0.8892760276794434, 0.69507896900177, -0.01758766546845436, 0.21451421082019806, -0.438551664352417, -1.0478330850601196, 0.05781317502260208, 1.5462855100631714, 1.7923051118850708, 1.4557989835739136, -0.03973126783967018, 1.586472988128662, -0.39215147495269775, 0.2819829285144806, -0.8966035842895508, -0.3311801552772522, -0.6477994918823242, 1.0531784296035767, -0.042704831808805466, 0.4467218518257141, -0.9331889748573303, 0.13733071088790894, -1.2943278551101685, 0.6093951463699341, 0.32033148407936096, 1.689271092414856, -0.32638469338417053, 0.36723411083221436, 0.42820367217063904, -0.3299791216850281, -1.2903071641921997, 0.8453119397163391, -0.41246816515922546, -0.17684952914714813, 1.1632272005081177, 0.17471164464950562, -0.3723805248737335, -0.13872338831424713, 0.5208297371864319, -0.2480056881904602, -0.16942882537841797, 1.0556221008300781, -0.176923468708992, -0.8757433295249939, 0.6903428435325623, -1.3763279914855957, -0.11920007318258286, 0.12157398462295532, 0.5209108591079712, 0.4159240424633026, 0.11255602538585663, 0.33391982316970825, -0.9074199795722961, 0.22381970286369324, 0.005948746111243963, -0.17143699526786804, 0.21910807490348816, 0.7132577896118164, 0.11594682931900024, -0.4142921268939972, 1.4754472970962524, 0.7849063277244568, 0.1655370593070984, 0.6046944260597229, 0.10122280567884445, -1.2489405870437622, -0.5300172567367554, 0.4541449546813965, -0.01968921720981598, -1.1560999155044556, 0.14802061021327972, 0.01504054106771946, 0.09772699326276779, 0.48201972246170044, 0.847717821598053, 0.005657228175550699, 0.8065346479415894, 0.9068278670310974, 0.4548003673553467, -0.2822626233100891, -0.5576552748680115, 0.014772315509617329, 0.45011889934539795, -0.9976243376731873, -1.046709418296814, -1.4791427850723267, 1.2014834880828857, 1.3462145328521729, 0.23933114111423492, 0.4374561309814453, 0.8944715857505798, -0.15311464667320251, -0.5567761063575745, 0.17647133767604828, 0.7641564607620239, 0.7446303367614746, 0.38802778720855713, -0.8990898132324219, -0.9652231335639954, 0.32308119535446167, 0.5720903873443604, 0.3921965956687927, -0.6334148645401001, -0.2429257035255432, 0.8286266326904297, -0.962444007396698, 1.745849370956421, -0.4317333996295929, -0.896203339099884, -0.3254488706588745, -0.6598726511001587, 0.46273350715637207, 0.11364723742008209, -0.17928466200828552, -0.3070181608200073, 0.01793801039457321, -0.7160071134567261, 0.6099675893783569, 0.18565630912780762, -1.032045602798462, 0.5703482031822205, -0.653180718421936, 0.42083966732025146, 0.3443361520767212, 0.6179835796356201, -0.23642325401306152, -0.3070738613605499, 0.8044977784156799, 0.3286440074443817, 0.35166066884994507, 0.1825183928012848, 0.9655631184577942, -0.1575777381658554, -0.5956442356109619, 0.4411914646625519, 0.18644459545612335, -0.7210705280303955, 0.16127893328666687, 1.113607406616211, 0.5717892050743103, 1.4583112001419067, -0.10755650699138641, -0.33921849727630615, -0.39050984382629395, 0.6999205946922302, 0.8471238017082214, -0.6839771866798401, 1.1384010314941406, -0.07433577626943588, -2.331056594848633, -1.1500732898712158, 0.26393750309944153, -0.2962988615036011, 0.40441179275512695, -0.3244074881076813, 0.42424866557121277, -0.9705125689506531, 0.3355753719806671, -0.1525021344423294, -0.32077139616012573, -0.8586128950119019, -0.07832533121109009, -0.3723646402359009, -0.4190608561038971, -0.1951415240764618, -0.37854909896850586, -0.30033859610557556, 0.520839512348175, -2.069235324859619, -0.3834022283554077, 0.410176545381546, 0.0047107720747590065, -0.2031143456697464, -1.1152722835540771, 0.5403915047645569, -0.12453431636095047, 1.2034401893615723, -1.3196855783462524, 1.23009192943573, -0.7224399447441101, 0.5704479217529297, 1.0303094387054443, 0.1482231467962265, -0.8886518478393555, 0.5763124823570251, 0.1076352670788765, -0.9835926294326782, 0.15992462635040283, 0.10164306312799454, 0.005796365439891815, 0.36032596230506897, -0.3381231427192688, -0.3422246277332306, 0.2603762149810791, 0.20972608029842377, 0.27118945121765137, -0.4051935076713562, -0.6629860997200012, -0.4979388117790222, -1.1912226676940918, 0.18176046013832092, -0.8553500771522522, -1.1619017124176025, 0.7450481653213501, 0.4352187216281891, -1.1768112182617188, 0.5740596055984497, 0.3377394676208496, 0.5246608257293701, 0.18758128583431244, 1.6099215745925903, -0.2821958661079407, 0.4516471028327942, -0.27871543169021606, 0.354194700717926, -0.4482853412628174, 0.3412328362464905, 0.8639428019523621, -0.21634092926979065, -0.11514730751514435, 1.2343618869781494, 1.0131404399871826, 0.37018176913261414, 0.6493145227432251, -0.10073404014110565, -0.050213564187288284, -0.9182757139205933, -0.6065819263458252, 0.7377575635910034, -0.01613980531692505, 2.0284035205841064, 0.9039748311042786, -0.7122235894203186, 0.1436597853899002, -0.10231460630893707, 0.042689207941293716, -0.0618545301258564, -0.8075048327445984, -1.1417465209960938, -0.22313977777957916, 0.31616446375846863, -0.6104639768600464, 1.1087762117385864, -0.46616318821907043, 0.25680777430534363, -0.3033551275730133, -0.6492854356765747, -1.1976522207260132, 0.9336404800415039, 0.060092225670814514, 0.7487271428108215, -0.4496314227581024, -1.1820704936981201, -0.35859620571136475, -0.29301267862319946, 0.7726864218711853, 0.3231784403324127, 0.7335788011550903, -0.15344780683517456, 0.5243748426437378, -0.21760421991348267, 0.22336460649967194, -0.5228245258331299, 0.42544010281562805, -0.06732968986034393, 0.14302317798137665, 0.43929028511047363, 1.2828731536865234, -0.8929614424705505, -0.48302364349365234, -0.4191450774669647, 0.344432532787323, 1.9484686851501465, 0.12836593389511108, 0.4100046157836914, -0.16688595712184906, 0.35507673025131226, -0.03573915362358093, -0.09345307946205139, -1.2569695711135864, -0.8993554711341858, -0.7906755208969116, -0.12975886464118958, -0.6341806650161743, 0.10275829583406448, 0.027085628360509872, 0.13538195192813873, -0.6199333667755127, 0.7068692445755005, 1.414279580116272, 0.20364247262477875, -0.8105369210243225, -0.49672067165374756, -0.2060426026582718, -0.5651489496231079, 1.0278568267822266, 1.0272393226623535, -1.0923614501953125, -0.46435946226119995, 0.22084346413612366, -0.5952425599098206, 0.6655948162078857, 0.1428019255399704, 0.11052722483873367, -0.8388282656669617, -0.8876752853393555, -0.32765263319015503, 1.096105933189392, -0.11212573945522308, -0.5244642496109009, -0.2884644567966461, 0.37220144271850586, 0.5528163313865662, -0.44347694516181946, -0.547463059425354, 1.2326539754867554, -0.22885142266750336, -0.830841064453125, -0.024798035621643066, 0.8715574741363525, 0.6214520931243896, -0.46963104605674744, -0.635514497756958, -0.37847900390625, -0.3268243670463562, -1.0618374347686768, 0.3482787013053894, -0.07210315763950348, 1.0412232875823975, -0.0263057854026556, 0.1758493334054947, 0.7887506484985352, 0.05949108675122261, 0.3318978548049927, -1.421579360961914, 0.18502779304981232, 0.8889727592468262, 0.8805332183837891, -0.13271287083625793, 0.10244195908308029, 0.4056605398654938, 0.47385281324386597, -0.05271149054169655, 0.14251205325126648, 0.18307748436927795, 0.413893461227417, 0.4306374788284302, -0.4733974039554596, 0.23427079617977142, -0.09856561571359634, -0.625995397567749, 0.6708315014839172, 0.5770532488822937, -0.8122356534004211, 0.09468715637922287, 0.30356502532958984, -0.02988762967288494, -0.7106636762619019, -0.6553558111190796, -0.31829512119293213, 1.210325837135315, -0.6164993047714233, 0.2613564729690552, -0.16634929180145264, 0.12033119797706604, 0.1808518022298813, -1.1400187015533447, -0.16241641342639923, 0.09921189397573471, 0.7709927558898926, 0.9987260699272156, -0.7292863726615906, 0.2829790413379669, -0.7263444066047668, 0.42099735140800476, 0.12361130118370056, -0.2873140275478363, 0.08559375256299973, 0.6015241742134094, -0.30731359124183655, 0.086632139980793, 0.5196290016174316, 1.46147620677948, -0.5903193354606628, -0.006669769063591957, 0.16570018231868744, 0.2081492394208908, -0.9060525894165039, -0.13230817019939423, -0.3835490942001343, -0.12099528312683105, -0.4018656015396118, -0.25314319133758545, 0.3633551597595215, -0.37389180064201355, 1.7788163423538208, 1.3118054866790771, 0.3077641427516937, 0.3511882722377777, 0.4801163971424103, -1.1818164587020874, -0.3030959367752075, 0.33144569396972656, 0.22415918111801147, -0.594392716884613, -0.585536777973175, 0.1570807248353958, -0.13399076461791992, 0.7877799868583679, 0.5324079394340515, 0.7613143920898438, 0.5983237028121948, 0.2821881175041199, 0.12177804857492447, 1.128106713294983, 1.422425389289856, 0.24470195174217224, 0.6367777585983276, 0.11984241753816605, -1.0618911981582642, 0.04150725528597832, -0.3400457203388214, -0.18791450560092926, 1.1350513696670532, 0.5054102540016174, 1.2921233177185059, -2.138878583908081, -0.21374447643756866, 0.9190651178359985, 0.8320674300193787, 0.12987004220485687, 0.9830609560012817, -0.6298448443412781, -0.1798957884311676, 0.7557693123817444, 0.16340042650699615, 0.1987893432378769, -0.31098058819770813, -0.07249755412340164, -0.6657128930091858, 0.22293350100517273, -0.516989529132843, 0.8582946062088013, -0.9023743271827698, 0.0819660872220993, 0.08396807312965393, -1.621987223625183, -0.4122365415096283, -0.06272969394922256, 0.40963849425315857, 1.0701262950897217, -0.8395653367042542, -0.6814038753509521, -0.03317109867930412, -0.612181544303894, 0.25403547286987305, -0.21847018599510193, -0.05043353885412216, -0.5336998701095581, 0.26006218791007996, -0.5837659239768982, 0.7887845039367676, -0.5320619940757751, -0.5889376997947693, -1.2400034666061401, -1.1787748336791992, 0.3219371736049652, 0.9590534567832947, 0.984691858291626, 0.8289424180984497, 0.07350995391607285, -0.4389995336532593, -0.0388774499297142, -0.871235191822052, -0.43552446365356445, 0.2769036889076233, 0.32657045125961304, 0.9757012724876404, -0.9037570357322693, -0.6302939057350159, -0.011155284009873867, 0.6367171406745911, -0.18780624866485596, 0.7393816709518433, 1.4095953702926636, 1.623499870300293, -0.6059987545013428, -0.2149832397699356, 0.5317087173461914, 0.2987510561943054, 0.11064261943101883, 0.7525129318237305, 0.10522276163101196, -1.1317869424819946, -0.9389976263046265, -1.0957274436950684, 0.7733033895492554, 0.14954040944576263, -0.936642050743103, 0.7861090898513794, -0.3101820945739746, 0.6172553300857544, 0.5128659009933472, -0.37539657950401306, 0.5499218702316284, -0.2599748969078064, 0.02972843125462532, -0.824999213218689, 0.9794179201126099, -0.11231569945812225, 0.020592430606484413, 0.082712322473526, 0.6073463559150696, 0.13570141792297363, -0.1961592137813568, -0.13174548745155334, 1.1364786624908447, -0.6964209675788879, 0.42994585633277893, 0.7441651821136475, -1.0098443031311035, -0.06430473178625107, -0.26805180311203003, -0.5079792141914368, 0.054737359285354614, 0.8535948991775513, 0.0772470086812973, -0.48607638478279114, 0.2343485802412033, -0.6315668225288391, -1.1378000974655151, -0.21857866644859314, -0.6947318315505981, -0.18324419856071472, 0.5227506160736084, 0.06289117783308029, 0.6698912978172302, -0.1699509620666504, 0.04452985152602196, -0.8039484024047852, -0.3150775134563446, -0.31147778034210205, -1.0976471900939941, -0.05519946292042732, 0.2528591752052307, -1.3296072483062744, -0.5492103099822998, -0.4828537404537201, -0.11999896168708801, -0.29366394877433777, -1.7986441850662231, -1.1459625959396362, -0.10948217660188675, 0.6920411586761475, -1.1129506826400757, 0.8525949120521545, -0.08464115113019943, -1.3784867525100708, 0.08986793458461761, -0.26070651412010193, -1.196905493736267, 0.11931219696998596, -0.4813616871833801, 0.7866464853286743, -0.6897967457771301, 0.269707590341568, -1.0907299518585205, 0.72662353515625, -2.2369203567504883, -1.909042239189148, -1.1653032302856445, 0.4960334300994873, 1.2149524688720703, 0.5425902605056763, -0.6133431196212769, 1.12376070022583, 0.7535567879676819, 0.06619279831647873, -0.4386567175388336, 0.4686932861804962, -0.3347887098789215, -0.04806727543473244, 0.8017273545265198, 0.5189047455787659, 0.7372758984565735, 0.7537882328033447, -0.10577528923749924, 1.3326267004013062, 0.24570617079734802, 0.6692363619804382, -0.7529191374778748, -0.21733959019184113, 0.25231459736824036, 0.8619715571403503, -0.61154705286026, -1.5114651918411255, -0.1305103600025177, -0.11881799250841141, -0.4237377941608429, -0.39450502395629883, 0.23079174757003784, -0.6486577987670898, -0.14864321053028107, -0.8058608174324036, 0.07257883995771408, -0.5765514969825745, 0.38471168279647827, -0.22959508001804352, -0.7293609380722046, -0.5637949109077454, 0.29975786805152893, 0.045081451535224915, -1.3485020399093628, 0.14916598796844482, -0.37126898765563965, 0.02179133892059326, -0.028487784788012505, -0.033755138516426086, 0.9473444223403931, 0.46504485607147217, -0.698722779750824, 1.3735487461090088, 0.6145844459533691, -0.604766845703125, 0.2789565622806549, 0.11377792060375214, -0.4853416085243225, 0.4632648825645447, -0.6312204599380493, 0.0734073594212532, -1.2908399105072021, 0.7069618701934814, 0.4219745695590973, -0.09916868060827255, 0.8323653936386108, -0.05182560160756111, -0.888620913028717, 1.0365842580795288, 0.5489115118980408, -0.8203865885734558, -0.31745848059654236, 1.600164771080017, -0.1178940162062645, -0.8638229370117188, -0.22044160962104797, -0.3061547875404358, 0.11958315968513489, -0.946910560131073, 1.099827527999878, 0.505864679813385, -0.7579770088195801, 0.6233853101730347, 0.3372243344783783, 0.09803654253482819, -0.040611766278743744, -0.3649115264415741, -1.5001647472381592, 0.06981221586465836, -0.7696580290794373, -0.954485297203064, -0.10131275653839111, -1.89443039894104, -0.9603428840637207, 0.8078324198722839, -0.06930292397737503, -0.6666055917739868, -0.14827416837215424, -0.10840008407831192, 0.6583273410797119, -0.3261374533176422, 0.6134731769561768, -0.35715875029563904, 1.1646547317504883, -0.499545693397522, 0.4700932204723358, -0.8133773803710938, -0.35163453221321106, 0.2254873663187027, 0.4187299311161041, -0.22422127425670624, -0.17941002547740936, 0.44487616419792175, -0.5905160903930664, -1.219107985496521, 0.10705038160085678, 0.7831684947013855, -0.23849965631961823, 0.04529417306184769, -0.8900520205497742, -0.1479269415140152, 0.31713712215423584, 1.339459776878357, -0.06634404510259628, -0.23138532042503357, -0.7576087713241577, 0.1812390834093094, -0.7715078592300415, 0.6819149851799011, -0.6830770373344421, 0.5974650979042053, 0.4234198033809662, -1.1607588529586792, -0.4871685206890106, -0.6554819941520691, 0.727375328540802, -0.36718618869781494, -0.21476656198501587, 0.8349728584289551, 0.17360959947109222, 0.14727860689163208, -1.0440986156463623, 0.027035217732191086, 0.30292800068855286, 0.2230033427476883, 0.047093119472265244, -1.2808741331100464, -0.2500225007534027, -0.5794899463653564, 0.5768272876739502, 0.938632071018219, 0.8965821862220764, 0.3940795660018921, 0.36976495385169983, -1.4596000909805298, 0.8012756109237671, 0.0397217683494091, 0.23458391427993774, 0.22353798151016235, 1.409896731376648, 1.8104791641235352, 0.8729486465454102, 0.07312421500682831, -0.7570836544036865, 0.728749692440033, -0.9738569259643555, -0.280661016702652, -0.13656778633594513, -0.9463114142417908, -0.7714447379112244], [-0.37081530690193176, 1.7691588401794434, -2.9353299140930176, -0.6081176400184631, 0.001981433480978012, 0.25810670852661133, 1.6382832527160645, 0.5919187664985657, 0.11418531835079193, -0.4647561013698578, -0.6640365123748779, 0.43519556522369385, 0.43038973212242126, 1.4916678667068481, 1.2496082782745361, 0.01226949691772461, 0.3697751462459564, -0.5722693800926208, 0.6826551556587219, 1.9142701625823975, -0.6345639228820801, -1.4390732049942017, -0.2439032793045044, 0.05548612400889397, -0.04029552638530731, 0.05392327159643173, -1.4989447593688965, -0.5688801407814026, -1.2387925386428833, -1.9082391262054443, 0.7503457069396973, -0.6899264454841614, -0.11714176833629608, 0.1937842220067978, -0.9246042966842651, -0.6233881711959839, 1.1924593448638916, 0.9721937775611877, 0.7495318055152893, -0.032811373472213745, 2.2740867137908936, -0.1583244800567627, 0.3451155126094818, -1.059995412826538, 0.16554462909698486, 0.09758143126964569, 0.9337689876556396, -0.9746219515800476, -0.502978503704071, -0.199894979596138, -0.010057075880467892, -1.161598801612854, 0.8680908679962158, 0.28059592843055725, 1.176857829093933, -0.28768131136894226, 0.8181624412536621, 0.6906242370605469, 0.43403053283691406, -0.6150317788124084, 0.47690993547439575, 0.5401620864868164, -0.419623464345932, 1.7452472448349, -0.24554060399532318, -0.7498436570167542, -0.473113089799881, 0.591343343257904, 0.09799621999263763, -0.23902194201946259, 0.3378444015979767, -0.25141581892967224, -0.16147594153881073, 0.14198525249958038, -1.1325018405914307, 0.167199969291687, -0.11004988104104996, -0.08143730461597443, 0.513103187084198, 0.45706063508987427, -0.3469935953617096, -0.1699221134185791, 0.7086388468742371, -0.247345969080925, 0.9545711874961853, 0.33998870849609375, 0.5131994485855103, 0.5801197290420532, -0.45794588327407837, 1.745200514793396, 0.5986310243606567, -0.4129120111465454, 0.2484852820634842, -0.11099722236394882, -0.7594183683395386, -0.8259685635566711, -0.3500683307647705, -0.5695300102233887, -0.45336830615997314, -0.5993584394454956, -0.5300028920173645, -0.30890944600105286, -0.22260791063308716, -0.3953348994255066, -0.883544385433197, 1.184219479560852, -0.06761724501848221, 0.038193922489881516, -0.6438242793083191, -0.6233416199684143, -0.40371742844581604, 0.4700855314731598, -1.2631241083145142, -0.5379543900489807, -0.9882264137268066, 1.4829753637313843, 1.1897975206375122, 0.15902526676654816, 0.05629076436161995, 0.5457465052604675, -0.22564782202243805, -0.9053683280944824, 0.2598061263561249, 0.8654447197914124, 0.3530058264732361, -0.05838755890727043, -0.7555152773857117, -1.0185470581054688, 0.4300502836704254, -0.1324416995048523, 0.11728379875421524, -0.2274775356054306, -0.1262710988521576, 0.7153869271278381, -0.6921207308769226, 1.3102198839187622, -0.34622836112976074, -1.3939350843429565, -0.5687101483345032, -0.1322157084941864, 0.5450040102005005, -0.9594866037368774, -0.8104197382926941, -0.45981350541114807, -0.24895036220550537, -0.9287713766098022, 0.9507396221160889, -0.36363258957862854, -0.9317713975906372, 0.3456166982650757, -0.4328966438770294, 0.1436806619167328, 0.7080725431442261, 0.8028989434242249, 0.18503394722938538, -0.6099935173988342, 0.02255503460764885, -0.23059676587581635, 0.2069750428199768, 0.17056721448898315, 1.0619463920593262, 0.051736291497945786, -0.3724040687084198, 0.7271413803100586, 0.725068986415863, -0.6238527894020081, 0.4077354669570923, 1.2427473068237305, -0.4529391825199127, 0.45229265093803406, 0.403473436832428, 0.05264701694250107, -0.6199114918708801, 0.7618309855461121, 0.48858311772346497, -1.3693885803222656, 0.9525048136711121, -1.0560489892959595, -1.1537736654281616, -1.3000799417495728, 0.4318903088569641, -0.9052721261978149, 0.11325307935476303, -0.5483019351959229, 0.6182363033294678, -0.41350963711738586, 0.9192529320716858, -0.8377445936203003, -0.3305874764919281, -0.3745618462562561, -0.14396442472934723, -0.1151285320520401, -0.4985138475894928, 0.10685015469789505, -0.16859525442123413, -0.0017148926854133606, 0.7170659303665161, -1.3251982927322388, -0.3506147563457489, 0.5819145441055298, 0.2706322968006134, -0.44074907898902893, -1.0303682088851929, 0.7573756575584412, -0.9360969066619873, 0.830637514591217, -0.6062952280044556, 0.8511916995048523, -1.1184773445129395, 0.11488541215658188, 1.098757266998291, -0.28503599762916565, -0.7107465863227844, 0.2687748074531555, 0.3174165189266205, -0.8342331051826477, -0.17369145154953003, 0.006423003971576691, -0.42720574140548706, 0.6140437722206116, -0.08255083113908768, 0.3681100606918335, 0.4111212193965912, 0.5278588533401489, 0.46162185072898865, -0.30849677324295044, -0.5212018489837646, -0.04584473744034767, -0.5213871002197266, 0.5560283660888672, -0.558419406414032, -1.578478455543518, 0.04360279440879822, 0.4682764410972595, -1.241310954093933, 0.0689673200249672, 0.5613552927970886, 0.33736029267311096, 0.230056494474411, 0.8661445379257202, 0.913662850856781, 1.106268048286438, -0.18239903450012207, -0.8005877733230591, -0.41803961992263794, 0.906190812587738, 0.8312483429908752, -0.2154916226863861, 0.0005999244749546051, 1.3158804178237915, 0.8481705784797668, 0.18663010001182556, 0.42085495591163635, -0.3089746832847595, 0.18880359828472137, -1.0145987272262573, -0.42963907122612, 0.9465025067329407, -0.43249690532684326, 2.2516682147979736, 1.2381314039230347, -1.4664239883422852, -0.3148774206638336, 0.319027841091156, -0.7667285799980164, -0.3374207615852356, -0.6532233357429504, -0.13612540066242218, -0.4254230558872223, 0.11627772450447083, 0.0310836024582386, 0.6625509262084961, -0.3842278718948364, 0.5506724119186401, -0.2893943786621094, -0.5655182003974915, -0.2563108503818512, 0.9001717567443848, -0.16096128523349762, 1.5348318815231323, 0.09231889247894287, -2.095343828201294, 0.0033695874735713005, 0.1893099993467331, 0.45442095398902893, 0.3629399240016937, 0.17001543939113617, -0.0807299017906189, 0.3332856297492981, -0.6378160119056702, 0.2824586033821106, -0.263348251581192, -0.29664137959480286, -0.20339082181453705, -0.2661018371582031, 0.5554718971252441, 0.8517674803733826, -0.16234412789344788, -0.4541010558605194, -0.327351838350296, 0.41252633929252625, 1.084180474281311, 0.8144843578338623, 1.0308642387390137, -0.12260103970766068, -0.32989510893821716, 0.2847435176372528, -1.1448034048080444, -0.4347638487815857, -0.9785125255584717, -1.3306509256362915, -1.0469977855682373, 0.15753833949565887, 0.020037904381752014, 0.18613436818122864, 0.7496630549430847, -0.1882636845111847, 1.0392881631851196, 0.8054189682006836, -0.0697418600320816, -0.3292310833930969, -0.3302677869796753, 0.4017353653907776, 0.19869787991046906, 0.3806149363517761, 1.0982029438018799, -1.0202754735946655, -0.7721350193023682, -0.7568647861480713, -0.28972893953323364, 0.4022205173969269, 0.48868319392204285, -0.08591678738594055, -1.6056143045425415, -0.2551361918449402, 0.5297535061836243, 1.0668166875839233, -0.14022064208984375, 0.007834481075406075, -0.3320310711860657, 0.6777034401893616, 0.43596959114074707, 0.34361857175827026, -0.7270129323005676, 1.4952112436294556, -0.4403669834136963, -0.3263344466686249, 0.010905064642429352, 0.05869925394654274, 1.373576045036316, -0.501533567905426, -0.3169991374015808, -0.41808730363845825, -0.7521241307258606, -0.5401511192321777, 0.7135800123214722, -0.013361876830458641, 1.131570816040039, 0.2399616688489914, 0.1594352275133133, 1.3557718992233276, 0.3782382309436798, -0.19715960323810577, -2.0828301906585693, 0.8106377720832825, 1.2656373977661133, 0.9240629076957703, 0.16541272401809692, 0.5820589065551758, 0.5612357258796692, 0.3734363317489624, -0.04890890419483185, 0.07252602279186249, 0.48138415813446045, -0.37514758110046387, 0.24944430589675903, -0.31203532218933105, 0.10703291743993759, -0.07125525921583176, -0.22467324137687683, -0.20009776949882507, 0.5119684338569641, -1.5193488597869873, -0.6255496144294739, 0.5202793478965759, 0.11208949238061905, -0.8180305361747742, -0.12506969273090363, 0.4691663682460785, 0.3948214054107666, -0.3183309733867645, 0.8130155801773071, -0.18346327543258667, 0.17402273416519165, -0.304281085729599, -1.892533302307129, 0.14214633405208588, -0.005530667491257191, -0.48331665992736816, 0.5784686207771301, -0.7181364297866821, -0.26157665252685547, -0.11416763812303543, 0.9334515929222107, 0.27598893642425537, -0.378689169883728, 0.4258510172367096, -0.0803346186876297, 0.5043810606002808, -0.4872654378414154, 0.150221049785614, 0.9178441762924194, -0.2700008749961853, 0.13863568007946014, 0.5494892597198486, 0.21689416468143463, 0.02773435041308403, 0.37418287992477417, -0.20314523577690125, 0.38370510935783386, -0.5408257246017456, 0.28629645705223083, 0.38213011622428894, 0.2286403328180313, 1.387453556060791, 0.14014601707458496, 0.3284280598163605, 0.5575615167617798, -0.2694619297981262, -1.8156688213348389, 0.36228376626968384, 0.2522474229335785, 0.3922395706176758, -0.9603133201599121, -0.06032317876815796, 0.6168875694274902, -0.025430861860513687, 0.7067226767539978, 0.17768995463848114, 0.8789620399475098, 0.28491121530532837, -1.0217920541763306, -0.04072954133152962, 1.2650785446166992, 0.9436925649642944, 1.4833046197891235, -0.32288435101509094, -0.8424920439720154, -1.12115478515625, 0.2673787474632263, -0.9486635327339172, -0.1301218718290329, 0.5124531388282776, 0.01429081428796053, 1.1261675357818604, -1.5394489765167236, -0.05744033306837082, 0.8117567300796509, -0.047464095056056976, 0.46152475476264954, 0.1934479922056198, 0.3287763297557831, -0.3526234030723572, 0.4299449026584625, -0.26979491114616394, 0.03833211958408356, 0.28473812341690063, -0.2439790517091751, -0.022588610649108887, 1.063872218132019, -0.8806912899017334, 0.2039964646100998, -0.17884038388729095, -0.4462180435657501, -0.10987786203622818, -0.8813746571540833, 0.5666110515594482, -0.43409281969070435, 0.5146914720535278, 1.8938897848129272, -0.016096465289592743, -1.0972511768341064, 0.25104478001594543, -1.1496297121047974, 1.0258692502975464, -0.524582028388977, -0.26849064230918884, -0.3173534870147705, 0.1323150396347046, -0.8052237033843994, 0.5443627834320068, -1.2114416360855103, -0.2216307818889618, -0.7490965723991394, -1.0673047304153442, 0.7686409950256348, 0.52157062292099, 1.2526692152023315, 0.8289296627044678, -0.021042760461568832, 0.04326285049319267, 0.5109070539474487, -0.4017782211303711, -0.6166050434112549, 0.08745496720075607, -0.31315550208091736, 0.7020887136459351, -1.2494291067123413, -0.25645554065704346, 0.4218091070652008, 0.38493022322654724, 0.5748347640037537, 1.3013070821762085, 1.1429671049118042, 2.1892309188842773, -0.6287941336631775, -0.39852115511894226, -0.15812461078166962, -0.6868590712547302, 0.780049741268158, 0.8032482266426086, -0.9318267703056335, -1.0271252393722534, -0.9182759523391724, -0.9622198939323425, 0.6938914060592651, -0.6439119577407837, -0.7091494202613831, 1.748382806777954, 0.5691695213317871, 0.33460843563079834, 0.569008469581604, -0.7962943315505981, 0.3791573643684387, -0.27175140380859375, -0.1067805364727974, -1.1753085851669312, 0.7403972744941711, 0.23102617263793945, 0.3349076807498932, 0.3239513337612152, 0.6271689534187317, -0.3136979639530182, -0.12737111747264862, 0.7889791131019592, 0.40342918038368225, 0.8180778622627258, 0.31351086497306824, 0.28382909297943115, -0.5906009674072266, -0.28668013215065, -0.8727368116378784, -0.30233004689216614, -0.3086502254009247, 0.9069324135780334, -0.3802492022514343, -0.894178032875061, -0.5839646458625793, -0.3629089295864105, -0.36927422881126404, 0.23165464401245117, -0.8513492941856384, 1.0207035541534424, -0.42170608043670654, -0.31478700041770935, -0.03946319967508316, -0.48786646127700806, -0.2522737383842468, -0.045329347252845764, -0.1525050699710846, -0.01892789453268051, -1.775591254234314, 0.10564927011728287, -0.07733899354934692, -1.138338565826416, 0.2208409160375595, 0.07935107499361038, -0.0944683700799942, -1.2489311695098877, -0.5542457699775696, -0.9515981674194336, 0.328921914100647, 0.8130122423171997, -0.6728956699371338, 1.127216100692749, 0.5816655158996582, -1.1743429899215698, 0.3110850155353546, -0.5352941155433655, -0.5194490551948547, -0.8331954479217529, -1.469322681427002, 0.9193122386932373, -0.6796011328697205, 0.6918540596961975, -0.12591128051280975, 0.8404159545898438, -1.1005362272262573, -0.7123515009880066, -0.7018448710441589, -0.09121452271938324, 0.772009015083313, 0.4381406307220459, -0.6858547329902649, 1.5845873355865479, 0.9832070469856262, -0.3350878953933716, 0.05701546370983124, 0.6662681698799133, -0.44446516036987305, 0.19889670610427856, 0.09269337356090546, 0.7977603077888489, 0.4968157112598419, 1.128279447555542, 0.021978341042995453, 1.2923388481140137, 0.5822916626930237, 0.5324717164039612, -0.32297903299331665, 0.4016832709312439, -0.09663555026054382, 0.9467164874076843, -0.5339424014091492, -0.5570205450057983, -0.05472754314541817, -0.7038038969039917, -0.679445743560791, -0.04416337609291077, 0.2747398912906647, -1.4781253337860107, -0.020261920988559723, -1.0761016607284546, 0.9862310290336609, -1.167135238647461, 0.6606630086898804, -0.5336005091667175, -0.3052003085613251, -0.35345369577407837, 0.43118804693222046, -0.1417551338672638, -0.8909218907356262, 0.24630068242549896, 0.5147097706794739, 0.16085223853588104, -1.0680404901504517, 0.38909274339675903, 1.500409483909607, 0.45449069142341614, -1.0500946044921875, 1.868550419807434, 0.6687649488449097, -0.24207580089569092, 0.18548236787319183, -0.14323033392429352, 0.6805738806724548, 0.6547496914863586, -1.1154836416244507, 0.0815105214715004, -1.2727419137954712, 0.927192747592926, -0.44413650035858154, -0.08779215067625046, -0.8355165719985962, -0.062418319284915924, -0.16830025613307953, 0.2917476296424866, 0.9613510966300964, -0.5189769268035889, -0.24937430024147034, 0.9486685991287231, 0.014689730480313301, -0.03641735389828682, -0.002837616950273514, 0.9689722657203674, -0.07564598321914673, -0.8061964511871338, 0.6951403021812439, 0.26176345348358154, -0.8199928402900696, 0.7274096608161926, 0.9046626687049866, -0.08346530795097351, 0.03270302712917328, -0.5309700965881348, -1.46121084690094, 0.23520369827747345, -0.7091416716575623, -0.6909871697425842, 0.544823408126831, -0.7714313268661499, -0.4040580093860626, 0.4927985966205597, 0.8390418887138367, -0.6287755370140076, -0.02127969264984131, -0.06894755363464355, -0.8122812509536743, -1.0316212177276611, 1.5356411933898926, -0.21110183000564575, 2.1473708152770996, 0.02329602837562561, 0.6900224089622498, -1.0667668581008911, -0.09938263893127441, -0.22978027164936066, 0.44295763969421387, 0.2459067702293396, 0.05153419077396393, 0.5293300747871399, -0.862177848815918, -0.19826139509677887, 0.08531950414180756, 0.25657472014427185, 0.44313791394233704, -0.052993275225162506, -1.2197387218475342, 0.2139759063720703, 0.6406848430633545, 0.31226804852485657, -0.20491711795330048, -0.7084100246429443, -1.1197715997695923, 0.7033692598342896, -0.3463691473007202, 0.3891754448413849, -0.08657031506299973, 0.3410405218601227, 0.060446787625551224, -0.49012428522109985, -0.16351428627967834, -0.6999216675758362, 0.41292548179626465, -0.4149501919746399, 0.4880247116088867, 0.2677432894706726, 0.3010753095149994, 0.017056070268154144, -0.4301202893257141, 0.11733588576316833, 0.03047635592520237, -0.5295091271400452, -0.09649114310741425, -1.109056830406189, -0.8401820063591003, -0.5610905289649963, 0.7390492558479309, -0.09593625366687775, 0.4195305109024048, -0.028452176600694656, 0.3508226275444031, -1.4580739736557007, -0.10267338901758194, 0.3092375695705414, -0.37826046347618103, 0.45524561405181885, 1.171463966369629, 1.6652836799621582, 0.3891347348690033, -0.1386769562959671, -0.45325586199760437, 0.7406321167945862, -0.397672563791275, -0.14659109711647034, -0.23375527560710907, -0.9624246954917908, -0.4473665952682495], [-0.2660030424594879, 0.5169986486434937, -1.8136500120162964, -1.0038013458251953, 0.5608078837394714, 0.1942720115184784, 1.022495985031128, 0.5085186958312988, 0.05441991984844208, 0.1840435415506363, -1.0973360538482666, 0.7236887812614441, 0.17701466381549835, 1.1531811952590942, 0.6564359664916992, 1.7719097137451172, 0.7319284081459045, -0.6692825555801392, 0.37713247537612915, 1.67587411403656, -0.27590253949165344, -0.44871649146080017, -0.07661380618810654, 0.8380119204521179, -0.026637397706508636, -0.2766604721546173, -1.0285100936889648, -0.5955503582954407, -1.4550487995147705, -1.1423449516296387, 0.42948824167251587, -0.03547989949584007, 0.829985499382019, 0.9654435515403748, -1.1198780536651611, 0.2557434141635895, 0.7054511904716492, 1.8115181922912598, 0.9627755880355835, 0.5866503119468689, 1.5640161037445068, 0.07596027851104736, 0.10484420508146286, -1.5292348861694336, -0.6695379018783569, -0.7317020893096924, 0.8674051761627197, -1.189716100692749, 0.6841955184936523, -0.25840356945991516, 0.5653988122940063, -1.2755368947982788, 0.1522783637046814, 0.49315330386161804, 1.7534908056259155, -1.1049270629882812, 0.797166645526886, 0.4195269048213959, -0.18894073367118835, -0.5425865650177002, 0.5735137462615967, 0.007533084601163864, -0.6857747435569763, 1.6534727811813354, 0.6419671177864075, -0.44492802023887634, -0.4266597032546997, 0.4560074508190155, -0.1751197725534439, 0.115043506026268, 0.8331315517425537, 0.4476078748703003, -0.7438600063323975, 0.5857361555099487, -1.1612452268600464, -0.11235588043928146, 0.5132369995117188, 0.25812986493110657, 1.284895658493042, -0.1902584731578827, -0.3588119447231293, -0.29613763093948364, 0.8763607144355774, -0.6288920640945435, 0.43442538380622864, 0.3537796437740326, 0.6634334921836853, -0.6951018571853638, -0.651534378528595, 0.6887964010238647, 0.8459024429321289, 0.04331060126423836, 0.23578768968582153, -1.0495564937591553, 0.14476057887077332, -0.5666710138320923, 0.12867073714733124, 0.39043012261390686, -0.9674418568611145, -0.604841947555542, -0.5394454598426819, -0.09978511929512024, -0.37498438358306885, -0.06425587832927704, -0.6873173117637634, 0.9929776191711426, 0.2504105865955353, 0.5585203170776367, 0.05011073499917984, -0.29961344599723816, 0.3129650950431824, 0.6083093285560608, -0.3333019018173218, -1.2350765466690063, -0.10873060673475266, 0.9730703234672546, 0.8434517979621887, -0.45889759063720703, 0.7609685063362122, 0.5804144144058228, 0.25604334473609924, 0.3533269762992859, -0.00978370662778616, 1.0292960405349731, 0.6869054436683655, 0.44213032722473145, -0.9118576049804688, -0.3283618092536926, 0.10971226543188095, -0.29727277159690857, 0.12259510904550552, -0.45934465527534485, 0.06388090550899506, 0.6124584674835205, -0.6532242894172668, 0.960788369178772, -0.2444951832294464, -0.9862377047538757, -0.09119624644517899, -0.27487310767173767, 0.8613286018371582, 0.22954365611076355, -0.9771079421043396, -0.7082914113998413, -0.9658006429672241, -0.9802242517471313, 0.1586235612630844, -0.47102415561676025, -0.22433528304100037, 0.7402671575546265, -0.8320215940475464, -0.035433441400527954, 0.7802154421806335, 0.7360290884971619, 0.34135574102401733, 0.024252399802207947, 0.24540501832962036, -0.04470013827085495, 0.3032285273075104, -0.059539347887039185, 0.683230996131897, -0.09278559684753418, -0.8955672979354858, 0.7594965696334839, 0.1488935649394989, -0.39145398139953613, 0.23089063167572021, 1.1733769178390503, -0.19809919595718384, 0.8369134068489075, 0.28617948293685913, -0.4264407753944397, -0.9959376454353333, 0.8629820346832275, 0.485679030418396, -0.69648677110672, 0.8450661897659302, -0.47367432713508606, -1.320346713066101, -0.8820706009864807, 0.6659635305404663, -0.7672532200813293, 0.5895887017250061, 0.08889247477054596, 0.06746311485767365, -0.8174536824226379, 0.5353104472160339, -0.08691110461950302, -0.5627652406692505, -0.4529780447483063, -0.5814895629882812, -0.6730977296829224, -0.7857767343521118, -0.13282150030136108, -0.7414737939834595, -0.45764490962028503, 0.3682016432285309, -0.8242930173873901, -0.6048378348350525, -0.0005927905440330505, 0.05532967299222946, -0.336373895406723, -0.42005762457847595, 0.810782253742218, -0.5646077394485474, 0.8439634442329407, -0.957263708114624, 0.22518645226955414, -0.3704580068588257, -0.3756183385848999, 1.430661678314209, -0.31598085165023804, -0.6421663165092468, 0.007162046153098345, -0.39765214920043945, -0.9805271625518799, 0.26034045219421387, 0.28859031200408936, -0.7781209945678711, 0.2115372121334076, -0.378513365983963, -0.19663240015506744, 0.32414954900741577, 0.09074217081069946, 0.12163568288087845, -0.12837542593479156, -0.14615516364574432, -0.45529472827911377, -1.0845167636871338, -0.1023375540971756, -0.8168536424636841, -0.8302849531173706, 0.9642910361289978, 0.3021230101585388, -1.1024396419525146, 0.6839702129364014, -0.5160762071609497, 1.0653139352798462, -0.25344282388687134, 1.3861238956451416, 0.7423017024993896, 1.0865107774734497, 0.26640579104423523, -0.025282062590122223, -0.8957992196083069, 0.1940344125032425, 0.7302687168121338, -0.4679216742515564, 0.13007445633411407, 0.6130484938621521, 0.984534740447998, -0.07890234142541885, -0.2848742604255676, -1.0968008041381836, 0.3840453624725342, -0.6995187401771545, -0.8460994958877563, 0.5356665253639221, -0.35176733136177063, 2.050513505935669, 0.5467084646224976, -1.5183727741241455, -0.007027474232017994, 0.3879404067993164, -0.4923149347305298, -0.34078413248062134, -0.671237051486969, -0.7474463582038879, 0.21848087012767792, 0.494197279214859, -0.0909605324268341, 0.9093632698059082, -0.8550547957420349, 0.7471249103546143, -0.15379995107650757, -0.3116343915462494, 0.025811780244112015, 0.205037921667099, -0.20518581569194794, 2.041862964630127, -0.025087282061576843, -1.1888318061828613, 0.49998074769973755, -0.10572139173746109, 0.6148669123649597, 0.04816734418272972, 0.23863941431045532, 0.2787930965423584, 0.4348314702510834, -0.33000773191452026, 0.4473828971385956, -0.07679535448551178, -0.4007018506526947, 0.3457326889038086, 0.18551458418369293, 0.45184263586997986, 0.8646541237831116, -0.5746065974235535, -0.90299391746521, 0.4830213487148285, 0.8243387937545776, 1.2249417304992676, 0.20529183745384216, 0.7433717250823975, -0.16438859701156616, 0.10944323986768723, -0.8223639726638794, -0.5943968296051025, -0.4636046290397644, -0.9239126443862915, -0.7476054430007935, -0.9783945083618164, 0.03781671077013016, 1.038750410079956, 0.29081031680107117, 0.798467755317688, -0.37203070521354675, 0.0024178382009267807, 1.421875, -0.7422256469726562, -0.5417179465293884, 0.09662657231092453, 0.24093014001846313, 0.5056753158569336, 0.6731916069984436, 0.31222569942474365, -0.9499028921127319, -0.29336023330688477, 0.054742634296417236, -0.09860608726739883, 0.3768514394760132, -0.027846748009324074, -0.29772016406059265, -1.8644553422927856, -1.0622583627700806, 0.18908093869686127, 1.0729795694351196, -0.4057575464248657, -0.6875746250152588, 0.5290939211845398, 0.2839353680610657, 0.054734013974666595, 0.3521696627140045, -0.8841450214385986, 0.5038936138153076, -0.8070884346961975, -1.2532758712768555, -0.09072494506835938, 0.597923994064331, 0.8450713753700256, -0.652712881565094, -1.1169846057891846, -0.32539302110671997, -0.6701648235321045, -0.9939460158348083, -0.5446760058403015, 0.0595407634973526, 0.9077613353729248, -0.4205209016799927, 0.002023502951487899, 1.2969688177108765, -0.4022303521633148, 0.010763236321508884, -1.3832484483718872, 1.0916520357131958, 0.1613970845937729, 0.884037971496582, 0.3290785551071167, -0.20245973765850067, 1.1349138021469116, 0.17945550382137299, -0.1840572953224182, 0.22834588587284088, 1.0970531702041626, -0.2607683837413788, -0.5955701470375061, -0.5751575231552124, 0.26698794960975647, -0.19525332748889923, -0.601103663444519, -0.4701377749443054, 0.4537096321582794, -1.239226222038269, -0.4115374982357025, 1.3551980257034302, 0.2502557039260864, -0.28939276933670044, 0.44960319995880127, 1.042801856994629, 0.3198886513710022, -0.2873341739177704, 0.21114106476306915, -0.4483819603919983, 0.042567621916532516, 0.15394793450832367, -0.8529157638549805, -0.07990585267543793, -0.41622915863990784, 0.12238562852144241, 0.6783363819122314, -1.2434977293014526, 0.0758325457572937, -0.021826311945915222, 1.2241215705871582, 0.47377076745033264, -0.5696666240692139, 0.5282676815986633, -0.09552206844091415, 0.2017926722764969, -0.1328052580356598, -0.7340127825737, 1.4790879487991333, -0.005425311625003815, -0.24506957828998566, -0.1858472377061844, -0.306361585855484, 0.698554277420044, -0.1810096949338913, -0.38497963547706604, 0.4921751022338867, -0.6292313933372498, -0.0013118656352162361, 0.10496804118156433, 0.23260311782360077, 0.831822395324707, 0.1338927298784256, 0.7948625087738037, 0.6300117373466492, -0.3366665244102478, -0.1529378741979599, -0.6128740310668945, 0.34998819231987, -0.07877881824970245, -0.857017993927002, -0.12622860074043274, 0.6679669618606567, 0.15174297988414764, 0.5020031332969666, 0.290660560131073, 1.3660706281661987, -0.13739651441574097, -0.0681794062256813, 0.5276390910148621, 1.0652714967727661, 0.37003928422927856, 1.0865564346313477, 0.1375129520893097, -1.137876033782959, -0.19607970118522644, 0.8276941180229187, -0.8488451838493347, 0.19161319732666016, 0.48324957489967346, 0.40129169821739197, 1.2353899478912354, -1.6439481973648071, -0.8529923558235168, 0.5564520359039307, 0.1397036463022232, 0.30796265602111816, 1.252285122871399, -0.015215311199426651, 0.17492356896400452, 0.30397364497184753, -0.10783708840608597, -0.2221374213695526, 0.7730727791786194, 0.33129093050956726, 0.30972376465797424, 0.918064296245575, -1.056854009628296, 0.7648187279701233, -0.7780184745788574, -0.07111728936433792, 0.4252933859825134, -0.5615943670272827, -0.015571804717183113, 0.38278719782829285, 0.25980138778686523, 1.432533621788025, -1.0787845849990845, -0.7948650121688843, 0.6474558711051941, -1.173663854598999, -0.08582963049411774, -0.6255320906639099, -0.47731998562812805, -0.35821568965911865, -0.18874666094779968, -0.18386481702327728, -0.21098899841308594, -0.7013658285140991, -0.5794859528541565, -0.5783801078796387, -0.8341494798660278, 0.4905470609664917, 0.9033621549606323, 1.557504653930664, -0.5128047466278076, 0.020236505195498466, 0.08586982637643814, 0.40350136160850525, -0.6841021776199341, -0.056676723062992096, -0.048331305384635925, 0.2276788353919983, -0.2240411937236786, -1.2641980648040771, -0.549662709236145, 0.37700554728507996, 0.09134622663259506, -0.510248064994812, 0.472611665725708, 0.4378078579902649, 0.8641008734703064, -0.11845582723617554, -0.8568677306175232, 0.6557433009147644, -0.3525933027267456, 0.4589587152004242, 0.9429015517234802, -1.3133796453475952, -0.820937991142273, -0.9118828773498535, -1.1986134052276611, 0.6358237862586975, 0.2915484607219696, -0.5342434048652649, 1.212548851966858, 0.554545521736145, 0.44492360949516296, 0.9371321797370911, -1.2059110403060913, 0.25814077258110046, -0.3646490275859833, -0.40830716490745544, -1.7655376195907593, 1.1263190507888794, 0.5608116984367371, 0.2087230533361435, -0.23224611580371857, 0.12409548461437225, -0.44300442934036255, 0.009766551665961742, -0.9943661689758301, 1.0522723197937012, 0.5533103346824646, 0.9049335718154907, -0.3342013955116272, -0.28531238436698914, -0.3362971842288971, -0.9306595325469971, -0.566498875617981, -0.2545432448387146, 1.3641475439071655, 0.03505729138851166, 0.09698875993490219, -0.3611033856868744, -0.08568232506513596, -0.5907272696495056, -0.6570875644683838, -0.4926285147666931, 0.22012700140476227, 0.3570074737071991, -0.24591076374053955, -0.22930000722408295, 0.46976858377456665, -0.007749849930405617, -0.10044009983539581, 0.36459872126579285, 0.08283005654811859, -1.3421896696090698, 0.3521723747253418, -0.03557388484477997, -1.0908669233322144, -0.4488500654697418, -0.31637752056121826, -0.4114476144313812, -0.9875587821006775, -0.4985702335834503, -1.9448813199996948, 0.9933617115020752, 0.8078666925430298, -0.8552855849266052, 0.9756001234054565, 0.3077164888381958, -1.261850118637085, -0.2973635494709015, -0.10910478979349136, -0.7623297572135925, -0.4942493140697479, -1.0477334260940552, 0.17804266512393951, 0.628944993019104, 0.33574333786964417, -0.20501063764095306, 0.2520366609096527, -1.49660325050354, -0.5097548961639404, -0.596141517162323, -0.566223680973053, 0.6869027614593506, 0.36709678173065186, -0.4404151737689972, 1.1483423709869385, 0.6906683444976807, 0.3261885643005371, 0.06560970097780228, -0.1426423043012619, -0.7011374235153198, 0.7915517687797546, 0.6593140363693237, 0.37225010991096497, -0.016806185245513916, 0.9354159832000732, 0.1225380152463913, 0.8095089197158813, 0.8311992883682251, 0.6478132605552673, -0.1015373170375824, -0.3088197708129883, -0.2417403757572174, 1.4759935140609741, -0.6492127776145935, -0.6769955158233643, -0.6079485416412354, -1.1063350439071655, -0.9829199314117432, -0.7277279496192932, 1.3978954553604126, -0.7840586304664612, -0.433801531791687, -0.7174078226089478, 0.45024484395980835, -0.9117026925086975, 1.5069347620010376, 0.42270904779434204, -0.46049070358276367, 0.36368927359580994, 0.10839834809303284, -0.3419187366962433, -0.6232585310935974, 0.8760153651237488, 0.4132315218448639, -0.2885448932647705, 0.07893963158130646, 0.0847376212477684, 0.5349367260932922, 0.37441280484199524, -0.44239410758018494, 1.9393810033798218, 0.6915857195854187, 0.16518759727478027, 0.048298828303813934, 0.5511053204536438, 0.37437379360198975, 0.6886245608329773, -0.5605112314224243, -0.5003998279571533, -0.6370638012886047, 0.842428982257843, -0.5561941862106323, 0.2525319755077362, -0.8442595601081848, -0.15291006863117218, -0.4154745638370514, 0.670355498790741, 1.0982030630111694, -1.0810259580612183, -0.07439775764942169, 0.9094720482826233, -0.6049157381057739, -0.004835896193981171, -0.15093056857585907, 0.6624516248703003, -0.33018046617507935, -0.06227347254753113, 1.3304853439331055, 0.7366217970848083, -0.8972615003585815, 0.3846006989479065, 0.355051726102829, 0.13787049055099487, -0.17468926310539246, -0.18652625381946564, -0.9231517314910889, 0.0987493023276329, 0.1484174132347107, -1.1701918840408325, 0.6232871413230896, -1.1085678339004517, -0.7962214946746826, -0.0172492116689682, -0.3725554645061493, -0.5067257881164551, -0.4474713206291199, -0.45645079016685486, -0.1585882008075714, -0.38138508796691895, 0.47272980213165283, -0.3426523506641388, 1.309013843536377, -0.13349425792694092, -0.04473094269633293, -1.0696022510528564, -0.12817886471748352, 0.19989606738090515, 0.3723512887954712, -0.16259025037288666, -0.2852625846862793, 0.9035022258758545, 0.09148666262626648, -0.8927236199378967, -0.3036516308784485, -0.31685662269592285, -0.20859138667583466, -0.3644644021987915, -0.21399931609630585, 0.040949299931526184, 1.0490729808807373, 1.0980297327041626, 0.7048647403717041, -1.0412667989730835, -0.6872120499610901, -0.2252800166606903, -0.6994669437408447, 0.9125115871429443, 0.2758055329322815, 0.5657142400741577, 0.21786940097808838, -0.17589835822582245, -0.021680396050214767, -0.0484115406870842, 0.439240425825119, 0.045431531965732574, 0.4922029972076416, 0.5574375987052917, -0.041467733681201935, 0.09444049745798111, -0.5813080668449402, 0.6313037276268005, -0.25007107853889465, 0.06375593692064285, 0.06287574768066406, -0.7779520750045776, -0.5919661521911621, -0.39512741565704346, 0.29663902521133423, 1.0553981065750122, 0.8942986726760864, -0.05579163879156113, 0.18685197830200195, -1.2381762266159058, 0.5211899876594543, -0.0621173195540905, -0.4139135777950287, -0.22526969015598297, 0.5373762249946594, 1.0197316408157349, 0.27434495091438293, 0.05566622316837311, -0.20141837000846863, -0.11351125687360764, -0.3842257559299469, -0.45510271191596985, -0.9752432107925415, -0.3530494272708893, -0.1903584599494934], [0.38498058915138245, 0.8477745056152344, -2.666747570037842, -1.0466417074203491, 1.4858349561691284, -0.033301543444395065, 1.1331743001937866, 0.31832143664360046, 0.8321809768676758, 0.7950726747512817, -0.3919226825237274, -0.4064694941043854, -0.04676933214068413, 1.2741339206695557, 0.8611035943031311, 0.5624397993087769, 0.6215924620628357, -1.135305643081665, 0.8163381814956665, 1.2048332691192627, -0.06614615023136139, 0.002717326395213604, -1.314380168914795, 0.026980450376868248, 0.5425735712051392, 0.8075462579727173, -1.409798502922058, -0.01440754160284996, -0.5769913196563721, -0.6686378121376038, 0.4579665958881378, -1.3322086334228516, 0.35320520401000977, 1.3997730016708374, -1.8003722429275513, -0.33905747532844543, 1.3243192434310913, 1.540400743484497, 0.539577066898346, -0.07804188877344131, 2.014233112335205, 0.5690619349479675, -0.4449789524078369, -0.872448742389679, -0.42534130811691284, 0.13271795213222504, -0.4175681471824646, -0.6662288308143616, 0.4038139879703522, -0.5768283009529114, 0.561273455619812, -1.0363050699234009, 0.6950674057006836, 0.695608377456665, 0.8563533425331116, -0.3506969213485718, 0.4950273633003235, 0.9398349523544312, 0.3573967218399048, -0.37010157108306885, 0.6214407682418823, -0.5485000014305115, -0.44059374928474426, 1.0653165578842163, 0.018726233392953873, 0.20647187530994415, -0.7716876864433289, 0.5366835594177246, 0.24198421835899353, -0.42544880509376526, 0.7319338917732239, -0.4805328845977783, -0.3930802345275879, 0.5638512372970581, -0.8270836472511292, 0.1414014995098114, 0.9013266563415527, 0.6474785208702087, 0.6427106857299805, 0.026391008868813515, -0.6726537346839905, 0.29117780923843384, 1.6072461605072021, -0.4106771945953369, 0.30594879388809204, 0.1640116423368454, 0.16482079029083252, -0.752274215221405, 0.26441898941993713, 1.446046233177185, 0.900784969329834, 0.6787002682685852, 0.09594863653182983, -0.2749066650867462, 0.12629838287830353, -0.35985326766967773, -0.28635814785957336, -0.3769606351852417, -1.2633404731750488, -0.4452941119670868, -1.0878316164016724, -0.654829740524292, -0.03613905608654022, 0.24737873673439026, -0.4904705286026001, 1.3565765619277954, 0.04021672531962395, 0.41445329785346985, -0.33869293332099915, -0.33213356137275696, -0.5886976718902588, 0.7815259099006653, -0.5596820116043091, -0.4340052902698517, -0.05379364639520645, 1.239163875579834, 0.5275267362594604, -0.8085996508598328, 0.2782582640647888, 1.1962366104125977, 0.29583740234375, -0.206883504986763, -0.10238099843263626, 1.158823847770691, 0.9389784336090088, 0.3706047534942627, 0.003012001048773527, -0.6727284789085388, -0.14210422337055206, -0.39387452602386475, -0.34196093678474426, -0.6181981563568115, 0.37423470616340637, 0.11152727156877518, -1.035496473312378, 0.9174805879592896, -0.15287038683891296, -0.937551736831665, 0.2329913228750229, 0.06176231801509857, 0.4577995240688324, 0.01895475573837757, -0.05987715348601341, -0.947616696357727, 0.0077034058049321175, -0.49680861830711365, 0.12514573335647583, -0.33628636598587036, -0.10650258511304855, 0.6415460109710693, -1.0027258396148682, -0.4580971300601959, 1.3619297742843628, 1.036683440208435, -0.29940053820610046, -0.4863617718219757, 0.16005061566829681, -0.4893445372581482, 0.8091374635696411, 0.6871536374092102, 0.5683306455612183, 0.49720174074172974, -1.2515419721603394, 1.756652593612671, 0.1529219150543213, -0.01932533085346222, 0.1258205771446228, 0.946608304977417, -0.26015281677246094, 0.630099356174469, -0.5104109644889832, -0.45146000385284424, -0.25583982467651367, 0.7489207983016968, 0.8284514546394348, -0.4596976339817047, 0.7635964751243591, -0.6110326647758484, -0.612028181552887, -0.6548120975494385, 0.7047761082649231, 0.21507614850997925, 0.5055899024009705, 0.08021658658981323, 0.3488549590110779, -0.752956211566925, 0.4567036032676697, -0.9974684119224548, 0.012873650528490543, -0.1491738259792328, -1.1117236614227295, 0.0689406469464302, -1.5519039630889893, 0.28823432326316833, 0.09309056401252747, -0.4143848717212677, 0.42072126269340515, -1.333075761795044, -0.6401029825210571, 0.8887134790420532, 0.029129520058631897, -0.5681784152984619, -0.09374640136957169, 0.020838294178247452, -0.7791480422019958, 0.5002221465110779, -1.1484705209732056, 0.5656701326370239, -0.5429680943489075, 0.11137790232896805, 1.6250807046890259, -0.27030402421951294, -0.2643046975135803, -0.04834888130426407, 0.2339010089635849, -0.5128438472747803, 0.5883771181106567, 0.29100292921066284, -0.5344502925872803, 0.4391407370567322, -0.18554194271564484, 0.3070002794265747, 0.3581698536872864, -0.5187311172485352, -0.12164914608001709, -0.4473121762275696, -0.015582219697535038, -0.7620205879211426, -1.009142279624939, -0.3161066770553589, -1.4440858364105225, -1.745220422744751, 0.4378563463687897, 0.3394742012023926, -0.9074970483779907, 0.05130744352936745, -0.002075136173516512, 0.5509770512580872, 0.044477708637714386, 1.2045642137527466, 0.45653173327445984, 1.9134622812271118, -0.31698426604270935, -0.19422666728496552, -1.5908825397491455, 0.5914236307144165, 0.75603848695755, -0.5570054054260254, 0.1667238026857376, 0.45835739374160767, 0.9734030961990356, 0.1557488888502121, 0.1367952525615692, -0.560998797416687, -0.06441657245159149, -0.6311628222465515, -0.4359641671180725, 0.5155434012413025, -0.18203367292881012, 1.7221182584762573, 1.1949034929275513, -1.976070761680603, -0.2298361212015152, 0.12755313515663147, -0.528249979019165, 0.23879827558994293, -0.7045286893844604, -0.3894185721874237, -0.04392264410853386, 0.5846378207206726, 0.1868770569562912, 0.8431611061096191, -0.7772135138511658, 0.5280781388282776, -0.21493187546730042, -0.1633104681968689, -0.5097192525863647, -0.3207561671733856, -0.6067590713500977, 1.5015404224395752, -0.6487501859664917, -0.477642685174942, -0.09769310802221298, 0.01583024114370346, 0.0658835619688034, -0.08165346831083298, 0.05379103124141693, 0.8262473940849304, 0.3427714705467224, -0.031463924795389175, 0.6438851952552795, 0.06900563091039658, -0.2657114863395691, 0.6616650819778442, 0.15131452679634094, 0.9556049108505249, 1.1079479455947876, -0.46715953946113586, -0.18905656039714813, -0.5840219855308533, 0.8038531541824341, 0.41578784584999084, 0.6266187429428101, 0.7510857582092285, -0.08928626775741577, -0.40729132294654846, 0.37886252999305725, -1.4781385660171509, -0.0976317748427391, -0.9221776127815247, -1.264265775680542, -0.8521767854690552, 0.2843579053878784, 0.3562301695346832, 0.05668516457080841, 0.1395595371723175, -0.6287189722061157, 0.6017053723335266, 1.3173983097076416, -0.22336208820343018, -0.3813343346118927, 0.16419030725955963, -0.7504013180732727, -0.4063856303691864, 0.028547346591949463, 0.16738317906856537, -0.6245307922363281, 0.25337889790534973, -0.22436705231666565, -0.4893178939819336, 0.8479005098342896, 0.045720793306827545, 0.030945362523198128, -0.840014636516571, -0.9374721050262451, 0.6798499226570129, 0.6655757427215576, 0.2399919331073761, -0.625616729259491, -0.173199862241745, 1.3662731647491455, 0.5144771337509155, 0.6141737103462219, -0.5271021723747253, 1.3306752443313599, -0.7626994252204895, -1.2695680856704712, -0.9720796346664429, 0.688654363155365, 1.1496331691741943, -0.44785064458847046, -0.1530718356370926, -0.08318722993135452, -1.0587354898452759, -0.5830208659172058, -0.27749815583229065, 0.5692156553268433, 0.9600686430931091, 0.16599313914775848, -0.8289068341255188, 1.2944648265838623, -0.26661327481269836, 0.31500446796417236, -1.5084306001663208, 0.3373676538467407, 0.5648759603500366, 0.5486988425254822, -0.23209211230278015, 0.07671026885509491, 1.2219829559326172, 0.07987920194864273, -0.3986019790172577, -0.11383794993162155, 1.3938878774642944, -0.5683620572090149, -0.9938187003135681, -0.43124523758888245, 0.2786344289779663, 0.39316701889038086, -0.21943911910057068, 0.1220955103635788, 0.2929856777191162, -0.5114671587944031, 0.4600071609020233, 1.0787094831466675, 0.0676959753036499, -0.6076127290725708, -0.4020741581916809, 0.141413614153862, 0.046756286174058914, 0.06238477677106857, 1.0245850086212158, -0.8506225943565369, -0.4117370843887329, 0.6537638902664185, -1.3895478248596191, -0.2763325870037079, 0.1332133710384369, -0.5310049057006836, 0.30906468629837036, -0.8674600720405579, 0.2151193469762802, 0.4003315269947052, 1.1897510290145874, -0.3931611478328705, 0.12893816828727722, 0.46773096919059753, 0.09645520150661469, 1.0579142570495605, -0.0024588368833065033, 0.2111215889453888, 1.2458852529525757, -0.6237940788269043, -0.1849859207868576, -0.10002187639474869, 0.17556659877300262, 0.3762950301170349, -0.8946007490158081, -0.015231595374643803, -0.6637422442436218, 0.04898015037178993, -0.5638264417648315, -0.1730721890926361, -0.42514747381210327, 0.4626710116863251, 0.9378321170806885, 0.3567921817302704, 0.6600643992424011, -0.7616814970970154, -0.6970614790916443, 0.756880521774292, 0.1919613778591156, -0.13311384618282318, -0.1947345733642578, -0.1920345276594162, 0.4970778822898865, 0.615959107875824, 0.18442027270793915, 0.18579451739788055, 1.1608760356903076, -0.46675530076026917, -0.6955916285514832, -0.2592131793498993, -0.020802229642868042, 0.8065929412841797, 0.7550696134567261, 0.052313245832920074, -0.47461745142936707, -0.8669780492782593, 0.25938767194747925, -0.39685913920402527, -0.09688066691160202, 1.1316263675689697, 0.8343411684036255, 0.9576730132102966, -1.8049495220184326, -1.0579116344451904, 0.8374481797218323, -0.09158290922641754, 0.1976572424173355, 0.5095705986022949, 0.4676801860332489, 0.2112036645412445, 0.47163158655166626, 0.03414858877658844, -0.13751479983329773, -0.19737884402275085, -0.19997917115688324, 0.10136505216360092, 0.8648913502693176, -0.10919174551963806, 1.1222882270812988, -0.5496350526809692, 0.061993323266506195, 0.23095834255218506, -0.4275583326816559, -0.27428558468818665, 0.38802120089530945, -0.1149977594614029, 1.147668480873108, -0.7864685654640198, -0.6474774479866028, 0.04418906942009926, -0.2472507655620575, -0.40636274218559265, 0.44590604305267334, -0.24437926709651947, -0.3696185052394867, -0.036550264805555344, -0.6057697534561157, 0.5439329147338867, -0.23188024759292603, -0.23180854320526123, -0.8358711004257202, -1.1419841051101685, 0.4440889060497284, 0.388576477766037, 0.7687505483627319, 0.11226716637611389, 0.6024997234344482, 0.4232965409755707, -0.013233326375484467, -0.19678351283073425, 0.4747426509857178, -0.584284245967865, -0.32260411977767944, -0.02382604219019413, -1.4989804029464722, -0.9684926867485046, 0.41122522950172424, 0.46255242824554443, -0.11529728025197983, 0.5222962498664856, 0.8826437592506409, 1.4039521217346191, 0.43998757004737854, -0.49755367636680603, 0.3609521687030792, -0.1063951775431633, 1.0277308225631714, 0.6247286796569824, -0.0013817483559250832, -0.6065016388893127, -1.3225598335266113, -1.2167024612426758, 0.5892977714538574, -0.022891227155923843, -1.6579091548919678, 0.906780481338501, 0.5805593729019165, 0.07643453776836395, 1.0948004722595215, -0.02496509626507759, 0.4580199718475342, -0.1192966029047966, -0.3933354914188385, -1.1508327722549438, 0.6189714074134827, -0.06148475781083107, 0.5477012991905212, -0.09409483522176743, 0.8672662377357483, -0.011301608756184578, 0.7172553539276123, 0.8480778336524963, 0.6409918665885925, 1.2110192775726318, -0.4860716164112091, 0.6942254900932312, -0.2172834277153015, -0.14035579562187195, -0.7523976564407349, -1.4485565423965454, -1.3934612274169922, 0.3187068700790405, -0.6715885996818542, -0.6783575415611267, -0.32586392760276794, -0.6429780125617981, -0.6994114518165588, -0.5611933469772339, 0.6367633938789368, 0.8742473721504211, 0.027186697348952293, -0.4594593346118927, -0.9622414112091064, -0.18852578103542328, -0.46713852882385254, -0.5298980474472046, -0.553763747215271, 0.5977160930633545, -1.5507227182388306, 0.366132527589798, -0.026884673163294792, -0.4108620584011078, 0.3915334939956665, -1.0689165592193604, -0.0028864878695458174, -0.8016063570976257, -1.3420982360839844, -1.3236966133117676, 0.08927152305841446, 1.4913673400878906, 0.017986087128520012, 0.8919916152954102, 0.6901822686195374, -1.2628158330917358, 0.06362500786781311, -0.2662183940410614, -1.2671921253204346, 0.09823229908943176, -1.048008680343628, 0.3708512783050537, -0.5476408004760742, 0.15502852201461792, -0.1656743288040161, 0.6048164963722229, -1.4225990772247314, -0.6892884373664856, -0.3305858075618744, -0.40367037057876587, 0.7081342935562134, 0.9785377383232117, -1.2371429204940796, 1.607354998588562, 0.7219067215919495, 0.6978744864463806, -0.3485722541809082, 0.19336803257465363, -0.7396193146705627, 0.8492804169654846, -0.2639103829860687, -0.3121875822544098, 1.0370168685913086, 0.5818876624107361, 0.050287727266550064, 0.6491165161132812, 0.2602594196796417, -0.4716170132160187, -0.4483836591243744, -0.09774965792894363, -0.7656734585762024, 1.024421215057373, -0.6415332555770874, -0.8243322372436523, -0.5360927581787109, -0.4183410108089447, -1.016819715499878, -0.5015531778335571, 0.6384271383285522, -0.585050106048584, -0.7935870289802551, -0.08430919796228409, -0.04880937188863754, 0.2950870394706726, 1.0051020383834839, 0.2205069214105606, -0.1838306486606598, -0.0633690282702446, 0.07066496461629868, 0.7882154583930969, -0.6831448078155518, 0.7801647782325745, 0.7849733233451843, -0.3422906994819641, -0.3333795964717865, 0.020701471716165543, 1.5831646919250488, 0.45700693130493164, -0.06547871232032776, 1.588207721710205, 0.7846248745918274, 0.10059963911771774, -0.2029774934053421, 0.2693018913269043, 0.4753198027610779, 0.6899654865264893, -0.5050898790359497, 0.65876704454422, -0.742737352848053, 1.1372660398483276, 0.34064340591430664, -0.6226291060447693, -1.1520583629608154, -0.6672013401985168, -0.6842959523200989, 0.25324195623397827, 0.43919914960861206, -1.700846791267395, 0.1498289704322815, 0.722693681716919, -0.33856725692749023, 0.03960245102643967, -0.4972297251224518, 1.6874550580978394, -0.32024306058883667, -0.06243233010172844, 0.5936113595962524, -0.107950858771801, -0.4421713650226593, 0.7639362812042236, 0.4342431128025055, 0.44106221199035645, -0.6021807789802551, -0.3642055094242096, -1.1473809480667114, -0.33062708377838135, -0.08709259331226349, -0.9738045334815979, 0.20664265751838684, -0.7216300964355469, -1.3893052339553833, 0.7346757650375366, 0.43674206733703613, -0.22974391281604767, -0.21057243645191193, -0.4065712094306946, -0.41568607091903687, -0.4416252672672272, 0.1448468118906021, -0.6100507378578186, 1.0688704252243042, -0.3067609965801239, 0.244066521525383, -1.271080732345581, -0.6380565166473389, 0.3445875644683838, 0.20159341394901276, 0.15193502604961395, -0.24694034457206726, 0.15890197455883026, -0.8485349416732788, -1.0306779146194458, -0.007156726438552141, 0.9102832078933716, -0.5001605749130249, -0.1091175451874733, -1.6997581720352173, -0.08920435607433319, 0.4417203366756439, 1.3609989881515503, -0.6346187591552734, -0.9297557473182678, -0.761080801486969, 0.3046077489852905, -0.9275761842727661, 0.7366471290588379, -0.1902359277009964, 0.881888747215271, 0.7895835041999817, -0.5653547644615173, -0.08195801824331284, 0.637723445892334, 0.37796249985694885, -0.36207619309425354, 0.8783352971076965, 0.48520734906196594, 0.23169668018817902, -0.6608421802520752, -0.480467826128006, 0.24771662056446075, -1.175126552581787, 0.16194261610507965, -0.07032115012407303, -0.2659519910812378, -0.6247453093528748, -0.8217701315879822, 0.9506067037582397, 0.7306979298591614, -0.13958029448986053, -0.3967551589012146, 0.9516667127609253, -1.1308720111846924, 0.4770546555519104, -0.38712364435195923, -0.0675068125128746, 0.21122555434703827, 0.36152565479278564, 1.6269785165786743, 0.30341681838035583, -0.04437847062945366, 0.19139106571674347, 0.42033687233924866, -0.03867499157786369, -0.19593122601509094, -1.0271962881088257, -0.3850017189979553, -0.49361738562583923], [-0.4039975702762604, 1.567246437072754, -2.454486131668091, -0.5325807929039001, 0.5764238238334656, 0.4017532467842102, 0.7741941213607788, -0.14197401702404022, -0.3552495241165161, -0.08753342926502228, -0.9303935766220093, 0.0029481202363967896, -0.33598634600639343, 1.6173219680786133, 0.747900664806366, 0.9200094938278198, 0.4641093313694, -0.8951345086097717, 1.56911301612854, 0.8908112049102783, 0.017243029549717903, -0.8655163049697876, 0.2086361199617386, -0.4424656927585602, 0.22916279733181, -0.3552764356136322, -1.362306833267212, -0.730455219745636, -1.0361543893814087, -1.4208428859710693, 0.9504685401916504, -0.41520199179649353, -0.21087898313999176, 0.08418735861778259, -1.5045535564422607, -0.12229745090007782, 1.9611575603485107, 1.2454845905303955, 0.9031251072883606, 0.21070532500743866, 0.9971327781677246, -0.18461330235004425, -0.10014206916093826, -0.7597801685333252, 0.23168182373046875, 0.050428688526153564, 0.23529836535453796, -0.825527548789978, -0.6680246591567993, -0.47272032499313354, 0.33397823572158813, -1.42233145236969, 0.46014389395713806, 0.6379274129867554, 1.6140719652175903, -0.728411078453064, 0.2463342249393463, 0.6997942328453064, 0.6183819770812988, -0.45303571224212646, 0.7877586483955383, 0.09241613745689392, -0.7315456867218018, 0.9259798526763916, -0.28557145595550537, -0.15705068409442902, 0.32439982891082764, 0.40022844076156616, -0.10038051009178162, 0.15369433164596558, -0.13378863036632538, 0.2358972430229187, -0.5133141279220581, 0.43185171484947205, -0.9522096514701843, 0.024854427203536034, 0.3325309157371521, 0.8098448514938354, 0.3053109645843506, 0.44465211033821106, -0.08012189716100693, -0.19430828094482422, 0.011382689699530602, -0.07142001390457153, 1.3355447053909302, 0.19816572964191437, 0.9501034021377563, -0.5408794283866882, -0.9778209328651428, 1.8918840885162354, 0.7143443822860718, 0.3704602122306824, 0.14957928657531738, -0.2125500589609146, 0.10295538604259491, -0.6137621402740479, 0.07757971435785294, -0.8248592615127563, -0.8144166469573975, -0.9405831098556519, -0.5653049945831299, -0.9285401105880737, -0.1658596247434616, -0.29611051082611084, -0.19261297583580017, 1.6039694547653198, 0.14626441895961761, -0.01772366836667061, -0.552929162979126, -0.08225864917039871, -0.07851818203926086, 0.4251571297645569, -0.5013488531112671, -0.3876660466194153, -0.6602245569229126, 1.0347275733947754, 1.6329545974731445, -0.4698294401168823, 0.0498335100710392, 1.5440582036972046, -0.4259217381477356, -0.41471850872039795, -1.2052381038665771, 0.5323293209075928, 0.022712405771017075, 0.5142934322357178, -0.37762895226478577, -0.26475468277931213, 0.03945711627602577, -0.048219989985227585, 0.2513516843318939, -0.28202709555625916, -0.10242238640785217, 0.3809608817100525, -0.8448432087898254, 1.7354048490524292, 0.040460534393787384, -0.7328086495399475, 0.14013373851776123, -0.4383299648761749, 0.38260677456855774, 0.23408930003643036, -0.8558709621429443, -0.8754010796546936, 0.08414161950349808, -0.8716900944709778, 0.2501450181007385, -0.1641089767217636, -0.711392879486084, 0.4123947024345398, -0.6817701458930969, 0.19573554396629333, 0.17040643095970154, 0.013058941811323166, 0.38589322566986084, 0.43256306648254395, 0.3869653046131134, -0.034955598413944244, 0.36550453305244446, 0.39804768562316895, 0.4770476222038269, -0.16131888329982758, -0.8248659372329712, 0.8762059807777405, 0.30886679887771606, 0.05846641957759857, 0.5298073887825012, 0.4716569185256958, 0.4755428433418274, 0.5564373135566711, -0.25946909189224243, 0.058958977460861206, -0.7897709012031555, 0.29668956995010376, 0.2087996006011963, -1.0234540700912476, 1.4751344919204712, -0.3473563492298126, -1.0735329389572144, -1.3485556840896606, -0.594321608543396, -0.16601209342479706, 0.565222978591919, 0.18457773327827454, 0.5408768653869629, -0.9528020620346069, 0.2861503064632416, -0.034295909106731415, -0.48740753531455994, -1.075920820236206, -0.7676175832748413, -0.07219544053077698, -0.6208111643791199, 0.2802962362766266, -0.4215170443058014, -1.3346527814865112, 0.5365539789199829, -1.0874031782150269, -0.22191457450389862, -0.524188756942749, -0.4956459105014801, -0.6620922684669495, -0.38381722569465637, 0.5058380961418152, -0.6951536536216736, 0.9563895463943481, -0.35257309675216675, 0.8019141554832458, -1.0650408267974854, -0.04747883975505829, 1.132233738899231, 0.5013578534126282, -0.77092045545578, 0.6629058122634888, 0.6155647039413452, -1.754852056503296, 0.11093633621931076, -0.17049291729927063, -0.5374531149864197, 0.07160115242004395, 0.23707105219364166, -0.2723887860774994, 0.33096590638160706, 0.3650367259979248, 0.48103007674217224, -0.03736283257603645, -0.8080278635025024, -0.08132879436016083, -0.7636566758155823, -0.0567723885178566, -0.9651663899421692, -0.2889307141304016, 0.9113168120384216, 0.17769229412078857, -1.0399328470230103, 0.11844993382692337, 0.5672493577003479, 0.9541136622428894, 0.5937155485153198, 1.5589210987091064, 0.5430312752723694, 1.297218680381775, -0.3647877871990204, -0.35009947419166565, -0.9628210663795471, 0.2020605355501175, 0.26502227783203125, -0.8060773611068726, -0.10853633284568787, 0.8863605260848999, 1.133660912513733, 0.16687354445457458, -0.21369428932666779, -0.8489271402359009, -0.12384507060050964, -0.4675901532173157, -0.28123167157173157, -0.0930938720703125, 0.03809366375207901, 1.3274437189102173, 0.24032604694366455, -1.6340638399124146, -0.2616470754146576, -0.06077263504266739, 0.027282148599624634, -0.05800097435712814, -1.0677059888839722, -0.02965952828526497, -0.37190067768096924, 0.11418486386537552, 0.44543418288230896, 0.6858100295066833, -0.514374315738678, 0.265575110912323, -0.3443578779697418, -1.3437672853469849, -0.5254268050193787, 1.0245872735977173, -0.07892392575740814, 1.180762529373169, -0.3695715665817261, -1.1273137331008911, -0.5608668923377991, -0.4284776747226715, 1.3601948022842407, 0.9892288446426392, 0.4077052175998688, 0.3767029643058777, 0.27268776297569275, -0.39005303382873535, 0.11620977520942688, -0.022231247276067734, -0.6558383107185364, -0.3584860563278198, -0.18912214040756226, 0.5720157027244568, 1.351871371269226, -0.8508009314537048, -0.4921340346336365, -0.14960886538028717, -0.14047300815582275, 1.3507925271987915, 0.478259414434433, 1.3430159091949463, -0.10775198042392731, 0.30185773968696594, -0.1572149097919464, 0.007214600220322609, -0.8879612684249878, -0.7336682677268982, -0.9259184002876282, -0.4815343916416168, 0.16235876083374023, 0.41120776534080505, 0.58030104637146, 0.3918047547340393, -0.2571081221103668, -0.2395165115594864, 1.109815001487732, 0.33196327090263367, -0.6456356048583984, 0.15872278809547424, 0.07809879630804062, -0.44679224491119385, -0.16345377266407013, 0.5375540852546692, -0.7812602519989014, -0.5322491526603699, -0.3647499978542328, 0.27057355642318726, 0.8485561013221741, -0.3201504051685333, 0.026914376765489578, -1.0431052446365356, -1.0354970693588257, -0.033055420964956284, 1.4310106039047241, 0.01465071551501751, 0.12357978522777557, -0.41067445278167725, 0.36449337005615234, 1.1424480676651, -0.6694301962852478, 0.14788781106472015, 0.4836737811565399, -0.058514710515737534, -0.9616433382034302, -0.3316357433795929, -0.16178172826766968, 0.4642423391342163, -0.4052486717700958, -0.07525541633367538, -0.13578926026821136, -0.7767823338508606, -0.7350539565086365, 0.6452937722206116, -0.1728658676147461, 1.1274386644363403, 0.13500671088695526, -0.1322687864303589, 1.4387929439544678, 0.5294972658157349, 0.5208969116210938, -1.254626989364624, 0.3430858850479126, 0.26400792598724365, 0.7085919976234436, 1.127393364906311, -0.1874728798866272, 0.9043378233909607, 0.48870915174484253, -0.054510097950696945, 0.15439455211162567, 1.2792612314224243, -0.3513813316822052, -0.09666134417057037, -1.1600996255874634, 0.5694308876991272, -0.18490839004516602, -1.2596819400787354, -0.46692025661468506, -0.03846561536192894, -0.9548551440238953, -1.2396724224090576, 1.0850461721420288, 0.03554524853825569, -0.1611175835132599, -0.27477365732192993, 0.6332583427429199, 0.724865198135376, -0.6727511286735535, 0.7172505259513855, -0.7203074097633362, 0.2442987710237503, 0.586006760597229, -0.7819197773933411, 0.28628626465797424, 0.14947904646396637, 0.04129519686102867, 1.1416200399398804, -0.9459152221679688, 0.20694434642791748, 0.23553010821342468, 0.42579320073127747, -0.01754683442413807, -0.24629448354244232, 0.37335026264190674, 0.13206711411476135, -0.2820214629173279, -0.6960124373435974, 0.16349220275878906, 0.6585639715194702, -0.22128458321094513, 0.4003664553165436, 0.40863561630249023, -0.06850827485322952, -0.42491650581359863, -0.6664323210716248, -0.5046391487121582, 0.27483227849006653, -0.3756282329559326, -0.012315968051552773, 0.515313446521759, 0.34181344509124756, 1.2640315294265747, 0.9764572978019714, 0.5228299498558044, 0.8418210744857788, -0.248914897441864, -1.2240043878555298, 0.5824313759803772, 0.2336786538362503, -0.2866970896720886, -0.16156324744224548, 0.3149951994419098, 0.3847567141056061, -0.645534336566925, 0.5506976842880249, 0.40096113085746765, 1.4034453630447388, -0.003375008702278137, 0.04335856810212135, -0.2786387801170349, 0.3842129707336426, 0.6950293779373169, 1.3586347103118896, 0.5633189678192139, -0.2536986470222473, -1.285900354385376, 0.7140961289405823, -1.1041148900985718, 0.041824761778116226, 0.5470398664474487, -0.03526601940393448, 1.4073195457458496, -1.2305330038070679, -0.3095359206199646, 0.26829293370246887, 0.6061891913414001, 0.11233169585466385, 0.2136332243680954, 0.04938485100865364, -0.5476744174957275, 0.3461918532848358, -0.024585027247667313, -0.3442721962928772, -0.34680941700935364, 0.5226778984069824, -0.40611034631729126, 0.7618846893310547, -0.23675484955310822, 0.7724860906600952, -0.6086682677268982, 0.11969837546348572, 0.476201593875885, -0.4870820641517639, 0.11639101058244705, 0.36080026626586914, 0.5020052790641785, 1.8524823188781738, -0.2466898262500763, -0.9044588804244995, 0.16496048867702484, -0.5189434289932251, 0.21099461615085602, -0.2502317726612091, -0.5686947703361511, -0.21708214282989502, -0.39827263355255127, -0.15437966585159302, 0.5276404023170471, 0.14584973454475403, -0.6518329977989197, -0.318987637758255, -1.7239928245544434, 0.09201716631650925, 0.8116918206214905, 1.0519570112228394, 1.0218157768249512, -0.023713624104857445, -0.6829685568809509, 0.31295230984687805, -0.861161470413208, 0.09104073792695999, 0.11844158172607422, -0.13736893236637115, -0.03521313890814781, -1.327728271484375, -0.6674505472183228, 0.9066374897956848, -0.10811369121074677, 0.5661900639533997, 1.0631568431854248, 1.8952594995498657, 1.1382008790969849, -0.41283610463142395, -0.6496155858039856, -0.17172065377235413, -0.6078734397888184, 1.0476537942886353, 1.2059553861618042, 0.3851783871650696, -0.8828200101852417, -0.531592607498169, -1.3995320796966553, 1.185154676437378, 0.05966871976852417, -1.5045808553695679, 0.739669680595398, 0.46880999207496643, 0.7458485960960388, 0.5144268274307251, -0.7926559448242188, 0.8684523105621338, 0.2922024130821228, -0.67107754945755, -1.0329662561416626, 0.5559304356575012, -0.13739052414894104, 0.515920102596283, -0.24987530708312988, 0.643001139163971, 0.3570767343044281, -0.12528148293495178, 0.2682400941848755, 0.40099456906318665, 0.44871318340301514, 0.8048309683799744, -0.07766012102365494, -1.5389714241027832, -0.035143159329891205, -0.7359646558761597, -0.09518631547689438, -0.1726517677307129, 0.7702917456626892, 0.029391175135970116, -0.20077575743198395, -0.8201618790626526, -0.4217565357685089, -0.7241798639297485, -0.0445694662630558, -0.3614499270915985, 1.164170265197754, 0.17311088740825653, -0.4910274147987366, -0.6118150353431702, -0.5163955092430115, -0.013072491623461246, -0.7647776007652283, 0.6215550899505615, 0.18364061415195465, -1.3444983959197998, 0.3681757152080536, 0.2590543031692505, -1.3962959051132202, -0.3218008875846863, -0.692467987537384, 0.4244857430458069, -1.4580979347229004, -1.1846081018447876, -0.40584880113601685, -0.19751764833927155, 0.6692866086959839, -0.6189976930618286, 0.3799407184123993, 0.43729227781295776, -1.3895344734191895, 0.32004761695861816, 0.10841149091720581, -0.36068466305732727, -0.3525806963443756, -1.1340219974517822, 0.5488413572311401, 0.06633763760328293, 0.2665778398513794, -0.27936363220214844, 0.13206133246421814, -1.453223466873169, -0.7343607544898987, -0.7581297755241394, -0.6787225604057312, 0.8203120231628418, 0.479677677154541, -0.9319786429405212, 1.4909268617630005, 0.802114725112915, -0.7575095891952515, 0.2651524245738983, -0.3805404603481293, -0.4601183235645294, -0.2019815742969513, 1.234565258026123, 0.794358491897583, -0.06775301694869995, 1.214990258216858, 0.6300133466720581, 0.8639834523200989, 0.6839208602905273, 1.0464754104614258, -0.6587956547737122, -0.5413029193878174, 0.05363094434142113, 0.6871927976608276, -0.8675839900970459, -0.49811020493507385, -0.4837811291217804, -0.7094342708587646, -0.8167668581008911, 0.11392885446548462, 0.30740177631378174, -0.6177374124526978, 0.6386317014694214, -0.4921976625919342, 1.0242197513580322, -1.2415666580200195, 0.07212020456790924, -0.41477638483047485, -0.7631187438964844, 0.4149789810180664, 0.3981505334377289, 0.5161483287811279, -1.5587645769119263, 0.510187566280365, 0.3262835443019867, -0.3127075135707855, -0.3227311372756958, 0.17868541181087494, 0.8026725053787231, 0.08412285149097443, -0.5939019322395325, 1.4135234355926514, 1.162975549697876, 0.4477703273296356, -0.31307923793792725, 0.2841331660747528, -0.036438390612602234, 0.6525664925575256, -0.16646254062652588, -0.26767411828041077, -0.6154961585998535, 1.599366545677185, 0.10970529168844223, 0.8558030128479004, -0.3473285734653473, 0.2609885632991791, -0.37685132026672363, 0.11157603561878204, 0.877159595489502, -0.6937670707702637, -0.7878459095954895, 1.0469093322753906, -0.5374360084533691, 0.08155490458011627, 0.6568354964256287, 0.5501248240470886, 0.315615177154541, -0.8397009968757629, 0.14829102158546448, 0.73785799741745, -0.6646761298179626, 0.7061139941215515, 0.2796149253845215, -0.2632487118244171, -0.5424882769584656, -0.1443479359149933, -0.5777239203453064, 0.04692975431680679, 0.01610640250146389, -0.6826488375663757, 0.7018227577209473, -0.8798500299453735, -0.8219815492630005, 0.18613694608211517, -0.28000572323799133, -0.7381503582000732, -0.25370684266090393, 0.6438646912574768, -0.17403395473957062, 0.06516223400831223, 0.5488022565841675, 0.17517930269241333, 1.0099555253982544, -0.4278407096862793, 0.20799893140792847, -1.4298772811889648, 0.2900615632534027, 0.4497114419937134, 0.7258549928665161, -0.10819076001644135, 0.21986213326454163, 1.2448430061340332, -0.8256425261497498, -0.8037031292915344, 0.6489945650100708, -0.22675564885139465, 0.4332936704158783, 0.21146170794963837, -0.7471565008163452, 0.10970499366521835, 0.6061800718307495, 1.1520099639892578, -0.13080672919750214, -0.28591683506965637, -0.6437861323356628, 0.3598332405090332, -0.4684072732925415, 0.3129107356071472, -0.3610188961029053, 1.1858800649642944, 0.8586834669113159, -0.5954038500785828, -0.5590359568595886, -0.2659120261669159, 0.45832714438438416, -0.5654654502868652, 0.1180390864610672, -0.16326002776622772, 0.36897698044776917, -0.40472865104675293, -0.5164494514465332, 0.2460404485464096, -0.0729692131280899, -0.4786686897277832, 0.2076711505651474, -1.309252381324768, -0.7410976886749268, -0.5002172589302063, 0.2825775742530823, -0.1691828966140747, 0.1332462877035141, -0.1994689702987671, -0.1710391640663147, -0.9459012150764465, -0.66248619556427, -0.037155598402023315, -0.14749455451965332, -0.02970055863261223, 0.9347957968711853, 1.46122407913208, 0.6748156547546387, -0.23951251804828644, -0.5496573448181152, 0.9322878122329712, -1.1339020729064941, -0.490321546792984, -0.1823890507221222, -0.6758778095245361, -0.34642666578292847], [-0.294297456741333, 0.9849588871002197, -2.4829342365264893, -0.35062623023986816, 1.2614811658859253, 0.32577645778656006, 1.340859293937683, -0.010169191285967827, 0.4539296627044678, 0.022292256355285645, -0.30646955966949463, -0.4606895446777344, -0.05950310081243515, 1.270057201385498, 1.1390721797943115, 0.5391178727149963, 1.1112853288650513, -0.6219075918197632, 0.5893509984016418, 0.6903173327445984, -0.6112375259399414, -0.6391729712486267, -0.022335929796099663, 0.40376564860343933, 0.036744337528944016, 0.5672711133956909, -1.8369044065475464, 0.014313464052975178, -1.0729660987854004, -0.9552651047706604, 0.3360471725463867, -1.1511493921279907, -0.06834288686513901, 1.0962802171707153, -1.5811002254486084, 0.031734999269247055, 1.957174301147461, 0.8091030716896057, 1.157585859298706, 0.30605900287628174, 2.0114455223083496, -0.003364583943039179, -0.5345317721366882, -1.146445870399475, -0.34996965527534485, -0.3411642611026764, 0.4957444369792938, -0.6816248893737793, 0.40048134326934814, -1.2264341115951538, 0.4859485924243927, -1.279980182647705, 0.8593239188194275, 0.7290857434272766, 1.67877995967865, -0.7767730355262756, 0.2857377529144287, 0.33195412158966064, 0.6528258919715881, -0.45701688528060913, 0.6526766419410706, -0.1940673589706421, -0.08654502034187317, 0.6933984160423279, 0.06944729387760162, -0.05775342881679535, -0.1834525316953659, 0.29254472255706787, 0.09422563016414642, -0.27999427914619446, 1.0313868522644043, 0.35851889848709106, -0.8044200539588928, 0.7612705230712891, -1.3842946290969849, 0.3977181613445282, 0.4886569678783417, 0.6645155549049377, 0.41459423303604126, 0.08128035068511963, -0.2486003041267395, -0.37433570623397827, 0.7721210718154907, -0.10716038197278976, -0.07090055197477341, 0.05329081416130066, 0.5567120313644409, -0.37482860684394836, -0.4430778920650482, 1.278422474861145, 0.49194252490997314, -0.15286986529827118, 0.034965574741363525, -0.15750712156295776, -0.5718221068382263, -0.33653077483177185, 0.003519628196954727, -0.5720184445381165, -1.1692434549331665, -0.287375807762146, -0.051065851002931595, -0.6588159203529358, -0.469814270734787, 0.15820001065731049, -1.1649837493896484, 1.1154847145080566, 0.23261012136936188, -0.6340736150741577, -0.26056402921676636, -0.19634641706943512, -0.3946586549282074, 0.5314737558364868, -0.7989981770515442, -0.843295693397522, -1.0019395351409912, 1.112951397895813, 0.8082189559936523, 0.08277805894613266, 0.5412709712982178, 1.0100234746932983, 0.32864999771118164, 0.05681268498301506, 0.010749970562756062, 0.7345442175865173, 0.52118980884552, 0.5181697607040405, -0.6838564276695251, -0.7558575868606567, 0.3054923117160797, -0.654350757598877, 0.7417227625846863, -0.692611813545227, 0.03770720586180687, 0.11886462569236755, -0.6677979826927185, 1.4412262439727783, 0.08678670972585678, -0.8582194447517395, 0.3796501159667969, -0.6127179861068726, 1.2155394554138184, -0.02924969419836998, -0.07955145090818405, -1.0542758703231812, -0.005696096923202276, -1.1712886095046997, 0.028824878856539726, -0.3706335723400116, -0.6578758358955383, 0.12732148170471191, -1.4962050914764404, 0.1986396461725235, 1.1990330219268799, 0.709351122379303, 0.5073480010032654, -0.015971677377820015, 0.040015242993831635, -0.05274417623877525, 0.7046456933021545, 0.03220728039741516, 0.5938267111778259, 0.281513512134552, -0.967643678188324, 0.7800909876823425, 0.11034785956144333, 0.1347183734178543, 0.20503848791122437, 1.3799721002578735, -0.2629888355731964, 0.5587570667266846, 0.0007447856478393078, 0.07203620672225952, 0.05041872337460518, 0.6921157240867615, 0.43999356031417847, -1.1059561967849731, 0.8096775412559509, -0.848170816898346, -1.3687057495117188, -1.1398831605911255, 0.3182772696018219, -0.2440148890018463, 0.33630144596099854, 0.18294717371463776, 0.3088099956512451, -0.7211920619010925, 0.5858455300331116, -0.6836537718772888, -0.41887032985687256, -0.6808134913444519, -0.14300522208213806, -0.07497849315404892, -1.0872621536254883, 0.00832337699830532, 0.2032497525215149, -0.6291077136993408, 0.4465736150741577, -1.0358242988586426, -0.1805913746356964, 1.1095941066741943, -0.21227560937404633, -0.21420538425445557, 0.17195236682891846, 0.5976065993309021, -0.6251026391983032, 0.7118856906890869, -0.4235232174396515, 0.8818439245223999, -0.4978562891483307, -0.18958905339241028, 1.0575860738754272, -0.4115425944328308, -0.2778879404067993, 0.06927180290222168, 0.5643416047096252, -1.162723422050476, 0.4379170536994934, 0.47338250279426575, -0.44152411818504333, 0.10834793746471405, -0.01438521221280098, 0.31606802344322205, 0.5037183165550232, -0.2096351534128189, 0.48317617177963257, 0.0677647590637207, -0.5572630167007446, -0.3076072037220001, -0.4600396156311035, -0.36600327491760254, -1.2508363723754883, -0.7361400127410889, 0.5867645144462585, 0.8608503341674805, -1.2786777019500732, 0.09974811226129532, 0.426354318857193, 0.641211986541748, 0.2535374164581299, 1.0854425430297852, 0.33857834339141846, 1.5361266136169434, -0.41111475229263306, -0.35870835185050964, -1.0090947151184082, 1.243775725364685, 0.807427704334259, -0.9826040863990784, 0.24371230602264404, 0.7409947514533997, 0.7598940134048462, 0.08578101545572281, 0.446550577878952, -0.5180661082267761, -0.36467376351356506, -0.30676281452178955, -1.394495964050293, 0.1676512062549591, 0.13599161803722382, 1.921829342842102, 1.2259734869003296, -1.5526167154312134, -0.266715943813324, 0.05379871651530266, 0.21806158125400543, -0.4141782820224762, -0.6530058979988098, -0.32654884457588196, 0.20521794259548187, 0.40974223613739014, 0.18734009563922882, 0.7607566714286804, -0.8190310597419739, 0.5651307702064514, -0.5032110214233398, -0.27753978967666626, -0.48091697692871094, 0.28209972381591797, -0.42410364747047424, 1.3617377281188965, -0.5408918261528015, -1.2790883779525757, 0.24854817986488342, 0.09232733398675919, 0.43811318278312683, 0.03417529910802841, -0.35757318139076233, 0.2075733244419098, 0.2539278566837311, -0.5426950454711914, 0.3257889747619629, 0.37861600518226624, 0.43242761492729187, 0.13578641414642334, 0.2718867361545563, 0.6765018701553345, 0.832183837890625, -0.5445266366004944, -0.6144790649414062, -0.42482462525367737, 0.3875982463359833, 1.4837777614593506, 0.11525435000658035, 1.0575026273727417, 0.7140464186668396, -0.12336879223585129, 0.10140789300203323, -0.6215750575065613, -0.38744306564331055, -1.1458619832992554, -0.8581308126449585, -0.8983962535858154, 0.208890900015831, 0.011652063578367233, 0.008127579465508461, 0.14120110869407654, -0.3363781273365021, 0.38906601071357727, 1.5752089023590088, -0.23328334093093872, -0.5041293501853943, 0.11726244539022446, -0.9643484950065613, -0.7473412156105042, 0.38894692063331604, 1.1114099025726318, -1.0013525485992432, -0.25292330980300903, -0.014621978625655174, -0.37123748660087585, 0.48242896795272827, -0.3130612373352051, -0.2858305275440216, -0.9149788022041321, -0.3421505391597748, 0.5180373787879944, 1.1914409399032593, -0.059424735605716705, -0.3009405732154846, -0.4010140597820282, 0.2185618132352829, 0.5564079880714417, -0.21476882696151733, -0.6475265026092529, 1.3530287742614746, -0.8882684111595154, -0.7969688177108765, -0.358165979385376, 0.5838065147399902, 0.6334252953529358, -0.5681118965148926, -0.4608999490737915, -0.30657047033309937, -0.705007791519165, -0.4647473990917206, -0.14665254950523376, 0.06151456758379936, 1.5235332250595093, 0.080681212246418, 0.3444789946079254, 1.292126178741455, -0.19369402527809143, 0.1226814016699791, -1.7483323812484741, 0.5359993577003479, 0.8820922374725342, 0.8264431357383728, -0.056913841515779495, -0.16390225291252136, 0.3883691132068634, 0.3870411217212677, 0.324941486120224, 0.2649611234664917, 1.1195954084396362, -0.5044069290161133, 0.06657465547323227, -0.5433419346809387, 0.5773540139198303, -0.24211625754833221, -0.7925764918327332, 0.45644205808639526, -0.13149183988571167, -0.946688175201416, -0.36276593804359436, 1.1661540269851685, -0.4192174971103668, -0.01212373748421669, -0.6501342058181763, 0.2656014561653137, 0.8512361645698547, -0.8638709187507629, 0.8601223230361938, -0.43659108877182007, -0.07080432772636414, 0.3122963309288025, -1.1496670246124268, 0.06930308043956757, -0.07057192176580429, -0.4216388463973999, 0.5850290060043335, -0.6754624843597412, 0.5144742727279663, 0.40636956691741943, 1.0328540802001953, 0.045147303491830826, -0.785398542881012, 0.4894663393497467, -0.04451780021190643, 0.22321942448616028, -0.15566571056842804, 0.6457779407501221, 0.921263575553894, -0.6515629887580872, 0.08333070576190948, -0.348125159740448, -0.09171368181705475, -0.09852451086044312, -0.5057462453842163, 0.2654823660850525, 0.10868332535028458, -0.37852558493614197, -0.12666796147823334, -0.1337822824716568, -0.18688957393169403, 1.1941111087799072, 0.3760424256324768, 0.21984437108039856, 0.22302812337875366, -0.22353853285312653, -1.1239542961120605, 0.6503067016601562, 0.18730077147483826, 0.05306687206029892, -0.8435320258140564, 0.2798854410648346, 0.3260034918785095, -0.11193385720252991, 0.2708168923854828, -0.10050348192453384, 0.8159232139587402, -0.5234367847442627, -0.680482804775238, -0.29223984479904175, 0.41958096623420715, 0.7229635715484619, 1.0879924297332764, 0.1807544231414795, -0.465326189994812, -0.9011367559432983, 0.5644262433052063, -1.2322642803192139, -0.08532629907131195, 1.3602302074432373, 0.6863709688186646, 1.5947662591934204, -1.5751111507415771, -0.9180880188941956, 0.574115514755249, -0.055583782494068146, 0.38550886511802673, 0.8004748225212097, 0.009224208071827888, -0.02673451416194439, 0.2990119457244873, -0.19221371412277222, -0.1304648220539093, -0.6501814126968384, 0.2142970710992813, 0.05112231522798538, 0.7971874475479126, -0.8962085247039795, 0.849563717842102, -0.6886099576950073, 0.06147921830415726, 0.08371727168560028, -0.47633492946624756, 0.013942766934633255, 0.5146242380142212, -0.2144792526960373, 1.903415322303772, -0.8693971037864685, -0.9472066164016724, 0.16989430785179138, -1.0218989849090576, 0.5870518088340759, 0.3546561896800995, -0.49619337916374207, -0.2676297724246979, 0.14957775175571442, -0.5666429400444031, 1.02489173412323, -0.6898539066314697, -0.5849893093109131, -1.2127848863601685, -1.4451854228973389, 0.9738461971282959, 0.9096874594688416, 1.0077296495437622, -0.22537174820899963, 0.03820088878273964, 0.13025391101837158, -0.08228164166212082, -0.29023271799087524, 0.423575222492218, -0.13565801084041595, -0.2270747870206833, 0.09925075620412827, -1.9476937055587769, -0.25265663862228394, 0.19101901352405548, 0.2390020191669464, 0.012512763030827045, 0.7266431450843811, 0.8195861577987671, 1.4550570249557495, 0.09571398049592972, -0.30964425206184387, 0.0943063497543335, -0.7041123509407043, 0.5463906526565552, 0.856090784072876, -0.3038899004459381, -0.7617571949958801, -0.2707825005054474, -0.8039973378181458, 0.3740907907485962, -0.3646966218948364, -1.4660612344741821, 1.0388156175613403, 0.22693851590156555, 0.6903011798858643, 0.0548708550632, -0.3549013137817383, 0.6623106598854065, 0.17172963917255402, -0.26916924118995667, -1.2306557893753052, 0.7869227528572083, 0.43661361932754517, 0.2897043228149414, 0.4080413281917572, 0.9256974458694458, -0.0732736811041832, 0.3533158302307129, 0.3655758798122406, 0.7627233862876892, 0.6244168877601624, 0.313075453042984, 0.3876994848251343, -0.4741816818714142, 0.24821633100509644, -0.08068184554576874, -1.4023172855377197, -0.5491117835044861, 0.500394344329834, -0.1441572606563568, -0.9142904281616211, -0.7153770327568054, -0.26053276658058167, -0.3274611830711365, -0.5280057787895203, -0.303016722202301, 0.8256589770317078, 0.022441616281867027, -0.38779217004776, 0.015396837145090103, -0.390908420085907, 0.21827588975429535, -0.33591121435165405, 0.41844773292541504, 0.8474816679954529, -2.096083641052246, -0.2281646728515625, -0.00809661764651537, -1.0608603954315186, -0.7409272789955139, -0.7073086500167847, 0.5627982020378113, -0.8126484751701355, -1.3231780529022217, -1.0069375038146973, -0.4237821698188782, 1.1222596168518066, -0.434542179107666, 1.1520304679870605, 0.6385204792022705, -1.7981914281845093, 0.6249082684516907, -0.3629106283187866, -1.1686615943908691, -0.4256244897842407, -1.086061954498291, 0.37490326166152954, -0.3185631036758423, 0.11847055703401566, -0.5364798903465271, 0.672408401966095, -1.9681025743484497, -1.2371457815170288, -1.0294474363327026, -0.39334240555763245, 0.6621471643447876, 0.6150094866752625, -0.699198842048645, 2.213083267211914, 0.3635847568511963, 0.03689894452691078, 0.51919025182724, 0.4505397379398346, -0.19790449738502502, 0.19036409258842468, -0.05005311220884323, 0.9854609966278076, 0.8376280665397644, 0.5936527848243713, 0.302194207906723, 0.9720754027366638, 0.3642639219760895, -0.260974258184433, -0.5202882289886475, -0.2645062208175659, -0.12308533489704132, 1.0067505836486816, -0.47209006547927856, -0.8243107795715332, -0.4099988639354706, 0.197118878364563, -1.2200393676757812, -0.29320472478866577, 0.26190197467803955, -0.5074003338813782, 0.22311994433403015, -0.23383967578411102, 0.12803760170936584, -0.46403056383132935, 0.783579409122467, 0.08380821347236633, -0.17978709936141968, -0.44670674204826355, 0.7097876667976379, 0.11974149197340012, -1.125821828842163, 0.41411536931991577, 0.49385055899620056, -0.2858787775039673, -0.435291588306427, -0.25365403294563293, 1.0354466438293457, 0.242187038064003, -0.31683284044265747, 1.3419044017791748, 0.39558809995651245, 0.026815146207809448, -0.1930892914533615, 0.594946563243866, 0.6155312657356262, 0.7459695339202881, 0.02748921513557434, 0.14824801683425903, -0.9520297646522522, 1.3178194761276245, -0.05967262387275696, 0.3985149562358856, -0.567038893699646, 0.19630679488182068, -0.7724217772483826, 0.550002932548523, 0.7246047258377075, -1.883915662765503, -0.28574109077453613, 0.9838868975639343, -0.04134387895464897, -0.22357122600078583, -0.15857218205928802, 1.4656673669815063, -0.6783026456832886, -0.2727908790111542, 0.5131208896636963, 0.01670638471841812, -0.833112359046936, 0.5311478972434998, 0.3021025061607361, 0.03947567939758301, -0.41755884885787964, -0.47329598665237427, -1.2935523986816406, 0.06680058687925339, -0.28392133116722107, -0.32199564576148987, 0.8985700011253357, -0.754708468914032, -1.157322645187378, 0.3085322678089142, 0.4902791976928711, -1.04570472240448, 0.415479451417923, -0.2558830976486206, -0.13294164836406708, -0.3814654052257538, 0.5428376197814941, -1.0232514142990112, 1.2385926246643066, 0.25488343834877014, 0.478882372379303, -0.7464762330055237, -0.3585323691368103, 0.2655653655529022, 0.3005198538303375, 0.08439383655786514, -0.4417092204093933, 1.4086132049560547, -0.3107270300388336, -1.0150545835494995, 0.43514445424079895, 0.14545349776744843, -0.26906463503837585, 0.41448974609375, -1.0630682706832886, 0.0024972744286060333, 0.40691304206848145, 1.1610480546951294, -0.502266526222229, -1.0862034559249878, -0.9459079504013062, -0.1128949373960495, -0.5569848418235779, 0.8059195280075073, 0.0885547325015068, 0.3906518220901489, -0.04563690721988678, -0.3571245074272156, -0.04053832218050957, 0.08333522826433182, 0.25686508417129517, -0.043954815715551376, 0.5142253041267395, 0.624173104763031, -0.27651020884513855, -0.2516382038593292, -0.5830267667770386, 0.004406759515404701, -0.5939382910728455, 0.02211647294461727, 0.21315138041973114, -0.4615631699562073, -0.9036324620246887, -0.7770985960960388, 0.8610363602638245, 0.5282672047615051, -0.06500931829214096, -0.16598257422447205, 0.601161777973175, -0.7464743852615356, 0.7074688076972961, -0.13892638683319092, 0.18787281215190887, 0.4548701345920563, 0.23814068734645844, 1.333891749382019, 0.8501226305961609, 0.4345804750919342, -0.6333063244819641, 0.2256319224834442, -0.7353410720825195, -0.3133803606033325, -0.4921853244304657, -0.38040077686309814, -0.43821388483047485], [0.380515456199646, 0.8804630637168884, -1.4909257888793945, -0.6855615973472595, 0.9061470627784729, -0.7268432974815369, 1.2823817729949951, 0.21898317337036133, 0.2627768814563751, -0.2525000274181366, -1.1043661832809448, -0.21538974344730377, 0.5861181616783142, 0.7929779887199402, 0.502707302570343, 0.9689315557479858, 0.9376448392868042, -0.8000574707984924, 1.054359793663025, 1.4539192914962769, 0.35133615136146545, -0.4979341924190521, -0.0013332185335457325, -0.18221430480480194, -0.23708690702915192, -0.45113417506217957, -0.7293152213096619, -0.19685649871826172, -0.9820813536643982, -1.0188915729522705, 1.0389575958251953, -0.5845215320587158, 0.2930868864059448, -0.5682390332221985, -1.3696377277374268, -0.2220178246498108, 1.828224539756775, 0.8636540174484253, 0.7139690518379211, 0.10388868302106857, 1.810598611831665, -0.17397554218769073, -0.5505977272987366, -2.340137004852295, 0.4043519198894501, -0.10110463947057724, 1.620195746421814, -1.2682005167007446, 0.14595988392829895, -0.6567569375038147, 0.22148169577121735, -0.44075214862823486, -0.010679122060537338, 1.0661025047302246, 0.7114951014518738, -1.0142728090286255, 1.153212547302246, 0.38948750495910645, 0.6360083222389221, -0.8896535038948059, 0.27577340602874756, -0.07662127166986465, -0.7466456890106201, 1.175345540046692, -0.6793477535247803, -0.370024710893631, 0.4205104112625122, 0.46266865730285645, -0.22402392327785492, 0.038834989070892334, 0.2243669033050537, 0.9807053804397583, -0.2892197072505951, 0.8385677933692932, -1.5426074266433716, 0.3242179751396179, 0.6891577839851379, 0.6984122395515442, 0.5239061713218689, 0.558983325958252, -0.8169179558753967, -0.12844742834568024, 0.4177889823913574, 0.28155630826950073, 0.19998124241828918, 0.5990858674049377, 1.0669690370559692, -0.5544193387031555, -0.1349601447582245, 1.9012364149093628, 0.35734620690345764, -0.31525397300720215, 0.7896724343299866, 0.08556165546178818, -0.36465537548065186, -0.505314290523529, 0.6121199131011963, 0.10121165961027145, -1.19119131565094, -0.2673873007297516, -0.6668723225593567, -0.9460668563842773, -0.0007552066817879677, -0.0841992124915123, -0.06960447877645493, 1.2058618068695068, 0.6953808665275574, -0.34107038378715515, -0.7915000319480896, -0.06913016736507416, -0.19290447235107422, -0.18011866509914398, -0.33414366841316223, -0.4546630382537842, -0.5267885327339172, 0.5305677652359009, 1.6493406295776367, -0.869827151298523, 0.27036532759666443, 0.7425394058227539, -0.1404602825641632, -0.7384419441223145, -0.06280124187469482, 0.32236871123313904, 0.3593987226486206, -0.32623758912086487, -1.1682515144348145, -0.2516798973083496, 0.7485212087631226, 0.010609176009893417, 0.3623979389667511, 0.1464129090309143, -0.034834131598472595, 1.097908854484558, -0.7403415441513062, 0.8699283599853516, -0.2796073257923126, -0.7846060395240784, -0.26970601081848145, -0.6058712005615234, 0.6073203086853027, 0.0013697431422770023, -0.4059005081653595, -0.018668660894036293, 0.1448889672756195, -0.5691009163856506, 0.3855118751525879, -0.10874725878238678, -0.8647156953811646, 0.3301503658294678, -0.6121878623962402, -0.3887997567653656, 0.0713413879275322, 0.16158710420131683, 0.5900927186012268, -0.23168794810771942, 0.4801318943500519, 0.18833917379379272, 0.3329924941062927, 0.3231028616428375, 0.5452026724815369, -0.35682782530784607, -0.8622092604637146, 0.6241135597229004, 0.6633266806602478, -0.5281600952148438, 0.06118909269571304, 0.9574565291404724, 0.4730546772480011, 0.6407048106193542, -0.02396230213344097, -0.4106181859970093, -0.32198652625083923, 0.49778440594673157, 0.3420783281326294, -0.18301276862621307, 1.2500168085098267, -0.7153200507164001, -1.0957117080688477, -0.9634302854537964, 0.9227604866027832, 0.5852691531181335, 0.8322737812995911, -0.1464492231607437, 0.5185145735740662, -0.3831997513771057, 0.6353046298027039, -0.013508561998605728, -0.4222088158130646, -0.5947442650794983, -0.3205353617668152, -0.24232681095600128, -0.42575013637542725, 0.4284968376159668, -0.3998948037624359, -0.8261156678199768, 0.5683667063713074, -1.1815776824951172, -1.1405763626098633, -0.18585845828056335, -0.24012848734855652, -0.3439912796020508, -0.38472771644592285, 0.521886944770813, -0.43908968567848206, 0.5807127356529236, -1.0579438209533691, 0.30181798338890076, -1.1726102828979492, -0.0839628204703331, 1.2295342683792114, 0.33507728576660156, -0.5610499978065491, 0.30615147948265076, -0.24707244336605072, -0.9782696962356567, 0.7350807785987854, 1.1426507234573364, -0.44268056750297546, 0.09705371409654617, -0.3358612358570099, 0.12507212162017822, 0.8843255043029785, 0.3870847225189209, 0.8814881443977356, -0.5246861577033997, -0.3227291405200958, -1.2732045650482178, -0.7827884554862976, -0.3084464967250824, 0.06648648530244827, -0.8350538015365601, 0.4869662821292877, 0.1055218055844307, -0.7360489368438721, 0.4449334740638733, -0.08869795501232147, 0.8745348453521729, 0.46119824051856995, 1.0279731750488281, 0.5121182203292847, 0.6251653432846069, -0.008415904827415943, -0.33679598569869995, -0.39728716015815735, 0.5832586884498596, 0.993827223777771, -0.491152286529541, 1.0124990940093994, 1.2139900922775269, 0.9752500653266907, -0.3843807578086853, 0.2985367476940155, -0.6568841338157654, -0.27916619181632996, -1.0253945589065552, -0.1877128630876541, 0.5564565658569336, -0.3529767394065857, 1.9145365953445435, 0.10897457599639893, -1.0663623809814453, -0.3109776973724365, 0.7690114974975586, -0.5470817685127258, -0.6306325197219849, -0.8592293858528137, -0.9052028059959412, -0.012885666452348232, 0.19559191167354584, 0.11656305193901062, 0.33720386028289795, -0.00418481370434165, 0.9084384441375732, -0.2804130017757416, -0.8068053722381592, -0.8207371234893799, -0.5410204529762268, -0.3339082896709442, 1.2243402004241943, 0.22421300411224365, -0.6776334643363953, -0.7124641537666321, 0.5848150849342346, 0.29638180136680603, 0.38150742650032043, -0.7163451910018921, -0.1955324113368988, -0.05124673992395401, 0.5580536723136902, -0.17403288185596466, 0.27072590589523315, -0.3838023245334625, -0.2496391385793686, 0.07920364290475845, 0.46341267228126526, 1.218241810798645, -0.9877119064331055, -1.1007274389266968, -0.07891333848237991, -0.08397480845451355, 1.6293941736221313, 0.37559717893600464, 1.0169485807418823, 0.7747072577476501, 0.14352552592754364, -0.5358700156211853, -0.17308825254440308, -0.7152697443962097, -0.46817710995674133, -0.3110097050666809, -0.6445677876472473, -0.06455469876527786, -0.06762337684631348, -0.3678143322467804, 0.09005807340145111, -0.11847279220819473, 0.014550640247762203, 0.8147478699684143, -0.3264904320240021, -0.45383980870246887, 0.15668520331382751, 0.053137823939323425, -0.9461759924888611, 0.27675795555114746, 1.169603705406189, -0.7974447011947632, -0.5182260870933533, 0.1561117321252823, 0.32179075479507446, -0.09441564232110977, 0.2986644208431244, 0.5698422193527222, -1.3831018209457397, -0.9465277791023254, -0.45971086621284485, 1.4294030666351318, -0.5291990041732788, 0.4961625337600708, 0.19985730946063995, -0.09663521498441696, 0.7932934761047363, 0.4320952594280243, -0.4880329966545105, 1.0107359886169434, 0.0920543298125267, -0.24329113960266113, -0.41172415018081665, 0.4526417851448059, 0.606206476688385, -0.26000142097473145, -0.26160237193107605, -0.33627477288246155, -0.6361537575721741, 0.20060399174690247, 0.17523443698883057, -0.2838890254497528, 0.939533531665802, 0.15049636363983154, 0.4345155954360962, 1.2349021434783936, -0.7701282501220703, 0.5982180237770081, -1.4709185361862183, 0.6453903913497925, 0.8395342826843262, 1.3864845037460327, -0.011748791672289371, -0.06423340737819672, 0.42093583941459656, 0.26443782448768616, -0.31291311979293823, -0.06800166517496109, 1.3633674383163452, -0.17536306381225586, 0.8445192575454712, -0.41747304797172546, 0.2562689781188965, 0.3817981779575348, -0.8054807186126709, 0.4828464984893799, 0.32449963688850403, -1.3870880603790283, -1.0882009267807007, 0.7623897194862366, 0.11332903802394867, -0.19427365064620972, -0.3356446921825409, -0.1729428470134735, 0.7293646335601807, 0.09503158181905746, 0.0398421473801136, -0.7988200187683105, -0.3145158290863037, 0.10507123172283173, -0.5993289351463318, -0.3213527500629425, -0.22124381363391876, 0.09124349802732468, 0.6250158548355103, -1.114362359046936, 0.3836635947227478, -0.6768244504928589, 0.26747316122055054, 0.4519061744213104, -1.0416250228881836, 0.27780681848526, -0.6481860280036926, -0.021282827481627464, -0.06357023119926453, -0.5949326753616333, 1.1796358823776245, -0.24407628178596497, -0.26227614283561707, -0.2120063155889511, -0.01277270819991827, -0.1208273321390152, -0.6291250586509705, -0.2079911231994629, -0.12660180032253265, -0.6410158276557922, 0.010513583198189735, 0.3330850899219513, 0.4793277084827423, 1.9251688718795776, 0.05010282248258591, 0.2544618546962738, -0.1428215503692627, 0.3376884460449219, -1.3067963123321533, 0.29155436158180237, 0.2890368402004242, 0.40345874428749084, -0.07342074811458588, -0.24257011711597443, 0.30945390462875366, -0.4294366240501404, 0.15785279870033264, -0.7935309410095215, 0.2719648778438568, -0.32791948318481445, 0.10370580852031708, 0.26346078515052795, 0.5525121092796326, 1.0425935983657837, 0.47702136635780334, -0.2015419453382492, -0.691848635673523, -0.7813102006912231, -0.15673498809337616, -1.0384663343429565, 0.6745771169662476, 0.8027405142784119, 0.14303939044475555, 1.45142662525177, -1.4439972639083862, -0.44035524129867554, 0.4207761585712433, 0.4754331409931183, 0.4793415665626526, 0.8878300189971924, -0.07416758686304092, 0.6468927264213562, 0.8814554214477539, 0.3243592381477356, -0.4149910807609558, 0.16816464066505432, 0.8173760771751404, -0.11745614558458328, 0.4950670897960663, -0.6254593729972839, 0.3322930634021759, -1.1486597061157227, 0.28271108865737915, 0.19735582172870636, -0.23713542520999908, 0.2130281627178192, 0.3350238800048828, 0.9529521465301514, 1.4990915060043335, -0.8236428499221802, -0.8511589765548706, 0.5840552449226379, -0.9817056655883789, -0.054718952625989914, -1.0795010328292847, -0.43009814620018005, -0.7449175715446472, -0.6532590985298157, -0.32353565096855164, 0.6102994084358215, -0.26191776990890503, 0.12904921174049377, -0.5604975819587708, -0.6968564987182617, 0.856582522392273, 0.45664918422698975, 1.3425110578536987, 0.6427993178367615, 0.3436552882194519, 0.2949742078781128, 1.0623104572296143, -0.7546831369400024, -0.24014966189861298, 0.19517642259597778, 0.004160200245678425, -0.417176216840744, -0.656920850276947, -1.0542649030685425, 0.42655158042907715, 0.752954363822937, -0.31986016035079956, -0.18901130557060242, 1.0564343929290771, 1.1290156841278076, -0.5084846019744873, -0.29130348563194275, 0.28874167799949646, -0.6897023320198059, 0.14555616676807404, -0.12736818194389343, -0.2547672390937805, -0.32517534494400024, -0.5586408972740173, -0.9736126661300659, 1.0599088668823242, 0.21176068484783173, -0.6232684254646301, 0.5288231372833252, 0.10362985730171204, 1.1036792993545532, 0.7774884700775146, -0.7943432927131653, 0.6767989993095398, -0.41107168793678284, -0.0712549090385437, -0.9401594996452332, 0.4457865357398987, -0.2342931479215622, 0.15965934097766876, -0.03236541897058487, 0.13908639550209045, 0.6062063574790955, -0.045884065330028534, -0.1813979297876358, 0.14268898963928223, 0.9427304863929749, 0.3307819962501526, -0.2715981900691986, -0.3622024357318878, 0.06637313216924667, -0.5412538647651672, -0.7742016911506653, -0.9612538814544678, 1.0783880949020386, 0.2844058871269226, 0.025058791041374207, -0.40080526471138, 0.368123859167099, -1.0514799356460571, -0.4336882531642914, -0.8126972913742065, 0.4282751977443695, -0.79441899061203, 0.08440425992012024, -0.7950516939163208, -0.15237665176391602, -0.5641865134239197, -0.34908974170684814, 0.5007704496383667, 0.3170030415058136, -1.7322074174880981, 0.4517403841018677, 0.11776524037122726, -0.6082342267036438, -0.2900397777557373, -0.6543685793876648, 0.1107943058013916, -1.3670426607131958, -0.9732155799865723, -1.3689405918121338, 0.09624088555574417, 0.7370638251304626, -0.5470309853553772, 0.6268671154975891, 1.2096343040466309, -1.11283278465271, 0.5687495470046997, -0.5508925914764404, -0.7967149019241333, -0.22969818115234375, -0.6286446452140808, 0.852053165435791, 0.3979422152042389, 0.6688953638076782, -0.007479977793991566, 0.762019693851471, -1.034530758857727, -0.9425898790359497, -0.7108405828475952, -0.7912149429321289, 1.232108235359192, 0.8550269603729248, -0.6128141283988953, 1.8068584203720093, 0.8022470474243164, -0.3943129777908325, -0.1758069097995758, 0.16587455570697784, -1.265580415725708, 0.4651687443256378, 0.6143988370895386, 0.13684237003326416, 0.4038436710834503, 1.297255039215088, 0.4725302457809448, 0.4025717079639435, 0.512048602104187, 0.763553261756897, 0.1437598615884781, -0.2201586812734604, -0.15290409326553345, 0.38759511709213257, -0.9897051453590393, -0.729276716709137, 0.1391787976026535, -0.5387192964553833, -1.0969864130020142, 0.5278986096382141, 0.372945636510849, -0.7993736267089844, 0.157024547457695, -0.796604335308075, 0.7295801639556885, -0.737803041934967, 0.717494785785675, 0.15721778571605682, -0.40380388498306274, -0.3222275376319885, 0.6991022229194641, 0.12866665422916412, -1.706404209136963, 0.46125537157058716, -0.025702357292175293, -0.6242182850837708, -0.015784963965415955, 0.5879354476928711, -0.2723785638809204, 0.36959192156791687, -0.6058239340782166, 1.1473171710968018, 1.730825662612915, -0.6526924967765808, -0.4145863950252533, 0.4341963231563568, 0.4252454340457916, 0.3611930310726166, -0.06805938482284546, -0.6874803304672241, -1.026660442352295, 1.2459497451782227, 0.4818025529384613, 0.2424306571483612, -0.6674546599388123, 0.010486011393368244, 0.036629870533943176, 0.27340421080589294, 1.235921859741211, -1.1624847650527954, -0.373965322971344, 0.8974652886390686, 0.21238337457180023, 0.18683011829853058, 0.863360583782196, 1.0079559087753296, 0.299417108297348, -0.5423943400382996, 0.15514689683914185, 0.9038910269737244, -0.6228816509246826, 0.5174164175987244, 0.4764711260795593, 0.023560473695397377, -0.0846969410777092, -0.949072003364563, -1.3680810928344727, 0.027259964495897293, -0.09300407767295837, -0.5861075520515442, 0.35085752606391907, -1.3860527276992798, -0.42122820019721985, 0.20628497004508972, 0.12633836269378662, -0.5107364058494568, -0.9291707873344421, 0.044725947082042694, -0.5594902634620667, 0.1427750438451767, 0.6296548843383789, -0.007627992425113916, 1.1292445659637451, -0.4531199336051941, -0.33722248673439026, -1.4888266324996948, -0.5820279121398926, 0.1420775055885315, 0.17508697509765625, -0.4429945945739746, 0.062009476125240326, 0.834658145904541, -0.03644571080803871, -0.472348153591156, -0.06414664536714554, -0.2567155659198761, -0.09425817430019379, -0.3805507719516754, -0.9785142540931702, 0.12304040789604187, 0.35453346371650696, 0.2157105952501297, 0.18181227147579193, -0.8870770335197449, -1.2922558784484863, 0.2929213345050812, -0.34977513551712036, 0.01307774893939495, -0.5650293231010437, 0.5785147547721863, 0.6212148070335388, -0.053207483142614365, -0.28636232018470764, -0.6859336495399475, 0.435686320066452, 0.3359244763851166, 0.26862961053848267, 0.14893804490566254, -0.046275749802589417, -0.5079648494720459, -1.185544490814209, 0.3566269278526306, -0.39490294456481934, -0.6293763518333435, 0.228080153465271, -1.495822548866272, -0.7986130118370056, -0.8882039785385132, 0.014116769656538963, 0.9018784761428833, -0.06460661441087723, -0.09510685503482819, -0.2892525792121887, -1.1246072053909302, 0.4533941149711609, 0.2452293187379837, -0.03403860330581665, 0.5063837766647339, 1.4682809114456177, 1.7461470365524292, 0.8350427746772766, 0.19246292114257812, -0.13674624264240265, 0.3460860848426819, -0.4961531460285187, -0.325196772813797, -0.9871131777763367, 0.15585869550704956, -0.40213626623153687], [0.6463314890861511, 2.217033863067627, -1.9859415292739868, -0.8176897764205933, 0.8060814738273621, 0.1432967633008957, 2.0467770099639893, -0.03600826486945152, 0.3088098466396332, 0.2834240794181824, -0.5967426300048828, -0.3326491415500641, 1.704366683959961, 1.1165496110916138, 0.2297755628824234, 0.5368732810020447, 0.7432666420936584, -0.15761835873126984, 1.7061123847961426, 1.266566276550293, -0.6787086129188538, -0.20638218522071838, -0.3044768273830414, 0.13159514963626862, 0.1985756754875183, 0.44229552149772644, -0.8708475828170776, -0.07677987962961197, -1.0285520553588867, -1.229278802871704, 0.5060560703277588, -0.7436637878417969, 0.35495415329933167, 0.2435232400894165, -0.8678478598594666, -0.34761419892311096, 1.6437677145004272, 1.7919447422027588, 1.129785418510437, 0.32698938250541687, 2.466961145401001, 0.1861858367919922, -0.19483253359794617, -1.0848863124847412, 0.45992955565452576, 1.073733925819397, 0.07313542813062668, -1.6277852058410645, 0.2179228663444519, -0.09478945285081863, 0.3802812993526459, -0.17953671514987946, 1.226615071296692, 0.9613892436027527, 0.6265912652015686, 0.6035524606704712, 1.0501114130020142, 0.8942671418190002, 1.237517237663269, 0.45843595266342163, 0.5846251845359802, 0.2566106617450714, 0.2535499930381775, 0.30404582619667053, 0.7757208347320557, -0.49613383412361145, 0.4726012647151947, 0.05451377481222153, 0.293274462223053, -0.044943612068891525, 0.12178964167833328, -0.28162336349487305, -0.5971421599388123, 0.47316259145736694, -1.4078806638717651, 0.6970593929290771, 1.0756813287734985, 0.9960713386535645, 0.11286008358001709, 0.23660925030708313, -1.0638138055801392, -0.16980883479118347, 0.3992581069469452, -0.3818866014480591, 0.5558611154556274, -0.2806702256202698, 0.1448182314634323, -0.29741954803466797, -0.7296959757804871, 2.2687900066375732, 0.20745787024497986, -0.16552069783210754, -0.20736010372638702, -0.1234801709651947, -0.24552439153194427, -0.3353898525238037, 0.064927838742733, -0.2618619501590729, -0.9144207835197449, -0.4662512540817261, -0.4420839846134186, -0.31961292028427124, 0.07942222058773041, 0.6882199048995972, 0.18864946067333221, 2.1417574882507324, -0.026336882263422012, -0.13240104913711548, -1.497281789779663, -0.2437809258699417, -0.4808898866176605, -0.26208460330963135, -1.0660439729690552, -0.6731483340263367, -0.7221249341964722, 0.6743668913841248, 1.3331880569458008, -0.13372120261192322, -0.014708630740642548, 1.1166611909866333, -0.45739543437957764, -0.13213318586349487, 0.30545657873153687, 0.034869011491537094, 0.5476132035255432, 0.7756628394126892, -0.6168256998062134, -0.09308545291423798, 0.38129329681396484, -0.12274198234081268, 0.6607900857925415, 0.21133574843406677, 0.14719276130199432, 0.4941917955875397, -0.7286136150360107, 0.8751069903373718, -0.06262173503637314, -0.676918089389801, -0.06732091307640076, -0.6190927028656006, 0.1686353236436844, -1.0453755855560303, -0.9027175903320312, -0.9237833023071289, -0.356152206659317, -0.9177513122558594, 0.814233124256134, 0.09549464285373688, -0.521445095539093, 0.29452234506607056, -0.6016185283660889, -0.06829048693180084, -0.06276160478591919, 0.25779709219932556, 0.1554265171289444, -0.09090617299079895, 0.5752056241035461, 0.7717650532722473, 0.753940224647522, 0.5608004927635193, 0.38833168148994446, 0.329290509223938, -0.8262737393379211, -0.11822310090065002, -0.2382439225912094, -0.37630775570869446, 0.6876444816589355, -0.10352355986833572, 0.07243753969669342, 0.799547553062439, -0.5661849975585938, -0.34628981351852417, -0.16331689059734344, 0.77735435962677, 0.4399683177471161, -1.0162278413772583, 1.6659643650054932, -0.5927095413208008, -1.1586556434631348, -1.8158483505249023, -0.06059974804520607, -0.4050838053226471, 0.44067713618278503, -0.1315373182296753, 0.03229500353336334, -0.804429829120636, -0.1285933405160904, -0.05138123407959938, -0.4459565281867981, -0.7494386434555054, -0.5848419070243835, 0.3603503406047821, -1.8247826099395752, 0.5744513869285583, -0.24428382515907288, -0.6672115325927734, 0.7235956192016602, -0.7775393128395081, -1.6008366346359253, 0.632860004901886, 0.4525028169155121, -0.16047652065753937, -0.8395864963531494, 0.5478984713554382, -0.6621560454368591, 1.0985876321792603, -1.1848607063293457, 0.5598607063293457, -0.6381790637969971, 0.24412588775157928, 0.6260877251625061, 0.9449611306190491, -0.5170143246650696, 0.7884307503700256, 0.1546315997838974, -0.9928730130195618, 0.24625420570373535, 0.061031829565763474, -0.2155001163482666, 0.2823575735092163, 0.19468113780021667, -0.40525543689727783, 0.2570341229438782, 0.4931272566318512, 0.3742339015007019, 0.11057081073522568, -1.1689672470092773, -0.271377295255661, -0.8052434325218201, -0.12042688578367233, -0.601125180721283, -1.200927972793579, 1.0380345582962036, 0.8484737277030945, -0.839139461517334, 1.0032784938812256, -0.21813753247261047, -0.15360873937606812, 0.5017044544219971, 1.2728040218353271, 0.5716321468353271, -0.015748921781778336, -0.38700851798057556, -0.9083914160728455, -0.580584704875946, 0.46064674854278564, 0.5163466930389404, -0.4190610349178314, 0.8905637264251709, 1.1212167739868164, 0.6458556056022644, -0.3932957947254181, 0.13458389043807983, 0.2305212765932083, 0.16878214478492737, -1.2335708141326904, -0.3400450646877289, -0.20226150751113892, -0.06876112520694733, 1.8642133474349976, 0.6509633660316467, -1.7395864725112915, -0.22159022092819214, -0.5100565552711487, -0.20082315802574158, -0.44005778431892395, -0.7066136002540588, -0.503054678440094, 0.1454107165336609, 0.8182635307312012, -0.008511872962117195, 0.48372605443000793, -0.6621459126472473, 0.2573443651199341, -0.6828444600105286, -0.36615321040153503, -0.30109158158302307, 0.1340627670288086, -0.241446390748024, 1.1526457071304321, 0.6827200651168823, -1.3034453392028809, -1.2397664785385132, -0.05005471408367157, 0.6549842953681946, 0.5785756707191467, -0.3864629566669464, 1.1216105222702026, 0.4470759928226471, 0.03778820484876633, 0.6332193613052368, 0.596998929977417, -0.18368354439735413, -0.4362822473049164, -0.7511812448501587, 1.021031141281128, 0.6720985770225525, -1.7194703817367554, -0.47715112566947937, -0.6021714806556702, 0.5470523238182068, 1.6248024702072144, 0.9447598457336426, 0.6848503947257996, -0.21505597233772278, 0.42972350120544434, -0.48238101601600647, -0.15394073724746704, -0.4648478925228119, -0.5898407697677612, 0.30542248487472534, -0.6148120760917664, -0.24196399748325348, 0.117125004529953, -0.3090571165084839, 0.10054240375757217, -0.43936899304389954, 0.3887973427772522, 1.1210694313049316, -0.4214249551296234, -0.9190340042114258, -0.9596695303916931, 0.11099953949451447, -1.6177698373794556, 0.7261480689048767, 0.33456388115882874, -0.7093393206596375, -0.3602796494960785, 0.12339404970407486, -0.4532383680343628, 1.0824036598205566, -0.13558568060398102, 0.12245312333106995, -0.6623136401176453, -1.0126051902770996, -0.06393910199403763, 1.0852603912353516, 0.02700675278902054, 0.03901980072259903, -0.5233587622642517, 0.5678070783615112, 0.5167310833930969, 0.11896359920501709, -0.7175685167312622, 0.7237058877944946, -0.08873584866523743, -0.7045019865036011, -0.34841838479042053, 0.27270832657814026, 0.3916851282119751, -0.1572946459054947, -0.06996288150548935, 0.40070173144340515, -0.40387266874313354, -0.039145294576883316, 0.5931557416915894, 0.40859538316726685, 0.7484725117683411, 0.08354688435792923, -0.13115759193897247, 1.0985316038131714, 0.2415717989206314, 0.2504545748233795, -1.868651270866394, 0.9924039244651794, 0.8310431838035583, 0.10767021030187607, 0.757088303565979, -0.31673845648765564, 0.26177892088890076, 0.016235314309597015, -0.2130182832479477, -0.2936716079711914, 1.0609238147735596, 0.19879774749279022, 0.2559848427772522, -0.5425148010253906, 0.2552800178527832, -0.043569013476371765, -0.5972480177879333, 0.014562204480171204, 0.7872418761253357, -0.7768417000770569, -0.59972083568573, 0.5281020402908325, 0.6639194488525391, -0.7561144232749939, -0.7868679165840149, 0.4703467786312103, 0.454534113407135, 1.0250616073608398, 0.21543702483177185, -0.18067598342895508, -0.24449659883975983, -0.48285624384880066, -1.1783932447433472, -0.8626779913902283, 0.23471952974796295, -0.3608139455318451, 0.8430357575416565, -1.2309625148773193, -0.7108620405197144, -0.8301861882209778, -0.23631367087364197, 0.17127902805805206, 0.05893121659755707, 0.2817160487174988, -0.36000093817710876, 0.47506287693977356, -0.2953501343727112, 0.1864432692527771, 0.7424114942550659, 0.30117589235305786, -0.23107144236564636, -0.10864199697971344, 0.3944902718067169, -0.4908546805381775, -1.1061880588531494, -0.42229005694389343, 0.045183561742305756, -0.4087408185005188, 0.4363477826118469, -0.35837045311927795, -0.052891191095113754, 1.288167953491211, 0.9907382130622864, 0.4440658986568451, 0.8650945425033569, -0.6745599508285522, -0.21271875500679016, 0.3691418170928955, 0.6729266047477722, -0.1711277812719345, -0.2836666405200958, -0.31279176473617554, 0.6415077447891235, -0.37355443835258484, 0.7815470099449158, 0.3278253674507141, 1.1394346952438354, 0.2684757113456726, 0.13906338810920715, 0.244298055768013, 0.06638690829277039, 0.6500811576843262, 1.2748961448669434, 0.10011375695466995, -0.3679466247558594, -1.164178729057312, 0.8933787941932678, -1.009009838104248, 0.15666474401950836, 0.8847855925559998, 0.5075422525405884, 0.48941099643707275, -1.7044190168380737, -0.8095146417617798, 1.1034772396087646, 0.6624854207038879, 0.966373085975647, 0.5417951345443726, 0.5596033334732056, -0.9665563106536865, 0.3094058334827423, 0.6618585586547852, -0.22156426310539246, 0.4965750277042389, 0.13722649216651917, -0.6817378997802734, 0.6191042065620422, -0.3574286699295044, 0.5435844659805298, -0.7026324272155762, -0.4687332808971405, -0.3491796553134918, -1.105125069618225, 0.04446062818169594, 0.37529730796813965, -0.12143371254205704, 0.6056402921676636, -0.8761627078056335, -0.7470559477806091, 0.46278366446495056, -0.24469560384750366, 0.12282456457614899, 0.20930486917495728, -0.5739787220954895, -1.1989829540252686, -1.2387027740478516, -0.6431583166122437, 0.9990772008895874, -1.0371171236038208, -0.08042097091674805, -0.22879736125469208, -1.2625707387924194, -0.23140749335289001, 0.2844516634941101, 0.9807982444763184, 1.2365617752075195, 0.23250362277030945, 0.5897045135498047, 0.13663247227668762, -0.7470679879188538, 0.4325753152370453, 0.9413686990737915, -0.18042650818824768, -0.551015317440033, -1.800924301147461, -0.3551774322986603, 0.9953967332839966, 0.49371206760406494, -0.5375394225120544, 0.5245325565338135, 1.3226126432418823, 1.4217760562896729, 0.04048401489853859, -0.9882636070251465, 0.17182782292366028, -0.7251960039138794, -0.04103038087487221, 0.9357579350471497, -0.4030340313911438, -1.0485578775405884, -0.5748511552810669, -0.6548388004302979, 1.5627117156982422, -0.009392746724188328, -1.6595138311386108, 0.856390118598938, 0.8917071223258972, 0.017647290602326393, 0.8516604900360107, -1.1831207275390625, -0.031415536999702454, 0.20909656584262848, -0.4564570486545563, -1.2539441585540771, -0.23897022008895874, 0.2686026096343994, 0.8155367970466614, -0.23586808145046234, 0.30455929040908813, 0.24588948488235474, 0.740100085735321, 0.933753252029419, 0.2008397877216339, 0.1429673433303833, 0.7381823062896729, 1.0414724349975586, -1.128177285194397, -0.008953837677836418, -1.0853757858276367, -0.3692270517349243, -0.3001747727394104, 0.9439622759819031, 0.3815084397792816, -0.9423444867134094, -0.15140952169895172, -0.44149935245513916, -0.2170800268650055, -0.09654160588979721, 0.35368797183036804, 0.8195263147354126, 0.061877232044935226, -0.5530726313591003, 0.037726499140262604, -0.06361953169107437, -0.4644519090652466, -0.1351979821920395, -0.1916673481464386, 0.574018657207489, -1.2713842391967773, -0.36292558908462524, 0.3932623863220215, -0.11107853800058365, 0.15056072175502777, -1.263227939605713, -0.686356246471405, -1.5352368354797363, -1.4008805751800537, -1.013907551765442, -0.11253616213798523, 0.8739627599716187, -0.4627775549888611, 0.3319421410560608, 0.41509106755256653, -1.9169350862503052, 0.4908704161643982, -0.1254025250673294, -1.6762933731079102, -0.06915536522865295, -1.07826566696167, 0.9314826726913452, -0.2710459232330322, 0.10596346110105515, -0.2658955454826355, 0.847135603427887, -1.2168883085250854, -0.8796564340591431, -0.6278655529022217, -0.0544106587767601, 0.857149064540863, 1.0482587814331055, -0.8008912205696106, 1.5990229845046997, 0.59039705991745, -0.1803482472896576, -0.22434104979038239, -0.052649207413196564, -0.7959849238395691, 0.17856289446353912, 0.8464606404304504, -0.37453028559684753, 0.6721672415733337, 0.4283737540245056, 0.18171414732933044, 0.8224841952323914, -0.31511786580085754, 0.15771454572677612, -0.9977979063987732, -0.7377743721008301, -0.13355191051959991, 0.14140769839286804, -1.344067096710205, -0.42971113324165344, -0.25185465812683105, -0.5995156764984131, -0.2940041124820709, 0.4428596496582031, 0.6902731657028198, -0.7317230701446533, 0.14338289201259613, -0.18510869145393372, 0.1693216860294342, -0.5878351926803589, 0.06985463947057724, -0.0704444870352745, -0.25889289379119873, 0.525638997554779, 0.38954058289527893, -0.19230397045612335, -1.0344003438949585, 1.1649433374404907, 0.3592066764831543, -0.18216708302497864, -1.238384485244751, 0.35061895847320557, 1.0082550048828125, -0.6258347630500793, -0.3242955505847931, 1.445150375366211, 1.2838953733444214, -0.24087008833885193, -0.41072744131088257, 0.46798789501190186, -0.6222303509712219, 0.44950228929519653, -0.44202670454978943, 0.2051253318786621, -1.0598137378692627, 1.0662342309951782, 0.7725053429603577, 0.47198033332824707, -0.9145038723945618, -0.2684936821460724, -0.9847790598869324, 0.10958503931760788, 0.40840965509414673, -1.2036606073379517, -0.1391471028327942, 1.6168004274368286, -0.0802844986319542, 0.019691279157996178, 0.11022749543190002, 0.6161277890205383, 0.42207205295562744, -0.5191524624824524, -0.1310022473335266, 0.769042432308197, -0.176613911986351, 0.926643431186676, 0.2580007314682007, -0.18411779403686523, -0.0474766343832016, -1.1397470235824585, -0.9586920738220215, -0.3458692133426666, -0.4513362646102905, -1.2274380922317505, 0.9817428588867188, -1.0553486347198486, -0.27006351947784424, 0.32405000925064087, -0.1572224199771881, 0.05501244217157364, -0.3187451958656311, -0.23517219722270966, -0.11839045584201813, -0.07158688455820084, 0.477676123380661, -0.5314221382141113, 1.1059088706970215, 0.9849990606307983, -0.16324257850646973, -0.7313565611839294, -0.4292270839214325, 0.42243728041648865, 0.24659182131290436, -0.20713922381401062, 0.32596057653427124, 0.9435040354728699, 0.1226930245757103, -0.7291116714477539, 0.10548391938209534, 0.32198286056518555, 0.2980825901031494, -0.05201631039381027, -1.3878673315048218, -0.5103015303611755, 0.6772058606147766, 0.066433846950531, -0.19040492177009583, 0.128299281001091, -1.1137304306030273, 0.24700525403022766, 0.3209737539291382, 0.6161863207817078, -0.762077271938324, -0.1826244443655014, 0.717457115650177, -0.2773754298686981, 0.2710660994052887, -0.6472508907318115, 0.6680856347084045, -1.1680668592453003, 0.4962693154811859, -0.08364148437976837, 0.1216108500957489, -0.3954448401927948, -0.859531044960022, 0.49166545271873474, -1.0904077291488647, -0.3611580729484558, 0.29466062784194946, -0.7154354453086853, -0.8879500031471252, -0.946110188961029, 0.4124904274940491, 0.7763676643371582, 0.07902983576059341, 0.33195269107818604, 0.05252554640173912, -1.6396851539611816, -0.16571645438671112, 0.7552091479301453, -0.230988010764122, 0.8935613036155701, 1.0741219520568848, 1.6486124992370605, 0.6511510610580444, 0.11750242114067078, -0.48044073581695557, 0.3805791437625885, -0.4249834716320038, -0.7117263674736023, -1.1272122859954834, -0.38590872287750244, -0.7347943186759949], [0.7535638213157654, 1.9117498397827148, -1.6695785522460938, -0.63681560754776, 1.0812509059906006, -0.5016387104988098, 0.9615110754966736, -0.091621533036232, -0.461860716342926, -0.5832445621490479, 0.21216246485710144, -0.3810831308364868, 0.7782860398292542, 0.8551731705665588, 0.26162776350975037, 1.053710699081421, 0.9853198528289795, -0.9402648210525513, 0.7066128253936768, 0.734872579574585, 0.2644524872303009, -0.7691105008125305, 0.5166924595832825, 0.04677795246243477, -0.1565219759941101, -0.0018105348572134972, -0.778416633605957, -0.5468343496322632, -0.5179755687713623, -0.6405246257781982, 0.2895210087299347, -0.6931818723678589, -0.2617810070514679, 0.1290433555841446, -2.10400128364563, -0.7653036117553711, 0.9845274686813354, 1.3088467121124268, -0.13807129859924316, 0.21939833462238312, 1.3047131299972534, -0.07297404855489731, -0.08923261612653732, -1.3795520067214966, 0.2019791603088379, -0.6278102993965149, 1.4392621517181396, -0.6869413256645203, 0.3550947606563568, -0.762820303440094, 0.6400864720344543, -0.5329416990280151, 0.37758785486221313, 0.2256946712732315, 1.0332454442977905, 0.362307071685791, 0.5747786164283752, 0.09257857501506805, 1.0094624757766724, -1.053580403327942, 0.48278629779815674, 0.6327385902404785, -0.5225409269332886, 0.8583354353904724, -0.0007934896275401115, 0.5348697304725647, -0.28222882747650146, 0.1791837513446808, 0.17530180513858795, 0.03306994214653969, 0.8507807850837708, -0.0013055512681603432, 0.1337636262178421, 0.2947595715522766, -1.2108715772628784, 0.5806492567062378, 0.49518728256225586, 0.9122148752212524, 0.19478775560855865, 0.5855432748794556, 0.2113782912492752, -0.33171969652175903, 0.5607782006263733, -0.7849369645118713, 0.4903273284435272, 0.20872117578983307, 0.7338047623634338, -0.5462627410888672, 0.08401001989841461, 1.714412808418274, 0.22780083119869232, 0.010716388002038002, 0.49991971254348755, 0.06827285140752792, -0.7593399286270142, -0.5763429403305054, 0.8159151673316956, -0.16974380612373352, -0.9363662600517273, -0.7740476727485657, -0.4868435859680176, -0.4305419325828552, -0.48724380135536194, 0.2789436876773834, -0.420498251914978, 1.1198170185089111, 0.40797585248947144, 0.0649193599820137, -0.7030882239341736, 0.38031119108200073, -0.5252141952514648, -0.5558071732521057, -0.7697855830192566, -0.8371348977088928, -0.7081188559532166, 0.7726935744285583, 1.6570355892181396, -0.33998528122901917, 0.7729536294937134, 1.0913087129592896, -0.2728719711303711, 0.09392036497592926, -0.25252628326416016, 0.041106536984443665, 0.7120424509048462, 1.0585911273956299, -0.7936335802078247, -0.9221293926239014, 0.027014559134840965, -0.5742104053497314, -0.3446612060070038, -0.159025639295578, -0.4114490747451782, 0.7647839784622192, -0.22347135841846466, 0.7739152908325195, -0.5087864398956299, -0.46332335472106934, 0.5673921704292297, -0.1555006355047226, 0.5098618865013123, -0.00291277258656919, -0.5801079869270325, 0.0894533097743988, 0.2820790708065033, -0.04781423136591911, -0.10214045643806458, -0.4016677439212799, -0.6098678112030029, 0.31679201126098633, -0.9637584090232849, 0.4620279371738434, -0.17343178391456604, 0.7043792605400085, 0.34652769565582275, 0.2306821644306183, 0.16648371517658234, 0.48757341504096985, 0.5839377641677856, -0.36949509382247925, 0.799917995929718, 0.20228832960128784, -1.0012459754943848, 0.5253630876541138, -0.05385981500148773, -0.9039281010627747, 0.5751678347587585, 1.0034316778182983, 0.4800838530063629, 0.2634213864803314, -0.8528563976287842, -0.48636671900749207, -0.39854538440704346, 0.3074810802936554, 0.27258265018463135, -0.49020126461982727, 2.068108320236206, -0.7153941988945007, -0.8875502943992615, -0.8872898817062378, 0.21487484872341156, -0.8867482542991638, 0.30650565028190613, -0.34446534514427185, 0.32042261958122253, -0.5077788233757019, 0.4841030538082123, -0.46541792154312134, -0.6648093461990356, -0.34787213802337646, -0.2908247709274292, -0.15411825478076935, -0.6971225142478943, 0.9233537316322327, -0.9733275175094604, -0.6541680693626404, 0.6052546501159668, -1.2559318542480469, -0.2526837885379791, -0.24301770329475403, -0.7162014245986938, 0.05701020732522011, -0.9559584856033325, 0.7527267336845398, -0.19838207960128784, 0.8687087297439575, -0.9252411723136902, 0.9889011383056641, -0.237166628241539, -0.5310733914375305, 1.3766839504241943, -0.19416776299476624, -0.0779314860701561, 0.7069308757781982, -0.3112272620201111, -0.8537226915359497, 0.5564134120941162, 0.1901538372039795, -0.530671238899231, 0.6134459972381592, 0.30639272928237915, 0.12440348416566849, -0.4128260314464569, 0.3667096495628357, 0.004510114900767803, -0.3966793417930603, -1.1549806594848633, -0.5352473855018616, -1.0287659168243408, -0.05172056332230568, -0.1576703041791916, -1.3835278749465942, 0.8565059900283813, 0.10457388311624527, -0.15814052522182465, 0.10294963419437408, -0.5384092330932617, 0.10971696674823761, 0.6904995441436768, 1.3938385248184204, 0.47258496284484863, 0.16118647158145905, -0.455969899892807, 0.12686321139335632, -1.0244606733322144, 0.5707628726959229, 0.682338535785675, -0.2556244134902954, 0.16030187904834747, 1.5786644220352173, 0.869488537311554, 0.15846841037273407, 0.493533194065094, -0.4720028340816498, -0.06247125193476677, -0.8018210530281067, -0.6380189657211304, 0.38388803601264954, -0.48796460032463074, 0.7516100406646729, -0.04656428098678589, -0.7633256316184998, -0.3073592185974121, -0.008227270096540451, -0.5235620141029358, -0.2833225131034851, -0.16599905490875244, -0.653556764125824, -0.6576089262962341, 0.24689881503582, -0.505079984664917, 0.5099807381629944, 0.47106099128723145, 0.4358310401439667, -0.7793297171592712, -0.28117674589157104, -0.33664214611053467, 0.6723239421844482, -0.21359287202358246, 0.5066220164299011, 0.017376577481627464, -1.7715038061141968, -0.7385351657867432, 0.6225942969322205, 0.9378416538238525, -0.09960315376520157, -0.6016668081283569, 0.019133679568767548, 0.35359880328178406, -0.6898414492607117, 0.045811958611011505, 0.1523696482181549, -0.13814085721969604, -0.03949180990457535, -0.29403865337371826, 0.43977007269859314, 0.596062421798706, -0.7447607517242432, 0.12296821922063828, -0.6657362580299377, 0.5777091383934021, 1.2529090642929077, 0.5012194514274597, 1.218967318534851, 0.08297336846590042, -0.028187543153762817, -0.26488804817199707, -0.6235183477401733, -0.5641897320747375, -0.49088677763938904, -1.257942795753479, -0.5769439935684204, -0.09217863529920578, -0.4869633615016937, -0.6980041265487671, 0.9229900240898132, 0.1970800757408142, 0.23365822434425354, 1.2288153171539307, -0.8838627338409424, -0.6510854959487915, -0.5004246830940247, 0.4031071960926056, -0.8054494261741638, 0.3905586004257202, 1.303396224975586, -0.8836987614631653, -0.281470388174057, 0.08495815843343735, -0.22901910543441772, -0.13699333369731903, 0.7520512342453003, -0.22277535498142242, -0.9901431798934937, -0.9497789144515991, -0.5222926735877991, 1.6405450105667114, -0.48675215244293213, 0.244264155626297, -0.37512558698654175, 0.7507225275039673, -0.05945957079529762, -0.04401259124279022, -0.6010438799858093, 0.33132946491241455, -0.15017728507518768, -0.860112726688385, 0.16184432804584503, 0.5881518721580505, 0.7753109931945801, -0.4585076570510864, 0.023073852062225342, -0.4215788245201111, -0.07882490754127502, -0.0345420204102993, 0.3356077969074249, 0.19226087629795074, 1.084675908088684, -0.5889919996261597, -0.3983779549598694, 0.5955767631530762, 0.01647571101784706, -0.04907279089093208, -1.354291319847107, 0.27254098653793335, 0.9117833375930786, 1.4179835319519043, -0.15263092517852783, -0.2309899628162384, -0.01786552183330059, 0.34311869740486145, 0.09776079654693604, 0.39875033497810364, 1.234438180923462, 0.08050059527158737, -0.3871787488460541, -0.578345775604248, 0.21795110404491425, 0.08401303738355637, -0.6791945695877075, 0.0626227930188179, 0.28843802213668823, -0.7350505590438843, -0.46389734745025635, 0.701327383518219, 0.3999786972999573, -0.36033734679222107, -0.4548895061016083, 0.3847426176071167, 0.32106107473373413, -0.28996074199676514, 0.4040450155735016, -0.876906156539917, 0.188741996884346, -0.06831616163253784, -0.5361198782920837, -0.4212976396083832, 0.13377004861831665, 0.5097289085388184, 0.7142461538314819, -1.0886367559432983, -0.46898776292800903, -0.5359156131744385, 0.596531093120575, 0.4435517191886902, -1.0737265348434448, 0.6623729467391968, -0.13071367144584656, -0.3904396593570709, -0.43182238936424255, 0.20173116028308868, 1.1334257125854492, -0.8153356909751892, -0.46401047706604004, 0.21129947900772095, -0.4494021534919739, -0.06617662310600281, -0.5075027346611023, -0.13293449580669403, 0.08831220120191574, -0.26350486278533936, 0.03281271457672119, 0.04207871854305267, 0.03913242369890213, 1.3061705827713013, 0.6223005652427673, 0.659832775592804, 0.5220588445663452, 0.3366571068763733, -1.1101562976837158, -0.10338606685400009, 0.7786939144134521, -0.2164076417684555, -1.0290133953094482, -0.011912651360034943, 0.3453280031681061, -0.29058974981307983, 0.207534059882164, 0.18814533948898315, 0.5229686498641968, 0.39125677943229675, -0.18104495108127594, 0.001776757650077343, 0.12413008511066437, 0.5725439190864563, 1.448377013206482, 0.5122185945510864, -0.5652239918708801, -1.1568408012390137, 0.2009659856557846, -0.9031093120574951, 0.32416343688964844, 0.6321048736572266, 0.3940335214138031, 1.4180086851119995, -1.1020193099975586, -0.5876950025558472, 0.4530557096004486, 0.7210266590118408, 0.11367104202508926, 0.5112661123275757, -0.6174802184104919, -0.6625370383262634, 1.1699070930480957, 0.8873853087425232, 0.15386328101158142, -0.17614932358264923, 0.15294869244098663, 0.018017485737800598, 0.5156971216201782, -0.7156246304512024, 0.9184337258338928, -0.11291014403104782, -0.3212163746356964, 0.06287313252687454, 0.1180395632982254, 0.36984947323799133, 0.4448559284210205, 0.4230399429798126, 1.449851632118225, -0.6859295964241028, -0.7441350817680359, 0.12712246179580688, -0.7266960144042969, 0.6656122207641602, -0.26601505279541016, -0.19410298764705658, -0.09911781549453735, -0.9316328763961792, -0.45878368616104126, 0.3051290512084961, -0.23345647752285004, -0.2676098346710205, -0.31043148040771484, -0.922606348991394, 0.0011541559360921383, 0.3602994680404663, 0.9645581841468811, 0.293317586183548, -0.1592669039964676, 0.8051292300224304, 0.5513259172439575, -0.8585522174835205, 0.30810192227363586, 0.3071098327636719, -0.19913707673549652, 0.04032045602798462, -1.3502839803695679, -0.4614638686180115, -0.027755143120884895, 0.5674855709075928, 0.07486680895090103, 0.4007592499256134, 0.9469889998435974, 1.227467656135559, -0.12027261406183243, -0.18756745755672455, 0.7881416082382202, -0.6832625865936279, 0.2938081920146942, 0.7856616973876953, -0.5176202058792114, -0.0958779975771904, -1.1213593482971191, -1.469735860824585, 1.0148223638534546, -0.2906418740749359, -0.6683081984519958, 0.9821029901504517, 0.5686379075050354, 0.183048814535141, 0.7816236019134521, -0.24922271072864532, 0.37600383162498474, 0.6964736580848694, -0.7130527496337891, -1.2123641967773438, 0.14491403102874756, 0.3760713040828705, 0.12574748694896698, 0.1175563707947731, 0.27581000328063965, 0.5135581493377686, -0.9877010583877563, 0.24590612947940826, 0.1637285053730011, 0.018844572827219963, 0.9368706345558167, 0.6303209066390991, -0.7758406400680542, 0.2799413502216339, -0.4345111548900604, -0.9799968600273132, -0.2696574926376343, 0.7200864553451538, -0.29990795254707336, -0.13703759014606476, -0.8497818112373352, 0.09550422430038452, -0.09874864667654037, 0.28900521993637085, -0.6379825472831726, 0.9421029090881348, 0.6231908798217773, 0.0048542506992816925, -0.17981241643428802, -0.06309769302606583, -0.4146697521209717, -0.25740939378738403, 0.5428737998008728, 0.2026429921388626, -0.9317506551742554, 0.43833494186401367, 0.20553629100322723, 0.10808364301919937, -0.002782699652016163, -0.13171261548995972, 0.4808514416217804, -1.3637902736663818, -0.9223806858062744, -0.43685171008110046, 0.7182719707489014, 1.3227394819259644, -0.7772480845451355, 0.22131074965000153, 0.7162004113197327, -1.4855564832687378, 0.1002935990691185, 0.2525774836540222, -1.4121803045272827, 0.08528806269168854, -0.9392976760864258, 1.1326531171798706, 0.11466526985168457, 0.5116981267929077, -0.26071155071258545, 0.9033222198486328, -1.555173397064209, -1.3879470825195312, -0.4647885859012604, -0.031743183732032776, 0.8586589097976685, 0.9642615914344788, -0.3955176770687103, 0.7597141265869141, 0.6009649038314819, -0.2052137702703476, -0.3382401466369629, 0.3424065113067627, -0.6029096841812134, 0.3367588520050049, 0.3813924491405487, 0.7042654752731323, -0.022528184577822685, 1.0909782648086548, 0.05787046626210213, 1.1331883668899536, 0.05494026094675064, 1.1740188598632812, -0.6824368834495544, 0.19387204945087433, 0.18170040845870972, 0.39267122745513916, -1.4697223901748657, -1.0226151943206787, -0.38389718532562256, -1.2792630195617676, -0.5932184457778931, 0.6498018503189087, 0.8276950716972351, -0.5168827772140503, -0.12722915410995483, -0.44607144594192505, 0.26794376969337463, -1.2127774953842163, 0.17839600145816803, -0.07160890847444534, 0.2352837324142456, 0.37816014885902405, 0.21294309198856354, -0.18611189723014832, -1.3228319883346558, -0.5573621988296509, 0.3433396518230438, 0.1929270327091217, -0.5663954019546509, 1.0672553777694702, 0.5235937833786011, 0.19965305924415588, -0.5598524212837219, 1.4329150915145874, 1.1024398803710938, -0.5308791995048523, -0.4718465209007263, 0.6876365542411804, 0.3637597858905792, 0.5274492502212524, -0.9828736186027527, -0.8471313714981079, -0.31109899282455444, 1.022303581237793, 0.21639679372310638, 0.22047115862369537, -0.41772156953811646, -0.1631782054901123, 0.2840471863746643, -0.06755571067333221, 0.8288448452949524, -0.6925379037857056, 0.13588517904281616, 1.1015554666519165, 0.06094367802143097, -0.4049447178840637, 0.5533140897750854, 0.6359117031097412, -0.23940400779247284, -0.533444881439209, 0.9281613230705261, 0.3869423270225525, -1.2250869274139404, -0.041538089513778687, 0.22355681657791138, -0.5559988021850586, 0.0018913624808192253, -0.41020047664642334, -1.9455320835113525, -0.1135346069931984, -0.40163713693618774, -1.5292253494262695, -0.025592368096113205, -1.3483076095581055, -0.6889318227767944, 0.923907995223999, -0.5769832134246826, -0.8116152882575989, -0.18391577899456024, 0.4030109643936157, 0.39844247698783875, 0.6193679571151733, 0.8134317994117737, -0.5847507119178772, 0.7682149410247803, 0.3365603983402252, 0.06151743605732918, -0.9144759178161621, -0.28020158410072327, 0.3754218816757202, 0.2509397566318512, -0.49464887380599976, -0.4727519452571869, 0.20773357152938843, 0.21513624489307404, -0.48728764057159424, -0.019815918058156967, -0.40039169788360596, 0.9913003444671631, 0.22109360992908478, 0.3070097863674164, -0.01643386483192444, 0.5002360939979553, 0.7279480695724487, -0.11534847319126129, -0.8062735795974731, -0.7495446801185608, 0.21615147590637207, -0.8478332757949829, 1.0802834033966064, -0.30030882358551025, 0.5260644555091858, 0.5324903130531311, 0.006968694739043713, -0.801292896270752, -0.9057397842407227, 0.3630606532096863, -0.4440251290798187, 0.22634950280189514, -0.2608267068862915, -0.08625400811433792, -0.04956753924489021, -0.7022660374641418, 0.5107126832008362, -0.1535748392343521, -0.7373414039611816, 0.09316281974315643, -1.135910987854004, -0.9069554209709167, -0.7063965797424316, 0.28038373589515686, 1.1553188562393188, 0.3689801096916199, -0.07165682315826416, -0.22921122610569, -1.0891262292861938, -0.042200203984975815, -0.0214866790920496, 0.005715488456189632, 0.055847734212875366, 0.7679404020309448, 1.737564206123352, 0.6953933238983154, 0.19066771864891052, -0.1706135869026184, 0.3886670768260956, -0.21603283286094666, 0.23775379359722137, -0.4968268871307373, -0.11673882603645325, 0.12133656442165375], [0.5640549063682556, 1.1389379501342773, -2.1276042461395264, -0.28609490394592285, 0.7042540311813354, 0.23937225341796875, 0.5447288751602173, 0.09483520686626434, 0.42095813155174255, -0.8950446844100952, -0.008732324466109276, -0.5013962388038635, 1.0367152690887451, 0.7014316320419312, 0.19651001691818237, -0.41618046164512634, 0.07972367107868195, -0.8252811431884766, 0.6594791412353516, 1.4509246349334717, -0.3174809217453003, -0.552151620388031, 0.36655548214912415, 1.059190034866333, -0.03023596853017807, -0.2660433351993561, -1.7543827295303345, -0.80734783411026, -0.7430166602134705, -0.7991920113563538, 0.8646371960639954, -1.3013826608657837, -0.10522414743900299, -0.0029858851339668036, -1.217947006225586, -0.6771913766860962, 1.4195139408111572, 0.3255036175251007, 0.5712358355522156, 0.3084537386894226, 1.1064162254333496, 0.191915363073349, 0.25786247849464417, -1.9242390394210815, 0.7085512280464172, 0.4018876254558563, 0.758240282535553, -0.9586529731750488, 0.09346305578947067, -0.8701497912406921, 0.6644817590713501, -0.7916948795318604, 0.36764487624168396, 0.3617798089981079, 1.7145906686782837, 1.0079848766326904, 0.34938350319862366, 0.5057464241981506, 0.925902247428894, -0.5326868891716003, 0.2717078626155853, 0.3038228452205658, -0.013899065554141998, 0.9121122360229492, 0.506791889667511, -0.052658166736364365, -0.09774459153413773, 1.1686418056488037, 0.5851137638092041, -0.07696890830993652, 0.9304167032241821, -0.4123225212097168, -1.1554771661758423, 1.2113507986068726, -0.9578521251678467, 0.3066241443157196, 0.21491149067878723, 0.40567946434020996, -0.16047273576259613, 0.499931275844574, -0.5562044978141785, -0.46374523639678955, 0.7558009624481201, -0.17138902842998505, 0.9520137906074524, 0.3714205324649811, 0.1772167980670929, -0.26998502016067505, -0.5239136219024658, 1.824265718460083, 0.0630275085568428, 0.22267776727676392, 0.09070952236652374, 0.15772339701652527, -0.13527047634124756, -0.32180336117744446, 0.272391676902771, -0.2999175190925598, -0.5947311520576477, -0.6407411694526672, -0.7660523653030396, -0.5015101432800293, -0.20456819236278534, -1.0835437774658203, 0.4269205629825592, 0.8121801614761353, 0.20323042571544647, -0.18410080671310425, -0.6007434725761414, 0.26475846767425537, -0.11662949621677399, -0.2486260086297989, -0.770673394203186, -1.247866153717041, -0.7814152836799622, 0.24124029278755188, 1.0325977802276611, -0.502795398235321, 0.6971182823181152, 0.3995457887649536, -0.7366854548454285, -0.1467750519514084, 0.338117390871048, 0.29540738463401794, 0.24180342257022858, 0.8180651068687439, 0.09279235452413559, -1.3499428033828735, 0.1820620894432068, -0.5610482692718506, 0.34406334161758423, -0.21862702071666718, 0.5977519154548645, 0.49722304940223694, -0.21133637428283691, 0.5127721428871155, 0.30500510334968567, -1.1743110418319702, 0.42973563075065613, 0.07409746199846268, 0.6788187026977539, -0.10534662008285522, -0.1787770688533783, -0.13104432821273804, -0.4652719795703888, -0.8380548357963562, 0.6150928139686584, 0.100380539894104, -0.6336897611618042, 0.2637259364128113, -0.4294903576374054, -0.09048934280872345, 0.19764617085456848, 0.7781780958175659, -0.015885546803474426, -0.07215406000614166, -0.058031339198350906, 0.6794940233230591, 0.3630271255970001, -0.0789409950375557, 1.1073837280273438, 0.20208221673965454, -0.07987336069345474, 0.8793171048164368, -0.40881261229515076, -0.3564496338367462, -0.22789904475212097, 0.3721354901790619, 0.21808680891990662, -0.06715597212314606, -0.5798251032829285, -0.36359256505966187, -0.5322594046592712, 0.8480453491210938, 0.7369809150695801, -0.6908475756645203, 1.8069837093353271, -1.1968982219696045, -1.2166571617126465, -1.2070304155349731, -0.2979305684566498, -0.6063947081565857, 0.29027923941612244, -0.1715508997440338, 0.7358249425888062, -0.2719154357910156, 0.34528395533561707, -0.02139504998922348, -0.5195942521095276, -0.9975832104682922, -0.1446697860956192, 0.5454510450363159, -1.0687214136123657, 0.3338444232940674, -0.5732674598693848, -1.2536462545394897, 0.13876639306545258, -0.573771595954895, -0.5286414623260498, -0.3325536549091339, -0.32258033752441406, 0.1674504429101944, -1.1719298362731934, -0.0643853172659874, -0.28626760840415955, 1.1143090724945068, -1.2757166624069214, 1.1547236442565918, -0.7624929547309875, 0.33137357234954834, 1.5357167720794678, -0.10492290556430817, -1.1684726476669312, 1.059543251991272, -0.22308462858200073, -1.749906063079834, 0.615737795829773, 0.5285334587097168, -0.5810425877571106, 0.23764827847480774, 0.3992873430252075, 0.379120409488678, -0.09261268377304077, -0.23319083452224731, 0.3123742341995239, -0.7636294960975647, -0.45575740933418274, -0.9711589217185974, -0.6669912338256836, 0.4635580778121948, -0.4792138934135437, -1.5333235263824463, 1.0751148462295532, 0.2711871564388275, -1.1987022161483765, 0.6232507228851318, 0.09339794516563416, 0.47966548800468445, 0.26687127351760864, 1.3949511051177979, 0.3269234597682953, 0.23022010922431946, 0.1892411708831787, -0.31038111448287964, -1.1727752685546875, 0.2469344139099121, 1.0998913049697876, -0.5578466653823853, 0.4605313241481781, 0.5895100235939026, 0.7419750690460205, -0.12839893996715546, 0.2832680344581604, -0.0169671680778265, 0.00803949125111103, -0.16067682206630707, -0.3284073770046234, 1.1142407655715942, -0.5807023048400879, 1.1518288850784302, 0.3034060001373291, -0.8183757662773132, -0.5154639482498169, -0.19926586747169495, 0.5990626811981201, -0.7439359426498413, -1.3956574201583862, -0.11370494216680527, 0.16552172601222992, 0.08968523144721985, -0.5472049713134766, 0.9712827801704407, -0.420946329832077, 0.7110676765441895, -0.6768267750740051, -0.4614501893520355, -0.4448243975639343, 0.3382222652435303, -0.14983788132667542, 1.2447229623794556, -0.22927486896514893, -0.9612022042274475, -0.860357403755188, -0.1635691523551941, 0.21914927661418915, 0.17780669033527374, 0.26030048727989197, 0.22534526884555817, -0.3938039541244507, -0.10431239753961563, -0.09946396946907043, 0.030660925433039665, 0.026269514113664627, -0.6409268975257874, -0.043085962533950806, 1.134766936302185, 1.2793755531311035, -1.1140832901000977, -1.3334851264953613, -0.20412388443946838, 0.7968428730964661, 1.1119087934494019, 1.2181681394577026, 1.562622308731079, 0.19995343685150146, 0.7827876210212708, -0.30084487795829773, 0.23283426463603973, 0.0395902581512928, -0.7458412051200867, -0.5524143576622009, -0.45169612765312195, -0.22844403982162476, -0.028919382020831108, -0.407141774892807, 0.9319432377815247, 0.19927403330802917, 0.5459940433502197, 1.261197805404663, 0.42044058442115784, -1.2463055849075317, -0.3552084267139435, -0.34525129199028015, -0.64422607421875, 0.2865912914276123, 0.7260857820510864, -0.7092703580856323, -0.5000350475311279, -0.6307355165481567, 0.016390454024076462, 0.8992164134979248, 0.33433645963668823, -0.24537643790245056, -1.0835314989089966, -0.9816073179244995, -0.3640778660774231, 0.4072050154209137, -0.7207036018371582, 0.823469877243042, -0.2541351020336151, 0.9177435040473938, 0.3615871071815491, 0.23928125202655792, -0.6245490312576294, 1.0741578340530396, 0.1779487282037735, -0.8816838264465332, 0.5498883724212646, 0.43431907892227173, 1.2272131443023682, -0.44579359889030457, 0.1391201615333557, -0.32340362668037415, 0.18800145387649536, -0.5213172435760498, 0.6888860464096069, -0.07691295444965363, 1.0518490076065063, -0.16740986704826355, 0.2412949502468109, 0.9820985198020935, -0.5748986601829529, 0.03451740741729736, -1.5884352922439575, 0.7799105048179626, 0.3771542012691498, 0.7303506135940552, 0.09238190203905106, -0.39330023527145386, 0.18656672537326813, -0.6762600541114807, -0.13868685066699982, 0.21363139152526855, 0.8019233345985413, 0.5359527468681335, -0.07263558357954025, -0.07000011950731277, 0.5295908451080322, -1.1458337306976318, -0.6651559472084045, -0.14307084679603577, -0.40451768040657043, -1.451661467552185, -0.6165189743041992, 0.6976678967475891, 0.3353031575679779, -0.588448703289032, -0.48546189069747925, 0.3275916576385498, 0.8626909255981445, 0.49362069368362427, 0.11726102977991104, -0.9491744637489319, -0.46072089672088623, -0.010239135473966599, -0.9553648829460144, -0.1873084008693695, 0.06658229231834412, 0.20638807117938995, 0.10805513709783554, -1.0612612962722778, -0.3462061285972595, -0.17694169282913208, 0.5270137190818787, 0.9108430743217468, -0.05549505725502968, 0.7369107007980347, -0.14136618375778198, 0.10547958314418793, -0.12849007546901703, 0.31869369745254517, 1.702864646911621, -0.7293291091918945, 0.2697809338569641, 0.10905184596776962, -0.4496775269508362, 0.13807646930217743, -0.6462560296058655, -0.20804502069950104, 0.8397461771965027, -0.046752382069826126, 0.30469372868537903, 0.1588706225156784, 0.5170449614524841, 1.6687101125717163, 0.5459677577018738, 0.08221578598022461, 0.6517168879508972, -0.2097797393798828, -1.3502774238586426, 0.24123820662498474, -0.238305002450943, 0.052020907402038574, -0.6403497457504272, 0.11292216926813126, 0.20520111918449402, -0.0855523943901062, 0.707481861114502, 0.8054742813110352, 1.565783977508545, 0.5245651602745056, 0.20588940382003784, -0.15609440207481384, 0.25496572256088257, 1.061790943145752, 1.3934121131896973, 0.6758409738540649, -0.21542921662330627, -1.2788290977478027, 0.9644216895103455, -0.37416166067123413, 0.44345226883888245, 0.7485635876655579, -0.030895447358489037, 1.3874949216842651, -1.2276884317398071, -0.8997879028320312, 0.5298644304275513, -0.1680229753255844, 0.3184354603290558, 0.6190379858016968, 0.32501259446144104, -0.8012784123420715, 0.8898330330848694, 0.33825692534446716, 0.2638460397720337, 0.19745735824108124, 0.028104785829782486, -0.49510443210601807, 0.3437515199184418, 0.18220199644565582, 0.5057740807533264, -0.5735883712768555, 1.1307705640792847, -0.6944475173950195, -0.3854181170463562, 0.5745425224304199, 0.1708909571170807, 0.021698346361517906, 1.232267141342163, -0.4329889118671417, -1.3895694017410278, -0.13856150209903717, -0.6236681938171387, 0.6721748113632202, -0.28257980942726135, -0.2495448738336563, -0.19761395454406738, -1.2857089042663574, -0.3112446069717407, 0.9475558996200562, 0.705146312713623, -0.7027922868728638, -0.35876601934432983, -0.5430841445922852, 0.08700808137655258, -0.06918947398662567, 0.2994900345802307, -0.4473317265510559, 0.7672997117042542, -0.01083772350102663, -0.29423603415489197, -1.042965054512024, -0.0130357276648283, 0.656170666217804, -0.5229264497756958, 0.3957027196884155, -1.2273427248001099, -0.698582649230957, 0.2630215585231781, 0.05057171732187271, 0.0579543262720108, 0.4276205003261566, 0.9894260764122009, 1.2518631219863892, -0.2744380831718445, 0.07263319194316864, -0.32112953066825867, -0.9306186437606812, 0.3148508071899414, 0.6176234483718872, -0.7817451357841492, -0.6917173266410828, -0.8424502611160278, -1.724799633026123, 0.8048966526985168, 0.14703626930713654, -0.71266770362854, 1.3564051389694214, 0.736945629119873, 0.7612602114677429, 0.4876667261123657, -0.2460104376077652, 0.4784672260284424, -0.09891901165246964, -0.5030978918075562, -1.7615172863006592, -0.01653481088578701, -0.03781250864267349, -0.47746914625167847, -0.3335821330547333, 0.873856782913208, -0.08937584608793259, -0.2434173822402954, 0.02102820575237274, 0.8753812909126282, 0.046080563217401505, 0.7223654389381409, 0.17991890013217926, -0.561008632183075, 0.25585949420928955, -1.281783938407898, -0.6316245794296265, -0.5609804391860962, 0.3367159962654114, 0.31344062089920044, -1.1463874578475952, -0.040137842297554016, -0.1163197010755539, -0.40742188692092896, 0.29363012313842773, 0.1644590049982071, 0.8685909509658813, 0.19751591980457306, -0.32713180780410767, 0.20211422443389893, -0.3252732753753662, -0.29839950799942017, -0.8264963030815125, 0.11110077053308487, 0.5476585626602173, -1.4433510303497314, -0.5613096356391907, -0.032321490347385406, -0.62651127576828, -0.3641144931316376, -0.23676855862140656, 1.1235853433609009, -1.7058076858520508, -0.9049308896064758, -1.0159904956817627, -0.1289254128932953, 0.9957767724990845, -0.4705648720264435, 0.033419232815504074, -0.04550132527947426, -1.5073744058609009, 0.49957817792892456, -0.32205522060394287, -0.6588181853294373, -0.35998329520225525, -0.9648492336273193, 0.5360491871833801, -0.2456725686788559, 0.6258057951927185, -0.20433060824871063, 0.2734263837337494, -1.4868781566619873, -0.4018639624118805, -0.844677209854126, -0.26238158345222473, 1.1360870599746704, 0.44842010736465454, -0.830324649810791, 0.9056949019432068, 0.5451023578643799, -0.5235938429832458, 0.10178583115339279, 0.004403119441121817, 0.16920967400074005, -0.05905511975288391, 0.10172394663095474, 0.8704068064689636, -0.12687309086322784, 0.6473485827445984, 0.279020756483078, 0.3073939383029938, 0.5770611763000488, 0.6854516267776489, -0.35213884711265564, -0.13528946042060852, -0.4563407301902771, 0.944629430770874, -0.05572178587317467, -0.43032506108283997, -0.2714194357395172, -1.2743408679962158, -0.1665402054786682, 0.5651741027832031, 0.5895186066627502, -0.9368277192115784, -0.6154527068138123, -1.1898235082626343, 0.4374379813671112, -0.9082769155502319, 0.6246434450149536, 0.16620732843875885, -0.27100369334220886, 0.2331567108631134, -0.6952164769172668, -0.35147330164909363, -0.9720520377159119, 0.6611205339431763, 0.1713031530380249, -0.14268095791339874, -0.5461145043373108, 0.7415618896484375, -0.06875332444906235, -0.2664482295513153, -0.8703768849372864, 1.4000375270843506, 1.2995493412017822, -0.04342708736658096, 0.2998966872692108, 0.6360589265823364, -0.18005172908306122, 0.7969442009925842, -0.15212538838386536, -0.1999533325433731, -1.1870530843734741, 0.7014533877372742, 0.1495954543352127, 0.33061307668685913, 0.15610237419605255, 0.23976221680641174, -0.15381751954555511, 0.9255397915840149, 0.4536910951137543, -0.5888123512268066, 0.21890389919281006, 1.5239335298538208, 0.16455088555812836, 0.37122732400894165, 0.3184797763824463, 0.3254076838493347, 0.17844636738300323, -0.3269520103931427, 0.5291001796722412, 0.7693418860435486, -0.6364296674728394, 0.15673606097698212, -0.4471232295036316, -0.05905071273446083, -0.09068302810192108, -0.42788857221603394, -0.7468878626823425, 0.2463064044713974, -0.35005009174346924, -0.5932300090789795, -0.2190558761358261, -1.0374261140823364, -0.6604681015014648, 1.2800627946853638, -0.03453837335109711, 0.05753348022699356, -0.1751432716846466, 0.7924416661262512, -0.23230570554733276, -0.04516051337122917, 0.43631359934806824, 0.5308893322944641, 0.6182438135147095, 0.033591996878385544, 0.2512131929397583, -0.6637240052223206, -0.6457126140594482, 0.9832062721252441, -0.4323331117630005, -0.3703102469444275, 0.018931254744529724, 0.0022266125306487083, 0.3323742747306824, -0.7233185768127441, 0.565779447555542, -0.8147261142730713, -0.04963071644306183, -0.112190380692482, -1.0287188291549683, -0.37513795495033264, 0.7691766619682312, 1.1319133043289185, -0.24159568548202515, -0.8341712951660156, -0.747597336769104, 0.5960729122161865, -0.4027591645717621, 1.0302419662475586, 0.02464800328016281, 0.39537420868873596, 0.1974422186613083, -0.40038830041885376, 0.10312217473983765, -0.5862013101577759, 0.09848096966743469, -0.8452849388122559, 0.2744300067424774, -0.28719186782836914, -0.11056805402040482, 0.03991828113794327, -0.5174254179000854, 0.6071034073829651, -0.2748623192310333, 0.5112064480781555, 0.4026111960411072, -0.8034508228302002, -1.7991091012954712, -0.7518576979637146, 1.0551486015319824, 0.6638131737709045, 0.3379274606704712, -0.037424664944410324, 0.4193214178085327, -1.6702888011932373, -0.1961909830570221, 0.6873430013656616, 0.4814033508300781, -0.3711467981338501, 1.6159858703613281, 2.178252935409546, 0.3183189630508423, 0.3826313018798828, -0.044810548424720764, 0.7177100777626038, -1.2938569784164429, -1.1915323734283447, -0.4543825387954712, -0.03690146282315254, 0.5000806450843811], [0.5258632302284241, 1.1797676086425781, -1.8954617977142334, -0.20279604196548462, 0.5846714973449707, 0.7930235266685486, 0.7613068222999573, -0.32283586263656616, 0.5422583818435669, -1.0024559497833252, -0.5694453120231628, 0.15516401827335358, 0.043933477252721786, 0.5544344186782837, 0.09844835102558136, 0.49582818150520325, 0.44066882133483887, -0.981569230556488, 0.25941595435142517, 1.887636423110962, -0.033591195940971375, -0.7292613983154297, 0.27255451679229736, 0.5378667116165161, -0.19787754118442535, 0.025327876210212708, -1.689652442932129, -0.5507392883300781, -1.37882399559021, -0.28261542320251465, 1.1104516983032227, -1.3556758165359497, -0.6590588092803955, 0.28876227140426636, -1.5593128204345703, -0.2093406617641449, 1.6428735256195068, 0.2772756516933441, 0.9828801155090332, 0.29313763976097107, 2.102295160293579, 0.043463084846735, 0.2790156900882721, -1.798531174659729, 0.07938718795776367, 0.13375066220760345, 0.9619128704071045, -0.7215420007705688, 0.07560330629348755, -0.781715989112854, 0.10547878593206406, -0.5768729448318481, 1.4883164167404175, 0.5393966436386108, 1.85098397731781, 0.41876253485679626, 0.30896317958831787, 0.7496609687805176, 0.7335941791534424, -0.4514384865760803, 0.2829569876194, 0.05267520248889923, -0.6707361340522766, 1.3926587104797363, 0.26610618829727173, -0.26074346899986267, -0.04059337452054024, 0.8573951125144958, 0.2885522246360779, -0.27347326278686523, 0.9614622592926025, 0.09466255456209183, -0.9582549333572388, 0.36985015869140625, -1.3675694465637207, 0.7985801696777344, 0.3116655945777893, 0.9043565988540649, 0.06242075562477112, 0.20714472234249115, -0.1782890409231186, -0.2999371886253357, 0.6427500247955322, -0.3808724284172058, 0.352582722902298, -0.17427054047584534, 1.25246000289917, -0.4431810975074768, -0.09658131003379822, 1.196813941001892, 0.7725694179534912, 0.4650694727897644, -0.10032029449939728, -0.4993332028388977, -0.35511070489883423, -0.9104455709457397, 0.1796751171350479, -1.0358734130859375, -0.5605553388595581, -0.8350523710250854, -0.6391699314117432, -0.6715978384017944, -0.39128488302230835, -0.13677674531936646, 0.0058260951191186905, 1.2010424137115479, -0.056943874806165695, 0.5417172312736511, -0.5889672636985779, 0.4479035437107086, -0.31844520568847656, 0.44842636585235596, -1.0220117568969727, -1.3768610954284668, -1.244816780090332, 0.45746245980262756, 1.1524746417999268, -0.18939179182052612, 0.5278292298316956, 0.792593777179718, -0.6245083808898926, -0.07304771989583969, -0.4398820102214813, 0.0990012139081955, 0.7600480914115906, 0.6757206916809082, 0.15397298336029053, -1.0693806409835815, 0.9449202418327332, 0.03555652126669884, 0.37102827429771423, -0.474181592464447, 0.4216976761817932, 0.410970002412796, -0.6735045313835144, 0.7626746892929077, 0.564663827419281, -0.5300775766372681, -0.0379561111330986, 0.238589346408844, 0.8659197092056274, 0.006303738337010145, 0.10344202816486359, -0.7991798520088196, -0.41851842403411865, -0.6058555245399475, 0.6343303918838501, -0.3954184651374817, -0.6638665795326233, 0.28133484721183777, -0.7326763272285461, 0.2658167779445648, 0.09723199158906937, 0.48763179779052734, 0.46048927307128906, -0.08354906737804413, -0.3351120352745056, 0.20332756638526917, 0.2601644694805145, -0.4563559293746948, 0.4019661545753479, -0.10030820965766907, -0.4519898295402527, 0.9020575284957886, 0.5186232328414917, -0.09233000874519348, -0.04156133905053139, 0.508283257484436, -0.3433170020580292, 0.5635212063789368, -0.4852736294269562, -0.07720508426427841, -0.5477713346481323, 0.7878802418708801, 0.8166005611419678, -0.21353092789649963, 1.6906611919403076, -1.1296966075897217, -0.38054531812667847, -0.9763355255126953, -0.013354100286960602, -0.20353123545646667, 0.26594194769859314, -0.02541152387857437, 0.5384976863861084, -0.742713212966919, 0.6790944337844849, 0.08231118321418762, -0.725896954536438, -0.778377890586853, -0.39829063415527344, 0.11287370324134827, -1.4639296531677246, 0.35496675968170166, -0.16429713368415833, -1.0113085508346558, 0.4947710633277893, -0.17200148105621338, -0.39536339044570923, 0.10973075777292252, -0.46911585330963135, -0.3219768702983856, -0.30266815423965454, 0.3437604308128357, -0.1165708675980568, 0.41673704981803894, -0.8248962163925171, 0.6165279746055603, -0.562088668346405, 0.033230602741241455, 1.3853524923324585, 0.06293415278196335, -0.8134732246398926, 0.879584789276123, -0.15078850090503693, -1.9722174406051636, 0.39320772886276245, 0.24324773252010345, -0.5028321743011475, -0.05199447274208069, 0.44563910365104675, 0.9139267206192017, 0.30257219076156616, 0.2578010559082031, 0.7582540512084961, -0.5243353247642517, -0.4348679482936859, -0.6972733736038208, -0.8499345779418945, 0.2182648926973343, -0.4289475381374359, -1.047629714012146, 1.3140498399734497, 0.3781466782093048, -0.7332754135131836, -0.20329271256923676, 0.26128602027893066, -0.2621519863605499, -0.24382628500461578, 0.8392142653465271, 0.3128061890602112, 0.9348173141479492, -0.09278374910354614, -0.17826582491397858, -0.5615416765213013, 0.4059678912162781, 1.7012450695037842, -0.3655305504798889, 0.04929683357477188, 0.8777757883071899, 1.256471037864685, 0.12592343986034393, 0.20188263058662415, -0.023752450942993164, -0.40930506587028503, -0.8240026235580444, -1.092099905014038, 0.4895473122596741, -0.5200703144073486, 0.8023331165313721, 0.48325347900390625, -0.9464108347892761, -0.687434196472168, 0.24640244245529175, 0.549197793006897, -0.39259904623031616, -1.0516927242279053, -1.1102468967437744, -0.04047323018312454, 0.11329828202724457, -0.34390926361083984, 0.8204828500747681, -0.13280001282691956, 0.7462015151977539, -0.3991566300392151, -0.5533972978591919, -0.7606266140937805, 0.8653806447982788, -0.2996324300765991, 0.8890119791030884, -0.10673370212316513, -0.8957263231277466, -0.6829695701599121, -0.03166613727807999, 0.695118248462677, 0.23740500211715698, -0.10376804322004318, -0.3563973307609558, -0.0357220433652401, -0.4333670139312744, 0.1705125868320465, 0.06318799406290054, -0.1379951387643814, 0.15372306108474731, 0.6557937860488892, 0.5649990439414978, 1.357537865638733, -1.0952658653259277, -1.3588142395019531, -0.0850084200501442, 0.7911524772644043, 1.1080375909805298, 1.0818095207214355, 1.0916366577148438, -0.35205814242362976, -0.5219570398330688, -0.2424488067626953, -1.1402195692062378, -0.1492598056793213, -0.9213943481445312, -0.39349985122680664, -1.3232848644256592, -0.44458943605422974, -0.24013406038284302, -0.4281501770019531, 1.3734991550445557, 0.3099727928638458, 0.4044957756996155, 1.370311975479126, 0.38588014245033264, -1.2236316204071045, -0.6582884788513184, -0.19058628380298615, -0.8502135276794434, 0.4590931534767151, 1.1040546894073486, -1.433539867401123, -0.8760901689529419, -0.7306081652641296, 0.14244578778743744, 1.0757737159729004, 0.16671201586723328, -0.3430446684360504, -0.8597505688667297, -0.6922675967216492, -0.03207722306251526, 0.4373131990432739, 0.2539646625518799, 0.28571659326553345, -0.7297573685646057, 0.05402761697769165, 0.9093712568283081, 0.2840036451816559, -1.0307108163833618, 0.8797140121459961, -0.002699524164199829, -0.8580693602561951, -0.2545345723628998, 0.03766978532075882, 0.8068615794181824, -0.5129057168960571, -0.3039535880088806, -0.4214017689228058, -0.44213032722473145, -1.2515217065811157, 0.640505313873291, -0.36527353525161743, 0.975848913192749, -0.25383150577545166, 0.2779221832752228, 0.9788950681686401, -0.5808491706848145, -0.023431502282619476, -1.1793791055679321, 0.6679298877716064, 1.336423397064209, 0.5685094594955444, -0.5106172561645508, -0.08393219858407974, 1.0486396551132202, -0.6491580605506897, 0.21081851422786713, 0.6649914979934692, 1.0443835258483887, 0.35215920209884644, -0.06314554065465927, -0.07313553243875504, 0.17127351462841034, -0.28224262595176697, -0.9531462788581848, 0.4539901614189148, -0.5855610370635986, -1.6663463115692139, -0.9436658620834351, 1.1686437129974365, 0.31851106882095337, -0.12512746453285217, -0.8916422724723816, 0.18592612445354462, 0.8953322172164917, 0.010640215128660202, 0.8400835990905762, -0.8956087827682495, -0.17448759078979492, 0.2038612961769104, -0.7992246150970459, -1.0371562242507935, 0.4719986319541931, 0.12986385822296143, 0.6025600433349609, -0.6586219072341919, 0.09979315102100372, -0.3085489571094513, 0.7101190090179443, 0.8052381277084351, -0.04359372705221176, 0.5036664605140686, -0.029554050415754318, 0.008896454237401485, -0.6397498250007629, 0.42613911628723145, 1.8818870782852173, -0.33566588163375854, -0.006453223526477814, -0.4515444040298462, -0.3774089217185974, -0.15257528424263, 0.043758489191532135, -0.11754539608955383, -0.013049422763288021, -0.6188610792160034, -0.04007893055677414, 0.48041123151779175, 0.25070565938949585, 1.9686431884765625, 0.36432284116744995, 0.5669530630111694, 0.4184878468513489, -0.3776991069316864, -0.9234009981155396, -0.0987279862165451, 0.08660208433866501, -0.31287848949432373, -1.4896323680877686, -0.18607407808303833, 0.37462082505226135, 0.6360616087913513, 0.4092850089073181, 0.06305604428052902, 0.9573222994804382, -0.16263236105442047, -0.040086157619953156, -0.278652548789978, 0.6462686061859131, 0.8368521928787231, 1.0501513481140137, 0.4439437985420227, -0.9803990125656128, -0.6062799096107483, 0.8692620992660522, 0.10923196375370026, 0.3900992274284363, 0.7216216921806335, -0.09285667538642883, 0.5862029790878296, -2.1661837100982666, -0.8553035855293274, 0.03756321221590042, -0.01319928839802742, 0.6905713081359863, 0.15103361010551453, -0.3930100202560425, -0.7197095155715942, 0.4164871871471405, -0.3866264820098877, 0.009959869086742401, 0.8580410480499268, 0.24445505440235138, 0.11891372501850128, 0.48264870047569275, 0.06845768541097641, -0.05218120664358139, -0.7678247690200806, 0.544030487537384, -0.8386354446411133, -0.03066171333193779, 0.5610957145690918, -0.27602896094322205, -0.05548649653792381, 1.0730342864990234, -0.04384908080101013, -0.9174609184265137, 0.4915114641189575, -0.403134822845459, 0.5471709370613098, -0.20917882025241852, -0.9570545554161072, -0.17790168523788452, -0.10095246136188507, 0.045245639979839325, 0.49196189641952515, 0.07288578152656555, -0.5112155079841614, -1.275585651397705, -0.977878212928772, 0.3239629566669464, 1.0734515190124512, 1.2177205085754395, -0.41150951385498047, 0.5450605750083923, -0.21180149912834167, 1.1718826293945312, -0.7515227794647217, -0.318092942237854, -0.03480099141597748, -0.3431265950202942, 0.16249369084835052, -1.5999631881713867, -0.6508898735046387, 0.15287606418132782, 0.6488772630691528, 0.47012293338775635, 0.3776452839374542, 0.6866762638092041, 0.8312356472015381, -0.2534978985786438, -0.22516097128391266, 0.7782695293426514, -0.8750864267349243, 0.08724963665008545, 0.8609414100646973, -0.31370997428894043, -0.8155431747436523, -0.5568459033966064, -1.485923409461975, 0.995163083076477, -0.4737277328968048, -1.6026334762573242, 0.9083026647567749, 0.3223283290863037, 0.33891773223876953, 0.3620975613594055, -0.20469681918621063, 0.3041910231113434, -0.030368167906999588, -0.5969842672348022, -1.8991671800613403, 0.5888111591339111, 0.07057859748601913, -0.717979907989502, -0.09786292165517807, 1.1155428886413574, -0.3581668734550476, -0.4304344654083252, -0.355582058429718, 0.9462807178497314, 0.24415206909179688, 1.1232423782348633, 0.6441361904144287, -0.9188955426216125, 0.151129350066185, -1.0613677501678467, -0.7757796049118042, -0.3597713112831116, 0.7813172936439514, 0.11156738549470901, -0.4937247633934021, -0.4773281216621399, -0.30199700593948364, -0.5710226893424988, 0.03147822245955467, -0.26152873039245605, 1.2449424266815186, 0.4141782522201538, 0.08560070395469666, 0.46271395683288574, -0.03184249997138977, -0.7317608594894409, -0.6494009494781494, -0.15990105271339417, 0.7266854047775269, -1.2308077812194824, -0.1737106442451477, 0.13071441650390625, -0.8480136394500732, -0.3983079791069031, -0.8133889436721802, 0.6987190246582031, -1.3021445274353027, -0.8932301998138428, -0.7546367645263672, 0.003818245604634285, 1.4753971099853516, -0.2122322916984558, 0.6968417167663574, 0.37717992067337036, -1.6047487258911133, 0.8158921003341675, -0.3842020630836487, -1.0813778638839722, -0.11137033998966217, -0.8744145631790161, 0.23753774166107178, 0.13556896150112152, 0.6544238328933716, -0.04135698825120926, 1.4905787706375122, -1.8587874174118042, -0.9007517099380493, -0.9441027641296387, -0.24396400153636932, 0.9722293615341187, 0.7631608247756958, -0.9314415454864502, 1.403490662574768, 0.6124762296676636, -0.4154563248157501, 0.18272826075553894, 0.2006281614303589, -0.5804903507232666, -0.08667203038930893, -0.02322062849998474, 0.6074211597442627, 0.44791534543037415, 1.2310813665390015, 0.7523483037948608, 0.6190113425254822, 0.15615099668502808, 0.15530166029930115, 0.19566386938095093, -0.3221924304962158, -0.08878667652606964, 0.7102275490760803, -0.6343337893486023, -0.6590478420257568, -0.3550434708595276, -0.4574182629585266, -0.901344895362854, 0.7847247123718262, 0.7156475186347961, -1.2228007316589355, -0.045980699360370636, -0.9290323257446289, 0.21501848101615906, -0.7595945596694946, 0.7113049626350403, -0.24159622192382812, 0.7933288216590881, 0.15258751809597015, -0.42978137731552124, 0.5925967693328857, -1.0073370933532715, -0.28691738843917847, 0.5734651684761047, -0.040806885808706284, -0.45883601903915405, 0.512488842010498, 0.47857317328453064, 0.31855201721191406, -1.150072455406189, 1.5261645317077637, 1.380035638809204, -0.09426994621753693, 0.7483645081520081, 0.8045800924301147, -0.14136023819446564, 0.5256736874580383, -0.2658019959926605, -0.33940666913986206, -0.304176390171051, -0.06714016199111938, 0.9903637170791626, 0.7330495715141296, -0.7498666048049927, 0.09072305262088776, -0.36047834157943726, 1.0848990678787231, 1.0642706155776978, -0.6598135232925415, -0.16099384427070618, 0.670750617980957, -0.6074486970901489, 0.28569507598876953, 0.1987873613834381, 0.6051336526870728, 0.3755161762237549, -0.4161669909954071, 0.4457824230194092, 0.2077331393957138, -0.644412636756897, 0.968241274356842, 0.24595829844474792, 0.544776439666748, -0.06144434213638306, -0.33230212330818176, -1.0353655815124512, 0.43321549892425537, -0.9766801595687866, -0.7204427719116211, 0.8687200546264648, -1.8477685451507568, -1.1120378971099854, 0.6267890930175781, 0.5401425957679749, -0.994408130645752, -0.4649863541126251, 0.6498884558677673, -0.1137705072760582, 0.1504022479057312, 1.0487022399902344, -0.18057772517204285, 1.1081181764602661, 0.6400598883628845, -0.05060093104839325, -0.5378751754760742, -0.7475904822349548, 0.23012098670005798, -0.1796731948852539, -0.5093657374382019, 0.20891112089157104, 0.1175280436873436, -0.28726473450660706, -0.5145165324211121, 0.43148064613342285, -0.2543734312057495, -0.03349435329437256, 0.03942296653985977, -1.3528488874435425, -0.43725186586380005, 0.19301098585128784, 0.6741296648979187, -0.6517406702041626, -0.586808443069458, -1.1417121887207031, 0.707994818687439, -0.39386460185050964, 1.5359508991241455, 0.6427711248397827, 0.27056893706321716, 0.12605777382850647, -0.33216971158981323, -0.5302470922470093, -0.6883605718612671, 0.34189462661743164, -0.3145742118358612, 0.932629406452179, 0.21749413013458252, -0.19593755900859833, 0.29518643021583557, -1.2176368236541748, 1.0400023460388184, 0.15257158875465393, -0.24504664540290833, 0.03016090765595436, -0.8915032148361206, -1.2858576774597168, -0.830207109451294, 0.8615857362747192, 1.1013189554214478, 0.35542625188827515, 0.18423809111118317, -0.09903024137020111, -1.3338723182678223, -0.2019055187702179, 0.4360138773918152, 0.12858620285987854, -0.3511219322681427, 1.1756978034973145, 1.5151833295822144, -0.005260765552520752, 0.6898185014724731, -0.09015871584415436, 0.4074516296386719, -1.015485405921936, -0.20388926565647125, 0.2651783227920532, -0.10671534389257431, 0.14043910801410675], [-0.05834423750638962, 1.4030567407608032, -2.1457343101501465, -0.8305323719978333, 1.1332224607467651, -0.11222120374441147, 1.3141006231307983, -0.1624993532896042, 0.1373901069164276, -0.8220735788345337, 0.3131319582462311, -0.14783696830272675, 1.0983092784881592, 0.9908750057220459, 0.17807240784168243, 0.6449163556098938, 0.0972948968410492, -0.9162625670433044, 0.3212772309780121, 1.1492458581924438, 0.031024876981973648, -0.43453922867774963, -0.38937416672706604, 0.08763787895441055, -0.7058014869689941, 0.35716450214385986, -0.930901288986206, -0.12646721303462982, -1.6695878505706787, 0.045231182128190994, 1.0999441146850586, -2.0699479579925537, -0.6766623854637146, 0.37089136242866516, -2.249892234802246, -0.9705498814582825, 1.4916234016418457, 0.42410412430763245, -0.21991093456745148, -0.38877230882644653, 2.1969711780548096, -0.10935699194669724, 0.024740464985370636, -1.2356797456741333, 0.9379743933677673, -0.44691991806030273, 1.3496992588043213, -1.2873486280441284, -0.26932623982429504, -0.5141963958740234, 0.00018590129911899567, -0.33523988723754883, 0.6014680862426758, 0.6782354116439819, 1.1381702423095703, 0.24024204909801483, 1.1241352558135986, 0.11517783999443054, 1.0091100931167603, 0.2960878610610962, 0.5170935988426208, 0.426037460565567, -0.32116350531578064, 1.059327244758606, 0.5061865448951721, 0.5854440331459045, -0.9289119243621826, 0.7973567247390747, -0.5394164323806763, -0.9423935413360596, 1.3676868677139282, -0.32172760367393494, -0.5277689695358276, 0.1074669137597084, -1.149283528327942, 0.304473876953125, 0.7140419483184814, 0.49689528346061707, 0.40541043877601624, 0.27609676122665405, -0.6433628797531128, 0.15319649875164032, 1.26754629611969, -0.5642939209938049, 0.8113132119178772, 0.012103043496608734, 0.7710831165313721, -0.09062431007623672, -0.6599618792533875, 1.284255862236023, 0.21160565316677094, 0.3788922429084778, 0.512221097946167, -0.06132009997963905, -0.1781361997127533, -0.6159057021141052, 0.2926461100578308, -0.5170584321022034, -0.5822202563285828, -0.7979786992073059, -1.3117011785507202, -0.7744312286376953, 0.20234549045562744, -0.03492413088679314, 0.28178104758262634, 1.4168318510055542, -0.1632688194513321, -0.32785844802856445, -0.2894395887851715, 0.7571595907211304, -0.2220185548067093, -0.22132565081119537, -1.0019534826278687, -0.7290068864822388, -0.715481698513031, 1.0300626754760742, 1.613893747329712, -0.6407291889190674, 1.6873656511306763, 0.8002904653549194, -0.5891845226287842, 0.4602260887622833, 0.1488226056098938, -0.08466009050607681, 0.39335885643959045, 0.2930377125740051, -0.21317178010940552, -1.3011178970336914, 0.6430854797363281, -0.16019977629184723, 0.094886913895607, -0.6723697781562805, 0.014865310862660408, 1.3880882263183594, -0.36155515909194946, 1.078591227531433, 0.24957112967967987, -0.877975583076477, -0.3358475863933563, 0.08385276049375534, 0.7065910696983337, -0.4629890024662018, 0.2908177077770233, -0.8470995426177979, -0.1585901379585266, -0.2182924449443817, 0.3466528058052063, -0.8108577728271484, -0.3509202301502228, -0.36851832270622253, -0.49082475900650024, 0.16074751317501068, 0.6865488290786743, 0.6642578840255737, 0.5884276032447815, -0.7635766863822937, 0.11809737235307693, 0.08497173339128494, 0.9192211031913757, -0.0909971222281456, 0.4302833378314972, 0.06701967865228653, -0.43609774112701416, 0.7867843508720398, 0.07719682157039642, -0.3381330668926239, 0.34285545349121094, 1.0749242305755615, -0.24976450204849243, 0.39211639761924744, -0.9890090823173523, -0.011457645334303379, -0.6575134992599487, 0.4305553436279297, 0.5108442902565002, 0.12127707898616791, 2.121689796447754, -0.7070866227149963, -1.0168455839157104, -1.2333821058273315, 0.47941479086875916, -0.03047681599855423, -0.18355591595172882, -0.005387253127992153, 0.6109301447868347, -0.31352871656417847, 0.3523927628993988, -0.5803269743919373, -0.41925984621047974, -0.9537280201911926, -0.7167562246322632, -0.6545226573944092, -0.8042619228363037, -0.02206185832619667, -0.8617234826087952, -0.44429153203964233, 1.489059329032898, -1.5399041175842285, -0.6066287755966187, -0.06720584630966187, -0.3336693346500397, -0.129484161734581, -0.8272806406021118, -0.0611434280872345, -0.050709351897239685, 0.3657403588294983, -1.0503588914871216, 0.5959338545799255, -0.39191824197769165, -0.019412992522120476, 1.5099595785140991, 0.25892722606658936, -0.2396882176399231, 1.2366057634353638, -0.26282796263694763, -0.8299426436424255, 0.5441864132881165, 0.11827827990055084, -0.17472878098487854, 0.334724485874176, 0.7278569936752319, 0.24002279341220856, -0.11588605493307114, -0.1229260116815567, 0.773807168006897, -0.44129878282546997, -0.2838439345359802, -0.6720488667488098, -1.0831443071365356, 0.7081880569458008, -1.1119719743728638, -1.268519639968872, 0.8320491909980774, 0.3446333408355713, -0.33089977502822876, -0.3985756039619446, 0.6783385872840881, 0.4716985821723938, 0.12091153115034103, 0.8500562906265259, 0.47790205478668213, 0.7146545648574829, 0.04343098774552345, -0.08623559772968292, -0.6676040291786194, 0.46446436643600464, 1.4160128831863403, -0.1586659997701645, 0.15233662724494934, 1.320583462715149, 1.0059524774551392, 0.045041441917419434, 0.09731442481279373, -0.13604667782783508, 0.17968280613422394, -0.4107387959957123, -0.7832683324813843, 0.5116569995880127, -0.672582745552063, 0.9912118315696716, 0.7970370650291443, -1.2740199565887451, -0.40816086530685425, -0.3300524353981018, -0.20453855395317078, -0.4384605586528778, -1.116870403289795, -0.860141932964325, -0.31764575839042664, -0.22596094012260437, -0.4244413375854492, 0.29363223910331726, -0.24801860749721527, 0.38196247816085815, -0.6837800741195679, -0.5764856338500977, 0.44929325580596924, 0.5623871684074402, 0.3536224663257599, 1.1793488264083862, -0.0631752461194992, -1.142204999923706, -0.8192005157470703, -0.06815944612026215, 0.6383647918701172, 0.6612981557846069, 0.3130282461643219, 0.5194222331047058, 0.06062314659357071, -0.46012675762176514, 0.0018834518268704414, 0.36117589473724365, -0.12986846268177032, 0.08767874538898468, 0.3751484453678131, 0.586418628692627, 1.334716796875, -1.0815025568008423, -0.36210963129997253, -0.36859583854675293, 0.7045658230781555, 1.23141610622406, 1.3596857786178589, 1.1254909038543701, -0.3660799562931061, 0.11266622692346573, 0.05657259002327919, -1.1495873928070068, -0.22013434767723083, -0.5697259902954102, -0.6421744227409363, -0.24290135502815247, 0.15344475209712982, 0.1943584680557251, -0.2876872718334198, 1.157762885093689, 0.05697783827781677, 1.3052703142166138, 0.925112247467041, 0.13288645446300507, 0.0006813607178628445, 0.260343998670578, 0.6357606649398804, -0.6188869476318359, 0.2600763440132141, 1.0804989337921143, -0.9120773077011108, -0.32321372628211975, 0.012362552806735039, 0.29983648657798767, 0.5933666825294495, 0.5347391366958618, -0.3715500831604004, -1.3417129516601562, -0.9645387530326843, -0.0072553567588329315, 0.7222158908843994, 0.04211811721324921, 0.5735383629798889, -0.605318009853363, -0.06769352406263351, 1.0762951374053955, 0.5634754300117493, -0.8777288198471069, 0.664462149143219, 0.1981414407491684, -0.9744243621826172, 0.09138587862253189, 0.06942103803157806, 0.40372705459594727, -0.7475096583366394, 0.2372308373451233, -0.3722492754459381, -0.32365602254867554, -0.991221010684967, -0.17962174117565155, 0.15075933933258057, 0.37666022777557373, -0.5193056464195251, 0.16514849662780762, 0.6365184187889099, -0.08730949461460114, -0.1442890614271164, -1.3963733911514282, 0.7916886806488037, 0.6163349747657776, 0.6727033853530884, -0.3700330853462219, -0.1265229731798172, 0.3056710362434387, 0.4924427270889282, -0.21709567308425903, 0.06313426792621613, 0.8360872268676758, 0.10162894427776337, -0.3715173006057739, 0.06839447468519211, 0.10101928561925888, -0.40320003032684326, -0.8964757919311523, 0.19455228745937347, 0.15982048213481903, -0.992107093334198, -0.49359944462776184, 1.0252611637115479, 0.06091751903295517, -0.4935014843940735, -0.2897123694419861, 0.1292378306388855, 0.8732553720474243, -0.6404986381530762, 0.58675217628479, -0.8443677425384521, -0.4125153124332428, -0.2885490953922272, -1.0047380924224854, -0.6481664776802063, 0.6530287861824036, -0.3393518924713135, 0.8340125679969788, -0.9321423172950745, -0.1581386774778366, -0.09062442183494568, 0.8225732445716858, 0.21487803757190704, -0.47887539863586426, 0.9217212796211243, 0.3161510229110718, 0.3309164345264435, -0.2058899700641632, 0.4603140950202942, 1.7064812183380127, -0.07857101410627365, -0.7934995293617249, 0.0656944215297699, -0.17428617179393768, 0.21880567073822021, -0.6587491631507874, 0.024413179606199265, 0.4178715646266937, -0.47594118118286133, 0.23819449543952942, 0.06811252981424332, 0.6773688197135925, 1.5710439682006836, 0.6361687183380127, 0.5231505036354065, 0.4991726279258728, -0.62855064868927, -0.5059042572975159, -0.5152631998062134, -0.12051694095134735, -0.11313451826572418, -0.41942501068115234, -0.24361808598041534, 0.2712748348712921, -0.17230086028575897, 0.34862932562828064, 0.2609691619873047, 0.6706796288490295, 0.3716506063938141, -0.1828039437532425, 0.011254319921135902, -0.09421572834253311, 0.8243091106414795, 1.2825604677200317, 0.34377521276474, -0.8468063473701477, -0.4504986107349396, 0.4320845901966095, -0.98753821849823, 0.8566030263900757, 0.9136514067649841, 0.04427992179989815, 1.5135198831558228, -1.9505548477172852, -1.1565897464752197, 0.00041672028601169586, 0.3371349275112152, 0.8065714836120605, 0.22604554891586304, 0.2253936529159546, -0.702822208404541, 0.2637961804866791, 0.11341986805200577, -0.09883271157741547, 0.36889055371284485, -0.43723759055137634, 0.41749003529548645, 0.010573871433734894, -0.42505842447280884, 0.261709064245224, -0.5838168859481812, 0.11066187918186188, 0.038744885474443436, -0.11616725474596024, 0.46293339133262634, 0.6432498693466187, -0.43668586015701294, 0.7900601625442505, -0.6628398895263672, -0.87064129114151, 0.2937523424625397, -0.6292975544929504, 0.37185558676719666, -0.8766478300094604, -0.6953306198120117, -0.3265678286552429, -0.8268474340438843, -0.5358776450157166, 0.3442508280277252, -0.44073936343193054, -0.5451263785362244, -0.7267209887504578, -1.063417673110962, 0.2366528958082199, 0.873683512210846, 1.5573972463607788, -0.01099545881152153, 0.03109915740787983, 1.0179566144943237, 0.5955169796943665, -0.6362314224243164, 0.055809199810028076, 0.580733060836792, -1.1709673404693604, 0.06502240151166916, -1.5494829416275024, -0.760846734046936, 0.9916037321090698, 0.8754846453666687, 0.26218655705451965, 0.01652141846716404, 1.041133165359497, 1.3495126962661743, -0.07622333616018295, -0.36537712812423706, 0.5102626085281372, -0.2593425512313843, 0.9998127818107605, 1.0751103162765503, -0.8937580585479736, -0.5675251483917236, -0.8560096621513367, -1.5142155885696411, 1.6048153638839722, -0.6440255045890808, -1.284563660621643, 1.2201309204101562, 0.3057892322540283, -0.12884092330932617, 0.4399486482143402, 0.31141459941864014, 0.5207465291023254, 0.42566362023353577, -1.2446608543395996, -1.5370631217956543, 0.5960298180580139, 0.22914104163646698, -0.2512657344341278, -0.547931969165802, 0.04155660793185234, -0.5609361529350281, -0.27197304368019104, 0.601101815700531, 0.5339197516441345, 0.4664752185344696, 0.5390278697013855, 0.1266191303730011, -0.24432234466075897, 0.14608651399612427, -1.127828598022461, -0.6115006804466248, -1.1487984657287598, 0.007552495226264, -0.5895237326622009, -0.37011513113975525, -0.6015673875808716, 0.3052741587162018, -0.5798833966255188, -0.2970638871192932, -0.13588733971118927, 0.5401036739349365, 1.1285920143127441, -0.14161694049835205, 0.06422529369592667, 0.10150767862796783, -0.36762601137161255, -0.7842603921890259, -0.3562934994697571, 0.6863501071929932, -1.252402663230896, -0.08741462975740433, 0.07163776457309723, -0.7354849576950073, -0.7956127524375916, 0.15864290297031403, 0.6926437020301819, -1.6807256937026978, -0.7261330485343933, -1.4656989574432373, 0.6750658750534058, 0.9014858603477478, -0.6904168128967285, 0.45395341515541077, 0.18860572576522827, -1.392558217048645, 0.540350615978241, -0.08946097642183304, -1.4413073062896729, -0.9033600091934204, -0.9383701682090759, 0.7609230875968933, -0.5649523735046387, 0.15173768997192383, -0.2429835945367813, 0.7245241403579712, -1.0697530508041382, -1.2703063488006592, -0.6941919326782227, -0.1429549604654312, 1.1360658407211304, 0.7320075631141663, -1.0762417316436768, 0.7489074468612671, 1.15702223777771, -1.11351478099823, -0.8582149744033813, 0.7085060477256775, -0.9060386419296265, 0.27224424481391907, 0.14607731997966766, 1.4077057838439941, 0.4890011250972748, 1.5001652240753174, 0.36630675196647644, 1.0479767322540283, -0.38680407404899597, 0.7174150943756104, -0.5557788610458374, -0.16295507550239563, -0.30835625529289246, 0.44428959488868713, -0.8116782307624817, -0.7589665055274963, 0.349793404340744, -1.2752856016159058, -0.6784266233444214, 0.7806355357170105, 0.7090484499931335, -0.8046033978462219, -0.31211766600608826, -0.9985114932060242, 1.3723480701446533, -0.955328106880188, -0.1849684864282608, 0.38981056213378906, -0.13823896646499634, 0.09213877469301224, -0.7978468537330627, -0.4384614825248718, -1.4158929586410522, 0.11139362305402756, 0.2648802399635315, 0.5297899842262268, -1.264713168144226, 0.9176837801933289, 0.5640580058097839, 0.12446438521146774, -0.7221413850784302, 1.5245912075042725, 1.1420587301254272, -0.32166534662246704, 0.45282867550849915, 0.21957805752754211, 0.024532116949558258, 0.45040953159332275, -0.6458300948143005, -0.9188965559005737, -0.5027326941490173, -0.24311299622058868, 0.44532665610313416, -0.30303704738616943, -0.38675737380981445, -0.2966441810131073, 0.421381413936615, 0.9584967494010925, 1.15960693359375, -0.7355602383613586, 0.24342040717601776, 0.6916313171386719, -0.060797546058893204, -0.3688749372959137, 0.17837844789028168, 0.16762876510620117, 0.3303970396518707, -0.06593859195709229, 0.38085639476776123, 0.6087844967842102, -0.8593494296073914, 1.1644760370254517, 0.2194589227437973, 0.23945200443267822, 0.05561889335513115, -0.44488662481307983, -1.4219211339950562, -0.17366157472133636, -0.434167742729187, -0.959738552570343, 0.24543383717536926, -0.7375503778457642, -1.361695647239685, 0.7385725975036621, 0.18356703221797943, -0.5837218165397644, -0.23116302490234375, 0.3293578028678894, -0.027669234201312065, -0.3162339925765991, 0.7893120646476746, -0.668340265750885, 0.6872183680534363, 0.40073737502098083, -0.007154381833970547, -0.5211486220359802, -0.43814966082572937, 0.5299412608146667, -0.06843844056129456, -0.5951473712921143, -0.30168581008911133, 0.27308064699172974, 0.22404350340366364, -0.5831318497657776, 0.7212226986885071, -0.5959638953208923, 1.107351303100586, 0.30442580580711365, -0.9606050848960876, -0.18661010265350342, 0.9468112587928772, 0.08612821251153946, -0.4212106168270111, -1.0319249629974365, -1.122180461883545, 0.17823833227157593, -0.8814833760261536, 1.0426229238510132, 0.2296162247657776, 0.18405455350875854, 0.567863404750824, -0.37457066774368286, -0.1217082068324089, -0.9207580089569092, 0.3592713177204132, -0.27573591470718384, 0.6522560119628906, 0.0911698043346405, -0.49486953020095825, 0.7036281824111938, -0.657214879989624, 1.0889567136764526, 0.23117861151695251, 0.4493604898452759, 0.1337502896785736, -1.013007402420044, -1.0368527173995972, -0.3032594919204712, 0.7207503914833069, 1.5506458282470703, 0.3629917800426483, 0.06346691399812698, -0.11131203919649124, -1.3755329847335815, -0.31659969687461853, -0.13639743626117706, 0.13196450471878052, -0.7150377035140991, 1.474674105644226, 1.3831121921539307, 0.28773045539855957, 0.734345555305481, 0.41819900274276733, 0.9523268938064575, -0.8569992780685425, 0.06455563753843307, -0.8029426336288452, -0.2032599002122879, 0.465002179145813], [0.7649298906326294, 1.788999080657959, -2.9184887409210205, -0.29270318150520325, 1.4225475788116455, -0.019727982580661774, 1.5280002355575562, -0.31656765937805176, 0.11142715066671371, -0.3208579421043396, 0.6104017496109009, 0.10164498537778854, 0.9967535138130188, 0.8666127324104309, 0.23003143072128296, -0.21471178531646729, 0.45504119992256165, -1.120374083518982, 0.8327619433403015, 1.453359603881836, 0.10470795631408691, -0.5876526832580566, -0.00021814648061990738, 0.21623894572257996, -0.467591792345047, 0.021141771227121353, -1.3035541772842407, -0.24179355800151825, -0.25947296619415283, -0.7598205208778381, 0.8289885520935059, -1.0382084846496582, -0.024228297173976898, 0.9438295960426331, -1.5284804105758667, -0.8537464141845703, 1.549301266670227, 0.7119269371032715, -0.4846794605255127, 0.5323778986930847, 1.8884179592132568, 0.5151450037956238, -0.030796419829130173, -1.5906007289886475, 0.3960539698600769, 0.21823689341545105, 0.7641481161117554, -0.9826048612594604, 0.8137243986129761, -1.1041977405548096, 0.33667507767677307, -0.16436251997947693, 0.5907425284385681, 1.0936872959136963, 1.1929556131362915, 0.6356899738311768, 0.5508998036384583, 0.39521628618240356, 1.1322163343429565, 0.00966356135904789, 0.7894511818885803, -0.1302233636379242, 0.002291870303452015, 0.9295752048492432, 0.3133940100669861, -0.4046248197555542, 0.29114413261413574, 0.5267692804336548, 0.21642687916755676, -0.29590654373168945, 0.34721383452415466, -0.5035958886146545, -0.6085746884346008, 0.03136730566620827, -0.7240525484085083, 1.2151559591293335, 0.3467015326023102, 0.7225939035415649, 0.03515222296118736, 0.189880833029747, -0.3297433853149414, -0.4506710171699524, 0.8086110949516296, -0.10608666390180588, 0.7502685785293579, -0.25432831048965454, 0.05132744461297989, -1.1461734771728516, -0.38922563195228577, 1.6686382293701172, 1.0030415058135986, -0.1269913762807846, 0.8841969966888428, -0.32036229968070984, -0.26119107007980347, -1.032043695449829, 0.5566743016242981, -0.578216016292572, -0.6133445501327515, -0.7162150144577026, -1.1684619188308716, -0.7030330896377563, -0.2826452851295471, 0.24206319451332092, -0.4100399613380432, 1.3748438358306885, -0.13889075815677643, 0.436625212430954, -0.34193333983421326, 0.2856484055519104, -0.6055759787559509, 0.2194850742816925, -0.81331866979599, -0.9185255169868469, -0.8113951683044434, 1.1197887659072876, 1.5448887348175049, -0.22637853026390076, 1.0258562564849854, 0.8994266986846924, -0.5605856776237488, -0.04043186455965042, 0.503770112991333, 0.5643640756607056, 0.1998181939125061, 0.4923709034919739, -0.3505515158176422, -0.9440873265266418, 0.23466065526008606, 0.05077213793992996, 0.19604864716529846, -0.6622889041900635, -0.1811933070421219, 0.43213310837745667, -0.4300004243850708, 0.9877240657806396, -0.31814953684806824, -0.41991108655929565, 0.31034815311431885, 0.03756630793213844, 0.5332611799240112, -0.2449045330286026, -0.7045125961303711, -0.33526137471199036, -0.1693837195634842, -0.3906237781047821, 0.43415313959121704, -0.6928786039352417, -0.6759509444236755, -0.042212266474962234, -1.125152349472046, 0.2576671540737152, 0.3343682289123535, 0.7058567404747009, 0.11312741786241531, -0.3016602694988251, 0.04108665883541107, -0.031236516311764717, 0.3900945782661438, -0.40417858958244324, 0.2245340347290039, -0.23076780140399933, -0.8710676431655884, 1.2353527545928955, -0.0888594463467598, 0.04133593663573265, -0.3366617262363434, 0.11532671749591827, -0.02123914659023285, 0.17652860283851624, -1.0353779792785645, -0.1527732014656067, -0.29276782274246216, 0.6239067912101746, 0.8244901299476624, -0.3366610109806061, 1.7143875360488892, -1.0795564651489258, -0.8307463526725769, -1.8679885864257812, -0.03950582817196846, -0.2245413362979889, 0.11392446607351303, 0.07732724398374557, 0.3839776813983917, -0.28358009457588196, 0.6887021660804749, -0.7651524543762207, -0.036302439868450165, -1.063186764717102, -0.24204085767269135, 0.14443933963775635, -1.2773891687393188, 0.4047932028770447, -0.2874520719051361, -0.62602299451828, 1.1777719259262085, -1.1669716835021973, -0.7358514070510864, -0.6322435736656189, -0.8563474416732788, -0.7730780243873596, -0.7567923665046692, -0.0060807522386312485, -0.4871760904788971, 1.3371868133544922, -1.327787160873413, 1.2293238639831543, -0.3337048292160034, 0.263489305973053, 1.3397216796875, -0.39137202501296997, -0.3587400019168854, 0.9985786080360413, -0.3386635184288025, -1.199121117591858, 0.8093082308769226, 0.035260193049907684, -0.4421186149120331, 0.3131648004055023, 0.10862575471401215, 0.6746772527694702, 0.055717602372169495, 0.3859238028526306, 0.2990764379501343, -0.25865283608436584, -0.377187579870224, -1.1756160259246826, -0.8321683406829834, 0.2305673211812973, -1.1930547952651978, -1.745420217514038, 0.6375439763069153, 0.4805426597595215, -0.830462634563446, -0.026735031977295876, 0.40326979756355286, -0.04018343985080719, 0.3144369423389435, 0.7335614562034607, 0.48281511664390564, 0.7157934308052063, 0.23249344527721405, 0.02305808663368225, -1.3051387071609497, 0.05008307844400406, 1.0197049379348755, -0.3971095383167267, 0.2962726652622223, 1.0931050777435303, 0.8727594017982483, 0.15173235535621643, 0.3611645996570587, 0.10926032066345215, 0.006641260348260403, -1.3061902523040771, -0.8632863759994507, 1.4478081464767456, -0.7440841197967529, 1.0324201583862305, 0.8889323472976685, -1.174421787261963, -0.283749520778656, -0.5854042768478394, -0.05828229710459709, -0.524387776851654, -1.452239751815796, -0.708890438079834, -0.11442901194095612, -0.024664105847477913, 0.19158780574798584, 0.8602243065834045, 0.023687118664383888, 1.0735604763031006, -0.7845498323440552, -0.6511418223381042, -0.4247363805770874, 0.8102670907974243, 0.003507235087454319, 0.260116308927536, -0.22926990687847137, -1.0533331632614136, -0.9838526844978333, -0.0993284061551094, 0.5333366990089417, 0.4282545745372772, -0.08004535734653473, -0.33808761835098267, -0.2068188339471817, -0.7732143998146057, 0.34350526332855225, 0.19881221652030945, -0.2255180925130844, 0.2663724422454834, 0.1875341832637787, 0.8632108569145203, 0.8158404231071472, -0.7670581936836243, -0.608058750629425, -0.037760455161333084, 0.7488715648651123, 0.9433628916740417, 1.0758306980133057, 1.5779849290847778, -0.32605257630348206, 0.2422824203968048, -0.13560591638088226, -0.9833459854125977, -0.3227517902851105, -0.12640787661075592, -1.0849740505218506, -0.9175344109535217, -0.6105300784111023, -0.33185896277427673, -0.7365942001342773, 0.45236191153526306, -0.16744442284107208, 1.1037787199020386, 0.8492027521133423, -0.13178575038909912, -0.46434974670410156, -0.5485309362411499, 0.08596500754356384, -1.1447337865829468, 0.4602298140525818, 0.5893610715866089, -1.3032585382461548, -0.4042223393917084, -0.3787943720817566, -0.5798195004463196, 0.6258765459060669, 0.1810530573129654, -0.6387770175933838, -1.8998093605041504, -0.5830729007720947, -0.18440209329128265, 1.2510621547698975, 0.2963007092475891, 0.31201374530792236, -0.22729529440402985, 0.3313511312007904, 0.06456106901168823, -0.1811196655035019, -1.100935935974121, 0.5309063196182251, -0.4992883801460266, -0.623367428779602, 0.081583671271801, 0.8010326027870178, 0.550737202167511, 0.037955962121486664, -0.10106052458286285, -0.048228248953819275, -0.017388178035616875, -0.5865399837493896, 0.4783990681171417, 0.21272045373916626, 0.42812225222587585, -0.2985179126262665, -0.04198160022497177, 0.8619091510772705, -0.5501019358634949, -0.2247740477323532, -1.0931150913238525, 0.939469039440155, 0.36097243428230286, 0.6837334632873535, 0.22657828032970428, 0.22783242166042328, 0.44026899337768555, -0.6083042621612549, 0.4789629876613617, 0.050749052315950394, 1.460376262664795, 0.5001176595687866, -0.004104627296328545, -0.5171351432800293, 0.2702009975910187, -0.5048893094062805, -0.2613030970096588, 0.2599029541015625, 0.22028273344039917, -0.5697465538978577, -0.7688761353492737, 1.6022204160690308, 0.6906254887580872, -0.3845072388648987, -0.6911123394966125, -0.03232968598604202, 0.9705158472061157, -0.2291860580444336, 0.8642997741699219, -0.9029573202133179, -0.33162346482276917, 0.0634697824716568, -0.8660050630569458, 0.08635620772838593, 0.4579622447490692, 0.09870874881744385, 0.3650095462799072, -0.8677773475646973, 0.11398164927959442, -0.40730929374694824, 0.8879374861717224, 0.5868328809738159, 0.21641170978546143, 0.8159895539283752, -0.18793001770973206, 0.7820659875869751, -0.29969194531440735, 0.6090469360351562, 2.075723886489868, -0.7064242362976074, -0.25094693899154663, 0.14464670419692993, -0.2441866248846054, -0.3792911767959595, -0.8182306885719299, -0.7307117581367493, 0.35434550046920776, -0.15125125646591187, -0.32453685998916626, 0.20077991485595703, -0.058057449758052826, 1.5220133066177368, 0.534385085105896, 0.5265719294548035, 0.2759665548801422, -0.5078922510147095, -1.3723456859588623, 0.32370421290397644, 0.11455870419740677, 0.19879035651683807, -0.3820223808288574, -0.3977872133255005, -0.29354625940322876, -0.08950025588274002, 0.7597594261169434, 0.7744836807250977, 0.9506756663322449, 0.2532402276992798, 0.030346784740686417, -0.6022735834121704, 0.01683870330452919, 0.5559051036834717, 1.4833264350891113, 0.16561122238636017, -0.14284126460552216, -0.7698420882225037, 0.9950348138809204, -0.6108720302581787, 0.2249009758234024, 0.9762764573097229, 0.13444575667381287, 1.0320898294448853, -2.269914150238037, -0.7117684483528137, 0.40676939487457275, 0.31669747829437256, 0.4008035361766815, 0.021691767498850822, -0.19365578889846802, -0.7496290802955627, 0.7600564956665039, 0.8411781787872314, -0.049773648381233215, 0.2603763937950134, 0.13120806217193604, 0.5405662059783936, 0.40685662627220154, -0.7032308578491211, 0.5766550302505493, -0.6531403064727783, -0.09421301633119583, -0.27045923471450806, -0.6029985547065735, 0.8200799226760864, 0.03031783364713192, -0.25702357292175293, 0.4631614685058594, 0.07294027507305145, -0.5830540657043457, 0.26043587923049927, -0.39671590924263, 0.7877953052520752, -0.08420762419700623, -0.018989982083439827, -0.21594829857349396, -0.8229214549064636, -0.6843816041946411, 0.49208346009254456, -0.3942487835884094, 0.07587895542383194, -0.6587816476821899, -1.21317458152771, 0.11107510328292847, 1.182601809501648, 1.2074514627456665, 0.3274010121822357, 0.48503318428993225, 1.012398600578308, 0.8759448528289795, -0.9899570941925049, 0.1674586981534958, 0.009997253306210041, -0.4813814163208008, -0.31349265575408936, -1.8619085550308228, -1.027815818786621, 0.07076497375965118, 0.3194473385810852, 0.37598514556884766, -0.21928220987319946, 1.1681057214736938, 1.3821872472763062, -0.12997518479824066, -0.11965181678533554, 0.41240453720092773, -0.9089982509613037, 0.6711562871932983, 0.9118812680244446, -0.7013615369796753, -0.6408010125160217, -0.7238319516181946, -1.3130849599838257, 0.9198159575462341, -0.7453495860099792, -0.6224978566169739, 0.7960767149925232, -0.29457780718803406, -0.05270287021994591, 0.7733380794525146, -0.15312758088111877, 0.5765426754951477, 0.18820726871490479, 0.460396409034729, -1.2803139686584473, 0.532440721988678, 0.42477548122406006, 0.019623223692178726, -0.26537010073661804, 0.410888671875, 0.37746432423591614, -0.2674833834171295, 1.0386117696762085, 0.32499900460243225, 0.4768456220626831, 0.3865624666213989, 0.7548834085464478, -0.528952956199646, 0.5719911456108093, -1.1751399040222168, -0.3987760841846466, 0.012847216799855232, 0.47900480031967163, -0.37691953778266907, -0.34993472695350647, -0.32410019636154175, -0.6485702395439148, -0.6574475765228271, -0.2650514841079712, -0.10481692850589752, 1.2815850973129272, 0.5859438180923462, 0.22029860317707062, 0.14860230684280396, -0.657098650932312, -0.7113957405090332, -0.5144134759902954, -0.035175904631614685, 0.719661295413971, -0.6904153227806091, 0.12061644345521927, -0.15523932874202728, -0.25153809785842896, 0.06154574826359749, -0.5576533079147339, 0.36956101655960083, -1.6880918741226196, -1.3125101327896118, -0.3171151876449585, 0.22512038052082062, 1.2361078262329102, -0.6463137269020081, 0.95747309923172, 0.897474467754364, -1.1297311782836914, -0.0037705316208302975, -0.1306229680776596, -1.405391812324524, -0.2897810935974121, -1.1941112279891968, 1.026729941368103, -0.27070340514183044, 0.216609925031662, 0.3451943099498749, 1.51168692111969, -1.6169171333312988, -0.5984278321266174, -1.0247989892959595, -0.44979819655418396, 0.8114793300628662, 1.2099698781967163, -1.1241719722747803, 1.3682693243026733, 0.7188302874565125, -0.3093923330307007, -1.0641435384750366, 0.07463899999856949, -0.5108160376548767, -0.1446484625339508, -0.2512814998626709, 1.0432040691375732, -0.6081655621528625, 1.0512865781784058, 0.009651381522417068, 0.929128885269165, 0.3800163269042969, 0.933326244354248, -0.25593963265419006, -0.3588600158691406, -0.034279465675354004, 0.8140554428100586, -0.8968501091003418, -0.6277955174446106, 0.13175490498542786, -1.239479422569275, -0.894950270652771, 0.5051103830337524, 0.7479070425033569, -0.7496216297149658, -0.000650208443403244, -0.936077892780304, 0.49262988567352295, -0.9852553009986877, 0.45406389236450195, -0.16732048988342285, 0.3738120198249817, 0.22529864311218262, -0.34382903575897217, -0.11423343420028687, -1.2194912433624268, 0.03410853073000908, 0.8089070320129395, 0.08062795549631119, -1.1039282083511353, 0.9223492741584778, 0.7828563451766968, 0.43006712198257446, -0.13609789311885834, 0.9571931958198547, 1.1141078472137451, -0.29280537366867065, 0.02294270135462284, 0.4880044460296631, 0.24064232409000397, 0.7998490929603577, -1.202858328819275, -0.3173322081565857, -0.7360274195671082, -0.23600554466247559, 0.579958975315094, 0.07902868092060089, -0.4739755392074585, -0.17855314910411835, -0.6174530982971191, 0.9631153345108032, 0.6526080369949341, -0.7611971497535706, -0.2846704423427582, 1.2197093963623047, -0.4676941931247711, 0.1801675707101822, 0.13477826118469238, 0.4590255916118622, -0.05847710371017456, -0.2983446419239044, 0.6570658087730408, 0.5962428450584412, -0.47230878472328186, 0.5786316990852356, 0.34093236923217773, 0.32961806654930115, -0.08915849030017853, -1.0186647176742554, -1.4437885284423828, -0.4112415313720703, -0.7324104309082031, -0.8384053111076355, 0.15228936076164246, -1.0576351881027222, -1.5742892026901245, 0.6837036609649658, -0.07611217349767685, 0.046257536858320236, -0.11878127604722977, 0.6725884079933167, -0.31561875343322754, -0.4671546220779419, 1.190469741821289, -0.09657624363899231, 1.0279052257537842, 0.6279085278511047, -0.19304785132408142, -0.7429148554801941, -0.594127893447876, 1.04942786693573, -0.4390895664691925, -0.7284371256828308, -0.235964834690094, -0.17446596920490265, -0.36776039004325867, -0.5546767711639404, 0.3561515212059021, 0.20030325651168823, -0.0015277992933988571, 0.1282835453748703, -1.1230182647705078, 0.3170824348926544, 0.17998939752578735, 0.4504164159297943, -0.60648512840271, -0.7378005981445312, -0.7623894214630127, -0.008800026029348373, -0.807974100112915, 1.156101942062378, -0.09960633516311646, 0.598181426525116, 0.6201891899108887, -0.8421068787574768, -0.3956187665462494, -0.9390915632247925, 0.4583984911441803, -0.7200387120246887, 1.1083587408065796, 0.2112545669078827, -0.3280015289783478, 0.32232773303985596, -0.4394013583660126, 0.2976283133029938, -0.09398115426301956, 0.10046706348657608, 0.242203027009964, -1.0439541339874268, -0.9188016057014465, -0.742251455783844, 0.9838067293167114, 1.4404637813568115, -0.02915259450674057, 0.13176871836185455, 0.13340993225574493, -1.2863736152648926, 0.29271337389945984, 1.2055543661117554, 0.200711190700531, -0.22501863539218903, 1.6028951406478882, 1.965933084487915, 0.5996918082237244, 0.7524111866950989, 0.15390019118785858, 0.49131375551223755, -0.6934048533439636, -0.4128924608230591, -0.853878915309906, 0.11510711908340454, -0.07294754683971405], [0.06204887852072716, 1.5870583057403564, -2.197740077972412, -0.815377414226532, 1.787556767463684, 0.5712597370147705, 1.3746463060379028, 0.0833883211016655, 0.3262857496738434, 0.03570793941617012, -0.16422316431999207, -0.1986987292766571, 0.7123410701751709, 1.557588815689087, -0.22595860064029694, 0.32370826601982117, 0.34453284740448, -0.5159624814987183, 0.5455778241157532, 0.7386167645454407, 0.2922239601612091, -0.2003261148929596, -0.18809300661087036, 0.24058525264263153, -0.8959566950798035, 0.39835524559020996, -1.1701083183288574, -0.17712272703647614, -0.3723895847797394, -0.49709779024124146, 1.6569548845291138, -0.9837402105331421, -0.08954859524965286, -0.5508435368537903, -1.211328148841858, -0.7961907982826233, 2.0705323219299316, 1.6596791744232178, 0.774434506893158, 0.4541272222995758, 1.6636091470718384, 0.34000566601753235, -0.5862997174263, -1.4295635223388672, -0.42517584562301636, 0.0005143336020410061, 1.0325570106506348, -0.76048344373703, 0.15905538201332092, -0.7691909670829773, 0.35255274176597595, -0.2479877769947052, 1.3425781726837158, 0.615329384803772, 0.8678987622261047, 0.11988801509141922, 0.5690689086914062, 0.07347499579191208, 0.9339346289634705, -1.0124101638793945, 0.43483322858810425, 0.43527430295944214, 0.4597046673297882, 0.8874797224998474, -0.28107744455337524, 0.04604392498731613, -0.3762058615684509, 0.6308879256248474, 0.03371210768818855, -1.0710219144821167, 0.6832874417304993, 0.8466656804084778, -0.8563187122344971, 0.1740349382162094, -1.2703591585159302, 0.2584584653377533, 0.9879387617111206, 0.7018166780471802, -0.003941149916499853, 0.48092517256736755, 0.23685339093208313, 0.07534027099609375, 0.3236187994480133, -0.38027623295783997, 0.6266953349113464, 0.22675517201423645, -0.09513083845376968, -0.27814170718193054, -0.5512647032737732, 1.5078504085540771, 0.20215821266174316, -0.5258254408836365, 0.4122827351093292, -0.7838091254234314, -0.48146331310272217, -0.5746022462844849, -0.02592511475086212, -0.17106811702251434, -1.029325008392334, 0.02347715012729168, -0.7839526534080505, -0.6144102215766907, -0.1453535258769989, 0.19533631205558777, 0.2289370894432068, 1.1965142488479614, 0.24065643548965454, -0.08970421552658081, -0.6539661288261414, -0.20837359130382538, -0.5886841416358948, -0.0981956273317337, -0.406461626291275, -0.45535019040107727, -0.40618836879730225, -0.07360796630382538, 1.391653299331665, -0.6264008283615112, 0.9840452671051025, 0.7389591932296753, -0.6470722556114197, 0.2508963942527771, -0.7383183836936951, 0.5276336073875427, 0.974664568901062, -0.020846327766776085, -0.478349506855011, -0.44745293259620667, 0.7244747281074524, -0.4766346216201782, 0.8985998034477234, 0.561377763748169, 0.15460462868213654, 1.3951767683029175, -0.11189347505569458, 1.4042446613311768, 0.1037742868065834, -0.5226854681968689, -0.07646173238754272, -0.2500935196876526, 0.3644305467605591, 0.34439414739608765, -0.16273219883441925, -0.3321015238761902, 0.09236102551221848, -0.9132096767425537, 0.11289766430854797, -0.11907025426626205, -0.7319155335426331, 0.4535539746284485, -0.5895378589630127, 0.3621942102909088, 0.3159366846084595, 0.27808690071105957, 0.007532465737313032, -0.159019336104393, 1.1274299621582031, 1.0042818784713745, 0.25823232531547546, -0.14291702210903168, 0.505852460861206, 0.27881014347076416, -0.8280451893806458, 0.44352221488952637, 0.13734377920627594, -0.8271170854568481, 0.5196580290794373, 0.3567308187484741, 0.30166128277778625, 0.550436794757843, -0.9004128575325012, -0.14962950348854065, -0.36278367042541504, 0.6600422263145447, 0.6441190838813782, 0.3554975688457489, 1.5701090097427368, -1.4421749114990234, -1.5898082256317139, -0.8030487895011902, 0.7981928586959839, -0.33588624000549316, 0.5211395621299744, -0.2770162522792816, 0.6563820242881775, -0.43088677525520325, -0.24326901137828827, -0.06974251568317413, -0.23739077150821686, -1.2992284297943115, -0.5343078970909119, -0.14865772426128387, -0.7694333791732788, 0.7770494222640991, -0.0935342088341713, -0.8966630101203918, 0.44983866810798645, -0.8569076657295227, -0.4871008098125458, 0.17251139879226685, -0.19445635378360748, -0.12491864711046219, -0.457915335893631, 0.35610806941986084, -0.4954206049442291, 0.7354978919029236, -1.0449302196502686, 0.6862406730651855, -0.9932369589805603, 0.2263426035642624, 0.39382752776145935, 0.22205320000648499, 0.16975615918636322, 0.5178519487380981, -0.18174000084400177, -1.2247568368911743, 0.937509298324585, 0.8535733819007874, -0.43294602632522583, -0.14123855531215668, 0.5483008623123169, -0.08978033065795898, 0.6541629433631897, 0.13937868177890778, 1.0111829042434692, -0.29060056805610657, -1.0617619752883911, -0.8834639191627502, -0.46885257959365845, -0.02899288572371006, -0.26281607151031494, -1.3211122751235962, 0.9754411578178406, 1.0495649576187134, -0.6507487297058105, -0.22815540432929993, -0.2642522156238556, 0.06865733116865158, 0.1497565358877182, 0.956375777721405, 0.3996836245059967, 0.8657018542289734, -0.8889930248260498, -0.09339144825935364, -0.521271288394928, 0.1107935979962349, 0.7937599420547485, -0.7046820521354675, 0.581644594669342, 1.6205196380615234, 0.5545176863670349, 0.48280206322669983, 0.11948936432600021, -0.060140460729599, 0.6728676557540894, -1.0062984228134155, -0.3996104300022125, 0.32634252309799194, -0.3325912654399872, 1.0509059429168701, 0.40656155347824097, -0.8964855074882507, -0.46500545740127563, 0.4385124146938324, -0.07973970472812653, -0.6882026791572571, -0.39123615622520447, -0.583853006362915, -0.39276397228240967, -0.6185535788536072, -0.4914673864841461, 0.5687764286994934, -0.0104399798437953, 0.30942246317863464, 0.030717922374606133, -0.04632445052266121, -0.2156866043806076, -0.46679815649986267, -0.48884496092796326, 0.3249758780002594, -0.6094968914985657, -0.41376322507858276, -0.8234266042709351, -0.001466425135731697, 0.7679235339164734, 0.023325102403759956, -0.6402032971382141, -0.06487990915775299, 0.14820018410682678, 0.129316046833992, -0.18084150552749634, 0.45309364795684814, -0.4753357470035553, -0.5320566892623901, -0.5220423936843872, 0.3183477818965912, 0.9465246796607971, -0.3447416424751282, -0.962287187576294, -0.6249778270721436, 1.108217477798462, 1.4572621583938599, 0.6886483430862427, 1.8692243099212646, -0.37850168347358704, 0.19180573523044586, 0.0644165575504303, -0.22867947816848755, -0.26150527596473694, -0.4347996115684509, -0.6920140981674194, -0.006473305635154247, -0.20247168838977814, -0.2946324050426483, 0.13650570809841156, 0.608345627784729, -0.9197483062744141, 0.7480505108833313, 0.8894835114479065, -0.11755120009183884, -1.0621525049209595, 0.009773535653948784, -0.3945102393627167, -1.1168006658554077, 0.752185046672821, 0.6582348942756653, -0.7672545909881592, -0.8689171671867371, -0.40245941281318665, -0.7326241135597229, 1.1128515005111694, -0.08468522131443024, 0.15625359117984772, -0.9075300097465515, -0.7263091802597046, -0.04182606190443039, 0.7231494784355164, 0.42050614953041077, 0.18795229494571686, -0.9479635953903198, 0.052986029535532, 0.7383019924163818, -0.386752724647522, -0.7632211446762085, 0.7095959186553955, -0.6022753715515137, -1.0745245218276978, -0.16595521569252014, 0.705316960811615, 0.17541687190532684, -0.7530069351196289, 0.4345390200614929, -0.49686577916145325, -0.9425789713859558, -0.9108945727348328, 0.1950511336326599, 0.6130893230438232, 0.1710738092660904, 0.4608457088470459, -0.34655946493148804, 1.5476670265197754, -0.24423380196094513, 0.28260722756385803, -1.7867189645767212, 0.7961452007293701, 0.27412623167037964, 1.3497868776321411, -0.13799400627613068, 0.605147123336792, -0.3051154911518097, 0.13304363191127777, -0.11740391701459885, -0.02681855298578739, 1.0002446174621582, 0.09792715311050415, 0.21001265943050385, -0.10012707114219666, 0.07501644641160965, -0.10765640437602997, -0.749387264251709, -0.025609249249100685, 0.10241317003965378, -0.7141037583351135, -0.6300808191299438, 0.7136898636817932, 0.19698311388492584, -0.05368522182106972, -0.8394415974617004, -0.47037431597709656, 1.5364110469818115, 0.48089757561683655, 0.6487493515014648, -0.6756353974342346, 0.1634785681962967, -0.09505820274353027, -0.8030924201011658, -1.004244327545166, 0.2126605063676834, -0.468701034784317, 0.03944066911935806, -0.656295895576477, 0.06646137684583664, -0.6581440567970276, 0.32619723677635193, 0.4409022629261017, -0.34045571088790894, 0.17227385938167572, -0.27933722734451294, 0.5308183431625366, 0.028022730723023415, -0.1246139258146286, 1.2358328104019165, -0.28534573316574097, -0.8326671123504639, -0.2511610686779022, 0.04365971311926842, 0.3252578377723694, -0.48831912875175476, -0.25742265582084656, 0.1598876565694809, -0.7256737351417542, 0.05340591445565224, -0.14039146900177002, -0.07283851504325867, 0.6054096221923828, 0.6857656240463257, 0.31838807463645935, 1.099504828453064, -0.24669653177261353, -1.343522310256958, 0.05601642653346062, 0.06564506143331528, -0.45997706055641174, -0.5886663198471069, 0.22022180259227753, 0.5537390112876892, -0.027166126295924187, 0.5712268352508545, -0.08586238324642181, 0.6617331504821777, 0.12579859793186188, 0.1987229585647583, 0.21065454185009003, -0.14738206565380096, 0.7452875375747681, 1.384469747543335, 0.3597528636455536, 0.22024060785770416, -1.285284161567688, 0.07004119455814362, -1.6260225772857666, 0.39775681495666504, 1.2608317136764526, 0.33750006556510925, 1.5414917469024658, -2.166081428527832, -0.6168950200080872, 0.5424873232841492, -0.019624285399913788, 0.942021369934082, 0.7209579944610596, 0.02523627132177353, -0.37599581480026245, 0.5378032326698303, -0.06851731985807419, -0.1821594387292862, -0.06175495684146881, 0.10192815959453583, 0.05869830399751663, 0.24941381812095642, -0.906801164150238, 1.0529192686080933, -0.6524569392204285, -0.006933500990271568, -0.5831260681152344, 0.14530199766159058, 0.2499600052833557, 0.5040023922920227, 0.3071182370185852, 1.2203552722930908, -0.15642906725406647, -0.7787206768989563, 0.640599250793457, -0.6869986653327942, -0.004355519078671932, 0.37365207076072693, -0.6298232674598694, -0.3120027482509613, -1.0472612380981445, -0.5576255917549133, 0.9261888861656189, -0.20733845233917236, -0.4341375231742859, -0.6541250348091125, -1.1960827112197876, -0.013785925693809986, 0.9097804427146912, 1.3356497287750244, 0.27632835507392883, 0.7621346712112427, 0.42081451416015625, 0.3034282326698303, -0.0886441171169281, 0.029349002987146378, 0.7156895995140076, 0.533129096031189, -0.6642573475837708, -1.7362865209579468, -0.38232889771461487, 0.4877472221851349, 0.9739557504653931, -0.21050965785980225, -0.32157137989997864, 1.3680931329727173, 1.1160660982131958, -0.5152722001075745, -0.9339266419410706, 0.060349348932504654, -0.4549083709716797, -0.3339710533618927, -0.03717472404241562, -0.26997146010398865, 0.21471743285655975, -0.9644228219985962, -1.1670606136322021, 0.8714813590049744, -0.07733067870140076, -1.257709264755249, 0.5602302551269531, 0.04552784189581871, 0.4305706024169922, 0.9520360827445984, -0.38123995065689087, 0.47388505935668945, 0.43041783571243286, -0.6302927732467651, -0.5268321633338928, 0.29322367906570435, -0.10649753361940384, 0.5792675614356995, -0.3081035017967224, 0.7926540970802307, 0.3106362521648407, -0.8108478784561157, 0.5654343962669373, -0.10899920761585236, 0.9250665307044983, 1.1556521654129028, 0.4742942750453949, -0.909605860710144, 0.3010466694831848, -0.688258707523346, -0.9934941530227661, -0.23318630456924438, 0.7569024562835693, 0.481847882270813, -0.7598573565483093, -0.8403050303459167, -1.1059519052505493, -0.30429404973983765, -0.3145449459552765, -0.050614550709724426, 1.1710028648376465, -0.14420989155769348, 0.01723511703312397, 0.2204388678073883, -0.9499789476394653, -0.09149115532636642, -0.11800152063369751, -0.2848324775695801, 0.7051540613174438, -1.7423492670059204, 0.27394306659698486, 0.22324076294898987, -0.9163771867752075, 0.11853030323982239, -0.4228760600090027, 0.1323932260274887, -1.2287585735321045, -1.195296287536621, -1.4172279834747314, -0.44465944170951843, 1.0780465602874756, -0.2883869409561157, 0.6343216896057129, 0.5045567750930786, -1.820508360862732, -0.02652411349117756, 0.5287811160087585, -0.8893095254898071, 0.012805703096091747, -1.2291440963745117, 1.0950441360473633, -0.7106657028198242, 0.3221604824066162, -0.25627946853637695, 1.348434567451477, -1.2781028747558594, -1.3663467168807983, -0.8321942090988159, -0.4437393248081207, 0.6963427662849426, 0.6712966561317444, -0.719488799571991, 1.6721069812774658, 0.30987846851348877, -0.7310181260108948, -0.164558544754982, 0.4259483516216278, -0.8332686424255371, 0.7345494627952576, 0.6123800277709961, 0.1984986662864685, 0.24427473545074463, 1.4760823249816895, 0.1581614762544632, 0.6615937948226929, 0.10936097800731659, -0.08429154008626938, -0.6566863656044006, -0.5167722105979919, -0.35216236114501953, 0.5431832075119019, -1.1111305952072144, -0.4590502679347992, -0.124606654047966, -1.0589027404785156, -1.2508050203323364, 0.7770743370056152, 0.6759531497955322, -0.8429432511329651, -0.3215523064136505, 0.13035903871059418, 0.46183761954307556, -0.23197056353092194, 0.4222649037837982, 0.13767486810684204, 0.21037504076957703, 0.058990538120269775, 0.23111291229724884, 0.061741903424263, -1.5755095481872559, 0.5652080774307251, 0.170313760638237, -0.3496706783771515, -0.570359468460083, 0.7364986538887024, 1.015071153640747, -0.5587148666381836, -0.6784982085227966, 1.1496975421905518, 1.2814997434616089, 0.09231019020080566, -0.28178489208221436, 0.3858371078968048, 0.1505327820777893, 0.2329632043838501, -0.42644912004470825, 0.008756287395954132, -0.7568266987800598, 0.6594511866569519, 1.0051039457321167, -0.46443432569503784, -0.582373857498169, 0.17600701749324799, -0.9186302423477173, 0.44086378812789917, -0.05952445790171623, -0.7383261322975159, 0.24310851097106934, 1.0580650568008423, -0.39179837703704834, -0.8062569499015808, 0.16208021342754364, 0.24718120694160461, 0.3090549409389496, 0.08806972950696945, 0.39665284752845764, 0.8874596357345581, -0.9623028635978699, 1.1098177433013916, 0.6110259294509888, 0.2768884003162384, 0.3870771825313568, -0.8862575888633728, -0.9334453344345093, 0.21042580902576447, -0.5376614928245544, -1.4715325832366943, 0.32711878418922424, -1.221156358718872, -0.7625246047973633, 0.728792130947113, 0.004282377660274506, -0.6230817437171936, 0.2509250342845917, -0.08445841073989868, -0.20222586393356323, 0.6771011352539062, 0.13125406205654144, -0.8041852116584778, 0.7980987429618835, 0.3380488157272339, -0.10474103689193726, -1.3167129755020142, -0.4905721843242645, 0.4117940366268158, -0.024858852848410606, 0.04251778870820999, 0.050970740616321564, 0.28216949105262756, 0.06925870478153229, -1.081913709640503, 0.5049138069152832, -0.3391529619693756, 0.042411964386701584, -0.3183448016643524, 0.04279042035341263, 0.34928348660469055, 0.33285778760910034, 0.13877949118614197, -0.050036605447530746, -0.859413206577301, -0.6333263516426086, 0.41736477613449097, -0.05709018558263779, 1.2501614093780518, 0.09076634049415588, 0.4664826989173889, 0.5777735710144043, -0.5318470001220703, 0.03752706199884415, -0.21968898177146912, 0.18416941165924072, 0.1008542850613594, 0.7244275808334351, 0.009672826156020164, -0.4533982276916504, -0.29925477504730225, -1.3295783996582031, 0.2299225777387619, 0.08546492457389832, 0.007780059706419706, 0.031828511506319046, -0.9471961855888367, -0.7966296672821045, -0.6388148665428162, 0.6870354413986206, 0.656091034412384, 0.35857924818992615, 0.34986191987991333, -0.33258289098739624, -0.8392834067344666, -0.26944178342819214, -0.3931373059749603, 0.1516517996788025, -0.2576594054698944, 0.9613135457038879, 1.297977089881897, 0.2463158220052719, 0.7020904421806335, -0.15577605366706848, 0.6745094060897827, -0.5391032695770264, 0.08953182399272919, -0.7989265322685242, 0.41226017475128174, 0.44150301814079285], [-0.010241042822599411, 2.1648643016815186, -1.885530948638916, -0.42769137024879456, 1.346191167831421, 0.6056143045425415, 1.0538843870162964, 0.11919913440942764, 0.3910144567489624, -0.0662146657705307, 0.15360993146896362, -0.3389971852302551, 0.36938953399658203, 1.4806588888168335, 0.6382160186767578, 0.19623060524463654, 0.9016548991203308, -0.4901956021785736, 0.6603131890296936, 0.6951541900634766, -0.15311309695243835, -0.7828516364097595, -0.09769643843173981, -0.038208507001399994, -0.3905363380908966, 0.7340908646583557, -0.5217078924179077, -0.5856107473373413, -0.913671612739563, -1.1382116079330444, 1.7456573247909546, -0.5212833881378174, 0.4573914408683777, -0.32038626074790955, -0.6572132706642151, -0.9199526906013489, 1.5029864311218262, 1.1847567558288574, 0.7749277353286743, 0.1898954063653946, 1.5586538314819336, 0.24499525129795074, -0.32941934466362, -1.378240704536438, 0.8911489248275757, 0.015323124825954437, 1.3694785833358765, -1.2175098657608032, 0.006256274878978729, -0.6316511034965515, 0.5815264582633972, -0.43516427278518677, 0.9993395805358887, 0.1114826574921608, 0.9292066693305969, 0.05562353506684303, 0.12109687924385071, -0.01646345853805542, 1.0063613653182983, -1.0989595651626587, 0.4105852246284485, 0.08256137371063232, 0.6801915168762207, 0.2761284410953522, 0.161187544465065, 0.20464304089546204, -0.10752283036708832, 0.49029189348220825, -0.2868117392063141, -1.0573512315750122, 0.9274579882621765, -0.002363576553761959, -0.7344765663146973, -0.1766527146100998, -0.8018492460250854, 0.12357000261545181, 0.6387993097305298, 0.43036797642707825, 0.418678879737854, 0.41350892186164856, -0.628558337688446, 0.04146683216094971, 0.8925182819366455, -0.7438221573829651, 0.7534863352775574, 0.15598411858081818, 0.24533793330192566, -0.4478723406791687, -0.37116187810897827, 1.3117631673812866, 0.3332065939903259, -0.747901439666748, 0.3416909873485565, -0.7293687462806702, 0.3034079074859619, -0.7154933214187622, 0.04034269228577614, -0.33495816588401794, -0.8845378160476685, 0.0012044096365571022, -1.0804505348205566, -0.8745190501213074, 0.20568802952766418, 0.24902689456939697, -0.06554558128118515, 1.3160985708236694, 0.45492225885391235, 0.15752477943897247, -0.3490527868270874, -0.43088001012802124, -0.7215352654457092, 0.12749949097633362, -0.3366679549217224, -1.2956831455230713, -0.9753193855285645, 0.09063008427619934, 1.0806035995483398, 0.06087864190340042, 0.43480977416038513, 0.9789334535598755, -0.5617266297340393, 0.3573119044303894, -0.457105427980423, 0.9553398489952087, 0.46986058354377747, 0.5267769694328308, -0.3168569803237915, -0.7139930725097656, 0.5353124737739563, -0.019324244931340218, 0.2615100145339966, 0.5654380321502686, -0.30640146136283875, 1.4000080823898315, -0.8471556901931763, 1.1610136032104492, 0.6065255999565125, -0.7673601508140564, -0.1752629280090332, -0.8962333798408508, 0.5419901609420776, -0.3954899311065674, -0.04314534366130829, -0.33165475726127625, -0.12945771217346191, -0.9020587205886841, 0.6699749827384949, -0.4286389648914337, -0.7408718466758728, 0.27140265703201294, -0.9977108240127563, 0.620700478553772, -0.0432107113301754, 0.8606759309768677, -0.25056445598602295, -0.3587226867675781, 0.9323186278343201, 0.9285523891448975, 0.3673802614212036, -0.5322988629341125, 0.7373254299163818, -0.1467653214931488, -1.283445119857788, 0.5767792463302612, -0.31320035457611084, -0.2778857350349426, 0.2899284362792969, 0.5375611782073975, 0.04255770891904831, 0.9457060098648071, -1.0951861143112183, -0.6609740853309631, -0.19927598536014557, 0.5238093733787537, 0.584186851978302, 0.26165926456451416, 1.0406461954116821, -1.1962183713912964, -1.806290864944458, -0.5292739868164062, 0.5259855389595032, -0.6223422288894653, 0.34119969606399536, 0.01022525504231453, 0.7614277601242065, -0.26200565695762634, 0.5047796964645386, -0.2997918426990509, -0.249374121427536, -1.3813828229904175, -0.5747740864753723, -0.3914102017879486, -0.8295801281929016, 0.03607943654060364, 0.0597207210958004, -0.8382307887077332, 0.44981685280799866, -0.9248909950256348, -0.9170467257499695, 0.3682403266429901, -0.11839042603969574, 0.09245698899030685, -0.49379825592041016, 0.2809184491634369, -0.5083650350570679, 0.14057737588882446, -1.2614673376083374, 1.0773805379867554, -0.17345094680786133, 0.3639886677265167, 1.2475453615188599, 0.2573327422142029, -0.31623125076293945, 0.371815025806427, -1.061187982559204, -1.6497284173965454, 1.119310736656189, 0.4357907176017761, 0.2164679318666458, 0.650973379611969, 0.11818414181470871, 0.28791457414627075, 0.29048487544059753, -0.03697161749005318, 1.3048230409622192, -0.5468220114707947, -0.7879031896591187, -0.9940065145492554, -0.5562469959259033, 0.022734470665454865, -0.4947757124900818, -1.2167340517044067, 0.3602477014064789, 0.9805267453193665, -0.40303629636764526, 0.20957282185554504, -0.07198142260313034, -0.4324989914894104, 0.741487443447113, 0.5849097371101379, 0.2146264612674713, 0.9195685386657715, -0.7625578045845032, -0.43886932730674744, -0.35806143283843994, 0.1291569173336029, 0.9169811606407166, -0.7001651525497437, 0.165569007396698, 1.2192260026931763, 1.3539798259735107, -0.2564195394515991, -0.2864397168159485, 0.05221430957317352, -0.06178918480873108, -0.6524977684020996, -0.8791611194610596, 0.6819795370101929, -1.3070099353790283, 1.2785561084747314, 1.059221625328064, -1.0022319555282593, -0.3463587164878845, 0.2050173431634903, 0.0737590342760086, -0.5810118913650513, -0.7554621696472168, -0.24305087327957153, -0.04140903055667877, -0.12526564300060272, -0.2253609150648117, 0.7924027442932129, -0.10986404120922089, 0.9508999586105347, -0.10757742822170258, -0.06776552647352219, -0.8045316338539124, 0.0017716484144330025, 0.11599977314472198, 0.16307125985622406, -0.4002949893474579, -1.1566455364227295, -0.34451788663864136, -0.5269665122032166, 0.8155995607376099, 0.06936714053153992, 0.08109275996685028, 0.619463324546814, 0.3574277460575104, -0.09643879532814026, -0.25650349259376526, 0.477969229221344, -0.4196161925792694, -0.05509636178612709, -0.049317315220832825, 0.6210408806800842, 0.7929782867431641, -0.37808945775032043, -1.310280680656433, -0.2338486760854721, 0.7775014042854309, 0.8435903191566467, 0.42461588978767395, 1.3799536228179932, -0.6397777795791626, 0.013053679838776588, -0.050108619034290314, -0.14595064520835876, -0.2784361243247986, -0.3358851671218872, -0.1432095170021057, 0.011507975868880749, -0.4126478135585785, -0.39574581384658813, -0.26558464765548706, 1.084854006767273, -0.7097408771514893, 0.7115057706832886, 1.3534355163574219, -0.6101531982421875, -1.0790419578552246, 0.05965595692396164, -0.27727481722831726, -0.9681450128555298, 0.9978765845298767, 1.4008299112319946, -0.6439828276634216, -0.5693287253379822, -0.5133212208747864, -0.30821719765663147, 0.94910728931427, -0.40935271978378296, 0.3693016767501831, -0.964195966720581, -1.3464564085006714, -0.2859914302825928, 1.4454976320266724, 0.10225088149309158, 0.3321070075035095, -0.8071457147598267, -0.023036114871501923, 0.3046703338623047, 0.0004374687559902668, -0.37030673027038574, 0.6535813808441162, -0.4582774043083191, -0.5303844809532166, 0.1404470056295395, 0.5108899474143982, 0.4412868320941925, -0.470981627702713, -0.003151481505483389, -0.6698517799377441, -0.6826525330543518, -0.4793725609779358, 0.20008543133735657, 0.7485759854316711, 0.8823208212852478, 0.0210411436855793, -0.24797175824642181, 0.8324645161628723, 0.08146624267101288, -0.09990785270929337, -1.216064691543579, 0.7157909274101257, 0.8479332327842712, 0.847640335559845, 0.4678637385368347, 0.05760285258293152, -0.10027620941400528, -0.19229628145694733, -0.1972808539867401, 0.43541067838668823, 1.285901665687561, 0.7109403014183044, -0.5232700109481812, 0.5479177236557007, -0.06356948614120483, -0.22949938476085663, -0.47955870628356934, -0.008355812169611454, 0.34376442432403564, -0.7529590129852295, -0.5382990837097168, 1.2834631204605103, 0.12354647368192673, -0.32531386613845825, -0.8672890067100525, -0.6496151089668274, 1.1958544254302979, 0.6014546155929565, 0.25894415378570557, -0.12511363625526428, -0.24250410497188568, 0.2689589560031891, -0.8660176396369934, -0.7755043506622314, -0.265164315700531, -0.18407420814037323, 0.3157229721546173, -0.7806168794631958, 0.22064907848834991, -0.023904770612716675, 0.10672497004270554, 0.2691591680049896, -0.44886210560798645, 0.34954380989074707, -0.11454589664936066, 0.6099256873130798, 0.2142450362443924, 0.18877013027668, 1.1389061212539673, -0.60589599609375, -0.9784428477287292, 0.44704410433769226, -0.49243590235710144, 0.6186320185661316, -0.20367157459259033, -0.2220856100320816, 0.0768023282289505, -0.9905876517295837, -0.5735195279121399, -0.3351632058620453, -0.24740801751613617, 0.8446462154388428, 0.30840936303138733, 0.27248382568359375, 0.8440709710121155, -0.19018417596817017, -1.1728236675262451, 0.11959149688482285, -0.06522155553102493, -0.9237686991691589, -0.5621722936630249, -0.13273657858371735, 0.4323887825012207, -0.0943157747387886, 0.6610805988311768, 0.04358968138694763, 0.6101170778274536, 0.7152684330940247, -0.06711477786302567, 0.5109115242958069, 0.1847936362028122, 0.8546997308731079, 1.5909626483917236, 0.8576664924621582, -0.42619189620018005, -0.8955608606338501, 0.3432874083518982, -1.0200819969177246, 0.1949719786643982, 1.0770422220230103, 0.8707848787307739, 1.2557692527770996, -2.1213276386260986, -0.9737521409988403, 0.9909877777099609, 0.5839393734931946, 0.5880975127220154, 0.7325149178504944, -0.2187129408121109, -0.2569912374019623, 0.48559436202049255, 0.4598686397075653, -0.22528450191020966, -0.019519435241818428, 0.24892553687095642, -0.002052293624728918, 0.7234804034233093, -0.8353765606880188, 0.35783734917640686, -0.482072651386261, -0.17922154068946838, -0.8213653564453125, -0.30628731846809387, 0.3825196921825409, 0.2935350835323334, -0.0030659488402307034, 0.8259138464927673, -0.04159644618630409, -0.2382979691028595, 0.8892302513122559, -0.3257610499858856, 0.053362924605607986, 0.12671412527561188, 0.04292414337396622, -0.46074697375297546, -0.3640432059764862, -0.598425030708313, 0.13095121085643768, -0.16676685214042664, 0.09007681906223297, -0.4435211718082428, -1.1948440074920654, 0.023735662922263145, 0.8864195942878723, 0.453927606344223, 0.6317101716995239, 0.585223913192749, 0.40043047070503235, 0.4497324824333191, -0.1332543045282364, -0.035623177886009216, -0.297026127576828, 0.12329705059528351, -0.5069330930709839, -1.1548641920089722, -0.4963911175727844, -0.06871708482503891, 0.6932647824287415, -0.14609546959400177, 0.9302216172218323, 1.7819355726242065, 1.3298403024673462, -0.4663100242614746, -0.7451553344726562, 0.20500759780406952, -0.3209274709224701, -0.2711438536643982, 0.1014007180929184, -1.0223439931869507, 0.07466888427734375, -0.6735241413116455, -1.2074360847473145, 0.7021784782409668, -0.37553754448890686, -0.9228765964508057, 1.0525144338607788, -0.5086893439292908, 0.37744858860969543, 0.412460058927536, -0.4316389858722687, 0.6113175749778748, 0.7133157849311829, -1.076120376586914, -1.5258101224899292, 0.3887230455875397, 0.19426578283309937, 0.08616003394126892, -0.36958742141723633, 0.7609179615974426, 0.4764404892921448, -0.6424394845962524, 0.09379518032073975, 0.5046672224998474, -0.03663124144077301, 1.3556891679763794, 0.4477311074733734, -0.5106301307678223, 0.0104618389159441, -0.8942934274673462, -0.4428752362728119, 0.07704158127307892, 1.1338309049606323, 0.6184190511703491, -0.7428670525550842, -0.4667816162109375, -0.8943222761154175, -0.18563365936279297, -0.38611891865730286, -0.5520734786987305, 1.103026032447815, 0.17968440055847168, -0.18668919801712036, -0.1702636182308197, -0.5139814019203186, -0.5282554030418396, -0.14582209289073944, -0.23877082765102386, 0.9363887906074524, -1.1315562725067139, 0.05357997119426727, 0.48050180077552795, -0.7234634757041931, -0.025678725913167, -0.7247380018234253, 0.294669508934021, -1.3928256034851074, -0.7927213311195374, -1.3595833778381348, -0.2524119019508362, 0.8108716607093811, -1.0045602321624756, 0.29533255100250244, 0.13240234553813934, -1.5067061185836792, 0.5241653919219971, -0.05553128942847252, -1.749267339706421, 0.29728081822395325, -1.6399004459381104, 0.8097351789474487, -0.6563054323196411, 0.06114763766527176, 0.31559881567955017, 1.3348523378372192, -1.5499831438064575, -1.497882604598999, -0.9824731945991516, -0.25653016567230225, 0.6363863945007324, 0.7751397490501404, -1.0542010068893433, 1.7265859842300415, 0.334404319524765, -0.7917991280555725, -0.7822538018226624, 0.37479865550994873, -0.6207281947135925, 0.6055964231491089, 0.2530538737773895, 0.19579605758190155, 0.3523935079574585, 1.0252057313919067, 0.5360538363456726, 1.0462126731872559, 0.6255881190299988, -0.2093019336462021, -1.0072482824325562, 0.059516455978155136, -0.2743149697780609, 1.079171061515808, -1.4686917066574097, -0.7335643768310547, -0.5620849132537842, -0.5841325521469116, -1.0320169925689697, 0.7645288109779358, 0.7652186155319214, -0.7197645902633667, -0.311434805393219, -0.560365617275238, 0.6898224353790283, -0.3712717890739441, 0.2696257531642914, 0.0333118736743927, -0.25877639651298523, -0.04502008110284805, -0.17248648405075073, 0.0041731419041752815, -1.2613056898117065, 0.32091087102890015, -0.04452626407146454, -0.497140109539032, -0.24859486520290375, 0.5609650015830994, 0.723142683506012, -0.15970690548419952, -0.42113369703292847, 1.4695169925689697, 0.7544674277305603, -0.14019404351711273, 0.14801909029483795, 0.0965636596083641, -0.029916951432824135, 0.15821339190006256, -0.43581917881965637, 0.1422732025384903, -0.9961733222007751, 0.9679501056671143, 0.7551299333572388, -0.3885158598423004, -0.5742767453193665, -0.06364145874977112, -0.4593406021595001, 0.11337582767009735, 0.3051522374153137, -0.3901746869087219, -0.25408878922462463, 1.0732115507125854, 0.2946484684944153, -0.9737816452980042, 0.29765188694000244, 0.37700530886650085, -0.17821848392486572, -0.014810379594564438, 0.20185399055480957, 0.8594721555709839, -0.6186212301254272, 0.6404746770858765, 0.3757788836956024, 0.22513911128044128, 0.15823966264724731, -0.9698092341423035, -0.9562111496925354, 0.367721825838089, -0.6372638940811157, -0.7240803241729736, 1.193615198135376, -1.4889615774154663, -0.015334947034716606, 0.7985379099845886, -0.3682367503643036, -0.5424162149429321, -0.2849528193473816, -0.10035810619592667, 0.14518706500530243, 0.5679328441619873, 0.17096027731895447, -0.9187518358230591, 0.38351836800575256, 0.4757140278816223, -0.4672176241874695, -0.974706768989563, -0.28680217266082764, 0.13684974610805511, -0.5988157987594604, 0.08946724236011505, 0.32954299449920654, 0.662493884563446, 0.03626420348882675, -0.6169511079788208, 0.42080527544021606, 0.2729733884334564, 0.1303439736366272, -0.3707922399044037, 0.2638606131076813, 0.9510224461555481, 0.01882096752524376, 0.23051409423351288, -0.4468991756439209, -0.7677760720252991, -0.9356119632720947, 0.7586807012557983, -0.20000393688678741, 1.130018711090088, -0.10949954390525818, 0.5619486570358276, 0.15564636886119843, -0.4043050706386566, -0.5779027938842773, -0.6892538070678711, -0.03316526114940643, -0.6853761672973633, 1.18490731716156, -0.3940516710281372, -0.23291058838367462, -0.5927060842514038, -1.648816704750061, -0.09580463916063309, 0.032451122999191284, -0.1694774627685547, 0.4009031653404236, -1.0305944681167603, -0.6372278332710266, -0.5690318942070007, 0.6554935574531555, 1.062955617904663, 0.23602677881717682, 0.6259353160858154, 0.024497022852301598, -0.5341220498085022, -0.5276628136634827, 0.07046031206846237, 0.14721226692199707, 0.07993240654468536, 0.7731141448020935, 1.2839277982711792, 0.5142195224761963, 0.7401002049446106, -0.15243427455425262, 1.418492317199707, -0.4176160395145416, 0.1533522605895996, -0.717837393283844, 0.4072059690952301, 0.5702582597732544], [0.6734238266944885, 1.98456609249115, -2.105088710784912, 0.02627733163535595, 0.7864373326301575, -0.18845777213573456, 0.10759613662958145, -0.1689382642507553, 0.06318876892328262, -0.40709805488586426, -0.0402202233672142, 0.020737838000059128, 0.360910028219223, 1.0913516283035278, 0.017849484458565712, 0.835405707359314, 1.0308421850204468, -0.03505899757146835, 0.4587889015674591, 0.6439321041107178, 0.20253562927246094, -0.4115542471408844, 0.09261026233434677, -0.060590241104364395, -0.17069107294082642, 0.446982741355896, -1.076821208000183, -1.0915876626968384, -0.5078416466712952, -0.5702903270721436, 0.12010014802217484, -0.6720472574234009, 0.43354716897010803, 0.054129716008901596, -1.5823200941085815, -0.4055756628513336, 1.332391381263733, 0.7750107049942017, 0.5197969079017639, 0.5421979427337646, 1.04084312915802, 0.5385473966598511, 0.08755612373352051, -1.5908963680267334, -0.691619336605072, -0.5259299278259277, 1.4453034400939941, -0.42067354917526245, -0.005421179812401533, -0.33518511056900024, 0.43434691429138184, -0.7516856789588928, 1.210654854774475, 0.3569592237472534, 1.596254825592041, -0.6096628904342651, 0.374778151512146, 0.4592129588127136, -0.27456796169281006, -1.0128120183944702, 0.31776949763298035, -0.16076311469078064, 0.43616795539855957, 0.5774361491203308, 0.5172737836837769, 0.28222256898880005, -0.7144342660903931, 0.14911623299121857, 0.294430136680603, -0.3428594768047333, 1.5309531688690186, -0.45327773690223694, -0.6355299949645996, -0.04697195440530777, -1.077982783317566, 0.3689897656440735, 1.2221732139587402, 0.30395886301994324, 0.23762325942516327, 0.37211549282073975, 0.19065620005130768, -0.6671051383018494, 0.4722108244895935, -0.9135525226593018, 0.3381267488002777, 0.07140712440013885, 0.5225375294685364, -0.24210849404335022, -0.39677321910858154, 1.1275699138641357, 0.478994756937027, -0.389589786529541, 0.49747928977012634, -0.7293199300765991, -0.04459473863244057, -0.6406561136245728, 0.30407091975212097, -0.5088417530059814, -0.552364706993103, -0.4440821707248688, -0.3406323194503784, -0.4609284996986389, 0.12152974307537079, 0.28752195835113525, -0.6391642689704895, 1.0010331869125366, 0.3802298307418823, -0.23381775617599487, -0.3101469576358795, -0.39713966846466064, 0.08938563615083694, 0.41047024726867676, -0.3928040862083435, -1.588606834411621, 0.27740663290023804, 0.3943069279193878, 1.2454473972320557, -0.10509151965379715, 1.509179949760437, 1.2045812606811523, -0.02793939784169197, 0.022732868790626526, -0.3125690817832947, 0.8165558576583862, 0.4661901593208313, 0.08526137471199036, -0.035066213458776474, -0.7945680618286133, -0.249867781996727, -0.4281476140022278, 0.38870638608932495, -0.09648410975933075, 0.520203173160553, 0.6949729323387146, -0.5977796912193298, 1.46950101852417, 0.3837663531303406, -0.21372191607952118, 0.12273656576871872, -0.13961580395698547, 0.7315773367881775, 0.037520457059144974, -0.40536558628082275, -0.3236599862575531, -0.5200411677360535, -0.14578895270824432, 0.15473806858062744, -0.32331857085227966, -0.30047664046287537, 0.3852477967739105, -1.228986382484436, 0.2451895922422409, 0.08150027692317963, 0.4592020809650421, -0.2431563436985016, -0.5948007702827454, 0.5709871053695679, 0.7561560869216919, 0.294580340385437, -0.15083397924900055, 0.8139529228210449, 0.36296263337135315, -1.3785425424575806, 0.6899673342704773, 0.12759947776794434, -0.779933512210846, -0.1293305903673172, 0.5942903757095337, 0.18436257541179657, 0.77214515209198, -0.8195888996124268, -0.7576078176498413, -0.46970540285110474, 0.7413891553878784, 0.583705723285675, -0.5029780864715576, 1.4141123294830322, -1.0154223442077637, -1.233917236328125, -1.5768977403640747, 0.1879875361919403, -0.35608601570129395, 0.6227708458900452, -0.48480725288391113, 0.641487181186676, -0.4436318874359131, 0.8591602444648743, -0.41358473896980286, -0.9468666315078735, -0.9945549368858337, -0.492597371339798, 0.1511019617319107, -0.832722544670105, 0.5838871598243713, -0.4197116792201996, -1.060285210609436, -0.08994795382022858, -0.4241727888584137, -0.2316218763589859, -0.013086526654660702, 0.1477239578962326, -0.4045233726501465, -0.1756475865840912, 0.6337323784828186, -0.6607706546783447, 1.1129761934280396, -1.4036287069320679, 1.091103196144104, -0.6190611720085144, 0.04056345671415329, 0.695784866809845, 0.3613589107990265, -0.5114551186561584, 0.5282694697380066, -0.33928054571151733, -2.0909554958343506, 0.8887837529182434, 0.4456656575202942, -0.5668789148330688, -0.6252984404563904, 0.9012052416801453, 0.3800174593925476, -0.1045963317155838, -0.2418919801712036, 0.8564649224281311, -0.5493904948234558, -0.8640244007110596, -0.8071702122688293, -0.8837645053863525, -0.41026294231414795, -0.6618671417236328, -1.3574448823928833, 0.9816027879714966, 0.6665382385253906, -1.0383416414260864, 0.33692800998687744, 0.1415434628725052, 0.37768176198005676, 0.4395761489868164, 0.38902905583381653, 0.4312833845615387, 1.1151752471923828, -0.12036190927028656, 0.09348464012145996, -1.1930408477783203, 0.12335231155157089, 0.4277174174785614, -0.5801202654838562, 0.023144278675317764, 1.213301420211792, 1.46924889087677, 0.2213403433561325, -0.3254212737083435, 0.43043041229248047, 0.21019655466079712, -0.45485493540763855, -1.059509515762329, 0.2738349437713623, -0.7985036969184875, 1.094712495803833, 1.2367678880691528, -0.6484484076499939, -0.2759707272052765, 0.08830918371677399, 0.4238005578517914, -0.7061861753463745, -0.1871953010559082, -0.6498650908470154, -0.06777424365282059, 0.09327845275402069, -0.5957967638969421, 0.6468486785888672, 0.3311924338340759, 0.6957545876502991, 0.19400088489055634, 0.4806693494319916, -0.3815883994102478, 0.3181656002998352, -0.19338925182819366, 0.5003584623336792, -0.13446591794490814, -0.5572854280471802, -0.4028538763523102, 0.07071293145418167, 0.50803142786026, 0.3583028316497803, 0.28974688053131104, 0.28446853160858154, -0.4141836166381836, -0.6992663741111755, -0.001028131227940321, 0.10613293945789337, 0.24438630044460297, 0.17381778359413147, -0.04515039920806885, 0.1551763266324997, 0.32994896173477173, -0.8917825818061829, -0.5806114673614502, -0.2099420577287674, 0.46303778886795044, 1.834251880645752, 0.12586656212806702, 1.4799224138259888, -0.2946902811527252, 0.38533517718315125, -0.05355094373226166, 0.2295766919851303, -0.25142422318458557, -0.7979847192764282, -0.8278404474258423, 0.01123141311109066, 0.10185428708791733, 0.024766717106103897, -0.447172075510025, 0.6937376856803894, -0.9447520971298218, 0.46841293573379517, 1.3204129934310913, -0.9712421298027039, -1.1646442413330078, -0.293296217918396, -0.38082727789878845, -0.3353484272956848, 0.7740873098373413, 1.0495051145553589, -1.1983575820922852, -0.5113059282302856, -0.3893626928329468, -0.2971123158931732, 0.5778690576553345, 0.09950660169124603, 0.01768200658261776, -1.0129687786102295, -1.0244596004486084, -0.21131904423236847, 1.0995639562606812, 0.6045166254043579, 0.1855197250843048, -0.06160774827003479, 0.6025100350379944, 0.18819861114025116, 0.5116570591926575, -1.005568027496338, 0.17360185086727142, -0.1333380490541458, -1.0246167182922363, -0.37722477316856384, 0.8125084042549133, 0.7483343482017517, -0.5263426899909973, -0.4864702522754669, -0.5181681513786316, -0.41615232825279236, -0.2697339951992035, 0.09710335731506348, -0.2719643712043762, 0.7953689098358154, -0.818878710269928, -0.04822523891925812, -0.07925659418106079, 0.562636137008667, -0.06725089251995087, -1.937929391860962, 0.4343372583389282, 0.19422121345996857, 0.853879988193512, 0.1815330535173416, -0.29542315006256104, -0.34206342697143555, 0.10893318802118301, 0.15377278625965118, 0.434149831533432, 1.0988988876342773, -0.2241905927658081, 0.5140694379806519, -0.5381775498390198, -0.17154528200626373, -0.07862995564937592, -0.792465090751648, -0.03726665675640106, 0.24345049262046814, -0.7980942726135254, 0.11006977409124374, 0.9553665518760681, 0.34450608491897583, -0.3576997220516205, -0.020622264593839645, -0.0383896566927433, 0.58942049741745, -0.011604983359575272, 0.5199022889137268, 0.14300622045993805, 0.15933334827423096, 0.5734740495681763, -0.6871728301048279, -0.5379945039749146, -0.5213073492050171, 0.22648216784000397, 0.9858189225196838, -0.6298792362213135, 0.01121682021766901, -0.6634151339530945, 0.4113937020301819, -0.08148830384016037, -0.23869198560714722, 0.1638549566268921, -0.5056843161582947, 0.2502956688404083, -0.40010082721710205, 0.06080788001418114, 0.6308783292770386, -1.0097674131393433, -0.24310633540153503, 0.09580107778310776, -0.5686954855918884, 0.5758578181266785, 0.04417555406689644, 0.2269294410943985, 0.13521713018417358, -0.523302435874939, -0.9886568784713745, -0.10087732970714569, -0.35420286655426025, 0.7768678069114685, -0.2277059406042099, 0.49254459142684937, 0.49322041869163513, -0.3720221519470215, -0.9693977236747742, 0.5423212051391602, 0.15523800253868103, -0.38366788625717163, -0.5642015933990479, 0.33944907784461975, 0.6787614226341248, -0.1770787537097931, 0.6183505058288574, 0.5520281195640564, 1.4480149745941162, 0.32858529686927795, 0.11477464437484741, 0.010981951840221882, 0.7089415788650513, 0.7450876832008362, 0.9915114045143127, 0.8427344560623169, -0.4418572783470154, -0.7286754250526428, 0.342085599899292, -0.7850889563560486, 0.5593699216842651, 0.6092196106910706, 0.5599913001060486, 1.1540285348892212, -1.585166335105896, -0.7570436000823975, 0.7207658886909485, 0.12886878848075867, 0.12644246220588684, 0.7988370060920715, -0.7187033295631409, -0.8264862895011902, 0.4599446952342987, -0.4280923306941986, 0.6107802391052246, 0.3090340495109558, -0.3600858449935913, -0.2443055659532547, 1.0468907356262207, -0.5448569059371948, 0.7684410214424133, -0.7276172637939453, 0.12145231664180756, 0.4931650757789612, -0.5840567946434021, 0.45710697770118713, 0.2278028130531311, -0.1375303715467453, 1.021575689315796, -0.7797048687934875, -0.8084766864776611, 0.38150864839553833, -1.050585150718689, 0.014176882803440094, -0.30662989616394043, 0.3466531038284302, -0.44105157256126404, -0.24305300414562225, -0.5032693147659302, -0.18445493280887604, -0.03529224544763565, -0.5795403718948364, -0.2990807294845581, -0.7950919270515442, -0.0716036856174469, 1.00691556930542, 1.289340615272522, -0.3147689998149872, 0.48445606231689453, 0.4705292284488678, 0.08579334616661072, -0.4150550961494446, 0.00405290350317955, -0.1390341967344284, -0.15019656717777252, -0.16612133383750916, -1.6568363904953003, -0.8176797032356262, -0.48039475083351135, 0.7162132859230042, 0.154234379529953, 0.4483904242515564, 0.8329046368598938, 0.8861434459686279, -0.33514168858528137, -0.8069452047348022, 0.5985665321350098, -0.41171592473983765, 0.27303388714790344, 0.44165757298469543, -0.998685896396637, -0.5818746089935303, -1.1863861083984375, -1.2407647371292114, 0.6253607869148254, -0.41229012608528137, -0.8699366450309753, 0.6219950914382935, 0.3192541301250458, -0.479692280292511, 0.7457072138786316, -0.5898057818412781, 0.7794348001480103, -0.14009545743465424, -0.5138435363769531, -1.4062830209732056, 0.3972495198249817, 0.09614083915948868, 0.3625640273094177, 0.1824081689119339, 0.725400984287262, 0.2241344302892685, -0.41897186636924744, -0.3528168499469757, 0.14054575562477112, 0.46643778681755066, 0.8128892779350281, -0.10380158573389053, -0.39279815554618835, 0.0009296722710132599, -0.47304049134254456, -0.6242931485176086, 0.030867312103509903, 1.0591005086898804, 0.15875957906246185, -0.4501722753047943, -0.009431746788322926, -0.5297269225120544, -0.2829072177410126, -0.4993434548377991, -0.4503815770149231, 0.6913925409317017, 1.0919188261032104, -0.5012297034263611, 0.459990918636322, -0.29432716965675354, -0.3816838264465332, -0.5042616128921509, 0.6559320688247681, 0.9262708425521851, -0.903986930847168, 0.3671676516532898, 0.1419152170419693, -0.7640137672424316, -0.4554145634174347, -0.5059142112731934, 0.2709277868270874, -0.7236226797103882, -0.8436727523803711, -1.1375688314437866, 0.4999244213104248, 1.0962992906570435, -0.6539763808250427, 0.6417015790939331, 0.12417823076248169, -1.147244930267334, 0.4341735541820526, -0.6742525696754456, -1.842491626739502, 0.5002925395965576, -1.314946174621582, 0.7337889671325684, -0.20500394701957703, 1.015745997428894, -0.4378499686717987, 1.5362578630447388, -2.0936570167541504, -1.7787578105926514, -1.2460360527038574, 0.06300058215856552, 0.8615137338638306, 0.34479719400405884, -0.4114643335342407, 1.0224210023880005, 0.04432431235909462, 0.11503087729215622, -0.22206272184848785, -0.3467716872692108, -0.4970429539680481, 0.39261046051979065, 0.6864289045333862, 0.6799143552780151, -0.10864060372114182, 0.5974313020706177, 0.4567897319793701, 0.9913081526756287, 0.31655386090278625, 0.7879747152328491, -0.42827627062797546, -0.33240923285484314, 0.15418297052383423, 0.9251081943511963, -0.6802759766578674, -0.6770353317260742, -0.25082919001579285, -0.6079650521278381, -0.8497382402420044, 0.21158337593078613, 0.6488760113716125, -0.9075374007225037, -0.5661208629608154, -0.5675837397575378, 0.19225968420505524, -1.1615839004516602, 0.4198000729084015, -0.7186654210090637, 0.43156853318214417, 0.7635360360145569, -0.28592759370803833, 0.26412832736968994, -0.5995623469352722, -0.14545243978500366, 0.6421065926551819, -0.29679831862449646, -0.5789757370948792, 1.01702082157135, 0.2513315975666046, 0.7968092560768127, -0.4995809495449066, 1.2685211896896362, 0.6093214154243469, -0.07727456092834473, 0.18313226103782654, -0.046551235020160675, 0.30963391065597534, 0.5012816786766052, -0.7312294244766235, -0.22051113843917847, -0.8205028772354126, 1.0748435258865356, 0.41716888546943665, -0.2250726968050003, -0.07706252485513687, 0.37989911437034607, -0.48920419812202454, 0.3428021967411041, 1.3149693012237549, -0.5533936619758606, -0.3951272666454315, 1.2746309041976929, 0.15814107656478882, -0.8903118968009949, 0.4452475607395172, 0.42504361271858215, 0.041505906730890274, 0.4312869906425476, 0.5619747042655945, 0.8654760122299194, -1.0385245084762573, 0.8412553668022156, -0.23324410617351532, 0.17062930762767792, 0.22248512506484985, -0.6623019576072693, -1.0256096124649048, 0.5052738785743713, -0.7062199115753174, -1.3068808317184448, 0.4561821222305298, -1.2537496089935303, -0.4520341455936432, 1.08985435962677, 0.04173281788825989, -0.860485851764679, 0.0076552219688892365, -0.10237318277359009, 0.21886394917964935, 0.11783698201179504, 0.4404812157154083, -0.3288162648677826, 1.004108190536499, 0.5201194286346436, 0.11478356271982193, -1.0659435987472534, -0.029179314151406288, 0.5856293439865112, -0.3311977982521057, 0.04787929728627205, -0.4379962384700775, 0.3600674569606781, 0.14134113490581512, -0.4134010970592499, 0.19885963201522827, -0.27340462803840637, 0.7525490522384644, 0.5072845220565796, -0.19970671832561493, 0.5194352269172668, 1.0495051145553589, 0.5483649969100952, -0.23383142054080963, -0.8017608523368835, -0.9285402894020081, 0.8024858236312866, -0.35323792695999146, 0.9488596320152283, 0.23793268203735352, 0.8369626998901367, 0.43390020728111267, -0.713815450668335, -0.4851430654525757, -0.2561603784561157, 0.6167307496070862, 0.2956751883029938, 0.4171808063983917, 0.5230752825737, -0.036773666739463806, -0.055322401225566864, -0.756004810333252, 0.5089231729507446, 0.8321793675422668, -0.07032047212123871, -0.20891474187374115, -1.0417160987854004, -0.512908935546875, -1.1549439430236816, 0.8365541696548462, 0.8985011577606201, -0.19905395805835724, 0.4084811210632324, -0.08961787819862366, -1.0517657995224, -0.09912106394767761, -0.23568998277187347, 0.22474870085716248, -0.3777795135974884, 1.3639806509017944, 1.3481314182281494, 0.5622035264968872, 0.7735907435417175, -0.5688654780387878, 0.2688462734222412, -1.0626981258392334, -0.026196330785751343, -0.8513465523719788, -0.09565550833940506, -0.20725658535957336], [0.64341139793396, 1.570115327835083, -2.3799538612365723, -0.20766355097293854, 1.294832706451416, 0.3770662546157837, 1.895882248878479, -0.4497687816619873, 0.8106083869934082, -0.43860843777656555, -0.08846757560968399, -0.5425769090652466, -0.11808886379003525, 1.2326531410217285, 0.3333527743816376, 0.30989205837249756, 0.41617491841316223, -0.4036792814731598, 0.9150791764259338, 0.544759213924408, 0.0428340919315815, 0.15808439254760742, -0.030563991516828537, -0.08599084615707397, -0.15375222265720367, 0.39716511964797974, -0.40240374207496643, -0.9258700013160706, -1.1635596752166748, -1.0998413562774658, 0.563607394695282, -0.6598276495933533, 0.3704122006893158, -0.1546253263950348, -0.9439429640769958, -0.6721351742744446, 1.5952661037445068, 1.1592134237289429, -0.2906032204627991, 0.6754084229469299, 2.26023006439209, 0.5520356297492981, -0.09498022496700287, -1.5657063722610474, -0.1848682314157486, -0.501666247844696, 1.0940794944763184, -0.9447306394577026, -0.21771414577960968, -0.7343745231628418, 0.6988270878791809, -1.4091023206710815, 0.9788952469825745, 1.0327709913253784, 1.069847583770752, -0.42958077788352966, 0.6352008581161499, 0.5887093544006348, -0.08928465843200684, -0.5323191285133362, 0.6704968810081482, -0.672578752040863, -0.6303380727767944, 0.6333426833152771, -0.14509733021259308, 0.3065429925918579, -0.22597146034240723, 0.28994232416152954, 0.23435179889202118, -0.13033165037631989, 0.971039891242981, 0.08946263790130615, -0.37100526690483093, -0.3887863755226135, -0.9852781891822815, -0.025176892057061195, 0.38491687178611755, 0.5959635376930237, 0.3990517258644104, 0.3656938672065735, -0.5855558514595032, -0.05568584427237511, 0.8035316467285156, 0.2013394981622696, 0.3430441617965698, 0.19394540786743164, 0.23277536034584045, -0.9583917260169983, 0.02428482100367546, 1.8534228801727295, 0.8360955715179443, -1.0281955003738403, 0.4284622371196747, -1.3584930896759033, 0.4500448703765869, -0.3433689773082733, 0.3352554440498352, -0.6475440263748169, -0.37571021914482117, -0.48965612053871155, -0.5674890279769897, -0.8347620368003845, 0.2314804643392563, 0.6193720698356628, -0.2345198541879654, 0.9630982279777527, 0.21502141654491425, 0.4381822347640991, -0.8180912137031555, -0.4374167323112488, -0.1488141119480133, 1.387342095375061, -0.5049489736557007, -0.9381967186927795, -0.24473436176776886, 0.632373571395874, 1.4519315958023071, -0.22516244649887085, 0.8847128748893738, 0.6828731894493103, -1.0860438346862793, 0.3787602484226227, -0.13326534628868103, 1.1402226686477661, 0.5706298351287842, 0.2901248633861542, -0.11401631683111191, -0.1088109090924263, 0.7013629078865051, -0.26044467091560364, -0.253277450799942, -0.21231433749198914, -0.04890318959951401, 0.698821485042572, -1.035901427268982, 0.8199664354324341, 0.29992273449897766, -0.5544363856315613, -0.08563581854104996, -0.8318625092506409, 0.6543670296669006, 0.8541682958602905, -0.41747868061065674, -0.4843110144138336, 0.13648462295532227, -0.10755252838134766, 0.7315843105316162, -0.17029596865177155, -0.33406075835227966, 0.11084713786840439, -0.7644896507263184, 0.135148286819458, -0.11755838245153427, 0.8518868684768677, -0.3623327910900116, 0.4628693163394928, 0.6945244073867798, 0.2759771943092346, 0.5703003406524658, 0.29204970598220825, 0.7296308279037476, 0.601745069026947, -1.60890531539917, 0.7969928979873657, 0.41741570830345154, -0.1578567624092102, -0.025101976469159126, 0.9907873272895813, -0.5596681833267212, 0.9559909701347351, -0.8596972823143005, -0.44601160287857056, -0.5541794300079346, 0.8505552411079407, 0.5075049996376038, -0.05957465618848801, 1.556729793548584, -0.9571190476417542, -1.236610770225525, -1.4160327911376953, 0.23872312903404236, -0.2390955537557602, 0.7793104648590088, -0.402624249458313, 1.0989269018173218, -0.4453539252281189, 0.5302866697311401, -0.7763224244117737, -0.47356313467025757, -0.6982179880142212, -1.7384722232818604, 0.11467564851045609, -0.9892275333404541, 0.1632724404335022, -0.6213954091072083, -1.3032549619674683, 0.15439976751804352, -0.6589235067367554, -0.8456733226776123, -0.12613166868686676, -0.7272357940673828, -0.4035152494907379, -0.6006746292114258, -0.31693196296691895, -0.5470706820487976, 0.46204349398612976, -1.5919421911239624, 0.9401187300682068, -0.5306540727615356, -0.2619374692440033, 1.165071725845337, 0.037979625165462494, -0.5997238159179688, 0.9831306338310242, -0.20786091685295105, -1.942940354347229, 0.8318004012107849, 0.3665217161178589, 0.002054535783827305, 0.039468128234148026, 0.3114215135574341, 0.2922791838645935, 0.29339784383773804, -0.06697140634059906, 0.7890557050704956, -0.8966383337974548, -0.5807870626449585, -0.7837967276573181, -0.2733236253261566, -0.19353355467319489, -0.7144401669502258, -1.7830497026443481, 0.45258286595344543, 0.8854519724845886, -1.166649341583252, 0.22203916311264038, -0.11631809175014496, 0.13806301355361938, 0.9116194248199463, 0.16948623955249786, 0.10826696455478668, 1.2850592136383057, -0.07417996972799301, 0.11393444240093231, -0.7269124984741211, 0.43084168434143066, 0.841117799282074, -0.8760697841644287, 0.3894989490509033, 1.5577127933502197, 1.221795678138733, 0.033815838396549225, 0.3491949439048767, -0.15446922183036804, -0.17002707719802856, -1.481092095375061, -0.2781606912612915, 0.06096870079636574, -0.2639804184436798, 1.352034330368042, 1.3058173656463623, -1.114467978477478, -0.11464449763298035, -0.5130842328071594, 0.2484373152256012, -0.4910653829574585, -0.4837383031845093, 0.11995182186365128, 0.28010931611061096, 0.41924992203712463, -0.11456158757209778, 0.1269705593585968, -0.07992954552173615, 1.440900206565857, -0.3253876566886902, 0.6375315189361572, -0.6764269471168518, 0.12189915776252747, 0.04797247052192688, 0.39821550250053406, 0.20498710870742798, -0.7310382127761841, -0.40346869826316833, -0.25759345293045044, 1.0735012292861938, 0.1677628755569458, -0.004059943836182356, -0.099611796438694, 0.01673368364572525, -0.09020847827196121, 0.5272623300552368, 0.5357227325439453, -0.6365352272987366, 0.5361196398735046, 0.4051108956336975, 0.3627333641052246, 0.48470616340637207, -0.9247918128967285, -1.066579818725586, -0.03904607146978378, 0.38177743554115295, 1.3266639709472656, 0.8360105156898499, 2.066239595413208, -0.4926638603210449, -0.055092014372348785, 0.08728604018688202, -0.5888412594795227, 0.15193773806095123, -0.43292421102523804, -0.7833814024925232, -0.2868906557559967, -0.2825011909008026, 0.0819924995303154, -0.10085134208202362, 0.25734543800354004, -0.9087819457054138, 1.2313144207000732, 0.8698419332504272, -0.8068905472755432, -1.011374831199646, 0.22304727137088776, -0.1600121706724167, -0.22020624577999115, 0.7246760725975037, 0.5632186532020569, -1.2478028535842896, -0.3241916298866272, 0.05961981788277626, -0.2636469304561615, 1.2858258485794067, -0.036036133766174316, 0.7740305662155151, -1.5499730110168457, -0.791161060333252, -0.2756786346435547, 1.7882447242736816, 0.13474738597869873, -0.2732248306274414, -1.1676859855651855, 0.43026840686798096, -0.2289159893989563, -0.017018718644976616, -0.589332103729248, 0.9104899168014526, -0.17721745371818542, -0.92322838306427, -0.24310630559921265, 0.14978142082691193, 0.8329001069068909, -0.0686754658818245, 0.07498400658369064, -0.38262441754341125, -0.9972319006919861, -0.39089956879615784, 0.2897622585296631, 0.5639921426773071, 0.501050591468811, 0.06298313289880753, -0.7193618416786194, 1.1758642196655273, 0.026279989629983902, 0.041797950863838196, -1.4917542934417725, 0.766016960144043, 0.5415835976600647, 1.02644944190979, 0.17776739597320557, 0.12015141546726227, 0.057278845459222794, 0.13975980877876282, 0.09646786749362946, 0.05413876846432686, 0.8469012975692749, 0.6555770039558411, 0.21198707818984985, -0.1109849140048027, 0.26581868529319763, -0.29706430435180664, -0.7082566618919373, -0.03971129283308983, 0.4174981415271759, -0.16262437403202057, -0.652651309967041, 1.1578893661499023, 0.5965207815170288, -0.09913629293441772, -0.19600793719291687, -0.8387560844421387, 0.9748626351356506, 0.5473563075065613, 0.31856539845466614, -0.3130817711353302, 0.14395855367183685, 0.5050578117370605, -1.2985098361968994, -1.1948680877685547, -0.07371237874031067, -0.06381309032440186, 1.0508919954299927, -0.7087392807006836, -0.3570118546485901, -0.459884911775589, 0.12343651801347733, 0.2681947946548462, 0.35049182176589966, 0.3839808702468872, -0.11355414986610413, 0.5395309329032898, 0.49029502272605896, 0.2750152051448822, 0.8186760544776917, -1.1945127248764038, -0.23410959541797638, 0.08896201103925705, -0.036659907549619675, 0.3702850043773651, 0.07587169855833054, -0.4427487254142761, -0.6881034970283508, -1.1380174160003662, -0.681529700756073, -0.46081802248954773, -0.16372275352478027, 0.6073569059371948, 0.053462106734514236, 0.6109517216682434, 0.9844642877578735, -0.17425592243671417, -1.0598456859588623, 0.16896870732307434, 0.3867478668689728, -0.15421515703201294, -0.5543391108512878, 0.2679412364959717, 0.3001592755317688, -0.16599290072917938, 0.6518869400024414, 0.21470879018306732, 0.26101574301719666, -0.4928547441959381, 0.0032675843685865402, -0.20754162967205048, 0.5480153560638428, 0.36161330342292786, 1.2308690547943115, 1.0329921245574951, -0.39942485094070435, -0.7343346476554871, 0.34271883964538574, -1.0352730751037598, 0.1821257472038269, 0.7233229875564575, 0.154851496219635, 1.2657513618469238, -2.3131308555603027, -0.31101077795028687, 0.7105907201766968, 0.5811262726783752, 0.3070676624774933, 0.9796205759048462, -0.6214229464530945, -0.43708154559135437, 0.3001025915145874, -0.009408208541572094, 0.12798725068569183, 0.31573641300201416, 0.8232522010803223, -0.4934806823730469, 1.4401919841766357, -0.481979101896286, 0.5123002529144287, -0.7971675992012024, -0.5558621883392334, 0.2464754283428192, -0.3430304527282715, 0.3791757822036743, 0.6993764042854309, -0.45195239782333374, 0.6956620216369629, -0.32160335779190063, -0.5903260111808777, 0.6609339118003845, 0.06376725435256958, 0.08986793458461761, 0.1985013633966446, -0.2638345956802368, -0.40296095609664917, -0.7074083685874939, -0.7875151634216309, 0.292581707239151, -0.15059636533260345, -0.785499632358551, -0.19623281061649323, -1.1917853355407715, -0.28617429733276367, 1.2810734510421753, 1.2721561193466187, 0.20454439520835876, 0.4552127718925476, 0.5660194158554077, -0.05390060320496559, 0.01604606583714485, 0.41963934898376465, 0.05449764057993889, 0.4761029779911041, -0.29266926646232605, -1.7860993146896362, -0.6882767677307129, 0.17179086804389954, 0.9544302225112915, 0.1394777148962021, 0.7736148834228516, 1.3297439813613892, 1.3067539930343628, -0.13300779461860657, -0.8727728128433228, 0.5022556781768799, -0.428089439868927, 0.5439766049385071, 0.29181236028671265, -0.8228946924209595, -0.6624089479446411, -0.37941867113113403, -1.3115613460540771, -0.02506292425096035, -0.36305466294288635, -0.992130696773529, 0.5158865451812744, 0.18550662696361542, 0.011038318276405334, 0.7626363039016724, -0.5750333666801453, 0.4722149670124054, 0.20010288059711456, -1.0335556268692017, -1.1149959564208984, 0.5306062698364258, -0.24266766011714935, 0.8372036814689636, -0.8977805376052856, 0.6483702063560486, 0.324191153049469, -1.015734076499939, -0.13746358454227448, 0.3506641089916229, 1.0000793933868408, 0.5330843925476074, 0.2580786645412445, -0.3487539291381836, 0.32373908162117004, -0.5705750584602356, -0.9663158655166626, -0.6185030341148376, 0.8808305263519287, 0.29278600215911865, -0.6844604015350342, -0.009617868810892105, -0.5177854299545288, -0.4556201994419098, -0.5717213153839111, -0.27886009216308594, 0.482713907957077, 0.6321762800216675, -0.22946101427078247, -0.48359179496765137, -1.0434001684188843, -0.7676223516464233, -0.5642738342285156, -0.3104087710380554, 0.5567014217376709, -0.924872636795044, 0.18492642045021057, -0.13797754049301147, -1.0663585662841797, -0.0024744123220443726, -0.9725465178489685, 0.03691338375210762, -0.8242080211639404, -1.3487449884414673, -1.1823643445968628, 0.343816339969635, 0.9171589016914368, -1.2700529098510742, 1.0240001678466797, 0.23709791898727417, -1.1405755281448364, 0.4627934396266937, -0.4389668107032776, -1.5094190835952759, 0.16196538507938385, -1.635749340057373, 0.88900226354599, -0.3941853940486908, 0.7058009505271912, -0.0010381662286818027, 1.3731948137283325, -1.780730128288269, -0.7970592975616455, -0.8187347054481506, -0.11314325034618378, 0.8562906384468079, 0.678339958190918, -1.0445976257324219, 1.3783437013626099, 0.2783856987953186, -0.658521294593811, -0.5914177894592285, 0.09897775202989578, -0.6265415549278259, 0.18223899602890015, 0.33805254101753235, 0.635074257850647, 0.6186344623565674, 1.0328311920166016, -0.12031060457229614, 0.3384491205215454, 0.4484918713569641, -0.27785083651542664, -0.42439207434654236, -0.8513897657394409, -0.19189319014549255, 0.7523350715637207, -0.89447420835495, -0.17815515398979187, 0.05047640949487686, -0.9419651627540588, -1.3093727827072144, 0.5535127520561218, 0.997610330581665, -0.49827998876571655, 0.05834636092185974, -0.26772692799568176, 0.08871057629585266, -1.0760490894317627, 0.49583226442337036, -0.13159045577049255, -0.15093271434307098, -0.11707637459039688, -0.4200766682624817, 0.02747003547847271, -0.6604821085929871, 0.8565707206726074, 0.6092949509620667, -0.29367774724960327, -0.04268190264701843, 0.5555823445320129, 1.1577662229537964, 0.6561897397041321, -0.4945929944515228, 1.670647144317627, 1.2451694011688232, 0.12310352921485901, -0.017300600185990334, 0.9903951287269592, 0.043375127017498016, 0.9060891270637512, -0.6573111414909363, -0.28533393144607544, -0.47312724590301514, 0.47391942143440247, 0.301725834608078, -0.444497287273407, -0.4417150616645813, -0.20053403079509735, -0.4530530571937561, -0.12424960732460022, 0.568475604057312, -0.6244812607765198, -0.4157848060131073, 1.1906366348266602, -0.08320043236017227, -0.02424922026693821, 0.029999667778611183, 0.9980994462966919, -0.15730340778827667, -0.29316481947898865, 0.6386746764183044, 0.4095878303050995, -0.8651493787765503, 0.8734078407287598, 0.16049297153949738, 0.3154229521751404, -0.10802851617336273, -0.29256346821784973, -1.4584108591079712, 0.4565146565437317, -0.9079480171203613, -0.9035115242004395, 1.0714329481124878, -1.201509952545166, -0.8025083541870117, 0.4856034815311432, -0.12955647706985474, -0.5682606101036072, -0.5321288108825684, 0.08949725329875946, -0.05404660105705261, 0.2030395269393921, 0.5944226384162903, -0.6260056495666504, 0.9676778316497803, 0.13228261470794678, -0.10555455833673477, -0.17240886390209198, -0.5209750533103943, 0.9369432926177979, -0.5742694735527039, 0.3267407715320587, -0.35659855604171753, 0.37282073497772217, -0.24707360565662384, -0.9734219908714294, 0.15996184945106506, 0.20137269794940948, -0.20304806530475616, -0.21066312491893768, -0.3728933036327362, 0.5967699289321899, 0.19951121509075165, 0.34146398305892944, -0.8045132756233215, -0.5497006773948669, -0.6531245708465576, 0.29540854692459106, -0.5699556469917297, 1.1135841608047485, -0.5836142301559448, 1.1397318840026855, 0.16113115847110748, -0.5685351490974426, -0.45565250515937805, -0.3628218173980713, 0.17164576053619385, -0.3791961073875427, 1.0054529905319214, 0.4699237644672394, 0.12175624072551727, -0.5340004563331604, -1.0461636781692505, 0.49926239252090454, 0.4800092577934265, -0.20450779795646667, 0.268026202917099, -1.1860960721969604, -0.6419281959533691, -0.5393535494804382, 0.7195501327514648, 0.32628530263900757, -0.15933701395988464, -0.18629290163516998, 0.017247062176465988, -0.8425599932670593, 0.0849766805768013, 0.2404729276895523, 0.10283095389604568, 0.262391597032547, 0.9962970018386841, 1.707682490348816, 0.250308632850647, 0.08822053670883179, -0.16618764400482178, 0.9990584254264832, -0.4297357499599457, 0.10298764705657959, -0.7922431230545044, 0.05492985248565674, -0.1337910145521164], [0.03415742143988609, 1.7334480285644531, -1.9799940586090088, -1.1685237884521484, 1.395931601524353, 0.19966767728328705, 1.0289133787155151, -0.11009088158607483, 0.1986171454191208, -0.446150541305542, -0.049903083592653275, -0.21488697826862335, 1.1106592416763306, 1.3855317831039429, -0.0305120050907135, 0.3217240273952484, 0.5336903929710388, 0.06338631361722946, 0.6668434143066406, 0.8335056304931641, -0.6792657375335693, -0.44922035932540894, 0.09439938515424728, 0.5058587193489075, -0.4957827627658844, 0.5511695146560669, -0.8946033716201782, -0.5054042339324951, -1.3769947290420532, -0.12974373996257782, 1.3133355379104614, -1.5151126384735107, -0.19475236535072327, 0.25977712869644165, -1.2517898082733154, -0.5810561180114746, 1.380081057548523, 0.18051636219024658, 0.3671732246875763, 0.21706411242485046, 1.647964358329773, 0.4386036992073059, -0.14553016424179077, -1.7963716983795166, 0.1199524998664856, 0.3291529715061188, 0.9537290334701538, -1.0498770475387573, 0.47756659984588623, -0.8862125873565674, 0.9642132520675659, 0.13827060163021088, 2.0055665969848633, 0.655284583568573, 0.6990712285041809, 0.14931242167949677, 0.9179575443267822, 0.26008978486061096, 0.7855579257011414, -0.22212837636470795, 1.2872675657272339, 0.4160647690296173, -0.19372905790805817, 0.5318934321403503, 0.16265250742435455, -0.1222682073712349, -0.7009243965148926, 0.4120591878890991, 0.19221465289592743, -0.36388662457466125, 0.9670823216438293, 0.21777766942977905, -0.9966732859611511, 0.14458611607551575, -1.1829222440719604, 0.5655443668365479, 1.1229575872421265, 0.7213889360427856, 0.01871398650109768, 0.7361350059509277, -0.5539096593856812, -0.15083637833595276, 0.8125697374343872, -0.43176406621932983, 0.19372493028640747, 0.4990503787994385, 0.3761744797229767, -0.679690957069397, -0.5346507430076599, 1.0967864990234375, 0.1407819241285324, -0.21350543200969696, 0.6772711873054504, -0.32918745279312134, 0.3914961516857147, -0.4314715266227722, 0.7998514771461487, -1.1336498260498047, -0.8860716819763184, -0.44146308302879333, -0.9511108994483948, -0.7184846997261047, 0.35910478234291077, -0.06139635667204857, 0.22318623960018158, 1.14906907081604, 0.30494239926338196, -0.07895947247743607, -0.48377007246017456, 0.4566732347011566, -0.3361426293849945, -0.44798004627227783, -0.8607734441757202, -0.9200814366340637, -0.12358454614877701, 0.1666170209646225, 1.4530787467956543, 0.2359359860420227, 1.1493850946426392, 0.7098715305328369, -0.5780335664749146, 0.7476620078086853, 0.22115398943424225, 0.6871505379676819, 0.7092978954315186, 0.8039474487304688, -0.27599450945854187, -1.0953348875045776, 0.6524115800857544, -0.8966850638389587, 0.43657147884368896, -0.43432390689849854, 0.2553199827671051, 1.0390212535858154, -0.6389173269271851, 0.6956237554550171, 0.4303245544433594, -0.6358108520507812, 0.009701847098767757, 0.37482360005378723, 0.10822486877441406, -0.6099177598953247, -0.2313316911458969, -0.37899500131607056, 0.6872001886367798, -0.7211748361587524, 0.6459826231002808, -0.510354220867157, -0.8854093551635742, -0.4448501765727997, -0.7759844660758972, 0.6911142468452454, 0.444286584854126, 0.9645032286643982, 0.4487100839614868, -0.4216158092021942, 0.2626444399356842, 0.17869329452514648, 0.3547215163707733, 0.036728642880916595, 0.8236657977104187, 0.2580763101577759, -0.526233434677124, 0.9449905753135681, -0.007571886293590069, 0.0019253294449299574, 1.0537785291671753, 0.2271183729171753, -0.18075236678123474, 0.9090803861618042, -0.5705404281616211, -0.4388093650341034, -0.5895918607711792, 0.577724814414978, 0.41047200560569763, 0.1034160628914833, 1.3746001720428467, -1.2177692651748657, -1.3644837141036987, -0.8079995512962341, 0.5895416736602783, -0.21614153683185577, 0.38463732600212097, 0.22526098787784576, 1.0799815654754639, -0.8584200143814087, 0.47622787952423096, 0.06072114408016205, -0.8411048650741577, -1.0762524604797363, -0.4097662568092346, -0.37287867069244385, -0.7797958254814148, 0.07673468440771103, -0.23392172157764435, -0.56235271692276, 0.4008461534976959, -0.8544020056724548, -0.7309345602989197, 0.43007346987724304, -0.3841441869735718, -0.14227831363677979, -0.5944385528564453, 0.4494234323501587, -0.5705199837684631, 0.4546012878417969, -1.5211796760559082, 1.2993844747543335, -0.7496945261955261, -0.07760431617498398, 0.9999907612800598, 0.0077355182729661465, -0.4617611765861511, 0.6109358668327332, -0.8044702410697937, -1.017378807067871, 0.6688162684440613, 0.24329252541065216, -0.4070567190647125, 0.35658812522888184, 0.4826072156429291, 0.5779634714126587, 0.10198204964399338, 0.27065590023994446, 0.8501660823822021, -0.13188529014587402, -1.3996373414993286, -1.2821334600448608, -0.6951904892921448, 0.19467154145240784, -0.272449791431427, -1.0074455738067627, 0.9785897135734558, 0.5096851587295532, -1.2629557847976685, 0.2719125747680664, 0.5105331540107727, -0.1197512149810791, 0.4767060875892639, 0.704275906085968, 0.13263775408267975, 0.8977181315422058, -0.10080656409263611, 0.09664496034383774, -0.9794387817382812, 0.3309182822704315, 0.4923034906387329, -0.5296226739883423, 0.4470023810863495, 0.8578778505325317, 0.5390238761901855, 0.537630558013916, 0.06577829271554947, -0.23163379728794098, -0.005764790344983339, -0.9213749170303345, -0.6102089881896973, 0.41008561849594116, -0.6297637224197388, 0.9136307239532471, 0.8468473553657532, -1.3704936504364014, -0.5119035840034485, 0.07902127504348755, 0.43257787823677063, -0.5028973817825317, -0.8527795076370239, -0.45955032110214233, -0.1770625114440918, -0.3611309826374054, -0.028076136484742165, 0.6626242995262146, -0.1870766431093216, 0.4827907085418701, -0.04497770965099335, 0.05853637680411339, -0.059287458658218384, 0.11305735260248184, 0.366995632648468, 0.6079416871070862, -0.49162018299102783, -0.5910335779190063, -0.3080071210861206, -0.34619736671447754, 0.8045089840888977, 0.24413762986660004, -0.5488672256469727, 0.6630406975746155, 0.11720733344554901, -0.8564557433128357, 0.3690645098686218, 0.43067535758018494, 0.04344749450683594, 0.513870358467102, 0.27220848202705383, -0.01727904938161373, 1.0397685766220093, -1.2795233726501465, -1.01981520652771, -0.44748029112815857, 1.1636583805084229, 1.2613242864608765, 0.7481783032417297, 1.3358386754989624, -0.529545247554779, -0.045909103006124496, -0.138161301612854, -0.5639477968215942, -0.3187635838985443, -0.3181152045726776, -0.5653911232948303, -0.3549869656562805, -0.23078329861164093, 0.20003128051757812, 0.20045430958271027, 0.778279721736908, -0.1333507001399994, 0.5484133958816528, 1.0005613565444946, -0.4000333249568939, -0.7849438786506653, -0.14063666760921478, 0.09080548584461212, -0.24312031269073486, 0.9625166654586792, 0.8784067034721375, -1.6848084926605225, -0.25487303733825684, -0.06903278827667236, -0.11576655507087708, 0.41132110357284546, 0.352102130651474, 0.13272541761398315, -1.1060541868209839, -1.4046623706817627, -0.10193236172199249, 0.7355469465255737, 0.680045485496521, -0.12317163497209549, -0.9387986063957214, 0.5341102480888367, 0.5950049161911011, 0.4160023629665375, -1.116257905960083, 0.8708517551422119, -0.24035261571407318, -0.8385961055755615, -0.4300338625907898, 0.4907485246658325, 0.1754629760980606, -0.8103151321411133, -0.03811601921916008, -0.0850834771990776, -0.498752623796463, -0.21284781396389008, 0.5845053195953369, 0.3278428316116333, 0.6378841400146484, 0.5227402448654175, 0.25662925839424133, 0.7869310975074768, -0.029167290776968002, -0.42557626962661743, -1.7970725297927856, 1.1553136110305786, 0.29714280366897583, 0.7848827838897705, -0.32488664984703064, -0.013573420234024525, -0.10876158624887466, 0.24491405487060547, 0.19188281893730164, 0.10457026958465576, 1.2114697694778442, 0.39065200090408325, -0.3741593658924103, -0.3609384000301361, 0.11151781678199768, 0.009405188262462616, -0.8966290950775146, -0.06994659453630447, 0.07014282047748566, -0.5558176040649414, -0.4141494333744049, 1.1544344425201416, 0.02698015794157982, -0.5235650539398193, -0.34097209572792053, -0.0071661584079265594, 1.0422121286392212, 0.24331769347190857, 0.6254961490631104, -0.4282304644584656, -0.41901102662086487, -0.6039671301841736, -1.4047266244888306, -0.8626607060432434, -0.12104359269142151, 0.03219960629940033, 0.47831353545188904, -0.7918252348899841, -0.18249818682670593, -0.3026866316795349, 0.44710248708724976, 0.04851240664720535, -0.2041645050048828, 0.6114306449890137, -0.1857120841741562, 0.46139615774154663, 0.02754388377070427, 0.3886643350124359, 1.6166772842407227, -0.3150966167449951, -0.4040070176124573, -0.16409434378147125, -0.03148798272013664, 0.341047465801239, -0.6837354302406311, 0.3362218737602234, 0.232265442609787, -0.7936685085296631, -0.8422203660011292, -0.6819696426391602, 0.15144822001457214, 1.43013334274292, 0.4066871106624603, 0.2920514941215515, 0.16443774104118347, -0.47574615478515625, -1.3516377210617065, 0.03981916233897209, 0.09306053072214127, -0.3742313086986542, -0.597144603729248, 0.29521453380584717, 0.37123605608940125, -0.08913151919841766, 0.7446158528327942, 0.013975168578326702, 1.0344358682632446, 0.18933351337909698, -0.35675981640815735, -0.03429656848311424, 0.36915507912635803, 0.7202798128128052, 2.3207006454467773, 0.7450007796287537, -0.7355366349220276, -0.7955295443534851, 0.9183914661407471, -0.8058028221130371, 0.13575133681297302, 0.5707839727401733, 0.3451191484928131, 1.2702900171279907, -1.9079500436782837, -1.3989354372024536, 0.5316556692123413, 0.40333494544029236, 0.7152993083000183, 0.6379308104515076, -0.2013482302427292, -0.8211362361907959, 0.5473736524581909, 0.5772196650505066, 0.2941170334815979, 0.010804190300405025, -0.13307426869869232, 0.4420557916164398, 0.21734605729579926, -0.5097896456718445, 0.33437737822532654, -0.24945279955863953, -0.23822364211082458, -0.03184674307703972, -0.17922019958496094, 0.5121146440505981, 0.3115372359752655, -0.2238835096359253, 1.1903672218322754, -1.0884029865264893, -0.3010968565940857, 0.12819893658161163, -0.6812649965286255, 0.3039640486240387, -0.6893632411956787, -0.6594224572181702, -0.18027940392494202, -0.9804227352142334, -0.482356458902359, 0.13212920725345612, -0.8273394703865051, -0.5034433007240295, -0.6699502468109131, -0.4734022915363312, -0.11630527675151825, 0.6423763036727905, 1.4794197082519531, 0.35421431064605713, 0.6830573081970215, 0.777426540851593, 0.06924954801797867, -0.6724012494087219, 0.242100790143013, 0.8081682920455933, -0.2636494040489197, -0.0642714574933052, -1.3106056451797485, -0.7304772734642029, 0.516628086566925, 0.30748099088668823, 0.08643615990877151, 0.26206010580062866, 1.2756426334381104, 1.0251641273498535, 0.07170513272285461, -0.5341665744781494, 0.07517847418785095, -1.0385304689407349, 0.24590161442756653, 0.4317795932292938, -0.707737147808075, -0.3372374176979065, -0.5366159081459045, -1.4552689790725708, 0.8468238711357117, -0.4320921003818512, -0.8799867033958435, 0.8278507590293884, -0.34044742584228516, -0.05580886825919151, -0.027090713381767273, -0.3384077250957489, 0.6600168943405151, 0.18286758661270142, -0.5518956780433655, -1.385360598564148, 0.3377041220664978, 0.29227349162101746, 0.18020635843276978, -0.022613057866692543, 0.3049810528755188, 0.7092686295509338, -0.43337273597717285, -0.3077583909034729, 0.12867343425750732, 0.4785797894001007, 0.9843782782554626, -0.4437822699546814, -0.5576605796813965, 0.006378148682415485, -1.0618510246276855, -0.595262885093689, -0.06001288816332817, 0.029377838596701622, -0.24821223318576813, -0.4822903275489807, -0.1758250892162323, -0.5170972347259521, -0.12267951667308807, -0.31751877069473267, -0.11210598051548004, 1.0187958478927612, 0.4153558909893036, -0.7898771166801453, 0.10567692667245865, -0.2752780020236969, -0.7769407629966736, -0.5185586214065552, -0.40180325508117676, 0.8854281902313232, -1.0400413274765015, -0.41598621010780334, 0.06026490777730942, -0.18805748224258423, 0.03433358296751976, -0.3476107120513916, 0.4406100809574127, -1.3871036767959595, -1.59507155418396, -0.9404652714729309, 0.2575265169143677, 1.1289142370224, -1.2478885650634766, 0.6209105253219604, 0.6544348001480103, -1.7720956802368164, 0.2104388326406479, 0.08331736922264099, -1.0955394506454468, 0.3027385175228119, -1.262057900428772, 0.44029250741004944, -0.6910341382026672, 0.34550487995147705, -0.8290786743164062, 1.6756452322006226, -1.329634666442871, -1.5132980346679688, -0.8329538702964783, 0.23317685723304749, 0.23955097794532776, 0.904935359954834, -0.3236527442932129, 1.071104645729065, 0.6441947817802429, -0.6639665961265564, -0.6577615737915039, 0.47331926226615906, -0.703499436378479, 0.4007827043533325, 0.15465085208415985, 0.658881425857544, 0.041813068091869354, 0.7695144414901733, -0.5441446900367737, 0.5774179100990295, -0.3789968490600586, 0.11806227266788483, -0.08404051512479782, -0.47203195095062256, -0.09892837703227997, 0.7385664582252502, -0.8535171151161194, -0.46472516655921936, 0.1939416229724884, -0.7119271159172058, -1.4829089641571045, 0.9643808603286743, 0.940613329410553, -1.0347449779510498, -0.6129740476608276, 0.0054040467366576195, 0.15649324655532837, -0.9159114956855774, 0.5395856499671936, -0.28964483737945557, 0.2091449499130249, 0.18842415511608124, -0.30322694778442383, -0.421539843082428, -0.5360214710235596, 0.09770329296588898, 0.7548836469650269, 0.1970256268978119, -0.33412960171699524, 1.2191247940063477, 0.09017933905124664, 0.01055048406124115, -0.9579993486404419, 1.0060763359069824, 0.743845522403717, 0.08495037257671356, -0.005997165106236935, 0.06939494609832764, 0.3512006402015686, 0.8589085340499878, -0.6952931880950928, 0.371837854385376, -1.0889525413513184, 0.22625049948692322, 0.7763397693634033, -0.30277132987976074, -0.6579011082649231, -0.5132361650466919, -0.4962421655654907, 1.0589812994003296, 0.1824735850095749, -0.5707535743713379, 0.22600245475769043, 1.0705931186676025, 0.11533469706773758, -0.29138249158859253, 0.12025072425603867, 0.24235519766807556, -0.04121798276901245, 0.02565292827785015, -0.12848950922489166, 0.645168125629425, -0.6650627851486206, 0.36106815934181213, -0.09931507706642151, 0.26488766074180603, -0.2343471497297287, -0.8665980696678162, -1.2170344591140747, 0.27851495146751404, -0.9117846488952637, -1.138424038887024, 0.7500053644180298, -1.3882728815078735, -0.7929147481918335, 0.7020565867424011, -0.1370769888162613, -0.1157894879579544, -0.1488790214061737, -0.3365374207496643, -0.4631408452987671, 0.16981269419193268, 0.915507435798645, -0.6295821666717529, 1.007845401763916, 0.8215022087097168, 0.2875814437866211, -0.8455143570899963, -0.5685102939605713, 0.5827562212944031, 0.2580145299434662, -0.12590545415878296, -0.13364915549755096, 0.5929115414619446, -0.14375776052474976, -0.23531818389892578, 0.8137637972831726, -0.05068175867199898, 0.3675772249698639, -0.09467465430498123, -0.607789158821106, 0.5365492105484009, 0.6508463025093079, 0.3115353584289551, -0.7329890727996826, -1.2571684122085571, -1.1407780647277832, 0.5241327881813049, -0.3518679738044739, 0.7317033410072327, 0.2420216202735901, 1.1740925312042236, 0.10115151107311249, -0.30626335740089417, 0.05394405871629715, -0.8546609878540039, 0.06324919313192368, 0.03577083349227905, 0.8919398188591003, -0.48580998182296753, -0.02086859568953514, -0.2054206281900406, -0.9044468998908997, 0.4392491281032562, -0.0927312895655632, 0.457115113735199, -0.04091225937008858, -0.7902714014053345, -0.5803123712539673, -0.824342668056488, 0.46207043528556824, 1.7866723537445068, 0.3558836877346039, 0.27800485491752625, -0.19154776632785797, -1.0008008480072021, 0.31008824706077576, 0.2756316065788269, 0.4581854045391083, -0.18339720368385315, 0.7008524537086487, 1.0261950492858887, 0.19008170068264008, 0.7382199764251709, -0.41133546829223633, 0.4183002710342407, -0.40801557898521423, -0.23271270096302032, -0.47974464297294617, -0.05334112420678139, 0.21871834993362427], [0.41859233379364014, 1.9564801454544067, -2.356013536453247, -0.35427144169807434, 1.3553684949874878, 0.6586287617683411, 1.5047565698623657, -0.5197713971138, 0.7165552377700806, -0.2405809760093689, -0.1076102927327156, -0.7758241891860962, 0.27524808049201965, 1.400147557258606, 0.37667524814605713, 0.914047122001648, 0.7107900977134705, -0.18024270236492157, 0.8665611147880554, 1.1464332342147827, -0.18828698992729187, -0.32989010214805603, 0.057242922484874725, 0.17610864341259003, 0.3446492850780487, 0.8986542820930481, -0.40630778670310974, 0.3581670820713043, -0.8308984637260437, -0.7937400937080383, 0.17391328513622284, -0.07800880074501038, 0.16902200877666473, -0.3068075478076935, -1.1525466442108154, -0.8480618596076965, 1.9619638919830322, 0.937961220741272, 1.2989779710769653, 0.5737985372543335, 1.8460379838943481, -0.05101531744003296, 0.16922907531261444, -2.621666669845581, 0.2439166009426117, -0.22013744711875916, 0.628327488899231, -0.573144793510437, 0.5094385743141174, -0.3773147463798523, 0.9987568855285645, -0.5728431344032288, 1.0943584442138672, 0.540929913520813, 0.6596775650978088, -0.6406901478767395, 0.3188207149505615, 1.0960170030593872, 0.12152557075023651, -0.043320924043655396, 1.0511541366577148, 0.39464041590690613, -1.0372412204742432, 0.7481093406677246, -0.006951538845896721, -0.3447369337081909, 0.1592434048652649, 0.23160099983215332, 0.1717020720243454, -0.017886849120259285, 0.296039879322052, -0.5827378630638123, -0.3644658923149109, 0.06770764291286469, -0.8175718188285828, 0.39592593908309937, 0.8907937407493591, 1.0704323053359985, 0.33095693588256836, -0.15547338128089905, -0.3179163932800293, -0.20676273107528687, 0.49046406149864197, -0.20405273139476776, 0.46559450030326843, 0.7297629714012146, 0.7899459600448608, -0.35176438093185425, 0.2241184115409851, 1.3723475933074951, 0.8089106678962708, -0.2510131001472473, 0.5991971492767334, -0.21480907499790192, -0.250101238489151, -0.24610377848148346, 0.012885002419352531, -1.0623043775558472, -0.6779595613479614, -1.0533827543258667, -0.4307260811328888, -0.6411612033843994, -0.19010750949382782, 0.009510302916169167, -0.30484646558761597, 1.1789031028747559, 0.6342036724090576, 0.40144845843315125, -1.1337151527404785, 0.13017217814922333, -0.5030678510665894, 0.7968072295188904, -1.0773835182189941, -0.7134830355644226, -0.2335311472415924, 0.8403811454772949, 1.3181761503219604, -0.5543027520179749, 0.5819255113601685, 0.6181225776672363, -0.7811219692230225, 0.4115593731403351, -0.31653544306755066, 1.151572823524475, 0.8806987404823303, 0.763727068901062, -0.6388235688209534, -0.22404851019382477, 0.5170351266860962, 0.47180333733558655, -0.083842433989048, -0.7241384983062744, 0.0751766487956047, -0.17930705845355988, -0.6219104528427124, 1.3795301914215088, 0.00037564942613244057, -0.07322637736797333, 0.10309009253978729, -0.24811439216136932, 0.2872162163257599, -0.17759932577610016, -0.3429928719997406, -1.0596657991409302, 0.17870576679706573, -0.7131246328353882, 0.562129020690918, 0.18365749716758728, -0.5695406198501587, -0.11233774572610855, -1.4814571142196655, 0.8563281297683716, -0.358877569437027, 0.8577160835266113, 0.16529260575771332, 0.11236198991537094, 0.7026668190956116, 1.0582354068756104, 0.22033308446407318, -0.2024279683828354, 1.0011391639709473, -0.0729823037981987, -1.053565263748169, 0.8551155924797058, 0.3472033143043518, 0.026726311072707176, 0.8515254855155945, 0.6177075505256653, -0.41206058859825134, 1.0287305116653442, -0.8808794617652893, -0.7520983219146729, -0.6184867024421692, 0.6679604053497314, 1.2462979555130005, -0.9994481801986694, 1.5929913520812988, -0.7280726432800293, -0.7671019434928894, -1.6169525384902954, -0.08356087654829025, -0.011194592341780663, 0.9665279388427734, 0.01852094940841198, 1.0029628276824951, 0.024656057357788086, 0.7649442553520203, 0.05635199323296547, -0.3925635814666748, -0.9033961892127991, -0.6281908750534058, 0.44712334871292114, -1.1276237964630127, -0.19031843543052673, -0.2911069989204407, -1.1818876266479492, 0.4454405903816223, -0.7537552714347839, -0.8093227744102478, 0.2469158172607422, 0.024975750595331192, -0.6132460236549377, 0.10614029318094254, 0.8079543709754944, -0.8122594356536865, 0.3704902231693268, -1.3265647888183594, 0.7007449865341187, -0.35071051120758057, -0.2657291293144226, 0.9066363573074341, 0.197956845164299, -0.9959626197814941, 0.8414736390113831, 0.10025687515735626, -1.8820154666900635, 0.5182672142982483, 0.7639356851577759, -0.10133978724479675, 0.7447744011878967, 0.13922014832496643, -0.194532573223114, 0.5929774045944214, -0.04275834187865257, 0.7358137965202332, 0.1013033390045166, -1.5623691082000732, -0.9884749054908752, -0.10376647114753723, -0.3209475874900818, -0.26032838225364685, -1.0528470277786255, 0.9301160573959351, 0.7608629465103149, -1.13222074508667, 0.3402220606803894, 0.182060107588768, 0.149706169962883, 0.5900683403015137, 0.876614511013031, -0.28555870056152344, 1.137567400932312, -0.02421453408896923, 0.016283972188830376, -0.32736217975616455, 0.6496109366416931, 0.5841776132583618, -0.5580625534057617, -0.0030350368469953537, 1.0458356142044067, 1.2889626026153564, -0.10849804431200027, -0.0668095126748085, -0.37073904275894165, -0.0385703481733799, -1.155343770980835, -0.4623715579509735, -0.04802561551332474, 0.02145993337035179, 0.9089944958686829, 0.3151695132255554, -1.4154211282730103, 0.01191683765500784, 0.008633514866232872, 0.2678024470806122, 0.16264650225639343, -0.4146097004413605, -0.4111505150794983, -0.1993435174226761, 0.30724212527275085, 0.05911087244749069, 0.16657572984695435, -0.06230529397726059, 0.5471819639205933, -0.157894104719162, -0.7438116073608398, -0.9271214008331299, 0.013782620429992676, -0.24448499083518982, 0.8246548175811768, 0.5551515817642212, -1.1696860790252686, -0.32920897006988525, 0.1622808575630188, 0.8608046770095825, 0.6279216408729553, 0.10084139555692673, 0.7279794812202454, 0.1827200949192047, -0.2990398406982422, 0.9664241075515747, 0.7478869557380676, -0.2189239263534546, 0.1324673891067505, 0.22546043992042542, 0.3160777986049652, 0.9855666160583496, -1.4334369897842407, -0.6220727562904358, -0.14451701939105988, 0.4101840555667877, 1.2412794828414917, 1.0748519897460938, 0.9129382371902466, 0.0006776377558708191, -0.028473306447267532, 0.288083553314209, -0.9134028553962708, -0.3316405415534973, -0.7942031025886536, -0.5020414590835571, -0.3089936375617981, -0.6960024833679199, 0.3703644871711731, -0.12946780025959015, 0.17661598324775696, -0.12185588479042053, 0.5673843026161194, 1.5891389846801758, -0.8404045701026917, -1.0696548223495483, -0.19029678404331207, -0.1342155784368515, -0.8983986973762512, 0.7652752995491028, 1.4210493564605713, -1.6285663843154907, -0.13531048595905304, 0.5942860841751099, -0.7805489897727966, 0.9877657294273376, 0.16591890156269073, 0.2368330955505371, -0.6324003338813782, -1.0956963300704956, -0.46033158898353577, 2.116142988204956, 0.3086380958557129, 0.4371764063835144, -0.7932494282722473, 0.22341756522655487, -0.07190150767564774, -0.12229222804307938, -0.6430347561836243, 0.7105873823165894, -0.4266364276409149, -0.7962705492973328, -0.23778477311134338, 0.28468677401542664, 0.7030684947967529, -0.6822708249092102, -0.0790913999080658, -0.17963378131389618, 0.0625123381614685, 0.0366213284432888, 0.2622029781341553, 0.5620805621147156, 0.8781625628471375, -0.14659512042999268, 0.41165173053741455, 0.8864473700523376, -0.6806914806365967, 0.18587622046470642, -1.2749696969985962, 0.7289316058158875, 0.8503367900848389, 1.3156111240386963, 0.07480534166097641, -0.36835935711860657, -0.20323596894741058, 0.3421415686607361, -0.3647429645061493, 0.2317759096622467, 1.3208273649215698, 0.14325059950351715, 0.6053876280784607, -0.4500662684440613, -0.5166512727737427, 0.07274137437343597, -1.4762991666793823, -0.27256065607070923, 0.10870111733675003, -0.7247096300125122, -0.48209407925605774, 0.8439256548881531, -0.09214689582586288, -0.32608839869499207, -1.2285183668136597, -0.3658757209777832, 0.5201767086982727, 0.21333177387714386, -0.28622421622276306, -0.09617367386817932, 0.0705728530883789, 0.4162611961364746, -0.3929198384284973, -0.8636947870254517, -0.1403602957725525, 0.16490401327610016, 0.6941238045692444, -0.748900294303894, -0.6601961255073547, -0.5795566439628601, 0.44351810216903687, 0.4017145037651062, 0.06333741545677185, 0.3453013598918915, -0.6797975897789001, -0.2987706661224365, -0.31403616070747375, 0.05893855169415474, 1.3287872076034546, -0.6937127709388733, -0.2981456518173218, 0.40802958607673645, 0.04663674160838127, 0.5774327516555786, -0.5422605276107788, 0.3616841435432434, 0.03371860831975937, -0.5099676847457886, -0.19368764758110046, -0.6501607894897461, 0.16011841595172882, 1.3703618049621582, 0.5820488333702087, -0.039320558309555054, 0.5362800359725952, -0.3654828667640686, -1.3454967737197876, 0.3055587112903595, 0.35681354999542236, -0.575718104839325, -0.29079490900039673, 0.8154043555259705, 0.26881304383277893, -0.14874356985092163, -0.10224604606628418, -0.508133590221405, 0.8698720335960388, -0.24826695024967194, 0.18260519206523895, -0.1372537612915039, 0.43354424834251404, 0.22076287865638733, 1.0174566507339478, 0.9068028926849365, -0.9391087293624878, -1.1620774269104004, 0.20896115899085999, -0.7961083650588989, 0.3744187355041504, 0.8320257067680359, 0.3616398870944977, 1.0594465732574463, -1.5232164859771729, -0.9879397749900818, 0.16096176207065582, 0.12539327144622803, 0.82559734582901, 0.676574170589447, -0.6910673975944519, -0.7879905104637146, 0.08073966950178146, -0.08755791932344437, -0.06359340995550156, 0.36851802468299866, 0.3358919024467468, -0.10246606916189194, 0.5066074728965759, -0.9917138814926147, 0.3862382471561432, -0.2073945701122284, -0.309671014547348, -0.2632501423358917, -0.15829350054264069, 0.6047171950340271, 0.724132776260376, 0.40003445744514465, 1.7109146118164062, -1.0737653970718384, -0.7185673117637634, 0.16976402699947357, -0.7080277800559998, -0.08797486126422882, -0.5667889714241028, -0.8095342516899109, -0.16374877095222473, -0.3942543566226959, -0.6698552370071411, 0.881659984588623, -0.9186072945594788, -0.5452669858932495, -0.23960155248641968, -1.0485233068466187, 0.5052751898765564, 1.157447338104248, 1.4162424802780151, 0.554251492023468, 0.16995802521705627, 0.7769246101379395, -0.06510618329048157, -0.7520589232444763, 0.7915365099906921, -0.043109651654958725, 0.18536235392093658, -0.18620198965072632, -1.2787624597549438, -0.5090522766113281, 0.2094583362340927, 0.5217241644859314, 0.4006807208061218, 1.519712209701538, 1.1973423957824707, 0.3660804331302643, -0.2498936802148819, -0.8616556525230408, 0.0905376523733139, -0.7275328636169434, 0.4178333282470703, 0.27262943983078003, -0.36476069688796997, -0.31032487750053406, 0.008057000115513802, -0.782768726348877, 0.07594241946935654, -0.4691585898399353, -1.4118868112564087, 1.0440982580184937, -0.06954535096883774, 0.45185884833335876, 0.7732391357421875, -0.45251622796058655, 0.18884605169296265, -0.036624860018491745, -1.090673565864563, -1.205601453781128, 1.058562159538269, 0.3536613881587982, 0.37037351727485657, -0.3201519250869751, 0.5216547846794128, 0.49793902039527893, -0.2808299958705902, 0.033399492502212524, 0.40121692419052124, -0.1713523417711258, 0.5205663442611694, -0.13165470957756042, -0.7397119402885437, 0.4147411584854126, -0.44710132479667664, -0.5775741338729858, -0.14954774081707, 0.9394530653953552, -0.11583861708641052, -0.6554795503616333, -0.39670512080192566, -0.5103477835655212, -0.006226172670722008, -0.7092977166175842, -0.3825792670249939, 0.5958938598632812, 0.018705975264310837, -0.6383472084999084, 0.028827248141169548, 0.042483020573854446, -0.5210777521133423, -1.2413944005966187, 0.11680828034877777, 0.3997820019721985, -1.43035888671875, 0.46793463826179504, 0.2936672866344452, -0.5853136777877808, 0.2126464694738388, -0.8773190975189209, 0.37420862913131714, -1.8826137781143188, -1.6172600984573364, -1.1002978086471558, -0.019694378599524498, 0.7271712422370911, -0.29764115810394287, 0.7955940961837769, 0.714303195476532, -0.8131667971611023, -0.5628316402435303, -0.6719266176223755, -1.1169458627700806, -0.40406274795532227, -0.7215739488601685, 0.6941518187522888, -0.40757694840431213, 0.3477558195590973, -0.3009045720100403, 1.366440773010254, -1.5391911268234253, -1.793342113494873, -0.9819908142089844, -0.1047217845916748, 0.6168574094772339, 0.42381224036216736, -0.6541627049446106, 1.1140533685684204, 0.27844133973121643, -0.38693466782569885, 0.2193719893693924, 0.17463232576847076, -0.5707341432571411, 0.6018064022064209, 0.42014962434768677, 0.6945086717605591, 0.5069830417633057, 1.178056240081787, 0.03740439563989639, 0.5163565874099731, 0.48043349385261536, 0.10774971544742584, -0.6296392679214478, -0.2234991192817688, 0.04668080806732178, 0.5596134662628174, -1.1400165557861328, -0.4356829524040222, 0.16728565096855164, -0.8792318105697632, -0.5830622911453247, 0.8350939750671387, 1.3510551452636719, -0.5374854803085327, 0.08629489690065384, 0.07145223766565323, 0.17808428406715393, -1.270047903060913, 0.2051985263824463, -1.1120661497116089, -0.26489174365997314, -0.483833909034729, 0.18013030290603638, 0.5924134254455566, -1.5927551984786987, 0.11916755884885788, 0.45644262433052063, 0.04822013899683952, 0.9164525270462036, 0.7104161977767944, 0.7992008924484253, 0.05533018708229065, -0.5085734128952026, 1.853896141052246, 1.4962369203567505, -0.31621602177619934, -0.4442935287952423, 0.8614079356193542, -0.3953893482685089, 0.29644644260406494, -0.8378669619560242, -0.30682626366615295, -0.9814543724060059, 0.5750320553779602, 0.5719563364982605, -0.2676647901535034, -0.24723218381404877, -0.24191759526729584, 0.02556755393743515, -0.19625157117843628, 0.9056281447410583, -1.206527829170227, -0.24039854109287262, 0.49362245202064514, -0.10295655578374863, -0.3622519373893738, 0.27252382040023804, 0.9065815210342407, 0.5450108647346497, -0.7317206859588623, 0.30020657181739807, 0.7970907092094421, -0.9853953123092651, 1.1000335216522217, -0.47865161299705505, 0.2584764063358307, -0.3127698600292206, -0.5959730744361877, -1.046298861503601, 0.46280452609062195, -0.2136480212211609, -0.5940815210342407, 0.7417053580284119, -1.3931430578231812, -0.7951269745826721, 0.29579633474349976, -0.2621093988418579, -0.7065600156784058, -0.6584225296974182, -0.28435030579566956, -0.2985799312591553, 0.4790995419025421, 0.05292585492134094, -0.37755435705184937, 0.7532499432563782, 0.7388548851013184, 0.004144606646150351, -1.1033467054367065, -0.8245709538459778, 0.5799753665924072, -0.575943648815155, 0.06537948548793793, 0.6728289723396301, 1.7321372032165527, -0.3170776963233948, -1.0689609050750732, 0.5130501389503479, 0.39523255825042725, 0.07666067779064178, -0.021023843437433243, -0.8089483976364136, -0.6093312501907349, -0.3123171627521515, 1.0339782238006592, -1.3638575077056885, -1.0113050937652588, -0.705467939376831, 0.33274605870246887, -0.5784135460853577, 0.6215270757675171, -0.6536281704902649, 0.9160667061805725, 0.0973244458436966, -0.6540391445159912, -0.6347795724868774, -0.06184068322181702, 0.49358999729156494, -0.1251714676618576, 0.905681848526001, -0.06359059363603592, -0.49106860160827637, -0.8882789015769958, -1.0871011018753052, 0.32645657658576965, -0.27665162086486816, 0.19591380655765533, 0.2904876172542572, -0.9856472015380859, -0.16397331655025482, -1.2107537984848022, 0.4458441138267517, 1.0931278467178345, 0.3840581476688385, -0.07275976240634918, 0.22300894558429718, -1.2157281637191772, -0.37779924273490906, 0.14312173426151276, 0.2564050555229187, 0.5976402759552002, 0.41717565059661865, 1.4901866912841797, 0.7738776803016663, -0.11421036720275879, -0.8903694152832031, 0.12946192920207977, -0.4735865294933319, -0.20512238144874573, -0.7399477362632751, -0.45527368783950806, -0.25808030366897583], [0.2219424545764923, 1.9485046863555908, -2.245952606201172, -1.007666826248169, 1.1094610691070557, 0.2764046788215637, 0.9308558702468872, 0.22762979567050934, -0.10605742037296295, -0.3485185205936432, 0.25812917947769165, -0.0673447772860527, 0.9536536931991577, 0.9490875005722046, -0.5380074977874756, 0.776709258556366, 0.7869172692298889, -0.6693395376205444, 0.722302258014679, 1.61184823513031, 0.03626355528831482, -0.18002605438232422, 0.05174904689192772, -0.18991565704345703, -0.5192949175834656, 0.05850082263350487, -1.128975510597229, -1.1396037340164185, -0.9176783561706543, -0.9903120994567871, 1.02409827709198, -0.7868971228599548, -0.23518650233745575, 0.08751624077558517, -0.7589714527130127, -0.3052597641944885, 1.745934247970581, 1.010834813117981, 0.8932992219924927, -0.02014286443591118, 1.519810676574707, -0.3369411826133728, 0.19622845947742462, -1.2795664072036743, 0.5464909672737122, 0.1401604861021042, 0.41820576786994934, -0.3580508828163147, -0.24245871603488922, -0.9566723704338074, 1.428667426109314, 0.039260730147361755, 1.375649333000183, 1.2031705379486084, 0.368507444858551, -0.0017967303283512592, 0.34654414653778076, 0.4937438368797302, 0.7547193169593811, -0.09875824302434921, 0.031230201944708824, 0.2625797390937805, 0.18151040375232697, 0.5680009126663208, 0.1527854949235916, -0.5410609841346741, 0.6750897765159607, 0.4239884912967682, 0.1786099374294281, -0.6085377931594849, -0.36905378103256226, 0.47090843319892883, -0.5832985043525696, 0.46895334124565125, -1.706220269203186, 0.5938918590545654, 0.7960811853408813, 0.9118368625640869, -0.08183765411376953, 0.25006747245788574, -1.2032109498977661, 0.42808017134666443, 0.5229387879371643, 0.04481377452611923, 1.2761493921279907, -0.1429472416639328, 0.5204747915267944, -0.1485888659954071, -0.48650670051574707, 1.6826497316360474, 0.15938912332057953, 0.2974405288696289, -0.0521811842918396, -1.1873377561569214, -0.27778512239456177, -0.2835429012775421, 0.04285690560936928, -0.6681943535804749, -1.198606014251709, -0.8287588357925415, -0.37221670150756836, -0.7686914205551147, -0.04420030117034912, -0.05887787789106369, -0.08228342980146408, 2.0498669147491455, 0.2779352366924286, 0.5127529501914978, -1.1618887186050415, -0.21378546953201294, -0.34642282128334045, -0.10031305253505707, -0.8182240724563599, -0.6655097007751465, -0.21402738988399506, 0.23309063911437988, 1.42441987991333, -0.020755184814333916, 0.263440877199173, 0.71876460313797, -0.10833030939102173, -0.06754028052091599, 0.09778938442468643, 0.4331091344356537, 0.8418026566505432, 0.44166550040245056, -0.30112943053245544, -0.15105727314949036, 0.8379020094871521, -0.23111583292484283, -0.13527537882328033, -0.4423469603061676, 0.10780629515647888, 0.4269992411136627, -0.5966119170188904, 1.4809291362762451, -0.005247945431619883, 0.08957096934318542, -0.5275466442108154, -0.0022358614951372147, 0.18228480219841003, -0.640346348285675, -0.7388288378715515, -0.39598360657691956, 0.04837624356150627, -0.2865369915962219, 0.7478600740432739, -0.10743527859449387, -0.6883798837661743, 0.1764390468597412, -1.1390796899795532, 0.48759642243385315, 0.4402841627597809, 0.4723999500274658, 0.07374977320432663, -0.39339181780815125, 0.546000063419342, -0.0776575356721878, 0.28526169061660767, -0.38700294494628906, 0.9285258650779724, -0.14066335558891296, -1.346579909324646, 0.5223984122276306, 0.6702019572257996, -0.2816998064517975, 0.21605977416038513, 0.29988378286361694, 0.5526328682899475, 1.3304346799850464, -0.7562598586082458, -0.12399033457040787, -0.3142521381378174, 1.1787662506103516, 0.4424019455909729, -1.0819694995880127, 1.5204061269760132, -0.8809692859649658, -1.2600048780441284, -1.2655435800552368, -0.14432603120803833, -0.4164383113384247, 0.28010138869285583, -0.08116627484560013, 0.9407278895378113, -0.22228801250457764, 0.2417769879102707, -0.687279224395752, -0.501401960849762, -0.6883858442306519, -1.1625783443450928, -0.0804864764213562, -0.8904430866241455, 0.4561057388782501, -0.3466918468475342, -0.28881534934043884, 1.468929648399353, -0.910923182964325, -0.35224100947380066, -0.32821062207221985, 0.3624129593372345, -0.11407889425754547, -0.7875970005989075, 0.6652436852455139, -0.49996069073677063, 0.6786607503890991, -1.5227768421173096, 1.5262902975082397, -0.17444032430648804, 0.04952102154493332, 0.7064604163169861, 0.012623920105397701, -0.33187463879585266, 0.6723778247833252, -0.4207543432712555, -1.8117015361785889, 0.10180900245904922, 0.6341094374656677, -0.7100276350975037, -0.043469615280628204, 0.15627069771289825, 0.5608516931533813, 0.4033903479576111, 0.48898038268089294, 0.49188047647476196, -0.21299581229686737, -0.9584972262382507, -0.8556778430938721, -0.8797711730003357, 0.5527664422988892, -0.20119589567184448, -1.867554783821106, 0.3304002285003662, 0.5679107308387756, -0.8192451596260071, 0.27795472741127014, 0.03840218111872673, 0.39702096581459045, 0.6756560206413269, 1.6024184226989746, 0.23566970229148865, 0.36776289343833923, -0.7076936960220337, -0.12648707628250122, -0.6567769646644592, -0.08286955207586288, 0.8703124523162842, -0.7064455151557922, 0.7671306133270264, 1.5407936573028564, 0.24412600696086884, -0.3059062957763672, 0.408062607049942, 0.017746001482009888, -0.34919050335884094, -0.8651453256607056, -0.05208523944020271, 0.025255881249904633, -0.03445693850517273, 1.115053653717041, 0.6366250514984131, -0.8272659778594971, 0.3699222803115845, -0.3137165904045105, 0.13452918827533722, 0.042716603726148605, -0.6168230772018433, -0.07084035128355026, -0.49975860118865967, -0.46908342838287354, 0.24187706410884857, -0.05484464764595032, -0.2532440423965454, 0.4872727394104004, -0.13873708248138428, 0.05008137971162796, -0.5421649217605591, 0.10339447855949402, -0.1832023411989212, 0.6933233141899109, -0.24264301359653473, -1.5382558107376099, -0.6041397452354431, 0.5830317735671997, 0.3051726520061493, 0.6162744164466858, -0.40964028239250183, 0.33171531558036804, 0.060797251760959625, -0.07991039007902145, 0.24538813531398773, 0.2614850401878357, -0.27935218811035156, -0.00339469313621521, -0.9578942060470581, 0.8740473389625549, 1.1875927448272705, -1.4951962232589722, -0.660879909992218, -0.48507991433143616, 0.8260505795478821, 0.9922658801078796, 0.3895275592803955, 1.2474660873413086, 0.12013529986143112, 0.21270257234573364, 0.052125632762908936, -0.5117121338844299, -1.0891568660736084, -0.8236269950866699, -0.8079431653022766, -0.45321008563041687, -0.5730075240135193, -0.4741576910018921, -0.29933375120162964, 0.570879340171814, -0.19796426594257355, 0.3752345144748688, 1.6549251079559326, -0.18374423682689667, -1.0665053129196167, 0.03195774927735329, 0.11732307821512222, -1.0678921937942505, 0.6730120182037354, 0.6842135787010193, -0.22737890481948853, -0.5796210169792175, 0.3671872913837433, 0.6873863339424133, 0.7211669683456421, 0.15608534216880798, 0.0725162997841835, -1.7739373445510864, -0.9280814528465271, -0.5851432085037231, 1.2219691276550293, -0.08121569454669952, -0.05489661917090416, -0.250113308429718, 0.06604466587305069, 0.8621314167976379, 0.23394405841827393, -0.25638285279273987, 0.6681986451148987, 0.01624169759452343, -0.7410600781440735, -0.6468636393547058, 0.09745443612337112, 0.3714296221733093, -0.04248810559511185, 0.19953231513500214, 0.38122522830963135, 0.121697798371315, 0.09111035615205765, 0.7412069439888, 0.41129928827285767, 0.2482249140739441, -0.07193435728549957, 0.1885986030101776, 1.0462632179260254, -0.0022258199751377106, -0.05890004709362984, -1.2854183912277222, 0.9607869982719421, 0.2860838770866394, 0.994269073009491, -0.1077183336019516, -0.2100123018026352, -0.16345545649528503, 0.6848991513252258, 0.14710058271884918, -0.16133876144886017, 1.220285415649414, 0.02568439394235611, -0.36973482370376587, -0.23354516923427582, -0.3365788757801056, -0.1786031275987625, -0.20084266364574432, -0.08100713044404984, 0.18390537798404694, -1.3734409809112549, -1.3328336477279663, 0.4963124692440033, 0.21029618382453918, -0.7931250929832458, -0.8131171464920044, -0.28149405121803284, 0.7706913948059082, 0.15136949717998505, 0.7415717244148254, -0.4346485137939453, 0.7504109740257263, -0.22357283532619476, -1.0149646997451782, -0.23136834800243378, -0.138981893658638, 0.386679083108902, 0.45947906374931335, -0.7241154909133911, 0.07968834042549133, -0.5218262076377869, 0.3912983238697052, 0.6986158490180969, -0.540999174118042, 0.1564362496137619, -0.627589225769043, -0.2872789800167084, 0.36142319440841675, -0.19025547802448273, 1.0341850519180298, -0.047085508704185486, -0.17100396752357483, 0.17478936910629272, -0.16542230546474457, -0.36364108324050903, -0.8919656872749329, -0.1368361860513687, 0.2571381628513336, -0.8837701082229614, 0.3568083643913269, 0.1738874614238739, 0.3128417730331421, 1.967015266418457, 0.7296033501625061, 0.044214632362127304, 0.007546206936240196, -0.28341418504714966, -1.0836135149002075, 0.28509870171546936, 0.5222092270851135, -0.5633293390274048, -0.09459635615348816, 0.0373997688293457, 0.5319588780403137, -0.34218281507492065, 0.27314096689224243, 0.024731416255235672, 0.9864780306816101, 0.6224108338356018, -0.35860979557037354, 0.3077838122844696, 0.7332931756973267, 1.144854187965393, 1.3477133512496948, 0.7453836798667908, -1.018316388130188, -1.1609386205673218, 0.7703198790550232, -0.8126436471939087, -0.24715350568294525, 0.612754225730896, -0.029213042929768562, 0.8704379200935364, -1.5435433387756348, -0.5319311022758484, 1.4278826713562012, 0.20375922322273254, 0.38601019978523254, 0.358585387468338, 0.18713273108005524, -0.5309313535690308, 0.8152531385421753, 0.4455273747444153, -0.4079691469669342, 0.4312865734100342, 0.3925892114639282, -0.5779616236686707, 0.05578867346048355, -0.5027503371238708, 0.8540971875190735, -0.5499204993247986, 0.14435982704162598, -0.24213257431983948, -0.44239112734794617, 0.39704111218452454, 0.34389936923980713, -0.1405172049999237, 1.4039798974990845, -0.27772220969200134, -0.9734998941421509, 0.3679937422275543, -0.3888554275035858, 0.28838640451431274, -0.3865804672241211, -0.2682563066482544, -0.1658070683479309, -1.7307806015014648, -0.6778807044029236, 1.0292938947677612, -0.22631706297397614, -0.494422048330307, -0.253539502620697, -0.3457626402378082, -0.13735568523406982, 0.8303913474082947, 1.8590601682662964, 0.8836753368377686, 0.7678857445716858, 0.4190232455730438, 0.4259904623031616, -0.8298662304878235, -0.1959589272737503, 0.6784784197807312, 0.16611744463443756, -0.19348619878292084, -1.3000590801239014, -0.4495861530303955, 0.45364657044410706, 0.3940134644508362, -0.13891582190990448, 0.9884462356567383, 1.1014659404754639, 1.0400668382644653, -0.0814606323838234, -0.15852859616279602, 0.06109115108847618, -0.6261157989501953, 0.44565707445144653, 0.4539494514465332, -0.62858647108078, -0.5727785229682922, -0.776303231716156, -0.8851186633110046, 0.8995858430862427, -0.27570369839668274, -0.7957839965820312, -0.25722870230674744, 0.08610814064741135, 0.4460320472717285, 0.0833655446767807, -0.036875199526548386, 0.1762814074754715, 0.25504201650619507, -0.647951066493988, -1.1670480966567993, 0.06244033947587013, -0.1558995395898819, 0.3198939561843872, -0.8433205485343933, 0.5283116698265076, 1.2935073375701904, 0.1617438644170761, 0.19163596630096436, -0.014803527854382992, 0.3858414888381958, 0.677756130695343, 0.31415680050849915, -1.091539740562439, 0.531684398651123, -0.8594797849655151, -0.5341811180114746, -0.25043603777885437, 0.4217827022075653, -0.2516898214817047, -1.0910252332687378, -0.4199870228767395, 0.011005195789039135, -0.3259068429470062, 0.6704156398773193, -0.3070942759513855, 1.3262439966201782, 0.1473948210477829, -0.14440953731536865, 0.08446546643972397, -0.19047623872756958, -0.48186057806015015, -0.5853415131568909, -0.11170241981744766, -0.49240782856941223, -0.9521477818489075, 0.05707702413201332, -0.21891386806964874, -0.4951893389225006, -0.18596144020557404, -0.5164596438407898, 0.2826881408691406, -1.497707724571228, -1.2763041257858276, -1.1372311115264893, 0.4132683277130127, 1.2375129461288452, -0.9224740266799927, 0.4894968271255493, 0.43014001846313477, -1.3682646751403809, 0.05499469116330147, -0.06711218506097794, -0.9827180504798889, -0.18092823028564453, -0.924838662147522, 1.4780793190002441, -0.9014343619346619, 0.6556553244590759, 0.2980441451072693, 1.3454774618148804, -1.120638132095337, -1.842431902885437, -0.9029639959335327, -0.36962637305259705, 1.0488637685775757, 1.0595697164535522, -0.41333338618278503, 1.2000517845153809, 0.3599015176296234, -0.48564815521240234, -0.8370421528816223, -0.12402325123548508, -0.7591763138771057, 0.44860729575157166, 0.789513885974884, 0.16798092424869537, -0.38472020626068115, 1.2099775075912476, -0.5324991941452026, 0.9940276741981506, 0.031331971287727356, 0.6679506301879883, -0.9200452566146851, -0.49867162108421326, -0.2849622070789337, 0.2773045599460602, -0.9536186456680298, -1.1470097303390503, -0.10090498626232147, -0.8861194252967834, -1.0634578466415405, 1.2470704317092896, 1.1035629510879517, -0.5479912757873535, 0.1310001164674759, -0.6770874261856079, 0.3671620190143585, -0.8923549056053162, 0.7929168939590454, -0.9283008575439453, -0.0470409020781517, 0.4026390016078949, 0.06773342937231064, -0.09942418336868286, -1.2021887302398682, 0.20081593096256256, 0.4594348073005676, -0.5245171189308167, -0.3476109802722931, 0.9636313915252686, 0.8080378770828247, -0.7705492973327637, -0.28571921586990356, 1.1099170446395874, 0.8783771991729736, 0.21320894360542297, -0.705337643623352, 0.7901591062545776, 0.5861724615097046, 0.3129878044128418, -0.9307940602302551, -0.36018791794776917, -1.1209760904312134, 0.9177137613296509, 0.41355085372924805, 0.13973140716552734, -0.14094655215740204, -0.11885048449039459, -0.5923205018043518, 0.3694745898246765, 0.342490017414093, -0.5685296654701233, 0.021786432713270187, 1.628193974494934, -0.16507259011268616, -0.3246228098869324, 0.2918027341365814, 0.5067034959793091, 0.5825214385986328, -0.5712629556655884, 0.6723194718360901, 0.39855366945266724, -0.8360459804534912, 0.50290447473526, 0.6773145794868469, -0.03526173532009125, -0.07220043987035751, -0.16691230237483978, -1.0800882577896118, -0.33098188042640686, -0.02868313528597355, -0.19025729596614838, 0.6572365164756775, -0.9283124804496765, -0.8354736566543579, 1.0313005447387695, -0.37556618452072144, -0.19675278663635254, -0.5722238421440125, 0.009779762476682663, -0.8847149014472961, 0.37105870246887207, 0.6781578063964844, 0.18147726356983185, 1.6189844608306885, -0.14307865500450134, -0.16608552634716034, -1.5189443826675415, -0.47648128867149353, 0.7349095940589905, 0.20201356709003448, 0.22843116521835327, -0.2700583338737488, 1.1781704425811768, -0.3876841366291046, -1.2693678140640259, -0.14528900384902954, -0.5167185068130493, 0.14883796870708466, -0.572987973690033, -0.7897247076034546, -0.10140502452850342, 0.5660184621810913, 0.29235827922821045, -0.48797929286956787, -0.5625563263893127, -1.7147126197814941, 0.5320442318916321, -0.31151309609413147, 0.3729337453842163, -0.35652250051498413, 0.9696093201637268, -0.0668920949101448, -0.07653671503067017, -0.08064316213130951, -0.43285852670669556, 1.123918890953064, -0.5720177888870239, 0.7266137003898621, 0.12349144369363785, 0.43723466992378235, -0.43212392926216125, -0.7280764579772949, 0.37275636196136475, -0.38185712695121765, 0.43029531836509705, -0.16033531725406647, -1.0690382719039917, -0.31339526176452637, -1.309770107269287, 0.4128212630748749, 0.5913383960723877, 0.5064595341682434, -0.36832761764526367, 0.13710981607437134, -0.8765237331390381, -0.18461595475673676, 0.6345599293708801, -0.7691107392311096, 0.5831764936447144, 1.343164324760437, 1.502249002456665, 0.6881192326545715, 0.49273136258125305, -0.6696160435676575, 0.4615408182144165, -1.0049662590026855, 0.14923515915870667, -0.018035883083939552, -0.12130048125982285, -0.8436858057975769], [0.8588318824768066, 1.0719577074050903, -2.0251238346099854, -1.0220552682876587, 1.1646277904510498, 0.12213639914989471, 1.4130758047103882, 0.06611236929893494, 0.9158716201782227, -0.3448071777820587, -0.17520016431808472, -0.3821297883987427, 0.726627767086029, 0.8590417504310608, -0.07198189198970795, 0.7291536927223206, 0.6846271753311157, -0.9517124891281128, 0.5019204020500183, 0.5902108550071716, 0.38992246985435486, -0.23204723000526428, 0.5739514827728271, 0.3944345712661743, -0.6084487438201904, 0.7669993042945862, -0.8150810599327087, -0.5316598415374756, -0.6632155776023865, -0.10215741395950317, 0.6974100470542908, -1.2253828048706055, 0.2612220048904419, -0.24862140417099, -1.5401531457901, -0.3560502827167511, 1.9399590492248535, 1.0285067558288574, 0.7031362652778625, 0.3406246602535248, 1.729666829109192, 0.20370818674564362, -0.3599185645580292, -1.584710717201233, 0.24105161428451538, 0.06749449670314789, 0.33626633882522583, -0.1624317616224289, 0.4795183539390564, -1.130056619644165, 1.5810922384262085, -0.34812667965888977, 0.6842838525772095, 1.0093210935592651, 0.8135431408882141, -0.19195249676704407, 1.1801728010177612, -0.2373325526714325, 0.7142525315284729, -0.7618348002433777, 1.1906079053878784, -0.088904969394207, -0.7985698580741882, 1.26151704788208, -0.6431785821914673, -0.07249274104833603, -0.2455640286207199, -0.047071218490600586, -0.19868537783622742, -0.37415367364883423, 0.2944968044757843, 0.5231342911720276, -0.25887876749038696, 0.6207393407821655, -1.8717471361160278, 0.5694416165351868, 0.8103546500205994, 1.1597603559494019, -0.04166772961616516, 0.36431097984313965, -0.41039443016052246, -0.36796000599861145, 1.02031672000885, -0.5986936688423157, 0.37515050172805786, 0.2397618144750595, 0.9210869669914246, -0.5457926392555237, -0.1316242665052414, 1.0080902576446533, 0.5876140594482422, 0.04332964867353439, 0.07074723392724991, -0.6441951990127563, -0.24062305688858032, -0.42034152150154114, 0.6695768237113953, -0.19346663355827332, -1.2623250484466553, -0.26251283288002014, -0.5156214833259583, -0.7580682635307312, -0.4922489821910858, 0.3163069784641266, -0.30574721097946167, 1.3069884777069092, 0.2576638460159302, 0.2655509114265442, -0.5684645175933838, -0.3490019738674164, 0.1985219419002533, 0.3056921362876892, -0.5869193077087402, -0.8030363917350769, -0.739497184753418, 0.7230872511863708, 1.1682844161987305, -0.46241581439971924, 0.5349600315093994, 0.9796600341796875, -0.5583828687667847, 0.2119198590517044, 0.2787727415561676, 0.9307652115821838, 1.1265383958816528, 0.18141207098960876, -0.1720646172761917, 0.029733926057815552, 0.6274340748786926, 0.10977867990732193, 0.2521153390407562, -0.45787107944488525, 0.012913540005683899, 0.20017607510089874, -0.8059419989585876, 1.3537917137145996, 0.21820463240146637, -0.1555429846048355, 0.30521440505981445, 0.03472900390625, 0.8452278971672058, -0.1288466900587082, -0.5274577140808105, 0.10487629473209381, -0.46988916397094727, -0.3644162118434906, -0.1109343096613884, -0.33826306462287903, -1.0778250694274902, -0.3252844214439392, -1.5706652402877808, 0.19893062114715576, 0.031821757555007935, 0.10836251825094223, 0.11363396048545837, -0.13881225883960724, 0.23389926552772522, 0.07574817538261414, 0.2438134104013443, -0.5884215831756592, 0.5645676851272583, -0.0048178136348724365, -1.1902107000350952, 0.813519299030304, 0.0031006988137960434, -0.48890286684036255, 0.16509224474430084, 0.3543691039085388, 0.4278610348701477, 1.2319247722625732, -0.6191403269767761, -0.40229183435440063, 0.2822202444076538, 0.31157517433166504, 0.49727532267570496, -0.33293968439102173, 2.056816577911377, -1.303440809249878, -0.510711669921875, -0.5905082821846008, 0.4900359511375427, -0.5127477049827576, 0.0731523409485817, -0.266975075006485, 0.48262691497802734, -0.17339016497135162, 0.2680838108062744, -0.5329545736312866, -0.015995977446436882, -0.36247727274894714, -0.5134274959564209, 0.3869739770889282, -0.2887192964553833, 0.5359750390052795, -0.26482516527175903, -0.3473336100578308, 0.6103809475898743, -1.0938324928283691, -0.6551607847213745, -0.1713058352470398, -0.016392946243286133, -0.3007618486881256, -0.5898334980010986, 1.0526894330978394, -0.8422046899795532, 0.9377288222312927, -0.9135562181472778, 0.5783456563949585, -1.1254262924194336, -0.34864914417266846, 1.071101188659668, -0.558375358581543, -0.1177603155374527, 0.5344530940055847, -0.3268285393714905, -1.34169340133667, 0.18771518766880035, 0.96266770362854, -0.883945107460022, 0.5006462931632996, 0.5592195987701416, -0.18356147408485413, 0.7314007878303528, 0.5551068186759949, 0.6995137929916382, 0.22933131456375122, -1.0438752174377441, -0.835444450378418, -0.8249362111091614, 0.30055761337280273, -0.0965714156627655, -1.8586150407791138, 1.2401520013809204, 1.3151841163635254, -0.5742232203483582, 0.5282414555549622, -0.19194643199443817, 0.3104960024356842, 0.812086284160614, 0.9899424910545349, 0.26713547110557556, 0.7749127745628357, -0.3910108506679535, 0.4798433482646942, -0.6942225098609924, 0.2915780544281006, 0.5982215404510498, -0.30034583806991577, -0.161447674036026, 0.8813175559043884, 0.6070250868797302, -0.15805692970752716, 0.33280134201049805, -0.28853175044059753, 0.5871352553367615, -0.5940639972686768, -0.3350297212600708, 0.03664274886250496, -0.10723581165075302, 1.1752938032150269, 0.46660545468330383, -0.9381861686706543, 0.6438292860984802, 0.016739841550588608, 0.1816643625497818, -0.19064883887767792, -0.6363004446029663, -0.257347971200943, -0.640659749507904, -0.27051204442977905, -0.22000080347061157, -0.08929767459630966, 0.37252530455589294, 0.2223322093486786, -0.2869516909122467, -0.15471045672893524, -0.3464146852493286, -0.001181766390800476, -0.39169201254844666, 0.9474740624427795, -0.08976836502552032, -1.5581541061401367, -0.19581888616085052, 0.5349013805389404, 0.18718744814395905, 0.258587509393692, -0.33616429567337036, 0.6234713196754456, -0.04675016179680824, -0.09172050654888153, -0.12958180904388428, -0.13619881868362427, -0.5483307242393494, 0.20153971016407013, 0.34193867444992065, 0.3578732907772064, 0.7720755934715271, -0.37138575315475464, -0.8526932001113892, -0.34859782457351685, 1.2855738401412964, 1.0787309408187866, 0.6586858630180359, 1.378506064414978, 0.20387114584445953, -0.22067637741565704, 0.3939749598503113, -0.5427361726760864, -0.7944478988647461, -0.7566332221031189, -0.8270665407180786, -0.34321388602256775, -0.3094342052936554, 0.4761485755443573, -0.05125198885798454, 0.8922910094261169, -0.11619672924280167, 0.5875628590583801, 1.0759670734405518, -0.2023201733827591, -0.19791081547737122, 0.609900176525116, -0.1727408468723297, -0.6935747861862183, 0.24217629432678223, 0.19023609161376953, -0.829079806804657, -0.20323120057582855, 0.47646164894104004, 0.015011349692940712, 0.03778168186545372, 0.09975896030664444, -0.6444993615150452, -1.6725566387176514, -1.3804935216903687, -0.4448733627796173, 1.0273919105529785, 0.04905686154961586, 0.42590925097465515, -0.6866152882575989, 0.7780346274375916, 0.42364025115966797, 0.35919809341430664, -0.9748064875602722, 0.47630882263183594, -0.4569433033466339, -1.1051422357559204, -0.1345292329788208, 0.395327091217041, 0.6404218673706055, -0.20545107126235962, 0.3167746663093567, -0.3695406913757324, -0.32839372754096985, -0.05878908932209015, 0.4642305374145508, 0.5357310175895691, 0.5030724406242371, -0.13148994743824005, -0.3982159197330475, 0.7215049862861633, -0.5056158900260925, -0.3393506705760956, -1.6462411880493164, 0.906363844871521, 0.03770923987030983, 0.32693207263946533, -0.01837935671210289, -0.22086508572101593, 0.3547605574131012, 0.35136738419532776, 0.5026200413703918, 0.17513921856880188, 1.721121907234192, -0.2809222936630249, 0.2371589094400406, -0.41461580991744995, -0.10501326620578766, 0.20516690611839294, -0.7932171821594238, -0.24894988536834717, -0.009411133825778961, -1.133646845817566, -0.691892147064209, 1.425952434539795, -0.03685476630926132, -0.1819579303264618, -0.5998951196670532, -0.04884035885334015, 0.6441752910614014, 0.48958465456962585, 0.688271701335907, -0.6023455858230591, -0.12640391290187836, 0.27835944294929504, -0.2118242084980011, -0.15809261798858643, 0.05294468253850937, 0.2846011519432068, 0.5859981179237366, -0.8002840876579285, 0.02230820804834366, -0.64483243227005, 1.307326078414917, 0.18272732198238373, -0.38229599595069885, 0.15344387292861938, -0.8115668296813965, -0.1711987406015396, 0.17522487044334412, -0.28685876727104187, 0.44035428762435913, -0.6246872544288635, -0.5502816438674927, -0.5249782800674438, -0.13810138404369354, -0.10019678622484207, -0.3421293795108795, -0.35578519105911255, -0.056851062923669815, -0.5290843844413757, -0.10189054161310196, -0.4140397310256958, -0.08420296013355255, 0.7490975260734558, 0.8579192757606506, -0.00684964656829834, 0.5146265625953674, -0.3536683917045593, -1.0231642723083496, -0.009891491383314133, 0.5576176047325134, -0.26561689376831055, -0.5837342143058777, -0.21652698516845703, 0.1408603936433792, -0.25932860374450684, 0.27277812361717224, -0.4761374294757843, 0.6866739392280579, -0.3145446479320526, -0.2890351712703705, 0.1922566294670105, 1.339816689491272, 0.03930987790226936, 0.9792720079421997, 0.06997498869895935, -0.6517282724380493, -0.40305855870246887, 0.3096478283405304, -1.4419912099838257, 0.09197419881820679, 0.7068667411804199, 0.02283220738172531, 0.9654316902160645, -1.7656607627868652, -0.35070517659187317, 0.4037599563598633, -0.030214596539735794, 0.3319239020347595, 0.3820073902606964, -0.2972136437892914, -0.422534704208374, 0.9860090017318726, 0.3689587116241455, -0.6650641560554504, -0.13090285658836365, 0.19450095295906067, 0.10643154382705688, 0.05684264376759529, -0.5095613598823547, 1.383905053138733, -0.27176231145858765, 0.24290220439434052, 0.17203044891357422, -0.3814873695373535, 0.46158045530319214, 0.7759223580360413, -0.09386099874973297, 1.451780915260315, -0.9296383857727051, -0.8493688702583313, 0.2762361764907837, -0.5890810489654541, 0.19957296550273895, -0.3437731862068176, -0.3352104425430298, -0.5127277970314026, -0.7371044754981995, -0.2747076153755188, 1.1170806884765625, -0.12806600332260132, -0.017691753804683685, -0.047271259129047394, -0.5731841325759888, -0.11374122649431229, 0.8863969445228577, 1.4718284606933594, 0.14039751887321472, -0.2427273988723755, 0.7766781449317932, 1.2680436372756958, -0.7368313074111938, -0.19558438658714294, -0.3028883934020996, 0.05274440720677376, -0.5355951189994812, -1.5445610284805298, -0.7684516310691833, 0.2525262236595154, 0.6436886787414551, -0.17056283354759216, -0.253912091255188, 0.576489269733429, 0.8657644391059875, -0.18640068173408508, 0.06477785855531693, 0.4932681620121002, -0.7214034795761108, 0.40666812658309937, 0.2459626942873001, -0.17435799539089203, -0.6103155016899109, -0.8270050883293152, -0.9064547419548035, 0.18812650442123413, -0.5816874504089355, -1.1768202781677246, 0.0011078286916017532, -0.08536885678768158, 0.39140796661376953, -0.04979406297206879, -0.4657326936721802, 0.6856157183647156, 0.6431237459182739, 0.003650170750916004, -0.7170840501785278, 0.7142577171325684, 0.008767570368945599, 0.3469112515449524, -0.42109930515289307, 0.3620447516441345, 0.9058926105499268, -0.191959947347641, 0.2285149097442627, -0.5854737758636475, 0.5103054046630859, 0.7922422289848328, 0.4066230356693268, -1.1794558763504028, 0.034258004277944565, -0.1067483052611351, -0.5899131298065186, 0.17657896876335144, 0.10632001608610153, -0.4429784417152405, -0.12180624157190323, -0.15744026005268097, -0.45271188020706177, -0.8793914914131165, 0.29582613706588745, -0.4356166124343872, 0.8388339281082153, -0.012876570224761963, -0.4267703592777252, 0.041280679404735565, -0.21674618124961853, -0.24534650146961212, -0.3201735019683838, 0.08576040714979172, -0.1766931414604187, -1.0954270362854004, 0.6606294512748718, 0.07431303709745407, -0.4476173520088196, -0.013441860675811768, -1.0785852670669556, 0.7606942057609558, -1.4775969982147217, -1.3122098445892334, -1.057791829109192, 0.9066387414932251, 1.0718128681182861, -0.18816500902175903, 0.8238610029220581, 0.7885412573814392, -1.324571967124939, -0.023780282586812973, 0.18083499372005463, -0.9104081392288208, -0.4506538212299347, -0.49535495042800903, 0.4376503527164459, -0.24957901239395142, 0.6072718501091003, -0.521861732006073, 1.1768075227737427, -1.2691309452056885, -1.4393950700759888, -0.9613201022148132, -0.15589673817157745, 0.37276187539100647, 0.9793145656585693, -0.5035001039505005, 1.0323508977890015, 0.6625208258628845, -0.016992252320051193, -0.6164945363998413, -0.2993852496147156, -0.15439429879188538, 0.5078189373016357, 0.6636846661567688, 0.6090388298034668, 0.31445133686065674, 0.9551281929016113, -0.6572355031967163, 0.8222832679748535, 0.28915679454803467, 0.44106072187423706, -0.9128365516662598, -0.29698967933654785, 0.6264482736587524, 0.9714727997779846, -1.0744099617004395, -0.3779211938381195, -0.9813655018806458, -0.6196754574775696, -0.9995502233505249, 1.0204533338546753, 1.1801141500473022, -0.7283905744552612, 0.28973254561424255, -0.6551035642623901, -0.0726548582315445, -0.2103721797466278, 0.3796294033527374, -0.9586167335510254, 0.22884111106395721, -0.09707924723625183, -0.04348868876695633, -0.39670392870903015, -1.6829195022583008, 0.08863005042076111, 0.10715323686599731, -0.022541414946317673, -0.8283307552337646, 1.1707843542099, 0.8235913515090942, -0.13780730962753296, -0.2178277224302292, 2.2372491359710693, 1.7029623985290527, -0.013074973598122597, -1.0299750566482544, 0.7048029899597168, 0.3000122606754303, 0.1707310527563095, -1.091233491897583, 0.28669223189353943, -0.9394335746765137, 0.19288921356201172, 0.38690903782844543, -0.4267233610153198, -0.5082648396492004, 0.22141779959201813, -0.23584763705730438, 0.1321418136358261, 0.3205595910549164, -0.982404351234436, -0.03278924524784088, 0.7957881093025208, -0.3594902455806732, -0.4873311519622803, 0.4314613938331604, 1.5648165941238403, 0.06088164448738098, -0.3885612487792969, 0.16136641800403595, 0.06876087933778763, -0.8873611092567444, 1.3234679698944092, 0.3578563928604126, -0.06799840182065964, -0.2082430124282837, -0.867101788520813, -0.9204672574996948, -0.36607661843299866, -0.7475968599319458, -1.1925073862075806, -0.03221806883811951, -1.193254828453064, -0.4941411018371582, 1.05141019821167, -0.23029722273349762, -0.4922644793987274, -0.12465691566467285, 0.48183977603912354, -0.07609894871711731, 0.16666147112846375, 0.03981902077794075, -0.25876733660697937, 1.1542456150054932, 0.661457896232605, -0.5945484042167664, -1.5913565158843994, -0.8813382387161255, 0.16524383425712585, -0.6215692758560181, -0.10933215916156769, 0.5632648468017578, 0.5834481716156006, 0.06038415804505348, -0.30900079011917114, 0.046032823622226715, 0.3819390535354614, -0.49152979254722595, -0.054850023239851, -0.7715388536453247, 0.21494421362876892, 0.7312945127487183, 0.6820802092552185, -0.10115586966276169, -0.6242820620536804, -0.5861627459526062, 0.1893758326768875, 0.013310089707374573, 0.6263372898101807, -0.3988102078437805, 1.3411613702774048, -0.2168695032596588, 0.16579675674438477, -0.5413321852684021, -0.128316268324852, 0.4690462052822113, -0.19675490260124207, 0.7847834825515747, 0.3235207796096802, 0.23713725805282593, -0.8381333947181702, -0.8738950490951538, 0.3216455280780792, -0.6687549948692322, 0.35561132431030273, 0.10688559710979462, -0.8675569891929626, -0.5219964981079102, -0.5351666212081909, 0.4360825717449188, 0.8529530167579651, 0.3558865189552307, -0.6655393242835999, 0.17621783912181854, -0.8917481899261475, 0.4216930568218231, -0.05420718342065811, -0.1527712494134903, 0.3887079954147339, 0.49277225136756897, 1.2335540056228638, 0.45056629180908203, 0.6433104276657104, -0.8450483679771423, 0.12743453681468964, -0.07445034384727478, 0.042772673070430756, -0.531241238117218, 0.11435239017009735, -0.3511260449886322], [0.11446772515773773, 1.63265860080719, -2.0411860942840576, 0.031493350863456726, 1.8134243488311768, 0.49031469225883484, 1.3437947034835815, -0.5061196088790894, 0.34196990728378296, -1.0055789947509766, 0.3237752616405487, -0.5814164280891418, 0.854061484336853, 1.2221428155899048, -0.37289419770240784, -0.1150086522102356, 0.5343759059906006, -1.2644469738006592, 0.6838235855102539, 0.9979326725006104, 0.22726549208164215, -0.1893838793039322, 0.22548164427280426, 0.41950374841690063, -0.07350281625986099, 0.1907246857881546, -1.495455026626587, -0.687056303024292, -0.41669028997421265, -0.9145066142082214, 1.2954801321029663, -1.3584383726119995, 0.24393677711486816, 0.1768685281276703, -1.3157072067260742, -0.3686925172805786, 1.0655053853988647, 0.5522981882095337, -0.03714250400662422, 0.144415482878685, 1.5101628303527832, -0.48069533705711365, -0.03776850923895836, -1.7308045625686646, 0.3221139907836914, -0.08031290769577026, 0.6362156867980957, -1.313720464706421, 0.06686154007911682, -1.2364120483398438, 0.8163340091705322, -0.2600681781768799, 0.7197420001029968, 1.0877493619918823, 0.43178537487983704, 0.744070291519165, 0.1838008165359497, 0.0847567468881607, 1.5663528442382812, -0.2754487991333008, 0.5056770443916321, 0.006710566580295563, 0.22920215129852295, 0.3042010962963104, 0.02884850837290287, -0.3017546832561493, 0.45401978492736816, 0.8196654319763184, 0.13907645642757416, -0.027217447757720947, 0.5956951379776001, -0.047755759209394455, -0.5522996187210083, 0.2898346781730652, -1.2145076990127563, 0.20029084384441376, 0.964874804019928, 1.2054716348648071, -0.07875148952007294, 0.49747979640960693, -0.5735633373260498, -0.008556051179766655, 0.29669055342674255, -0.11199480295181274, 0.6884316205978394, 0.3057924211025238, -0.25190871953964233, -0.5252995491027832, -0.30370327830314636, 1.8266063928604126, 0.634698212146759, 0.1351061761379242, 0.6868492364883423, -0.8527026176452637, -0.3549535870552063, -0.4294489920139313, 0.29012593626976013, -0.854032576084137, -0.40768393874168396, -0.5340694785118103, -0.22426250576972961, -0.6542455554008484, -0.03695366531610489, 0.12729525566101074, 0.09655740857124329, 1.1188316345214844, -0.013775690458714962, 0.2541796565055847, -0.6942663192749023, 0.08084971457719803, -0.4651780128479004, 0.16156983375549316, -0.8298458456993103, -1.1345003843307495, -0.5583370327949524, 1.0027426481246948, 1.4403821229934692, -0.10911627858877182, 0.7567745447158813, 0.7961340546607971, -0.6378082633018494, 0.4095771908760071, -0.3180805444717407, 0.5648389458656311, 0.7348175048828125, 0.2497551441192627, -0.07990318536758423, -0.7626159191131592, 0.4309500753879547, -0.2223157435655594, -0.34446093440055847, -0.10573010891675949, -0.15960411727428436, 0.4325125515460968, -0.4665670394897461, 0.3880898058414459, -0.3260633945465088, -0.1370394080877304, 0.34303197264671326, -0.2910660207271576, 0.49640709161758423, -0.06481540203094482, -0.36201685667037964, 0.2376919537782669, 0.027425674721598625, -0.5876663327217102, 0.5408463478088379, 0.5930455923080444, -0.41171780228614807, 0.3281978368759155, -1.3335920572280884, -0.239765465259552, 0.7004368901252747, 0.20647810399532318, -0.12409854680299759, 0.17290471494197845, 0.28566959500312805, 0.4872925579547882, 0.41143491864204407, -0.19019868969917297, 0.7753404974937439, 0.09407471120357513, -0.9903281331062317, 0.8168940544128418, 0.5204144716262817, 0.3562823235988617, 0.7010427713394165, 0.03523767367005348, 0.13474680483341217, 0.7094715237617493, -0.9244902729988098, -0.6344186067581177, 0.3728138506412506, 0.6861147880554199, 0.6688384413719177, -0.4080185890197754, 2.126286745071411, -1.6858397722244263, -1.016348123550415, -0.982679009437561, 0.7358802556991577, -0.4268794655799866, 0.07518696039915085, 0.14599771797657013, 1.0042479038238525, -0.15040454268455505, 0.26621347665786743, -0.00014240900054574013, -0.40234988927841187, -1.1599152088165283, -1.342353105545044, 0.11158576607704163, -1.2907923460006714, 0.31653037667274475, -0.10745054483413696, -0.6287886500358582, 0.6036970615386963, -0.6617522835731506, -1.4024889469146729, 0.27090227603912354, -0.6137825846672058, -0.26520344614982605, -0.978808581829071, -0.14829319715499878, -0.16490858793258667, 1.0490641593933105, -1.304372787475586, 0.7421761155128479, -0.3731512129306793, 0.16452419757843018, 1.2207531929016113, -0.18430769443511963, -0.7416333556175232, 0.6674588322639465, -0.4892394542694092, -1.4885071516036987, 1.2435563802719116, 0.8140624165534973, -0.12831144034862518, 0.42089661955833435, 0.1916353851556778, 0.24261370301246643, -0.21019135415554047, 0.3373839259147644, 0.7713744640350342, -0.12246813625097275, -0.8330934047698975, -1.4211667776107788, -1.17068612575531, 0.25113946199417114, -0.5994123816490173, -1.105067253112793, 1.1237846612930298, 0.4413747489452362, -0.4835388660430908, 0.13388089835643768, -0.1307942122220993, -0.10206063836812973, 0.6111341714859009, 0.927824079990387, 0.5034804940223694, 0.33785292506217957, 0.13688525557518005, -0.20758508145809174, -0.12327796965837479, -0.09877090156078339, 0.6612262725830078, -0.5844650268554688, -0.0636526346206665, 1.1348977088928223, 0.6542518138885498, -0.44780465960502625, 0.04729935899376869, 0.0936715304851532, -0.30488115549087524, -1.2362316846847534, -0.3553178906440735, 0.18987762928009033, -0.7180060148239136, 1.1458734273910522, 0.6355894207954407, -0.5970994830131531, -0.6777869462966919, -0.3235119879245758, -0.8657785058021545, -0.691440224647522, -1.1108982563018799, -0.9183226823806763, -0.4850693345069885, -0.1990346759557724, -0.057582154870033264, -0.03545220568776131, -0.14343085885047913, 0.6020548343658447, -0.7858663201332092, -0.5748997926712036, -0.26481300592422485, 0.10236003994941711, 0.4018113911151886, 0.7018381953239441, -0.04626893624663353, -0.9260547161102295, -1.1984541416168213, 0.417275071144104, 1.1797807216644287, 0.32121947407722473, 0.10835380852222443, 0.21425631642341614, 0.1991460770368576, -0.03488462418317795, 0.26683181524276733, 0.16834433376789093, 0.4859170913696289, 0.4200142025947571, 0.0932111144065857, 0.49308860301971436, 1.030142903327942, -1.206809639930725, -0.8220608234405518, -0.7614068984985352, 1.1279606819152832, 0.9463540315628052, 1.089896321296692, 1.0824397802352905, -0.22173967957496643, 0.2937825918197632, -0.1296035498380661, -0.32308685779571533, -0.6749129295349121, -0.3621327579021454, -0.5609769225120544, -0.4250071048736572, -0.6845905184745789, -0.47810736298561096, -0.3148047924041748, 0.20326003432273865, -0.40947967767715454, 1.107614517211914, 1.2340950965881348, -0.6341788172721863, -1.4176781177520752, -0.7711868286132812, 0.04754703491926193, -1.2441976070404053, 0.6186754107475281, 0.7202721834182739, -0.9586371779441833, -0.5789233446121216, -0.019600246101617813, 0.012520821765065193, 0.9439801573753357, 0.2848254442214966, -0.48933470249176025, -1.3176764249801636, -0.6239752173423767, -0.32181233167648315, 1.141434669494629, 0.1424170285463333, 0.3556050658226013, -0.7794485092163086, -0.32108065485954285, 0.268099844455719, -0.13335277140140533, -0.7266116142272949, 0.44229093194007874, -0.24803996086120605, -0.4029207229614258, -0.4666357636451721, 0.20317977666854858, 0.5314826369285583, -0.5930960178375244, -0.01640941947698593, -0.23457327485084534, 0.17202366888523102, -0.2893085777759552, 0.9783207178115845, 0.2641619145870209, 0.3037118911743164, 0.19487923383712769, 0.14297491312026978, 0.8258881568908691, -0.46278974413871765, -0.2362128049135208, -1.124078631401062, 1.0085258483886719, 0.46362146735191345, 0.3315049111843109, -0.3390776813030243, 0.20103690028190613, 0.1221281960606575, -0.639591634273529, 0.5612014532089233, 0.49672967195510864, 1.520678162574768, 0.9731156826019287, -0.3989656865596771, -0.5311682820320129, 0.04635223001241684, -0.45731326937675476, -1.1897752285003662, -0.01971817947924137, 0.15202055871486664, -0.3727174401283264, -1.609989881515503, 1.2853126525878906, 0.8671234250068665, 0.12532873451709747, -0.6736254692077637, -0.17589354515075684, 1.5498671531677246, 0.37775564193725586, 0.205934539437294, -0.8005644083023071, 0.5666945576667786, -0.47071781754493713, -0.7362379431724548, -0.3806869089603424, -0.0059099383652210236, -0.0003462759777903557, 0.511184573173523, -1.1192846298217773, -0.029481712728738785, -0.5504505038261414, -0.3738972544670105, 0.7694682478904724, -0.48677507042884827, 0.31951674818992615, -0.6550431847572327, -0.19551508128643036, -0.16553884744644165, 0.5425372123718262, 1.6479547023773193, -1.1590442657470703, -0.3983924686908722, -0.293692409992218, -0.12011252343654633, -0.07184609025716782, -0.4960137605667114, -0.5194110870361328, 0.29620423913002014, -0.6629039645195007, 0.1763228327035904, -0.1520373821258545, 0.189182311296463, 1.6923489570617676, 0.04580913111567497, 0.20586726069450378, 0.5588030815124512, 0.06617842614650726, -0.9108847379684448, 0.14213207364082336, 0.019512172788381577, 0.3252200186252594, -0.009734252467751503, -0.20771469175815582, 0.4438144266605377, -0.38095417618751526, 0.5722604393959045, 0.39163199067115784, 0.7216596603393555, -0.25641047954559326, 0.641125500202179, -0.023699309676885605, 0.16669854521751404, 1.4150621891021729, 1.5428624153137207, 0.15461795032024384, -0.3907003104686737, -1.0261573791503906, 0.6493791341781616, -0.6675726175308228, 0.3136880695819855, 0.860328197479248, 0.26690763235092163, 0.6031944751739502, -1.7435206174850464, -0.6409996747970581, 0.6242554187774658, 0.0804014503955841, 1.297184944152832, 0.19083476066589355, -0.15749257802963257, -0.06435760110616684, 0.4843265414237976, 0.6358231902122498, -0.26414674520492554, 0.7522579431533813, 0.27723929286003113, -0.2749011516571045, 0.08831939101219177, -0.3469620943069458, 0.21880902349948883, -0.508817732334137, -0.0705493614077568, -0.06744157522916794, 0.0213988795876503, 0.8525698184967041, 0.6478012204170227, 0.5233592391014099, 0.41167640686035156, -0.38111189007759094, -0.8052688241004944, 0.02131865732371807, -0.32759419083595276, 0.08430690318346024, 0.07877404242753983, -1.0352171659469604, -0.3334902226924896, -1.3935900926589966, -0.8730053305625916, 0.17396701872348785, -0.8478536009788513, -0.6603281497955322, -0.5426884293556213, -0.7341434955596924, -0.2653772234916687, 0.9010605216026306, 1.0280333757400513, 0.37556999921798706, 0.3690427839756012, 0.5512044429779053, 0.13192234933376312, -0.8574618697166443, 0.2280653417110443, 0.30753421783447266, -0.14721424877643585, -0.4299719035625458, -1.3069002628326416, -0.7188036441802979, 0.2558039128780365, 0.4260801374912262, -0.2241630107164383, 0.6632714867591858, 1.3788318634033203, 1.270896553993225, -0.2495185136795044, -0.09487585723400116, 0.3839913308620453, -0.4211578667163849, 0.6936172246932983, 0.632631778717041, -0.6860462427139282, -0.1077507883310318, 0.30655336380004883, -1.0439294576644897, 1.1078274250030518, -0.19797591865062714, -1.0687764883041382, 0.22167891263961792, 0.2419148087501526, -0.04509814456105232, 0.5354444980621338, -0.4137958884239197, 0.3343101441860199, 0.23117586970329285, -0.11800722777843475, -1.130568265914917, -0.2641221284866333, 0.5697092413902283, 0.07798164337873459, -0.4695747494697571, 0.7414573431015015, 0.6164044737815857, -0.2126791775226593, 0.7383228540420532, 0.2840222418308258, 0.15694652497768402, 0.5144547820091248, 0.5021653771400452, -1.081882357597351, 0.041313089430332184, -0.49546533823013306, -0.7873474955558777, -0.2156401425600052, 0.08307992666959763, 0.3809097111225128, -0.9587209224700928, -0.526134192943573, -0.3247711658477783, -0.45841291546821594, -0.15519700944423676, -0.8657130599021912, 0.7448051571846008, 0.44624048471450806, 0.021491024643182755, 0.28678271174430847, -1.0354100465774536, -0.810796320438385, -0.1701941341161728, -0.7404114603996277, 0.726373016834259, -0.8673122525215149, 0.27075883746147156, -0.02802363783121109, 0.08345851302146912, -0.3954109251499176, -0.5591763854026794, 0.5740150213241577, -1.2855857610702515, -0.8324693441390991, -0.5731604695320129, 0.007877444848418236, 0.9213097095489502, -0.8256632685661316, 1.1107314825057983, 0.5467773079872131, -1.5559909343719482, 0.43564969301223755, -0.18329790234565735, -1.4267699718475342, -0.2781812250614166, -1.4049502611160278, 1.40092134475708, -0.5971283316612244, -0.00482454476878047, 0.13392852246761322, 1.6611145734786987, -0.8797390460968018, -1.1333626508712769, -0.37842661142349243, -0.358560711145401, 1.071660041809082, 1.1548385620117188, -0.4988894462585449, 1.2141122817993164, 0.08917441219091415, -0.3064649999141693, -0.4592247009277344, 0.21499688923358917, -0.5800039172172546, 0.38634616136550903, 0.2318653166294098, 0.06730826944112778, -0.17013375461101532, 1.0140633583068848, -0.1432199329137802, 0.7545623779296875, 0.009514624252915382, 1.080708622932434, -0.5211232304573059, -0.5340326428413391, 0.008818109519779682, 0.3119387626647949, -1.178428292274475, -0.5022624135017395, -0.2335921972990036, -0.9999534487724304, -0.7619879841804504, 0.6571395397186279, 1.097880244255066, -0.35105010867118835, 0.25702860951423645, -0.25584515929222107, 0.8213282823562622, -0.7458305954933167, 0.631214439868927, 0.531309962272644, -0.10752102732658386, 0.09431636333465576, -0.568928599357605, -0.05637391656637192, -1.4391533136367798, -0.15536460280418396, 0.5472769737243652, -0.17872996628284454, -0.24170881509780884, 0.7234249711036682, 0.3998924791812897, -0.4243932068347931, -0.5740950703620911, 1.651931643486023, 1.3276292085647583, -0.13922461867332458, -0.46948882937431335, 0.9453451633453369, 0.030317891389131546, 0.8744450807571411, -0.3757877051830292, 0.016763661056756973, -0.5592965483665466, 0.43582984805107117, 0.7699761986732483, 0.0336279422044754, -0.6546655297279358, 0.10469686985015869, -0.6339534521102905, 0.8982338905334473, 0.5922171473503113, -0.45421499013900757, -0.19007925689220428, 1.5000468492507935, -0.43298155069351196, -0.4242604076862335, 0.44633105397224426, 0.19927068054676056, 0.448905348777771, -0.19629596173763275, -0.03258476033806801, 1.251602292060852, -1.092937707901001, 0.4214901626110077, 0.6680797934532166, -0.12876176834106445, 0.3436548113822937, -0.7947117686271667, -1.57957124710083, -0.4925706386566162, -0.4079980254173279, -0.4462454617023468, 0.7647460699081421, -0.6615257859230042, -0.5812403559684753, 0.7168992161750793, 0.1806548535823822, -0.1826627105474472, -0.9516343474388123, 0.3637877106666565, -0.31133580207824707, 0.28283947706222534, 0.48500698804855347, -0.17569701373577118, 1.3068355321884155, 0.1851118803024292, -0.22043758630752563, -0.22406478226184845, -0.22280332446098328, 0.7057226896286011, 0.059098780155181885, -0.62946617603302, -0.4894404411315918, 0.777507483959198, 0.425958514213562, -0.5833439826965332, 0.671312153339386, -0.26086804270744324, 0.09443095326423645, -0.02890205755829811, -0.3137478828430176, 0.2906382381916046, 0.4919339418411255, 0.26234835386276245, -0.905741810798645, -0.5935152769088745, -0.970096230506897, 0.7583373785018921, -0.8173289895057678, 0.9240866303443909, -0.05109584331512451, 0.6680425405502319, 0.5392980575561523, -0.4643685221672058, -0.33830252289772034, -0.886146605014801, 0.5036368370056152, -0.35890674591064453, 0.3307921290397644, 0.13907557725906372, -0.2895243167877197, 0.22955924272537231, -0.7704201340675354, 0.42259326577186584, -0.23850584030151367, 0.516524612903595, 0.4859950840473175, -1.5653398036956787, -1.3630590438842773, -1.056212067604065, 1.1183074712753296, 1.1622318029403687, -0.24350138008594513, -0.246591717004776, 0.10332810133695602, -1.3588882684707642, 0.41027477383613586, 0.5334830284118652, 0.42754673957824707, 0.36657652258872986, 1.5635261535644531, 1.255340576171875, 0.10020219534635544, 0.47151443362236023, -0.24494697153568268, 0.7594771385192871, -1.1724969148635864, -0.05142250657081604, -0.7790200114250183, 0.45266640186309814, 0.016849011182785034], [0.08579034358263016, 0.9665300250053406, -2.1491470336914062, -0.5810498595237732, 1.3067703247070312, 0.539298951625824, 1.1702648401260376, -0.017355559393763542, 0.8249069452285767, -0.4825347661972046, -0.5966542363166809, -0.9854111671447754, 0.5771690607070923, 0.731289803981781, -0.5065193772315979, -0.2661239802837372, 1.1184078454971313, -0.8683478236198425, 0.8224180340766907, 0.271375447511673, -0.3293851912021637, -0.19057132303714752, -0.43109628558158875, 0.06661110371351242, -0.29216277599334717, -0.465059757232666, -1.2803205251693726, -0.3841879963874817, -1.1496864557266235, -0.5220039486885071, 1.1929651498794556, -0.948613703250885, 0.30670905113220215, 0.3062337636947632, -1.6410446166992188, -0.5600395798683167, 1.7316889762878418, 0.5783774256706238, 0.11701834946870804, 0.8721492886543274, 2.4797756671905518, 0.023067647591233253, 0.037936218082904816, -1.8381694555282593, -0.6488716006278992, 0.15645810961723328, 0.0642128512263298, -1.0515917539596558, 0.4902423918247223, -0.7940418124198914, 0.6500745415687561, -0.7134028673171997, 1.13283371925354, 1.6368635892868042, 0.7049881219863892, -0.2239999622106552, 0.4644470512866974, 0.4425335228443146, 0.865878701210022, 0.23888429999351501, 1.056510329246521, -0.5619534850120544, -0.29550111293792725, 0.7356494069099426, 0.015123276039958, -0.37358415126800537, -0.03890429437160492, 0.6389908790588379, -0.1256668120622635, -0.2969449460506439, 0.45405083894729614, -0.2067941427230835, -0.6223843097686768, 0.7631540894508362, -1.4947973489761353, 0.5088925957679749, 0.3017628490924835, 0.3704730272293091, 0.8604408502578735, 0.6049821376800537, -1.0351139307022095, 0.16303491592407227, 0.6401922106742859, -0.03798457607626915, -0.21029065549373627, 0.5821861624717712, -0.06799696385860443, -0.6592839360237122, 0.16316597163677216, 2.3369836807250977, 0.7004664540290833, 0.15755465626716614, 0.07894367724657059, -0.4429708421230316, -0.14053428173065186, 0.1690077930688858, 0.8590643405914307, -0.7331341505050659, -0.39420175552368164, -0.6681625247001648, -0.5514360666275024, -0.771726131439209, -0.1204596608877182, 0.4314013123512268, 0.06038577854633331, 0.9751138687133789, -0.07770611345767975, 0.20138953626155853, -0.19610577821731567, 0.10710005462169647, -1.108232855796814, -0.042906586080789566, -0.5377907156944275, -0.6975600719451904, -0.0970843955874443, 0.8153162002563477, 0.8345158696174622, 0.06401004642248154, 0.4783867299556732, 0.07016635686159134, 0.03446877747774124, 0.559786856174469, -0.1536828875541687, 0.6594626903533936, 0.30331873893737793, 0.5469632148742676, -0.9699798226356506, -1.0225714445114136, 0.3289145231246948, -0.22429867088794708, -0.0907701924443245, -0.11850001662969589, 0.2037273496389389, 1.225923776626587, -0.7129644155502319, 0.948981761932373, -0.640455961227417, -0.06082915887236595, -0.0834958478808403, -0.13282667100429535, 1.019860863685608, -0.2488284707069397, -0.2661289870738983, -0.19913971424102783, 0.6678711175918579, -0.694856584072113, 0.4695320725440979, 0.029842879623174667, -0.5512135028839111, -0.03802022337913513, -0.6561106443405151, 0.224402517080307, 0.3880283236503601, 0.1922176480293274, 0.22148174047470093, -0.019782787188887596, 0.09393949806690216, 0.05313533917069435, 0.41370972990989685, 0.4246908128261566, 0.4888468086719513, 0.4495764672756195, -0.5276788473129272, 1.1095024347305298, 0.739571750164032, 0.19918948411941528, 0.8443018794059753, 0.7247159481048584, 0.1330581158399582, 1.413939118385315, -0.27983176708221436, -0.9662197232246399, 0.41188547015190125, 0.34605738520622253, 0.6013336181640625, -0.6692747473716736, 1.844544529914856, -0.8732333779335022, -0.5090940594673157, -1.1684138774871826, 0.9133305549621582, 0.03141921013593674, 0.11190550774335861, -0.3284088373184204, 0.7074161767959595, -0.2972765862941742, -0.05524106323719025, -0.7415556907653809, 0.23194491863250732, -1.1243826150894165, -0.4994381070137024, -0.6284775137901306, -1.4504283666610718, -0.07128500938415527, -0.5892522931098938, -0.7426091432571411, 0.8131275773048401, -0.9544240832328796, -1.1601072549819946, 0.2933274805545807, -0.3384231925010681, -0.45560309290885925, -0.33326736092567444, 0.7152534127235413, -0.7276598811149597, 0.8681315183639526, -0.8870388865470886, 0.49713534116744995, -0.11452344059944153, -0.27711641788482666, 0.8278810381889343, -0.3062160909175873, -0.20228102803230286, 1.0633715391159058, -0.1904783695936203, -0.5757988691329956, 1.0109176635742188, 0.46705061197280884, -0.08081292361021042, 0.36254626512527466, -0.030711418017745018, 0.3459817171096802, 0.7705442905426025, 0.35953572392463684, 0.07590539008378983, -0.28996050357818604, -0.9433136582374573, -1.3290232419967651, -1.0051512718200684, 0.414584219455719, -0.540469765663147, -2.0575082302093506, 1.2242578268051147, 0.8175100684165955, -0.6199678182601929, -0.6275109648704529, -0.02118389680981636, 0.7150399684906006, 0.15427151322364807, 0.8287249207496643, 0.057367537170648575, 0.5189434289932251, 0.1416071355342865, -0.5583548545837402, -0.7357069849967957, 0.15110306441783905, 0.5445865392684937, -0.5474560856819153, 0.433172345161438, 0.5074397921562195, -0.05507723242044449, 0.3542350232601166, 0.7056486010551453, 0.18203632533550262, -0.2989438474178314, -0.9268969297409058, -0.36772680282592773, 0.6842559576034546, -0.21207216382026672, 1.3189027309417725, 1.1932108402252197, -0.9367966651916504, -0.709907054901123, 0.16757287085056305, -0.28303512930870056, -0.26441362500190735, -1.3030351400375366, -0.42257216572761536, 0.03667629510164261, 0.04067318141460419, -0.13231521844863892, 0.2871435582637787, -0.10008101910352707, 1.033485770225525, 0.019285596907138824, -0.040799565613269806, -0.617175281047821, 0.4059526026248932, 0.11194990575313568, 0.16940493881702423, 0.10008465498685837, -0.9902899265289307, -0.4117080271244049, 0.3133949637413025, 0.8167935609817505, 0.7899166345596313, -0.4536917507648468, 0.558122456073761, 0.39988842606544495, -0.12908323109149933, 0.4662003219127655, 1.001655101776123, -0.2686704099178314, 0.4555724859237671, -0.21180620789527893, 0.806713342666626, 0.9751613736152649, -1.2325108051300049, -1.0475107431411743, -0.9248031377792358, 0.5983667969703674, 1.0611605644226074, 0.9045275449752808, 1.4573036432266235, -0.023890655487775803, -0.7002729773521423, -0.7230091691017151, -0.5293029546737671, -0.8859498500823975, -0.241961270570755, -0.7350337505340576, -1.0046385526657104, -0.6778113842010498, -0.5091015100479126, -0.006288726348429918, 0.25173136591911316, -0.26435384154319763, 1.1620627641677856, 0.6465399265289307, 0.3721121549606323, -0.5289272665977478, 0.07085572928190231, 0.2760350704193115, -1.2972233295440674, 0.19850848615169525, 0.9621601700782776, -0.8490322232246399, -0.3915911614894867, -0.0206944327801466, -0.05029755085706711, 0.7479310631752014, -0.4954342544078827, 0.22523143887519836, -1.5504463911056519, -0.3395530879497528, 0.14728546142578125, 0.8379913568496704, 0.20261889696121216, -0.25890210270881653, -0.7734131217002869, 0.25274422764778137, 0.16320788860321045, -0.15544959902763367, -0.6108534932136536, 0.8814493417739868, -0.5494003295898438, -0.28337562084198, -0.541849672794342, 0.11537420749664307, 0.5434513092041016, -0.16416694223880768, 0.16318348050117493, -0.36997297406196594, -0.24775981903076172, -0.40208524465560913, 0.14940737187862396, 0.06345774978399277, -0.11518843472003937, 0.39234280586242676, 0.05576065927743912, 1.1913444995880127, -0.04052836820483208, -0.08387491106987, -1.583003044128418, 0.4829525649547577, 0.3812173008918762, 1.0229098796844482, -0.024857869371771812, 0.3209083080291748, 0.13207761943340302, -0.1499396115541458, 0.5431987047195435, -0.004297796171158552, 1.5271978378295898, 0.019870903342962265, -0.2818334698677063, -0.9566137194633484, -0.8414059281349182, 0.029222754761576653, -0.2561110854148865, 0.23607885837554932, -0.09373629093170166, -0.2983900010585785, -1.3037428855895996, 1.1062270402908325, 0.9160212874412537, -0.2996225655078888, -0.48621103167533875, -0.16980652511119843, 0.3861815631389618, 0.006133965216577053, 0.6798221468925476, -0.6391085386276245, -0.14499545097351074, -0.30498191714286804, -1.6186630725860596, -0.6558040380477905, -0.11153256893157959, -0.49870914220809937, 0.9340256452560425, -0.909915030002594, -0.2478075474500656, 0.017946757376194, 0.28239789605140686, 0.3326675295829773, 0.19682107865810394, 0.17520350217819214, -0.08614517748355865, -0.313426673412323, -0.03421998769044876, 0.5761994123458862, 1.6355831623077393, -0.6798723340034485, -0.7667638063430786, 0.19557270407676697, 0.432182252407074, -0.07802490144968033, -0.08680199086666107, -0.5527323484420776, -0.06654410064220428, -0.7296421527862549, -0.30530956387519836, 0.055185940116643906, -0.09890783578157425, 1.5691964626312256, 0.08806543052196503, 0.40318432450294495, 0.6025062799453735, -0.35836800932884216, -0.9352076053619385, 0.2780245244503021, 0.1298791468143463, 0.5308353900909424, -0.5385442972183228, -0.009949958883225918, 0.24028465151786804, -0.34685197472572327, 0.7596489787101746, 0.41108107566833496, 0.6496003866195679, -0.3878874182701111, -0.0410202220082283, 0.15045283734798431, 0.16666094958782196, 0.3946085572242737, 0.7453363537788391, 0.09701506048440933, -0.24802477657794952, -0.9415568709373474, 0.7439215779304504, -1.4417192935943604, 0.14902621507644653, 0.1960395723581314, -0.1499803513288498, 1.0808318853378296, -1.3561409711837769, -0.41367098689079285, -0.10566765815019608, -0.08732343465089798, 0.788237452507019, 0.5136120319366455, -0.12576763331890106, -0.234177827835083, 0.48379620909690857, 0.6477460861206055, -0.1832747459411621, 0.11879892647266388, 0.03791527450084686, 0.4043564796447754, 0.15090671181678772, -0.54929518699646, 0.36281058192253113, 0.206549733877182, -0.32093876600265503, -0.3443628251552582, 0.0591159351170063, 0.6520493626594543, 0.28832849860191345, -0.36156195402145386, 0.9337553977966309, -0.5891889333724976, -0.4507056772708893, 0.38721969723701477, -0.2650836110115051, -0.0022837112192064524, -0.46182548999786377, -0.915767252445221, 0.010557821951806545, -0.751991868019104, -0.45863020420074463, 0.7813800573348999, -0.8003413677215576, -1.1640764474868774, -0.969816267490387, -0.9860312938690186, -0.42484748363494873, 1.373435139656067, 1.66242516040802, 0.565116822719574, 0.3056650757789612, 0.9357622861862183, 0.34972718358039856, -0.10308437794446945, 0.030020155012607574, 0.2565879225730896, -0.22735685110092163, -0.13119706511497498, -1.505262851715088, -0.4366157352924347, 0.8523784875869751, 0.28795096278190613, -0.3761771619319916, -0.10271315276622772, 0.8995438814163208, 1.1279592514038086, 0.2659475803375244, -0.887478768825531, 0.7006884217262268, -0.7226125001907349, 1.1214643716812134, 0.793438196182251, 0.18337205052375793, 0.11015719175338745, -0.07125883549451828, -1.4055891036987305, 0.2874565124511719, -0.37280404567718506, -1.1272962093353271, 0.6728694438934326, 0.0381292961537838, 0.36541256308555603, 0.1912641078233719, -0.14616145193576813, 0.06022181734442711, 0.5754151344299316, -0.3603503704071045, -0.8106794953346252, -0.08280318975448608, 0.24331367015838623, 0.16118672490119934, -0.0030443286523222923, 0.2657414674758911, 0.4108760952949524, -0.13764667510986328, 0.8183148503303528, 0.3935535252094269, 0.9130957722663879, 0.42584776878356934, 0.3764379024505615, -1.1141407489776611, 0.7908082008361816, -0.7335763573646545, -0.6991745233535767, -0.313157320022583, -0.12686790525913239, -0.40155208110809326, -0.13305525481700897, -0.21826967597007751, -0.2708017826080322, -0.5398231744766235, -0.9507873058319092, -0.19543103873729706, 0.24970696866512299, -0.06683925539255142, -0.4504314959049225, -0.3079303801059723, -1.217219352722168, -0.9325832724571228, -0.4912789463996887, -0.11370068788528442, 0.4752946197986603, -1.203615427017212, 0.20803694427013397, -0.38923367857933044, 0.40552181005477905, 0.20115061104297638, -0.5444580316543579, 0.8939825892448425, -0.7063663601875305, -1.2374464273452759, -1.0743613243103027, 0.18976463377475739, 1.0639216899871826, -0.5527243614196777, 1.4056452512741089, 0.6462129950523376, -1.6688146591186523, -0.20223817229270935, 0.2606785297393799, -1.3789916038513184, 0.11683458089828491, -1.1816942691802979, 1.3976209163665771, -0.9192498922348022, 0.23217883706092834, -0.3470153212547302, 2.0894370079040527, -0.9829098582267761, -1.1935726404190063, -0.7195715308189392, -0.5495706796646118, 0.9715176820755005, 0.9287500381469727, -0.040153659880161285, 1.498038411140442, -0.03858085349202156, -0.5366474390029907, -0.4699857234954834, 0.050326548516750336, -0.9790663123130798, -0.08829193562269211, 0.06558133661746979, 0.40575674176216125, 0.5080094337463379, 0.7878233790397644, -1.1772688627243042, 0.23235011100769043, 0.686796247959137, 0.15862397849559784, -0.11594950407743454, -0.7612301111221313, 0.15384449064731598, 0.03999603912234306, -1.176060676574707, -0.8154285550117493, -0.1539807766675949, -0.7474815249443054, -0.6465857028961182, 0.7403934597969055, 1.0245338678359985, -0.7385284900665283, 0.35941869020462036, 0.4483843147754669, -0.11670734733343124, -0.4814324975013733, 0.6779251098632812, -0.049282755702733994, -0.25838133692741394, -0.7502081394195557, -0.06623277813196182, 0.09756886959075928, -1.153608798980713, -0.1246141716837883, 0.5175375938415527, 0.25165262818336487, -0.3174511194229126, 1.0788155794143677, 0.9622161984443665, 0.1524064987897873, -0.1665738970041275, 1.1763825416564941, 1.3103026151657104, -0.5981449484825134, -0.6992797255516052, 0.7585553526878357, 0.05480561405420303, 0.3965890109539032, -0.7105880975723267, 0.045450448989868164, -0.13672341406345367, 0.09355708956718445, 1.0319530963897705, -0.7939855456352234, -0.5892573595046997, -0.19567935168743134, -0.10999560356140137, 0.5300986170768738, 0.46107521653175354, -1.3009543418884277, -0.15763773024082184, 1.1320916414260864, 0.10935437679290771, -0.23052138090133667, -0.322421133518219, 1.047597050666809, 0.055780380964279175, -0.5646459460258484, 0.27553361654281616, 0.5238125920295715, -0.7168717980384827, 0.41630566120147705, 0.07878975570201874, 0.3354279696941376, 0.3420959413051605, -0.45928820967674255, -1.5837904214859009, 0.2205897867679596, -1.1038018465042114, -0.5286790132522583, 0.6599187254905701, -0.357033908367157, -1.2124242782592773, 0.6556174159049988, 0.5472791194915771, -0.12470560520887375, -0.3639748990535736, 0.26183027029037476, -0.5655839443206787, 0.23911212384700775, 0.7849092483520508, -0.7932956218719482, 1.2328795194625854, 0.300875186920166, 0.6208827495574951, -0.43676745891571045, -0.6609715223312378, 0.4710909128189087, 0.8112034797668457, -0.28605401515960693, -0.4748815894126892, 0.840053379535675, -0.17531119287014008, -0.41487041115760803, -0.28256529569625854, 0.020014062523841858, 0.1886512190103531, 0.10006475448608398, -1.2022037506103516, -0.7605516314506531, 0.18823032081127167, 1.0890082120895386, -0.581732451915741, -0.613975465297699, -0.9147800207138062, 0.20913246273994446, -0.4903333783149719, 0.7427486777305603, 0.2794678211212158, 0.7078784704208374, 0.09532617032527924, -0.392456591129303, 0.46699315309524536, -0.8035411238670349, -0.09764028340578079, -0.018165223300457, 0.5618883967399597, 0.11816231906414032, -0.04237627610564232, 0.02229084074497223, -0.6542379260063171, 0.5413920283317566, -0.011727026663720608, 0.3516818881034851, 0.4743744730949402, -1.1515800952911377, -0.8583217263221741, -0.859958827495575, 0.23120281100273132, 1.4552682638168335, -0.5511239171028137, -0.3129890263080597, 0.3813728988170624, -0.6229104399681091, 0.6935229301452637, 0.24168984591960907, 0.3873378336429596, 0.8714844584465027, 1.1309125423431396, 1.6056320667266846, -0.017517339438199997, -0.09435513615608215, -0.40776607394218445, 0.5301430225372314, -0.42301052808761597, -0.18987014889717102, -0.47771531343460083, 0.021184051409363747, 0.343891441822052], [0.7224237322807312, 1.8295392990112305, -2.0458004474639893, -0.22541342675685883, 1.3303943872451782, 0.16899999976158142, 1.3066356182098389, 0.04640882462263107, 0.42393064498901367, -0.5239149928092957, -0.7854247689247131, -0.18416592478752136, 0.2247047871351242, 0.9779449105262756, 0.12660349905490875, 0.5903921127319336, 0.80511873960495, -0.9343665838241577, 0.5197221040725708, 0.5368943214416504, 0.007130354642868042, -0.2153681069612503, 0.11225034296512604, 0.08009753376245499, -0.40193843841552734, -0.5555129051208496, -1.7931256294250488, -0.7435424327850342, -0.22737732529640198, -0.29309916496276855, 0.1988225281238556, -1.4885605573654175, 0.18428249657154083, 0.042986270040273666, -1.4244384765625, -1.2617875337600708, 1.8233017921447754, 0.5399016737937927, -0.03992054611444473, 0.056688569486141205, 2.188617467880249, 0.15627816319465637, 0.21863658726215363, -1.6437203884124756, 0.24210835993289948, 0.5751329064369202, 1.122635841369629, -0.46265098452568054, 0.0905478447675705, -1.2809423208236694, 0.4271858334541321, -0.8987820744514465, 1.149893045425415, 0.7401065230369568, 0.6205931901931763, 0.8269032835960388, 0.14033685624599457, 0.3555464744567871, 1.2729363441467285, -0.028895221650600433, 1.283310890197754, -0.3478463590145111, 0.9542673826217651, 0.6455002427101135, 0.2840852737426758, 0.03056051768362522, 0.002207278273999691, 0.9106682538986206, 0.6045058369636536, -0.6730978488922119, 0.5997231602668762, -0.24311545491218567, -0.7556298971176147, 0.8057223558425903, -1.1832867860794067, 0.4780714511871338, 0.2831076681613922, 0.6978167295455933, 0.14770303666591644, -0.09713238477706909, -0.604524552822113, -0.0932544469833374, 0.2097567468881607, -0.5273616909980774, -0.2127099186182022, -0.6441974639892578, 0.15636348724365234, -0.42298439145088196, 0.38269686698913574, 1.8840997219085693, 1.0150264501571655, -0.4813780188560486, 1.1333035230636597, -0.24494397640228271, -0.1540287733078003, -0.28557920455932617, 0.75833660364151, -0.2205381989479065, -0.7956053018569946, -0.48797768354415894, -0.5440462827682495, -0.6778969764709473, 0.04260933771729469, -0.2568533420562744, 0.7938668131828308, 1.3507080078125, -0.004867096897214651, 0.4108184576034546, -0.44801437854766846, 0.4723760783672333, -0.7963430285453796, -0.002440215554088354, -1.2080401182174683, -1.036882996559143, -1.611092209815979, 1.0478588342666626, 1.6180616617202759, 0.024416795000433922, 1.0873167514801025, 0.609916090965271, -0.5095402598381042, 0.4041464030742645, -0.050773583352565765, -0.21669834852218628, 0.49354681372642517, 0.36774805188179016, -0.7601550221443176, -0.5488681793212891, -0.10294640064239502, -0.5548052787780762, -0.06950655579566956, 0.6301178336143494, -0.22765614092350006, 1.0824214220046997, -0.7517502903938293, 0.8839454650878906, -0.32755738496780396, -0.0602736622095108, 0.23459170758724213, 0.12553590536117554, 0.6543365120887756, -0.6990876197814941, -0.45127856731414795, 0.5272378921508789, 0.09416954219341278, -1.6424047946929932, 0.7742940187454224, -0.19422996044158936, -0.9184854030609131, 0.042574524879455566, -0.37251076102256775, -0.18542519211769104, 0.15326596796512604, 0.06437307596206665, 0.20219717919826508, -0.18361690640449524, 0.5747413039207458, -0.28738629817962646, 0.5238422751426697, -0.06824342906475067, 0.7414047122001648, -0.19623158872127533, -0.7630608677864075, 0.19045136868953705, 0.48494434356689453, 0.23088091611862183, 0.4812777638435364, 0.35232627391815186, 0.21738089621067047, 0.7647445201873779, -0.7840246558189392, -0.7690842151641846, -0.3851514160633087, 0.5700180530548096, 0.7141746282577515, -0.41958609223365784, 1.7996597290039062, -1.2195470333099365, -0.051411982625722885, -1.10604727268219, 0.48506054282188416, 0.01683145761489868, 0.5576131343841553, 0.0018452275544404984, 0.6125305891036987, -0.25418421626091003, 0.04123358055949211, -0.5119054913520813, 0.03649432584643364, -0.8750604391098022, -0.5641624927520752, -0.38564327359199524, -0.6428540945053101, 0.14578886330127716, -0.07938958704471588, 0.07147113978862762, 0.9537602066993713, -0.7266855239868164, -1.1198762655258179, -0.5685085654258728, -0.9284958839416504, -0.3016011416912079, 0.05829811096191406, 0.6376924514770508, -0.041188787668943405, 1.5022367238998413, -0.7033901810646057, 1.0013984441757202, -0.8721113204956055, 0.05950112268328667, 1.4654510021209717, -0.5145449042320251, -0.2743833065032959, 1.1186082363128662, 0.00122052151709795, -0.6685394644737244, 0.7064040899276733, 0.521489679813385, 0.46032699942588806, 0.4221075177192688, 0.3605171740055084, -0.05725099518895149, 0.4707786738872528, 0.1604580581188202, 0.7591643333435059, -0.09592551738023758, -0.8397179841995239, -1.278408169746399, -1.2559218406677246, 0.6117169260978699, -0.6608179211616516, -2.703293561935425, 0.7936591506004333, 0.14338593184947968, -0.2227025032043457, 0.039388976991176605, -0.057761307805776596, 0.5388530492782593, -0.21483752131462097, 0.8623256683349609, 0.11915254592895508, 0.7406471967697144, -0.3540346920490265, 0.17943280935287476, 0.1603303700685501, -0.5882867574691772, 0.259494423866272, -0.4723283350467682, -0.14492936432361603, 0.6671037077903748, 0.8847458958625793, 0.0635683536529541, 0.863504946231842, 0.4160645306110382, -0.31583866477012634, -1.372761845588684, -0.4655385911464691, 1.4592863321304321, 0.09982459992170334, 0.7128459215164185, 0.8893234133720398, -0.3307865560054779, -0.3327869474887848, 0.18989188969135284, -0.40892094373703003, -0.34592360258102417, -1.2082279920578003, -1.0465251207351685, -0.6059190034866333, -0.3159150183200836, 0.05127446725964546, 0.43192437291145325, 0.5432096719741821, 1.0211089849472046, -0.06109033524990082, -0.9985631704330444, -0.48536792397499084, 1.2220335006713867, 0.432568222284317, 0.35914406180381775, -0.11554784327745438, -0.7886970639228821, -0.6205717325210571, 0.2280328869819641, 0.49449220299720764, -0.07534641027450562, -0.4743174910545349, 0.4604589343070984, 0.3540363907814026, -0.5177077054977417, 0.16467583179473877, 0.6170833706855774, 0.32465794682502747, -0.2600483298301697, -0.4238351583480835, 0.8432887196540833, 1.3477561473846436, -0.3268362879753113, -0.37825751304626465, -0.08393912762403488, 0.43627795577049255, 0.49991676211357117, 0.9480119347572327, 1.0815445184707642, -0.25028079748153687, -0.072530597448349, -0.3387680947780609, -0.12212498486042023, -0.6330716013908386, -0.5586845874786377, -1.0553922653198242, -0.051619019359350204, -0.7193134427070618, -0.29307082295417786, -0.27406740188598633, 0.3898855745792389, -0.16774038970470428, 0.6729554533958435, 0.8321244716644287, -0.40549373626708984, -1.0769482851028442, -0.05931483209133148, 0.33593326807022095, -2.1578123569488525, 0.44896960258483887, 0.6244033575057983, -0.5587481260299683, -0.8108129501342773, -1.1699296236038208, -0.36019325256347656, 0.6805173754692078, -0.23528358340263367, -0.19248908758163452, -1.1296766996383667, -0.2632794976234436, 0.12847578525543213, 1.140022873878479, -0.16717474162578583, 0.6036174297332764, -1.339642882347107, -0.14588670432567596, 0.4526980221271515, 0.397711843252182, -0.327911376953125, 0.17063724994659424, 0.16979430615901947, -0.7095388174057007, 0.497994989156723, 0.6093323230743408, -0.16861267387866974, -0.2512560486793518, 0.12422297149896622, -0.5478925704956055, -0.08548176288604736, -0.7701650857925415, 0.26896214485168457, -0.5170943737030029, 0.24114860594272614, -0.3428792655467987, 0.2218373566865921, 1.4506970643997192, -1.0880452394485474, -0.029040874913334846, -0.5704725384712219, 0.31788259744644165, 0.07910420000553131, 0.9506380558013916, 0.22404362261295319, 0.4673393666744232, 0.0196553822606802, 0.19098234176635742, 0.22750717401504517, -0.3225991129875183, 1.1073871850967407, 0.16878287494182587, 0.004682160448282957, -0.1875579059123993, -0.7983540296554565, -0.2181236296892166, -0.15909229218959808, 0.10932619124650955, 0.09058418869972229, -0.8011916279792786, -0.9837653636932373, 0.8126187324523926, 0.864758312702179, 0.09771603345870972, -1.0140124559402466, 0.03335946798324585, 1.5004252195358276, -0.24093729257583618, 1.3622606992721558, -0.33451560139656067, 0.013563527725636959, 0.3221281170845032, -1.5066157579421997, -0.46529054641723633, -0.42913109064102173, -1.410022258758545, 0.8249993324279785, -0.4205474853515625, 0.11604645848274231, -0.5755898356437683, 0.35679295659065247, 0.8398686647415161, 0.030303381383419037, 0.1785181760787964, -0.34004661440849304, 0.10176282376050949, -0.24817290902137756, 0.3996947407722473, 1.4400923252105713, -0.846132218837738, -0.5049555897712708, -0.1664356142282486, 0.316184937953949, 0.42834076285362244, -0.4637637734413147, -0.4856293499469757, -0.419043630361557, -0.37892574071884155, -0.334229975938797, 0.45458510518074036, 0.09797099977731705, 1.3120476007461548, -0.3303854763507843, 0.2733782231807709, -0.3014466166496277, -0.23884019255638123, -0.4028501808643341, 0.278840571641922, 0.15619896352291107, 0.3379664421081543, -0.49554356932640076, -0.3109266757965088, -0.17263811826705933, 0.15287970006465912, 0.1120247021317482, -0.01196835283190012, 0.6720857620239258, 0.5666801929473877, -0.0893113911151886, 0.4277249872684479, 0.07937084138393402, 0.2671416103839874, 1.0970638990402222, -0.5993790626525879, 0.09405313432216644, -0.3804624080657959, 0.39030721783638, -0.9673970937728882, 0.38148897886276245, 0.34815824031829834, -0.4423731565475464, 0.9009780883789062, -1.7030278444290161, -0.862316370010376, 0.8333242535591125, -0.24694235622882843, 0.3318508565425873, 0.30934447050094604, -0.2704271674156189, -0.40074124932289124, 1.17894446849823, 0.40333765745162964, -0.7091380953788757, -0.019785940647125244, -0.1446075439453125, 0.5960308313369751, -0.3301032781600952, -0.635991096496582, 0.8980413675308228, 0.12655465304851532, 0.3134346902370453, -0.04433532431721687, -0.6733026504516602, 0.5113201141357422, -0.08109914511442184, -0.13078966736793518, 1.0738667249679565, 0.07454691082239151, -0.2280173897743225, -0.028790825977921486, -0.40754687786102295, 0.46590837836265564, -0.21542806923389435, -0.3533945083618164, 0.0026004170067608356, -0.44329530000686646, -0.5188775062561035, 0.7990977764129639, -0.504246175289154, -0.34291762113571167, -0.3957669734954834, -0.5710426568984985, -0.10659565031528473, 0.13993743062019348, 0.5187124609947205, 0.5583760738372803, 0.3939077854156494, 1.0764802694320679, 0.703502893447876, -0.05501093715429306, -0.37905097007751465, 0.9021366238594055, -0.5858213901519775, -0.6918625235557556, -1.4601279497146606, -0.5835780501365662, 0.1856289505958557, -0.14544351398944855, -0.045699410140514374, -0.020396055653691292, 0.7028079032897949, 1.403887152671814, -0.44919049739837646, 0.17469516396522522, -0.04208222031593323, -1.0318865776062012, 0.8350499272346497, 0.032094597816467285, -0.5346053242683411, -0.2589409649372101, -0.8176278471946716, -1.0504475831985474, 0.7848440408706665, 0.4580225646495819, -0.679646372795105, 0.8806980848312378, -0.2830057144165039, 0.654689610004425, 0.16771546006202698, -0.010570725426077843, 0.08000342547893524, -0.2729051113128662, 0.7121840715408325, -0.8156740069389343, 0.025600140914320946, 0.5590283870697021, 0.11123589426279068, -0.018450025469064713, 0.3996872901916504, 0.05431549251079559, 0.1165669858455658, 0.7306562662124634, 0.4921020269393921, -0.0011516725644469261, 0.8205602765083313, 0.8594703078269958, -1.2916717529296875, -0.04335666075348854, 0.26463478803634644, -0.39905017614364624, -0.4411124289035797, 0.16705618798732758, -0.30972301959991455, -0.11341199278831482, -0.3391886353492737, -1.0080269575119019, -0.39365777373313904, -0.1334545612335205, 0.17461645603179932, 0.7870573997497559, 0.2749544382095337, -0.6276716589927673, 0.25560685992240906, -0.1359669417142868, -0.39745113253593445, -0.11465457826852798, -0.2219901978969574, 0.16899992525577545, -0.6817747354507446, 0.22410453855991364, -0.47958311438560486, 0.04405323043465614, -0.002013575518503785, -0.9461073875427246, 0.4497482180595398, -0.7582453489303589, -1.274625301361084, -0.8200101256370544, 0.3985516428947449, 1.2981194257736206, 0.2237219661474228, 1.4102718830108643, 0.8930872678756714, -1.0128505229949951, 0.04287881776690483, 0.48671653866767883, -1.4965225458145142, -0.17809179425239563, -1.0245023965835571, 0.9377931356430054, -1.1318237781524658, 0.5132545828819275, -0.558718204498291, 0.9903959631919861, -0.9163023829460144, -1.4053095579147339, -0.5275441408157349, -1.4076199531555176, 0.9039448499679565, 1.069538950920105, -0.6527093052864075, 0.6970885992050171, -0.17376480996608734, -0.47508031129837036, -0.6595808267593384, 0.18579928576946259, -0.5438677072525024, -0.06836157292127609, -0.3930032253265381, 0.8435852527618408, -0.0012593381106853485, 0.48037058115005493, -0.49626606702804565, 0.6888573169708252, 0.2121884822845459, 0.8454923033714294, 0.08539211750030518, 0.24534396827220917, -0.6326047778129578, -0.5022804737091064, -1.7285971641540527, -0.8287997245788574, -0.4595909118652344, -0.7134156823158264, -0.6055120229721069, 1.222651720046997, 0.6139397025108337, -0.6811115145683289, 0.31537294387817383, -0.4723716080188751, 0.10987625271081924, -0.9406066536903381, -0.4786314368247986, -0.3408494293689728, 0.3932364583015442, -0.4072321057319641, 0.013531656935811043, -0.11062880605459213, -1.4231462478637695, -0.16771265864372253, 0.9980468153953552, 0.31257835030555725, -0.2914575934410095, 0.5429317355155945, 1.0386309623718262, 0.7496126294136047, -1.0466301441192627, 1.3754233121871948, 1.0186372995376587, 0.12089838087558746, -0.3434337377548218, -0.33967387676239014, -0.3319041132926941, 0.7175233960151672, -0.6770259737968445, 0.08822164684534073, -0.3771328330039978, 0.405556857585907, 0.6250388622283936, -1.1426215171813965, -0.5455997586250305, -0.533940851688385, -0.00760198850184679, 0.6331084966659546, 0.25036928057670593, -0.7500683665275574, -0.5438640713691711, 1.0704282522201538, -0.07775604724884033, -1.110892653465271, -0.13602834939956665, 0.3838541805744171, 0.05032114312052727, -0.8412188291549683, 0.4982197880744934, 0.40612557530403137, -0.896084725856781, 0.8845333456993103, 0.5804699659347534, -0.15374641120433807, -0.16627418994903564, -0.26543375849723816, -0.4885227084159851, 0.13681793212890625, -0.04872477799654007, -0.2541466951370239, 0.6197739243507385, -0.7993480563163757, -0.302734375, 0.7747055292129517, 0.02327297441661358, -0.15831126272678375, 0.004389853682368994, 0.4495573043823242, -0.4777635335922241, 0.1622694432735443, -0.01409943401813507, -0.5696249604225159, 0.7369924783706665, 0.4450736939907074, -0.038209009915590286, -0.6041644215583801, -0.64401775598526, 0.9955146908760071, 0.17293235659599304, 0.04214852303266525, -0.7543458342552185, 0.8042081594467163, 0.2264648675918579, -0.5928992033004761, 0.16039682924747467, 0.9327892661094666, 0.4202900528907776, -0.32373327016830444, -0.48740434646606445, -0.6617145538330078, 0.6597296595573425, 0.44877108931541443, -0.712652325630188, -0.4437659680843353, -0.5974085330963135, -0.3932841122150421, -0.06132372096180916, 0.5613160133361816, 0.22559747099876404, -0.1333160698413849, 0.25999993085861206, -9.339209645986557e-05, 0.36854076385498047, -0.8480620384216309, 0.12203413248062134, 0.3461957275867462, 0.027517953887581825, 0.07530339062213898, -0.08587821573019028, 0.12235831469297409, -1.025701642036438, -0.04108309745788574, -0.6194392442703247, -0.1335086077451706, -0.08105269074440002, -0.9001086354255676, -1.4243175983428955, -0.4277871549129486, 0.8791224360466003, 0.9996047019958496, -0.3635751008987427, -0.28453415632247925, -0.16638612747192383, -0.5994595289230347, 0.5708795785903931, 0.6505879163742065, -0.03626352548599243, 0.6618660688400269, 1.3949131965637207, 1.9990267753601074, 0.22240813076496124, 0.46377283334732056, 0.18403030931949615, 0.5362515449523926, -0.9280419945716858, 0.566011905670166, -0.4404943883419037, 1.0578078031539917, 0.044388920068740845], [0.30203109979629517, 1.732083797454834, -1.864370584487915, 0.004346755333244801, 0.8828441500663757, -0.13674890995025635, 2.0133893489837646, -0.3206578195095062, 0.38509687781333923, -0.8156044483184814, 0.29146164655685425, -0.09538357704877853, 1.1313486099243164, 0.8323231935501099, 0.08860692381858826, -0.5808210968971252, 0.5907033681869507, -1.5175434350967407, 0.5687873959541321, 0.6454234719276428, 0.13852471113204956, -0.7439953088760376, -0.2678918242454529, -0.2638765573501587, -0.5747896432876587, 0.06732773035764694, -1.3797115087509155, -0.1463131457567215, -0.3658996820449829, -0.9751448035240173, 0.8959609866142273, -1.6655741930007935, -0.4622117280960083, -0.4569408893585205, -0.7557474374771118, -0.6362810730934143, 1.2375707626342773, 0.30745524168014526, 0.22121189534664154, 0.36986926198005676, 2.147611379623413, 0.12450147420167923, 0.11412855237722397, -1.7409743070602417, 0.6124315857887268, -0.3191415071487427, 0.9990980625152588, -0.8371857404708862, 0.905430257320404, -1.17601478099823, 0.28441107273101807, -0.4034336507320404, 0.5872105956077576, 1.425849199295044, 0.6121400594711304, 0.817794144153595, 0.19378980994224548, 0.5954394936561584, 0.9067147970199585, -0.07672504335641861, 0.6891658902168274, -0.5547826886177063, -0.22148597240447998, 0.5618467330932617, 0.0230375025421381, -0.4255230724811554, 0.36529263854026794, -0.012512960471212864, -0.14446794986724854, -0.25879961252212524, 0.35485541820526123, -0.28719714283943176, -0.21204476058483124, -0.27705907821655273, -1.3055651187896729, 1.2832996845245361, 0.4562603831291199, 0.6322289109230042, -0.16357797384262085, 0.5866581201553345, -1.0256844758987427, -0.47490549087524414, 0.589586079120636, -0.6272057294845581, 0.05572441220283508, 0.39413776993751526, -0.15538442134857178, -0.0038359835743904114, 0.0028717005625367165, 2.4292047023773193, 1.1385979652404785, 0.027561534196138382, 0.5718281269073486, 0.13934506475925446, -0.18290618062019348, -0.49327531456947327, 0.5012866258621216, -0.3109601140022278, -0.9362764954566956, 0.1316646784543991, -0.05636385828256607, -0.19384053349494934, -0.20088884234428406, -0.17237086594104767, -0.269050270318985, 1.4355603456497192, -0.3383353352546692, -0.044628482311964035, -0.03760942071676254, 0.4392460882663727, -0.7496887445449829, -0.23676708340644836, -0.9600573778152466, -1.5995796918869019, -0.6389593482017517, 0.8674674034118652, 1.9363720417022705, 0.18585166335105896, 0.6038022637367249, 0.7876138687133789, -0.08578736335039139, -0.23474432528018951, 0.15644754469394684, 0.4190254807472229, 0.03867124021053314, -0.006805183831602335, -0.5228613615036011, -0.7213423252105713, -0.210508331656456, 0.014958449639379978, 0.249365895986557, -0.3431830406188965, -0.3976897895336151, 0.2381342649459839, -0.10787110030651093, 1.0727876424789429, -0.8513760566711426, -0.30382898449897766, -0.2344709038734436, -0.05427198484539986, 0.5989503264427185, -0.7264909744262695, -0.502882182598114, 0.49726274609565735, -0.05588485300540924, -0.635511040687561, 0.24528135359287262, 0.40376996994018555, -0.76106196641922, -0.04540661349892616, -0.3406307101249695, 0.41395825147628784, 0.34600117802619934, -0.12883663177490234, -0.2832833230495453, 0.07237886637449265, 0.27417072653770447, 0.024395108222961426, 0.4921494126319885, 0.17357216775417328, -0.025036942213773727, -0.06225837767124176, -1.2360761165618896, 0.8529902696609497, 0.9381758570671082, -0.3039662539958954, 0.8677185773849487, 0.4968244433403015, -0.2698529362678528, 0.7155815362930298, -0.7457340359687805, -0.5805328488349915, 0.49360737204551697, 0.29718324542045593, 0.2986423373222351, 0.46768563985824585, 1.7876719236373901, -1.5027704238891602, -0.6563968062400818, -1.071243166923523, 0.6928065419197083, -0.5032787919044495, 0.20542404055595398, -0.43500691652297974, -0.01972934976220131, -0.41818028688430786, 0.44674625992774963, 0.0031672059558331966, -0.20837311446666718, -1.2076804637908936, -0.4214931130409241, -0.9120112657546997, -1.0877408981323242, 0.04684777185320854, -0.4839191436767578, -0.3871280550956726, 1.3998016119003296, -1.6442548036575317, -0.6906824707984924, -0.19083482027053833, -0.30645161867141724, -0.976811408996582, 0.07833350449800491, 0.44812148809432983, -0.2739633023738861, 1.4460493326187134, -1.235169768333435, 0.7150934934616089, -0.6239007115364075, -0.0862102285027504, 1.1045647859573364, -0.35267356038093567, -0.9498254656791687, 0.9709368348121643, -0.7089648246765137, -1.0624333620071411, 0.48004236817359924, 0.5281927585601807, -0.013322951272130013, 0.801723301410675, -0.09176839888095856, 0.00961852166801691, -0.03903520107269287, 0.16106092929840088, 0.7626338005065918, 0.25376203656196594, -0.5820277333259583, -1.395612120628357, -0.961879551410675, 0.7272025346755981, -0.9545619487762451, -1.2543659210205078, 0.7399831414222717, 0.0509784035384655, -0.5220096707344055, -0.07136736810207367, 0.07965605705976486, 0.5425503253936768, -0.2731514275074005, 1.0989996194839478, 0.7535675168037415, 0.07252354919910431, 0.3634148836135864, -0.4209451973438263, -0.3164435625076294, -0.14531567692756653, -0.3518478572368622, -0.43615061044692993, 0.3960191607475281, 1.3427726030349731, 0.8575579524040222, 0.255384236574173, 0.9148907661437988, 0.24582123756408691, -0.07015644758939743, -1.42576265335083, -0.03752606734633446, 0.7249060273170471, -0.8099137544631958, 1.3360847234725952, 1.1467164754867554, -0.4583239257335663, -0.4761115312576294, 0.13687428832054138, -0.32893553376197815, -0.5269083380699158, -1.3532154560089111, -0.8560007810592651, -0.7024442553520203, 0.6102410554885864, 0.5631133913993835, 0.5524582862854004, -0.25423604249954224, 0.5897006988525391, 0.2569078207015991, -0.6041383147239685, -0.2276737242937088, 0.5675647854804993, 0.8397865295410156, 0.7858039140701294, -0.32120728492736816, -0.8750871419906616, -0.878947913646698, 0.5616475343704224, 1.087168574333191, 0.5055260062217712, -0.1813323199748993, -0.45222318172454834, 0.43153372406959534, 0.3206634521484375, 0.25540128350257874, 0.7245166301727295, 0.2755805552005768, -0.02728159725666046, -0.16272445023059845, 0.7278682589530945, 0.4324455261230469, -1.6676177978515625, -1.1766633987426758, -0.6927623152732849, 0.5730416178703308, 0.9991704225540161, 0.9239087104797363, 0.9129180908203125, 0.1888824850320816, 0.505288302898407, -0.5903886556625366, -0.5011151432991028, -0.9056970477104187, -0.11722099035978317, -0.11103776097297668, -0.13970059156417847, -0.7480584979057312, -0.08238040655851364, -0.26670607924461365, 0.40993884205818176, 0.31406018137931824, 1.789512276649475, 0.9230123162269592, -0.30762821435928345, -0.26037803292274475, -0.4949699938297272, -0.41827285289764404, -1.0754646062850952, 0.5118840336799622, 0.8973748683929443, -0.597234308719635, -0.022516978904604912, 0.24299922585487366, 0.381142795085907, 0.6216894388198853, 0.4151054918766022, 0.4658832848072052, -1.1053071022033691, -0.7849603295326233, -0.20942647755146027, 1.0153577327728271, 0.04097723215818405, 0.37077564001083374, -0.551437258720398, -0.5359826683998108, 0.2421504706144333, -0.2015482634305954, -0.9005386829376221, 0.22314207255840302, 0.2057633250951767, -0.31641197204589844, -0.23675701022148132, 0.7739337086677551, -0.03250586614012718, -0.23330043256282806, -0.03521261736750603, -0.8169835209846497, 0.024772150442004204, -0.3698781132698059, 0.3345964550971985, -0.23172202706336975, 0.4084036350250244, 0.5042589902877808, -0.16251467168331146, 0.5630460381507874, -0.2983545660972595, -0.08090393245220184, -0.5884271860122681, 0.7422921061515808, 0.7261700630187988, 0.7839159369468689, 0.33646705746650696, -0.15316930413246155, 0.39867740869522095, -0.5599758625030518, 0.6437678933143616, 0.3898026943206787, 1.097497820854187, 0.22885344922542572, 0.39164999127388, -0.9343560934066772, -0.3495752215385437, 0.24211794137954712, -0.33789655566215515, 0.6521373391151428, 0.6049860715866089, -0.6792227029800415, -1.1950206756591797, 0.741210401058197, 0.11103571951389313, -0.20229969918727875, -0.621557354927063, -0.417831152677536, 0.7598319053649902, -0.21422292292118073, 0.1017901748418808, -0.412067711353302, -0.08068117499351501, 0.10912953317165375, -1.1257402896881104, -0.3358917832374573, 0.3036995232105255, -0.46607649326324463, 0.6037383079528809, -0.18610480427742004, 0.03168882802128792, -0.7383031249046326, 0.0896265059709549, 0.7585794925689697, -0.29968613386154175, -0.2835063338279724, 0.3595258891582489, -0.22429700195789337, -0.07499817758798599, 0.32231807708740234, 1.636929988861084, -0.8362871408462524, -0.8372224569320679, 0.05682617798447609, -0.39242058992385864, -0.38642483949661255, -0.8204950094223022, -0.6460384130477905, 0.22601830959320068, -0.5988333225250244, -0.09007695317268372, -0.15642379224300385, -0.1344747394323349, 1.2164201736450195, 0.011060405522584915, 0.5089064240455627, 0.3357236087322235, 0.0448627732694149, -1.1935343742370605, 0.13263820111751556, 0.48649272322654724, 0.7566967606544495, -0.3412334620952606, -0.14205580949783325, 0.27414804697036743, -0.6457751989364624, 1.1095114946365356, 0.010402207262814045, 0.17822043597698212, -0.0628068745136261, 0.054172057658433914, 0.2169361114501953, 1.0586237907409668, 1.378709316253662, 1.1532819271087646, 0.16506917774677277, 0.08880841732025146, -1.1622569561004639, 0.38333648443222046, -1.0220685005187988, 0.5223121047019958, 0.5539180040359497, -0.28183114528656006, 0.7559892535209656, -1.6276812553405762, -0.12723767757415771, 0.9093364477157593, 0.3332992494106293, 0.7685749530792236, 0.10340456664562225, -0.11653853952884674, 0.015656767413020134, 0.7803848385810852, 0.47101911902427673, -0.520171582698822, 0.6493537425994873, -0.30550628900527954, -0.07182057201862335, 0.4774496853351593, -1.3498432636260986, 0.2493630349636078, -0.5104730725288391, 0.26511046290397644, -0.8637666702270508, -0.3809765577316284, 0.17006976902484894, 0.08791066706180573, -0.061831340193748474, 0.7573462724685669, 0.0833408311009407, -0.6214846968650818, 0.08253014832735062, -0.45503726601600647, 0.23132029175758362, -0.04889872670173645, -0.35405227541923523, -0.5597969889640808, -0.5909998416900635, -0.0763867050409317, 0.16708116233348846, -0.8606957197189331, -0.048366520553827286, -0.5048062801361084, -1.168923258781433, 0.3426535725593567, 1.3030892610549927, 1.118729829788208, 0.3625643849372864, -0.30200299620628357, 0.48964008688926697, 0.5602572560310364, -1.0897678136825562, -0.27210721373558044, 0.10650318115949631, -0.18707765638828278, -0.037026338279247284, -1.2289719581604004, -0.0819484144449234, 0.4760591387748718, 0.3995768427848816, -0.06665143370628357, 0.1144065409898758, 0.590722918510437, 1.22907555103302, -0.39706185460090637, 0.13077223300933838, 0.49541139602661133, -0.5659520030021667, 0.9025853872299194, 0.45090118050575256, -0.6329284310340881, -0.3699745237827301, -0.5236948728561401, -1.021622657775879, 0.7332067489624023, -0.38618478178977966, -0.6521223187446594, 0.9514415860176086, -0.57248854637146, 0.5289373397827148, 0.2335694283246994, -0.5622166991233826, 0.5125428438186646, 0.23929667472839355, 1.3035515546798706, -0.6345164775848389, 0.3459074795246124, 0.5798631906509399, -0.15997308492660522, -0.1612435281276703, 0.3417491614818573, 0.08521468192338943, -0.060632750391960144, 0.9721086025238037, 0.19578152894973755, 1.2847338914871216, 0.686420738697052, 0.36274999380111694, -0.5551590323448181, 0.3480631411075592, -0.2980704605579376, -0.7286674380302429, -0.41832220554351807, -0.01882382109761238, 0.05291244015097618, -0.43583226203918457, -0.018825417384505272, -0.12162686884403229, -0.33579060435295105, -0.6599411964416504, -0.44088014960289, 0.3890407085418701, -0.3365112543106079, 0.27130430936813354, -0.7344678640365601, -0.7655655145645142, -1.1104588508605957, -0.27607104182243347, 0.3120732605457306, 0.9272593855857849, -0.41079482436180115, 0.28365811705589294, -0.15660475194454193, -0.2399742156267166, -0.3111891448497772, -0.7130649089813232, 0.580123245716095, -1.1195333003997803, -0.7694252729415894, -0.6806480288505554, 0.06255520135164261, 0.4734707474708557, -0.4903301000595093, 1.6463137865066528, 0.1420886516571045, -1.231147050857544, 0.6364583373069763, 0.3000139892101288, -1.0859073400497437, -0.43140241503715515, -1.294081211090088, 1.1431074142456055, -0.9419530630111694, -0.03506860509514809, -0.4790439009666443, 1.4501031637191772, -0.7876631021499634, -1.7085926532745361, -0.7838687896728516, -0.43702933192253113, 1.2147780656814575, 1.2122455835342407, -0.35034218430519104, 1.1214557886123657, 0.28261876106262207, -0.049175925552845, -0.7357747554779053, 0.46065396070480347, -0.25526997447013855, -0.15172557532787323, 0.14662212133407593, 0.49792617559432983, 0.06187134236097336, 1.0782760381698608, -0.41002988815307617, 0.7454817295074463, 0.4967081546783447, 1.3335438966751099, -0.28568705916404724, -0.08864668756723404, -0.41627493500709534, 0.21566994488239288, -1.386594295501709, -1.0110363960266113, 0.26690563559532166, -0.12951138615608215, -1.3272513151168823, 0.2128746509552002, 0.6378298997879028, -0.07320916652679443, 0.41418182849884033, -0.44829750061035156, 0.9618337154388428, -0.8002296686172485, 0.616207480430603, -0.08498293161392212, -0.3077273368835449, -0.4721403121948242, -0.0050684381276369095, 0.7711777091026306, -1.1680852174758911, -0.4244878888130188, 0.8363675475120544, -0.08061441779136658, -1.106155276298523, 0.25757646560668945, 0.827627420425415, 0.5143991112709045, -0.5425078868865967, 1.2565845251083374, 1.0275381803512573, -1.0122814178466797, -0.34609904885292053, 0.27647244930267334, 0.47413909435272217, 0.49517887830734253, -0.689828097820282, -0.40607669949531555, -0.43468689918518066, 0.7221671342849731, 0.7543533444404602, -0.04359053075313568, -0.7419277429580688, 0.07109779864549637, -0.39357706904411316, 0.658480703830719, 0.9643056392669678, -0.30926069617271423, -0.8610340356826782, 1.0209543704986572, 0.14058049023151398, -0.7969931364059448, 0.2258337289094925, 0.9886475205421448, -0.47444814443588257, -0.5418370962142944, 0.02365696430206299, 0.559300422668457, -0.28414386510849, 0.9914300441741943, 0.5960655808448792, 0.4137248992919922, 0.05544821172952652, -0.8461264967918396, -1.0921958684921265, -0.7973343133926392, -0.5769025683403015, -0.5634086728096008, 0.3094838559627533, -0.6694201827049255, -0.185855433344841, 0.6884834170341492, 0.333731472492218, 0.010992667637765408, -0.4185504913330078, 0.009270638227462769, -0.27175256609916687, -0.3624267280101776, 1.332814335823059, -0.5397108793258667, 1.2548454999923706, -0.13730700314044952, -0.17225413024425507, -0.1253913789987564, 0.3779022991657257, 0.03175890073180199, 0.32399702072143555, -0.3205259442329407, -1.0326780080795288, 0.29848605394363403, 0.16423766314983368, -0.9174571633338928, -0.16058039665222168, 0.7512354850769043, -0.2904280424118042, -0.24551323056221008, -0.6589924097061157, 0.018050920218229294, 0.5375207662582397, 0.32916271686553955, -0.6219419240951538, -0.7771847248077393, -0.6669154167175293, 0.4118102192878723, -0.5833995938301086, 0.5231728553771973, -0.0872127115726471, -0.03918446600437164, 0.316565603017807, -1.0546982288360596, -0.37847527861595154, -1.5055959224700928, 0.10564262419939041, -0.1975267380475998, 0.4000195860862732, 0.24391594529151917, 0.44143640995025635, -0.06573449075222015, -1.5861060619354248, 0.26392799615859985, -0.05249751731753349, 0.17193275690078735, 0.5167588591575623, -1.419873833656311, -0.2588326334953308, -0.8604240417480469, 0.7493600249290466, 1.0654032230377197, -0.573432445526123, -0.09316935390233994, 0.07927971333265305, -1.3963772058486938, 0.9374796748161316, 1.0752726793289185, 0.07475079596042633, 0.43741726875305176, 1.6073251962661743, 1.6609183549880981, -0.1831560581922531, 0.42721399664878845, -0.28979602456092834, 0.2770005166530609, -0.6740825176239014, 0.2959817051887512, -1.1990782022476196, -0.24079447984695435, -0.16156749427318573], [0.3386934995651245, 1.1733943223953247, -2.2018826007843018, -0.40188899636268616, 0.49030715227127075, -0.050496906042099, 1.4817920923233032, -0.05683612823486328, -0.5922566652297974, -0.7430782914161682, -0.4472900629043579, 0.161795973777771, 0.7275584936141968, 1.6061325073242188, 0.4174961447715759, 0.8099671006202698, 0.9930563569068909, -1.2115778923034668, 0.48831191658973694, 1.3141262531280518, 1.175187587738037, -0.2828359603881836, 0.08957497030496597, -0.7921100854873657, -0.5533705353736877, 0.20386090874671936, -1.493863582611084, -0.4848271608352661, -0.5578955411911011, -1.2183984518051147, 1.430481195449829, -1.0945119857788086, 0.060096051543951035, 0.238752081990242, -0.5979824662208557, -0.4894627630710602, 0.974502682685852, 0.33757492899894714, 0.4405132532119751, 0.413676917552948, 1.6193069219589233, -0.22872598469257355, 0.01704322174191475, -1.353206992149353, 0.4030289649963379, -0.32953110337257385, 1.3176994323730469, -0.7280900478363037, -0.21218840777873993, -0.9791789054870605, 0.3891710042953491, -0.11573589593172073, 0.5989707112312317, 1.164836049079895, 0.8086284399032593, 0.5964301228523254, 0.29501843452453613, 0.13705644011497498, 0.7281997799873352, -0.7717810869216919, 0.5441878437995911, 0.14059531688690186, -0.49126988649368286, 1.0344085693359375, 0.03911249339580536, -0.1003418117761612, 0.05177305266261101, 0.5914424061775208, 0.008967701345682144, 0.17837505042552948, 0.3547043204307556, 0.051860056817531586, -0.5325782299041748, 0.08936387300491333, -0.8675057888031006, -0.040197741240262985, 0.38013049960136414, 1.1471177339553833, 0.0722292959690094, 0.5991404056549072, -0.31978970766067505, -0.10849331319332123, 0.32581818103790283, -0.9887902140617371, 0.7039316892623901, -0.3720317482948303, 0.1664378046989441, 0.11319132149219513, -0.975321888923645, 2.168142318725586, 0.47121816873550415, 0.40126362442970276, 0.18507085740566254, -0.5839769244194031, -0.26612403988838196, -1.5900473594665527, 0.21152590215206146, 0.013676881790161133, -0.5749961137771606, -0.7642179727554321, -0.48240068554878235, -0.5232417583465576, 0.563873827457428, -0.6023284196853638, -0.22908858954906464, 1.7846143245697021, 0.6859645843505859, -0.27150508761405945, -0.6386957168579102, 0.11914674937725067, -0.4305521547794342, -0.5492822527885437, -0.6145421862602234, -0.6106101870536804, -0.969873309135437, 1.123635172843933, 1.5415726900100708, 0.2933133840560913, 0.34545519948005676, 0.6581252813339233, -1.028495192527771, -0.963861346244812, -0.3323286473751068, 0.24281594157218933, 0.8867055773735046, 0.2792627811431885, -1.1506298780441284, -0.7633658647537231, 0.8212578892707825, -0.11676641553640366, 0.39745283126831055, 0.19735990464687347, -0.46760204434394836, 0.8620367050170898, -0.1594141572713852, 1.8708064556121826, -0.07631222158670425, -0.5307655334472656, -0.017467275261878967, -0.3752974569797516, -0.22630958259105682, -0.6003185510635376, -0.09089194238185883, -0.31690317392349243, 0.6266334652900696, -0.44170576333999634, 0.23593075573444366, -0.5067426562309265, -0.8107756972312927, 0.5043770670890808, -0.5013179183006287, 0.18755270540714264, 0.27705591917037964, 1.4367386102676392, 0.43567195534706116, -0.24684037268161774, 0.6609499454498291, 0.029392927885055542, 0.6167590618133545, -0.6832798719406128, 0.4782050848007202, -0.5335212349891663, -1.0884360074996948, 0.537861168384552, 0.47774720191955566, 0.09681016206741333, 0.6148189902305603, 0.47051748633384705, -0.14682699739933014, 0.7276486754417419, -0.3438299298286438, -0.25058603286743164, -0.8766555786132812, 0.8978671431541443, -0.16087237000465393, 0.2547304630279541, 1.7574505805969238, -0.9277768731117249, -1.1592131853103638, -0.9431173205375671, 0.4002707004547119, -0.6966680884361267, -0.17656707763671875, 0.30726301670074463, 0.7374363541603088, -0.5477616786956787, 0.22344419360160828, -0.27716314792633057, -0.48272284865379333, -1.0350046157836914, -0.08700825273990631, -0.5467165112495422, -0.7218363881111145, 0.26911816000938416, -0.6029675006866455, -0.8398467302322388, 0.6234413981437683, -1.3218228816986084, -0.31837981939315796, -0.22736920416355133, -0.03694967180490494, -0.008694675751030445, -0.8838596343994141, 0.7461938261985779, -0.4599449932575226, 1.6543818712234497, -0.9015510082244873, 0.590430498123169, -0.9658079743385315, 0.567233145236969, 1.0936391353607178, -0.07535690069198608, -0.9025149941444397, 0.8329698443412781, -0.4063107967376709, -1.505113124847412, 0.6688224077224731, 0.2904512584209442, -0.20209921896457672, 0.5446761250495911, 0.09512333571910858, 0.32992419600486755, 0.19896414875984192, -0.447975218296051, 0.0921827107667923, 0.1271265596151352, -0.08579277247190475, -0.8476050496101379, -0.9288220405578613, 0.09809503704309464, -0.5307841897010803, -1.1561200618743896, 0.2816632390022278, -0.5302050709724426, -0.19380156695842743, -0.011399648152291775, -0.5597494840621948, 0.03674882650375366, -0.08823417872190475, 1.8483824729919434, 0.3188611567020416, 0.35567235946655273, 0.3726334273815155, 0.3599151372909546, -0.44814634323120117, -0.37204116582870483, 0.9852110147476196, -0.09186149388551712, 0.4825776517391205, 1.0736209154129028, 0.9004893898963928, -0.4413300156593323, 0.4757962226867676, -0.13977666199207306, -0.10785006731748581, -1.2300875186920166, 0.061066288501024246, 0.44135624170303345, -0.3224449157714844, 1.30340576171875, 0.7688091397285461, -0.7129107117652893, 0.007487759459763765, 0.08174637705087662, 0.2713829576969147, -0.5762665867805481, -0.13818885385990143, -0.7836279273033142, -0.31361299753189087, 0.26224392652511597, -0.34747758507728577, 0.4160197079181671, -0.29085925221443176, -0.01733209751546383, -0.5844959616661072, -0.016265109181404114, -0.17779110372066498, 0.6838403344154358, 0.09311869740486145, 1.1499584913253784, -0.5513824820518494, -2.0518205165863037, -0.7207797765731812, 0.02965092658996582, 1.3793084621429443, -0.22817394137382507, -0.06572697311639786, -0.45597535371780396, -0.026979615911841393, 0.062090031802654266, 0.2836914658546448, -0.08130012452602386, 0.6226274371147156, -0.1687694489955902, 0.014916256070137024, 0.6673892736434937, 0.8524196743965149, -0.7483234405517578, -0.8032379746437073, -0.5628727078437805, 0.4804065525531769, 0.9829562306404114, 0.7919706106185913, 0.6335016489028931, -0.22161222994327545, 0.375426322221756, -0.1602790355682373, -0.08120136708021164, -0.8851990103721619, -0.6757075786590576, 0.139820858836174, -0.9144079089164734, -1.0007284879684448, 0.2496456652879715, -0.3623260259628296, 0.457326740026474, -0.5096631646156311, 0.9211068749427795, 1.2761387825012207, -0.3435640335083008, -0.8040902614593506, -0.1431618183851242, -0.1299302577972412, -1.1153579950332642, 0.7614992260932922, 1.3304564952850342, -0.4848692715167999, -0.007919618859887123, 0.48357412219047546, 0.21056321263313293, 0.6351922154426575, 0.7359564900398254, -0.2910078763961792, -1.2970823049545288, -0.41302505135536194, -0.8186955451965332, 0.8277682662010193, -0.5050340294837952, 0.006565826013684273, -0.25864318013191223, 0.20560012757778168, 0.8891966342926025, -0.4106965661048889, -0.12018908560276031, 0.7432423830032349, -0.8004021644592285, -0.08283227682113647, -0.07789971679449081, -0.10866019129753113, 0.5878729224205017, -0.19828642904758453, -0.47092878818511963, -0.28533390164375305, 0.2171764075756073, -0.1503465175628662, 0.9199846982955933, -0.2598022222518921, 0.8284980654716492, 0.23806217312812805, -0.4256570041179657, 0.9263540506362915, -0.056872207671403885, -0.0371379554271698, -0.7406859397888184, 0.6467319130897522, 0.7726977467536926, 0.8949350714683533, 0.5576075315475464, 0.3460557758808136, 0.519414484500885, 0.25265398621559143, 0.14225374162197113, 0.17082075774669647, 0.6270233988761902, 0.1717483252286911, -0.1398003101348877, -0.4745202958583832, 0.010548972524702549, 0.34663721919059753, -0.4727174937725067, 0.477272629737854, 0.5458977818489075, -0.9158739447593689, -0.8213359117507935, 0.599557101726532, 0.5655355453491211, 0.0004736089613288641, -0.6488679647445679, 0.1719440221786499, 1.0388548374176025, 0.07329931855201721, 0.6961466670036316, -0.008975844830274582, -0.026360101997852325, 0.38967710733413696, 0.07093872874975204, -0.04780639708042145, 0.15407466888427734, 0.03348160535097122, 0.8601047992706299, -1.2180300951004028, -0.18182869255542755, -0.7925399541854858, 0.5604095458984375, 0.09014618396759033, -0.38611936569213867, 0.34695956110954285, 0.2283766120672226, -0.39443036913871765, 0.086814746260643, 0.4628778100013733, 1.3455466032028198, -0.8207204937934875, -0.31745645403862, -0.057153888046741486, -0.02049858495593071, 0.1880728155374527, -0.571708619594574, -0.4876617193222046, 0.37889859080314636, -0.8603056073188782, -0.19883084297180176, 0.11084412038326263, 0.20021983981132507, 1.4103690385818481, 0.5687711834907532, 0.19617965817451477, 0.5791023969650269, -0.21105283498764038, -1.4281684160232544, 0.17693521082401276, 0.6606403589248657, 0.6674507260322571, -0.13370294868946075, -0.6906518340110779, -0.07285695523023605, -0.16268762946128845, 0.20300742983818054, -0.40793249011039734, 0.14430205523967743, 0.8271179795265198, 0.02039572410285473, -0.8271310329437256, 0.8341664671897888, 1.049569845199585, 1.4826412200927734, 0.4212397634983063, -0.1993122398853302, -0.5756118893623352, 0.2900029420852661, -1.1519006490707397, 0.509280264377594, 0.9066978096961975, 0.3518759310245514, 1.305216670036316, -1.2127114534378052, -0.3014512360095978, 0.5498587489128113, 0.3104862570762634, 0.3003681004047394, 0.6733793616294861, 0.407344788312912, -0.050001539289951324, 1.0646976232528687, 0.10300123691558838, -0.6752936244010925, -0.022520044818520546, -0.11279382556676865, 0.08437585830688477, 0.6513634920120239, -1.0166822671890259, 0.5226106643676758, -0.9642539620399475, 0.3470337390899658, -0.4776982367038727, -0.7028475999832153, 0.14974059164524078, 0.3526255786418915, 0.5731439590454102, 1.2540398836135864, -0.31933629512786865, -1.3035283088684082, 0.2854832410812378, -0.7910289764404297, -0.16131126880645752, -0.40332889556884766, -0.011625564657151699, -0.6776787638664246, -0.6841599941253662, -0.09596752375364304, 0.5418822765350342, 0.20181536674499512, 0.18552426993846893, -0.3287583887577057, -1.131161093711853, 0.3368518352508545, 0.5784792304039001, 1.0696873664855957, 0.7474607825279236, 0.08499404788017273, 0.20852068066596985, 0.5874314904212952, -0.5318337678909302, -0.0008594999089837074, 0.3708387315273285, -0.5860657691955566, -0.1711118072271347, -1.361633062362671, -1.1959075927734375, 0.5579341650009155, 0.20383547246456146, 0.2444320023059845, 0.08703865110874176, 0.8735837340354919, 1.3187294006347656, -0.5684823393821716, -0.5157642960548401, 0.24203212559223175, -0.5282004475593567, 0.1911715716123581, 1.002106785774231, -0.509765625, -0.3252338767051697, -0.6453722715377808, -1.4305975437164307, 1.1124377250671387, -0.11975841969251633, -0.43263933062553406, 0.44316422939300537, 0.4242347776889801, 0.5688775181770325, 0.9684128761291504, -0.5553756952285767, 0.3764480948448181, -0.03497232496738434, 0.2719118297100067, -1.8078817129135132, 0.15849293768405914, 0.4894113838672638, 0.09292241185903549, -0.6283169388771057, 0.4445951581001282, 0.017509043216705322, -0.4087633788585663, 0.044510502368211746, -0.35914352536201477, 0.887589156627655, 1.3539807796478271, 0.4692647159099579, -0.6815687417984009, 0.4066309332847595, -0.4789638817310333, -0.6014671921730042, 0.05956599488854408, 0.5146140456199646, 0.9559245705604553, -0.2460322231054306, -0.11672503501176834, -0.3065800666809082, -0.5067967772483826, 0.10958632826805115, -0.5017414093017578, 1.3838798999786377, 0.1918203979730606, -0.17828184366226196, -0.27919405698776245, -0.014651878736913204, -0.639246940612793, -0.15524005889892578, 0.6916107535362244, 0.5420961380004883, -1.0782614946365356, 0.39306408166885376, 0.2395281344652176, -0.8028966784477234, -0.21491850912570953, -0.035423584282398224, -0.12464582920074463, -1.1585801839828491, -0.7701596021652222, -1.2728526592254639, 0.24949009716510773, 0.6118958592414856, -0.2749096155166626, -0.29377904534339905, 1.128692388534546, -1.768297553062439, 0.33803707361221313, 0.2817036211490631, -1.115239143371582, -0.5095372200012207, -1.193111777305603, 1.0556190013885498, -0.4818583130836487, 0.9355241656303406, 0.5889578461647034, 1.5324070453643799, -1.3865665197372437, -1.1520992517471313, -0.6522437334060669, -0.21007737517356873, 1.0360900163650513, 1.206563115119934, -0.7673304677009583, 0.49248477816581726, 0.9576671123504639, -0.3619198799133301, -0.4817294776439667, 0.6012435555458069, -0.8864187002182007, 0.4499577283859253, -0.19811663031578064, 0.5316792726516724, -0.02772192843258381, 0.8838456869125366, -0.18188031017780304, 1.3086045980453491, 0.22508522868156433, 1.6652486324310303, -0.7417767643928528, -0.8713052868843079, -0.0925152450799942, 0.4365674555301666, -1.3635895252227783, -0.9636940360069275, 0.24001021683216095, -0.1081455871462822, -0.8521863222122192, 0.27329930663108826, 0.4214639961719513, -0.5633363127708435, -0.7671195268630981, -1.2481147050857544, 0.6194326281547546, -0.757652223110199, 0.0555601641535759, -0.08377080410718918, -0.5470876097679138, -0.4819054901599884, 0.06775470077991486, 0.4392660856246948, -1.8783788681030273, -0.08163092285394669, 0.4269614517688751, 0.38309359550476074, -0.9312461614608765, 0.8860206007957458, 0.699512243270874, 0.33083775639533997, -0.7429352402687073, 1.1129181385040283, 1.1031171083450317, -0.4434748589992523, -0.5112346410751343, 0.023789772763848305, 0.36012816429138184, 0.8831425309181213, -0.648641049861908, -0.41379332542419434, -0.6880841255187988, 0.6399202942848206, 0.5698778629302979, 0.14792712032794952, -0.550096333026886, -0.1622716337442398, -0.4678267240524292, 0.6588197946548462, 1.0411370992660522, -0.7276505827903748, -0.6692066788673401, 1.0933730602264404, -0.19337809085845947, -0.45218899846076965, 0.2183178812265396, 0.960379421710968, 0.7001737356185913, -0.24086794257164001, 0.1994878053665161, 0.9480139017105103, -0.2997705042362213, 0.2953268587589264, -0.3585333228111267, -0.03120291605591774, -0.03848878666758537, -0.24346312880516052, -0.7828132510185242, -0.8827076554298401, -0.23120102286338806, -1.0458872318267822, -0.3023374080657959, -1.400740385055542, -1.1953529119491577, -0.20592227578163147, 0.04629021883010864, -0.6212794780731201, -0.34557026624679565, 0.34847626090049744, -0.6416305899620056, -0.389811635017395, 1.1880615949630737, -0.5345791578292847, 0.7536961436271667, -0.3549690842628479, -0.43895456194877625, -1.1577274799346924, 0.09869246184825897, -0.2680632174015045, 0.3263769745826721, -0.5017869472503662, -0.7905066013336182, -0.3244825601577759, -0.5756843686103821, -0.7761742472648621, 0.524747908115387, -0.8963369131088257, 0.0848555713891983, 0.0445244126021862, -0.6393629312515259, -0.15863320231437683, 1.162906289100647, 0.4343823492527008, 0.04860718920826912, -0.6454870700836182, -0.6003403663635254, 0.5620259046554565, -0.29815325140953064, 0.7506765723228455, -0.7749742269515991, 0.7026433348655701, 0.4659711718559265, -0.12615320086479187, -0.3565198481082916, -1.008961796760559, 0.7301778793334961, -0.0974586009979248, 0.29249778389930725, 0.27367404103279114, -0.4138003885746002, -0.3820096552371979, -1.1881331205368042, 0.576352596282959, 0.2238478660583496, -0.08421739935874939, 0.26522403955459595, -0.6589806079864502, -0.1408177763223648, -0.3371596336364746, 0.5483800172805786, 0.9472025632858276, -0.44578924775123596, 0.03875880688428879, -0.6334022283554077, -0.9535449147224426, -0.23486445844173431, 0.1977739781141281, -0.15466353297233582, 0.13754390180110931, 1.6687712669372559, 1.305503010749817, 0.6848632097244263, 0.009510054253041744, 0.09882766008377075, 0.8731308579444885, -0.8618261814117432, -0.41269055008888245, -0.9323133826255798, -0.46198537945747375, -0.04819043353199959], [0.223783940076828, 1.6408588886260986, -1.905994176864624, -0.5335535407066345, 0.3354435861110687, -0.14486221969127655, 1.1445494890213013, -0.8044408559799194, -0.6845272779464722, -0.7459452748298645, 0.31923285126686096, 0.10852780193090439, 0.8266927599906921, 1.24640691280365, 0.6768893599510193, 0.5585073828697205, 1.4914745092391968, -0.8625466227531433, 0.11394134908914566, 1.2514309883117676, 1.0751619338989258, -0.7665935158729553, 0.2638067901134491, -0.2661730945110321, -0.7745169997215271, 0.5343462228775024, -0.5480580925941467, -0.6266059875488281, -0.9043478965759277, -0.915236234664917, 1.89826238155365, -0.21895116567611694, 0.25950029492378235, -0.34805524349212646, -1.2521586418151855, -1.3560322523117065, 1.1022076606750488, -0.06072835996747017, 0.07686524838209152, -0.3688439130783081, 1.4533374309539795, 0.02362910844385624, 0.05290095508098602, -2.007230281829834, 0.29826393723487854, -0.353165864944458, 1.3433805704116821, -0.9127489328384399, 0.010672850534319878, -0.7725718021392822, 0.9161708354949951, -0.04499762877821922, -0.24192652106285095, 1.2146155834197998, 0.7842905521392822, -0.14950911700725555, 0.369145005941391, 0.7003597617149353, 0.8181735277175903, -0.49630919098854065, 0.648674726486206, 0.803087055683136, -0.06471002101898193, 1.2980828285217285, -0.03694216534495354, -0.20107722282409668, -0.3623233139514923, 0.14278407394886017, 0.07766816765069962, 0.027319155633449554, 0.39462193846702576, -0.17127294838428497, -0.08351444453001022, -0.300910621881485, -0.6643621325492859, 0.2985679507255554, 0.21644429862499237, 0.5857812762260437, 0.008635974489152431, 0.5757829546928406, -0.488014817237854, 0.06513116508722305, 1.070605754852295, -0.4867843687534332, 0.6483554840087891, -0.0399198904633522, 0.2469426393508911, 0.189395934343338, -0.6066616177558899, 1.5250887870788574, -0.4108180105686188, 0.27845075726509094, -0.05645902082324028, -0.2500813603401184, -0.3795274496078491, -0.2244473397731781, -0.10941662639379501, -0.0035919658839702606, -0.4568309187889099, -0.9264181852340698, -0.6819793581962585, -0.21363839507102966, -0.1182067021727562, -0.024201536551117897, -0.611262857913971, 1.5002778768539429, 0.007552579045295715, -0.1495586633682251, -0.6627317070960999, -0.06336827576160431, -0.6646906137466431, 0.34746167063713074, -0.1508462280035019, -0.5208930969238281, -0.7767089009284973, 0.3840465545654297, 1.993534803390503, -0.013252363540232182, 0.8377004265785217, 0.34244421124458313, -0.3007007837295532, -1.3301373720169067, 0.5275028944015503, -0.24277223646640778, 0.8214671015739441, 0.033802881836891174, -0.9054983258247375, -1.0225435495376587, 0.6488246321678162, -0.31172114610671997, 0.12347584962844849, -0.07865049690008163, -0.10308454930782318, 0.6675304174423218, -0.6962514519691467, 0.9069008231163025, -0.46237075328826904, -0.7668641805648804, -0.19451940059661865, -0.08961217105388641, 0.2679646611213684, -0.4150488078594208, -0.22265608608722687, -0.1734113246202469, 0.12137358635663986, -0.36923670768737793, 0.6568549871444702, -0.16874456405639648, -0.5875096321105957, 0.16309763491153717, -1.1587049961090088, -0.12937113642692566, -0.03662772849202156, 1.1069844961166382, 0.15279340744018555, -0.318055659532547, 0.5236577987670898, -0.01744796149432659, 0.6381212472915649, -0.21621201932430267, 0.834987223148346, -0.10771564394235611, -1.1331504583358765, 0.26446816325187683, 0.4338679015636444, -0.5443010926246643, 0.9247032403945923, 1.0930728912353516, -0.27652114629745483, 0.27546072006225586, -0.4176611602306366, -0.2160310447216034, -0.7379316687583923, 1.2567238807678223, 0.28442710638046265, -0.17741426825523376, 2.1626336574554443, -0.5771653652191162, -1.1546130180358887, -0.93159019947052, -0.1629507690668106, 0.1121116653084755, -0.6685222387313843, 0.5214457511901855, 0.08775240182876587, -0.12534189224243164, 0.6831420660018921, -0.0885048508644104, -0.46028822660446167, -1.0015150308609009, 0.1834515482187271, -0.3029935956001282, -0.853027880191803, 0.28118300437927246, -0.405160129070282, -0.5171830654144287, 0.8769360184669495, -0.6515947580337524, -0.7247826457023621, 0.04272015392780304, 0.14069753885269165, -0.23695452511310577, -0.5004808902740479, 0.3929521143436432, -0.13804945349693298, 0.7016765475273132, -1.3445932865142822, 0.9740779399871826, -0.7815777063369751, 0.14969277381896973, 1.1734973192214966, -0.4097329080104828, -0.3191621005535126, 0.7446912527084351, 0.12639933824539185, -1.8497494459152222, 0.6324004530906677, 1.0105130672454834, -0.7054038047790527, 0.3081630766391754, -0.03483384847640991, -0.04578619822859764, 0.9676409959793091, -0.35729172825813293, 0.6875982284545898, -0.21607118844985962, -0.09495922178030014, -0.9484056830406189, -0.8337029218673706, -0.05037379264831543, -0.23232950270175934, -1.0208834409713745, 0.09808981418609619, -0.32339930534362793, -0.5221835374832153, -0.3598470985889435, -0.8981361985206604, 0.012725895270705223, 0.7226893901824951, 1.657632827758789, 0.3212663233280182, 0.5177586674690247, 0.3407215178012848, -0.0895659402012825, -0.5090640187263489, -0.2708950638771057, 1.3272920846939087, -0.1286877691745758, -0.10234030336141586, 1.1389195919036865, 0.7158918380737305, -0.11076591908931732, -0.3153785467147827, -0.5452244877815247, 0.6514793038368225, -0.6360821723937988, -0.5207223296165466, 0.4787036180496216, -1.0339435338974, 0.686130940914154, 0.4809432625770569, -0.756280779838562, -0.020112793892621994, -0.04632362723350525, 0.028015587478876114, -0.7469008564949036, -0.9641525149345398, -0.9061402678489685, 0.02772165834903717, -0.03683178126811981, 0.012393328361213207, -0.052706316113471985, -0.9724348187446594, 0.319396436214447, -0.09912564605474472, 0.23159539699554443, 0.15713182091712952, 0.46563634276390076, 0.004030002746731043, 1.7052252292633057, -0.24753235280513763, -1.5839033126831055, -0.42172831296920776, 0.1462329477071762, 1.110241413116455, 0.13256697356700897, 0.0619254894554615, -0.21448929607868195, 0.02577359788119793, 0.10171553492546082, 0.2129727602005005, 0.7977482080459595, -0.11186390370130539, 0.01080282311886549, 0.14439427852630615, 0.6486626267433167, 0.6352195739746094, -0.9558141231536865, -0.7889522910118103, -0.6078100800514221, 0.9163474440574646, 1.3999511003494263, 1.4713000059127808, 0.5718491077423096, 0.34913143515586853, 0.6047583818435669, -0.5675092935562134, -0.38028639554977417, -0.7287707328796387, -0.8048379421234131, -0.03086516261100769, -0.7426269054412842, -0.7339859008789062, 0.08121156692504883, -0.4708646833896637, 1.0096232891082764, 0.35501551628112793, 0.6100495457649231, 1.3212882280349731, -0.16229012608528137, -0.6137396097183228, -0.05956991761922836, -0.31223857402801514, -0.8555968403816223, 0.7703280448913574, 1.433779001235962, -0.5490541458129883, 0.17274056375026703, -0.06353704631328583, 0.22820055484771729, 0.4702152609825134, 0.16733095049858093, 0.1151728630065918, -1.442823886871338, -0.5218971371650696, -0.9973374605178833, 1.064672589302063, -0.4132837653160095, 0.40510496497154236, -0.5088610053062439, 0.01525785494595766, 0.41894277930259705, 0.8759260177612305, -0.09415619820356369, 0.44024813175201416, -0.927563488483429, -0.006754178553819656, -0.32658490538597107, -0.12079863995313644, -0.04600182920694351, -0.243275985121727, -0.599514365196228, -0.41405847668647766, 0.17902594804763794, -0.558556079864502, 0.21400906145572662, 0.05862410366535187, 0.41716885566711426, 0.10154827684164047, -0.10155130177736282, 0.4083564281463623, 0.0975579023361206, -0.20682275295257568, -0.6960410475730896, 0.5856395959854126, 0.6602485179901123, 0.7437082529067993, 0.038005221635103226, -0.0009834812954068184, 0.37077796459198, -0.23642173409461975, 0.26640745997428894, -0.044586967676877975, 1.595202922821045, 0.9205173254013062, 0.06656615436077118, 0.6859173774719238, -0.38672733306884766, -0.06030171737074852, -0.5342773795127869, 0.6628255248069763, 0.396186500787735, -1.2863744497299194, -1.0149240493774414, 0.4768838882446289, -0.1361997127532959, -0.38959258794784546, -0.5699226260185242, -0.4463426470756531, 0.595023512840271, -0.06392110884189606, 0.08483313024044037, -0.15041692554950714, -0.15961650013923645, 0.5444642901420593, -0.5893785953521729, 0.5736632943153381, 0.2990514636039734, -0.06594420969486237, 0.6522898077964783, -0.9303545355796814, -0.3845054805278778, -0.45833343267440796, 0.1433417648077011, 0.7042527198791504, -0.4731151759624481, 0.31225526332855225, -0.48617345094680786, -0.7291596531867981, -0.06429092586040497, 0.500985324382782, 1.4012234210968018, -0.24531979858875275, -0.26893433928489685, 0.7207968831062317, -0.82327800989151, -0.18896086513996124, -0.4080217480659485, -0.6537728309631348, 0.41806089878082275, -0.6488392353057861, 0.08434482663869858, -0.1311204433441162, -0.11764498800039291, 0.7641821503639221, 0.22338414192199707, 0.790884256362915, 0.3788833022117615, -0.059499774128198624, -1.7304531335830688, 0.18827852606773376, 0.3871263861656189, 0.2732742130756378, -0.062069352716207504, -0.9236437082290649, 0.39237943291664124, -0.3022458255290985, 0.31398916244506836, -0.10979042202234268, 0.33432629704475403, 0.4636828601360321, -0.35611358284950256, -0.015777472406625748, 0.6988735795021057, 0.8572723269462585, 1.3934426307678223, 0.845054566860199, -0.6719116568565369, -0.7103091478347778, 0.5917989611625671, -0.4944198727607727, 0.9695942997932434, 1.3734245300292969, 0.3200845420360565, 0.9439675211906433, -0.9602206945419312, -0.6960617899894714, 0.6899664402008057, 0.054350268095731735, 0.19890201091766357, 0.7266004085540771, 0.1968769133090973, -0.617091178894043, 0.2200506627559662, -0.0733138844370842, -0.2023870050907135, -0.07175528258085251, -0.0342506468296051, -0.4457041323184967, 0.7997535467147827, -0.8344810009002686, -0.15245738625526428, -0.726373016834259, 0.2591429352760315, -0.38194963335990906, 0.25024327635765076, -0.0042205690406262875, 0.5348163843154907, 0.5886260867118835, 0.9692444801330566, -0.35987743735313416, -0.8189254999160767, 0.27484625577926636, -1.1987686157226562, 0.4632857143878937, -0.34132128953933716, -0.16823707520961761, -0.6613360643386841, -0.17447540163993835, 0.375728040933609, 0.5025748610496521, -0.17522548139095306, -0.23881566524505615, 0.23639097809791565, -0.7384471297264099, 0.38978311419487, 1.1901315450668335, 0.8762086033821106, 0.3372911810874939, -0.2801247537136078, 0.280798077583313, 0.9901503920555115, -0.41124215722084045, -0.3031935691833496, 0.5377979278564453, -0.47414517402648926, 0.10637335479259491, -1.196205496788025, -0.7165939807891846, 0.6381479501724243, 1.2766318321228027, 0.47605350613594055, 0.572499692440033, 0.7247911691665649, 1.047805905342102, -1.0325665473937988, 0.39195993542671204, 0.3468945026397705, -0.5013326406478882, 0.22456727921962738, 0.4254551827907562, -0.11228778213262558, -0.5117509961128235, -0.7943809628486633, -1.6275969743728638, 1.0768165588378906, -0.41304323077201843, -0.5383461713790894, 0.7421115636825562, 0.643166720867157, 0.5045324563980103, 0.8993109464645386, -0.7789871692657471, 0.574245274066925, -0.5283935070037842, -0.09310103207826614, -1.8017507791519165, 0.7231965065002441, 0.5302459001541138, -0.30597153306007385, -0.9027496576309204, 0.27650752663612366, -0.601108193397522, 0.09252671897411346, -0.36621177196502686, 0.22589020431041718, 0.4229293167591095, 0.7463818788528442, 0.2334180325269699, -0.4513606131076813, 0.641735851764679, -0.9678261876106262, 0.012489665299654007, -0.1639818698167801, 0.6798758506774902, 0.5097708702087402, -0.34734076261520386, -0.04786005988717079, 0.10584544390439987, 0.23042963445186615, 0.1584944725036621, 0.00027004117146134377, 0.8029073476791382, 0.15877558290958405, 0.6981062293052673, -0.0959501788020134, 0.08952075988054276, -0.1993112862110138, -0.44256237149238586, 0.3628601133823395, 0.7360738515853882, -1.0869455337524414, 0.36370396614074707, 0.4736228883266449, -0.8129611611366272, -0.6075481176376343, -0.34000536799430847, -0.1639537662267685, -0.7631270289421082, -0.3316745460033417, -1.0654842853546143, 0.5927563309669495, 0.15825213491916656, 0.29765671491622925, 0.5822883248329163, 0.5300413370132446, -1.0508172512054443, 0.03324419632554054, 0.0028959307819604874, -1.2853624820709229, -0.08314378559589386, -1.1320948600769043, 0.8896257877349854, -0.3201272487640381, 0.3462480306625366, 0.5722026228904724, 0.9945314526557922, -1.6036442518234253, -0.7171213030815125, -0.6718462109565735, -0.5785715579986572, 0.9945598840713501, 0.6708915829658508, -1.1770955324172974, 0.9528269171714783, 0.7758546471595764, -0.8301202058792114, 0.24852235615253448, 0.2614649832248688, -0.9470168948173523, 0.4380783438682556, -0.42715099453926086, 0.8292645812034607, 0.12897145748138428, 1.8492106199264526, -0.13616818189620972, 0.7378455400466919, 0.3580612242221832, 1.2764333486557007, -0.3954443633556366, 0.34818294644355774, -0.3438303768634796, 0.4902695417404175, -0.33752796053886414, -0.8777762055397034, 0.15383446216583252, -0.40441426634788513, -1.2455579042434692, 0.8050032258033752, 0.8508511781692505, -0.4348269999027252, -0.16193170845508575, -0.7413443326950073, 0.9684748649597168, -0.7348237037658691, -0.4137873649597168, -0.05714451149106026, -0.12365888804197311, -0.4561322331428528, -0.30482131242752075, 0.48174139857292175, -1.6327581405639648, -0.17593297362327576, 0.674983561038971, 0.21957190334796906, -0.8240710496902466, 0.3638427257537842, 0.7602611780166626, 0.7166702151298523, -0.7890433073043823, 1.3322995901107788, 1.0754733085632324, -0.7854852080345154, -0.7193329930305481, -0.23565898835659027, 0.26015278697013855, 0.3341006934642792, -0.7656455039978027, -0.8481525182723999, -0.6372551918029785, 0.6157156229019165, 0.30715620517730713, -0.08419864624738693, -0.5342027544975281, -0.5360484719276428, -0.25751549005508423, 0.2949735224246979, 1.4593229293823242, -1.0532292127609253, -0.824917733669281, 0.8362098336219788, -0.009928124956786633, -0.44773754477500916, 0.9781385660171509, 0.6849470734596252, 0.3493402302265167, 0.031228559091687202, -0.1788732409477234, 0.8753001093864441, -0.11312610656023026, 0.7416834831237793, -0.48964983224868774, 0.4716932773590088, 0.10949128866195679, -0.5156500935554504, -0.8618263006210327, -0.6595259308815002, -0.5948498249053955, -0.8718151450157166, 0.07526034861803055, -1.210679531097412, -0.617071807384491, 0.15653479099273682, 0.22110459208488464, -0.6379753351211548, 0.027265815064311028, 0.521936297416687, -0.7992683053016663, -0.5764564275741577, 0.9707263708114624, 0.09601818770170212, 0.6366147994995117, 0.15823401510715485, -0.08299019187688828, -0.9869465827941895, 0.09601815789937973, 0.6851204633712769, 0.02532597817480564, -0.3850075602531433, -0.5330888628959656, 0.0594525970518589, -0.19123543798923492, -0.33545467257499695, 0.422686368227005, -1.2252397537231445, 0.17735348641872406, 0.3909153342247009, -0.8445778489112854, -0.5029340386390686, 0.2592242956161499, -0.06059078872203827, 0.1497592180967331, -1.0698539018630981, -0.6546205878257751, 0.971233069896698, -0.5888224840164185, 1.236530065536499, -0.19351841509342194, 0.5007064938545227, 0.6793875694274902, -0.7375560402870178, -0.5494951009750366, -1.0877548456192017, 0.6195430159568787, 0.017159409821033478, 0.37663042545318604, -0.1294894963502884, 0.17619170248508453, -0.5591458678245544, -1.7987536191940308, 0.4111795425415039, 0.3088141977787018, -0.2411184161901474, 0.20516470074653625, -1.453272819519043, -0.35400569438934326, -0.8221051692962646, 0.3789095878601074, 1.2510323524475098, -0.013829371891915798, 0.13526734709739685, 0.14221426844596863, -1.5682138204574585, -0.19341351091861725, 0.3649194538593292, -0.3332909643650055, -0.21933671832084656, 1.1906185150146484, 0.6609102487564087, 0.39059674739837646, 0.3287186026573181, 0.12508682906627655, 0.5435371398925781, -0.8962352275848389, -0.05869095027446747, -0.4793241024017334, -0.30772584676742554, -0.19011342525482178], [-0.04780071973800659, 1.4449114799499512, -2.48852276802063, -0.24024119973182678, 0.5453075170516968, 0.6418695449829102, 1.0563198328018188, -0.32563015818595886, 0.1692618578672409, -0.24677737057209015, -0.37727969884872437, -0.47688478231430054, 0.37068477272987366, 0.6302029490470886, 0.3524976968765259, 0.780588686466217, 0.48452019691467285, 0.27359503507614136, 0.7370282411575317, 1.1857062578201294, -0.35698387026786804, -0.929571270942688, -0.23085403442382812, 0.41641750931739807, 0.018305517733097076, 0.5161450505256653, -0.5059200525283813, -0.494846373796463, -1.2253193855285645, -0.721591591835022, 0.8609461188316345, -0.38033053278923035, 0.20696578919887543, -0.5203683972358704, -1.181405782699585, -1.086002230644226, 1.5599563121795654, 0.6773366928100586, 0.3707354664802551, 0.11576010286808014, 1.8884204626083374, 0.41888102889060974, 0.33159515261650085, -2.009134531021118, 0.5337947010993958, 0.3258076608181, 0.8983165621757507, -0.649513840675354, 0.04359238222241402, -0.18487699329853058, 0.4008055329322815, -0.8227813243865967, 0.6638901233673096, 1.0892045497894287, 1.1043566465377808, -0.6392347812652588, 0.14130501449108124, 0.9067656397819519, 0.1602104753255844, -0.10759471356868744, 0.9712914824485779, 0.16740292310714722, -0.47761768102645874, 0.5240591168403625, 0.5119963884353638, -0.548711895942688, -0.10282756388187408, 0.5096548199653625, 0.31244099140167236, 0.5548965334892273, 0.8191315531730652, 0.0739598199725151, -0.8748077154159546, 0.13315729796886444, -1.6745625734329224, 0.5167438983917236, 0.5475961565971375, 0.9308159351348877, -0.011427955701947212, 0.6838118433952332, -1.0006040334701538, 0.06092052906751633, 0.7114572525024414, -0.9583011269569397, 0.48564770817756653, 0.3737116754055023, 0.45462357997894287, -0.46983057260513306, -0.015001263469457626, 1.7427328824996948, -0.04948178306221962, 0.1422514170408249, 0.5146074891090393, -0.09907939285039902, -0.07056281715631485, 0.023402607068419456, -0.512403130531311, -0.04669809713959694, -0.3677661418914795, -1.068647861480713, -0.6241647005081177, -0.7427720427513123, 0.678922176361084, -0.6135216951370239, -0.9374215006828308, 1.3079326152801514, 0.5798127055168152, -0.27818062901496887, -0.444956511259079, -0.049046460539102554, -0.7079986333847046, 0.24919474124908447, -0.6996816396713257, -1.376657247543335, 0.1406041532754898, 0.6580634713172913, 1.3035413026809692, -0.027110399678349495, 0.6206389665603638, 0.681372880935669, -0.5759826302528381, -0.4113524556159973, 0.22209948301315308, 0.40128111839294434, 0.7999842166900635, 0.8666185140609741, -0.8116123080253601, -0.8227653503417969, 0.5757294297218323, -0.14740310609340668, 0.45326849818229675, 0.24250823259353638, -0.09416995197534561, 0.618968665599823, -0.4320315718650818, 1.1329644918441772, -0.48273414373397827, -0.3153044581413269, -0.12663458287715912, 0.2776767313480377, 0.4688163697719574, -0.0846010148525238, -0.029225120320916176, -1.1955857276916504, 0.18632195889949799, -0.4690772593021393, 0.5996710658073425, -0.14598730206489563, -1.071081519126892, 0.17922528088092804, -1.5411558151245117, -0.16033834218978882, 0.08065146952867508, 1.3767584562301636, 0.793190598487854, 0.13757982850074768, 0.5045250654220581, 0.3909291923046112, 0.6134613752365112, 0.478429913520813, 0.8745729923248291, 0.5565826892852783, -1.040776252746582, 0.9946959614753723, 0.109957255423069, -0.3601752817630768, 0.6885559558868408, 0.9407901167869568, 0.06852113455533981, 0.987515926361084, -0.7385547757148743, -0.29948580265045166, -0.23421525955200195, 0.951013445854187, 0.8308868408203125, -1.0976530313491821, 1.2666432857513428, -0.7165492177009583, -1.3812811374664307, -1.366898536682129, 0.19914363324642181, 0.008436772972345352, 0.6668906211853027, 0.03303109481930733, 0.03878059983253479, -0.5393388271331787, 0.3471255600452423, -0.30145442485809326, -0.7827953696250916, -0.7774938941001892, -0.36164844036102295, -0.22902899980545044, -1.2039638757705688, -0.039469100534915924, -0.523993194103241, -1.0815606117248535, 0.8856101632118225, -0.9079304337501526, -0.42554280161857605, 0.03517330437898636, 0.23443038761615753, -0.6436140537261963, -0.4211033880710602, 0.657458484172821, -1.1186680793762207, 1.2688865661621094, -1.938042402267456, 0.9717721939086914, -0.3349750339984894, -0.09471794217824936, 1.0495301485061646, -0.2596096992492676, -0.6006448864936829, 0.449899286031723, 0.32510048151016235, -1.7736800909042358, 0.42266666889190674, 0.3412839472293854, -0.36836865544319153, 0.02036285772919655, 0.049442846328020096, -0.07717075943946838, 0.17415563762187958, 0.0001053917221724987, 0.5039657354354858, 0.268888920545578, -0.3052363693714142, -0.6281769871711731, 0.09478621929883957, -0.006750632077455521, -0.4095604717731476, -1.228446125984192, 0.4801352620124817, 0.9036014080047607, -1.132603645324707, 0.32426971197128296, 0.20211416482925415, 0.38514649868011475, 0.5551291704177856, 0.9400497078895569, 0.7561768293380737, 0.5907511711120605, 0.3103664815425873, -0.18599656224250793, -0.4157039523124695, 0.06707926094532013, 1.0266703367233276, -0.5207257270812988, 0.1682996153831482, 1.3554270267486572, 1.0372276306152344, -0.0037139474879950285, 0.45601797103881836, 0.13229620456695557, -0.1336708962917328, -0.2768797278404236, -0.6958818435668945, -0.041524846106767654, -0.515238344669342, 1.4162819385528564, 0.8099117875099182, -0.6626237630844116, -0.4639684557914734, -0.41748112440109253, -0.1132492870092392, 0.007323520258069038, -0.6325069069862366, -0.24449095129966736, -0.12579578161239624, 0.7278763055801392, 0.0998796671628952, 0.20844793319702148, -0.2722250521183014, 0.5285595059394836, -0.060524147003889084, -0.8434732556343079, -0.5120487213134766, -0.06204234063625336, -0.14485272765159607, 1.1893680095672607, 0.29675179719924927, -1.3137946128845215, -0.34302958846092224, 0.06007326766848564, 0.551848292350769, 0.5336223840713501, -0.09816018491983414, 0.4171411991119385, 0.39544349908828735, -0.33798110485076904, 0.2031572312116623, 0.3363315165042877, 0.37886083126068115, 0.1576884239912033, -0.05123875290155411, 0.2580535113811493, 0.6445117592811584, -1.0887070894241333, -0.8958901166915894, -0.5441226959228516, -0.1750410944223404, 1.5430071353912354, 1.3243319988250732, 0.8626894950866699, 0.24955953657627106, -0.19564591348171234, 0.035907141864299774, -0.423888236284256, -0.7179052233695984, -0.8926146626472473, -0.6067714691162109, -0.9510863423347473, -0.6016289591789246, 0.06217202916741371, -0.22186759114265442, 0.5789292454719543, -0.26785165071487427, 0.1725177764892578, 1.3986902236938477, -0.7363059520721436, -0.780694842338562, -0.2703699469566345, -0.38519638776779175, -0.7510941624641418, 0.4688020944595337, 1.153646469116211, -1.0717954635620117, -1.007300853729248, 0.12020984292030334, -0.16056102514266968, 0.7828655242919922, -0.26984599232673645, 0.37637805938720703, -0.7882121801376343, -0.9585683345794678, -0.8948668241500854, 1.3026840686798096, -0.05467098206281662, -0.010312147438526154, -0.3513057827949524, 0.25275030732154846, -0.2379101812839508, -0.038328710943460464, -0.5514739751815796, 0.17856426537036896, -0.9070250988006592, -0.16159464418888092, -0.07266727834939957, 0.8625086545944214, 0.4249863624572754, -0.8070025444030762, -0.7579049468040466, -0.23080995678901672, -0.0665174201130867, -0.3303894102573395, 0.6588264107704163, 0.33439022302627563, 0.6952638030052185, 0.09889762848615646, 0.5003912448883057, 0.47622352838516235, 0.08573652058839798, -0.3789823353290558, -1.4712156057357788, 0.537761390209198, 0.698843777179718, 1.087009072303772, 0.07351842522621155, 0.37742653489112854, 0.0949506014585495, 0.18596796691417694, 0.3433922529220581, -0.13927660882472992, 1.2503677606582642, 0.06608612835407257, 0.24802738428115845, -0.4124310612678528, -0.7548140287399292, 0.25440168380737305, -1.0170034170150757, 0.1063728779554367, 0.31250351667404175, -0.6145434379577637, -0.4335060119628906, 0.7173288464546204, 0.04988093674182892, -0.2825769782066345, -0.17505116760730743, 0.03833288326859474, 0.9689927101135254, -0.05056801810860634, -0.5200206637382507, -0.4448435604572296, -0.018658889457583427, 0.7165647149085999, -1.0160760879516602, 0.3375595510005951, 0.09423045068979263, 0.5429407358169556, 1.1908366680145264, -1.2182809114456177, -0.44005435705184937, -0.6789238452911377, 0.5706539750099182, 0.7845646142959595, 0.11332163214683533, 0.16833290457725525, -0.6250888109207153, -0.156764954328537, -0.15594612061977386, 0.32986634969711304, 1.281893253326416, -0.36225810647010803, -0.10747827589511871, 0.3076666295528412, -0.1388404220342636, 0.4732251763343811, -0.8312579393386841, -0.05287995934486389, 0.3633498251438141, -0.4596993029117584, 0.25015485286712646, -0.4087110459804535, -0.39188653230667114, 1.399200677871704, -0.08815574645996094, 0.6042773723602295, 0.44908562302589417, 0.30355438590049744, -1.2751752138137817, 0.5232493877410889, 0.26701077818870544, -0.6283194422721863, -0.5934841632843018, -0.12413755804300308, 0.30582618713378906, -0.21612851321697235, -0.2193305343389511, 0.38772550225257874, 0.568527340888977, -0.21054919064044952, -0.28045621514320374, 0.006936696823686361, -0.19827218353748322, 0.7489478588104248, 1.3767000436782837, 0.659168004989624, -0.026772523298859596, -1.1016030311584473, 0.7826988101005554, -0.6556567549705505, 0.22843684256076813, 1.0476001501083374, 0.10523281991481781, 1.1702007055282593, -1.9569272994995117, -0.5539891123771667, 0.7577295303344727, 0.04662846401333809, 0.5694559812545776, 1.2073895931243896, -0.012292305938899517, -0.38928285241127014, 0.02614358440041542, -0.28901633620262146, 0.1954609453678131, 0.3397359848022461, -0.1977022886276245, -0.37750568985939026, 0.7640625834465027, -1.0407999753952026, 0.2881017327308655, -0.5420737862586975, -0.630128800868988, -0.5813275575637817, 0.12107264995574951, 0.6267247796058655, 0.41931673884391785, 0.4348906874656677, 1.2040126323699951, -0.820716381072998, -1.1632912158966064, -0.19394442439079285, -0.4258970618247986, 0.17779426276683807, -0.4220205247402191, 0.021153531968593597, -0.6974260210990906, -0.38473939895629883, -0.4627033770084381, 0.6770769357681274, -0.11011083424091339, -0.6997424960136414, -0.20616871118545532, -1.3870142698287964, 0.22779032588005066, 0.9883263111114502, 0.8205428123474121, 0.3442278504371643, -0.05105453357100487, 0.9371681809425354, -0.39178311824798584, -1.1616013050079346, -0.5251193642616272, 0.4273648262023926, -0.09121782332658768, -0.4468841552734375, -0.6520084738731384, -0.5660505890846252, 0.44162803888320923, 0.824012279510498, -0.1782597303390503, 1.3520399332046509, 0.7137619853019714, 1.0330138206481934, -0.43048688769340515, -0.7342941164970398, 0.20025451481342316, -0.5189496874809265, 0.2618587911128998, 0.8776659369468689, -0.0719069242477417, -0.6642207503318787, -0.20408278703689575, -1.44556725025177, 0.7847534418106079, -0.6642476320266724, -0.5597555041313171, 1.166504144668579, 0.20567816495895386, 0.3865378797054291, 0.6589027643203735, -0.6864600777626038, -0.014741349965333939, -0.20273452997207642, -0.5309440493583679, -1.4917566776275635, 0.282513827085495, 0.4080170691013336, -0.016482632607221603, 0.15881633758544922, 0.7187361717224121, -0.3131750822067261, 0.006695159710943699, -0.09585423767566681, 0.6154642105102539, 0.26475223898887634, 0.7877443432807922, -0.04741087183356285, -0.3265654444694519, 0.6031289100646973, -0.9974648356437683, -0.2841741442680359, -0.017395954579114914, 0.8338727951049805, 0.5198042988777161, -0.42099204659461975, 0.519970178604126, -0.3912508487701416, -0.13961093127727509, -0.265937477350235, -0.36993932723999023, 0.5163513422012329, 0.47556227445602417, -0.28293630480766296, 0.38638317584991455, -0.07022227346897125, -0.5420290231704712, -0.8611977696418762, 0.35469892621040344, 0.4949403405189514, -1.3482496738433838, 0.21247448027133942, 0.072696253657341, -0.7779107093811035, -0.48074376583099365, -0.34344786405563354, -0.3930172324180603, -1.053555965423584, -1.0419232845306396, -1.3449833393096924, 0.48391982913017273, 0.44318336248397827, -0.32059767842292786, 0.4628051519393921, 0.10311343520879745, -1.3110681772232056, -0.4212195873260498, -0.3223429322242737, -1.3634140491485596, -0.21428361535072327, -0.8916627764701843, 0.9620095491409302, 0.12284770607948303, 0.25518321990966797, 0.0951678603887558, 1.0976760387420654, -1.2745440006256104, -1.131877064704895, -0.8233119249343872, -0.6077193021774292, 1.3241772651672363, 0.08225631713867188, -1.1359975337982178, 1.110416054725647, -0.017069954425096512, -0.5842103362083435, 0.18808238208293915, -0.06913696974515915, -0.6889646649360657, 0.3579918444156647, -0.12436562031507492, 0.6386227011680603, 0.7169853448867798, 1.0630483627319336, 0.8859694004058838, 0.44787347316741943, 0.48335757851600647, 0.9605033993721008, -0.8275061249732971, -0.1863480508327484, -0.11292798072099686, 0.9198493957519531, -0.9635565280914307, -0.6939764022827148, 0.1481652855873108, -0.644228458404541, -0.7123307585716248, 0.3154577612876892, 0.8330323100090027, -0.6800493597984314, 0.5222387313842773, -0.46934863924980164, 0.01035867165774107, -0.8402443528175354, 0.42495718598365784, -0.06534016877412796, -0.26394760608673096, -0.29532477259635925, 0.011879414319992065, 0.6321703791618347, -1.7643388509750366, -0.129612535238266, 0.4155299663543701, -0.030487684532999992, -0.13895124197006226, 0.7875940203666687, 0.510742723941803, 0.5338520407676697, -0.8368116617202759, 1.6739636659622192, 0.9467403292655945, -0.7127021551132202, -0.22356939315795898, 0.6039880514144897, 0.3156200647354126, 0.38800403475761414, -0.9986683130264282, -0.36929839849472046, -0.908827006816864, 0.8180010318756104, 0.2767963707447052, 0.5600759387016296, -0.15533268451690674, -0.05806832015514374, -0.7271915078163147, 0.12234611064195633, 1.2775710821151733, -1.646533727645874, -0.40195563435554504, 1.1508234739303589, 0.40634217858314514, -0.5668181777000427, 0.37303081154823303, 0.8210957050323486, 0.1485634744167328, 0.03154631704092026, 0.5330976843833923, 1.1207611560821533, -0.9788063764572144, 0.4727696180343628, -0.02421599067747593, -0.30941399931907654, -0.07012920081615448, -0.16392920911312103, -1.2304884195327759, 0.6741566061973572, -0.7661271095275879, -1.1767761707305908, 0.3912036716938019, -1.0104970932006836, -0.937064528465271, 0.22179235517978668, 0.5597909092903137, -0.3123033046722412, -0.4236257076263428, 0.389566570520401, 0.2816261351108551, -0.09331687539815903, 0.4738999307155609, -0.2507970929145813, 1.6065757274627686, 0.19453850388526917, 0.21882741153240204, -1.2254334688186646, -0.1981624811887741, 0.7212276458740234, -0.16020210087299347, -0.48678991198539734, 0.143271341919899, 1.321535348892212, -0.11219718307256699, -0.7430413365364075, 0.16570468246936798, -0.4803808331489563, 0.2532544434070587, 0.6090124249458313, -1.0144761800765991, -0.32820621132850647, 0.2621091306209564, 0.5615270137786865, -0.4496881365776062, -0.43721121549606323, -0.46738433837890625, 0.5252431035041809, -0.3137381374835968, 0.585030734539032, 0.21999429166316986, 0.5566052198410034, 0.45510485768318176, -1.1380852460861206, -0.5582427382469177, -0.7132656574249268, 0.7416984438896179, 0.1247972920536995, 0.46787527203559875, -0.4703051745891571, 0.22820083796977997, -0.6334269046783447, -0.6484746336936951, 0.7431168556213379, 0.5446447730064392, -0.10751239210367203, -0.06699660420417786, -1.3832322359085083, -0.2693568766117096, -1.0899958610534668, -0.0480683296918869, 0.8856534361839294, 0.5240957736968994, -0.10490130633115768, 0.4188830852508545, -0.6843716502189636, -0.07296699285507202, -0.10240355879068375, -0.08673716336488724, 0.14076127111911774, 1.1821180582046509, 2.174536943435669, 0.4273016154766083, -0.08009454607963562, -0.4883878827095032, 0.38755494356155396, -0.9596745371818542, 0.1289587765932083, -0.6490786075592041, -0.6120767593383789, -0.37134090065956116], [-0.32367557287216187, 1.4956251382827759, -1.9744670391082764, -0.10916285961866379, 0.4658931493759155, 0.5696658492088318, 0.9674419164657593, -0.44141146540641785, 0.5885269641876221, -0.1743760108947754, -0.5096872448921204, -0.6448789834976196, 0.3274520933628082, 1.128267526626587, 0.22847607731819153, 0.5064164996147156, 0.7776390910148621, -0.3092539310455322, 1.0015588998794556, 1.4072202444076538, 0.8625220656394958, -1.2702218294143677, -0.4522782266139984, 0.6026080250740051, -0.08080793917179108, 0.4288923442363739, -1.0244534015655518, -0.3912792503833771, -1.1657450199127197, -0.8500221371650696, 1.101385474205017, -0.9535390734672546, 0.9965792298316956, 0.430658757686615, -1.1348317861557007, -0.08533704280853271, 1.861992597579956, 1.004381775856018, 1.3318443298339844, -0.5384254455566406, 1.5743610858917236, 0.3565683364868164, 0.335305780172348, -0.895368754863739, 0.4688233435153961, -0.2927147150039673, 0.7335897088050842, -1.2417261600494385, 0.45889905095100403, -0.07379066199064255, 0.15783774852752686, -0.4656467139720917, 0.6446748375892639, 0.7359883189201355, 1.4451090097427368, -0.4558216333389282, 0.28628820180892944, 0.19929473102092743, 0.3325415849685669, 0.03816809132695198, 1.0979889631271362, 0.3369012475013733, -0.528884768486023, 0.7026985883712769, 0.9316255450248718, 0.2585000991821289, 0.06253719329833984, 0.24344699084758759, 0.09367164969444275, 0.22945716977119446, 0.6419296264648438, 0.13335034251213074, -0.8704688549041748, 0.07286656647920609, -1.087927222251892, 0.5443737506866455, 0.502977728843689, 1.0666401386260986, 0.3238469660282135, 0.6157094836235046, -0.38857969641685486, 0.7833632826805115, 0.5353232026100159, -0.6794417500495911, -0.03248242288827896, 0.5199165344238281, 0.38534119725227356, -0.19725315272808075, -0.8869768381118774, 2.131916046142578, 0.44336211681365967, 0.5296573638916016, 0.560486376285553, 0.18754231929779053, 0.01998000778257847, -0.10255136340856552, 0.760925829410553, 0.14156685769557953, -0.42456963658332825, 0.11074448376893997, -0.8087745904922485, -0.8110911250114441, 0.0030317604541778564, -0.1652732491493225, -0.0607810840010643, 1.015543818473816, 0.8432112336158752, -0.13225868344306946, -0.881946861743927, -0.1474812626838684, -1.4710975885391235, -0.0790351927280426, -0.7251912355422974, -0.8357533812522888, -0.24085181951522827, 0.3713361322879791, 0.8919978141784668, -0.5332220792770386, 0.3179461658000946, 0.41821056604385376, -0.47136184573173523, -0.0930325984954834, -0.5665152072906494, 0.6642389893531799, 0.6191562414169312, 1.0208660364151, -1.4294795989990234, -1.2194501161575317, 0.2537113428115845, 0.00718032568693161, 0.008514052256941795, 0.0622783824801445, -0.06964405626058578, 0.8592707514762878, -0.22985650599002838, 1.691541314125061, -0.9362895488739014, 0.010873932391405106, 0.1970670074224472, -0.06775426119565964, 0.951000452041626, -0.7639073133468628, -0.2957158088684082, -0.5548620820045471, -0.07995311170816422, -0.34582042694091797, -0.09327590465545654, 0.5190356969833374, -1.3156728744506836, 0.9636650085449219, -0.9972381591796875, 0.4714973568916321, 0.4409160614013672, 0.9869028925895691, 0.5914456844329834, -0.18008913099765778, 0.4151715040206909, -0.3673602342605591, 0.23499110341072083, 0.5011849403381348, 0.08565504103899002, 0.7055522203445435, -0.7509503960609436, 0.7149768471717834, 0.1434280276298523, -0.4948710799217224, 0.4237121045589447, 0.7910556793212891, -0.11899146437644958, 1.1708132028579712, -0.11842593550682068, -0.5682189464569092, -0.6163651943206787, 0.33471179008483887, 1.0823602676391602, -0.7361181378364563, 1.2023577690124512, -0.5924144983291626, -1.346420168876648, -1.2953367233276367, 0.20648150146007538, -0.617133378982544, -0.10878700762987137, 0.47709760069847107, 0.055897220969200134, -0.5892276763916016, 0.22111071646213531, -0.6007134914398193, -0.5135616660118103, -0.8083145022392273, -0.7070229649543762, -0.6883451342582703, -0.6196560263633728, 0.22533345222473145, -0.6782103776931763, -0.9053794741630554, 0.7489093542098999, -0.8862480521202087, -0.49942490458488464, -0.265983521938324, -0.7390801906585693, -0.8368266224861145, -0.7010427713394165, 0.11109035462141037, -0.6065064668655396, 0.9978436231613159, -1.6602189540863037, 0.7039588093757629, -0.09147986024618149, 0.4885711669921875, 1.4371215105056763, 0.4654565751552582, -0.37139037251472473, 0.339178204536438, 0.24754315614700317, -1.3068066835403442, -0.06896021962165833, 0.09812994301319122, 0.4598076343536377, 0.4593832790851593, -0.41219455003738403, 0.01643460802733898, 1.1478397846221924, 0.2605631351470947, 0.4312918484210968, -0.4256649315357208, -0.09114530682563782, -0.5229958891868591, -1.233282208442688, 0.5597747564315796, -0.8491626977920532, -1.1594616174697876, 1.0021562576293945, 0.6600193381309509, -0.5658580660820007, 0.5082545876502991, -0.015558043494820595, 0.9204654097557068, 0.24757513403892517, 1.4588427543640137, 0.5067978501319885, 0.39260900020599365, 0.1298690289258957, -0.5340234637260437, -0.7689504027366638, 0.745449423789978, 0.5416216254234314, -0.3425711691379547, -0.025646265596151352, 0.7525371313095093, 1.5037060976028442, 0.6955798268318176, 0.09808329492807388, 0.6399781703948975, -0.2214670032262802, -1.0391812324523926, -0.8247469663619995, 0.1855064034461975, -1.0914732217788696, 1.3318390846252441, 0.4090118110179901, -1.0662697553634644, -1.3039125204086304, -0.22090068459510803, 0.2527632713317871, 0.025226686149835587, -0.6260213851928711, -1.0057413578033447, -0.593780517578125, 0.03906561806797981, -0.5008999109268188, 0.33425506949424744, -0.47535568475723267, 0.9165000319480896, -0.16987067461013794, -0.8787513971328735, -0.19318248331546783, 0.61883944272995, -0.07753784954547882, 0.9548474550247192, 0.061282653361558914, -1.9004110097885132, -0.41804081201553345, 0.6128342151641846, 1.0343478918075562, 0.16402208805084229, 0.30542200803756714, 0.35014456510543823, 0.6197806000709534, 0.11884225904941559, -0.12716971337795258, 0.2904392182826996, 0.5783548951148987, -0.12114926427602768, 0.5112144947052002, 0.5417400002479553, 0.7411817312240601, -1.277944564819336, -1.030531406402588, -0.583619236946106, 0.3822464346885681, 1.764922857284546, 0.4689939320087433, 1.2107597589492798, -0.4335366189479828, -0.28484758734703064, -0.5107570290565491, -0.6430225372314453, -1.3349117040634155, -1.0198692083358765, -0.4483490586280823, -1.1730469465255737, -0.42495396733283997, -0.14339277148246765, -0.26585307717323303, 0.10828232765197754, -0.65129554271698, -0.09581306576728821, 1.1174039840698242, -0.7571277618408203, -0.6988934874534607, -0.3499908745288849, 0.295991450548172, -0.8052239418029785, 0.5018649697303772, 0.8110804557800293, -1.0301713943481445, -0.8471225500106812, 0.4082666337490082, 1.0679562091827393, 0.166042760014534, 0.06819602102041245, 0.09944837540388107, -1.069579005241394, -1.6686726808547974, -0.33129534125328064, 0.8520461320877075, 0.3874441087245941, -0.06479401141405106, -0.14316214621067047, 0.540101945400238, 0.533207893371582, -0.2598560154438019, 0.06117212027311325, 0.3194006085395813, -0.7696049213409424, -0.8222959637641907, -0.20213283598423004, 0.275243878364563, 0.3650932013988495, -0.7757343053817749, -0.3985053598880768, -0.7139220237731934, -0.4968910217285156, 0.314622163772583, 0.43558311462402344, 0.06729229539632797, 0.22818878293037415, -0.005573549307882786, 0.5623776316642761, 0.4286291301250458, 0.1972711980342865, 0.19405269622802734, -1.1714116334915161, 0.5749855041503906, 0.5498611927032471, 1.2010575532913208, 0.15435947477817535, 0.2835124731063843, -0.1037081703543663, 0.37874168157577515, 0.6013621687889099, -0.17020511627197266, 0.9875430464744568, -0.8913593292236328, -0.0985485389828682, -0.6495952606201172, -0.8131225109100342, 0.6880845427513123, -0.7444887161254883, 0.20035046339035034, -0.2447165995836258, -1.1488317251205444, -0.44867682456970215, 0.7467730045318604, 0.08143157511949539, -0.7003706097602844, -0.05948634818196297, 0.24733522534370422, 0.5738320350646973, -0.031079106032848358, 0.1797102689743042, -0.6791139841079712, 0.32734790444374084, -0.02150152064859867, -0.7413724064826965, -0.26626476645469666, -0.2750760018825531, -0.004936780780553818, 0.6449757218360901, -1.028645634651184, 0.8282738924026489, -0.9898528456687927, 0.5188798904418945, 0.2473926544189453, -0.47625449299812317, 0.019455600529909134, -0.27653491497039795, -0.10218163579702377, -0.30897635221481323, -0.42940783500671387, 1.387056589126587, 0.0454418919980526, -0.4228626787662506, 0.14542615413665771, -0.516144335269928, 0.2657078802585602, -0.947421133518219, 0.28477734327316284, 0.5115941762924194, -0.5618432760238647, -0.08576435595750809, -0.00734839029610157, -0.014887988567352295, 1.357040286064148, 0.22889479994773865, 0.46483179926872253, 0.7012513279914856, 0.6675369143486023, -0.7903061509132385, -0.25278565287590027, 0.5989140272140503, -0.12537306547164917, -1.1647443771362305, -0.3442292809486389, 0.46352434158325195, -0.3493458032608032, 0.09370069205760956, 0.07736802101135254, 0.5390288233757019, 0.8267472386360168, 0.06995870918035507, 0.23668713867664337, 0.44888007640838623, 0.45725950598716736, 1.2691644430160522, 0.4696802496910095, -0.5193207859992981, -0.6540495753288269, 0.3575949966907501, -1.3127256631851196, -0.1353350132703781, 1.1073081493377686, 0.06922940164804459, 1.1383512020111084, -1.8361396789550781, -0.9287346005439758, 0.41661858558654785, 1.134734869003296, 0.6065090298652649, 0.8230419158935547, -0.33219555020332336, 0.049869198352098465, 0.010097362101078033, 0.11176440119743347, -0.4122897684574127, 0.08544866740703583, 0.04715042561292648, -0.43808940052986145, 0.8352722525596619, -0.7120726108551025, 0.4739059805870056, -0.6960521936416626, -0.5480844378471375, -0.7166226506233215, -0.2557859718799591, 0.25538334250450134, 0.42263156175613403, 0.963606059551239, 1.5917400121688843, -1.2475541830062866, -0.95256108045578, 0.006846718490123749, -0.8701176643371582, -0.21891991794109344, -0.2769435942173004, -0.8235097527503967, -0.4863198697566986, -0.4772011935710907, -0.6999255418777466, 0.4545878469944, -0.25994178652763367, -0.3069852292537689, -0.663354754447937, -1.0713475942611694, 0.23521117866039276, 0.9140149354934692, 0.8082481622695923, 0.32853999733924866, 0.08455965667963028, 0.453046053647995, 0.1876763105392456, -0.7935534119606018, 0.21683280169963837, 0.8314127922058105, -0.0010655075311660767, 0.13221558928489685, -0.9504485130310059, -0.8595699071884155, 0.4895876348018646, -0.08147641271352768, -0.5495564937591553, 0.5499277114868164, 1.668487310409546, 1.3072469234466553, -0.3206758201122284, -0.6707075238227844, 0.5744227170944214, 0.0030412450432777405, 0.6345880627632141, 1.5937174558639526, 0.13015517592430115, 0.180909663438797, -0.19766011834144592, -1.4668744802474976, 0.7192792296409607, -0.6091943383216858, -0.33882272243499756, 1.0774890184402466, -0.2045612335205078, 0.7065176963806152, 0.27695807814598083, -0.3147781491279602, 0.5094406008720398, -0.19060885906219482, -0.04909399524331093, -1.7172019481658936, 0.3026179075241089, 0.5758471488952637, -0.19960781931877136, 0.40564262866973877, -0.3190062940120697, 0.16525138914585114, 0.16627709567546844, -0.01087743416428566, 0.38577771186828613, -0.09799675643444061, 0.6320804357528687, 0.2791161835193634, -0.6324554085731506, 0.8455808162689209, -0.7257494330406189, -0.20834386348724365, 0.06973284482955933, 0.5147117972373962, 0.7367081046104431, 0.07412607222795486, 0.07958044111728668, -0.656387209892273, -0.10512308776378632, -0.12031815201044083, -0.16910846531391144, 0.3611975610256195, 0.26182541251182556, 0.2864566743373871, 0.013658060692250729, -0.2483605146408081, -0.5149706602096558, -0.7625328302383423, 0.048627473413944244, 0.32158488035202026, -0.6152776479721069, 0.4591705799102783, 0.432455837726593, -0.43432947993278503, -0.9077098965644836, -0.22411386668682098, 0.3444506525993347, -1.3189808130264282, -1.3118603229522705, -1.585253357887268, 0.11282873153686523, 0.2985175549983978, -0.5928375720977783, 1.0349125862121582, 0.8199769258499146, -1.1782840490341187, -0.4660896956920624, -0.11086662858724594, -0.7005931735038757, 0.12676778435707092, -0.9094565510749817, 0.7750167846679688, -0.405620276927948, 0.056740060448646545, 0.4366927742958069, 1.0234378576278687, -1.3493624925613403, -1.4508998394012451, -1.4593558311462402, -0.8684606552124023, 1.2939869165420532, 1.4371286630630493, -0.4824727475643158, 1.323561191558838, 0.7575411200523376, -1.0024614334106445, -0.5401901006698608, 0.07147032022476196, -1.354429006576538, 0.14481014013290405, 0.44892939925193787, 0.34226056933403015, 0.3505999445915222, 0.8773180246353149, 0.6187853813171387, 0.30661603808403015, 0.3979608118534088, 0.5625551342964172, -0.6711690425872803, -0.7148498296737671, 0.006512897089123726, 1.1587624549865723, -1.3669781684875488, -1.0227391719818115, 0.10529989004135132, -1.1715482473373413, -0.2469838559627533, -0.10474289953708649, 0.4986596405506134, -0.5965245962142944, 0.7744195461273193, -0.3429756164550781, 0.5071191787719727, -0.9536019563674927, 0.832871675491333, 0.2532172203063965, -0.6117075681686401, -0.14937835931777954, 0.2549606263637543, 0.3831847310066223, -1.3166813850402832, 0.24507266283035278, 0.6208938956260681, -0.11481106281280518, -0.8437155485153198, 0.7557686567306519, 0.41818001866340637, 0.12047921121120453, -0.7605845332145691, 1.2283297777175903, 0.23318235576152802, -0.40575751662254333, -0.30343523621559143, 0.6593054533004761, -0.14735785126686096, 0.32035747170448303, -1.1815046072006226, 0.0715574398636818, -0.6242956519126892, 0.4311951994895935, -0.0235263891518116, 0.4077286124229431, 0.5292606353759766, -0.32979318499565125, -0.30428722500801086, 0.7187693119049072, 0.7143298983573914, -1.3625653982162476, 0.022489476948976517, 0.8428128361701965, 0.43577948212623596, -0.6592211723327637, 0.007940338924527168, 0.6678078174591064, 0.5233044028282166, -0.7758985161781311, -0.16862189769744873, 0.8584049940109253, -0.8004720211029053, 0.017479537054896355, 0.11333958059549332, -0.9035661816596985, -0.12674227356910706, 0.2517704963684082, -1.3688392639160156, 0.06238958239555359, -0.7229354977607727, -0.12154997140169144, 0.4985264539718628, -0.7181338667869568, -0.9547368288040161, 0.45033469796180725, 0.09360756725072861, 0.027290252968668938, -0.3985217809677124, 0.32462263107299805, 0.011072367429733276, 0.27018794417381287, 0.8860076069831848, -0.06287895143032074, 0.9002654552459717, 0.2316076159477234, 0.0800914540886879, -1.3785096406936646, 0.3654598295688629, 0.39949649572372437, 0.1305849552154541, -0.5630566477775574, -0.16057296097278595, 1.230103611946106, -0.20441487431526184, -0.46472328901290894, 0.04393124207854271, -0.15374502539634705, 0.4662737548351288, 0.6553093194961548, -0.21121856570243835, 0.036378584802150726, 0.43017473816871643, 0.7793532013893127, -0.7166167497634888, -0.3938788175582886, -1.1591767072677612, -0.6999900937080383, -0.4086032509803772, 0.691516637802124, -0.3388781249523163, 0.5498371124267578, 0.20490151643753052, -0.12315189838409424, -0.8725196719169617, -1.0046051740646362, 0.32423844933509827, -0.303398996591568, 0.8918642997741699, -0.3270428478717804, 0.7241486310958862, -1.0048141479492188, -0.5848613381385803, 0.31232887506484985, 0.2187877893447876, -0.005367844831198454, 0.3902353048324585, -0.902811586856842, -0.13357307016849518, -0.5679724812507629, 0.642339289188385, 1.9541614055633545, 0.2785508930683136, -0.4840880036354065, 0.38619372248649597, -1.4662747383117676, 0.13749557733535767, 0.14206397533416748, 0.348786860704422, 0.6533872485160828, 0.899563729763031, 1.5689808130264282, 0.692592978477478, 0.29089540243148804, 0.15581952035427094, -0.1330869048833847, -0.9928649067878723, -0.21103577315807343, -0.9459227919578552, -0.4454127252101898, -0.6383877396583557], [-0.66779625415802, 1.466428279876709, -2.473623275756836, -0.7163763642311096, 0.5780026912689209, 0.8596818447113037, 1.5623564720153809, -1.1469826698303223, 1.3360234498977661, -0.25216615200042725, -0.7450248003005981, -0.10228052735328674, 0.4118140935897827, 0.784013032913208, 0.5769762992858887, 0.09797906875610352, 0.4622395634651184, -0.6276650428771973, 0.7030085325241089, 1.2012939453125, -0.05014663562178612, -1.6747386455535889, -0.67880779504776, 1.1140966415405273, -0.9130373597145081, 0.017963223159313202, -0.851546585559845, 0.20844723284244537, -1.152552604675293, -0.48458313941955566, 0.9777645468711853, -0.835428774356842, 0.3591321110725403, 0.5873364210128784, -1.093095302581787, -0.8417372703552246, 1.5477426052093506, 0.6930631399154663, 0.9937337636947632, -0.6806766390800476, 1.83060622215271, 0.944358766078949, 1.0244632959365845, -1.1088488101959229, 0.7496278285980225, -0.06672839820384979, 1.284592628479004, -0.5228784084320068, -0.20491814613342285, -0.3518297076225281, -0.6392170190811157, -0.7634778022766113, 0.42853543162345886, 0.9852112531661987, 2.029064416885376, -0.23896504938602448, 0.6286330223083496, -0.028845565393567085, 0.5478798151016235, 0.0552411712706089, 1.3747215270996094, 0.14672183990478516, -0.38806745409965515, 1.3022146224975586, 0.4964568614959717, -0.023539744317531586, -0.3384307622909546, 0.4094006419181824, -0.09953860193490982, 0.10378514230251312, 0.7332692742347717, -0.425554096698761, -0.6551425457000732, -0.38780611753463745, -1.0664341449737549, 0.8497185707092285, -0.28844404220581055, 0.5216026306152344, -0.18844056129455566, -0.02678847312927246, -0.9911621809005737, 0.11183597147464752, 0.6941263675689697, -0.6337835192680359, 0.11651159077882767, 0.2609225809574127, 0.9997607469558716, -0.29473453760147095, 0.27065765857696533, 1.496870517730713, 0.12777245044708252, -0.020264897495508194, 0.7498364448547363, 0.17325395345687866, 0.2296803891658783, -0.23627352714538574, 0.24326586723327637, 0.36739107966423035, -0.17325358092784882, 0.10219091922044754, -0.6410292387008667, -0.7325649261474609, 0.19448815286159515, -0.1194128543138504, 0.09622058272361755, 1.2243356704711914, 0.06328275799751282, -0.24919870495796204, -0.8666797876358032, -0.6040714979171753, -0.5116852521896362, 0.6866747140884399, -0.9877806901931763, -1.3860379457473755, -0.7617284059524536, 1.1290416717529297, 0.40212202072143555, 0.8135378360748291, 0.9131261706352234, 0.14433898031711578, -0.7657248973846436, 0.6301443576812744, 0.33199459314346313, 0.6525587439537048, 0.2521269917488098, 0.8073084950447083, -1.0761066675186157, -0.42719706892967224, 0.36086249351501465, 0.2072123885154724, 0.1970377266407013, -0.4374654293060303, -0.022795800119638443, 0.6663200855255127, -0.5561825037002563, 1.377044677734375, -0.1260472983121872, -0.41731947660446167, -0.29899412393569946, 0.9471899271011353, 0.8420847654342651, -0.7887150049209595, -0.4564725160598755, -0.4130001664161682, -0.9272985458374023, -0.26180723309516907, 0.28240031003952026, 0.17928099632263184, -0.7441893815994263, 0.05015306547284126, -1.4384828805923462, 0.9113445281982422, 0.5764399766921997, 0.5372970104217529, 0.14237520098686218, -0.7432459592819214, 0.22346650063991547, -0.6050442457199097, 0.5499089956283569, 0.1860351413488388, 0.4533557593822479, 0.3552199602127075, -0.6236961483955383, 0.4950734078884125, 0.2494179904460907, 0.5122014284133911, 0.5907602310180664, 0.8871563673019409, -0.4857552647590637, 0.3099792003631592, -0.3597843050956726, -1.097723364830017, -1.0875321626663208, -0.0751541405916214, 0.7901515960693359, -0.7876083254814148, 0.8519693613052368, -0.5770999193191528, -1.4132130146026611, -0.7082281112670898, 0.19822096824645996, -0.5141773223876953, -0.06246728450059891, 0.2696168124675751, 0.6915346384048462, -0.5890437364578247, 0.4568566679954529, -0.6152578592300415, -0.4466504454612732, -0.625562310218811, -1.2521989345550537, -0.7721601128578186, -0.7397262454032898, -0.13341772556304932, -0.40623795986175537, -0.39903104305267334, 0.6686205863952637, -0.5473631024360657, -1.3256111145019531, 0.39674651622772217, -0.8477605581283569, -1.1882885694503784, -0.12538760900497437, 0.31230753660202026, -0.4932060241699219, 0.9927540421485901, -1.1407527923583984, 0.671029806137085, -0.6290278434753418, 0.5007150173187256, 1.7794824838638306, 0.293999046087265, -0.7882630825042725, 0.42894718050956726, 0.28707006573677063, -0.8617250919342041, -0.15374208986759186, 0.7255061864852905, 0.009762026369571686, 0.7717815041542053, -0.14723049104213715, -0.03240690752863884, 1.1103075742721558, -0.38162827491760254, 0.1673722118139267, -0.7370002865791321, -0.11825457215309143, -0.6360183954238892, -0.7790457010269165, 0.8624845743179321, -0.5207902193069458, -1.6639134883880615, 0.5641285181045532, 1.0790483951568604, -0.3337073028087616, 0.14132535457611084, 0.3907994329929352, 0.4409995377063751, 0.04479436203837395, 1.3680553436279297, 0.5242494344711304, 0.7979038953781128, 0.4131680428981781, -0.569736123085022, -0.3653041124343872, 0.6664966940879822, 0.9169589281082153, -0.2630779445171356, -0.5712668895721436, 0.5724053382873535, 1.0868052244186401, 0.6821948289871216, 0.2538156509399414, -0.11641718447208405, -0.18882465362548828, -0.8954699635505676, -0.977588415145874, 0.2775183320045471, -1.2643344402313232, 1.4050116539001465, 1.3053982257843018, -1.049560308456421, -0.4529210031032562, 0.018757354468107224, 0.6444059610366821, -0.11939865350723267, -1.1929714679718018, 0.08894072473049164, -0.721686601638794, 0.28068551421165466, -0.06278404593467712, -0.15641608834266663, -0.43896856904029846, 0.7796638607978821, -0.04580143094062805, -0.9376187324523926, -0.13811475038528442, 0.9311455488204956, 0.33336979150772095, 0.8022321462631226, -0.09474749118089676, -1.3221979141235352, -0.4897271990776062, 0.9542137384414673, 0.9933292269706726, 0.7291595339775085, 0.6105418801307678, 0.5612690448760986, 0.8052396774291992, 0.03231767565011978, 0.30433857440948486, 1.1168442964553833, 0.49067676067352295, 0.3454950749874115, 0.4386521875858307, -0.012131684459745884, 0.8459866642951965, -0.9427940845489502, -1.1927709579467773, -0.6513000726699829, 0.11742348968982697, 1.4746578931808472, 0.7125788927078247, 1.111897587776184, -0.3995770812034607, -0.0886775329709053, -0.04139026254415512, -1.2879374027252197, -0.6069075465202332, -1.5338008403778076, -0.6699970960617065, -0.5509722232818604, -0.6219290494918823, 0.0311080701649189, -0.4799441695213318, 0.5751080513000488, -1.1004687547683716, 0.1692611277103424, 1.0956568717956543, -0.29666197299957275, -0.3107473850250244, 0.05954547971487045, 0.07736224681138992, -0.5536625385284424, 0.18371543288230896, 0.6363871097564697, -1.0666813850402832, -1.218045949935913, -0.31808823347091675, 0.6384227275848389, 0.13499459624290466, -0.05430150777101517, 0.4315120577812195, -1.146178960800171, -1.1135210990905762, -0.37393033504486084, 0.5990439653396606, 0.33142828941345215, -0.5908933877944946, -1.0192523002624512, 0.3673946261405945, 0.3668447434902191, -0.17264461517333984, -0.1652301400899887, 0.6187471151351929, -0.3368317186832428, -0.9433462023735046, -0.7076496481895447, 0.991280734539032, 0.7497068643569946, -0.9748120307922363, -0.17182284593582153, -0.8490498065948486, -0.34343546628952026, -0.7005923986434937, 0.4768105149269104, -0.3536722660064697, 0.858721137046814, 0.6308069229125977, 0.07451348006725311, 0.5730563998222351, -0.2692677080631256, -0.2279714047908783, -1.7642462253570557, 0.08503679186105728, 1.1517804861068726, 0.5035422444343567, -0.018260899931192398, 0.8233175277709961, 0.5435835123062134, -0.1518624722957611, 0.458902508020401, 0.10078997910022736, 0.9904215335845947, -0.40616294741630554, 0.09930659830570221, 0.13520193099975586, -1.0054819583892822, 0.315424382686615, -0.8735649585723877, -0.12685798108577728, 0.5522365570068359, -1.2803494930267334, 0.05506100133061409, 0.9024239182472229, 0.31070154905319214, -0.33702290058135986, -0.3103194832801819, -0.05219563841819763, 0.8429470062255859, 0.04745333641767502, 0.7118667364120483, -0.616527259349823, 0.025024207308888435, -0.028798475861549377, -1.2992581129074097, 0.1862829029560089, -0.29177361726760864, -0.33357810974121094, 1.1683533191680908, -0.9295947551727295, 0.2972900867462158, -1.5699801445007324, 0.3781334161758423, 0.41373544931411743, 0.47004979848861694, 0.18351268768310547, -0.48818308115005493, -0.002622801810503006, -0.33808308839797974, 0.08303897827863693, 1.1167590618133545, 0.10886207967996597, -0.7313284277915955, 0.1265181601047516, 0.2535783648490906, -0.008026525378227234, -0.22574613988399506, 0.09178080409765244, 0.6484111547470093, -0.7569875717163086, -0.3169827461242676, -0.3153819739818573, -0.23211820423603058, 1.0372105836868286, -0.09495460987091064, 1.189395785331726, 1.007737398147583, 0.36398351192474365, -1.7017326354980469, 0.11356242746114731, 0.5199488401412964, -0.3113563060760498, -1.0826377868652344, -0.02410171926021576, 0.207854226231575, -0.5967763662338257, 0.40467679500579834, -0.35269343852996826, 0.7349250316619873, 0.4109618067741394, -0.32601407170295715, -0.1824963539838791, 0.24989445507526398, 0.845279335975647, 0.7531486749649048, -0.25769442319869995, -0.991718053817749, -0.5723023414611816, 0.5052703619003296, -1.354986310005188, 0.3773457705974579, 0.905022144317627, -0.2337179034948349, 1.2607183456420898, -2.1013102531433105, -1.6201558113098145, 0.2041245698928833, 0.5751357078552246, 0.5643775463104248, 0.3658396601676941, -0.31990134716033936, -0.10676012933254242, 0.09036478400230408, -0.29201772809028625, -0.22590306401252747, 0.14388322830200195, -0.6548656225204468, 0.2592998743057251, 0.807917594909668, -0.9389603137969971, 0.050938092172145844, 0.04773463308811188, -0.4475420117378235, -0.7590783834457397, -0.7878730297088623, 0.7346256971359253, 0.4389203190803528, 0.7312896251678467, 1.2488840818405151, -0.6433141827583313, -0.7029340863227844, 0.4730544090270996, -0.5090159177780151, 0.47467559576034546, -0.47646379470825195, -0.8451712727546692, -0.7938362956047058, -0.06012686342000961, -1.1834659576416016, 0.6042486429214478, -0.8788620233535767, 0.02370700240135193, -0.43523842096328735, -1.6740589141845703, -0.07850432395935059, 1.264250636100769, 0.5702364444732666, 0.4607836604118347, -0.3572998642921448, 0.4400746822357178, 0.8493756055831909, -0.6376947164535522, 0.010575419291853905, 0.027643254026770592, -0.1419578194618225, 0.7399729490280151, -1.3935697078704834, -0.5951196551322937, 0.4818279445171356, -0.14599934220314026, -0.19715647399425507, 0.6021921634674072, 1.335897445678711, 1.8086233139038086, -0.12956151366233826, -0.7382875084877014, 0.38937145471572876, 0.3890422582626343, 0.7107069492340088, 0.7149866819381714, -0.08880087733268738, -0.6085289716720581, -0.2440224289894104, -0.9655073881149292, 0.5019824504852295, -0.521557092666626, -0.5415818095207214, 1.1860923767089844, -0.40723586082458496, 0.877849817276001, 0.03669285774230957, -0.32708895206451416, 0.31085705757141113, -0.41014307737350464, 0.8864033222198486, -1.5674124956130981, 0.7385305166244507, 0.5778843760490417, -0.3617376983165741, 0.04179622232913971, -0.3668766915798187, -0.18311913311481476, -0.38290488719940186, 0.2867165803909302, 1.0544365644454956, -1.2276043891906738, 0.18536821007728577, 0.5779471397399902, -0.41290533542633057, 0.9749758839607239, -0.8277443051338196, -0.21152833104133606, -0.3119611144065857, 0.7540050745010376, 0.8720771074295044, 0.34786707162857056, 0.16258743405342102, -0.51732337474823, -0.33273738622665405, -0.0690658688545227, -0.28157004714012146, 0.509804368019104, 0.5795417428016663, 0.08081594109535217, 0.2522706985473633, 0.07805527746677399, -0.6612811088562012, -0.7216161489486694, -0.3090774714946747, -0.3370996117591858, -0.8550432920455933, 0.154556006193161, -0.14781217277050018, -0.7384634017944336, -0.7252282500267029, -0.19544169306755066, 0.5042917728424072, -1.1194722652435303, -0.9682430624961853, -1.0882810354232788, -0.11561088263988495, 0.4691859483718872, -0.5966061353683472, 1.154813528060913, 0.8215770721435547, -0.8276766538619995, 0.2643594741821289, -0.6772134304046631, -0.5162532925605774, -0.18192854523658752, -0.8303681015968323, 0.44830459356307983, -0.32883840799331665, 0.3461059331893921, -0.04817872494459152, 0.4584670066833496, -1.7094218730926514, -1.1450119018554688, -0.7507786750793457, -1.1112971305847168, 0.8564555048942566, 0.5174341201782227, -0.9976276755332947, 1.4675369262695312, 1.145033597946167, -0.5672250986099243, -0.4940865635871887, 0.7860617637634277, -1.4542162418365479, -0.38847702741622925, 0.2736087441444397, 0.8158752918243408, 0.8874438405036926, 0.8657509088516235, 0.9946974515914917, 0.7140723466873169, 0.38469964265823364, -0.014835212379693985, -0.529238760471344, -0.023833852261304855, 0.40733444690704346, 1.1555432081222534, -1.155447006225586, -0.1516837775707245, 0.26837486028671265, -0.7456594705581665, -1.0944185256958008, 0.4402354955673218, 0.7948178648948669, -0.771084725856781, 0.8129792213439941, -0.5537118315696716, 0.8894999623298645, -0.3274739980697632, 0.633736789226532, -0.16712462902069092, -0.01162879541516304, -0.20789995789527893, -0.14840465784072876, 0.48790454864501953, -0.6846679449081421, 0.48850753903388977, 0.6073611974716187, 0.41751930117607117, -1.4828133583068848, 0.4962994456291199, 0.7944141626358032, 0.5918810367584229, -1.0441274642944336, 1.9572336673736572, 0.9875501394271851, -0.020123014226555824, -0.06830427050590515, 0.3118765354156494, -0.714661717414856, 0.8407204151153564, -0.810705304145813, 0.6509759426116943, -1.3929359912872314, -0.08926346153020859, 0.7190914154052734, -0.4094175696372986, -0.3129809498786926, 0.047602780163288116, -0.5128254890441895, 0.23643702268600464, -0.007344815880060196, -1.2184717655181885, -0.6862727403640747, 0.8598236441612244, 0.058102041482925415, -0.4869982600212097, 0.47120702266693115, 0.3937671184539795, -0.0490233451128006, -0.7127472162246704, 0.09035497158765793, -0.15329158306121826, -0.7333644032478333, 0.20721599459648132, 0.7891616821289062, -0.3159976005554199, -0.0339713878929615, -0.2505388855934143, -0.9386190176010132, -0.3246046304702759, -1.2344937324523926, -0.6524726152420044, 0.4074532389640808, -0.5182779431343079, -0.5497271418571472, 0.5947182178497314, 0.5611007213592529, 0.1980554610490799, -0.35458219051361084, 0.6402867436408997, 0.2233368307352066, -0.21281544864177704, 0.5791125297546387, -0.984061062335968, 1.158189058303833, 0.31057512760162354, -0.11898893117904663, -0.8323707580566406, 0.546367347240448, 0.22967103123664856, 0.2792881727218628, -0.5291004180908203, -0.1017252579331398, 0.9548085927963257, -0.1431080400943756, 0.019173335283994675, 0.38813936710357666, 0.926281750202179, 0.02865215763449669, 0.06447792053222656, -0.5912116169929504, 0.21656107902526855, 0.5823687314987183, 1.2095520496368408, -0.37325915694236755, -0.7848214507102966, -0.8437412977218628, 0.2844945788383484, -0.2050340175628662, -0.33349159359931946, -0.11145766079425812, 0.5877496004104614, 0.03972615674138069, -0.5936481952667236, -0.8312743306159973, -1.0770012140274048, 0.7506214380264282, -0.023052439093589783, 0.8953595757484436, -0.19572225213050842, 0.7995092868804932, -0.458540141582489, -0.16953253746032715, 0.24240350723266602, 0.8495239019393921, 0.27892521023750305, 0.3841565251350403, -1.000880479812622, 0.10030940920114517, -0.5701937079429626, 0.8165591955184937, 1.3592627048492432, 0.028186410665512085, -0.3408563435077667, 0.33170169591903687, -1.7614020109176636, 0.37551349401474, 0.6141406297683716, 0.6761966347694397, 0.4964357614517212, 1.0091192722320557, 1.6835110187530518, 0.14446184039115906, 0.23470818996429443, 0.19917786121368408, 0.42881786823272705, -0.27261704206466675, -0.5058780908584595, -0.5203368067741394, 0.007899092510342598, -0.9193413257598877], [0.37126389145851135, 0.7837615013122559, -2.0880420207977295, -0.7588868737220764, 1.235088586807251, 0.6394997835159302, 1.4680477380752563, 0.1792016178369522, 0.04811519756913185, -0.46288856863975525, -0.25751790404319763, 0.16694504022598267, 0.10064936429262161, 1.059500813484192, 0.2701084017753601, 0.5792558193206787, 0.4116705060005188, -0.15788516402244568, 0.6431716680526733, 0.9866926074028015, -0.20852629840373993, -0.26683586835861206, -0.17162685096263885, 0.2758355736732483, -0.9677531123161316, 0.7685322761535645, -1.487020492553711, -0.47825098037719727, -1.2607125043869019, -0.49116912484169006, 1.595752239227295, -1.590610384941101, 0.31670939922332764, -0.032828863710165024, -1.3630343675613403, -0.6603176593780518, 0.9947633743286133, 0.7111157774925232, 0.21315784752368927, 0.11327557265758514, 1.369202733039856, 0.49630308151245117, 0.5359598398208618, -1.3155325651168823, 0.1844608336687088, 0.7356588840484619, 1.1463035345077515, -0.8312036991119385, 0.45054927468299866, -0.3461209833621979, 0.4968893826007843, -0.16559390723705292, 0.851677417755127, 0.8373664617538452, 1.8657217025756836, 0.6605831384658813, 0.762627363204956, 0.07996512949466705, 0.7985517382621765, -0.18302379548549652, 1.2248749732971191, 0.11167632788419724, -0.5765891075134277, 0.9425263404846191, 0.12604908645153046, -0.07382333278656006, -0.6158741116523743, 0.7873197197914124, -0.1798805594444275, 0.4102642238140106, 1.0609372854232788, 0.008445636369287968, -1.1476356983184814, 0.5229973196983337, -1.4489128589630127, 0.25160181522369385, 0.5521760582923889, 0.6486573815345764, 0.5585989356040955, 0.4688626229763031, -1.0042457580566406, -0.005600964650511742, 0.8917155861854553, -0.40273576974868774, 0.23360459506511688, 0.31421956419944763, 0.8795767426490784, -0.5779563188552856, -0.5254203081130981, 1.713843822479248, 0.5527029037475586, 0.33121147751808167, 0.19513735175132751, -0.5325117111206055, 0.3638715445995331, -0.4348384737968445, 0.10076826065778732, -0.19818338751792908, -0.5888631343841553, -0.6025227308273315, -0.9603238105773926, -0.6904994249343872, -0.11263029277324677, -0.5290282964706421, 0.14755211770534515, 1.3509122133255005, 0.17474476993083954, -0.20959804952144623, -0.01925492472946644, -0.3292739987373352, -1.0951220989227295, 0.43473681807518005, -0.1586010903120041, -1.0102291107177734, -0.8040294647216797, 0.7286302447319031, 1.3195332288742065, 0.1632343977689743, 1.1080615520477295, 0.22741976380348206, -0.7953951954841614, 0.7961412668228149, 0.5693334937095642, 0.9949020147323608, 1.0738977193832397, 0.26444801688194275, -0.7146570086479187, -1.2480463981628418, 0.593330979347229, -0.19280822575092316, 0.09552620351314545, -0.1646658331155777, 0.21416817605495453, 0.7165212631225586, -0.20174957811832428, 1.263795256614685, 0.5860029458999634, -0.5750846862792969, -0.13639552891254425, 0.6608325839042664, 0.6994683146476746, -0.5069286823272705, -0.04615626484155655, -0.8280550837516785, 0.010339395143091679, -0.7774460315704346, 0.5258895754814148, -0.5309541821479797, -0.8278527855873108, -0.10993457585573196, -0.9154518842697144, 0.4677765667438507, 0.46318519115448, 1.000357747077942, 0.05614568665623665, -0.36497098207473755, 0.5363768935203552, -0.35468220710754395, 1.3634532690048218, -0.02987096458673477, 0.4448096454143524, 0.8138163089752197, -0.6703888773918152, 0.8664292693138123, 0.16348017752170563, -0.5829866528511047, 0.1029365286231041, 0.8104737401008606, 0.39168283343315125, 0.7821223735809326, -0.1933576613664627, -0.6337884664535522, -0.2750796675682068, 0.37205415964126587, 0.2026793211698532, -0.1145460307598114, 1.502297043800354, -1.148855209350586, -0.9122157692909241, -0.6726477742195129, 0.2982650101184845, -0.48625844717025757, 0.018217675387859344, 0.15715470910072327, 0.7697468996047974, -0.5027431845664978, 0.1610376536846161, -0.0013555348850786686, -0.8703799247741699, -0.7386263608932495, -1.1441400051116943, -0.9739400148391724, -1.1030465364456177, 0.24291832745075226, -0.3932051360607147, -0.84852534532547, 0.7108449339866638, -0.5553702116012573, -0.46129918098449707, 0.19555599987506866, -0.13979093730449677, -0.3987445533275604, -0.46341055631637573, 0.404514342546463, -0.9094218611717224, 0.6950744986534119, -1.2263184785842896, 0.8591099977493286, -0.9570420384407043, 0.36826011538505554, 1.2294296026229858, 0.0665750801563263, -0.5163195133209229, 0.8203869462013245, -0.08385300636291504, -1.0334771871566772, 0.699844241142273, 0.5044094920158386, -0.22276528179645538, 0.27593857049942017, -0.18901848793029785, 0.4795989394187927, 0.2363101989030838, 0.028389349579811096, 0.05918004736304283, -0.48108986020088196, -0.3277285099029541, -1.1404242515563965, -0.5040777325630188, 0.30546119809150696, -0.7959675192832947, -1.3134218454360962, 1.3107082843780518, 0.6495463252067566, -0.789779543876648, 0.22077499330043793, 0.10508761554956436, 0.05771300569176674, -0.15920007228851318, 1.0304292440414429, 0.5552675724029541, 0.697299063205719, -0.04564935714006424, 0.2053457647562027, -1.022664189338684, 0.1293352097272873, 1.2087180614471436, -0.7002946138381958, -0.11644338071346283, 1.0644334554672241, 0.4015239477157593, 0.9190592765808105, 0.15440142154693604, 0.12267757207155228, 0.17925363779067993, -0.27222582697868347, -0.8998188972473145, -0.022267960011959076, -0.6255636215209961, 1.2961969375610352, 0.8988956809043884, -0.5301932692527771, -0.6603351831436157, 0.07633382827043533, -0.43799299001693726, -0.12557710707187653, -0.9342699646949768, -0.1892499178647995, -0.28184637427330017, -0.15694138407707214, -0.16584742069244385, 0.5860083699226379, 0.003186926944181323, 0.4293102025985718, 0.06386790424585342, -0.4255285859107971, -0.6828998327255249, 0.46882036328315735, -0.02156403474509716, 0.9938297271728516, -1.067525029182434, -1.2028499841690063, -0.5880053043365479, 0.21615248918533325, 1.222118854522705, 0.05374835431575775, 0.24448835849761963, 0.6660608649253845, 1.027146577835083, -0.15842777490615845, -0.09098254144191742, 1.1712063550949097, -0.07076731324195862, 0.24074803292751312, 0.27661508321762085, -0.07382220774888992, 1.1455752849578857, -0.8866199851036072, -1.4610393047332764, -0.8302465677261353, 0.7033702731132507, 1.360188603401184, 1.0261270999908447, 0.7394004464149475, -0.4913482964038849, -0.11752370744943619, -0.36506959795951843, -0.2950611412525177, -0.5064151883125305, -1.3092421293258667, -1.1046452522277832, -0.7214487195014954, -0.39546242356300354, -0.030075950548052788, -0.043833840638399124, 0.7541297674179077, -0.17520342767238617, 1.1670310497283936, 1.089394450187683, -0.4607575535774231, -0.2641187310218811, 0.1871170997619629, 0.10280314832925797, -0.64613938331604, 0.6181307435035706, 0.3878871500492096, -1.1958975791931152, -1.103858470916748, -0.5346891283988953, 0.38759171962738037, 0.7857164740562439, -0.2080487459897995, 0.18105341494083405, -1.0829285383224487, -0.8181836605072021, -0.5725480914115906, 0.43496909737586975, -0.6484829187393188, -0.00868045911192894, -0.7802608013153076, 0.6299617886543274, 0.6543054580688477, 0.20680750906467438, -0.5621485114097595, 0.6819249391555786, -0.24281856417655945, -0.9198704957962036, -0.06849287450313568, 0.44778746366500854, 0.5111603140830994, -0.5211231708526611, -0.1252596527338028, -0.09287356585264206, -0.6573967933654785, -0.4856627285480499, 0.48612597584724426, 0.4003094732761383, 0.5407381653785706, -0.058961931616067886, 0.10681300610303879, 0.7824077606201172, -0.2758081257343292, -0.2550637125968933, -1.2225114107131958, 0.44809916615486145, 0.22706806659698486, 0.5662025213241577, 0.33714181184768677, 0.473732054233551, 0.2378183901309967, -0.6159284114837646, 0.4753240942955017, -0.15945124626159668, 0.8430927395820618, -0.671436071395874, -0.4661659002304077, -0.057938236743211746, -0.30120086669921875, 0.046863406896591187, -0.7669684886932373, -0.3612707853317261, 0.1378912627696991, -1.0316158533096313, -0.3467460870742798, 0.7922822833061218, 0.7094976305961609, -0.498473197221756, -0.5164145827293396, -0.1275794506072998, 1.4253652095794678, -0.01078291330486536, 0.36340010166168213, -0.4474063217639923, -0.08053357899188995, 0.39625078439712524, -1.0711692571640015, -0.07635865360498428, 0.42052778601646423, -0.6968849897384644, 0.7428817749023438, -1.7758657932281494, 0.4612374007701874, -0.5084996223449707, 0.363979309797287, 0.19919753074645996, -0.024587005376815796, 0.4571266770362854, 0.12467038631439209, 0.12736426293849945, 0.1727534830570221, 0.10562735050916672, 1.5517973899841309, -0.6320797801017761, -0.6911035180091858, -0.26111993193626404, 0.10917109251022339, -0.15089505910873413, -0.6398153901100159, -0.1980615109205246, 0.34242069721221924, -0.2293481081724167, -0.38193535804748535, 0.029821308329701424, -0.48704949021339417, 1.5401854515075684, -0.008868497796356678, 0.6482992768287659, 0.8878554105758667, 0.27975767850875854, -0.4793838560581207, -0.16121715307235718, -0.08210653066635132, -0.04513199254870415, -0.9007839560508728, -0.5487270951271057, 0.48810604214668274, 0.18670415878295898, 0.38172489404678345, -0.32292112708091736, 0.772001326084137, 0.5760085582733154, 0.1230907067656517, -0.40204057097435, 0.23140670359134674, 0.5133352875709534, 1.1313186883926392, 0.5150042176246643, -0.19572865962982178, -0.3381222188472748, 0.7217987179756165, -1.0490645170211792, 0.3601731061935425, 0.9264348149299622, -0.39157891273498535, 1.638232707977295, -1.9428824186325073, -1.1593682765960693, 0.688587486743927, -0.013487596996128559, 0.494163453578949, 0.8696147203445435, 0.45416340231895447, -1.0971566438674927, 0.4631153345108032, -0.013432592153549194, -0.24890664219856262, 0.7552162408828735, -0.48662975430488586, 0.580401599407196, 0.39074763655662537, -0.7788780927658081, 0.4662535786628723, -0.266048401594162, -0.3846413791179657, -0.10676097869873047, -0.012154252268373966, 0.2730866074562073, 0.5868884921073914, -0.10138362646102905, 1.1172157526016235, -0.9415811896324158, -0.8370080590248108, 0.6413023471832275, -0.9473183155059814, -0.04832611232995987, -0.15467359125614166, -0.6485349535942078, -0.06204894557595253, -1.3430718183517456, -0.21236172318458557, 0.5433341860771179, -0.604543149471283, -0.8796687126159668, -0.3952445387840271, -1.3510264158248901, -0.1479892134666443, 1.4081803560256958, 0.9289931654930115, 0.15737831592559814, 0.03898801654577255, 0.19201558828353882, 0.5369185209274292, -0.4666757583618164, -0.23874109983444214, 0.17199711501598358, -0.09364590793848038, 0.27011361718177795, -1.4233142137527466, -0.73832768201828, 0.9515516757965088, 0.43310022354125977, -0.4140307903289795, 0.20771047472953796, 1.096967101097107, 0.6294011473655701, -0.5008636116981506, -0.68630051612854, 0.7675292491912842, -0.6173820495605469, -0.06266728788614273, 0.38710683584213257, -0.3170788884162903, -0.3465158939361572, -0.3820890486240387, -1.680869698524475, 0.9104282259941101, -0.29422497749328613, -0.5127888321876526, 1.409631609916687, 0.03774047642946243, 0.4306962788105011, 0.4662935733795166, 0.11695072799921036, 0.30591103434562683, -0.07313480973243713, -0.02645448036491871, -1.2278375625610352, 0.6136726140975952, 0.31187042593955994, 0.4304606020450592, -0.13666854798793793, 0.9010434746742249, -0.3706202507019043, -0.19755230844020844, -0.405109167098999, 0.7491549253463745, 0.16773074865341187, 0.5460847020149231, -0.13693514466285706, -1.1117541790008545, 0.45699143409729004, -0.9878929257392883, -0.20523466169834137, -0.0635092556476593, 0.2941643297672272, 0.6863297820091248, -0.20510461926460266, -0.3356385827064514, -0.523530125617981, -0.06897177547216415, 0.11060810834169388, -0.60885089635849, 0.7223570942878723, 0.533807098865509, 0.0588577538728714, -0.10193531960248947, -0.11228933185338974, -0.17838160693645477, 0.14700505137443542, 0.10754063725471497, 0.3274797797203064, -1.1347179412841797, 0.44465371966362, -0.35159793496131897, -0.5377413630485535, -0.10863450914621353, -0.334865540266037, 0.5212100744247437, -1.055786371231079, -1.3473355770111084, -1.1952106952667236, 0.8027698993682861, 0.7231080532073975, -0.6980106830596924, 0.554046630859375, 0.4468895494937897, -1.7898436784744263, -0.43469610810279846, 0.27021390199661255, -0.7107574343681335, 0.1606658697128296, -1.0589088201522827, 0.6734235882759094, -0.5144889950752258, 0.4543992877006531, -0.2702443301677704, 1.4987528324127197, -1.5829541683197021, -1.5158737897872925, -1.2047632932662964, -0.4390794336795807, 0.8184471130371094, 0.5883077383041382, -0.8285977244377136, 1.371700644493103, 0.6221399903297424, -0.7929818630218506, -0.532993733882904, -0.03777867183089256, -0.8371410369873047, 0.7470313906669617, 0.11759065836668015, 1.3062745332717896, 0.016925107687711716, 1.0001469850540161, -0.5195983648300171, 0.5404593348503113, 0.6662275791168213, 0.8064427971839905, -0.26640066504478455, 0.04157977178692818, 0.05923767760396004, 0.666826069355011, -0.9214720129966736, -0.3794407844543457, -0.10929951816797256, -0.6141029596328735, -1.0760493278503418, 0.734032928943634, 0.6030362844467163, -1.4450829029083252, 0.16858047246932983, -0.8466289043426514, 0.21950998902320862, -0.24534974992275238, 0.7631766200065613, 0.19931797683238983, -0.6778449416160583, -0.24097777903079987, -0.5452777147293091, 0.2337120622396469, -1.1505126953125, -0.2857121229171753, 0.34735625982284546, 0.2992924451828003, -0.9556368589401245, 0.7436067461967468, 0.6472596526145935, -0.0676969587802887, -1.4291832447052002, 1.5486211776733398, 1.2763817310333252, -0.011301005259156227, -0.427224338054657, 0.15274085104465485, 0.4285111725330353, 0.7573146224021912, -1.1816314458847046, 1.0397993326187134, -0.9158259034156799, 0.11372324079275131, 0.4356127381324768, -0.691055953502655, -1.0043143033981323, -0.26421016454696655, -1.00931715965271, 1.1223760843276978, -0.006009859032928944, -0.7259754538536072, -0.339509516954422, 0.8672857880592346, -0.003265539649873972, -0.4582866430282593, 0.20875787734985352, 0.7240942716598511, 0.10688062757253647, -0.18466047942638397, -0.0827069953083992, 0.765788733959198, -1.0190247297286987, 0.09210189431905746, 0.5019468069076538, -0.023701580241322517, 0.2540932595729828, -0.3953944444656372, -1.2246569395065308, 0.2980775535106659, -0.9662740230560303, -1.055336594581604, 0.34765610098838806, -0.6747982501983643, -1.3924530744552612, 0.8165743350982666, 0.2889444828033447, -0.5074744820594788, -0.22149495780467987, 0.7800756692886353, -0.22422684729099274, 0.24522413313388824, 0.0850445032119751, -0.3012438118457794, 0.36056220531463623, -0.03980916365981102, -0.2550833523273468, -0.6107678413391113, 0.2724355459213257, 0.22125451266765594, 0.029604393988847733, -0.4513702094554901, -0.196455180644989, 0.3941453993320465, -0.06226968765258789, -0.5007581114768982, 0.38451090455055237, 0.2199459969997406, 0.3902153968811035, 0.12200167775154114, -0.8759517669677734, -0.28093162178993225, 1.3983234167099, 0.7789929509162903, -0.14227207005023956, -0.6815221309661865, -0.2689324617385864, 0.21006765961647034, -0.610990047454834, 0.6535589694976807, 0.5813549757003784, 0.29080304503440857, -0.09040916711091995, -0.5673455595970154, -0.01888432912528515, -1.3181904554367065, -0.2388005405664444, 0.24408243596553802, 1.594740629196167, -0.0031498621683567762, 0.14600776135921478, 0.02451280690729618, -0.8076131939888, 0.32967081665992737, 0.41625991463661194, 0.37867605686187744, -0.15436090528964996, -1.2426459789276123, -0.6638695001602173, -0.31805774569511414, 0.2512746751308441, 1.4534170627593994, -0.13443219661712646, -0.07608607411384583, 0.2684510350227356, -1.058003544807434, 0.5223305225372314, -0.15161781013011932, 0.20134909451007843, -0.42878684401512146, 1.1257447004318237, 1.253887414932251, -0.07418952137231827, 0.5787588357925415, -0.17128169536590576, 1.0042062997817993, -0.48845645785331726, -0.28350475430488586, -0.40624764561653137, -0.5574509501457214, 0.17206445336341858], [-0.3325466513633728, 1.1475677490234375, -1.857102870941162, -0.10603530704975128, 1.1548213958740234, 1.0030806064605713, 0.7290997505187988, -0.1928452104330063, 0.9990417957305908, -0.561362087726593, -0.6647506356239319, 0.4353960156440735, 0.5952239036560059, 1.113531231880188, 0.11834748089313507, 0.3473484516143799, -0.16518376767635345, 0.2190011590719223, 0.8961648941040039, 0.8127540946006775, 0.4414004981517792, 0.21200232207775116, 0.36203667521476746, 0.46758201718330383, -0.6254160404205322, 0.7178063988685608, -1.254713773727417, -0.5394311547279358, -0.6504813432693481, -0.6517241597175598, 1.5257506370544434, -1.039556622505188, 0.3397528827190399, 0.3960466980934143, -1.1581602096557617, -0.23564577102661133, 0.9668089151382446, 0.7385161519050598, 0.7678337097167969, 0.32219573855400085, 1.6273547410964966, 0.08742201328277588, 0.02748572826385498, -1.5556319952011108, -0.7725619673728943, 0.45768460631370544, 0.5930878520011902, -0.8788565993309021, 0.09394339472055435, -0.36220496892929077, 0.2218918651342392, -1.1411023139953613, 0.4804348349571228, 1.4336048364639282, 1.1330254077911377, -0.04331769421696663, 1.0100468397140503, 0.24545007944107056, 0.20263932645320892, -0.6365178227424622, 1.3012347221374512, 0.00878587830811739, -1.1129341125488281, 1.3519766330718994, -0.20517657697200775, 0.05422469601035118, -0.2543560564517975, 0.23228950798511505, 0.11836415529251099, 0.5018129944801331, 0.9919214248657227, -0.2789636552333832, -0.991411030292511, 0.5467459559440613, -1.2324378490447998, 0.12732386589050293, 0.8139355182647705, 1.1240776777267456, 1.0938713550567627, 0.772696852684021, -0.5906627178192139, 0.44002750515937805, 0.3892833888530731, -0.1467302143573761, -0.2001507580280304, 0.8299294114112854, 0.3108998239040375, -0.5656330585479736, -0.32886675000190735, 2.082085609436035, 0.27655041217803955, 0.18156886100769043, 0.039682816714048386, -0.7236434817314148, -0.10680259019136429, -0.7762575745582581, 0.23292076587677002, 0.08662277460098267, -0.5677726864814758, -0.6656434535980225, -0.4377673864364624, -0.41319364309310913, 0.5930804014205933, -0.7098953723907471, 0.8902527689933777, 0.7929258942604065, 0.3870266079902649, 0.06553537398576736, -0.4179306626319885, -0.5883084535598755, -0.7183752059936523, 1.1290593147277832, -0.22426949441432953, -0.6063455939292908, -0.8627788424491882, 0.23425403237342834, 0.7843374013900757, -0.019688595086336136, 0.6475968956947327, -0.03672373667359352, -0.6886370778083801, 0.29458582401275635, -0.03967787325382233, 0.9899882078170776, 1.0568506717681885, 0.3598072826862335, -0.23229482769966125, -0.2827753722667694, 0.6081237196922302, 0.24533826112747192, 0.2428569346666336, -0.3786182105541229, 0.009220506995916367, 1.0439201593399048, -0.2885611355304718, 1.4221818447113037, 0.2114037573337555, -0.5058985352516174, -0.13690729439258575, 0.167189821600914, 0.6054229736328125, 0.11053558439016342, -0.28312721848487854, -0.5709908604621887, -0.23867465555667877, -0.44311168789863586, 0.2736858129501343, -0.6004495620727539, -0.8371387720108032, 0.008547456935048103, -0.6610527038574219, 0.18318451941013336, 0.004859474953263998, 0.9655944108963013, 0.27057480812072754, 0.19532880187034607, 0.4763464629650116, -0.11316367983818054, 1.0670950412750244, 0.14273063838481903, 0.4095790982246399, 0.321656197309494, -0.4613288938999176, 0.9735644459724426, 0.04911895841360092, -0.1719294637441635, 0.28569960594177246, 0.5078704357147217, -0.05494432523846626, 1.1396565437316895, -0.09199491888284683, -0.8574458956718445, -0.36218246817588806, 0.5306826233863831, 0.6979961395263672, -0.5512257218360901, 1.4165421724319458, -0.7949687838554382, -1.2518911361694336, -0.5027640461921692, 0.43036001920700073, -0.14291736483573914, 0.2744031250476837, -0.20042334496974945, 0.5915127396583557, -0.0013059494085609913, 0.015045738779008389, -0.2212415635585785, -0.6262454390525818, -0.6430484652519226, -0.6405141949653625, -0.7544960379600525, -0.8569340109825134, -0.08028934895992279, -0.28052884340286255, -0.9247092604637146, 0.01724628545343876, -0.3280923664569855, -0.41186875104904175, 0.05617525428533554, -0.019516728818416595, -0.5941856503486633, -0.6918426752090454, -0.25317516922950745, -0.1591372936964035, 0.7653193473815918, -1.1442781686782837, 0.5026365518569946, -1.0716966390609741, 0.3782176673412323, 1.3158814907073975, 0.361102432012558, -0.9315563440322876, 0.8037692904472351, 0.11609841138124466, -1.375111699104309, 0.6664828658103943, -0.04420781135559082, -0.37704747915267944, 0.17270639538764954, 0.06705782562494278, -0.15657855570316315, 0.33103683590888977, 0.26127949357032776, 0.6435391902923584, -0.05512254312634468, -0.5031291246414185, -1.2062121629714966, -0.5967741012573242, 0.24924622476100922, 0.07389120757579803, -1.5526371002197266, 1.0745850801467896, 0.7033619284629822, -0.8989676833152771, -0.4323361814022064, 0.15710791945457458, -0.003501547034829855, 0.46081194281578064, 1.4811197519302368, -0.05496244877576828, 1.5601341724395752, 0.0068191951140761375, -0.3600258529186249, -0.35624590516090393, 0.09487280249595642, 1.2018505334854126, -0.5930131673812866, -0.14409948885440826, 0.7311229705810547, 0.5959967374801636, 0.08117393404245377, -0.41544926166534424, 0.09383517503738403, 0.07990650832653046, -0.5224334001541138, -0.6485506296157837, -0.33492782711982727, -0.8408094644546509, 0.9744491577148438, 0.4599984586238861, -0.8775821924209595, -0.6670503616333008, 0.3268376886844635, 0.2887260913848877, -0.19909118115901947, -0.49185970425605774, -0.07975813001394272, 0.17713792622089386, -0.17149069905281067, 0.4058207869529724, 0.6499080657958984, -0.2717834413051605, 0.4714356064796448, -0.395679771900177, -0.5866969227790833, -1.1562718152999878, 0.2932629883289337, 0.07257398962974548, 1.345026969909668, -0.5472099184989929, -0.6303920149803162, -0.06164437532424927, 0.12557320296764374, 1.1643956899642944, -0.2519601881504059, 0.1802327185869217, 0.4186953902244568, 0.8929062485694885, 0.17642997205257416, 0.48488569259643555, 0.26763826608657837, -0.10751274228096008, 0.6542291045188904, 0.3292052447795868, 0.7043895125389099, 0.9878157377243042, -0.5110652446746826, -1.6295757293701172, -0.18947218358516693, 0.33097338676452637, 1.0092172622680664, 0.6278002858161926, 1.0296260118484497, -0.20895534753799438, -0.1163087859749794, -0.25639277696609497, -0.33910855650901794, -1.2025279998779297, -1.190161108970642, -0.7612593770027161, -0.2544683516025543, -0.5078026056289673, 0.22264687716960907, 0.378734290599823, 0.6451529264450073, -0.6533135771751404, 0.7161770462989807, 0.7631517052650452, -0.180576890707016, -0.7624399662017822, -0.22454006969928741, -0.23867842555046082, -0.26070457696914673, 0.2949915826320648, 0.546617329120636, -0.9384997487068176, -0.7810961008071899, -0.1505793333053589, 0.12864413857460022, 1.1631561517715454, -0.4115121066570282, -0.1786327213048935, -1.1058146953582764, -0.9808844327926636, -0.6174379587173462, 1.1278152465820312, -0.30303052067756653, -0.19783741235733032, -1.0359818935394287, 0.8282420635223389, 0.5589456558227539, 0.038187175989151, -0.35177186131477356, 0.3302757740020752, 0.07309674471616745, -0.9490754008293152, -0.4827618896961212, 0.06921695917844772, 0.8371896147727966, -0.3200910985469818, 0.03107970580458641, -0.2527849078178406, -0.01590052805840969, -0.33335527777671814, 0.7015760540962219, 0.4296865165233612, 0.6190409660339355, 0.17368312180042267, -0.1686149388551712, 0.563068151473999, -1.058817744255066, 0.41066882014274597, -1.4514293670654297, 0.9213657379150391, 0.11669795960187912, 0.6364160180091858, -0.10655197501182556, 0.44198036193847656, 0.0194130539894104, -0.5482118725776672, -0.09576737880706787, -0.14152641594409943, 0.8971978425979614, 0.22739186882972717, -0.4169307053089142, -0.2606017291545868, 0.3000720739364624, -0.5780636668205261, -1.338189721107483, -0.36205247044563293, 0.15712840855121613, -0.7627663612365723, -0.6494085192680359, 0.750041127204895, 0.755912721157074, -0.17761071026325226, -0.40337300300598145, -0.1729217916727066, 1.417736291885376, 0.7333737015724182, -0.5511229634284973, 0.20409652590751648, -0.44858840107917786, 0.16275249421596527, -1.266241192817688, -0.3245481550693512, 0.10353364050388336, 0.1038941815495491, 1.014715552330017, -1.323669195175171, 0.2783588767051697, -0.5697046518325806, 0.5911732316017151, 0.3868759870529175, 0.38546526432037354, 0.6074114441871643, -0.23284050822257996, 0.08443186432123184, -0.2246542125940323, 0.5568742156028748, 1.836203694343567, -0.31968650221824646, -0.23735590279102325, 0.1688322126865387, 0.23226234316825867, 0.033087681978940964, -0.3635334074497223, -0.05354037508368492, 0.08030161261558533, -0.651785671710968, 0.029589787125587463, -0.27482685446739197, -0.3538035452365875, 1.0297952890396118, 0.4436381757259369, 0.36512091755867004, 0.9217795729637146, -0.013959885574877262, -0.6342560052871704, -0.09185969829559326, -0.03173853084445, -0.14063851535320282, 0.22117607295513153, 0.09501217305660248, 0.09231124073266983, -0.1977582424879074, 0.18118348717689514, 0.005443125497549772, 0.5091070532798767, 0.24126841127872467, 0.22317557036876678, -0.25988513231277466, 1.0700786113739014, 0.41292616724967957, 0.6130008101463318, 0.3641800582408905, 0.11737468093633652, -1.0354644060134888, 0.594580888748169, -1.0474525690078735, 0.52193683385849, 0.6777603626251221, -0.3779717683792114, 1.0246754884719849, -1.7810243368148804, -0.9208478927612305, 0.3454059660434723, 0.23259001970291138, -0.20543621480464935, 0.8558028340339661, 0.33898141980171204, -0.5331677794456482, 0.5849872827529907, -0.24883747100830078, -0.14664475619792938, 0.13568249344825745, -0.37484994530677795, -0.03708566725254059, 1.083246111869812, -0.42329174280166626, 0.21714045107364655, -0.7259463667869568, -0.400686115026474, 0.3389376997947693, -0.6906411051750183, 0.05130116641521454, 0.4108511805534363, 0.11270630359649658, 0.6195064187049866, -1.4098435640335083, -1.1099934577941895, 0.8517580628395081, -0.17309129238128662, -0.6260930895805359, 0.033445414155721664, -0.7250292301177979, 0.03758765384554863, -0.4880400598049164, -0.9026317596435547, 0.423352986574173, -0.05402427911758423, -0.7145678997039795, -0.8374912738800049, -1.0224522352218628, -0.6079474091529846, 0.17614634335041046, 0.9259108304977417, 0.49474552273750305, -0.2078719288110733, 0.003598135896027088, 0.1303045153617859, -0.4668751657009125, -0.3517354428768158, 0.6577786207199097, 0.23376142978668213, -0.4250808656215668, -1.196700930595398, -1.1793066263198853, 0.8583403825759888, 0.5939056277275085, -0.18125180900096893, 0.6091514229774475, 1.1109824180603027, 1.2524566650390625, -0.6417746543884277, -0.8434239029884338, 0.45490092039108276, 0.0582079254090786, 0.9617360830307007, 0.5320205688476562, 0.04683953523635864, -0.30092984437942505, -0.5828888416290283, -1.6087816953659058, 1.019066333770752, 0.3373483717441559, -0.8914834856987, 0.6356449723243713, 0.40684974193573, 0.46879667043685913, 0.2650231122970581, -0.41965243220329285, -0.28024107217788696, 0.02431221678853035, -0.4015447199344635, -1.3007789850234985, 0.5729032158851624, 0.3877604901790619, 1.1342374086380005, -0.29196739196777344, 0.5360214114189148, -0.2895590662956238, -0.5157634615898132, -0.4187767207622528, 0.7705760598182678, -0.03436585143208504, 0.7013692259788513, 0.45198556780815125, -0.5768561959266663, 0.04221823439002037, -0.7253867387771606, -0.48007193207740784, -0.036980655044317245, 0.526636004447937, 0.43562373518943787, -0.05449918657541275, 0.14408855140209198, -1.02971613407135, -0.5754131078720093, -0.3620823919773102, -0.29252496361732483, 0.1498253345489502, 0.11780354380607605, -0.15897482633590698, 0.28557294607162476, -0.2996728718280792, 0.14506895840168, 0.05585823208093643, -0.5168740153312683, 0.08982304483652115, -1.3420073986053467, -0.3202942907810211, -0.19429269433021545, -0.5130681991577148, -0.28944775462150574, -0.3911519944667816, 0.5767024159431458, -0.5229462385177612, -1.3211175203323364, -1.0914311408996582, 0.6677314043045044, 0.8705406188964844, -0.6036314368247986, 0.9301276803016663, 0.42784348130226135, -1.2408671379089355, -0.1978015899658203, -0.00805596262216568, -0.6863577365875244, 0.16629968583583832, -0.6771942973136902, 0.2366245687007904, -0.11040891706943512, 0.5604029297828674, -0.12612828612327576, 1.201847791671753, -0.9702487587928772, -0.7657327055931091, -1.4081833362579346, -0.4441881477832794, 1.026803731918335, 0.5083571672439575, -0.7796548008918762, 1.2711372375488281, 0.5338091850280762, -0.2184993475675583, -0.5265316367149353, -0.5776867866516113, -0.5474275350570679, 0.16481584310531616, 0.3167167901992798, 0.31389692425727844, 0.818873405456543, 1.0652270317077637, -0.10852134972810745, 0.19742010533809662, 0.31121930480003357, 0.357587993144989, -0.2480965256690979, -1.2132186889648438, -0.07932671159505844, 0.8853384852409363, -1.1497188806533813, -0.6566147208213806, -0.2768709659576416, -0.16915716230869293, -1.4078656435012817, 0.36491823196411133, 0.6346323490142822, -1.1646544933319092, -0.1651926040649414, -0.036317966878414154, 0.29899752140045166, -0.18228918313980103, 0.8768267631530762, 0.26802513003349304, -0.8249809741973877, -0.16925941407680511, -0.20332223176956177, 0.5174137949943542, -1.045100450515747, 0.3670653998851776, 0.4747961759567261, -0.4276392459869385, -0.4570762515068054, 0.9719372391700745, 0.2921554148197174, -0.300051748752594, -0.31153520941734314, 2.026021957397461, 0.4596637487411499, -0.3535909354686737, -0.3835792541503906, 0.5546426177024841, -0.41655030846595764, 1.0727953910827637, -0.7568860650062561, 0.4106391370296478, -1.004655361175537, 1.012073040008545, 0.393335223197937, -0.5686022639274597, -0.02868635207414627, -0.1139340028166771, -0.48353147506713867, 0.6152141690254211, 0.09529617428779602, -0.9153634905815125, -0.577842116355896, 0.8680257797241211, 0.22371703386306763, -0.22030024230480194, 0.0018130983226001263, 0.15011611580848694, 0.6538481712341309, -0.4414406716823578, 0.1441131979227066, 0.5650719404220581, -0.8747514486312866, -0.23942427337169647, -0.006214940454810858, 0.14411064982414246, -0.18427257239818573, 0.1841364949941635, -1.331104040145874, 0.9944459199905396, -0.8080492615699768, -1.0275291204452515, 0.4711361825466156, -0.6304340958595276, -0.6746814846992493, 1.1595275402069092, -0.12130964547395706, -0.3880171775817871, -0.387033075094223, 0.3116850256919861, -0.15995711088180542, 0.9457730054855347, -0.5045591592788696, -0.40790989995002747, 0.8298075795173645, -0.8305208086967468, -0.37670478224754333, -0.3273133933544159, 0.01598411053419113, 0.4520534574985504, 0.21826253831386566, -0.23437625169754028, 0.542631983757019, 0.8605228662490845, -0.0031069107353687286, -0.6992157101631165, 0.3350341022014618, -0.06986626237630844, -0.39334800839424133, 0.7245811223983765, -0.5455222725868225, -0.21263088285923004, 0.6780257225036621, 0.7073168158531189, -0.5326212644577026, -0.5756305456161499, -0.469819039106369, -0.06343573331832886, -0.5033063292503357, 1.1205706596374512, -0.18453150987625122, 0.6890074014663696, -0.4970299005508423, -0.9269921183586121, -0.47502636909484863, -0.14461426436901093, 0.45951706171035767, 0.14628902077674866, 0.7873265743255615, 0.3275836408138275, 0.1378999501466751, -0.836320161819458, -1.1289160251617432, 0.6215503811836243, 0.37211692333221436, 0.37841883301734924, 0.0524335578083992, -0.9022608399391174, -0.606309175491333, -0.48982855677604675, 0.03319954127073288, 1.1159228086471558, -0.16657136380672455, -0.36685019731521606, 0.19449454545974731, -0.8604959845542908, 0.27650198340415955, -0.35005131363868713, -0.24371442198753357, 0.16748423874378204, 0.7674314975738525, 0.9381404519081116, -0.18584850430488586, -0.014493913389742374, -0.25521472096443176, 1.0965216159820557, -0.835873007774353, -0.5675379037857056, -0.7617911696434021, -0.6214938759803772, -0.22525525093078613], [-0.22595655918121338, 1.2779412269592285, -1.9489370584487915, -0.6965513825416565, 1.8436301946640015, 0.47301051020622253, 0.8120675683021545, -0.322091668844223, 0.34445828199386597, -0.2837282419204712, -0.222803995013237, 0.21456748247146606, 0.35755616426467896, 0.9958725571632385, 0.034346967935562134, 0.5714792609214783, 0.6725664734840393, 0.059331029653549194, 0.3566279411315918, 0.5472231507301331, 0.5739780068397522, -0.0965016633272171, 0.5827170014381409, 0.3921371102333069, 0.12345978617668152, 0.5249811410903931, -1.524301290512085, -0.5711864233016968, -0.6053889393806458, -1.1567442417144775, 1.3899511098861694, -0.9158862233161926, 1.0358539819717407, 0.5811600089073181, -1.8407410383224487, 0.24431705474853516, 1.3260550498962402, 0.37494197487831116, 0.23204709589481354, 0.049659986048936844, 1.7600897550582886, -0.07955619692802429, -0.3162144422531128, -1.6164188385009766, -0.17671504616737366, -0.5748178362846375, 0.08813750743865967, -0.9681640267372131, -0.15519556403160095, -0.19267427921295166, 0.4481337368488312, -0.7012147307395935, 0.4169607162475586, 1.142318844795227, 0.4183349609375, -0.4294484555721283, 1.0095186233520508, 0.3956908583641052, -0.1562352329492569, -0.7442753314971924, 1.1705938577651978, 0.38566944003105164, -1.1277217864990234, 0.9822776913642883, 0.10696608573198318, 0.591587483882904, -0.6617335677146912, 0.20469549298286438, 0.06129293143749237, 0.6507472991943359, 0.5426563620567322, 0.5660567879676819, -0.515022873878479, -0.18367573618888855, -0.580134391784668, 0.25794386863708496, 0.5295868515968323, 0.3037498891353607, 0.726799726486206, 0.32287493348121643, -0.4874515235424042, -0.07023744285106659, 0.7023493647575378, 0.15926408767700195, 1.0077478885650635, 0.3641965687274933, 0.1783609390258789, -0.9031981825828552, -0.9829789996147156, 1.992925763130188, 0.36771339178085327, 0.05871112272143364, 0.7806175351142883, -0.4133130609989166, -0.194059818983078, -0.8886716365814209, 0.5539349913597107, 0.07525607943534851, -0.6938267946243286, -0.6730806827545166, -0.28829604387283325, -0.5081658959388733, 0.9434158802032471, -0.7085352540016174, 0.4578841030597687, 0.5170304179191589, 0.7526606917381287, -0.047996923327445984, -0.3211504817008972, -0.6451578736305237, -0.48523473739624023, 0.5525407195091248, -0.9168575406074524, -0.5309910774230957, -0.5685689449310303, 0.6788490414619446, 0.9094899296760559, -0.6525518298149109, 0.6718311309814453, 0.6940147280693054, -0.8584951758384705, 0.22625315189361572, -0.3292534351348877, 0.8886838555335999, 1.0460418462753296, 0.9307523369789124, -0.5348079800605774, -0.2145390510559082, 0.5046659111976624, 0.03685034066438675, 0.35669633746147156, -0.27706870436668396, -0.5063984394073486, 1.2512279748916626, -0.8192771077156067, 1.29951012134552, -0.19211521744728088, -0.7619565725326538, 0.41908299922943115, -0.19769106805324554, 0.1872304528951645, -0.715790867805481, -0.48836085200309753, -0.3790190517902374, 0.34174829721450806, -0.21244388818740845, 0.15786872804164886, -0.5425338745117188, -0.20716214179992676, 0.42413246631622314, -0.8538134098052979, 0.39096522331237793, -0.03428007289767265, 1.0894206762313843, 0.14326483011245728, -0.5191704630851746, 0.5443108677864075, 0.4015450179576874, 0.781720757484436, 0.0033241109922528267, 1.241822361946106, -0.16426712274551392, -1.1394703388214111, 0.6077043414115906, -0.5173979997634888, -0.06551642715930939, 0.7277569770812988, 0.7990567684173584, 0.1887071132659912, 0.39392128586769104, -0.3510555922985077, -0.8336322903633118, -0.2822931408882141, 0.6806740760803223, -0.012062796391546726, -0.5054986476898193, 1.013756513595581, 0.03106326423585415, -0.9747933149337769, -1.2119789123535156, 1.0617790222167969, -0.37130504846572876, 0.643160343170166, -0.25541967153549194, 0.9763620495796204, 0.07426581531763077, 0.2173740118741989, 0.052576519548892975, -0.6431683301925659, -0.5512029528617859, -0.5425652265548706, -0.5403233766555786, -0.5245187878608704, 0.1579877883195877, -0.45700788497924805, -1.3516695499420166, -0.1323215663433075, -0.906880259513855, 0.0320960097014904, 0.20227494835853577, -0.21542710065841675, -0.8715160489082336, -0.3992233872413635, 0.036467526108026505, -0.37926793098449707, 0.4354170262813568, -0.7310134768486023, 0.4568483531475067, -0.8202637434005737, -0.12939168512821198, 1.0662950277328491, 0.07931375503540039, -1.1073741912841797, 0.6273832321166992, -0.5555804371833801, -1.4137204885482788, -0.10506866127252579, -0.40452492237091064, -0.8752299547195435, 0.9697396755218506, -0.30050885677337646, -0.04405777528882027, 0.5235917568206787, 0.1841270625591278, 0.1665652096271515, -0.7415754795074463, -1.1747990846633911, -1.2339377403259277, -0.45110422372817993, -0.5537204742431641, -0.3448706269264221, -1.0408343076705933, 0.6884670257568359, 0.8194428086280823, -0.6710988879203796, -0.07247138768434525, 0.2329411804676056, -0.15292099118232727, 0.19926424324512482, 1.432364583015442, 0.3978811204433441, 1.1852632761001587, 0.07255414128303528, -0.6089982390403748, -0.06339847296476364, 0.41880297660827637, 0.8418523073196411, -0.9431755542755127, 0.4714600443840027, 0.6099175214767456, 1.284621000289917, 0.07772302627563477, 0.035268113017082214, -0.5279501676559448, -0.24085722863674164, -0.777516782283783, -0.08801577240228653, -0.518619179725647, -0.1878836452960968, 1.0222707986831665, 1.3663581609725952, -0.865394115447998, -0.3310246765613556, 0.8035131096839905, -0.1963958889245987, -0.49410074949264526, -0.4013475179672241, -0.39992770552635193, -0.37600234150886536, -0.06644969433546066, -0.526653528213501, 0.5368887782096863, 0.018344927579164505, 0.4849753677845001, -0.758033037185669, -0.6550741195678711, -0.2419092059135437, -0.005352423992007971, -0.13972830772399902, 1.2593276500701904, 0.19947469234466553, -0.47385966777801514, 0.08204133808612823, -0.602443277835846, 1.4231163263320923, -0.2119375467300415, 0.18075360357761383, 0.5755013227462769, 1.1577823162078857, 0.4612928628921509, 0.6782435774803162, 0.06987923383712769, 0.7528986930847168, 0.10085894167423248, -0.10807215422391891, 0.6074055433273315, 1.062612771987915, -1.3733088970184326, -1.217868447303772, 0.24753768742084503, 0.2743728756904602, 1.340514898300171, 0.6183100342750549, 0.9311048984527588, 0.39737406373023987, -0.3284927010536194, -0.5712749361991882, 0.04719328135251999, -0.8103761672973633, -0.5256078839302063, -0.6800999641418457, -0.5514233112335205, -0.24744974076747894, -0.2535359561443329, 0.6136343479156494, 0.23121139407157898, -1.1478567123413086, 0.8790820837020874, 0.9029361009597778, -0.6957843899726868, -0.8979241251945496, 0.02116408199071884, -0.10713831335306168, -0.9627605676651001, 0.4254849851131439, 0.8331330418586731, -0.5952525734901428, -0.6577160358428955, -0.10999014973640442, 0.30997833609580994, 0.23619380593299866, -0.29515185952186584, 0.309915691614151, -1.2010949850082397, -0.615179181098938, -0.12820127606391907, 1.5892106294631958, -0.1964154839515686, 0.01366343256086111, -0.125041663646698, -0.10376165807247162, 0.2642083466053009, -0.5330393314361572, -0.19642843306064606, 0.6570220589637756, -0.04284188896417618, -0.38526076078414917, -0.4435061514377594, 0.27278536558151245, 0.45593973994255066, -0.40366947650909424, 0.1375027894973755, 0.5353409051895142, -0.7138432860374451, 0.1828780174255371, 0.07640057057142258, 0.8879135251045227, 0.5278322100639343, -0.13481108844280243, 0.06456203758716583, 0.8250723481178284, -0.6201847195625305, 0.005278955679386854, -1.8499164581298828, 0.28309720754623413, -0.06308773159980774, 0.6306140422821045, 0.2730157673358917, 0.6162664890289307, 0.2380581945180893, 0.0984446108341217, -0.04036129638552666, 0.6774498820304871, 1.3140393495559692, 0.585338294506073, -0.4554349184036255, -0.20309551060199738, 0.4171411097049713, -0.7710187435150146, -0.8092033863067627, -0.21848982572555542, 0.38953495025634766, -1.4678623676300049, -0.14548833668231964, 1.1260991096496582, 0.631764829158783, -0.28146040439605713, -0.07231216132640839, 0.5036835074424744, 0.7509294152259827, 0.5239298939704895, -0.2026490420103073, -0.06920953840017319, -0.38703590631484985, -0.116523876786232, -0.36268091201782227, -0.818070113658905, -0.31846189498901367, 0.8122453689575195, 0.3725210726261139, -1.1585955619812012, -0.14221693575382233, -0.34735405445098877, 0.9706500172615051, 0.3674100637435913, 0.29356497526168823, 0.27812638878822327, -0.31641992926597595, 0.35162824392318726, -0.540747344493866, 0.29205286502838135, 1.2359567880630493, -0.02925041876733303, -0.2749767303466797, -0.03761104866862297, -0.20279301702976227, -0.11431851238012314, 0.36092621088027954, 0.12036275863647461, 0.10865955054759979, -1.070815920829773, 0.24150848388671875, -0.45880454778671265, -0.39164063334465027, 1.4608433246612549, 0.43855977058410645, 0.4014991819858551, 0.6655574440956116, -0.14020325243473053, -0.8092259764671326, -0.42962557077407837, -0.18074621260166168, -0.4257499575614929, -0.5137085914611816, 0.36400336027145386, 0.09270727634429932, -0.5252851843833923, 0.6152267456054688, 0.03888682648539543, 0.883910059928894, 0.0474289171397686, 0.35142940282821655, -0.21897944808006287, 0.9099902510643005, -0.3400450646877289, 1.0800087451934814, 0.9146003723144531, -0.2124934047460556, -1.308201789855957, 0.3238376975059509, -0.9694327116012573, 0.5540136098861694, 0.5235454440116882, 0.5615001320838928, 0.9375287294387817, -1.6296265125274658, -0.9672606587409973, 0.6292071342468262, 0.24992212653160095, 0.11865424364805222, 0.8323076367378235, 0.07627157121896744, -0.10101090371608734, 0.12894408404827118, -0.06447641551494598, 0.08610088378190994, 0.2797829806804657, -0.49750855565071106, 0.3433656692504883, 0.9213401079177856, -0.2790036201477051, 0.673334538936615, -0.5164416432380676, -0.04310445487499237, 0.13853572309017181, -0.6497107744216919, 0.20151448249816895, 0.5882937908172607, 1.0577455759048462, 0.8624695539474487, -1.3226217031478882, -1.443953037261963, 0.4271963834762573, -0.8629028797149658, 0.033548131585121155, -0.37504419684410095, 0.2172609120607376, -0.5509904623031616, -0.18569816648960114, -0.7921990156173706, 0.4761110246181488, -0.12210594117641449, -0.6855215430259705, -0.5245049595832825, -1.1927927732467651, 0.18602636456489563, 0.22707916796207428, 0.9456110596656799, 1.016216516494751, -0.020271196961402893, 0.1311812847852707, -0.002594997175037861, -0.4851086735725403, 0.11763408780097961, -0.055471085011959076, -0.1006273403763771, -0.15231016278266907, -1.3447235822677612, -1.0485647916793823, 0.392806738615036, 0.6867882013320923, 0.13453155755996704, 0.7689313292503357, 1.8195037841796875, 1.0095553398132324, -0.7070261240005493, -1.127978801727295, 0.15355229377746582, -0.6242225766181946, 1.0796380043029785, 0.46744364500045776, -0.2574843764305115, -0.6461935639381409, -0.6683841347694397, -1.280394196510315, 1.1844063997268677, 0.05095455422997475, -0.601729691028595, 1.1402758359909058, 0.8728000521659851, 0.23524688184261322, 0.6537492871284485, -0.980196475982666, 0.29481351375579834, 0.007827003486454487, -0.6870471835136414, -0.85467928647995, 0.996791660785675, -0.03414811193943024, 0.7398531436920166, -0.4429262578487396, 0.2773236930370331, 0.16205227375030518, -0.4983513355255127, 0.004632583819329739, 0.32149556279182434, -0.37224575877189636, -0.3595159947872162, 0.79793381690979, -0.4861253798007965, 0.013501753099262714, -0.42226001620292664, -1.1524051427841187, -0.30053234100341797, 0.6487897634506226, -0.13328994810581207, -0.0637010782957077, -0.3610992431640625, -0.4192216098308563, -0.8224899768829346, 0.07861977070569992, -0.7462249398231506, 0.580396831035614, 1.045348048210144, -0.09371688216924667, 0.3275796175003052, -0.24547089636325836, 0.18916745483875275, -0.35719752311706543, 0.013927341438829899, 0.526138424873352, -1.875027060508728, 0.14872397482395172, -0.1678415834903717, -0.5876169800758362, -0.0038177729584276676, -0.4264862835407257, 0.18595154583454132, -0.26956361532211304, -0.7730713486671448, -0.4908865690231323, 0.2742672860622406, 0.4893854260444641, -1.344186782836914, 0.4747227132320404, -0.3340451121330261, -1.1512178182601929, 0.30540382862091064, -0.5173180103302002, -0.613666832447052, -0.17070291936397552, -1.522260308265686, 0.33132413029670715, 0.8040663599967957, 0.3824176788330078, 0.4430670440196991, 0.5613356232643127, -0.7779680490493774, -0.6557008624076843, -0.1618819683790207, -0.14698681235313416, 0.9443091154098511, 0.6136499643325806, -0.7096275091171265, 1.4173780679702759, 0.43183794617652893, -0.37073829770088196, -0.44799333810806274, -0.39379364252090454, -0.4196270704269409, 0.10649248212575912, 0.6264704465866089, 0.6875694394111633, 0.8569654226303101, 1.5151865482330322, 0.31485363841056824, 0.1397397518157959, -0.024307694286108017, -0.05603986978530884, -0.7159218192100525, -1.2309060096740723, -0.012051844038069248, 0.34925273060798645, -1.0297353267669678, -0.8549997806549072, 0.06484410911798477, -0.7324303984642029, -1.2496469020843506, 0.041256073862314224, 0.8571844696998596, -0.718558132648468, 0.41200098395347595, -0.28196340799331665, -0.06973542273044586, -0.7566879987716675, 0.5523564219474792, 0.5527762174606323, -1.0414271354675293, -0.2282659262418747, 0.002323627471923828, -0.21277651190757751, -0.8535375595092773, 0.5367462038993835, -0.10430468618869781, -0.6567147970199585, 0.035455767065286636, 0.638876736164093, 0.7431285381317139, -0.48632314801216125, -0.07990571111440659, 1.7357121706008911, 0.6675856113433838, -0.18887236714363098, 0.02151103876531124, 0.513539731502533, -0.3945537209510803, 1.1638619899749756, -0.7591844201087952, 0.4222017824649811, -0.08603880554437637, 1.2295844554901123, -0.3816591203212738, 0.15101401507854462, 0.08274641633033752, -0.10633821785449982, -0.5304303169250488, 0.3276776671409607, 1.0416315793991089, -0.2335122674703598, -0.6989109516143799, 1.5329235792160034, -0.3019338548183441, -0.024368366226553917, 0.019490236416459084, 0.39574816823005676, 0.338356614112854, -0.3431277573108673, 0.5492601990699768, 1.0107611417770386, -0.8894453644752502, -0.15529344975948334, -0.2860664129257202, 0.14569419622421265, 0.06521715968847275, -0.19825957715511322, -1.6706204414367676, 0.8420143723487854, -0.6428760290145874, -0.5384411215782166, 1.1076067686080933, -0.8678325414657593, -0.1362774670124054, 0.2377464324235916, -0.2877020835876465, -0.6305151581764221, -0.06780577450990677, 0.5887370109558105, -0.26699304580688477, 0.09801025688648224, -0.13410788774490356, -0.12001296877861023, 0.8173764944076538, -0.8623303771018982, -0.3074016869068146, -0.13214778900146484, 0.10296447575092316, 0.20029491186141968, -0.17748916149139404, -0.49160265922546387, -0.20424368977546692, 0.7878425121307373, 0.07256285846233368, -0.5611744523048401, 0.6845314502716064, 0.2889861464500427, -0.4155252277851105, -0.17958377301692963, -0.1527993232011795, 0.12135335803031921, 0.8762306571006775, 0.2174811065196991, -0.689723014831543, -1.0751421451568604, -0.19380836188793182, 0.08945711702108383, -0.78668612241745, 0.9020208120346069, -0.5814735889434814, 0.9977226853370667, 0.07522723823785782, -0.2210739254951477, -0.6803673505783081, -0.23902396857738495, 0.3737374246120453, 0.04510785639286041, 0.11102087050676346, 0.4059906303882599, 0.474224328994751, -0.38473987579345703, -0.7720974683761597, 0.3709556758403778, 0.05223485082387924, -0.22488243877887726, 0.0837751179933548, -1.0669453144073486, -0.6024824976921082, -0.7412813901901245, 0.13959093391895294, 0.563596248626709, -0.31459954380989075, -0.5837003588676453, 0.6417203545570374, -0.7813180088996887, 0.12600500881671906, -0.12428256869316101, 0.2964061200618744, 0.2396450787782669, 0.7445461750030518, 1.1974667310714722, 0.23309268057346344, -0.11653488874435425, 0.13665270805358887, 1.177641749382019, -1.1570459604263306, -0.7067332863807678, -1.308471441268921, -0.3477844297885895, -0.34138551354408264], [-0.06099976971745491, 1.8071625232696533, -2.38008713722229, -0.3645763397216797, 1.1057273149490356, 0.25927072763442993, 1.6681348085403442, -0.16132476925849915, 0.8448131084442139, -0.24937136471271515, -0.08301485329866409, 0.1734294593334198, 0.43422386050224304, 0.7591099739074707, 0.01405502948909998, 0.4252603352069855, 0.7986986637115479, -0.29020562767982483, 0.09810633212327957, 0.5936726927757263, 0.13398213684558868, -0.3865649700164795, 0.34493446350097656, 0.25339433550834656, 0.247818723320961, 0.464641273021698, -1.3890881538391113, -1.0001320838928223, -0.8327843546867371, -0.7296884059906006, 1.1066830158233643, -1.4407655000686646, 0.0063066063448786736, -0.24450449645519257, -1.8001614809036255, 0.08538281917572021, 1.3002238273620605, 0.6428529620170593, 0.5157271027565002, -0.16107191145420074, 1.461594581604004, -0.05541728436946869, -0.20253922045230865, -1.6575299501419067, -0.5324439406394958, -0.32665395736694336, 0.15123946964740753, -1.0699841976165771, -0.01916830614209175, -0.42263275384902954, 0.7361276149749756, -1.2358894348144531, 0.09904562681913376, 1.144286870956421, 0.5305277705192566, -0.1990668922662735, 0.627801239490509, 0.034656353294849396, 0.16157925128936768, -0.7322498559951782, 1.8504455089569092, 0.41441798210144043, -0.9269285202026367, 0.9726337790489197, -0.3532979488372803, -0.34593915939331055, 0.1707228571176529, 0.3601263463497162, -0.3152313530445099, 0.43323737382888794, 0.5077776908874512, 0.4882980287075043, -0.4710785448551178, 0.3605201244354248, -1.2873448133468628, -0.28546014428138733, 0.615019679069519, 0.44111502170562744, 0.29947859048843384, 0.6818416714668274, -0.4073375165462494, 0.416572630405426, 0.6925945281982422, -0.4736422002315521, 0.6583181023597717, 0.924233078956604, 0.16951531171798706, -0.3556601405143738, -0.4328489303588867, 1.5409998893737793, -0.0888296589255333, -0.33177539706230164, 0.8209807872772217, -0.48367899656295776, -0.4200015962123871, -0.4348847270011902, 0.6439067125320435, 0.19866019487380981, -0.9330636858940125, -0.9101177453994751, -0.2311214804649353, -1.1847496032714844, 0.21824301779270172, -0.763961136341095, 0.383076012134552, 0.8869774341583252, 0.6070278286933899, -0.07005159556865692, 0.03113897517323494, -0.09526923298835754, -0.410935640335083, 0.7088568806648254, -0.6925003528594971, -1.1435885429382324, -0.7164400815963745, 1.0622482299804688, 1.072615385055542, -0.6662515997886658, 0.44979608058929443, 0.3822827637195587, -0.5568995475769043, 0.03922460973262787, -0.4702896177768707, 1.0860100984573364, 1.1529037952423096, 0.4079586863517761, -0.4219156503677368, -0.2620958387851715, 0.50620037317276, -0.026546215638518333, -0.0280408076941967, -0.5561201572418213, -0.6426792740821838, 0.7011589407920837, -0.5020522475242615, 1.558467984199524, -0.41967734694480896, -0.6221092939376831, 0.0015289746224880219, 0.004843789152801037, 0.3366936147212982, -0.07608915120363235, -0.4594467282295227, -0.22734622657299042, 0.22810357809066772, -0.6691927313804626, 0.30539238452911377, -0.20785295963287354, -0.6044046878814697, 0.13294368982315063, -0.7937243580818176, 0.5675557851791382, -0.02638102136552334, 0.8199306130409241, 0.36001771688461304, 0.08467241376638412, 0.6579789519309998, 0.2055635005235672, 0.8813573122024536, 0.3433224558830261, 0.7693673372268677, -0.12512601912021637, -1.2107192277908325, 0.5118165016174316, -0.07885318994522095, -0.39531224966049194, 0.423643559217453, 0.9196921586990356, 0.10759498924016953, 0.7966693639755249, -0.6223583817481995, -0.710652768611908, -0.35729581117630005, 0.393820583820343, -0.1087532564997673, -0.39688628911972046, 1.347370982170105, -0.6576594114303589, -1.214424729347229, -0.7613710165023804, 0.41580405831336975, -0.40423583984375, 0.8311907052993774, 0.1506919115781784, 0.9773722290992737, 0.22087684273719788, 0.5449882745742798, 0.10093630850315094, -0.6705043315887451, -0.6620866060256958, -0.6066839694976807, -0.6965515613555908, -0.29785996675491333, -0.20440566539764404, -0.5911475419998169, -0.8634568452835083, 0.4676474332809448, -0.8223763704299927, -0.25449925661087036, 0.2034163922071457, -0.15123485028743744, 0.12718193233013153, -1.1637660264968872, 0.3046117126941681, -0.22820772230625153, 0.7414222359657288, -1.3550418615341187, 0.6674508452415466, -1.2568496465682983, -0.12551629543304443, 1.1789047718048096, 0.11920960992574692, -0.8259508013725281, 0.5782460570335388, -0.2090737372636795, -1.8144382238388062, 0.07806136459112167, 0.07934737950563431, -0.35714131593704224, 0.6580360531806946, -0.22905242443084717, 0.3000391125679016, 0.3871523439884186, -0.19354937970638275, 0.426969975233078, -0.11362016201019287, -1.6049929857254028, -0.8582926392555237, -0.40167829394340515, -0.19399206340312958, -0.631537139415741, -1.101523756980896, 0.23567354679107666, 0.4407513737678528, -0.9799870252609253, -0.13787348568439484, 0.15954828262329102, 0.13820132613182068, 0.39209720492362976, 1.7785494327545166, 0.4245089292526245, 1.186419129371643, -0.027848294004797935, -0.3135579228401184, 0.05784367024898529, 0.5230070948600769, 0.9923846125602722, -0.5247681736946106, -0.12934361398220062, 0.8117074966430664, 0.9786632061004639, 0.5903672575950623, -0.12278029322624207, -0.26538628339767456, -0.34421268105506897, -0.4859981834888458, -0.6698850393295288, -0.5071474313735962, -0.06209221109747887, 1.2229338884353638, 0.7635340690612793, -0.8720226287841797, -0.3394387364387512, 0.7659317255020142, 0.31775328516960144, -0.16923174262046814, -0.41305238008499146, 0.05638603866100311, -0.21749277412891388, 0.08099525421857834, -0.06791411340236664, 0.5262705087661743, 0.05513303354382515, 0.2978218197822571, -0.5492726564407349, -1.3116681575775146, -0.4394843280315399, 0.016679968684911728, 0.028261234983801842, 1.0579994916915894, -0.5816394090652466, -0.8248361349105835, 0.3321497142314911, -0.008826150558888912, 1.2622071504592896, -0.32130756974220276, 0.12966561317443848, 0.40025264024734497, 0.6189214587211609, -0.07245339453220367, 0.6504654288291931, -0.06843456625938416, 0.020722176879644394, 0.07821782678365707, -0.06185329705476761, 0.3226450979709625, 1.155397891998291, -1.0158830881118774, -0.9474358558654785, -0.18295884132385254, 0.43106719851493835, 1.5447912216186523, 0.5283923745155334, 1.2948933839797974, -0.3717286288738251, -0.12223905324935913, -0.05840180441737175, 0.07156665623188019, -1.0381211042404175, -0.7611672282218933, -0.9796032309532166, -0.49141159653663635, -0.07279857248067856, 0.007648988161236048, 0.5547603368759155, 0.40550512075424194, -0.7523466348648071, 0.8563926219940186, 1.3269850015640259, -0.16757097840309143, -0.4008191227912903, -0.3795200288295746, 0.057417772710323334, -0.4384842813014984, 0.15706244111061096, 0.7910407781600952, -0.9699881672859192, -0.6834568977355957, -0.14039596915245056, -0.1784338802099228, 0.6007630825042725, -0.1086869090795517, 0.25058257579803467, -1.5397623777389526, -0.910877525806427, -0.4745132029056549, 1.7078840732574463, -0.23328429460525513, 0.0034587327390909195, -0.9898312091827393, 0.5430673360824585, 0.8872007131576538, -0.6214398741722107, -0.12476144731044769, 0.7542571425437927, -0.2546130418777466, -0.8042805194854736, -0.5081521272659302, 0.5524117350578308, 0.34070679545402527, -0.39922982454299927, -0.08718989789485931, -0.25983959436416626, -0.5539100170135498, 0.06353229284286499, 0.33886072039604187, -0.02114957757294178, 0.7179400324821472, 0.35944297909736633, 0.15598534047603607, 0.7465764284133911, -0.7342774271965027, 0.1948850005865097, -1.4032784700393677, 0.41119125485420227, 0.610155463218689, 1.1530505418777466, 0.17722779512405396, 0.3002055883407593, 0.10125375539064407, -0.0765707939863205, -0.04138456657528877, 0.6172053217887878, 1.3644541501998901, 0.11680580675601959, 0.0275210402905941, -0.3322544991970062, -0.2909272015094757, -0.1552005261182785, -1.1008847951889038, -0.07024523615837097, 0.687166690826416, -0.9473248720169067, -0.2880031168460846, 1.4659194946289062, 0.5411182641983032, 0.15739202499389648, 0.045017603784799576, 0.07045041769742966, 1.8076965808868408, -0.08152281492948532, -0.34440580010414124, -0.2614716589450836, 0.3802860975265503, 0.1014004573225975, -0.8511334657669067, -0.08610164374113083, 0.4398544132709503, 0.3164534866809845, 0.6048666834831238, -0.9967700242996216, 0.21616539359092712, -0.5143807530403137, 0.7108929753303528, -0.05220894515514374, 0.18177476525306702, 0.40409162640571594, -0.12258685380220413, 0.14953696727752686, -0.06370554119348526, 0.18969203531742096, 0.7960035800933838, -0.4079766273498535, -0.3885915279388428, -0.08548344671726227, 0.09222947806119919, 0.027306994423270226, 0.2530030608177185, -0.1641511768102646, 0.13293394446372986, -0.4590909481048584, 0.03582022339105606, 0.3624661862850189, 0.34474411606788635, 1.073403239250183, 0.4036976397037506, 0.03371269255876541, 0.7961797714233398, 0.27684226632118225, -1.2835222482681274, 0.6024415493011475, -0.14648006856441498, -0.5550594925880432, -0.32696953415870667, 0.1364196389913559, 0.2854520380496979, -0.4762367010116577, -0.027878638356924057, 0.35314393043518066, 0.5316223502159119, 0.07303664088249207, 0.2589835822582245, -0.21821221709251404, 0.9000359773635864, 0.6225667595863342, 1.1674065589904785, 0.4036988317966461, 0.027736853808164597, -1.1816563606262207, 0.5139450430870056, -1.1953037977218628, 0.16957218945026398, 1.0040239095687866, 0.3080447018146515, 1.257705807685852, -1.7392991781234741, -1.0757989883422852, 0.6949875354766846, 0.2627947926521301, 0.5888198018074036, 1.3113633394241333, 0.05445590615272522, 0.09293049573898315, 0.5047319531440735, 0.05395937338471413, -0.277835488319397, 0.2277594804763794, 0.12959595024585724, -0.20701853930950165, 0.5957828760147095, -0.6688998341560364, 1.0390650033950806, -0.4491511285305023, -0.37854456901550293, 0.5394486784934998, -0.5849382281303406, -0.2640360891819, 0.9143646359443665, 0.47282570600509644, 1.8997349739074707, -0.5372304320335388, -1.3338466882705688, 0.19120003283023834, -0.5399781465530396, -0.013450286351144314, -0.06545280665159225, 0.20306280255317688, -0.43134450912475586, -0.1812467873096466, -0.49502837657928467, 1.0891985893249512, 0.11528264731168747, -0.7265637516975403, -0.5787773132324219, -1.4133163690567017, 0.28783100843429565, 0.6153256297111511, 0.880632758140564, 0.8901029229164124, -0.014969369396567345, 0.07997641712427139, 0.1392761766910553, -0.3421488404273987, 0.12144524604082108, 0.21706849336624146, 0.1513933539390564, -0.20768950879573822, -0.989217221736908, -0.870593786239624, 0.23233401775360107, 0.6596165299415588, -0.19588787853717804, 0.6152228116989136, 1.620670199394226, 0.9179284572601318, -0.8881153464317322, -0.6757100224494934, 0.5888055562973022, -0.5191960334777832, 0.49320387840270996, 0.27218955755233765, -0.1836310625076294, -0.6625979542732239, -0.41121289134025574, -1.5590336322784424, 0.6783555150032043, -0.0015968717634677887, -0.47923097014427185, 1.3759369850158691, 0.14347684383392334, 0.8626274466514587, 0.30284202098846436, -0.7550135850906372, 0.442118763923645, 0.19718097150325775, -0.6672735810279846, -0.6446095705032349, 0.6564325094223022, 0.1100628674030304, 0.659593939781189, -0.0617724247276783, 0.24959325790405273, 0.5195134282112122, -1.0348960161209106, -0.11135631799697876, 0.4041009247303009, 0.2808648347854614, -0.004713158123195171, 0.3258324861526489, -0.788665771484375, 0.24593181908130646, -0.3859628140926361, -1.1329926252365112, -0.0552087128162384, 0.3020760416984558, -0.12723715603351593, -0.28874775767326355, -0.4583820700645447, -0.8142774105072021, -0.6152423024177551, -0.5885181427001953, -0.3232092261314392, 0.9806975722312927, 0.5002226829528809, 0.012194965966045856, -0.3778274357318878, -0.3310527503490448, 0.2716697156429291, -0.40908366441726685, 0.20628108084201813, -0.017799627035856247, -1.3409264087677002, 0.3557148873806, 0.22096270322799683, -0.7935009598731995, -0.12952230870723724, -0.3811928927898407, 0.3559807538986206, -0.5106846690177917, -1.3072254657745361, -1.2682923078536987, 0.8121916651725769, 0.8543320298194885, -1.0176228284835815, 0.8532687425613403, -0.1353532373905182, -0.9716145396232605, 0.1346116065979004, 0.12526655197143555, -0.6717042922973633, 0.1290271133184433, -1.1835651397705078, 0.30556920170783997, 0.45804116129875183, 0.36712726950645447, -0.14205290377140045, 0.5322763919830322, -1.1772758960723877, -1.0274441242218018, -0.7687137722969055, 0.07500191777944565, 0.9072402715682983, 0.3849918842315674, -1.1074116230010986, 1.1398637294769287, 0.234058678150177, -0.6833219528198242, -0.3046509325504303, -0.09547185897827148, -0.13024267554283142, 0.6408987641334534, 0.47915858030319214, 0.46282219886779785, 0.7287683486938477, 1.3633629083633423, -0.16720904409885406, 0.5596032738685608, 0.3065445125102997, 0.6171678304672241, -0.9901647567749023, -0.6218242049217224, -0.17652355134487152, 0.7169935703277588, -1.3411457538604736, -0.619420051574707, 0.1789740025997162, -0.6200269460678101, -1.001362681388855, 0.31909048557281494, 0.33587852120399475, -0.6205260157585144, 0.40665683150291443, -0.11056117713451385, -0.022704804316163063, -0.5693193078041077, 0.6343526244163513, 0.17258156836032867, -1.162955403327942, -0.41438475251197815, 0.38391271233558655, -0.21607837080955505, -1.8594931364059448, 0.43875032663345337, -0.12045200914144516, -0.1972738355398178, -0.47363796830177307, 0.3666249215602875, 0.9863746762275696, 0.2174222469329834, -0.4825567901134491, 1.6123360395431519, 0.7067766785621643, -0.23922817409038544, -0.4818192422389984, 0.4732508361339569, 0.12845903635025024, 1.0691490173339844, -0.5934786796569824, 0.162693589925766, -0.7810952663421631, 0.9287869930267334, -0.09014591574668884, 0.02441857010126114, -0.010944844223558903, 0.23436827957630157, -0.3116280436515808, -0.27693694829940796, 0.3647858500480652, -0.717536211013794, -0.39393311738967896, 0.8427019715309143, 0.2184402048587799, 0.2209382802248001, 0.5356696248054504, 0.7448194026947021, 0.6897426247596741, -0.33491629362106323, 0.4909396469593048, 0.012790698558092117, -1.2782162427902222, 0.24508312344551086, 0.24378399550914764, -0.31119874119758606, 0.3443305194377899, -0.4067659378051758, -1.424562692642212, 0.15205088257789612, -0.9945436716079712, -0.49850741028785706, 0.8054915070533752, -0.9138521552085876, -0.33764293789863586, 0.14251092076301575, -0.3232909142971039, -0.1443631500005722, -0.3100452125072479, 0.54322749376297, -0.08802152425050735, 0.4599607288837433, -0.00285226758569479, -0.37280216813087463, 1.564488172531128, -0.594907283782959, -0.017384236678481102, -1.2534124851226807, -0.27349627017974854, 0.2886851131916046, 0.044414766132831573, -0.06934867799282074, 0.15236841142177582, 0.5593123435974121, -0.31891027092933655, -0.9162145853042603, -0.020133553072810173, 0.6869303584098816, -0.03357001394033432, 0.23013068735599518, -0.20976397395133972, 0.3056301176548004, 0.4815141260623932, 0.35360297560691833, -0.7225281596183777, -1.14723801612854, -0.6213460564613342, 0.4314677119255066, -0.7591536641120911, 1.276989459991455, -0.911078691482544, 0.8448777198791504, 0.011864409781992435, -0.15266746282577515, -0.4779989719390869, -0.0908307358622551, 0.3737172484397888, 0.03503400832414627, 0.3225123882293701, -0.09676308184862137, -0.15618032217025757, -1.0862852334976196, -0.9897305965423584, 0.264131635427475, -0.07583979517221451, -0.030555810779333115, 0.04827151075005531, -1.1140763759613037, -0.2502892315387726, -0.6441267728805542, 0.07360494881868362, 0.34833499789237976, 0.2707565128803253, -0.06369020789861679, 0.1586482673883438, -0.6747897863388062, 0.28752389550209045, -0.15662093460559845, -0.24116425216197968, 0.06242896243929863, 0.7101544737815857, 1.2047966718673706, 0.975259006023407, 0.06807437539100647, -0.5231768488883972, 1.1043267250061035, -0.9684447050094604, -0.3547656536102295, -1.193729043006897, -0.37328729033470154, -0.49715420603752136], [0.5273580551147461, 1.0406795740127563, -2.0393245220184326, -0.6210827231407166, 1.048258662223816, 0.9133928418159485, 1.0134943723678589, 0.28483283519744873, -0.3368496894836426, 0.10281109809875488, 0.02204003557562828, 0.3311593532562256, 1.1266645193099976, 0.7343383431434631, -0.2988099455833435, -0.1895623654127121, 0.8540633320808411, -1.2046316862106323, 0.3079063296318054, 1.18082857131958, -0.17409799993038177, -0.5722994804382324, 0.03597567230463028, 0.14956165850162506, 0.46617990732192993, 0.3479907810688019, -1.152482509613037, -0.951893150806427, -0.9749125838279724, -0.9984185695648193, 0.5596964359283447, -0.6983637809753418, 0.24210986495018005, -1.1797246932983398, -0.9431623220443726, 0.4315791428089142, 1.2985031604766846, 0.37885570526123047, 0.06415625661611557, 0.12849310040473938, 0.36516717076301575, 0.6564636826515198, 0.009753849357366562, -1.2782243490219116, 1.0498223304748535, 0.20290213823318481, 0.7079362869262695, -1.1277122497558594, 0.8663915991783142, -1.1518290042877197, 0.6331787705421448, -0.3629813492298126, 0.3150954246520996, 0.6318858861923218, 0.4910293519496918, -0.06903021782636642, 0.33594515919685364, 0.7047042846679688, 0.7806532382965088, -0.5023700594902039, 0.37477490305900574, 0.303793340921402, -0.9236665964126587, 0.8702731728553772, 0.17341701686382294, -0.027584660798311234, 0.15882699191570282, 0.7430279850959778, 0.2804107367992401, 0.4071477949619293, 0.14662037789821625, 0.2661011815071106, -0.47269219160079956, 0.11388393491506577, -0.9928960800170898, 0.3788906931877136, 0.1264251470565796, 0.20766764879226685, 0.21992544829845428, 0.6318017840385437, -0.9874266982078552, -0.13725009560585022, 0.7743039727210999, 1.0554487705230713, 1.5677207708358765, 0.3663325607776642, 0.07587752491235733, -0.3914939761161804, -0.10276339948177338, 2.447573661804199, 0.14768779277801514, 0.07777591794729233, 0.37596529722213745, -0.19956667721271515, -0.049200695008039474, -0.33339494466781616, 0.21507613360881805, -0.606296718120575, -1.0663154125213623, -0.6892074942588806, -0.6977667808532715, -0.8821820616722107, -0.6139845848083496, -0.14600299298763275, 0.34627389907836914, 0.782353401184082, 0.7939052581787109, 0.6122598052024841, -0.3578261137008667, -0.1447775512933731, -0.44410374760627747, 1.1880382299423218, -1.145147442817688, -1.0046205520629883, -0.8614951968193054, -0.07772410660982132, 1.8830602169036865, -0.5061795711517334, -0.2407282143831253, 1.1834489107131958, -0.4836774468421936, -0.3644131124019623, -0.3219844400882721, 0.4786970019340515, 0.5300338268280029, 0.44833216071128845, -0.47437992691993713, -0.47645482420921326, 0.4699445962905884, -0.4343489408493042, -0.23641180992126465, -0.5507137179374695, -0.046829886734485626, 0.5094687342643738, -0.59504634141922, 0.26367780566215515, -0.39535579085350037, -0.778394341468811, 0.07669311761856079, 0.14690399169921875, 0.44923973083496094, 0.1670687347650528, -0.4378972351551056, 0.1742585003376007, -0.12015180289745331, -1.0242449045181274, 1.0636067390441895, 0.09161630272865295, -0.5162659883499146, 0.3364443778991699, -0.4356636703014374, 0.43015217781066895, 0.30728620290756226, 0.41828086972236633, -0.1703610122203827, -0.012056689709424973, 0.18717166781425476, 0.27269378304481506, 0.1428607702255249, -0.1369461566209793, 1.398719310760498, -0.05941127985715866, -0.20242828130722046, 0.6260602474212646, -0.2751484215259552, -0.015645699575543404, -0.3907049000263214, 0.38322943449020386, 0.38595637679100037, 0.7510431408882141, -0.7372792363166809, 0.2118494212627411, 0.08709772676229477, 0.8090959787368774, -0.07666832953691483, -0.6757538914680481, 0.8310888409614563, -0.9342750906944275, -0.990207314491272, -1.3009202480316162, -0.2322920262813568, -0.049555253237485886, 0.0420985110104084, 0.01290400605648756, 0.7984441518783569, -0.195500910282135, 0.16927210986614227, 0.2909068167209625, -0.4367416501045227, -0.684631884098053, -0.34359824657440186, 0.5501259565353394, -0.7769625186920166, -0.39393213391304016, -1.0602186918258667, -0.2583499550819397, 0.2835733890533447, -0.5478690266609192, -0.47130584716796875, -0.19420960545539856, -0.21527326107025146, -0.3081441819667816, -0.4940277636051178, -0.2800639569759369, -0.5076428055763245, 0.689671516418457, -1.503857135772705, 0.978672444820404, -0.989643394947052, 0.2739768624305725, 1.4106656312942505, 0.5272762179374695, -0.928834080696106, 0.738158643245697, -0.07086244225502014, -1.2834330797195435, 0.42489302158355713, -0.12089990079402924, -0.08535517752170563, 0.6935587525367737, -0.0882473811507225, 1.0113611221313477, 0.0799538642168045, -0.24640440940856934, -0.05908442661166191, -0.8616956472396851, -0.8283770680427551, -1.545531988143921, -0.8523721098899841, 0.07926206290721893, -0.38945236802101135, -1.4720603227615356, 0.3184430003166199, -0.18953406810760498, -0.8490650653839111, 0.4376526176929474, 0.7369658350944519, 0.17496533691883087, 0.7737220525741577, 0.8120293617248535, 0.47762331366539, 1.010055661201477, -0.4760526716709137, -0.6308282613754272, -0.7618598937988281, -0.3235505521297455, 1.4996135234832764, -0.8373028635978699, 0.5383403897285461, 1.1392807960510254, 0.9506500959396362, 0.12671448290348053, 0.42012685537338257, 0.2705584764480591, -0.1819562017917633, -0.4031055271625519, -0.09200527518987656, 0.5349754095077515, -0.44232267141342163, 1.1552804708480835, 1.0662031173706055, -1.0221132040023804, -0.18692460656166077, -0.012067001312971115, -0.1541018933057785, -0.44015341997146606, -1.0461875200271606, -0.3205072581768036, -0.09850207716226578, 0.2756703794002533, -0.08767114579677582, 1.1502455472946167, -0.7867034673690796, 1.095314621925354, 0.35037484765052795, -0.39449241757392883, -0.9667989611625671, 0.04070976376533508, -0.571894109249115, 0.4582044780254364, -0.22878944873809814, -1.1324642896652222, -1.5321776866912842, -0.37226352095603943, 0.44423726201057434, 0.07846984267234802, 0.26820531487464905, 0.2279282659292221, 0.05555153265595436, 0.10295027494430542, -0.051123958081007004, 0.10796687006950378, -0.04953894764184952, -0.08428950607776642, 0.24996642768383026, 1.0058172941207886, 1.2659587860107422, -1.2582422494888306, -1.0584845542907715, 0.06619273126125336, 0.051796916872262955, 1.3039450645446777, 0.6616342663764954, 0.891907811164856, -0.1911425143480301, 0.29700395464897156, -0.6817337274551392, -0.04520028829574585, 0.12740594148635864, -0.030786851420998573, -0.9626878499984741, -0.7988529801368713, -0.2543533444404602, -0.9120346307754517, -0.20548561215400696, 0.5760217308998108, 0.29068008065223694, 0.556745707988739, 0.7420136332511902, 0.16645151376724243, -0.5021282434463501, -0.13781845569610596, -0.09910565614700317, -1.0138849020004272, 0.1254272758960724, 1.260713815689087, -0.9995653629302979, -0.07247630506753922, -0.7427293658256531, 0.09379149228334427, 0.7891265153884888, 0.7095010876655579, -0.09925702214241028, -0.9243350028991699, -0.5806472301483154, -0.5889573097229004, 0.8968207240104675, -0.054305583238601685, -0.040130969136953354, -0.02255186252295971, 0.6946438550949097, 0.332986980676651, -0.0966426357626915, -0.6153059601783752, 1.1202797889709473, -0.5573968887329102, 0.03626842424273491, -0.17439262568950653, -0.010351153090596199, 0.156034916639328, 0.025613943114876747, 0.16365988552570343, 0.08133374154567719, -0.11273690313100815, -0.051469188183546066, 0.44649577140808105, 0.15108054876327515, 0.8312198519706726, 0.2696424722671509, 0.3020012378692627, 1.4118626117706299, -0.5566467642784119, 0.17839087545871735, -1.3902262449264526, 0.9343831539154053, 0.5362716317176819, 0.6585457921028137, 0.1462632566690445, 0.009839366190135479, 0.5697746276855469, -0.10796035081148148, -0.12872888147830963, 0.15789689123630524, 1.4551717042922974, 0.4929845929145813, -0.34308767318725586, -0.4402974843978882, -0.05541055649518967, -0.7756641507148743, -0.7616708278656006, 0.2727604806423187, -0.30613672733306885, -1.599198579788208, -1.3096879720687866, 0.8701260685920715, 0.48376455903053284, -0.33712396025657654, -0.6253888607025146, -0.17197774350643158, 0.6892431974411011, -0.5407420992851257, 0.7641023993492126, -0.4883415699005127, 0.8335700035095215, 0.029969144612550735, -0.644149661064148, 0.050291165709495544, 0.24621601402759552, 0.2879319190979004, -0.09855201840400696, -1.1227878332138062, 0.10849587619304657, -0.13782662153244019, 0.26065582036972046, 0.646705687046051, 0.11032214760780334, 0.0612928681075573, -0.6562725901603699, -0.13507869839668274, 0.4846840798854828, -0.1593296378850937, 0.6228733062744141, -0.3644394874572754, -0.3280961215496063, 0.2043522745370865, -0.4442744851112366, -0.07085905969142914, 0.2481308877468109, 0.04394073784351349, 0.5306348204612732, -0.525041401386261, 0.4819125831127167, 0.2040972262620926, 0.4853580594062805, 1.439258098602295, -0.011961911804974079, 0.47833749651908875, 0.7553988099098206, 0.17042796313762665, -1.859005093574524, 0.5382673144340515, 0.238189697265625, -0.4708631932735443, -0.5714367032051086, 0.16446414589881897, 0.336692750453949, -0.09121643751859665, 0.7745377421379089, 0.3322591483592987, 0.8879495859146118, 0.4339405596256256, -0.9453702569007874, -0.5218712687492371, 0.42663758993148804, 0.8584765195846558, 1.4980649948120117, 0.5369789004325867, 0.3531392812728882, -1.3022830486297607, 1.1357933282852173, 0.20075811445713043, 0.3438504934310913, 1.4981920719146729, 0.2810613811016083, 0.6369330286979675, -1.4280897378921509, -0.4202114939689636, 0.010031325742602348, -0.2999984323978424, 0.051179926842451096, 0.29912081360816956, 0.4410305619239807, -0.5119374990463257, 0.9266402125358582, 0.18363772332668304, 0.5997341275215149, 0.2922394573688507, 0.4851085841655731, 0.21791420876979828, 0.4423283338546753, -0.18103322386741638, 0.7310546040534973, -0.5289968252182007, 0.14774732291698456, 0.251338392496109, -0.1497819572687149, 0.1053842082619667, -0.02409914694726467, 0.354917049407959, 1.6476086378097534, -0.4421008229255676, -1.590006709098816, 0.5056492686271667, -0.48758465051651, 0.2801174521446228, -0.5006116032600403, -0.1356503665447235, -0.047455839812755585, -0.9171245098114014, -0.18404914438724518, 0.44597160816192627, 0.18928077816963196, -0.36109182238578796, -0.39662039279937744, -0.9533873796463013, -0.12398064881563187, 0.3006695806980133, 1.2807272672653198, 0.4855470359325409, 0.6656662225723267, 0.39536163210868835, 0.5267125368118286, -0.9314812421798706, 0.18118761479854584, -0.2489103525876999, -0.4783972203731537, -0.11385679244995117, -1.2439595460891724, -0.46034684777259827, 0.5816340446472168, 0.2536124289035797, 0.19967299699783325, 1.0671498775482178, 1.5478044748306274, 1.0383036136627197, -0.6593126058578491, -0.41895967721939087, 0.2903669476509094, -0.7413075566291809, 0.07932651042938232, 0.7905406355857849, 0.0623195618391037, -0.915145754814148, -0.6240689754486084, -1.8679429292678833, 1.1216531991958618, -0.5136764645576477, -0.5136343836784363, 0.7995034456253052, 0.2581072747707367, 0.39684972167015076, 0.9887908697128296, -1.3393436670303345, 0.919789731502533, 0.10813894867897034, -0.9142113327980042, -1.3246850967407227, 0.32191747426986694, -0.2120261788368225, -0.8079146146774292, -0.41101837158203125, 0.5971104502677917, 0.12712006270885468, -0.22383278608322144, 0.6152178049087524, 1.0266245603561401, -0.13138362765312195, -0.4247967004776001, 0.7630462646484375, -1.1286460161209106, -0.12733334302902222, -0.39021989703178406, -0.3845977485179901, -0.017848782241344452, 0.576901376247406, 0.10247037559747696, -0.33646705746650696, -0.44014522433280945, 0.2734759747982025, -0.5819571018218994, 0.42437323927879333, 0.21898098289966583, 1.2010650634765625, 0.6672403216362, 0.45980480313301086, -0.27127647399902344, -0.2976182699203491, -0.9250611066818237, -0.8118749260902405, -0.3190537393093109, 0.02527020126581192, -1.2142881155014038, -0.5300242900848389, -0.716515839099884, -0.8282475471496582, -0.6668974161148071, -1.1008740663528442, 0.444322407245636, -0.8870800137519836, -1.1802785396575928, 0.33850517868995667, -0.09857242554426193, 0.8409829139709473, -0.9074873924255371, 0.5011600852012634, -0.5398542881011963, -0.7557721734046936, 0.21591410040855408, 0.39975741505622864, -0.7221817970275879, -0.3321702182292938, -1.3432759046554565, 1.1314564943313599, 0.16772741079330444, 0.1259225606918335, 0.2739819884300232, 0.7055710554122925, -1.0534473657608032, -0.6118203997612, -0.6066465377807617, -0.07834261655807495, 0.8170164823532104, 0.5242211222648621, -1.620747685432434, 1.3821079730987549, 0.9254899024963379, -0.779853880405426, -0.6523952484130859, 0.05336862429976463, -0.4719630479812622, 0.14426910877227783, 0.7492934465408325, 0.05218809098005295, 0.13007812201976776, 1.2497446537017822, 0.20087452232837677, 0.09806159883737564, 0.09139784425497055, 0.14388814568519592, -0.4433799088001251, -0.46457067131996155, -0.3555847108364105, 0.8145620822906494, -0.33568763732910156, -0.5255433320999146, 1.0052821636199951, -1.5613281726837158, -0.16342754662036896, 0.6978411674499512, 0.6281675696372986, -0.5738619565963745, -0.18702495098114014, -0.9797493815422058, 0.019341841340065002, -0.9977782964706421, 1.1299266815185547, -0.46642741560935974, 0.0012104436755180359, -0.543600857257843, -0.2554791569709778, 0.3972049653530121, -1.1132817268371582, 0.828027069568634, 0.12075560539960861, -0.2868139445781708, -0.44899919629096985, 0.7008990049362183, 1.0738455057144165, -0.3581717014312744, -0.6160074472427368, 0.9236976504325867, 0.7908180952072144, 0.14993679523468018, -0.4339423179626465, 0.7656041979789734, 0.3614061176776886, 0.8264254331588745, 0.2637617290019989, 0.30636993050575256, -0.7927821278572083, 0.3701598644256592, -0.3375297486782074, 0.49902573227882385, 0.24197819828987122, 0.21879427134990692, -0.5173425674438477, 0.9149284362792969, 0.3959670066833496, -0.44175654649734497, 0.01978371851146221, 1.5874921083450317, -0.4452265799045563, 0.473844051361084, 0.5542315244674683, 0.3725742995738983, -0.24208897352218628, -0.3881339728832245, 0.38119930028915405, 0.7018032670021057, -0.26427486538887024, -0.31433483958244324, -0.2767052948474884, 0.05012892186641693, -0.48915889859199524, -0.13818874955177307, -1.311055064201355, 0.16895423829555511, -0.8017078042030334, 0.6978767514228821, 0.3462584316730499, -1.0715633630752563, -0.947346031665802, 0.6870789527893066, -0.2769736349582672, -0.22178949415683746, -0.43418386578559875, 0.6695838570594788, 0.24345280230045319, -0.5033495426177979, 0.2930706739425659, 0.7215755581855774, 1.3058418035507202, -0.3946959972381592, -0.038358740508556366, -0.9258143305778503, -0.27844828367233276, 0.5100271701812744, -0.13916777074337006, -0.12999431788921356, 0.007796050049364567, 0.15480150282382965, -0.6377967596054077, -0.9850329160690308, 0.8066789507865906, 0.051430922001600266, -0.182096928358078, -0.3860812783241272, -0.683350145816803, 0.3437548577785492, -0.01085879746824503, 0.8782238364219666, -0.3101009130477905, -1.1876386404037476, -1.3711875677108765, 0.7008258104324341, -0.8145543336868286, 1.3005701303482056, -0.18367402255535126, 0.5196778774261475, -0.2640130817890167, -0.31785598397254944, -0.28465503454208374, -1.1951357126235962, 0.8001513481140137, -0.7963001132011414, 0.627846896648407, -0.17744825780391693, 0.5488536953926086, -0.754513144493103, -0.7361785173416138, 0.3543618619441986, 0.09927329421043396, -0.5358688831329346, 0.1875067800283432, -1.1855922937393188, -0.8801894783973694, -1.4404199123382568, 0.1482500284910202, 0.6794688105583191, -0.024961156770586967, 0.11596935987472534, 0.14164064824581146, -1.3977538347244263, -0.012289872393012047, 1.1008542776107788, -0.1045328676700592, 0.2980855703353882, 1.1454226970672607, 1.6633373498916626, 0.6246231198310852, 0.6479814052581787, -0.09066417068243027, 1.2468571662902832, -1.1163480281829834, -0.7157683372497559, -0.4133394956588745, -0.7253916263580322, -0.3849223852157593], [0.6137555837631226, 0.7519007921218872, -3.085517168045044, -0.8923887610435486, 0.44515618681907654, -0.14133751392364502, 1.3243048191070557, 0.8112092018127441, -0.230494886636734, 0.015134472399950027, -1.2360343933105469, -0.2389633059501648, 0.5761999487876892, 0.5164265036582947, 0.9185628294944763, 0.5569474697113037, 0.5486111044883728, -0.46040230989456177, 0.8203773498535156, 1.08887779712677, -0.4288899898529053, -0.5324398875236511, -0.696779191493988, -0.5752084255218506, 0.37246236205101013, -0.7739155292510986, -0.4937981367111206, -1.0659785270690918, -1.4196501970291138, -1.042264699935913, 0.9467769861221313, -0.5375919342041016, -0.5517259240150452, -0.6466172933578491, -1.9223511219024658, -0.15333841741085052, 1.7007896900177002, -0.10822740942239761, 0.44286462664604187, 0.9311770796775818, 1.780010461807251, 0.6340985894203186, 0.2212470918893814, -1.0807509422302246, 0.11765467375516891, 0.004038255661725998, 0.5015242695808411, -0.4303221106529236, 0.603760838508606, -0.6406105160713196, 0.6296647191047668, -0.9582434892654419, 0.7047815918922424, 0.8161646723747253, 1.6296496391296387, -0.4169352948665619, 0.833934485912323, -0.4258202612400055, 0.3199537396430969, -0.44645655155181885, 0.18006636202335358, 0.23290342092514038, 0.18990397453308105, 0.7336162328720093, 0.05997466295957565, -0.2602411210536957, 0.19281421601772308, 1.3141236305236816, 0.27350643277168274, -0.6392358541488647, 0.9789621829986572, 0.2477615773677826, -0.16225692629814148, -0.36525091528892517, -0.8311986923217773, -0.03477107733488083, 0.16585955023765564, 0.9145758748054504, 1.1210442781448364, 0.6529275178909302, -1.173912525177002, -0.4079287052154541, 1.005456805229187, 0.9919167757034302, 1.4481322765350342, -0.04080004245042801, -0.02302205190062523, 0.062123093754053116, -0.3643651604652405, 2.024799346923828, -0.035549335181713104, -0.5396957993507385, 0.8340845704078674, -0.29292356967926025, -0.3260372281074524, -0.6067975759506226, -0.18316912651062012, 0.039015501737594604, -0.9317772388458252, -0.9603559970855713, -0.6254909634590149, -1.4791083335876465, -0.017829176038503647, -0.16345420479774475, 0.20841239392757416, 1.1555895805358887, 0.8026842474937439, -0.057784538716077805, -0.4106881022453308, 0.350954532623291, 0.5957015752792358, 0.29488009214401245, -0.7731248140335083, -1.9063626527786255, -0.5458022952079773, 0.7693212628364563, 1.1667670011520386, 0.49799874424934387, -0.01029961183667183, 1.1353501081466675, -1.079817533493042, -0.5161950588226318, -0.36318448185920715, 0.441356360912323, 0.2125941514968872, -0.35129815340042114, -0.325783371925354, -0.33259856700897217, -0.04456860572099686, -0.17285332083702087, -0.3991347849369049, -0.860075056552887, 1.1535961627960205, 0.5282059907913208, -0.7052152752876282, 0.6364762187004089, 0.002609267830848694, -0.7672972083091736, -0.44620177149772644, -0.8183161616325378, 0.29755961894989014, 0.5062101483345032, 0.17312055826187134, -0.3788205087184906, -0.051909152418375015, -0.3842695653438568, 0.8645018339157104, -0.6512736678123474, -1.2666454315185547, -0.7551581263542175, -0.7105449438095093, 0.08797231316566467, -0.01927923783659935, 0.011481747031211853, 1.105676531791687, -0.18406659364700317, 0.5471881628036499, 0.0702693834900856, 0.3096374273300171, 0.40204185247421265, 0.1935807317495346, -0.23523765802383423, -0.2662929594516754, 0.9461574554443359, 0.11150357872247696, -0.9648164510726929, 0.158042773604393, 0.9197677969932556, 0.44200557470321655, 0.5318477749824524, -0.7175934314727783, -0.4075251519680023, -0.9684524536132812, 0.36243247985839844, -0.05937247723340988, -0.5775341987609863, 0.9773516654968262, -0.5510000586509705, -1.6073079109191895, -1.3444823026657104, 0.6536216735839844, -0.04437883198261261, 0.6409499049186707, 0.04766692593693733, 1.4529180526733398, -0.5451107621192932, 0.25633418560028076, -1.0857508182525635, 0.19837409257888794, -0.6073119044303894, -1.2751520872116089, 0.03637624904513359, -0.944726288318634, -0.013951564207673073, -0.48132213950157166, -0.9246206283569336, 0.023354528471827507, -0.446125864982605, -1.122341513633728, -0.21820181608200073, -0.2431660145521164, -0.5748521089553833, -0.6717507839202881, -0.6506548523902893, -0.5676047801971436, 0.3431716859340668, -1.891701579093933, 0.6700051426887512, -1.2914111614227295, 0.3888217806816101, 1.295419692993164, 0.5615702867507935, -1.1569591760635376, 0.6299221515655518, 0.028601177036762238, -0.7032505869865417, 0.24693889915943146, 0.37517663836479187, 0.07173759490251541, 0.14264890551567078, -0.06321821361780167, 0.7779925465583801, 1.1959130764007568, -0.7913059592247009, 0.47917041182518005, -0.40896499156951904, -0.64291912317276, -0.9640235900878906, -0.06391662359237671, -0.29262059926986694, -0.7667862176895142, -0.968262791633606, 0.7072142362594604, 0.22052916884422302, -1.7616221904754639, 0.4262392818927765, 0.15598522126674652, 0.8824857473373413, 0.3082772195339203, 1.1471967697143555, 0.1088302806019783, 0.9362853765487671, -0.007086597383022308, 0.10050374269485474, -0.960606575012207, 1.0295368432998657, 0.6855042576789856, -1.009680151939392, 0.8290345072746277, 1.0378457307815552, 0.89653080701828, 0.4138781428337097, 1.0027542114257812, -0.29372644424438477, 0.24812953174114227, -0.5930517315864563, -0.8046123385429382, 0.35417455434799194, 0.16743579506874084, 1.5090430974960327, 0.9087927937507629, -0.8774582147598267, 0.03412420302629471, -0.16100552678108215, 0.7964235544204712, -1.2238681316375732, -0.41585201025009155, 0.7964699864387512, 0.2659147381782532, 0.7304441332817078, -0.10757564008235931, 0.3746594190597534, -1.3164596557617188, 0.5802806615829468, -0.44913116097450256, 0.3728630840778351, -0.24353724718093872, -0.06778361648321152, -0.19372674822807312, 0.7722210884094238, -0.32642459869384766, -0.45618936419487, -0.9541372060775757, -0.8247677683830261, 0.9533100128173828, 0.4928600788116455, -0.5615536570549011, 0.6003189086914062, -0.14166153967380524, -0.1857118159532547, 0.7732096314430237, 0.9602195620536804, -0.05438605695962906, -0.10837988555431366, 0.06355714052915573, 0.9126002788543701, 1.5634069442749023, -0.5438442826271057, -0.6626307964324951, -0.49738579988479614, 0.529887855052948, 1.0621410608291626, 1.6811050176620483, 1.456358790397644, -0.16147775948047638, 0.4906335771083832, 0.7221666574478149, 0.2291824072599411, 0.13573132455348969, -0.5373339056968689, -0.2709425985813141, -1.0245347023010254, 0.14074786007404327, 0.11137810349464417, -0.11972180753946304, 0.6581189036369324, 0.012986298650503159, 0.09971688687801361, 0.8589166402816772, -0.23817826807498932, -0.7085700631141663, 0.05189472436904907, -0.6609699726104736, -0.3567800223827362, -0.22628909349441528, 1.3390166759490967, -1.5688403844833374, 0.28587937355041504, -0.1525830775499344, 0.03022567182779312, 0.3047731816768646, 0.17851859331130981, 0.11681141704320908, -0.811794102191925, -0.8002704381942749, 0.03062245063483715, 0.28092068433761597, -0.08827681839466095, -0.7981380820274353, -1.2026402950286865, 0.5492264032363892, 1.0076031684875488, 0.5627651214599609, -1.021551489830017, 1.5985462665557861, -0.3817538022994995, 0.3097233772277832, 0.37935304641723633, 0.787202000617981, 0.3728606402873993, -0.2686307728290558, -0.8374962210655212, 0.1919947862625122, -0.19706904888153076, -0.24512317776679993, 0.5148688554763794, -0.3590736985206604, 1.3182955980300903, 0.7050630450248718, 0.5262672305107117, 1.9084155559539795, -0.21826499700546265, 0.5748493075370789, -1.6104234457015991, 1.033545970916748, 0.7282259464263916, 0.5632609128952026, -0.48091545701026917, 0.17517149448394775, 0.3353889286518097, -0.004190564155578613, 0.31598833203315735, 0.31368592381477356, 0.9290838837623596, 0.18640030920505524, -0.40653109550476074, -0.6761861443519592, 0.1034383699297905, -0.19548942148685455, -0.45738303661346436, 0.08759529143571854, 0.6792367100715637, -0.639704167842865, -0.526186466217041, 1.6161261796951294, 0.2723381519317627, -0.7581980228424072, -0.848343551158905, 0.359848290681839, 0.5381685495376587, -0.019815752282738686, 0.405401349067688, -0.8474869728088379, 0.28020793199539185, 0.8936443328857422, -1.2895829677581787, -0.6953898072242737, 1.2250843048095703, 0.12402161955833435, 1.0685378313064575, -0.7633091807365417, 0.12472188472747803, 0.21394222974777222, 0.2809631824493408, 0.5202622413635254, -0.09904489666223526, 0.13973204791545868, 0.2557607889175415, 0.8435195088386536, 0.31853756308555603, 0.6332104802131653, 0.5367396473884583, -0.47306251525878906, 0.9150353074073792, 0.2511218786239624, 0.7821544408798218, 0.3798578083515167, 0.9396878480911255, 0.33533695340156555, -0.13886304199695587, -0.1686505228281021, -0.09871119260787964, 0.08564137667417526, 0.5776805877685547, 1.5347697734832764, 0.06165421009063721, 0.6673168540000916, 0.8146514892578125, 0.3159111440181732, -2.130793809890747, 0.6068639159202576, 0.5358750224113464, 0.5771549344062805, -0.535193145275116, -0.1302521675825119, 0.116673544049263, -0.5522583723068237, 0.2967461347579956, 0.3653009533882141, 0.5182945132255554, 0.5971647500991821, -0.4406271278858185, -0.3450952172279358, 1.5638843774795532, 1.443221926689148, 1.5228396654129028, 0.5832290649414062, -0.7874882221221924, -0.5779286026954651, 0.6498528122901917, 0.4127131998538971, 0.3636230528354645, 0.8114128112792969, 0.357317179441452, 1.9868789911270142, -1.2931814193725586, -0.5049484968185425, 0.3519541323184967, 0.3821871876716614, -0.02629201114177704, 1.2845255136489868, 0.9893245697021484, -0.19522681832313538, -0.03508695214986801, 0.20109936594963074, -0.21276138722896576, -0.1084824949502945, 0.05260851979255676, 0.24038785696029663, 0.8374240398406982, -0.334486186504364, 0.1384381651878357, -0.5740662217140198, 0.27676504850387573, 0.9098072648048401, -0.3485162556171417, -0.5120481848716736, 0.10039347410202026, -0.5135250687599182, 1.652379035949707, -0.4110286235809326, -0.9133970141410828, 0.4057788848876953, -1.457804799079895, -0.08692635595798492, -0.8424472212791443, -0.6433701515197754, -0.5194645524024963, -0.458371102809906, -0.6173822283744812, 0.4038417339324951, 0.29106375575065613, -0.18317103385925293, 0.36997541785240173, -1.3249716758728027, -0.33828502893447876, 0.7275314331054688, 1.2949713468551636, 0.2419610470533371, -0.007805760949850082, 0.12338851392269135, 0.7512742877006531, -0.5351036787033081, -0.21101228892803192, 0.5564424395561218, -0.7335344552993774, 0.34217554330825806, -0.5497037172317505, -0.9290910959243774, 0.770056962966919, -0.34459608793258667, 0.6253030300140381, 0.9375991225242615, 0.41344326734542847, 1.540159821510315, -0.20954683423042297, -0.5786795616149902, 0.1797836869955063, -0.16433031857013702, 0.11487266421318054, 0.34271275997161865, 0.25599581003189087, -1.5779297351837158, -0.33634743094444275, -1.548699975013733, 0.06730922311544418, -0.18823030591011047, -0.6850700378417969, 0.18766219913959503, 0.023545537143945694, 0.6881999969482422, 0.3424835205078125, -0.6369787454605103, 0.8297789096832275, 0.015808459371328354, -0.39631161093711853, -1.5851181745529175, 0.5802443027496338, -0.6389597058296204, 0.16823318600654602, -0.012825125828385353, 0.19833961129188538, -0.6704793572425842, -0.34562769532203674, -0.5421690344810486, -0.06958531588315964, -0.002952057868242264, -0.5720769762992859, -0.45161762833595276, -0.728639543056488, 0.07686962187290192, -0.0828675925731659, -0.2816040515899658, -0.5980881452560425, 1.075009822845459, -0.6283479928970337, -1.3149042129516602, 0.20020067691802979, -0.4218593239784241, -0.4067626893520355, 0.20122133195400238, 0.5914245247840881, 1.393805742263794, 0.5008126497268677, 0.23148874938488007, -0.24644456803798676, 0.03855651244521141, -0.2706948518753052, -0.2799428105354309, 0.18856336176395416, 0.017884423956274986, -0.930897057056427, -0.5380915999412537, 0.12768131494522095, -1.104020595550537, -0.2859039604663849, -0.8030456304550171, 0.47605979442596436, -1.370844841003418, -1.1224852800369263, -0.8195977807044983, -1.02626371383667, 0.48656168580055237, -1.2570924758911133, 0.025902800261974335, 0.293912410736084, -0.8387113213539124, 0.7766206860542297, 0.2835509181022644, -0.6116609573364258, -0.3749203085899353, -0.7560647130012512, 0.5769569277763367, -0.21525917947292328, 0.9837913513183594, -0.7833165526390076, 0.47959646582603455, -1.663197636604309, -0.8188785314559937, -0.9151913523674011, -0.17241300642490387, 0.9257416725158691, 0.051817573606967926, -1.638023018836975, 0.8094859719276428, 0.39454925060272217, -0.8844522833824158, 0.14073266088962555, 0.28056463599205017, -0.1953429877758026, -0.07418627291917801, 0.5931902527809143, 0.09604264050722122, -0.06022835522890091, 0.7605594992637634, -0.32655200362205505, 1.3304933309555054, 0.1397443264722824, -0.15963202714920044, -0.6323354244232178, -0.017444491386413574, -0.016405832022428513, 0.21844996511936188, -0.8669134378433228, -0.07737727463245392, 0.22246821224689484, -1.0973719358444214, -0.8119376301765442, 0.83554607629776, 0.5698853135108948, -0.6966286301612854, -0.012249946594238281, -1.6163603067398071, -0.062262021005153656, -1.3637981414794922, 0.845313310623169, -0.23240569233894348, -0.0312543660402298, -0.706599235534668, -0.5822058916091919, -0.13994304835796356, -1.1154476404190063, 0.3095196783542633, -0.464146226644516, -0.039569150656461716, -0.8020187020301819, 0.6846993565559387, 0.6966719627380371, 0.4933227002620697, -1.2015410661697388, 1.0119341611862183, 0.48462316393852234, -0.28420138359069824, -0.13179795444011688, 0.31307753920555115, 0.14917141199111938, 1.00625479221344, -0.2408156543970108, 0.22040049731731415, -1.1269088983535767, 0.5142114758491516, 0.10774458199739456, 0.07043179869651794, -0.7454774975776672, 0.019789688289165497, -0.5737648010253906, 0.04077787697315216, -0.11340691149234772, -0.6082912683486938, -0.5303312540054321, 0.9442712664604187, 0.6534094214439392, 0.6708123087882996, 0.5621612668037415, 0.4634755551815033, -0.05669688433408737, 0.21834196150302887, 0.42916882038116455, -0.41905859112739563, -0.6972714066505432, -0.18890231847763062, -0.029055459424853325, 0.04549681395292282, -0.37265580892562866, -0.5800121426582336, -1.568236231803894, -0.10074520111083984, -0.18319091200828552, -0.47918909788131714, 0.33818939328193665, -1.2268083095550537, -0.7795414924621582, 0.3045009970664978, 0.17731443047523499, 0.05960248410701752, -0.21190182864665985, 0.2213999330997467, -0.4324573576450348, -0.8751606941223145, 1.1012901067733765, -0.4156626760959625, 1.2710597515106201, -0.5660507082939148, -0.027225321158766747, -1.0486913919448853, -0.3074510991573334, 0.756819486618042, -0.01183149591088295, 0.34900081157684326, -0.6190225481987, 1.043513536453247, -0.7165951132774353, -0.4270704686641693, 0.1748790591955185, 0.6361249685287476, -0.2286045253276825, -0.012674890458583832, -1.5186800956726074, 0.4008466601371765, 0.7402967810630798, 1.310198426246643, 0.14123807847499847, -0.7853230834007263, -1.0245885848999023, 1.004133701324463, -0.6683319211006165, 1.164544939994812, 0.13512414693832397, 1.025101661682129, -0.05283796042203903, 0.034161973744630814, 0.43756070733070374, -0.29830989241600037, 0.7220309972763062, -0.06055761128664017, 0.12558875977993011, -0.11826790124177933, 0.3370797038078308, -0.5124017596244812, -1.0758506059646606, 0.14051532745361328, 0.29318395256996155, -0.7234866619110107, -0.2512933909893036, -0.8379497528076172, -0.874699592590332, -1.3994914293289185, -0.10821709781885147, 0.08751309663057327, 0.08557137846946716, 0.5252386927604675, -0.5979127287864685, -0.6454343795776367, 0.306979775428772, 0.5095404982566833, -0.13765114545822144, 0.7997346520423889, 1.5288467407226562, 2.189856767654419, 1.0447611808776855, -0.018643569201231003, -0.6673240065574646, 0.6009575128555298, -1.0974187850952148, -0.09529722481966019, -1.0696179866790771, -0.48424652218818665, -0.15930674970149994], [0.44745567440986633, 0.7895683646202087, -2.3856053352355957, -0.3847818672657013, 0.6169590353965759, 0.37094858288764954, 1.3161464929580688, 0.3212733864784241, -0.2759064733982086, -0.9061988592147827, -0.34008851647377014, -0.04187050834298134, 1.2286884784698486, 1.0115333795547485, 0.18282127380371094, 0.3949492871761322, 0.9406306147575378, -0.2567567229270935, 0.6217331886291504, 1.3910675048828125, -0.2864927053451538, -0.1618744432926178, -0.3509700298309326, -0.12555575370788574, -0.09918998181819916, -0.4941718280315399, -0.9700490832328796, -1.2085015773773193, -1.4002776145935059, -1.301567792892456, 1.5527106523513794, -0.25533050298690796, -0.208902508020401, 0.22215622663497925, -1.565529465675354, -0.6466208100318909, 1.4542542695999146, 0.4706586003303528, 0.6666998267173767, 1.0956060886383057, 1.5358198881149292, 0.6369975805282593, -0.06986042857170105, -1.6511379480361938, 0.4518961012363434, -0.04018827900290489, 0.6025293469429016, -0.9165927171707153, 0.6094744205474854, -0.35990574955940247, 0.7255319952964783, 0.6271828413009644, 0.49810218811035156, 1.1737898588180542, 0.9785192012786865, -0.4319726824760437, 0.2167731672525406, 0.3090120851993561, 1.1606577634811401, -0.9214679598808289, 0.5322215557098389, 0.36909595131874084, -0.3555041551589966, 1.0173389911651611, 0.33403798937797546, -0.8801670074462891, -0.1490555852651596, 0.675902247428894, 0.4079435169696808, -0.5743769407272339, 0.3695487976074219, 0.5732404589653015, -0.6163051128387451, 0.6036307215690613, -0.8650262355804443, 0.2815205156803131, 0.57743901014328, 0.5645031929016113, 0.3572368621826172, 0.24197585880756378, -0.8643074631690979, 0.47345274686813354, 0.6075023412704468, 0.43681633472442627, 1.5463128089904785, 0.01908055506646633, -0.021428974345326424, -0.027618790045380592, -0.7955710887908936, 2.2261486053466797, 0.7081964015960693, -0.4030865430831909, 0.3110458552837372, -0.8849356770515442, -0.4154544770717621, -0.6706447005271912, 0.2278417944908142, -0.7904741764068604, -0.8540372848510742, -1.091288685798645, -0.8775792121887207, -0.7659804821014404, 0.542965829372406, -0.2167428731918335, 0.24712346494197845, 1.2874995470046997, -0.08421392738819122, -0.2253226488828659, -1.021620512008667, -0.40563902258872986, -0.22927016019821167, 0.04389898106455803, -0.8645410537719727, -0.8990143537521362, -0.5471816658973694, 0.2574276924133301, 0.8632535338401794, -0.40872180461883545, 0.28504472970962524, 0.6887575387954712, -1.045442819595337, -0.07076668739318848, -0.9819319248199463, 0.5584755539894104, 0.696932315826416, 0.7486162185668945, -0.6563189029693604, -0.847842276096344, 0.9584255814552307, -0.24021677672863007, 0.14489610493183136, -0.05772806331515312, -0.4213835299015045, 0.8419563174247742, -0.480567991733551, 0.8517336249351501, -0.7719760537147522, -0.5265952944755554, -0.36073991656303406, -0.3793164789676666, 0.6463638544082642, -0.7163993120193481, -0.263934850692749, -0.3278804421424866, 0.07636746019124985, -0.3909517824649811, 0.813874363899231, -0.28505420684814453, -0.8841027617454529, 0.3283641040325165, -0.7819151878356934, -0.09325174242258072, 0.25669050216674805, 1.227370262145996, 0.5955363512039185, 0.07310324907302856, -0.01730063185095787, 0.25304728746414185, -0.18666347861289978, -0.10274700820446014, 0.49216344952583313, -0.6364854574203491, -0.3839672803878784, 1.4508548974990845, 0.5124759078025818, -0.7543391585350037, 0.3590506315231323, 1.0413641929626465, -0.16825352609157562, 0.5298284292221069, -0.4737299084663391, -0.38342908024787903, -0.48786842823028564, 0.6288824677467346, 0.6640970706939697, -0.2525162398815155, 1.3955460786819458, -1.021612286567688, -1.3400986194610596, -0.9753108024597168, 0.2164062112569809, -0.20709311962127686, -0.0013909060508012772, -0.20152173936367035, 1.2327330112457275, -0.3447748124599457, -0.024888502433896065, -0.15816660225391388, -0.756468653678894, -1.361599087715149, -0.6585016250610352, -0.6557935476303101, -1.389785647392273, -0.018916111439466476, -0.47157764434814453, -0.8657068610191345, 0.08833139389753342, -1.0049165487289429, -0.9450779557228088, 0.12317553907632828, -0.45285239815711975, 0.2051396369934082, -0.8973990678787231, 0.12374438345432281, -0.6443775296211243, 1.1121087074279785, -1.6931962966918945, 0.8421499133110046, -0.5814366936683655, 0.07376231998205185, 1.150907278060913, 0.09469221532344818, -0.6985892057418823, 0.6398329138755798, 0.09513657540082932, -1.0539705753326416, 0.8666225075721741, 0.4357970952987671, -0.050129085779190063, 0.2838175296783447, 0.015675680711865425, 0.7805410623550415, 0.8530701398849487, -0.045619897544384, 0.3231796622276306, -0.26955538988113403, -0.625106692314148, -0.7225289344787598, -0.7133727669715881, -0.024517947807908058, -0.4200223386287689, -0.9846822023391724, 0.46811074018478394, 0.2677592933177948, -0.5698061585426331, 0.1324123591184616, -0.2576664090156555, -0.24495714902877808, 0.20340684056282043, 1.1928484439849854, 0.1691102236509323, 0.2678322494029999, 0.06504148989915848, 0.08839154988527298, -0.793768584728241, 0.12355343252420425, 1.2519370317459106, -0.0666700154542923, 0.4446218013763428, 1.4053577184677124, 0.7359690070152283, -0.357118159532547, 0.14996784925460815, 0.30928757786750793, 0.3032982349395752, -0.6098242998123169, -0.7056832313537598, 0.09745234251022339, -0.851150631904602, 0.7839915156364441, 0.8323656916618347, -0.9995119571685791, -0.02199378050863743, 0.10142380744218826, 0.02346951700747013, -0.5411569476127625, -0.26537081599235535, -0.27450090646743774, 0.2699470818042755, 0.010715651325881481, -0.12590335309505463, -0.028103694319725037, -0.5860874652862549, 0.7165785431861877, -0.5049105882644653, -0.14805099368095398, -0.4052570164203644, 0.07647868245840073, -0.07161625474691391, 0.3517973721027374, -0.06418360024690628, -1.2704840898513794, -0.7515023946762085, 0.18973322212696075, 1.3387460708618164, -0.3616059720516205, -0.6974166631698608, 0.05992725118994713, 0.021730508655309677, 0.19856558740139008, 0.12956590950489044, 0.6778588891029358, 0.3427234888076782, -0.38377848267555237, -0.27892202138900757, 0.7960426211357117, 0.860353946685791, -0.8535250425338745, -1.2425674200057983, 0.19022104144096375, 0.9046048521995544, 1.4130921363830566, 1.3057279586791992, 1.5666639804840088, 0.8000216484069824, -0.13235436379909515, -0.6523059606552124, -0.2902086675167084, -0.6261438131332397, -0.5785420536994934, -0.8342382907867432, -1.337104082107544, -0.4411965608596802, -0.31961551308631897, -0.4221515953540802, 0.8113369345664978, -0.052798472344875336, 0.7051125764846802, 1.4399579763412476, -0.0682826042175293, -1.0752416849136353, -0.6810875535011292, -0.06964513659477234, -1.038954496383667, 0.629560649394989, 1.4038439989089966, -1.252024531364441, -0.39894068241119385, 0.30002468824386597, 0.16764985024929047, 0.3890794813632965, -0.17432568967342377, 0.013061055913567543, -1.7308558225631714, -0.8303915858268738, -0.3357717990875244, 0.9367193579673767, -0.069423608481884, -0.03220721334218979, -0.3632549047470093, 0.37585243582725525, 0.49397608637809753, 0.2027815580368042, -0.9872390627861023, 0.9466961026191711, -0.7230761647224426, 0.22497351467609406, 0.05809929594397545, 0.0837453082203865, 0.727901816368103, -0.26413196325302124, -0.4554002583026886, 0.08629713207483292, -0.018150486052036285, -0.2966136336326599, 0.6449525356292725, -0.3001134693622589, 0.999214231967926, 0.8184424638748169, 0.4958727955818176, 1.075730562210083, -0.48391130566596985, -0.010680710896849632, -1.2722779512405396, 0.9974543452262878, 0.9574353098869324, 0.9764098525047302, -0.1048145592212677, 0.19726689159870148, 0.14393401145935059, 0.32529011368751526, 0.5522518157958984, 0.4165226221084595, 1.314997673034668, 0.8259698748588562, -0.46102002263069153, -0.1868346929550171, -0.2609809339046478, -0.02887013927102089, -0.5653587579727173, -0.28723496198654175, 0.6776593327522278, -0.8381877541542053, -0.5110998749732971, 1.226859450340271, 1.110886812210083, -0.3227570354938507, -0.5433845520019531, -0.10504256188869476, 0.9492683410644531, -0.3587407171726227, 0.4183148741722107, -0.6891345977783203, 0.022281624376773834, 0.09907849133014679, -1.231770634651184, -0.44114693999290466, 0.928497314453125, 0.378601610660553, 0.6555681228637695, -1.1170940399169922, -0.21075540781021118, -0.4275726079940796, 0.027967683970928192, 0.5823768973350525, -0.6765127778053284, 0.17283539474010468, -0.13441890478134155, -0.232661172747612, 0.12452388554811478, 0.05569270998239517, 1.1206934452056885, -0.6717840433120728, -0.15488982200622559, 0.02517937868833542, -0.31546750664711, 0.27868416905403137, -0.06325090676546097, -0.7122349739074707, 0.4533594846725464, -0.7498204708099365, -0.12617573142051697, -0.2041981816291809, 0.2813878357410431, 1.7248419523239136, 0.4387012720108032, 0.7301599383354187, 0.4063860774040222, -0.5266931653022766, -1.1153956651687622, 0.5724074840545654, 0.5434752106666565, 0.134726881980896, -0.18400874733924866, -0.8256508111953735, 0.46054255962371826, -0.24843797087669373, 0.23960600793361664, 0.1412190943956375, 0.5898929238319397, 0.8094044923782349, -0.03514894098043442, -0.29717305302619934, 0.5407755970954895, 1.5577423572540283, 1.7723928689956665, 0.3776550889015198, -0.7169207334518433, -0.43796733021736145, 0.9222776293754578, -0.4185900390148163, 0.4986640214920044, 0.925320565700531, -0.009049497544765472, 1.5372546911239624, -1.669804573059082, -0.33691662549972534, 0.2173030525445938, -0.13588623702526093, 0.31615838408470154, 0.5909396409988403, 0.5721602439880371, -0.1528826504945755, 0.5352394580841064, -0.16892653703689575, -0.2516798675060272, 0.33196499943733215, 0.013812581077218056, -0.7343732118606567, 0.5457605719566345, -0.7857252359390259, 0.2583129107952118, -0.7564998269081116, -0.04130072519183159, 0.006932133808732033, 0.28927963972091675, 0.22758282721042633, 0.25147727131843567, -0.01583694852888584, 1.0642945766448975, -1.0341877937316895, -1.1466634273529053, 0.43673473596572876, -0.563689649105072, 0.32115039229393005, -0.7287563681602478, -0.20355170965194702, -0.4671141803264618, -0.8348724246025085, -0.2104278951883316, 1.0754516124725342, -0.2398245632648468, -0.20129279792308807, -0.062011152505874634, -1.3490538597106934, 0.22211489081382751, 0.46845901012420654, 1.5324116945266724, 0.23780912160873413, 0.6717751026153564, 0.656928300857544, 0.8300296068191528, -1.4045190811157227, -0.09193934500217438, 0.6721409559249878, 0.09894569963216782, 0.1250268518924713, -1.0084073543548584, -0.3831560015678406, 0.3308277726173401, 0.3960128724575043, 0.22363130748271942, 0.6087291836738586, 1.2569215297698975, 1.3764203786849976, -0.3379213213920593, -0.6331492066383362, 0.30310577154159546, -0.7456371188163757, -0.41283759474754333, 0.7097951769828796, -0.8605920672416687, -0.31344836950302124, -0.370697021484375, -1.5035799741744995, 1.057303786277771, -0.13715022802352905, -0.7150149345397949, 0.6435874700546265, 0.8038454055786133, 0.22945791482925415, 1.1214877367019653, -0.11556737124919891, 0.40144291520118713, 0.14871732890605927, -0.11704658716917038, -1.854753851890564, 0.44846251606941223, 0.28492823243141174, 0.21830037236213684, -0.6385908722877502, 0.28645092248916626, 0.28935539722442627, -0.6049822568893433, -0.40378180146217346, -0.09674261510372162, 1.446683406829834, 0.6684208512306213, 0.6997014880180359, -0.8716288805007935, 0.38978275656700134, -0.4705718755722046, -0.2579953968524933, -0.1286417841911316, 0.6356905102729797, 0.28512465953826904, -1.0492850542068481, -0.3852464556694031, -0.559991717338562, -0.3848205804824829, -0.0897642970085144, -0.23828551173210144, 1.2161072492599487, 0.010578255169093609, -0.2383173555135727, -0.07139480859041214, 0.05163285508751869, -0.7551121711730957, -0.3127729296684265, -0.1748536080121994, 0.6344815492630005, -1.7251349687576294, -0.217532217502594, -0.41755738854408264, -0.5388490557670593, -0.1993621438741684, 0.32632502913475037, 0.035527024418115616, -1.1948466300964355, -0.6613884568214417, -0.9742890000343323, -0.003982714843004942, 0.8006735444068909, -0.5688755512237549, 0.1664644479751587, 0.2885069251060486, -0.9953421950340271, 0.7595621347427368, -0.01484299823641777, -1.2191294431686401, -0.07371576130390167, -1.3305058479309082, 1.325472116470337, -0.14843077957630157, 0.050070054829120636, 0.3979826867580414, 1.472240686416626, -0.4798690378665924, -0.6867853403091431, -1.179760456085205, 0.07938645780086517, 0.7129076719284058, 1.5275688171386719, -1.1485531330108643, 1.2790437936782837, -0.02984762378036976, -1.236033320426941, 0.1483100950717926, -0.08609233051538467, -0.5102862119674683, 0.7191511988639832, 0.26039382815361023, 0.33350521326065063, 0.08724632114171982, 1.1189981698989868, 0.14036987721920013, 0.8334465622901917, 0.3979134261608124, 0.30457356572151184, -0.8716133236885071, -0.19554749131202698, -0.3498217463493347, 0.1762850284576416, -1.1716264486312866, -1.2092084884643555, 0.019430704414844513, -1.3996198177337646, -0.8477897047996521, 0.5338209271430969, 1.012027382850647, -0.4995881915092468, 0.09604935348033905, -0.41230276226997375, 0.4120922386646271, -0.5174111127853394, 0.7663399577140808, -0.22181940078735352, 0.1052628830075264, -0.2988934814929962, -0.514819324016571, 0.12297208607196808, -1.5594524145126343, 0.04516621306538582, -0.03571626543998718, -0.14149297773838043, -0.054313454777002335, 0.4816111624240875, 0.9556185603141785, -0.5584548711776733, -0.655511200428009, 1.2356330156326294, 1.2861028909683228, -0.2601057291030884, -0.05182648077607155, 0.6721389889717102, 0.5106637477874756, 0.6549884080886841, -0.4562760889530182, -0.395917683839798, -1.037889838218689, 0.10233258455991745, 0.18040631711483002, -0.1714003086090088, -0.6478090882301331, -0.23398903012275696, -0.17351166903972626, 0.8413573503494263, 0.4437876343727112, -0.596312940120697, -0.20493556559085846, 1.1231080293655396, -0.346597284078598, 0.3875238597393036, 0.8442685604095459, 0.19163642823696136, 0.5337146520614624, 0.43774205446243286, 0.1935672163963318, 0.7319902181625366, -0.30282703042030334, 0.2850312292575836, -0.01725667528808117, -0.23212210834026337, -0.18354429304599762, -0.8300791382789612, -1.4534000158309937, -0.21362042427062988, -0.687507688999176, -0.6550576686859131, 0.011861688457429409, -1.627935528755188, -0.7825822234153748, 0.1522912085056305, 0.07361356168985367, -0.2750847637653351, -0.6363455057144165, 0.45596617460250854, -0.398959755897522, -0.12867875397205353, 1.2183098793029785, -0.05479149892926216, 1.266156792640686, 0.10187360644340515, -0.30440205335617065, -0.9725854396820068, -0.41589710116386414, 0.8576419949531555, -0.18270771205425262, -0.18712086975574493, -0.03835085779428482, 0.41244134306907654, 0.03464210405945778, -0.585508406162262, 0.6063967943191528, -0.8975479602813721, 0.17062412202358246, 0.03679772466421127, -1.0828373432159424, -0.19894854724407196, 0.5569671392440796, 0.3159482181072235, -0.06289582699537277, -0.6173064112663269, -1.4206819534301758, 0.750408947467804, -0.5292587876319885, 1.1856646537780762, -0.4211250841617584, 1.1259503364562988, 0.30759963393211365, -0.3840608298778534, -0.1362687349319458, -1.0304325819015503, 0.6679820418357849, -0.06899171322584152, 1.0415862798690796, -0.30629512667655945, -0.15400199592113495, -0.08263197541236877, -1.3183493614196777, 0.3725321888923645, 0.4634271562099457, -0.23598748445510864, 0.0550045445561409, -1.3692514896392822, -0.7844628691673279, -0.5107002854347229, 0.30126890540122986, 1.044732928276062, -0.06714965403079987, 0.5638284087181091, -0.37968552112579346, -1.0738840103149414, 0.015525049529969692, 0.9012670516967773, -0.5397560596466064, -0.005771748721599579, 1.723327398300171, 1.6453880071640015, 0.918898344039917, 0.10114444047212601, -0.28269949555397034, 0.5208376049995422, -0.9087035655975342, -0.5218356847763062, -0.8010521531105042, -0.10880424082279205, 0.10823778063058853], [0.6169954538345337, 0.6181463599205017, -2.423950433731079, -0.512127697467804, 0.19256474077701569, 0.8015762567520142, 1.084558129310608, 0.3796696960926056, 0.3622520864009857, -0.10814505815505981, -0.3174974024295807, -0.06498351693153381, 1.1184831857681274, 0.7589912414550781, -0.14450538158416748, 0.15217919647693634, 0.8202192187309265, -0.5204944014549255, 0.907059907913208, 1.5489091873168945, -0.47682610154151917, -0.1324874460697174, -0.1462010145187378, -0.1825295388698578, -0.24637876451015472, -0.2517390251159668, -1.3514549732208252, -1.1342082023620605, -0.9397872090339661, -1.2971826791763306, 1.0290124416351318, -0.3516714572906494, -0.6545689105987549, -0.6244562864303589, -1.0156662464141846, 0.004417140036821365, 0.964079737663269, 0.10522594302892685, 1.2493324279785156, 1.0350701808929443, 1.0167521238327026, 0.9293422698974609, -0.18696124851703644, -0.7694052457809448, 0.2885994613170624, 0.016336314380168915, 0.6044479608535767, -0.9569305777549744, 0.43974271416664124, -0.10172948986291885, 0.6102915406227112, -0.7532490491867065, 0.5784654021263123, 0.1203698068857193, 1.6792991161346436, 0.09408334642648697, 0.7752785682678223, 0.14952124655246735, 0.9900172352790833, -1.2799218893051147, 0.7101528644561768, -0.0017866343259811401, -0.6023612022399902, 0.9868060350418091, -0.23323291540145874, -0.6125146150588989, -0.19320735335350037, 0.9458164572715759, 0.016250506043434143, -0.32730966806411743, 0.8565419912338257, 0.9641072154045105, -0.5702539682388306, 0.061275456100702286, -0.8009352684020996, 0.008144170045852661, 0.27519491314888, 0.9364171624183655, 0.7276204228401184, 0.6769046783447266, -0.21590960025787354, -0.43996039032936096, 0.6126716732978821, 0.3518451452255249, 1.8604907989501953, 0.172651469707489, -0.05350151285529137, 0.6510653495788574, -0.407356858253479, 2.1127312183380127, 0.08056151866912842, -0.12063298374414444, 0.7655996680259705, -0.5808144807815552, -0.4570072591304779, -0.555512547492981, 0.1005157083272934, 0.24140237271785736, -1.1846281290054321, -0.38155415654182434, -0.4482549726963043, -1.008381724357605, 0.5811914205551147, -0.04479704052209854, 0.22402648627758026, 1.1690824031829834, 0.9249114990234375, 0.29307568073272705, -0.5698214769363403, 0.22955071926116943, 0.1415202021598816, 0.4586283266544342, -0.542652428150177, -1.0423052310943604, -1.0110448598861694, 0.3671584725379944, 1.2304350137710571, 0.1445031315088272, 0.18644380569458008, 1.194321870803833, -0.9893888235092163, -0.489946573972702, -0.8671770691871643, 0.4076465368270874, 0.24284613132476807, 0.4273588955402374, -0.5114589333534241, -0.5532106161117554, 0.4022366404533386, -0.2622973620891571, -0.33395758271217346, -0.4654082953929901, 0.29507502913475037, 0.45336300134658813, -0.4601459503173828, 1.3481571674346924, -0.21491937339305878, -0.6661938428878784, 0.2723519206047058, -0.19177252054214478, 0.6617512702941895, 0.20145702362060547, 0.3480943441390991, -0.051392119377851486, -0.061367217451334, -0.3686070442199707, 0.09965331852436066, -0.5701273083686829, -0.7510063052177429, 0.28476548194885254, -0.33587226271629333, 0.05011620372533798, 0.2530798614025116, 0.3968381881713867, 0.5358571410179138, 0.17206959426403046, 0.2472691833972931, 0.6602901816368103, 0.5475465059280396, 0.43166255950927734, -0.029969917610287666, -0.3551749587059021, -0.18594317138195038, 0.6160387396812439, 0.06486387550830841, -0.6913262605667114, 0.1133367195725441, 0.6316210627555847, 0.4843045473098755, 0.6366013884544373, -0.7723598480224609, -0.05982983857393265, -0.41704273223876953, 0.43635308742523193, -0.01502055674791336, -0.6810336112976074, 1.1025404930114746, -1.2756098508834839, -1.139915108680725, -1.1065232753753662, -0.1257820874452591, -0.37193164229393005, -0.22482408583164215, -0.09075377136468887, 0.4891411066055298, -0.3695499300956726, -0.0687221884727478, -0.4646526575088501, -0.1512170135974884, -0.8308896422386169, -0.6709960103034973, 0.04947774112224579, -0.3676488995552063, 0.21592654287815094, -0.13102291524410248, -1.1002943515777588, 0.2867487967014313, -0.8629303574562073, -0.6794443726539612, 0.06521879136562347, -0.10317140817642212, -0.4909505546092987, -0.9582813382148743, 0.15636876225471497, -0.4690786302089691, 0.6898516416549683, -1.0606623888015747, 0.9313670992851257, -1.1521037817001343, -0.0872812271118164, 1.3817058801651, 0.6273855566978455, -0.7668370604515076, 0.6646617650985718, 0.07795809209346771, -0.967014729976654, 0.026211760938167572, 0.032489679753780365, -0.18575631082057953, 0.00039614224806427956, -0.09196615219116211, 0.6833178997039795, 0.6736064553260803, -0.31003904342651367, 0.2912035882472992, 0.17407749593257904, -0.6814061403274536, -0.5998526215553284, -0.7736945748329163, 0.24721530079841614, -0.16540321707725525, -1.221783995628357, 1.121620774269104, 0.06852716952562332, -0.49312305450439453, 0.5985128879547119, -0.30917075276374817, 0.07502063363790512, 0.24184559285640717, 1.0150386095046997, 0.034838639199733734, 0.8700774312019348, -0.6200398802757263, -0.309101402759552, -0.6273052096366882, 0.1821952611207962, 0.7800096273422241, -1.1836124658584595, 0.21828529238700867, 1.1769764423370361, 0.7390921711921692, 0.4780610203742981, 0.645917534828186, 0.011306260712444782, 0.126031294465065, -0.6417398452758789, -0.6823058128356934, 0.423225075006485, -0.09944858402013779, 0.6065576076507568, 0.26870197057724, -0.1304408609867096, -0.3604784905910492, -0.012835155241191387, 0.5820532441139221, -0.807309091091156, -0.8413701057434082, 0.011046133004128933, -0.1183042898774147, 0.48321595788002014, -0.13428449630737305, 0.7297518849372864, -0.5509092807769775, 0.4989407956600189, -0.6188223361968994, -0.1851375699043274, -0.7005322575569153, 0.3319488763809204, -0.46497219800949097, 0.5138437747955322, -0.4553108215332031, -1.0086092948913574, -0.3725116550922394, -0.09122272580862045, 0.8342265486717224, -0.27555856108665466, -0.47060427069664, 0.28031447529792786, -0.01840459741652012, -0.06946016848087311, -0.09687826037406921, 0.33562713861465454, -0.13649670779705048, -0.5564969778060913, 0.07460509240627289, 1.0484371185302734, 1.2918267250061035, -0.5026620030403137, -0.9697690010070801, -0.605474591255188, 0.4599357843399048, 0.8376199007034302, 0.710433840751648, 1.5094882249832153, 0.41160306334495544, 0.16363391280174255, -0.06829047948122025, -0.3303156793117523, -0.2282017171382904, -0.550160825252533, -0.696712851524353, -0.8690927624702454, -0.6421928405761719, 0.007891896180808544, -0.27449384331703186, 0.2877826690673828, 0.21717558801174164, -0.06294428557157516, 1.2408868074417114, 0.22703717648983002, -0.3298189043998718, -0.5671312212944031, -0.007468309719115496, -0.579193651676178, 0.18301573395729065, 1.3343713283538818, -1.4073002338409424, 0.15106776356697083, -0.2707189619541168, 0.14878004789352417, 0.4454239010810852, -0.06157781556248665, -0.4788059890270233, -1.004034399986267, -0.9686517715454102, -0.3917452394962311, 0.5093339681625366, 0.18307706713676453, -0.2553311884403229, -0.7727949023246765, 0.6621742248535156, 0.7563832402229309, 0.1364119052886963, -0.5726532936096191, 0.9539726376533508, -0.027415724471211433, -0.011152339167892933, 0.34164729714393616, 0.21144184470176697, 0.414252370595932, 0.04597504809498787, -0.6368314623832703, 0.10166829824447632, 0.059030793607234955, 0.28492000699043274, 0.7204258441925049, -0.3176144063472748, 1.2690935134887695, 0.3738316595554352, 0.10117508471012115, 1.3947328329086304, -0.2420675903558731, 0.5370482206344604, -1.2993276119232178, 0.6555514335632324, 0.2649098038673401, 0.726850152015686, -0.235775887966156, 0.43255823850631714, 0.5782465934753418, 0.0885339304804802, 0.2436361163854599, 0.42897769808769226, 0.8754528760910034, 0.28849655389785767, -0.16245365142822266, -0.5294297933578491, 0.3942234516143799, -0.1889503300189972, -0.8967881798744202, 0.09886473417282104, 0.27140191197395325, -0.7780991196632385, -0.05839697644114494, 0.9961825013160706, 0.13504734635353088, -0.23963770270347595, -0.27496394515037537, 0.2021113783121109, 0.47017189860343933, 0.12539760768413544, 0.48685306310653687, -0.37216904759407043, 0.1334330141544342, 0.43329286575317383, -1.1996334791183472, -0.445617139339447, 0.5379084944725037, 0.4381695091724396, 0.8780010938644409, -0.9284101724624634, 0.4220365583896637, 0.29951056838035583, 0.7117294073104858, -0.10982656478881836, -0.13886301219463348, 0.10856765508651733, -0.3359405994415283, 0.3187815546989441, -0.05040654167532921, 0.6319776177406311, 0.20771460235118866, -0.6393471956253052, -0.1263485997915268, -0.1916855424642563, 0.20430293679237366, -0.23760825395584106, 0.8050773739814758, 0.14133824408054352, -0.18068139255046844, -0.18577927350997925, 0.13623613119125366, -0.29114463925361633, 0.5044631361961365, 1.7419461011886597, 0.6218787431716919, 0.5912549495697021, 0.6431942582130432, 0.009687911719083786, -1.4165977239608765, 0.601931631565094, 0.526960551738739, 0.1047872006893158, -0.6069823503494263, 0.023557983338832855, -0.0923190489411354, -0.036887023597955704, 0.6670165657997131, 0.8201068639755249, 0.846584677696228, 0.9040601849555969, -0.5271167159080505, 0.12249957770109177, 0.9459061622619629, 0.8181647062301636, 1.881032943725586, 0.31601715087890625, -0.0020067617297172546, -1.0556745529174805, 0.40922337770462036, -0.33616188168525696, -0.1401950567960739, 0.7644931674003601, 0.24297122657299042, 1.7258045673370361, -1.4633426666259766, -0.4447808265686035, -0.04948728159070015, -0.004066338296979666, -0.03733173385262489, 1.1585533618927002, 0.04837808012962341, 0.23751533031463623, 0.28561902046203613, -0.2891883850097656, -0.30282846093177795, -0.0949067622423172, -0.07333767414093018, -0.4000687003135681, 0.6262377500534058, -0.766753077507019, 0.8246854543685913, -0.5325744152069092, 0.31250765919685364, 0.49945151805877686, -0.6905003786087036, -0.7647337317466736, 0.13081702589988708, 0.256693571805954, 1.3277572393417358, -0.6630527377128601, -1.1417006254196167, 0.4224565625190735, -0.838961660861969, -0.16829662024974823, -0.314208447933197, -0.5036544799804688, -0.10498751699924469, 0.13164764642715454, -0.3264792859554291, 0.9413423538208008, 0.15277999639511108, 0.08386094123125076, -0.33002638816833496, -1.298689842224121, -0.5213239192962646, 0.30900266766548157, 1.2244457006454468, 0.17369501292705536, 0.3581934869289398, -0.0659065768122673, 0.7971138954162598, -1.0502814054489136, -0.3288980722427368, 0.6252977848052979, -0.36591091752052307, 0.2880405783653259, -0.7881993651390076, -0.6823363900184631, 0.6933504939079285, -0.015286778099834919, 0.5955272912979126, 0.33751142024993896, 1.227708101272583, 1.579694151878357, -0.42208096385002136, -0.44647881388664246, 0.4998946487903595, -0.30884745717048645, -0.4712637662887573, 0.7612346410751343, 0.06508924067020416, -1.1227163076400757, 0.013735305517911911, -1.921440839767456, 0.6643257141113281, -0.24048098921775818, -1.1924763917922974, 0.1928473711013794, 0.23928263783454895, 0.6560695767402649, 0.7916224598884583, -0.5671406388282776, 0.3979158103466034, -0.3151823878288269, -0.41277503967285156, -1.8150265216827393, 0.3680059313774109, -0.06279813498258591, 0.31007838249206543, 0.1262713223695755, 0.33968183398246765, -0.016194244846701622, -0.38102486729621887, -0.10014214366674423, 0.4581979811191559, 0.25997239351272583, 0.1415090560913086, 0.6145721673965454, -1.0425565242767334, -0.030861584469676018, 0.08194765448570251, -0.5415339469909668, -0.5130375623703003, 0.49245181679725647, -0.39222022891044617, -0.9769465327262878, -0.4325910210609436, -0.79328852891922, -0.7178645133972168, 0.15859314799308777, 0.15972767770290375, 1.1296778917312622, -0.13097935914993286, -0.4545855224132538, 0.014336951076984406, -0.019491372630000114, -0.43317911028862, -0.1832953691482544, -0.05199812352657318, 0.40769654512405396, -1.5270140171051025, -0.46458926796913147, 0.32458385825157166, -1.0303459167480469, -0.48104187846183777, -0.3117780089378357, 0.23100140690803528, -1.3066598176956177, -1.5065840482711792, -0.30287912487983704, -0.604988157749176, 0.3987216353416443, -0.7367732524871826, -0.19973096251487732, 0.5435189604759216, -1.1154545545578003, 0.7420019507408142, 0.5403194427490234, -0.6245572566986084, -0.4130392372608185, -0.9773802757263184, 0.4434831142425537, -0.11201480776071548, 0.21862417459487915, -0.2606821656227112, 0.603624701499939, -1.1261428594589233, -1.6058306694030762, -1.479925513267517, -0.10744167864322662, 0.5289936661720276, 0.7987077832221985, -1.1832280158996582, 0.6123540997505188, 0.9228600859642029, -0.5133396983146667, 0.19291961193084717, 0.37632471323013306, -0.4429600238800049, -0.15697753429412842, 0.6455162167549133, -0.6956782937049866, 0.043880268931388855, 0.5570710897445679, -0.36674803495407104, 0.7006382942199707, 0.08503220230340958, -0.12222617864608765, -0.9705830812454224, -0.16292160749435425, -0.3705493211746216, 0.3920814096927643, -1.157170057296753, -1.0280667543411255, 0.1681670993566513, -1.104520320892334, -0.2567194998264313, 0.8275238275527954, 0.25960806012153625, -0.8163951635360718, -0.3616023659706116, -1.2897953987121582, 0.31986090540885925, -0.8233255743980408, 0.7898520827293396, -0.8424506783485413, 0.3920227587223053, -0.6595410108566284, -0.5389971137046814, 0.2595216929912567, -1.0551059246063232, 0.43809735774993896, 0.0548570491373539, -0.24909207224845886, -0.16194023191928864, 0.683561384677887, 1.1395480632781982, -0.22362089157104492, -0.7562344670295715, 0.8805635571479797, 0.8809462785720825, 0.12633143365383148, -0.5051504373550415, 0.22798138856887817, 0.40743184089660645, 0.963507354259491, -0.15830059349536896, 0.4161156415939331, -0.9942921996116638, 0.8851925134658813, 0.32129281759262085, 0.3184388279914856, -0.6419323086738586, 0.19646891951560974, -0.164502814412117, 0.6661630868911743, -0.29582861065864563, -0.9377210736274719, -0.06545814871788025, 0.9296150803565979, -0.07948985695838928, 0.2379111647605896, 0.1781214326620102, 0.32866060733795166, 0.026479516178369522, 0.3234967589378357, 0.3878564238548279, 0.35608386993408203, -0.7698392271995544, -0.4090883433818817, -0.42475879192352295, -0.07567144185304642, -0.2954031229019165, -0.24526381492614746, -1.1122697591781616, -0.19301767647266388, -0.4405632019042969, -0.24960361421108246, 0.07399995625019073, -1.1937453746795654, -0.8799337148666382, 0.35570284724235535, -0.18198268115520477, -0.27169153094291687, 0.07830911874771118, 0.2574862837791443, 0.019354747608304024, -0.0506904162466526, 0.8657294511795044, -0.413034588098526, 0.9796918630599976, 0.005869386717677116, -0.16943620145320892, -0.6087419986724854, -0.08320491015911102, 0.3673308789730072, 0.06340718269348145, -0.01829705201089382, -0.12147865444421768, 0.013010958209633827, -0.156866192817688, -0.4653729200363159, 0.041860971599817276, 0.4775106608867645, -0.14431075751781464, 0.09394923597574234, -0.9779990911483765, 0.517677366733551, 0.7078598737716675, 0.975213885307312, 0.17703384160995483, -0.3602268397808075, -0.8640458583831787, 0.48693057894706726, -0.44272851943969727, 1.2895588874816895, -0.4760175943374634, 0.6800909042358398, -0.17813409864902496, 0.25235462188720703, -0.1878037452697754, -0.2571321427822113, 0.8333662748336792, -0.4831241965293884, 0.41009414196014404, 0.13006427884101868, 0.324557363986969, -0.8267197012901306, -1.0288822650909424, 0.628164529800415, 0.6657151579856873, -0.6303404569625854, -0.11852759122848511, -0.975738525390625, -0.7297480702400208, -0.9421371221542358, 0.30020445585250854, 0.5894539952278137, 0.06615986675024033, 0.162858784198761, -0.5009790062904358, -0.7044520974159241, 0.391237735748291, -0.4054282009601593, -0.20274858176708221, 0.5814306139945984, 1.6271077394485474, 1.9355074167251587, 0.8769429922103882, -0.046606939285993576, -0.4529949426651001, 0.6685062050819397, -0.49540022015571594, -0.4014938175678253, -0.5124999284744263, -0.6193618774414062, 0.0033838171511888504], [-0.33665716648101807, 1.1898415088653564, -2.669403314590454, -0.1779913604259491, 1.099902868270874, 0.5068248510360718, 1.3082170486450195, -0.36693379282951355, 0.0673617273569107, -0.43766874074935913, 0.3288661539554596, 0.23637063801288605, 0.3573967218399048, 0.8594624400138855, 0.37856072187423706, 0.655535101890564, 0.648612380027771, -1.1108644008636475, 0.4618837833404541, 1.5539549589157104, -0.7279092073440552, -0.5525416135787964, -0.3544734716415405, -0.20348656177520752, -0.2943587005138397, 0.38027289509773254, -1.153315544128418, 0.04948650300502777, -1.1326184272766113, -0.9645891189575195, 0.45997390151023865, -0.6667526960372925, -0.350020170211792, 0.1565227061510086, -1.6215243339538574, 0.5631359815597534, 1.5368882417678833, 1.2588461637496948, 1.1762073040008545, -0.031144244596362114, 2.1531362533569336, 0.0005586221814155579, -0.28786683082580566, -1.3784992694854736, -0.24795815348625183, -0.7970082759857178, 0.923313319683075, -0.807884931564331, 0.46700963377952576, -0.5799403190612793, 0.30927127599716187, -0.879517674446106, 0.9331663846969604, 1.5319339036941528, 1.52890145778656, -0.5837463140487671, 0.0036812853068113327, 0.3215630054473877, 0.8938339948654175, -0.8864163756370544, 0.47205474972724915, -0.24271535873413086, -0.12038306891918182, 0.46691983938217163, 0.192540243268013, 0.2660438120365143, -0.29171621799468994, 0.560936450958252, 0.2315439134836197, -0.13316181302070618, 0.3190770745277405, 0.6787304878234863, -0.9872809648513794, 0.9404955506324768, -1.3410289287567139, 0.6489769220352173, 0.5527856349945068, 0.4854520559310913, -0.020923739299178123, 0.3721155524253845, -1.1177196502685547, -0.35217228531837463, 1.233132243156433, -0.6753174066543579, 0.572928786277771, -0.0684693455696106, 0.6155312061309814, -0.15442447364330292, -0.6960205435752869, 1.4691556692123413, 1.0600390434265137, 1.1428998708724976, 0.5577000379562378, -0.09606523811817169, -0.24839133024215698, -0.08816161006689072, 0.022343561053276062, -0.4960674047470093, -1.214747667312622, -0.6090019941329956, -0.007481701672077179, -0.9806763529777527, 0.5070085525512695, 0.12746039032936096, -0.4703157842159271, 1.3248592615127563, -0.1091914102435112, -0.0047910623252391815, -0.3201015889644623, 0.007990486919879913, -0.21414732933044434, 0.08329827338457108, -1.194701910018921, -0.9971311092376709, -0.5466763973236084, 1.0030221939086914, 1.1219136714935303, -0.921963095664978, 0.4054242968559265, 0.8239749073982239, 0.4533444046974182, -0.04478384554386139, -0.18523795902729034, 0.4875333607196808, 0.6709959506988525, 0.016726084053516388, -0.5807708501815796, -0.9383058547973633, 0.27365970611572266, -0.22226163744926453, 0.04515412822365761, -0.9064018726348877, -0.45526495575904846, 0.7104378938674927, -0.9250020980834961, 1.383962631225586, -0.41336119174957275, -0.665489137172699, 0.09838501363992691, -0.9555694460868835, 0.20502641797065735, -0.33638709783554077, 0.14579671621322632, -0.4787953197956085, -0.45809823274612427, -0.8687921166419983, 0.47398245334625244, 0.05119207128882408, -0.676116943359375, 0.3186943531036377, -0.9522736072540283, 0.11022167652845383, 0.7912341952323914, 0.36302483081817627, 0.33099326491355896, -0.4144260883331299, -0.16036200523376465, 0.13903532922267914, 0.6821410655975342, 0.3262958526611328, 1.0998541116714478, 0.13459447026252747, -1.0787022113800049, 0.2850542962551117, 0.6510794162750244, 0.05768386647105217, 0.22665831446647644, 0.4017255902290344, 0.2758966088294983, 1.29445481300354, -0.17535673081874847, -0.7920403480529785, -0.23127108812332153, 0.3519286513328552, 0.8004013299942017, -1.4637585878372192, 1.11057448387146, -0.10949408262968063, -1.79134202003479, -1.2316186428070068, 0.4433337450027466, -0.9345242977142334, 0.3714669346809387, -0.27694210410118103, 0.7202386260032654, -0.6264265775680542, 0.3640926480293274, -0.0367499440908432, -0.7064553499221802, -0.9806280136108398, -0.7735766172409058, -0.2851395010948181, -1.097156047821045, 0.135395810008049, -0.8835623264312744, -0.704389214515686, 0.4293534755706787, -0.9743363261222839, -0.6768444776535034, 0.3521835207939148, 0.27249693870544434, -0.28748461604118347, -0.39854225516319275, 0.36916583776474, -0.2679237723350525, 0.69136643409729, -1.1292297840118408, 0.4155234396457672, -1.1059010028839111, 0.09597937762737274, 0.5193523168563843, -0.128493994474411, -0.7238510847091675, 0.806336522102356, 0.3126673698425293, -1.0653386116027832, 0.5595940351486206, 0.5651901960372925, -0.1813708245754242, 0.18301883339881897, 0.20843729376792908, 0.23197641968727112, -0.1466244012117386, -0.36537593603134155, 0.7373675107955933, -0.2755429744720459, -0.39392000436782837, -1.25823974609375, -0.8177530765533447, 0.2620527148246765, -1.4071714878082275, -0.8602968454360962, 0.8198553323745728, 0.19931966066360474, -1.3230226039886475, 0.20271645486354828, 0.20905622839927673, 0.7298835515975952, 0.38785219192504883, 1.1090061664581299, 0.015347246080636978, 0.9782843589782715, -0.48611801862716675, 0.19469484686851501, -0.8341970443725586, -0.12776914238929749, 0.021203815937042236, -0.15392142534255981, 0.6876626014709473, 0.6857019662857056, 0.9879155158996582, 0.523138165473938, 0.33027803897857666, -0.2695412337779999, -0.09580522030591965, -0.743634819984436, -0.9756875038146973, 0.6558609008789062, 0.5546704530715942, 1.6092922687530518, 1.244211196899414, -1.1382887363433838, -0.3489014506340027, 0.08737049996852875, 0.014030897058546543, -0.13008520007133484, -0.965261697769165, -0.6907442808151245, -0.029771286994218826, 0.47681725025177, 0.06982415914535522, 0.5165396928787231, -0.7405821084976196, 0.38923096656799316, -0.5545262098312378, -0.31992965936660767, -0.35758936405181885, 0.9296452403068542, 0.23533326387405396, 0.7493892312049866, 0.07342101633548737, -1.0867817401885986, -0.3374902606010437, -0.2283416986465454, 0.44275596737861633, 0.3575090169906616, 0.7058396339416504, 0.32126957178115845, 0.570594310760498, -0.5096136331558228, 0.4568786025047302, 0.08504661917686462, 0.14761923253536224, -0.05153840035200119, 0.2023678719997406, 0.6269903182983398, 1.417919397354126, -1.1917715072631836, -0.5274581909179688, -0.6384671926498413, 0.2791985273361206, 1.333993673324585, 0.9810216426849365, 0.46684515476226807, -0.08314330875873566, -0.1030346155166626, -0.06451618671417236, -0.2510930299758911, -0.5348472595214844, -0.7866030931472778, -1.4243748188018799, -0.6501022577285767, 0.03270101919770241, -0.44466978311538696, 0.16998760402202606, 0.5195152759552002, -0.7481523752212524, 1.1875803470611572, 0.9532743096351624, -0.4841057062149048, -0.4955853223800659, 0.07299463450908661, -0.4519018530845642, -0.8535628914833069, 0.9310833215713501, 1.5763401985168457, -0.46139436960220337, 0.22004342079162598, 0.7008407115936279, 0.38417014479637146, 0.8205653429031372, -0.47232478857040405, 0.6302323341369629, -1.1569221019744873, -0.6797105073928833, -0.09611430764198303, 0.17191293835639954, -0.14709100127220154, -0.3798609972000122, 0.03933636471629143, 0.4690342843532562, 1.32081937789917, -0.33218756318092346, -0.45144838094711304, 0.9681678414344788, 0.49838417768478394, -0.7822741270065308, -0.18978653848171234, 0.672614336013794, 0.3229830861091614, -0.23699381947517395, -0.32931768894195557, 0.013562489300966263, -0.5572056770324707, -0.9618368148803711, -0.05459382385015488, 0.18678927421569824, 1.0332717895507812, -0.33594372868537903, 0.11430587619543076, 0.9512948989868164, 0.02935246005654335, 0.1258789598941803, -1.6873784065246582, 0.47524917125701904, 0.305486798286438, 1.1647677421569824, 0.38717955350875854, 0.11613982170820236, 0.16078411042690277, 0.7781387567520142, -0.03621750324964523, 0.640784740447998, 0.8403542041778564, -0.08289888501167297, 0.035608936101198196, -0.5243403315544128, 0.2971692979335785, -0.5041832327842712, -0.7005958557128906, 0.17606215178966522, -0.038316283375024796, -0.9645373225212097, -0.6196886301040649, 0.630489706993103, 0.21125632524490356, -0.10982640087604523, -0.018435951322317123, -0.14653465151786804, 0.586419403553009, -0.9555863738059998, 0.595781683921814, -0.5171827077865601, 0.4926498532295227, 0.3307231068611145, -1.262815237045288, -0.38837602734565735, -0.19619566202163696, 1.0107972621917725, 1.3119699954986572, -1.187428593635559, 0.31914904713630676, 0.13782541453838348, 0.6467831134796143, -0.1598428189754486, -0.7739081382751465, -0.23456674814224243, 0.3949398100376129, -0.13657335937023163, 0.36411434412002563, 0.32739055156707764, 1.0194475650787354, 0.001357072964310646, -0.2871938943862915, 0.2998773455619812, 0.21630620956420898, -0.47474023699760437, -0.9017860889434814, 0.3423551321029663, 0.1759520024061203, 0.10632382333278656, -0.2351217269897461, 0.8083049058914185, 0.22600005567073822, 2.0738401412963867, 0.566979706287384, 0.7682451009750366, 0.344773530960083, -0.3170296549797058, -0.8242877721786499, -0.2574670910835266, 0.2918516993522644, 0.0673433467745781, -0.7868392467498779, 0.08702222257852554, 0.8699764609336853, -0.41140955686569214, 0.9596914052963257, 0.7314316630363464, 0.9720693826675415, 0.2770710289478302, 0.290973961353302, 0.07772836089134216, 0.3622002899646759, 1.2574145793914795, 0.8203163146972656, 0.2924635410308838, -0.6352238655090332, -0.8891363739967346, 0.7330288887023926, -0.6955878138542175, 0.09469332545995712, 0.8705524206161499, 0.10459425300359726, 1.5214064121246338, -1.4979088306427002, -0.739672064781189, 0.7767030000686646, 0.3176576495170593, 0.22633659839630127, 0.6163779497146606, 0.3229759931564331, -0.04243946820497513, 0.22854822874069214, 0.26717624068260193, 0.09648352861404419, 0.09014885872602463, 0.08704829961061478, 0.12657782435417175, 0.4192253351211548, -0.4187116026878357, 0.3044333755970001, -1.0346357822418213, 0.13071030378341675, -0.19789932668209076, -0.7177135944366455, -0.058134451508522034, 0.16059517860412598, 0.27982065081596375, 1.4191645383834839, -0.1617269217967987, -0.8069910407066345, 0.1830962896347046, -1.4342031478881836, -0.17539313435554504, -0.708365797996521, -0.5452737808227539, -0.03203625977039337, -0.6665977239608765, -0.47192180156707764, 0.20423471927642822, -0.7266595363616943, -0.5769031643867493, -1.159308910369873, -1.9247463941574097, 0.09350530803203583, 0.612236499786377, 1.3257054090499878, 0.6324650049209595, -0.22883322834968567, -0.09595656394958496, -0.23794886469841003, -1.1684354543685913, -0.6264791488647461, 0.645414412021637, 0.0016769301146268845, 0.7042782306671143, -1.5124977827072144, -0.201135516166687, 0.3267916142940521, 0.33505192399024963, 0.04023576155304909, 0.4163855314254761, 1.2825403213500977, 0.7253292798995972, 0.034433845430612564, -0.6582642793655396, 0.8692241907119751, -0.5654793381690979, 0.9953036308288574, 1.0412979125976562, -0.43226340413093567, -0.5806629657745361, -1.265792727470398, -1.6781525611877441, 1.6056405305862427, -0.6680710315704346, -0.569012463092804, 1.4496889114379883, 0.027228958904743195, 0.9269911050796509, 0.38110092282295227, -0.43663156032562256, 0.5495518445968628, 0.13250361382961273, -0.40900325775146484, -0.8993582129478455, 0.7302285432815552, 0.23855219781398773, 0.3117055296897888, -0.1476394236087799, 0.5461634397506714, 0.315656453371048, -0.7303095459938049, 0.2898465096950531, 0.5392679572105408, 0.36682575941085815, 0.13720488548278809, 0.4522620737552643, -0.6320581436157227, 0.36504799127578735, -0.40788328647613525, -0.7594358921051025, -0.3238053321838379, 0.3860282003879547, -0.04819833114743233, -0.8549798727035522, 0.002002706751227379, 0.07024963200092316, -0.9994292259216309, -0.7636978626251221, -0.45668280124664307, 0.4629862904548645, 0.6204977631568909, -0.18720519542694092, 0.455337256193161, -0.3259403705596924, -0.6015511155128479, -0.6237567663192749, 0.15335756540298462, 0.39943182468414307, -1.4651094675064087, 0.49837034940719604, -0.3418777585029602, -0.017056457698345184, -0.5388978719711304, 0.03507198393344879, 0.3163996934890747, -0.4300963878631592, -1.536574363708496, -1.1035805940628052, -0.2204141914844513, 0.7952691912651062, -0.8724367618560791, 1.0554242134094238, -0.037498921155929565, -1.3704841136932373, 0.6690369844436646, -0.2294909656047821, -1.2445734739303589, -0.2902645170688629, -1.2284824848175049, 0.9355956315994263, -0.6815133094787598, 0.9114269018173218, -1.1871176958084106, 0.6830651760101318, -1.910978078842163, -1.399964690208435, -0.6987240314483643, 0.32752835750579834, 1.02095365524292, 0.5916835069656372, -0.2619273066520691, 1.3461048603057861, 0.1433366984128952, -0.47689199447631836, -0.4334391951560974, 1.1206670999526978, -0.582679271697998, 0.17712652683258057, 0.6985993385314941, 0.15456441044807434, 0.8114410638809204, 1.468146562576294, 0.12166192382574081, 1.056244969367981, -0.12854847311973572, 0.8297078609466553, -0.5322015881538391, -0.8450019359588623, -0.49688759446144104, 0.3856744170188904, -0.963426947593689, -1.018125057220459, 0.4947870373725891, -0.856026291847229, -0.5939822196960449, 0.2553229331970215, 0.1948012113571167, -0.6871310472488403, 0.4214584231376648, -0.9344967007637024, 0.49033868312835693, -1.4563539028167725, 0.30967196822166443, 0.3180631697177887, -0.5147714614868164, 0.14293240010738373, 0.18074584007263184, 0.28007882833480835, -1.0572550296783447, 0.03830663859844208, -0.07938124984502792, 0.15297016501426697, -0.44999247789382935, 0.6320367455482483, 0.7975980639457703, -0.11231998354196548, -0.3401755690574646, 1.5239183902740479, 0.34084635972976685, 0.2194969803094864, -0.03890468552708626, -0.03387145325541496, 0.04843372479081154, 0.9062348008155823, -0.31064730882644653, 0.03476331755518913, -0.4243822991847992, 0.45693719387054443, 0.3602572977542877, -0.6184442043304443, -0.3409464359283447, 0.271953821182251, -0.6197423338890076, 0.5214414596557617, 1.0989317893981934, -0.7512823939323425, 0.4688178300857544, 1.237949252128601, 0.005770988762378693, -0.9233018755912781, -0.030416913330554962, -0.041610755026340485, 0.15808874368667603, -0.04281926527619362, 0.6075693368911743, -0.02620645985007286, -0.671502947807312, 0.8290446996688843, 0.23315918445587158, 0.2487977147102356, -0.4493665099143982, -0.6391634345054626, -1.0734868049621582, -0.08204531669616699, -0.624077320098877, -0.3801986575126648, -0.03586236387491226, -1.3748085498809814, -0.8736851811408997, 0.625266432762146, -0.2507248818874359, -0.821709394454956, -0.302848219871521, -0.08583180606365204, 0.15597671270370483, -0.8977868556976318, 0.5252677202224731, -0.37437814474105835, 1.4943649768829346, -0.5224226117134094, 0.5009883642196655, -0.5495144724845886, -0.837185800075531, 0.3475857675075531, 0.007324423640966415, 0.1249961405992508, -0.6041128635406494, 0.842018723487854, -0.16444501280784607, -1.0932499170303345, 0.24394343793392181, 0.32918792963027954, 0.20557983219623566, -0.2697470784187317, -0.8164729475975037, 0.5914434194564819, 1.0032851696014404, 1.0767183303833008, -0.26094481348991394, -0.729267418384552, -0.9547756910324097, 0.21561096608638763, -0.5066214203834534, -0.20405380427837372, -0.1496242880821228, 0.7712264657020569, 0.6689096689224243, -0.6553847789764404, -0.12847906351089478, -0.644750714302063, 0.2800789475440979, 0.012013977393507957, 0.02515430748462677, 0.43246304988861084, 0.12292028218507767, 0.09404794126749039, -0.6869672536849976, 0.517485499382019, -0.050695717334747314, 0.5509754419326782, 0.46333909034729004, -1.010595679283142, -0.5198697447776794, -0.625787079334259, 0.5590546131134033, 0.609839677810669, 0.16117654740810394, 0.11798065155744553, 0.14563605189323425, -0.9987318515777588, 0.5652668476104736, -0.0965777337551117, 0.521390438079834, 0.2633535861968994, 1.5458183288574219, 1.4232003688812256, 0.18766050040721893, 0.4196382761001587, 0.018284745514392853, 0.3095884323120117, -0.7891354560852051, -0.964638352394104, -0.20298975706100464, -0.9614390134811401, -0.3998301029205322], [-0.42430561780929565, 1.1833375692367554, -2.195466995239258, -0.08735952526330948, 0.9904394149780273, 0.36652275919914246, 0.895491361618042, -0.3484276831150055, -0.4887683093547821, -0.011012822389602661, -0.2465776801109314, 0.1935303509235382, 0.015090463683009148, 0.7481530904769897, 0.2569211423397064, 0.6413141489028931, 1.1831660270690918, -0.3359358310699463, -0.20073175430297852, 0.8595643043518066, -0.6811164617538452, -0.8382053375244141, 0.5797301530838013, -0.00600458076223731, -0.1246517226099968, 0.6934462785720825, -1.2154631614685059, -0.3405270576477051, -0.8631942272186279, -1.3398172855377197, 1.0158929824829102, 0.11036507785320282, -0.11864741891622543, -0.45798754692077637, 0.0891033485531807, 0.062792107462883, 1.1384116411209106, 1.3035645484924316, 1.456313967704773, 1.1934049129486084, 1.3837177753448486, -0.2854783833026886, -0.00700155645608902, -1.4641737937927246, 0.28302568197250366, -0.3715716600418091, 0.755638837814331, -1.0979437828063965, 0.6061089634895325, 0.19565904140472412, -0.46043896675109863, -0.7903335690498352, 0.2554885149002075, 1.0364490747451782, 0.5082446336746216, -0.7706902623176575, -0.09610167890787125, 1.0374822616577148, 0.6103944182395935, -0.5894902348518372, 1.0296188592910767, 0.4947793483734131, -0.6791818141937256, 0.9458605051040649, 0.49673861265182495, -0.3387364447116852, 0.1496870219707489, 0.2235039919614792, -1.1780474185943604, 0.3381859064102173, -0.5909127593040466, 0.20629946887493134, -0.6140727996826172, 1.0321091413497925, -1.2721498012542725, 0.8702845573425293, 0.7325739860534668, 0.022614529356360435, 0.7055443525314331, 0.27596843242645264, 0.18773746490478516, 0.04624927043914795, 0.7034039497375488, -0.14008817076683044, 0.5111569762229919, -0.01630115509033203, -0.10567120462656021, 0.10557613521814346, -0.8570481538772583, 2.256864547729492, 0.5545321702957153, -0.09893566370010376, 0.2068183422088623, -0.3381357789039612, -0.6219905614852905, -0.8827640414237976, 0.3920290470123291, -0.24605776369571686, -1.198992133140564, -1.0260844230651855, -0.201456218957901, -0.6444965600967407, 0.7711462378501892, 0.373440146446228, -0.20798027515411377, 1.7514699697494507, 0.1282559633255005, -0.23387278616428375, 0.14372655749320984, 0.1518373340368271, -0.4071657061576843, 0.010334774851799011, -0.9165239334106445, -0.38213592767715454, -0.6243664026260376, 1.6063898801803589, 1.1017498970031738, -0.6841322779655457, 0.3080090880393982, 1.1325316429138184, -0.25236377120018005, -0.20039111375808716, -0.907783567905426, 0.3727976083755493, 0.4895060956478119, 0.634925365447998, -0.982553243637085, -0.6045399308204651, -0.301118403673172, -0.17815937101840973, 0.3673887252807617, -0.47025978565216064, -1.1730990409851074, 0.9801595211029053, -1.1127915382385254, 1.324864149093628, -0.5626028776168823, -0.7538999319076538, -0.027901187539100647, -0.018066853284835815, 0.21607756614685059, -0.22052109241485596, -0.9356245994567871, -0.4333495497703552, -0.05914244428277016, -0.8488717079162598, -0.07413601875305176, -0.1029273122549057, -0.9403908252716064, 1.15996253490448, -0.4138079285621643, 0.49016326665878296, -0.11054983735084534, 0.7570042610168457, -0.2960030436515808, -0.2713340222835541, 0.06852942705154419, 0.16342070698738098, 0.725450873374939, 0.4875722825527191, 1.3333427906036377, -0.5033118724822998, -0.6996220350265503, 0.42668649554252625, 0.8544092178344727, -0.4074275493621826, 0.9511477947235107, 0.8417251110076904, -0.06311997026205063, 1.333159327507019, -0.6106855869293213, -0.3502006530761719, -0.641768753528595, 0.7599472999572754, -0.30295610427856445, -0.4040917158126831, 0.38777217268943787, -1.3634562492370605e-06, -1.3302483558654785, -0.9668237566947937, 0.10413005948066711, -0.7029073238372803, 0.38514405488967896, -1.0664501190185547, 0.44616150856018066, -0.25112664699554443, 0.038171205669641495, 0.05868055671453476, -0.40689337253570557, -0.5696413516998291, -0.3876764178276062, -0.40997785329818726, -0.10834801197052002, -0.10674425214529037, -0.3541122078895569, -0.24224671721458435, 0.03782742843031883, -1.5875563621520996, -0.9377146363258362, 0.05933460593223572, -1.0581283569335938, -0.5308874845504761, -0.6294165849685669, 0.8091809153556824, -0.11732640117406845, 1.0207231044769287, -1.1555871963500977, 0.874840497970581, -0.9436283111572266, -0.0674925297498703, 0.6250286102294922, 0.24612295627593994, -0.9137070775032043, 1.1109957695007324, 0.4027171730995178, -1.1522228717803955, -0.09748557209968567, 0.0290142260491848, -0.3899335265159607, 0.5844498872756958, -0.33675435185432434, 0.10443182289600372, 0.4329637885093689, 0.2432878613471985, 0.23615561425685883, -0.3419334590435028, -0.7761543393135071, -0.3689675033092499, -1.0918235778808594, -0.07712913304567337, -0.6469867825508118, -0.9226428270339966, 0.5560171604156494, 0.03194276615977287, -1.2066209316253662, 0.4308922588825226, -0.13101597130298615, 0.2111765742301941, 0.22937999665737152, 1.5896129608154297, 0.6565638780593872, -0.03825107216835022, -0.3838595151901245, -0.4960830807685852, -0.43477916717529297, 0.6835610866546631, 0.6343655586242676, -0.5623940229415894, 0.7228517532348633, 1.4555637836456299, 1.6102728843688965, -0.5326065421104431, 0.4422065019607544, 0.12346201390028, -0.08284397423267365, -0.9261095523834229, -0.268717885017395, 0.24017712473869324, -0.40842193365097046, 1.3873169422149658, 0.7119286060333252, -1.5255179405212402, -0.07414200901985168, 0.4800112247467041, 0.2878335118293762, 0.1049642264842987, -0.5675252676010132, -0.06061045080423355, -0.2354689985513687, 0.44799795746803284, -0.014457110315561295, 1.001021146774292, -0.9023944139480591, 0.6621562838554382, -0.5237915515899658, 0.079282246530056, -0.292888879776001, 0.7059728503227234, -0.4827243685722351, 0.8781380653381348, 0.13448083400726318, -1.387353539466858, -0.8377645611763, 0.2011907547712326, 0.52467942237854, 0.3448772728443146, -0.1837463527917862, 0.3856339752674103, 1.0235365629196167, -0.5537260174751282, 0.6419241428375244, -0.3839852213859558, 0.33553192019462585, -0.47839999198913574, 0.07491417974233627, 0.7616885900497437, 1.8187615871429443, -1.3655929565429688, -1.4700266122817993, 0.3670666217803955, 0.33653706312179565, 1.904616117477417, 0.33192145824432373, 1.0407497882843018, -0.062290482223033905, 0.051971130073070526, -1.2618485689163208, -0.08195970207452774, -1.174891710281372, -0.27484428882598877, -0.6260868906974792, -0.5813232660293579, 0.04232229292392731, -0.38903898000717163, 0.687006950378418, 0.3414851427078247, 0.06724981218576431, 0.4740895628929138, 1.0526230335235596, -0.06032564863562584, -0.7315256595611572, 0.0903894305229187, 0.5645098090171814, -1.3786768913269043, 0.7793101072311401, 2.032371997833252, -0.7617164850234985, -0.9048006534576416, -0.15595927834510803, 0.06816472113132477, 0.08288457989692688, 0.19415226578712463, 0.8895256519317627, -1.4515800476074219, -0.5766205191612244, 0.14875905215740204, 1.5442099571228027, -0.2862434387207031, -0.2299588918685913, -0.3367573916912079, -0.038080599159002304, 0.41938385367393494, -0.3503349721431732, -0.7115198373794556, 0.6879431009292603, -0.7141560316085815, -0.4330306053161621, -0.28876861929893494, 0.4913201332092285, 1.02895188331604, -0.1763637661933899, -0.3325394093990326, -0.43007856607437134, -0.47102150321006775, -0.6876458525657654, -0.7369289994239807, -0.27472081780433655, 1.3758249282836914, -0.8107193112373352, 0.4584662914276123, 1.1451349258422852, -0.035367004573345184, -0.5794233083724976, -1.9067190885543823, 0.3710970878601074, 0.7087559700012207, 1.850305438041687, 0.6116095185279846, 0.7219244241714478, 0.25801146030426025, 0.7487248778343201, -0.05739571899175644, 0.24036654829978943, 1.1326290369033813, 0.4110287129878998, -0.670403003692627, -0.7868912220001221, -0.271492063999176, -0.4502875506877899, -0.6666887998580933, -0.6091746091842651, 0.49886250495910645, -0.6315670013427734, -1.2587705850601196, 1.0157712697982788, 0.9364544153213501, 0.09456943720579147, -0.33934861421585083, 0.6106716394424438, 0.18569064140319824, -0.9784277677536011, -0.26881861686706543, -0.3510898947715759, 0.14714501798152924, -0.1733127236366272, -2.015437126159668, -0.2786697745323181, 0.3462054431438446, 0.43478405475616455, 0.9707047939300537, -1.0811580419540405, -0.3906571567058563, -0.624342679977417, -0.2812122702598572, 0.25949573516845703, -1.5271790027618408, -0.14310257136821747, 0.22048208117485046, -0.4332444667816162, 0.5898149013519287, -0.18204331398010254, 1.2405413389205933, 0.41859298944473267, 0.1262533962726593, 0.3529634475708008, 0.3289440870285034, -0.8413049578666687, -0.22334058582782745, -1.0235366821289062, 0.4585607051849365, -0.1535496711730957, -0.07530191540718079, 0.09188102185726166, 0.5000743269920349, 1.5468478202819824, 1.0874682664871216, 1.1247105598449707, 0.5327137112617493, 0.32868853211402893, -0.6492970585823059, -0.14475654065608978, 0.4147574305534363, -0.4534399211406708, -0.6907660961151123, 0.22683896124362946, -0.04718070477247238, -0.2760658264160156, 0.7392799854278564, -0.4179367125034332, 0.9311199188232422, 0.31127727031707764, 0.0725097805261612, 0.010361762717366219, 0.67985999584198, 0.8879441022872925, 1.6178278923034668, 0.5191349983215332, -0.07786881923675537, -0.6970500946044922, 0.9485052824020386, -0.8850668668746948, -0.09820082038640976, 0.6826165914535522, 0.3766230344772339, 1.3384857177734375, -1.0893189907073975, -0.21126997470855713, 0.2566080391407013, 0.1677442491054535, 0.28834569454193115, 0.10433642566204071, 0.009750217199325562, 0.37570667266845703, 0.21039779484272003, 0.5058672428131104, -0.037478622049093246, 0.016871120780706406, -0.18774712085723877, -0.30011072754859924, -0.11918294429779053, -0.4213849902153015, 1.1850430965423584, -0.3949018120765686, 0.09663466364145279, 0.2421785295009613, -0.6725101470947266, 0.10379067063331604, 0.3035896420478821, 0.8562878370285034, 1.3613173961639404, 0.12449214607477188, -1.0445928573608398, 0.6088327169418335, -0.6569184064865112, 0.34743767976760864, -0.42634040117263794, -0.7591354250907898, 0.08216439187526703, -0.6374835968017578, -0.09123776853084564, 0.2081497609615326, -0.3047417998313904, -0.2066546380519867, -0.49670323729515076, -1.4170140027999878, 0.45357903838157654, 0.40019410848617554, 1.0302571058273315, 1.1955723762512207, 0.11705069243907928, 0.22806614637374878, 0.4722675085067749, -1.193537950515747, -0.5888155102729797, -0.08241880685091019, 0.22790414094924927, -0.01907455176115036, -0.83404541015625, 0.18537645041942596, 0.4538921117782593, 0.07003171741962433, -0.17661839723587036, 0.6812862157821655, 1.2527482509613037, 0.8870381116867065, -0.4236956834793091, -0.8285678625106812, 0.15808388590812683, -0.7762551307678223, 1.0132269859313965, 0.5422896146774292, -0.28823623061180115, -0.5884639024734497, -1.1054153442382812, -2.043488025665283, 1.201737642288208, -0.6915179491043091, -0.3343885540962219, 1.406162977218628, 0.515641450881958, 0.5422229170799255, 0.4535812735557556, -1.0089174509048462, 0.68921959400177, 0.39311519265174866, -1.1095010042190552, -1.3071765899658203, 0.3189733624458313, -0.10561871528625488, 0.5103206634521484, 0.2693851590156555, -0.3882785439491272, 0.38075926899909973, -0.7618991732597351, -0.23292876780033112, 0.3032597005367279, 0.3384782075881958, 0.3146821856498718, 0.6461002826690674, -0.2088429182767868, 0.24939090013504028, -0.4283831715583801, 0.19108784198760986, -0.30010178685188293, 1.1180095672607422, 0.032265570014715195, -0.014526985585689545, -0.546135663986206, -0.3500428795814514, -0.14119543135166168, -0.4742971658706665, -0.3871162533760071, 1.311095118522644, 0.16934435069561005, -0.34528031945228577, -0.4554474949836731, -0.2076491415500641, -0.5453819632530212, 0.2898314595222473, -0.1912202537059784, 0.04728225991129875, -1.8304487466812134, -0.20826120674610138, -0.43597158789634705, -0.29535987973213196, -0.3698936998844147, -0.28454864025115967, 0.22056806087493896, -0.7002118229866028, -1.244340419769287, -0.09237242490053177, 0.3306863009929657, 0.559134840965271, -0.9317737221717834, 1.0952470302581787, 0.41238322854042053, -0.8191007375717163, 0.6062806248664856, 0.719463050365448, -1.5289833545684814, 0.040045365691185, -1.3310297727584839, 1.1048181056976318, 0.2156212031841278, -0.05967137962579727, -0.7110421657562256, 0.8223413228988647, -1.0606318712234497, -1.078346848487854, -0.3062732219696045, 0.33365634083747864, 1.0067278146743774, 0.439696729183197, -0.09457069635391235, 1.2588584423065186, 0.3662620782852173, -0.6269579529762268, -0.38101616501808167, -0.015333814546465874, -0.3372713625431061, 0.17242266237735748, 1.0887221097946167, 0.06462359428405762, 0.6532213091850281, 1.603686809539795, 0.10741321742534637, 1.1234376430511475, -0.061019595712423325, 1.0259687900543213, -1.0149763822555542, -0.9443564414978027, -0.2055911421775818, 0.10706211626529694, -1.1833441257476807, -1.6258361339569092, 0.09898993372917175, -1.5539677143096924, -0.8593290448188782, 0.6456765532493591, 0.17940989136695862, 0.30346882343292236, 0.3844525218009949, 0.10918701440095901, 0.25227615237236023, -0.9417999982833862, 1.1101282835006714, 0.8793874979019165, -1.4227310419082642, -0.10646427422761917, 0.15975841879844666, -0.25594550371170044, -1.339940071105957, 0.786737322807312, -0.21294981241226196, 0.3283204436302185, -0.6483688354492188, 0.42847561836242676, 0.9336274266242981, -0.1522475779056549, -0.663437008857727, 1.1315298080444336, 0.5715322494506836, -0.33165597915649414, 0.2194845825433731, 0.38236474990844727, -0.3409079909324646, 0.6334140300750732, -0.2646600604057312, -0.6434909105300903, -0.22896167635917664, 0.7701607346534729, 0.01323017105460167, 0.6481894850730896, -0.47130852937698364, 0.38307106494903564, -0.11167973279953003, 0.36308205127716064, 1.045184850692749, -0.546755313873291, -0.033215876668691635, 1.3482117652893066, 0.2517472505569458, -0.041698113083839417, 0.42589399218559265, 0.6974309682846069, 0.7357556223869324, -0.5917104482650757, 0.6077675819396973, 0.6155821084976196, -0.35093897581100464, 0.30470937490463257, 0.15028856694698334, -0.3467271327972412, -0.2874927818775177, -0.7196800112724304, -0.6804438829421997, 0.017957324162125587, -0.5207970142364502, 0.4348886013031006, 0.8525981903076172, -1.6317987442016602, -0.9380795955657959, -0.36802202463150024, -0.32445991039276123, -0.20086213946342468, -0.3892856240272522, 0.03317822515964508, -0.2112087905406952, -0.3164866864681244, 0.9584181904792786, -0.11171678453683853, 0.6297770738601685, -0.4448956251144409, -0.16777442395687103, -0.513540506362915, 0.18485495448112488, -0.35364240407943726, 0.35466694831848145, 0.14930155873298645, 0.22433044016361237, 0.1540733128786087, -0.6421599388122559, -0.6554324626922607, -0.01302666962146759, 0.05891703814268112, 0.2928386330604553, -0.6020129919052124, -0.4610808789730072, 0.32508301734924316, 0.5931989550590515, 0.9959299564361572, -0.4230450689792633, -0.5403238534927368, -0.6752829551696777, -0.08693718910217285, -0.2518467903137207, 0.6841815114021301, -0.6610672473907471, 0.6483622789382935, 0.3034926652908325, -0.8175866603851318, 0.0344831757247448, -0.6126177310943604, 0.24209609627723694, -0.6166394352912903, -0.2708773910999298, 0.17172542214393616, -0.023512132465839386, -0.45130255818367004, -0.8864777088165283, 0.7090569734573364, 0.18859268724918365, -0.5269696712493896, 0.6173425912857056, -1.111191987991333, 0.11598417907953262, -0.636724591255188, -0.28603148460388184, 0.5999888777732849, 0.18303537368774414, -0.41315144300460815, 0.5528494119644165, -1.2621428966522217, 0.09800834208726883, 0.08789452910423279, -0.3089827597141266, 0.6255312561988831, 0.781814455986023, 1.3392279148101807, 0.07015371322631836, -0.12530454993247986, -0.37178558111190796, 0.43021658062934875, -0.3294173777103424, -0.022885825484991074, -0.52693110704422, -1.113884687423706, -0.42103490233421326], [0.18407392501831055, 1.26722252368927, -2.6662914752960205, -0.9767277240753174, 1.2160063982009888, 0.3692457377910614, 0.9858258366584778, -0.3725847005844116, -0.4212285876274109, -0.3853677213191986, -0.2273804247379303, -0.2615812122821808, -0.7339398264884949, 0.105415940284729, 0.5496028065681458, 0.599166750907898, 0.5340068936347961, -0.9845587611198425, 0.5865444540977478, 0.625200092792511, -0.6744412183761597, -0.029508717358112335, 0.050192199647426605, -0.30733299255371094, -0.1005953997373581, 1.338531255722046, -1.5654902458190918, -0.10718882828950882, -0.927474319934845, -1.3147542476654053, 1.2088366746902466, 0.09476157277822495, 0.3805773854255676, -0.7510393857955933, -0.8224166631698608, 0.2570919692516327, 1.537324070930481, 1.3686779737472534, 0.41538679599761963, 0.4940391182899475, 2.039337158203125, 0.053568802773952484, -0.23732051253318787, -2.048706293106079, 0.6129634976387024, 0.03157249465584755, 0.8813303112983704, -0.12572215497493744, 0.45698487758636475, -0.08950967341661453, -0.3373386561870575, -0.7420176863670349, -0.3801184296607971, 1.6998546123504639, 1.4967913627624512, -0.14848364889621735, 0.18523547053337097, 0.5047746300697327, 0.5341803431510925, -0.9237604737281799, 1.0513478517532349, -0.5071338415145874, -0.8280627727508545, 0.772148072719574, 0.3627175986766815, 0.21374402940273285, 0.3603516221046448, 0.8174236416816711, -0.39184901118278503, -0.30336642265319824, -0.5960049033164978, -0.18052972853183746, -0.3182758092880249, 1.0097894668579102, -1.5987255573272705, 1.1289286613464355, 0.1273149996995926, 1.0056037902832031, 0.543337345123291, 0.42875781655311584, -0.043320104479789734, 0.07728633284568787, 1.0851877927780151, 0.0037676626816391945, 0.27128803730010986, 0.5356507897377014, 0.6212236285209656, -0.5811701416969299, -0.11218279600143433, 2.4885590076446533, 0.5299993753433228, -0.07361334562301636, 0.3632984161376953, -0.011192655190825462, -0.14094389975070953, 0.03099650703370571, 0.4142625629901886, -0.8716403841972351, -1.4083325862884521, -0.6689812541007996, -0.1314084529876709, -0.004786693025380373, 0.49556484818458557, 0.049792829900979996, 0.05660117045044899, 1.5546835660934448, 0.10206285119056702, 0.20368535816669464, -0.30090928077697754, -0.03502732142806053, -0.2277863621711731, 0.04813322797417641, -0.21897798776626587, -0.6043850779533386, -0.5800132751464844, 1.0894896984100342, 1.4155224561691284, -0.6695379614830017, 0.3522253930568695, 1.1303869485855103, -0.6882761716842651, 0.27671006321907043, -0.46732887625694275, 0.4935161769390106, 0.7160640954971313, 0.9925897121429443, -0.5885071158409119, -0.14823317527770996, 0.3533453047275543, 0.4766576290130615, 0.30571600794792175, -0.42475253343582153, -0.6481295228004456, 0.3929237723350525, -1.4633522033691406, 1.882591724395752, -0.4107925295829773, 0.001378979068249464, 0.3619195520877838, 0.0742565393447876, 0.200395405292511, 0.11226129531860352, -0.19066956639289856, -0.4362572431564331, -0.10280030220746994, -0.8176473379135132, 0.05492813512682915, -0.34438955783843994, -0.5041549205780029, 0.9355728626251221, -0.714083731174469, 0.3444412648677826, -0.5530860424041748, 0.5843347907066345, -0.0025632299948483706, -0.3234732449054718, 0.23157605528831482, 0.4139557480812073, 0.7471538186073303, -0.14865829050540924, 0.5501981377601624, -0.6311013102531433, -1.6534897089004517, 0.21461300551891327, 1.2476904392242432, -0.007173243444412947, 0.4752694368362427, 0.59925776720047, -0.11597426980733871, 1.6688871383666992, -0.3172784149646759, -0.9687080979347229, -0.2209712713956833, -0.02369249239563942, 0.43125084042549133, 0.07313129305839539, 1.2276015281677246, -0.6046430468559265, -1.3178330659866333, -1.304828405380249, 0.07998073101043701, -0.024587033316493034, 0.6758034825325012, -0.6302006244659424, 0.47264498472213745, 0.24239349365234375, -0.07721635699272156, -0.8157661557197571, -0.07295747846364975, -0.3848377764225006, -0.6700282096862793, -0.5225957036018372, -0.17374999821186066, -0.16540494561195374, -0.12894757091999054, -0.5876173377037048, 0.2602294981479645, -1.5572173595428467, -0.7096119523048401, -0.1982937902212143, -0.5912799835205078, -0.8635318875312805, -0.19525665044784546, 0.7997401356697083, 0.010054444894194603, 1.259840726852417, -1.5208879709243774, 0.6030554175376892, -0.6167896389961243, -0.37718772888183594, 0.8669596314430237, 0.17872489988803864, -0.6701911687850952, 0.8379383087158203, 0.3203117251396179, -0.8936256766319275, 0.18545827269554138, 0.9350965619087219, -0.5339345932006836, 0.34825992584228516, -0.18240903317928314, -0.012908541597425938, 0.8083807826042175, 0.20271611213684082, 0.7695855498313904, -0.41357704997062683, -0.44271188974380493, -0.7378125786781311, -1.1876386404037476, -0.0022382885217666626, -1.3255549669265747, -1.3872042894363403, 0.25114965438842773, 0.20447152853012085, -1.4371682405471802, 0.145597442984581, -0.024674173444509506, -0.23927119374275208, 0.35490846633911133, 1.5492045879364014, 0.6854380369186401, 0.42641037702560425, -0.24193274974822998, -0.11784136295318604, -1.073848843574524, 0.9057081341743469, 0.49629077315330505, -0.9018567204475403, 0.4543108642101288, 1.009028434753418, 0.9502533674240112, -0.858817994594574, 0.7872588634490967, -0.7043554186820984, 0.10182654112577438, -0.45058679580688477, -0.03698255121707916, 1.0460612773895264, -0.06324601173400879, 1.6345163583755493, 0.97477787733078, -1.4881565570831299, 0.3738357126712799, 0.3645017147064209, -0.46624237298965454, -0.3886171579360962, -0.8336765170097351, 0.518496572971344, -0.08520632237195969, -0.276357501745224, 0.33699166774749756, 0.5997973680496216, -0.3559247553348541, 0.3327036201953888, -0.01287986058741808, 0.45889875292778015, -0.9410356879234314, 0.24709804356098175, 0.014533044770359993, 0.7262431979179382, 0.03606726974248886, -0.8738209009170532, -0.6208781003952026, -0.061120130121707916, 0.11030931770801544, 0.6621071100234985, 0.3844853639602661, 0.9614057540893555, 1.4182971715927124, 0.21275366842746735, 0.39126119017601013, -0.3794480562210083, 0.2715643644332886, -0.3269788324832916, 0.6021040081977844, 0.07182060927152634, 1.7994827032089233, -1.3674652576446533, -0.8069519400596619, -0.38820475339889526, -0.09550126641988754, 2.0159850120544434, 0.6364870071411133, 0.5330287218093872, 0.3659881353378296, 0.2621460258960724, -0.2343384474515915, -0.3468073308467865, -0.6783314347267151, -0.30866801738739014, -0.23511776328086853, -0.49037042260169983, 0.03478575497865677, -0.3280356228351593, -0.015585158951580524, 0.08522281795740128, -0.065209299325943, 0.6732789278030396, 0.42382919788360596, -0.1531641036272049, -0.47263821959495544, 0.16842229664325714, 0.08618257939815521, -1.8055639266967773, 0.3916727304458618, 1.1956897974014282, -0.7888323068618774, -0.7645707130432129, -0.22929862141609192, 0.29145434498786926, 0.08782954514026642, -0.5211758613586426, 0.5146973729133606, -1.1975053548812866, -0.794784426689148, -0.5316078066825867, 0.9730936288833618, -0.5969937443733215, 0.3785543143749237, -0.20960868895053864, -0.05180537700653076, 0.9008020162582397, 0.6104069948196411, -0.44692760705947876, 0.8964769244194031, 0.036976877599954605, -0.8223035931587219, 0.22153013944625854, 0.5943332314491272, 0.682759165763855, -0.13500840961933136, -0.16589947044849396, -0.39152562618255615, -0.2495800405740738, -0.6226873993873596, -0.26816728711128235, 0.3142395615577698, 1.0277379751205444, -0.39313462376594543, -0.12747900187969208, 1.4060378074645996, 0.014495160430669785, 0.31926119327545166, -1.8165571689605713, 0.4026702642440796, 0.5381888151168823, 1.5828882455825806, 0.9263046383857727, 0.4155120253562927, 0.303840696811676, 0.1939486414194107, -0.14326587319374084, -0.2776264548301697, 1.6474980115890503, 0.2504466474056244, -0.8286935687065125, -0.5415771007537842, -0.5441311001777649, -0.3476007282733917, -0.575055718421936, -0.5513842701911926, 0.1694037765264511, -1.0432490110397339, -1.5340023040771484, 1.2794506549835205, 0.5690409541130066, 0.0832652822136879, -0.8488197922706604, -0.7755690813064575, 0.5055524706840515, -0.7267130613327026, -0.29704567790031433, -1.1431560516357422, 0.35285696387290955, 0.23651978373527527, -1.155092716217041, -0.4715003967285156, 0.22618958353996277, 0.9795958995819092, 1.322520136833191, -1.4681679010391235, -0.612505316734314, -0.5501531362533569, 0.09495364129543304, 0.03810932859778404, -0.43824025988578796, 0.22152179479599, 0.7615780234336853, -0.4836289882659912, 0.8497808575630188, 0.08846618235111237, 1.0453312397003174, -0.11088388413190842, -0.32495349645614624, 0.22293762862682343, 0.4185529351234436, -0.4075019955635071, -0.5147519707679749, -0.5982611179351807, 0.713408350944519, -0.1152246817946434, -0.06335096806287766, 0.23305051028728485, 0.14233970642089844, 1.5143139362335205, 0.7136829495429993, 0.4439774751663208, 0.3928728699684143, 0.25032806396484375, -1.2570265531539917, 0.0316946804523468, 0.5191418528556824, -0.28643032908439636, -0.2415507733821869, -0.2271047979593277, -0.4160403907299042, -0.2732894718647003, 0.37491482496261597, -0.7628475427627563, 1.3653451204299927, 0.17854702472686768, 0.006182601675391197, 0.0422762893140316, 0.602648913860321, 1.1803349256515503, 1.1887733936309814, 0.41554713249206543, -0.5592280626296997, -0.7189472317695618, -0.1723961979150772, -0.26512226462364197, 0.14203068614006042, 0.3813348710536957, -0.30201879143714905, 1.025472640991211, -1.6961086988449097, 0.20027028024196625, 0.4771488606929779, 0.10338151454925537, 0.18013711273670197, -0.28659573197364807, 0.4104136824607849, -0.029469087719917297, 0.6675992608070374, 0.287507563829422, 0.07360652834177017, -0.13401377201080322, 0.06606787443161011, -0.2899218499660492, 0.176791250705719, -0.6263275742530823, 1.2516095638275146, -0.5256202816963196, -0.2640724182128906, 0.21184436976909637, -1.2793540954589844, 0.1830570101737976, 0.7071049213409424, 0.9706894159317017, 1.3488173484802246, 0.3894610106945038, -1.1485439538955688, 0.8479259014129639, -0.720034658908844, 0.03487560898065567, -0.5016496181488037, -0.26978757977485657, -0.12417759001255035, -0.3267323970794678, 0.1599278301000595, 0.7386837005615234, -0.3326091170310974, -0.1805192232131958, 0.06840314716100693, -1.5907083749771118, 0.27474674582481384, 0.5363746881484985, 0.5892223119735718, 0.8523790836334229, 0.04183525592088699, -0.12926717102527618, 1.041846752166748, -0.455009788274765, -0.74046790599823, 0.05571465194225311, 0.5783762335777283, -0.2961049973964691, -1.3299453258514404, -0.736954927444458, 0.1984335035085678, 0.09892227500677109, -0.2162148803472519, 0.04670379310846329, 1.527411937713623, 1.1782991886138916, -0.25874367356300354, -0.07710974663496017, -0.16900549829006195, -0.5961350202560425, 0.8955079317092896, 0.5123060941696167, 0.6437288522720337, -0.39715486764907837, -1.5194388628005981, -2.2110142707824707, 0.6774353981018066, -0.6063032150268555, -0.0416274294257164, 0.6715172529220581, 0.7867096066474915, 1.3861252069473267, 0.09485253691673279, -1.0426632165908813, 0.24770815670490265, 0.7325993180274963, -0.2751920223236084, -0.9327558875083923, 0.48080939054489136, -0.01690475083887577, 0.6184073686599731, -0.7316020727157593, -0.18713152408599854, -0.08576533943414688, 0.016074376180768013, 0.4528372585773468, 0.4719150960445404, -0.44106021523475647, 0.3157843053340912, 0.807640552520752, 0.10785640776157379, 0.5190345048904419, -0.6432368159294128, -0.08122310042381287, -0.8446717858314514, 1.0288712978363037, 0.10288204997777939, 0.00021517230197787285, 0.22486598789691925, -0.0782739520072937, -0.6648705005645752, -0.6630960702896118, -0.34836623072624207, 1.26152503490448, -0.2272249013185501, -0.5174317955970764, -0.39263850450515747, -0.9918623566627502, -0.002789356978610158, -0.5628305077552795, 0.2844170033931732, -0.4449618458747864, -1.423983097076416, -0.22380386292934418, -0.07023362070322037, -0.5452870726585388, -0.35389426350593567, -0.6436106562614441, 0.34376397728919983, -0.9064601063728333, -1.15791916847229, 0.26816898584365845, 0.3830767869949341, 1.1186459064483643, 0.0014967545866966248, 0.8004730343818665, 0.5652086138725281, -1.625528335571289, 0.6957109570503235, 0.4711550176143646, -1.2624257802963257, -0.03909055143594742, -0.6893270015716553, 1.1480343341827393, -0.47967392206192017, 0.0910593569278717, -0.30751359462738037, 0.7486482858657837, -1.5294437408447266, -1.8936247825622559, -0.8667386770248413, 0.22466669976711273, 0.9551282525062561, 0.6463049054145813, -0.7599438428878784, 1.0962135791778564, 0.26966410875320435, -0.8856765031814575, -0.7020295262336731, -0.8705567121505737, -0.15764999389648438, 0.13549090921878815, 0.8190945982933044, 0.41079750657081604, 0.8169179558753967, 1.1326736211776733, 0.09563697874546051, 1.521089792251587, 0.400686651468277, 0.5203474760055542, -0.5493903160095215, -0.4377179443836212, -0.3123520016670227, 0.58241206407547, -1.2151460647583008, -1.1611652374267578, -0.008483370766043663, -0.43730980157852173, -0.9957014918327332, 0.4857148826122284, 0.25207242369651794, 0.07644850760698318, 0.13042226433753967, -0.588222086429596, 0.05055269971489906, -0.7751383185386658, 0.2880709767341614, -0.16273732483386993, -1.4621917009353638, -0.005864813923835754, 0.08840711414813995, 0.13703452050685883, -1.226780891418457, 0.6140032410621643, -0.16465747356414795, -0.44205471873283386, -1.2306201457977295, 1.366086483001709, 0.9443626999855042, -0.0988292247056961, -0.1507977694272995, 1.3759655952453613, 1.0359761714935303, -0.07851165533065796, -0.12437006086111069, 0.30405178666114807, -0.8632463216781616, 0.8617518544197083, 0.12810593843460083, -0.6990877985954285, -0.37858232855796814, 1.3884174823760986, 0.17411933839321136, -0.07935058325529099, -0.20057375729084015, -0.6225668787956238, -0.39126038551330566, 0.3844643235206604, 0.3852897882461548, -1.432277798652649, -0.6545781493186951, 1.4629067182540894, 0.4856078028678894, -0.33772343397140503, 0.3860366642475128, 1.0542997121810913, 0.5643793344497681, -0.4136965274810791, -0.011758329346776009, 0.6602460145950317, -0.3121882677078247, 0.06483162939548492, -0.1977582424879074, -0.033814553171396255, -0.08324169367551804, -1.0069465637207031, -0.8877789974212646, 0.31699132919311523, -0.9317486882209778, -0.12474849820137024, 0.14946024119853973, -1.1424962282180786, -1.2186263799667358, 0.07316911965608597, -0.3914280831813812, -0.42504021525382996, -0.8501343131065369, 0.05916692689061165, 0.1850602924823761, -0.057472798973321915, 0.33907952904701233, -0.18923749029636383, 0.7983226776123047, -0.18786951899528503, -0.6245427131652832, -0.3299678564071655, 0.13731028139591217, -0.17194819450378418, 0.16693420708179474, 0.35173317790031433, -0.6571822762489319, 0.8065811395645142, -0.269024521112442, -0.9310128688812256, 0.013600151985883713, 0.4694589376449585, -0.38312044739723206, -0.6017136573791504, -0.9294744729995728, 0.986387312412262, 0.30511417984962463, 0.44228285551071167, -0.056701794266700745, -0.4877346456050873, -0.6290513277053833, 0.0063573699444532394, -0.48875975608825684, 0.9384445548057556, -0.7901186943054199, 0.8265995979309082, 0.4317134916782379, -0.8596047759056091, -0.11910657584667206, -0.91497802734375, 0.8474072217941284, -0.5013591647148132, 0.2001095414161682, 0.019795680418610573, 0.38840052485466003, -0.694359302520752, -0.8494324088096619, 0.09793411940336227, -0.4304869472980499, 0.01577785611152649, 0.3152461349964142, -1.2575725317001343, -0.18577542901039124, -0.13950838148593903, -0.5789920091629028, 0.5772686004638672, -0.1759052574634552, -0.7264401912689209, 0.12055414170026779, -0.9403243660926819, 0.5101596117019653, 0.7180111408233643, -0.3031894564628601, 0.5844985842704773, 0.8021329045295715, 1.5336613655090332, 0.4220931828022003, 0.15359747409820557, 0.07705745100975037, 1.2025679349899292, -0.8828316926956177, -0.029773255810141563, 0.24431265890598297, -0.6547764539718628, -0.9182389378547668], [-0.214458167552948, 1.6023919582366943, -2.3163299560546875, -0.022408418357372284, 0.6805170178413391, 0.2668628990650177, 0.4236588776111603, -0.709229588508606, -0.4082118272781372, -0.7189520597457886, -0.7315647602081299, -0.40487760305404663, 0.10849793255329132, 0.7036391496658325, 0.9447981715202332, 0.9379923343658447, 0.7639302015304565, -0.26141607761383057, 0.21346747875213623, 1.1721512079238892, -0.062323879450559616, -1.0811647176742554, 0.607068657875061, 0.18637816607952118, 0.18804559111595154, 0.7169891595840454, -0.9213835597038269, -0.2794378101825714, -0.948395311832428, -1.087233304977417, 0.9640920758247375, -0.573639452457428, 0.013240423984825611, -0.32527464628219604, -1.5888152122497559, -0.6217372417449951, 1.5428522825241089, 1.0316057205200195, 0.23548686504364014, -0.1575031876564026, 2.0355145931243896, -0.4454285502433777, -0.49023309350013733, -1.7500083446502686, 0.15932707488536835, -0.24125352501869202, 0.7653263211250305, -1.3134539127349854, 0.05411938205361366, 0.26138582825660706, 0.2730536162853241, -1.181597113609314, 0.5687310099601746, 1.3082704544067383, 0.9178944826126099, -0.8523768186569214, 0.450479120016098, -0.23321589827537537, 0.2634652554988861, -0.5274396538734436, 1.7415356636047363, -0.19784832000732422, -0.5655055046081543, 1.2744219303131104, -0.10863441228866577, -0.5143545866012573, 0.20478412508964539, -0.04471343383193016, -0.17457130551338196, 0.1734132617712021, 0.49539852142333984, -0.16583633422851562, -0.6852753758430481, 0.47455570101737976, -1.5463305711746216, 0.6890283823013306, 0.06664316356182098, 0.6645932793617249, 0.7597826719284058, 0.015942316502332687, -0.13127325475215912, 0.1254309117794037, 0.7983180284500122, -0.6794397234916687, -0.06994350999593735, -0.10681792348623276, 0.5400588512420654, -0.7663862705230713, -0.9013144373893738, 1.6612319946289062, 0.24578037858009338, 0.317783385515213, 0.2288922220468521, 0.5239481925964355, -0.4473055899143219, -0.7670931220054626, 0.015060923993587494, -0.8741272687911987, -0.89231276512146, -0.8625686764717102, -0.6458742618560791, -0.816999077796936, 0.6847726702690125, 0.17375385761260986, -0.8350041508674622, 1.723357081413269, 0.3382013142108917, -0.4375544786453247, -0.18709678947925568, 0.5676307678222656, -0.725700855255127, -0.0008362643420696259, -0.804593026638031, -0.4670897126197815, -0.7353962063789368, 1.4152144193649292, 1.464589238166809, -0.1708701103925705, 0.5590376853942871, 0.9496455192565918, -0.151020348072052, -0.34929731488227844, 0.5255171656608582, -0.14965234696865082, 0.6258295774459839, 0.612363338470459, -0.8508699536323547, -0.4685283303260803, 0.09216880798339844, -0.31807833909988403, 0.9589800238609314, -0.17935903370380402, -0.4412199854850769, 0.836958646774292, -0.9472161531448364, 0.8568581938743591, -1.3546823263168335, -0.2721173167228699, 0.10419277101755142, -0.016365133225917816, 0.4777185618877411, 0.04015811160206795, -0.5465526580810547, -0.7101262211799622, 0.4059050679206848, -0.5887954235076904, 0.4046250879764557, -0.12056650221347809, -0.9086756110191345, 0.49637630581855774, -1.0232003927230835, 0.5782759189605713, 0.34259939193725586, 0.9871704578399658, 0.2810082733631134, -0.5335910320281982, -0.6048600673675537, -0.1687033325433731, 0.33588531613349915, 0.5057017803192139, 0.8573260307312012, 0.006086019333451986, -0.9002801179885864, 0.8167726993560791, 1.1127631664276123, -0.23953619599342346, 0.3736266493797302, 0.9640586972236633, -0.016671398654580116, 0.6998053193092346, -0.19282735884189606, -0.8013048768043518, -0.47044265270233154, 0.6749029755592346, 0.6144047975540161, -0.8147475719451904, 1.1082464456558228, 0.15368573367595673, -1.534079670906067, -1.1076687574386597, 0.8691117167472839, -0.365302711725235, 0.9658544063568115, -0.02993685007095337, 0.004121741279959679, -0.6034969091415405, 0.5948448777198792, -0.37160810828208923, -0.48172762989997864, -0.4749771058559418, -0.4158470630645752, 0.017193786799907684, -0.9153167009353638, -0.08043082058429718, 0.08375052362680435, -1.0082404613494873, 0.10867700725793839, -1.610260248184204, -0.4385594129562378, -0.20818307995796204, 0.024326739832758904, -0.42400357127189636, -0.6928116679191589, 0.6055505275726318, -0.5945903658866882, 0.7573845386505127, -0.7316913604736328, 1.3571993112564087, -0.5001670122146606, -0.17527440190315247, 1.1620004177093506, -0.6073703765869141, -0.8215680718421936, 0.24737560749053955, 0.5309505462646484, -1.8627183437347412, 0.09893913567066193, 0.08564828336238861, -0.6263105273246765, -0.21075297892093658, -0.3695443272590637, -0.16223548352718353, 0.747689962387085, -0.09105444699525833, 0.2860965132713318, 0.05197853967547417, -0.11160317808389664, -1.1599838733673096, -0.45243188738822937, -0.590588390827179, -0.6338053941726685, -0.8967962265014648, 0.8536067605018616, 0.23531456291675568, -1.4559117555618286, 0.22161579132080078, 0.18324638903141022, 0.5707982778549194, -0.055053312331438065, 1.2875733375549316, 0.5737359523773193, 0.4198978543281555, 0.12399189174175262, -0.39939579367637634, -0.6719548106193542, 0.7110088467597961, 1.4145382642745972, -0.06637018918991089, 0.11861063539981842, 0.6742715835571289, 1.304243803024292, -0.06475325673818588, 0.47906652092933655, -0.2665683329105377, 0.018379703164100647, -0.9682241082191467, -1.1423115730285645, 0.3319985270500183, -0.1689576655626297, 1.8205556869506836, 1.146766185760498, -1.217538595199585, -0.4999197721481323, 0.1892872154712677, 0.1970321089029312, -0.23667187988758087, -0.8998652696609497, 0.01794574037194252, 0.2866578698158264, 0.03924974054098129, 0.22192798554897308, 0.9180819392204285, -0.6424174308776855, 0.36181220412254333, -0.848310112953186, -0.428713321685791, -0.5700399875640869, 0.8604204654693604, 0.1334482878446579, 1.221792221069336, -0.23706132173538208, -1.706619143486023, 0.11565858870744705, -0.37354257702827454, 0.5836390256881714, 0.40805745124816895, -0.2138402760028839, 0.6108909845352173, 0.4444293677806854, -0.6219260096549988, 0.6840679049491882, -0.12329856306314468, 0.14118407666683197, -0.22130142152309418, 0.25919875502586365, 0.3203895092010498, 1.0571544170379639, -0.8224678635597229, -0.636009693145752, 0.2193642258644104, -0.11120228469371796, 1.793290376663208, 0.2584839165210724, 0.6543390154838562, 0.034524619579315186, 0.2570251524448395, -0.2275884449481964, -0.44927650690078735, -1.022236943244934, -0.9167870283126831, -0.5601811408996582, -0.7882519960403442, 0.002123462036252022, 0.2775671184062958, 0.1375437080860138, 1.2250248193740845, -0.18900176882743835, 0.023843126371502876, 1.063506841659546, -0.6413708925247192, -1.0769059658050537, -0.34717562794685364, -0.032810624688863754, -0.9276183843612671, 0.48034578561782837, 1.595363736152649, -1.0279316902160645, 0.09849853068590164, -0.09970735758543015, -0.006952892057597637, 0.5928416848182678, -0.21812845766544342, 0.6581376791000366, -1.2019109725952148, -0.9289670586585999, 0.13211952149868011, 1.0461848974227905, -0.3574564754962921, 0.5503203868865967, -0.6108148694038391, 0.40354710817337036, 0.6329447031021118, 0.3134050965309143, -0.3208300769329071, 0.4027295410633087, -0.5869422554969788, -0.8895823955535889, -0.1325697898864746, 0.8762881755828857, 0.7334354519844055, -0.37178122997283936, -0.6877235174179077, -0.6893404722213745, -0.41603371500968933, -0.36348018050193787, -0.009636975824832916, 0.4186519384384155, 0.9592674970626831, -0.16690224409103394, 0.5998485088348389, 0.6745011210441589, 0.14563913643360138, 0.12781421840190887, -1.5626510381698608, 0.48668983578681946, 0.5622764825820923, 1.2646414041519165, 0.24814069271087646, 0.4639385938644409, 0.16972851753234863, 0.35838815569877625, -0.24234223365783691, -0.16819648444652557, 1.3696508407592773, -0.38284221291542053, -0.09529197216033936, -0.2699059545993805, -0.6858745217323303, 0.0885605663061142, -0.019723495468497276, 0.42182332277297974, 0.6572510004043579, -1.4980803728103638, -0.5180284976959229, 1.3907876014709473, 0.26446014642715454, -0.2739710509777069, -0.023327743634581566, 0.518750011920929, 0.39454010128974915, -0.904289960861206, -0.36582180857658386, -0.25575122237205505, 0.16279709339141846, 0.29790887236595154, -1.2404627799987793, -0.13819003105163574, 0.4117913246154785, 0.8590887784957886, 1.418839693069458, -0.941861093044281, 0.35338759422302246, -0.7604643106460571, 0.5468287467956543, 0.5007675886154175, -0.5161295533180237, 0.4755171537399292, 0.09958609938621521, -0.09875596314668655, 0.05650220438838005, 0.5509894490242004, 1.2756136655807495, 0.11007256805896759, 0.5276935696601868, 0.512361466884613, -0.6824713349342346, -0.5892695784568787, -0.26282045245170593, -0.5997940301895142, 0.476973295211792, -0.8228054642677307, -0.520149290561676, 0.20233894884586334, -0.45569443702697754, 2.0838420391082764, -0.004445967264473438, 0.5082413554191589, 0.27139484882354736, 0.0931156799197197, -0.9715332388877869, -0.13048182427883148, 0.4742114841938019, -0.055014755576848984, -0.7508614659309387, 0.020348994061350822, 0.310151070356369, -0.05089140683412552, 0.12631654739379883, 0.20215533673763275, 0.16139096021652222, 0.17415136098861694, -0.10712946206331253, 0.35835742950439453, 0.45345059037208557, 0.7109778523445129, 0.8514611124992371, 0.6216209530830383, -0.535453200340271, -0.6285437941551208, 0.9379546642303467, -0.1852954626083374, 0.3121238946914673, 0.3497254252433777, 0.350396066904068, 1.6106234788894653, -1.1048275232315063, -0.29849788546562195, 0.5085774064064026, 0.018802110105752945, 0.2213098406791687, 0.6940407156944275, 0.01954004541039467, -0.11567865312099457, 0.17576242983341217, -0.2384224683046341, -0.2099052518606186, 0.30689749121665955, 0.08250045031309128, 0.13020658493041992, 0.7148118019104004, -0.8380853533744812, 0.1320381462574005, -0.5459251999855042, -0.5621431469917297, -0.401917427778244, -0.5576456785202026, 0.38659220933914185, 0.03667394816875458, 0.6867321133613586, 1.0557595491409302, -0.13600601255893707, -1.0413684844970703, 0.09219444543123245, -0.5820779204368591, 0.8358058929443359, -0.48553186655044556, -0.37471264600753784, -1.066705584526062, 0.03361976891756058, -0.39863333106040955, 0.3658495843410492, -0.7450360655784607, -0.5900377035140991, -0.27664750814437866, -2.107037305831909, 0.5911149382591248, 0.3163679242134094, 0.7748993039131165, 1.0612990856170654, -0.18777580559253693, 0.4243987202644348, 0.11043023318052292, -0.8122137188911438, 0.0751066505908966, -0.05172669142484665, -0.4760104715824127, 0.08865004777908325, -0.7590525150299072, -0.8174104690551758, 0.433038592338562, 0.4139360785484314, 0.2009463906288147, 0.6508938074111938, 0.7298509478569031, 1.3642773628234863, -0.11480320990085602, 0.3571521043777466, 0.11631827801465988, -0.8934922218322754, 1.002546787261963, -0.017048103734850883, -0.9378289580345154, -0.5980266332626343, -1.2556308507919312, -1.891213059425354, 1.3679208755493164, -0.677074134349823, -0.3789326846599579, 1.290365219116211, 1.240983009338379, 0.41456300020217896, 0.37378981709480286, -0.26827383041381836, -0.11823303997516632, 0.04075881466269493, -0.37095174193382263, -1.0044405460357666, 0.8952752351760864, 0.7105801105499268, 0.065115787088871, 0.10738832503557205, 0.2770070731639862, -0.3284931480884552, 0.052798785269260406, -0.3302817940711975, 0.634554922580719, 0.3101732134819031, 0.5443923473358154, 0.18871867656707764, 0.5318794250488281, 0.3865388035774231, -1.251756191253662, -0.2883947193622589, 0.12328086793422699, 0.8093050718307495, 0.2887158691883087, 0.0011402405798435211, 0.44837847352027893, -0.4167439639568329, -0.4296369254589081, -0.35505586862564087, -0.22606465220451355, 1.0166065692901611, 0.7522838115692139, -0.3383970856666565, -0.33826494216918945, -0.6847789287567139, -0.17369383573532104, -0.6115924715995789, 0.9867737293243408, 0.35952308773994446, -1.6592403650283813, -0.3514886796474457, 0.36488792300224304, -0.6687493920326233, -0.8525770306587219, -0.36553505063056946, 0.0851227268576622, -0.9104387760162354, -0.9453501105308533, -0.23998840153217316, -0.0187758207321167, 0.668727695941925, -0.38480833172798157, 0.43238481879234314, 0.0030781636014580727, -1.2572486400604248, 0.7143097519874573, -0.6299455761909485, -0.6280961036682129, 0.184366375207901, -1.4804831743240356, 0.8905380964279175, 0.06264318525791168, 0.6102634072303772, -0.2144012451171875, 0.5994176864624023, -1.3439885377883911, -0.7596257925033569, -1.2835201025009155, -0.4071740508079529, 1.297107219696045, 0.6844449043273926, -0.7702517509460449, 1.8284947872161865, 1.1581342220306396, -0.09610707312822342, -0.07584283500909805, -0.003169408068060875, -0.4147770404815674, -0.2159518599510193, 0.4848024547100067, 0.784051239490509, 1.0993670225143433, 1.4719771146774292, 1.0360980033874512, 0.5574326515197754, 0.8168345093727112, 1.1851698160171509, -0.43906542658805847, -0.3970124423503876, -0.21709521114826202, 1.1156288385391235, -0.439408540725708, -1.082556962966919, -0.002179850824177265, -0.21646423637866974, -0.8701344132423401, -0.12613844871520996, 0.6023353338241577, -0.7863534688949585, 0.6755202412605286, -0.5788180232048035, -0.05942703038454056, -0.5392053723335266, 0.3206183910369873, 0.1500912457704544, -1.1885507106781006, 0.19658634066581726, -0.18295595049858093, -0.3261348009109497, -1.2280309200286865, 0.3963612914085388, 0.4930505156517029, -0.5236808061599731, -0.5474311709403992, 0.057205718010663986, -0.08618596196174622, 0.9097126722335815, -0.5671600699424744, 1.7656278610229492, 0.6823957562446594, -0.615250825881958, -0.16028030216693878, -0.3760603666305542, 0.07815254479646683, 0.6554535031318665, -0.9930103421211243, -0.886557936668396, -0.7940117120742798, 1.4734561443328857, 0.33032533526420593, 0.17610198259353638, -0.20365464687347412, -0.28522247076034546, -0.22959502041339874, 0.36947888135910034, 1.3150324821472168, -1.3539098501205444, -0.6268165707588196, 1.1363775730133057, 0.9991846084594727, -0.3695698380470276, 0.42565348744392395, 0.1968514770269394, 0.16005884110927582, -0.8967939019203186, 0.4513893723487854, 0.4988607168197632, -0.2853263318538666, 0.6856444478034973, 0.25700077414512634, 0.07643542438745499, -0.002676820382475853, -0.17546381056308746, -1.4746392965316772, 0.3897263705730438, -0.29895293712615967, -0.5215098261833191, 1.0529199838638306, -1.2281781435012817, -0.8080531358718872, 0.3329586982727051, 0.3629292845726013, -0.3178042769432068, -0.19882658123970032, 0.1046685129404068, 0.3754473328590393, -0.051444005221128464, 0.8839468955993652, -0.15720631182193756, 0.8962488174438477, -0.4366191625595093, 0.354633092880249, -0.9680405855178833, -0.10023675858974457, 0.44195571541786194, 0.21303488314151764, -0.1769307404756546, -0.19236794114112854, 0.5185940265655518, -0.7352603077888489, -0.5851075053215027, 0.2938774526119232, 0.10254815220832825, 0.2934623956680298, -0.3537593185901642, -0.47732120752334595, -0.08865119516849518, 0.48672541975975037, 0.774547278881073, -0.038898080587387085, -1.1477924585342407, -0.6387609243392944, 0.054759979248046875, -0.4516645669937134, 0.10136599093675613, 0.014975747093558311, 0.6086652278900146, 0.27765366435050964, -0.714415431022644, -0.9381113648414612, -1.0763882398605347, 0.7619743347167969, -0.2754770815372467, 0.1938450187444687, -0.4616323411464691, 0.7146665453910828, -0.1117100864648819, -0.8353360891342163, -0.03483729809522629, 0.16750846803188324, 0.12563395500183105, 0.13749168813228607, -1.0241645574569702, -0.1864420473575592, -0.8421050310134888, 0.4283037483692169, 0.37596800923347473, 0.5650202631950378, 0.1417195200920105, 0.32373180985450745, -1.3225314617156982, 0.37285536527633667, 0.27937549352645874, -0.20372167229652405, -0.32045111060142517, 1.5228383541107178, 1.5238476991653442, 0.12151069194078445, 0.16704735159873962, -0.3423405885696411, 0.363964319229126, -1.2085720300674438, 0.013572771102190018, -0.44320961833000183, -0.7483081817626953, -0.5631304979324341], [-0.659466028213501, 1.3118692636489868, -2.361422538757324, -0.3424220085144043, 1.0589426755905151, -0.34314846992492676, 1.316833257675171, -1.0703811645507812, 0.42604053020477295, -0.5915077924728394, -1.1888768672943115, -0.12117348611354828, -0.178470179438591, 0.37477076053619385, 0.8318994045257568, 1.5044350624084473, 1.0717294216156006, 0.2148643434047699, 0.6668258905410767, 0.9758388996124268, -0.05806201696395874, -0.12978194653987885, 0.554068922996521, -0.20885999500751495, 0.11570107936859131, 1.1221877336502075, -1.0975875854492188, -0.5464925765991211, -0.4474446773529053, -1.0449092388153076, 0.8618331551551819, -0.9315825700759888, -0.13281342387199402, -0.3058323264122009, -1.2301299571990967, -0.11863613873720169, 1.6778953075408936, 1.793594479560852, 1.1461751461029053, -0.15735316276550293, 1.3991506099700928, -0.7073791027069092, 0.11776956915855408, -1.487849235534668, 0.1857614815235138, -0.24201229214668274, 0.6332347393035889, -0.24310153722763062, -0.423357218503952, -0.07193803042173386, 0.11523838341236115, -1.0887253284454346, 0.21847233176231384, 0.9544481039047241, 1.159017562866211, -0.6910377144813538, 0.9987921714782715, -0.5017459988594055, -0.25375106930732727, -0.49071234464645386, 0.9761847257614136, 0.21177339553833008, -0.6236081123352051, 0.44844430685043335, -0.02576790750026703, -0.17062534391880035, 0.02120884321630001, 0.36345547437667847, -0.29597410559654236, 0.27460283041000366, 0.3556209206581116, -0.17155155539512634, -1.172118067741394, 0.4695923328399658, -1.4079978466033936, 0.6840803623199463, 0.8752607107162476, 0.4285186231136322, 0.8091222643852234, 0.0006868541240692139, 0.06859930604696274, -0.1145399883389473, 0.25472745299339294, -0.5485711693763733, 0.5009084939956665, 0.2778826355934143, 0.6412640810012817, -0.8886241912841797, -0.7863657474517822, 0.9516274333000183, 0.6051430702209473, -0.19318601489067078, 0.35132697224617004, 0.14023229479789734, -0.8909236788749695, -0.6545749306678772, 0.9654857516288757, -0.06300369650125504, -0.9068168997764587, -0.8071010112762451, -0.275430828332901, -1.4578485488891602, 0.6887704133987427, 0.12389728426933289, -0.028060652315616608, 1.37953782081604, 0.15517443418502808, -0.7443605065345764, -0.6135284900665283, -0.1951930671930313, -0.04274548590183258, 0.4770411550998688, -0.8710272312164307, -0.9384599924087524, -0.25012192130088806, 1.314589023590088, 1.9796817302703857, -0.858786404132843, 0.35953956842422485, 1.1154674291610718, -0.377788245677948, 0.22377443313598633, -0.32453757524490356, 0.7711580991744995, 0.8082300424575806, 0.6085622906684875, -0.008938213810324669, -0.33700743317604065, 0.3201885223388672, 0.05181301385164261, 0.7443445324897766, -0.07675602287054062, -0.552129864692688, 0.8149223327636719, -1.1978704929351807, 0.9179122447967529, -0.2561883330345154, -0.608839750289917, -0.04286210983991623, -0.1333709955215454, 1.036703109741211, -0.387395977973938, -0.2649265229701996, 0.13727043569087982, 0.243331179022789, -0.5766267776489258, -0.2140570729970932, -0.3263940215110779, -0.6349775791168213, 0.21416352689266205, -0.9871151447296143, 0.37814924120903015, -0.048789553344249725, 0.4495224356651306, 0.6760377883911133, -0.6566987037658691, 0.11369787156581879, 0.640709638595581, 0.9104783535003662, 0.5973494648933411, 1.0926554203033447, -0.339063435792923, -1.0146349668502808, 0.9270085692405701, 0.6749405264854431, -0.24763396382331848, 0.007345279678702354, 1.0376626253128052, 0.1748979687690735, 1.1446988582611084, -0.1665061116218567, -0.963476836681366, -0.5521147847175598, 0.2543953061103821, 0.15868818759918213, -0.5994206666946411, 1.279085636138916, 0.08687460422515869, -1.9201161861419678, -1.3518216609954834, 0.06409361213445663, -0.41461020708084106, 0.8799848556518555, 0.0633537769317627, 0.5946779251098633, -0.7677007913589478, 0.6655783653259277, 0.35849499702453613, -1.155481219291687, -0.8115463256835938, -0.6448870897293091, -0.5010130405426025, -0.8054744005203247, 0.2801426649093628, -0.7462694048881531, -1.5616146326065063, 0.18548624217510223, -1.2927175760269165, -0.39034950733184814, -0.30506592988967896, 0.10829389095306396, -0.26668423414230347, -0.41563352942466736, -0.04204322397708893, -0.48742955923080444, 1.0400478839874268, -1.3884055614471436, 1.3635294437408447, -0.6360436677932739, -0.23479974269866943, 1.2238452434539795, -0.1974467933177948, -0.5957676768302917, 0.684410810470581, -0.157134547829628, -1.3075296878814697, 0.34531259536743164, 0.64332115650177, -0.26376721262931824, -0.4209423065185547, -0.22117015719413757, 0.5365887880325317, 0.0564613901078701, 0.026377897709608078, 0.7190897464752197, -0.07761392742395401, -0.3105909824371338, -0.589002251625061, -0.44534897804260254, -0.5467039346694946, -0.4732053279876709, -0.4369485378265381, 0.4969390034675598, -0.006698428653180599, -1.1050896644592285, 0.2620707154273987, 0.2772204875946045, 0.6248214244842529, 0.6619491577148438, 1.3843915462493896, 0.6595808267593384, 0.4266712963581085, -0.05194421112537384, -0.6265925168991089, -0.43085479736328125, 1.0732810497283936, 0.8418556451797485, -0.45050787925720215, 0.5356097221374512, 1.2126773595809937, 1.1584322452545166, -0.624100923538208, -0.06475598365068436, -0.38171103596687317, -0.3063373863697052, -0.8530446887016296, -0.7995052933692932, 0.045585960149765015, -0.054407328367233276, 1.9656168222427368, 0.6257457733154297, -1.141117811203003, -0.3537651300430298, 0.8052716851234436, -0.035952575504779816, -0.11801128089427948, -0.35539746284484863, 0.644284725189209, 0.02475742995738983, 0.18654274940490723, 0.0028045158833265305, 0.546477735042572, -0.47735780477523804, 0.5417653322219849, -1.0577086210250854, -1.1903486251831055, -0.724082350730896, 0.4510326385498047, -0.47575172781944275, 0.5658420324325562, -0.10777684301137924, -0.9902733564376831, 0.10640937089920044, -0.02376250922679901, 0.4042484760284424, 0.14193104207515717, 0.06292837858200073, 0.09682843089103699, 0.8300892114639282, -0.33387985825538635, 0.8234219551086426, 0.09317750483751297, 0.33907708525657654, 0.28139859437942505, 0.329451322555542, 0.4419906735420227, 2.0877482891082764, -1.5774279832839966, -0.7407612800598145, 0.0486542209982872, 0.10502074658870697, 1.5594732761383057, 0.029459193348884583, 1.292925238609314, 0.060114216059446335, 0.5570611953735352, -0.5488123893737793, 0.10551290214061737, -0.8886488676071167, -0.7945812940597534, -1.3810689449310303, -0.32913708686828613, -0.3120831251144409, 0.004915386438369751, -0.02947617508471012, 0.5338859558105469, -0.3826322555541992, 0.4838833808898926, 1.5996510982513428, -0.6349897384643555, -0.5788672566413879, -0.4334389269351959, -0.4722236394882202, -0.4841628074645996, 0.1424563080072403, 1.3579394817352295, -0.7257997393608093, -0.5818523168563843, 0.11691045761108398, 0.15617036819458008, 0.658164381980896, 0.0727248340845108, 0.7407483458518982, -1.7876274585723877, -1.2824435234069824, -0.03533592075109482, 1.3817405700683594, -0.39123234152793884, -0.10968399047851562, -0.3116214871406555, 0.3105334937572479, 1.0859220027923584, -0.506658136844635, -0.6700670719146729, 0.7058967351913452, -0.42358410358428955, -1.3375649452209473, -0.4346441626548767, 0.1959194540977478, 0.8267309665679932, -0.5613940954208374, -0.3219956159591675, -0.5073836445808411, -0.1900986135005951, -0.08563929051160812, 0.041605349630117416, -0.5260477662086487, 1.0659633874893188, -0.3227103352546692, 0.36129453778266907, 0.4127626419067383, -0.3762474060058594, 0.5569181442260742, -0.8935710191726685, 0.36281293630599976, 0.6797606348991394, 1.0321472883224487, 0.4858297109603882, 0.2772214114665985, 0.11387548595666885, 0.873151421546936, 0.12899212539196014, -0.07449132949113846, 1.6361725330352783, -0.1142987310886383, -0.12794503569602966, -0.2943321466445923, 0.2182520180940628, -0.11883559077978134, -0.22374069690704346, 0.07649974524974823, 0.6417490243911743, -1.224664568901062, -0.17025429010391235, 1.027130126953125, 0.3366384208202362, 0.09063443541526794, 0.14893290400505066, -0.4056549668312073, 0.8659434914588928, -0.3436379134654999, -0.2557278573513031, -0.40902674198150635, -0.15098275244235992, 0.4436507225036621, -0.990546703338623, 0.04409974068403244, 0.677355170249939, 0.5438991785049438, 0.5590012073516846, -0.24606546759605408, 0.09050996601581573, -0.9463677406311035, 0.8448210954666138, 0.7277487516403198, -0.9870849847793579, 0.1321338713169098, -0.11717602610588074, -0.0972597748041153, -0.28506529331207275, 0.2751157581806183, 0.7095991373062134, -0.22159899771213531, 0.11271633207798004, 0.5066011548042297, -0.05451081320643425, -0.5040954947471619, -0.13025057315826416, -0.10518012940883636, 0.49806755781173706, -0.3252658247947693, -0.10871449112892151, 0.5004128217697144, -0.34434160590171814, 1.9209506511688232, 0.345140278339386, 0.3897528052330017, 0.7044907808303833, 0.21629583835601807, -0.7216979265213013, -0.28612515330314636, 0.47170180082321167, -0.3543028235435486, -1.0346293449401855, -0.3165908753871918, 0.3519221544265747, -0.528229832649231, 0.029338134452700615, -0.23047292232513428, 0.7172641754150391, 0.4216000437736511, -0.06033533066511154, -0.16008709371089935, 0.6943234801292419, 0.8357657194137573, 0.9468575119972229, 0.5242117643356323, -0.6145970225334167, -0.7955794930458069, -0.12483647465705872, -0.6913691759109497, 0.10201556980609894, 1.043020486831665, 0.27388083934783936, 1.5232291221618652, -1.364443063735962, -0.41930535435676575, 0.34386464953422546, 0.03130811080336571, 0.34104955196380615, 1.1887965202331543, -0.40955138206481934, 0.5868049263954163, 0.05914689600467682, -0.31890949606895447, -0.3225066065788269, 0.01927933655679226, 0.30382105708122253, -0.8246335983276367, 0.536341667175293, -0.6384291052818298, 0.9200643301010132, -1.2593297958374023, -0.7074155807495117, 0.15433013439178467, -1.5592551231384277, 0.14090080559253693, 0.24928739666938782, 0.6732520461082458, 1.209857702255249, 0.06950682401657104, -1.2454485893249512, -0.2241390496492386, -0.32090914249420166, 0.14152656495571136, -0.8188371658325195, -0.3811776041984558, -0.9209082126617432, -0.2889016270637512, -0.49869662523269653, 1.021578311920166, 0.1969393789768219, -0.6433351635932922, -0.24830830097198486, -1.034400224685669, 0.7480531334877014, 0.3263917565345764, 0.5852431654930115, 0.4219323992729187, -0.3873324692249298, 0.3479107916355133, -0.2252662181854248, -0.6311800479888916, 0.38917794823646545, 0.14914719760417938, -0.060155414044857025, -0.091086745262146, -0.8525251150131226, -0.2162623405456543, 0.4605918526649475, 0.44809508323669434, -0.3740427494049072, 0.698474645614624, 0.9965618848800659, 1.0952765941619873, -0.14429685473442078, -0.05293256789445877, -0.1684039831161499, -0.10198286175727844, 0.3980101943016052, 0.6551352739334106, -0.1450970619916916, -0.6114845275878906, -1.289011001586914, -1.591031789779663, 0.8382409811019897, -0.394141286611557, -1.0690958499908447, 1.3021749258041382, 0.724432647228241, 0.6929619908332825, 0.5147562026977539, -0.5396426320075989, 0.3779987692832947, 0.24197928607463837, -0.9658047556877136, -1.105525255203247, 0.9558937549591064, 0.04619942232966423, 0.8930016756057739, -0.1364527940750122, -0.7375591993331909, -0.0464915968477726, -0.2851685881614685, -0.7993375062942505, 0.4930185079574585, -0.07795314490795135, 0.5506854057312012, -0.09055586159229279, -0.09195751696825027, -0.032772552222013474, -0.07983183860778809, -0.959376335144043, 0.07789275050163269, 0.1869022697210312, 0.2745112478733063, 0.14295057952404022, -0.3884170949459076, -0.2872398793697357, -0.80804443359375, -0.09344904869794846, 0.17700061202049255, 0.6696878671646118, 1.083132266998291, 0.4700402021408081, -0.234205961227417, -0.14617113769054413, 0.39229246973991394, -0.3931344747543335, 1.0616064071655273, 0.923957347869873, -1.175499677658081, 0.06902144104242325, 0.7835302352905273, -0.9158658981323242, -1.0343449115753174, -0.17961496114730835, -0.08794526755809784, -1.2093520164489746, -0.8931723833084106, -1.2274985313415527, -0.11972800642251968, 0.5049089193344116, -0.9182277917861938, 0.1149594783782959, 0.5163050293922424, -1.719452142715454, 0.4190666675567627, -0.5263245105743408, -1.0776013135910034, 0.042836807668209076, -0.42643892765045166, 0.6073770523071289, 0.09558311849832535, 0.4776129722595215, -0.4461442530155182, 0.4751952886581421, -1.3077327013015747, -1.008641242980957, -0.7109318971633911, 0.14288541674613953, 0.7142214179039001, 0.5553325414657593, -0.49075159430503845, 1.6858192682266235, 0.9227900505065918, -0.5368524789810181, -0.5334288477897644, 0.2181897610425949, -0.300772488117218, 0.49682503938674927, 0.43314802646636963, 0.7581493854522705, 1.0039968490600586, 1.1604777574539185, 0.1619931161403656, 1.1319465637207031, 0.8253313899040222, 0.4456102252006531, -0.10243834555149078, -0.8847548365592957, 0.4642702341079712, 0.6511290073394775, -0.9279428720474243, -1.1528847217559814, -0.4463838040828705, -0.30155858397483826, -1.1669530868530273, 0.15805663168430328, 0.7846888303756714, -0.748450517654419, 0.21846207976341248, -0.521767258644104, 0.15749388933181763, -0.6742141246795654, -0.006496507674455643, 0.2063382863998413, -0.7203123569488525, 0.01158871315419674, 0.16570159792900085, -0.7498383522033691, -1.6148847341537476, 0.48900696635246277, 0.17379964888095856, -0.6315679550170898, -0.5222795009613037, 0.9825621843338013, 0.30493319034576416, 0.5201553106307983, -0.14857222139835358, 1.6948819160461426, 1.0677318572998047, -0.6044148802757263, 0.10763642191886902, 0.4211612343788147, 0.16438187658786774, 0.5962475538253784, 0.3376067280769348, -1.043424129486084, -1.037774920463562, 1.7916762828826904, 0.5881267189979553, 0.36675822734832764, -0.13464395701885223, -0.5360267162322998, -0.3881380259990692, 0.22581151127815247, 0.5265791416168213, -0.8795714378356934, -0.15331228077411652, 0.9302013516426086, 0.7090669870376587, 0.10774116218090057, -0.4546352028846741, 0.6119354963302612, 0.8545161485671997, -0.941999077796936, 0.3295627534389496, 0.568837583065033, -0.21880878508090973, 0.5663988590240479, -0.29344531893730164, -0.4275064468383789, -0.22293789684772491, -0.12364237010478973, -0.7627326250076294, -0.040339890867471695, 0.06804781407117844, -0.5802702903747559, 1.0977129936218262, -1.1693055629730225, -0.3102697432041168, -0.3778642416000366, -0.5057297348976135, -0.29153138399124146, -0.29264509677886963, 0.11750499904155731, -0.23025114834308624, 0.443330854177475, 0.7455415725708008, -0.24626855552196503, 1.0795342922210693, -0.7423908710479736, 0.06295949220657349, -1.2193211317062378, -0.31539154052734375, 0.15288791060447693, -0.20394489169120789, -0.21807655692100525, -0.2353084683418274, 0.5328908562660217, -0.3221409320831299, -0.8283452987670898, -0.015184387564659119, 0.025780893862247467, -0.06758485734462738, 0.014095939695835114, -0.652589738368988, 0.26568299531936646, 0.9682468771934509, 0.9906426668167114, -0.20063170790672302, -1.0548229217529297, -1.1934524774551392, -0.24302005767822266, -0.27747225761413574, 0.5385744571685791, -0.5089231133460999, 0.9992530941963196, 0.17770187556743622, -0.14006558060646057, -0.7535255551338196, 0.08757343888282776, 0.7814866304397583, 0.17564737796783447, 0.3388693630695343, -0.22881636023521423, 0.48886626958847046, -0.7028110027313232, -0.8256943225860596, 0.1386672705411911, -0.02823857218027115, -0.4187721610069275, -0.08599436283111572, -1.0709586143493652, -0.2026919722557068, -0.22492261230945587, -0.09688764810562134, 0.05642593652009964, -0.09776367247104645, 0.2361994832754135, -0.1754971742630005, -0.8114228248596191, -0.29297196865081787, 0.2371637374162674, -0.11594872176647186, -0.106477752327919, 1.186305046081543, 1.4534989595413208, 0.4736766815185547, 0.46031808853149414, -0.30330008268356323, 0.09100933372974396, -1.3427441120147705, -0.03561755269765854, -0.6804502606391907, -0.5101425647735596, -0.40753665566444397], [0.9694921970367432, 1.4963091611862183, -2.2376902103424072, 0.1164931207895279, 1.7342203855514526, -0.08442432433366776, 0.8497594594955444, -0.304292768239975, -0.30075234174728394, -0.21489585936069489, -0.5462342500686646, 0.4589781165122986, 0.1341947466135025, 0.988475501537323, 0.7824819684028625, 0.8269790410995483, 1.2746590375900269, -0.3022240102291107, 0.48143622279167175, 0.6498590707778931, 0.12365375459194183, 0.17471277713775635, 0.0818362906575203, 0.40807944536209106, -0.2971018850803375, 0.5910168886184692, -0.6603875756263733, -0.14390312135219574, -0.9874762892723083, -0.935444176197052, 2.0945308208465576, -0.4742562472820282, 0.21574316918849945, -0.10749160498380661, -2.642174482345581, 0.15930569171905518, 1.418265700340271, 0.6603295207023621, 0.4950393736362457, -0.1661738157272339, 1.8835686445236206, -0.7309343218803406, -0.17664887011051178, -1.8153222799301147, 0.4495614469051361, 0.03312351182103157, 0.9715867638587952, -0.10073009878396988, 0.15538053214550018, -0.769816517829895, 0.4024747610092163, -0.22952406108379364, 0.25893113017082214, -0.4474453628063202, 0.40214475989341736, -0.015334144234657288, 0.8509735465049744, 0.348847895860672, 0.3185822665691376, -0.060947708785533905, 0.6942174434661865, -0.20511570572853088, -0.42116671800613403, 0.5935854911804199, 0.15129026770591736, -0.3122333884239197, -0.29930970072746277, 0.8217241764068604, -0.11297179013490677, -0.049784500151872635, 0.9720065593719482, 0.17121708393096924, -1.1367030143737793, 0.07878279685974121, -0.9909798502922058, 0.5331838726997375, 0.07507096976041794, 0.5901410579681396, 0.34004127979278564, 0.29626402258872986, -1.0169098377227783, 0.050376735627651215, 0.7502356767654419, -0.07139310240745544, 0.3505868911743164, 0.6317496299743652, 0.34744831919670105, -0.53171706199646, -0.891044557094574, 1.1096141338348389, -0.28880205750465393, 0.09261379390954971, 0.6489489674568176, -0.12899282574653625, -0.2936720848083496, -0.4254896938800812, 0.08526210486888885, -0.5887907147407532, -0.15581588447093964, -0.9119956493377686, -0.917332112789154, -1.2745002508163452, -0.48426637053489685, -0.35807913541793823, -0.8687366843223572, 1.0403997898101807, 1.172066330909729, -0.3186114728450775, -0.1900540441274643, -0.24386091530323029, 0.05543249845504761, 0.8855409026145935, -0.4337335228919983, -1.3031483888626099, -0.4686211049556732, 1.205498218536377, 1.4625685214996338, -0.3210625648498535, 0.1998940408229828, 0.416352778673172, -0.18450139462947845, -0.3238978683948517, 0.01966877281665802, 0.4867013394832611, 0.7140620946884155, 0.5546817779541016, -1.1237319707870483, -0.4715130627155304, 0.8195294737815857, 0.49768194556236267, 0.21655049920082092, -0.1370183676481247, 0.13912196457386017, 0.9307949542999268, -0.5197324156761169, 0.8967581391334534, -0.5671010613441467, -0.6770514249801636, -0.22749781608581543, -0.1341308206319809, 0.2899651825428009, -0.8726025819778442, 0.5082289576530457, 0.18472987413406372, -0.059714142233133316, -0.5087934732437134, 0.9233160018920898, -0.07875631749629974, -0.8571442365646362, 0.3090364634990692, -1.154008150100708, -0.0251779668033123, -0.01834544911980629, 0.7842360138893127, 0.7647009491920471, -0.2703702449798584, 0.21333271265029907, 0.2591603398323059, 0.5550820231437683, 0.0032898224890232086, 1.1010388135910034, 0.11621671169996262, -1.791242241859436, 0.4393247961997986, 0.6187363862991333, -0.35863885283470154, 0.6448288559913635, 0.9421708583831787, 0.37669309973716736, 0.7095112204551697, -0.17117999494075775, -0.5191857814788818, -0.03355342149734497, 0.8345131278038025, 0.1951865702867508, -0.010823381133377552, 0.9771815538406372, 0.05844013765454292, -1.5097802877426147, -1.0898542404174805, 0.6315650939941406, 0.28986406326293945, 0.5472471714019775, 0.3545199930667877, 0.7127262949943542, -0.2897946238517761, 0.3930259346961975, 0.3189878761768341, -0.02384961023926735, -0.8109087944030762, -0.7587486505508423, -0.48981961607933044, -0.28639838099479675, 0.6884384155273438, -0.4400802552700043, -0.9898937940597534, 1.0380090475082397, -1.2543638944625854, -0.384631872177124, 0.31558412313461304, -0.056212153285741806, -0.46328791975975037, -0.43839502334594727, 0.23029451072216034, -1.1057406663894653, 0.4566139578819275, -1.4893447160720825, 0.7404146194458008, -0.7300578355789185, 0.4415353238582611, 1.0276055335998535, 0.2845977246761322, -0.9080948829650879, 0.6694574356079102, -0.4082517623901367, -1.9843839406967163, 0.6954687237739563, 1.0813226699829102, -0.04202890768647194, 0.1183103695511818, -0.756140947341919, -0.03680221363902092, 0.5185208320617676, -0.8046144247055054, 0.3521285355091095, -0.23132279515266418, -0.19938097894191742, -1.1345934867858887, -0.18751932680606842, -0.41358527541160583, -0.705786406993866, -1.4916647672653198, 0.2743701636791229, -0.2198890745639801, -0.229775071144104, -0.022190453484654427, 0.5054137706756592, 0.2658873200416565, 0.15707066655158997, 1.3950186967849731, 0.09057369083166122, 0.6793904900550842, -0.1856953501701355, 0.3475531339645386, -0.687496542930603, 0.6293758749961853, 0.8018778562545776, -0.5085354447364807, 0.2074069082736969, 0.9996453523635864, 1.0291736125946045, -0.14022472500801086, 0.4318637549877167, -0.0964881181716919, -0.21112236380577087, -0.7685856223106384, -0.9054116010665894, -0.040910057723522186, -0.44145718216896057, 1.326831340789795, 0.47581544518470764, -0.5042397975921631, -0.3506341874599457, -0.2804471552371979, -0.5891480445861816, -0.48566552996635437, -0.04081638157367706, -0.6665314435958862, -0.18209709227085114, 0.2918495535850525, -0.25391441583633423, 0.24713918566703796, 0.13675250113010406, 0.8885471820831299, -0.22577638924121857, -0.234258770942688, -0.4283880889415741, -0.02871611900627613, 0.08842910081148148, 0.6913012862205505, -0.19214284420013428, -1.3616045713424683, -0.08312048017978668, 0.13163135945796967, 0.37838754057884216, 0.19671835005283356, 0.7377402782440186, 0.5940343737602234, 0.31657224893569946, -0.02386554144322872, 0.028637267649173737, 0.17902803421020508, 0.4574443995952606, 0.5046937465667725, 0.6072877645492554, 0.14202050864696503, 0.8996895551681519, -1.365981101989746, -0.31649696826934814, -0.3841223418712616, 0.2918076515197754, 0.861594557762146, -0.06520446389913559, 0.8614239692687988, -0.07333814352750778, -0.022090459242463112, -0.19320736825466156, -0.7223027348518372, -0.5089795589447021, -0.9182756543159485, -0.8369735479354858, -0.596479058265686, -0.5446681380271912, -0.3587776720523834, -0.07411958277225494, 0.5922179818153381, -0.7699345946311951, 0.5343796610832214, 1.3532522916793823, -0.3404909074306488, -1.1345595121383667, -0.5290935039520264, -0.19577476382255554, -0.16766293346881866, 0.30807438492774963, 1.0489239692687988, -1.3682358264923096, -0.07176181674003601, -0.012602402828633785, 0.21684007346630096, 0.8600032329559326, 0.1336027830839157, 0.867466926574707, -1.3469202518463135, -0.9891531467437744, -0.6482135653495789, 1.3612521886825562, 0.15383175015449524, -0.19427967071533203, 0.06378775835037231, 0.21609486639499664, 0.5064519047737122, -0.21553707122802734, -0.32308557629585266, 1.4219293594360352, -0.3279038667678833, -0.20996908843517303, 0.1719459742307663, 0.31859156489372253, 0.04003792628645897, -0.6571553349494934, -1.0193032026290894, -0.32352250814437866, -0.27657008171081543, -0.23146548867225647, 0.587814211845398, 0.6739656329154968, 0.6651512980461121, -0.19058695435523987, 0.5256763100624084, 0.9991545677185059, -0.2126818746328354, -0.1654474288225174, -0.7513008713722229, -0.16717089712619781, 0.6647509336471558, 1.0288310050964355, 0.6075734496116638, 0.12012652307748795, 0.1013733446598053, 0.22874201834201813, 0.10460557043552399, 0.2151293307542801, 1.3091375827789307, -0.18128421902656555, -0.1368490308523178, -0.6972786784172058, -0.22262081503868103, 0.24773700535297394, 0.22798217833042145, 0.5215164422988892, 0.462165504693985, -0.7598106861114502, -0.42574959993362427, 1.311579942703247, 0.22040003538131714, -0.35184526443481445, -0.922077476978302, 0.0026645269244909286, 1.8196864128112793, -0.45143088698387146, 0.3381997048854828, -0.5053101181983948, -0.21178872883319855, 0.34245917201042175, -0.17379909753799438, -0.47659891843795776, 0.7339169979095459, -0.014045657590031624, 0.657414972782135, -1.1396794319152832, -0.10843764245510101, -0.8985656499862671, 0.6379510760307312, 0.5994965434074402, -0.2588011622428894, 0.6172046065330505, -0.5016988515853882, -0.4788847267627716, 0.38049933314323425, 0.7163614630699158, 1.077988624572754, -0.5909916162490845, -0.291048139333725, 0.2931344211101532, -0.25110331177711487, 0.440860778093338, -0.2885383367538452, -0.2739451229572296, -0.04197153449058533, -0.06226629018783569, -0.024695761501789093, -0.3260886073112488, -0.38612908124923706, 1.4045594930648804, -0.0650588646531105, -0.014644207432866096, 0.5056565403938293, 0.3967008590698242, -0.7089483737945557, -0.16293954849243164, 0.8175820112228394, -0.049222130328416824, -0.4810844361782074, -0.6672517657279968, 0.6293818950653076, -0.11457131803035736, 0.1115008145570755, -0.1279831826686859, 0.7829995155334473, -0.5556145906448364, 0.1350933015346527, -0.4479713439941406, 0.9828287363052368, 0.36420738697052, 0.8115209341049194, 1.0100781917572021, -0.8657622933387756, -0.2800198793411255, 0.21370449662208557, -1.0807143449783325, 0.9398004412651062, 0.9971710443496704, 0.682111382484436, 1.2111947536468506, -1.608500599861145, -0.7748593091964722, 1.064772605895996, 0.3850220739841461, 0.7501604557037354, 1.2842884063720703, 0.02595975622534752, 0.19690699875354767, 0.9010447263717651, -0.024141274392604828, -0.18986469507217407, 0.8593630790710449, -0.07241885364055634, 0.20668184757232666, 0.4320538341999054, -0.9620253443717957, 0.49007394909858704, -0.41353005170822144, -0.33416175842285156, -0.03757266700267792, -0.27515751123428345, 0.33564493060112, 0.8050447702407837, 0.8947901725769043, 1.1138770580291748, -0.6477824449539185, -1.4225467443466187, -0.4269701838493347, -0.9552009701728821, -0.43513569235801697, -0.30830150842666626, -0.017967846244573593, -1.2848179340362549, 0.12325581908226013, 0.18566443026065826, 0.8675296902656555, 0.09142059832811356, -0.29915714263916016, -0.9304279088973999, -0.9522941708564758, 0.5814311504364014, 1.0100650787353516, 1.2853306531906128, 0.3491310179233551, 0.12238258123397827, 0.2969993054866791, 0.0027592675760388374, -1.0412999391555786, -0.21660977602005005, -0.39492908120155334, -0.1523171216249466, 0.1291699856519699, -0.9831119775772095, -0.9774779081344604, -0.4984112083911896, 0.860296905040741, -0.15329548716545105, 0.7114279866218567, 1.3736979961395264, 0.7636390328407288, -0.4057597219944, -0.10505283623933792, 0.36108526587486267, -0.9818481206893921, 0.45641860365867615, 0.4065711796283722, -0.5871210694313049, -0.8720294833183289, -0.9639929533004761, -0.3927574157714844, 0.2956124246120453, 0.05092671513557434, -0.653533935546875, 0.25735220313072205, 0.391786128282547, 0.7683533430099487, 0.19701291620731354, -0.5960956811904907, 0.32977914810180664, 0.10744846612215042, -0.4357607066631317, -0.7098144888877869, 0.4830838739871979, -0.2573852837085724, -0.6731739044189453, -0.647378146648407, 0.4815009534358978, -0.046579357236623764, 0.22090624272823334, -0.7355096936225891, 0.33664295077323914, 0.4729909896850586, 0.8052650094032288, 0.0742909386754036, -0.7598552107810974, 0.498544305562973, -0.8675050139427185, -1.364933729171753, -0.21379658579826355, 0.379388689994812, 0.31503525376319885, 0.21250241994857788, -0.17642681300640106, -0.586397647857666, -0.6942511796951294, -0.6005695462226868, -0.5096710920333862, 0.8426196575164795, 0.6711787581443787, 0.4640762209892273, -0.6581398248672485, -0.9485208988189697, -0.09090612083673477, -0.266482412815094, -0.18768592178821564, 1.0496716499328613, -1.4119760990142822, 0.22502148151397705, 0.8394845724105835, -1.1185376644134521, 0.3323296308517456, -0.8064054250717163, -0.12029440701007843, -0.5635603070259094, -1.2187035083770752, -1.7938872575759888, -0.027546720579266548, 0.8828881978988647, -0.8189393877983093, 0.163814514875412, 0.01912539266049862, -1.657249927520752, 0.47754859924316406, -0.1844365894794464, -1.282439947128296, 0.11491844058036804, -0.9735323786735535, 0.8268882036209106, 0.30906030535697937, 0.40421968698501587, 0.3143497109413147, 0.8571146726608276, -1.5514508485794067, -1.8112913370132446, -0.8809507489204407, -0.3300629258155823, 1.6927112340927124, 0.8515353202819824, -1.1095596551895142, 1.6505290269851685, 0.7138333916664124, 0.2799223065376282, -0.42891767621040344, 0.17250493168830872, -0.7794404625892639, 0.7784586548805237, -0.006277596578001976, 0.779304027557373, 0.0924186259508133, 0.9298365712165833, 0.03261018171906471, 0.9676975011825562, 0.8101527690887451, 0.6508079767227173, -0.2406863123178482, -0.3205887973308563, 0.1982281506061554, 1.0162009000778198, -0.9503466486930847, -0.7155446410179138, 0.04534483328461647, -0.1105373278260231, -0.9720780849456787, -0.27599045634269714, 0.9321170449256897, -0.7852932214736938, 0.21546395123004913, -0.8190532326698303, -0.08810790628194809, -1.061889886856079, 0.2923523187637329, 0.441101610660553, -0.4215868413448334, -0.4193446934223175, 0.06745753437280655, -0.1718205064535141, -1.3498951196670532, -0.10733896493911743, -0.18776549398899078, -0.9081313610076904, -0.579257607460022, 0.29192671179771423, -0.19933803379535675, 0.46842655539512634, -0.8597084283828735, 1.8365142345428467, 0.9329462051391602, -0.4857083857059479, -0.49602454900741577, 0.3034965395927429, 0.06399271637201309, 0.22002634406089783, -0.008926758542656898, -0.2806243300437927, -0.4691363275051117, 0.960817813873291, 0.5526793003082275, -0.3655320703983307, -0.12325786799192429, 0.33859968185424805, -0.1912776678800583, 0.6756606698036194, 0.08256790786981583, -1.0527740716934204, -0.8903005123138428, 1.1420135498046875, -0.24076686799526215, -0.23779435455799103, -0.2044035643339157, 0.8688881397247314, 0.5164538621902466, 0.11675306409597397, 0.7410739660263062, 0.5575613379478455, -0.23126645386219025, 1.1233969926834106, -0.4364689290523529, 0.28522467613220215, -0.6423443555831909, -0.4679809510707855, -1.579526662826538, -0.23416824638843536, -0.053746480494737625, -1.3945934772491455, 0.47107869386672974, -1.5466707944869995, -0.11426407098770142, -0.04411150887608528, -0.31471386551856995, -0.3747807443141937, -0.25356242060661316, -0.09893587231636047, -0.39174753427505493, 0.009557751007378101, 0.707322359085083, -0.6505456566810608, 1.8780865669250488, 0.27385690808296204, 0.4589586853981018, -1.4893611669540405, -0.631040096282959, 0.020372826606035233, 0.25233790278434753, -0.22535307705402374, -0.5445088148117065, 0.3947119116783142, -0.37637344002723694, -0.6765846610069275, 0.811454176902771, 0.05655393749475479, -0.019875796511769295, -0.24960368871688843, -0.9574522376060486, 0.5287690162658691, 1.1900129318237305, 0.8554303050041199, -0.4628116190433502, -0.6131361126899719, -0.6697168350219727, 0.22492945194244385, -0.7614531517028809, 0.10059762746095657, -0.08492197841405869, 1.1404047012329102, 0.40728116035461426, -0.10826338827610016, -1.2006336450576782, -0.7215741872787476, 0.6557312607765198, 0.8660933375358582, 0.11092986911535263, -0.6150161623954773, 0.2200472503900528, -0.4131951630115509, -1.6152973175048828, -0.0955420583486557, -0.03166854754090309, -0.23335187137126923, 0.04048338159918785, -1.029517412185669, -0.2045360505580902, -0.33519577980041504, 0.18422307074069977, 1.247144103050232, 0.3069649934768677, 0.6516494750976562, -0.23541699349880219, -0.4183211028575897, 0.4620426595211029, 0.15681444108486176, 0.0744512602686882, -0.5424284934997559, 1.4075905084609985, 1.951968789100647, 0.44544678926467896, 0.055988967418670654, -0.3753860890865326, 0.40126273036003113, -1.239211916923523, 0.5891422629356384, -0.7471246719360352, -0.7557960748672485, -0.24260155856609344], [-0.27126455307006836, 1.4204055070877075, -2.7603707313537598, -0.36966609954833984, 0.5414079427719116, 0.03351988643407822, 1.692652940750122, 0.03581439331173897, -0.22874332964420319, 0.21712128818035126, -0.05097811669111252, 0.48426613211631775, 0.2174031138420105, 0.5981935858726501, 1.5388914346694946, -0.33359989523887634, 0.15311914682388306, -0.20723754167556763, 0.38429388403892517, 1.4741804599761963, -0.7704984545707703, 0.06913083046674728, -0.46214166283607483, -0.32232949137687683, -0.31556880474090576, 0.9643077254295349, -1.6776752471923828, -0.11883589625358582, -0.5521221160888672, -0.7024518251419067, 0.8199463486671448, -0.8020931482315063, -0.14043119549751282, -0.4513685405254364, -0.7012286186218262, 0.020664209499955177, 0.5495238304138184, 1.2859866619110107, 0.6303220391273499, 0.61555016040802, 2.3267695903778076, -0.9967770576477051, 0.06726692616939545, -1.5051751136779785, 0.11865076422691345, -0.5106910467147827, 0.41813188791275024, -0.29501011967658997, -0.002790156751871109, -0.2710152268409729, -0.41943955421447754, -1.7863657474517822, 0.3849347233772278, 0.8964595794677734, 1.0058112144470215, -0.22077339887619019, 0.4252074956893921, -0.2716616094112396, 0.012712767347693443, -0.1574619710445404, 0.6509988307952881, -0.23954465985298157, -0.47071418166160583, 0.0517975389957428, 0.47928789258003235, -0.24680151045322418, -0.22762365639209747, 0.16439567506313324, 0.40551644563674927, 0.33386534452438354, 0.2353050261735916, 0.3177803158760071, -0.8041877150535583, -0.06542894244194031, -1.483477234840393, 0.4837855398654938, 0.025836003944277763, 1.0758132934570312, -0.3753807842731476, 0.518731415271759, -0.40778258442878723, -0.7078405022621155, 1.32575261592865, -0.5520093441009521, 1.1831327676773071, -0.17704156041145325, -0.016124200075864792, -0.3602007329463959, 0.028276989236474037, 1.8050283193588257, 0.5672008395195007, 0.14143678545951843, 0.690170168876648, 0.43531787395477295, -0.056369658559560776, -0.2907167375087738, 0.08575654029846191, 0.5788667798042297, -0.9100755453109741, -0.9347471594810486, 0.2528732419013977, -0.6491098999977112, 0.34969258308410645, -0.21429158747196198, -0.5712910294532776, 0.9197987914085388, 0.10267935693264008, 0.028287487104535103, -0.24548043310642242, -0.3654136061668396, -0.2926460802555084, 0.2770884037017822, -0.44083172082901, -1.9569393396377563, -0.5688857436180115, 0.44806399941444397, 1.6847662925720215, -0.2536037266254425, -0.24053868651390076, 0.8318824768066406, 0.17300792038440704, -0.148685023188591, -0.09485914558172226, 0.44796890020370483, 0.6454876661300659, 0.4802975654602051, -0.8901417255401611, -0.07849922776222229, 0.28192800283432007, -0.19539833068847656, -0.5095685124397278, -0.35688698291778564, 0.15880484879016876, 0.6920173168182373, -0.5622599124908447, 1.795918583869934, -0.3595709502696991, -0.5178358554840088, -0.7759663462638855, 0.26543664932250977, 1.0183879137039185, 0.047449301928281784, -0.13118068873882294, -1.0461162328720093, -0.5209441184997559, -0.5706169605255127, 0.28753790259361267, -0.8707983493804932, -0.2741161286830902, 0.9894559979438782, -0.3113954961299896, 0.4797959625720978, -0.4353069067001343, 0.6757607460021973, 0.9097854495048523, -0.16856931149959564, 0.08594570308923721, 0.35504773259162903, 0.5997907519340515, 0.15501846373081207, 0.40545979142189026, 0.07538788765668869, -1.1955536603927612, 0.04935455694794655, 0.1710633933544159, -0.8562132120132446, 0.3616960644721985, 0.4709510803222656, 0.054893311113119125, 0.8718758821487427, -0.9126100540161133, -0.043774791061878204, -0.13846492767333984, 0.5903709530830383, -0.1716785430908203, -0.7806456089019775, 0.741488516330719, -0.31563061475753784, -0.797400176525116, -1.0365338325500488, 0.27671998739242554, -0.3424879312515259, 0.6107597947120667, -0.6533646583557129, 0.522609531879425, -0.9380077123641968, 0.6670300960540771, -0.415005087852478, -0.5538733601570129, -0.8956972360610962, -0.6721590757369995, -0.2782895267009735, -0.7442362308502197, 0.6529960036277771, -1.1617000102996826, -0.6777943968772888, 1.129896879196167, -1.0209929943084717, 0.002009933814406395, -0.21571916341781616, 0.7969874143600464, -0.6652524471282959, -0.2325042188167572, 0.3679841458797455, -0.2772694528102875, 1.6032063961029053, -0.9298760294914246, 0.5662550330162048, -0.8417209982872009, 0.1526896208524704, 1.1625198125839233, -0.47767403721809387, -0.3198876678943634, 0.8606266975402832, -0.43780848383903503, -1.2244023084640503, 0.06069481745362282, -0.08731678873300552, -0.12970784306526184, 0.18263213336467743, -0.1607947200536728, 0.20058715343475342, -0.05694277212023735, -0.11482272297143936, 0.46108174324035645, 0.283671110868454, -0.2492290884256363, -0.5042325258255005, -0.6175456047058105, -0.21794407069683075, -0.8297945857048035, -1.245564341545105, 0.8025570511817932, 0.4557262361049652, -1.3435674905776978, 0.45649272203445435, 0.9887036681175232, -0.24914363026618958, 0.4219983220100403, 0.6785964965820312, 0.5693473219871521, -0.09004176408052444, 0.42562252283096313, -0.08504383265972137, -0.5459009408950806, 0.017892936244606972, 0.09988132119178772, -0.7570430636405945, 0.316083163022995, 1.1627633571624756, 0.22069156169891357, -0.21309718489646912, 1.1699740886688232, 0.4255222976207733, 0.296448677778244, -0.6798222064971924, -0.3284243643283844, -0.07033555954694748, -0.21182632446289062, 1.7438055276870728, 0.7364798188209534, -0.7989477515220642, -0.06192167103290558, 0.017506234347820282, -0.4769977033138275, -0.147067129611969, -0.4197397828102112, 0.21065989136695862, -0.4244246780872345, 0.4738345146179199, 0.27708378434181213, 0.8733477592468262, -0.6105039119720459, 0.60333251953125, -0.0213046595454216, -0.45426517724990845, -0.1488744467496872, 0.4225967526435852, -0.0667470321059227, 0.4101427495479584, 0.00047632399946451187, -0.4024968445301056, -0.23264279961585999, 0.05961637943983078, 0.6727092266082764, 0.33681347966194153, 0.3838464319705963, 0.23625428974628448, 0.1363690197467804, -0.2730732262134552, 0.8361780047416687, 0.2660709321498871, 0.776251494884491, 0.6946286559104919, -0.029068723320961, 0.5656328201293945, 0.5289944410324097, -1.1228824853897095, -0.42975476384162903, 0.053147342056035995, 0.06342577189207077, 1.1447882652282715, 0.8521562814712524, 0.9264078736305237, -0.31515052914619446, 0.5470147132873535, -0.10229766368865967, -0.3664518892765045, -0.36560848355293274, -0.8477689027786255, -1.1408733129501343, -0.7154470086097717, -0.3315213918685913, -0.4215153157711029, -0.25712430477142334, 0.3895082175731659, -0.594157338142395, 0.9028972387313843, 0.8647986650466919, -0.08807799220085144, -0.4211714267730713, -0.7242050766944885, -0.3331477642059326, -1.0179535150527954, 0.41516831517219543, 0.4728906750679016, -0.7011956572532654, 0.18446224927902222, 0.27789780497550964, -0.3210132122039795, 0.2582368850708008, -0.27624037861824036, -0.016324343159794807, -0.8382138013839722, -0.4360851049423218, -0.27692073583602905, 1.5297493934631348, 0.13204948604106903, -0.8652481436729431, -0.1361900269985199, 0.3571113348007202, 0.6143853664398193, -0.14409036934375763, -1.0123958587646484, 0.5610866546630859, -0.5496764779090881, -0.5027148723602295, -0.07601764053106308, 0.8123314380645752, -0.35892799496650696, -0.5218298435211182, -0.747914731502533, -0.10581110417842865, -0.28066137433052063, -0.4786018431186676, -0.2420654594898224, 0.5250046253204346, 0.04618235304951668, -1.1720547676086426, -0.12303482741117477, 0.7510298490524292, -0.1376407891511917, -0.4825185537338257, -1.412491798400879, 0.8394222259521484, -0.15418867766857147, 0.8365978002548218, 0.49140486121177673, 0.6421894431114197, -0.02841970883309841, 0.5021249055862427, -0.3320807218551636, -0.13860945403575897, 1.2023006677627563, -0.05204376205801964, -0.5987045168876648, -0.9222835302352905, 0.01664857566356659, -0.6760254502296448, 0.06425673514604568, 0.18812155723571777, 0.6022211313247681, -0.5499002933502197, -0.5586665868759155, 0.627121090888977, -0.031169217079877853, 0.6681514978408813, -0.0926709845662117, -0.12762810289859772, 0.7786080837249756, -0.37584707140922546, -0.789384663105011, -0.3526287078857422, -0.023075861856341362, 0.11759160459041595, -1.5838099718093872, 0.5366274118423462, 0.05897674337029457, 0.930495023727417, 1.01810622215271, -0.6417051553726196, 0.35428622364997864, -0.11621145904064178, 0.5195083618164062, 0.6290633678436279, 0.08116994053125381, 0.24294275045394897, 0.44959187507629395, -0.18076889216899872, -0.4399684965610504, 0.09695112705230713, 1.2172842025756836, -0.4340626299381256, -0.27543404698371887, -0.3529658317565918, 0.7515922784805298, -0.2217165231704712, -0.2796873450279236, 0.08922267705202103, 0.7075269818305969, -0.44361910223960876, 0.5684765577316284, 0.18934597074985504, -0.346213698387146, 0.7762260437011719, 0.745755672454834, 0.5682329535484314, 0.4754563271999359, 0.06980326026678085, -0.39702659845352173, -0.12812180817127228, 0.06568611413240433, 0.1205650269985199, -0.3804091513156891, 0.07207480818033218, 1.1128534078598022, -0.7102223634719849, 0.1939305067062378, 0.33858388662338257, 0.6363641023635864, 0.49423256516456604, -0.6066510677337646, -0.283778578042984, 0.34522345662117004, 0.5210232734680176, 1.6609606742858887, 0.372791588306427, -0.45461589097976685, -1.7823692560195923, 0.1628509908914566, -0.7160527110099792, 0.047135595232248306, 1.3001892566680908, -0.3593718409538269, 1.2785028219223022, -1.307650089263916, 0.22199870645999908, 1.3301037549972534, 0.09425926208496094, 0.421454519033432, 1.1059832572937012, 0.3868049085140228, -0.6367665529251099, 0.3194023668766022, 0.3499726355075836, -0.2884792685508728, 0.15295836329460144, 0.19454464316368103, 0.09075167030096054, 0.8148500919342041, -0.9237508177757263, 0.7352838516235352, -0.8729771971702576, -0.3705766797065735, -0.6901242733001709, -0.26516276597976685, 0.4501054883003235, 0.2049088180065155, 0.36856263875961304, 0.6832677125930786, 0.5913445949554443, -1.2447212934494019, -0.04630863294005394, -0.4110715985298157, 0.16948367655277252, 0.02279573492705822, 0.7890438437461853, -0.16428743302822113, -0.48439592123031616, -0.30340349674224854, 0.18518538773059845, -0.3524016737937927, -0.6463712453842163, -0.4668451249599457, -1.0324530601501465, 0.27191752195358276, 0.3960629999637604, 1.0365239381790161, 0.7134268283843994, -0.5998398065567017, 0.7741789817810059, 0.11827684193849564, -0.9183720350265503, -0.5549936890602112, 0.059286631643772125, 0.2880789637565613, -0.20864379405975342, -1.4763327836990356, -0.11510305851697922, 0.9745237827301025, 0.319377064704895, 0.11508526653051376, 0.8811522126197815, 0.7181288599967957, 1.3590755462646484, -0.6296356320381165, -0.1394677460193634, 0.8564124703407288, -0.3093474507331848, 1.3504942655563354, 0.5070722103118896, -0.19764547049999237, 0.059893347322940826, -1.0650475025177002, -1.444607138633728, 0.6021900177001953, -0.4066622257232666, 0.12482031434774399, 0.4895642101764679, -0.12059850990772247, 0.611042857170105, 0.3063957989215851, -0.9195733070373535, -0.49776455760002136, -0.03146013990044594, -0.43931224942207336, -1.1820396184921265, 0.8209095597267151, -0.09206646680831909, 0.6165758967399597, -0.2977162301540375, -0.13888581097126007, -0.8989350199699402, 0.1265878826379776, 0.022636080160737038, 1.025710105895996, -0.6946129202842712, 0.4561437666416168, 0.2600007951259613, -0.0527879074215889, 0.49763503670692444, -0.24340789020061493, -1.048459768295288, 0.047011468559503555, 0.7070556879043579, 0.2768310308456421, -0.15746629238128662, 0.3016342222690582, 0.005043313838541508, -0.6100537776947021, -0.46570640802383423, 0.08599039167165756, 0.8005018830299377, 0.9001806378364563, 0.8507245182991028, 0.29207995533943176, -0.5411831140518188, -0.3823476731777191, 0.42451804876327515, 0.25075939297676086, 0.38520142436027527, -1.0615031719207764, 0.2607690393924713, 0.14193782210350037, -0.8448696136474609, -0.031806930899620056, -0.28781354427337646, -0.30844324827194214, -0.8342982530593872, -0.4939126670360565, -0.7160553336143494, 0.2367245852947235, 1.0245391130447388, -1.3166544437408447, 0.9821129441261292, -0.4398815929889679, -1.4628899097442627, 0.1582803577184677, 0.2398822009563446, -1.3651268482208252, 0.19186550378799438, -1.3754112720489502, 0.8676021099090576, -0.3930460512638092, -0.3207346796989441, -0.37814193964004517, 0.5945252180099487, -1.8638466596603394, -0.9755585789680481, -0.7708756923675537, 0.669083297252655, 1.3503437042236328, 0.7594147324562073, -1.3883472681045532, 1.434674620628357, 0.3779565393924713, 0.11288836598396301, -0.4413423538208008, 0.12475667893886566, -0.22781182825565338, 0.16037066280841827, 0.9723156690597534, 0.324931800365448, 0.6535016298294067, 1.2790610790252686, 0.1888750195503235, 0.8768635392189026, 0.013594633899629116, 0.59440016746521, -0.9314471483230591, -0.9278112053871155, -0.03318343684077263, 0.861765444278717, -0.9316214323043823, -0.47234994173049927, 0.30574190616607666, -0.4943076968193054, -0.9712410569190979, -0.04848531633615494, 0.37644147872924805, -0.37306854128837585, -0.1225656270980835, -1.0574506521224976, 0.6420949697494507, -0.8374655842781067, 0.6642728447914124, 0.3083961606025696, -0.8904512524604797, -0.6467820405960083, -0.12049861252307892, 0.1253897249698639, -1.3143340349197388, -0.06532050669193268, -0.028626691550016403, 0.027619579806923866, -0.4412342309951782, 0.5408290028572083, 1.5700711011886597, 0.8016554117202759, -0.5969220399856567, 1.542006254196167, 0.752296507358551, -0.15662986040115356, -0.2382466197013855, -0.2806839048862457, 0.5748267769813538, 0.3720749318599701, -0.1915232539176941, -0.2135384976863861, -0.29828837513923645, 1.408165454864502, 0.20670677721500397, -0.503291666507721, 0.11919137090444565, 0.24347037076950073, -0.893700897693634, 0.1967117041349411, 0.10577224940061569, -0.8563464879989624, 0.152522012591362, 1.780380368232727, 0.47618210315704346, -0.5013779997825623, -0.4463942050933838, 0.8119057416915894, 0.31148213148117065, 0.1351083666086197, 0.7727321982383728, 0.8948339819908142, -0.4451146423816681, 0.018981056287884712, 0.05489636957645416, 0.0640038475394249, 0.4362141191959381, -0.08778456598520279, -1.2392066717147827, -0.5215568542480469, -1.0184592008590698, -0.5166429877281189, 0.41215065121650696, -0.49672141671180725, -1.0207977294921875, 0.3354831337928772, 0.1471710056066513, -0.06930645555257797, -0.7972018718719482, 0.2841019332408905, 0.40230634808540344, -0.15274758636951447, 0.6903660297393799, -0.6875993609428406, 1.5580517053604126, -0.5996295809745789, 0.28477177023887634, -0.4840907156467438, 0.012800904922187328, 0.4819152057170868, -0.5452135801315308, -0.6739383935928345, -0.22940510511398315, 0.6878545880317688, -0.5415021777153015, -1.112756371498108, 0.39218559861183167, 0.2683112621307373, 0.059652648866176605, 0.00020960858091711998, -0.6262436509132385, 0.446638822555542, 0.37457898259162903, 0.7193835377693176, -0.5796803832054138, -0.26775121688842773, -0.5167453289031982, 0.25916406512260437, -0.6666073203086853, 0.8143843412399292, -0.4077480137348175, 0.35423582792282104, 0.5686460733413696, -0.8402832746505737, -0.03227962926030159, -0.4791136682033539, 0.2491896003484726, -0.6564251184463501, 0.3171997666358948, 0.29636821150779724, 0.526117205619812, -0.9023603200912476, -0.3669852614402771, -0.2485434114933014, 0.16665934026241302, -0.11067499220371246, 0.6892193555831909, -0.3030543327331543, 0.0553523413836956, 0.05646940693259239, -0.175713449716568, 0.30067694187164307, -0.26075488328933716, -0.24176020920276642, -0.51646488904953, -0.8164414167404175, -0.6566855907440186, -0.21253500878810883, 0.10517794638872147, -0.3643183708190918, 0.9144272208213806, 1.2625113725662231, -0.031270936131477356, 0.6138994693756104, -0.23353853821754456, 0.7937722206115723, -1.462949275970459, -0.2235020101070404, -0.5432735681533813, -0.8597092032432556, -0.6404229402542114], [-0.8019827008247375, 0.9743154644966125, -2.2075021266937256, -0.028578465804457664, 0.9990875124931335, 0.2641306519508362, 1.2024177312850952, -0.6109508872032166, 0.2760581374168396, -0.7076370716094971, -0.8062498569488525, 0.2986902892589569, -0.607317328453064, 0.5413205623626709, 0.9787155985832214, 0.8857557773590088, 0.9225494861602783, -0.589924693107605, 0.13310961425304413, 1.0708954334259033, -1.1182191371917725, -0.15512031316757202, 0.43735963106155396, -0.3449607789516449, -0.6615442037582397, 1.354965090751648, -0.6087889075279236, 0.2653282880783081, -0.9135334491729736, -1.4119267463684082, 0.4622279107570648, -0.22578561305999756, 0.2755205035209656, -0.15753701329231262, -1.7109572887420654, -0.14017263054847717, 1.4489061832427979, 1.087357759475708, 0.5184656977653503, 0.7351152300834656, 2.140727996826172, -0.8457217812538147, -0.05869869515299797, -2.273624897003174, 0.2857450842857361, -0.48869800567626953, 0.8951323628425598, -0.6511756777763367, -0.3082476854324341, -0.17298227548599243, 0.10471627116203308, -1.2533674240112305, 0.43408888578414917, 1.188018560409546, 1.1631414890289307, -0.8445369005203247, 0.4705062806606293, 0.4634610414505005, 0.17432639002799988, -0.37203341722488403, 1.2815951108932495, 0.06885372847318649, -0.7206107974052429, 0.9010832905769348, -0.16258394718170166, -0.8310947418212891, -0.16413195431232452, 0.06318922340869904, -0.17671555280685425, -0.3765411972999573, 0.1006968766450882, 0.6472324132919312, -0.995861291885376, 0.3341163396835327, -0.4921479821205139, 0.32036635279655457, 0.6288520097732544, 0.6717317700386047, 0.7077248692512512, -0.12771886587142944, -0.6396396160125732, -0.010351755656301975, 1.0747041702270508, -1.3487024307250977, 0.2297263741493225, 0.3435591757297516, 0.5082234144210815, -0.6817061305046082, -0.40442293882369995, 1.02720308303833, 0.3729609251022339, -0.008477002382278442, 0.6117235422134399, -0.10573485493659973, -0.11448953300714493, -0.39113450050354004, 0.38525861501693726, -0.9220936894416809, -0.48259401321411133, -1.1922502517700195, -0.37283238768577576, -0.7518835067749023, 1.141127109527588, 0.3258724808692932, -0.7645424604415894, 1.107706904411316, 0.08573387563228607, -0.3299536406993866, -0.24743425846099854, 0.38750869035720825, -0.02945059724152088, 0.10430101305246353, -0.6105360388755798, -1.5841889381408691, -0.9655799269676208, 0.40075284242630005, 1.2735415697097778, -0.2920615077018738, 0.5676789283752441, 0.6685730218887329, 0.1730315238237381, -0.017902661114931107, 0.09442701935768127, 0.8350534439086914, 0.6061978340148926, 0.30517852306365967, -0.9023731350898743, -0.2579834461212158, -0.1741713136434555, -0.1897912323474884, 0.47407999634742737, -0.5563366413116455, -0.29250338673591614, 1.6558055877685547, -1.3504835367202759, 1.0280488729476929, -0.5059735178947449, -0.8510023355484009, 0.17770671844482422, -0.15770359337329865, 1.0996826887130737, -0.25149938464164734, -0.12093982845544815, -1.0344502925872803, -0.31465381383895874, -0.4671645760536194, 0.4592282772064209, -0.45306551456451416, -0.771796703338623, 0.48622503876686096, -0.5317003130912781, 0.9179229140281677, -0.2723086178302765, 0.9246535301208496, 0.9868535399436951, -0.5328015685081482, 0.06285718083381653, 0.5418053269386292, 0.6106125712394714, -0.1029515489935875, 1.0571383237838745, -0.5429098606109619, -0.809411346912384, 0.19452890753746033, 0.9296225905418396, -0.07920002937316895, 0.5929285883903503, 1.1456302404403687, -0.24951446056365967, 1.227138876914978, -0.7163388133049011, -1.0012495517730713, -1.166683554649353, 0.10315848141908646, 0.3457266390323639, 0.010637743398547173, 1.086449384689331, -0.3372516930103302, -1.6693795919418335, -1.5268875360488892, 0.3417929708957672, -0.45155027508735657, 0.605817437171936, -0.6482391357421875, 0.8376612663269043, -0.7687758207321167, 0.19890187680721283, -0.43624749779701233, -0.09567652642726898, -1.3023474216461182, -1.050880789756775, -0.08045191317796707, -1.0419940948486328, 0.4528643488883972, -0.5055195689201355, -0.6218897700309753, 0.34446361660957336, -1.3187063932418823, -0.6512091755867004, -0.2238391935825348, -0.3487032353878021, -0.8353832960128784, -0.2954736053943634, 0.34984290599823, -0.12218590080738068, 1.113106608390808, -0.7421488165855408, 0.9631614089012146, -0.682835578918457, -0.706174373626709, 0.7131264805793762, -0.2681240439414978, -0.7320677042007446, 0.741270124912262, 0.28246939182281494, -1.585548996925354, 0.2417972832918167, 0.18124879896640778, -0.2293952852487564, 0.45424044132232666, 0.33700013160705566, 0.03164143115282059, 0.5235534906387329, 0.0654950812458992, 0.31050965189933777, -0.28586098551750183, -0.5830197930335999, -0.9550859332084656, -0.43471774458885193, -0.22305765748023987, -0.846778154373169, -1.0658328533172607, 0.5080899596214294, 0.5840310454368591, -1.344727635383606, -0.16269727051258087, -0.1397857815027237, 0.4029427468776703, -0.04484591633081436, 1.3040541410446167, 0.2492377907037735, 0.5178385972976685, -0.07754268497228622, -0.14157018065452576, -0.5143257975578308, 0.669270932674408, 0.2720627188682556, -0.05008350685238838, 0.2891063690185547, 0.45160073041915894, 0.7465627789497375, -0.12255477905273438, 0.44770440459251404, 0.18732589483261108, -0.186721533536911, -1.2487149238586426, -1.0635323524475098, -0.3417397439479828, -0.4489329159259796, 1.6690375804901123, 0.860916793346405, -0.9995710849761963, -0.11556706577539444, 0.037443626672029495, -0.3928033113479614, -0.44889014959335327, -0.27726462483406067, 0.5816503167152405, 0.2412804216146469, 0.02156645432114601, -0.14959576725959778, 0.9369211792945862, -1.0700242519378662, 0.8331969380378723, -0.5848195552825928, 0.09751537442207336, 0.06918856501579285, -0.05832681059837341, 0.1453053057193756, 1.0989047288894653, 1.0016039609909058, -1.3414486646652222, -0.4067192077636719, -0.11880069226026535, 1.1129885911941528, 0.18423190712928772, 0.26665419340133667, 0.1446211040019989, 0.9592989683151245, -1.104137659072876, 1.0190855264663696, 0.04270823672413826, 0.2660721242427826, 0.712179958820343, -0.006513659842312336, 0.5078089237213135, 1.1527047157287598, -0.7675036191940308, -0.8777860999107361, 0.34201180934906006, 0.33318328857421875, 1.9298638105392456, 1.1105015277862549, 0.8437707424163818, 0.21459552645683289, 0.16583463549613953, -0.7483751177787781, -0.7446078062057495, -0.9321795701980591, -0.6204695105552673, -1.1717183589935303, -0.5338450074195862, -0.27021366357803345, 0.03193146362900734, 0.4895222783088684, 0.7775918841362, -0.40604057908058167, 0.37521177530288696, 0.977807879447937, -0.27695825695991516, -0.30080702900886536, 0.28295254707336426, 0.29732656478881836, -0.8036602139472961, 0.5392928123474121, 1.7714929580688477, -0.9319128394126892, 0.252203106880188, -0.03541933000087738, 0.146175354719162, 0.4424915909767151, -0.47982728481292725, 0.957507848739624, -1.4140743017196655, -1.0181868076324463, 0.05959934741258621, 1.3358420133590698, -0.016421958804130554, -0.1320848912000656, -0.24678966403007507, 0.17020376026630402, 0.7112590670585632, 0.16359718143939972, -0.580790638923645, 0.9973020553588867, -0.16449280083179474, -0.9244052767753601, 0.3772658109664917, 0.26318368315696716, -0.026120830327272415, -0.30464494228363037, -1.0998413562774658, -0.15453875064849854, -0.21423405408859253, -0.49818235635757446, -0.3071652948856354, 0.6947267055511475, 0.6907126307487488, -0.4683656096458435, 0.013350787572562695, 0.6072819828987122, 0.17729708552360535, 0.4344325661659241, -1.1164638996124268, 0.7153119444847107, 0.8314102292060852, 1.572134256362915, 0.1862807273864746, 0.4672446548938751, 0.015209341421723366, 0.5532901883125305, -0.40796199440956116, -0.01962488703429699, 1.2236324548721313, 0.18245172500610352, 0.18636544048786163, -0.22296938300132751, -0.14394612610340118, 0.04838304966688156, -0.09594597667455673, -0.3711492419242859, 0.3862607479095459, -0.9196776747703552, -0.36270323395729065, 1.287343978881836, 0.5529049634933472, 0.4319341778755188, 0.07585279643535614, -0.2955819368362427, 0.7391226887702942, -0.6140038371086121, -0.6392098069190979, -0.42662283778190613, 0.12533046305179596, 0.2363526076078415, -1.2164148092269897, -0.47898632287979126, 0.26666754484176636, 1.3130385875701904, 1.1980416774749756, -0.47268426418304443, 0.06842553615570068, -0.5998653173446655, 0.24439691007137299, 0.5460701584815979, -0.32235875725746155, -0.01688789762556553, 0.8131734132766724, -0.2554316818714142, 0.05203985795378685, 0.04423893615603447, 1.1492754220962524, -0.2285158485174179, 0.41473388671875, 0.6917587518692017, 0.014836065471172333, -0.8312917351722717, -0.2471173107624054, -0.5670231580734253, 0.5790186524391174, -0.8046207427978516, 0.05533215031027794, 0.07681267708539963, -0.4531422257423401, 1.4293383359909058, 0.010042737238109112, 0.49345871806144714, 0.2375609427690506, -0.2911008596420288, -0.5111119747161865, 0.13041049242019653, 0.30379989743232727, -0.2132926732301712, -1.5306756496429443, -0.16714243590831757, 0.5379838943481445, -0.3282974660396576, 0.09475039690732956, -0.04856628552079201, 0.939685046672821, 0.07461889833211899, 0.033330753445625305, 0.2372380942106247, 0.4738108217716217, 0.6836277842521667, 1.3302345275878906, 0.5515140891075134, -0.5154459476470947, -0.7592255473136902, 0.7405930161476135, -0.6478022933006287, 0.3543834388256073, 0.2255915105342865, -0.13945965468883514, 1.7554720640182495, -1.503860354423523, 0.16301323473453522, 0.6215848326683044, 0.4427048861980438, 0.23921950161457062, 0.7027128338813782, -0.18228483200073242, -0.37078458070755005, -0.10763324052095413, 0.0744081512093544, 0.25413239002227783, 0.35957950353622437, 0.564611554145813, -0.25346025824546814, 0.23894020915031433, -1.3168877363204956, 0.25324225425720215, -0.5151736736297607, -0.7594373226165771, -0.6754105091094971, -0.7104495167732239, -0.004042758606374264, 0.22793026268482208, 0.48786476254463196, 1.2161586284637451, 0.31127285957336426, -0.6211538910865784, 0.34554529190063477, -0.39162322878837585, 0.6643675565719604, -0.6823351383209229, -0.3856814205646515, -0.22999362647533417, 0.0656554326415062, -0.03495023027062416, -0.054739370942115784, -0.5767207741737366, -0.6439195275306702, -0.636308491230011, -2.03709077835083, 0.9733012914657593, 0.9099656939506531, 0.667296826839447, 0.4903648793697357, -0.20340596139431, 0.7456239461898804, -0.26921963691711426, -0.8514253497123718, -0.5270469784736633, -0.5134000182151794, -0.20127859711647034, 0.31009748578071594, -1.4064053297042847, -0.12923043966293335, 0.2808014452457428, 0.39545097947120667, -0.10530965775251389, 0.8119879364967346, 1.0715564489364624, 1.1009563207626343, -0.3306947946548462, -0.14292556047439575, -0.146733358502388, -0.531035304069519, 0.4670233428478241, 0.3521570861339569, -0.6420719027519226, 0.2769503891468048, -0.454988032579422, -1.145504117012024, 1.0780457258224487, -0.4442288279533386, -0.5461680293083191, 1.1015301942825317, 0.6556354761123657, 0.5622009634971619, 0.7923576831817627, -1.0209966897964478, 0.1841762512922287, 0.12050668150186539, -0.9253551363945007, -1.1530277729034424, 1.2750059366226196, 0.0769883394241333, 0.5165188312530518, 0.06148192659020424, -0.01687551662325859, -0.19482053816318512, 0.31044700741767883, 0.08230364322662354, 0.6906914710998535, 0.028340518474578857, 0.6372569799423218, 0.2077210545539856, 0.43509194254875183, 0.5202748775482178, -0.5891191363334656, -0.44048041105270386, 0.15794363617897034, 1.3497345447540283, -0.0512659065425396, 0.33935773372650146, 0.2258719801902771, -0.4463346302509308, -0.17901571094989777, -0.9334701299667358, -0.021039459854364395, 0.42223772406578064, 0.6355031728744507, 0.6111672520637512, -0.6716721057891846, -1.1000337600708008, 0.09675414860248566, -0.6132067441940308, 0.6068689823150635, 0.6745946407318115, -1.1582971811294556, -0.017490610480308533, 0.5184943079948425, -0.7748467326164246, -0.2858332395553589, -0.6686301231384277, -0.3282543122768402, -1.0640114545822144, -0.7015103697776794, -0.9376943707466125, -0.1845022588968277, 0.5190024971961975, -1.0593430995941162, 1.0351216793060303, 0.4654653072357178, -1.617812156677246, 1.0016365051269531, -0.047026608139276505, -1.4802781343460083, 0.3195923864841461, -1.8990559577941895, 1.1424305438995361, 0.10390472412109375, 0.2388329803943634, 0.1468946635723114, 0.41918089985847473, -1.6168744564056396, -0.9508799910545349, -0.9692357778549194, 0.3448270559310913, 0.4860619902610779, 0.7193048596382141, -0.4272352457046509, 1.5116688013076782, 0.5560277104377747, -0.7502591609954834, -0.4045327305793762, -0.20252752304077148, -0.7632628679275513, 0.28436723351478577, 0.3157872259616852, 1.1176427602767944, 0.6222032904624939, 1.4692118167877197, 0.8651991486549377, 0.8409126400947571, 0.42453452944755554, 0.7339817881584167, -0.9463143348693848, -0.6495490670204163, -0.5047256350517273, 1.2564301490783691, -0.4111640453338623, -0.895751953125, 0.25170615315437317, -0.6608355641365051, -1.8008602857589722, 0.31392350792884827, 0.9546137452125549, -0.2053345888853073, 0.6829691529273987, -0.4815428853034973, 0.24824611842632294, -1.1611735820770264, 0.33518314361572266, 0.5811808705329895, -0.8082814812660217, -0.14067742228507996, 0.11932896077632904, -0.03226717934012413, -0.9767940044403076, 0.2387133240699768, 0.3268294334411621, -0.3132307231426239, -0.32348495721817017, 0.3407749831676483, 0.4086265563964844, 0.4506916105747223, 0.07949689030647278, 1.330276608467102, 0.6343831419944763, -0.7034854888916016, 0.5318670868873596, 0.2475198656320572, -0.205611452460289, 0.14801035821437836, -0.24300312995910645, -0.8696665167808533, -0.45165497064590454, 1.488570213317871, -0.10507810860872269, -0.32803410291671753, -0.14471600949764252, -0.2050849348306656, -0.3161359131336212, 0.34089890122413635, 0.41980981826782227, -0.9204694628715515, -0.544815719127655, 0.8297111392021179, 0.04657980427145958, -0.34615498781204224, -0.16347333788871765, 0.2004002183675766, 0.29141199588775635, -0.27174073457717896, 0.22816787660121918, 0.0332970954477787, -0.4055551290512085, 0.47067248821258545, 0.3551028370857239, 0.21417930722236633, 0.3179836869239807, -0.27788928151130676, -0.9454463720321655, 0.048752300441265106, -0.30562064051628113, -0.8669061064720154, 1.2886582612991333, -1.2745252847671509, -0.5359254479408264, 0.056770455092191696, 0.19769635796546936, -0.08188741654157639, -0.6904200911521912, -0.01967700943350792, 0.2231205254793167, 0.212629035115242, 1.05434250831604, -0.32150301337242126, 1.2965062856674194, 0.0915256142616272, 0.3595641851425171, -0.8363024592399597, -0.6194124817848206, -0.20769251883029938, -0.5257285833358765, 0.24816814064979553, -0.13311371207237244, 1.1385260820388794, -0.44570985436439514, -1.0867449045181274, 0.2737440764904022, 0.032067444175481796, 0.22966979444026947, 0.015483030118048191, -0.4107957184314728, 1.0697647333145142, 0.5857301354408264, 0.7466635704040527, -0.2622047960758209, -0.9297716021537781, -0.6114742755889893, 0.6694255471229553, -0.24610033631324768, 0.5522996783256531, 0.44477683305740356, 1.0034269094467163, 0.11686000227928162, -0.670767605304718, -0.9050326943397522, -0.7811062932014465, 0.17287372052669525, -0.23404568433761597, 0.17989806830883026, -0.20566734671592712, 0.4463947117328644, -0.4769253432750702, -1.0495810508728027, -0.004278769250959158, -0.044803086668252945, -0.1974366009235382, 0.5103561282157898, -1.2707370519638062, -0.38392141461372375, -0.290556937456131, -0.14754395186901093, 0.48812681436538696, 0.14568760991096497, -0.09268724173307419, 0.0648367777466774, -1.1418228149414062, 0.10900641977787018, -0.15877699851989746, -0.6400717496871948, -0.34160465002059937, 1.1621359586715698, 1.494280219078064, 0.11294209212064743, 0.2873084843158722, -0.4453684985637665, 0.02384364604949951, -0.5670598745346069, -0.24357599020004272, -0.3472077250480652, -0.28211846947669983, -0.731734037399292], [0.08484591543674469, 1.2842211723327637, -2.494459629058838, -0.2691342234611511, 0.9593008160591125, 1.2141339778900146, 0.7783145904541016, -0.5220248699188232, 0.021248307079076767, 0.07612653076648712, 0.11341968923807144, 0.02889540046453476, -0.18276584148406982, 0.5891174077987671, 0.950560986995697, 0.2973381280899048, 0.17736689746379852, -0.44735851883888245, 0.2789739966392517, 1.0250556468963623, -0.9275785684585571, -0.3783005475997925, -0.13244923949241638, -0.4177771806716919, 0.25006142258644104, 1.2028560638427734, -1.2439424991607666, -1.1726075410842896, -0.7825995683670044, -1.3455228805541992, 0.30218958854675293, -0.33016088604927063, -0.33578526973724365, -0.10138016939163208, -0.5414050817489624, 0.4768359065055847, 1.8972136974334717, 1.439081072807312, 1.006560206413269, 0.26607760787010193, 1.237649917602539, 0.018603308126330376, -0.13622966408729553, -1.2509666681289673, 0.21513113379478455, -0.3609869182109833, 0.48635441064834595, -0.7471303939819336, 0.12280309945344925, -0.30147650837898254, -0.7897576689720154, -1.4674725532531738, 0.14912067353725433, 0.8945763111114502, 1.1572859287261963, -0.5345830321311951, 0.16209076344966888, -0.30763956904411316, -0.29156693816185, -0.3836714029312134, 1.0281952619552612, -0.4035995602607727, -0.7464798092842102, 0.2952176630496979, 0.6352226734161377, 0.15556536614894867, 0.08958017826080322, 0.31905749440193176, -0.37885764241218567, 0.36830785870552063, 0.3299153745174408, -0.6709699630737305, -1.431721806526184, 0.7465857267379761, -0.8715623021125793, 0.5227574706077576, 0.3802630305290222, 0.948173463344574, 0.5879651308059692, 0.12010469287633896, -0.5345442891120911, -0.43689894676208496, 1.0310521125793457, -0.7578297853469849, -0.05990251898765564, -0.4426286518573761, 0.4421524107456207, -0.7587203979492188, -0.3422497510910034, 1.2903246879577637, 0.30167293548583984, 0.10481584072113037, 0.8616603016853333, 0.5148077607154846, -0.6045802235603333, -0.6153099536895752, 0.4887995719909668, -0.8593137860298157, -1.0721335411071777, -0.5278564095497131, 0.07008287310600281, -0.41787052154541016, 0.1614082157611847, 0.4405909776687622, 0.022701648995280266, 1.0441850423812866, 0.043701887130737305, 0.5362867712974548, -0.5965408682823181, -0.22052563726902008, -0.3956857919692993, -0.23935361206531525, 0.07067867368459702, -1.3077858686447144, -0.9550707340240479, 0.9531475305557251, 1.6880757808685303, -0.8053274154663086, 0.037095099687576294, 0.7856905460357666, 0.5234237313270569, -0.07968904823064804, -0.010853677988052368, 0.45691347122192383, 0.4161968231201172, 0.3029623329639435, -0.6710888147354126, -0.522325873374939, -0.3742397427558899, -0.2600652873516083, 0.47846654057502747, -0.36039066314697266, -0.3143256902694702, 0.8163131475448608, -0.889198362827301, 1.5522509813308716, -0.33268290758132935, -0.4798716604709625, -0.026347361505031586, -0.6993075013160706, 1.2472944259643555, 0.2083931714296341, -0.19966824352741241, -0.14993588626384735, 0.05247659608721733, -0.7543225288391113, 0.1615164875984192, -0.5139707326889038, -0.5009496212005615, 0.7166621685028076, -0.5781282782554626, 0.07365654408931732, -0.008614779449999332, -0.07920940965414047, 0.1406545788049698, -0.250074177980423, -0.205937460064888, 0.5536534786224365, 0.5546920895576477, 0.2572650611400604, 0.03255658224225044, 0.23352159559726715, -0.5762606263160706, 0.22087323665618896, 0.7335876226425171, 0.13124002516269684, 0.31530964374542236, 0.8650510907173157, 0.1321762204170227, 1.0427041053771973, -0.12891429662704468, -0.5666846036911011, -0.37188848853111267, 0.10302519053220749, 0.669076681137085, -1.4537129402160645, 0.37253960967063904, -0.061436258256435394, -1.7218440771102905, -1.085540771484375, -0.16367974877357483, -0.22219006717205048, 1.329970121383667, -0.4699634909629822, 0.387205570936203, -0.17010022699832916, 0.44901418685913086, -0.15654730796813965, -1.0566009283065796, -0.3704603612422943, 0.05431296303868294, -0.11836744844913483, -0.6715295910835266, 0.31395354866981506, -0.031010881066322327, -0.9897634983062744, 0.37346139550209045, -0.7773704528808594, -0.24147875607013702, -0.06883547455072403, -0.018254615366458893, -0.7155044078826904, -0.243900865316391, 0.18326707184314728, -0.10441986471414566, 0.7463312149047852, -1.0671236515045166, 1.2351502180099487, -0.6519340872764587, -0.6637689471244812, 0.8254866600036621, -0.40859875082969666, -0.5457264184951782, 0.8019570112228394, 0.32679957151412964, -1.5803440809249878, -0.06008388474583626, -0.22509433329105377, -0.164274200797081, 0.08724185824394226, -0.11131518334150314, -0.15670894086360931, -0.2886231243610382, -0.1577857881784439, 0.4002092778682709, -0.24654419720172882, -0.8691716194152832, -0.8106399774551392, -0.7940598130226135, -0.010969837196171284, -0.9972960948944092, -0.9095321297645569, 0.8797190189361572, -0.033016543835401535, -1.5135321617126465, 0.0628143697977066, 0.467866450548172, 0.5456992387771606, 0.6546130180358887, 1.60109281539917, -0.10298088192939758, 0.9211203455924988, -0.26928961277008057, -0.018937990069389343, -0.5994541049003601, 0.7200838327407837, 0.16406115889549255, -0.7953217625617981, 0.0410524383187294, 0.856556236743927, 0.7015681266784668, 0.1438131481409073, 0.5621694922447205, -0.16529616713523865, -0.08235413581132889, -0.7200087904930115, -1.0964714288711548, 0.06679932028055191, 0.649075448513031, 0.7247114181518555, 0.4289212226867676, -1.5534279346466064, -0.44845038652420044, 0.5655837059020996, -0.06889133155345917, 0.4022162854671478, -0.24805235862731934, 0.20642368495464325, 0.13530884683132172, 0.04154564067721367, 0.41486674547195435, 1.2693727016448975, -0.6874966621398926, 0.981046736240387, -0.8628870844841003, -0.47333410382270813, -0.49482136964797974, 0.8702101707458496, 0.01311141811311245, 0.4330698847770691, 0.4923170208930969, -0.8941515684127808, -0.20699895918369293, 0.5302190780639648, 0.6109899282455444, 0.009226332418620586, 0.7580736875534058, -0.23355048894882202, 0.9228174090385437, -0.7304187417030334, 0.9938952922821045, -0.3617190718650818, 0.02564634196460247, -0.17825642228126526, 0.3803556263446808, 0.7006912231445312, 1.513051152229309, -1.103951096534729, -0.4440615177154541, -0.39486491680145264, -0.16520267724990845, 1.237261176109314, 1.1847862005233765, 0.7878984212875366, -0.6555969715118408, 0.3608376979827881, -0.6661738753318787, -0.19457487761974335, -0.8436225056648254, -1.3875374794006348, -0.47864094376564026, -0.5062037110328674, -0.42451128363609314, 0.0011947827879339457, -0.1507614701986313, 0.21797019243240356, -0.3386210501194, 0.26633864641189575, 1.5834771394729614, -0.6266242265701294, -0.9112092852592468, -0.5452261567115784, -0.2791019678115845, -0.5521489977836609, 0.3930237293243408, 0.9919561743736267, -0.7924339175224304, 0.17746689915657043, -0.032334621995687485, -0.5201061367988586, 0.5455291271209717, 0.02580714412033558, 0.6439666748046875, -0.7115560173988342, -0.700295090675354, -0.20819193124771118, 1.1750164031982422, 0.14489276707172394, -0.27957892417907715, -0.2427854984998703, 0.39593204855918884, 0.14242613315582275, 0.06957735866308212, -0.7798209190368652, 1.0827209949493408, -0.05642165616154671, -0.8426474928855896, -0.263663649559021, 0.3842943012714386, 0.2230464071035385, 0.19883054494857788, -0.6790328025817871, -0.420188844203949, -0.5028152465820312, -0.45776277780532837, 0.16610831022262573, 0.22611364722251892, 1.1032618284225464, -0.39656317234039307, 0.05170450732111931, 0.5935680866241455, 0.07592660933732986, -0.007148976903408766, -0.6739994883537292, 0.39213594794273376, 0.4821990132331848, 1.1846998929977417, 0.340563029050827, 0.025738302618265152, 0.2629505395889282, 0.6476413607597351, 0.12189171463251114, 0.44596657156944275, 0.9195007681846619, -0.9282143712043762, 0.07256536185741425, -0.4303100109100342, 0.034165158867836, -0.805759072303772, -0.6814628839492798, -0.056913506239652634, 0.2700594365596771, -0.814401388168335, -0.35453715920448303, 0.7056794762611389, 0.4747234582901001, -0.497875452041626, -0.2903204560279846, -0.07505383342504501, 0.8176716566085815, -0.7393743991851807, -0.17013342678546906, -0.2977040708065033, 0.4476276934146881, 0.5161526203155518, -1.162629246711731, -0.1501840502023697, 0.27489733695983887, 0.5623542666435242, 1.2152187824249268, -1.115877628326416, 0.48488470911979675, -0.5980656743049622, 0.3901216983795166, 0.2331290990114212, -0.1362052708864212, 0.5018176436424255, 0.15961509943008423, 0.3189760744571686, 0.018314247950911522, 0.05712315812706947, 1.4311901330947876, 0.11690220981836319, 0.14035287499427795, -0.10669397562742233, 0.8914021253585815, -0.5219104886054993, -0.786168098449707, -0.37730324268341064, 0.39227989315986633, -0.632092297077179, -0.4606952965259552, 0.32780921459198, -0.07452789694070816, 1.1879183053970337, 0.784673273563385, 0.29396697878837585, 0.24579742550849915, -0.05354286730289459, -0.5389156341552734, 0.04935133084654808, 0.30007004737854004, -0.010990816168487072, -0.16603276133537292, -0.0659225583076477, 0.6433892846107483, -0.2522028386592865, 0.6890368461608887, 0.40833500027656555, 1.034483790397644, 0.23887406289577484, -0.06665133684873581, -0.2740463614463806, 0.6866297721862793, 0.9711664915084839, 1.5602811574935913, 0.28037697076797485, 0.12166925519704819, -1.1871223449707031, 0.3459859788417816, -0.3354529142379761, -0.27984315156936646, 0.42641547322273254, 0.0007972493767738342, 1.5519205331802368, -1.4436099529266357, -0.06609170138835907, 0.19420666992664337, 0.426372766494751, -0.007847925648093224, 0.8500118851661682, -0.5812446475028992, -0.009761905297636986, 0.24376994371414185, -0.2583059072494507, 0.11976943910121918, -0.1695394217967987, 0.4953271150588989, -0.006542072165757418, 0.899644672870636, -0.5956284403800964, 0.5989153981208801, -0.7064102292060852, -0.7776830196380615, -0.3503226339817047, -0.8314910531044006, -0.2551209330558777, 0.13207587599754333, 0.6712126135826111, 1.7050362825393677, 0.15192465484142303, -0.5661252737045288, -0.046907585114240646, -0.4371681809425354, 0.3734215497970581, -0.2933844029903412, -0.3698378801345825, -0.5460379719734192, -0.1483805924654007, -0.16807305812835693, 0.3549923896789551, -0.17826628684997559, -0.038002029061317444, -0.7022074460983276, -1.3568195104599, 0.0945175513625145, 0.541555643081665, 0.3482082784175873, 0.8169766068458557, -0.009113557636737823, 0.1104743555188179, 0.27979639172554016, -0.4709312319755554, 0.11178740113973618, 0.037421099841594696, 0.3980160355567932, 0.23010459542274475, -1.4839030504226685, -0.5529663562774658, 0.2730030417442322, -0.1448298990726471, -0.02675006352365017, 0.7810764908790588, 1.17344331741333, 0.5211297273635864, -0.43377721309661865, 0.05139917507767677, 0.157226100564003, -0.21263860166072845, 0.9126852750778198, 0.7221047282218933, -0.1824726015329361, -0.4442261755466461, -1.2360830307006836, -1.4802486896514893, 0.9627384543418884, -0.0503135584294796, -0.7547140121459961, 1.5778591632843018, 0.3826814293861389, 0.7041429281234741, 0.059035610407590866, -0.5454168319702148, 0.09911453723907471, -0.16825202107429504, -0.3171272873878479, -1.2789864540100098, 0.7871647477149963, 0.6732358336448669, 0.6803474426269531, 0.3232208788394928, -0.04241809993982315, -0.1417820155620575, 0.18872897326946259, 0.22673490643501282, 1.4284907579421997, -0.6459603309631348, 0.17955735325813293, 0.2099779099225998, -0.19693250954151154, 0.7140327095985413, -0.13310199975967407, -0.5079852938652039, 0.20753540098667145, 0.7829439043998718, 0.19649384915828705, -0.09520062059164047, 0.020465858280658722, -0.07354031503200531, -0.5629777908325195, -0.5730356574058533, -0.008313235826790333, 0.9729868769645691, 0.4762756824493408, 0.26434651017189026, 0.07747100293636322, -0.21043069660663605, -0.05286724865436554, -0.7495898604393005, 0.7623738646507263, 0.48087000846862793, -0.3983779847621918, 0.04682216793298721, 0.28018367290496826, -1.2079927921295166, -0.956291139125824, -0.4400613307952881, 0.3382505178451538, -0.8432482481002808, -1.6533350944519043, -0.7899289727210999, -0.18905717134475708, 0.4076089859008789, -0.8869134783744812, 0.5575443506240845, -0.3039718270301819, -1.2662150859832764, 0.17525705695152283, 0.3412703275680542, -0.7745327353477478, 0.25894466042518616, -0.7881542444229126, -0.07343726605176926, -0.582925021648407, 0.4494935870170593, -1.154579758644104, 0.7011473774909973, -1.5639370679855347, -1.209478497505188, -1.3315622806549072, 0.3009575605392456, 0.9644855260848999, 0.24853752553462982, -0.603799045085907, 1.5124434232711792, 0.4970555305480957, -0.3313324749469757, -0.5359607934951782, -0.07630682736635208, -0.028725825250148773, -0.049069248139858246, 0.5036378502845764, 0.5058780908584595, 0.7643629908561707, 0.9561337232589722, 0.02290951833128929, 1.0171328783035278, 0.6137397885322571, 0.4236975312232971, -0.40602901577949524, -0.5689487457275391, -0.22009781002998352, 1.0317974090576172, -0.3788023591041565, -0.22809530794620514, -0.005665362812578678, 0.20288333296775818, -0.8250561952590942, -0.39988139271736145, 0.3749147057533264, -0.9875345826148987, 0.5371367931365967, -0.21998843550682068, 0.23491516709327698, -0.4753800928592682, 0.29041752219200134, 0.19153590500354767, -0.5797234773635864, -0.08984237164258957, 0.4234268367290497, -0.22405946254730225, -1.3050442934036255, 0.2641696035861969, -0.068532295525074, -0.4825526773929596, -0.5252108573913574, 0.69163578748703, 1.0657672882080078, 0.6850220561027527, -0.31418755650520325, 1.4720808267593384, 0.2971321940422058, -0.10289453715085983, 0.48548629879951477, 0.06141261011362076, -0.5435647964477539, 0.8803815245628357, -0.23146329820156097, 0.27490660548210144, -0.5240135788917542, 1.1990222930908203, 0.04451162740588188, -0.3140391409397125, 0.23535549640655518, -0.4521178901195526, -0.586578369140625, 0.40201640129089355, 0.8359195590019226, -0.49010318517684937, 0.1099119484424591, 1.2552212476730347, 0.4591604173183441, -0.5713229179382324, -0.01857384853065014, 0.3559000790119171, 0.24861939251422882, -0.5482276082038879, 0.05959112569689751, 0.11492806673049927, -0.14746426045894623, 0.25786370038986206, 0.030681656673550606, 0.4766919016838074, 0.03862164914608002, -0.6765028238296509, -0.5003224015235901, 0.4769383370876312, -0.23033829033374786, -0.16030949354171753, 0.9297885894775391, -1.4735727310180664, -1.5149717330932617, -0.059455808252096176, -0.17277157306671143, -0.9472618103027344, 0.03652218356728554, 0.2705731987953186, 0.2766996920108795, -0.056037258356809616, 0.1315620094537735, -0.2042907029390335, 0.6589800119400024, -0.4798089563846588, 0.0008546656463295221, -0.8244852423667908, -0.04400472342967987, 0.4252419173717499, -0.12755712866783142, 0.11985479295253754, -0.05924917757511139, 0.9121265411376953, -0.6326045393943787, -1.0219203233718872, 0.12600135803222656, 0.48942136764526367, 0.2101403772830963, -0.10820960253477097, -0.33569401502609253, 0.47620218992233276, 0.2910959720611572, 1.1463223695755005, 0.08540832251310349, -0.78431636095047, -0.27181369066238403, 0.0510016530752182, -0.745074450969696, 0.39212432503700256, 0.1665053516626358, 0.969519853591919, 0.037735551595687866, -0.7022641897201538, -0.14481109380722046, -0.8308229446411133, 0.14256593585014343, 0.027490921318531036, 0.7139250636100769, 0.31132349371910095, 0.252475380897522, -0.5751078724861145, -0.8133230805397034, 0.5854179263114929, -0.11841470003128052, -0.09868607670068741, 0.6767048835754395, -1.1706165075302124, -0.29765743017196655, -0.6304798722267151, 0.5181435942649841, 0.1957024186849594, 0.11538869142532349, 0.33610260486602783, 0.38973450660705566, -1.2774853706359863, 0.15412206947803497, -0.1340494602918625, 0.34593451023101807, 0.29403698444366455, 0.9381818771362305, 1.4173431396484375, -0.3338657021522522, -0.14365838468074799, -1.0862294435501099, 0.5403627753257751, -1.0351552963256836, -0.7743296027183533, -0.2702978253364563, -0.5534835457801819, -0.5149996876716614], [-0.045734189450740814, 1.973210096359253, -2.3380050659179688, -0.06851980090141296, 1.685662031173706, -0.041059378534555435, 1.5846529006958008, -0.5424102544784546, 0.036545008420944214, -0.11784650385379791, -0.326547771692276, 0.2893584370613098, 0.8392630219459534, 0.5915980935096741, 0.16547255218029022, 0.3006511926651001, 0.8729923963546753, -1.226478934288025, 0.9843547344207764, 0.7456123232841492, -0.7301616072654724, -0.6060819625854492, 0.4407830834388733, 0.5941635966300964, -0.23886878788471222, -0.12158456444740295, -1.2482609748840332, -0.6641556024551392, -0.21449148654937744, -0.8953236937522888, 0.2564738690853119, -0.42820754647254944, 0.4211195409297943, 0.5750574469566345, -0.8722456097602844, -0.4749641716480255, 1.9054549932479858, 1.1758806705474854, -0.1162257269024849, 1.0901304483413696, 2.403409242630005, -0.5381776690483093, 0.18795941770076752, -1.514124870300293, 0.24797776341438293, -0.03260432183742523, 0.3240300416946411, -1.2681554555892944, 0.7778633236885071, -0.5276839733123779, 0.7789208292961121, -0.5657642483711243, 0.6909233331680298, 1.1614915132522583, 0.9492584466934204, 0.051768168807029724, 0.8594602346420288, 0.2567775845527649, 0.7446116209030151, -0.6257930397987366, 1.3984105587005615, -0.4763830602169037, -0.17802228033542633, 0.9214345216751099, -0.13330838084220886, -0.8805791735649109, 0.3383125960826874, 0.5500484108924866, -0.3383011519908905, 0.22297993302345276, 0.04555300995707512, 0.13251027464866638, -0.45758768916130066, 0.45040157437324524, -1.4395853281021118, 0.8904860615730286, 0.5265088081359863, 0.9305819869041443, 0.3634336590766907, 0.7156206965446472, -0.24419444799423218, -0.4839467406272888, 0.5914358496665955, -0.21502400934696198, 0.13599471747875214, 0.24532152712345123, 0.029018787667155266, -0.5601958632469177, -0.46035972237586975, 1.4975372552871704, 0.4588198661804199, -0.24354052543640137, 0.9131794571876526, -0.33358389139175415, 0.09038896858692169, 0.2230233997106552, 0.7642555236816406, -0.2322937250137329, -0.4131145477294922, -0.5828074216842651, -0.47789764404296875, -0.8108035922050476, 0.4408144950866699, -0.050387028604745865, -0.13594117760658264, 1.2531908750534058, 0.027261609211564064, 0.08377441763877869, -0.6098490357398987, 0.04115414246916771, 0.12414366006851196, 0.20483438670635223, -1.1331448554992676, -1.3431388139724731, -0.9655616879463196, 1.0638854503631592, 0.970472514629364, 0.17221233248710632, 0.29957833886146545, 0.5954526662826538, -0.46097517013549805, 0.0991169884800911, -0.15751607716083527, 0.9204590320587158, 0.5110408663749695, 1.0518465042114258, -0.8309271335601807, -0.5158624053001404, -0.5479875802993774, -0.34976866841316223, 0.41454920172691345, -0.504006564617157, -0.6505630016326904, 0.8341273665428162, -1.0822784900665283, 1.3611167669296265, -0.504782497882843, -0.22363314032554626, 0.44990748167037964, -0.7958789467811584, 0.47804269194602966, 0.004664265550673008, -0.29478153586387634, -0.3661898672580719, 0.17262104153633118, -0.5536617040634155, 0.23514039814472198, -0.2787959575653076, -0.40969255566596985, 0.24137364327907562, -1.2017130851745605, 0.590587317943573, 0.10646216571331024, 0.3028254210948944, 0.36427271366119385, 0.05128950625658035, 0.23287717998027802, 0.41738706827163696, 0.22964955866336823, 0.524294912815094, 1.0168019533157349, -0.3686748743057251, -0.6471880078315735, 0.585322916507721, 0.23333989083766937, -0.13741756975650787, 0.6377033591270447, 0.9084038734436035, 0.37233424186706543, 0.2888079881668091, -0.5539584755897522, -0.27333515882492065, -0.4937104880809784, 0.06276734918355942, 0.7847281098365784, -0.5581972002983093, 1.345738172531128, -0.7792993783950806, -1.4021658897399902, -1.5087707042694092, 0.27515918016433716, -0.6463898420333862, 0.5042845010757446, 0.0766114667057991, 0.45948275923728943, -0.6939687728881836, 0.16863521933555603, -0.7075966596603394, -0.5852858424186707, -0.8608314394950867, -0.39710909128189087, -0.6570900678634644, -0.4695205092430115, 0.2925868034362793, -0.5756613612174988, -0.6292785406112671, 0.7087513208389282, -1.5343059301376343, -1.0506255626678467, 0.05338482931256294, -0.4877200126647949, -0.6184313893318176, -1.0662884712219238, 0.4278026223182678, -0.5157854557037354, 1.6063166856765747, -1.2676533460617065, 0.8570241928100586, -0.8664314150810242, 0.3128094971179962, 0.4111945629119873, -0.6660261750221252, -0.576166033744812, 1.2107118368148804, -0.21288301050662994, -1.2003629207611084, 0.6465352773666382, 0.8089332580566406, -0.5532470941543579, 0.6005447506904602, -0.07096675038337708, 0.3481960594654083, -0.055689673870801926, 0.2823253273963928, -0.4155685305595398, -0.06458666175603867, -1.0559262037277222, -0.7254241704940796, -0.4566616415977478, 0.32219672203063965, -0.5754408240318298, -1.739046573638916, 0.6234659552574158, 0.24683400988578796, -0.6795750260353088, 0.23490260541439056, 0.4846254885196686, 0.40689143538475037, 0.16792747378349304, 1.2265113592147827, 0.3094407916069031, 0.3082352578639984, -0.4083559513092041, -0.2303587645292282, -0.5629536509513855, 0.35773685574531555, 0.011269938200712204, 0.7636618614196777, 0.42018213868141174, 0.9761382341384888, 0.8018383979797363, 0.03384187072515488, 0.43495944142341614, -0.3105071783065796, -0.05845092982053757, -0.8487693667411804, -0.663015604019165, 0.7039718627929688, -0.1832704097032547, 1.633729100227356, 0.9796969294548035, -1.2148762941360474, 0.16035035252571106, -0.21189206838607788, -0.00550941564142704, -0.611241340637207, -1.3431538343429565, -0.5282386541366577, -0.2621082365512848, 0.3561531603336334, 0.0293545201420784, 0.9925547242164612, -0.32966625690460205, 0.3954932391643524, -0.8246666193008423, -0.42498746514320374, -0.25575223565101624, 0.1992884874343872, 0.24969114363193512, 0.3646491765975952, 0.12551388144493103, -1.8398215770721436, -0.5863611102104187, 0.23399820923805237, 0.6333214640617371, 0.7280474901199341, -0.27735283970832825, -0.14392556250095367, 0.4441424608230591, -0.14735929667949677, 0.7334831953048706, -0.16102592647075653, 0.017855750396847725, 0.5093638896942139, -0.2769491672515869, 0.8218618631362915, 0.6595870852470398, -1.4680453538894653, -0.4629896283149719, -0.06990791857242584, 0.26471731066703796, 1.092903733253479, 0.6480296850204468, 0.8462307453155518, 0.2753435969352722, 0.27420637011528015, -0.4766184687614441, -0.4774094223976135, -0.789854109287262, -0.10990172624588013, -1.7634756565093994, -0.9796944260597229, -0.19344285130500793, -0.18010231852531433, 0.491892546415329, 0.2036972939968109, -0.6626198291778564, 0.5399550199508667, 0.6745878458023071, -0.1998380869626999, -0.44426316022872925, -0.21874022483825684, 0.05854742228984833, -0.5993684530258179, 0.2377021312713623, 1.3415662050247192, -1.3924415111541748, 0.12000877410173416, 0.24241386353969574, 0.0002499902620911598, 0.34842589497566223, 0.09825889021158218, 0.24289976060390472, -1.698722004890442, -0.6995736360549927, 0.22062404453754425, 1.8811646699905396, -0.29335537552833557, -0.45623350143432617, -0.4724636375904083, 0.17980161309242249, 0.5726551413536072, -0.6821096539497375, -0.5155072212219238, 0.4051741659641266, -0.22063393890857697, -0.7634550929069519, -0.31118056178092957, 0.6697339415550232, 0.22669263184070587, -0.048387136310338974, -0.36073970794677734, -0.27917781472206116, -0.054233960807323456, -0.047534894198179245, 0.5124882459640503, -0.20289379358291626, 0.9429647326469421, -0.554715096950531, -0.3546724021434784, 0.8553005456924438, 0.26060932874679565, 0.11844785511493683, -1.7489402294158936, 0.7651864290237427, 0.28931358456611633, 1.1421748399734497, 0.6702085137367249, 0.5558754801750183, 0.3225286602973938, 0.03478047251701355, 0.3176485598087311, 0.5114826560020447, 1.6849318742752075, -0.01832091063261032, 0.00579992588609457, -0.9859957695007324, -0.5470398664474487, -0.13036669790744781, -0.31742337346076965, -0.37337809801101685, 0.586658239364624, -0.7792908549308777, -0.6716765761375427, 1.2270139455795288, 0.6768746376037598, -0.5475813150405884, -0.3765771985054016, 0.2710857689380646, 0.355255663394928, -0.12018036097288132, 0.33219078183174133, -0.7379289865493774, 0.0740589126944542, -0.14595720171928406, -1.1366660594940186, -0.004747554659843445, 0.25338509678840637, 0.4836181402206421, 0.6690091490745544, -1.0074187517166138, -0.06492101401090622, -0.5330713391304016, 0.7036038041114807, 0.17825031280517578, -0.21761099994182587, -0.06549593806266785, 0.44540759921073914, -0.003376491367816925, -0.19630886614322662, 0.12484172731637955, 1.6103951930999756, -0.6867865324020386, 0.2899472713470459, -0.40386325120925903, 0.20243896543979645, -0.5778307318687439, -0.5620378255844116, -0.5188577771186829, 0.14657852053642273, -0.5425090789794922, 0.2857562005519867, 0.11814191937446594, -0.0817919597029686, 1.3904467821121216, 0.16558682918548584, 0.4864744544029236, 0.4661644697189331, -0.11072954535484314, -1.354198694229126, 0.45822805166244507, -0.46560734510421753, 0.42980197072029114, -0.6677753329277039, -0.19058847427368164, 0.23754478991031647, -0.6457752585411072, 0.4856581389904022, 0.4975243806838989, 0.6758514046669006, -0.1375041902065277, 0.44245582818984985, -0.3887556195259094, 0.18721209466457367, 0.5317484140396118, 1.2560057640075684, 0.1635703146457672, 0.12179884314537048, -1.2291191816329956, 0.9346114993095398, -1.7795825004577637, -0.414294958114624, 0.5630106925964355, -0.41235366463661194, 1.3569008111953735, -2.1519505977630615, -0.09933339804410934, 0.3741782009601593, 0.5664430260658264, 0.5423996448516846, 0.5792253017425537, -0.4759177267551422, 0.04000374302268028, 0.5619926452636719, 1.1700031757354736, -0.34778714179992676, 0.15321536362171173, 0.20986294746398926, 0.21669116616249084, -0.16895045340061188, -0.9845268726348877, 0.6638368368148804, -0.023127784952521324, -0.40635454654693604, -0.26313671469688416, -0.3457283675670624, 0.4872536063194275, 0.41318997740745544, 0.280741810798645, 0.7879106402397156, -0.012819281779229641, -0.3852841258049011, -0.020412571728229523, -0.6672632694244385, 0.5585972666740417, -0.9032011032104492, -0.026906555518507957, -0.48777082562446594, -0.6056460738182068, -0.41961172223091125, 0.5180896520614624, -0.24456378817558289, -0.7627548575401306, -0.6355171799659729, -1.735273838043213, 0.26063060760498047, 0.8151550889015198, 1.8106437921524048, 1.5446900129318237, 0.23387300968170166, 0.5662147402763367, 0.15150335431098938, -0.8873248100280762, -0.1195860505104065, 0.22713252902030945, -0.3177620470523834, -0.35188373923301697, -1.2886860370635986, -0.6486531496047974, -0.0994587242603302, 0.3344726264476776, -0.010940102860331535, 0.43063127994537354, 1.663573145866394, 1.976130485534668, -0.25897809863090515, -0.6124382615089417, 0.8152161240577698, -0.11548765748739243, 0.36986902356147766, 0.7949056029319763, -0.4793893098831177, -0.3592374622821808, -0.3950507938861847, -1.7048799991607666, 1.0527079105377197, -0.3736308217048645, -0.2270503044128418, 0.8357532024383545, -0.08456135541200638, 0.6929114460945129, 0.03772744908928871, -0.841755211353302, 0.2766263782978058, 0.3916795551776886, -0.2868190407752991, -1.065787672996521, 0.29610443115234375, -0.19408220052719116, 0.10171865671873093, -0.1934799998998642, -0.3567083775997162, 0.1715860664844513, -0.2627708315849304, 1.2952359914779663, 0.20671381056308746, 0.06903572380542755, 0.15908074378967285, 0.6146306395530701, -0.25306573510169983, 0.38120701909065247, -0.8049615025520325, -1.0188343524932861, 0.26946210861206055, 0.5030074715614319, -0.4769776165485382, -0.2921667993068695, -0.36545801162719727, -0.3146558701992035, -0.7350218892097473, -0.7004100680351257, -0.18053001165390015, 1.024645209312439, 0.8339474201202393, 0.013290109112858772, -0.19373279809951782, -0.7823624014854431, -0.519521176815033, -0.05400686711072922, 0.5767443776130676, 0.2235981673002243, -1.1706018447875977, -0.4622529149055481, 0.36235740780830383, 0.2223694622516632, -0.24995474517345428, -0.5532286167144775, -0.058706749230623245, -1.078879952430725, -1.155035138130188, -0.7828230857849121, 0.08322074264287949, 0.6427872180938721, -1.0443978309631348, 0.7106062173843384, 0.78847736120224, -1.6797987222671509, 0.5941751003265381, -0.23502559959888458, -1.5058653354644775, 0.14328508079051971, -1.4251093864440918, 0.9980307221412659, 0.3771229386329651, 0.281629741191864, 0.11966574937105179, 1.1221836805343628, -1.2563090324401855, -0.8802024126052856, -0.26511356234550476, -0.29847386479377747, 1.0094022750854492, 0.8145914077758789, -0.3826755881309509, 1.236751675605774, 0.4391394555568695, -0.43068379163742065, -0.11136742681264877, -0.0925409197807312, -0.35062119364738464, -0.17263634502887726, 0.3878048360347748, 0.1311388462781906, 0.17195913195610046, 0.6638215184211731, 0.16960904002189636, 1.4904934167861938, 0.07818584144115448, 1.076110601425171, -1.0131330490112305, -0.8268534541130066, 0.19690395891666412, 0.38299262523651123, -1.3980529308319092, -0.7343553900718689, 0.13646464049816132, -1.002663016319275, -1.1780885457992554, 0.4447392225265503, 1.09787917137146, -0.5632938742637634, 0.11744862794876099, -0.9100742340087891, 0.14347237348556519, -1.064422845840454, -0.23983313143253326, 0.48296523094177246, -0.40292009711265564, -0.15417826175689697, 0.4302445352077484, -0.03097270429134369, -1.3413422107696533, -0.002866368740797043, 0.430145263671875, 0.2022397518157959, -0.9101374745368958, 0.9078759551048279, 1.047063946723938, 0.33336707949638367, 0.18650254607200623, 1.3684191703796387, 1.2139897346496582, -1.022101640701294, -0.45374777913093567, 0.5078133344650269, 0.04650009050965309, 0.5686226487159729, -0.15920117497444153, -0.32222890853881836, -0.8709314465522766, 1.4033397436141968, 0.47100937366485596, 0.3174349069595337, -0.4058331549167633, 0.22973722219467163, -0.9239116311073303, -0.566663384437561, 0.6595230102539062, -1.2410237789154053, 0.05827406048774719, 1.4497631788253784, 0.11606458574533463, -0.13911530375480652, 0.09998282045125961, 0.7934895753860474, -0.11885309964418411, -0.7034622430801392, 0.2538853585720062, 0.7480217814445496, -0.8017931580543518, 0.028180761262774467, 0.07775384187698364, -0.48402372002601624, -0.12014385312795639, -0.37041568756103516, -1.6695212125778198, -0.5505558252334595, -0.8781078457832336, -0.5940456986427307, 0.70173180103302, -0.8918391466140747, -0.7853103876113892, 0.42491328716278076, -0.4651930034160614, -0.2214507907629013, -0.2931238114833832, -0.14116445183753967, 0.3046823740005493, -0.5522137880325317, 0.9504786133766174, -0.7414887547492981, 1.5426154136657715, 0.21760399639606476, 0.17927035689353943, -1.0676040649414062, -0.4683705270290375, 0.3575136959552765, 0.3725254237651825, -0.5897698402404785, 0.39164721965789795, 0.5246980786323547, -0.2665809094905853, -0.6262968182563782, 0.090811587870121, 0.15652836859226227, -0.05599895864725113, 0.014706460759043694, -0.22904445230960846, 0.2247874140739441, 0.3268503248691559, 0.5689198970794678, -0.3232397735118866, -0.1455388069152832, -0.9729812145233154, -0.09224381297826767, -0.38457098603248596, 0.2895243465900421, -0.7472512125968933, 0.7079050540924072, 0.5154409408569336, -0.3628707826137543, -0.26999035477638245, -0.8602198362350464, 0.7366702556610107, -0.5085654258728027, 0.5019956231117249, 0.32664328813552856, -0.06942842155694962, 0.006728963926434517, -0.28406354784965515, 0.39964690804481506, 0.3911455571651459, -0.20967650413513184, 0.40313413739204407, -0.5279560685157776, -0.7741779088973999, -0.3596075773239136, 0.5947409272193909, 0.8971771001815796, 0.3801921308040619, 0.2431173324584961, 0.23302730917930603, -1.0792652368545532, 0.33934855461120605, 0.5032815337181091, 0.11641974747180939, -0.28125569224357605, 1.3161213397979736, 1.7331730127334595, 0.5607159733772278, 0.3306567072868347, -0.21869036555290222, 0.43036994338035583, -0.33348003029823303, -0.411428302526474, -0.3424827456474304, -0.3188007175922394, -0.0853436067700386], [-0.21176759898662567, 1.7454040050506592, -1.852150797843933, 0.29408684372901917, 1.22693932056427, 0.12759685516357422, 1.5155844688415527, -0.07578189671039581, 0.07550767809152603, -0.46705496311187744, -0.27101266384124756, 0.24488167464733124, 1.3793160915374756, 0.5201197266578674, 0.44408515095710754, 0.9920907616615295, 1.3922209739685059, -0.38954803347587585, 1.607386589050293, 1.4998565912246704, -0.13187530636787415, 0.33721649646759033, 0.8696784973144531, 0.20375625789165497, -0.687353789806366, -0.12502995133399963, -1.699073076248169, -0.3225939869880676, -0.33147987723350525, -0.7287774085998535, 0.4758415222167969, -0.5812675356864929, -0.3338245451450348, 0.5534590482711792, -0.8075121641159058, -0.1683400720357895, 1.4596830606460571, 1.2613635063171387, 0.4419764578342438, 0.7115722298622131, 1.1783814430236816, -0.9791733622550964, -0.018245887011289597, -1.0421110391616821, 0.35454294085502625, -0.26361775398254395, 1.036054015159607, -0.9048001766204834, 0.4204670190811157, -0.4551146626472473, 0.018953006714582443, 0.25444167852401733, 0.26879286766052246, 0.935947835445404, 0.4340727627277374, 0.34602266550064087, 0.3420649766921997, -0.5517120361328125, 0.9209346771240234, -0.43394985795021057, 1.1231986284255981, 0.16402439773082733, -0.33854058384895325, 0.6392004489898682, 0.43799442052841187, -0.20858459174633026, 0.440226286649704, -0.19830618798732758, 0.004884717520326376, -0.1472068727016449, 0.09431096911430359, 0.2657352387905121, -0.791856050491333, 0.7725721001625061, -0.8848063945770264, 0.9864604473114014, 0.5711775422096252, 0.5801142454147339, 0.08622673898935318, 0.9925285577774048, 0.1860465258359909, -0.2718488574028015, -0.061794232577085495, 0.4298231303691864, 0.7503314018249512, -0.38666895031929016, -0.2582281529903412, -1.4919012784957886, -0.8678377866744995, 1.4291709661483765, 0.7218635678291321, 0.15532401204109192, 0.5970233678817749, -0.6734753251075745, -0.04557902365922928, -0.5569730401039124, 0.8487860560417175, -0.0042847576551139355, -0.7948206663131714, 0.0759221762418747, -0.8710539937019348, -0.7100210785865784, -0.11305411159992218, 0.44997793436050415, 0.06299695372581482, 0.9407045841217041, -0.4139460325241089, -0.149496391415596, -0.3916739523410797, 0.19439223408699036, 0.10885946452617645, 0.15367157757282257, -0.9485301375389099, -1.0763566493988037, -0.5220628976821899, 1.1066745519638062, 0.9342422485351562, 0.10267571359872818, 0.9185505509376526, 0.8500603437423706, -0.31041353940963745, 0.26085343956947327, -0.5230218768119812, 0.8901081085205078, -0.3882303535938263, 1.296872615814209, -0.11666740477085114, -0.3499637544155121, -0.01742987334728241, 0.30319127440452576, 0.5172442197799683, -0.06944133341312408, -0.4129539728164673, 0.11567545682191849, -0.07633137702941895, 1.387634038925171, -0.4546806514263153, -0.4229981005191803, -0.6142016649246216, -0.21313464641571045, 0.9636157751083374, 0.39327818155288696, -0.05577261000871658, -0.5441706776618958, -0.5259854793548584, -0.19526736438274384, -0.8101539015769958, -0.1442084014415741, -0.2987484931945801, -0.2813466191291809, -0.9103747010231018, 0.6103171706199646, 0.1709108054637909, 0.16881869733333588, -0.31540581583976746, -0.04159274324774742, 0.2991509735584259, 0.39404889941215515, 0.25282010436058044, 0.3564462959766388, 0.8017663955688477, -0.7044554352760315, -0.3002651333808899, 1.0498238801956177, 0.21299485862255096, 0.21392548084259033, 0.5369732975959778, 0.23861759901046753, -0.1831366866827011, 0.7608654499053955, -0.030269337818026543, -0.486979216337204, -0.2164812535047531, -0.14940312504768372, 0.4230706989765167, -0.6391968131065369, 2.032912254333496, 0.10801156610250473, -1.3627628087997437, -1.3454694747924805, 0.2604961693286896, -1.3588857650756836, -0.2571530044078827, -0.1600203812122345, 0.26443544030189514, -1.0379748344421387, 0.8610240817070007, 0.14031505584716797, -0.42186397314071655, -1.0551469326019287, -0.2133757621049881, -0.48643043637275696, -0.9940766096115112, 0.8209035396575928, -0.291778564453125, -0.5005166530609131, 0.3783555328845978, -1.4781091213226318, -0.6793060898780823, -0.33575868606567383, -0.9393048882484436, -0.23067888617515564, -0.7332815527915955, 0.4529508352279663, -0.46604546904563904, 1.233210563659668, -0.8500709533691406, 1.4672244787216187, -0.3203600347042084, -0.363349586725235, 0.7899227142333984, -0.2789306342601776, -0.8539838790893555, 1.3360923528671265, -0.6612362861633301, -0.9282099008560181, 0.6858365535736084, 0.05412726104259491, -0.6265299916267395, -0.09017381817102432, 0.23323555290699005, -0.33948007225990295, 0.07818753272294998, 0.7991294860839844, -0.3366338312625885, 0.13528069853782654, -1.1885833740234375, -0.9211830496788025, -0.08702174574136734, 0.38646289706230164, -0.5822211503982544, -0.3979334235191345, 1.3340672254562378, 0.20333364605903625, -1.2831830978393555, 0.6371306777000427, -0.04379561170935631, 0.08290570974349976, 0.3918248116970062, 0.663476824760437, -0.0515575110912323, 0.023845864459872246, -0.3204944431781769, -0.179074227809906, -0.8185980319976807, 0.03718999773263931, 0.17084121704101562, 0.44216182827949524, 0.18324171006679535, 1.4003949165344238, 1.0950018167495728, 0.04607843980193138, 0.3006572723388672, 0.45221543312072754, -0.36485421657562256, -0.63257896900177, -0.7478790283203125, 0.3184582591056824, -0.6901330351829529, 0.9504193663597107, 0.6411731839179993, -0.6869288682937622, 0.23492254316806793, -0.18848004937171936, -0.47666725516319275, 0.05887853354215622, -1.2885440587997437, -0.588628351688385, 0.14876031875610352, -0.07977951318025589, -0.10921787470579147, 0.12293082475662231, 0.015183242969214916, 0.04079587757587433, -0.7899220585823059, -0.8245051503181458, -0.48562130331993103, 0.21520984172821045, 0.48026832938194275, -0.002041194122284651, 0.14273427426815033, -1.3230947256088257, -0.06504672765731812, 0.23274128139019012, 0.7266622185707092, -0.015985937789082527, -0.417056679725647, 0.6454372406005859, 0.26178833842277527, -0.3976263105869293, -0.17102965712547302, 0.3234424889087677, -0.058705925941467285, -0.1949974000453949, 0.05410318076610565, 0.8581857085227966, 0.737423837184906, -1.1118124723434448, -0.70931077003479, 0.1474643349647522, 0.6728362441062927, 0.9158787727355957, 0.02882339619100094, 0.821856677532196, -0.4365769624710083, -0.05059439688920975, -0.39348524808883667, -0.1978507936000824, -1.1299039125442505, -0.5773555636405945, -0.7507055997848511, -0.20499730110168457, -0.48290887475013733, -0.06590932607650757, 0.04990091547369957, 0.264869749546051, -0.7893159985542297, 0.7365094423294067, 1.2772862911224365, -0.16612255573272705, -0.408256471157074, -0.06524872779846191, -0.323309063911438, -0.23090091347694397, 0.554058849811554, 0.5476204752922058, -1.1323535442352295, -0.8155184984207153, 0.046114057302474976, -0.008359587751328945, 0.12885776162147522, 0.15681609511375427, -0.801913857460022, -1.5979825258255005, -0.9259964823722839, 0.4885578751564026, 1.2722797393798828, -0.4640030562877655, -0.07346639037132263, -0.17583829164505005, 0.11073856055736542, 0.48386844992637634, -0.8653680682182312, -0.6156033277511597, -0.2521950304508209, -0.14579050242900848, -0.34181681275367737, 0.36482033133506775, 0.6841451525688171, 0.6878385543823242, -0.19436094164848328, -0.8782192468643188, -0.33988237380981445, -0.3822338283061981, -0.10955149680376053, 0.4737812876701355, 0.014035196043550968, 0.9665767550468445, -0.5202071666717529, -0.1011643186211586, 0.3579007387161255, -0.3657951056957245, 0.1484430879354477, -0.8697350025177002, 0.2899613082408905, 0.28676143288612366, 0.7677309513092041, 0.28193971514701843, -0.011951970867812634, 0.0930873230099678, 0.20795036852359772, 0.5113062262535095, 0.13586585223674774, 0.9857454895973206, 0.35193225741386414, 0.22911947965621948, -0.8985804915428162, 0.3015667796134949, -0.603926420211792, -0.3602803647518158, -0.33756595849990845, 0.9103890061378479, -0.2785329818725586, -0.9062267541885376, 1.0057514905929565, 0.41977450251579285, -0.3216454088687897, -0.4282192289829254, 0.42528554797172546, 0.7272981405258179, -0.495626300573349, 0.6519715785980225, -1.0209784507751465, -0.4161856472492218, 0.10427601635456085, -1.3779828548431396, -0.10695644468069077, 0.06200810894370079, 0.5862390398979187, 0.6456782221794128, -0.9023867249488831, 0.4209590256214142, -0.5233754515647888, 0.6921228170394897, 0.4545285403728485, -0.017399171367287636, 0.24582539498806, 0.42996498942375183, -0.0979369655251503, -0.27151280641555786, 0.4174875020980835, 1.0165544748306274, -0.12070740014314651, 0.4765758514404297, -0.29797735810279846, -0.006292036734521389, -0.455268532037735, -0.785252571105957, -0.6238805651664734, -0.2552248537540436, -0.10912349075078964, 0.143917515873909, 0.6237526535987854, 0.0414181724190712, 1.7054815292358398, 0.5164457559585571, 0.17446163296699524, 0.3570674657821655, -0.42937538027763367, -0.5127516984939575, -0.10068171471357346, 0.559554398059845, -0.19099090993404388, -0.35323476791381836, -0.08275828510522842, 0.49641260504722595, -0.558544397354126, 0.3617027997970581, 0.5288843512535095, 1.0786056518554688, 0.11851327866315842, 0.6489614844322205, -0.14637799561023712, 0.5367379188537598, 0.3631742000579834, 1.031378149986267, 0.1300470232963562, -0.3122554421424866, -0.572969913482666, 0.8439915776252747, -0.7020121812820435, -0.4440479278564453, 0.30067577958106995, -0.37052953243255615, 1.7377641201019287, -1.1800121068954468, -0.43220293521881104, -0.13598401844501495, 0.6277962923049927, 0.42061159014701843, 0.4471990168094635, -0.32227063179016113, -0.4070606231689453, 0.8749839663505554, 0.9226097464561462, -0.3702620565891266, 0.04311862215399742, -0.016732653602957726, -0.37851858139038086, 0.34016281366348267, -0.6892860531806946, 0.6366693377494812, -0.8129868507385254, -0.06581123918294907, -0.10436151921749115, -0.4777531027793884, -0.2336849719285965, 0.21618971228599548, -0.09581155329942703, 0.7953349351882935, -0.31151506304740906, -0.7090131640434265, -0.05275784805417061, -0.8844873309135437, 0.6114627122879028, -1.4112333059310913, -0.8053104281425476, -0.48239007592201233, -0.9050261378288269, -0.12474725395441055, 0.6853181719779968, -0.41023147106170654, -0.40745553374290466, -1.0226212739944458, -0.5400206446647644, 0.07164481282234192, 1.270911455154419, 1.501171350479126, 1.182599663734436, 0.1133953109383583, 0.5007099509239197, 0.19286492466926575, -0.659608006477356, 0.05600335821509361, 0.7084164023399353, 0.27437329292297363, 0.007540332153439522, -1.624307632446289, -0.6791809797286987, 0.22596223652362823, 0.30171096324920654, 0.2388300895690918, 0.0011689793318510056, 0.6388620138168335, 0.9132529497146606, 0.45484647154808044, -0.36143767833709717, 0.9431774020195007, -0.659213662147522, 0.4938371777534485, 0.6789241433143616, -0.90791916847229, -0.6341724395751953, -0.7061030864715576, -1.0857315063476562, 0.9116244316101074, -0.7574400305747986, -0.5540045499801636, 0.926234781742096, 0.6511874794960022, 0.8984230756759644, 0.5005866289138794, 0.22702012956142426, 0.6841138005256653, 0.3177858293056488, 0.08716464042663574, -0.8317591547966003, 0.13618525862693787, 0.01702294498682022, -0.0010867798700928688, -0.5779598355293274, -0.5344849228858948, 0.40140870213508606, -0.6543787717819214, 0.21556302905082703, 0.019324325025081635, 0.9174910187721252, 0.6104840040206909, 0.5568941831588745, -0.8400741815567017, -0.23556677997112274, -0.8385944962501526, -0.8593830466270447, -0.09199604392051697, -0.20859143137931824, -0.4287625551223755, -0.21688112616539001, -0.501596212387085, 0.27972838282585144, -1.0726195573806763, -0.2134731560945511, -0.07411254197359085, 0.6005789637565613, 0.5723702311515808, 0.16408899426460266, -0.6042078137397766, -0.2743440568447113, -0.38780781626701355, 0.046874962747097015, 0.06006839498877525, 0.45453235507011414, -1.074791431427002, -0.47223949432373047, 0.351606160402298, -0.3106226325035095, -0.17593146860599518, 0.12477938830852509, 0.34162652492523193, -1.5129536390304565, -0.689433217048645, -0.42655283212661743, 0.6992748379707336, 0.2769502103328705, -0.9672704339027405, 0.36548474431037903, 0.7240036129951477, -2.192854642868042, -0.11548007279634476, -0.3862415850162506, -1.3634968996047974, -0.4526209831237793, -0.9682694673538208, 0.6058087944984436, -0.09187526255846024, 0.00606515072286129, -0.30340322852134705, 0.8138567209243774, -1.202085256576538, -1.3704618215560913, -0.11690066754817963, 0.05362941324710846, 0.6518707275390625, 0.7088884711265564, 0.03942335769534111, 1.1671473979949951, 0.09038993716239929, -0.5935049653053284, -0.4851960241794586, 0.7007287740707397, -0.269808292388916, -0.07101670652627945, 0.7005348801612854, 0.959057092666626, -0.18178778886795044, 0.8880823254585266, -0.024668266996741295, 1.2640994787216187, 0.05847261846065521, 0.9563080072402954, -1.1266242265701294, -0.5093504190444946, 0.7220296859741211, 0.11945171654224396, -1.2932239770889282, -0.8994346261024475, -0.7690085172653198, -0.9793537259101868, -0.5736066699028015, -0.13696445524692535, 0.9008158445358276, -0.7402339577674866, 0.006859575863927603, -0.6119612455368042, 0.5283434391021729, -0.5841097831726074, -0.4164167642593384, 0.18148748576641083, -0.30230003595352173, 0.0775633156299591, 0.18117566406726837, -0.24505944550037384, -1.1340303421020508, -0.0792895033955574, 0.3498297333717346, 0.3626263737678528, -1.0167491436004639, 0.3340555727481842, 0.5791869163513184, 0.1917138397693634, -0.19329586625099182, 1.8324885368347168, 0.6412150859832764, 0.24406452476978302, -0.10232547670602798, 0.32990461587905884, 0.17421899735927582, 0.32466498017311096, -0.4797214865684509, -0.45652997493743896, -0.44222503900527954, 0.7169833779335022, 0.06682001054286957, 0.3022899627685547, -0.04616648331284523, -0.015465624630451202, 0.03640733286738396, 0.5113282799720764, 0.1739514172077179, -0.388346791267395, 0.08066325634717941, 0.9059361219406128, 0.2756218910217285, -0.19320307672023773, 0.2518850564956665, 0.14345283806324005, 0.3245471119880676, -1.1253130435943604, 0.6403112411499023, 1.1689482927322388, -0.4558141529560089, -0.02696739137172699, 0.2803467810153961, -0.37333935499191284, -0.032507508993148804, -0.7051538825035095, -1.6642634868621826, -0.051338791847229004, -0.5934545397758484, -0.8271725177764893, 0.8050884008407593, -1.1989084482192993, -0.17734627425670624, 0.41024383902549744, -0.15153475105762482, -0.5999923944473267, -0.1756274700164795, 0.39319154620170593, -0.39077579975128174, 0.15192051231861115, 1.7882524728775024, -0.557898223400116, 1.1661598682403564, 0.5242525935173035, -0.5709050297737122, -0.6298108696937561, -0.7600371241569519, 0.24318145215511322, 0.39843207597732544, -0.4376111626625061, 0.5112823247909546, 0.5821812748908997, 0.3480255901813507, -0.4732561707496643, 0.0170130655169487, 0.11382000148296356, 0.7185865044593811, -0.1720631867647171, 0.09550658613443375, 0.23798877000808716, 0.43951740860939026, 0.19218406081199646, -0.23700614273548126, -0.4837668538093567, -0.7984064221382141, -0.7682109475135803, -0.5803959965705872, 0.07438381016254425, -0.7986626029014587, 0.7706854343414307, 0.04619418829679489, -0.06785981357097626, -0.31210580468177795, -1.1158181428909302, 0.2169841080904007, -0.46020591259002686, -0.3040812611579895, 0.21226677298545837, -0.24572241306304932, 0.20680299401283264, -0.08782288432121277, 0.2112627774477005, 0.5872811079025269, -0.3116539716720581, 0.4487013518810272, -0.5105649828910828, -0.7698107361793518, -0.1233685091137886, 0.5572068095207214, 1.2255135774612427, 0.6443554162979126, 0.26668164134025574, 0.29413801431655884, -0.5124174952507019, -0.13491258025169373, -0.029093919321894646, 0.5795459151268005, 0.04784565418958664, 1.9031400680541992, 1.4253015518188477, -0.07360176742076874, 0.7177276611328125, -0.4836595356464386, 0.4036756157875061, -0.9216974377632141, -0.9389173984527588, -0.7754325270652771, -0.05239550396800041, 0.36183255910873413], [0.017132896929979324, 1.7569489479064941, -2.430774211883545, -0.0656902939081192, 0.5319631099700928, 0.9374734163284302, 1.5745136737823486, -0.5422489047050476, -0.25468361377716064, -0.22378379106521606, -0.4627592861652374, -0.5195468664169312, 0.4779376983642578, 0.6122925877571106, 0.09918542951345444, 0.9269033670425415, 1.5561224222183228, -0.5060100555419922, 0.6228805780410767, 1.332384705543518, -0.5208743214607239, -0.6112556457519531, -0.019964659586548805, -0.04307333007454872, -0.8920717239379883, 0.10049593448638916, -1.5829851627349854, -0.254422128200531, -0.8014503717422485, -0.8968876600265503, 0.6734462380409241, -0.4836244285106659, 0.1132056713104248, -0.117610402405262, -1.3719332218170166, -0.27725183963775635, 1.4663617610931396, 1.4480220079421997, 0.8269662261009216, 0.23430736362934113, 1.3480627536773682, -0.49398934841156006, -0.09696149080991745, -1.3745547533035278, 0.0977751761674881, -0.13495324552059174, 0.5036324858665466, -0.7011022567749023, 0.4796210825443268, -0.4381943345069885, 0.4229748547077179, -0.8933122158050537, 1.0427919626235962, 0.9814057350158691, 0.9429250359535217, 0.19798043370246887, 0.2949100732803345, -0.18583177030086517, 0.9372952580451965, -0.6340799927711487, 0.9509842395782471, -0.4799608290195465, -0.01798730529844761, 0.6815280914306641, 0.6454799175262451, -0.4179497957229614, -0.08028819411993027, 0.3506825864315033, 0.21475839614868164, -0.10572197288274765, 0.5837019085884094, -0.07242419570684433, -0.47307828068733215, 0.7278109192848206, -1.8517978191375732, 0.838746964931488, 0.43886396288871765, 0.7069138884544373, 0.11540450900793076, 0.4113767743110657, -0.20670554041862488, -0.32201695442199707, 0.07882294058799744, -0.14736470580101013, 0.3737356662750244, 0.2793503701686859, 0.491672158241272, -0.45634764432907104, -0.9533072710037231, 2.022388219833374, 0.45905616879463196, 0.22798044979572296, 0.7838608026504517, -0.35305866599082947, -0.41869187355041504, -0.32208701968193054, 0.3867711126804352, 0.37157124280929565, -1.1898053884506226, -0.8312129378318787, -0.27051082253456116, -0.19641421735286713, -0.20910944044589996, -0.5704487562179565, -0.2550680935382843, 1.0755232572555542, 0.5872238874435425, 0.12063495069742203, -0.6439166069030762, -0.2810792326927185, -0.31424203515052795, 0.42786458134651184, -0.7572592496871948, -1.317543625831604, -0.6860451698303223, 0.9300066232681274, 1.224992275238037, -0.12098819762468338, 0.574377715587616, 0.7764203548431396, 0.22489286959171295, 0.12190251052379608, -0.08208266645669937, 0.629899799823761, -0.2854796350002289, 0.6195276379585266, -1.2784030437469482, -0.39466914534568787, 0.4047856032848358, -0.3390343487262726, 0.7430307269096375, -0.0511423796415329, -0.39106741547584534, 0.5896660089492798, -0.9258206486701965, 1.5153380632400513, -0.7682002186775208, -0.2549498379230499, -0.44746991991996765, -0.7493818402290344, 0.40162280201911926, -0.3806309998035431, -0.31902411580085754, -0.31223201751708984, 0.2899617850780487, -0.6534043550491333, 0.15232370793819427, -0.14138878881931305, -0.6512755751609802, 0.1377263367176056, -0.33220404386520386, 0.32547712326049805, 0.9269766807556152, 0.3994559049606323, 0.11564694344997406, 0.25417405366897583, 0.74393630027771, 0.7772578597068787, 0.34446343779563904, 0.5443311333656311, 0.7078580856323242, -0.17119650542736053, -0.7575345039367676, 0.34956344962120056, 0.28193697333335876, -0.26470234990119934, 0.05686081200838089, 0.7636126279830933, 0.386584609746933, 0.8403499126434326, -0.4782201945781708, -0.968890905380249, 0.004992390051484108, 0.49356552958488464, 0.1982950121164322, -0.7759568691253662, 1.2599555253982544, -0.5852967500686646, -1.297910451889038, -1.3936797380447388, 0.4306425154209137, -0.1919059306383133, 0.8742629289627075, -0.13302446901798248, 0.34599629044532776, -1.0946356058120728, 0.8307697772979736, 0.06463727355003357, -0.47255071997642517, -1.122666358947754, -0.17132285237312317, -0.7737595438957214, -0.6738072633743286, 0.013627052307128906, -0.19102418422698975, -0.3520677089691162, 0.7365217208862305, -1.1406804323196411, -0.07964502274990082, 0.3434837758541107, -0.1587364822626114, 0.007491950877010822, -0.7279098033905029, 0.4179959297180176, -0.56000155210495, 1.2891007661819458, -1.0666996240615845, 0.8199928998947144, -0.6865054965019226, 0.24688807129859924, 0.717529296875, 0.050361111760139465, -0.637032687664032, 0.6010616421699524, 0.13433115184307098, -1.4712073802947998, 0.3437582850456238, 0.2837669551372528, -0.5619633197784424, 0.4097592234611511, 0.08159739524126053, 0.13249528408050537, 0.4334448575973511, 0.0315910242497921, 0.43217799067497253, 0.11998535692691803, -1.193301796913147, -0.5962308049201965, -0.2680327892303467, -0.03220071643590927, -0.47198233008384705, -1.164260745048523, 0.8772155046463013, 0.3731078803539276, -1.2410862445831299, 0.20511843264102936, 0.21345824003219604, 0.42532089352607727, 0.2030661702156067, 1.9143390655517578, 0.5253929495811462, 0.23411349952220917, -0.5280380845069885, 0.21073397994041443, -0.5565072298049927, 0.3423970341682434, 0.5839046835899353, -0.04102090746164322, 0.12225525081157684, 1.7297567129135132, 0.703455924987793, 0.23833408951759338, 0.07827790081501007, 0.1817629337310791, -0.30699196457862854, -0.15934820473194122, -1.0141583681106567, 0.1715111881494522, -0.5392959713935852, 1.4242682456970215, 0.9260365962982178, -0.7328407764434814, 0.09304317831993103, 0.43515321612358093, 0.16142255067825317, -0.14065787196159363, -0.7151001691818237, -0.2361561357975006, -0.21121333539485931, 0.36389556527137756, -0.11619123816490173, 0.7967256903648376, -0.01627190224826336, 0.3122193217277527, -0.3299989104270935, -0.8270018696784973, -0.4173222482204437, 0.5686570405960083, 0.2989251911640167, 0.6457608938217163, -0.3821546733379364, -0.9074252843856812, -0.010385314002633095, 0.4977599084377289, 1.1867810487747192, -0.06521648913621902, 0.05575818195939064, 0.06802717596292496, 0.11109724640846252, -0.23602692782878876, 0.6687124371528625, 0.09777497500181198, 0.2940819263458252, -0.3617285192012787, -0.14233744144439697, 0.9065000414848328, 0.8055985569953918, -1.1149981021881104, -0.6248729825019836, -0.08400030434131622, -0.126661017537117, 1.1104180812835693, 0.4557768702507019, 1.3275361061096191, 0.07671458274126053, 0.14827793836593628, -0.29575639963150024, -0.6627184152603149, -1.0449565649032593, -0.8788750767707825, -0.2845706045627594, -0.49375125765800476, -0.13376390933990479, -0.490947961807251, -0.1659066081047058, 0.5448029041290283, -0.15138505399227142, 0.639350950717926, 1.4024171829223633, -0.027056984603405, -0.9451762437820435, -0.33694273233413696, -0.00918816588819027, -0.8813992142677307, 0.6179975867271423, 1.1053720712661743, -0.984000563621521, -0.5504750609397888, -0.24997952580451965, -0.045816343277692795, 0.20035810768604279, 0.2522401511669159, 0.07804673910140991, -1.2714934349060059, -1.244351863861084, -0.4463479518890381, 1.0081799030303955, -0.24027155339717865, 0.18612349033355713, -0.822293221950531, 0.11850007623434067, 0.655430793762207, -0.6229621767997742, -0.6374332308769226, 0.6655622720718384, -0.14688345789909363, -0.8334985375404358, -0.11065958440303802, 0.9539806246757507, 0.3720172941684723, -0.2734247148036957, -0.6844374537467957, -0.14712142944335938, -0.3897022008895874, 0.07375229150056839, 0.5306228995323181, -0.45634719729423523, 1.2375847101211548, -0.7201590538024902, 0.29140499234199524, 0.7230010032653809, 0.1227259635925293, -0.03586384281516075, -1.760340929031372, 0.5538330078125, 0.4854517877101898, 1.1390626430511475, 0.1788094937801361, 0.31303638219833374, 0.1946427822113037, 0.0668206512928009, 0.17086850106716156, 0.25532829761505127, 1.4471092224121094, 0.2151942253112793, 0.24125000834465027, -0.7237616181373596, -0.3790730834007263, 0.14360938966274261, -0.5990282893180847, 0.010248059406876564, 0.827319324016571, -0.739514172077179, -0.7328634262084961, 1.0751757621765137, 0.4741308093070984, -0.6240909695625305, -0.3221971392631531, 0.1093888208270073, 0.3864601254463196, -0.29025182127952576, 0.2566743493080139, -0.7407736778259277, 0.21987788379192352, 0.18600672483444214, -1.436883807182312, -0.01773240603506565, 0.4741086959838867, 0.046652473509311676, 0.17852210998535156, -1.0264575481414795, 0.20604626834392548, -0.880550742149353, 0.5786106586456299, 0.5683877468109131, -0.7895752787590027, 0.07532284408807755, 0.10450639575719833, -0.3081131875514984, -0.24367529153823853, 0.07536505907773972, 1.3348501920700073, -0.2634458839893341, -0.12450671941041946, -0.4223625063896179, 0.2735476493835449, -0.5678325295448303, -0.9071984887123108, -0.31523042917251587, 0.32989540696144104, -0.42111557722091675, 0.057037413120269775, 0.2699583172798157, 0.11287137866020203, 1.368941068649292, 0.27678635716438293, 0.278382271528244, -0.051290325820446014, 0.06814631819725037, -1.25700843334198, 0.5996750593185425, 0.26601046323776245, 0.320438414812088, -0.4154609143733978, -0.10392297059297562, 0.740044355392456, -0.4571991264820099, 0.1383393406867981, 0.3758313059806824, 0.7675471901893616, 0.18833327293395996, 0.06464597582817078, -0.047067128121852875, 0.3996830880641937, 1.0922743082046509, 1.4202474355697632, 0.49911755323410034, -0.542047381401062, -0.8537009954452515, 0.6712677478790283, -0.7256267666816711, -0.7863814830780029, 0.7105740904808044, 0.32395225763320923, 1.403862714767456, -1.5797791481018066, -0.22262442111968994, 1.0949596166610718, 0.4289311170578003, 0.9105269908905029, 0.5268881916999817, -0.2967225909233093, -0.07136461138725281, 0.6400961875915527, 0.4792572855949402, 0.1341341733932495, 0.3147927522659302, -0.2585894763469696, -0.4778079092502594, 0.09672799706459045, -1.1995153427124023, 1.2808315753936768, -0.43483930826187134, 0.014775152318179607, -0.23508135974407196, -0.6106911301612854, -0.015441004186868668, 0.7544294595718384, 0.20957671105861664, 1.5453850030899048, -0.7137328386306763, -0.6405631899833679, 0.07361318916082382, -0.42958852648735046, 0.21422353386878967, -0.23410116136074066, -0.28437134623527527, -0.5531194806098938, -0.6428143382072449, -0.32278937101364136, 1.2371350526809692, -0.3466555178165436, -0.550739586353302, -1.120902180671692, -1.1623002290725708, 0.639529287815094, 0.9877740144729614, 1.4196640253067017, 0.6520272493362427, 0.016175750643014908, 0.24527262151241302, 0.6736499667167664, -1.0533338785171509, -0.26666519045829773, 0.2977798283100128, 0.20214639604091644, 0.05854948237538338, -0.9898889064788818, -0.06362899392843246, 0.515041172504425, 0.3612173795700073, -0.36910876631736755, 0.42961424589157104, 0.9249721169471741, 1.2319515943527222, -0.21077054738998413, -0.13307757675647736, 0.18559661507606506, -0.7530450820922852, -0.019924188032746315, 0.7675274014472961, -0.0940995067358017, -0.7033578753471375, -0.6260308027267456, -1.141030192375183, 0.9944878220558167, -0.003243391402065754, -0.7834214568138123, 0.9672824144363403, 0.05804022029042244, 0.7529647350311279, 0.17437833547592163, -0.2960168421268463, 0.23142343759536743, 0.19569650292396545, -0.10372275114059448, -1.1085902452468872, -0.2907989025115967, 0.4252842664718628, 0.056815702468156815, -0.19096538424491882, 0.609612762928009, 0.09463965147733688, -0.021803950890898705, 0.5483478307723999, 0.5593967437744141, 0.5354104042053223, 0.8603414297103882, 0.25792449712753296, -0.6315451264381409, 0.10481896996498108, -0.5238596200942993, -1.2216379642486572, 0.3966410160064697, 0.181648850440979, 0.05648419260978699, -0.6434867978096008, -0.4981532394886017, -0.08077327162027359, 0.014726143330335617, -0.2791728675365448, -0.4851676821708679, 0.28949782252311707, 0.32496124505996704, 0.021427186205983162, 0.3876534700393677, -0.1834963858127594, -0.42880815267562866, -0.31134262681007385, 0.5925952196121216, -0.03969950973987579, -1.4879759550094604, 0.16271157562732697, 0.40702149271965027, -0.7313592433929443, -0.4817143678665161, -0.3150131404399872, -0.1258876621723175, -0.9529712796211243, -1.4728704690933228, -0.9920972585678101, 0.27241021394729614, 0.8762505054473877, -0.9003586173057556, 0.22818326950073242, 0.6556129455566406, -1.3552792072296143, 0.3865613639354706, -0.06017347797751427, -1.1191624402999878, -0.3270103633403778, -1.2159639596939087, 0.8805866241455078, -0.4072345495223999, -0.06764720380306244, -0.6042758822441101, 0.8937357664108276, -1.3486356735229492, -1.7961666584014893, -0.2842681407928467, -0.08029428869485855, 1.4975799322128296, 0.6781835556030273, -0.41327014565467834, 1.383027195930481, 0.5733253359794617, -0.17134128510951996, 0.024107065051794052, 0.030183034017682076, -0.17322295904159546, 0.4624759554862976, 0.8808779120445251, 0.45328599214553833, 0.5401803255081177, 1.159169316291809, -0.433020681142807, 1.293070673942566, 0.09058183431625366, 0.5701318383216858, -0.7116849422454834, -0.3463583290576935, 0.08176802843809128, 0.24262641370296478, -1.7955207824707031, -1.324371337890625, -0.9376777410507202, -0.4255467355251312, -0.8061115145683289, 0.35648173093795776, 0.022542007267475128, -0.7521147727966309, 0.12576939165592194, -0.4252457618713379, 0.4083479642868042, -0.6802070140838623, 0.8002819418907166, -0.48855629563331604, -0.3252392113208771, -0.2258734107017517, 0.3546624183654785, -0.18938446044921875, -1.7257497310638428, 0.3595395088195801, -0.0727701187133789, 0.0929873138666153, -0.017641272395849228, 0.45230379700660706, 0.5554929375648499, -0.27231186628341675, -0.3399033546447754, 1.6205244064331055, 0.7035176157951355, -0.3248961865901947, -0.3479553163051605, 0.22604838013648987, 0.8241024017333984, 0.46415796875953674, -1.1456769704818726, 0.055154867470264435, -0.6081198453903198, 1.546120047569275, -0.16210363805294037, 0.5550791025161743, 0.07492545247077942, 0.41652610898017883, -0.38231161236763, 0.44728535413742065, 0.6094284057617188, -1.05376398563385, -0.4367746114730835, 1.2001255750656128, 0.34208834171295166, -0.6489086747169495, 0.1653953492641449, 1.1312426328659058, 0.04155271127820015, -0.49898001551628113, 0.35837310552597046, 0.5958837866783142, -1.2124488353729248, 0.24283377826213837, -0.04183661565184593, -0.417633980512619, 0.20280523598194122, -0.4616214632987976, -1.0007860660552979, 0.2615979313850403, -0.38037651777267456, -0.8647757768630981, 0.7535824179649353, -0.8803194761276245, -0.736105740070343, 0.5226367712020874, -0.1669086515903473, -0.5551999807357788, -0.17660808563232422, 0.5373657941818237, 0.0916975662112236, 0.16879470646381378, 0.5195566415786743, -0.23317615687847137, 1.4745404720306396, -0.32700565457344055, 0.277624249458313, -1.2393951416015625, -0.28029465675354004, 0.3106653690338135, 0.13640786707401276, -0.29303979873657227, -0.1078326404094696, 1.0712851285934448, 0.08518673479557037, -0.8884454965591431, 0.07519974559545517, 0.0783829540014267, 0.36163702607154846, 0.12360300868749619, -0.5388208627700806, -0.25239601731300354, 0.27482303977012634, 0.554472804069519, -0.3103068470954895, -0.5761963725090027, -1.119819164276123, -0.21901632845401764, -0.725607693195343, 0.06663887947797775, -0.49955400824546814, 0.22727429866790771, -0.2391110211610794, -0.4014267325401306, -0.3720463812351227, -0.42453548312187195, 0.7957031726837158, -0.23409318923950195, 0.12234888225793839, -0.176981583237648, -0.15408308804035187, -0.08168063312768936, -0.6816852688789368, 0.2757051885128021, -0.030381962656974792, 0.1517183780670166, -0.08532287180423737, -1.20382821559906, -0.37145358324050903, -1.0494086742401123, 0.6052429676055908, 0.5632943511009216, 0.6056483387947083, 0.08460833132266998, -0.18182383477687836, -0.940401017665863, 0.6087831258773804, 0.18696744740009308, -0.43516409397125244, 0.2958184778690338, 1.0572186708450317, 1.662942886352539, 0.156502828001976, 0.48567646741867065, -0.6318287253379822, 0.3194512128829956, -0.6454656720161438, -0.6021624207496643, -0.4474721848964691, -0.44737109541893005, -0.4567560851573944], [0.024099497124552727, 1.61278235912323, -1.2872837781906128, 0.1971028596162796, 0.5523712038993835, 0.0723281130194664, 1.1483159065246582, -0.1422545462846756, -0.14118903875350952, 0.1481701135635376, -0.9285546541213989, 0.41217198967933655, -0.30304983258247375, 0.625805139541626, 0.017145710065960884, 0.7777690291404724, 1.7043431997299194, -0.849129319190979, 0.4163418412208557, 0.6984987258911133, -0.24855875968933105, -0.44819730520248413, 0.2548353374004364, 0.07249391078948975, -0.5237060189247131, 0.20315954089164734, -1.418403148651123, -0.4274279773235321, -0.0021310830488801003, -0.6948991417884827, 0.15510191023349762, -0.7671835422515869, -0.4019232392311096, 0.2541987895965576, -1.1739898920059204, -0.037069663405418396, 0.9604728817939758, 0.348585844039917, 0.6592346429824829, 0.9023092985153198, 0.6988990306854248, 0.08091511577367783, -0.7549648880958557, -1.6382136344909668, -0.25685110688209534, -0.4647488296031952, 0.6139760613441467, -0.3517680764198303, 0.06817197054624557, -0.4724419414997101, 0.5000678896903992, -0.7055692672729492, 0.30578848719596863, 0.36493849754333496, 0.4890557825565338, -1.027125597000122, -0.1103321984410286, -0.9547023177146912, 1.1185885667800903, -1.3089404106140137, 0.8608763813972473, 0.20488499104976654, -0.17186489701271057, 0.6703652143478394, 0.2141026109457016, -0.5291357636451721, -0.49151521921157837, 0.17822907865047455, 0.5743759274482727, -0.02176254242658615, 0.32455989718437195, 0.3881690204143524, -0.24134360253810883, -0.05515316501259804, -1.1178168058395386, 0.31589198112487793, 1.0009998083114624, 1.32624351978302, 0.39272844791412354, 0.6158549189567566, 0.21825240552425385, -0.7608513832092285, 0.20164135098457336, -0.42832860350608826, 0.2579718828201294, -0.5043830871582031, 0.053070783615112305, -0.1682049036026001, -1.116913914680481, 1.656273603439331, 0.6597716808319092, -0.5138463973999023, 0.5582615733146667, -0.3112126886844635, -0.06349212676286697, -1.4382585287094116, 0.19105121493339539, 0.5109151601791382, -0.7833043932914734, -0.48241478204727173, 0.20974043011665344, -0.5082629919052124, -0.5343791246414185, -0.0828699991106987, -0.5996955633163452, 0.8480787873268127, -0.15620489418506622, -0.5420575737953186, -0.32397258281707764, -0.30402612686157227, -0.03960594907402992, -0.030535271391272545, -0.6958920359611511, -1.3283103704452515, -0.6701505184173584, 0.4373582601547241, 1.102300763130188, -0.5581581592559814, 0.33524686098098755, 0.6003331542015076, 0.0026905559934675694, -0.5065199136734009, -0.5690634250640869, 0.14734631776809692, -0.20803719758987427, 0.26231101155281067, -0.5293625593185425, -0.3098019063472748, -0.310716450214386, -0.5921658277511597, 0.2971113622188568, 0.9276812076568604, -0.3020523488521576, 0.9167003631591797, -0.7280842661857605, 1.7016992568969727, -0.3476540744304657, -0.48852965235710144, -0.2327347844839096, -0.00184996472671628, 0.4178888201713562, 0.4291163980960846, -0.29770687222480774, -0.13334032893180847, 0.5003362894058228, -0.7862250804901123, -0.05129208415746689, 0.44547706842422485, -0.7056489586830139, 0.4693426489830017, -0.44214922189712524, 0.06351436674594879, 0.6070099472999573, 0.034621644765138626, -0.032575491815805435, -0.09513351321220398, -0.10843203961849213, 0.15506476163864136, 0.5950025916099548, -0.48367613554000854, 0.41808274388313293, -0.2187412828207016, -1.0866702795028687, 0.4306308925151825, -0.6981176733970642, -0.316972553730011, 0.33629992604255676, 1.2176662683486938, 0.553968071937561, 0.8886430263519287, -0.8807761073112488, 0.35514411330223083, 0.05451539158821106, 0.14253482222557068, -0.2534849941730499, -0.5512840151786804, 0.873341977596283, -0.24621377885341644, -1.2637920379638672, -0.6873716711997986, 0.8263838291168213, -0.7130767107009888, 0.20297282934188843, -0.8635857105255127, -0.2836379110813141, -0.6969680786132812, 0.8745371103286743, -0.3510313928127289, -0.1566791832447052, -0.01598689891397953, 0.15953393280506134, -0.6112489104270935, -0.18028658628463745, 0.36143702268600464, -0.3093571066856384, -0.16934755444526672, 0.5251832604408264, -1.177958369255066, 0.1076420247554779, 0.5463577508926392, 0.12111682444810867, 0.2812817096710205, -0.6371245384216309, 0.7717345356941223, -0.4952543079853058, 0.7304456233978271, -0.3757901191711426, 0.3890087902545929, -0.3866969048976898, -0.13584446907043457, 0.7365695834159851, -0.5537475943565369, -0.022047044709324837, 0.36123159527778625, 0.2238594889640808, -0.6652969121932983, 0.5666759610176086, 0.126027911901474, -0.6571730971336365, 0.35629767179489136, 0.17157763242721558, 0.28381648659706116, 0.0769067034125328, 0.45456409454345703, 0.13565579056739807, -0.06376788765192032, -1.0032182931900024, -0.828021228313446, -0.04188801720738411, -0.06151673197746277, 0.13310903310775757, -1.3110395669937134, 0.27546700835227966, 0.5535112619400024, -0.5871931910514832, 0.3143085241317749, -0.26871660351753235, -0.0026038046926259995, 0.07970952987670898, 0.9840859174728394, 0.17577797174453735, 0.3758544325828552, -0.5403075218200684, -0.4380464255809784, -0.725681722164154, -0.11845897138118744, 0.7912559509277344, -0.26264312863349915, 0.2522428333759308, 0.9957764148712158, 0.9350719451904297, 0.15589943528175354, 0.24141302704811096, 0.33100128173828125, 0.10808978229761124, -0.5629264712333679, -0.7640597820281982, 0.1906539797782898, -0.843826174736023, 1.1462146043777466, 0.62115478515625, -0.6426302790641785, -0.35923534631729126, -0.5774511694908142, -0.4789682626724243, -0.35296815633773804, -0.398855984210968, 0.022365912795066833, -0.07208604365587234, 0.7375155687332153, -0.07088183611631393, 1.2092328071594238, 0.17687194049358368, 0.24605940282344818, -0.45446670055389404, -0.028403885662555695, -0.24422648549079895, 0.21692568063735962, -0.0051864865235984325, 0.8732929825782776, -0.31664860248565674, -1.3999680280685425, -0.2420659065246582, 0.3263595402240753, 0.925220787525177, -0.20929190516471863, -0.8243553638458252, -0.07955676317214966, 0.11870915442705154, -0.3083045780658722, 0.04374552518129349, -0.48138514161109924, -0.04587589204311371, -0.1594783365726471, 0.4193669259548187, 0.2753060758113861, 0.4178066849708557, 0.3132481873035431, -0.6520324349403381, 0.09327415376901627, 0.3512148857116699, 0.7469817399978638, 0.6303008198738098, 1.087027668952942, -0.053355466574430466, 0.30991441011428833, 0.03445068746805191, 0.3495427966117859, -0.8733498454093933, -0.5993338227272034, -0.8281490206718445, -0.8911318182945251, 0.4561253488063812, 0.31324535608291626, 0.08962638676166534, 0.7053890228271484, -0.2598251402378082, 0.7335734963417053, 0.6156778931617737, -0.6081653237342834, -0.5657902359962463, 0.3823425769805908, -0.42466607689857483, -0.6831197738647461, 0.4583706855773926, 1.5172648429870605, -0.3890075385570526, -0.663373589515686, -0.4158579111099243, -0.6064075231552124, -0.15545178949832916, 0.7030922174453735, -0.34846895933151245, -0.9058718085289001, -0.3675714135169983, 0.17183765769004822, 1.710692286491394, -0.23722505569458008, -0.702453076839447, -0.5633239150047302, 0.4611780345439911, 0.2665007710456848, -0.8729168772697449, -0.21946518123149872, 0.728356659412384, -0.5600430369377136, -0.20155327022075653, 0.103882797062397, 0.6925026178359985, 0.9600088596343994, -0.11055050790309906, -0.40569624304771423, -0.1724196821451187, -0.2775096297264099, -0.026869872584939003, 0.12633465230464935, -0.9181404113769531, 1.0165551900863647, -0.1163528561592102, -0.3743198812007904, 0.7631550431251526, 0.18013174831867218, 0.232317253947258, -1.050857424736023, 0.36713188886642456, 0.1125263124704361, 1.9326623678207397, -0.5846933126449585, 0.4950870871543884, 0.617887556552887, 0.21814750134944916, 0.29407066106796265, 0.5409765839576721, 1.18352472782135, -0.11522713303565979, -0.8626157641410828, -0.4854515790939331, -0.43216919898986816, -0.6573565602302551, -0.45800819993019104, -0.2537720203399658, 0.5132047533988953, -0.793635368347168, -0.4433037042617798, 1.2514588832855225, 0.6741164326667786, 0.16496555507183075, -0.40538421273231506, 0.25214964151382446, 0.29054173827171326, -1.2075543403625488, 0.5987358689308167, 0.008949394337832928, 0.24899724125862122, 0.21430270373821259, -0.7644011378288269, 0.23959586024284363, 0.04981113225221634, 0.19546964764595032, 0.5129390954971313, -0.9178162217140198, 0.4930404722690582, -0.5067194104194641, 0.5849894881248474, 0.280679315328598, -0.40672290325164795, 0.19853165745735168, 0.23902057111263275, 0.07873988896608353, -0.517998993396759, 0.41830167174339294, 0.12137464433908463, -0.4707193672657013, 0.03981064260005951, -0.28136923909187317, -0.47159257531166077, -0.6404198408126831, -0.0727245882153511, -0.3128519356250763, 0.4846423864364624, -1.026105284690857, -0.14160320162773132, 0.4746474027633667, 0.08743787556886673, 0.05847792327404022, 0.37638434767723083, 0.5992720127105713, -0.1103743389248848, 0.015607777051627636, -1.2948317527770996, 0.14458686113357544, 0.39171209931373596, -0.3318217992782593, -0.6175237894058228, 0.3661174178123474, 0.26009097695350647, 0.06332004070281982, -0.24064664542675018, 0.18088465929031372, 0.8625873923301697, 0.2566303014755249, -0.2018297165632248, 0.24689127504825592, 0.9836534857749939, 0.6947566866874695, 1.2344131469726562, 0.32168224453926086, -0.6290138363838196, -0.8108658790588379, 0.5503568649291992, -1.3083399534225464, -0.18248343467712402, 0.3311057686805725, 0.27363121509552, 1.0646485090255737, -0.7385041117668152, -0.5673964023590088, 0.6987094283103943, -0.5100202560424805, -0.09635081142187119, 0.2138567864894867, -0.21762752532958984, 0.6216381192207336, 0.699308454990387, 0.4370194971561432, -0.014034301042556763, -0.06930001080036163, -0.640213131904602, 0.40257441997528076, -0.09065313637256622, -1.0964081287384033, 0.8284755945205688, -0.023306628689169884, 0.5067873597145081, 0.1229337602853775, -0.10132913291454315, 0.005862309597432613, 0.27591484785079956, 0.03739543631672859, 1.4123579263687134, 0.1166786253452301, -0.8791759610176086, -0.22060267627239227, -0.9263213276863098, 0.8826801180839539, -0.09948215633630753, -0.0777638778090477, -0.39521855115890503, -0.6866819858551025, 0.02634487859904766, 0.6007616519927979, -0.9098187685012817, -0.3104247748851776, -0.10073871910572052, -1.0939725637435913, 0.19375048577785492, 0.6895636320114136, 1.2598634958267212, 0.6553935408592224, -0.055051252245903015, 0.7177859544754028, 0.8080744743347168, -0.9546420574188232, 0.09946952015161514, -0.15603141486644745, 0.0540207177400589, 0.16100406646728516, -1.0794243812561035, 0.01409384235739708, 0.2323550581932068, 0.1496981829404831, -0.41068628430366516, 0.21867631375789642, 0.12066931277513504, 0.8997024297714233, 0.17937122285366058, 0.09038417041301727, 0.41628387570381165, -0.4075116515159607, 0.6727595925331116, 0.2591313123703003, 0.06614209711551666, -0.0793008953332901, -1.3956774473190308, -1.0591635704040527, 0.8787499666213989, -0.6842061281204224, 0.04635247960686684, 0.7442854046821594, 0.24899692833423615, -0.33564862608909607, 0.5458401441574097, -0.3895465135574341, -0.2682938575744629, 0.12546081840991974, -0.3482512831687927, -0.7416942119598389, 0.7326764464378357, 0.533645510673523, 0.31868088245391846, 0.4960036873817444, 0.36569568514823914, 0.3335627317428589, -0.5993911623954773, 0.5407992601394653, -0.21856029331684113, 0.3325647711753845, 1.0725253820419312, 1.1035401821136475, -0.756064236164093, 0.45491907000541687, 0.06844180077314377, -0.7651418447494507, 0.3578195571899414, 0.5174524784088135, 0.344601035118103, -0.11844445765018463, -0.799584686756134, -0.3110579550266266, -0.3001156151294708, -0.059999074786901474, -0.43880701065063477, 1.2287206649780273, 0.26012372970581055, 0.1556345373392105, -0.264815092086792, -0.8940236568450928, 0.06889399141073227, -0.2371354103088379, 0.6904928088188171, 0.5024905800819397, -1.198060393333435, -0.35621485114097595, 0.19763998687267303, -0.7283395528793335, -0.2797439992427826, 0.4855887293815613, 0.23128995299339294, -0.6560498476028442, -1.1523852348327637, -0.025926467031240463, 0.8007264733314514, 0.3301100730895996, -0.9638558030128479, 0.8966237902641296, 0.6098824739456177, -1.3520402908325195, -0.17230123281478882, 0.7422540187835693, -1.3468613624572754, -0.47674354910850525, -1.599629521369934, 0.7366833090782166, 0.7402825951576233, -0.2340145707130432, -0.4867122173309326, 0.9024441242218018, -1.1483641862869263, -0.574287474155426, -0.2507161796092987, 0.18877898156642914, 0.30635055899620056, 1.1101763248443604, -0.19323061406612396, 1.0151807069778442, -0.1916385143995285, 0.3749224841594696, -0.14950749278068542, 0.1680125743150711, -0.2389630526304245, 0.6365354061126709, 0.2643461525440216, -0.0979766994714737, -0.031877607107162476, 0.8888420462608337, 0.11171810328960419, 1.3965284824371338, -0.22801820933818817, 0.6917116641998291, -1.0762561559677124, 0.2422369420528412, 0.5192760229110718, 0.3026675283908844, -1.4560760259628296, -0.8622616529464722, -0.7293417453765869, -0.3099527359008789, -0.8445774912834167, 0.26301220059394836, 0.19091679155826569, -0.6939679384231567, -0.012391308322548866, -0.20930324494838715, 1.0093318223953247, -0.27716535329818726, 0.8902013301849365, 0.06320540606975555, -0.4008239507675171, 0.003034539520740509, 0.17148993909358978, 0.060588765889406204, -1.5566916465759277, 0.25042250752449036, -0.051687102764844894, -0.059167079627513885, -0.044469401240348816, 0.4487185776233673, 1.2057024240493774, 0.3841399550437927, -0.18764697015285492, 0.8317543268203735, 0.6390027403831482, -0.6748913526535034, -0.43731239438056946, 0.4022645056247711, 0.492590993642807, 0.4039310812950134, -0.3127852976322174, -0.15122941136360168, -0.011742017231881618, 1.2557721138000488, -0.44276198744773865, 0.3687899708747864, -0.15770934522151947, 1.1160154342651367, -0.20089776813983917, -0.15684086084365845, 0.7162041664123535, -0.7641870975494385, 0.1577548384666443, 0.9566478133201599, 0.10699491947889328, -0.47555088996887207, 0.2086414247751236, 1.502020239830017, -0.40335047245025635, -0.012570706196129322, -0.1875118464231491, 0.4179307818412781, -0.613853931427002, -0.038134437054395676, 0.27691373229026794, -0.7177712917327881, 0.10377170890569687, -0.33018985390663147, -1.2251551151275635, -0.42685455083847046, -0.7803847193717957, -1.0106706619262695, 0.3235541880130768, -0.9273558259010315, -0.6745839715003967, 0.7617321014404297, 0.09127259999513626, 0.10658041387796402, 0.06435088813304901, 0.3106776773929596, -0.03289977088570595, -0.05617431551218033, 0.874635636806488, -0.3192230463027954, 1.400316596031189, -0.12169138342142105, 0.16642075777053833, -1.4300740957260132, 0.015917113050818443, 0.03264256939291954, 0.21035560965538025, -0.1943221241235733, 0.06177695095539093, 0.6067206263542175, 0.02393663302063942, -0.6719284057617188, 0.15181629359722137, -0.4241684079170227, 0.4319802522659302, 0.013781839050352573, -0.11456017941236496, 0.22984349727630615, -0.14984102547168732, 0.8014810681343079, 0.14230692386627197, -0.5340328812599182, -0.1487705111503601, 0.35230574011802673, -0.4872981905937195, 0.8054841160774231, 0.2023446261882782, 0.6115027070045471, -0.4923569858074188, 0.13384748995304108, 0.11806041747331619, -0.013316693715751171, -0.19812379777431488, -0.3160353899002075, -0.18235677480697632, -0.200078547000885, -0.016268400475382805, -0.2824689447879791, -0.7238604426383972, 0.2953432500362396, -0.188467875123024, -0.6398076415061951, -0.43159744143486023, -0.3973378539085388, -0.5567381381988525, -0.8355562090873718, -0.34130367636680603, 0.4525015354156494, 0.31790632009506226, -0.06718955934047699, -0.34387895464897156, 0.05396614968776703, 0.16557493805885315, -0.25188499689102173, -0.8012185096740723, 0.15806110203266144, 0.9409891366958618, 1.2439619302749634, 0.21333886682987213, 0.43664732575416565, -0.4758268892765045, 0.1581675112247467, -0.24304720759391785, -0.20483331382274628, -0.49936383962631226, 0.013462400995194912, -0.67444908618927], [-0.6637035012245178, 1.7007256746292114, -2.3865151405334473, 0.32818448543548584, 0.8187966346740723, 0.5280167460441589, 1.3297975063323975, 0.07123617827892303, 0.06926138699054718, -1.0074118375778198, -0.6623837351799011, -0.0642705038189888, 0.22880204021930695, 1.4889858961105347, 0.9916385412216187, -0.2626970112323761, 0.34339284896850586, -0.4731641709804535, 0.7226782441139221, 1.5794146060943604, 0.1695283055305481, -0.18701328337192535, 0.1691107302904129, -0.32420727610588074, -0.21882569789886475, -0.21595799922943115, -1.3381949663162231, -0.1654331535100937, -0.8849712610244751, -1.3606007099151611, 0.7144103646278381, -0.6924144625663757, -0.2549690306186676, -0.14266356825828552, -0.9713084697723389, -0.18139512836933136, 1.43259596824646, 0.9229257106781006, 0.46147215366363525, 0.08303559571504593, 1.4301130771636963, -0.09111737459897995, -0.3080030083656311, -1.1785413026809692, -0.03348304331302643, 0.010088006034493446, 0.3761616349220276, -0.6179434061050415, 0.34043970704078674, -0.9082162976264954, 0.5481278896331787, -0.6240735054016113, 0.9972012042999268, 1.6666818857192993, 0.7889511585235596, -0.13259761035442352, 0.6048007011413574, 0.02333826571702957, 1.0242124795913696, -0.3889000415802002, 0.021029815077781677, 0.42328429222106934, -0.11586099117994308, 0.11531757563352585, -0.20473924279212952, 0.49868282675743103, 0.3128296434879303, 0.2680668532848358, -0.3093874752521515, 0.06638378649950027, 0.08123498409986496, 0.22446948289871216, -0.537703812122345, 0.9080032110214233, -1.211835503578186, 1.0212814807891846, 0.4014967978000641, 0.671763002872467, 0.4804268777370453, 0.8602849245071411, -0.62863689661026, -0.30938103795051575, 0.4528465270996094, -0.27651447057724, 0.4506150186061859, -0.16216598451137543, 0.30583131313323975, -0.41630521416664124, -0.7829667925834656, 1.9846925735473633, 0.43609586358070374, -0.44423624873161316, 0.7777806520462036, -0.3820267915725708, -0.31580600142478943, -0.6343475580215454, 0.5032760500907898, -0.37979063391685486, -0.627795934677124, -0.46186015009880066, -0.7894115447998047, -0.9412638545036316, 0.4761228859424591, 0.15043123066425323, -0.4337927997112274, 1.5617594718933105, 0.02750977873802185, 0.3390207588672638, -0.5860256552696228, 0.1467439979314804, -0.35771825909614563, 0.2883647680282593, -0.2629537284374237, -0.9571811556816101, -0.7655080556869507, 1.0949143171310425, 1.541616678237915, -0.32508084177970886, 0.46022534370422363, 0.7891960740089417, 0.3849305808544159, -0.40356215834617615, 0.06012210249900818, 1.0313785076141357, 0.5522201657295227, -0.0010576192289590836, -0.017471401020884514, -0.6061480045318604, -0.45556142926216125, -0.17085951566696167, -0.0802687555551529, 0.011842574924230576, -0.024397658184170723, 0.9302688241004944, -0.5521960854530334, 1.1232845783233643, -0.11282506585121155, -0.5713887214660645, -0.09612950682640076, -0.5808862447738647, 0.5513085126876831, -0.05839720368385315, -0.2595866620540619, -0.3185345232486725, 0.48706966638565063, -0.8895366191864014, 0.32449302077293396, -0.3271481990814209, -0.18679915368556976, 0.30616047978401184, -0.5154644846916199, 0.3848057985305786, 0.4457091987133026, 0.5511382818222046, 0.5846165418624878, 0.4486847221851349, -0.47443023324012756, -0.060944050550460815, 0.5446040034294128, 0.3118634521961212, 0.5892691612243652, -0.02733546867966652, -0.49994727969169617, 0.5983694195747375, 0.3510884940624237, -0.18729938566684723, 0.47861239314079285, 0.28628799319267273, -0.1295674443244934, 0.942902147769928, -0.2755526602268219, -0.4415948688983917, 0.16468611359596252, 0.49222591519355774, -0.3527291417121887, -0.9437169432640076, 1.1870988607406616, -0.8096833229064941, -1.3928260803222656, -1.095729112625122, -0.5645040273666382, -0.7950483560562134, 0.2997433841228485, 0.048248738050460815, 0.7936709523200989, -0.4430103600025177, 0.42832568287849426, -0.31872525811195374, -1.0013223886489868, -1.0081336498260498, -0.518872082233429, -0.11333851516246796, -0.5760119557380676, 0.16042280197143555, -0.6203251481056213, -0.22567668557167053, 0.1412803679704666, -1.2850205898284912, -0.4755747616291046, 0.0498952716588974, -0.4310522675514221, -0.4732211232185364, -0.6876217722892761, 0.3901950418949127, -0.5804007649421692, 1.1854157447814941, -0.9848116636276245, 0.5014843940734863, -1.136102557182312, -0.032348595559597015, 1.021713376045227, -0.7841569185256958, -1.1100749969482422, 1.089048147201538, -0.15796591341495514, -1.1185827255249023, -0.23114325106143951, 0.037258174270391464, -0.2552216947078705, 0.06310746818780899, 0.2600458860397339, 0.3754599392414093, 0.6454477310180664, 0.5277140140533447, 0.2907443344593048, -0.03426109254360199, -0.510351300239563, -0.6018181443214417, -0.6181142926216125, 0.26030394434928894, -0.558214008808136, -1.184861183166504, 0.32710325717926025, -0.2632600963115692, -1.5075547695159912, -0.25017744302749634, -0.32372406125068665, 0.23889043927192688, 1.1028683185577393, 1.4764482975006104, 0.1877497434616089, 0.5859331488609314, -0.2567910850048065, -0.11529961228370667, -0.22712847590446472, 0.8601303696632385, 0.2550209164619446, -0.6624475121498108, -0.15984901785850525, 0.9701080918312073, 0.5540070533752441, -0.14058083295822144, 0.4943850636482239, -0.4299151301383972, -0.27897757291793823, -0.6333277225494385, -0.5912328958511353, 0.7425484657287598, -0.4898470938205719, 1.938425064086914, 0.2358751893043518, -1.4770673513412476, -0.5837336182594299, -0.08796724677085876, -0.04661395400762558, -0.2321997880935669, -0.7159615159034729, -0.26405125856399536, -0.24835672974586487, -0.17207422852516174, -0.10746804624795914, 0.5108724236488342, -0.36206433176994324, 0.45642781257629395, -0.4174301326274872, -0.5459164381027222, -0.3498539626598358, 0.6560912132263184, 0.18686729669570923, 0.5059537291526794, -0.061123237013816833, -1.1896928548812866, -0.30967211723327637, -0.3190576136112213, 0.7682330012321472, 0.03426172584295273, -0.3717350959777832, 0.01292475312948227, 0.18808989226818085, -0.8717504739761353, 0.3733397126197815, 0.3210924565792084, -0.5257514119148254, 0.029241446405649185, -0.10246456414461136, 0.8793328404426575, 1.1851855516433716, -0.8693889379501343, -0.9978488683700562, -0.9335677027702332, 0.9679273366928101, 1.0235551595687866, 0.5222618579864502, 1.35768461227417, 0.12199224531650543, 0.004372464492917061, -0.1558249592781067, -0.12526409327983856, -0.5142362713813782, -0.1541273146867752, -0.7309401035308838, -0.32709938287734985, 0.15540838241577148, -0.16325445473194122, 0.5508649349212646, 0.21666288375854492, 0.0640842542052269, 0.5432366728782654, 0.9532769918441772, 0.19675758481025696, -1.0740211009979248, -0.4234125316143036, -0.4582139551639557, -0.6203019618988037, 0.2929120659828186, 1.4165492057800293, -1.2824511528015137, -0.6921964883804321, 0.3328317105770111, 0.3030394911766052, 0.5272448658943176, 0.03777438774704933, 0.407549113035202, -1.8328111171722412, -0.802032470703125, -0.06182730197906494, 0.9422204494476318, 0.3129068911075592, 0.10061990469694138, -0.8792119026184082, 0.6839107275009155, 0.9753267168998718, 0.29535675048828125, -0.5647833943367004, 1.2838869094848633, -0.7639098167419434, -0.6296120285987854, 0.040802065283060074, -0.33171483874320984, 0.4395841956138611, -0.1541542112827301, -0.07852411270141602, -0.42613548040390015, -0.11642054468393326, -0.4183048605918884, 0.725654125213623, 0.0094398632645607, 0.7790040373802185, -0.11232996731996536, 0.031140822917222977, 0.7662431597709656, 0.5825857520103455, -0.6881747841835022, -1.3950735330581665, 0.4873746633529663, 0.7796107530593872, 0.781050980091095, 0.03359507396817207, -0.281901478767395, 0.5027554035186768, 0.36189448833465576, 0.689267098903656, 0.28617849946022034, 0.7472220063209534, 0.2132333219051361, -0.3843630850315094, -0.9098767638206482, 0.4234384000301361, -0.4116569757461548, -0.43929818272590637, -0.4151689410209656, 0.2604542076587677, -0.5352533459663391, -1.0592143535614014, 0.8988050222396851, 0.4168383479118347, -0.06551200896501541, -0.13625559210777283, -0.2003653645515442, 0.46070319414138794, 0.04864190146327019, 0.7055330276489258, -0.5162699222564697, 0.08295495808124542, 0.23523074388504028, -0.9576525688171387, -0.2843168377876282, -0.31433236598968506, 0.5122551918029785, 0.9809737801551819, -0.9731190204620361, 0.6596513390541077, -0.5289311408996582, 0.3775694668292999, 0.2736079692840576, -0.39195194840431213, 0.4394955635070801, 0.0909070149064064, -0.16670621931552887, -0.08235521614551544, -0.0330057255923748, 1.4392038583755493, -0.5409523844718933, 0.16121695935726166, 0.5640354752540588, 0.2256692796945572, -0.2766116261482239, -0.8885864019393921, -0.3540617823600769, 0.3211594223976135, -0.49589499831199646, 0.26861318945884705, 0.8174896240234375, -0.042585112154483795, 1.2810654640197754, 0.6742920279502869, 0.35420599579811096, 0.5299957990646362, 0.10632161051034927, -0.8095777034759521, 0.1092858761548996, 0.30461519956588745, -0.245682030916214, -0.23600278794765472, 0.019541004672646523, 0.6858992576599121, -0.9224509000778198, 0.5816776752471924, 0.4681817293167114, 0.4347721040248871, 0.7980743646621704, -0.16627494990825653, -0.5149189233779907, 0.912706196308136, 1.2264084815979004, 1.0556086301803589, 0.3409196138381958, -0.18850372731685638, -0.6889969110488892, 0.5669710636138916, -0.9366416335105896, -0.3157118260860443, 0.8144436478614807, 0.11650088429450989, 1.0240271091461182, -1.3323613405227661, 0.2242617905139923, -0.004324199631810188, 0.54398113489151, 0.6672683358192444, 0.3246696889400482, -0.4462765157222748, 0.12518998980522156, 0.3462200164794922, 0.6570059657096863, -0.1250687837600708, -0.027423087507486343, 0.3608214259147644, -0.6247666478157043, 0.2471420168876648, -0.731792151927948, 0.1314474195241928, -0.9519599676132202, -0.4504765272140503, -0.1104721650481224, -0.30810120701789856, -0.002063627354800701, 0.8588070869445801, 0.4856512248516083, 1.0032944679260254, -0.2756172716617584, -0.607537031173706, 0.2560024857521057, -0.8704848885536194, 1.1588736772537231, -0.5021655559539795, -1.1765834093093872, -0.43723243474960327, -0.6043171286582947, -0.3530527949333191, 0.20714624226093292, -0.3476372957229614, -0.6298576593399048, -0.7888908386230469, -1.136826515197754, 0.4064159691333771, 0.6055424809455872, 1.2615541219711304, 0.47079792618751526, 0.2095699906349182, 0.39963361620903015, 0.386752188205719, -0.4270440936088562, -0.044057365506887436, 0.5855367183685303, 0.42113161087036133, 0.2923419773578644, -1.0824958086013794, -0.5129514932632446, 0.39183205366134644, -0.053455159068107605, 0.06392760574817657, 0.4231188893318176, 1.0270802974700928, 1.3106739521026611, 0.12937748432159424, 0.1868867129087448, -0.029882367700338364, -0.6911647319793701, 1.0561248064041138, 0.6909815669059753, -0.26411446928977966, -0.045690178871154785, -1.1849188804626465, -1.4706088304519653, 0.7467874884605408, -0.5799452662467957, -0.6634688377380371, 1.5294253826141357, 0.6980526447296143, 0.6358637809753418, 0.12711557745933533, -0.4013309180736542, 0.2517581284046173, -0.02771984413266182, -0.21110700070858002, -0.9070370197296143, 0.04442242160439491, 0.2450111359357834, 0.027083760127425194, -0.540132999420166, 0.4130012094974518, -0.04709754139184952, -0.5648490190505981, 0.21363559365272522, -0.32628610730171204, 0.47101572155952454, 0.5723029375076294, 0.4137096703052521, -0.9200223088264465, -0.22592639923095703, -0.4148382544517517, -0.22537147998809814, -0.13010551035404205, 0.5603045225143433, 0.36917003989219666, -0.7769253849983215, -0.10816855728626251, -0.41896113753318787, -1.1431934833526611, 0.5468283891677856, -0.07569749653339386, 0.7496265172958374, 0.06206159293651581, 0.13966159522533417, -0.2825210690498352, -0.24755023419857025, -0.2094109058380127, -0.4568130075931549, 0.2811056077480316, 0.14386625587940216, -0.9061946272850037, 0.11472183465957642, -0.10360154509544373, -0.5680897235870361, -0.4321449100971222, -0.11606967449188232, 0.7453295588493347, -1.1810698509216309, -1.2464442253112793, -0.8097202777862549, 0.6265636086463928, 1.1778833866119385, -0.7738732099533081, 0.7371624708175659, 0.5346580743789673, -1.3899259567260742, 0.6939437985420227, -0.03249151632189751, -0.853168249130249, -0.05666273087263107, -1.1006358861923218, 0.8800273537635803, -0.48522791266441345, 0.13469228148460388, -0.7993419766426086, 1.3462624549865723, -1.9364935159683228, -0.6998382806777954, -1.035981297492981, 0.0339825265109539, 1.3280584812164307, 0.2642259895801544, -0.4991031587123871, 1.3823288679122925, 0.34372636675834656, -0.0548153780400753, -0.38615110516548157, 0.41394931077957153, -0.23970502614974976, 0.06299182027578354, 0.5343348383903503, 0.48697322607040405, 0.41927242279052734, 1.0737496614456177, -0.5033152103424072, 0.7401375770568848, -0.03522931784391403, 1.0120294094085693, -0.4106784760951996, -0.7411539554595947, 0.01339229941368103, 0.8186988830566406, -0.9233930110931396, -0.6849533319473267, 0.05028742179274559, -0.3635309040546417, -0.9495806694030762, 0.6838861107826233, 0.628710925579071, -1.097245216369629, 0.06900740414857864, -0.443460613489151, 0.27049505710601807, -1.128893256187439, 0.3578343093395233, 0.3655955493450165, -0.36912432312965393, -0.3070189356803894, 0.29058316349983215, -0.05059466511011124, -1.1131303310394287, 0.815642774105072, 0.008191651664674282, 0.19685699045658112, -1.0680562257766724, 0.5173951387405396, 0.40611782670021057, 0.08578859269618988, -0.5347012877464294, 1.0482321977615356, 0.5248112082481384, -0.08409784734249115, 0.19239258766174316, 0.06888725608587265, -0.3353995084762573, 0.5626688003540039, -0.37308424711227417, -0.30724477767944336, -0.7441048622131348, 1.4158215522766113, 0.11826534569263458, 0.46695661544799805, -0.3846327066421509, -0.26387742161750793, -0.6712406873703003, -0.05984823405742645, 0.5642603039741516, -0.401452898979187, 0.2451583594083786, 1.2354789972305298, 0.1796492040157318, -0.3276327848434448, 0.2771647572517395, 0.58309006690979, 0.47757676243782043, -0.7745482325553894, 0.1837855875492096, 0.44813239574432373, -0.5051047205924988, 0.33239954710006714, 0.5517258048057556, -0.47564393281936646, -0.3869697153568268, -0.3392046391963959, -0.7970567345619202, -0.25540414452552795, -0.709083616733551, -0.7945480942726135, 1.102787971496582, -0.8807238340377808, -0.9426085948944092, 0.7590022683143616, -0.11011920869350433, -0.4453219771385193, -0.2968994677066803, 0.1920308619737625, -0.17418444156646729, 0.020223896950483322, 0.775398313999176, 0.6053617000579834, 1.0583393573760986, -0.3361489176750183, 0.0561143197119236, -0.5046136379241943, -0.30377915501594543, 0.04923628643155098, 0.0664215087890625, -0.33609676361083984, -0.17360492050647736, 0.3352092504501343, -0.24437807500362396, -0.979496955871582, 0.18238963186740875, -0.3106496036052704, 0.7426689863204956, 0.16078180074691772, -0.8382653594017029, 0.5982644557952881, 0.5789128541946411, 0.08926781266927719, -0.08074686676263809, -0.7554231286048889, -1.320533037185669, 0.16831718385219574, -0.7133320569992065, 0.09502659738063812, -0.2946096360683441, 0.6254913806915283, 0.520075798034668, -0.02630133554339409, -0.32994192838668823, -0.47780147194862366, 0.25795358419418335, -0.6278437376022339, 0.04144622012972832, 0.13889473676681519, 0.3102087676525116, -0.13880927860736847, -0.4301035404205322, 0.4409535229206085, -0.018068574368953705, -0.18283788859844208, 0.3565342128276825, -1.1310495138168335, -1.0940556526184082, -0.7209709286689758, 0.24213163554668427, 0.894615113735199, 0.1568307727575302, 0.0716126561164856, 0.05613752081990242, -0.8952615857124329, 0.2688196003437042, 0.09090244024991989, 0.48534250259399414, 0.16077399253845215, 0.8049941062927246, 1.6036218404769897, -0.18651527166366577, 0.7537996172904968, -0.1702447086572647, 0.44508638978004456, -0.95538729429245, -0.6891893148422241, -0.6723147630691528, -0.2927860617637634, -0.4514232277870178], [0.07751896232366562, 1.7977232933044434, -2.1010799407958984, -0.651226282119751, 1.049600601196289, -0.11918643862009048, 1.7643197774887085, -0.6091006398200989, -0.21788553893566132, -0.5111470222473145, -0.5206667184829712, -0.525762140750885, 1.0882748365402222, 0.5904139280319214, -0.3193472623825073, 0.2952234447002411, 0.6611694693565369, -0.501270055770874, 0.4789320230484009, 0.9148319959640503, -0.022827208042144775, -0.34822070598602295, 0.3947288990020752, 0.3236476182937622, -0.8765907287597656, 0.05186789110302925, -0.9977331757545471, -0.417327880859375, -0.22014664113521576, -0.5909876227378845, 1.339623212814331, -0.8501608967781067, -0.04372161999344826, -0.15938177704811096, -1.2507538795471191, -1.1707589626312256, 1.9214189052581787, 0.7218552827835083, 0.5958361625671387, 1.6414713859558105, 2.164593458175659, 0.3109276294708252, -0.05934838950634003, -1.6571440696716309, 0.31821104884147644, -0.4587549567222595, 0.5705660581588745, -0.82591313123703, 0.7227715849876404, -1.0266239643096924, 0.08931706845760345, 0.357223778963089, 0.5398138165473938, 0.8241189122200012, 0.36752697825431824, 0.04128119349479675, 0.04131292179226875, 0.34373748302459717, 0.9577665328979492, -0.7271559238433838, 1.2689744234085083, 0.23410286009311676, -0.5487064123153687, 0.8380781412124634, 0.01516583189368248, -0.2710643410682678, 0.44370487332344055, 0.37931308150291443, -0.15398253500461578, -0.35212913155555725, 0.2756285071372986, 0.25198495388031006, -0.2246585488319397, 0.8740108013153076, -1.622466802597046, 0.6136085987091064, 0.6335726976394653, 0.7803061604499817, 0.5472269058227539, 0.7913123369216919, 0.06418313831090927, 0.024135200306773186, 0.13052520155906677, -0.34222766757011414, 0.353927880525589, -0.21690724790096283, 0.20007704198360443, -0.3556174337863922, -0.3969375789165497, 1.1566439867019653, 0.6447409987449646, -0.081871896982193, 1.2435299158096313, -0.009215075522661209, -0.4487513601779938, -0.10314817726612091, 0.6724830865859985, -0.21976801753044128, -0.955265998840332, -1.3461166620254517, -0.6375072598457336, -0.5497205853462219, -0.055310316383838654, 0.207215815782547, -0.10134238004684448, 1.2711572647094727, 0.29725247621536255, 0.46504542231559753, -1.0862209796905518, -0.16347648203372955, -0.33786749839782715, 0.03154011815786362, -0.904299259185791, -0.9810810685157776, -0.6250104308128357, 0.8669653534889221, 1.1351641416549683, 0.16816362738609314, 0.576955258846283, 1.1154204607009888, -0.6878744959831238, -0.1150607168674469, -0.7272529602050781, 1.03762686252594, 0.9216739535331726, 0.39809656143188477, -0.4955497086048126, -0.4171392619609833, 0.3831782341003418, 0.32373955845832825, 0.04949235916137695, -0.2358952760696411, -0.05226286128163338, 1.0584721565246582, -0.826189398765564, 0.7984981536865234, -0.7575187683105469, -0.20412740111351013, -0.12597998976707458, -0.3680588901042938, 0.4036787748336792, 0.2611876130104065, 0.03653235360980034, -0.14609305560588837, 0.5384759902954102, -0.38722237944602966, -0.7296189069747925, -0.20176026225090027, -0.8991214632987976, -0.3250530958175659, -1.0339261293411255, 0.771094799041748, 0.2037852704524994, 0.47416073083877563, -0.06169553101062775, -0.47800344228744507, -0.3441741168498993, 0.5864882469177246, 0.327536940574646, 0.046530548483133316, 0.6337040662765503, -0.2638411223888397, -1.0560479164123535, 1.2512599229812622, 0.2723676264286041, -0.026280568912625313, 0.4037887454032898, 0.6988742351531982, -0.17341211438179016, 0.6367783546447754, -0.8345121145248413, -0.6183907985687256, -0.14348483085632324, 0.5801847577095032, 0.3050764799118042, -0.21540898084640503, 1.8180794715881348, -0.5379396677017212, -0.960785984992981, -1.1625114679336548, 0.5835123062133789, -0.7393796443939209, 0.2670895755290985, 0.07615690678358078, 0.6433887481689453, -0.6297392845153809, 0.3899100124835968, -0.35717064142227173, -0.1828560084104538, -0.8005896806716919, -0.18387742340564728, -0.7156164646148682, -1.3867149353027344, 0.30350688099861145, -0.043896935880184174, -0.18827377259731293, 0.4433799684047699, -1.4627045392990112, -1.0235426425933838, -0.5147886872291565, -0.8563075661659241, -0.22335827350616455, -1.1434738636016846, 0.4049607515335083, -0.5245265364646912, 0.441001296043396, -1.108491063117981, 1.1411759853363037, -0.4996413290500641, 0.1282995492219925, 0.43950286507606506, 0.11483760923147202, -0.37948140501976013, 1.1112680435180664, -0.2422964870929718, -1.2117247581481934, 0.3948119878768921, 0.3905003070831299, -0.5059855580329895, 0.33084410429000854, 0.2864317297935486, 0.262359619140625, 0.2527591288089752, 0.31962281465530396, 0.18542788922786713, -0.09066673368215561, -0.9012690186500549, -0.9810894131660461, -0.7271952033042908, 0.24117983877658844, -0.4181707203388214, -1.1676990985870361, 1.3148678541183472, 0.19247184693813324, -1.0568304061889648, 0.14438125491142273, 0.03775244951248169, 0.06970442831516266, 0.5173952579498291, 1.3771355152130127, 0.0839790403842926, 0.12706917524337769, -0.728359043598175, 0.17030119895935059, -0.19872355461120605, 0.2653282880783081, 0.6472654938697815, 0.14678724110126495, -0.22126567363739014, 1.870622158050537, 0.4604923725128174, 0.09926130622625351, 0.6692515015602112, -0.2870180308818817, 0.14353221654891968, -1.082640290260315, -0.4845883548259735, 0.5171607136726379, -0.23551040887832642, 1.3235771656036377, 0.4235452115535736, -0.4032765030860901, -0.3595193326473236, -0.04734128713607788, -0.19000940024852753, -0.7185701727867126, -0.5349868535995483, -0.9839931726455688, -0.14844349026679993, -0.29880860447883606, -0.2883364260196686, 0.2389523983001709, 0.19803977012634277, -0.1700509786605835, -0.49019855260849, -0.1370764523744583, -0.7219967842102051, 0.4515746235847473, 0.002209804719313979, 0.1832411140203476, 0.19566287100315094, -1.5630587339401245, -0.4136539101600647, -0.32942238450050354, 1.087256908416748, -0.13923993706703186, -0.24225136637687683, -0.05221359804272652, 0.6950315833091736, -0.4386672079563141, 0.29660964012145996, -0.03107461892068386, -0.2694845199584961, -0.06897912174463272, 0.20827873051166534, 1.0635559558868408, 0.9426984786987305, -1.0578012466430664, -0.4829692840576172, -0.09055577963590622, 0.5187904834747314, 1.3334516286849976, 0.7888511419296265, 1.3909528255462646, 0.21361882984638214, -0.17657054960727692, -0.7679224014282227, -0.5248709321022034, -1.3652983903884888, -0.8379742503166199, -0.759193480014801, -1.0448557138442993, -0.1004769578576088, -0.7143672704696655, 0.21834486722946167, 1.1143831014633179, 0.0877099558711052, 0.594983696937561, 1.1372867822647095, -0.29094940423965454, -0.9720523357391357, -0.4928644597530365, 0.044407524168491364, -1.505242109298706, 0.6695809960365295, 1.39644193649292, -1.3002318143844604, 0.03338072448968887, -0.1799091100692749, 0.307654470205307, 0.8943665027618408, -0.2744368016719818, 0.24565204977989197, -1.0822455883026123, -0.7982931733131409, 0.0577695406973362, 1.2529748678207397, -0.03759562596678734, 0.1258087158203125, -0.735115647315979, 0.4347779154777527, 0.8526126146316528, -0.740935742855072, -0.8692218065261841, 1.0831329822540283, -0.00018689234275370836, -0.4022964835166931, 0.4544698894023895, 0.9109523892402649, 0.6020541787147522, -0.6256023645401001, -0.4158598780632019, -0.42483314871788025, -0.35544219613075256, -0.008345923386514187, 0.6133602261543274, -0.15737418830394745, 0.6024994850158691, 0.05634745955467224, -0.640777587890625, 0.5420078635215759, 0.23138172924518585, -0.09158676862716675, -1.423888087272644, 0.5117610096931458, 0.5247076749801636, 1.5480163097381592, -0.1405440866947174, 0.4716479182243347, 0.18168441951274872, -0.08004124462604523, 0.36560726165771484, 0.8787897229194641, 1.1581556797027588, 0.2341616451740265, -0.2880041301250458, -0.5638227462768555, -0.26161709427833557, 0.2605231702327728, -0.6733131408691406, -0.05225757136940956, 0.5923771858215332, -0.6329696774482727, -0.7688047885894775, 1.4893429279327393, 0.5047577619552612, -0.5094910264015198, -0.6210034489631653, -0.056588996201753616, 0.7228673100471497, -0.226253941655159, 0.9568292498588562, -1.2224245071411133, -0.21531599760055542, 0.08938505500555038, -0.8669859170913696, -0.27653518319129944, 0.7059153318405151, 0.571387767791748, 0.3903115391731262, -0.7705841064453125, -0.18625201284885406, -0.6172322034835815, 0.8121514320373535, 0.5164434909820557, -0.5564740896224976, -0.24662351608276367, 0.30363526940345764, -0.06864877045154572, 0.30545976758003235, -0.16890665888786316, 1.2771295309066772, 0.010920120403170586, 0.015738865360617638, 0.33235427737236023, 0.32227325439453125, -0.4629139304161072, -0.8828058242797852, -0.464658260345459, -0.007519536651670933, -0.3780921697616577, -0.17413097620010376, -0.013748914003372192, -0.22715868055820465, 1.1399612426757812, 0.5523712635040283, 0.3017023503780365, 0.9158594012260437, 0.4404948055744171, -1.297515630722046, 0.9942989945411682, 0.7343222498893738, 0.18603943288326263, -0.602694571018219, -0.14832031726837158, 0.6999706625938416, -0.22911246120929718, 0.1851232647895813, 0.393619567155838, 0.6913111209869385, 0.06419617682695389, 0.6227160692214966, -0.1224411204457283, 0.3608107268810272, 0.6935603022575378, 1.3559513092041016, 0.21516138315200806, -0.3642542064189911, -0.9627477526664734, 0.7175869345664978, -0.7889348268508911, 0.012149892747402191, 0.9106942415237427, -0.05786523595452309, 1.397200345993042, -1.420100212097168, -0.2612314820289612, 0.1733289361000061, 0.34259238839149475, 1.0484833717346191, 0.38529837131500244, -0.6056232452392578, -0.32398882508277893, 0.8847377896308899, 0.6388481259346008, -0.5617140531539917, 0.3056098520755768, 0.053737930953502655, -0.37333133816719055, 0.07529834657907486, -0.9954456686973572, 0.7210219502449036, -0.2791910171508789, -0.486439973115921, -0.43895602226257324, -0.08057796210050583, 0.3655736446380615, 0.5399532914161682, 0.010409015230834484, 1.0867373943328857, -0.8938111662864685, -0.6651583313941956, 0.16240927577018738, -0.5973180532455444, 0.308951735496521, -0.3642938435077667, -0.4596790373325348, -0.9291232228279114, -0.9027621746063232, 0.11728242039680481, 0.4854596257209778, -0.3500397205352783, 0.08683312684297562, -0.5073877573013306, -0.9508514404296875, -0.22299253940582275, 0.9001222252845764, 1.3355718851089478, 0.819131076335907, 0.058433711528778076, 1.2009543180465698, 0.5210229158401489, -0.8843587636947632, -0.15785185992717743, 0.024346256628632545, 0.024107761681079865, 0.47834882140159607, -1.4971706867218018, -0.2853492498397827, -0.4192417860031128, 0.6779986619949341, -0.06275128573179245, 0.4106403887271881, 1.214638113975525, 1.064682126045227, -0.22012506425380707, -0.28411635756492615, 1.3603992462158203, -0.44789403676986694, 0.39583835005760193, 0.6237689852714539, -0.14545346796512604, -0.4737789034843445, -0.4398036003112793, -1.4166842699050903, 0.8200786709785461, -0.39593127369880676, -0.7696369886398315, 0.8158159255981445, 0.06513012945652008, 0.6116169691085815, 0.5766733884811401, -0.25613442063331604, 0.36970487236976624, 0.6100634336471558, -0.5185285806655884, -1.1987683773040771, -0.08170410990715027, 0.3360097408294678, -0.24309173226356506, -0.5614492893218994, -0.13116800785064697, 0.03510770946741104, -0.32922571897506714, 0.7905790209770203, -0.23862336575984955, 0.8732922077178955, 0.4360349476337433, 0.3812786936759949, -1.2244510650634766, 0.12988080084323883, -0.8935166597366333, -0.5775204300880432, 0.3395279049873352, 0.10835941880941391, -0.1598566174507141, -0.47522154450416565, -0.1320987492799759, -0.19097547233104706, -0.4078119993209839, -0.13527612388134003, -0.845443069934845, 0.35979893803596497, 0.6523148417472839, 0.02152063511312008, -0.005448400042951107, -0.4053017199039459, -0.22438843548297882, -0.06918862462043762, 0.24832212924957275, 0.2686957120895386, -1.5360534191131592, -0.02076854184269905, 0.24118390679359436, -0.19498808681964874, 0.14623986184597015, -0.07181017100811005, 0.041515596210956573, -1.4518110752105713, -1.3307112455368042, -0.412224680185318, -0.12160429358482361, 0.8049795031547546, -0.6722795963287354, 0.45678865909576416, 1.0771644115447998, -1.4387696981430054, 0.2626131474971771, 0.11186513304710388, -1.2860416173934937, 0.19032366573810577, -1.0764031410217285, 1.6593692302703857, -0.0729701891541481, 0.18907921016216278, -0.017907453700900078, 1.5119249820709229, -1.070185661315918, -1.9404162168502808, -0.6143467426300049, 0.22575923800468445, 0.36534494161605835, 1.2210179567337036, -0.3967534303665161, 0.7608062624931335, 0.2932778000831604, -0.49741148948669434, -0.5568342208862305, -0.13079477846622467, -0.6211526989936829, 0.18419276177883148, 0.12888650596141815, 0.07333313673734665, -0.1111832857131958, 1.2538094520568848, -0.7738078832626343, 0.9626047015190125, -0.28403031826019287, 1.373360276222229, -1.07064688205719, -0.03971634432673454, 0.08875935524702072, -0.1610732525587082, -1.845482349395752, -0.9228342175483704, -0.37797147035598755, -1.0987523794174194, -1.0221912860870361, 0.4490092396736145, 0.9288718700408936, -0.7705737352371216, -0.13815972208976746, 0.0035650022327899933, 0.6465465426445007, -0.7516486644744873, -0.19187355041503906, -0.33456218242645264, -0.2301989495754242, -0.14225272834300995, 0.07263778895139694, 0.06410261988639832, -1.8279838562011719, -0.03748396411538124, -0.06948945671319962, 0.5908015370368958, -0.8705703616142273, 1.0045056343078613, 0.6404666900634766, -0.2562195360660553, -0.2903819680213928, 1.5720796585083008, 1.1207557916641235, -0.5934395790100098, -0.6211232542991638, 0.2510676980018616, 0.24617543816566467, 0.33426642417907715, -0.7571740746498108, -0.22137565910816193, -0.7618677616119385, 0.7470279932022095, 0.7277352213859558, -0.004366337787359953, -0.19050081074237823, 0.16965197026729584, -0.22512540221214294, -0.3216019868850708, 0.39540815353393555, -0.4001765847206116, -0.027501018717885017, 1.1302410364151, 0.39028966426849365, -0.6682755351066589, 0.44308972358703613, 0.48969948291778564, 0.4293748140335083, -0.44999775290489197, 0.22150641679763794, 0.6571770906448364, -0.5557937622070312, 0.28253763914108276, -0.14215205609798431, -0.44472774863243103, 0.641338050365448, -0.5087975859642029, -1.1024249792099, -0.8336639404296875, -0.8279299139976501, -0.4536426365375519, 0.9639500379562378, -1.5626697540283203, -0.7709254026412964, 0.1718084216117859, -0.6619024276733398, -0.31339603662490845, -0.17411230504512787, 0.26834022998809814, 0.07352060824632645, 0.280988484621048, 0.9948031306266785, -0.447762131690979, 0.798932671546936, 0.4864421784877777, 0.24602089822292328, -0.9215642213821411, -0.6206955909729004, -0.04699009656906128, 0.29279017448425293, -0.09543681889772415, -0.005778157152235508, 0.2133270502090454, 0.15032213926315308, -0.9809864163398743, 0.03593160957098007, 0.23510082066059113, 0.5841860175132751, -0.4694804847240448, -0.1221945732831955, -0.19082817435264587, 0.15382172167301178, 0.47122207283973694, -0.7341670393943787, -0.6873922348022461, -0.735636293888092, 0.20799826085567474, -0.5545041561126709, 1.0561332702636719, -0.3970724642276764, 0.7284930348396301, 0.6552299857139587, 0.009657197631895542, -0.4753035008907318, -1.0068058967590332, 0.3660348355770111, -0.3012502193450928, 0.3216458857059479, -0.3471258580684662, 0.06801556050777435, 0.5603521466255188, -0.8083605170249939, 2.7161557227373123e-05, 0.12969152629375458, -0.361832857131958, -0.1498095840215683, -1.408921718597412, -0.2432428002357483, -0.6891947984695435, 0.4357132017612457, 0.6584073305130005, 0.060239266604185104, 0.6793023347854614, -0.499919056892395, -0.703424334526062, 0.41027817130088806, 0.1789795458316803, 0.2830978035926819, 0.6116890907287598, 1.3623830080032349, 1.8860934972763062, 1.1128922700881958, 0.42588895559310913, -0.4421645402908325, 0.12991611659526825, 0.130050927400589, 0.08499003946781158, -0.44799983501434326, 0.30110323429107666, 0.18467149138450623], [0.4371892213821411, 1.661475658416748, -2.377044439315796, 0.4390822947025299, 0.41083505749702454, 0.43149980902671814, 1.0915685892105103, -0.26938384771347046, 0.04312105476856232, -0.11570963263511658, -0.2649323344230652, 0.13379725813865662, 0.40417569875717163, 1.014714241027832, 0.8458701372146606, 0.7697651386260986, 0.6814728379249573, -0.22779342532157898, 0.21059037744998932, 1.039236307144165, -0.4741603136062622, -0.5897632241249084, -0.02005842514336109, -0.34060534834861755, -0.31426265835762024, 0.19146370887756348, -0.7063599824905396, -0.6174733638763428, -1.048465609550476, -0.7137428522109985, 0.14647138118743896, -0.19227871298789978, -0.527122974395752, -0.39056140184402466, -1.7186384201049805, -0.23399761319160461, 1.6278035640716553, 1.3173900842666626, 1.0977520942687988, 0.27615660429000854, 1.6104474067687988, -0.46834462881088257, 0.28472191095352173, -1.0829124450683594, 0.3050652742385864, -0.7988900542259216, 0.36959347128868103, -0.17809665203094482, -0.2871244549751282, -0.35862281918525696, 0.41729283332824707, -1.3409096002578735, 0.5814599394798279, 0.8124227523803711, 0.7186456322669983, -0.7022855281829834, 0.18066386878490448, -0.4567066729068756, 0.8777095675468445, -0.3710193634033203, 0.6487497687339783, -0.05307704582810402, -0.46988385915756226, 1.0341495275497437, 0.5579055547714233, -0.06187267228960991, 0.22095996141433716, 0.3306306302547455, -0.30159732699394226, 0.26046961545944214, 0.4748038947582245, -0.012854378670454025, -0.1753428429365158, 0.30404430627822876, -0.5130133032798767, 0.6872198581695557, 0.4009963572025299, 0.9810280203819275, 0.8007071614265442, 0.8405884504318237, -0.9633296132087708, -0.180376335978508, 0.756813645362854, -0.5397700071334839, 0.3348028063774109, -0.24061895906925201, 0.8741122484207153, -0.3116324543952942, -0.3307711184024811, 1.7386689186096191, 0.24358788132667542, -0.36906954646110535, 0.9183807373046875, -0.3232983946800232, -0.17829686403274536, -0.8339889049530029, -0.1975134164094925, -0.2397598773241043, -0.8530336022377014, -0.8137603998184204, -0.45870134234428406, -0.5349097847938538, -0.23792116343975067, -0.26043835282325745, -0.3419091999530792, 1.1433820724487305, 0.7969372868537903, -0.12006743252277374, -0.2670154869556427, 0.0026922281831502914, 0.19829760491847992, 0.5430999994277954, -1.146454095840454, -1.3412840366363525, -0.6700453162193298, 0.970558762550354, 1.087365746498108, -0.5280541181564331, 0.18970049917697906, 0.6865212917327881, 0.25363609194755554, -0.3219020664691925, -0.11171522736549377, 0.37864965200424194, 0.24927058815956116, 1.1331727504730225, -0.8079249262809753, 0.25676319003105164, -0.02375662699341774, 0.0009640492498874664, 0.15273740887641907, 0.21464288234710693, -0.07928547263145447, 0.8806468844413757, -1.0242228507995605, 1.7097113132476807, -0.365975946187973, -0.3339317739009857, -0.1043371632695198, -0.24230210483074188, 0.3622063994407654, 0.44708016514778137, 0.05141008272767067, -1.1345990896224976, -0.3368745744228363, -0.37128281593322754, -0.19215427339076996, -0.7205889821052551, -0.3686985671520233, 0.3737620711326599, -0.8997673392295837, 0.5790573954582214, 0.14106270670890808, 1.1848739385604858, 0.5529177188873291, 0.1858493536710739, -0.19471928477287292, 0.3066311776638031, 0.5695321559906006, 0.005930006504058838, 0.3418267071247101, 0.23066379129886627, -0.9329491257667542, 0.11187565326690674, -0.21297621726989746, -0.4242057502269745, 0.022150307893753052, 0.7512807250022888, -0.18744884431362152, 0.7952163815498352, -0.4840039908885956, -0.41377753019332886, -0.330636590719223, 0.40070822834968567, -0.10162504017353058, -0.7479145526885986, 0.7683629989624023, -0.4016847312450409, -1.4263672828674316, -1.2533798217773438, -0.07613498717546463, -0.09672868996858597, 0.3619052469730377, -0.4220311641693115, 0.14334721863269806, -0.30255305767059326, 0.6996147632598877, -0.4001043140888214, -0.3976806104183197, -0.47888654470443726, -0.6166446805000305, 0.6016093492507935, -0.2601591944694519, 0.3710037171840668, -0.6538787484169006, -0.7318618893623352, 0.7859510779380798, -0.5887818932533264, -0.11752931028604507, -0.1477111130952835, -0.4510343074798584, -0.30054253339767456, -0.3582346737384796, 0.5556340217590332, 0.08668061345815659, 1.1731051206588745, -0.8745073676109314, 0.3442675471305847, -0.7724305987358093, -0.35157889127731323, 1.2108228206634521, -0.1530923843383789, -0.5705390572547913, 0.6110981106758118, 0.025684097781777382, -1.5276161432266235, -0.1752433031797409, -0.023386275395751, -0.06221776455640793, 0.4989790618419647, 0.09890661388635635, 0.2117273211479187, 0.6751031875610352, 0.1659744530916214, 0.4062251150608063, -0.47096678614616394, -0.6845802664756775, -0.3921346962451935, -0.5737864375114441, 0.0857492983341217, -0.3524564802646637, -1.3748337030410767, 0.4682644009590149, 0.08957680314779282, -1.0126110315322876, 0.1035998985171318, 0.4344770610332489, 0.3573513329029083, 0.5854697823524475, 1.0707626342773438, 0.4319927394390106, 0.4658239483833313, -0.9812319874763489, 0.38057827949523926, -0.6536182165145874, 0.3419554829597473, 0.593890905380249, -0.1805437058210373, -0.08294493705034256, 0.9323785305023193, 0.8893833756446838, 0.5137167572975159, 0.5069369673728943, -0.17978009581565857, 0.009607713669538498, -0.06359638273715973, -1.0874077081680298, -0.1758544147014618, 0.28619900345802307, 1.3957722187042236, 0.27721452713012695, -0.6236829161643982, -0.29633694887161255, -0.19882197678089142, -0.4772051274776459, -0.37521892786026, -0.6704486012458801, -0.029799705371260643, -0.01034353394061327, 0.2621167004108429, 0.0779096856713295, 0.8618874549865723, 0.10849738866090775, 0.5698651075363159, -0.8762120008468628, -0.622992217540741, -0.7174031138420105, 0.6214998960494995, 0.19030776619911194, 0.628092348575592, -0.06072033569216728, -1.2565935850143433, -0.2945958077907562, 0.05220484361052513, 0.8382187485694885, -0.3759606182575226, -0.3472156822681427, 0.41520100831985474, 0.5302926898002625, -0.8921688795089722, 0.2107401043176651, 0.34068185091018677, -0.5028267502784729, 0.15040242671966553, -0.10222359746694565, 0.6522201299667358, 0.8974140882492065, -0.01630724035203457, -0.33425506949424744, -0.8139417767524719, 0.48008573055267334, 1.2399760484695435, 0.6792740821838379, 1.4418091773986816, 0.05739225819706917, -0.12855663895606995, -0.0236519742757082, -0.7190611958503723, -0.5723891854286194, -0.8083822727203369, -0.6647385358810425, -0.527093768119812, -0.20947091281414032, 0.0720704197883606, 0.08346541225910187, 0.5338762998580933, -0.11794256418943405, -0.253262460231781, 1.5509215593338013, -0.1265431046485901, -0.3439299762248993, -0.010403095744550228, -0.24444012343883514, -0.974544882774353, 0.05765283852815628, 0.9072514176368713, -1.3117331266403198, -0.18551582098007202, 0.03327363729476929, -0.4674417972564697, 0.19447822868824005, -0.0787365734577179, 0.6011629104614258, -1.2586363554000854, -1.0817582607269287, -0.47783344984054565, 1.289231538772583, 0.3923042416572571, -0.2871851325035095, -0.5176385045051575, 0.41432225704193115, 0.6107416749000549, -0.247104212641716, -0.48044124245643616, 0.6038601994514465, -0.24586515128612518, -0.8610657453536987, 0.007407700642943382, 0.1665600687265396, 0.2338823825120926, -0.22317299246788025, -0.6015455722808838, -0.09627944976091385, -0.5406257510185242, 0.42384013533592224, 0.9199027419090271, -0.06352189183235168, 1.3293346166610718, 0.014895947650074959, -0.3137485086917877, 0.4385816752910614, 0.4184914231300354, 0.04449902102351189, -1.2170703411102295, 0.7283807992935181, 0.493449330329895, 1.3706642389297485, 0.4340198338031769, 0.054574184119701385, 0.21413195133209229, -0.0002613849937915802, 0.13069860637187958, 0.5049988031387329, 0.4924789369106293, -0.022370601072907448, -0.23039019107818604, -0.46931102871894836, -0.21866539120674133, 0.18829236924648285, -0.3355458080768585, -0.14457076787948608, 0.6026008725166321, -0.861447274684906, -1.1609327793121338, 1.055642008781433, 0.027626128867268562, -0.008997729048132896, -0.6053112149238586, -0.20952168107032776, 0.5811936855316162, -0.3414541780948639, 0.3574399948120117, -0.20358826220035553, 0.5044419169425964, 0.4978194534778595, -1.0510729551315308, -0.016618821769952774, 0.17188285291194916, 0.29461362957954407, 0.5328465104103088, -0.6570487022399902, 0.24897480010986328, -0.14083844423294067, 0.8856539130210876, 0.43799832463264465, 0.23236121237277985, 0.6470242738723755, 0.20653773844242096, -0.4633660614490509, -0.09267659485340118, 0.10749657452106476, 0.07792684435844421, -0.8950117230415344, 0.09793072938919067, 0.2956176996231079, 0.32262712717056274, -0.1435777097940445, -0.5233262181282043, -0.17879197001457214, 0.38163790106773376, -0.18786314129829407, 0.1246807798743248, -0.13753792643547058, -0.40042170882225037, 0.7493677735328674, 0.9072067737579346, 0.08976400643587112, 0.1978553682565689, 0.07125283777713776, -1.2068296670913696, 0.18475519120693207, 0.6339576840400696, -0.36049574613571167, -0.6806676983833313, 0.34871843457221985, -0.36035382747650146, -0.43686360120773315, 0.1992424726486206, 0.5986469388008118, 0.938836932182312, 0.5693086385726929, -0.46332621574401855, -0.20074142515659332, 0.19203856587409973, 0.9546746611595154, 0.9810627102851868, 0.21092489361763, -0.8134545087814331, -0.8297774791717529, 0.40151336789131165, -0.6760917901992798, -0.07653128355741501, 0.8808324933052063, 0.34542855620384216, 1.2920444011688232, -1.2061368227005005, -0.08704029023647308, 0.5315240621566772, 0.12776505947113037, 0.5322477221488953, 0.6203988194465637, -0.45033901929855347, -0.2997923195362091, 0.5567781329154968, 0.49005141854286194, 0.14920254051685333, -0.702275276184082, 0.6335280537605286, -0.04760773107409477, 0.2174171358346939, -0.7534719109535217, 0.3854354918003082, -0.6209215521812439, -0.09526975452899933, 0.06392918527126312, -0.7872578501701355, -0.42356038093566895, 0.661830484867096, 0.67030930519104, 1.672114610671997, -0.26714888215065, -0.9562767148017883, -0.12698979675769806, -0.7435645461082458, 0.6222596764564514, 0.0844985842704773, -0.5000082850456238, -0.4867739677429199, -0.3540239632129669, -0.42771607637405396, 0.5748295783996582, -0.16359412670135498, -0.2470172792673111, -0.4738348126411438, -1.345848560333252, 0.3574772775173187, 0.8106135725975037, 1.2332426309585571, 0.5869881510734558, -0.29161596298217773, 0.161491259932518, 0.3053204417228699, -0.6484389901161194, -0.6270902752876282, 0.4774293899536133, -0.35127881169319153, 0.4939759075641632, -0.7401362657546997, -0.5383473038673401, 0.8327235579490662, 0.5009738206863403, 0.2040737271308899, 0.8748100996017456, 0.9697779417037964, 1.2656339406967163, -0.6741951107978821, -0.1288994699716568, 0.3018859028816223, -0.525715708732605, 0.8194592595100403, 0.9401716589927673, -0.36017000675201416, -0.4693034291267395, -0.7152533531188965, -1.4119716882705688, 0.5099008679389954, 0.24681851267814636, -0.9435713887214661, 0.956038773059845, 0.4957013726234436, 0.814041018486023, 0.21577902138233185, -0.9194790124893188, 0.23743796348571777, 0.0501774400472641, -0.41961637139320374, -0.9415938258171082, 0.47470447421073914, -0.33107802271842957, -0.25438058376312256, -0.21866855025291443, -0.17223945260047913, 0.24514201283454895, -0.04042484238743782, -0.02235446684062481, 0.6371036171913147, -0.05254777893424034, 0.9037451148033142, 0.3339006304740906, -0.31093379855155945, 0.5304771661758423, -0.04705040156841278, -0.35868266224861145, -0.3089483082294464, 0.4787878692150116, 0.30085891485214233, 0.4943445920944214, -0.20399776101112366, -0.42484021186828613, -0.007543323561549187, -0.2042694091796875, -0.03328153118491173, 0.5497735142707825, 0.6584165692329407, -0.08431144803762436, -0.021221421658992767, -0.32552579045295715, 0.2018585205078125, -0.5945561528205872, 0.7094797492027283, 0.2629420757293701, -1.0615078210830688, 0.08078254014253616, 0.09836665540933609, -0.9894396662712097, -0.23817184567451477, -0.39305946230888367, -0.6180911064147949, -1.0855122804641724, -1.5457336902618408, -0.31908440589904785, -0.09306056797504425, 0.6090816855430603, -0.5967820286750793, 1.1215558052062988, 0.035524286329746246, -1.4591526985168457, 0.2037203311920166, 0.5590826272964478, -1.074808955192566, -0.07727965712547302, -1.2719531059265137, 0.43240708112716675, -0.2777896225452423, 0.5564407110214233, -0.28843769431114197, 0.5763048529624939, -1.6420472860336304, -1.3666218519210815, -0.8084135055541992, 0.2123420387506485, 0.671782910823822, 0.7060073018074036, -1.612524151802063, 0.7899671792984009, 0.8435255885124207, -0.36969003081321716, 0.030210062861442566, 0.4296652674674988, -0.30682677030563354, -0.09640088677406311, 0.2678671181201935, 0.7206534147262573, -0.13344472646713257, 1.0331580638885498, 0.22044873237609863, 1.2353973388671875, -0.2750314474105835, 1.0865484476089478, -1.2205601930618286, -0.3856698274612427, 0.30084899067878723, 0.5298942923545837, -1.2955418825149536, -0.6948431134223938, -0.11959651112556458, -0.26591306924819946, -0.8562793135643005, 0.3797209858894348, 0.571865439414978, -0.6599071621894836, -0.25379815697669983, -0.33871597051620483, 0.3806435167789459, -1.0420018434524536, 0.482755184173584, -0.09194725751876831, -0.12494951486587524, -0.480916291475296, 0.30774763226509094, -0.3562864363193512, -1.1270439624786377, 0.1445922702550888, -0.04760837182402611, 0.14439469575881958, -0.9900294542312622, 0.7614049911499023, 0.7573586702346802, 0.4789404571056366, -0.3028312623500824, 1.2117618322372437, 0.5216541886329651, -0.179103821516037, -0.11364976316690445, 0.4015950858592987, -0.44655001163482666, 0.1517186462879181, -0.5233114361763, 0.11906398832798004, -0.7370035648345947, 1.537969946861267, -0.10588452965021133, 0.4885120391845703, 0.31519797444343567, 0.25051024556159973, -0.410075843334198, -0.3425499498844147, 0.5939905047416687, -0.9059080481529236, -0.3726997971534729, 1.1064763069152832, 0.4960612952709198, -0.46245548129081726, 0.12787029147148132, 0.35777202248573303, -0.3807660639286041, -0.049292560666799545, 0.44424110651016235, -0.21451584994792938, -0.4303479492664337, 0.564553439617157, 0.30987682938575745, -0.11934223771095276, -0.17577610909938812, 0.14255918562412262, -1.825958251953125, 0.13584524393081665, -0.41399314999580383, -0.6693063378334045, 0.4158373475074768, -0.9596218466758728, -0.7608426809310913, 0.06580043584108353, 0.05690750852227211, -0.27850228548049927, -0.1946936994791031, 0.477571964263916, 0.008359253406524658, -0.03535822033882141, 0.4755600392818451, -0.012189868837594986, 1.4024494886398315, 0.1830274611711502, -0.24949993193149567, -1.156387448310852, 0.1500949263572693, 0.3598109185695648, 0.1107136532664299, 0.04048994556069374, -0.024326682090759277, 0.9319244027137756, -0.32510799169540405, -1.01283597946167, 0.06049709767103195, 0.5445852279663086, 0.0138467475771904, 0.13379992544651031, -1.1400699615478516, 0.4683956503868103, -0.13494716584682465, 0.6577787399291992, -0.47631338238716125, -0.6995625495910645, -1.308873176574707, 0.4504767656326294, -0.9445080757141113, 0.6183815598487854, -0.7028379440307617, 0.611778974533081, 0.20173482596874237, -0.26921355724334717, -0.6555708646774292, -0.15796594321727753, 0.393005907535553, 0.28789809346199036, 0.3272627592086792, -0.04849543049931526, 0.12781834602355957, -0.23126724362373352, -0.8741311430931091, 0.04785434529185295, 0.07218607515096664, -0.38547563552856445, 0.3842359185218811, -0.7224684953689575, -0.3608620762825012, -0.7992913722991943, -0.10928227007389069, 0.6461933255195618, 0.44951120018959045, 0.011118941009044647, -0.008386585861444473, -0.6791984438896179, 0.5058708190917969, 0.3458971083164215, -0.6111077070236206, 0.37252140045166016, 0.7528018951416016, 1.8859293460845947, 0.2795872986316681, 0.0951385647058487, -0.6044660806655884, 0.8467651009559631, -0.8547964096069336, 0.12199213355779648, -0.20033268630504608, -0.13441133499145508, -0.6853039860725403], [0.16964071989059448, 1.8087329864501953, -2.1003708839416504, 0.48055529594421387, 0.1500793993473053, -0.24084866046905518, 1.3481035232543945, -0.025276601314544678, 0.72078937292099, -0.09927290678024292, -0.726832389831543, 0.49737849831581116, -0.01966826617717743, 0.6371602416038513, 1.1589182615280151, 0.7665383815765381, 0.8964208364486694, -0.45015937089920044, 0.04596148431301117, 1.2614054679870605, -0.15021660923957825, -0.3835768699645996, 0.11679317057132721, 0.14894956350326538, -0.23698875308036804, -0.12599633634090424, -1.4537876844406128, -0.4924183785915375, -0.8973240256309509, -1.3198026418685913, 0.6310990452766418, 0.03347969800233841, 0.4641519784927368, -0.36130449175834656, -1.2102117538452148, -0.33387207984924316, 1.4489705562591553, 1.4693639278411865, 0.09379153698682785, 0.2362402081489563, 1.359776496887207, -0.4655451774597168, 0.036294907331466675, -0.6645522713661194, -0.5852607488632202, -0.48633983731269836, 0.8029193878173828, -0.06085900962352753, -0.4950172007083893, -0.29481789469718933, 0.49961531162261963, -1.3885595798492432, -0.4144173264503479, 1.0979326963424683, 1.394710898399353, -0.9696651697158813, 0.32250645756721497, 0.15262678265571594, 0.30418261885643005, -1.1794036626815796, 1.2922505140304565, 0.5151392221450806, -0.3838660717010498, 1.5636013746261597, -0.23208041489124298, -0.5177545547485352, -0.05229515582323074, 0.4914388358592987, -0.1463841050863266, -0.5125053524971008, -0.06582478433847427, 0.5445309281349182, -0.05052333325147629, 0.1949596405029297, -0.46227502822875977, 0.025785358622670174, -0.07270393520593643, 0.34576717019081116, 0.8670571446418762, 0.7637959122657776, 0.2636324167251587, -0.8110381960868835, 0.5403555035591125, 0.37987178564071655, 0.7356879115104675, 0.012035280466079712, 0.7352867722511292, -0.7137092351913452, -0.40099194645881653, 1.5525189638137817, -0.18636736273765564, -0.09766384959220886, 0.5953363180160522, -0.8279551863670349, -0.3666329085826874, -1.0598417520523071, 0.6296729445457458, 0.05143103748559952, -0.6410656571388245, -0.15588296949863434, -0.665740430355072, -0.5529899597167969, 0.4486469328403473, 0.27978408336639404, -0.49817386269569397, 1.0192334651947021, -0.0008606761693954468, -0.03568359464406967, -0.1211695671081543, -0.4964195787906647, 0.2151389718055725, 0.6969554424285889, -0.771765947341919, -1.485349178314209, -0.5411820411682129, 1.324845552444458, 1.085733413696289, 0.4566154181957245, 0.6419413089752197, 1.448151707649231, -0.33985376358032227, -0.28816166520118713, 0.042658731341362, 0.8296628594398499, 0.27544909715652466, 0.7348078489303589, -0.3389267325401306, -0.41371962428092957, 0.10866530239582062, 0.6099714636802673, 0.07430922985076904, -0.08934736251831055, -0.6910017728805542, 1.0187057256698608, -1.3734341859817505, 1.3225133419036865, -0.24393947422504425, -1.0631431341171265, -0.4041518568992615, -0.5309149026870728, 0.7780773639678955, 0.28723931312561035, -0.5380660891532898, -0.2712860405445099, -0.3004246652126312, -0.9934999346733093, 0.5753251910209656, -0.19090525805950165, 0.060724370181560516, 1.0098559856414795, -0.7569581866264343, 0.24021729826927185, 0.007956672459840775, 1.0571630001068115, 0.28254860639572144, -0.16335906088352203, 0.3204261362552643, 0.2622915804386139, 0.7096168398857117, 0.06347128003835678, 0.9138952493667603, -0.2349383682012558, -0.3719066083431244, 0.42177826166152954, 0.23321717977523804, -0.43539339303970337, -0.4800085723400116, 1.242316722869873, -0.40055370330810547, 0.5190547108650208, -0.15423379838466644, -0.41464728116989136, -1.1702167987823486, 0.2942805290222168, 0.30269408226013184, 0.01707616075873375, 0.9913226962089539, -0.3588029444217682, -1.3655935525894165, -0.8288804888725281, 0.2483581304550171, -0.9532842636108398, 0.11025052517652512, -0.3161747455596924, 0.6817529797554016, -0.3090403378009796, 0.5427478551864624, -0.33860138058662415, -0.21294669806957245, -0.7854105234146118, -0.520114541053772, -0.2144685536623001, -0.25614774227142334, -0.0047529712319374084, -0.5219923257827759, -0.46077612042427063, 0.7119411826133728, -1.335326075553894, -0.16432245075702667, 0.2255399376153946, -0.22844283282756805, -0.00657765194773674, -0.9926515817642212, 0.7182455062866211, -0.24203430116176605, 1.3803484439849854, -0.869573175907135, 0.7049490809440613, -0.935786783695221, -0.6601335406303406, 1.142117977142334, -0.6481011509895325, -0.5629966259002686, 0.7089987397193909, -0.12488185614347458, -1.1520437002182007, -0.18542274832725525, 0.2860957682132721, -0.8146553039550781, 0.19337014853954315, 0.28247779607772827, 0.49310922622680664, 0.720527172088623, 0.24454151093959808, 0.14074186980724335, -0.8719526529312134, -0.9428512454032898, -0.2836710214614868, -0.5676764249801636, 0.05822908133268356, -0.27744656801223755, -1.156986117362976, 0.36002472043037415, 0.4892790913581848, -0.6873393654823303, -0.2432514727115631, -0.20597118139266968, 0.6406943798065186, 0.3885442614555359, 0.8668470978736877, 0.6284077167510986, 0.587081789970398, -0.98396897315979, -0.18922476470470428, -0.6053914427757263, 0.8623576760292053, 0.6114798784255981, -0.64439857006073, -0.029718760401010513, 0.8567363023757935, 0.9991704821586609, -0.2812860608100891, 0.9975210428237915, -0.6980780959129333, -0.32712769508361816, -0.5880710482597351, -1.0634865760803223, 1.088967204093933, -0.35931164026260376, 2.0656464099884033, 0.7637923359870911, -0.2458246350288391, 0.2044329196214676, 0.11039505898952484, -0.6665406823158264, -0.16228558123111725, -0.36591702699661255, 0.10512465238571167, 0.06488289684057236, 0.013028142973780632, -0.27110692858695984, 0.873386800289154, -0.20471279323101044, 1.0669703483581543, -0.20789006352424622, -0.3905165493488312, -0.3591233789920807, -0.036921147257089615, -0.43270331621170044, 1.0339409112930298, -0.029896389693021774, -1.9605504274368286, 0.16525958478450775, -0.0684768483042717, 0.5012518167495728, 0.025663644075393677, -0.3464038372039795, -0.14522574841976166, 0.015038056299090385, -0.7474105954170227, 0.42059841752052307, -0.19490422308444977, -0.5416558980941772, 0.4485936760902405, -0.1627654731273651, 0.585688591003418, 1.4261969327926636, 0.12678781151771545, -0.7108253240585327, 0.4136185348033905, 0.5077191591262817, 1.1301099061965942, 0.3618898093700409, 1.9344409704208374, 0.2764820158481598, 0.1145251989364624, 0.14294548332691193, -0.384490966796875, -0.5012343525886536, -0.3398340344429016, -0.8043444156646729, -0.37459462881088257, -0.3727567493915558, -0.028680123388767242, 0.4970111846923828, 0.3380052149295807, -0.3731667101383209, 0.26281046867370605, 1.4222906827926636, -0.25368914008140564, 0.027437938377261162, 0.4913802742958069, -0.4648182988166809, -0.21809259057044983, -0.06202172487974167, 1.2546194791793823, -1.555580496788025, -1.1177922487258911, -0.6117189526557922, -0.17310954630374908, 0.4137072265148163, 0.39603057503700256, 0.47820109128952026, -1.8586262464523315, -0.18429051339626312, -0.06923957169055939, 1.4649626016616821, -0.30486437678337097, -0.3436213731765747, -0.31000274419784546, 0.6639275550842285, 0.5069193243980408, -0.295620858669281, -0.9062937498092651, 1.0753120183944702, -0.5099593997001648, -0.809082567691803, 0.21427546441555023, 0.028660405427217484, 0.835983395576477, -0.2755613625049591, -0.5723914504051208, -0.497967928647995, -0.2926616072654724, -0.24312162399291992, 0.8415325284004211, -0.5545403361320496, 1.3205558061599731, -0.15928055346012115, -0.307279497385025, 1.141495943069458, 0.09910255670547485, -0.11937222629785538, -1.2309141159057617, 0.8388156890869141, 0.577541172504425, 1.2552733421325684, 0.02617824636399746, 0.2589597702026367, 0.5296921133995056, 0.5259206891059875, 0.2968601882457733, 0.2403491884469986, 0.24617648124694824, 0.33867573738098145, 0.15305481851100922, -0.30778905749320984, 0.009305279701948166, 0.0343954935669899, -0.24298781156539917, -0.6057559251785278, 0.3394283950328827, -1.1302465200424194, -0.6923458576202393, 0.8981423377990723, 0.6407791972160339, -0.263761967420578, -0.2042657881975174, 0.028920574113726616, 0.47667092084884644, -0.23646226525306702, 0.25632137060165405, 0.13243387639522552, 0.222011536359787, 0.4803871512413025, -1.3372063636779785, -0.2301950454711914, -0.24584586918354034, 0.7878198623657227, 0.3346104323863983, -0.43320855498313904, 0.43334445357322693, -0.8315050005912781, 0.5926177501678467, 1.0638362169265747, -0.35968464612960815, 0.024311039596796036, 0.10639726370573044, -0.3382055163383484, -0.12101203948259354, -0.29682183265686035, 0.5022391676902771, -1.156610369682312, 0.6522785425186157, 0.7312130928039551, -0.11958813667297363, -0.19351302087306976, 0.20025697350502014, -0.09327125549316406, 0.11382156610488892, -0.042100995779037476, -0.03599421679973602, 0.6504551768302917, -0.09169971197843552, 0.9675687551498413, 0.3526918888092041, 0.29354992508888245, 0.36408716440200806, -0.15328311920166016, -0.6101875901222229, -0.2834574580192566, 0.5524648427963257, -0.21408428251743317, -0.5966965556144714, -0.4909312427043915, 0.018379515036940575, -0.23501837253570557, 0.45970988273620605, 0.11592945456504822, 0.7275484800338745, 0.3687524199485779, -0.12560534477233887, 0.23044320940971375, 0.7938750982284546, 0.6626054644584656, 0.515992283821106, -0.029535606503486633, -0.8121135830879211, -0.4429216980934143, -0.19968369603157043, -1.0402061939239502, 0.4006262719631195, 0.7268728017807007, -0.26287710666656494, 1.0869970321655273, -1.0774421691894531, 0.23147831857204437, 0.5507953763008118, 0.23697611689567566, -0.04624622315168381, 0.7386329174041748, -0.615355908870697, -0.12280287593603134, 0.4576115310192108, -0.06130251660943031, -0.001531217247247696, 0.14882014691829681, 0.28123748302459717, -0.19528329372406006, 0.8360937237739563, -1.0471971035003662, 0.9366066455841064, -0.6111885905265808, -0.1708795428276062, 0.37303441762924194, -1.2477778196334839, -0.21147547662258148, 0.4767462909221649, 0.27527934312820435, 1.3362940549850464, -0.0530761294066906, -1.0407487154006958, 0.14382590353488922, -0.886857271194458, 0.4837352931499481, -0.5386009812355042, -0.27441489696502686, -0.5359538793563843, 0.695076584815979, -0.38219401240348816, 0.4714009165763855, -0.6908320188522339, -0.5321381688117981, -0.4959850013256073, -0.9852457046508789, 0.9391836524009705, 0.003517303615808487, 0.9820966720581055, 0.07497451454401016, -0.13458716869354248, -0.22615382075309753, 0.68418288230896, -0.8950535655021667, -1.0067052841186523, -0.13936056196689606, -0.2545674741268158, -0.09298191964626312, -0.9546273946762085, -0.939801812171936, 0.49531224370002747, 0.7686123847961426, -0.014107641763985157, 0.7835441827774048, 0.9610475301742554, 1.02191162109375, -0.1755097657442093, -0.28178444504737854, 0.3858630359172821, -0.7656083703041077, 0.8291869163513184, 0.6315315961837769, -0.6828770637512207, -0.7941218614578247, -1.0289608240127563, -1.5237584114074707, 0.10742682218551636, 0.3131157457828522, -0.2453080266714096, 0.8019533753395081, 0.9169982075691223, 0.6620954871177673, 0.6583186984062195, -1.0514955520629883, 0.796353816986084, -0.31305181980133057, -0.4924745559692383, -1.022398829460144, 0.8493673801422119, 0.245688796043396, 0.08288397639989853, 0.0882415920495987, 0.11485666036605835, -0.04064588248729706, 0.16747534275054932, -0.5598440766334534, 0.3232417702674866, -0.17310965061187744, 0.7500583529472351, 0.4326140880584717, -0.5338596105575562, -0.27049893140792847, -0.15833507478237152, -0.41193488240242004, 0.09936242550611496, 1.0877643823623657, -0.15220382809638977, -0.10109247267246246, -0.12383625656366348, -0.43520423769950867, -0.8314250111579895, -0.09834383428096771, 0.036610621958971024, 0.8029133081436157, 0.2554614245891571, -0.3130165636539459, -0.2376919537782669, 0.006044899113476276, 0.10066141188144684, -0.3899400234222412, 0.446438193321228, -0.003179578110575676, -1.1816388368606567, 0.02450948767364025, 0.11321066319942474, -1.4310225248336792, 0.14839909970760345, -0.0012575555592775345, -0.023103198036551476, -0.9160915017127991, -0.2665027379989624, -0.35911110043525696, 0.7176712155342102, 0.7003220319747925, -0.7021201848983765, 0.988652229309082, 0.4564906358718872, -1.352723240852356, 0.354787141084671, -0.15318302810192108, -1.0424630641937256, -0.054669104516506195, -1.6389871835708618, 0.3414281904697418, 0.19769926369190216, 0.3684796392917633, -0.4154515862464905, 1.0081894397735596, -1.5256364345550537, -1.4554299116134644, -1.0271693468093872, -0.36067962646484375, 0.45277321338653564, 0.27415040135383606, -0.5176281929016113, 1.1686782836914062, 0.5449267625808716, 0.17598840594291687, 0.045024897903203964, 0.27438992261886597, -0.31704628467559814, 0.2557905316352844, -0.16195915639400482, 0.4661805033683777, 0.06895134598016739, 0.759885311126709, 0.46328333020210266, 1.4023127555847168, 0.5421357154846191, 1.2283806800842285, -0.3949012756347656, -0.1447475552558899, 0.44319042563438416, 0.880692720413208, -0.6553614735603333, -0.9040178656578064, -0.21801215410232544, -0.6060102581977844, -0.5764946341514587, -0.04237984120845795, 0.980894148349762, -0.38679978251457214, -0.2737031579017639, -0.9100595712661743, 0.22554579377174377, -1.1261426210403442, 0.6453942060470581, 0.07656987011432648, -0.7106634378433228, -0.45270153880119324, 0.18101206421852112, -0.5335851311683655, -1.1189275979995728, 0.8399783372879028, 0.1683952957391739, 0.17788070440292358, -0.16750667989253998, 0.1414743810892105, 0.7866438627243042, 0.6413046717643738, -0.3389659523963928, 1.3059985637664795, 0.7800137996673584, -0.5407989025115967, 0.19906964898109436, -0.009496217593550682, -0.04779898375272751, 0.07034644484519958, -0.276422917842865, -0.3891349136829376, -0.985923707485199, 1.5889098644256592, 0.05810752511024475, -0.12181761860847473, -0.16692626476287842, 0.4067413806915283, -0.4569433331489563, 0.36077600717544556, 0.7321374416351318, -0.868658185005188, -0.5122712850570679, 1.2133551836013794, 0.13824236392974854, -0.32766053080558777, 0.053702212870121, 1.0807276964187622, 0.49740898609161377, -0.27299004793167114, 0.8698464632034302, 0.14341400563716888, -0.3837226927280426, 0.37198784947395325, 0.4535355269908905, -0.36457279324531555, -0.3194557726383209, -0.2654847204685211, -1.7386127710342407, 0.1875743418931961, -0.24596722424030304, -0.3460833728313446, 0.21277445554733276, -0.9365700483322144, 0.28029027581214905, -0.07227275520563126, -0.1048697903752327, -0.0628601536154747, -0.6860615611076355, 0.5299781560897827, 0.14723138511180878, -0.09822981059551239, 0.9285416007041931, -0.269868940114975, 1.0188956260681152, -0.389515221118927, -0.21406900882720947, -1.1964490413665771, -0.3034375011920929, 0.45949965715408325, 0.36074453592300415, -0.5697444081306458, -0.5126021504402161, 0.2355891466140747, -0.4084082543849945, -0.608372688293457, 0.16172054409980774, 0.05570926517248154, -0.08446059376001358, -0.028569497168064117, -0.4507899582386017, 0.7574905753135681, 0.1039654091000557, 1.0284929275512695, -0.27184000611305237, -0.8252476453781128, -1.5178028345108032, -0.07275797426700592, -0.7185291647911072, 0.6360499858856201, -0.7540556788444519, 0.8976358771324158, -0.3850758671760559, -0.6675633192062378, -0.8168294429779053, 0.011008365079760551, 0.5773962736129761, -0.3991173207759857, -0.0703553780913353, 0.08454803377389908, -0.3603816628456116, -0.3130505084991455, -0.5462077260017395, -0.3784081041812897, 0.2761595547199249, -0.4949454069137573, -0.4111776053905487, -1.060793399810791, -0.8498801589012146, -0.4753694534301758, -0.3041377365589142, 0.2725279927253723, 0.19565264880657196, -0.4718594551086426, 0.024313878268003464, -1.3019295930862427, 0.3566705286502838, 0.7794368863105774, -0.48759403824806213, -0.239914208650589, 0.6637928485870361, 1.8691246509552002, 0.754636287689209, -0.23935823142528534, -0.4538026452064514, 0.6921001672744751, -0.6336439251899719, 0.4950255751609802, -0.5543743371963501, -0.29912713170051575, -0.12006790190935135], [1.0265713930130005, 1.2988357543945312, -1.9630874395370483, -0.8684037327766418, 1.0550103187561035, 0.05741391330957413, 0.6848853230476379, 0.42285221815109253, 0.6766619682312012, -0.1438523828983307, -0.07449661195278168, 0.25041449069976807, 0.01943167671561241, 0.4046814739704132, 0.11508386582136154, 0.5951837301254272, 0.4377799928188324, -0.014857138507068157, 0.4468476474285126, 1.0791759490966797, -0.06259205937385559, 0.07350778579711914, -1.151248574256897, -0.3391522169113159, -0.12105652689933777, 0.6847845315933228, -1.1128573417663574, -0.9127162098884583, -0.7997570037841797, -0.9482263922691345, 0.959048330783844, -0.6338499188423157, 0.33755576610565186, 0.07139619439840317, -1.686341404914856, -0.8424094319343567, 2.18190860748291, 0.9279414415359497, 0.8122764825820923, 0.06709219515323639, 1.8197193145751953, 0.9020946025848389, 0.2147279530763626, -1.4888343811035156, -0.5801969766616821, 0.30776527523994446, 0.7670020461082458, -0.2098369598388672, -0.3436278700828552, -0.4125193953514099, 0.800575852394104, -0.9773531556129456, 1.0385011434555054, 1.0867921113967896, 1.0698059797286987, -0.38396817445755005, -0.28016483783721924, 0.29141920804977417, -0.07045245915651321, -0.3898068964481354, 1.217696189880371, 0.2255050539970398, -0.4964981973171234, -0.0013892101123929024, 0.5415536165237427, 0.5680484771728516, -0.34337520599365234, 1.048764705657959, -0.20473788678646088, 0.03768007457256317, 0.7920118570327759, 0.021772926673293114, -0.5735707879066467, 0.4450911283493042, -0.7373210191726685, 0.0923890769481659, 0.4335922300815582, 0.8262937664985657, 0.7582465410232544, 0.3368242383003235, -0.6940403580665588, 0.294460654258728, 1.100799798965454, -0.17683158814907074, 0.2806892991065979, 0.028469422832131386, 0.2432330697774887, -0.9524309635162354, -0.08688786625862122, 1.6066803932189941, 0.21096661686897278, -0.31897205114364624, 0.22427688539028168, -0.6559147834777832, -0.4548935294151306, -0.49965423345565796, -0.22059768438339233, -1.0322805643081665, -0.2593673765659332, -0.6138303279876709, -1.2880862951278687, -0.5702994465827942, 0.5614213347434998, 0.7226243019104004, -0.48873990774154663, 1.281026840209961, 0.13319401443004608, -0.16527077555656433, -0.06753554940223694, -0.12085410952568054, -0.3331363797187805, 0.49952083826065063, -0.4308222234249115, -0.4465330243110657, -0.6464051008224487, 0.6221963167190552, 1.0011438131332397, -0.26158639788627625, 0.5319538712501526, 1.3904955387115479, -0.21197646856307983, 0.38474342226982117, -0.008584782481193542, 1.2175146341323853, 0.6770693063735962, 0.04765678942203522, -0.5565014481544495, -0.5479589104652405, 0.22599440813064575, -0.02943972870707512, 0.1842079907655716, -0.1313861757516861, -0.02285715751349926, 0.8042548298835754, -0.861617386341095, 1.308961272239685, 1.0722512006759644, -0.5074794292449951, -0.19597387313842773, -0.27348944544792175, 0.7000599503517151, 0.49482837319374084, 0.2954525053501129, -0.5307591557502747, 0.0339740514755249, -0.4925611913204193, 0.23243503272533417, -0.46445751190185547, -0.18170595169067383, -0.08780205249786377, -0.8857592344284058, 0.3624020516872406, 0.6005657911300659, 0.7971190810203552, -0.037774525582790375, -0.5094061493873596, -0.04465842992067337, 0.15709738433361053, 0.6355037093162537, 0.4763838052749634, 0.674909770488739, 0.4943964183330536, -0.7210289239883423, 0.9614742398262024, 0.2855105698108673, -0.010274237021803856, -0.02139141783118248, 0.9892739057540894, -0.31904974579811096, 1.0293370485305786, -1.2486698627471924, -0.49018800258636475, -0.46137872338294983, 0.6082634329795837, 0.8488622903823853, -0.325333833694458, 0.9818862080574036, -0.7416130900382996, -0.6113576889038086, -0.8965169191360474, 0.10089237242937088, 0.24298934638500214, 0.2109302282333374, 0.1256994754076004, 0.4643966257572174, -0.02653077058494091, 0.5180396437644958, -0.4085516333580017, -0.8338565826416016, -0.2300381362438202, -0.8530719876289368, 0.02014511078596115, -0.9915371537208557, 0.08354529738426208, -0.13532279431819916, -1.4983465671539307, 0.5194792151451111, -0.4255533516407013, -0.47130122780799866, 0.29686301946640015, -0.4190240502357483, 0.0322527252137661, -0.7903493642807007, 0.13828204572200775, -0.4945066571235657, 0.4208129942417145, -0.9623398184776306, 0.7631092071533203, -0.5358502268791199, -0.8475840091705322, 1.3031466007232666, -0.5070783495903015, -0.2417422980070114, 0.8316280245780945, 0.20137928426265717, -1.2379505634307861, 0.0837085023522377, -0.12483840435743332, -0.2751618027687073, -0.05039871484041214, 0.536145031452179, 0.51994389295578, 0.7178793549537659, -0.07412255555391312, 0.4171407222747803, -0.2850185036659241, -0.9636320471763611, -0.472010999917984, -0.38751235604286194, -0.12325498461723328, -0.6377739906311035, -1.5091814994812012, 0.6820679903030396, 0.23233939707279205, -1.2219640016555786, 0.0914604440331459, 0.233302041888237, -0.14598695933818817, 0.4605691730976105, 0.7392474412918091, 0.24273070693016052, 0.7704150080680847, -0.36791253089904785, 0.14114710688591003, -0.7917750477790833, 0.6814773082733154, 0.5235626101493835, -1.0799695253372192, 0.12192828208208084, 1.5883452892303467, 0.26164647936820984, 0.25578996539115906, 0.611370861530304, -0.5388018488883972, -0.054259367287158966, -0.38056680560112, -1.116823434829712, 0.4305460453033447, -0.27239933609962463, 1.8422330617904663, 1.1486124992370605, -0.5384798645973206, -0.590757429599762, -0.011825289577245712, -0.2565137445926666, -0.5462576150894165, -0.5262762308120728, -0.0866987407207489, 0.02186044119298458, 0.07803867012262344, -0.3791249990463257, 0.20796160399913788, -0.20677441358566284, 1.6831300258636475, -0.1859912872314453, 0.024106601253151894, -0.7326958775520325, 0.6494251489639282, -0.20678357779979706, 0.729650616645813, -0.285645067691803, -0.477749228477478, -0.3300309479236603, -0.31455573439598083, 1.1787781715393066, 0.4085293114185333, -0.022020064294338226, -0.05909907817840576, 0.17156435549259186, 0.122145876288414, 0.6222812533378601, 0.5714290142059326, -0.02963888831436634, 0.5019674301147461, 0.3493589460849762, 0.07656343281269073, 0.6070566177368164, -0.3248133659362793, -0.6203020811080933, -0.30139437317848206, 0.5148451328277588, 1.0494319200515747, 0.7183380722999573, 1.5617305040359497, 0.31295502185821533, 0.05293911695480347, -0.3562440872192383, -0.26730045676231384, -0.46783021092414856, -0.6781511902809143, -1.1120567321777344, -0.3642890155315399, -0.07021666318178177, -0.4074589014053345, 0.045191437005996704, 0.4982178211212158, -0.007740661036223173, 0.781615138053894, 1.2810986042022705, -0.36514711380004883, -0.09964755922555923, 0.1054634228348732, -0.13682247698307037, -0.9675237536430359, 0.5955081582069397, 0.6281548142433167, -1.201802372932434, -0.165361225605011, -0.7606644630432129, -0.05579758808016777, 1.077562689781189, -0.2840285301208496, 0.4234907031059265, -0.9182655215263367, -0.5677887797355652, -0.2435835897922516, 0.5975106954574585, -0.21833091974258423, -0.13683505356311798, -0.3353038728237152, 0.8849040865898132, -0.13229216635227203, 0.3450549244880676, -0.5642660856246948, 0.9437929391860962, -0.1328084021806717, -1.4474883079528809, -0.4421032667160034, 0.27477768063545227, 0.6443847417831421, 0.08267034590244293, -0.6725403070449829, -0.3565506637096405, -0.6164854168891907, -0.33138507604599, 0.5143440961837769, 0.1038111001253128, 0.7901151776313782, 0.007622247561812401, -0.3215448260307312, 0.5194710493087769, -0.19855360686779022, -0.10118763148784637, -1.3163599967956543, 0.4099932312965393, 0.903086245059967, 0.9359801411628723, -0.37302789092063904, 0.25184017419815063, 0.28809139132499695, 0.37454134225845337, 0.06149206683039665, 0.1297704577445984, 0.30396389961242676, 0.09007315337657928, -0.20898720622062683, -0.13711217045783997, 0.5252671837806702, -0.28344225883483887, -0.5570153594017029, -0.07518544793128967, 0.5035459995269775, -0.6790057420730591, 0.015536647289991379, 1.038894772529602, 0.348623126745224, 0.05545475706458092, -0.2706478238105774, -0.07464048266410828, 0.49819645285606384, -0.2064567655324936, -0.03919190913438797, -0.8983950018882751, -0.14155562222003937, 0.5374558568000793, -1.3025946617126465, -0.7485756874084473, 0.2697877287864685, 0.2755616009235382, 0.24191094934940338, -1.2449407577514648, 0.18197885155677795, 0.2588995099067688, 1.1896240711212158, 0.39347043633461, 0.4626907408237457, 0.3108677268028259, 0.19988636672496796, 0.8527084589004517, 0.09880603849887848, 0.29688748717308044, 1.0802578926086426, -0.8608282804489136, 0.024670129641890526, 0.09854456782341003, 0.23683558404445648, 0.08143393695354462, -1.0730446577072144, 0.3411791920661926, 0.004360114224255085, 0.35105010867118835, -0.21241210401058197, -0.19783170521259308, -0.5166736245155334, 1.0853720903396606, 0.563401460647583, 0.661439836025238, 0.2778666913509369, -0.05604124814271927, -0.36322009563446045, -0.0404045544564724, 0.36143508553504944, -0.14044901728630066, -0.5658270120620728, -0.13236214220523834, 0.5841584205627441, -0.09587216377258301, 0.3857099115848541, 0.06130611151456833, 0.6895920038223267, 0.2944086492061615, -0.20445579290390015, 0.08338877558708191, 0.4875831604003906, 0.5144074559211731, 1.1875396966934204, 0.24925747513771057, -0.6607402563095093, -0.6742219924926758, 0.465314120054245, -0.23613286018371582, 0.4160327911376953, 0.5597416758537292, -0.008173510432243347, 0.8026360869407654, -1.8230711221694946, -0.2013784795999527, 0.7144080996513367, 0.16601938009262085, 0.8941759467124939, 0.4343072474002838, -0.4647385776042938, -0.5493603944778442, 0.2623341679573059, -0.5271671414375305, 0.18921388685703278, 0.022328456863760948, 0.4920194745063782, 0.08618853241205215, 0.949837863445282, -0.4080725610256195, 0.7441896796226501, -0.951567530632019, -0.3208633363246918, 0.34774306416511536, -0.8866702318191528, 0.02348156087100506, 0.3906487226486206, -0.0055492836982011795, 1.0769771337509155, -0.7648263573646545, -0.5819147229194641, 0.19487982988357544, -0.5397809147834778, 0.25004440546035767, -0.12348975986242294, -0.910140872001648, -0.26098912954330444, -0.006897556595504284, -0.4144880473613739, 0.5410009622573853, 0.12166284024715424, -0.4508891701698303, -0.38412824273109436, -0.7272700667381287, 0.30688852071762085, 0.14345058798789978, 0.7201439738273621, 0.08503203094005585, 0.456745445728302, 0.31502723693847656, 0.2028060108423233, -0.2450585663318634, -0.19241470098495483, -0.3541828691959381, -0.4596306085586548, 0.371684730052948, -2.0713963508605957, -1.1675432920455933, 0.20525217056274414, 1.1555407047271729, 0.3408089280128479, 0.7492266297340393, 0.7378243207931519, 0.7012510895729065, 0.002213961910456419, -0.6752267479896545, 0.4815247058868408, -0.6273589730262756, 0.5681740045547485, 0.3722386956214905, -0.11880701780319214, -0.543929398059845, -0.8226674199104309, -1.7140848636627197, 0.10126576572656631, 0.22208745777606964, -1.649208664894104, 0.6846193671226501, 0.5186348557472229, 0.43976953625679016, 0.5151803493499756, -0.056101419031620026, 0.7693406343460083, -0.4179084599018097, -1.0947061777114868, -1.4121153354644775, 0.7197040915489197, -0.04799441248178482, 0.5025767087936401, -0.08760463446378708, 0.27658382058143616, -0.16114579141139984, -0.04726887121796608, -0.557168185710907, 0.5762147307395935, 0.43309855461120605, 0.49332207441329956, -0.30869174003601074, -0.6292412877082825, -0.00890354998409748, -0.3243418037891388, -0.5443870425224304, -0.5148703455924988, 0.5752311944961548, 0.033455703407526016, -0.0140469279140234, 0.006087560206651688, -0.07745837420225143, -0.5860636830329895, -0.13461937010288239, 0.14929093420505524, 0.48562633991241455, 0.600019633769989, -0.22280466556549072, 0.09426102787256241, -0.12707071006298065, -0.697010338306427, -0.6070727109909058, 0.2939169704914093, 0.9889786839485168, -0.8012290596961975, 0.0743785873055458, -0.12956057488918304, -0.7686399221420288, -0.561950147151947, -0.5287672877311707, -0.18595215678215027, -0.7968934178352356, -1.348643183708191, -1.4302358627319336, 0.3476563096046448, 0.7397832870483398, -0.14273330569267273, 1.3129271268844604, 0.07155846804380417, -1.5658907890319824, 0.26317933201789856, -0.6577725410461426, -0.8996747732162476, -0.040159888565540314, -1.4836695194244385, 0.45240283012390137, -0.3940274715423584, 0.39836692810058594, -0.7546547055244446, 1.1951481103897095, -1.0343060493469238, -1.1375504732131958, -1.26796293258667, -0.36010563373565674, 0.2849406898021698, 0.8537853360176086, -0.9833526015281677, 1.2513222694396973, 0.4623568058013916, -0.527288019657135, -0.3055466115474701, 0.13296368718147278, -0.8714333176612854, 0.20213092863559723, -0.12405619770288467, 0.4247184991836548, 0.1351860910654068, 0.6465829014778137, -1.0010504722595215, 0.5208010077476501, 0.5156788229942322, -0.07968062162399292, -0.3879846930503845, -0.33672896027565, 0.1730182021856308, 0.5564780235290527, -0.5506253838539124, -0.5822604298591614, -0.028507262468338013, -0.3339696228504181, -1.0052746534347534, 0.2820599675178528, 0.8638519644737244, -0.4968865215778351, -0.514350175857544, 0.5413895845413208, 0.04883275553584099, -0.7211078405380249, 0.3325270414352417, -0.1661149263381958, 0.31464284658432007, 0.045187074691057205, -0.26381224393844604, 0.26310184597969055, -1.1052230596542358, 0.19075745344161987, 0.6018272638320923, -0.23420701920986176, -0.5908095836639404, 0.5312915444374084, 1.2064814567565918, 0.13095389306545258, -0.3549483120441437, 1.3391246795654297, 1.3520392179489136, -0.2770375907421112, 0.3594265878200531, 0.37616997957229614, -0.032442156225442886, 0.2812771201133728, -0.578252911567688, 0.011212809011340141, -0.6569987535476685, 0.33616435527801514, -0.03954228386282921, -0.27778151631355286, -0.5660392642021179, -0.18756955862045288, -0.22582660615444183, 0.41176164150238037, 0.4257250726222992, -0.7325183749198914, -0.25258323550224304, 0.5643615126609802, -0.31896936893463135, 0.43415096402168274, -0.023316681385040283, 0.322224497795105, 0.3402951657772064, 0.16134542226791382, 0.07546932995319366, 0.34907931089401245, -0.8955021500587463, -0.33385586738586426, 0.46686914563179016, 0.5022307634353638, -0.03440817818045616, -0.4815846383571625, -1.412674903869629, 0.584436297416687, -0.7597754597663879, -0.7648504376411438, 0.5352334976196289, -1.1676313877105713, -1.5921216011047363, -0.04013585299253464, -0.0468120202422142, -0.1475764811038971, -0.47365450859069824, 0.2903050482273102, -0.04698978736996651, 0.3898138999938965, 0.4351900517940521, -0.439739465713501, 0.8789435625076294, 0.18163318932056427, 0.2674536406993866, -0.27278077602386475, -0.004401625599712133, -0.04921909049153328, 0.2936173379421234, -0.4541299343109131, -0.5639936327934265, 0.7479307055473328, -0.34670642018318176, -1.185259222984314, 0.1046692430973053, -0.39914271235466003, -0.08043287694454193, 0.12689100205898285, -1.07997727394104, 0.11864391714334488, -0.23430506885051727, 0.9284226298332214, -0.2695082724094391, -0.955065906047821, -0.8836827874183655, 0.3809889853000641, -1.0853310823440552, 0.5996453166007996, 0.06393606215715408, 0.7411786317825317, -0.2876642048358917, -0.36918583512306213, -0.062281712889671326, -0.07053893804550171, 0.18335013091564178, 0.045424316078424454, 1.2849206924438477, -0.0024161087349057198, 0.10617100447416306, -0.5312707424163818, -0.747391939163208, 0.08696569502353668, 0.09663267433643341, -0.0015127984806895256, -0.10483836382627487, -1.104931116104126, -0.3196738064289093, -0.8743590712547302, 0.6579589247703552, 0.7083341479301453, -0.16748082637786865, -0.019548755139112473, 0.02474833093583584, -0.7867358326911926, 0.5371063947677612, -0.27696549892425537, 0.044404130429029465, -0.1582917869091034, 0.7876668572425842, 1.769166350364685, 0.5373058915138245, 0.4563615918159485, -0.4261733889579773, 0.7953965067863464, -0.6894673109054565, -0.2980327904224396, -0.6477476358413696, -0.08897452801465988, -0.37632420659065247], [0.780443012714386, 1.2724584341049194, -1.6938506364822388, -0.8811358213424683, 0.6995054483413696, 0.20753087103366852, 1.207022786140442, -0.6171576976776123, 0.26482293009757996, -0.29467862844467163, -0.12490536272525787, -0.4443714916706085, 0.3616250455379486, 1.0608453750610352, 0.017750071361660957, -0.030637051910161972, 0.582503080368042, 0.07567356526851654, 0.7472690343856812, 0.6551479697227478, -0.18812549114227295, 0.31212085485458374, -0.19448934495449066, -0.40003591775894165, -0.13912206888198853, 0.31220462918281555, -0.8278858065605164, 0.01716751977801323, -1.3128398656845093, -0.7819395065307617, 0.9868977665901184, -1.0597225427627563, 0.43009817600250244, 0.391000896692276, -1.5019493103027344, -0.21202626824378967, 1.068825364112854, 0.5109660029411316, 0.5389102697372437, 0.18509157001972198, 1.4770556688308716, -0.19133585691452026, -0.360140860080719, -1.8692092895507812, -0.4141060411930084, 0.0024171359837055206, 1.20280921459198, -0.255057156085968, 0.554512619972229, 0.037118833512067795, 0.605783224105835, -1.0411409139633179, 1.0513811111450195, 0.7418650388717651, 0.33507493138313293, -0.21236072480678558, 0.012244813144207, 0.1158878430724144, 0.8180177211761475, -0.8495936393737793, 1.6262524127960205, -0.18980742990970612, -1.1742404699325562, 0.027473442256450653, 0.30168014764785767, -0.16065029799938202, 0.04906485974788666, 0.5581625699996948, 0.37637680768966675, -0.32486897706985474, 0.8514776229858398, 0.685537576675415, -0.46027815341949463, 0.2435416430234909, -1.1481118202209473, -0.32625481486320496, 0.7361340522766113, 1.0277013778686523, 0.8066062927246094, 0.3112013041973114, -0.683732807636261, 0.2080310881137848, 1.2391571998596191, -0.8469870090484619, 0.28964948654174805, 0.3168056905269623, 0.6918404698371887, -0.941876232624054, 0.22195987403392792, 1.6234455108642578, 0.30839109420776367, -0.25955235958099365, 1.0432244539260864, -0.24941577017307281, -0.2275608330965042, -0.38192737102508545, 0.3391342759132385, -0.09160292148590088, -0.6608526110649109, -0.5471688508987427, -0.016930682584643364, 0.025751790031790733, 0.1770906150341034, 0.3404446244239807, -0.020894421264529228, 1.2727255821228027, 0.6363789439201355, 0.44174519181251526, -0.2862241268157959, 0.2283397912979126, -0.5060893893241882, -0.14702428877353668, -0.5914682745933533, -0.9641954302787781, -0.9827640056610107, 0.6791177988052368, 1.7139172554016113, -0.1599777191877365, 0.7632626891136169, 0.8344944715499878, -0.31572046875953674, 0.38573020696640015, -0.20359691977500916, 1.121691346168518, -0.02654152177274227, 0.03763692453503609, -0.9354557394981384, -0.006057756952941418, 0.26908689737319946, -0.07131526619195938, -0.1922866553068161, -0.31244245171546936, 0.14538154006004333, 0.17636238038539886, -0.8805716037750244, 0.8218549489974976, -0.2969900369644165, -0.2588541507720947, -0.3949139714241028, 0.10962120443582535, 0.6490570902824402, -0.5379971265792847, 0.3378421664237976, -0.5167098045349121, 0.6834798455238342, -0.05814811587333679, 0.15282507240772247, -0.7694717049598694, -0.6141566038131714, -0.013065416365861893, -1.1162737607955933, 0.9803374409675598, -0.13695496320724487, 0.46778205037117004, 0.2082265466451645, -0.13381889462471008, 0.4087446630001068, 0.45091769099235535, 0.17801693081855774, -0.46000173687934875, 0.508886456489563, 0.4088471829891205, -0.7536213397979736, 1.0535976886749268, -0.314656138420105, -0.20083248615264893, -0.029598388820886612, 0.5319314002990723, 0.4983941912651062, 0.5551189184188843, -0.7793606519699097, -0.16282916069030762, -0.9200195670127869, -0.009206507354974747, 0.15366919338703156, -0.15615946054458618, 1.833583950996399, -0.6066592335700989, -0.6096823811531067, -0.5873339176177979, 0.5916910767555237, -0.04526332765817642, 0.19547060132026672, 0.05851725861430168, 0.5839144587516785, -0.6676265597343445, 0.7137947082519531, 0.3039429187774658, -0.6860045194625854, -0.49690601229667664, -0.45063677430152893, -0.3171983063220978, -0.4763580560684204, 0.034132055938243866, -0.2957392930984497, -0.6978196501731873, 0.9609302878379822, -0.5824008584022522, -0.32222986221313477, 0.038361381739377975, -0.31266549229621887, -0.3831805884838104, -0.36601418256759644, 0.7215577363967896, -0.37174174189567566, 0.492125928401947, -0.5355842113494873, 0.6363628506660461, -0.739507257938385, -0.27301350235939026, 1.2021559476852417, -0.40341734886169434, -0.340231329202652, 0.8908534646034241, -0.9475947618484497, -0.8770102858543396, 0.2105671465396881, 0.02123534120619297, 0.13622793555259705, 0.5043087005615234, -0.10425300151109695, 0.027642730623483658, 0.4981311559677124, -0.18706516921520233, 0.6589779853820801, 0.11470059305429459, -0.848584771156311, -1.0852059125900269, -0.06877417862415314, 0.117536760866642, -0.37800589203834534, -1.1993849277496338, 0.6346481442451477, 0.4553544819355011, -0.9602305889129639, 0.7638010382652283, -0.3475552797317505, -0.07235416024923325, 0.2622746527194977, 0.6943179368972778, 0.13608065247535706, 0.3613668978214264, 0.15017330646514893, -0.03345455601811409, -1.1467945575714111, -0.04247577488422394, 0.620070219039917, -0.5905921459197998, -0.30129680037498474, 1.092773675918579, 0.6286673545837402, 0.5266311764717102, 0.3243143558502197, -0.44630929827690125, 0.10691776871681213, -1.369547963142395, -0.7860447764396667, 0.45454826951026917, -0.7908850312232971, 1.222930908203125, 0.6690199375152588, -0.6493859887123108, -0.23194357752799988, 0.3516966998577118, 0.2867605686187744, -0.5828196406364441, -0.9813539981842041, -0.34273889660835266, -0.12645184993743896, -0.6104269027709961, 0.015413281507790089, 0.6809294819831848, 0.39006510376930237, 1.4173364639282227, -0.25294288992881775, 0.10924675315618515, -0.03911088407039642, 0.7415216565132141, -0.14777223765850067, 0.6496801972389221, -0.1202097088098526, -0.7134947776794434, -0.5193367004394531, 0.05467842146754265, 0.928013265132904, -0.21301370859146118, 0.09935052692890167, -0.012460699304938316, 0.6531397700309753, -0.36328038573265076, 0.6705448627471924, 0.367001473903656, -0.18446758389472961, 0.7424169182777405, 0.7296493649482727, 0.26649484038352966, 0.8410666584968567, -0.40355610847473145, -1.0599520206451416, -0.1448519229888916, 0.11022095382213593, 0.4009448289871216, 1.0699571371078491, 1.0762752294540405, -0.16797342896461487, -0.09189193695783615, -0.3752431273460388, -0.5619745850563049, -0.45425742864608765, -0.6202856302261353, -0.8482790589332581, -0.15102311968803406, -0.18623390793800354, -0.7364832162857056, 0.3633427321910858, -0.26054850220680237, 0.3382718563079834, 0.7978597283363342, 0.372936874628067, -0.2861909866333008, -0.2006852775812149, 0.31886133551597595, 0.37791863083839417, -1.1303430795669556, 1.1986268758773804, 0.9590141773223877, -1.2171416282653809, 0.062396056950092316, -0.3627868592739105, -0.2412477731704712, 0.06012662127614021, -0.47192686796188354, 0.021282847970724106, -0.9386577010154724, -0.7168918251991272, -0.2462906837463379, 1.4377079010009766, -0.038930173963308334, 0.19029666483402252, -0.8853278160095215, 0.3446867763996124, 0.16396892070770264, -0.29575279355049133, -0.48606905341148376, 0.8505537509918213, -0.054712288081645966, -0.963838517665863, 0.22862280905246735, 0.6015878319740295, -0.14343497157096863, -0.7300235629081726, -0.1854703426361084, -0.4117024540901184, -0.32400327920913696, 0.5188789367675781, 0.8133812546730042, 0.2779545187950134, 0.14841917157173157, 0.4211317300796509, -0.07693341374397278, 0.7282278537750244, -0.48744431138038635, -0.19668129086494446, -0.8985973596572876, 0.35331931710243225, 0.05874510481953621, 0.9284041523933411, 0.22567829489707947, 0.4646133482456207, -0.016095342114567757, -0.6349193453788757, -0.292146772146225, -0.015139741823077202, 0.7331801652908325, 0.22143641114234924, 0.07910396158695221, -0.6108115911483765, 0.23742425441741943, 0.01919705420732498, -0.6535527110099792, -0.2581211030483246, 0.04388193413615227, -0.8914087414741516, -0.3305646777153015, 0.8437723517417908, -0.0582401268184185, -0.4588173031806946, -0.565958559513092, -0.044035330414772034, 0.3369519114494324, 0.6245554685592651, -0.3445189297199249, -0.15887567400932312, 0.12676291167736053, 0.4389023184776306, -0.9788423776626587, -0.4272781312465668, -0.29594340920448303, 0.26434949040412903, 0.9913492798805237, -0.285854309797287, 0.18604756891727448, 0.02524564042687416, 0.7629751563072205, 0.3051147758960724, 0.867946207523346, 0.07894562929868698, 0.3683869242668152, 0.1751512587070465, 0.1706313043832779, -0.23359538614749908, 1.0474369525909424, -0.8413069248199463, -0.4506680369377136, 0.03966989368200302, 0.6015614867210388, 0.0006647501140832901, -0.08353547006845474, 0.028605088591575623, 0.04792208969593048, -0.6648430228233337, -0.10464309900999069, -0.23109838366508484, -0.3168381452560425, 0.7059045433998108, 0.36181750893592834, 1.0360898971557617, 0.9290668964385986, 0.21938058733940125, -0.6348562240600586, -0.2265782505273819, 0.0054258303716778755, 0.173959881067276, -0.716488242149353, -0.3620406687259674, 0.20344214141368866, -0.035408709198236465, 0.015131878666579723, 0.3350631594657898, -0.10978235304355621, 0.005104338750243187, -0.062231309711933136, -0.21464014053344727, 0.6884949207305908, 0.34442341327667236, 1.4559985399246216, 0.4169059693813324, -0.7716370224952698, -0.3984958529472351, -0.1552218347787857, -0.8435105681419373, -0.22256696224212646, 0.341238409280777, 0.22753393650054932, 1.3676446676254272, -1.8419033288955688, -0.9260625839233398, 0.5403263568878174, 1.4653254747390747, 0.6626757979393005, 1.2820496559143066, -0.07741105556488037, -0.6830750703811646, 0.29720839858055115, 0.5389797687530518, -0.4309658110141754, 0.12333900481462479, 0.4661515951156616, 0.4435785710811615, -0.16951467096805573, -0.8859658241271973, 0.279297798871994, -0.504575252532959, -1.0645992755889893, -0.18813371658325195, -0.10044648498296738, 0.26387691497802734, 0.7908494472503662, 0.13900014758110046, 0.9402894377708435, -1.2048553228378296, -0.5108830332756042, 0.15183764696121216, -0.1327757090330124, 0.9063055515289307, -0.4371204376220703, -0.3260782063007355, -0.83730548620224, -0.06921098381280899, -0.33533111214637756, 0.20837852358818054, -0.4849843382835388, -0.22843144834041595, -0.2901993989944458, -0.25058019161224365, -0.5665431618690491, 0.8908516764640808, 0.7731308937072754, 0.45851412415504456, -0.08303035795688629, 0.6550454497337341, 0.5981389284133911, -0.45619288086891174, -0.13010968267917633, 0.4018188416957855, -0.6313084363937378, -0.00622323714196682, -1.6804938316345215, -1.2366721630096436, 1.085033655166626, -0.06241975724697113, 0.7726938724517822, 0.2679441571235657, 0.9217982292175293, 0.5193474292755127, -0.5063735246658325, -0.6215721964836121, 0.9981116652488708, -0.2016342133283615, 0.2980031371116638, 0.11628041416406631, -0.18566769361495972, -0.1491423398256302, -0.7228063344955444, -1.5932273864746094, -0.04979337379336357, -0.7754542231559753, -1.1475831270217896, 0.5163013935089111, -0.10327589511871338, 0.43258118629455566, -0.0016237013041973114, -0.5700177550315857, 0.29225289821624756, -2.591288648545742e-05, -0.39901047945022583, -1.120924949645996, 0.7149220705032349, 0.1449543833732605, 0.29540929198265076, 0.0917462557554245, -0.25366634130477905, 0.43153876066207886, -0.9432705044746399, 0.4445821940898895, 0.45499202609062195, 0.3472171425819397, 0.3452187478542328, 0.1540803611278534, -0.8384172916412354, -0.1635710597038269, 0.4563749432563782, -0.6860844492912292, -0.14372342824935913, -0.01029665395617485, 0.5952180624008179, 0.46026983857154846, 0.06113497540354729, -0.07452701777219772, -0.5208746790885925, -0.3341962397098541, -0.5806468725204468, -0.21090172231197357, -0.007205544039607048, -0.2515358626842499, -0.12169169634580612, -0.4822331666946411, -1.098739743232727, -0.4510207772254944, 0.6365984082221985, 0.6948666572570801, -1.3144060373306274, 0.00773153081536293, 0.3906879723072052, -0.29007187485694885, -0.04434395208954811, -0.928878903388977, 0.34478938579559326, -0.6353750824928284, -1.4564188718795776, -0.6074414253234863, 0.21702370047569275, 0.7887324094772339, -1.1273480653762817, 0.8312041163444519, 1.178421139717102, -1.1309559345245361, 0.011240534484386444, 0.3405914902687073, -0.7352288365364075, 0.15055757761001587, -1.1436352729797363, 0.2616370916366577, -0.47782936692237854, -0.06744687259197235, -0.8285596966743469, 2.057770013809204, -0.9994032382965088, -1.4910459518432617, -0.9157696962356567, 0.17917633056640625, -0.1019781231880188, 0.850927472114563, -0.6252827048301697, 0.8362038135528564, 0.3073349595069885, -0.4667346179485321, -0.534868597984314, 0.570149838924408, -1.312314510345459, 0.13743793964385986, 0.7021819353103638, 0.48877519369125366, 0.2356465458869934, 0.7306021451950073, -0.6906735897064209, 0.3871108293533325, -0.2825995981693268, 0.29611486196517944, -0.6346492767333984, -0.054508015513420105, 0.05620020255446434, 0.2376421093940735, -1.5941811800003052, -0.4928801953792572, -0.05527995899319649, -0.6151925325393677, -0.6795426607131958, 0.9972575902938843, 0.972016453742981, -0.7139392495155334, -0.4933813214302063, 0.013485443778336048, -0.04855258762836456, -0.7178142666816711, 0.11588596552610397, 0.41809067130088806, -0.015042990446090698, 0.1896734982728958, 0.41893279552459717, 0.1128590852022171, -1.0798559188842773, -0.024756504222750664, 0.38314077258110046, 0.3758370578289032, -0.9838247895240784, 0.6427916884422302, 0.9557290077209473, 0.22782637178897858, -0.5636975169181824, 0.9516339302062988, 1.1366709470748901, -0.4049423933029175, -0.15086615085601807, 0.11677258461713791, 0.5732078552246094, 0.5318107008934021, -0.6734510660171509, 0.7215092182159424, -0.6741800904273987, 0.093809112906456, 0.2781245708465576, -0.19310136139392853, 0.026175368577241898, -0.39037996530532837, -0.030210698023438454, 0.5896940231323242, 0.2718312442302704, -0.5960357785224915, -0.5397241711616516, 0.6013019680976868, -0.0016665318980813026, 0.0835663452744484, 0.2667897045612335, 0.38578665256500244, 0.16111721098423004, -0.42862799763679504, 0.09738574922084808, 0.3105098605155945, -0.611881673336029, -0.26489174365997314, 0.2817525267601013, 0.19231605529785156, -0.07927051931619644, -0.027106523513793945, -0.9948118925094604, -0.3951968252658844, -0.8059133291244507, -0.27756375074386597, 0.22557514905929565, -1.7878854274749756, -0.8776154518127441, 0.9607811570167542, -0.12850134074687958, -0.5569889545440674, 0.06532450765371323, 0.37711891531944275, -0.293480783700943, 0.7353933453559875, 0.3178204298019409, -0.41188541054725647, 0.7556183934211731, 0.20629532635211945, -0.3096737861633301, -0.5486434698104858, -0.36112043261528015, 0.12659426033496857, 0.3284372389316559, -0.2824998199939728, -0.29252368211746216, 0.8577256798744202, -0.08110643923282623, -0.9141109585762024, 0.246989905834198, 0.19609566032886505, -0.17529787123203278, 0.10103992372751236, -1.2278908491134644, 0.07887504249811172, -0.7466986179351807, 1.2158730030059814, -0.4772223234176636, -0.011614666320383549, -0.7916173338890076, 0.21291311085224152, -0.8418221473693848, 1.26058030128479, -0.20952510833740234, 1.3059968948364258, -0.0627913698554039, -0.17318415641784668, 0.0001188602764159441, -0.7750334143638611, 0.011641439981758595, 0.18200838565826416, 0.8293179869651794, -0.3072737455368042, 0.2005731761455536, -0.6594754457473755, -0.760689914226532, 0.11726246029138565, 0.8530215620994568, 0.3373165428638458, 0.24816341698169708, -0.5949576497077942, -0.5233051776885986, -0.3236461281776428, 0.22509033977985382, 1.4135535955429077, 0.3209701478481293, -0.4427076578140259, -0.4433915913105011, -0.5009559392929077, 1.382069706916809, -0.023728204891085625, -0.055004533380270004, 0.25431185960769653, 0.5747689604759216, 1.4108014106750488, -0.12485862523317337, 0.2222178727388382, -0.6126775145530701, 0.49243423342704773, -0.18895795941352844, 0.009838396683335304, -0.7069042921066284, -0.24935446679592133, -0.15497983992099762], [0.2113502472639084, 1.7692145109176636, -2.02940034866333, -0.6690124273300171, 1.0774953365325928, 0.4892430901527405, 0.9300203323364258, -1.3944752216339111, -0.24427032470703125, -0.33456894755363464, -0.41626426577568054, 0.38556912541389465, 0.03312757983803749, 1.297544240951538, 0.4312935173511505, 0.08501703292131424, -0.09157989174127579, -0.4962063133716583, 0.7819302082061768, 1.4606962203979492, 0.2215913087129593, -0.7968186736106873, -0.3967226445674896, -0.07141090929508209, 0.14082053303718567, 0.2948082983493805, -0.9602157473564148, -1.0891776084899902, -0.683207094669342, -0.36690205335617065, 1.1681065559387207, -0.9194811582565308, 0.11266682296991348, 0.20475685596466064, -2.152639389038086, -0.9817314743995667, 1.3396594524383545, 0.3810032904148102, 0.35669076442718506, 0.21570847928524017, 1.2904269695281982, 0.4272997975349426, 0.4844169318675995, -1.0837119817733765, -0.03742722049355507, -0.11986377090215683, 0.5860222578048706, -0.5560860633850098, -0.6787769198417664, -1.4458279609680176, 0.8596159815788269, -1.003844976425171, 0.8761880397796631, 0.239234060049057, 0.7961868047714233, 0.2191343754529953, -0.3285659849643707, 0.18152202665805817, 0.6766283512115479, -0.5407837629318237, 0.6341729164123535, 0.6148306727409363, -0.4654676616191864, 1.0973231792449951, 0.5537415146827698, -0.18039186298847198, -0.02031790278851986, 0.5451595783233643, -0.36918869614601135, -0.197852224111557, 0.7877580523490906, -0.19502009451389313, -0.5042517185211182, 0.5602666139602661, -1.1530978679656982, 0.6423248052597046, 0.6106621623039246, 0.057908471673727036, 0.15006808936595917, 0.5613224506378174, -0.6703249216079712, -0.18994301557540894, 0.6495009660720825, -0.6040483117103577, 1.2080086469650269, -0.14389002323150635, 0.15353895723819733, -0.6630674600601196, -0.2892192006111145, 1.2429429292678833, 0.1158759742975235, 0.03459535166621208, 0.907305121421814, -0.7661190032958984, -0.43957939743995667, -0.5164903402328491, 0.32930701971054077, -0.23289166390895844, -0.48704519867897034, -0.4966515600681305, -0.7015867829322815, -0.03314836323261261, -0.5601624846458435, -0.7224428653717041, 0.14767250418663025, 1.448174238204956, 0.20155292749404907, -0.31450122594833374, -0.9566220045089722, 0.3620013892650604, 0.18216203153133392, 0.363989919424057, -1.1454094648361206, -1.1511766910552979, -0.4901370108127594, 0.8672056794166565, 1.212043285369873, -0.3477364778518677, 0.5909764170646667, 0.8517055511474609, -0.874363899230957, 0.018334509804844856, -0.3640393912792206, 0.4589715600013733, 0.674211859703064, 0.29106757044792175, -0.18152059614658356, -0.5434077382087708, 0.09445937722921371, 0.23419596254825592, 0.22409044206142426, -0.3186178505420685, 0.07110069692134857, 0.24630971252918243, -0.6046103835105896, 1.0854195356369019, -0.12956134974956512, -0.6099616885185242, -0.15744651854038239, 0.038754772394895554, 0.3805646598339081, -0.453041672706604, -0.77096027135849, -0.3862188160419464, 0.33839163184165955, -0.3756985664367676, 0.3943897485733032, -0.24191690981388092, -1.03452730178833, -0.3661230206489563, -0.42645764350891113, 0.5803343057632446, 0.494469553232193, 0.5578261613845825, 0.09412076324224472, -0.04659329727292061, 0.08997803181409836, 0.25312259793281555, 0.060619376599788666, 0.04803847894072533, 1.008284568786621, 0.09601906687021255, -0.21573688089847565, 1.1452568769454956, -0.03259417042136192, -0.22308357059955597, 0.035577189177274704, 0.7250282764434814, -0.2868374288082123, 0.1596003919839859, -0.5021390914916992, -0.31572094559669495, -0.8607319593429565, 0.6039755344390869, 0.7387371063232422, -0.7522060871124268, 1.3415818214416504, -0.8560901284217834, -1.326003909111023, -1.3552504777908325, 0.26980212330818176, -0.14398309588432312, -0.07553351670503616, 0.28055262565612793, 0.28198251128196716, 0.15033701062202454, 0.7303903102874756, -0.2870841920375824, -0.13123996555805206, -0.3305688500404358, -0.8840419054031372, 0.03669667989015579, -1.0356814861297607, 0.009017763659358025, -0.29730769991874695, -0.7875057458877563, 0.5175722241401672, -0.262114942073822, -0.732928454875946, -0.26242318749427795, -0.6478222608566284, -0.4235668182373047, -0.6423833966255188, 0.11266174167394638, -0.5777597427368164, 0.9486649632453918, -1.6054030656814575, 0.8749647736549377, -0.7751226425170898, -0.22976744174957275, 1.507470965385437, 0.4912981688976288, -0.8670281767845154, 0.8700448870658875, -0.35627102851867676, -1.6972073316574097, 0.3852517306804657, 0.31507086753845215, -0.338495135307312, -0.1926816999912262, 0.36480292677879333, 0.3166530430316925, 0.4517981708049774, -0.09890279173851013, 0.4283578097820282, -0.34156981110572815, -0.7780565619468689, -0.23688757419586182, -0.7808917164802551, -0.14261987805366516, -0.6496474146842957, -1.696908950805664, 0.9998825788497925, 0.2726219892501831, -1.0693854093551636, 0.17968925833702087, 0.030382975935935974, 0.398968905210495, 0.7807519435882568, 0.8694416284561157, 0.5560547709465027, 1.0861152410507202, 0.042269814759492874, 0.41221413016319275, -0.9530156254768372, -0.5392481684684753, 1.1239347457885742, -0.5481918454170227, -0.37889721989631653, 1.0710384845733643, 0.7244889736175537, 0.5670217275619507, 0.4100169241428375, -0.2475021332502365, 0.4045262038707733, -0.6551990509033203, -0.7099522948265076, 0.47736626863479614, -0.6471962928771973, 1.3978404998779297, 1.1341078281402588, -0.6022748351097107, -0.18098358809947968, 0.29740390181541443, -0.18161465227603912, -0.7009196281433105, -0.13139992952346802, -0.16239525377750397, -0.10186495631933212, -0.22279320657253265, -0.5475904941558838, -0.25661975145339966, -0.08368374407291412, 0.9334423542022705, -0.3908606767654419, -0.8183951377868652, 0.030240634456276894, 1.226357340812683, 0.40400218963623047, 0.31238600611686707, 0.2449488639831543, -0.5856184959411621, -0.9178195595741272, -0.16006730496883392, 0.8062414526939392, 0.020066875964403152, 0.0546964630484581, 0.17703282833099365, 0.45200812816619873, -0.4693927466869354, 0.35304564237594604, 0.5676087737083435, -0.5059099793434143, -0.10215846449136734, 0.14278768002986908, 0.2862836718559265, 0.7222191691398621, -0.8072362542152405, -0.44655120372772217, -0.6814152002334595, 0.3532618582248688, 1.6484436988830566, 0.7224335670471191, 1.82291841506958, 0.17142285406589508, 0.2386210709810257, -0.027199264615774155, -0.197307288646698, -0.4302748143672943, -1.0063612461090088, -0.2993384003639221, -0.10647325217723846, -0.08590131998062134, -0.33861833810806274, 0.08108827471733093, 0.6837441921234131, -0.24931767582893372, 0.6710167527198792, 0.7090746760368347, -0.49010342359542847, -1.1164257526397705, -0.6051930785179138, 0.23873503506183624, -0.7243704199790955, 0.2851620018482208, 0.8024225234985352, -0.8529883623123169, -0.8058302402496338, -0.22419887781143188, 0.06240600720047951, 0.8808924555778503, 0.0255852323025465, 0.3641214072704315, -0.8887600302696228, -0.46343499422073364, -0.41434165835380554, 1.6658875942230225, 0.10610346496105194, 0.1468035727739334, -0.41455668210983276, 0.6772633790969849, 0.601225733757019, 0.011511923745274544, -0.2045818269252777, 0.6977465748786926, -0.4263768792152405, -0.8520421385765076, 0.12619540095329285, 0.1810770183801651, -0.034426767379045486, -0.4627644717693329, -0.53565514087677, 0.019199188798666, -0.08516118675470352, -0.3010362982749939, 0.5342620015144348, -0.2782106399536133, 0.710374116897583, 0.21227039396762848, 0.13241951167583466, 0.8168527483940125, -0.08915670216083527, -0.18678106367588043, -1.0730557441711426, 0.8787552118301392, 0.8480959534645081, 0.8016639351844788, 0.10381633043289185, -0.5114626884460449, -0.16989284753799438, -0.25300610065460205, 0.5964053869247437, 0.07293523848056793, 0.8232340216636658, 0.4532519280910492, -0.22970300912857056, -0.478933721780777, 0.07677213847637177, -0.06383982300758362, -0.6668812036514282, -0.28683599829673767, 0.5377904176712036, -1.6147137880325317, -0.8111729621887207, 1.3421976566314697, 0.31350529193878174, -0.2906655967235565, -0.46108826994895935, 0.22013339400291443, 0.8092550039291382, -0.0626664087176323, 0.36341172456741333, -1.0073498487472534, 0.2904292643070221, 0.1424376666545868, -1.2107607126235962, -0.2318696826696396, 0.11962264776229858, 0.4162242114543915, 0.4142797887325287, -0.5250504016876221, 0.3135519027709961, 0.04674239829182625, 0.3190484642982483, 1.1211912631988525, 0.18854588270187378, 0.4860397279262543, -0.3424610197544098, -0.16729038953781128, -0.3049498498439789, 0.25765296816825867, 1.0299113988876343, -0.6439660787582397, -0.30187466740608215, -0.0923164039850235, -0.10517659038305283, 0.18097667396068573, 0.3290579319000244, -0.14484204351902008, 0.27715015411376953, -0.07537294179201126, 0.073630191385746, -0.46567991375923157, -0.30120649933815, 1.0985783338546753, 0.10659415274858475, 0.22637173533439636, 1.044870376586914, -0.09516031295061111, -1.2991665601730347, 0.12990067899227142, -0.029000718146562576, 0.05573723465204239, -0.11785732954740524, 0.14070983231067657, 0.2823786437511444, -0.3637925684452057, 0.8054221272468567, 0.5225865244865417, 0.787635326385498, 0.20401158928871155, 0.21490703523159027, 0.21358263492584229, 0.16027827560901642, 0.5381582379341125, 1.7789479494094849, 0.3731416165828705, -0.3935169577598572, -0.9954655766487122, 0.5466240048408508, -0.32171523571014404, 0.6478259563446045, 0.4075981080532074, -0.25864169001579285, 1.0889756679534912, -1.1350635290145874, -0.4623391330242157, 0.9208005666732788, -0.2525322437286377, -0.055518001317977905, 0.7900784611701965, -0.11006742715835571, -1.0202937126159668, 0.47907406091690063, 0.08169393986463547, 0.1617763340473175, 0.3796347379684448, 0.25469931960105896, -0.07599063962697983, 0.6634501218795776, -0.14539335668087006, 0.5832062363624573, -0.6831530928611755, 0.18127219378948212, 0.13878263533115387, -0.20059959590435028, 0.003079020418226719, 0.05317873880267143, 0.40637052059173584, 1.0017448663711548, -0.1787835657596588, -0.925374448299408, -0.19288834929466248, -0.5119276642799377, 0.2763226330280304, -0.24752886593341827, -0.4875618815422058, -0.569102942943573, -0.7657907009124756, -0.11706914007663727, 0.5557739734649658, -0.3682354986667633, -0.39744818210601807, -0.0901569202542305, -0.9329829216003418, 0.38805949687957764, 0.7643168568611145, 1.1733289957046509, 0.008235732093453407, 0.2591114640235901, 0.27960410714149475, 0.195415660738945, -0.47619929909706116, -0.0642198845744133, 0.4170874357223511, -0.4465644359588623, 0.41345328092575073, -1.7939852476119995, -0.9498993754386902, 0.25917255878448486, 0.7715365886688232, 0.44882479310035706, 0.7354426383972168, 1.0984370708465576, 0.8080486059188843, -0.3631899058818817, -0.04406013712286949, -0.43848907947540283, -0.7146148085594177, 0.8218344449996948, 0.6973509788513184, -0.7918050289154053, -0.5953199863433838, -0.9515816569328308, -1.7546887397766113, 0.9749664664268494, 0.031968459486961365, -1.5323153734207153, 0.8508568406105042, 0.20166324079036713, 0.33151566982269287, 0.3851025402545929, -0.6823182106018066, 0.5563364624977112, -0.3981923460960388, 0.07081609964370728, -1.452194094657898, 0.2139996439218521, 0.5861663222312927, -0.1619066745042801, -0.5373499393463135, 0.362504243850708, -0.33967646956443787, -0.07384023815393448, 0.3400345742702484, 0.34393253922462463, 0.5790413022041321, 0.8928434252738953, 0.23748718202114105, -1.2795917987823486, 0.022909192368388176, -0.25458481907844543, -0.029350629076361656, -0.294055700302124, 0.5673316121101379, 0.13228930532932281, -0.1801527738571167, -0.34173694252967834, -0.2785147726535797, -0.5206685662269592, -0.6572725772857666, -0.7013758420944214, 0.49834924936294556, 1.0224502086639404, -0.13373197615146637, 0.2934114933013916, -0.21012425422668457, -1.0251338481903076, -0.7122920751571655, 0.6592389941215515, 0.884127140045166, -0.5949432849884033, 0.01461128517985344, 0.009365352801978588, -0.5189486145973206, -0.44791844487190247, -0.030256925150752068, 0.22987836599349976, -0.9431843757629395, -0.835476279258728, -0.8345788717269897, 0.06488864123821259, 0.5226209163665771, -0.6050516366958618, 0.9696823954582214, 0.7116990089416504, -0.7677414417266846, 0.568700909614563, -0.13161489367485046, -1.3021045923233032, 0.2215472012758255, -1.366360068321228, 0.8583512902259827, -0.5108921527862549, 0.8662171959877014, -0.06246694177389145, 0.704668402671814, -1.295386552810669, -0.5953142642974854, -1.236095905303955, -0.3828999400138855, 1.4908400774002075, 0.28658542037010193, -1.2112956047058105, 1.1934338808059692, 0.24590617418289185, -0.8392990827560425, -0.4285115897655487, 0.3557363450527191, -1.029526948928833, 0.03820250555872917, 0.7471341490745544, 1.3478001356124878, 0.10796857625246048, 1.3891202211380005, 0.31283244490623474, 0.5909778475761414, -0.4140881597995758, 0.332735151052475, -0.4031623899936676, 0.40135157108306885, -0.12946230173110962, 0.5025833249092102, -0.9176239371299744, -0.5224291682243347, -0.10665249079465866, -0.8883554935455322, -0.7458634972572327, 0.3815114498138428, 1.2079745531082153, -0.4201989769935608, -0.007122650742530823, -0.09905319660902023, 0.6121443510055542, -0.7457574009895325, 0.13981275260448456, -0.34645339846611023, 0.20248185098171234, -0.25219404697418213, -0.2421974539756775, 0.37562546133995056, -1.1921228170394897, 0.39005768299102783, 0.408458411693573, -0.07472187280654907, -0.7220620512962341, 0.5853510499000549, 0.5268079042434692, 0.5617173314094543, -0.4762767553329468, 1.1957560777664185, 1.5295425653457642, -0.15472975373268127, 0.02271103858947754, 0.28279224038124084, 0.21996481716632843, 0.8363768458366394, -0.7365095615386963, -0.1064746230840683, -0.9341717958450317, 0.2577594816684723, 0.24892117083072662, -0.2601463794708252, -0.13266441226005554, -0.07846304029226303, -0.6137769222259521, -0.024530936032533646, 0.6466752290725708, 0.16220448911190033, -0.8602014780044556, 1.3914494514465332, -0.2721574902534485, -0.332235187292099, 0.39212116599082947, 0.29814931750297546, 0.11371985077857971, -0.4722461402416229, 0.17776595056056976, 0.2883976399898529, -0.9502606391906738, 0.36342620849609375, 0.10961807519197464, -0.15343745052814484, 0.10596121847629547, -0.6007225513458252, -0.9099699854850769, 0.13920128345489502, -0.4396362006664276, -1.3076443672180176, 0.39291155338287354, -0.8441803455352783, -0.806889533996582, 0.5112894773483276, -0.14498081803321838, -0.5129150748252869, -0.3739173114299774, 0.3609298765659332, 0.03989919275045395, 0.33100584149360657, 0.9348916411399841, -0.324516236782074, 1.1307778358459473, 0.30956026911735535, 0.4989885985851288, -1.1641855239868164, 0.49830102920532227, 0.45635533332824707, 0.6240633726119995, -0.4913288652896881, -0.4065009355545044, 0.7682265639305115, -0.2834552824497223, -0.937414824962616, 0.08144286274909973, -0.23018544912338257, -0.06198938563466072, 0.2739579677581787, -0.9918591380119324, -0.17489348351955414, 0.3094594180583954, 0.6901882290840149, -0.971885621547699, -0.686734139919281, -1.0807042121887207, 0.5456658005714417, -0.9162799119949341, 1.1700615882873535, -0.22293467819690704, 1.0144635438919067, 0.6446710228919983, -0.8798672556877136, -0.21307691931724548, -0.45339658856391907, 1.2307275533676147, -0.16356806457042694, 0.6757274866104126, -0.5114302039146423, 0.48981380462646484, -0.09401804208755493, -0.8279900550842285, 0.302141934633255, 0.23838798701763153, -0.1620633900165558, -0.16967537999153137, -0.8344714045524597, -1.087308645248413, -0.7028946280479431, 0.5646926760673523, 1.1388087272644043, 0.32023003697395325, 0.5469565391540527, 0.24417750537395477, -1.1617910861968994, -0.16126395761966705, 0.6367945671081543, -0.20379871129989624, -0.06338274478912354, 1.3553950786590576, 1.6173007488250732, 0.27274370193481445, 0.022591635584831238, -0.42970359325408936, 0.9862112998962402, -0.5230317115783691, -0.10125025361776352, -0.33523985743522644, 0.21051712334156036, -0.2646556794643402], [-0.1755213588476181, 1.7579327821731567, -1.568742275238037, -0.8595821857452393, 1.2498400211334229, -0.0031415820121765137, 1.0837924480438232, 0.0979674682021141, 0.2013150155544281, -0.4536544382572174, -0.7798994183540344, 0.21702344715595245, -0.10214540362358093, 0.5203243494033813, 0.6168572902679443, 0.5158201456069946, 0.25009965896606445, -0.32998427748680115, 0.6864540576934814, 1.406090259552002, -0.11005981266498566, 0.3159087002277374, -0.7347614765167236, 0.21334637701511383, -0.13171546161174774, 0.1513126641511917, 0.08647122234106064, -0.6367007493972778, -0.9814901351928711, -0.9528281092643738, 0.771602988243103, -0.9608857035636902, 0.692240297794342, 0.6550279855728149, -0.9618284702301025, 0.3194204568862915, 1.1190917491912842, -0.22808627784252167, -0.0880126953125, 0.07932274043560028, 1.9541641473770142, 0.06711741536855698, -0.20739774405956268, -1.4160345792770386, -0.1224934458732605, 0.3064633011817932, 0.666775107383728, -0.714353621006012, -0.41168397665023804, -1.1317416429519653, 0.4646839499473572, 0.41476374864578247, 0.7416625022888184, 0.7206891179084778, 0.4515531361103058, -0.2922954559326172, -0.17800962924957275, 0.8035873770713806, 0.43313807249069214, -0.7550510764122009, 1.0542502403259277, 0.16033293306827545, -0.5148492455482483, 0.801154375076294, 0.37404006719589233, 0.17277026176452637, 0.0767679363489151, 0.7459374666213989, 0.3222832679748535, -0.49247485399246216, -0.03776621073484421, 0.7143944501876831, -0.353309690952301, 0.1359798014163971, -0.7024267911911011, 0.2681715488433838, 0.8834463953971863, 0.2716669738292694, -0.19155296683311462, 0.6849815845489502, -0.9111034870147705, 0.30316436290740967, 0.6294592618942261, -0.4321076571941376, 0.8161647319793701, 0.4658423960208893, -0.19786319136619568, -0.75160151720047, -0.16778908669948578, 1.9280816316604614, 0.2733186185359955, -0.21112830936908722, 0.6389639377593994, -0.46244746446609497, 0.0333356037735939, -0.4766176640987396, 0.29898062348365784, -0.586139976978302, -0.33768489956855774, -0.5812783241271973, -0.8499498963356018, -0.9645832777023315, 0.21096256375312805, 0.5379142165184021, -0.27320921421051025, 1.3377407789230347, 0.20031356811523438, 0.0076225390657782555, -0.3439674377441406, 0.04612082988023758, 0.08321814239025116, -0.1391586810350418, -0.34055936336517334, -0.06615210324525833, -0.5322837233543396, -0.04438936710357666, 1.0469775199890137, -0.19685396552085876, 0.21333831548690796, 0.27534085512161255, -0.47462576627731323, 0.32466456294059753, -0.24698969721794128, 0.7842239141464233, 0.3598547577857971, 0.25297996401786804, -0.4267011880874634, -0.7891533970832825, 0.3729957640171051, -0.005797912832349539, 0.02339373342692852, -0.3277074694633484, 0.4110405743122101, 1.151607871055603, -0.5533212423324585, 0.997463583946228, -0.2506154775619507, -1.0168018341064453, 0.055912528187036514, -0.3174492120742798, 0.04487168788909912, 0.2102281004190445, -0.3237391710281372, -0.3112531900405884, 0.2906253933906555, -1.1110634803771973, 0.6178370118141174, -0.4623047411441803, -0.3627636432647705, 0.0864318311214447, -0.596749484539032, 0.5043520331382751, 0.30460670590400696, 1.536181092262268, 0.06207888200879097, -0.34435349702835083, 0.6736199259757996, 0.29157570004463196, 0.3408674895763397, 0.48076286911964417, 0.8753671050071716, 0.4449533522129059, -0.871471643447876, 0.22248555719852448, 0.18560433387756348, -0.25178250670433044, 0.8317119479179382, 0.788221538066864, -0.4108251631259918, 0.22175775468349457, -0.5417061448097229, -0.8575888276100159, -1.1777174472808838, 0.7911221981048584, 0.5320544838905334, -0.7979225516319275, 1.037738561630249, -0.5255163908004761, -1.1722058057785034, -1.0544071197509766, 0.036047451198101044, -0.04311006888747215, -0.010752681642770767, 0.18780866265296936, 0.7893803715705872, 0.3120826184749603, 0.34457600116729736, -0.2872842848300934, 0.11200851947069168, -1.5192002058029175, -1.2823773622512817, -0.3471853733062744, -1.1933982372283936, 0.5666031241416931, -0.3420276939868927, -0.624467670917511, 0.4461838901042938, -0.9588021039962769, -0.3678421974182129, -0.22788046300411224, -0.2849366068840027, -0.020827585831284523, -0.4645230174064636, 0.18471337854862213, -0.3368699848651886, 0.15903525054454803, -0.788044273853302, 0.827477753162384, -0.5302096009254456, -0.18027152121067047, 0.8243291974067688, -0.17216609418392181, -1.1657038927078247, 0.7501717805862427, -0.33025988936424255, -1.1497606039047241, 0.35299861431121826, 0.7043926119804382, 0.5606293082237244, -0.234994038939476, -0.01746857725083828, 0.16125483810901642, 0.4951460659503937, 0.24306729435920715, 0.11157479137182236, -1.1579257249832153, -0.5615282654762268, -1.093882441520691, -0.7679527401924133, 0.18793322145938873, -0.5587426424026489, -1.283112645149231, 0.37184011936187744, 0.13637514412403107, -0.5784575939178467, 0.5514752268791199, -0.27666962146759033, 0.2393045723438263, 0.17642183601856232, 0.9275737404823303, 0.011079186573624611, 0.6309197545051575, -0.8567063808441162, 0.049833204597234726, -0.5827748775482178, -0.1024208664894104, 0.984186053276062, -0.29185134172439575, 0.5597940683364868, 1.0397506952285767, 0.5713502168655396, 0.28915923833847046, 0.45282283425331116, -0.8827297687530518, -0.34752732515335083, -0.5806699395179749, -1.073876976966858, 0.30763429403305054, -0.2848205864429474, 1.3998210430145264, 0.4023551344871521, -1.3320989608764648, 0.28164735436439514, 0.49970823526382446, -0.034047145396471024, -0.14217621088027954, -0.3973150849342346, -0.4931972920894623, 0.4691745340824127, -0.1914200633764267, -0.005720559041947126, 0.5843101143836975, -0.6109746098518372, 1.427259922027588, -0.5672566294670105, -0.06327077001333237, -0.5235020518302917, 0.5867727994918823, 0.2145557850599289, 0.81163489818573, 0.16504521667957306, -0.7515349984169006, -0.2550276517868042, -0.8023117780685425, 0.7463493943214417, 0.1261197030544281, 0.07969789206981659, 0.3574345111846924, 0.8275647163391113, -0.2012864351272583, 0.6459400057792664, 0.7144494652748108, -0.06623755395412445, 0.5091612935066223, 0.19282402098178864, 0.06051074340939522, 0.9152682423591614, -0.21040013432502747, -0.46798354387283325, -0.5692481398582458, 0.6370785236358643, 1.1157499551773071, 1.124140739440918, 1.8938943147659302, 0.511546790599823, -0.16131114959716797, -0.3099517822265625, -0.1275429129600525, -0.38876572251319885, -0.5221567749977112, -0.3675377368927002, -0.2736268937587738, -0.07804382592439651, -0.4770219624042511, 0.02793879248201847, 0.31549811363220215, -0.2865070104598999, 0.9038796424865723, 0.391958624124527, -0.8238998651504517, -0.13654230535030365, 0.06746236234903336, -0.291709840297699, -0.882684051990509, 0.9234410524368286, 0.9552358388900757, -1.1382322311401367, -0.02592085301876068, -0.13579179346561432, 0.33171096444129944, 0.8400304913520813, 0.17009903490543365, 0.5422985553741455, -0.8162128329277039, -0.8506743907928467, -0.4447278678417206, 1.3681050539016724, 0.36797720193862915, 0.3106171786785126, -0.5566118955612183, 0.3470193147659302, 0.5074235200881958, -0.3755318522453308, 0.06834398955106735, 1.2622408866882324, -0.30220627784729004, -0.8432661890983582, 0.022859852761030197, 0.10915913432836533, 0.43958377838134766, -0.2963285744190216, -0.1976606249809265, -0.011379274539649487, 0.07847833633422852, 0.22958306968212128, 0.5835081934928894, -0.1824844479560852, 0.701143741607666, 0.23948270082473755, -0.13041532039642334, 1.1412713527679443, -0.5403286814689636, 0.4816894829273224, -1.335240125656128, 0.37224990129470825, 0.8165205717086792, 1.255677580833435, -0.49059486389160156, -0.1552133411169052, 0.05805196985602379, -0.16398130357265472, -0.06907631456851959, 0.4194156527519226, 1.0658940076828003, 0.5167284607887268, -0.5777705311775208, -0.35553133487701416, 0.3345291316509247, -0.28070420026779175, -0.4715062379837036, -0.20995992422103882, 0.7086817622184753, -0.9916625022888184, -0.6405019760131836, 0.6186323165893555, 0.024229925125837326, -0.4241826832294464, 0.0315418504178524, -0.15059451758861542, 0.3138832151889801, -0.12830065190792084, 0.48723700642585754, -0.586793839931488, 0.26124945282936096, 0.037044353783130646, -0.404257208108902, -0.5112212300300598, 0.003909209743142128, 0.6872767806053162, 0.6705369353294373, -0.4237595796585083, 0.1168522834777832, -0.42912557721138, 0.3425544798374176, 0.48487159609794617, -0.5295777320861816, -0.12536999583244324, 0.692615807056427, 0.45099377632141113, 0.1576581448316574, 0.4850746989250183, 1.0742121934890747, -0.745556116104126, -0.05800259858369827, 0.5420441031455994, 0.07514891028404236, 0.43487346172332764, -1.1444841623306274, 0.09906695038080215, 0.10735607892274857, -0.4936271011829376, -0.04447196424007416, -0.06720792502164841, -0.3045582175254822, 1.6497710943222046, 0.21301865577697754, 0.6421810388565063, 0.3477938771247864, -0.4053531289100647, -0.6913028359413147, -0.13755883276462555, 0.19646665453910828, 0.3475029766559601, -0.8124240636825562, 0.39185935258865356, 0.3244980573654175, 0.12631914019584656, 0.457209050655365, -0.07303924113512039, 0.39643147587776184, 0.4351482391357422, 0.010684063658118248, -0.011722652241587639, 0.43212831020355225, 1.0751873254776, 1.056079387664795, 0.6837748289108276, -0.43904754519462585, -0.34335580468177795, 0.8985362648963928, -0.5605700612068176, -0.300660103559494, 0.31468191742897034, -0.05866336077451706, 1.1592382192611694, -1.098793864250183, -0.9869264960289001, 0.6769230365753174, 0.6621009111404419, 0.19523419439792633, 0.26009100675582886, 0.035501379519701004, -0.6732206344604492, 0.5821115374565125, 0.49446752667427063, -0.17405693233013153, 0.20531333982944489, 0.4165375530719757, 0.44211092591285706, 0.5428345799446106, -0.28151074051856995, 0.4128134250640869, -0.342246949672699, -0.6125375628471375, -0.2052256017923355, -0.5021668672561646, 0.43419599533081055, 0.6476602554321289, 0.41820046305656433, 0.3392711281776428, -0.31723207235336304, -0.4619767367839813, 0.17846344411373138, -0.8907031416893005, 0.5289070010185242, -0.3215942084789276, -0.9822676181793213, -0.8145933151245117, -1.0008069276809692, -0.5512714385986328, -0.0004407104570418596, -0.4108831286430359, -0.19525927305221558, 0.08432374894618988, -0.9236734509468079, 0.43740689754486084, 0.29983144998550415, 0.9129729866981506, 0.6090401411056519, 0.2738198935985565, 0.5539038777351379, 0.46266859769821167, -0.4971257746219635, 0.33794113993644714, 0.04256633296608925, 0.1534954458475113, -0.13230673968791962, -1.3953722715377808, -0.33174824714660645, 0.3736773729324341, 0.013847037218511105, -0.09344810992479324, 0.06813515722751617, 0.8912514448165894, 0.8807227611541748, -0.082384392619133, -0.499559611082077, -0.05535885691642761, -0.30505621433258057, 0.9487214684486389, 0.09844125062227249, -0.861424446105957, 0.3862777352333069, -0.6958879828453064, -1.504964828491211, 0.9490406513214111, -0.16066062450408936, -0.6598734855651855, 0.2640523612499237, 0.0029413211159408092, -0.1572543978691101, 0.7210618853569031, -0.1998830884695053, 0.23788024485111237, -0.0787191092967987, -0.13634228706359863, -1.3156737089157104, 0.7464633584022522, 0.2666325271129608, 0.24845841526985168, -0.3189660906791687, -0.23496222496032715, 0.44457095861434937, -0.21550263464450836, -0.026602908968925476, 0.21209050714969635, 0.4203992784023285, 0.42037343978881836, -0.25256097316741943, -0.6146575212478638, 0.3019380271434784, -0.6768218874931335, -0.367840439081192, -0.1102953776717186, 0.3565315902233124, 0.2540082037448883, -0.6881616711616516, -0.3165765106678009, -0.0007035303860902786, -0.14919845759868622, 0.12029687315225601, -0.32024165987968445, 0.8249509930610657, 0.39907070994377136, -0.36760470271110535, 0.19552575051784515, -0.5627008080482483, -0.4538784325122833, -1.0815742015838623, -0.04145731031894684, 0.7497435808181763, -0.7850672006607056, -0.4557753801345825, 0.11319994181394577, -0.272128164768219, -0.13869179785251617, -0.2775220572948456, 0.13145627081394196, -1.027819275856018, -1.2103614807128906, -1.1298185586929321, 0.14428618550300598, 0.3368353843688965, -0.7604861855506897, 0.7088003754615784, 0.5932384729385376, -1.3958114385604858, 0.06392095983028412, -0.7074340581893921, -1.235656499862671, -0.06446224451065063, -1.4220770597457886, 0.07499787956476212, -0.4151650369167328, 0.27022382616996765, -0.15107034146785736, 0.766936719417572, -1.0044070482254028, -1.1564500331878662, -0.610029935836792, -0.473513126373291, -0.2311783879995346, 0.6660272479057312, -0.6445546746253967, 0.7751011848449707, 0.518855631351471, -0.29052016139030457, -0.5706160664558411, 0.6054579019546509, -1.2509777545928955, 0.5611909031867981, 0.2117842435836792, 0.3333345651626587, -0.09390901029109955, 1.0498836040496826, -0.2755083441734314, 0.6097962856292725, -0.24254441261291504, -0.009698010049760342, 0.03154829517006874, -0.026082675904035568, -0.26276421546936035, -0.08103767782449722, -0.8318877816200256, -0.8605888485908508, -0.13188791275024414, -0.8513954281806946, -1.4193915128707886, 0.5120542049407959, 1.1908289194107056, -0.5478686094284058, 0.5240527987480164, -0.4498150050640106, 0.5671483278274536, -1.4157302379608154, 0.08258501440286636, 0.6709393858909607, -0.7692569494247437, 0.009998573921620846, -0.8190038204193115, 0.2186243236064911, -0.9777805805206299, -0.012128523550927639, 0.5099785327911377, 0.25711047649383545, -0.4740310311317444, 0.22095884382724762, 1.1633089780807495, -0.289537250995636, -0.21062003076076508, 0.7375152707099915, 0.7605711817741394, -0.5172820687294006, -0.4208633601665497, 0.33159589767456055, -0.6021512746810913, 0.8245143294334412, -0.4999926686286926, -0.21920210123062134, -0.7159535884857178, 0.06521975994110107, -0.36760368943214417, -0.7888786196708679, -0.41860783100128174, -0.4695826470851898, -0.7455745339393616, -0.038786303251981735, 0.454754501581192, 0.2697567045688629, -0.44240134954452515, 1.3046950101852417, 0.2746916711330414, -0.2430020272731781, 0.22866731882095337, 0.5260692834854126, 0.17370368540287018, -0.040549565106630325, 0.0562722310423851, 0.15643686056137085, -0.2106732279062271, 0.21161004900932312, 0.1793508529663086, 0.16444522142410278, -0.2549211084842682, -0.3057560920715332, -1.6368674039840698, -0.28154081106185913, -0.1341570019721985, -0.3062414228916168, 0.1893940567970276, -0.6576730608940125, -0.9329875707626343, 0.18350020051002502, 0.15544761717319489, -0.1468888372182846, -0.19776614010334015, -0.36213329434394836, -0.6141271591186523, 0.293010413646698, 0.6699859499931335, -0.5443328619003296, 0.9621171355247498, 0.1840255856513977, -0.1670178920030594, -0.4332219660282135, -0.24347005784511566, -0.03776656091213226, 0.332592636346817, -0.04235363006591797, -0.19177916646003723, 0.7710458636283875, -0.5367962121963501, -1.1790986061096191, -0.16940942406654358, 0.6739646196365356, 0.17826524376869202, -0.319819837808609, -0.45835304260253906, 0.42440366744995117, 0.6060051321983337, 0.31468695402145386, -0.40784752368927, -1.0621434450149536, -1.0887542963027954, 0.6466478705406189, -0.3213768005371094, 0.7828044891357422, -0.3046237528324127, 0.7822979092597961, 0.3453792333602905, 0.11927919089794159, -0.2766478359699249, 0.1255270093679428, 0.15693412721157074, -0.6612263321876526, 1.2826175689697266, 0.5831943154335022, 0.2347298115491867, -0.14440320432186127, -0.6606259346008301, -0.23203571140766144, -0.28973522782325745, -0.3225264549255371, 0.49253740906715393, -0.8213598132133484, -0.15444523096084595, -0.5510513186454773, 0.4325779974460602, 1.0631645917892456, 0.3733671009540558, 0.437546044588089, 0.013864175416529179, -0.8213516473770142, 0.2058609127998352, 0.005766184069216251, -0.2564910054206848, 0.07786964625120163, 0.9481570720672607, 1.3491953611373901, 0.49782946705818176, -0.18214410543441772, 0.16321085393428802, 0.8214118480682373, -0.7740562558174133, -0.24786213040351868, -0.6475149989128113, 0.2265959084033966, -0.5148377418518066], [-1.0674538612365723, 1.3547685146331787, -1.8199107646942139, -1.1870447397232056, 1.0859726667404175, -0.4017763137817383, 1.5553271770477295, -0.07670386880636215, 0.015424801036715508, -0.5861388444900513, -0.3011188805103302, -0.04904518648982048, 0.41721251606941223, 1.6781182289123535, 0.1322752833366394, 0.42168688774108887, 0.4602124094963074, -0.09437219053506851, 0.6025944948196411, 1.6169880628585815, -0.8560730814933777, 0.31432250142097473, 0.47500497102737427, 0.37609708309173584, 0.08101895451545715, 0.3234555125236511, -0.7775503396987915, -0.8146317005157471, -0.7585482597351074, -0.911354124546051, 1.911181092262268, -1.092829942703247, 0.03246372938156128, 0.15776531398296356, -1.399376392364502, -0.13899023830890656, 1.0382646322250366, 0.9146591424942017, -0.149112731218338, 0.20751126110553741, 1.2957843542099, 0.1428210437297821, -0.37104737758636475, -1.7956035137176514, 0.8413130640983582, -0.27338212728500366, 0.9808857440948486, -0.9076545834541321, -0.13748398423194885, -0.9124729633331299, 0.556341290473938, -0.7276849746704102, 0.8704531788825989, 0.6974648237228394, 0.45435547828674316, -0.004572000354528427, 0.4056440591812134, 0.053145743906497955, 0.16975779831409454, -0.14938107132911682, 0.8665227890014648, 0.23802819848060608, -0.7049931287765503, 0.7408541440963745, 0.5210165977478027, 0.3485925793647766, -0.4242172837257385, 0.16567978262901306, 0.1847151517868042, 0.20157074928283691, 0.28563445806503296, -0.18940776586532593, -0.22884903848171234, -0.08288264274597168, -0.339227557182312, 0.8139889240264893, 0.7766404151916504, 0.6631704568862915, 0.8154134154319763, 0.6293342709541321, -0.6618181467056274, -0.5600850582122803, 0.6041926145553589, -0.2844552993774414, 0.20125329494476318, 0.023156728595495224, 0.2620314955711365, -1.045802116394043, -1.1058937311172485, 1.299760341644287, -0.007675148546695709, 0.20740333199501038, 0.5913508534431458, -0.4840405583381653, 0.5552534461021423, -0.20137707889080048, 0.1514570713043213, -0.8799606561660767, -0.0426408015191555, -0.44011351466178894, -1.0808227062225342, -0.16903015971183777, 0.6107161045074463, 0.01340213418006897, -0.7184898853302002, 0.7380949854850769, 0.304438054561615, -0.3503451645374298, -0.5008764266967773, 0.32218480110168457, -0.5886113047599792, 0.49681586027145386, -0.9565086364746094, -1.0043995380401611, -0.4936264157295227, 0.6331313848495483, 0.9803475737571716, -0.12792840600013733, 0.7151798009872437, 0.5783320665359497, -0.7263052463531494, -0.24654074013233185, 0.5362573862075806, 0.5178203582763672, 0.40957966446876526, 0.01915527880191803, -1.0619609355926514, -0.6628392934799194, -0.6242343187332153, -0.638800859451294, 0.46580636501312256, -0.142680361866951, -0.24706147611141205, 0.49458205699920654, -0.24719159305095673, 1.4076411724090576, -0.2712860703468323, -0.9758498668670654, -0.10220127552747726, -0.09303860366344452, 0.6407028436660767, -0.27852553129196167, -0.17326287925243378, -0.5557266473770142, 0.23926392197608948, -0.005721673369407654, 0.04587673023343086, -0.6171149015426636, -0.39223265647888184, 0.10657389461994171, -0.9848146438598633, 0.69479900598526, 0.13278953731060028, 1.6102403402328491, 0.06566693633794785, -0.39173877239227295, 0.527725100517273, -0.09699750691652298, 0.47187092900276184, 0.17588582634925842, 0.4848380386829376, 0.09717375785112381, -1.2181003093719482, 0.23267820477485657, 0.20692011713981628, -0.558997392654419, 0.77397221326828, 0.3581657111644745, 0.3037407696247101, 0.33324936032295227, -0.325256884098053, -0.5022518634796143, -0.587944746017456, 0.8874180316925049, -0.2884819805622101, -1.1812691688537598, 1.2768926620483398, -0.2903612554073334, -0.7942050695419312, -0.6387662887573242, -0.12239322066307068, -1.176379680633545, 0.03262670338153839, -0.5626822710037231, -0.07274599373340607, -0.33487239480018616, 0.08154532313346863, -0.6043225526809692, -0.27666300535202026, -0.8797223567962646, -0.2381819188594818, -0.3670743405818939, -0.9648959636688232, 0.3675178289413452, -0.5339319705963135, -0.8012572526931763, 0.6458320617675781, -0.9907370209693909, -0.24970883131027222, -0.4254869818687439, -0.5405511856079102, -0.12604829668998718, -1.1390070915222168, 0.5224684476852417, -0.461047887802124, 0.8131554126739502, -0.16294528543949127, 0.9161293506622314, -0.5857671499252319, -0.10056167840957642, 1.1703239679336548, -0.24910570681095123, -0.9315232634544373, 0.39750176668167114, -0.47255343198776245, -1.2997634410858154, 0.44021350145339966, -0.09880411624908447, -0.5242156982421875, 0.5054553747177124, 0.15548425912857056, 0.5189014673233032, -0.3215441107749939, 0.11679898947477341, -0.05193614959716797, -0.959264874458313, -0.22487501800060272, -0.5923480987548828, -0.30049970746040344, 0.4088892340660095, -0.8333910703659058, -1.1711852550506592, 0.5461297035217285, 0.5077508091926575, -0.2382139265537262, -0.055810846388339996, 0.2446097880601883, 0.2434089332818985, -0.014879904687404633, 1.2866932153701782, 1.0537118911743164, 0.822471022605896, -0.5846510529518127, -0.1291007101535797, -0.536520779132843, -0.4566502273082733, 0.7705721855163574, -0.3855680525302887, 0.15052753686904907, 1.247572422027588, 0.2471635639667511, 0.14302146434783936, 0.4002862870693207, -0.38898220658302307, -0.3236536979675293, -0.12575219571590424, -0.4468255341053009, 0.3962444067001343, -0.13244307041168213, 1.0058934688568115, -0.025654971599578857, -0.4495531916618347, -0.45668286085128784, 0.2790205180644989, 0.03625510632991791, -0.6120453476905823, -0.7001475095748901, -0.17778553068637848, 0.07573997974395752, 0.19654470682144165, 0.13530559837818146, 0.6215157508850098, -0.4416089653968811, 0.3165191411972046, -0.07296601682901382, -0.2545093595981598, -0.1839788556098938, 0.688485860824585, -0.02836253121495247, 1.164117693901062, 0.4399265646934509, -1.023622751235962, -0.29240885376930237, 0.31732577085494995, 0.7309359908103943, -0.005032321438193321, 0.07202883809804916, 0.9002202749252319, 0.6798428297042847, -0.40266984701156616, 0.4348470866680145, 0.6284167766571045, -0.39575672149658203, 0.2615095376968384, 0.29912322759628296, 0.6204543709754944, 0.8882254362106323, -0.8368720412254333, -0.6641290187835693, -0.07746908813714981, 0.035166554152965546, 1.687161922454834, 1.1834064722061157, 1.3190696239471436, -0.44675374031066895, -0.08945313096046448, -0.23672397434711456, -0.22577086091041565, -0.20280419290065765, -0.6634596586227417, -0.49734973907470703, -0.08665920794010162, -0.5546972155570984, -0.4872203469276428, 0.3813890218734741, 0.8201443552970886, 0.5180455446243286, 1.009537935256958, 0.43876513838768005, -0.019403254613280296, -0.3327177166938782, 0.0611397847533226, -0.433828741312027, -0.8821895122528076, 0.2535398304462433, 0.809178352355957, -0.4180760979652405, -0.16994686424732208, 0.04347013682126999, -0.25637486577033997, 0.6632410287857056, 0.1733679473400116, 1.3384289741516113, -0.788699209690094, -0.6668304800987244, -0.5610715746879578, 1.675233006477356, 0.04074333235621452, 0.0795309990644455, 0.2763359546661377, 0.23177313804626465, -0.12488564103841782, -0.2641039788722992, -0.5348998308181763, 0.19005395472049713, -0.600256085395813, -0.42655056715011597, 0.3132489323616028, 0.5948885679244995, -0.5108779668807983, -0.10925459116697311, -0.4172016382217407, -0.08965644240379333, -0.604520857334137, 0.3102864623069763, 0.007753640413284302, 0.34730809926986694, 0.9329185485839844, -0.6936146020889282, -0.14924190938472748, 0.4623403549194336, 0.22390463948249817, -0.943689227104187, -1.220371961593628, 0.8062452673912048, 0.11033576726913452, 0.28265878558158875, 0.28479647636413574, 0.129143625497818, 0.31313556432724, -0.514380693435669, 0.39168238639831543, 0.1270521581172943, 0.3025425374507904, 0.10861536115407944, -0.3947010040283203, -0.3010776937007904, 0.23820337653160095, 0.12845489382743835, -0.21006779372692108, -0.06412427127361298, 0.9505184292793274, -0.9642915725708008, -0.1481103152036667, 1.0917505025863647, 0.5252828598022461, 0.10726196318864822, -0.17511527240276337, 0.12360532581806183, 0.171211376786232, -0.2605551779270172, 0.898579478263855, -0.3122755289077759, 0.056159865111112595, -0.09755485504865646, -0.33116745948791504, -0.16324082016944885, -0.14557303488254547, 0.16131554543972015, 0.9445840120315552, -0.551350474357605, -0.530526876449585, -0.670621395111084, 0.5869433879852295, -0.09474895894527435, -0.29336053133010864, 0.8656784296035767, 0.3385394811630249, -0.014771293848752975, -0.2927396297454834, 0.38520175218582153, 0.9565104246139526, -0.13126283884048462, -0.5023266673088074, -0.3912830948829651, 0.34043794870376587, 0.03632723540067673, -0.6092020273208618, -0.09653802216053009, 0.550699770450592, 0.0039786845445632935, 0.09457336366176605, -0.2525802552700043, -0.21698391437530518, 1.4333009719848633, 0.23283816874027252, 0.25400975346565247, 0.22121384739875793, -0.38773709535598755, -0.13671432435512543, 0.22181905806064606, 0.2089766561985016, 0.4287009835243225, -0.12769165635108948, -0.0044433255679905415, 0.6295599937438965, -0.2761218249797821, 0.37816479802131653, 0.6098684072494507, 0.6622368097305298, -0.2725115716457367, -0.6754835844039917, -0.3636138439178467, -0.08938055485486984, 0.1529894471168518, 1.1207956075668335, 0.0460866279900074, -0.24786211550235748, -1.483255386352539, 0.0968078076839447, -0.16989970207214355, 0.060978032648563385, 0.3562517762184143, 0.3151134252548218, 1.3133134841918945, -1.0678637027740479, -0.23842917382717133, -0.2721656858921051, 0.37969183921813965, 0.06718669831752777, 0.5919047594070435, -0.2815663814544678, -1.3246784210205078, -0.06192989647388458, 0.4070308804512024, 0.022715844213962555, 0.28998053073883057, -0.12518200278282166, 0.304115891456604, 0.6848729848861694, -0.48302048444747925, 0.37569522857666016, -0.1507512629032135, -0.4859466552734375, -0.7515996694564819, -0.22763292491436005, 0.128245010972023, 0.3239752948284149, 0.2532998025417328, 1.1877079010009766, -0.3324899673461914, -0.3839288353919983, 0.30616870522499084, -1.3849457502365112, 1.0062413215637207, -0.6630324125289917, -0.21945397555828094, -0.1962125152349472, -0.8138066530227661, -0.6239095330238342, 0.3449704051017761, -0.993007481098175, -0.5913689136505127, -0.4985445737838745, -1.0469789505004883, 0.3842671513557434, 0.6246168613433838, 1.4000349044799805, 0.30572399497032166, 0.3067615032196045, 1.1686010360717773, 0.380967378616333, -0.399810254573822, -0.08336768299341202, 0.35483357310295105, -0.52855384349823, 0.4901878237724304, -1.1633403301239014, -1.1294312477111816, 0.6808103322982788, 0.3068333864212036, 0.16635370254516602, 0.5861330032348633, 0.717007040977478, 0.7909613847732544, -0.19441430270671844, 0.0082850381731987, 0.17946434020996094, -0.745148241519928, 0.8103716373443604, 0.2783381938934326, -0.22795890271663666, -0.5189635753631592, -0.8531773090362549, -1.5487208366394043, 1.766522765159607, 0.184023916721344, -0.5303462147712708, 0.7722384929656982, 0.34171998500823975, -0.17665432393550873, 0.47090137004852295, -0.0064244940876960754, -0.3699851632118225, -0.1478898823261261, -0.6068753600120544, -0.9962306618690491, 0.290710985660553, 0.10548277199268341, -0.32442155480384827, -0.2982192933559418, -0.1334482878446579, 0.6327283382415771, 0.05124881863594055, 0.38878393173217773, 0.5271873474121094, 0.326640784740448, 0.12037371098995209, 0.6747736930847168, -0.3784456253051758, 0.45778799057006836, -1.0936766862869263, -0.7348105907440186, 0.09875741600990295, 0.6754415035247803, -0.046413861215114594, 0.38451820611953735, 0.10577886551618576, 0.43001824617385864, -0.003590606153011322, -0.13905154168605804, -0.45217299461364746, -0.1899421364068985, 1.088157296180725, -0.18982845544815063, 0.5970259308815002, -0.2717602252960205, -0.1364189088344574, 0.020529042929410934, 0.28741198778152466, 0.7030659914016724, -0.9477802515029907, -0.3106030225753784, 0.26545917987823486, -0.3517008423805237, -0.2788572311401367, -0.4238208532333374, -0.26454871892929077, -1.2145049571990967, -1.0867724418640137, -1.0598381757736206, 0.015262545086443424, 0.6165735125541687, -0.3904794156551361, 0.25319474935531616, 0.11125542968511581, -1.404336929321289, 0.25402554869651794, -0.49209654331207275, -1.3012034893035889, -0.06857480853796005, -1.1778819561004639, 0.8215444684028625, -0.6706066727638245, 0.7990608811378479, 0.25914067029953003, 1.3624470233917236, -0.8099675178527832, -1.0848089456558228, -0.19168239831924438, -0.08475083112716675, 0.5989986658096313, 0.4250744581222534, -0.8265515565872192, 0.9426151514053345, 0.7066537141799927, -0.3793056905269623, -0.42333245277404785, 0.15089455246925354, -0.28575652837753296, 0.04283618927001953, -0.049351178109645844, 0.4611443877220154, 0.04643617197871208, 1.2624589204788208, 0.12946513295173645, 0.5364090204238892, 0.5191341638565063, 1.1068451404571533, -0.3959046006202698, 0.07307950407266617, -0.4805052578449249, 0.212105393409729, -0.7211079597473145, -0.5291005373001099, 0.04377446696162224, -1.0597199201583862, -1.089755892753601, 0.08669634163379669, 1.3362014293670654, -0.8987456560134888, 0.5682305693626404, -0.5136117339134216, 0.8179466724395752, -1.1381490230560303, 0.5854164958000183, -0.36108458042144775, -0.13043294847011566, -0.1062084212899208, -0.19685962796211243, -0.3740859627723694, -0.802550733089447, -0.12227313220500946, 0.7729154825210571, 0.5786441564559937, -0.517894446849823, 0.8999079465866089, 0.5742185115814209, -0.1344422847032547, -0.5025632381439209, 1.091282606124878, 0.637363612651825, 0.1085074320435524, -0.514644980430603, -0.20317202806472778, -0.13661053776741028, 0.48207777738571167, -0.20647978782653809, 0.3852088451385498, -0.556188702583313, 0.8334743976593018, -0.2673173248767853, -0.29623332619667053, -0.5828105211257935, -0.828620970249176, -0.06897203624248505, -0.6132808327674866, 1.3091034889221191, -0.028685808181762695, -0.05546819046139717, 1.1543285846710205, 0.10955597460269928, -0.25943654775619507, -0.08343569189310074, 0.3422447443008423, 0.1584165096282959, -0.10189211368560791, 0.7336400747299194, 0.35765340924263, -0.6204609870910645, 0.06622086465358734, 0.21783709526062012, 0.5006033778190613, 0.3595393896102905, -0.48022449016571045, -1.6443912982940674, -0.16727638244628906, -0.8956911563873291, -0.766656756401062, 0.5576929450035095, -0.26744091510772705, -0.9266805052757263, 0.5599404573440552, 0.527237594127655, -0.2898935377597809, 0.13313564658164978, 0.23990079760551453, 0.242628812789917, -0.33751916885375977, 1.220639944076538, -0.48507988452911377, 1.318685531616211, -0.3773304224014282, -0.09495850652456284, -0.32986050844192505, -0.3051329255104065, 0.2766037583351135, -0.16579067707061768, 0.12424251437187195, -1.0210756063461304, 0.35427218675613403, 0.3705766201019287, -1.20431387424469, 0.7984495759010315, 0.14775130152702332, 0.3729315400123596, -0.2936112880706787, -0.3098587393760681, -0.11182154715061188, 0.6060653924942017, 0.734009861946106, -0.6122161149978638, -0.7872756123542786, -1.0465400218963623, 0.31929776072502136, -0.9243298768997192, 0.6832988262176514, -0.2649960219860077, 0.13584010303020477, 0.6746178865432739, -0.11616058647632599, -0.605312705039978, -0.8132362365722656, 0.15662705898284912, -0.09613245725631714, 0.17384929955005646, -0.025635167956352234, -0.32369929552078247, 0.2528527081012726, -0.9117317199707031, 0.703201413154602, -0.15610119700431824, 0.0032721906900405884, 0.4824568033218384, -0.8870980739593506, -0.9947326183319092, -0.3582232594490051, 0.0015954039990901947, 0.846922755241394, 0.07618074119091034, 0.44352877140045166, 0.4192327857017517, -0.6260328888893127, -0.19178199768066406, -0.0005991309881210327, -0.6970114707946777, 0.08188271522521973, 1.2573058605194092, 1.4898216724395752, -0.15379191935062408, 0.6825737357139587, -0.7220595479011536, 0.508420467376709, -0.5657659769058228, -0.5793923735618591, -0.3007972538471222, 0.2256273329257965, -0.19105681777000427], [-0.3866255581378937, 0.5183123350143433, -2.3021280765533447, -0.41362378001213074, -0.13198800384998322, 0.390229195356369, 1.3134217262268066, 0.18322275578975677, 0.00916169211268425, -1.3629475831985474, -0.6533296704292297, 0.8170055150985718, 0.4215567111968994, 0.8296146988868713, -0.15940974652767181, -0.0684565082192421, 0.5374886393547058, -0.08417603373527527, 0.3608204424381256, 0.4974397122859955, 0.19492653012275696, -1.6245918273925781, -0.39671552181243896, 0.6321464776992798, 0.5399652123451233, 0.05965760350227356, -2.0253653526306152, -1.1555235385894775, -1.4330543279647827, -0.4556766152381897, 1.4376683235168457, -0.721394956111908, -0.45278385281562805, -0.17321018874645233, -1.2625054121017456, -0.772059440612793, 0.27509504556655884, 0.5411617159843445, 0.6622010469436646, -0.16162607073783875, 1.8423501253128052, -0.2325592190027237, -0.44766536355018616, -1.6254078149795532, 0.0305081307888031, 0.5200201869010925, 0.634557843208313, -1.6527701616287231, -0.09023687988519669, -0.4309242367744446, 0.9486865997314453, -0.33764365315437317, 0.3383164405822754, 0.8763319849967957, 0.9750707149505615, -1.1708524227142334, 0.1168878823518753, -0.1249067559838295, 0.48310011625289917, 0.4031096398830414, 1.740077257156372, 0.983619213104248, -0.4392855167388916, 1.450875997543335, 0.7180086970329285, -0.38691338896751404, 0.08958051353693008, 0.5963554978370667, -1.0425864458084106, -0.05441423878073692, 0.5525497198104858, -0.08068868517875671, -0.7190953493118286, 0.164885014295578, -0.47708985209465027, 0.07073021680116653, 0.022450868040323257, 0.5752279162406921, 0.2622406780719757, 1.0186173915863037, -0.30432257056236267, 0.27484092116355896, 0.36994150280952454, 0.06648550927639008, 0.5014560222625732, 0.18817219138145447, -0.34517553448677063, 0.08597216755151749, -0.7394019365310669, 1.542240023612976, -0.22383368015289307, 0.9754723906517029, 0.713114857673645, -1.039933204650879, 0.3229861855506897, -0.8342491984367371, 0.6517913341522217, -0.19842258095741272, -0.40589869022369385, -0.8131740689277649, -0.1693745255470276, -1.2057843208312988, 0.5774273872375488, -0.24819175899028778, 1.110974907875061, 1.7752152681350708, -0.2184566706418991, -0.900112509727478, -0.28467661142349243, -0.1614854484796524, -0.16338466107845306, 1.239338994026184, -0.7092483639717102, -0.9786441326141357, 0.22616830468177795, 0.7427757382392883, 0.37113240361213684, 0.05456382408738136, 0.7170251607894897, 0.707767128944397, -0.8347283005714417, -0.45597904920578003, -1.0098105669021606, 0.7339290976524353, 0.6417410373687744, 0.5035935640335083, -0.36262789368629456, 0.0709281638264656, -0.29705068469047546, 0.44239503145217896, -0.07631015032529831, -0.13576675951480865, -0.4545707106590271, 1.1155604124069214, -0.6924199461936951, 1.3838869333267212, -1.0074446201324463, -1.43271005153656, -0.15498876571655273, 0.16369202733039856, 0.6361575722694397, -0.709104597568512, -0.6376762390136719, -0.6935659050941467, 0.057119760662317276, -0.5167325735092163, 0.48915860056877136, -0.05445189028978348, -0.5102083086967468, -0.27524447441101074, -1.5926507711410522, -0.13796080648899078, 0.2979302704334259, 1.0378704071044922, -0.11327588558197021, 0.014628779143095016, 0.731032133102417, 0.03135699778795242, 0.8177205324172974, 0.3724833130836487, 1.094678521156311, 0.24415290355682373, -0.2313753217458725, 1.2486486434936523, 0.017540035769343376, -1.0758219957351685, 0.38913652300834656, 0.6051220297813416, 0.06124473735690117, 0.7369075417518616, -0.6490573883056641, -0.793467104434967, -0.5390218496322632, 0.3570183515548706, -0.7408889532089233, -0.7746822834014893, 0.4718782305717468, -0.19706135988235474, -0.8686410188674927, -1.0717190504074097, 1.0222394466400146, -0.5051459074020386, 0.658250093460083, -0.02258375659584999, -0.011152197606861591, -0.27090564370155334, -0.08891516923904419, 0.6944907307624817, -0.1189764142036438, -0.2938922643661499, -1.2006715536117554, -0.39912840723991394, -1.2550309896469116, -0.10486581921577454, -0.4617622196674347, -0.9924556016921997, 0.041218966245651245, -0.4567776322364807, -0.33027392625808716, 0.1523420661687851, -0.09257018566131592, -0.36535871028900146, -1.3668767213821411, 0.03151089325547218, -0.3678589463233948, 0.23854319751262665, 0.12034853547811508, 0.2237549126148224, -0.04688730090856552, 0.5671941041946411, 0.9078448414802551, 0.363229900598526, -1.1807607412338257, 0.4529288113117218, 0.07217381149530411, -1.511422038078308, -0.2616182267665863, -0.23982496559619904, -0.5586563944816589, 0.31381893157958984, -0.10197288542985916, 0.1538092941045761, 1.1360031366348267, -0.18640395998954773, 1.0236124992370605, 0.2255282998085022, -0.6805137991905212, -0.4763815402984619, -0.841196596622467, 0.45227304100990295, -0.7440752983093262, -0.7669214606285095, 1.0050990581512451, 0.11214567720890045, -0.9561432600021362, 0.2498565912246704, 0.08159969002008438, -0.03336528316140175, 0.38884520530700684, 0.6462701559066772, 0.21643005311489105, 0.6032467484474182, -0.3027138411998749, -0.6261463165283203, -0.6552526354789734, 0.46961167454719543, 0.7891818881034851, -0.04394776001572609, 0.4733055830001831, 0.9579035043716431, 1.1503524780273438, -0.3126835823059082, 0.1729394942522049, 0.26567766070365906, -0.8631198406219482, -0.7315658926963806, -0.4641588628292084, -0.2312539517879486, -0.9969913959503174, 1.183188557624817, 0.6328473091125488, -1.0770663022994995, -0.8509914875030518, -0.0564962700009346, -0.10083749890327454, -0.06605509668588638, -0.4286035895347595, -0.8405724167823792, 0.7020969390869141, 0.1697983294725418, 0.312728613615036, 0.012931065633893013, -0.12749961018562317, 0.2850455939769745, -0.10247129946947098, -0.2518940269947052, -0.4434148967266083, 0.3163391947746277, 0.47839513421058655, 1.2117424011230469, -0.34763607382774353, -1.1174821853637695, -0.24567823112010956, 0.1602083444595337, 0.29807886481285095, -0.34774407744407654, -0.21000148355960846, 1.045545220375061, 1.0315245389938354, -0.16010591387748718, 0.06027449667453766, -0.1303536295890808, 0.07859235256910324, -0.6596436500549316, 0.7525566220283508, 0.51454097032547, 1.1685264110565186, -0.7246423959732056, -1.001269817352295, -0.49789151549339294, 0.3556382954120636, 1.0650036334991455, 0.5294397473335266, 0.9962385892868042, -0.500607967376709, -0.5129549503326416, -0.3550873100757599, -0.38351237773895264, -1.5687129497528076, -0.39172476530075073, -0.8453117609024048, -1.3391954898834229, 0.05244346335530281, -0.47641846537590027, 0.5949362516403198, 0.9961238503456116, 0.1039595827460289, 0.820838451385498, 1.2034921646118164, 0.1699545979499817, -0.7054910659790039, -0.3492913544178009, 0.43333473801612854, -1.239557147026062, 0.42760786414146423, 1.328757882118225, -0.900532066822052, -0.09986277669668198, 0.1070731058716774, 0.3561672568321228, 0.5344917178153992, -0.01624462567269802, 0.09901861101388931, -1.4266184568405151, -0.46079903841018677, 0.20826703310012817, 1.5855176448822021, -0.18893910944461823, -0.6537250876426697, -0.7954562902450562, 0.719603419303894, 1.2894632816314697, -0.40142595767974854, -0.5696347951889038, 0.623253583908081, -0.5271779894828796, -0.4260229170322418, -0.0395042859017849, -0.23192061483860016, 1.294050693511963, -0.6416996717453003, -0.2706512212753296, -0.23095589876174927, 0.3706953525543213, -0.023341432213783264, 0.25279587507247925, -0.6469621658325195, 1.1737695932388306, 0.029986843466758728, 0.1500433385372162, 0.7752020955085754, -0.7460072636604309, 0.18969976902008057, -1.1329294443130493, 0.2211643010377884, 0.031241396442055702, 1.096388816833496, 0.1911390870809555, 0.7780773043632507, 0.2102089673280716, -1.253029465675354, 0.4279547333717346, 0.8464819192886353, 0.3652559220790863, -0.2193981409072876, -0.7374810576438904, -0.7824639081954956, -0.5553086996078491, -0.36958491802215576, -0.9113101363182068, -0.42500847578048706, 0.24131456017494202, -1.020171046257019, -0.1864939033985138, 0.8007086515426636, 0.8191786408424377, -0.27736106514930725, 0.24193409085273743, 0.06856242567300797, 0.4216672480106354, -0.639607846736908, -0.03593907132744789, -0.41755855083465576, 0.24481132626533508, 0.4002681374549866, -0.6790342330932617, -0.4252409040927887, 0.1040366142988205, 0.3805537819862366, 0.6868739724159241, -1.7149250507354736, 0.5430384874343872, -0.3934882581233978, 0.4214859902858734, 0.5800061225891113, 0.05660763010382652, 0.18721093237400055, 0.2621411681175232, -0.6517632007598877, -0.3707696497440338, 0.33147600293159485, 1.4377968311309814, 0.19447046518325806, -0.30907830595970154, -0.172481507062912, -0.36081987619400024, 0.3634764552116394, 0.18943069875240326, -0.006949468050152063, 0.21666957437992096, 0.2977389991283417, 0.8456262946128845, -0.01903693564236164, 0.3700498342514038, 1.7987431287765503, 0.19045987725257874, -0.14969436824321747, 0.5696722269058228, -0.07376832515001297, -0.588505744934082, -0.3480875492095947, 0.4927971363067627, -0.8233267664909363, 0.205808624625206, 0.007799053564667702, 0.11997824907302856, 0.6154094934463501, 0.39770442247390747, 1.1659435033798218, 0.9699600338935852, 0.46986210346221924, -0.8752179741859436, -0.049454957246780396, 0.7644517421722412, 0.8170248866081238, 1.1678860187530518, 0.4435691833496094, -0.354177862405777, -1.1693692207336426, 1.1074953079223633, -0.7221313118934631, 0.3290242850780487, 0.12723441421985626, 0.041815802454948425, 0.7629426717758179, -1.2060186862945557, -0.35581108927726746, 0.7653290033340454, -0.29062536358833313, 0.6567292213439941, 0.1607331484556198, -0.12607982754707336, -0.07644100487232208, -0.4471334218978882, -0.6822205185890198, -0.29680517315864563, 0.6999338865280151, -0.11785975098609924, -0.3520132303237915, 0.9974356293678284, -0.5656216144561768, 0.14662954211235046, -0.6233110427856445, -0.15272872149944305, 0.22422432899475098, 0.02523564174771309, -0.015103788115084171, 0.1402195394039154, 0.1460447907447815, 1.9100861549377441, -0.4661904573440552, -1.0455464124679565, 0.06450445204973221, -1.1790355443954468, 0.3864186406135559, -0.4264501631259918, -0.3524288833141327, 0.05291162058711052, -0.24202077090740204, -0.2914440333843231, -0.020523877814412117, -0.6359043121337891, -0.48961392045021057, -0.30570855736732483, -1.09922456741333, 0.2399590164422989, 0.07430150359869003, 1.0439479351043701, 0.8348689675331116, 0.3388306796550751, -0.6040027737617493, 0.22625571489334106, -0.6591581702232361, 0.3221088647842407, 0.7152429223060608, -0.36975494027137756, -0.5998356342315674, -0.785971999168396, -1.1425971984863281, 1.4006078243255615, 0.5960556268692017, 0.20166519284248352, 0.7511171698570251, 1.3394712209701538, 1.5999019145965576, -0.46510812640190125, -0.4483925700187683, 1.206540584564209, -0.9570915699005127, 1.451351523399353, 0.37154120206832886, -1.0329538583755493, -0.2014523297548294, 0.2465481013059616, -2.559077024459839, 0.9902724027633667, 0.4229828119277954, -0.7057437300682068, 1.3886133432388306, 0.7452889680862427, 0.3221951425075531, 0.7233692407608032, -0.741926372051239, -0.11981786787509918, 0.25098761916160583, -0.022602858021855354, -1.742581844329834, 0.825434684753418, 0.8482277989387512, -0.13759012520313263, -0.7574871778488159, 0.4155011773109436, -0.2683814465999603, 0.08500064164400101, -0.5516756772994995, 0.44158434867858887, 0.09488785266876221, 0.43734505772590637, 0.5585691928863525, -1.1176748275756836, 0.43220454454421997, -0.42258116602897644, 0.3357682228088379, 0.08241225779056549, 0.5063513517379761, 0.2338327169418335, -0.8485240340232849, -0.03774178773164749, -0.2091544270515442, -0.23428890109062195, -0.25238272547721863, -0.6854352951049805, 0.9803374409675598, 0.4962814748287201, -0.013783966191112995, -0.42440265417099, -0.6438766121864319, -0.33558815717697144, -0.3327752649784088, -0.14305607974529266, 0.8219748139381409, -1.496766448020935, -0.2132244110107422, 0.12604059278964996, -0.6309486627578735, 0.22142727673053741, 0.5483709573745728, 1.098109245300293, -0.6660866737365723, -1.0754719972610474, -0.40753409266471863, 0.5257569551467896, 1.0159448385238647, 0.08292366564273834, 0.8091154098510742, 0.00236129155382514, -0.9712957739830017, 0.8046854734420776, -0.4962872564792633, -1.432442307472229, -0.8336082696914673, -1.1598396301269531, 0.6761301159858704, 0.3127812445163727, 0.008199621923267841, 0.5317487120628357, 1.1330955028533936, -0.718044638633728, -1.3603172302246094, -1.9562466144561768, -0.06164059415459633, 0.7334875464439392, 0.1037287637591362, -0.1585765928030014, 1.2194371223449707, 0.18110451102256775, -0.7710784077644348, -0.5689345598220825, 0.23190189898014069, -1.1095424890518188, 0.40124738216400146, -0.18515747785568237, -0.1933315098285675, 0.3880097270011902, 1.5861133337020874, 0.6737082004547119, 1.1641435623168945, 0.7867923378944397, 1.161626935005188, -0.8092086911201477, -0.4578622877597809, -0.16622401773929596, 0.4373517334461212, -1.0068646669387817, -0.6452782154083252, -0.025354189798235893, -0.14340540766716003, -0.6163702607154846, 0.49878573417663574, 1.254955530166626, -1.0597816705703735, 0.2912651300430298, 0.30833372473716736, 0.05822567641735077, -0.4536546766757965, 0.7334598302841187, 1.3177489042282104, -0.7871571779251099, -0.1052907258272171, 0.08891703933477402, 0.599997878074646, -0.4802663326263428, -0.14500701427459717, 0.09643496572971344, -0.08072733134031296, 0.31099453568458557, 1.0676032304763794, 0.4919024705886841, 0.22464190423488617, -0.8709505796432495, 0.9538387656211853, 0.9688041806221008, 0.03540336713194847, 0.011568168178200722, 0.6656503081321716, -0.47041064500808716, 0.26070696115493774, -0.401602566242218, -0.5771028995513916, -1.1326709985733032, 0.799187958240509, 0.2020786851644516, 0.19716504216194153, -0.948100209236145, 0.8735228180885315, 0.34946709871292114, 0.1159886047244072, 1.1907144784927368, -0.31160375475883484, -0.7455654740333557, 0.7934208512306213, 0.15309464931488037, -0.11255215853452682, -0.027419928461313248, 0.3771084249019623, 0.9015650153160095, 0.16964876651763916, -0.011332851834595203, 0.43499597907066345, -1.123047947883606, -0.5611218214035034, -0.13615849614143372, -0.5749598145484924, -0.1830543726682663, -0.06707361340522766, -1.4544278383255005, -0.5202734470367432, -0.47570016980171204, -0.36291152238845825, 0.4831222593784332, -0.6791383028030396, -0.8574780821800232, -0.18811704218387604, -0.5590711832046509, 0.29451414942741394, -0.5967567563056946, -0.16498412191867828, -0.1897476613521576, 0.4379231631755829, 0.6711083054542542, -0.08156316727399826, 1.221040964126587, -0.23227284848690033, -0.028691790997982025, -0.7226876020431519, 0.7417708039283752, -0.30394065380096436, 0.8523327112197876, -0.05063417926430702, -0.701648473739624, -0.2153184860944748, 0.01883724518120289, 0.16063305735588074, 0.3826482594013214, -0.15516605973243713, 0.6619033217430115, -0.4020208418369293, -1.0074701309204102, -0.37467262148857117, 0.5485591888427734, 0.2694600522518158, -0.8757420778274536, -0.7093199491500854, -0.29423055052757263, 0.19751065969467163, -0.20476453006267548, 1.0939061641693115, -0.5966666340827942, 1.2393603324890137, 0.09630734473466873, -0.23468123376369476, 0.0033674994483590126, -0.587049663066864, 0.9456234574317932, -0.22946009039878845, 0.27981850504875183, -0.4506646394729614, -0.5209932327270508, -0.0012819953262805939, -0.8145070672035217, 0.5719994306564331, 0.48577043414115906, -0.41897183656692505, 0.28857162594795227, -0.8945358991622925, -0.9566630125045776, -0.5843319296836853, -0.6071747541427612, 0.31530845165252686, -0.10537028312683105, 0.8401160836219788, 0.04654761403799057, -0.8870947360992432, 0.3600236475467682, 0.9312970042228699, -0.4571878910064697, 1.0909594297409058, 1.5016250610351562, 1.5075604915618896, 0.004230997525155544, 0.09189233183860779, -0.08355670422315598, 1.2430769205093384, -0.8165032863616943, -0.2814852297306061, -0.8068697452545166, 0.27402445673942566, 0.44996073842048645], [0.8842006325721741, 1.577690601348877, -2.0989456176757812, -0.7664074301719666, 0.25457507371902466, -0.9145766496658325, -0.007274627685546875, -0.45531129837036133, -1.1751465797424316, -1.1244897842407227, -0.13147348165512085, 0.26136401295661926, 0.16812382638454437, 1.1486504077911377, 1.0828839540481567, -0.38038402795791626, 0.8375566005706787, -0.12853996455669403, 0.27626335620880127, 0.8848239183425903, 0.22821560502052307, -0.28637057542800903, -0.0681970939040184, 0.577487587928772, 0.15281593799591064, -0.3693227171897888, -0.9836293458938599, -0.49052464962005615, -1.3753833770751953, -1.6059672832489014, 1.4322985410690308, -1.1756455898284912, 0.38372746109962463, -0.267038494348526, -1.2370884418487549, -1.062889575958252, 1.0414879322052002, -0.5052156448364258, 0.5977161526679993, 0.24504747986793518, 1.5152373313903809, -0.5594353675842285, 0.018419018015265465, -0.7786127328872681, 0.4110892415046692, 0.4466171860694885, 0.14001606404781342, -0.6975991129875183, 0.10570672154426575, -0.13092221319675446, -0.4077131152153015, -1.0393816232681274, 0.20278717577457428, 0.7596669793128967, 0.6880278587341309, -0.04255841672420502, -0.13357922434806824, 0.37820684909820557, 0.38460230827331543, 0.808849573135376, 1.1271640062332153, 0.7023937702178955, -0.12617482244968414, 0.025947272777557373, 0.4856424331665039, -0.15295931696891785, 0.9103017449378967, 0.10574309527873993, -0.33111053705215454, 0.6848900318145752, 0.8658411502838135, -0.7690364718437195, 0.10524662584066391, 0.16231641173362732, -0.916018009185791, -0.6228904128074646, -0.15488527715206146, 0.7591205835342407, 0.2928190231323242, 1.021806001663208, -1.2706562280654907, -0.2862396538257599, 0.49080321192741394, -0.4622918963432312, 0.18546447157859802, 0.02999110519886017, -0.10456809401512146, -0.6944367289543152, -1.0479196310043335, 1.6346116065979004, 0.06214150786399841, 0.3833245038986206, 0.7427394390106201, 0.15197885036468506, 0.326511412858963, -0.2281724214553833, -0.37629032135009766, -0.08461827784776688, 0.8471765518188477, -1.140713095664978, -0.07848765701055527, -0.7836999893188477, 0.8615106344223022, -0.5066542625427246, 0.0002232678234577179, 1.9746975898742676, 0.10955054312944412, -1.221152901649475, -1.3742544651031494, -0.4180733561515808, 0.7765972018241882, 0.10824425518512726, -0.2837284803390503, -1.2573374509811401, -0.01493837684392929, 0.9969176054000854, 0.09358926117420197, 0.6816145777702332, 0.4087349474430084, 0.7822942733764648, 0.20836001634597778, -0.10547421127557755, -0.7208676338195801, -0.050702884793281555, 0.702755868434906, -0.21570579707622528, -0.10144204646348953, -0.11923005431890488, -0.16500680148601532, -0.23203520476818085, 0.286405473947525, 0.4385730028152466, -0.27660736441612244, 0.22197504341602325, -0.1831042766571045, 0.7136391401290894, 0.336945116519928, -0.5704137086868286, 1.0094809532165527, -0.7460781931877136, 0.6816875338554382, -0.6161527633666992, -0.38758301734924316, -0.5852071046829224, 0.7742564678192139, -0.31030791997909546, 0.5516324043273926, -0.0988684892654419, -0.8921371698379517, -0.7906550168991089, -1.1451025009155273, -0.1170191764831543, -0.04882463812828064, 1.0612022876739502, 0.9125230312347412, 0.2447146475315094, 0.26494935154914856, 0.6994786858558655, 0.1901051253080368, 0.348183274269104, 0.4516450762748718, 0.06521495431661606, -1.044377326965332, 1.5825294256210327, 0.7408121824264526, -1.1989490985870361, 0.6762651205062866, 0.6702341437339783, -0.2744920253753662, 1.2879664897918701, -0.7716442346572876, -0.45972171425819397, -0.7990124225616455, -0.4282485842704773, -0.10093474388122559, -0.6683593988418579, 1.4234271049499512, -0.22849291563034058, -0.2699261009693146, -1.6020610332489014, 0.2186182737350464, -0.37544265389442444, -0.2312728315591812, 0.43916064500808716, 0.05326841026544571, 0.032640568912029266, -0.2549610137939453, -0.306504487991333, 0.06186121702194214, -0.24967990815639496, -1.4467945098876953, 0.10569365322589874, -0.6223916411399841, -0.09835146367549896, 0.12988199293613434, -1.5012950897216797, -0.05696357414126396, -0.08031479269266129, -0.3510957658290863, -0.4587513208389282, 0.24238407611846924, 0.024834513664245605, -0.5212514400482178, 0.06587493419647217, -0.7797781229019165, -0.2812701165676117, -0.29325616359710693, 0.8077499866485596, 0.1026570275425911, 0.6140322685241699, 0.4036441445350647, 0.03609832376241684, -0.8588380813598633, 1.2017054557800293, 0.873648464679718, -1.6531022787094116, 0.6632843017578125, 0.3035658001899719, 0.6807260513305664, 0.5028473734855652, 0.5305190086364746, -0.3025584816932678, 0.11623609066009521, -0.015018712729215622, 0.445675253868103, 0.26187407970428467, -0.6256121397018433, -0.03177645057439804, -1.267989993095398, 0.6403106451034546, -0.9970317482948303, -0.37366583943367004, 0.42957189679145813, 0.2982023358345032, -1.204530954360962, 0.9677658081054688, -0.04290636256337166, 0.8233954906463623, -0.008635539561510086, 0.822393536567688, 0.041512228548526764, -0.24137872457504272, -0.7660493850708008, -0.6540076732635498, -1.5233747959136963, -0.37793272733688354, 0.19631093740463257, -0.32928937673568726, 0.6420353651046753, 1.0908353328704834, 0.466827929019928, -0.860787034034729, 0.18659469485282898, -0.02915581315755844, -0.050751589238643646, -0.662915825843811, 0.32174330949783325, -0.40205055475234985, -0.9928747415542603, 1.8919932842254639, 0.9112473726272583, -1.0469067096710205, -0.7718214988708496, 0.11929675191640854, 0.2763218581676483, -0.013725705444812775, 0.10186875611543655, 0.023157980293035507, 0.5093361735343933, -0.031206335872411728, 0.09780564904212952, 0.40065038204193115, 0.049179792404174805, -0.1638631522655487, -0.5306166410446167, -0.35967665910720825, 1.0673596858978271, 0.31318551301956177, 0.8862720131874084, 1.09732186794281, 0.37571924924850464, -1.960067629814148, -0.6013691425323486, 0.09011313319206238, 0.6340652704238892, -0.9376174211502075, 0.5031509399414062, 0.3047052025794983, 1.1505671739578247, -0.4636392891407013, 0.8764260411262512, 0.9021801948547363, -0.08940731734037399, -0.497184157371521, -0.44965308904647827, 0.2852189540863037, 0.5951119661331177, -0.7734137773513794, -0.4997935891151428, -1.0075489282608032, 0.4444615840911865, 0.48734715580940247, 0.29592791199684143, 1.6318540573120117, -0.8876994848251343, 0.2286035716533661, 0.3122485876083374, 0.3765900433063507, -0.784182071685791, -0.314683735370636, 0.02950381487607956, -0.1076158806681633, -0.2053101658821106, 0.04528624936938286, -0.396375834941864, -0.10202233493328094, -0.1456364095211029, 0.7283801436424255, 0.20918267965316772, 0.014896141365170479, -1.819747805595398, -0.9869346618652344, 0.09853210300207138, -1.019700288772583, 0.30986952781677246, 1.058227300643921, -0.6486148834228516, 0.06015082448720932, 0.45062100887298584, -0.14551755785942078, -0.0939192920923233, 0.2656077444553375, -0.21668186783790588, -0.6849817037582397, -1.5189749002456665, 0.011073626577854156, 0.6098138093948364, -0.010193247348070145, -0.38172435760498047, -1.0518492460250854, 0.9296261668205261, 0.9680646657943726, 0.1886979639530182, -0.28809359669685364, 0.16947703063488007, 0.2822294533252716, 0.2830204367637634, -0.877977728843689, -0.018574604764580727, 1.1275081634521484, -0.2146415412425995, -0.8945367336273193, -0.3796480894088745, -0.08233333379030228, 0.4077640175819397, 0.09952010959386826, 0.5239790678024292, 1.088186502456665, -0.3950429856777191, -0.7926833629608154, 0.5298923254013062, 0.5447893142700195, 0.7330174446105957, -0.7540726661682129, 0.6309869885444641, 0.06967537105083466, 1.1452319622039795, 0.639190137386322, -0.4203541576862335, -0.7412986755371094, -0.5385677218437195, -0.0059158094227313995, -0.4123806655406952, 0.25583401322364807, -0.24268528819084167, 0.10811041295528412, -0.8106398582458496, 0.08548244088888168, -0.467276394367218, -0.47198057174682617, -0.9271511435508728, -0.16323275864124298, 0.40916895866394043, -0.46407419443130493, 0.5894638299942017, -0.4459410011768341, -0.27946048974990845, -0.09506502747535706, -0.35084253549575806, -0.023315787315368652, 1.350043535232544, -1.1421030759811401, -0.6032336354255676, 0.5985527038574219, -0.33348509669303894, -1.1368625164031982, -0.1894913911819458, -1.062795877456665, 0.04665537178516388, 0.8803727626800537, -1.1824445724487305, 0.2632492482662201, 0.7034605741500854, 0.47021645307540894, 0.5358560085296631, -0.6651747226715088, 0.7143781185150146, -0.3077898621559143, 0.0722159743309021, -0.5371507406234741, 0.0921863242983818, 0.8653777241706848, -0.0687171071767807, 0.543005108833313, -0.39307311177253723, -0.015840645879507065, 0.40315669775009155, 0.543057918548584, -0.14910194277763367, -0.0450759157538414, -0.3390178680419922, 0.19870203733444214, -0.10539840161800385, 0.1349354237318039, 0.8403671979904175, -0.20916128158569336, -0.2516288757324219, 0.23535871505737305, 0.37399062514305115, -0.19106891751289368, -0.4606953561306, -0.3328561782836914, 0.45776674151420593, 0.5577627420425415, 0.35676178336143494, 0.10718420892953873, -0.49140995740890503, 0.2375597506761551, 0.559457004070282, 0.8520627021789551, -0.05069655552506447, -0.8473227620124817, -0.39183706045150757, 0.6402643918991089, 0.675568699836731, 2.005363941192627, 0.9465141296386719, -0.5001276135444641, -1.1337969303131104, 0.8685761094093323, -0.9164475798606873, 0.2111172378063202, -0.3013399839401245, 0.7228554487228394, 1.576096534729004, -0.6924927234649658, -0.8291073441505432, 0.8679168224334717, 0.7454058527946472, 0.4237537980079651, 0.8508623838424683, 0.40243056416511536, -0.09457014501094818, -0.09414386749267578, 0.193304643034935, -0.6399115324020386, 0.6916947364807129, -0.2649794816970825, -0.014386279508471489, 0.894240140914917, -0.5572091341018677, -0.9461734890937805, -0.09277655184268951, 0.05947995185852051, -0.1914609670639038, -0.33974725008010864, 0.28100717067718506, 0.625296950340271, 0.6233625411987305, 0.07835346460342407, -0.12842631340026855, -1.011141061782837, 0.09522557258605957, -0.6807677745819092, 0.3563476800918579, -0.07888877391815186, -0.4060947895050049, -0.17584852874279022, -1.3390467166900635, -0.3525660037994385, -0.07783447206020355, -0.774910569190979, -0.05829419195652008, 0.23996837437152863, -0.497964084148407, -0.22539342939853668, -0.013052687048912048, 1.5799025297164917, 1.2977814674377441, 0.24419260025024414, 0.36470621824264526, -0.04294944554567337, -0.6492569446563721, -0.3257620334625244, 0.33537280559539795, -0.8609781265258789, -0.3402106761932373, -0.5855133533477783, -0.802812933921814, 1.1424001455307007, 0.26216715574264526, -0.3141326308250427, 0.918994128704071, 1.041975736618042, 1.1381020545959473, -0.36118465662002563, -0.39137890934944153, -0.5305958390235901, -0.12747822701931, 0.9038257598876953, 0.7633401155471802, -0.9510082602500916, -0.15799486637115479, 0.691676139831543, -2.56744384765625, 0.5203847289085388, 0.4909006357192993, -0.46570906043052673, -0.37840792536735535, 0.32560861110687256, 0.4973601698875427, 0.3111739754676819, -0.3642479479312897, 0.060906656086444855, -0.6805181503295898, -0.2419101446866989, -1.0637648105621338, -0.5348784923553467, 0.718757152557373, 0.2530784010887146, 0.2797606587409973, -0.0178311038762331, -0.380952924489975, -0.2801057994365692, 0.1594657301902771, 0.42757949233055115, 0.5286708474159241, 0.8852393627166748, -0.328421413898468, -0.8167372941970825, 0.9408683776855469, -0.46575483679771423, 0.6829434633255005, -0.29367193579673767, 0.6736277341842651, 1.104778528213501, 0.14036321640014648, 0.5365357398986816, -0.07641372829675674, 0.2097511887550354, -0.652394711971283, -0.8898194432258606, 0.13966187834739685, 0.8203617334365845, 0.4588468074798584, 0.37930232286453247, -0.43684619665145874, -0.5740360021591187, -0.3739590644836426, 0.2818659543991089, 0.8048529028892517, -0.44883328676223755, -0.9334204196929932, -0.29994961619377136, 0.3759182095527649, 0.08689798414707184, 0.5354352593421936, 0.858097493648529, -0.8467569351196289, -0.6531938314437866, -0.7261127233505249, 0.30295640230178833, 0.7290332317352295, -0.6753581762313843, 0.6491168737411499, 0.26372140645980835, -1.7795026302337646, 2.202308177947998, -0.15076880156993866, -1.4458708763122559, -0.1886812299489975, -0.9450452327728271, 0.7031893730163574, -0.43598276376724243, 0.37375128269195557, 0.2635922431945801, 0.9008606672286987, -0.49607765674591064, 0.14999979734420776, -1.6497591733932495, -0.6060782670974731, 0.3996885120868683, 0.5646851062774658, -1.2350397109985352, 0.7881267070770264, -1.055846929550171, -0.8214155435562134, -0.6184912919998169, 0.07095411419868469, -0.7522722482681274, 0.15593136847019196, -0.07141806185245514, 0.2678402066230774, -0.0735263079404831, 1.1339943408966064, 0.6701385974884033, 0.9207823276519775, -0.29475200176239014, 1.0964292287826538, -0.7974807024002075, -0.07446861267089844, -0.30439329147338867, -0.04317130148410797, -1.4987001419067383, -0.15596839785575867, -0.9180846214294434, -0.5365945100784302, 0.0381067730486393, 1.2658185958862305, 0.45348942279815674, 0.2451631724834442, 0.13011468946933746, 0.2834956645965576, 0.4224695563316345, -1.0620100498199463, 0.4576481282711029, 0.7537438869476318, -0.6746223568916321, -0.6018019914627075, 0.17157219350337982, -0.1326427161693573, -0.5163595080375671, 0.09742990136146545, -0.06343145668506622, 0.8755068182945251, -0.26639121770858765, 1.241797685623169, 0.032845497131347656, 0.016344202682375908, -0.4381321370601654, 0.7879396080970764, 0.7740954160690308, -0.9063622951507568, 0.08617574721574783, 0.2543402314186096, -0.5722348690032959, 1.1196895837783813, -0.09854789078235626, -0.8196117281913757, -0.9144158363342285, 1.222540259361267, -0.3661978840827942, -0.6176717281341553, -0.4070998430252075, 0.8461370468139648, -0.6922303438186646, -0.6104553937911987, 1.0061755180358887, -0.3533000946044922, -0.5303796529769897, 0.934698760509491, 0.5336399078369141, -0.28636687994003296, 0.41842207312583923, 0.2750087380409241, 0.34631308913230896, 0.017044691368937492, -0.7607418298721313, 0.8789499402046204, -0.2874086797237396, -0.3138071894645691, -0.4067798852920532, -0.4584362506866455, 0.6247432231903076, 0.32608282566070557, -1.4082934856414795, -0.28635329008102417, -0.8712466955184937, 0.05775276571512222, 0.10837967693805695, -0.32526516914367676, -0.027661532163619995, 0.45856547355651855, 0.1299479454755783, 0.4808606505393982, -0.536184549331665, -0.13939401507377625, -1.1069984436035156, -0.012732159346342087, 0.796373724937439, -0.3193405866622925, 1.0902469158172607, 0.28368547558784485, 0.5432831048965454, -0.25150352716445923, 0.21272476017475128, 0.8803993463516235, 0.27475041151046753, -0.1322222501039505, -0.6433857679367065, 0.5271895527839661, 0.2340024709701538, -0.03021266497671604, 0.8820637464523315, 0.11716213822364807, 0.49675479531288147, -0.34883609414100647, -1.71328866481781, -0.09783366322517395, 0.2165273129940033, 1.1168773174285889, -0.3469979763031006, -0.40154972672462463, -0.09808236360549927, 0.47699087858200073, 0.08303876221179962, 0.7652907371520996, -0.12179853767156601, 1.19948410987854, 0.7172291874885559, -0.42726922035217285, -0.7419411540031433, -0.8833973407745361, 1.1070683002471924, -0.09865917265415192, 0.41769707202911377, -0.1011723130941391, 1.060225009918213, -0.5440809726715088, -0.32998502254486084, 0.16228699684143066, 0.3076641857624054, -0.5147258043289185, 0.8990269899368286, 0.009740957990288734, -1.5174802541732788, -0.9070223569869995, 0.5107612013816833, 0.5091115236282349, -0.26580655574798584, 0.5595380067825317, -0.7000871896743774, -1.4725792407989502, -0.7088829874992371, 0.4868845045566559, 0.20211490988731384, 0.24530856311321259, 1.0636851787567139, 1.6952705383300781, -0.6816840767860413, 0.011026576161384583, 0.1400759518146515, 0.6464221477508545, -1.5441583395004272, 0.3418172299861908, -0.4762399196624756, 0.33724114298820496, -0.6203678250312805], [1.0379228591918945, 1.1222281455993652, -2.285416841506958, -0.982851505279541, 1.0066343545913696, 0.6037310361862183, 1.2537949085235596, 0.17603491246700287, -0.4336049556732178, -1.2110257148742676, -1.2317498922348022, 0.1950368732213974, 0.11549346148967743, 0.18741200864315033, 0.2955993413925171, 0.26580238342285156, 0.7780547738075256, 0.03687811642885208, -0.10400652885437012, 0.46159806847572327, 1.1623120307922363, -1.029977560043335, -0.32121890783309937, 0.20628945529460907, -0.1105809137225151, 0.2646944522857666, -0.9581381678581238, -0.3166334629058838, -1.1445045471191406, -0.32560664415359497, 0.7880088090896606, -0.6151086688041687, 0.24374915659427643, -0.2066747397184372, -1.5981687307357788, -1.383132815361023, 0.3830518424510956, 0.12906122207641602, 0.42855921387672424, 0.6094803810119629, 1.2443634271621704, -0.12094485014677048, -0.412667840719223, -1.3169039487838745, 0.2949008047580719, 0.6771625876426697, 0.6958065629005432, -0.7330523133277893, 0.17041288316249847, -0.45764416456222534, 1.3591264486312866, -0.4522894620895386, 0.9050980806350708, 0.603031575679779, 0.7395046353340149, -0.7263031601905823, 0.31803879141807556, -0.2932175099849701, 0.6392700672149658, 0.5139349102973938, 1.6393626928329468, -0.35045522451400757, 0.5051429271697998, 0.4299948513507843, 0.5802090167999268, 0.2243272364139557, 0.019702745601534843, 0.5002405047416687, -0.3158383369445801, 0.07452687621116638, 0.7782769203186035, 0.29723161458969116, -0.6390223503112793, 0.01686670258641243, -1.1743011474609375, 0.8763170838356018, 0.19837063550949097, 0.33427807688713074, 0.35665589570999146, 0.47073236107826233, -0.6732151508331299, 0.08870460838079453, 0.6786966323852539, -0.8962386846542358, 0.42661669850349426, 0.1773579716682434, 0.05871076509356499, -0.4996429979801178, -0.3141903877258301, 1.8959230184555054, -0.5342395305633545, 0.29545941948890686, 0.6091090440750122, -0.6444007754325867, -0.37472718954086304, 0.1491161286830902, 0.6499063968658447, 0.08854742348194122, -0.6833379864692688, -0.26909971237182617, -0.5611873269081116, -0.8667734265327454, -0.08272235095500946, 0.5264347791671753, 1.0388777256011963, 1.7937780618667603, 0.2875896096229553, -0.0254183541983366, -0.23323559761047363, 0.3528553545475006, 0.5629843473434448, 0.3656635582447052, -0.3465205430984497, -1.4063267707824707, 0.07452157139778137, 0.7379943132400513, 0.8525305986404419, -0.18340349197387695, 0.5535627603530884, 0.36774009466171265, -0.5361159443855286, 0.11602349579334259, -0.7297629117965698, 0.8186374306678772, 0.7488965392112732, 0.06128993257880211, -0.6733009815216064, 0.29451513290405273, -0.001630338840186596, -0.11008203774690628, 0.0980246290564537, -0.08466769009828568, -0.5253660082817078, 1.0010541677474976, -0.7930907607078552, 0.9349576830863953, -0.1431025266647339, -0.8353917598724365, 0.22694449126720428, -0.4087059497833252, 0.3750250041484833, -0.2776547372341156, -0.5967101454734802, -0.40442338585853577, 0.5716793537139893, -0.05953654646873474, 0.006008092314004898, -0.3586554229259491, -1.0256410837173462, 0.06945044547319412, -1.5160245895385742, -0.05310850962996483, -0.5645462274551392, 0.8524064421653748, 0.5550531148910522, 0.2898392081260681, 0.291835218667984, 0.5847094058990479, 0.4649890959262848, 0.19934597611427307, 0.9083806872367859, 0.2949039041996002, -1.41890287399292, 0.8755938410758972, 0.14720036089420319, -1.1400762796401978, 0.853258490562439, 0.5681344270706177, 0.5994828343391418, 0.06835336238145828, -0.8726574778556824, -0.46573156118392944, -0.6882018446922302, -0.16161203384399414, -0.2921876907348633, 0.04802256077528, 0.809767484664917, -0.3982497453689575, -0.5749094486236572, -1.6212846040725708, 0.6612496376037598, -0.3301074504852295, 0.00858593825250864, 0.2798806428909302, 0.3298417329788208, 0.4018508195877075, -0.46555644273757935, 0.7209105491638184, -0.5439364910125732, -0.933059573173523, -0.6045719981193542, -0.4011409878730774, -0.27936527132987976, 0.3361956775188446, -0.4539695978164673, -1.5923715829849243, 0.572526752948761, -0.45112472772598267, 0.02264769747853279, -0.0015533436089754105, -0.37243664264678955, -0.201409712433815, -0.5414041876792908, 0.6890300512313843, -0.16611671447753906, -0.2199491262435913, -0.9562292098999023, 0.5078875422477722, -0.6445361971855164, -0.05683503672480583, 1.5821449756622314, 0.3191359043121338, -0.6598684787750244, 0.8268424868583679, -0.00785266887396574, -1.5390065908432007, -0.023057425394654274, 0.04651964083313942, 0.5447945594787598, -0.39028939604759216, 0.03475639224052429, 0.037576038390398026, 1.3244444131851196, -0.08106055110692978, 1.1613857746124268, 0.5064456462860107, -1.036399245262146, -0.6403213143348694, -1.1881828308105469, -0.452808678150177, -1.1544303894042969, -1.4246782064437866, 0.3361755311489105, 1.0346710681915283, -0.856325626373291, 0.021125536412000656, -0.6487007141113281, -0.4270687401294708, 0.1746852695941925, 0.9436985850334167, -0.2580139636993408, 0.6002155542373657, -0.6860252022743225, -0.2644260823726654, -1.2531030178070068, 0.447782427072525, 0.4888457655906677, -0.15082667768001556, 0.06989877671003342, 1.1666866540908813, 0.4923783242702484, -0.6443591713905334, 0.6692715883255005, -0.7562370896339417, 0.2618466019630432, -0.536756694316864, -0.49666261672973633, -0.34592995047569275, -0.43125659227371216, 0.7359582781791687, 0.012993079610168934, -0.713921308517456, -0.02397201582789421, -0.16083787381649017, 0.7379581928253174, -1.2052520513534546, 0.22441047430038452, -0.02092091366648674, 0.5528615713119507, -0.38897907733917236, -0.3439866304397583, 0.08272489905357361, 0.5852736830711365, 1.5999380350112915, -0.24977488815784454, 0.23547935485839844, 0.06646789610385895, 1.395126461982727, 0.13964004814624786, 0.352679580450058, -0.12317436188459396, -0.849854052066803, -0.3466196060180664, 0.06320099532604218, 0.35813871026039124, -0.6585214734077454, -1.0403109788894653, 0.3288480341434479, 0.8720282912254333, -0.03070494346320629, -0.10059630125761032, 0.5080217719078064, -0.4646497070789337, -0.5475332736968994, 0.18025518953800201, -0.19926002621650696, 0.6554763913154602, -0.07947547733783722, -0.8180765509605408, -0.3812641501426697, 0.8084462285041809, 1.0244953632354736, 0.4040900468826294, 1.4410063028335571, -0.43903517723083496, -0.2813172936439514, -0.17503313720226288, -0.11904653906822205, -0.7968780398368835, -0.6215143203735352, 0.07464832812547684, -0.31203240156173706, -0.009444078430533409, -0.6421259045600891, -0.1862826645374298, 0.862224817276001, 0.36413276195526123, 0.4169737994670868, 0.047342535108327866, -0.044296156615018845, -0.9954589605331421, -0.47834140062332153, -0.20191267132759094, -1.2307754755020142, 0.9465917944908142, 1.206255555152893, -1.108175277709961, 0.16557255387306213, -0.17566092312335968, 0.2776286005973816, 0.021516146138310432, -1.2520650625228882, -0.2449614256620407, -1.2465134859085083, -1.1197959184646606, 0.156084805727005, 1.1934247016906738, 0.057509783655405045, -0.009991273283958435, -0.3792610466480255, 0.5955877304077148, 0.47651055455207825, 0.04594049230217934, -0.8815407156944275, 0.2808063328266144, -0.510352611541748, -0.9282075762748718, -0.09846188873052597, 0.8295339345932007, 1.336568832397461, -0.252557635307312, -0.2448320835828781, -0.11286453157663345, -0.3597252666950226, -0.7468979358673096, 0.05376401171088219, -0.4986567497253418, 1.1634252071380615, -0.51194828748703, 0.5289309620857239, 0.9754539728164673, 0.3534699082374573, 0.2328987568616867, -1.3157148361206055, 0.5147433280944824, 0.47855690121650696, 0.904061496257782, 0.03818976879119873, 0.05240737274289131, -0.22537963092327118, -0.311392217874527, 0.7232945561408997, 0.4157361686229706, 0.6510029435157776, 0.02567231096327305, -0.7631838321685791, -0.3441937267780304, -0.8224477171897888, -0.07908721268177032, 0.5042768120765686, -0.3209637999534607, -0.1812005490064621, -0.024061232805252075, -0.2535533905029297, 1.4766336679458618, -0.014629275538027287, 0.04288419708609581, -0.3431171774864197, -0.49576660990715027, 0.49851006269454956, 0.14814500510692596, -0.5717656016349792, -0.5259708762168884, 0.7725263833999634, 0.7108544707298279, -0.3962429463863373, -0.8379174470901489, 0.09208356589078903, 0.9332746267318726, 0.21115191280841827, -0.6665090322494507, 0.4001133143901825, -0.044322606176137924, 0.18568836152553558, 0.5092144012451172, 0.45344191789627075, 0.14322492480278015, 0.052036743611097336, 0.019186614081263542, -0.32942724227905273, 0.2584284245967865, 0.934436559677124, -0.3691350519657135, -0.3134911358356476, -0.09036240726709366, -0.25185641646385193, 0.8333389759063721, 0.7823889255523682, 0.041233960539102554, 0.41818034648895264, -0.36788737773895264, 0.024245422333478928, -0.2771463394165039, -0.12120535224676132, 1.3072500228881836, -0.4193016588687897, -0.37153947353363037, 0.9830926060676575, -0.1748887300491333, -1.3351134061813354, -0.091765396296978, 0.38038724660873413, -0.12426143884658813, 0.07192626595497131, 0.1515320986509323, -0.607524573802948, 0.40500232577323914, 0.835395872592926, 0.2079782485961914, 0.829468846321106, 0.1594795435667038, -0.7295295596122742, 0.4402627646923065, 0.6842694282531738, 0.6539958715438843, 1.6179598569869995, 0.9361174702644348, -0.33760690689086914, -0.8429275155067444, 0.9164310097694397, -0.057362549006938934, 0.020469121634960175, 0.07935746014118195, 0.3184152841567993, 0.908679723739624, -0.9514538645744324, -0.4505438208580017, 1.1016157865524292, 0.21679578721523285, 0.8568793535232544, -0.2992386817932129, 0.22619344294071198, -0.1342557817697525, 0.40279439091682434, -0.10377436876296997, -0.13157601654529572, 0.8273400068283081, -0.08550573140382767, 0.000477995490655303, 0.6225993633270264, -0.934964120388031, 0.43206703662872314, -0.26018813252449036, -0.25257444381713867, 0.43293413519859314, -0.5549061894416809, 0.17333780229091644, 0.8697869181632996, 0.6335111856460571, 1.5384933948516846, -0.5073015093803406, -0.8957380652427673, -0.021983955055475235, -0.35137778520584106, 0.2955443263053894, -0.10764918476343155, -0.277069091796875, -0.4197046756744385, -0.3158714771270752, -0.1592469960451126, 0.6772988438606262, -0.11814729869365692, 0.39045771956443787, 0.3510611653327942, -0.4969773590564728, 0.06984363496303558, -0.6230834722518921, 0.9032906889915466, 0.49479207396507263, 0.01138004008680582, -0.24754513800144196, 0.663460373878479, -0.5191647410392761, 0.17419302463531494, 0.15215085446834564, -0.369863897562027, -0.8111335635185242, -1.300414800643921, -0.8504524827003479, 0.4595026671886444, 0.3865208327770233, 0.9073401689529419, -0.14077945053577423, 1.6081548929214478, 0.7786154747009277, -0.2275981307029724, -0.12767161428928375, 0.26308462023735046, -0.8434804081916809, 0.3100901246070862, 0.13103513419628143, -0.4258648753166199, 0.1143781989812851, -0.5118808150291443, -2.5321590900421143, 0.13729460537433624, -0.3430105149745941, -0.999974250793457, 0.5008407235145569, 0.6043523550033569, 0.8325601816177368, 0.4527917206287384, -0.6258000731468201, -0.3014552891254425, -0.33526474237442017, -0.030004747211933136, -1.372329592704773, 0.3028394281864166, 0.6613501906394958, 0.6830416917800903, -0.8884607553482056, 0.19890014827251434, -0.2926236689090729, 0.07844991981983185, -0.33494117856025696, -0.2817530930042267, 0.41392314434051514, 1.2514183521270752, 0.6871250867843628, -0.7227367758750916, 0.4443623721599579, 0.22568778693675995, 0.2102378010749817, -0.05618933588266373, 0.7821664214134216, 0.211880624294281, -0.5215892791748047, 0.6993424892425537, -0.9346211552619934, -0.3992457687854767, -0.5664841532707214, -0.1880500167608261, 1.7264223098754883, 0.9681674242019653, -0.39829784631729126, -0.6165770888328552, -0.22133305668830872, -0.19943642616271973, -0.7025954127311707, -0.11669492721557617, 1.2990366220474243, -0.9308512210845947, -0.7482996582984924, -0.0037198252975940704, 0.24413251876831055, 0.02365628257393837, -0.0270262248814106, 0.5270439386367798, -0.7164829969406128, -1.4908604621887207, -0.5290723443031311, 0.3783910274505615, 1.6659601926803589, -0.16694508492946625, 0.10397300124168396, 0.21972188353538513, -1.4854600429534912, 0.7001580595970154, -0.0020852144807577133, -0.8814588785171509, -0.3878155052661896, -0.770039975643158, 0.41480496525764465, -0.3620460629463196, -0.20826877653598785, 0.22972416877746582, 0.5355724096298218, -1.3011394739151, -1.3197615146636963, -1.545462727546692, -0.27219536900520325, 0.7916892170906067, 0.44952401518821716, -0.006989572197198868, 0.5136999487876892, 0.4649832546710968, -1.0040507316589355, -0.9047318696975708, -0.3729131817817688, -1.1965888738632202, 0.8574113845825195, 0.8036719560623169, 0.07982173562049866, 0.434101939201355, 1.175554871559143, 0.13984273374080658, 0.8947727680206299, -0.14059317111968994, 0.3560393452644348, -0.779623806476593, -0.05960093438625336, -0.7671356797218323, 0.314187228679657, -1.1772289276123047, -0.9115056991577148, -0.5711369514465332, -0.2986946403980255, -0.4732409417629242, 1.1331886053085327, 0.6752373576164246, -0.7786063551902771, -0.07095152139663696, -0.5097324252128601, -0.13022615015506744, -0.5650193095207214, 0.5312396287918091, 0.5740951299667358, -0.10174329578876495, 0.061274655163288116, 0.4178275763988495, 0.49069440364837646, -0.5863407850265503, 0.07905539870262146, -0.16068808734416962, 0.19689780473709106, -0.20639091730117798, 0.7208229303359985, 0.630903422832489, 0.24129050970077515, -0.3384701907634735, 0.676304042339325, 1.8264304399490356, -0.21963085234165192, 0.2941568195819855, 0.44946545362472534, -0.5407124757766724, -0.18050546944141388, 0.05475252494215965, -0.9858928322792053, -0.8172195553779602, 0.6754104495048523, 0.21837222576141357, -0.2040347158908844, -0.5495969653129578, 0.7072809338569641, 0.01802798919379711, -0.3955633342266083, 0.3546698987483978, -0.3173069357872009, -1.4113112688064575, 1.045743465423584, 0.487865149974823, -0.45963606238365173, 0.3214578628540039, 0.29775893688201904, 0.38132724165916443, 0.29111385345458984, -0.2819415330886841, 0.3360220193862915, -0.5933233499526978, -0.0009340094402432442, -0.5637843608856201, -0.14804120361804962, 0.03197198361158371, -0.3555813133716583, -1.2606245279312134, 0.2523253560066223, -0.20340709388256073, -0.684708833694458, 0.9314693808555603, -1.1945326328277588, -0.8742936253547668, 0.8227593302726746, -0.13960671424865723, -0.173808753490448, -0.5708560347557068, 0.2164846509695053, 0.15596342086791992, 0.3014847934246063, 0.412143737077713, -0.4687148630619049, 0.6390658617019653, 0.7909272909164429, -0.16346538066864014, -0.6535469889640808, 0.061342958360910416, 0.14495433866977692, 0.8471324443817139, 0.12687623500823975, -0.23075969517230988, 0.44704878330230713, -0.3163582384586334, -0.5031564831733704, -0.3556649088859558, -0.867850661277771, 0.5098150372505188, -0.4210051894187927, -0.9755188226699829, 0.3038702607154846, 0.5380404591560364, 0.27449408173561096, -0.8984281420707703, -0.7811862826347351, -0.5143904685974121, 0.29121658205986023, -0.018404576927423477, 0.8703910708427429, -0.2324342429637909, 1.6509833335876465, 0.25230684876441956, 0.05283160135149956, 0.29513147473335266, -0.6067661643028259, 0.9609350562095642, -0.30336812138557434, 0.1341753602027893, -1.053268551826477, 0.13184231519699097, -0.9160046577453613, -1.246963620185852, -0.08152899146080017, -0.1649828553199768, -0.9689885377883911, 0.33702149987220764, -0.454967737197876, -1.392688512802124, -0.5992569327354431, -0.288362979888916, 0.8811291456222534, 0.016771556809544563, 0.6068766713142395, -0.43997374176979065, -1.3346549272537231, 0.4194946587085724, 0.5899427533149719, 0.0633707270026207, 0.6166737675666809, 0.6463598608970642, 1.7729315757751465, -0.0005757010076195002, 0.344513863325119, -0.28357651829719543, 0.7814449667930603, 0.025497404858469963, -0.2570962607860565, -1.0072455406188965, 0.6774237751960754, 0.16619233787059784], [-0.030914656817913055, 1.4969292879104614, -2.5707290172576904, -0.36004215478897095, 0.2971547245979309, 0.12529738247394562, 1.043060541152954, 0.46063387393951416, -0.9658787250518799, -0.683433473110199, -1.093449592590332, 0.14103542268276215, -0.22329679131507874, 1.5695141553878784, 0.7037621140480042, 0.6221082806587219, -0.04212135449051857, 0.012425156310200691, -0.11476528644561768, 1.5976948738098145, -0.10823844373226166, -1.0559805631637573, -1.7034615278244019, -0.09243994951248169, 0.05803368240594864, -0.5691114664077759, -1.4838206768035889, -0.31119781732559204, -0.48313507437705994, -1.1012396812438965, 1.900301218032837, -1.0780792236328125, 0.1888711005449295, -0.2572678327560425, -1.5680861473083496, -0.7895516753196716, 0.492753267288208, 0.24988609552383423, 0.3239873945713043, 0.5828027129173279, 1.5594327449798584, 0.027261286973953247, -0.3021162450313568, -1.0897502899169922, 1.0513883829116821, 0.10346966981887817, 0.5231627821922302, -1.408209204673767, 0.530081570148468, -0.38291478157043457, 0.6759491562843323, -0.2970123291015625, 0.3542361557483673, -0.015221030451357365, 1.3163025379180908, -0.17525246739387512, 0.2663383185863495, 0.44970762729644775, 1.1417760848999023, 0.5786244869232178, 0.833526611328125, 0.9011945128440857, 0.43645843863487244, 0.34580540657043457, 0.952175498008728, 0.26738518476486206, 0.7424942255020142, 0.9311701059341431, -1.1098499298095703, -0.0034672562032938004, -0.07365953177213669, -0.5889691710472107, -0.07100160419940948, 0.23091332614421844, -0.08517921715974808, 0.3166494071483612, -0.40425142645835876, 0.06381076574325562, -0.09444201737642288, 0.8776669502258301, -0.47470003366470337, 0.06872206181287766, 0.9083849787712097, -1.1780067682266235, 0.1574031412601471, -0.20557212829589844, 0.10959739238023758, -0.6142269372940063, -0.24844591319561005, 1.9079190492630005, 0.16593600809574127, 0.8731924295425415, 0.2699231505393982, -0.14669209718704224, 0.17562273144721985, -0.3277438282966614, 0.12522447109222412, -0.9792271256446838, -0.27335095405578613, -0.9452109336853027, 0.5534455180168152, -1.077598214149475, 0.36088407039642334, -0.06676832586526871, 1.3061480522155762, 1.783281683921814, -0.351732075214386, -0.3612744212150574, -0.48143988847732544, 0.1856934279203415, -0.33875927329063416, -0.25096943974494934, -0.4657306373119354, -1.2319176197052002, 0.030199268832802773, 1.3479607105255127, 0.9808265566825867, -0.14434517920017242, 0.08963046967983246, 0.571765124797821, -0.4544464349746704, -0.22900158166885376, -1.115527868270874, 0.34614086151123047, 1.4035083055496216, 0.7171292901039124, -1.175071120262146, -0.09023092687129974, -0.5069048404693604, 0.24670962989330292, 0.07004919648170471, 0.27058547735214233, -0.3943677842617035, 0.668454647064209, -0.19782431423664093, 1.643117904663086, 0.025573862716555595, -0.5407989621162415, 0.09118679165840149, -0.118984654545784, 0.08923282474279404, -1.3134737014770508, -0.8231561183929443, -0.8604277968406677, 0.4024724066257477, -0.3018698990345001, 0.692238986492157, -0.4081520736217499, -1.1990259885787964, -0.15808582305908203, -1.7510898113250732, 0.49132177233695984, -0.45299139618873596, 1.8423621654510498, 0.6374603509902954, -0.3293968439102173, -0.027863340452313423, 0.24737730622291565, -0.08444832265377045, 0.47460874915122986, 0.47053489089012146, 0.060798853635787964, -0.6213064789772034, 0.9781134724617004, 0.46575331687927246, -0.6524407863616943, 0.9561516046524048, 0.7001747488975525, 0.5940947532653809, 0.6541762948036194, -0.27942049503326416, -0.7087034583091736, -1.2420473098754883, -0.13105571269989014, -0.08808740228414536, -0.9894687533378601, 0.4206709563732147, -0.3806399405002594, -0.4609147310256958, -1.4942443370819092, 0.3174632489681244, -0.028748271986842155, 0.5135236382484436, -0.21236275136470795, 0.0919206291437149, -0.009609163738787174, -0.1067795529961586, -0.013387464918196201, -0.19576355814933777, -0.7184976935386658, -0.9880910515785217, -0.0334814079105854, -1.3058552742004395, -0.4634386897087097, -0.16893370449543, -0.8838397264480591, 0.5197945833206177, -0.3795880377292633, -0.17694419622421265, 0.05685491859912872, -0.39698484539985657, -0.5771108865737915, -0.8918904066085815, 0.09968259930610657, -0.4212704300880432, 0.2121141105890274, -0.10507236421108246, 0.3563839793205261, 0.0006978949531912804, -0.2472904771566391, 0.829329788684845, 0.1355438530445099, -0.9070215225219727, 0.6120695471763611, -0.16247065365314484, -0.9448479413986206, 0.592267632484436, -0.7018412351608276, 0.3974367082118988, 0.14332431554794312, 0.47300031781196594, -0.21727462112903595, 0.601856529712677, 0.2525816559791565, 0.26050299406051636, 0.20103766024112701, -0.45598047971725464, -0.39310017228126526, -1.474906086921692, 0.1978490799665451, -1.2114293575286865, -0.7002614140510559, 0.9795778393745422, 0.5656179785728455, -0.658789873123169, 0.47036558389663696, -0.6783536076545715, 0.06279835850000381, 0.7826366424560547, 1.2714943885803223, 0.4998817443847656, 0.26409199833869934, -0.9479349255561829, -0.674769401550293, -1.256382703781128, -0.551367998123169, 0.33246782422065735, -0.31110066175460815, 0.4405123293399811, 1.0491468906402588, 0.6702871322631836, -0.23097875714302063, 0.18683002889156342, -0.26797279715538025, 0.17367678880691528, -1.2598683834075928, 0.28471723198890686, -0.0012449370697140694, -0.5250003337860107, 0.9841433763504028, 0.2798383831977844, -1.5171418190002441, -0.5665664076805115, 0.00720977270975709, -0.1857406347990036, -0.3220270574092865, -0.15743619203567505, -0.3157512843608856, 0.49576571583747864, -0.12173061817884445, -0.24588342010974884, 0.0026626205071806908, -0.22374941408634186, 1.0653386116027832, 0.016191566362977028, -0.3565376102924347, 0.47367820143699646, 1.2690595388412476, 0.28108468651771545, 0.9069921970367432, -0.5489847660064697, -1.5497419834136963, -0.8395072221755981, -0.7380911111831665, 0.9750636219978333, -0.045875754207372665, 0.2573774456977844, -0.09433042258024216, 0.982366144657135, -0.4379301965236664, 0.27190667390823364, 0.20156237483024597, 0.08873274177312851, -0.7276943325996399, 0.6590197682380676, 0.9506472945213318, 1.0513486862182617, -0.5268418788909912, -0.67131108045578, -0.2269076406955719, 0.326540470123291, 0.4752436578273773, 1.0436466932296753, 0.592495322227478, -0.1118050292134285, -0.2497161477804184, -0.6466004848480225, -0.502967894077301, -0.9649585485458374, -0.21561291813850403, -0.37651342153549194, -1.1279361248016357, -0.14275209605693817, -0.20239664614200592, -0.6253798007965088, 0.9509747624397278, 0.07564834505319595, 0.7396622896194458, 0.533656656742096, -0.15863682329654694, -0.6109147071838379, -0.926044225692749, -0.276473730802536, -1.5350795984268188, 0.9804149866104126, 0.7687710523605347, -0.01770424284040928, 0.3840242326259613, 0.626724362373352, -0.3199393153190613, 0.007592398673295975, -0.21478533744812012, 0.43209290504455566, -0.9233116507530212, -0.8533047437667847, -0.30866673588752747, 0.6994330286979675, 0.6103041768074036, -0.4852536916732788, -0.5314356684684753, 0.9653986692428589, 0.6159765124320984, 0.1616382598876953, -0.28759700059890747, 0.6228432655334473, 0.21255458891391754, -0.32777732610702515, 0.2852500379085541, 0.6584487557411194, 0.797931969165802, -0.30669689178466797, -0.15146403014659882, -0.6974724531173706, 0.28664276003837585, -0.7161036729812622, 0.21137547492980957, -0.4058631956577301, 0.3359214961528778, 0.019573748111724854, -0.2500290274620056, 1.3192819356918335, -0.21954345703125, 0.6535646319389343, -1.4430736303329468, 0.2278660535812378, 0.22058404982089996, 1.2282310724258423, 1.3563716411590576, 0.0705265924334526, 0.010913447476923466, -0.6832812428474426, 0.43422436714172363, -0.10602910816669464, 0.9564797878265381, 0.19804665446281433, -0.944061279296875, -0.13376301527023315, -0.9823012948036194, 0.3658004105091095, -0.3552785813808441, -1.1623117923736572, -0.15825852751731873, -0.6183095574378967, -0.5811681151390076, 1.1968469619750977, 0.031183432787656784, -0.41040387749671936, -0.366753488779068, -0.05940350145101547, 0.7038443088531494, 0.37793251872062683, -0.36246001720428467, -0.3779952824115753, -0.1018303707242012, 0.5788358449935913, -0.7092750668525696, -0.49645936489105225, -0.8633525967597961, 0.3296741843223572, 0.3630176782608032, -1.3042253255844116, 0.06774143129587173, -0.09336789697408676, 0.3617950677871704, 0.36907872557640076, 0.5755273699760437, 0.5049457550048828, 0.3016394078731537, 0.27876073122024536, 0.06033368408679962, 0.023237133398652077, 1.6299574375152588, 0.6020561456680298, -0.5072789788246155, -0.04682311415672302, 0.8837012052536011, 0.2785866856575012, 0.22150066494941711, -0.262650728225708, 0.09062138199806213, -0.6732149124145508, -0.5017443299293518, -0.191084623336792, -0.018218010663986206, 1.6198606491088867, -0.023917462676763535, 0.35657694935798645, 0.49700015783309937, -0.8727487325668335, -0.8633296489715576, -0.11561018973588943, 0.19904887676239014, 0.15164059400558472, 0.07257220149040222, 0.21779865026474, 0.47841495275497437, 0.28252822160720825, -0.26623889803886414, 0.3717474937438965, 1.248866081237793, 0.6502110958099365, -0.4081030488014221, -0.6577926874160767, 0.08705203235149384, 0.517848014831543, 1.1885260343551636, 0.8431851863861084, -0.3055216372013092, -0.6421008110046387, 1.245753526687622, -0.8544158935546875, 0.6322371363639832, 0.34710174798965454, 0.5018755793571472, 1.0307033061981201, -1.8890469074249268, -0.17690274119377136, 0.6505454182624817, 0.45477908849716187, 0.35585448145866394, -0.5443108081817627, 0.4618598520755768, -0.9803792238235474, 0.3235495686531067, 0.451951801776886, 0.02452624775469303, 0.6737415790557861, 0.25185543298721313, 0.1167304590344429, 1.2076016664505005, 0.515505313873291, 0.153164803981781, -0.41806215047836304, 0.007288362830877304, -0.2528229355812073, 0.18228968977928162, 0.12558643519878387, 0.3857710063457489, 0.3488548696041107, 1.7258363962173462, -0.17830252647399902, -0.4099466800689697, 0.2766416668891907, -1.2087819576263428, 1.087790608406067, -0.3186899721622467, -0.08805672079324722, 0.1406848281621933, -0.9047790765762329, 0.09399828314781189, -0.1064966693520546, -0.5658042430877686, 0.016245417296886444, -0.5397320985794067, -0.9696098566055298, -0.14014942944049835, -0.4500780999660492, 0.7874082326889038, 1.3756555318832397, 0.3709782660007477, 0.4504695534706116, 0.4699144959449768, -0.3569234013557434, -0.29628893733024597, 0.357818067073822, -0.453508198261261, -0.26827752590179443, -1.2407686710357666, -0.9988082051277161, 0.7662538886070251, 0.27115365862846375, 0.10549923032522202, 0.026480870321393013, 1.7818354368209839, 1.1809958219528198, -0.5008004307746887, -0.28678688406944275, 0.5706213116645813, -0.1636078953742981, 0.6521619558334351, 0.6474618315696716, -1.0011622905731201, 0.24601483345031738, -0.09868625551462173, -2.7901899814605713, 1.5353785753250122, -0.11094482243061066, -0.5027937889099121, 0.9925718903541565, 0.5757449865341187, 0.7529124617576599, 1.0637181997299194, -0.9436073899269104, -0.10206373035907745, 0.08439097553491592, 0.39319658279418945, -1.2988030910491943, -0.1824369579553604, 1.2648987770080566, 0.38940078020095825, -0.7938321232795715, 0.1642872542142868, -0.17250801622867584, 0.15411008894443512, -0.13259576261043549, 0.3146878778934479, 0.49199309945106506, 0.16632097959518433, -0.06694332510232925, -0.744152843952179, 0.8004246354103088, -0.425868958234787, 0.10869651287794113, 0.05746757984161377, 0.7487057447433472, 0.5421715378761292, -0.3949534296989441, 0.10762051492929459, -0.18011321127414703, -0.8036274313926697, -0.11906787753105164, -0.14993999898433685, 0.6692363619804382, 0.1303683966398239, -0.06341034173965454, 0.13868562877178192, 0.2752726972103119, -0.6190879344940186, -0.43983685970306396, 0.3418043553829193, 1.2978731393814087, -0.803665041923523, -0.29238197207450867, 0.0908856987953186, 0.2763477861881256, 0.2901874780654907, 0.5529543161392212, 0.32688629627227783, -1.1473209857940674, -1.4191056489944458, -0.5649518966674805, -0.7106888294219971, 0.5785494446754456, -0.2970229387283325, 0.1870679408311844, -0.06687788665294647, -1.225182056427002, 1.378737449645996, -0.35275954008102417, -1.4426195621490479, -0.2239585667848587, -1.1405150890350342, 0.4934336245059967, -0.8960303664207458, 0.10539916157722473, 0.434837281703949, 0.9096720814704895, -0.864203691482544, -0.33968186378479004, -0.6846965551376343, -0.35254839062690735, 0.2678224444389343, 0.9497168660163879, -0.8883076310157776, 0.5817786455154419, -0.40717586874961853, -0.8851433992385864, -0.43225982785224915, 0.6943327784538269, -1.5858556032180786, 0.2930101156234741, -0.22207918763160706, 0.5221501588821411, -0.010320513509213924, 1.7582154273986816, 0.26506805419921875, 1.1148165464401245, -0.5634517073631287, 0.7621737122535706, -0.6488935351371765, -0.20628651976585388, -0.5996177792549133, -0.06626008450984955, -1.3262832164764404, -0.29885333776474, -0.34886959195137024, -0.21240782737731934, -0.4648476839065552, 1.3376175165176392, 1.048588514328003, -1.3674050569534302, -0.2130325883626938, -0.6360486745834351, 0.827430784702301, 0.030026476830244064, 0.39451703429222107, 0.5167903900146484, -1.1158536672592163, -0.08139587938785553, 0.044650040566921234, 0.990846574306488, -0.9330590963363647, -0.21309371292591095, 0.01821122318506241, 0.7974117994308472, -0.5873816609382629, 1.5478805303573608, 0.2804383635520935, 0.4413999021053314, -1.029477834701538, 0.9303621053695679, 1.3041154146194458, -0.2607079744338989, 0.9559476375579834, 0.12162579596042633, -0.30059561133384705, 0.059584517031908035, -0.6210027933120728, 0.07136350125074387, -1.2047936916351318, 0.7752390503883362, 0.32498699426651, -0.1830817312002182, -0.7646666169166565, -0.21839821338653564, -0.5398369431495667, -0.3874239921569824, 0.997793436050415, -0.1996833235025406, -0.2755943536758423, 0.7947754859924316, 0.7619083523750305, -0.18460209667682648, 0.623573899269104, -0.407056599855423, 0.42829573154449463, 0.32105788588523865, 0.24766024947166443, 0.005947629921138287, -0.9663903117179871, -0.2828424274921417, -0.16402259469032288, -0.5775721073150635, 0.09097807854413986, -0.3332608640193939, -1.3319523334503174, -0.3577730059623718, -0.3722109794616699, -0.4496322572231293, 0.6052840948104858, -0.5684046745300293, -1.584665298461914, -0.3688223361968994, -0.07962644845247269, 0.05527764558792114, -0.6096795201301575, -0.18815602362155914, -0.015450233593583107, -0.40712854266166687, 0.9852858781814575, -0.4460724890232086, 1.1208432912826538, 0.36344996094703674, 0.5960631370544434, -0.11804250627756119, 0.14118948578834534, -0.23599465191364288, 0.3871503472328186, -0.02721228078007698, 0.04251176491379738, 0.2675904929637909, -0.3269621729850769, 0.07844604551792145, 0.1362597644329071, -0.05861586332321167, 0.6654713153839111, -0.5270060300827026, -0.6677591800689697, -0.5356180667877197, 0.5337364673614502, 0.45123252272605896, -0.49394628405570984, -0.5630000233650208, -0.31155261397361755, 0.16277632117271423, -0.028096642345190048, 0.6359885931015015, -0.276285856962204, 0.7389973998069763, 0.9929870367050171, 0.15532933175563812, -0.4893372654914856, -0.8655012845993042, 0.636248767375946, -0.5919713377952576, 1.1062406301498413, -1.0293935537338257, 0.1954527199268341, -0.6954430341720581, -1.0990244150161743, -0.29073575139045715, -0.2337236851453781, -0.022417789325118065, 0.5433048009872437, -0.4417188763618469, -0.40612488985061646, -0.7623957395553589, -0.6784459352493286, 0.6556037068367004, -0.038176994770765305, 1.157670497894287, -0.9035539627075195, -1.5222774744033813, -0.18685282766819, 0.8358678817749023, 0.6672059893608093, 0.7750874161720276, 1.234979271888733, 1.1286462545394897, -0.2692042887210846, 0.01771615259349346, -0.26271674036979675, 1.1282016038894653, -0.7360945343971252, -0.5230770111083984, -0.4150189459323883, 0.5095065832138062, 0.09934931993484497], [0.04680957645177841, 1.8124414682388306, -2.7537448406219482, -0.9624541401863098, -0.03412659093737602, 0.2556922733783722, 0.8523023128509521, -0.5061001777648926, -0.3735351264476776, -0.8857133388519287, -0.9141155481338501, -0.21618665754795074, 0.1964091658592224, 0.9983009696006775, 0.5753116011619568, 0.6978864669799805, 0.2239808589220047, -0.6146997213363647, 0.27451297640800476, 0.9672024250030518, 0.29328376054763794, -1.4222480058670044, -0.6846514940261841, 0.4395546615123749, 0.6372618079185486, -0.19841645658016205, -1.7244737148284912, -0.7556363344192505, -1.3036317825317383, 0.46881261467933655, 1.975081205368042, -1.0207154750823975, -0.10586492717266083, 0.16273829340934753, -1.7677412033081055, -1.889824390411377, 0.09494760632514954, 0.2727442681789398, 0.526233971118927, -0.019874591380357742, 1.7347959280014038, 0.2936497926712036, -0.3176627457141876, -0.8775262832641602, 1.5860347747802734, -0.331040620803833, 0.6992502212524414, -1.2284009456634521, -0.22018741071224213, -0.5574919581413269, 1.5570266246795654, -0.6342916488647461, 0.4220251739025116, 0.21655070781707764, 0.9226890802383423, -1.1247553825378418, -0.2797389328479767, 0.13927790522575378, 0.8863087892532349, 0.10405044257640839, 2.226580858230591, 1.055185079574585, 0.38496923446655273, 0.8227847814559937, 1.0071842670440674, -0.12286687642335892, 0.8932010531425476, 0.32930251955986023, -0.47633883357048035, 0.36928656697273254, 0.43037593364715576, -0.9246354103088379, -0.5116254687309265, 0.23525092005729675, -0.3632116913795471, 0.19546733796596527, -0.25278809666633606, 0.6420807242393494, 0.13526767492294312, 1.0383981466293335, -0.5540986061096191, -0.1647615134716034, 0.46295252442359924, -0.8085302710533142, 0.26102375984191895, -0.36152246594429016, 0.5220741033554077, 0.2866879105567932, -0.681998610496521, 1.6878242492675781, -0.3813489079475403, 0.856700599193573, 0.16009430587291718, 0.04200645908713341, 0.5810376405715942, -0.2841448485851288, -0.1766718029975891, -0.5299837589263916, 0.20788101851940155, -0.47083333134651184, -0.4549403488636017, -0.8207414746284485, 0.47958889603614807, -0.33858925104141235, 1.3437343835830688, 1.198097825050354, -0.18115398287773132, -1.1897026300430298, -0.948295533657074, -0.0009424344170838594, 0.02930058352649212, -0.15153677761554718, -1.226338267326355, -1.3696367740631104, -0.15828171372413635, 1.0189921855926514, 0.8366336226463318, -0.4361494481563568, 0.09225655347108841, 0.6924225091934204, -0.7873363494873047, -0.3999294340610504, -0.8892006874084473, 0.5701384544372559, 1.2052127122879028, 0.1374930590391159, -0.9556607604026794, 0.09232623130083084, -0.619785487651825, -0.017004434019327164, 0.33870232105255127, 0.3479449152946472, -0.33763808012008667, 0.6399039626121521, -0.07754857838153839, 0.7393489480018616, -0.11262541264295578, -0.5854918956756592, -0.01842745766043663, -0.5026804208755493, -0.14547017216682434, -0.7476183772087097, -0.6330780982971191, -0.7611513733863831, 0.5354458093643188, -0.35938262939453125, -0.029906831681728363, -0.5838316679000854, -1.1706154346466064, -0.7944273352622986, -1.3337795734405518, -0.006722300313413143, -0.11206372082233429, 1.3414180278778076, 0.15505895018577576, -0.22363388538360596, 0.4806895852088928, -0.09688816219568253, 0.46178334951400757, 0.671445906162262, 0.9424756765365601, 0.1860344111919403, -0.5993832945823669, 1.3377093076705933, 0.18275611102581024, 0.08411069214344025, 0.2929830551147461, 0.8943517208099365, 0.17978253960609436, 0.5954204201698303, -0.48520326614379883, -0.265482634305954, -0.350009948015213, -0.3214712142944336, 0.17926853895187378, -0.8414843678474426, 0.41426771879196167, -0.2568926215171814, -0.6226565837860107, -1.4870883226394653, 0.8107938766479492, -0.28522440791130066, 0.11160560697317123, 0.5649496912956238, -0.6811853647232056, -0.3881925940513611, 0.0328734926879406, -0.35387876629829407, -0.43215957283973694, -0.024093501269817352, -0.6469882130622864, 0.3486427366733551, -1.5197583436965942, -0.5664626359939575, -0.5507805347442627, -0.9474120736122131, 0.8389114737510681, -0.6649081707000732, -0.47885003685951233, 0.2762991786003113, -0.14950153231620789, -0.37483641505241394, -1.169601559638977, 0.24515454471111298, -0.8821619749069214, 0.5430746674537659, -0.586751401424408, 0.6725870370864868, -0.037164460867643356, 0.03824785724282265, 1.0238527059555054, 0.3048875629901886, -1.1708570718765259, 0.5951561331748962, 0.2462158054113388, -1.713767409324646, 0.3949190676212311, -0.6839579343795776, 0.4895379841327667, 0.4923069477081299, 0.41624927520751953, 0.13963013887405396, 1.2369320392608643, 0.4096328020095825, 0.5358932018280029, 0.3898126482963562, -0.1401534378528595, 0.13572797179222107, -0.9473369717597961, -0.23702368140220642, -0.5178253054618835, -1.135140299797058, 1.6553261280059814, 1.1107367277145386, -0.6814433932304382, 0.15290531516075134, -0.2998453676700592, 0.434090793132782, 0.7160869240760803, 0.5798100829124451, 0.8013532757759094, 0.18030723929405212, -0.0790616124868393, -0.20163623988628387, -0.8392130136489868, 0.1239548847079277, 0.87172931432724, -0.17769157886505127, 0.18762090802192688, 0.47136664390563965, 0.8869531750679016, -0.09314548224210739, -0.30431827902793884, 0.009707767516374588, -0.07842361181974411, -0.9263168573379517, 0.025795962661504745, 0.27550458908081055, -0.7836818099021912, 0.9546807408332825, 0.7992623448371887, -1.0260311365127563, -1.0301915407180786, -0.9594830274581909, -0.667526364326477, -0.37524446845054626, -0.08846670389175415, -0.2920858561992645, 0.39987167716026306, 0.2787250578403473, -0.10943147540092468, 0.12380078434944153, -0.03630036860704422, 0.4480823874473572, 0.1252884715795517, -0.6492713689804077, 0.12281843274831772, 0.8087117671966553, 0.6925187110900879, 1.2600253820419312, -0.3968384563922882, -1.9358419179916382, -0.7403519749641418, 0.2477380931377411, 0.9121017456054688, 0.011482990346848965, 0.3501257002353668, 0.9143813848495483, 0.8463327884674072, -0.2363954484462738, 0.19016610085964203, 0.9930333495140076, -0.0020007528364658356, -0.9976484179496765, 0.8004982471466064, 0.9789537191390991, 0.4894934296607971, -0.6581320762634277, -0.8073379397392273, -0.4679196774959564, 0.023007798939943314, 1.2703801393508911, 1.0976744890213013, 0.5482359528541565, -1.1305396556854248, -0.6222271919250488, -0.7611101865768433, -0.6089510917663574, -0.4471026659011841, -0.3339241147041321, 0.09982041269540787, -0.942160964012146, -0.1642790138721466, 0.20364663004875183, -0.30568066239356995, 1.2584933042526245, -0.023245053365826607, 0.6876550912857056, 1.1533830165863037, 0.219369575381279, -1.4055625200271606, -1.3230860233306885, -0.04438785836100578, -1.952081561088562, 0.8056136965751648, 1.255151629447937, -0.8019667863845825, 0.37174513936042786, 0.6040483713150024, -0.04579378291964531, 0.44706520438194275, 0.1941923201084137, 0.5028707385063171, -0.6430515050888062, -0.9388291835784912, -0.094843789935112, 0.9029677510261536, 0.11676869541406631, -0.602989137172699, -0.4023844003677368, 1.0084210634231567, 0.676425039768219, -0.45563098788261414, -0.33045703172683716, 0.082028329372406, 0.02340065687894821, -0.6820005178451538, 0.003452429547905922, 0.5126858949661255, 0.3647500276565552, -0.5229243040084839, -0.4052918553352356, -0.4090968668460846, 0.14388951659202576, -0.554598867893219, 0.35709694027900696, -0.18196551501750946, 0.771038830280304, 0.30669456720352173, 0.8087888360023499, 1.0050184726715088, 0.12295984476804733, -0.15082089602947235, -1.499843955039978, 0.4392741322517395, 0.1626032292842865, 0.9889204502105713, 0.0762527734041214, 0.1561376452445984, -0.012154459953308105, -1.9500049352645874, 0.017445629462599754, 0.04892195016145706, 0.05817744508385658, 0.1364526003599167, -0.24755892157554626, -0.3277965486049652, -1.6467061042785645, 0.40301263332366943, 0.08892303705215454, -0.18138454854488373, 0.2023957520723343, -0.6294810771942139, -0.09662465751171112, 1.5329904556274414, 0.011930516920983791, -0.4125599265098572, -0.5186591744422913, 0.10013394802808762, 0.39678701758384705, 0.11004668474197388, -0.36193910241127014, -0.18795649707317352, -0.11245314031839371, 1.0673270225524902, -0.7707382440567017, -0.20795677602291107, -0.3467029929161072, -0.044137559831142426, 0.5136693120002747, -1.0397417545318604, 0.26871103048324585, -0.24932444095611572, 0.39979347586631775, 0.21598868072032928, 0.31722936034202576, 0.3836253583431244, 0.5561161637306213, -0.44707104563713074, 0.012070289812982082, -0.12727393209934235, 0.8876894116401672, 0.3500356674194336, -0.009747996926307678, -0.809299886226654, 0.7274824976921082, 0.8382765650749207, 0.21870213747024536, 0.10912549495697021, -0.19766904413700104, -0.0843898355960846, 0.6519213914871216, -0.5355789661407471, 0.2439657300710678, 1.158000111579895, -0.24133531749248505, -0.014919779263436794, 0.7575473189353943, -0.11612139642238617, -1.1037720441818237, -0.4141724407672882, -0.20134195685386658, 0.14096303284168243, 0.31518712639808655, 0.3070729970932007, 0.46319541335105896, 0.10324399173259735, 0.17795658111572266, 0.7960864305496216, 0.7271481156349182, 0.39684176445007324, -0.615361213684082, 0.3269185721874237, 0.12485409528017044, 1.2809687852859497, 0.8437220454216003, 0.8845435976982117, -0.2486897110939026, -0.7018610239028931, 1.1753073930740356, -0.49242186546325684, 0.15819789469242096, 0.8631316423416138, 0.415793776512146, 0.9843176603317261, -1.6336251497268677, 0.1316070854663849, 1.0716246366500854, 0.4950472116470337, 0.7680655717849731, -0.04815831407904625, 0.7055246233940125, -0.8265685439109802, 0.14095641672611237, -0.36714476346969604, -0.6414448618888855, 0.8575013279914856, -0.05112125352025032, 0.050251953303813934, 0.1338764876127243, -0.3584686815738678, 0.015755608677864075, -0.5038312077522278, -0.004851591307669878, -0.33777424693107605, 0.061613716185092926, 0.02882986143231392, 0.013144189491868019, 0.38691246509552, 1.8136528730392456, -0.37786898016929626, -0.3935414254665375, -0.06857413798570633, -0.8442352414131165, 0.5038954615592957, -0.06348766386508942, -0.18318967521190643, -0.6202536225318909, -0.6880782842636108, 0.49190351366996765, 0.5249679088592529, -0.7447786331176758, -0.13108444213867188, -0.5586512088775635, -1.1406956911087036, 0.03024432808160782, -0.01235170941799879, 0.8166743516921997, 1.4021170139312744, 0.031460609287023544, 0.1576375961303711, 0.4894840121269226, -0.38158178329467773, 0.21640412509441376, 0.7772029042243958, -0.6385022401809692, -0.26645952463150024, -0.814384400844574, -1.0924608707427979, 1.3289721012115479, 1.1231547594070435, 0.1609821617603302, 0.4108218848705292, 1.659209132194519, 0.9823340177536011, -0.5129046440124512, 0.45054513216018677, 0.7942129373550415, -0.42669975757598877, 0.5927861928939819, 0.5512552857398987, -1.4161086082458496, -0.4407294690608978, 0.44569647312164307, -2.954813003540039, 1.6461912393569946, -0.18158414959907532, -0.48763033747673035, 2.061875104904175, 0.7328249216079712, 0.5502901077270508, 1.1075109243392944, -0.5678671598434448, -0.5040540099143982, -0.6075693964958191, 0.017016440629959106, -1.5613797903060913, 0.16958768665790558, 1.2693456411361694, -0.4215066134929657, -1.0406184196472168, 0.4206555187702179, 0.0009155813604593277, 0.2298886924982071, 0.004938863217830658, 0.1699228435754776, -0.4782271981239319, -0.035575103014707565, -0.002276236191391945, -1.0125887393951416, 0.45150861144065857, -1.021697998046875, 0.04354545846581459, 0.047116778790950775, 0.2784545421600342, 0.5497702956199646, -0.5493821501731873, 0.42239341139793396, 0.02770110033452511, -0.2199106067419052, -0.3478916585445404, -0.6557528972625732, 0.8694409728050232, 0.7198195457458496, -0.18048398196697235, 0.09582008421421051, 0.26023855805397034, -1.4223984479904175, -1.1789391040802002, 0.7370244264602661, 0.8361469507217407, -0.29362839460372925, -0.5908089876174927, 0.5391694903373718, -0.0033280462957918644, -0.44962286949157715, -0.19472599029541016, 0.42089203000068665, -1.0215283632278442, -1.5048916339874268, -0.9625788331031799, -0.3160661458969116, 0.6664376258850098, 0.27335572242736816, -0.21621473133563995, -0.23035484552383423, -1.3749033212661743, 1.0500961542129517, -0.517778754234314, -1.1755982637405396, -0.2308397740125656, -1.069547414779663, 0.7041584849357605, -0.5224724411964417, -0.022689634934067726, 0.28364649415016174, 0.49635186791419983, -1.3653521537780762, -0.22467286884784698, -1.507895827293396, 0.06610720604658127, 0.8145109415054321, 0.7239983081817627, -0.6415753960609436, 0.9918819069862366, -0.2834056615829468, -0.9159989953041077, -0.010004915297031403, 0.5087159276008606, -1.173555612564087, -0.11369235068559647, -0.4456569254398346, 0.4945642054080963, 0.12232492864131927, 1.2139666080474854, 0.9199768900871277, 1.1487360000610352, -0.010429526679217815, 1.1635791063308716, -0.2560575306415558, 0.21868978440761566, -0.2533973455429077, 0.44537869095802307, -0.7710073590278625, -0.14671215415000916, 0.3823380172252655, -0.19451904296875, -0.22499366104602814, 1.4439544677734375, 0.5819163918495178, -0.9031510949134827, 0.2776367664337158, -0.08833155035972595, 0.5349145531654358, 0.5106120109558105, 0.5120350122451782, 0.6369197964668274, -0.9916942119598389, -0.3369187116622925, 0.17393797636032104, 0.2839672267436981, -0.6113605499267578, 0.6730313301086426, -0.008830415084958076, 0.4968569278717041, 0.26450231671333313, 0.5953213572502136, -0.37644198536872864, 0.4684012234210968, -0.8603184819221497, 1.3330731391906738, 1.1634876728057861, -0.22145241498947144, 0.5989181995391846, 0.5835158228874207, -0.13332131505012512, -0.026454530656337738, -0.5630850791931152, -0.8388921618461609, -0.9935111403465271, 1.2583781480789185, 0.9494412541389465, -0.419524610042572, -0.4215109348297119, 0.27713972330093384, 0.38072213530540466, -0.5206617116928101, 0.9182752966880798, -0.9093995690345764, -0.272622287273407, 1.1522096395492554, 0.8692563772201538, -0.3587837815284729, 0.5280896425247192, 0.2564663589000702, 0.9446715116500854, -0.4667932987213135, -0.6969053745269775, 0.20399147272109985, -1.1354278326034546, -0.7096459865570068, -0.5588282346725464, -0.73011314868927, 0.34659382700920105, -0.27226921916007996, -0.9788947105407715, -0.1865769624710083, -0.9622856378555298, -0.8742402791976929, 0.06757604330778122, -0.8547068238258362, -1.234805941581726, -0.18452781438827515, -0.26737159490585327, 0.20182602107524872, -0.8265447616577148, -0.699201226234436, 0.7328965067863464, -0.055788375437259674, 1.1401598453521729, -0.16883620619773865, 1.3320786952972412, 0.3953893184661865, 0.5834655165672302, -0.5127437710762024, 0.4211041331291199, 0.1854364573955536, 0.3585154712200165, -0.4483889043331146, -0.10622293502092361, 0.4406987726688385, -0.4113346040248871, -0.1502530425786972, 0.6376919746398926, 0.09214676171541214, 0.044777072966098785, 0.15090325474739075, -0.8522379398345947, -1.5638216733932495, -0.007863782346248627, 0.4707794487476349, -0.9270600080490112, -0.2458849549293518, -0.34283027052879333, 0.0524187833070755, -0.13508203625679016, -0.010335319675505161, -0.7374935150146484, 0.9921517372131348, 0.7268721461296082, 0.13217508792877197, -0.42385077476501465, -0.511180579662323, 0.31123191118240356, -0.17872248589992523, 0.9033589363098145, -1.927441954612732, 0.021104399114847183, -0.5609968900680542, -0.9845275282859802, -0.007971055805683136, 0.31111958622932434, 0.3691965341567993, 0.46967411041259766, -0.287321537733078, -1.2152196168899536, -0.6938807368278503, -0.10536247491836548, 0.45047491788864136, 0.3556642234325409, 1.3337808847427368, -0.5837996006011963, -1.5110630989074707, -0.3155010938644409, 0.8934224247932434, 0.19995716214179993, 0.5761673450469971, 1.738020896911621, 1.6821951866149902, 0.022955263033509254, -0.20008037984371185, -0.21260763704776764, 0.5251274108886719, -0.7930161356925964, -0.5855498909950256, -0.9288478493690491, 0.030632255598902702, 0.24326089024543762], [0.3816525936126709, 2.141181468963623, -1.514477014541626, -0.87977135181427, 1.2225167751312256, 1.1962758302688599, 1.3830831050872803, -0.2416469156742096, -0.09509461373090744, -0.13283245265483856, -0.3442382216453552, 0.10966624319553375, 1.048253059387207, 0.7776279449462891, -0.10707376897335052, -0.04320884868502617, 0.22472470998764038, 0.006342684850096703, 0.7945531606674194, 0.13995778560638428, -0.33653783798217773, -0.8441532254219055, -0.055852070450782776, -0.05098533630371094, 0.032716408371925354, 0.4366740584373474, -1.7651036977767944, -0.5447322130203247, -1.5807958841323853, -0.12523344159126282, 0.9241210222244263, -1.0384677648544312, 0.5051180124282837, 0.5273364782333374, -2.314344882965088, -0.8257206678390503, 0.8824129104614258, 1.036353349685669, 0.8077206015586853, 0.88948655128479, 0.9857119917869568, 0.6393815279006958, 0.2317453771829605, -1.38225519657135, 0.8177576661109924, -0.2421514093875885, 0.4313073456287384, -1.3229563236236572, 0.8477318286895752, -0.5851178765296936, 0.856522798538208, -0.1631089150905609, 0.2434169352054596, 0.22710014879703522, 1.354013204574585, -0.8886279463768005, 0.052874647080898285, 0.25803279876708984, 0.5106531381607056, 0.0053316755220294, 1.3892180919647217, 0.33243489265441895, -0.23165887594223022, 1.062900424003601, 0.5492331981658936, 0.0735936388373375, 0.5818192958831787, -0.14876264333724976, -0.76055508852005, 0.1412820667028427, 0.4609718918800354, -0.15928538143634796, -0.9471620321273804, 0.4101303219795227, -0.587081789970398, 0.32654690742492676, 0.5224881768226624, 0.32098281383514404, -0.22000771760940552, 0.858548641204834, -0.3638947010040283, -0.43652957677841187, 0.05787167698144913, -0.10339006781578064, -0.22788013517856598, 0.027444634586572647, -0.35451123118400574, -0.8204705715179443, -0.050280891358852386, 1.7087162733078003, 0.040186215192079544, 0.03701484203338623, 0.27184319496154785, -0.32716190814971924, -0.08934375643730164, -0.8004790544509888, 0.4998893737792969, -0.45166701078414917, -0.5231029987335205, -0.3310909867286682, -0.6002886295318604, -0.2724544405937195, 0.07901948690414429, 0.178081214427948, 1.5170488357543945, 1.1795142889022827, -0.27533140778541565, -0.5906486511230469, -0.45912879705429077, 0.9180168509483337, 0.10905340313911438, 0.30028343200683594, -1.3557753562927246, -1.3518279790878296, -0.272538959980011, 0.9023749828338623, 0.6305395364761353, -0.17735272645950317, 0.5032380223274231, 0.47700607776641846, -0.780281662940979, 0.08156360685825348, -0.5095139145851135, 0.7948725819587708, 1.3518729209899902, 0.5722459554672241, -0.7115225791931152, -0.28092527389526367, 0.27014845609664917, 0.09384569525718689, 0.9808546900749207, -0.04058583825826645, -0.38632214069366455, 1.0257282257080078, -1.3869755268096924, 1.4725079536437988, -0.7656776905059814, -1.3409764766693115, 0.3198128044605255, 0.4938366413116455, 0.4503161907196045, -0.5632897615432739, -0.024063758552074432, -0.22020743787288666, 0.23164823651313782, -0.42379260063171387, 0.22425143420696259, -0.047440748661756516, -1.2462222576141357, 0.12466296553611755, -1.2805707454681396, 0.7342440485954285, -0.40547120571136475, 1.2845911979675293, -0.0039016916416585445, 0.4111124277114868, 0.661080002784729, 0.9090126752853394, 0.6052823662757874, -0.2896948456764221, 0.7264779806137085, 0.566323459148407, -0.47464266419410706, 0.8287107944488525, 0.42635011672973633, -0.22302141785621643, 0.3754119873046875, 0.11191380769014359, 0.18090903759002686, 0.39780256152153015, -0.7180176973342896, 0.03555171191692352, -0.5290148258209229, 0.4628152847290039, -0.1495267152786255, -0.6522063612937927, 0.7758667469024658, -0.6007755994796753, -0.592120885848999, -1.0390580892562866, 0.852611780166626, -0.08139042556285858, 0.28981083631515503, -0.02667573094367981, 0.6361870765686035, -0.4101663827896118, -0.3591739237308502, 0.542991042137146, -0.7709177732467651, -0.6370943188667297, -1.2239766120910645, -1.0493762493133545, -1.482372760772705, -0.026659302413463593, -0.6241760849952698, -1.0689797401428223, -0.054104696959257126, -0.13173998892307281, -0.2563907206058502, 0.41651982069015503, -0.3522607684135437, -0.2082536816596985, -1.1962190866470337, -0.3254205584526062, -0.36549490690231323, 0.05371236056089401, -1.1354728937149048, 0.3233009874820709, -0.7098978757858276, -0.586962878704071, 1.3645412921905518, 0.36813631653785706, -0.8174153566360474, 0.5655244588851929, -0.6227472424507141, -0.9668940901756287, 0.6961938142776489, -0.12428280711174011, 0.026505324989557266, 0.16657960414886475, 0.508597731590271, 0.2379612922668457, 0.8368548154830933, 0.09764459729194641, 0.5998076796531677, 0.23005244135856628, -1.1395841836929321, -0.7225767374038696, -0.8708071708679199, 0.34497395157814026, -0.8169430494308472, -1.222458004951477, 1.6280099153518677, 0.5387570858001709, -0.764901876449585, 0.7521538734436035, 0.04934844747185707, 0.28314346075057983, 0.6084061861038208, 0.6992653608322144, 0.3380086421966553, 0.8962501287460327, -0.8668840527534485, 0.15087729692459106, -0.8764153122901917, -0.16953429579734802, 1.265076756477356, 0.13323833048343658, -0.3674317002296448, 1.366750955581665, 0.6779695153236389, -0.060606855899095535, 0.12309285998344421, 0.5489415526390076, 0.19551770389080048, -1.1352072954177856, 0.3536429703235626, -0.13882829248905182, -0.058361101895570755, 1.3406888246536255, 0.4961360692977905, -1.2809923887252808, -0.38312196731567383, 0.20927278697490692, 0.5126438140869141, 0.24325205385684967, -0.03906136006116867, -0.35222095251083374, 0.4902583360671997, -0.05538628622889519, 0.47172027826309204, 0.5434424877166748, 0.09679700434207916, 0.7550171613693237, 0.14906731247901917, 0.01366955041885376, -0.41509687900543213, 0.9977284669876099, -0.05883801728487015, 0.39137986302375793, -0.3072671592235565, -0.7203018069267273, -0.8601523637771606, -0.029034070670604706, 0.9863014221191406, -0.682826042175293, -0.3569737672805786, 0.7871092557907104, 0.9850887060165405, -0.05624384433031082, 0.6405661106109619, 0.33066728711128235, -0.275812566280365, -0.31273597478866577, 0.7789044976234436, -0.06934002041816711, 0.45485472679138184, -0.6984066963195801, -0.608869731426239, -0.34954747557640076, 0.4191642105579376, 1.1592941284179688, 0.7885242104530334, 0.8502025008201599, -0.33850908279418945, -0.9984359741210938, -0.6236811280250549, -0.17200967669487, -1.289067268371582, -0.0456429123878479, -0.8759784698486328, -0.7039878964424133, 0.4856249690055847, -0.7141185998916626, -0.007090900093317032, 0.6132082939147949, -0.04311022907495499, 1.1290743350982666, 0.845867395401001, -0.6807595491409302, -0.5703725814819336, -0.6128458976745605, -0.39690113067626953, -0.5827904939651489, 1.0226787328720093, 0.8559139966964722, -1.0784870386123657, -0.02448982372879982, 0.05603025108575821, -0.09380460530519485, 0.8221997022628784, -0.6090952157974243, -0.20609357953071594, -1.2569607496261597, -0.7381706237792969, -0.3890562951564789, 1.6888854503631592, 0.1745370626449585, 0.24203594028949738, -1.3604512214660645, 0.1707247793674469, 0.6688755750656128, -0.493982195854187, -0.6115318536758423, 0.4868958592414856, 0.23406057059764862, -0.1534227728843689, 0.17402082681655884, 0.8950930833816528, 1.0423576831817627, -0.673015832901001, 0.08702079206705093, -0.48395073413848877, 0.2478545606136322, -0.43550950288772583, 0.37854790687561035, -0.34610599279403687, 1.0285929441452026, 0.17715655267238617, 0.333828866481781, 1.0230062007904053, -1.2242677211761475, -0.2567574679851532, -1.540753960609436, 0.8738232851028442, 0.7938560247421265, 0.9750469326972961, 0.05539008602499962, 0.054425470530986786, 0.5386253595352173, -0.6070034503936768, -0.33932045102119446, 0.06980210542678833, 1.1608998775482178, -0.24243998527526855, -1.2448060512542725, -0.5390335321426392, -0.35263580083847046, -0.46247172355651855, -0.9305385947227478, -0.6928789615631104, 0.5775692462921143, -0.7414965629577637, -0.23559297621250153, 1.1895523071289062, 0.2792724668979645, -0.5667251348495483, -0.5249272584915161, -0.21741721034049988, 0.9857348203659058, -0.31814900040626526, -0.0069059692323207855, -0.4794852137565613, -0.263923317193985, -0.10065924376249313, -1.0251179933547974, -0.9855096936225891, 0.09627023339271545, 0.41436871886253357, 0.20328354835510254, -1.2677571773529053, 0.1272723525762558, 0.31375205516815186, 0.45135805010795593, 0.2823137044906616, -0.10507960617542267, 0.5119431614875793, 0.5188872814178467, -0.366847425699234, -0.051256414502859116, -0.14717239141464233, 0.9991525411605835, -0.31510722637176514, -0.5290127992630005, -0.1730930507183075, -0.290081650018692, 0.46024438738822937, 0.06812955439090729, -0.3664589524269104, -0.055051472038030624, -0.2768304646015167, 0.014183945953845978, -0.23340409994125366, 0.08166796714067459, 1.5649666786193848, 0.002274240367114544, -0.4456106126308441, 0.9968483448028564, -0.28118205070495605, -0.793890118598938, -0.6320642828941345, 0.03091287426650524, -0.9393312931060791, -0.6843112111091614, 0.23788705468177795, 0.5162677764892578, 0.46782419085502625, 0.9578053951263428, 0.3348345160484314, 1.0130621194839478, 0.5337650775909424, -0.3622756004333496, -0.43278414011001587, -0.024895552545785904, 0.593665599822998, 1.1332547664642334, 1.0669755935668945, -0.00013755913823843002, -1.1405384540557861, 1.1347448825836182, -0.5097162127494812, 0.04409082978963852, 0.5757666826248169, 0.4603537619113922, 1.0424529314041138, -1.8804246187210083, -1.2202427387237549, 0.9186545610427856, -0.09632718563079834, 0.5416556596755981, 0.09116774797439575, 0.5620478391647339, -1.0376060009002686, 0.31943458318710327, 0.5310054421424866, 0.10571323335170746, 0.9298481941223145, -0.2508653998374939, -0.12344254553318024, 0.25321120023727417, -0.5534774661064148, 0.3501710295677185, -0.5170122385025024, -0.6862189769744873, 0.14787334203720093, -0.09278334677219391, 0.15405842661857605, 0.5350184440612793, 0.17100268602371216, 1.1258487701416016, -1.2565925121307373, -1.3256678581237793, 0.6248390078544617, -0.4100017547607422, 0.26639094948768616, -0.2740151286125183, -0.5960296988487244, 0.02219480276107788, -1.0379431247711182, -0.5865542888641357, 0.4231986999511719, -0.3518124222755432, 0.0689164400100708, -0.552696943283081, -1.184119462966919, -0.20995080471038818, 0.2864826023578644, 0.8466148376464844, 0.3420887589454651, 0.41748255491256714, -0.25469523668289185, -0.07150670140981674, -0.9574986100196838, 0.30160871148109436, 0.24352705478668213, -0.09535136073827744, -0.16198848187923431, -1.200218677520752, -1.0609084367752075, 1.094050407409668, 1.6290442943572998, 0.2333991676568985, 0.5424975156784058, 1.215522289276123, 1.2058649063110352, -0.3028333783149719, -0.5768071413040161, 0.41788265109062195, -0.8591622114181519, 0.2364446520805359, 0.7767115831375122, -0.9690090417861938, -0.12127091735601425, -0.4386342763900757, -1.5784084796905518, 1.2377736568450928, 0.19871003925800323, -1.344224214553833, 1.0211007595062256, -0.15904775261878967, 0.6461895108222961, 0.9857813119888306, -0.40070104598999023, 0.10334159433841705, -0.2181597650051117, -0.628974199295044, -1.0140941143035889, 0.6179642081260681, 0.6357420682907104, 0.3411319851875305, -0.7318907976150513, 0.7673944234848022, -0.01173480972647667, -0.48620378971099854, -0.12537065148353577, 0.999326765537262, 0.23425990343093872, 0.8876469135284424, 0.8021389842033386, -1.3244737386703491, 0.35551947355270386, -0.026463817805051804, 0.10986291617155075, 0.08454188704490662, 0.6559966802597046, 0.3290516138076782, -0.4854387640953064, 0.1317896544933319, -0.2297302484512329, -0.4432670474052429, -0.7262774705886841, -0.658403217792511, 0.8229941129684448, 0.16926740109920502, -0.26765069365501404, -0.24637889862060547, 0.0026739034801721573, -0.5053500533103943, -0.1329892873764038, 0.7051582932472229, 0.8009729385375977, -0.7497916221618652, -0.46436405181884766, 0.02506817877292633, 0.09885461628437042, 0.24500003457069397, -0.4902801513671875, 0.20983320474624634, -0.8264309167861938, -1.6123487949371338, -0.44170767068862915, -0.40566694736480713, 1.2045347690582275, -0.8150109648704529, 0.37562745809555054, 0.27764591574668884, -1.307129979133606, 0.13054949045181274, 0.4185396730899811, -2.0102672576904297, -0.44101643562316895, -1.2376290559768677, 0.8890357613563538, -0.12777388095855713, -0.3596741557121277, -0.4978863596916199, 1.08978271484375, -0.6280760169029236, -0.9483163356781006, -1.4285013675689697, -0.11635593324899673, 0.7386336922645569, 1.1131739616394043, -0.6678653955459595, 1.031383991241455, 0.6949292421340942, -1.2691235542297363, -1.0981920957565308, 0.27695611119270325, -1.1781072616577148, 0.44556924700737, 0.3240319490432739, -0.25900545716285706, 0.4784175753593445, 1.2993019819259644, 0.2954518496990204, 0.371929407119751, -0.4549974799156189, 0.4644009470939636, -0.602351188659668, -0.7938967943191528, -0.8335508108139038, 0.47205033898353577, -0.9477433562278748, -1.1405622959136963, 0.3257465064525604, 0.13036790490150452, -0.1419799029827118, 1.250213861465454, 1.470992922782898, -1.242773413658142, -0.16718387603759766, 0.4579395353794098, 0.3215281665325165, 0.054588526487350464, 1.0152803659439087, 0.39186161756515503, -0.6612632274627686, 0.19132615625858307, -0.04585631191730499, 0.7230322957038879, -0.8067874908447266, 0.21524614095687866, 0.07627654075622559, 0.34524714946746826, 0.10389479249715805, 0.39040595293045044, 0.821178674697876, 0.1825115829706192, -0.8506777882575989, 0.8625972270965576, 1.502046823501587, -0.4231363534927368, -0.4079142212867737, 0.6187547445297241, 0.7101688385009766, 0.5002513527870178, -0.7900305986404419, 0.3583970069885254, -1.0627628564834595, 0.4308474063873291, -0.23470422625541687, 0.0554933100938797, -0.05725637823343277, 0.2592373490333557, 0.4983477294445038, 0.07955381274223328, 0.7887028455734253, -0.37488389015197754, -0.3236578702926636, 0.9495594501495361, 0.8426518440246582, -0.7071143388748169, 0.07579177618026733, 0.5628276467323303, -0.21796229481697083, 0.07916202396154404, -0.118694968521595, 0.2758890390396118, -0.8403147459030151, 0.3141079246997833, -0.33677947521209717, -0.19532907009124756, -0.17126044631004333, -0.8386332988739014, -1.0250732898712158, -0.09436239302158356, -0.8898394107818604, -0.9095234870910645, 0.2523350119590759, -1.148987054824829, -1.2056972980499268, 0.3505740761756897, -0.45410722494125366, -0.2688167691230774, -0.1116885393857956, -0.26530009508132935, 0.23263993859291077, 1.2640044689178467, 0.26535916328430176, -0.3236922025680542, 1.0337498188018799, 0.037620872259140015, -0.3204845190048218, -0.6187874674797058, 0.16159841418266296, 0.05860060080885887, 0.21706977486610413, 0.062183927744627, 0.3476983904838562, -0.2939091920852661, -0.24215620756149292, -0.1913260817527771, -0.09642529487609863, 0.07611314207315445, 0.006848577409982681, -0.0654057115316391, -0.19192960858345032, -0.68536776304245, 0.6039650440216064, 0.4658598303794861, -1.2690037488937378, -0.5624499320983887, -0.5936945080757141, -0.04229696840047836, -0.08594581484794617, 1.6039929389953613, -0.846330463886261, 0.2716864347457886, 0.4064313769340515, 0.01280288677662611, -0.17287522554397583, -0.01876433938741684, 0.666459858417511, -0.7736779451370239, 1.114516019821167, -1.2110381126403809, 0.04597264900803566, -0.516830325126648, -1.4302747249603271, 0.7787405252456665, 0.07443356513977051, -0.04778227210044861, 0.1990807056427002, -1.0105345249176025, -0.1547987014055252, -0.6071271896362305, 0.5577719211578369, 0.6867095232009888, 0.09669622778892517, 0.17068593204021454, 0.6480083465576172, -1.401200771331787, 0.48702868819236755, 0.03047270141541958, 0.20789507031440735, 0.7819913625717163, 1.2108252048492432, 1.4616072177886963, -0.2950468063354492, -0.07826404273509979, -0.4076796770095825, 0.8533057570457458, -1.1181056499481201, -0.6825368404388428, -0.8587866425514221, 0.4453275203704834, 0.07969412207603455], [-0.4307626187801361, 1.3573951721191406, -2.7104499340057373, -0.7224093079566956, -0.0998130664229393, 0.6741055250167847, -0.05402136221528053, 0.2486121654510498, -0.6899385452270508, 0.1776134967803955, 0.09515659511089325, 0.34504571557044983, 0.7881680727005005, 1.4369231462478638, 0.2616574466228485, 0.3369520604610443, 1.1788698434829712, 0.05393720418214798, 0.5961394309997559, 1.2237528562545776, 0.20098929107189178, -0.633580207824707, -0.971598744392395, 0.2359439879655838, 0.5803810358047485, 0.8183093667030334, -1.254382848739624, -1.0590429306030273, -0.9503918290138245, -1.0185024738311768, 1.8117259740829468, -1.6670345067977905, -0.14546580612659454, 0.5617360472679138, -1.344277262687683, -0.5275898575782776, 1.273889422416687, 0.884182333946228, -0.34366342425346375, 1.4748655557632446, 1.6368991136550903, 0.3902946710586548, -0.45097774267196655, -0.7384471297264099, 0.8758063912391663, -0.046520959585905075, -0.3227294087409973, -1.39720618724823, -0.5305595993995667, -0.6866737008094788, 1.18771493434906, 0.3049817383289337, -0.17634367942810059, 0.2843996286392212, 0.5558639764785767, -0.31436270475387573, 0.8912171125411987, -0.4232816696166992, 0.3384125232696533, 0.038582004606723785, 1.5785759687423706, 0.07770633697509766, 0.04198665916919708, -0.13907256722450256, 0.536049485206604, -0.004885431379079819, 0.6498761773109436, 0.6164875030517578, -0.6488299369812012, -0.029512133449316025, 0.9573906660079956, -0.13929131627082825, -0.5044460892677307, -0.0073146820068359375, -0.3548951745033264, 0.4627400040626526, 0.47202563285827637, 0.42782774567604065, 0.10902022570371628, 0.9275109767913818, -1.0560325384140015, 0.1529727280139923, 0.6127010583877563, -0.05605708435177803, 0.37121203541755676, 0.05057873576879501, 0.10183951258659363, -0.6619268655776978, -0.7064201831817627, 1.6247749328613281, 0.6395672559738159, -0.021957021206617355, 0.5066350698471069, -0.3267543315887451, 0.23989616334438324, -0.9480706453323364, 0.11829598248004913, -0.5803688764572144, -0.03319818899035454, 0.10012458264827728, -1.2767689228057861, -0.5994598865509033, 0.876776933670044, 0.13335466384887695, 0.7013763785362244, 1.3082211017608643, 0.037129394710063934, -1.0000425577163696, -0.786457359790802, -0.13817912340164185, 0.1260257214307785, -0.19253727793693542, -0.9206300973892212, -0.5638918876647949, 0.4460935592651367, 0.5351303815841675, 1.0835793018341064, 0.07554425299167633, 0.31151652336120605, 1.2435237169265747, -0.6597109436988831, 0.14879418909549713, -1.242386817932129, 0.45284348726272583, 1.0056209564208984, 0.31048136949539185, -0.5389173030853271, 0.20639623701572418, 0.01690298691391945, 0.08717232197523117, 0.22863925993442535, -0.26696038246154785, -0.14959344267845154, 1.0374526977539062, -0.5808168649673462, 0.8111538290977478, -0.17313632369041443, -0.8279297947883606, -0.29948461055755615, 0.09091905504465103, -0.22815053164958954, -1.0674582719802856, -0.1824680119752884, -0.9505879878997803, -0.08146349340677261, 0.2502354681491852, 0.06830573827028275, -0.1564532071352005, -1.306807041168213, -0.26248544454574585, -0.9313482642173767, 1.0333541631698608, 0.09055463969707489, 0.3352048695087433, 0.22194916009902954, 0.25506582856178284, 0.5636180639266968, 0.11612818390130997, 0.5089970827102661, 0.4837783873081207, 0.8256404995918274, -0.01563594862818718, -1.0025910139083862, 1.4823745489120483, 0.31779271364212036, -0.1256185621023178, 0.7502255439758301, 0.04631529748439789, -0.23663854598999023, 0.9151425957679749, -1.1590049266815186, -0.6090971231460571, -0.5263573527336121, 0.6005239486694336, 0.028940659016370773, -0.4025745987892151, 0.8374462127685547, -0.6418256163597107, -0.819817841053009, -0.9524673819541931, 0.8806052803993225, -0.7690116763114929, 0.1955823004245758, -0.16685882210731506, 0.6628935933113098, -0.34544268250465393, -0.49380338191986084, 0.3902951776981354, -0.8212283253669739, -0.0755537822842598, -0.9564658999443054, -0.056686386466026306, -1.2101256847381592, 0.3146030604839325, -0.23521779477596283, -0.833358883857727, 0.41194412112236023, -0.6130067110061646, -0.7459931969642639, -0.3324672281742096, 0.2058374136686325, -0.021886413916945457, -1.2688418626785278, -0.29657983779907227, -1.2650277614593506, 0.7310460805892944, -0.6421694159507751, 1.1200666427612305, -0.6066965460777283, 0.22107502818107605, 1.178471326828003, 0.6267775297164917, -0.05511793866753578, 0.4080236256122589, -0.2223491221666336, -1.6807457208633423, -0.5388991832733154, -0.02192062884569168, 0.2045368105173111, -0.1821376532316208, 0.4355035424232483, 0.6842954158782959, 0.5348079204559326, -0.2292851060628891, -0.19762475788593292, -0.41335636377334595, -0.928811252117157, -0.7575339078903198, -0.9222581386566162, -0.008841171860694885, -0.8961676955223083, -1.0592122077941895, 0.8772990107536316, 0.7397436499595642, -1.40896737575531, 0.4309737980365753, 0.030700305476784706, 0.5875977873802185, 0.37893059849739075, 0.3568192720413208, 0.3241174817085266, 0.28317081928253174, 0.23480086028575897, -0.08690252900123596, -0.6145280599594116, 0.09514811635017395, 0.6703144311904907, -0.18225820362567902, 0.35414817929267883, 1.5614428520202637, -0.09670712053775787, -0.6472529172897339, 0.30241629481315613, 0.3970736861228943, 0.2588905394077301, -1.3808848857879639, -0.6511009931564331, -0.45305290818214417, -1.3717554807662964, 1.0401140451431274, 1.4546056985855103, -1.4659391641616821, -0.14624391496181488, 0.004946237429976463, 0.1570480614900589, -0.30685552954673767, 0.09867606312036514, -0.1264413297176361, 1.0278013944625854, 0.4141542613506317, -0.17131458222866058, -0.3222033977508545, 0.01664729416370392, 0.43318799138069153, -0.39192456007003784, 0.00946417823433876, -0.2850304841995239, 0.8865808248519897, 0.18233124911785126, -0.1065988540649414, -0.4083767235279083, -1.9770431518554688, -0.36945509910583496, -0.4043577313423157, 1.0486727952957153, -0.1906043291091919, -0.1465597152709961, 1.4004114866256714, 0.6497328281402588, -0.5253389477729797, -0.3052595257759094, -0.1581048220396042, -0.26375582814216614, 0.11872521787881851, 0.5001698136329651, 0.48951980471611023, 0.20681777596473694, -0.8916395902633667, -0.31269940733909607, -0.12988592684268951, 0.18386614322662354, 1.0917280912399292, 0.1951107531785965, 1.5314935445785522, -0.49767401814460754, -0.10657460987567902, -1.0865947008132935, -0.14610472321510315, -0.4429473280906677, -0.14661626517772675, 0.0023187287151813507, -0.9375702142715454, 0.027287177741527557, 0.13483279943466187, -0.20083479583263397, 0.8721064925193787, -0.5198222398757935, 0.8098863959312439, 0.6526233553886414, 0.11104127019643784, -0.5523627996444702, -1.1485377550125122, 0.050116319209337234, -1.2706953287124634, 0.5168613791465759, 0.07647939026355743, -0.3657526969909668, -0.18008816242218018, 0.06726564466953278, 0.20986102521419525, 1.0055975914001465, -0.3662424683570862, 0.6580702662467957, -0.6837292909622192, -1.3082374334335327, 0.6998957991600037, 0.3698450028896332, 0.8281535506248474, -0.4784506559371948, -0.5141844749450684, 0.5002291202545166, 0.3122010827064514, -0.7292467951774597, -0.43117719888687134, 0.47617974877357483, -0.2614826560020447, -0.5239317417144775, 0.28030118346214294, -0.12056255340576172, 0.48706793785095215, -0.5898039937019348, -0.7469578981399536, -0.07019538432359695, -0.4552997052669525, -0.2521049380302429, 0.13722506165504456, -0.3396667242050171, 0.499437540769577, 0.3248089849948883, -0.5148283839225769, 0.8924558758735657, -0.08158464729785919, -0.5385899543762207, -1.3478813171386719, 0.7895902991294861, 0.4544951915740967, 1.3838614225387573, 0.8690963983535767, -0.060861825942993164, 0.5228809714317322, -0.4623364210128784, 0.17387641966342926, 0.1058083325624466, 0.3068183660507202, 0.10865730047225952, -1.3016266822814941, -0.6705753803253174, -0.2580180764198303, 0.24094247817993164, -0.4984970688819885, -0.34441810846328735, 0.41950762271881104, -0.9650588631629944, -0.20598448812961578, 1.4085718393325806, 0.6046070456504822, -0.3883402943611145, -0.18793803453445435, -0.46268895268440247, -0.3775775730609894, -0.1750161051750183, -0.12356647849082947, -0.8339005708694458, -0.5956701040267944, 0.43397676944732666, -0.616877555847168, -0.40067216753959656, -0.07069990038871765, -0.46188226342201233, 0.37578561902046204, -0.9182742834091187, 0.16846610605716705, -0.29453539848327637, 0.5064002871513367, 0.6652932167053223, 0.3195034861564636, 0.6972039341926575, 0.19277915358543396, 0.47226741909980774, 0.9833453297615051, 0.12184487283229828, 0.8793177604675293, -0.08366135507822037, -0.9336556196212769, -0.8594856262207031, -0.36627086997032166, -0.3555971682071686, -0.05757651478052139, -0.31935909390449524, 0.025013143196702003, -0.6066145896911621, -0.3967256546020508, -0.5400133728981018, -0.007612340152263641, 1.7909108400344849, 0.30878984928131104, -0.004846296273171902, 0.32415664196014404, -0.22074882686138153, -0.6781912446022034, 0.2859009802341461, 0.17569033801555634, -0.17331069707870483, 0.5699036121368408, 0.35599997639656067, 1.094411015510559, 0.1585446298122406, -0.2146642506122589, 0.3917100727558136, 0.8144055008888245, 0.5421360731124878, -0.5472373962402344, -0.039280541241168976, 0.1925755888223648, 0.8015440702438354, 1.4618830680847168, 0.9056214690208435, -0.5321211218833923, -1.3360246419906616, 0.751684308052063, -0.5287525057792664, -0.053954750299453735, 0.7867825031280518, 0.6168863773345947, 1.431383728981018, -2.2383100986480713, -0.14197318255901337, 0.5024774670600891, 0.611392080783844, 0.4798368811607361, 0.3860088884830475, 0.04733686149120331, -0.6655619144439697, -0.18742676079273224, -0.2760532796382904, -0.19086171686649323, 0.5715485215187073, -0.10742021352052689, -0.15770350396633148, 0.49374765157699585, -0.2954447269439697, 0.08367210626602173, -0.5810864567756653, -0.6062816381454468, -0.1939912885427475, -0.3394593596458435, -0.5390198826789856, -0.3773111402988434, 0.6187556385993958, 1.2632770538330078, -0.49124792218208313, -1.0247303247451782, 0.5160735845565796, -0.7102832198143005, -0.044899143278598785, -0.20446021854877472, -0.595469057559967, -0.7008717656135559, -0.8822623491287231, 0.11393995583057404, -0.3854191303253174, -0.609464168548584, 0.32797884941101074, 0.3894404172897339, -1.3656269311904907, -0.20333616435527802, 0.7169286012649536, 0.9377759695053101, 1.5755831003189087, 0.20000088214874268, 1.3531991243362427, 0.07754015177488327, -0.6957928538322449, 0.48118171095848083, -0.1991346776485443, 0.3190244138240814, -0.002702477388083935, -0.7692313194274902, -1.360499620437622, 1.5340468883514404, 1.3487824201583862, 0.5619785189628601, 0.05128604173660278, 1.1475958824157715, 1.1908694505691528, -0.4373054802417755, -0.5830581784248352, 0.7732999920845032, -0.7014667391777039, 0.016875743865966797, 1.1843986511230469, -0.7551252245903015, 0.11324441432952881, 0.1198374554514885, -2.1140732765197754, 1.183962345123291, 0.6748036742210388, -0.27353110909461975, 0.05715601146221161, 0.4670538902282715, 0.8083423376083374, 0.09111376106739044, -0.7238365411758423, -0.04872583970427513, 0.05043663829565048, -0.41367900371551514, -0.25740790367126465, 0.7710965871810913, 1.253404140472412, 0.2733038365840912, -0.5714812278747559, 0.16408517956733704, -0.31434524059295654, -0.2602134346961975, -0.21974116563796997, 0.13605956733226776, 0.6030706167221069, 1.347183346748352, 0.0935496911406517, -0.5764133930206299, 0.03894316405057907, -1.0196548700332642, 0.23338229954242706, 0.41963428258895874, 0.8488817811012268, 0.30877092480659485, -0.019670845940709114, 0.08545322716236115, -0.08652550727128983, -0.537158727645874, -0.16354970633983612, -0.7648591995239258, 1.6643446683883667, 0.3777632415294647, -0.6379474401473999, 0.21810908615589142, -0.062358904629945755, -0.6885344982147217, 0.0028920993208885193, -0.036756642162799835, 1.0929226875305176, -1.0422639846801758, -0.8411315679550171, -0.02818598970770836, -0.15750260651111603, -0.16161708533763885, -0.060125868767499924, 0.7498155236244202, -1.0131117105484009, -1.39113450050354, -1.0056955814361572, -0.9069035053253174, 0.35998743772506714, -0.4347074329853058, 0.3820134103298187, -0.11165954172611237, -1.9732447862625122, 1.6833529472351074, -0.19805637001991272, -1.5166144371032715, -0.10951629281044006, -1.764613151550293, 1.4846079349517822, -0.7110319137573242, -0.12644629180431366, 0.1875276118516922, 0.39037469029426575, -0.8257109522819519, -0.7214106321334839, -1.1838949918746948, -0.2106417417526245, 0.7200472950935364, 1.133642554283142, -0.9171769022941589, 0.9300640225410461, 0.012173376977443695, -0.7175093293190002, -1.3205310106277466, 0.9005963802337646, -0.18326926231384277, 0.39977651834487915, 0.5552457571029663, 0.3313719630241394, 0.041548509150743484, 1.3936883211135864, 0.6264821887016296, 1.1040934324264526, 0.1256505250930786, 0.4236750900745392, -0.5091425776481628, -0.26408135890960693, -0.13975803554058075, 0.9275903105735779, -1.0205345153808594, -0.4560200572013855, -0.2798886001110077, -0.5003148913383484, -1.2552016973495483, 0.21578727662563324, 0.9241609573364258, -0.6096426844596863, 0.1601451188325882, -0.37873685359954834, 0.47536715865135193, 0.20525416731834412, 0.012341253459453583, -0.3167881667613983, -0.3710238039493561, 0.2649117112159729, -0.09421657025814056, -0.26168161630630493, -1.3273248672485352, -0.27540314197540283, -0.2680211067199707, 0.5137941837310791, -0.1448400765657425, 0.8312227129936218, 1.071616768836975, -0.17199857532978058, -0.6725684404373169, 0.6315116286277771, 1.102295994758606, -0.1983068436384201, -0.24760130047798157, 0.0789337232708931, 0.26704975962638855, 0.04304847866296768, -0.4395395815372467, 0.21615217626094818, -0.7865143418312073, 0.8785879015922546, -0.3446100652217865, -0.15591786801815033, -0.5859158635139465, -0.28155386447906494, -0.2925894856452942, 0.1303628385066986, 0.4136970043182373, 0.025818556547164917, -0.29560643434524536, 0.9173032641410828, 1.1757628917694092, 0.010203761979937553, 0.19339263439178467, 0.3917154371738434, 0.66340571641922, 0.04097260534763336, 0.23979821801185608, 0.4966830909252167, -0.2569257616996765, -0.208693265914917, -0.46003004908561707, 0.4565415680408478, -0.3768981695175171, -0.8145442605018616, -1.3786991834640503, -0.22169388830661774, -0.9687044620513916, -0.18243634700775146, 0.7629274129867554, -0.8908341526985168, -0.5866799354553223, 0.14234237372875214, 0.1918535977602005, -0.23461095988750458, -0.40004032850265503, -0.5402458310127258, -0.5579441785812378, -0.048307184129953384, 1.240416407585144, -0.43974608182907104, 1.1688281297683716, -0.8754360675811768, -0.49888741970062256, 0.17681734263896942, 0.061113856732845306, 0.09850124269723892, 0.7277597784996033, 0.6779786944389343, -0.29933688044548035, 0.3900263011455536, -0.24317659437656403, -1.3176263570785522, 0.6610990762710571, 0.11082647740840912, 0.1681405007839203, 0.0066484250128269196, -0.4709267318248749, 0.07707681506872177, 0.8491041660308838, 0.576759934425354, 0.07438885420560837, -0.0492752343416214, -0.9162619113922119, 0.48747774958610535, -0.4616656005382538, 0.5571293830871582, -0.5608148574829102, 1.486106514930725, 0.6079477667808533, -0.1413508951663971, -0.03447819501161575, -0.14836759865283966, -0.5501937866210938, 0.24712976813316345, 0.4455721378326416, -0.9346714615821838, -0.4684414565563202, 0.16137242317199707, -1.317115306854248, 0.2756304144859314, 0.4648672938346863, 1.2223443984985352, -0.06646348536014557, -0.6763660311698914, -0.6902804970741272, -0.4222371280193329, 0.007003560662269592, 0.48865777254104614, 0.34041061997413635, 0.3335057199001312, 0.025325467810034752, -0.8276422619819641, -0.18508772552013397, 0.40811392664909363, 0.4743010997772217, 0.0966973677277565, 2.0093681812286377, 1.525456428527832, -0.08092708140611649, 0.3912486732006073, -0.6380559802055359, 0.5921109914779663, -0.9921186566352844, -0.22588032484054565, 0.2008964866399765, 0.6087145209312439, 0.21331194043159485], [0.050959840416908264, 1.5796623229980469, -2.3484456539154053, -1.2257611751556396, 0.18732210993766785, 0.22672885656356812, 0.6828019618988037, 0.03477778285741806, -0.36792194843292236, -1.0428301095962524, -0.9616446495056152, 0.18140831589698792, 1.2572979927062988, 1.4046396017074585, 0.9784509539604187, 0.18135669827461243, 0.698173999786377, -0.7068682312965393, 0.09405418485403061, 0.44164007902145386, 0.48929858207702637, -0.7127215266227722, -0.1009172648191452, -0.3975093364715576, 0.6083791851997375, 0.5245996713638306, -1.8802709579467773, -0.31548935174942017, -1.817018985748291, -1.258530616760254, 1.0182321071624756, -0.7902480363845825, 0.4026254415512085, -0.3355523347854614, -1.8307108879089355, -0.8073908686637878, 0.9154394865036011, 0.29425477981567383, -0.13738808035850525, 0.7398934364318848, 1.7103161811828613, 0.9468488693237305, 0.12580116093158722, -1.1276224851608276, 1.2852396965026855, 0.015276029706001282, -0.038029275834560394, -1.6780565977096558, -0.06850177049636841, -0.4094780683517456, 0.40082889795303345, -0.4271608293056488, -0.6097449064254761, 0.5331587791442871, 1.132004737854004, 0.18816323578357697, -0.36370959877967834, 0.3462926149368286, 0.3753049373626709, -0.34640252590179443, 1.6342461109161377, 0.433623731136322, -0.813254714012146, 0.462688684463501, 0.5036166310310364, -0.03559458255767822, 0.32632607221603394, 0.41434529423713684, -0.9285221099853516, 0.6585051417350769, 0.22615128755569458, -0.04779331758618355, -0.9957480430603027, 0.05216468870639801, -1.656755805015564, 0.19345109164714813, 0.14064659178256989, 0.3966872990131378, 0.1557372510433197, 1.137080192565918, -0.7437875270843506, -0.42882198095321655, 0.2348840981721878, -1.0575206279754639, 0.9800970554351807, 0.18966135382652283, -0.02055889368057251, -0.4880101680755615, -0.3505195379257202, 2.1021456718444824, -0.2367280274629593, 0.7165129780769348, 0.07626257091760635, -0.06532608717679977, -0.3646642565727234, -1.0951427221298218, 0.10612906515598297, -0.5739256143569946, -0.14765343070030212, -0.9931683540344238, -0.7065232992172241, -0.34331387281417847, 0.7751141786575317, 0.24639993906021118, 0.9467285871505737, 1.1670550107955933, 0.48096346855163574, -1.4409666061401367, -0.7838324308395386, 0.340501070022583, 0.3892197906970978, 0.13591307401657104, -1.3171679973602295, -1.101318597793579, -0.7589000463485718, 0.8810936212539673, 0.6727736592292786, -0.28987881541252136, 1.1424353122711182, 0.7708067893981934, -0.8988877534866333, -0.7078485488891602, -0.8762149810791016, 0.5629431009292603, 1.8162753582000732, 0.47054821252822876, -0.9260060787200928, 0.08419971168041229, -0.1800929605960846, -0.09555459022521973, 0.5464945435523987, -0.035039253532886505, -0.9795535206794739, 1.1968817710876465, -0.6669535636901855, 1.2698016166687012, -0.7536884546279907, -0.9092304706573486, 0.7653433084487915, 0.06002373248338699, 0.14119790494441986, -0.7596632838249207, -0.8340004682540894, -1.4958279132843018, 0.09132665395736694, -0.4667515754699707, 0.06169898062944412, -0.28677278757095337, -1.2916593551635742, 0.6048157215118408, -1.0466234683990479, 0.8127751350402832, -0.02291400358080864, 1.3647396564483643, -0.23309281468391418, 0.9464696645736694, 0.7959415912628174, 0.07271195948123932, 0.2060951441526413, 0.2661701440811157, 0.6908683180809021, 0.43951910734176636, -0.9995930194854736, 1.4267253875732422, 0.1770257204771042, -0.15675759315490723, 0.5355888605117798, 0.0863049179315567, 0.22054290771484375, 0.8512610197067261, -0.9469122886657715, -0.11613589525222778, -0.3392733633518219, 0.25191277265548706, -0.12042705714702606, -0.4236016273498535, 0.9776170253753662, -1.0362002849578857, -0.6295861601829529, -0.9691727757453918, 0.9202158451080322, -0.7918984889984131, 0.15585078299045563, -0.2912588119506836, 0.3465622067451477, -0.4055209755897522, -0.5857813954353333, -0.16907474398612976, -0.8651226758956909, -0.53521728515625, -1.4748823642730713, -0.22987091541290283, -1.4798686504364014, -0.181226909160614, -0.7226755619049072, -1.4939699172973633, 0.5012224912643433, -0.37651658058166504, -0.16128163039684296, 0.2700326442718506, -0.013756651431322098, -0.6520110964775085, -1.9796277284622192, -0.2794746160507202, -0.8131558895111084, 0.8807120323181152, -0.43948665261268616, 0.4485122263431549, -0.9915341138839722, 0.2243325412273407, 1.3373758792877197, 0.13484568893909454, -0.9873683452606201, 0.5352150201797485, 0.4662763178348541, -1.0741175413131714, 0.0761575847864151, -0.5088316202163696, 0.30584532022476196, 0.016061898320913315, 0.7357313632965088, -0.032626714557409286, 1.0303140878677368, 0.28684258460998535, 0.19565537571907043, 0.2599698305130005, -0.7388185858726501, -0.07323018461465836, -1.0247722864151, 0.2597115635871887, -0.9469223022460938, -0.4233494699001312, 1.1052451133728027, 0.766465425491333, -0.3947010636329651, 1.046592116355896, -0.20501886308193207, 0.6688295602798462, 0.3676900863647461, 0.960121750831604, 0.7798128128051758, 0.15422283113002777, -0.5917352437973022, -0.010827142745256424, -0.13915801048278809, -0.18726477026939392, 1.4083659648895264, -0.2672882080078125, -0.6321730613708496, 1.630500316619873, 0.33942073583602905, -0.3599257171154022, 0.134063258767128, 0.5618857741355896, -0.23105552792549133, -1.0733962059020996, 0.06088424101471901, -0.2117765247821808, -0.8169887661933899, 1.5055197477340698, 0.7358942031860352, -1.686319351196289, -0.6602771282196045, -0.26053905487060547, -0.24965399503707886, -0.21618497371673584, 0.32104817032814026, -0.4407232999801636, 0.3986701965332031, -0.20483613014221191, 0.30731087923049927, 0.13471762835979462, 0.20215527713298798, 0.8432267904281616, -0.3030945062637329, -0.4194207787513733, -0.19940383732318878, 0.7357323169708252, 0.16373372077941895, 0.932863712310791, -0.41541188955307007, -1.8013993501663208, -0.7957578897476196, -0.4387066960334778, 1.0888571739196777, -0.35923871397972107, -0.060910023748874664, 0.9173436164855957, 1.213676929473877, -0.5355865955352783, 0.3123428225517273, 0.057373568415641785, 0.027718964964151382, -0.22736547887325287, 0.03233705088496208, 0.19572949409484863, 0.4956134557723999, -0.31621551513671875, -0.885918378829956, -0.2583056688308716, 0.10253926366567612, 1.6094715595245361, 0.9866796135902405, 0.9287859201431274, -0.11473755538463593, -0.2648599147796631, -0.33928990364074707, 0.06860632449388504, -0.4892740845680237, 0.05066894739866257, -0.9851511716842651, -0.9023679494857788, 0.2615848183631897, -0.839738130569458, -0.5993518829345703, 0.9736931324005127, 0.11960094422101974, 1.290328025817871, 1.1764025688171387, -0.5299575924873352, -0.6744155287742615, -1.1930632591247559, 0.17338961362838745, -0.9038328528404236, 0.891242504119873, 0.7820644378662109, -0.5080679655075073, 0.005185943096876144, -0.3261072039604187, -0.0778295025229454, 0.607589602470398, -0.23828905820846558, 0.12545445561408997, -1.3180601596832275, -0.22805453836917877, -0.23090046644210815, 1.3586673736572266, -0.145128071308136, 0.10178851336240768, -0.6666096448898315, 0.4152049720287323, 0.2646560072898865, 0.09769643843173981, -0.06310869008302689, 0.5415029525756836, -0.17711667716503143, 0.3507429361343384, -0.03042633645236492, 0.9750691652297974, 1.6646430492401123, -0.2507581412792206, 0.011357501149177551, -0.6197203993797302, 0.09168161451816559, -0.4631008505821228, 0.6262189149856567, 0.07875678688287735, 1.5079765319824219, 0.04744413122534752, 0.47296255826950073, 0.8384949564933777, -0.39088547229766846, -0.23604735732078552, -1.3028615713119507, 0.7018524408340454, 0.08407244086265564, 1.0250022411346436, 0.857512354850769, 0.6280348300933838, 0.919965386390686, -0.5563367605209351, -0.5429325103759766, 0.030737321823835373, 0.7727354764938354, -0.5209876298904419, -0.9664281606674194, -0.5817626714706421, -0.09486021101474762, -0.5747842788696289, -0.5348907113075256, -0.6079621315002441, 0.4294549226760864, -0.4188029170036316, -0.17144452035427094, 0.7980940341949463, -0.1585700809955597, 0.08636390417814255, 0.24120157957077026, 0.069236621260643, 0.2797550559043884, -0.15245111286640167, -0.5533029437065125, -0.26163244247436523, 0.07717747241258621, 0.019484352320432663, -0.80859375, -0.8882457613945007, 0.10972538590431213, -0.2778278589248657, 0.7172932028770447, -1.4092050790786743, -0.05880389362573624, -0.0924503281712532, 0.266842246055603, 0.3994174003601074, 0.08940064907073975, 0.5337808728218079, 0.2809797525405884, 0.25640344619750977, -0.31733548641204834, -0.15137995779514313, 1.0877766609191895, -0.1014244556427002, -0.4185674786567688, -0.478185772895813, -0.29540306329727173, 0.4683187007904053, -0.04922400787472725, -1.064853310585022, 0.32333624362945557, -0.4160933494567871, 0.04762484133243561, 0.08499032258987427, -0.2748970091342926, 1.753896951675415, -0.21159568428993225, 0.3003285527229309, 1.2435123920440674, -0.06786923110485077, -0.9516420364379883, 0.033699363470077515, -0.31986385583877563, -0.3954119086265564, -0.18817780911922455, 0.29346174001693726, 0.2387063205242157, 0.19107437133789062, 1.0306706428527832, 0.048674993216991425, 0.7577798962593079, 0.2375769317150116, -0.5280317068099976, -0.24256345629692078, 0.5710229873657227, 0.6035422086715698, 1.112365484237671, 1.0912785530090332, 0.05534662678837776, -1.1435558795928955, 1.3179187774658203, -0.1636870950460434, 0.9950270652770996, 0.8988133668899536, 0.5397327542304993, 1.8743064403533936, -1.6899757385253906, -0.5477938652038574, 0.4665508270263672, -0.04745018854737282, 0.41547492146492004, 0.4822109639644623, 0.8940441608428955, -1.0445971488952637, -0.16962051391601562, 0.6979880332946777, -0.17585116624832153, 1.0602302551269531, -1.2264518737792969, -0.681685209274292, 0.5352133512496948, -0.4274817109107971, 0.1447707563638687, -0.7188248634338379, -0.4844498336315155, 0.2841556966304779, -0.24460573494434357, 0.3766883611679077, 0.5579487085342407, 0.5313280820846558, 1.4236886501312256, -0.5564324855804443, -1.8200087547302246, 0.24367883801460266, -0.9112961292266846, 0.3921816945075989, 0.1385784149169922, -0.6245990991592407, -0.5543532371520996, -0.936341404914856, -0.43307483196258545, 0.17928341031074524, -0.6921727657318115, -0.12043624371290207, 0.2739863991737366, -1.803160548210144, -0.3036925196647644, -0.4446248412132263, 0.9060081243515015, 1.0245378017425537, -0.10261017084121704, 0.15347515046596527, 0.2683236002922058, -0.4996727705001831, 0.044534239917993546, -0.3944222629070282, -0.453407347202301, 0.17395955324172974, -0.8739523887634277, -1.3112473487854004, 1.198460578918457, 1.3838589191436768, 0.6859289407730103, 0.6257830858230591, 1.0954079627990723, 1.7621724605560303, -0.9875439405441284, -0.8574848175048828, 0.23890262842178345, -1.2473870515823364, 0.7237209677696228, 0.884301483631134, -0.47703003883361816, -0.4608606696128845, 0.0652243122458458, -2.34615421295166, 1.5311203002929688, -0.23118263483047485, -0.6791379451751709, 0.8331739902496338, 0.29339998960494995, 0.3577209413051605, 0.7555747032165527, -1.062574028968811, -0.4946194291114807, 0.32932043075561523, -0.2382548451423645, -1.3393430709838867, 0.12715408205986023, 0.6969781517982483, 0.3816107511520386, -0.18677639961242676, 0.7533884048461914, -0.3246512711048126, -0.35600754618644714, 0.3660813271999359, 0.8685903549194336, 0.3616480827331543, 0.41897720098495483, 0.6910508275032043, -1.6390092372894287, 0.10756506025791168, -0.9665040969848633, 0.4611508846282959, 0.4047558307647705, 0.9700474739074707, 0.4516892731189728, -0.5312753915786743, 0.2767939567565918, -0.33629781007766724, -0.27801215648651123, -0.5852259397506714, -0.6604623794555664, 1.248297929763794, 0.5225236415863037, -0.26330050826072693, 0.1963881254196167, -0.0974431186914444, -0.4956757426261902, -0.1765160858631134, 0.6835345029830933, 0.8355097770690918, -1.6101223230361938, -0.04139198735356331, 0.21413399279117584, 0.04498261585831642, 0.04212818667292595, 0.37688148021698, -0.18094095587730408, -0.9104511141777039, -1.2632946968078613, -0.47511065006256104, -0.2291174978017807, 0.9135290384292603, -1.0756624937057495, 0.05854722857475281, 0.09785787016153336, -1.5911662578582764, 0.9071666598320007, 0.1764041632413864, -1.4387246370315552, -0.6223253607749939, -1.345942735671997, 1.3033447265625, 0.15334388613700867, -0.678041398525238, 0.10454308241605759, 0.7761340141296387, -0.6646464467048645, -0.21194103360176086, -1.4852968454360962, 0.3325389623641968, 1.3061563968658447, 1.4266653060913086, -0.8625929355621338, 0.7221630215644836, 0.5505609512329102, -0.8708725571632385, -0.38409367203712463, 0.09402840584516525, -0.9700216054916382, 0.16439801454544067, 0.4127539098262787, 0.0002940148115158081, 0.8436190485954285, 1.4283369779586792, 0.608986496925354, 1.0012577772140503, -0.23486241698265076, 1.0727403163909912, -0.7470324039459229, -0.6315296292304993, -0.3358517289161682, 0.2534390091896057, -1.01334547996521, -0.5714022517204285, 0.5597259998321533, -0.47596514225006104, 0.21403133869171143, 0.8863956928253174, 1.011550784111023, -0.35147756338119507, 0.2097262293100357, -0.02310197800397873, 0.24344561994075775, -0.2720857560634613, 0.9712880849838257, 0.057004306465387344, -0.916378378868103, 0.3280201852321625, 0.4189695715904236, 0.49680137634277344, -0.7569389343261719, 0.44042065739631653, -0.26375114917755127, 0.7501507997512817, -0.22929587960243225, 0.3795287013053894, 0.4535359740257263, -0.5410014986991882, -0.9790940284729004, 0.9718509316444397, 1.2997626066207886, 0.0954919382929802, 0.16572122275829315, 0.6527629494667053, 0.2698563039302826, 0.6490429639816284, -0.3613772690296173, 0.1459839940071106, -0.7643768787384033, 0.7656019926071167, -0.19806718826293945, 0.21667781472206116, -0.8053263425827026, 0.9620238542556763, -0.13323846459388733, 0.20873305201530457, 0.955678403377533, -0.05957761034369469, -0.4986976385116577, 1.06765878200531, 0.870572566986084, -0.707257091999054, -0.04847431555390358, 0.3920741081237793, 0.9384361505508423, 0.08401723206043243, 0.29838305711746216, 0.34984272718429565, -0.6246862411499023, 0.24985331296920776, 0.23704053461551666, -0.6090519428253174, -0.029928058385849, -0.7799083590507507, -1.3316314220428467, -0.3538527190685272, -0.4044915437698364, -0.9206294417381287, 0.09231282770633698, -1.0612173080444336, -1.0125300884246826, -0.1554190069437027, -0.1065736934542656, 0.3126957416534424, -0.8828506469726562, 0.3094165027141571, 0.16145539283752441, 0.3677976727485657, 1.4165229797363281, -0.21929650008678436, 1.3050481081008911, 0.08877578377723694, 0.3745371699333191, -0.1291530579328537, 0.5614548921585083, -0.22029918432235718, -0.07717772573232651, -0.23713883757591248, -0.17153535783290863, -0.6595472693443298, -0.6497030258178711, -0.23779669404029846, 0.7158529162406921, 0.011653341352939606, 0.3756124973297119, -0.14724257588386536, -1.2154943943023682, -0.2925964593887329, 1.034848690032959, 0.8928430080413818, -0.7709683179855347, -0.39653193950653076, -0.05797835439443588, -0.08713552355766296, 0.1959216296672821, 1.0834019184112549, -0.465420126914978, 0.2913420498371124, 0.4256068468093872, -0.2267276495695114, -0.8614752888679504, -0.5339318513870239, 0.9001688957214355, -0.8878641128540039, 0.898873507976532, -1.1091172695159912, 0.08663966506719589, -0.23970553278923035, -0.5907410383224487, -0.07383587956428528, 0.45539039373397827, -0.3320719301700592, 0.48707836866378784, -0.47461336851119995, -0.8518455028533936, -0.4573342800140381, 0.3231770098209381, 0.22037914395332336, -0.3394518494606018, 0.17118215560913086, 0.2435121238231659, -0.8641175031661987, 0.2630324065685272, 0.2433210164308548, 0.3097161054611206, 0.7298387289047241, 2.482536792755127, 1.9640569686889648, -0.09721018373966217, -0.5712043046951294, -0.15711840987205505, 1.1275897026062012, -1.2058095932006836, -0.6734203696250916, -1.2192888259887695, -0.13362330198287964, -0.10074568539857864], [-0.313429057598114, 2.0619475841522217, -1.6438801288604736, -0.7020805478096008, 0.9924013614654541, 1.0293117761611938, 0.11340221762657166, 0.3546886444091797, -0.2271609604358673, -0.11466214805841446, -0.6334972977638245, 0.763297438621521, 0.3988954424858093, 1.584886908531189, 0.08699864149093628, 0.2654877305030823, 0.7969266176223755, -0.7910923957824707, 0.8219971060752869, 0.7335984706878662, -0.35230553150177, -1.3302156925201416, 0.0004182383418083191, 0.2867591977119446, 0.7169680595397949, 0.444790780544281, -1.5703094005584717, -0.8762032985687256, -1.2290198802947998, -0.7468985319137573, 1.433976173400879, -0.46115735173225403, -0.17791274189949036, 0.6043232679367065, -1.8482317924499512, -0.7761828303337097, 1.2582943439483643, 0.42930012941360474, 0.5004251599311829, 0.7685543894767761, 1.7011988162994385, 0.7497360706329346, -0.2295914739370346, -0.9723923206329346, 0.38718748092651367, 0.7245731949806213, 0.07043836265802383, -1.7259758710861206, 0.46378690004348755, -0.5161730051040649, 0.8098098635673523, 0.19819030165672302, 0.7427690029144287, 0.3948494791984558, 1.4728577136993408, -0.7673783302307129, 0.44834890961647034, -0.10337170958518982, 0.24875542521476746, -0.03026377409696579, 1.0269131660461426, 0.3450585603713989, -0.6925882697105408, 0.45037877559661865, 0.535233736038208, 0.21474245190620422, 0.11643505096435547, 0.0039047934114933014, -0.2686237394809723, 0.9003859758377075, 0.5196466445922852, -0.5640873908996582, -0.9074615240097046, 0.7808573842048645, -0.8722415566444397, -0.138832688331604, 0.3203877806663513, 0.08610162138938904, -0.06579214334487915, 1.5993677377700806, -0.8129985332489014, -0.25443628430366516, -0.17607206106185913, -0.07231799513101578, -0.10203565657138824, 0.4801342189311981, -0.21038207411766052, -0.3068665862083435, 0.03907935321331024, 1.7154685258865356, -0.11524076014757156, 0.21132412552833557, -0.08006192743778229, -0.09982872754335403, -0.5134068727493286, -0.9717502593994141, -0.2589816153049469, -0.649154543876648, -0.12074640393257141, -0.2786743640899658, -0.8896294832229614, -0.2519279718399048, 0.3424031138420105, 0.025627030059695244, 0.46479958295822144, 1.0327892303466797, 0.22110626101493835, -1.3665632009506226, -0.16419097781181335, -0.05446717143058777, 0.34655773639678955, 0.6088908910751343, -0.48844435811042786, -1.194032907485962, -0.548704206943512, 0.49066677689552307, 0.4469781219959259, -0.62669837474823, 0.2677454352378845, 0.6644852161407471, -0.5115829706192017, -0.6216199994087219, -0.6285271644592285, 0.6167638301849365, 0.5449770092964172, -0.13651326298713684, -1.1514332294464111, 0.0768975019454956, -0.2604959309101105, 0.22023235261440277, 0.3112662434577942, -0.3775036633014679, -0.6165748834609985, 0.5476080775260925, -0.7418261766433716, 1.3446924686431885, 0.23811638355255127, -0.9660003781318665, 0.5518860220909119, 0.31736379861831665, 0.4212457537651062, -0.12483858317136765, 0.14749303460121155, -0.6679316163063049, 0.2324124276638031, -0.9571316242218018, -0.0377245657145977, 0.3453245162963867, -1.2288734912872314, -0.024945437908172607, -1.323582649230957, 0.7349157333374023, -0.2951088547706604, 0.6596570014953613, -0.12812209129333496, 0.819026529788971, 0.6318169832229614, 0.438997745513916, 0.2745579481124878, 0.5159322023391724, 0.8932040929794312, 0.2768362760543823, -0.25683310627937317, 1.140678882598877, 0.49394339323043823, -0.031914204359054565, 0.37551724910736084, 0.03571205586194992, 0.10548325628042221, 0.9378992319107056, -0.41864752769470215, -0.07030664384365082, -0.20154862105846405, 0.26990625262260437, 0.1599990725517273, -1.0587983131408691, 0.77916419506073, -0.5437319278717041, -0.7867087125778198, -1.5922391414642334, 0.8253648281097412, -0.3432321548461914, 0.3906155526638031, 0.10852963477373123, 0.4784988760948181, -0.30099350214004517, -0.19464005529880524, 0.5724337100982666, -0.9451744556427002, -0.16530196368694305, -0.5642826557159424, -0.10303410142660141, -1.5715852975845337, -0.20552676916122437, -0.5599180459976196, -1.4197790622711182, 0.20138408243656158, 0.12473499774932861, -0.06040329486131668, 0.2741701304912567, 0.19332993030548096, -0.4047200679779053, -1.760482907295227, -0.49252092838287354, -0.5999636054039001, 0.39486029744148254, -0.47342848777770996, 0.5891891717910767, -1.4011414051055908, 0.09116717427968979, 1.6035170555114746, 0.3847833275794983, -0.9511250257492065, 0.6409792900085449, -0.34605929255485535, -1.5094094276428223, 0.7690709829330444, -0.5540684461593628, -0.4460715651512146, 0.3307359218597412, 0.5760705471038818, 0.15736600756645203, 0.46381306648254395, 0.22829541563987732, 0.7016818523406982, -0.04065420851111412, -0.8800804615020752, -1.0352323055267334, -1.0799944400787354, 0.09919091314077377, -0.27634960412979126, -1.438000202178955, 1.1498323678970337, 0.40608343482017517, -0.6431445479393005, 0.23677854239940643, 0.12480642646551132, -0.07012535631656647, 0.5170238018035889, 0.7932855486869812, 0.25746676325798035, 1.1437950134277344, -0.6629123091697693, -0.19166463613510132, -0.5740748643875122, -0.1687241643667221, 1.3095943927764893, -0.626023530960083, -0.026038847863674164, 1.2902748584747314, 0.3651964068412781, 0.3009333312511444, -0.17548388242721558, 0.07513699680566788, 0.240351140499115, -1.256782054901123, -0.5642254948616028, -0.2806832194328308, -0.5092381238937378, 1.0210685729980469, 0.8965719938278198, -1.6012256145477295, -0.5922568440437317, 0.21759697794914246, 0.3667614459991455, -0.6276648044586182, -0.08067440986633301, -0.3939770460128784, 0.8276404142379761, 0.18408408761024475, 0.08394016325473785, 0.8795009851455688, 0.17704874277114868, 0.5374059677124023, -0.26822394132614136, -0.3752323389053345, -0.4862416386604309, 1.103912115097046, 0.3720426857471466, 0.554722785949707, -0.6675158739089966, -0.4693284034729004, -0.7615646123886108, 0.27690738439559937, 0.982189953327179, -0.2872737646102905, -0.3475540280342102, 0.19588671624660492, 0.8278522491455078, -0.5920459032058716, -0.5142406225204468, -0.23906171321868896, -0.629593014717102, -0.34937840700149536, 0.2334793508052826, 0.17053714394569397, 0.3527071475982666, -0.1208585575222969, -0.3519797623157501, 0.32907596230506897, 0.40535157918930054, 1.215832233428955, 0.5010305047035217, 0.3922194540500641, -0.47790706157684326, -0.15090370178222656, -0.8599817752838135, 0.060088325291872025, -1.286198616027832, -0.12196668982505798, -0.9920327663421631, -0.8770294785499573, 0.5442737936973572, -0.7283804416656494, 0.41984885931015015, 0.6978136301040649, -0.1812288910150528, 1.033979058265686, 0.9554604291915894, -0.17498090863227844, -0.727864146232605, -0.8761160969734192, -1.1621384620666504, -0.650137722492218, 0.8515282869338989, 0.9930927753448486, -0.4996825158596039, 0.10010506957769394, -0.2796390652656555, -0.1655256599187851, 0.9182089567184448, -0.09863147139549255, 0.1994606852531433, -0.7677664756774902, -1.0434308052062988, -0.04360578581690788, 1.1389018297195435, 0.6641258001327515, -0.010016925632953644, -1.1576411724090576, 1.060009479522705, 0.5800502300262451, -0.1491919457912445, -0.13002648949623108, 0.8023161888122559, 0.12705853581428528, 0.22595176100730896, 0.23465847969055176, 0.7932525873184204, 0.8907331228256226, -0.667507529258728, -0.009041259996592999, -0.02803116664290428, 0.07473795115947723, -0.17210644483566284, 0.35979437828063965, -0.14214590191841125, 1.0556683540344238, 0.4784977436065674, 0.09245369583368301, 1.26925528049469, -0.8048478364944458, -0.2486896812915802, -1.5957276821136475, 0.7431744337081909, 0.37947964668273926, 0.8539391756057739, 0.9540431499481201, 0.1686255931854248, 0.40413767099380493, -0.7264479398727417, -0.4094638228416443, 0.1654389202594757, 0.7075956463813782, 0.2126031219959259, -1.4456157684326172, -0.5363039970397949, -0.643963098526001, -0.4537569284439087, -0.7589924335479736, -0.9496037364006042, -0.29528725147247314, -0.9774665832519531, -0.5331805348396301, 1.452692985534668, 0.021962206810712814, -0.10679471492767334, -0.49233970046043396, 0.7112727165222168, 0.3870534598827362, -0.6338708400726318, 0.21578188240528107, 0.22694900631904602, 0.11151576042175293, 0.17192068696022034, -0.5983383655548096, -0.925180971622467, -0.15236854553222656, -0.636616051197052, 1.2833914756774902, -1.681765079498291, -0.011369969695806503, 0.23059381544589996, 0.7048095464706421, 0.09878204762935638, -0.11606910079717636, 0.7360090017318726, 0.28666892647743225, 0.28390389680862427, -0.1042487695813179, -0.4093056321144104, 1.0838768482208252, 0.2798556685447693, -0.7461439967155457, -0.4591221809387207, -0.6955571174621582, -0.028639689087867737, -0.22410047054290771, -0.13966482877731323, 0.32218021154403687, -0.5494301319122314, 0.036981597542762756, 0.276885449886322, 0.3017841875553131, 1.1082016229629517, -0.36466529965400696, -0.02397506684064865, 0.5566259622573853, -0.26704221963882446, -0.5673829913139343, 0.7032003402709961, -0.15692582726478577, -0.5600675940513611, 0.14738476276397705, 0.6927540302276611, 0.5755297541618347, -0.12945297360420227, 0.010762542486190796, 0.3836057782173157, 0.8744164705276489, 0.3225066363811493, -0.5221636891365051, 0.22656293213367462, 0.8307232856750488, 0.5911942720413208, 0.8845669627189636, 0.5770654678344727, 0.1548423022031784, -1.385199785232544, 1.6552064418792725, -0.5803042054176331, 0.37258821725845337, 0.7468138933181763, 0.5638844966888428, 1.673830270767212, -1.6736595630645752, -0.3442743122577667, 0.07007266581058502, -0.010070476680994034, -0.3221794068813324, 0.2587890028953552, 0.3765805959701538, -0.9039292931556702, 0.17760702967643738, 0.4440588355064392, 0.5003173351287842, 0.757596492767334, -0.6707533597946167, 0.5908069610595703, 0.2900041341781616, -0.5425963401794434, 0.4374939203262329, -0.6290026307106018, 0.08109559118747711, 0.41135692596435547, 0.1383519321680069, -0.2694642245769501, 0.23379699885845184, 0.07084396481513977, 1.2662594318389893, -1.0592410564422607, -1.1999900341033936, 0.7179624438285828, -1.0825324058532715, 0.13200466334819794, -0.3315347731113434, -0.37226402759552, -0.4557255506515503, -0.6043640971183777, -0.3180258870124817, 0.7279444932937622, -0.318456768989563, 0.1803857684135437, -0.21792754530906677, -1.4971894025802612, 0.028972625732421875, -0.702386200428009, 0.5991611480712891, 1.0107287168502808, 0.6901758909225464, -0.06252192705869675, -0.5286067724227905, -0.5590239763259888, 0.28051507472991943, 0.10791224241256714, -0.09424726665019989, -0.32124781608581543, -1.2204363346099854, -1.8089786767959595, 0.7505747675895691, 1.0609142780303955, 0.8297665119171143, 0.6565217971801758, 1.1294116973876953, 1.2263269424438477, -0.3080695867538452, -0.5219084024429321, 0.4225005507469177, -0.815601110458374, -0.25659894943237305, 1.3419207334518433, -0.9383042454719543, -0.27587631344795227, -0.5316579341888428, -1.8968992233276367, 1.8928730487823486, 0.9985679388046265, -1.017707347869873, 1.1214756965637207, 0.4344625771045685, 0.21104875206947327, 0.6676836013793945, -0.8332676887512207, -0.13689859211444855, 0.15263032913208008, -0.4668514132499695, -1.1421728134155273, 0.22615155577659607, 0.6578074097633362, 0.20906534790992737, -0.11747682839632034, 0.8108766078948975, 0.01476137526333332, -0.4817166030406952, 0.2721540629863739, 0.6252723336219788, 0.6970513463020325, 0.5473470687866211, 0.5834879279136658, -1.558304786682129, 0.08828972280025482, -0.03867319971323013, -0.4794504642486572, 0.3859242796897888, 1.1612831354141235, 1.1270573139190674, 0.23040947318077087, 0.1925143599510193, -0.596123218536377, -0.6733921766281128, -0.9953253865242004, -1.0852872133255005, 0.8580402135848999, 0.2684706151485443, -1.0192177295684814, 0.4013711214065552, -0.30459877848625183, -0.7177866697311401, -0.2347734272480011, 0.4343249201774597, 0.8731064796447754, -1.2779569625854492, -0.5347885489463806, -0.25301942229270935, -0.5146830081939697, -0.24772506952285767, -0.011965692043304443, 0.6133013963699341, -0.9263218641281128, -1.3949227333068848, -0.9753000140190125, -0.4398413300514221, 0.7980135679244995, -0.5835484266281128, -0.09717147797346115, -0.16252978146076202, -1.3633842468261719, 0.809964656829834, -0.12824417650699615, -1.509840726852417, -0.272632360458374, -1.402662754058838, 0.46869173645973206, -0.08736086636781693, -0.004432894289493561, -0.429198294878006, 0.5293612480163574, -0.4895390570163727, -0.837984025478363, -1.3759382963180542, -0.21279305219650269, 0.5316997766494751, 0.7300763130187988, -0.7520811557769775, 1.091896891593933, -0.22644370794296265, -0.8572598695755005, 0.49901217222213745, 0.6184987425804138, -0.1544286012649536, 0.515988290309906, 0.44951215386390686, 0.3957074284553528, 0.421561598777771, 1.181994915008545, 0.9294760823249817, 1.0369867086410522, -0.01204635575413704, 0.2596770226955414, 0.2803198993206024, -0.29691505432128906, -0.2909027338027954, 0.28360608220100403, -1.303228497505188, -0.2491745948791504, -0.10502570867538452, 0.084719717502594, 0.07200935482978821, 0.6491044163703918, 0.39169323444366455, -1.8903138637542725, 0.3533051311969757, 0.06215329468250275, 0.3949897885322571, -0.08219338953495026, 0.4281858503818512, 0.2872985303401947, -0.360710084438324, 0.5650988221168518, 0.13209684193134308, -0.028785325586795807, -0.734120786190033, -0.14375907182693481, -0.10576552152633667, 0.12909147143363953, 0.4279865026473999, 0.3777327537536621, 1.0961942672729492, -0.25302883982658386, -0.25495201349258423, 1.032170295715332, 0.6722867488861084, 0.14483121037483215, -0.5926603078842163, 0.7261401414871216, 0.24816225469112396, 0.23666182160377502, 0.05496593564748764, 1.0002574920654297, -0.7936339378356934, 1.0283845663070679, -0.8869547843933105, 0.1859009563922882, -0.5967741012573242, 0.32147759199142456, -0.48027798533439636, 0.52275550365448, 1.0633745193481445, -0.17060725390911102, -0.35685330629348755, 1.0198109149932861, 0.6433915495872498, -0.3657606840133667, 0.5080462694168091, 0.7264179587364197, 0.42934033274650574, 0.12234579026699066, 0.13789813220500946, 0.12601037323474884, -0.4687989354133606, -0.1792377233505249, 0.11532779037952423, -0.010756321251392365, -0.6382907629013062, -0.7840422987937927, -0.8382916450500488, 0.39448267221450806, -0.5982035398483276, -0.1088045984506607, 0.2698861360549927, -0.852375328540802, -1.2811181545257568, 0.25272825360298157, -0.20146988332271576, -0.06206858903169632, -0.17157232761383057, -0.0835321843624115, -0.10214215517044067, -0.01882162317633629, 0.7337626218795776, -0.33166491985321045, 1.386457920074463, 0.0630614161491394, 0.27447739243507385, -0.40492764115333557, 0.7005345821380615, 0.8054403066635132, 0.5998573899269104, 0.2542964220046997, -0.3479350209236145, 0.14223894476890564, -1.0068504810333252, -0.1930769681930542, 0.42818862199783325, -0.14006537199020386, -0.05525791272521019, 0.2681553065776825, -0.6593310236930847, 0.1619120091199875, 0.330857515335083, 0.8617736101150513, -0.7726308703422546, -0.7550184726715088, -0.7207086086273193, 0.2498907744884491, -0.17368373274803162, 0.5578446388244629, -0.4891221523284912, 0.46012014150619507, -0.20638057589530945, -0.31131020188331604, -0.35403597354888916, 0.0031201988458633423, 0.2566264569759369, -0.29603782296180725, 1.1444101333618164, -1.0284037590026855, -0.29101285338401794, -0.26152968406677246, -0.8239071369171143, 0.5018787980079651, 0.19862444698810577, 0.3197501301765442, -0.043917857110500336, -0.8575491905212402, -0.7316417694091797, -0.834903359413147, 0.3695659637451172, 0.22387152910232544, -0.0474943146109581, 0.707089900970459, -0.1421802043914795, -0.8797369003295898, 0.48538869619369507, -0.061235442757606506, 0.3399786353111267, 0.15645091235637665, 1.5426479578018188, 0.9384953379631042, -0.31807470321655273, 0.004670382011681795, -0.7740336656570435, 0.7205505967140198, -0.8719479441642761, -1.1713168621063232, -1.1163748502731323, -0.23914404213428497, 0.041632138192653656], [0.06302879005670547, 1.5810799598693848, -2.547773599624634, -0.7048175930976868, 1.1163562536239624, 1.0564939975738525, 0.359237402677536, 0.6258398294448853, 0.2540900707244873, 0.17656663060188293, -0.7268428802490234, 0.6663694381713867, 1.548815131187439, 1.446771264076233, 0.08166040480136871, -0.4435623288154602, 0.493017315864563, -0.5620646476745605, 0.4379574954509735, -0.10182593017816544, 0.04453739523887634, -1.0852458477020264, -0.3660244345664978, 0.3011578917503357, 0.5347166657447815, 0.22218865156173706, -2.5698673725128174, -0.2976894676685333, -0.7821974754333496, -0.7226089835166931, 1.0336635112762451, -0.32542234659194946, 0.12113162130117416, 0.29169073700904846, -1.7568509578704834, -0.17026479542255402, 0.38759705424308777, 0.5432901382446289, 0.9338351488113403, 0.5379208326339722, 0.6598924994468689, 0.7121576070785522, 0.011874510906636715, -0.42002686858177185, 0.671343207359314, 0.8334624767303467, 0.4102237820625305, -1.327160358428955, 0.637908399105072, -0.7478224039077759, 1.2157623767852783, 0.6801097393035889, 0.11242446303367615, 0.8085043430328369, 1.212679147720337, -0.8499155640602112, 0.3524325489997864, -0.09861806035041809, 0.90219646692276, -0.34040597081184387, 1.175361156463623, 0.2033247947692871, 0.00717303529381752, 0.5089775919914246, 0.6139856576919556, 0.2610776424407959, 0.3349723219871521, 0.4019765555858612, -0.44445890188217163, -0.04915976524353027, 0.1553785502910614, -0.10684004426002502, -0.3012000620365143, 1.2355329990386963, -0.07823862880468369, -0.06798171252012253, 0.16882450878620148, 0.13770760595798492, -0.21108105778694153, 1.0288540124893188, 0.2114519476890564, -0.452384889125824, 0.6511659622192383, -0.17966651916503906, 0.07061414420604706, -0.11766655743122101, -0.7467617988586426, -0.4395231008529663, -0.01800733059644699, 1.7864068746566772, -0.6531015634536743, 0.31341803073883057, 0.3449150621891022, 0.13852578401565552, -0.3043944835662842, -0.7490850687026978, -0.3434036672115326, -0.7015185356140137, -0.8124659061431885, -0.4123782515525818, -0.511814534664154, 0.12088200449943542, 0.137766033411026, -0.052626267075538635, 0.782138466835022, 1.1227877140045166, -0.007493080571293831, -0.9439713954925537, -0.2938861846923828, 0.18577364087104797, 0.43735557794570923, 1.0535351037979126, -0.7110739946365356, -1.1639280319213867, -1.0101908445358276, 0.4567599892616272, -0.18439872562885284, -0.41539978981018066, 1.001447319984436, 0.44626644253730774, -0.8815231323242188, -0.7965334057807922, -1.305553674697876, 0.2298884093761444, 0.731744647026062, 0.3048320412635803, -0.6812575459480286, 0.5075215101242065, -0.5973641872406006, 0.23320476710796356, 0.35839465260505676, -0.022753460332751274, -0.447261780500412, 1.0614013671875, -0.6171931624412537, 1.601369857788086, -0.5917543172836304, -1.3519929647445679, 0.03914322704076767, 0.6877294778823853, 0.36366403102874756, -0.5267021059989929, -0.003347824327647686, -0.9389835000038147, -0.5102895498275757, -0.666688859462738, 0.5117982029914856, -0.36421459913253784, -1.2653319835662842, -0.21233907341957092, -0.6419076919555664, 0.7780073285102844, -0.3880997598171234, 1.2622181177139282, -0.15935415029525757, 0.521913468837738, 0.2112390547990799, 0.5349973440170288, 0.4907747507095337, 0.49705982208251953, 1.0866038799285889, -0.4521218538284302, -0.08501331508159637, 0.7493242025375366, 0.3172975480556488, -0.009500803425908089, 0.5701684951782227, 0.23371635377407074, 0.14448343217372894, 0.9023072719573975, -0.21541020274162292, -0.09259013831615448, -0.2764430344104767, 0.08312316983938217, -0.31071823835372925, -1.3331583738327026, 0.4273020625114441, -1.4711540937423706, -0.21891522407531738, -1.373927354812622, 0.7129738926887512, -0.4075831472873688, 0.04644783213734627, -0.5566048622131348, 0.47404909133911133, -0.6159344911575317, -0.26750361919403076, 0.15685728192329407, -0.7657198905944824, -0.8328298926353455, -1.1320164203643799, -0.6624776721000671, -0.8711118698120117, -0.6002619862556458, -0.2638748288154602, -1.2439978122711182, 0.45646941661834717, -0.23098957538604736, -0.23338600993156433, 0.4419724643230438, -0.3170848786830902, 0.10367451608181, -1.3174070119857788, -0.3515053391456604, -0.7468811273574829, 0.4762895703315735, 0.3324304223060608, 0.46200039982795715, -1.7550363540649414, -0.11322969198226929, 0.8817402720451355, 0.4516890048980713, -0.8543530702590942, 0.02384381741285324, -0.2985606789588928, -0.10010071098804474, 0.5152983665466309, -0.6550663709640503, -0.09242168068885803, -0.09025523066520691, 0.8155725002288818, 0.5890768766403198, 0.851283073425293, -0.35663557052612305, 0.6960186958312988, 0.3584235608577728, -1.0616024732589722, -0.5794562697410583, -1.4147310256958008, 0.44218093156814575, -0.8267055749893188, -0.8331559300422668, 0.9681790471076965, 0.45244336128234863, -0.002029683440923691, 1.0700082778930664, -0.01129862666130066, 0.18290889263153076, 0.9866378307342529, 0.8504412174224854, -0.0633263885974884, 1.0839686393737793, -1.507347583770752, 0.02032112516462803, -0.5352520942687988, -0.16576631367206573, 0.11477211117744446, -0.4529673457145691, 0.15924113988876343, 0.9542561769485474, 0.19840466976165771, 0.10443119704723358, 0.19909332692623138, -0.1863202005624771, 0.40181609988212585, -0.40663430094718933, -0.09292787313461304, 0.011683665215969086, -0.3567757308483124, 1.6185023784637451, 0.71397864818573, -1.4393062591552734, 0.3064887523651123, 0.3876507878303528, 0.81828773021698, -0.25564032793045044, -0.03730739280581474, -0.9030172824859619, 0.14458486437797546, -0.23646026849746704, -0.02498778887093067, 0.8146805167198181, 0.3486816883087158, 0.4989777207374573, 0.005855991505086422, -0.17432114481925964, -0.5821582078933716, 0.4390276372432709, -0.20182457566261292, 5.08967787027359e-05, -0.6812414526939392, -0.364929735660553, -1.0808241367340088, 0.6427150964736938, 0.7550023794174194, -0.6706652045249939, 0.06209617853164673, 1.5277113914489746, 0.4745085537433624, -0.5126086473464966, -0.44247204065322876, -0.019787343218922615, -0.433377742767334, -0.14235499501228333, -0.08624359965324402, 0.399229496717453, 0.8182481527328491, -0.24276426434516907, -0.46536582708358765, -0.15008431673049927, 0.5458735823631287, 0.7473909854888916, 0.6367937922477722, 0.9870069026947021, 0.009176941588521004, -0.10744915902614594, -0.1212521344423294, -0.11576521396636963, -1.2359155416488647, -0.23148106038570404, -1.2721562385559082, -1.079455852508545, 0.27781835198402405, -0.787779688835144, 0.1382071077823639, 0.10504736751317978, 0.1500447392463684, 0.7859814167022705, 1.4073669910430908, 0.10267491638660431, -0.4552253782749176, -1.2905938625335693, -1.0811370611190796, -1.1536180973052979, 1.0686242580413818, 0.9212915897369385, -0.6895719170570374, 0.3287242650985718, -0.5794717073440552, -0.9361544847488403, 0.45934271812438965, -0.3181362748146057, -0.32613980770111084, -1.4182831048965454, -0.9066661596298218, -0.21719461679458618, 0.934666097164154, 0.6743501424789429, -0.7811659574508667, -1.0710091590881348, 0.4516238868236542, 0.8992621302604675, 0.7404224872589111, -0.15968023240566254, 0.9426803588867188, -0.10177198797464371, 0.43817758560180664, 0.23349271714687347, 0.5168454647064209, 0.7111779451370239, -0.6407278180122375, 0.27151361107826233, -0.33062663674354553, -0.13783128559589386, -0.4663196802139282, -0.09731393307447433, 0.005985185503959656, 0.9731634855270386, 0.6743013858795166, 0.14883364737033844, 1.2765352725982666, -0.7362081408500671, -0.2737559378147125, -2.302825689315796, 1.260906457901001, 0.07261191308498383, 0.8802507519721985, 0.8729168176651001, 0.582073450088501, 0.2745867669582367, -0.6623633503913879, -0.47850775718688965, 0.6945138573646545, 0.741890549659729, 0.21366557478904724, -0.7855345606803894, -0.9319814443588257, 0.020646363496780396, -0.1700098216533661, -0.8420947790145874, -0.868812620639801, 0.45164957642555237, -0.5634374618530273, -0.6084246635437012, 0.9150412082672119, 0.05136552453041077, -0.18058231472969055, -1.0001002550125122, 0.16193684935569763, 0.33647188544273376, -0.6063869595527649, 0.7439746856689453, -0.2903686761856079, -0.04342949390411377, 0.19433334469795227, -0.6158973574638367, -1.2854382991790771, -0.1260145902633667, -0.20723818242549896, 0.3519536852836609, -1.2257461547851562, 0.17559359967708588, 0.2823764383792877, 0.44871097803115845, -0.267255961894989, 0.21528327465057373, 0.26590585708618164, 0.5370950698852539, 0.3098846673965454, 0.3295948803424835, -0.28377893567085266, 0.5912872552871704, 0.3012089133262634, -0.7696020603179932, -0.20276561379432678, 0.1218704879283905, 0.8119768500328064, 0.4011841416358948, -0.6888513565063477, 0.04985317587852478, -0.5558261275291443, -0.32590436935424805, 0.14898191392421722, 0.3703421354293823, 1.4361815452575684, 0.23957666754722595, -0.3720105290412903, 1.098351001739502, -0.5741312503814697, -0.22132794559001923, 1.0011844635009766, -0.26249220967292786, -1.0037797689437866, -0.01880125142633915, 0.4430689811706543, 0.8527801036834717, 0.49495941400527954, 0.46674928069114685, 0.32665807008743286, 0.7444477081298828, 0.824386477470398, -0.5950815677642822, 0.05878797173500061, 0.5412498712539673, 0.5795071125030518, 0.6066585779190063, 0.8801976442337036, 0.513961672782898, -0.9405758380889893, 1.1879446506500244, -0.7920940518379211, 0.2986418306827545, 0.6477335691452026, 0.6910160779953003, 1.496293544769287, -1.2079907655715942, -0.5785872936248779, 0.5016639232635498, -0.0896160900592804, 0.44674474000930786, 0.12364131957292557, 0.9765061736106873, -1.1848845481872559, 0.8248332738876343, 0.5339822769165039, 0.42259782552719116, 0.44734612107276917, -1.0116448402404785, 0.21198566257953644, 0.3218647241592407, -0.40707170963287354, 0.4996899366378784, -0.8164947032928467, -0.31524860858917236, 0.5657600164413452, -0.057925812900066376, -0.4757556617259979, 0.0452752448618412, 0.43852150440216064, 1.26719069480896, -0.3748650550842285, -1.1620736122131348, 0.6261917352676392, -1.4362094402313232, 0.30854618549346924, -0.03550161421298981, -0.47997623682022095, 0.06103849783539772, -0.9599719643592834, -0.15668709576129913, 0.48557713627815247, -0.7225922346115112, 0.06791618466377258, -0.7132881283760071, -1.0740017890930176, -0.6473822593688965, -0.43452155590057373, 0.6628670692443848, 0.6700294017791748, 0.4565924406051636, -0.6052903532981873, -0.4218268394470215, -0.05550821125507355, 0.11221477389335632, 0.19724813103675842, 0.30921441316604614, -0.4821644425392151, -0.9392597079277039, -1.3050793409347534, 1.4835612773895264, 1.1056787967681885, 0.5723803043365479, 0.2073407769203186, 1.164896845817566, 1.1664413213729858, -0.18621881306171417, -0.6782375574111938, 0.4097698926925659, -0.8900096416473389, 0.6630274057388306, 1.0373890399932861, -0.48097193241119385, -0.23466208577156067, 0.4730511009693146, -2.150038242340088, 1.5363218784332275, 0.36047542095184326, -1.5600931644439697, 0.8584118485450745, 0.3286333680152893, 0.07651454210281372, 0.6989399194717407, -1.3990545272827148, -0.22559364140033722, 0.7989208102226257, -0.13031119108200073, -0.7544790506362915, -0.24902763962745667, 1.0545610189437866, 0.47329097986221313, -0.3836734890937805, 0.8572639226913452, 0.06032521650195122, -0.44362956285476685, 0.09016211330890656, 0.7822492718696594, 0.07689519226551056, 0.9479021430015564, 0.6574292778968811, -0.9287703037261963, 0.3383757472038269, -0.11984643340110779, 0.00816955417394638, 0.36872410774230957, 0.7726628184318542, 0.46212637424468994, -0.5851451754570007, -0.2814754843711853, -0.5562542080879211, -0.21849845349788666, -0.8080810308456421, -0.3259902000427246, 1.2343233823776245, -0.25878965854644775, -0.5133697986602783, 0.6265444159507751, 0.12159906327724457, -0.001678120344877243, 0.1755305826663971, 0.36761680245399475, 0.859397292137146, -1.5586872100830078, -0.35705268383026123, -0.30860912799835205, 0.1695401668548584, -0.2567705810070038, -0.22674429416656494, 0.35300230979919434, -0.7757667303085327, -1.575768232345581, 0.3900138735771179, -0.871370792388916, 0.9005365371704102, -0.2605944871902466, 0.20284751057624817, -0.06866919994354248, -1.5323426723480225, 0.6888552308082581, 0.7134236693382263, -1.414198398590088, -0.8554553389549255, -0.8932640552520752, 0.30759286880493164, -0.022845640778541565, -0.2533841133117676, -0.4321663975715637, 0.16599583625793457, -1.149169921875, -0.7132250070571899, -1.3229202032089233, -0.33837008476257324, 0.18456634879112244, 0.7518039345741272, -0.42671269178390503, 0.5144045352935791, 0.03980163484811783, -0.18178755044937134, -0.5414225459098816, 0.5828409194946289, -0.7394506931304932, 0.3123416304588318, 0.14987018704414368, -0.47461843490600586, 0.5079659223556519, 1.047713041305542, 0.3628331124782562, 0.6717711091041565, -0.7831061482429504, 0.19389724731445312, -0.025724487379193306, -0.8749932646751404, -0.658079981803894, 0.5324987769126892, -0.4762488305568695, -0.1679391711950302, -0.001140981912612915, 0.04486094415187836, -0.2407718300819397, 0.903549313545227, 1.0478583574295044, -1.4600634574890137, 0.26977550983428955, -0.18842488527297974, 0.25412309169769287, -0.2273596227169037, 0.18331721425056458, 0.0644114762544632, -0.16011172533035278, 0.2343219667673111, 0.18660569190979004, 0.8190714120864868, -1.0154050588607788, -0.1977081298828125, 0.13308711349964142, 0.3989543914794922, 0.06776848435401917, 0.4706440567970276, 1.435046672821045, -0.7339081764221191, -0.5891865491867065, 0.6806967258453369, 0.9517955183982849, 0.35734397172927856, -0.5516032576560974, 0.4183422327041626, 0.39191335439682007, 0.7442346811294556, 0.08360455185174942, 0.5610050559043884, -0.8649266958236694, 0.9572173357009888, -0.9010740518569946, -0.158109650015831, -0.42549073696136475, 0.34513047337532043, -0.28262391686439514, 0.4530034363269806, 0.3386796712875366, -0.12255583703517914, -0.37373995780944824, 1.143442988395691, 0.702704906463623, -0.1395391821861267, -0.07567087560892105, 0.6595091223716736, 0.05748186632990837, 0.8998024463653564, 0.43765997886657715, 0.008578373119235039, -0.3618090748786926, -0.2962607741355896, 0.10082866996526718, 0.2562970519065857, -0.47902777791023254, -0.584006667137146, -1.3431510925292969, -0.10814900696277618, -0.20824936032295227, -0.6578636765480042, 0.24034243822097778, -0.9247465133666992, -0.9264723062515259, 0.20105397701263428, -0.035469312220811844, -0.10253267735242844, -0.16308486461639404, 0.3557068705558777, 0.12091890722513199, 0.43501055240631104, 0.20880937576293945, -0.23237091302871704, 1.2104952335357666, 0.30589625239372253, -0.49221616983413696, -0.1954576075077057, 0.03615403175354004, 0.18167772889137268, 0.32086825370788574, -0.05804973095655441, 0.2700658142566681, 0.21186670660972595, 0.2061818242073059, -0.33163926005363464, 0.6391308307647705, 0.05055858939886093, -0.17421407997608185, -0.625733494758606, -0.8892472982406616, 0.008384395390748978, 0.5917995572090149, 0.8037667274475098, -0.5913910269737244, -0.9411656856536865, -0.5449045300483704, 0.16530466079711914, 0.23972660303115845, 1.2600641250610352, -0.507389485836029, 0.2727205455303192, -0.38543039560317993, 0.2858184576034546, -0.5173723697662354, 0.16512078046798706, 0.051310066133737564, -0.18426401913166046, 0.2824632525444031, -0.7839125394821167, -0.48861193656921387, -0.838156521320343, -0.9911485910415649, 0.20848296582698822, -0.16835139691829681, 0.3104920983314514, -0.4044339656829834, -0.4714093804359436, -1.0106195211410522, -0.6450720429420471, 0.7799140214920044, -0.1369640827178955, -0.3270638585090637, 0.523415207862854, 0.35640960931777954, -0.8498945236206055, 0.13459068536758423, -0.20387251675128937, 0.43150976300239563, 0.42010924220085144, 1.657048225402832, 1.712585210800171, -0.19532158970832825, -0.022076793015003204, -0.8095827102661133, 1.0051747560501099, -0.8830467462539673, -0.7059680223464966, -1.2671778202056885, 0.46216750144958496, 0.1171828880906105], [-0.2118513435125351, 2.0680460929870605, -1.7021390199661255, -0.8382608294487, 1.7435146570205688, 1.1994094848632812, 0.2521226704120636, 0.42655518651008606, -0.6388777494430542, -0.6179918646812439, -0.38494452834129333, 0.6501147150993347, 0.9615117311477661, 1.1151294708251953, 0.3737183213233948, -0.2577970027923584, 0.11831825226545334, -0.6464157104492188, 0.507420539855957, 0.653830885887146, 0.5543884038925171, 0.1300828605890274, 0.16402144730091095, -0.07373849302530289, 0.4553529620170593, 0.27478986978530884, -0.4463006854057312, 0.5030621290206909, -1.1013621091842651, -1.3111062049865723, 1.9028726816177368, -0.5848326683044434, 0.15575653314590454, -0.2054138332605362, -1.9375978708267212, -0.9725972414016724, 1.148333191871643, 0.8587434887886047, 0.08873487263917923, 0.11313517391681671, 0.8391277194023132, 0.41834965348243713, -0.491833359003067, -0.7242456078529358, 0.4339745342731476, -0.12599574029445648, 0.48483768105506897, -0.6169514656066895, -0.37609660625457764, -1.2795090675354004, 1.4540680646896362, -0.39848950505256653, 0.017224639654159546, 0.7792693972587585, 1.1691439151763916, 0.5087411403656006, 0.03748137876391411, -0.14332199096679688, 0.40861982107162476, -1.0670002698898315, 1.1454704999923706, 0.5336169600486755, -0.5213032364845276, 0.5490328669548035, 0.1757785677909851, -0.27297040820121765, 0.05559802055358887, -0.2610231339931488, 0.1515413075685501, -0.10455586761236191, 0.1335379183292389, 0.21918347477912903, -0.5235973596572876, 0.2410401850938797, -1.1857566833496094, -0.04378237947821617, 0.02465708926320076, 0.18097738921642303, -0.7090682983398438, 0.7395025491714478, -0.7373133301734924, -0.19861820340156555, 0.19552938640117645, -0.3580697476863861, 0.6552590131759644, 0.23690728843212128, -0.28386497497558594, -0.7545888423919678, 0.0498698391020298, 2.411123514175415, 0.1856141984462738, 0.14118735492229462, -0.07488250732421875, -0.6203669309616089, -0.10036133229732513, -1.0222365856170654, -0.5424028038978577, -0.7589797377586365, -0.3932601511478424, -1.0891433954238892, -1.4142584800720215, 0.08991611748933792, 0.7863413691520691, -0.22416910529136658, 0.8908411264419556, 0.8498305082321167, 0.15594351291656494, -0.3994460105895996, -0.5037019848823547, 0.19237658381462097, 0.06676863133907318, 0.7678884267807007, -0.9133869409561157, -0.8831757307052612, -0.8691731691360474, 0.15265962481498718, 0.5391619205474854, 0.031028110533952713, 0.209790900349617, 1.1524463891983032, -0.48593297600746155, -0.38457155227661133, -0.5538997650146484, 0.4381197690963745, 0.6234897971153259, 0.670525312423706, -1.0729109048843384, 0.06301335245370865, 0.3201353847980499, -0.3022184371948242, 0.37505120038986206, 0.09136155247688293, -0.3130898177623749, 0.9138597249984741, -1.0539159774780273, 1.2605764865875244, -0.3447383940219879, -0.9098793268203735, 0.7557529807090759, 0.002100839279592037, 0.361851304769516, -0.30182817578315735, -0.5354793667793274, -0.7150490283966064, 0.5322490334510803, -0.33742061257362366, 0.5214059948921204, 1.0599478483200073, -1.8352779150009155, 0.06703456491231918, -0.9402547478675842, 0.9163352847099304, 0.3702860474586487, 1.0228650569915771, 0.10839425772428513, 0.6464369893074036, 0.9780833125114441, 0.4805772006511688, -0.21465212106704712, 0.2184600830078125, 0.9288608431816101, 0.5214574933052063, -0.8744704723358154, 0.9159281253814697, -0.08262258768081665, 0.023761652410030365, 0.7915089726448059, -0.16169373691082, 0.2637697458267212, 1.080138087272644, -1.478305459022522, 0.542121946811676, -0.13539990782737732, 0.8156105875968933, 0.09951591491699219, 0.6216220259666443, 0.9162583947181702, -0.5214024186134338, -2.0240514278411865, -1.4543688297271729, 0.47235217690467834, -0.39188796281814575, 0.1393987238407135, 0.056534938514232635, 0.44711342453956604, -0.19746103882789612, -1.010924220085144, -0.15740840137004852, 0.00462582241743803, -0.8107880353927612, -1.3764876127243042, -0.073441281914711, -0.9642078876495361, -0.21495060622692108, 0.03291863203048706, -0.6539128422737122, 0.7686943411827087, -0.6828243732452393, 0.4433503746986389, -0.31047946214675903, -0.6741397380828857, 0.2227775603532791, -2.072627067565918, -0.33982986211776733, -0.6089632511138916, 0.4429812431335449, -0.5777727961540222, 0.4728151559829712, -0.9672764539718628, -0.1033489778637886, 1.1087828874588013, 0.22053535282611847, -0.25405746698379517, 0.3249707520008087, -0.3560807704925537, -1.0237631797790527, 0.455282598733902, -0.3100524842739105, -0.15915048122406006, -0.04677286744117737, 0.34199970960617065, 0.7053751945495605, 0.11106717586517334, 0.30263692140579224, 0.7233468890190125, -0.38472843170166016, -0.8393189311027527, -0.8202004432678223, -0.9068500399589539, 0.21619203686714172, -0.12829333543777466, -1.3398903608322144, 0.8468379974365234, 0.4037454426288605, -0.2908327579498291, 0.7015367746353149, 0.1757376790046692, 0.03953627496957779, 1.1111805438995361, 0.983697772026062, 0.3056308329105377, 0.2641311585903168, -0.7571821808815002, -0.189823180437088, -0.3368796408176422, 0.12449253350496292, 1.1170048713684082, -0.5956456065177917, -0.4935145080089569, 1.7958921194076538, 0.053581371903419495, 0.07361285388469696, 0.1000630110502243, 0.2718941271305084, 0.07459118962287903, -0.3210013806819916, 0.3509162366390228, -0.47599291801452637, -0.3909841775894165, 1.254096269607544, 1.1549979448318481, -1.3029768466949463, -0.22396141290664673, -0.6772394776344299, -0.11385709792375565, -0.2710513174533844, -0.28276970982551575, 0.0009007491171360016, -0.013326197862625122, -0.1025405302643776, -0.5913290977478027, 0.017865890637040138, 0.22833237051963806, 0.6804416179656982, -0.21450968086719513, 0.24207454919815063, 0.1328263282775879, 0.6174646615982056, 0.005595573224127293, 0.1406409740447998, -0.6028376817703247, -0.47729548811912537, -0.20602983236312866, -0.3148804008960724, 1.0564953088760376, -0.18185800313949585, -0.08418233692646027, 0.6365218162536621, 1.583996057510376, 0.01658051088452339, 0.6577000021934509, 0.0403132326900959, -0.5835514664649963, -0.3865295350551605, -0.9084506630897522, 1.1198828220367432, 0.2784745991230011, -0.19016331434249878, -0.10952751338481903, -0.4574323296546936, 0.3157188594341278, 1.495743989944458, 0.7081485986709595, 1.1783819198608398, -0.01365610584616661, 0.03933429718017578, -0.25764933228492737, -0.16075566411018372, 0.32796159386634827, -0.3398711681365967, -1.0571805238723755, -0.0005756495520472527, 0.21279123425483704, -1.1472893953323364, -0.032293204218149185, 1.154808759689331, -0.6154081225395203, 0.9988728165626526, 0.6350657939910889, 0.029812583699822426, -0.48998141288757324, -1.0428158044815063, -0.4930436313152313, -1.45804762840271, 0.9419925212860107, 0.9592119455337524, -0.14577245712280273, -0.5196511745452881, -0.6050693392753601, 0.6421005129814148, 1.4080348014831543, -0.6146328449249268, 0.10344082862138748, -1.3931516408920288, -0.6234742403030396, -0.02156488038599491, 0.6033833026885986, -0.060209859162569046, 0.07376366853713989, -0.8705475926399231, 0.7596730589866638, 0.14812996983528137, -0.15788909792900085, 0.7095578908920288, -0.004821435082703829, 0.13351412117481232, -0.2996644079685211, 0.31227630376815796, 0.13203708827495575, 0.5668236017227173, -0.5528604984283447, 0.6378733515739441, -0.08585318177938461, -0.09875916689634323, -0.5332220196723938, 0.8109267354011536, 0.6289668679237366, 0.29987046122550964, 0.4064777195453644, -0.34828102588653564, 1.0363154411315918, -0.0964924618601799, 0.15393365919589996, -1.296376347541809, 0.756646990776062, 0.44731685519218445, 0.9717525243759155, 0.48527392745018005, 0.39695021510124207, 0.8224329948425293, -0.08885574340820312, -0.6636476516723633, -0.10810679942369461, 0.6312446594238281, 0.5027072429656982, -0.9187825918197632, -0.02582421712577343, -0.3285145163536072, -0.7555926442146301, -0.4450538754463196, -0.14815597236156464, 0.49984094500541687, -0.30824539065361023, -0.06025420129299164, 1.063738226890564, -0.06024268642067909, -0.5582038164138794, -0.678149402141571, -0.30234774947166443, 0.5563556551933289, -0.696715235710144, -0.042526599019765854, -0.8816332221031189, -0.043718282133340836, 0.1275663673877716, -0.8301694393157959, -0.6259029507637024, -0.1932680606842041, -0.9987539052963257, 0.7908925414085388, -0.8615461587905884, -0.07499740272760391, 0.45856261253356934, 0.6593294143676758, 0.42391836643218994, -0.11339364945888519, 0.0756874606013298, 0.506513774394989, -0.046941496431827545, 0.5383931398391724, 0.10557632893323898, 0.3575678765773773, 0.08297205716371536, -1.020459771156311, 0.4412926435470581, -0.2790362238883972, 0.15451668202877045, -0.2450539916753769, -0.6353949904441833, 0.18457603454589844, -0.3731469511985779, -0.2274002581834793, 0.020657876506447792, -0.2790258228778839, 1.0289058685302734, 0.25710394978523254, -0.37806573510169983, 0.9426578283309937, 0.014754272997379303, -1.6365190744400024, 0.5101027488708496, -0.16200368106365204, -0.10854759067296982, 0.12261910736560822, 0.1755247265100479, 0.8300356864929199, -0.18222233653068542, 0.5574857592582703, 0.21124115586280823, 0.7469936609268188, 0.2974209487438202, -0.38333985209465027, 0.3413620591163635, 0.379973441362381, 1.1439043283462524, 1.4468477964401245, 0.9642112255096436, 0.3377752900123596, -2.030445098876953, 0.7561241388320923, -0.3747759163379669, 0.6063569188117981, 0.7626329660415649, 0.38126346468925476, 1.2975744009017944, -1.5657914876937866, -0.8076587319374084, 1.017298698425293, 0.16967636346817017, 0.2377808839082718, 0.4098368287086487, 0.19230437278747559, -0.8831733465194702, 0.330741286277771, 0.441497266292572, 0.012020062655210495, 0.533201277256012, -0.2953896224498749, -0.0640735924243927, 1.1433777809143066, -0.7081050276756287, 0.6157336235046387, -0.2403630167245865, -0.6100489497184753, 0.1433211863040924, -0.7846891283988953, -0.09634487330913544, 0.3552616536617279, 0.859009861946106, 0.4110354483127594, -0.07905611395835876, -1.900918960571289, -0.22807469964027405, -0.7267897725105286, 0.06951747089624405, 0.930809736251831, -0.5673187971115112, -0.04829297587275505, -1.4505754709243774, -0.30591490864753723, 0.8788877725601196, -0.5216205716133118, 0.11119414120912552, 0.002528965938836336, -1.0753110647201538, -0.2989974021911621, -0.46398186683654785, 1.314087986946106, 1.0249745845794678, 0.33806246519088745, 0.4565705955028534, -0.18083736300468445, -0.9857455492019653, 0.1849413812160492, -0.271621972322464, 0.2784469723701477, 0.4473741352558136, -1.4338737726211548, -1.4585771560668945, 0.9077575206756592, 1.0099979639053345, -0.1913556307554245, 0.9039101004600525, 1.5241469144821167, 1.1606405973434448, -0.8941335082054138, -0.025140225887298584, 0.15070845186710358, -1.1257266998291016, 0.030861351639032364, 0.772963285446167, -0.8031254410743713, 0.642645537853241, -0.6695237159729004, -2.2937355041503906, 1.4438997507095337, 0.27014124393463135, -0.974153995513916, 0.1129201352596283, 0.15306980907917023, 0.36282193660736084, 0.58220374584198, -0.8770818114280701, -0.5406322479248047, 0.6757853627204895, -0.8938706517219543, -0.20301435887813568, -0.09980785846710205, 0.1527918130159378, -0.01581684872508049, -0.23713332414627075, 1.073099136352539, 0.11133953183889389, -0.12298573553562164, 0.07782185822725296, 0.3382916748523712, -0.10985396802425385, 0.9907137751579285, 0.8274098038673401, -1.633716106414795, 0.6113394498825073, -1.260872721672058, -0.5920053124427795, -0.011104821227490902, 1.3551043272018433, 0.16015128791332245, -0.5156247019767761, -0.23629029095172882, -0.46840018033981323, -1.1085402965545654, -0.5109705924987793, -0.5202330946922302, 0.2933078706264496, 0.5999197959899902, -0.2286628782749176, 0.2936713993549347, -0.6763531565666199, -0.3081428110599518, -0.19486397504806519, 0.6199710965156555, 0.19007383286952972, -0.7361310720443726, -1.1233751773834229, 0.23290546238422394, -0.26785606145858765, -0.7873024940490723, -0.011984591372311115, -0.10662481933832169, -1.0260268449783325, -0.48138460516929626, -0.09623929113149643, -0.36837252974510193, 0.5831372737884521, -0.8568094372749329, 0.4292444884777069, 0.10267962515354156, -1.5856993198394775, 0.9888830184936523, -0.05363205075263977, -1.195689082145691, 0.2394731640815735, -1.6290847063064575, 1.0269758701324463, -0.7868434190750122, -0.12283109873533249, -0.2607502043247223, 0.5458997488021851, -1.3341565132141113, -0.36369627714157104, -1.0779422521591187, -0.3139880895614624, 1.2743011713027954, 0.7714138031005859, -0.8707507252693176, 0.8621019721031189, 0.5661536455154419, -1.2771563529968262, -0.6334899663925171, 0.5743827223777771, -0.8961127400398254, 0.12106692045927048, 0.3475818336009979, 0.056697431951761246, 0.3793252408504486, 1.8259557485580444, 0.29062211513519287, 0.9985817074775696, -0.8413333892822266, -0.041667986661195755, 0.0511515811085701, -0.6491605043411255, -0.9772047400474548, 0.7643071413040161, -0.8719163537025452, -0.7188349962234497, 0.5550318360328674, -0.7010434865951538, -0.4210020899772644, 0.5162485837936401, 1.4634146690368652, -0.6070285439491272, 0.6023414134979248, 0.03201695531606674, 0.21425677835941315, -0.22700750827789307, 0.2621961832046509, 0.020553164184093475, -0.9897480010986328, 0.891470730304718, 0.7672560811042786, 0.11221943795681, -1.019973874092102, 0.22347509860992432, -0.2856366038322449, 0.19229091703891754, -0.3249436020851135, 0.8302202224731445, 1.242989182472229, -0.43764209747314453, -0.21813319623470306, 1.1361607313156128, 1.2765989303588867, -0.08829426020383835, -0.5069109201431274, 0.14377570152282715, -0.17842598259449005, -0.2045985907316208, -0.4187905788421631, -0.31179532408714294, -0.5418733358383179, 0.902204155921936, -0.3472207486629486, 0.25541824102401733, -0.21543775498867035, 0.4934963881969452, -0.4837823510169983, 0.05230370908975601, 0.7076534032821655, 0.14516489207744598, -0.665457010269165, 1.2230058908462524, 0.2173212319612503, 0.35724931955337524, 0.049064166843891144, -0.13644148409366608, 0.3156781494617462, -0.0030908645130693913, 0.4301382601261139, 0.7211393713951111, -0.5160663723945618, 0.09519831836223602, 0.5238486528396606, -0.04002239555120468, -0.062348756939172745, -0.45267194509506226, -1.532791256904602, 0.0688047930598259, -0.44665536284446716, -0.6928303837776184, 0.2907729148864746, -0.5667514801025391, -0.1490708440542221, 0.6234884858131409, -0.056362416595220566, -0.1558508723974228, -0.71608966588974, -0.19769208133220673, 0.34621331095695496, 0.7820979356765747, 0.5362063050270081, -0.28320780396461487, 1.060811161994934, -0.28583207726478577, -0.16683192551136017, 0.04592718556523323, 0.4719812572002411, 0.23631076514720917, 0.25558722019195557, 0.26568934321403503, -0.7160906791687012, -0.3070113956928253, 0.23357616364955902, -0.7018648982048035, 0.9115132093429565, -0.18100255727767944, -0.6735654473304749, 0.02604605443775654, -0.8041542172431946, -0.018823644146323204, 0.16307662427425385, 1.014649510383606, -0.8760402798652649, -0.7031356692314148, -0.014403356239199638, -0.12876848876476288, -0.2644272744655609, 0.9650941491127014, -0.12906552851200104, 0.9058736562728882, 0.048786710947752, -0.31234028935432434, -0.8504494428634644, -0.2250707745552063, 0.6311531066894531, -0.5641337037086487, 0.8711364269256592, -1.1977711915969849, 0.07035910338163376, -0.6384630799293518, -0.7990877628326416, -0.1226026713848114, 0.47818464040756226, 0.38747042417526245, -0.0713181346654892, -0.5592688918113708, -1.0663096904754639, -0.8166464567184448, 0.7544554471969604, 0.6379730701446533, -0.03826790675520897, 0.6966906785964966, -0.09816507250070572, -0.8787383437156677, 0.3646233081817627, 0.11948954313993454, -0.32705259323120117, -0.39166197180747986, 1.435708999633789, 1.7449172735214233, -0.03479434922337532, 0.5416167378425598, -0.12864693999290466, 0.9550771117210388, -0.9666852355003357, -1.0738481283187866, -0.35538777709007263, -0.20835992693901062, -0.28016310930252075], [0.4308371841907501, 1.6836799383163452, -1.7029261589050293, -1.4550296068191528, 0.07711485773324966, -0.1753920018672943, 0.15371018648147583, 0.016554828733205795, -0.4272540509700775, -1.384169101715088, -1.1140164136886597, 0.5846845507621765, 1.4013333320617676, 1.3887771368026733, 0.4875941574573517, 0.7612454891204834, 0.38878145813941956, -0.5002551674842834, 0.5456055402755737, 0.5477280616760254, 0.41512197256088257, -0.5135968327522278, -0.7026165127754211, -0.20733945071697235, 0.06419132649898529, 0.8509064316749573, -1.5792912244796753, -0.14680801331996918, -1.4660460948944092, -1.2491534948349, 0.8292803764343262, -0.9031379818916321, 0.11910167336463928, -0.40744489431381226, -2.177187204360962, -1.0306379795074463, 1.0560041666030884, -0.002367335371673107, -0.8614645004272461, 1.3973013162612915, 1.1884357929229736, 0.9361500144004822, 0.10703600943088531, -1.3503988981246948, 0.8524095416069031, -0.4104095697402954, -0.25497326254844666, -1.0900540351867676, -0.539141833782196, -0.8478646278381348, 0.7375852465629578, 0.08729584515094757, -0.07074366509914398, 0.46237611770629883, 1.393903136253357, 0.2740899324417114, -0.7568125128746033, 0.7032831311225891, -0.2954361140727997, -0.9365924000740051, 1.2766975164413452, 1.0849756002426147, -0.7509099841117859, 0.43449708819389343, 0.2026059627532959, 0.22231914103031158, -0.3316742181777954, 0.4246371388435364, -0.8834546804428101, -0.046915389597415924, 0.45784085988998413, 0.3940376341342926, -0.18373197317123413, -0.9169543385505676, -1.6068474054336548, 0.7596437931060791, 0.6504707336425781, -0.03941316157579422, 0.06527981907129288, 1.530807375907898, -0.47189974784851074, -0.34420397877693176, 0.19355647265911102, -0.8316946625709534, 0.6700124740600586, 0.1383066326379776, -0.38737401366233826, -0.7859520316123962, -0.6797078251838684, 1.7054427862167358, -0.3306439220905304, 0.19669735431671143, 0.5338705778121948, -0.30202043056488037, -0.8463249206542969, -0.9072449207305908, 0.10598240792751312, -0.8802511692047119, -0.483185350894928, -0.449564129114151, -1.183949589729309, -0.3778197467327118, 0.6838338971138, 0.5028718709945679, 0.49917250871658325, 1.297661542892456, 0.4663740396499634, -1.2012962102890015, -0.9498969912528992, 0.6919785737991333, 0.5622458457946777, -0.3582419455051422, -1.0265485048294067, -1.0009256601333618, -0.29744431376457214, 0.6570718288421631, 1.109944462776184, -0.5152180194854736, 0.7931225299835205, 0.7590828537940979, -1.0193411111831665, -0.9505419135093689, -0.945109486579895, 0.5957397222518921, 1.3723324537277222, 0.17089340090751648, -0.8246891498565674, -0.22927334904670715, -0.12403787672519684, 0.012088673189282417, 0.33848077058792114, -0.12648551166057587, -0.9923191666603088, 1.085191011428833, 0.06744805723428726, 1.5791082382202148, -0.0700441524386406, -0.642646074295044, 0.6914844512939453, -0.5691895484924316, -0.07424362748861313, -0.36596283316612244, -0.5887494683265686, -1.2829688787460327, 0.957010805606842, 0.3987419903278351, -0.39469754695892334, 0.07948192954063416, -1.145697832107544, 0.24045926332473755, -1.3052494525909424, 0.6145579814910889, -0.30924296379089355, 1.167112112045288, -0.45793184638023376, 0.9242926239967346, 0.5136125683784485, -0.28833824396133423, -0.2897312343120575, 0.23127137124538422, 0.9350107908248901, 0.3948858678340912, -1.106961965560913, 1.3525360822677612, -0.0433368980884552, -0.3285854458808899, 1.1870110034942627, -0.11823248863220215, -0.23667064309120178, 0.5815685987472534, -0.9814608097076416, 0.07886555045843124, -0.057748712599277496, 0.5151267647743225, -0.028286410495638847, -0.18396028876304626, 0.9303454160690308, -1.1533868312835693, -0.14242549240589142, -0.8270567655563354, 0.43079912662506104, -0.8870343565940857, -0.2000037431716919, -0.04014723375439644, 0.2718038856983185, -0.0074844881892204285, 0.29074805974960327, -0.538046658039093, -0.3072234094142914, -0.4073692858219147, -0.7797423601150513, -0.1414867490530014, -0.8752419948577881, -0.021050387993454933, -0.6225675940513611, -1.533186674118042, 0.5389714241027832, -0.28592321276664734, 0.20168136060237885, -0.035676706582307816, -0.005956241860985756, -0.14126981794834137, -1.8151602745056152, 0.019012177363038063, -1.0185229778289795, 1.4058195352554321, -0.6935325264930725, 0.006405471358448267, -0.7474584579467773, 0.13801422715187073, 1.322813868522644, -0.09880692511796951, -0.28738918900489807, 0.719344973564148, 0.5701894164085388, -1.0283619165420532, -0.32258328795433044, 0.009799710474908352, 0.1185510903596878, 0.12159557640552521, 1.0909550189971924, 0.19098906219005585, 1.087350606918335, 0.5057781934738159, 0.42345187067985535, 0.010679719038307667, -1.3391425609588623, -0.1419886201620102, -1.4369639158248901, -0.3704040050506592, -1.190809726715088, -0.9951505661010742, 1.2580581903457642, 1.4825403690338135, -0.4395482838153839, 1.1080875396728516, -0.3169824182987213, 0.41410568356513977, 1.063132882118225, 0.7156272530555725, 0.5275242328643799, 0.18869563937187195, -0.4951200485229492, 0.43257981538772583, -0.42192065715789795, 0.13179390132427216, 0.6481651067733765, -0.38334324955940247, -1.382094144821167, 1.320170283317566, 0.3424740135669708, 0.09607049822807312, 0.8987010717391968, -0.3339579403400421, 0.4329577684402466, -0.8584548830986023, 0.18715499341487885, 0.4664277732372284, -0.7388087511062622, 0.8711040019989014, 1.0159777402877808, -1.7065430879592896, -0.6493551731109619, -0.5059154033660889, -0.24654661118984222, -0.672661304473877, -0.1254415512084961, -0.8821586966514587, 0.2828434407711029, 0.07078065723180771, 0.0013828454539179802, -0.17731714248657227, 0.11748622357845306, 0.8536440134048462, 0.2658179998397827, 0.28511345386505127, -0.3835747241973877, 0.8165494203567505, -0.01424291543662548, 0.13649222254753113, -0.22899229824543, -1.7977076768875122, -0.9694275259971619, -0.6754710078239441, 0.9705262184143066, -0.2852768301963806, -0.6991484761238098, 0.6041077375411987, 0.9867709279060364, -0.9441149234771729, 0.1242731437087059, -0.11374593526124954, -0.45107898116111755, -0.30591028928756714, 0.3462921977043152, 0.5134798288345337, 0.28978797793388367, -0.7685520052909851, -0.4741049110889435, -0.5203646421432495, 0.030405772849917412, 1.2300926446914673, 0.9806859493255615, 0.997249186038971, 0.048352476209402084, 0.19377991557121277, -0.23493778705596924, 0.4639773666858673, -0.08094748109579086, 0.08475783467292786, -0.4821903109550476, -0.556564450263977, 0.3371346890926361, -0.19545148313045502, 0.3552296757698059, 1.4171258211135864, -0.10343506932258606, 1.191275715827942, 0.3714528977870941, -0.4812827706336975, -1.1998836994171143, -0.7788407802581787, 0.5169846415519714, -0.8715108633041382, 0.6303921341896057, 0.8221417665481567, -0.7679275870323181, 0.5979924201965332, 0.19845464825630188, -0.15686652064323425, 0.6117455363273621, -0.4785097539424896, 0.22008247673511505, -0.9706960916519165, -0.34555232524871826, -0.12151410430669785, 1.292196273803711, 0.1829320192337036, 0.1141606792807579, -0.23179736733436584, 0.22489170730113983, -0.2605440020561218, 0.26062121987342834, -0.6724403500556946, 0.7019523978233337, 0.07658270746469498, -0.8202282786369324, -0.4074684977531433, 0.7059182524681091, 1.180344581604004, -0.39142942428588867, -0.09728335589170456, -1.0908329486846924, -0.11154085397720337, -0.5788688063621521, 0.6550114750862122, 0.05758211389183998, 1.3912864923477173, 0.06820003688335419, 0.4148702025413513, 0.6351811289787292, -0.03248482570052147, 0.2518194317817688, -1.1550976037979126, 0.819339394569397, 0.22997361421585083, 1.3182181119918823, 0.6981020569801331, -0.23109275102615356, 0.6368584632873535, -0.1876527965068817, -0.3312353789806366, 0.2996170222759247, 0.43120166659355164, 0.051454298198223114, -0.7841431498527527, -0.6090661287307739, 0.8866199851036072, -0.08344593644142151, -0.20779600739479065, -0.08296291530132294, 0.4938559830188751, -0.39378806948661804, -0.2867398262023926, 0.9362639784812927, -0.11589542776346207, -0.0020751121919602156, 0.01996839977800846, 0.21487437188625336, 0.08298778533935547, -0.1870649755001068, 0.2931920289993286, -0.6302239298820496, -0.012397090904414654, 0.30606192350387573, -0.37742388248443604, -1.3673657178878784, 0.1618967056274414, -0.3174312710762024, 0.7755091786384583, -1.1747362613677979, -0.3442560136318207, -0.43804386258125305, -0.12577080726623535, 0.16995972394943237, 0.3697040379047394, 0.21818387508392334, 0.36749714612960815, 0.09980323165655136, -0.16565750539302826, 0.7231826186180115, 0.8874637484550476, -0.08227386325597763, -0.3435918986797333, -0.5209584832191467, -0.22888188064098358, 0.3786729574203491, -0.4789263606071472, -0.5342680215835571, -0.020331259816884995, -0.8073490858078003, 0.4586835503578186, 0.012632342055439949, -0.02863331511616707, 0.6781108975410461, -0.11847052723169327, 0.0840829461812973, 0.940114438533783, -0.26444530487060547, -1.4389857053756714, 0.42958441376686096, 0.5037882924079895, 0.012628371827304363, -0.3182956576347351, 0.5830867886543274, 0.22429174184799194, 0.8413786888122559, 1.0021345615386963, -0.39641985297203064, 1.2231130599975586, 0.2883210778236389, -0.9434978365898132, -0.481580525636673, 0.991483211517334, 0.8006548285484314, 1.1001371145248413, 1.1178789138793945, -0.536333441734314, -1.5122342109680176, 1.6539169549942017, -0.13900992274284363, 0.9304450750350952, 0.6367666125297546, 0.7156631350517273, 1.7799147367477417, -1.1954245567321777, -0.21814927458763123, 0.22098925709724426, -0.3600168228149414, 0.1350068300962448, 0.5777897238731384, 0.23340541124343872, -1.3552987575531006, -0.48971959948539734, 0.45904576778411865, -0.0029485486447811127, 0.7637300491333008, -1.2449783086776733, 0.10566152632236481, 0.24553176760673523, -0.2767745554447174, 0.6337520480155945, -0.8415507078170776, -0.11056460440158844, 1.3159362077713013, -0.07295021414756775, 0.18006207048892975, 0.42538949847221375, 0.17374153435230255, 1.8066648244857788, -0.6050220131874084, -1.5208159685134888, 0.3210163414478302, -1.0006818771362305, 0.5464810132980347, 0.19199298322200775, -0.42824503779411316, -0.37717264890670776, -1.192615270614624, 0.03325160965323448, -0.18581777811050415, -0.288591206073761, 0.4843428134918213, 0.5339744091033936, -1.048954963684082, -0.03677964210510254, 0.6237807869911194, 1.078224539756775, 0.41938918828964233, 0.23363015055656433, 0.5996397733688354, -0.055539537221193314, -0.040366820991039276, 0.3901781439781189, -0.11929157376289368, -0.7402417659759521, 0.7372498512268066, -1.2701295614242554, -0.942891538143158, 0.5572445392608643, 1.5083003044128418, 1.0213768482208252, -0.061344701796770096, 0.8048405051231384, 1.5876805782318115, -1.4272531270980835, -0.8760015964508057, 0.5659126043319702, -0.6162512898445129, 0.3282698392868042, 0.13283957540988922, -1.066554307937622, -0.9207713603973389, -0.121955007314682, -1.7099584341049194, 1.4814586639404297, -0.29662010073661804, -0.7526230812072754, 0.434190958738327, 0.9267160892486572, -0.16215772926807404, 0.8917007446289062, -0.8585970401763916, 0.5035281777381897, 0.7017648816108704, -0.7251337170600891, -1.2020299434661865, 0.5383118987083435, 0.43094655871391296, 0.7459874749183655, -0.5513635873794556, 0.34868738055229187, -0.18216101825237274, -0.34267017245292664, 0.6095904111862183, 0.005140395835042, 0.9844710230827332, 0.733824610710144, 1.0328267812728882, -1.6399180889129639, -0.34847962856292725, -0.7111164927482605, 0.44666728377342224, 0.34760892391204834, 1.3001946210861206, -0.20441417396068573, -0.7290084958076477, -0.22805574536323547, 0.06435124576091766, -0.4207548499107361, -0.01931746117770672, -1.362830400466919, 1.44234299659729, 0.5880577564239502, -0.44373318552970886, 0.48167064785957336, -0.29488638043403625, -0.3367762863636017, -0.2221505045890808, 0.12171301245689392, 0.7907523512840271, -1.4198676347732544, -0.30774444341659546, 0.2716304659843445, -0.010533622466027737, 0.42921486496925354, 0.6944156885147095, -0.6272174119949341, -0.7947943806648254, -1.592139720916748, 0.034483201801776886, 0.11078286916017532, 0.7217298746109009, -0.8442464470863342, 0.11136968433856964, -0.10537730157375336, -1.5720866918563843, 0.3292246162891388, -0.36277344822883606, -0.9107255339622498, -1.2120810747146606, -0.7860556244850159, 1.1673136949539185, 0.727847695350647, -0.07747098058462143, 0.5902160406112671, 0.9166382551193237, -0.31925877928733826, -0.16527895629405975, -1.1665229797363281, 0.5714554190635681, 0.4296330213546753, 1.310014247894287, -0.9417871832847595, 0.6034398078918457, 0.3055967092514038, -0.38150396943092346, -0.2540576159954071, 0.13021095097064972, -0.8962231278419495, 0.08981268107891083, 0.5248162150382996, 0.3504140079021454, 0.19407665729522705, 1.5214953422546387, 0.21050803363323212, 1.2515785694122314, 0.010545316152274609, 0.5772616267204285, -0.22192582488059998, -0.1523582488298416, -0.7346625924110413, -0.01261525135487318, -1.4984033107757568, -0.6688219904899597, 0.09376318007707596, -0.7445990443229675, -0.4575440287590027, 0.7921919226646423, 0.8884986639022827, -1.1290093660354614, -0.23253373801708221, 0.17803853750228882, 0.702751636505127, -0.8292527198791504, 0.7950356006622314, -0.29896020889282227, -0.44597238302230835, -0.2274317592382431, -0.2755216658115387, 0.2139577716588974, -0.5621225833892822, 0.4778626561164856, 0.15825212001800537, 0.466913640499115, -0.6069642305374146, 0.5273387432098389, 0.5426173806190491, -0.3425009846687317, -0.4203151762485504, 1.2788382768630981, 1.5609360933303833, -0.05813021957874298, 0.29359519481658936, 0.40881773829460144, -0.23237916827201843, 0.19451770186424255, -0.2300175577402115, -0.3257075548171997, -0.1495753675699234, 0.6921480894088745, -0.4378877878189087, 0.18590489029884338, -1.2639596462249756, 0.2985565960407257, 0.03477706015110016, -0.16069185733795166, 0.9015993475914001, 0.5725378394126892, -0.43781766295433044, 0.10391706973314285, 0.14275971055030823, -0.8377677798271179, 0.11088981479406357, 0.7483056783676147, 0.7588244080543518, 0.3038696348667145, 0.2869682312011719, 0.35917994379997253, -0.3545948266983032, 0.521411120891571, 0.42674314975738525, -0.7461549639701843, -0.2343626767396927, -0.9168721437454224, -1.4368784427642822, -0.9874815344810486, -0.09941872209310532, -1.1455923318862915, 0.2108195722103119, -1.284537434577942, -0.9001359939575195, -0.14609238505363464, -0.28163209557533264, 0.42741045355796814, -0.5195810794830322, 0.1860281229019165, 0.07739952206611633, 0.6959598660469055, 1.9614657163619995, 0.1971464455127716, 0.894421398639679, 0.81280916929245, 0.20123650133609772, 0.11331118643283844, -0.0023718448355793953, -0.486312597990036, 0.2908453941345215, -0.11541222780942917, -0.6236847043037415, -0.6470170617103577, -0.9822112321853638, -0.6651933193206787, 0.4184924066066742, 0.10072437673807144, 0.8205451369285583, 0.0018635555170476437, -0.9225295186042786, -0.7059430480003357, 0.9393539428710938, 0.45050716400146484, -0.7744744420051575, -0.1722014844417572, -0.35951346158981323, -0.02402466908097267, -0.08706893026828766, 1.4583444595336914, -0.6254830360412598, 0.6533477306365967, 0.5883951187133789, 0.06006404757499695, -0.7580312490463257, -0.13931111991405487, 0.7167037725448608, -0.3188699185848236, 0.6767424941062927, -0.8802337646484375, -0.45643749833106995, -0.0716346725821495, -0.5911647081375122, 0.3937900960445404, 0.2846716046333313, -0.7828740477561951, -0.11550115793943405, -0.40572693943977356, -0.8417315483093262, -0.8298861384391785, 0.3473077118396759, 0.3146885931491852, -0.29024070501327515, 0.432374507188797, -0.12425991892814636, -0.5394886136054993, 0.4512074589729309, 0.7279386520385742, 0.342875599861145, 0.20223268866539001, 1.87618088722229, 1.950203776359558, 0.016833683475852013, -0.684032678604126, -0.8274582028388977, 1.025221824645996, -0.48110973834991455, -0.6524160504341125, -0.590337336063385, 0.18992562592029572, 0.8425493240356445], [0.18658006191253662, 1.3414350748062134, -1.9397261142730713, -0.5952227711677551, 0.2995772659778595, -0.08945487439632416, 0.6466031670570374, 0.3141251504421234, -0.45091524720191956, -0.45327046513557434, -0.47506794333457947, 0.059153977781534195, -0.06047692149877548, 0.7837308645248413, -0.1133902296423912, 0.19701538980007172, 0.4890182614326477, 0.6887013912200928, 0.4408614933490753, 1.7044486999511719, 0.9346920847892761, -1.5740324258804321, 0.6164708733558655, -0.27796128392219543, -0.050880882889032364, 0.8688360452651978, -1.042934536933899, -0.044819582253694534, -1.3575687408447266, -0.7963465452194214, 1.7687864303588867, 0.18799039721488953, -0.3108948767185211, -0.34123918414115906, -0.6847721934318542, -1.0069812536239624, 0.70826256275177, 0.305292010307312, 0.8133211731910706, 0.33535125851631165, 1.5306607484817505, -0.12329352647066116, -0.28708428144454956, -1.2243907451629639, 1.218659520149231, 0.0865032970905304, 0.2684909701347351, -1.2739427089691162, 0.11096735298633575, -0.9895827174186707, 1.0315991640090942, -0.3296564817428589, 0.41782429814338684, 1.2418630123138428, 1.3421539068222046, -0.7390201687812805, -0.27710482478141785, 0.009341014549136162, -0.27700942754745483, -0.8794262409210205, 1.1395137310028076, 0.40573087334632874, -0.04642604663968086, 1.0698156356811523, 0.7218225598335266, -0.7314786314964294, 1.3169342279434204, -0.06615307927131653, -0.04813079163432121, 0.08072829991579056, 0.4615371525287628, 0.1287519931793213, -1.0910829305648804, -0.1988162249326706, -0.33323079347610474, 0.4273451268672943, -0.11819043010473251, 0.7411797642707825, 0.10602501779794693, 0.7779281735420227, -0.2766971290111542, -0.13906380534172058, 0.09077051281929016, -0.5578331351280212, 0.28527480363845825, 0.27248460054397583, 0.0821763426065445, -0.8155592679977417, -0.12013035267591476, 1.5593931674957275, -0.44920170307159424, -0.10751713812351227, 0.0389091782271862, -0.8152275085449219, -1.200087547302246, -0.5395050048828125, 0.1810791939496994, -0.1798126995563507, -0.4849715828895569, -0.37966933846473694, -0.555152416229248, -1.4856667518615723, 0.3086157739162445, -0.7224195599555969, 0.9280920028686523, 1.6547609567642212, -0.34875255823135376, -0.4667828679084778, -0.916486382484436, 0.4665583670139313, 0.16905079782009125, -0.2849680781364441, -0.47866228222846985, -0.7270398139953613, -0.1819787323474884, 0.5856851935386658, 0.8078840970993042, -0.3552056849002838, 0.05305926874279976, 0.2728063464164734, -0.470647931098938, -0.16523019969463348, -0.982801616191864, 0.03315609693527222, 1.4830893278121948, 0.4465465247631073, -0.6852500438690186, -0.18116140365600586, 0.009413214400410652, -0.08060847222805023, 0.2544805109500885, 0.6814787983894348, -1.2512233257293701, 0.435829758644104, -0.6768349409103394, 1.5204898118972778, -0.5436753034591675, -1.011053442955017, -0.2732592225074768, -0.4900342524051666, 0.7062625885009766, -0.9812374711036682, -0.8001322746276855, -0.3637246787548065, 0.15883545577526093, -0.1712888479232788, 0.2504282295703888, 0.02451423555612564, -1.3903062343597412, 0.408114492893219, -1.4714192152023315, 0.39302149415016174, -0.35964927077293396, 1.0329360961914062, 0.04883740097284317, -0.0732128769159317, 0.44790762662887573, 0.3370630443096161, -0.033829912543296814, 0.049486491829156876, 0.5904768109321594, 0.07420722395181656, -0.8072124719619751, 0.9628410339355469, 0.2866280674934387, -0.7662004232406616, 0.2564980089664459, 0.3905380070209503, -0.527585506439209, 0.5012124180793762, -0.8391340374946594, -0.4727311134338379, -0.31912466883659363, 1.2769713401794434, -0.16936199367046356, -0.7749125957489014, 0.6803054213523865, -0.2544557452201843, -1.159151315689087, -1.922108769416809, -0.011716814711689949, 0.18483395874500275, 0.2896670401096344, -0.047290537506341934, 0.12292251735925674, 0.3001876175403595, 0.07216356694698334, -0.3013368844985962, -1.1674723625183105, -0.2662256956100464, -0.7029610276222229, -0.531805157661438, -1.0558103322982788, 0.5042219758033752, -0.3779129683971405, -1.0682207345962524, 0.47634395956993103, -0.6417328119277954, 0.1411413848400116, -0.022252390161156654, 0.4745086431503296, -0.026858918368816376, -2.05607533454895, 0.8441489338874817, -0.890444815158844, -0.011428692378103733, -1.7412694692611694, 0.6077801585197449, -1.1534690856933594, 0.15142636001110077, 0.6829003691673279, 0.024424007162451744, -1.0073720216751099, 0.5345465540885925, -0.1238446980714798, -1.74880051612854, 0.3331044614315033, 0.16500195860862732, -0.03916904702782631, 0.4354948401451111, -0.21174107491970062, 0.2727084755897522, 1.1782724857330322, 0.4832189679145813, 0.8984192609786987, 0.13066573441028595, -0.8398861885070801, -0.14071066677570343, -0.43597540259361267, 0.023973356932401657, -0.5701569318771362, -0.7316796779632568, 0.49073806405067444, -0.11019952595233917, -1.3081114292144775, 0.7702704668045044, 0.1558431088924408, -0.20888766646385193, 0.49188461899757385, 1.4731996059417725, 0.49093160033226013, 0.25202274322509766, -0.2996562421321869, -0.4542037546634674, 0.0279395654797554, -0.030728761106729507, 0.7098554968833923, 0.2054973691701889, 0.4317263960838318, 1.375691294670105, 0.7021304965019226, -0.26599517464637756, 0.21568803489208221, -0.24133507907390594, 0.5118847489356995, -0.90953129529953, 0.3840799331665039, -0.2692091166973114, -0.7014678120613098, 1.1233991384506226, 1.0140790939331055, -1.085806965827942, -0.581396758556366, -0.5981941819190979, 0.706307053565979, -0.20755071938037872, 0.347501277923584, -0.6041038036346436, 0.18776161968708038, 0.038418810814619064, 0.11448762565851212, 0.1681278645992279, 0.011147785000503063, 1.2333859205245972, -0.18796338140964508, -0.5170783400535583, -0.10047558695077896, 0.8701555132865906, 0.23426023125648499, 0.7717241048812866, -0.45107266306877136, -1.776215672492981, -0.6101356148719788, 0.08755094558000565, 0.6202551126480103, -0.41712403297424316, -0.3406447470188141, 0.46121838688850403, 0.8428266048431396, -0.1223827451467514, 0.6047399640083313, 1.0092828273773193, 0.07104382663965225, -0.9898298978805542, -0.39906904101371765, 1.1962412595748901, 0.34159037470817566, -1.521539330482483, -0.9887728691101074, -0.25814083218574524, 0.5823174715042114, 1.3126881122589111, 0.8677555918693542, 1.1133712530136108, -0.3322662115097046, -0.21255919337272644, -1.096521019935608, 0.20963455736637115, -1.0510811805725098, -0.1257307380437851, 0.3555248975753784, -0.6222400665283203, -0.018208052963018417, -0.2547791302204132, -0.15926924347877502, 1.7928414344787598, 0.22411617636680603, 0.8231106996536255, 0.640640914440155, -0.37418314814567566, -1.1499671936035156, -0.6025257110595703, 0.2274988889694214, -1.4926620721817017, 1.1483173370361328, 1.014478325843811, -0.6708093881607056, -0.04444707930088043, 0.24059636890888214, 0.7094975113868713, -0.04196738824248314, -0.45287075638771057, 0.3685019314289093, -1.5923837423324585, -0.3673672080039978, -0.6260769367218018, 0.9500349164009094, -0.5220842361450195, 0.002659913618117571, 0.33378279209136963, -0.03591014817357063, 0.7839934825897217, -0.30982521176338196, 0.26074761152267456, 0.002674608025699854, -0.05744677409529686, -0.024778295308351517, -0.37837037444114685, 0.702400267124176, 0.5072702169418335, 0.15944406390190125, -0.28972989320755005, -0.053939592093229294, -0.12550535798072815, -0.9929609894752502, 0.4280388355255127, -0.7494422197341919, 0.664343535900116, 0.5332285165786743, 0.27383023500442505, 0.923542857170105, -0.24770604074001312, 0.22697529196739197, -1.3403244018554688, 0.6308287978172302, 1.345035195350647, 1.4848060607910156, 0.65627521276474, 0.3803020417690277, 0.030703919008374214, 0.041873637586832047, 0.5229811072349548, 0.1949625313282013, 1.053063154220581, 0.16957364976406097, -0.12231467664241791, -0.3723917007446289, -0.521711528301239, 0.07531049102544785, 0.11795830726623535, 0.25781816244125366, 0.0199421513825655, -0.5022449493408203, -0.4573257863521576, 1.0906291007995605, 0.05785341188311577, -0.253343403339386, -0.6059979796409607, -0.1920488476753235, 0.7727189064025879, -0.12360785156488419, -0.5881432890892029, -0.6189277172088623, -0.3999535143375397, 0.40792468190193176, -0.6994731426239014, -0.5571340322494507, 0.1990608423948288, 0.25287267565727234, 0.4886932373046875, -1.004310965538025, 0.24629701673984528, -0.8131957650184631, 0.7640272378921509, 1.0691022872924805, -0.4407561719417572, 0.2967965602874756, -0.4713210463523865, -0.8060567378997803, -0.01428372785449028, 0.07482628524303436, 0.7918003797531128, 0.5128079652786255, -0.4090668559074402, -0.18037696182727814, 0.20419923961162567, 0.6124564409255981, -0.260663777589798, -0.2667924165725708, 0.18084578216075897, -1.093537449836731, 0.23695306479930878, 0.05137086659669876, 0.08325754106044769, 1.232166051864624, 0.13489875197410583, -0.7466655373573303, 0.2962287664413452, 0.31764066219329834, -0.8509632349014282, -0.3450639545917511, 0.10017380118370056, -0.29930487275123596, 0.2163669914007187, 0.19295212626457214, 0.44652441143989563, 0.20290198922157288, 0.13542434573173523, -0.4444327652454376, 1.024471402168274, 0.788716733455658, -0.527629017829895, 0.4156338572502136, 0.9192416667938232, 0.583976149559021, 1.4373905658721924, 1.0226080417633057, -0.3327910602092743, -1.3014997243881226, 0.6839008927345276, -0.7283781170845032, 0.3939243257045746, 0.8552050590515137, -0.08836060762405396, 0.9194610714912415, -1.2366188764572144, -0.5230827927589417, 0.4868423640727997, -0.03474068641662598, 0.5539448857307434, 0.021971572190523148, -0.30637064576148987, -0.4244205355644226, 0.24833282828330994, -0.0626705214381218, -0.05906740576028824, 0.898581862449646, -0.032159239053726196, 0.13573399186134338, 0.9548192620277405, -0.7704439759254456, 0.5383163094520569, -0.6677955985069275, 0.2187524288892746, 0.4264862537384033, -0.7834135890007019, -0.2361842691898346, 0.11477252095937729, 1.0414379835128784, 2.1250927448272705, -0.3151054084300995, -1.160783290863037, 0.14952625334262848, -0.6954222321510315, -0.06509704887866974, -0.27600011229515076, -0.5061296820640564, -0.26796409487724304, -1.0125610828399658, -0.22753308713436127, 0.9156633615493774, -0.07506304234266281, 0.09021048992872238, -0.12487316876649857, -0.6134023070335388, 0.031394291669130325, 0.06814876943826675, 0.5002973079681396, 1.0466991662979126, 0.3584654629230499, 0.051302216947078705, 0.4155457317829132, -1.1251940727233887, -0.09961596876382828, 0.4324776828289032, -0.1609058827161789, -0.5091567039489746, -0.9758585095405579, -0.374372661113739, 1.0320560932159424, 1.3583488464355469, 0.11408685892820358, 0.47237932682037354, 1.4709357023239136, 1.1608617305755615, -0.6897462606430054, -0.6339424252510071, 0.020920606330037117, -0.5430793762207031, -0.13818569481372833, 0.4747670590877533, -0.8172630071640015, -0.11639793962240219, -0.8139735460281372, -2.6581499576568604, 1.4184951782226562, -0.05150965228676796, -0.6483380794525146, 1.236991286277771, 0.4014693796634674, 0.6404839158058167, 0.5035044550895691, -0.7220516204833984, -0.19849807024002075, 0.08883439749479294, -0.3370918035507202, -2.0828120708465576, 0.9865601658821106, 0.2702280580997467, 0.5718598961830139, -0.6842322945594788, 0.07039720565080643, 0.11750520765781403, -0.0343293733894825, -0.25760042667388916, 0.12022623419761658, 0.9205209612846375, 0.8894037008285522, 0.5685404539108276, -0.8379980325698853, 0.28654977679252625, -0.6265783309936523, -0.34399667382240295, 0.3208009600639343, 1.058525800704956, 0.510776698589325, -0.6376982927322388, 0.5088658928871155, -0.23536553978919983, -0.37474262714385986, -0.14688336849212646, -0.4740223288536072, 0.881463348865509, 0.43982750177383423, 0.21654736995697021, -0.3806629478931427, -0.41270023584365845, -0.10159872472286224, -0.5635930895805359, 1.2719565629959106, 0.8725757598876953, -0.2793242633342743, -0.21661819517612457, -0.23291489481925964, -0.150605708360672, -0.1238001212477684, 0.4290599822998047, -0.36848658323287964, -0.9045418500900269, -1.3021265268325806, -1.3857495784759521, 0.37302669882774353, 0.684040904045105, -0.27599433064460754, 0.5667849779129028, -0.5016219615936279, -0.9871606230735779, 0.6574989557266235, 0.44189587235450745, -1.5149224996566772, 0.24103617668151855, -0.9150717854499817, 0.6746245622634888, 0.11105833202600479, 0.1266324669122696, 0.7256026864051819, 0.4761161208152771, -0.4090437591075897, -0.41486892104148865, -1.2380884885787964, -0.7108777165412903, 1.0247184038162231, 0.8490680456161499, -0.8204110860824585, 0.7850639224052429, 0.06254225224256516, -1.171921730041504, -0.03584439307451248, -0.13119295239448547, -1.259529948234558, 0.37336426973342896, 0.2491132915019989, 0.46657663583755493, 0.37132763862609863, 1.9162867069244385, 0.2876347005367279, 1.1856263875961304, 0.03175467252731323, 0.7344880700111389, -0.31631988286972046, -0.5620675086975098, -0.9928520917892456, 0.07312770187854767, -1.1504571437835693, -1.3712037801742554, 0.11196662485599518, -0.13748718798160553, -0.5618768930435181, 0.4895508587360382, 0.7260922193527222, -0.8677197694778442, 0.4201660454273224, -0.042847890406847, -0.2468634843826294, -0.2293035238981247, 0.42543429136276245, 0.37196990847587585, -1.265551209449768, -0.14851219952106476, 0.15196886658668518, 0.7248430848121643, -1.4673550128936768, 0.11731545627117157, -0.20367562770843506, 0.570455014705658, -0.14693975448608398, 1.5906027555465698, 0.3940281867980957, 0.29914531111717224, -1.1449395418167114, 1.4159208536148071, 1.0599778890609741, 0.2915128767490387, 0.0781097561120987, 0.6051008105278015, 0.09567910432815552, 0.1624421775341034, -0.6779283881187439, -0.12230090796947479, -0.6024128198623657, 1.169764518737793, -0.1297231763601303, 0.4399402439594269, -0.12422904372215271, 0.34351328015327454, 0.648155152797699, 0.8210722208023071, 0.7726631760597229, 0.27018365263938904, -0.30411481857299805, 0.9935779571533203, 1.1881455183029175, 0.16537798941135406, 0.2850557565689087, 0.6115576028823853, 0.8954724669456482, -0.04863908514380455, 0.09188369661569595, 0.6483443379402161, -0.39035314321517944, -0.002379300072789192, -0.5674814581871033, -0.4668566882610321, 0.11667600274085999, -0.6389297842979431, -1.1335679292678833, 0.14702150225639343, -0.47060737013816833, -0.22553850710391998, 0.4691348075866699, -0.8202202320098877, -0.4058593511581421, -0.398978590965271, -0.28808125853538513, -0.5091797709465027, -0.6159922480583191, -0.1794780045747757, -0.400132417678833, -0.3865525722503662, 0.4894605875015259, -0.18263736367225647, 1.1769514083862305, -0.037413664162158966, 0.7612632513046265, -0.3361840546131134, -0.09019515663385391, 0.24205173552036285, -0.08053241670131683, 0.07288452237844467, -0.03621751442551613, -0.256204754114151, -0.7418292164802551, -0.5940840244293213, -0.5936360955238342, -0.38652515411376953, -0.07947035133838654, 0.29196101427078247, -0.550682008266449, -0.30421069264411926, 0.1602398008108139, -0.2997812032699585, -0.4202853739261627, -0.6356207728385925, -0.6354523301124573, 0.1353440135717392, -0.16411198675632477, 1.3269926309585571, -0.436585932970047, 0.6528211236000061, -0.13881628215312958, -0.8085285425186157, -0.186985045671463, -0.4200226068496704, 0.8982475399971008, 0.25839701294898987, 0.4446863532066345, -1.325147271156311, -0.3187725245952606, -0.9660773277282715, -1.2247554063796997, 0.4864930808544159, -0.37551426887512207, -0.4660226106643677, 0.485897958278656, -0.052626702934503555, -0.17890729010105133, -0.2100355178117752, 0.061710890382528305, 0.4993590712547302, 0.307501882314682, 0.45769181847572327, 0.03699963167309761, -0.45844051241874695, -0.14695335924625397, 0.5142462849617004, 0.04333013296127319, 0.6216949820518494, 0.8911066651344299, 1.4722751379013062, -0.07786431908607483, -0.2179419845342636, -0.6368158459663391, 0.6267260909080505, -1.2822409868240356, -1.1350512504577637, -0.906112790107727, 0.7249944806098938, -0.1136600449681282], [-0.4717334806919098, 1.494751214981079, -2.014904737472534, -0.6560827493667603, -0.2837630808353424, 0.237799271941185, 1.5793626308441162, 0.9908571839332581, 0.28942739963531494, -0.22619439661502838, -0.576263427734375, 0.008643534034490585, 0.5459743142127991, 0.1638086438179016, 0.3358042240142822, 0.3138015568256378, 0.3331826627254486, 0.6425565481185913, 0.7163578271865845, 1.4132530689239502, -0.657767117023468, -0.9391552805900574, -0.08050907403230667, 0.3547593355178833, -0.09391437470912933, 0.09329046308994293, -1.4836293458938599, 0.24135875701904297, -1.5543464422225952, -0.6882980465888977, 0.6609484553337097, -0.9745678901672363, -0.24316710233688354, 0.19350911676883698, -0.874223530292511, -0.22037507593631744, 1.3572310209274292, 0.9275795817375183, 1.7655539512634277, 0.2662540376186371, 1.9459997415542603, 0.1356869786977768, 0.488177090883255, -1.7069437503814697, 0.17554281651973724, 0.41160038113594055, 0.38501429557800293, -1.7660566568374634, -0.020128732547163963, -0.09745823591947556, 0.2533927261829376, 0.2683960795402527, 1.437412142753601, 1.2185966968536377, 0.10363887250423431, -1.2401487827301025, 0.31719252467155457, -0.3049447238445282, 0.3780604302883148, -0.40789663791656494, 0.5860500335693359, 0.30678096413612366, 0.6474767923355103, 1.3047471046447754, 0.289694219827652, -0.40469738841056824, 0.5753230452537537, 0.038961902260780334, 0.1533934772014618, -0.5416051149368286, 0.3702959716320038, 0.10848259180784225, -0.7401353716850281, -0.06863237917423248, -0.8927410840988159, 0.9470384120941162, 0.6933156251907349, 0.11312028020620346, -0.24869240820407867, 0.7231000065803528, -0.17348185181617737, -0.18151968717575073, 0.16726136207580566, -0.1845238208770752, 0.9781448841094971, -0.42277804017066956, -0.017311491072177887, -0.36971554160118103, -0.20037004351615906, 1.690253734588623, -0.49110856652259827, -0.00575273297727108, -0.08103083074092865, 0.11518063396215439, 0.5537250638008118, -0.6633257269859314, 0.15312287211418152, -0.3472908139228821, -0.9536711573600769, -0.5402686595916748, -0.5273207426071167, -1.2490646839141846, 0.508408784866333, 0.5256789326667786, 0.5951522588729858, 1.3430066108703613, -0.06852149218320847, -0.7672553658485413, -0.6887258887290955, 0.0690024122595787, -0.20498338341712952, -0.24946793913841248, -0.4958122968673706, -0.8007246851921082, -0.7149034738540649, 0.6504629254341125, 0.6532343029975891, 0.17077308893203735, 0.9213958978652954, 0.595999002456665, -0.39803487062454224, 0.03168836981058121, -0.05866589397192001, 0.31626397371292114, 0.030707133933901787, 0.6164147853851318, -0.5165035724639893, -0.6035827398300171, 0.9886350035667419, 0.4416472315788269, 0.18816101551055908, 0.2012813687324524, 0.5338612794876099, 1.185674786567688, -0.6474911570549011, 0.5847557783126831, -0.16957475244998932, -1.3853610754013062, -0.7113135457038879, -0.10256500542163849, 0.35732904076576233, -1.0046225786209106, -0.7762348651885986, -0.7808113098144531, -0.6263417601585388, -0.7945027351379395, 0.7057173252105713, -0.36597636342048645, -0.7738997340202332, 0.16228602826595306, -1.0301789045333862, 0.5137991309165955, 0.11034505814313889, 0.8819599747657776, 0.2167268544435501, -0.5699408650398254, 0.7959025502204895, 0.5683829188346863, 0.4318799078464508, 1.0787625312805176, 0.7752346992492676, -0.030142908915877342, -0.35808590054512024, 0.8121680021286011, 0.25580447912216187, -0.6852015256881714, 0.4125833511352539, 0.5252788066864014, 0.30338987708091736, 0.4658754765987396, -0.2764700949192047, -0.6436399221420288, -0.757757842540741, 0.6034067273139954, 0.25004708766937256, -1.5968722105026245, 0.7564922571182251, -0.11768608540296555, -1.2416179180145264, -1.2451220750808716, 0.8476875424385071, -0.4760811924934387, 0.004570478573441505, -0.36311718821525574, 0.7978391051292419, -0.3888467848300934, 0.184170663356781, -0.1780363917350769, -0.2993010878562927, -0.6875173449516296, -0.9564682841300964, -0.10843975096940994, -1.3262605667114258, 0.3510770797729492, -0.6287286281585693, -0.5433638691902161, 0.13844892382621765, -1.0986367464065552, -0.6875629425048828, 0.16483251750469208, 0.49291694164276123, 0.25738418102264404, -0.6248217821121216, 0.13868339359760284, -0.8706421256065369, 0.5762528777122498, -1.4461811780929565, 0.8097420334815979, -0.8647443652153015, 0.40252232551574707, 0.2596675157546997, 0.42584434151649475, -0.9694730043411255, 1.0422080755233765, -0.3963879942893982, -1.4782932996749878, 0.0968526303768158, 0.2345195859670639, 0.34859466552734375, -0.334081768989563, 0.2437009960412979, 0.6785886287689209, 1.0946261882781982, -0.04184380918741226, 0.7586489319801331, -0.05582515150308609, -0.7127079963684082, -0.49588248133659363, -0.8133752346038818, 0.34651824831962585, -0.7898478507995605, -1.0652483701705933, 0.5118694305419922, 0.7206283211708069, -1.1012225151062012, 0.7180890440940857, -0.008266240358352661, -0.15622282028198242, 0.21118101477622986, 0.6861699223518372, 0.2576688528060913, 0.25932207703590393, -0.1499321013689041, -1.5288670063018799, -0.3368492126464844, 1.0143730640411377, 1.253570556640625, 0.014061042107641697, 1.307040810585022, 1.2523080110549927, 1.2666866779327393, 0.48048874735832214, 0.6802973747253418, -0.0601959303021431, -0.08411083370447159, -0.7768002152442932, -0.672637403011322, 0.2310105413198471, -0.6528103351593018, 2.119075059890747, 1.3806328773498535, -1.1897046566009521, -0.38636720180511475, -0.03323518484830856, 0.5535380244255066, -0.42035964131355286, -0.24573759734630585, -0.3190317451953888, 0.18689219653606415, 0.23381923139095306, -0.20707130432128906, 0.13641774654388428, -0.2539883553981781, 0.8806848526000977, -0.05721360072493553, -0.18617106974124908, -0.009791354648768902, 0.9328206777572632, -0.46592843532562256, 0.8184855580329895, 0.4548620283603668, -1.7431615591049194, -0.43925726413726807, 0.0666455626487732, 0.2547524869441986, 0.025878317654132843, -0.2215302735567093, 0.8231866955757141, 0.22289331257343292, -0.3417416214942932, 0.3322916328907013, 1.061875820159912, -0.1489613652229309, 0.027092574164271355, -0.6027483940124512, 0.16106517612934113, 0.658380925655365, -1.1455211639404297, -1.2888894081115723, 0.15850929915905, 0.5225169658660889, 0.7243512272834778, 1.0148956775665283, 1.488175392150879, -0.38028183579444885, -0.20647574961185455, -0.3877856731414795, -0.39510104060173035, -1.0379881858825684, -0.668225884437561, -0.4662814140319824, -0.5187691450119019, -0.4480718672275543, -0.8105573654174805, 0.2974891662597656, 0.5949573516845703, -0.4450152814388275, 0.1933843195438385, 0.9772468209266663, -0.296743780374527, 0.32953545451164246, 0.3212432563304901, 0.09443012624979019, -0.7615946531295776, 0.6149694919586182, 0.49464115500450134, -1.5911182165145874, -0.762221097946167, 0.09602712094783783, 0.2028665840625763, 0.9367414712905884, -0.13595883548259735, 0.2800561487674713, -0.8593577146530151, -0.6463200449943542, -0.09529337286949158, 1.0109061002731323, 0.3350784480571747, -0.5547800064086914, -0.8418734073638916, 0.2861432731151581, 0.6427471041679382, -0.4774990677833557, -0.5835753679275513, 0.6660581231117249, -0.23190440237522125, -0.5588260293006897, -0.3156254291534424, -0.1809701919555664, 0.5086803436279297, -0.34707748889923096, -0.6730048656463623, 0.6087757349014282, -0.2920837104320526, -0.5902199149131775, 0.36044275760650635, -0.7206763625144958, 0.9895440936088562, 0.3875446915626526, 0.7273313999176025, 1.4576605558395386, -0.6047863364219666, -0.265342652797699, -2.058091640472412, 1.1149014234542847, 0.256020724773407, 1.8840124607086182, -0.2465052306652069, 0.7085289359092712, 0.24801626801490784, -0.4704342782497406, 0.337586909532547, 0.31107795238494873, 0.6054670810699463, 0.14455987513065338, -0.5266692638397217, -0.34613996744155884, -0.4160558879375458, -0.043568480759859085, -0.16814886033535004, -0.1789846569299698, 0.18226678669452667, -0.925613522529602, -0.4295479953289032, 0.73468416929245, 0.713759183883667, -0.9705933928489685, -0.24105221033096313, 0.12028542906045914, 0.5961230397224426, 0.07757122814655304, 0.17606787383556366, 0.05528586730360985, -0.12935884296894073, -0.2731580138206482, -1.359907627105713, 0.02884148620069027, -0.30714255571365356, 0.3376867175102234, 0.6691297888755798, -0.6958238482475281, 0.3978995978832245, -1.2131558656692505, 0.6224914789199829, 0.7721750736236572, 0.07484353333711624, -0.07864093035459518, 0.4273582994937897, 0.43906641006469727, -0.19101345539093018, -0.42872339487075806, 1.2469632625579834, 0.4113438129425049, -0.5627730488777161, 0.5162107348442078, 0.2871275246143341, 0.5608896017074585, -0.2205650359392166, 0.36949723958969116, 0.49290376901626587, -0.9272289276123047, -0.44143134355545044, -0.0336967371404171, -0.03057902306318283, 2.137907028198242, 0.5605559945106506, -0.23839592933654785, 0.6137575507164001, -0.3835456073284149, -0.5799733996391296, 0.08666622638702393, 0.02643703855574131, -0.022227931767702103, -1.1123758554458618, 0.8010873198509216, 0.7917710542678833, -0.35914647579193115, 0.3317432403564453, 0.4057854115962982, 0.2596195638179779, 0.4749979078769684, -0.059045277535915375, 0.6461895704269409, 0.7176177501678467, 1.1765471696853638, 0.7509412169456482, 0.4754598140716553, -0.5780777335166931, -0.17167551815509796, 0.9737423658370972, -0.6968333721160889, -0.15704350173473358, 0.5318461656570435, 0.398382306098938, 1.1144376993179321, -1.507400631904602, -0.619725227355957, 0.8136298656463623, 0.20099692046642303, 1.0338046550750732, 0.6888803839683533, 0.30488404631614685, -0.7228400111198425, 0.15931583940982819, 0.4504915773868561, -0.14146538078784943, 0.6507322192192078, -0.17238561809062958, -0.5279340147972107, 0.034215204417705536, -0.6360440850257874, 0.14764505624771118, -0.52052241563797, -0.8851705193519592, -0.084888756275177, -0.8873282670974731, 0.4297798275947571, -0.06663132458925247, 0.8888663053512573, 0.6977683305740356, -0.26465266942977905, -1.1134145259857178, 0.8163787126541138, -0.7946397066116333, 0.05347544699907303, -0.40615034103393555, -0.9309555888175964, -0.38650941848754883, -1.0265995264053345, -0.5370809435844421, -0.21689866483211517, -0.9168910384178162, -0.18099445104599, -0.10329671204090118, -1.005608320236206, 0.11075930297374725, 0.17404460906982422, 1.058239459991455, 1.0973137617111206, -0.09280211478471756, 0.5168004035949707, 0.2612638771533966, -1.3015317916870117, -0.26960110664367676, 0.9652521014213562, -0.06856812536716461, -0.04722030460834503, -1.2086169719696045, -0.3409922122955322, 1.6795517206192017, 0.5668959617614746, -0.5518860220909119, 0.667565643787384, 0.9101828336715698, 1.341933250427246, 0.04349682107567787, -1.3521254062652588, 0.33946648240089417, -0.4987805485725403, 0.5202829241752625, 1.2074631452560425, -0.8235154151916504, -0.5101417303085327, -0.6534295082092285, -1.7671111822128296, 1.8412175178527832, 0.024426419287919998, -0.2859017550945282, 1.5081655979156494, 0.7360712289810181, -0.019899794831871986, 0.22367510199546814, -0.32290127873420715, -0.012862720526754856, 0.0993909016251564, -0.08422430604696274, -1.3137390613555908, 0.787492036819458, 0.22894901037216187, 0.1326856166124344, 0.07179515063762665, 0.3454180955886841, -0.5722072124481201, 0.03516564145684242, -0.13008412718772888, 0.7199198603630066, -0.1838056892156601, 0.5871171951293945, -0.1664813756942749, -0.11301916837692261, -0.057014770805835724, -0.9004505276679993, -0.10034315288066864, 0.20347246527671814, 0.7487587928771973, 0.26820746064186096, -1.3617806434631348, 0.4145008325576782, -0.2371015101671219, 0.15074960887432098, -0.15435856580734253, -0.4904462993144989, 1.3657904863357544, 0.5187064409255981, -0.002762464340776205, 0.8372296690940857, -0.08618704229593277, -0.5525912046432495, -0.9102253913879395, -0.8574255108833313, 0.11594285070896149, -1.257206678390503, -0.23785077035427094, -0.6720466613769531, -0.151620551943779, 0.12296037375926971, -0.12440416216850281, 0.3465688228607178, -1.2004081010818481, -1.474125862121582, -0.929905354976654, -0.3091334402561188, 0.622299313545227, -1.0827107429504395, 0.0799134224653244, 0.15740685164928436, -1.4907066822052002, 0.3215096890926361, -0.11378572136163712, -1.3408974409103394, 0.0516321174800396, -1.296484351158142, 0.5689824223518372, -0.4914478659629822, 0.6699724793434143, -0.8272597789764404, 0.9458341598510742, -1.1669617891311646, -0.589337170124054, -1.409196138381958, -0.3921929597854614, 1.369903564453125, 0.8168184161186218, -0.656173825263977, 1.6888315677642822, -0.1999274343252182, -0.9220129251480103, -0.342722088098526, 0.778080940246582, -0.9342686533927917, -0.22844645380973816, 0.6783584952354431, 0.1284746676683426, 0.560276448726654, 1.4716917276382446, 0.9008489847183228, 0.6484072804450989, 0.31618988513946533, 0.156946063041687, -0.9696621298789978, -1.0702857971191406, -0.15480051934719086, 0.4874213635921478, -0.8760653734207153, -0.8754779696464539, 0.13094688951969147, -0.5028085112571716, -0.7000902891159058, 1.2562999725341797, 0.7959840893745422, -1.3069615364074707, -0.1197030320763588, -0.3740457594394684, 0.42817556858062744, -0.5010359287261963, 0.12926903367042542, 0.5353444218635559, -0.14438791573047638, 0.3563334345817566, -0.27021509408950806, -0.15749311447143555, -1.3505229949951172, 0.13381944596767426, -0.22315597534179688, 0.4273971915245056, -0.5297841429710388, 0.6186901330947876, 0.47619888186454773, -0.48183152079582214, -0.7940835952758789, 1.3248134851455688, 0.9010537266731262, -0.21943876147270203, 0.2489526867866516, -0.49669259786605835, -0.20205415785312653, 0.9196298122406006, -0.6966472268104553, 0.1731194257736206, -1.0276414155960083, 0.5495443344116211, 0.16288445889949799, -0.22074571251869202, -0.07542788237333298, 0.10626818239688873, -0.2430228441953659, 0.22502398490905762, 0.7478340268135071, 0.2602914571762085, -0.34692370891571045, 1.3123196363449097, 1.1830438375473022, -0.2378399819135666, 0.4758477509021759, -0.1919320821762085, 0.6305060386657715, -0.27548059821128845, 0.8070699572563171, 0.5009307861328125, -0.49068063497543335, 0.42381399869918823, 0.025937698781490326, -0.19787105917930603, -0.1260605901479721, -0.2735650837421417, -1.4519836902618408, -0.16998820006847382, -0.9512189626693726, -0.15560634434223175, 0.8265284299850464, -0.6049816608428955, -0.47811657190322876, 0.520225465297699, 0.00230729510076344, -0.03542850911617279, -0.7481583952903748, -0.9654398560523987, -0.4643627107143402, 0.22613967955112457, 1.0554988384246826, -0.528876006603241, 1.1411582231521606, -0.039527103304862976, -0.1603909283876419, -0.9611430168151855, -0.4680699110031128, -0.11137773841619492, 0.500052809715271, -0.2706039547920227, 0.5336790680885315, 0.8871360421180725, -0.9456084370613098, -0.8594485521316528, -0.14795731008052826, 0.026214202865958214, 0.5642409324645996, -0.11461139470338821, -0.5120394825935364, -0.2089480757713318, 1.031104564666748, -0.007640873081982136, 0.27764058113098145, -0.3652510643005371, -0.9926546812057495, 0.3453960418701172, 0.12896199524402618, 0.7370986342430115, -0.46152934432029724, 0.2819344103336334, 0.24208129942417145, -0.5281739830970764, 0.11347261071205139, -0.6530219316482544, 0.40727946162223816, -0.10373957455158234, 0.15170663595199585, -0.28535327315330505, -0.06534738838672638, -0.30706387758255005, -1.0615357160568237, 0.13562911748886108, -0.4700104892253876, -0.05578545108437538, -0.11582701653242111, -0.9599443078041077, -0.551274299621582, -0.6671341061592102, -0.43175867199897766, 1.0150543451309204, 0.4393705725669861, 0.7405251264572144, -0.43895357847213745, -0.8630434274673462, -0.5030757784843445, 0.6538901329040527, 0.14823821187019348, 0.526361882686615, 1.770547866821289, 1.5598723888397217, 0.17518877983093262, 0.4298747181892395, 0.26534250378608704, 0.4044346213340759, -0.7528064846992493, -0.19039618968963623, -1.1692904233932495, -0.10397431254386902, -1.0624524354934692], [-0.03050031140446663, 1.519787311553955, -1.7598345279693604, -1.2673200368881226, 0.016337672248482704, 0.39261800050735474, 0.33048343658447266, 0.29262202978134155, 0.045166317373514175, -0.8558496832847595, -1.33159601688385, 0.38148075342178345, 1.6780000925064087, 1.1715619564056396, 0.22841227054595947, 0.5089072585105896, 0.6343953013420105, -0.394828736782074, -0.0005024760030210018, 0.541894793510437, -0.6608324646949768, -1.060376524925232, 0.03246615454554558, 0.026319235563278198, 0.5658137202262878, 0.033279888331890106, -2.1679868698120117, -0.3885274827480316, -1.4500055313110352, -0.849059522151947, 0.4121493995189667, -0.7788496017456055, -0.553024411201477, 0.15599653124809265, -1.1493300199508667, -0.6939574480056763, 1.1447030305862427, 0.45816928148269653, 0.7400335669517517, 1.3839151859283447, 0.9189343452453613, 0.4258614182472229, -0.005943180527538061, -1.1061933040618896, 0.39983975887298584, 0.13978636264801025, -0.08785216510295868, -1.5481760501861572, 0.24686740338802338, -0.6847546696662903, 0.8643267154693604, 0.14501595497131348, 0.4437401592731476, 0.7055026292800903, 1.0351661443710327, -0.08724766224622726, -0.3452168107032776, -0.5378468632698059, 0.7258430123329163, -0.6085445880889893, 1.1122161149978638, 0.4058154821395874, -0.20605774223804474, 1.1295156478881836, 0.24919600784778595, -0.30851447582244873, -0.06061602756381035, 0.3584015667438507, -0.1466561108827591, -0.5019159317016602, 0.2779499888420105, -0.013700857758522034, -0.06569813191890717, 0.6526708006858826, -0.5368213653564453, 0.6093546748161316, 0.7347652316093445, 0.2189415544271469, 0.1932656317949295, 1.2922419309616089, -0.012864463031291962, -0.5174288749694824, 0.2787264287471771, -0.47206708788871765, 0.8595197796821594, -0.20259630680084229, -0.29136112332344055, -0.4906952381134033, -0.47392648458480835, 1.9715369939804077, -0.08905909955501556, 0.005209834314882755, -0.38094156980514526, 0.08937306702136993, -0.10443264991044998, -0.6446783542633057, 0.2124054729938507, -0.3317534625530243, -0.7423399090766907, -0.7989280819892883, -0.7243496775627136, -0.4337468147277832, 0.3196355700492859, 0.17075009644031525, 0.7761824131011963, 1.2155433893203735, 0.30470985174179077, -1.312669038772583, -0.4252438545227051, 0.17841170728206635, 0.6033049821853638, 0.008353465236723423, -1.2582730054855347, -1.1433759927749634, -0.8533151149749756, 0.7120475172996521, 0.6176853775978088, -0.8349908590316772, 1.0283985137939453, 0.7705914378166199, -1.12528657913208, -0.2669985294342041, -0.9382004737854004, 0.7210426926612854, 0.29946377873420715, 0.4337829649448395, -0.290163516998291, -0.3221053183078766, 0.4075409173965454, 0.14528360962867737, 0.4179963767528534, -0.012207121588289738, -0.010442554019391537, 0.734663188457489, -0.4856511056423187, 0.8191737532615662, -0.13024768233299255, -1.3835631608963013, -0.02604478783905506, -0.1905122846364975, 0.37890756130218506, -0.7150882482528687, -0.6584724187850952, -0.7798882722854614, -0.5862316489219666, -0.8181766271591187, 0.14689387381076813, -0.5667896270751953, -1.1726101636886597, -0.029545845463871956, -0.8833504915237427, 0.30534499883651733, 0.37693125009536743, 1.3037391901016235, -0.2282659411430359, 0.19774699211120605, 0.20714588463306427, 0.22595970332622528, 0.188019797205925, 0.3573637902736664, 0.8661508560180664, 0.2221420705318451, -0.5760681629180908, 0.8644969463348389, 0.13631857931613922, -0.4526163339614868, 0.22443687915802002, 0.44246312975883484, 0.16306230425834656, 0.6086941361427307, -0.5039109587669373, 0.21932484209537506, -0.6032750010490417, 0.5191794633865356, 0.13407665491104126, -1.0497369766235352, 0.7642648220062256, -0.7128020524978638, -0.8565084338188171, -1.0233074426651, 0.9153441190719604, -0.6597858667373657, -0.10033851116895676, -0.6668775081634521, 0.3577755391597748, -0.1894606351852417, 0.08202280849218369, 0.00103857833892107, -0.4617779850959778, -0.5415636897087097, -0.7853533625602722, -0.31858956813812256, -1.0683534145355225, -0.4660077393054962, -0.35605284571647644, -1.2238080501556396, -0.3251127302646637, 0.11785828322172165, -0.7103308439254761, 0.2935503423213959, -0.20184096693992615, 0.09087048470973969, -1.857663869857788, -0.0955670028924942, -0.7608185410499573, 1.3709458112716675, -0.2112605720758438, 0.6441842913627625, -0.823544979095459, 0.21757039427757263, 1.1622686386108398, 0.06372767686843872, -0.8390271067619324, 0.8751029372215271, 0.14977744221687317, -0.2962459921836853, 0.277733713388443, -0.1280428171157837, -0.496853232383728, 0.022877037525177002, 1.4528218507766724, 0.6781924366950989, 0.11296519637107849, 0.19767549633979797, 0.39568519592285156, 0.4611135423183441, -0.9966364502906799, -0.4578115940093994, -1.0608956813812256, -0.09417957067489624, -0.5241227149963379, -0.9273665547370911, 1.4444650411605835, 0.6437743902206421, -0.48500174283981323, 0.5531657934188843, -0.14707429707050323, 0.4863784611225128, 0.40442296862602234, 0.6630460619926453, 0.15430977940559387, 0.4156060814857483, -0.6398274898529053, -0.4606250822544098, -0.6846787929534912, 0.09413015842437744, 0.8073316216468811, -0.7200354933738708, -0.3209865987300873, 1.4294997453689575, 0.7713630795478821, -0.14223307371139526, 0.48417699337005615, -0.052168216556310654, -0.010111115872859955, -0.5225512981414795, -0.40974438190460205, 0.2721865773200989, -0.3058761656284332, 1.117401123046875, 1.0622127056121826, -1.0827146768569946, -0.6732125282287598, -0.19251608848571777, -0.0027099172584712505, -0.47992926836013794, -0.21902203559875488, -0.4822165071964264, 0.6011320948600769, -0.044694311916828156, 0.397417813539505, 0.7557491660118103, -0.017570625990629196, 0.486052930355072, -0.44599926471710205, 0.17928433418273926, -0.1946079283952713, 0.5496535301208496, -0.2555880844593048, 0.5569402575492859, 0.0007745428010821342, -0.9223392605781555, -0.7588959336280823, -0.11040304601192474, 0.6215384006500244, -0.1425343006849289, -0.4446316063404083, 0.93150395154953, 0.5096952319145203, -1.1301404237747192, -0.27551183104515076, 0.34472179412841797, -0.4049680531024933, -0.18598605692386627, -0.14306557178497314, 0.39721396565437317, 1.1786870956420898, -0.07926896959543228, -0.7273796200752258, -0.011186531744897366, 0.5714062452316284, 1.0806573629379272, 0.8818289041519165, 1.158189296722412, -0.28804779052734375, -0.22597792744636536, 0.03607193008065224, 0.0767391249537468, -0.6879062056541443, -0.02004600316286087, -0.9621691703796387, -0.8379282355308533, 0.7162727117538452, -0.23325493931770325, 0.36043140292167664, 0.4424009323120117, 0.06450669467449188, 0.5271539092063904, 0.7382970452308655, -0.5890181660652161, -0.23871394991874695, 0.03216428682208061, -0.2809864282608032, -1.007900357246399, 0.5633997321128845, 0.240160271525383, -0.7560744285583496, -0.10995862632989883, -0.220059335231781, -0.5763800144195557, 0.5482264757156372, -0.39030054211616516, 0.4205702543258667, -0.9788134694099426, -0.0521378256380558, 0.21671898663043976, 1.407592535018921, -0.2532319724559784, -0.46524640917778015, -1.1305315494537354, -0.1149914413690567, 0.25473496317863464, 0.1938396394252777, -0.8134467005729675, 0.9816586375236511, 0.12454373389482498, -0.5920799374580383, -0.4542088508605957, 0.3798494338989258, 1.3120918273925781, -0.3252178728580475, 0.1512504518032074, 0.2747332751750946, 0.3719562292098999, -0.2986367344856262, -0.06402130424976349, -0.2369677573442459, 1.373428225517273, 0.23991388082504272, 0.3529326319694519, 1.2625447511672974, -0.46430638432502747, -0.40606269240379333, -2.044196605682373, 1.0449858903884888, -0.19540514051914215, 1.791028380393982, 0.32025107741355896, 0.6637632846832275, 0.4418984651565552, -0.9563398361206055, -0.40499797463417053, 0.4935206472873688, 0.3343164324760437, 0.3779188096523285, -0.8756787180900574, -0.630953311920166, 0.07476115971803665, -0.5660079717636108, -0.5626725554466248, -0.8148317337036133, 0.10322467237710953, -0.7596623301506042, -0.5801307559013367, 0.7270920276641846, 1.3491878509521484, -0.04482200741767883, 0.16954252123832703, 0.7024118304252625, -0.19419077038764954, -0.3436224162578583, 0.2518254518508911, -0.76349276304245, -0.24700887501239777, -0.3217792510986328, -1.0807442665100098, -0.5575998425483704, 0.33825525641441345, 0.3351942002773285, 0.5638390779495239, -1.0340701341629028, -0.2250153124332428, -0.3791453540325165, 0.05494121462106705, 0.3165603578090668, 0.45838746428489685, 0.06427986919879913, 0.41524118185043335, 0.29270559549331665, -0.4531828761100769, 0.16698603332042694, 0.7324572205543518, -0.09945949167013168, 0.0031141589861363173, -1.0266149044036865, -0.07410243153572083, -0.002449341118335724, 0.004401938524097204, -1.106343388557434, 0.3533306121826172, -0.2738174498081207, 0.2611614763736725, -0.03807641938328743, 0.30545592308044434, 1.4250564575195312, 0.7389867305755615, 0.4753612279891968, 0.9972791075706482, -0.5123412609100342, -0.6694768667221069, 0.1641162782907486, -2.515967935323715e-06, -0.37031760811805725, -0.6367253661155701, 0.4476655423641205, 0.529181957244873, 0.055449727922677994, 0.9035648703575134, 0.20381921529769897, 0.7370646595954895, 0.4351283013820648, -0.21485671401023865, 0.036212027072906494, 0.7415063381195068, 0.7917454838752747, 0.40256887674331665, 0.6816917061805725, 0.20802909135818481, -0.7663577795028687, 1.6949963569641113, -0.9615012407302856, -0.10418327897787094, 0.2295629233121872, 0.301754891872406, 1.4230729341506958, -1.0942106246948242, -0.49873989820480347, 0.14849527180194855, -0.3999128043651581, 0.22670064866542816, 0.5337290167808533, 0.9020441174507141, -0.752987265586853, 0.5119239091873169, 1.041097640991211, 0.11479932069778442, 0.8641222715377808, -0.7340439558029175, -0.38425391912460327, -0.1260019689798355, -0.5247454643249512, 0.7396103739738464, -0.6670345664024353, -0.005679901689291, 0.3421051800251007, -0.3611905574798584, 0.20364511013031006, 0.044045720249414444, -0.04973958060145378, 1.4704452753067017, 0.009273315779864788, -1.0953590869903564, 0.23597116768360138, -0.961871862411499, 0.45575016736984253, -0.15383639931678772, -0.9526647925376892, 0.14025376737117767, -0.6359403729438782, -0.22007973492145538, -0.1260232925415039, -0.7846429944038391, -0.12141479551792145, 0.4657188951969147, -0.9001988172531128, -0.4674548804759979, 0.04445437341928482, 1.1629382371902466, 0.6639020442962646, 0.11296127736568451, 0.2920861840248108, 0.5453933477401733, -0.6044590473175049, -0.12601026892662048, 0.49008479714393616, -0.5533831715583801, 0.2668033242225647, -1.1517937183380127, -1.0930054187774658, 1.0755763053894043, 0.9309418201446533, 0.47757577896118164, 0.23480047285556793, 1.076984167098999, 1.412518858909607, -0.5529993772506714, -0.7755268216133118, 0.09277079999446869, -0.8023804426193237, 0.6604931950569153, 0.7360488772392273, -0.822397768497467, -1.271476149559021, -0.38061246275901794, -1.522081732749939, 1.431654691696167, -0.23489508032798767, -0.6505526304244995, 0.8883740305900574, 1.561673879623413, 0.3131847381591797, 0.8779158592224121, -0.6391505599021912, -0.12136328220367432, 0.404558390378952, -0.5004606246948242, -1.0964463949203491, 0.4161434471607208, 0.5038200616836548, 0.36874961853027344, -0.0834176316857338, 0.8677972555160522, -0.031309980899095535, -0.37638503313064575, 0.020217621698975563, 0.5125723481178284, 0.1772417575120926, 0.5577568411827087, 0.6064996123313904, -1.2229119539260864, -0.7278668880462646, -0.3361155390739441, 0.34392669796943665, 0.8554391860961914, 0.9113694429397583, -0.16559500992298126, -1.4589929580688477, -0.20320215821266174, -0.35243508219718933, -0.20568367838859558, 0.05886084586381912, -0.599976658821106, 1.5692538022994995, 0.17324580252170563, -0.7168009281158447, 0.7835369110107422, 0.1048484593629837, -0.491685152053833, 0.0984402671456337, 0.08179362863302231, 0.5374796986579895, -1.6815992593765259, -0.7473176121711731, -0.2500306963920593, 0.11251497268676758, 0.5577800273895264, 0.4897289574146271, -0.29774871468544006, -0.782827615737915, -1.773506760597229, -0.03920456022024155, 0.07712186127901077, 0.7038198113441467, -1.3733934164047241, -0.17702440917491913, 0.5415537357330322, -1.431286096572876, 0.4612334072589874, 0.12608954310417175, -0.9364937543869019, -1.0685231685638428, -1.2456251382827759, 0.7479705810546875, 0.6022825241088867, 0.42473769187927246, -0.17972849309444427, 0.6491060256958008, -0.5736752152442932, -0.12357571721076965, -1.050358533859253, 0.1302158087491989, 1.1665207147598267, 0.7376946806907654, -0.25208306312561035, 0.7059446573257446, 0.06825582683086395, -0.5463771224021912, 0.3459031283855438, 0.4792855381965637, -0.4962901473045349, 0.2210063934326172, 0.5259105563163757, -0.09012399613857269, 0.43638360500335693, 1.0570493936538696, 0.3561113476753235, 0.9120621085166931, 0.11427894979715347, 0.6147992610931396, -0.22937361896038055, -0.3054051697254181, -0.19438329339027405, 0.03748072311282158, -0.8605753779411316, -0.7521023750305176, -0.21522386372089386, -0.528399646282196, -0.20795315504074097, 0.8004297614097595, 0.6657247543334961, -0.7814422249794006, -0.6379312872886658, -0.3501662611961365, 0.4434713125228882, -0.07865484058856964, 0.5572137236595154, -0.1286996454000473, -0.011268670670688152, 0.4665565490722656, 0.052103109657764435, 0.7974407076835632, -0.8950667977333069, 0.6868046522140503, -0.3119301199913025, 0.40105393528938293, -0.2875922918319702, 0.24422700703144073, 0.5658533573150635, -0.34787723422050476, -0.7387626767158508, 1.4656062126159668, 1.1797517538070679, 0.42786502838134766, 0.19412566721439362, 0.15137217938899994, 0.17046158015727997, 0.9661902785301208, -0.8286235332489014, 0.07624217867851257, -1.074826717376709, 0.3822636008262634, 0.015319869853556156, 0.35008499026298523, -0.6255936026573181, 0.5179336071014404, -0.35137179493904114, 0.11686453968286514, 0.8465973138809204, 0.022571219131350517, -0.41706064343452454, 0.6563010215759277, 0.7451357245445251, -0.6194837093353271, 0.17235150933265686, 0.2611473500728607, 0.5772728323936462, 0.20849479734897614, 0.38630762696266174, 0.3229276239871979, -0.5546296238899231, -0.04710495099425316, 0.6633955836296082, -0.7039307355880737, -0.04200397804379463, -0.7293024659156799, -1.798348307609558, -0.3490576446056366, -0.09999800473451614, -0.703391432762146, 0.22898021340370178, -1.1152409315109253, -0.680684506893158, 0.5025748014450073, -0.360893189907074, 0.527908444404602, -0.9548206329345703, 0.13557682931423187, 0.08211912214756012, 0.5370687246322632, 1.067757248878479, -0.2332296073436737, 0.7520347237586975, 0.2787274718284607, 0.1623021811246872, -0.3861068785190582, 0.1804157942533493, -0.05080194026231766, 0.6148737668991089, 0.10667982697486877, 0.027683652937412262, -0.7987067103385925, -0.8877117037773132, -0.698799192905426, 0.19059595465660095, 0.09018487483263016, 0.4301712214946747, -0.3578064739704132, -0.7886250615119934, -0.6353408694267273, 1.345481514930725, 0.6235695481300354, -0.22203998267650604, -0.5535027384757996, -0.5220932364463806, -0.028741639107465744, 0.1505175232887268, 0.8862307667732239, -0.6612364649772644, 0.3155404329299927, -0.07036174088716507, 0.11542309075593948, -0.12328378111124039, -0.1968260258436203, 0.3455398380756378, -0.3956907093524933, 0.6420283913612366, -0.3622475862503052, -0.6284970641136169, 0.6638714075088501, -0.7060315608978271, 0.21159523725509644, -0.0029669080395251513, -0.3087831735610962, 0.26466017961502075, -0.3395051658153534, -0.9747138023376465, -0.47811073064804077, 0.3069644868373871, 0.3082462251186371, 0.6735004186630249, -0.06412405520677567, -0.1772872507572174, -0.8421100974082947, 0.29783645272254944, 0.5650089979171753, -0.40157872438430786, 0.7603289484977722, 1.9514873027801514, 1.7039906978607178, 0.05596008524298668, -0.4772772789001465, -0.4936015009880066, 1.2557399272918701, -0.9192730188369751, -0.5608339309692383, -1.2736930847167969, -0.2600504755973816, -0.23361517488956451], [0.40331095457077026, 1.0182816982269287, -1.3900095224380493, -0.49305015802383423, 0.5528031587600708, 0.307683527469635, 0.6195558309555054, 0.5907474756240845, 0.23104335367679596, 0.13046276569366455, -0.919847846031189, 0.5722621083259583, 0.7806896567344666, 0.35324814915657043, 0.4852963984012604, 0.11502064764499664, 1.0998966693878174, -0.34260424971580505, -0.02563394233584404, 0.237651064991951, -0.566108226776123, -1.2801159620285034, -0.16583658754825592, 0.3333348333835602, -0.07572858035564423, 0.4267045557498932, -1.8435355424880981, -0.16792725026607513, -1.9732297658920288, -0.12876002490520477, 0.9137781262397766, -0.7451598644256592, -0.14610040187835693, -0.1449168473482132, -1.9016740322113037, 0.09668366611003876, 1.0331480503082275, -0.04022783413529396, 0.2592718303203583, 0.05683540925383568, 1.5402228832244873, -0.26431015133857727, -0.3634929060935974, -1.2340471744537354, 1.0807644128799438, -0.09726214408874512, 0.9543488025665283, -1.7646329402923584, 0.05227034166455269, -1.046599268913269, 0.43564707040786743, 0.4206794500350952, -0.5961771607398987, 0.932494044303894, 0.5720638632774353, -0.6791625022888184, 0.16356681287288666, -0.06472479552030563, 0.2560889422893524, -0.3799436390399933, 1.2851067781448364, -0.327301949262619, -0.7807406187057495, 0.829336941242218, 0.8125256299972534, -0.01800469495356083, 0.2635660767555237, 0.3978702127933502, -0.7841870188713074, -0.3133086562156677, 0.2666114568710327, 0.40420499444007874, -0.7155894637107849, -0.08696708083152771, -0.19110623002052307, 0.724668025970459, 0.6224313378334045, -0.32773280143737793, 0.006856793537735939, 0.5462610125541687, -0.7048773169517517, 0.12721340358257294, -0.2988245487213135, -0.5789920091629028, 0.19003692269325256, 0.6003054976463318, -0.01703554391860962, -0.18278644979000092, -0.2035250961780548, 1.1412440538406372, -0.3656185269355774, 0.055896174162626266, -0.23451533913612366, -0.20411111414432526, -0.07087724655866623, -0.22686776518821716, 0.14839938282966614, -0.39350390434265137, -0.7876648306846619, -1.2486201524734497, -0.6456700563430786, -0.7077040076255798, 0.48206424713134766, 0.23718000948429108, 1.2507950067520142, 0.8058106303215027, 0.3911930322647095, -1.2992687225341797, 0.10433229058980942, -0.06770377606153488, -0.5410218834877014, 0.6959213614463806, -1.0699505805969238, -0.6704733371734619, -0.641988217830658, 0.9812842607498169, 0.4945184886455536, -0.9263558983802795, 1.0297483205795288, 0.7571330070495605, -1.0473295450210571, 0.22845591604709625, -1.071749210357666, 0.9140028953552246, 0.4597739577293396, 0.6869736909866333, -0.433329701423645, -0.2948911488056183, 0.7913302183151245, 0.7669086456298828, 0.1364200860261917, 0.33798304200172424, -0.18669794499874115, 1.5708179473876953, -0.4089585840702057, 1.0658210515975952, -0.23603704571723938, -1.121049404144287, -0.22989998757839203, -0.040090590715408325, 1.0846034288406372, -1.1949715614318848, -0.16657012701034546, -0.16314245760440826, -0.5518069863319397, 0.0755172148346901, 0.10256601870059967, 0.18714645504951477, -1.0835014581680298, 0.5228787660598755, -0.8318942785263062, 0.33482858538627625, 0.230740025639534, 1.404138207435608, -0.07539566606283188, -0.02717638574540615, 1.1085162162780762, 0.1722414791584015, 0.19620931148529053, 0.07418741285800934, 1.0662460327148438, 0.005803117528557777, -0.8277431130409241, 1.2170354127883911, 0.20191119611263275, -0.35982269048690796, 0.3313436806201935, 0.286166250705719, -0.14498509466648102, 0.49404552578926086, -0.44824057817459106, -0.6087192893028259, -0.10105118155479431, 1.0051161050796509, 0.21977998316287994, -0.7686675190925598, 0.8501896858215332, -0.5883781909942627, -1.3275632858276367, -0.808800995349884, 1.6318994760513306, -0.24558548629283905, 0.44395911693573, -0.5992355942726135, 1.0538818836212158, 0.26161476969718933, 0.005746031180024147, 0.8256176114082336, -0.08457662910223007, -0.6582211852073669, -0.8624729514122009, -0.7135453224182129, -1.0562056303024292, 0.05779428407549858, -0.9740383625030518, -1.1556377410888672, 0.12417509406805038, -0.4846562445163727, -0.15752843022346497, 0.43409764766693115, -0.15261909365653992, -0.06354273855686188, -1.4259028434753418, -0.5879653096199036, 0.12324542552232742, 1.0324816703796387, -0.30956488847732544, 0.5597089529037476, -0.26901593804359436, 0.06405975669622421, 1.4857404232025146, 0.191297709941864, -0.7630881071090698, 0.13986296951770782, -0.39974409341812134, -0.8884690999984741, 0.1573203057050705, -0.1181497573852539, 0.3178751766681671, 0.671718955039978, 0.47798141837120056, 0.7598651647567749, 0.13506071269512177, 0.2547563910484314, 0.602548360824585, 0.6296780109405518, -1.4696778059005737, -0.9566888809204102, -0.9834973812103271, -0.9360007047653198, -0.9343176484107971, -1.5017374753952026, 0.6743568778038025, 0.4064282476902008, -0.6673503518104553, 0.11190354079008102, -0.17750395834445953, 0.4836238622665405, 0.044152434915304184, 1.1656476259231567, 0.3198396861553192, 0.4739607572555542, -0.5888729095458984, 0.10066934674978256, -0.7530930638313293, -0.014655757695436478, 1.1589370965957642, -0.32172638177871704, -0.13307881355285645, 1.3143807649612427, 1.8204996585845947, -0.12735888361930847, 1.0373446941375732, 0.14977498352527618, 0.30280569195747375, -0.5786274075508118, -0.16471967101097107, -0.30833229422569275, -0.7625502943992615, 1.249819278717041, 0.3760920464992523, -1.0235832929611206, -0.3559964895248413, -0.2525935769081116, -0.7974061369895935, 0.01000326406210661, 0.05781158059835434, -0.860289990901947, 0.2150171846151352, -0.2882782518863678, 0.5915858149528503, -0.23981671035289764, -0.02726353146135807, 0.6508084535598755, -0.4621202051639557, -0.2172725349664688, -0.5264158844947815, -0.15884312987327576, -0.08347138017416, 0.40841972827911377, -0.13534660637378693, -0.788268506526947, -0.12105382978916168, 0.45975103974342346, 0.64887934923172, -0.5347524285316467, 0.0913558304309845, 1.349733829498291, 0.7861350774765015, -0.5864341259002686, -0.1172589436173439, 0.20032015442848206, -0.14240294694900513, -0.026247091591358185, 0.34342941641807556, 0.42664074897766113, 0.5224262475967407, -0.6560969352722168, -1.0602772235870361, -0.0648324266076088, 0.23992763459682465, 0.6368732452392578, 0.6921730637550354, 0.874281644821167, -0.5496841669082642, -0.34822872281074524, -0.7085513472557068, 0.10702096670866013, -0.7376121878623962, -0.35711610317230225, -0.4001772105693817, -0.7253950238227844, 0.14711889624595642, -0.793033242225647, 0.519126296043396, 0.34847554564476013, 0.043373409658670425, 0.5989487767219543, 1.3320930004119873, -0.1416018158197403, -0.10138487070798874, 0.04877893254160881, -0.09754791110754013, -0.7773996591567993, 0.7147960066795349, 0.3815617859363556, -0.919324517250061, -0.40654420852661133, -0.6949561834335327, -0.2560465335845947, 0.49215471744537354, -0.08819365501403809, 0.591196596622467, -1.217864751815796, -0.45175719261169434, 0.22487019002437592, 1.3349127769470215, 0.09115511178970337, -0.3982275724411011, -0.6015532612800598, -0.09582117199897766, 0.30236002802848816, 0.15150856971740723, -0.006692187860608101, 0.8741160035133362, -0.31749027967453003, -0.41484200954437256, -0.17812438309192657, 0.5028549432754517, 0.7629430294036865, -1.187811017036438, -0.20972643792629242, -0.03470921143889427, -0.12474305182695389, -0.9807130098342896, -0.34929874539375305, -0.0789053812623024, 0.7322315573692322, 0.6138537526130676, 0.3727877736091614, 1.506448745727539, -1.120405912399292, -0.1410086452960968, -1.6227067708969116, 0.778731107711792, 0.20922240614891052, 1.4202220439910889, 0.1214480847120285, 0.4761351943016052, 0.558984100818634, -0.4629676043987274, -0.04986463859677315, 0.5891528129577637, 0.8306800723075867, 0.08943331241607666, -0.8830990195274353, -0.4373190701007843, -0.2911834418773651, -0.19003604352474213, -0.7052221894264221, 0.1012813001871109, -0.004487907979637384, -0.5783995985984802, -0.7593830227851868, 0.7767345905303955, 0.8961647152900696, -0.3284737765789032, -0.6054744720458984, -0.45172590017318726, 0.4264962673187256, -0.7765963077545166, 0.08624948561191559, -0.2770431339740753, -0.19378215074539185, -0.21879823505878448, 0.01577567122876644, -0.5858489871025085, 0.26000139117240906, -0.27545762062072754, 0.9510166049003601, -1.2471343278884888, 0.010938793420791626, -1.1748619079589844, 0.7414641380310059, 0.3434165120124817, 0.5849848389625549, 0.1051388680934906, 0.30281946063041687, -0.26781362295150757, -0.17636381089687347, 0.06393056362867355, 1.139562726020813, -0.23565274477005005, -0.33022865653038025, -0.33869051933288574, -0.5270757675170898, 0.27723556756973267, -0.4915139973163605, -0.6398329138755798, 0.12320732325315475, -0.3330064117908478, -0.11363458633422852, 0.09610728174448013, 0.4893825054168701, 1.6697555780410767, 0.885526180267334, -0.38347429037094116, 0.6667419672012329, 0.031683627516031265, -0.035579387098550797, 0.11654554307460785, 0.44892647862434387, -1.0890592336654663, -0.5067521333694458, 0.6758172512054443, 0.8434134721755981, 0.2798961102962494, 0.5081722140312195, -0.23431043326854706, 0.43651288747787476, 0.02067941054701805, -0.09340473264455795, 0.3233453929424286, 0.9591984748840332, 0.8051841259002686, 0.3149925768375397, 1.3421756029129028, -0.07295309752225876, -0.4482862949371338, 1.2377828359603882, -0.9719229340553284, 0.4730043113231659, 0.42479461431503296, -0.20605963468551636, 0.7275451421737671, -1.9735296964645386, -0.7709518671035767, 0.6596532464027405, -0.20393560826778412, 0.2113676816225052, 0.40564867854118347, 0.6516547203063965, -0.22007502615451813, 0.1547996997833252, 0.5498323440551758, 0.4206998944282532, 1.2499827146530151, -0.5745047926902771, 0.1390877217054367, 0.3902112543582916, -1.2478424310684204, 0.8571147322654724, -0.8572364449501038, -0.2768966257572174, 0.8073516488075256, -0.20618140697479248, 0.2917684316635132, 0.5391432642936707, 0.32302138209342957, 1.3402312994003296, 0.09287121146917343, -1.4454265832901, 0.6549608111381531, -0.9561289548873901, 0.10330339521169662, -0.641313910484314, -0.009754141792654991, -0.3136223256587982, -0.6769746541976929, -0.03792911767959595, -0.20725657045841217, -0.4725930392742157, -0.10526347160339355, 0.3231339454650879, -0.985897421836853, -0.43639129400253296, 0.5410441756248474, 0.7670500874519348, 0.7713648676872253, 0.030080480501055717, 0.1326339840888977, 0.0556357279419899, -0.06155768036842346, 0.4626469612121582, 0.3355974853038788, 0.39656418561935425, -0.19276820123195648, -0.44750261306762695, -0.6075875163078308, 0.9105692505836487, 0.9166609644889832, -0.15604084730148315, 0.10380636900663376, 1.2352219820022583, 1.5869839191436768, -0.312863826751709, -0.7632482647895813, 0.148541659116745, -0.3428478538990021, 0.941776692867279, 0.5382279753684998, -0.9864647388458252, -0.6820207834243774, -0.2516934871673584, -1.1421043872833252, 1.2416622638702393, -0.6778124570846558, -0.4863013029098511, 0.237003356218338, 0.7042680978775024, 0.6032609343528748, 0.16335159540176392, 0.012966261245310307, 0.5496782064437866, 0.06797856092453003, -0.3665904700756073, -1.0665165185928345, 0.6091349720954895, 0.5459338426589966, -0.1336907595396042, -0.8372976779937744, 0.2700701355934143, -0.4102538228034973, 0.06783013790845871, 0.5446202158927917, 1.0396034717559814, 0.5079347491264343, 0.40821781754493713, 0.20132049918174744, -0.9420535564422607, -0.5678669214248657, -0.5604553818702698, -0.15736766159534454, -0.43908578157424927, 0.9079776406288147, 0.125162735581398, -0.24623247981071472, 0.10383463650941849, -0.06657487899065018, -0.4109722673892975, -0.35480454564094543, -0.93198162317276, 1.450804352760315, 0.45724737644195557, -1.0184921026229858, 0.13311982154846191, 0.004542083479464054, -0.031885672360658646, -0.18574531376361847, -0.28820696473121643, 0.6737199425697327, -1.0803278684616089, -0.4221327304840088, 0.0017395615577697754, -0.2917511761188507, 0.2364657074213028, 0.19766893982887268, 0.5226255655288696, -0.3324142098426819, -1.636862874031067, -0.6970906257629395, 0.7731784582138062, 1.0758488178253174, -0.5057727098464966, 0.6793968677520752, -0.2344043105840683, -1.9384866952896118, 0.87134850025177, -0.23415830731391907, -1.1490697860717773, -0.9584238529205322, -0.6733064651489258, 0.17706410586833954, 0.4476395547389984, -0.08465076237916946, 0.03620400279760361, 0.6002494096755981, -0.5761620402336121, -1.0312728881835938, -0.6861871480941772, -0.37831076979637146, 0.6594201922416687, 0.624070405960083, -0.6160916686058044, 0.8726030588150024, 0.6981749534606934, -0.6514145731925964, -0.613689661026001, 0.3991868793964386, -1.2040671110153198, 0.14002205431461334, 0.6577531099319458, 0.8044949769973755, 0.5435802340507507, 1.2548816204071045, 0.8690906167030334, -0.18950587511062622, 0.6301547288894653, 0.5509883761405945, -0.5931857824325562, -0.9315067529678345, -0.7488255500793457, 0.8085910081863403, -1.1124647855758667, -1.651085376739502, 0.3044787645339966, -0.0766221135854721, -1.010471224784851, 0.32845786213874817, 0.44807982444763184, -0.8004472851753235, -0.2853992283344269, -0.18715333938598633, -0.15250614285469055, 0.2559982240200043, 0.8299705982208252, 0.28891807794570923, -0.6956943273544312, -0.2105531394481659, 0.15024271607398987, 0.7842938899993896, -1.052389144897461, -0.14694388210773468, -0.4933426082134247, 0.07939683645963669, 0.46812283992767334, 0.12540003657341003, 0.5300718545913696, -0.5249493718147278, -0.3666422665119171, 1.456493854522705, 0.5081915855407715, 0.1675979644060135, 0.3574190139770508, 0.7510064244270325, 0.4580337405204773, 0.3141893744468689, -0.7577150464057922, 0.03720102831721306, 0.14679129421710968, 0.9865206480026245, -0.21302008628845215, 0.6166281700134277, -0.4931579828262329, 0.5260951519012451, 0.5700704455375671, 0.35837990045547485, 0.625565230846405, 0.1711745411157608, -1.0606236457824707, 0.3866993486881256, 0.5676257610321045, -0.6101744771003723, 0.4111904799938202, 0.3510400354862213, -0.11280788481235504, -0.31060996651649475, 0.5043794512748718, 0.6141241192817688, -0.7715253829956055, 0.1541977971792221, 0.2066815346479416, -0.6102941036224365, -0.5006411671638489, -0.3388959765434265, -1.8544820547103882, 0.08167283236980438, -0.08436010032892227, -0.25568386912345886, 1.2839781045913696, -1.0001014471054077, -0.2149163782596588, 0.09779957681894302, 0.07165426760911942, -0.07626528292894363, -0.8632615208625793, 0.13266868889331818, -0.5225904583930969, 0.8758853077888489, 0.974032998085022, 0.029565488919615746, 1.3928852081298828, -0.13171787559986115, -0.9313367605209351, -0.9054768085479736, 0.11890768259763718, 0.052136536687612534, 0.17119033634662628, -0.1583145260810852, 0.08728412538766861, 0.18606731295585632, -0.752535879611969, -1.3292715549468994, 0.27276793122291565, 0.6054140329360962, -0.24889495968818665, -0.5620077252388, -0.26196080446243286, -0.47877755761146545, 0.30377888679504395, 0.5518940091133118, -0.3102758526802063, -0.24126438796520233, -0.5911786556243896, -0.03634669631719589, -0.12470705062150955, 0.8948612213134766, -0.3335346281528473, 0.09411244094371796, -0.3872995674610138, -0.24984343349933624, -0.33847370743751526, -0.7147173285484314, 0.48211273550987244, 0.1652863472700119, 0.22043223679065704, -0.8141208291053772, -0.27363675832748413, -0.18543922901153564, -1.2722915410995483, -0.10082662105560303, 0.8076770305633545, -0.5799189209938049, 0.3467920124530792, -0.3390602767467499, -0.48041483759880066, -0.5468164086341858, -0.1916167438030243, 0.02412048541009426, 0.5123261213302612, 0.26505759358406067, 0.09031377732753754, -0.6718237996101379, 0.9245775938034058, 0.6340415477752686, -0.7427805066108704, 0.9013360142707825, 1.3456707000732422, 1.214908242225647, 0.3317092955112457, -0.5891945958137512, -0.22049281001091003, 1.6019861698150635, -0.7605242133140564, -0.2396887242794037, -1.232957124710083, 0.5520830750465393, -0.2225964218378067], [-0.26151716709136963, 1.4712438583374023, -1.6942527294158936, -0.5575543642044067, -0.225876122713089, 0.7455945611000061, 1.8221107721328735, 0.31152433156967163, 0.47629407048225403, -0.4502156376838684, -0.6744009256362915, 0.6701828837394714, 1.6517459154129028, 0.5334648489952087, 0.43936941027641296, -0.06172764301300049, 1.1141327619552612, 0.44233280420303345, 0.4909524619579315, -0.07671279460191727, -0.6197396516799927, -0.46620264649391174, 0.16789895296096802, 0.44522660970687866, 0.49289944767951965, 1.1967358589172363, -1.3344019651412964, -0.18058785796165466, -2.4259262084960938, -0.45048046112060547, 1.1517572402954102, -0.8803895711898804, 0.5294227004051208, 0.07894475013017654, -1.1225346326828003, -0.23995091021060944, 1.0809166431427002, -0.09032890945672989, 0.46127980947494507, 0.1539951115846634, 2.2476460933685303, -0.10987398773431778, 0.15589424967765808, -1.1583263874053955, -0.026712847873568535, -0.23616325855255127, 0.8115453720092773, -1.4990248680114746, 0.3084626793861389, -0.30589738488197327, -0.015554036945104599, 0.8716181516647339, 0.8069692254066467, 1.4987218379974365, 0.029949462041258812, -0.9324007034301758, 0.11107071489095688, 0.19779008626937866, 0.508915901184082, -0.21246033906936646, 0.7703032493591309, -0.21642948687076569, -0.5976045727729797, 1.31491219997406, 1.052973985671997, 0.06944184750318527, 0.13816681504249573, 0.14958006143569946, 0.3890838325023651, -0.3937411606311798, 0.25616127252578735, 0.06156383827328682, -0.1427978128194809, 0.1472378671169281, -0.9927530288696289, 0.1777796894311905, 0.5407426357269287, -0.12327674776315689, -0.26805171370506287, 1.050087332725525, -0.6593233346939087, 0.27992773056030273, 0.47178348898887634, 0.20550666749477386, 0.1688913106918335, 0.9676340818405151, 0.188869446516037, -0.009128636680543423, -0.3629502058029175, 1.3066718578338623, -0.21284843981266022, 0.5621191263198853, 0.19722378253936768, 0.14005881547927856, 0.09456649422645569, -0.7463046908378601, -0.10684461891651154, -0.6141746044158936, -0.7197195291519165, -1.2124744653701782, -0.6246801018714905, -0.4875521659851074, 0.29024240374565125, 0.8788666129112244, 0.8727457523345947, 0.9987753629684448, 0.36061641573905945, -0.7721497416496277, -0.2655486464500427, -0.10527873039245605, -0.36617380380630493, 0.18250474333763123, -0.9734530448913574, -0.61501145362854, -0.5388705730438232, 0.9229669570922852, 0.3439532518386841, -0.06785573065280914, 0.4859854280948639, 0.5411858558654785, -0.8813765048980713, -0.008695575408637524, -0.29727017879486084, 0.732979953289032, 0.2600899636745453, 0.6658167243003845, -0.5692954659461975, -0.5076001286506653, 1.0908563137054443, 0.6210080981254578, 0.6080986857414246, -0.4464546740055084, 0.4845098853111267, 1.2708278894424438, -0.8417628407478333, 0.78715580701828, -0.2279590517282486, -1.9505438804626465, -0.3525184690952301, 0.2855106592178345, 0.7194807529449463, -0.3916701078414917, 0.001854466274380684, -0.738574206829071, -0.4865746796131134, -0.8611708283424377, 0.9471572637557983, 0.407552570104599, -1.0239498615264893, 0.09908485412597656, -1.1769691705703735, 0.2944236397743225, -0.14210139214992523, 1.306298851966858, 0.19229097664356232, -0.5262719392776489, 0.8256035447120667, 0.19705286622047424, 0.353103369474411, 0.7884073853492737, 1.2124069929122925, 0.3703136146068573, -0.815383791923523, 1.049399733543396, -0.36299973726272583, -0.5420728921890259, 0.014516379684209824, 0.04400225356221199, 0.09726380556821823, 0.5690561532974243, -0.404356449842453, -0.39272284507751465, -0.2990649938583374, 0.24996840953826904, 0.2519757151603699, -0.5458059906959534, 1.078692078590393, -0.5121725797653198, -1.054344654083252, -1.4113057851791382, 1.149501085281372, -0.3049255907535553, 0.290066659450531, -0.3406176269054413, 0.9098789095878601, -0.7054100632667542, 0.08203897625207901, 0.18840034306049347, -0.6164538860321045, -1.081634759902954, -1.2636146545410156, -0.30484119057655334, -0.8535492420196533, -0.030500151216983795, -0.5231132507324219, -0.4381653070449829, -0.011144278571009636, -0.6125536561012268, -1.1237046718597412, 0.5106341242790222, 0.07211398333311081, -0.24527762830257416, -1.8325550556182861, -0.5260401964187622, -0.14905399084091187, 0.5240221619606018, -1.3523814678192139, 0.9663733243942261, -0.7808038592338562, 0.431535005569458, 0.4506038427352905, 0.46419358253479004, -1.155057430267334, 0.8587871789932251, -0.21886728703975677, -1.3802739381790161, 0.29101964831352234, 0.06655856221914291, -0.05577704310417175, 0.3025522232055664, 0.3034062385559082, 0.21938373148441315, 0.9692035913467407, 0.24645352363586426, 0.7437750101089478, 0.1574239432811737, -0.951810359954834, -1.1836521625518799, -1.0996586084365845, 0.13576871156692505, -1.2333455085754395, -0.8459082841873169, 0.6044926047325134, 0.22610609233379364, -0.45095452666282654, 0.8306066989898682, 0.5070697069168091, -0.06716150790452957, 0.36641746759414673, 0.4643837511539459, 0.5711095333099365, 0.9324668049812317, -0.18252870440483093, -0.6930819749832153, -0.5346618294715881, 0.03285576030611992, 1.3698610067367554, -0.3100380599498749, 0.39649397134780884, 1.3094971179962158, 1.3257925510406494, -0.13143673539161682, 0.48751187324523926, 0.44088584184646606, -0.4496637284755707, -0.8002889752388, -0.42383652925491333, -0.30579128861427307, -1.0544886589050293, 1.4823120832443237, 0.5447630882263184, -1.0210952758789062, -0.23826947808265686, 0.03738521784543991, 0.30723974108695984, 0.16772617399692535, -0.4453081488609314, -0.6744677424430847, 0.39320138096809387, -0.2643771469593048, 0.24153852462768555, 0.6795218586921692, -0.40203529596328735, 0.49597495794296265, -0.08193410187959671, -0.23496150970458984, -0.508513331413269, -0.03833712637424469, -0.02037535049021244, 1.0055935382843018, 0.5610159635543823, -1.2420034408569336, -0.38378068804740906, -0.15767984092235565, 0.4387660324573517, 0.19478802382946014, 0.12932084500789642, 1.2703956365585327, 0.38672104477882385, -0.304236501455307, -0.05426158756017685, 0.7684478163719177, -0.10661669075489044, 0.3028024733066559, 0.1793026179075241, -0.007300452329218388, 0.5985292792320251, -1.1031728982925415, -1.1857497692108154, 0.46501538157463074, 0.43561792373657227, 0.97412109375, 1.0125434398651123, 0.8909807205200195, -0.6351293921470642, 0.010302921757102013, -0.2051871418952942, -0.3549397587776184, -1.1826627254486084, -0.2384737730026245, -0.34947025775909424, -1.0527104139328003, 0.4089697599411011, -0.7119215726852417, 0.638705849647522, 0.4082552492618561, -0.0768476203083992, 0.8989250063896179, 0.9555413722991943, 0.052933722734451294, -0.20479479432106018, 0.16548722982406616, 0.06664136052131653, -0.37808969616889954, 0.6753007769584656, 1.0789787769317627, -1.3174784183502197, 0.06791889667510986, -0.7609357833862305, 0.11695301532745361, 1.0033016204833984, -0.0801783874630928, 0.19851525127887726, -0.9149413704872131, -0.5353198051452637, 0.31209951639175415, 0.9794891476631165, 0.18246711790561676, -0.14230406284332275, -1.3339555263519287, 0.0667005255818367, 0.7025330662727356, 0.485914945602417, -0.6470066905021667, 1.2140971422195435, -0.35913363099098206, -0.10153121501207352, -0.2423115223646164, 0.4515734910964966, 0.8009278774261475, -0.8882138729095459, -0.35516202449798584, 0.2575295865535736, -0.11927914619445801, -0.8132653832435608, -0.18531711399555206, -0.06473046541213989, 0.8135263919830322, 0.26704421639442444, 0.5871334075927734, 1.507601022720337, -1.3684916496276855, -0.5213784575462341, -1.7264052629470825, 1.1331830024719238, 0.5278336405754089, 1.366194725036621, -0.01251817587763071, 0.8892936110496521, 0.21651193499565125, -0.7496501207351685, -0.4281476140022278, 0.24489793181419373, 0.6828673481941223, 0.5554811358451843, -0.5293713808059692, -0.6144155263900757, -0.3977970480918884, -0.7629695534706116, -1.059517741203308, -0.03085906431078911, 0.9027851819992065, -0.2318374067544937, -0.575023353099823, 0.4650309681892395, 0.5924601554870605, -0.7662166357040405, -0.43164730072021484, 0.0198957622051239, 0.25032752752304077, -0.1942494809627533, -0.4195658564567566, -0.6256666779518127, -0.40031516551971436, -0.45364469289779663, -1.178008794784546, -0.053211331367492676, 0.24815252423286438, -0.003910848870873451, 0.9359152317047119, -1.3439782857894897, -0.004269670229405165, -0.2891939580440521, 0.27062442898750305, 0.2951156795024872, -0.04402405768632889, -0.5206089019775391, 0.09343089908361435, -0.2717626988887787, 0.465525358915329, 0.06125982105731964, 1.2612156867980957, 0.42359983921051025, -0.11798960715532303, -0.195193350315094, -0.5525429844856262, 0.08059661090373993, -0.36893051862716675, -0.7840269804000854, 0.7501844167709351, -0.7017279863357544, 0.34572163224220276, -0.2140262871980667, 0.5184650421142578, 2.5242605209350586, 0.6096463203430176, 0.4058314561843872, 0.8230993747711182, -0.10130611807107925, -0.42724156379699707, 0.0638229250907898, 0.7657150030136108, -0.6723482012748718, -1.0959502458572388, 0.4237090051174164, 0.5635017156600952, 0.3662268817424774, 0.6393806338310242, 0.15058386325836182, -0.042114682495594025, -0.01676597259938717, -0.39227262139320374, 0.2609027028083801, 0.9611708521842957, 0.8658236265182495, 0.4495788812637329, 0.8369419574737549, -0.760163426399231, -0.9435818791389465, 0.9973615407943726, -0.41996294260025024, -0.16983066499233246, 1.0231590270996094, 0.5239112377166748, 0.9245768785476685, -1.6480746269226074, -1.1034495830535889, 0.36383992433547974, -0.4333369731903076, 0.3959326148033142, 0.40383511781692505, 1.3151403665542603, -0.7073869705200195, -0.30996832251548767, 0.49875614047050476, -0.16910342872142792, 1.3898063898086548, -0.2952715754508972, -0.4241141080856323, 0.5919723510742188, -0.37498801946640015, -0.2925960123538971, -0.7643496990203857, -0.692154586315155, 0.3352564871311188, -0.8021573424339294, 0.41786766052246094, 0.5447536706924438, -0.12169245630502701, 0.19037342071533203, -0.38735800981521606, -1.3713371753692627, 0.6712353825569153, -0.6587986350059509, 0.0065657878294587135, -0.39420440793037415, -0.3304957449436188, -0.34629255533218384, -0.591602087020874, -0.6639823317527771, -0.14584322273731232, -1.3043832778930664, -0.4822329878807068, 0.1991516649723053, -0.9473952651023865, 0.11243816465139389, 0.6421654224395752, 1.5945472717285156, 0.5722821950912476, 0.08756892383098602, -0.07328581809997559, 0.2660202383995056, -0.45416489243507385, 0.29999881982803345, 0.43707606196403503, -0.30935752391815186, -0.3860110938549042, -1.3421512842178345, -0.6750559210777283, 2.135284662246704, 0.8596106171607971, -0.5050432682037354, 0.8946183919906616, 0.4287593960762024, 1.4696800708770752, -0.0745217502117157, -0.8957578539848328, 0.47672906517982483, 0.08179187029600143, 0.767774760723114, 0.5943842530250549, -0.6238083243370056, -0.9377714991569519, -0.25463607907295227, -1.5264959335327148, 1.8159334659576416, -0.282582551240921, -1.0939244031906128, 0.24853511154651642, 0.5521637201309204, -0.16442061960697174, 0.7570517063140869, -1.0208293199539185, 0.24629901349544525, 0.20312289893627167, -0.7274557948112488, -1.4025403261184692, 0.6234802007675171, 0.24971769750118256, -0.08348235487937927, -0.2839314937591553, 1.0054054260253906, -0.483917772769928, -0.2990166246891022, -0.30013060569763184, 0.8147587180137634, 0.1180056482553482, 0.1670512706041336, 0.5012731552124023, -0.6417453289031982, -0.3293108642101288, -0.8410630822181702, 0.5784172415733337, 0.19097745418548584, 0.9490452408790588, 0.48248985409736633, -0.8027912378311157, 0.07954104989767075, -0.1658487766981125, -0.07816490530967712, -0.29252907633781433, -0.8895598649978638, 0.9797492623329163, 0.6170681118965149, -0.43506088852882385, 0.139741912484169, -0.2886422276496887, 0.10894594341516495, -0.11810248345136642, -0.9086014628410339, 0.5274472832679749, -1.7286500930786133, -0.5105113387107849, -0.41721686720848083, 0.02410123310983181, 0.27129772305488586, -0.3115789294242859, -0.1802176535129547, -0.4779692590236664, -1.3585762977600098, -0.6688176989555359, 0.38433337211608887, 0.6833924055099487, -0.9844368696212769, 0.15029984712600708, 0.24468161165714264, -1.6185673475265503, 0.5224356651306152, 0.12251172214746475, -1.3582096099853516, -0.6054222583770752, -0.9697888493537903, 0.5768495202064514, 0.3260849714279175, -0.23030535876750946, 0.03995443880558014, 1.3849878311157227, -0.593906581401825, -1.07401442527771, -0.5249931216239929, 0.1333065629005432, 1.7364412546157837, 1.0984253883361816, -0.5263963341712952, 1.5465247631072998, 0.2611408829689026, -1.0014945268630981, -0.5285016298294067, 0.7960230708122253, -1.1975367069244385, 0.12641200423240662, 0.8011530041694641, 0.21092794835567474, 1.2935901880264282, 1.253322720527649, 1.0555675029754639, 0.28381094336509705, 0.19384817779064178, 0.05641510337591171, -0.6594980955123901, -0.8210368752479553, -0.47247517108917236, 0.23157498240470886, -0.9799703359603882, -1.0717252492904663, 0.11787502467632294, -1.040475606918335, -0.9548390507698059, 0.4690777659416199, 1.0456111431121826, -0.6942880749702454, 0.13236097991466522, -0.8970465660095215, 0.5798283219337463, -0.3183656930923462, 0.904574453830719, 0.4033583104610443, -0.6840828657150269, 0.1604982614517212, -0.35737624764442444, 0.217925027012825, -0.6298693418502808, -0.3948764503002167, -0.4704970419406891, 0.4587186276912689, -0.4909341633319855, 0.13819026947021484, 0.30490174889564514, -1.1242337226867676, -0.5011959671974182, 2.0270872116088867, 0.9244890809059143, -0.1829516738653183, -0.01660047471523285, 0.3240054249763489, -0.18858937919139862, 0.26991307735443115, -0.3285226821899414, 0.5172613859176636, -0.3395320177078247, 0.23101763427257538, 0.2912493646144867, 0.2524893283843994, -0.49733766913414, 0.2894989550113678, -0.27997851371765137, 0.61203533411026, 0.5261041522026062, 0.15687565505504608, -0.6640443801879883, 1.0366108417510986, 0.5264501571655273, -0.5359792709350586, 0.6197272539138794, 0.11120209097862244, 0.07454345375299454, -0.0025563365779817104, 0.20742659270763397, 0.7180266380310059, -0.32161620259284973, 0.7672531008720398, 0.4190945625305176, -0.1438342034816742, 0.3788442611694336, -0.8779190182685852, -2.24458909034729, -0.2745382487773895, -0.5159772634506226, 0.3621900975704193, 1.2614001035690308, -0.6948618292808533, -0.3316681683063507, -0.1344032883644104, 0.33035922050476074, 0.20558597147464752, -0.6852940917015076, -0.15813174843788147, -0.3028011620044708, 0.7924110889434814, 0.5220258831977844, -0.37392324209213257, 1.0345913171768188, -0.24172528088092804, -0.45553839206695557, -0.2362668663263321, 0.1418754905462265, 0.09861134737730026, 0.7245520353317261, 0.42022570967674255, -0.4336263835430145, -0.4175356924533844, -1.0387890338897705, -0.7332808375358582, 0.36475852131843567, -0.4217292368412018, -0.03722192347049713, -0.32233959436416626, -1.0112618207931519, 0.052206020802259445, 0.6648282408714294, 0.548729419708252, -0.579878568649292, -0.43156304955482483, -0.9298122525215149, 0.10053636133670807, -0.39577439427375793, 0.3827069401741028, -0.9731676578521729, 0.6173298954963684, 0.360920250415802, -0.490560919046402, -0.9340837001800537, -0.8202330470085144, 0.4775097668170929, -0.2152673751115799, 0.4409470558166504, -0.4671550989151001, -0.2552246153354645, 0.3166605532169342, -0.9058263301849365, 0.14794811606407166, 0.24081537127494812, -0.25363269448280334, 0.30619385838508606, -0.9527626633644104, -0.4567176103591919, -0.4045204222202301, 0.1380886435508728, 0.8800196647644043, 0.23378290235996246, -0.18551211059093475, 0.7217636108398438, -1.194095253944397, 0.19705519080162048, 0.38771623373031616, -0.3032333254814148, 0.7204533815383911, 1.5154547691345215, 1.6921952962875366, -0.2863461971282959, 0.07009118795394897, 0.1437784731388092, 0.9141570925712585, -1.3262990713119507, -0.5885738730430603, -1.5706937313079834, -0.36673951148986816, -0.3705744445323944], [0.3962858319282532, 1.3133938312530518, -1.943106770515442, 0.15678362548351288, -0.03309934213757515, 0.7109832167625427, 0.4967532157897949, 1.309700608253479, 0.4152916967868805, -0.3820559084415436, -1.7473093271255493, 0.01977180317044258, 1.3709096908569336, -0.2741328179836273, 0.4282246530056, 1.0410223007202148, 1.1751435995101929, 0.6194279193878174, 0.16099412739276886, -0.4234294593334198, -0.5678750276565552, 0.08369895070791245, -0.3339288830757141, 0.5092735290527344, 0.4019964933395386, 0.6246607303619385, -1.0314950942993164, 0.10334330797195435, -1.693489670753479, -1.1752607822418213, 0.5332040786743164, -1.0797029733657837, 0.9945679306983948, 0.02784249745309353, -0.8730506300926208, -0.39343443512916565, 0.5187749862670898, 0.06979286670684814, -0.1293121725320816, 0.16785651445388794, 1.6561800241470337, -0.0551450252532959, -0.5594716668128967, -0.7146806716918945, 1.52717924118042, -0.2206522822380066, 0.9982495903968811, -1.712990164756775, -0.2444716989994049, -0.3656139373779297, -0.06630764156579971, 0.7778615355491638, 0.42744165658950806, 1.3055821657180786, 1.3302083015441895, -0.6942533254623413, 0.2698744237422943, -1.1541842222213745, 0.5180325508117676, 0.06578313559293747, 1.3496577739715576, -0.08328087627887726, -0.5350239872932434, 0.8398579359054565, 0.6337831616401672, 0.2850461006164551, 0.3444223999977112, 0.18770655989646912, 0.09839864820241928, -0.12559159100055695, 0.6630089282989502, 0.21759368479251862, -0.4700584411621094, -0.2933550775051117, -0.2241692841053009, -0.32096317410469055, 0.6320133805274963, 0.2425990253686905, -0.08056800067424774, 0.2970018684864044, -1.126060962677002, 0.16975091397762299, 0.49974992871284485, 0.556918203830719, -0.17245331406593323, 0.1660112738609314, 0.3365029990673065, -0.9902400374412537, -0.7125476002693176, 1.7602468729019165, -0.1862594336271286, 0.2693798840045929, 0.0011614570394158363, 0.6934341192245483, -0.09982067346572876, -0.2852962613105774, -0.6359682679176331, 0.1417752504348755, -0.5559853315353394, -0.9786386489868164, -0.49983900785446167, -1.1259139776229858, 0.4060579240322113, 1.3659436702728271, 1.0104777812957764, 1.3632692098617554, -0.039063893258571625, -1.2965964078903198, -0.6060433387756348, 0.41855350136756897, -0.0843186154961586, 0.9536201357841492, -0.7889807224273682, -0.7754979133605957, -0.21138298511505127, 0.6405730843544006, 0.2905142903327942, -0.37324389815330505, 0.6722742319107056, 0.9907371997833252, -1.074195384979248, 0.3988221287727356, -0.5093489289283752, 0.5501902103424072, 0.24315506219863892, 0.6164661049842834, -0.12528730928897858, -0.10080615431070328, 1.1589950323104858, 0.4340793788433075, 0.32934385538101196, -0.294609397649765, -0.019297191873192787, 1.4060148000717163, -0.38591068983078003, 1.4689102172851562, -0.4477272927761078, -0.9729834794998169, -0.10153834521770477, -0.3061795234680176, 0.7826729416847229, -0.27908575534820557, 0.5336278080940247, -0.769191563129425, 0.09773233532905579, -0.4278959631919861, 0.35512006282806396, 0.16491815447807312, -0.673876166343689, 0.6074426770210266, -1.13462233543396, 0.21739618480205536, -0.42224210500717163, 0.900787889957428, 0.7562497854232788, 0.02353009395301342, 0.8868350386619568, 0.18100246787071228, 0.24135488271713257, 0.8356390595436096, 0.7942565679550171, -0.21991178393363953, -0.047476328909397125, 0.9430987238883972, 0.025133375078439713, -0.19145815074443817, 0.15329627692699432, 0.0478411540389061, 0.16912396252155304, 0.7169951796531677, -0.7981787323951721, -1.250536561012268, -0.2594597637653351, 1.255969524383545, -0.7319431900978088, -0.7240817546844482, 0.4643639028072357, -0.6227765083312988, -0.5125592947006226, -1.1488757133483887, 1.5789119005203247, -0.6301110982894897, 0.5964070558547974, 0.19012291729450226, -0.04757779836654663, -0.22873710095882416, -0.28988561034202576, 0.31418246030807495, -0.6696208119392395, -0.5733467936515808, -0.807201087474823, -0.8599209785461426, -1.1046316623687744, 0.23105968534946442, 0.06567811965942383, -0.7129245400428772, 0.27658694982528687, -0.35385170578956604, -0.9466527104377747, -0.01578023098409176, 0.4107711613178253, -0.25467541813850403, -0.5520752668380737, -0.46895501017570496, 0.08232865482568741, 0.21744002401828766, -0.5293457508087158, 0.8689691424369812, -0.7877612709999084, 1.0198659896850586, 0.9804576635360718, 0.08332479000091553, -0.3975844383239746, 0.7059577107429504, 0.6756587028503418, -0.4848034679889679, -0.03662543371319771, 0.11236362904310226, 0.3871326148509979, 0.0939260944724083, 0.47043874859809875, 0.34402838349342346, 0.45001688599586487, 0.10947823524475098, 0.5083630084991455, -0.05849459394812584, -1.352970838546753, -0.7927961349487305, -1.3408328294754028, -0.7914049625396729, -0.5882207751274109, -0.8255107998847961, 0.9571853876113892, 0.28410470485687256, -0.5996924042701721, 0.7932510375976562, 0.5898575186729431, 0.14098061621189117, 0.5064585208892822, 0.462100625038147, 0.12050975859165192, 0.18077367544174194, -0.23659177124500275, -0.9741078019142151, -0.8999341726303101, -0.05925604701042175, 0.893757700920105, 0.2659338414669037, -0.1771802455186844, 1.1058523654937744, 0.5884698629379272, 0.023929236456751823, 0.9500610828399658, 0.5620266795158386, -0.5925596356391907, -1.336228609085083, -1.0847464799880981, -0.7759203910827637, -0.4219582974910736, 1.8478692770004272, 0.9155582785606384, -1.1775221824645996, 0.19048763811588287, -0.5498197078704834, 0.3275319039821625, 0.43459418416023254, -0.28073468804359436, -1.2022483348846436, 0.43542903661727905, 0.23528234660625458, -0.3762476146221161, 1.0101170539855957, 0.5483477711677551, 0.4374265670776367, -0.5635681748390198, -0.7287247180938721, -0.6380802989006042, 0.05776160955429077, -0.17175336182117462, 0.8050972819328308, 0.16238166391849518, -1.0737087726593018, -0.5072928071022034, 0.12745174765586853, 0.07093754410743713, -1.1182271242141724, -0.2798212766647339, 1.4558287858963013, 0.6988541483879089, -0.011458424851298332, 0.20408514142036438, 0.626448929309845, 0.14828480780124664, 0.08840388804674149, 0.7741037607192993, 0.5833527445793152, 0.7457366585731506, -0.07882077991962433, -0.8370697498321533, 0.42652907967567444, 0.12494455277919769, 0.7458517551422119, 0.6519664525985718, 0.7940945029258728, -0.45187973976135254, -0.14944879710674286, -0.3582329750061035, -0.48558706045150757, -1.475928783416748, -0.45971325039863586, -0.9744833707809448, -1.0169848203659058, 0.2457629293203354, -0.5265357494354248, -0.04326368868350983, -0.1536416858434677, 0.06859532743692398, 0.08549992740154266, 1.0439354181289673, -0.16966423392295837, 0.004023173823952675, -0.05339931324124336, 0.2590720057487488, -1.3776230812072754, 0.6459642052650452, 0.25923988223075867, -1.44905686378479, 0.011354953050613403, -0.20550061762332916, -0.5874308943748474, 0.4263310432434082, 0.4948349893093109, -0.09398845583200455, -1.1259390115737915, -1.031908631324768, 0.09456022828817368, 0.8515099883079529, 0.015959370881319046, -0.6194331049919128, -1.07638680934906, 0.9109737277030945, 0.3260195255279541, 0.26600024104118347, 0.1845308393239975, 1.0085219144821167, -0.6972283124923706, -0.07462820410728455, -0.732764720916748, 0.5735649466514587, 1.2600444555282593, -0.7798131108283997, -1.0052610635757446, 0.10560852289199829, -0.26983070373535156, -0.5081531405448914, 0.13489606976509094, -0.20576168596744537, 0.7578648328781128, 0.1460045427083969, -0.04020998626947403, 1.4790326356887817, -0.8935878276824951, 0.2956002950668335, -1.493491768836975, 0.6859679222106934, 0.9656694531440735, 0.4935983419418335, 0.30143553018569946, 0.6177698969841003, 1.0849053859710693, -1.077770709991455, -0.4853537678718567, -0.19600854814052582, 1.036115050315857, 0.5144079327583313, -0.5599780678749084, -0.5279433727264404, -1.1055541038513184, -0.5330044627189636, -1.3831689357757568, -0.7401023507118225, 0.4390634000301361, -0.3222472667694092, -0.44881558418273926, 0.20758786797523499, 0.5317761301994324, -0.348355233669281, 0.15710003674030304, 0.016831113025546074, -0.22282132506370544, -0.39216747879981995, -0.07022399455308914, -0.3566969335079193, 0.0808849036693573, 0.29796361923217773, -0.6258335113525391, 0.09423983097076416, 0.5908640027046204, 0.28779882192611694, 0.8888556957244873, -1.913703441619873, 0.1303609311580658, -0.7240460515022278, 0.9869588017463684, -0.32572680711746216, 0.09955757856369019, 0.5911394357681274, -0.05518345907330513, -0.3011496067047119, -0.3926335275173187, -0.4191192388534546, 1.2406612634658813, -0.05664723739027977, 0.1724925935268402, -0.5888187885284424, 0.0431198850274086, 0.09998461604118347, -1.237457275390625, -0.10811607539653778, 0.6147673726081848, -0.2935717701911926, -0.07787499576807022, -0.07391880452632904, -0.031828898936510086, 1.061151146888733, 0.43038511276245117, 0.34189659357070923, 0.8891910314559937, -0.288400262594223, -0.22678057849407196, 0.24708925187587738, 0.856774091720581, -0.8114845752716064, -0.2725712060928345, 0.4683276116847992, 0.3472083806991577, 0.32161059975624084, 0.2178684026002884, 0.4033835828304291, 0.023260364308953285, -0.33201864361763, -0.45511943101882935, 0.4190422594547272, -0.19385483860969543, 1.250054955482483, 0.5000846982002258, 0.9526503086090088, -0.38948121666908264, -0.0009988890960812569, 0.8576720952987671, -0.33453720808029175, 0.2566443979740143, 0.8542866706848145, 0.3180066645145416, 1.4093008041381836, -1.372727870941162, -0.840028703212738, 0.3362283706665039, 0.09185022860765457, 0.6292198300361633, 0.9684851765632629, 0.7236644625663757, -0.7072621583938599, 0.24422207474708557, 0.009258708916604519, -0.47335243225097656, 1.1618783473968506, -0.27230486273765564, -0.0497918464243412, 0.12828364968299866, -0.23088666796684265, 0.1365765482187271, -0.9230043292045593, -0.6125823259353638, 0.5935297608375549, -0.9345644116401672, -0.3121764659881592, 0.5892401933670044, 0.34124457836151123, 0.36950233578681946, -0.4961566627025604, -0.9540590643882751, 0.5537625551223755, -1.1015933752059937, -0.15239059925079346, -0.27573251724243164, -0.23875541985034943, -0.987360954284668, -0.23126541078090668, -0.9258472919464111, 0.3421936333179474, -0.8189088702201843, -0.5088274478912354, 0.00090753473341465, -0.969883918762207, -0.46149176359176636, 0.5051025152206421, 0.7137001752853394, 0.7178589701652527, -0.46986123919487, 0.6433678269386292, 0.5530861020088196, -0.38567686080932617, 0.6378580927848816, 0.900873601436615, -0.2121247500181198, -0.9315632581710815, -0.014674459584057331, -1.04514479637146, 0.9649642109870911, -0.06171511858701706, -0.3637757897377014, 0.13789483904838562, 0.4350127875804901, 1.7065224647521973, -0.4263363778591156, -1.0982820987701416, 0.7453987002372742, -0.5625352263450623, 1.02237868309021, 0.3216322660446167, -0.8118060231208801, -0.6301606893539429, -0.6767432689666748, -1.5362629890441895, 1.4307345151901245, -0.27653974294662476, -0.9500418305397034, 0.7284489870071411, 0.8584208488464355, -0.297590434551239, 0.5790402889251709, -0.38044267892837524, 0.16521327197551727, 0.36224764585494995, 0.07460030168294907, -1.493972659111023, -0.08293657749891281, 1.085755467414856, 0.15225836634635925, -0.7338662147521973, 0.02100498229265213, 0.3256474435329437, 0.5125820636749268, 0.2588021755218506, 0.5208584666252136, -0.6307435631752014, 0.32530948519706726, 0.2559840977191925, -0.8494938611984253, -0.19113999605178833, -0.4178997278213501, 0.4064238369464874, -0.6451864838600159, 0.8992460370063782, -0.23687458038330078, -0.052700795233249664, -0.03457575663924217, -0.6853183507919312, -0.2928646206855774, 0.955936849117279, -0.22986820340156555, 1.2915692329406738, 0.9861248135566711, -0.7486158609390259, 0.19435515999794006, 0.1824093759059906, -0.47679010033607483, -0.6390401124954224, -0.807028591632843, 0.9395883083343506, -1.5236166715621948, -0.5414440631866455, -0.5824662446975708, -0.7115604877471924, -0.08906100690364838, 0.017451545223593712, -0.22616271674633026, -0.5422959327697754, -1.1735868453979492, -0.19815081357955933, 0.815775454044342, 1.5059887170791626, -0.6756119132041931, 0.10466109961271286, -0.45776593685150146, -1.7569793462753296, 0.14953571557998657, 0.08793946355581284, -1.059607982635498, -0.5754478573799133, -1.2521854639053345, 0.3717971444129944, -0.23819410800933838, 0.1289660483598709, -0.009977761656045914, 0.5558599233627319, -0.753692626953125, -0.9459208250045776, 0.19201934337615967, -0.33308905363082886, 0.7709351778030396, 0.5569440126419067, -0.9213292002677917, 1.059507131576538, 0.23316003382205963, -0.7526535391807556, -0.522355854511261, 0.6336216330528259, -0.9240902066230774, 0.2571653127670288, -0.044951431453228, -0.10954765975475311, 0.9487521648406982, 0.5991102457046509, 0.629715621471405, 0.31137484312057495, 0.8438720107078552, 1.1297600269317627, -0.6555406451225281, -0.8863743543624878, -0.491350382566452, 0.12889297306537628, -1.0234642028808594, -0.44448134303092957, -0.42763856053352356, -0.8237630128860474, -0.6116710901260376, 0.5656362175941467, 0.6228344440460205, -1.7801165580749512, 0.46669647097587585, -0.47321343421936035, -0.4064585268497467, 0.16038978099822998, 0.22551235556602478, -0.17599426209926605, -1.2208442687988281, 0.4175749123096466, -0.03851744160056114, -0.01147526502609253, -0.49874764680862427, 0.03160489723086357, -0.7041454911231995, 0.9903755784034729, 0.48651784658432007, 0.08024697005748749, -0.001801895909011364, 0.12461190670728683, -0.3370112478733063, 1.4003486633300781, 0.6505115032196045, -0.19712135195732117, 0.20449046790599823, -0.19834063947200775, -0.7551928162574768, 0.5298328995704651, -0.9781680703163147, 0.8493176102638245, -0.3215007483959198, 0.9336411356925964, -0.5776326656341553, 0.5277378559112549, -0.14133742451667786, 0.820970892906189, -0.056123584508895874, 0.8213499784469604, -0.25992536544799805, -0.06562758982181549, -0.8091651797294617, 0.7931032776832581, 0.6396182179450989, -0.754690408706665, 0.4043055772781372, 0.19937272369861603, -0.014892964623868465, 0.028197843581438065, 0.18412096798419952, 0.4621145725250244, -0.5848251581192017, 0.10987287014722824, -0.3260596990585327, -0.2513456642627716, 0.05173072591423988, -0.07135923951864243, -2.1852059364318848, -0.15480822324752808, -0.08508624881505966, 0.15692245960235596, 0.910140872001648, -0.45159730315208435, -0.18378372490406036, 0.4097851514816284, -0.04834327474236488, 0.6414191126823425, -0.4657806158065796, 0.1416260153055191, -0.0115975858643651, 0.850638210773468, 0.07744809240102768, -0.22193866968154907, 2.1595206260681152, 0.1210632249712944, -0.41272056102752686, -0.22603145241737366, -0.19752436876296997, 0.001227333676069975, 0.44951680302619934, -0.010041406378149986, -0.057903677225112915, 0.29916253685951233, -0.49740999937057495, -0.5656627416610718, 0.7767704725265503, 0.46670225262641907, 0.6928021311759949, -0.2527262568473816, 0.1143089011311531, -0.2921467423439026, 0.3213386535644531, 0.6103518605232239, -0.502313494682312, -0.3320120573043823, -1.0067251920700073, -0.1755957454442978, 0.2707769274711609, 0.22020602226257324, -0.8414791226387024, 0.892204225063324, -0.09467913210391998, 0.0463026687502861, -0.03293753042817116, -0.21974535286426544, 0.7197897434234619, -0.2293168306350708, 0.45954567193984985, 0.054743919521570206, -0.5915724039077759, -0.33679139614105225, -0.5156564116477966, -0.4453730583190918, 0.4172891676425934, 0.14919692277908325, 0.5551654696464539, -0.37064409255981445, -0.7448119521141052, -0.653372049331665, -0.19751667976379395, 0.17260156571865082, 0.3849134147167206, -0.44238612055778503, -0.7439978122711182, -1.0620373487472534, 0.7742651700973511, 0.5987975001335144, -0.06622238457202911, 0.5693193674087524, 0.8932269811630249, 2.136892795562744, 0.3234565854072571, -0.540453314781189, 0.13113483786582947, 1.7503377199172974, -0.6223116517066956, -0.518896758556366, -0.9957227110862732, 0.16872690618038177, -0.3787596523761749], [-0.06787922233343124, 0.5141928195953369, -2.030241012573242, -0.5790694952011108, 0.21699588000774384, 0.8602153658866882, 1.4868519306182861, 0.6639806032180786, 0.3178864121437073, -0.05214517191052437, -1.112276554107666, 0.022076314315199852, 1.1447257995605469, 0.2809597849845886, 0.49289679527282715, -0.10474137961864471, 1.2515124082565308, -0.17916709184646606, 0.400726318359375, 0.5211912989616394, -1.4797017574310303, 0.3383064866065979, -0.2984619438648224, 0.32200297713279724, 0.7801282405853271, 0.41181501746177673, -1.4632508754730225, -0.5038894414901733, -2.1603152751922607, -1.2710182666778564, 0.6526041626930237, -0.8374022841453552, 0.12631575763225555, 0.23229075968265533, -0.1286839246749878, 0.19550403952598572, 1.3380703926086426, 0.4438171684741974, -0.26158449053764343, 0.32815706729888916, 2.8461849689483643, -0.5017868280410767, 0.03390052169561386, -1.3868367671966553, 0.3102015256881714, 0.3870314657688141, 0.7942008376121521, -1.6003433465957642, -0.22692418098449707, -0.7109941244125366, 0.2671121060848236, 0.3176686763763428, 0.7936835289001465, 1.4079614877700806, 0.8973158597946167, -0.12601518630981445, 0.6930097937583923, -0.7073940634727478, 1.1741548776626587, 0.35875946283340454, 0.4797714054584503, -0.8059515357017517, -0.8054541945457458, 1.2973570823669434, 0.5661278963088989, -0.4367789626121521, 0.032901231199502945, 0.6593225002288818, 0.42233237624168396, -0.10930796712636948, 0.6732262372970581, -0.2958551347255707, 0.44362854957580566, 0.6015603542327881, -1.2563819885253906, -0.4538031220436096, 0.1276818960905075, 0.561698317527771, 0.28545302152633667, 1.2914077043533325, -0.9666677713394165, 0.06698402762413025, 0.5308619737625122, 0.18579211831092834, 0.31859713792800903, 0.9538842439651489, 0.3542146384716034, -0.876368522644043, -0.13603591918945312, 1.765837550163269, -0.49899378418922424, 0.3559540808200836, 0.10374267399311066, 0.43845605850219727, 0.5776225328445435, 0.6035536527633667, -0.8625026941299438, 0.050386104732751846, -0.67794269323349, -0.9926950931549072, -0.4258122742176056, -1.2898367643356323, 0.12616074085235596, 0.15784144401550293, 0.6471037268638611, 1.0930124521255493, 0.40398892760276794, -0.29079753160476685, -0.6070270538330078, -0.359858900308609, -0.886715292930603, 0.8166677355766296, -0.8824401497840881, -0.6291993856430054, -0.525510847568512, 0.8712562918663025, -0.01667710207402706, -0.3267936110496521, 0.753092348575592, 0.5903463363647461, -1.429984211921692, 0.4915875494480133, 0.06241358444094658, 0.30462607741355896, 0.5046751499176025, 0.7794460654258728, -0.64259272813797, -0.7859805822372437, 1.0087627172470093, 0.05232245847582817, 0.31793880462646484, -1.0214842557907104, 1.0024429559707642, 0.6277128458023071, -1.180804967880249, 1.0095654726028442, -0.11138801276683807, -1.0575534105300903, -0.2985555827617645, -0.3807455897331238, 1.0317115783691406, -0.14821182191371918, 0.3316166400909424, -0.47811463475227356, 0.09253263473510742, -1.0940731763839722, 0.3240428566932678, -0.02450203336775303, -1.364598035812378, -0.18663844466209412, -1.1343334913253784, 0.46520572900772095, -0.07342521101236343, 1.0151057243347168, 0.4530494511127472, -0.4609777629375458, 0.5347864031791687, -0.06329639256000519, 0.04605971649289131, 0.9061278700828552, 0.9853665828704834, 0.2414560317993164, -0.6697118282318115, 0.828701376914978, 0.02550129033625126, -0.5298509001731873, -0.3390195071697235, 0.43278905749320984, 0.24279733002185822, 1.079625129699707, -0.1820884346961975, -0.9969445466995239, -0.50525963306427, 0.17068758606910706, 0.1308085322380066, -1.0732924938201904, 1.2767667770385742, -0.7932870984077454, -0.3323882520198822, -0.7715719938278198, 0.6376795768737793, -0.16943243145942688, -0.024731852114200592, -0.11694035679101944, 0.11999670416116714, -0.6955801844596863, 0.33252882957458496, -0.05483962595462799, -0.3700387179851532, -0.7407239079475403, -0.9372338652610779, -0.09590556472539902, -0.9141508936882019, -0.5550578236579895, -0.1876431256532669, -0.6636084914207458, 0.6731207370758057, -0.835732102394104, -0.7395849227905273, 0.31048861145973206, -0.5178166627883911, -0.15040919184684753, -1.4106227159500122, -0.060109902173280716, -0.6305399537086487, -0.10888119041919708, -0.9066998958587646, 0.7095953226089478, -0.16798238456249237, 0.5400098562240601, 0.4014739990234375, 0.1980888992547989, -0.8853958249092102, 1.313025712966919, 0.010784688405692577, -1.1710968017578125, 0.0985885038971901, 0.03476492315530777, -0.17253680527210236, 0.16768722236156464, 0.284793496131897, -0.06008254364132881, 0.4962655305862427, 0.47542425990104675, 0.24452388286590576, 0.259714812040329, -0.9242895841598511, -1.1937261819839478, -1.6574363708496094, 0.6855887174606323, -1.182869553565979, -1.5502126216888428, 1.079973816871643, 0.09024038910865784, -0.7140721082687378, 0.37813714146614075, 0.7794640064239502, 0.0005728071555495262, 0.6971840858459473, -0.012759555131196976, 0.44810351729393005, -0.06387496739625931, 0.3046553134918213, -0.934874415397644, -0.8039772510528564, -0.0851861834526062, 0.7849498391151428, -0.1783384084701538, 0.22619104385375977, 1.712761640548706, 0.2654583156108856, 0.38305535912513733, 0.34103450179100037, 0.40986987948417664, -1.060049295425415, -0.4348967969417572, -0.9398434162139893, -0.044121116399765015, -0.31335654854774475, 2.1681697368621826, 1.207593560218811, -0.5096590518951416, 0.25435301661491394, 0.5183034539222717, -0.035297006368637085, -0.37774765491485596, -0.8777212500572205, -0.7706273794174194, 0.26013821363449097, 0.1448540836572647, 0.13973954319953918, 0.6092991828918457, -0.5683364868164062, 0.6095534563064575, -0.623775064945221, -0.7159141302108765, -0.5390834808349609, 0.32415857911109924, -0.14264577627182007, 1.301530122756958, 0.7277615070343018, -1.2260048389434814, -0.7929824590682983, -0.27172523736953735, 0.3452998101711273, 0.138267382979393, -0.1548456847667694, 1.2050151824951172, 0.852056086063385, 0.015633633360266685, -0.0065953657031059265, 1.198723554611206, -0.3106768727302551, 0.21834735572338104, 0.3381097912788391, 0.12658880650997162, 0.6650357246398926, -0.9409930109977722, -0.6553587317466736, 0.3737177848815918, 0.17354832589626312, 0.7147194147109985, 1.1006460189819336, 0.7632840871810913, -0.403563916683197, -0.23348337411880493, -0.2677490711212158, -0.6848568916320801, -0.8997352719306946, -0.2169431895017624, -0.679198682308197, -0.7811475396156311, 0.5759585499763489, -0.4707493185997009, -0.09062116593122482, 0.1363891363143921, 0.11300507932901382, 0.9975531101226807, 0.3738641142845154, 0.48325255513191223, 0.39392977952957153, 0.3386521637439728, 0.24758172035217285, -0.7777512669563293, 0.6292132139205933, 0.18215830624103546, -1.2937536239624023, -0.006333548575639725, -0.24195484817028046, -0.4577637314796448, 0.8491235375404358, 0.3592463731765747, -0.2540588974952698, -0.9612175226211548, -0.7953991293907166, 0.5926340818405151, 0.7283337116241455, -0.35046306252479553, -0.2540609538555145, -1.088741421699524, 1.0211271047592163, 0.6384501457214355, 0.33961591124534607, -0.2615140378475189, 0.7635145783424377, -0.4906598627567291, -0.29042956233024597, -0.5759304761886597, 0.012694645673036575, 0.9466135501861572, -0.1550510972738266, -0.4153916537761688, 0.40660396218299866, -0.31446096301078796, -0.19810152053833008, 0.05011596158146858, 0.2846904993057251, 0.9649132490158081, -0.3796621263027191, 0.161561518907547, 1.9093819856643677, -0.38199135661125183, -0.08603076636791229, -1.3318783044815063, 0.9114680886268616, 0.2496161162853241, 0.991404116153717, 0.2414824217557907, 0.7194324731826782, 0.5893014073371887, -0.9013292193412781, 0.1842089295387268, -0.1873534768819809, 1.6047048568725586, 0.05590944364666939, -0.3896189332008362, -1.2519428730010986, -0.44461876153945923, -0.9465669989585876, -0.5917708873748779, -0.19771113991737366, 0.0759359672665596, -0.08714427798986435, -0.4327491223812103, 0.6632602214813232, 0.7550923824310303, -0.5200082659721375, -0.18463508784770966, 0.15070119500160217, 0.30206820368766785, -0.4408855438232422, -0.5397597551345825, -1.6195042133331299, -0.18382671475410461, -0.21960823237895966, -1.4705675840377808, 0.361280620098114, 0.8232315182685852, -0.2778988480567932, 1.4416171312332153, -1.4166465997695923, -0.3598827123641968, 0.34325557947158813, 0.2493085414171219, 0.3915984332561493, 0.3553493022918701, 0.14325204491615295, 0.05582941323518753, -0.68096524477005, 0.36103224754333496, 0.19000379741191864, 1.8196076154708862, -0.15810611844062805, -0.11616263538599014, -0.5516816973686218, -0.01561546977609396, 0.35800987482070923, -0.3709966540336609, -0.9648395776748657, 0.582116961479187, -0.6890820264816284, 0.2539326250553131, 0.24064810574054718, -0.0016420134343206882, 2.342193603515625, 0.054118141531944275, 0.4133547246456146, 0.6761922240257263, -0.6288062334060669, -0.42404302954673767, 0.008535467088222504, 0.2380780428647995, 0.13515175879001617, -0.557761013507843, 0.46119827032089233, 0.10438203066587448, -0.611205518245697, 0.7068552374839783, 0.5984833240509033, 0.14945049583911896, -0.6472207307815552, -0.22075027227401733, -0.00022538891062140465, 0.2100125551223755, 0.9479349851608276, 0.4232999086380005, 0.7878090739250183, -0.05521784722805023, -0.5666470527648926, 0.8730033040046692, -0.14191468060016632, -0.3041851222515106, 0.8320522308349609, 0.364651083946228, 1.1149259805679321, -1.430111050605774, -0.7563378810882568, 0.7648311257362366, 0.11614501476287842, 0.6280744671821594, 0.5475125312805176, 0.8680479526519775, -0.4899510145187378, -0.2741035521030426, 0.8072724342346191, -0.43513023853302, 1.4395891427993774, 0.4846305847167969, -0.3107281029224396, 0.2956218421459198, -0.07326778024435043, -0.2919203042984009, -0.2394481897354126, -1.15826416015625, -0.3801848292350769, -0.5866567492485046, -0.28888505697250366, 0.5569155812263489, -0.421978622674942, 0.5748370289802551, -0.07857895642518997, -0.6697553396224976, 0.32134294509887695, -0.43290257453918457, 0.06918712705373764, -0.3119974732398987, -0.32005032896995544, -0.6558403968811035, -0.6850596070289612, -0.4402658939361572, 0.17356927692890167, -0.6702853441238403, -0.903433620929718, 0.400322824716568, -1.270322322845459, -0.13634459674358368, 1.2360363006591797, 1.2559490203857422, 0.8096550703048706, 0.24282649159431458, -0.21006645262241364, 0.5313640236854553, -0.5813798308372498, 0.07771636545658112, 0.8227763772010803, -0.838105320930481, -0.376345694065094, -1.3635798692703247, -0.6376891136169434, 2.0937442779541016, 0.23482421040534973, -0.4169619083404541, 0.5467150211334229, 0.5627460479736328, 1.2770376205444336, 0.25079962611198425, -0.8189818263053894, 0.47319385409355164, -0.10740603506565094, 0.3596377968788147, 0.5392024517059326, -0.02216639183461666, -1.024155855178833, -0.5349507927894592, -1.8717200756072998, 1.1291576623916626, 0.15628837049007416, -1.4965317249298096, 0.6987751126289368, 0.3544424772262573, -0.25780871510505676, 0.2970188558101654, -0.6194812655448914, 0.3197721242904663, 0.6723357439041138, -0.15334659814834595, -1.0421556234359741, -0.20274639129638672, 0.03559042140841484, 0.2725767493247986, -0.5324379205703735, 0.6802260279655457, 0.21003776788711548, -0.1695438027381897, 0.1479049026966095, 1.1408977508544922, 0.370500773191452, 0.5781910419464111, 0.3567529022693634, -0.4996950328350067, 0.04861341416835785, -1.0037864446640015, -0.3104292154312134, -0.4362753927707672, 0.049212969839572906, -0.03920580819249153, -0.18715980648994446, -0.3177030682563782, 0.1684151440858841, -0.36896830797195435, 0.5349982380867004, -1.0620028972625732, 0.8803781270980835, 0.9529706239700317, -0.1859460026025772, -0.3440987765789032, -0.23582316935062408, -0.03227094188332558, -0.002854669466614723, -0.8356791138648987, 0.42263492941856384, -1.704102635383606, 0.1453782021999359, -0.7805761694908142, -0.06625611335039139, 0.16897355020046234, -0.45376357436180115, -0.14209672808647156, -0.8517569899559021, -1.0257409811019897, -0.759483814239502, 0.2492046356201172, 0.40744447708129883, -0.5880594849586487, 0.34932973980903625, 0.12512926757335663, -1.3462746143341064, 0.3543582260608673, 0.013588432222604752, -0.9321718811988831, -0.5031525492668152, -1.275700569152832, 0.5587443113327026, -0.8640565276145935, 0.3843182325363159, -0.1227598637342453, 0.5256163477897644, -0.5761485695838928, -1.2467092275619507, 0.0039086733013391495, -0.15674522519111633, 0.7055177092552185, 1.1279826164245605, -0.7959533333778381, 1.1561635732650757, 0.28958043456077576, -1.062769889831543, -0.64295494556427, 0.8158650994300842, -0.5785141587257385, -0.0748482495546341, 0.3533042371273041, -0.023350199684500694, 0.9143818616867065, 1.4380396604537964, -0.3526899814605713, 0.9414277672767639, 0.9057365655899048, 0.301712304353714, -1.2051548957824707, -0.14075765013694763, -0.227446511387825, -0.10298272222280502, -1.311742901802063, 0.17924973368644714, -0.7687973976135254, -1.2206822633743286, -0.4735342264175415, 0.9906395673751831, 0.9347751140594482, -1.0204226970672607, 0.09153496474027634, -0.6837045550346375, -0.2941361963748932, -0.3737918734550476, 0.07558690756559372, -0.005010763183236122, -1.0199270248413086, 0.8389229774475098, 0.02069035731256008, 0.0030502798035740852, -0.34413328766822815, -0.5264964699745178, -0.5358373522758484, 0.5199018120765686, -0.7216163277626038, 0.7681891322135925, 0.8621741533279419, -0.3641867935657501, -0.3682241141796112, 2.4002087116241455, 0.9154620170593262, -0.4631790518760681, -0.4984738528728485, 0.1140117347240448, -0.47328898310661316, 0.5950725078582764, -0.5542408227920532, 0.6144161224365234, -0.4320199489593506, -0.052409037947654724, 0.2016182243824005, -0.3822299540042877, -0.9706814885139465, 0.20089033246040344, -0.7119503617286682, 0.6096256971359253, 0.5035262107849121, -0.13873621821403503, -0.07188434898853302, 1.3367149829864502, 1.0501031875610352, -0.49204981327056885, 0.2657017111778259, -0.0773196592926979, -0.2932156026363373, -0.20945604145526886, 0.6667783856391907, 1.0749880075454712, -0.8748511075973511, 0.3880312740802765, -0.0679856538772583, 0.4607917070388794, 0.5906558632850647, -0.6044262051582336, -1.822135329246521, 0.2373696118593216, -1.285627007484436, 0.35753387212753296, 1.0232815742492676, -0.4677671492099762, -0.7314422130584717, 0.40372154116630554, 0.5417652726173401, -0.1389831006526947, -1.0368046760559082, 0.41062745451927185, -0.005319712217897177, 0.3717300593852997, 0.201389878988266, -0.6521174907684326, 1.7647931575775146, -0.03537857159972191, -0.02905905805528164, -0.1902686208486557, 0.0592024102807045, 0.02423224225640297, 0.7918530106544495, 0.17732550203800201, -0.6522835493087769, -0.04361799359321594, -0.9565648436546326, -0.8753848075866699, 0.3443368971347809, 0.1640397608280182, 0.2827751636505127, -0.471252977848053, -1.1257916688919067, 0.04099765419960022, 1.1206821203231812, 0.7944585680961609, -0.11143973469734192, -0.44182315468788147, -0.43342456221580505, 0.26832741498947144, -0.19860123097896576, 0.9303469657897949, -0.40435048937797546, 0.7747235894203186, 0.4597412943840027, -0.14863833785057068, 0.1333046406507492, -0.6442959308624268, 0.47452348470687866, -0.8166074156761169, 0.635116457939148, 0.44481900334358215, -0.8549450039863586, 0.1859489381313324, -0.17650310695171356, -0.207682803273201, 0.19128276407718658, -0.04124869406223297, 0.8895334601402283, -0.867296040058136, -1.1147907972335815, 0.07281197607517242, -0.5885867476463318, 0.5616036653518677, 0.9969101548194885, 0.046741049736738205, 0.22150465846061707, -0.8484742641448975, 0.8299196362495422, 0.2906036376953125, -0.547087550163269, 0.4213087260723114, 1.7152413129806519, 2.0608222484588623, 0.38810816407203674, -0.2160712033510208, -0.12082376331090927, 1.1484206914901733, -0.9409297704696655, -0.7219238877296448, -1.0335934162139893, -0.247640922665596, -1.1086654663085938], [-1.2257437705993652, 0.8806084394454956, -2.1269707679748535, -0.8262510299682617, 0.0890752375125885, 0.9734120965003967, 1.8329392671585083, 0.06761118769645691, 0.21946679055690765, -0.37500548362731934, -1.066422462463379, 0.4916558265686035, 1.2225539684295654, 0.8278286457061768, 0.14049504697322845, -0.40841320157051086, 0.48769018054008484, 0.5327969789505005, 0.47508880496025085, 0.9457966089248657, -0.6312977075576782, 0.20338654518127441, -0.02202356420457363, -0.12521488964557648, 0.28460460901260376, 0.6278418302536011, -1.4307576417922974, -0.5306382775306702, -1.1062828302383423, -0.8147662281990051, 1.136654019355774, -0.48043471574783325, 0.5411747097969055, 0.8879987597465515, -0.4640885293483734, 0.09580978751182556, 1.1867703199386597, 0.4894716143608093, 1.159457802772522, 0.6742350459098816, 2.3370773792266846, 0.43100664019584656, 0.612421989440918, -1.1386065483093262, -1.301247477531433, 0.03255094215273857, 0.9661938548088074, -1.5871707201004028, -0.036770403385162354, 0.4577477276325226, 0.3211790919303894, 0.42205479741096497, 0.624148428440094, 0.8346823453903198, 0.566253125667572, -1.0141675472259521, 0.30908945202827454, -0.13836897909641266, 0.20210444927215576, 0.040913768112659454, 0.9862556457519531, -0.9260351061820984, -0.7631349563598633, 1.2238909006118774, 0.23852136731147766, 0.18449048697948456, -0.5854676961898804, 0.06988844275474548, 0.3917996287345886, -0.23204068839550018, 0.15287832915782928, 0.1957344114780426, -0.13113106787204742, 0.5081886053085327, -0.7263433933258057, 0.04453252628445625, 0.44409888982772827, 0.1006762683391571, 0.6274580955505371, 0.5711055397987366, -0.9431326985359192, 0.26916059851646423, 0.43502917885780334, -0.13553160429000854, 0.4845566153526306, 0.4298267066478729, -0.09712129086256027, -0.29910755157470703, -0.5571409463882446, 1.5877659320831299, 0.2906772196292877, 0.34928566217422485, 0.257142573595047, -0.47861748933792114, -0.042120542377233505, -0.7328629493713379, 0.6852959990501404, -0.11605917662382126, -0.8852618336677551, -0.5818145275115967, -0.16845116019248962, -0.17029590904712677, 0.354568749666214, 0.7089688181877136, 0.8571367859840393, 1.3581312894821167, 0.3898628354072571, -0.20754463970661163, -0.5473220348358154, -0.46297362446784973, -0.5136462450027466, 0.6312395334243774, -1.0717493295669556, -1.0545220375061035, -1.1035544872283936, 0.5425148606300354, 0.012109626084566116, -0.1288214474916458, 0.7008684277534485, 0.4972231090068817, -0.3056904077529907, -0.1359810084104538, 0.025851543992757797, 0.8798885345458984, 0.3750922381877899, 0.20791128277778625, -0.6955729722976685, 0.041633229702711105, 0.5929997563362122, 0.17391447722911835, 0.3759579658508301, -0.02298295870423317, 0.4385741353034973, 1.313470482826233, -0.25668299198150635, 0.790465235710144, -0.4425872266292572, -1.214813470840454, -0.37662506103515625, 0.41938188672065735, 0.43738022446632385, -0.25175586342811584, -0.08614025264978409, -0.9924036860466003, -0.08835015445947647, -0.9316983222961426, 0.79880690574646, -0.5507476925849915, -0.35848769545555115, 0.12378483265638351, -1.0705277919769287, 0.4207218587398529, -0.16802558302879333, 0.8538134098052979, -0.15707260370254517, -0.46152424812316895, 0.1543566733598709, 0.4046418368816376, 0.4299473762512207, 0.09292393922805786, 0.6773073673248291, -0.48989370465278625, -0.6553381681442261, 0.21543064713478088, -0.08882446587085724, -0.38292157649993896, -0.18304462730884552, 0.5309907793998718, 0.09120617061853409, 0.6882479190826416, -0.5001025199890137, -0.511608362197876, -1.1831824779510498, 0.19321388006210327, 0.21745915710926056, -1.1660255193710327, 1.504051685333252, -0.7943758368492126, -1.1021618843078613, -0.9514569044113159, 0.6793301701545715, -0.5031246542930603, -0.09170325845479965, -0.8530232906341553, 0.9492815732955933, -0.35097479820251465, -0.5170688033103943, -0.34177592396736145, -0.3434210419654846, -1.2923725843429565, -1.0225588083267212, -0.29811230301856995, -1.0144593715667725, 0.044581152498722076, 0.06779990345239639, -0.20908856391906738, 0.17938658595085144, -0.39794525504112244, -1.516804814338684, 0.36077889800071716, 0.06427472084760666, -0.6581932902336121, -1.1273349523544312, 0.11631128937005997, -0.293133944272995, 0.5364980101585388, -1.1155011653900146, 0.9597488045692444, -1.1083115339279175, 0.13642027974128723, 0.30977651476860046, 0.5664331912994385, -1.021122932434082, 0.745948314666748, -0.5595129728317261, -1.2102779150009155, 0.3825131952762604, -0.03444787859916687, 0.37880346179008484, 0.030267316848039627, 0.3098219037055969, 0.44978606700897217, 0.5205127000808716, -0.21311989426612854, 0.81751549243927, 0.08506236970424652, -0.31668373942375183, -1.1595121622085571, -0.7508074641227722, 0.6598209738731384, -0.7023721933364868, -0.7476823925971985, 0.9678860902786255, 0.05223644897341728, -0.7785317301750183, 0.5107424855232239, 0.04389004409313202, -0.5496026873588562, 0.08454057574272156, 0.4804009199142456, -0.05380430817604065, 0.7256266474723816, -0.19846764206886292, -0.2851252257823944, -0.3440425992012024, -0.20313887298107147, 0.822283148765564, -0.24852527678012848, 0.42093706130981445, 1.4673435688018799, 0.6729923486709595, 0.32964345812797546, 0.3521229326725006, -0.12484794110059738, -0.5032520294189453, -0.4636056125164032, -0.5950018763542175, 0.32226675748825073, -0.6891787648200989, 1.4807265996932983, 0.6797175407409668, -1.0116393566131592, -0.44087743759155273, 0.3892466127872467, 0.5427727103233337, -0.6067202091217041, -0.7883555889129639, -0.5452740788459778, 0.1995948851108551, -0.3925792872905731, 0.1363174468278885, 0.4971122145652771, -0.1880665272474289, 0.691260814666748, -0.05725393816828728, 0.11137944459915161, -0.742293655872345, 0.3800051212310791, 0.21873179078102112, 1.1282480955123901, 0.8990679979324341, -0.8047999143600464, -0.2649557888507843, -0.45105910301208496, 1.0119024515151978, -0.029204703867435455, 0.5652305483818054, 0.869368851184845, 0.9234351515769958, -0.09236089140176773, 0.23467445373535156, 0.2310643494129181, -0.0750032514333725, 0.9711291790008545, 0.4368051290512085, -0.047290343791246414, 0.9699618220329285, -0.5768488645553589, -1.225395679473877, 0.614180326461792, 0.19661229848861694, 0.31224626302719116, 0.5746666193008423, 1.1151398420333862, 0.5319306254386902, -0.11050508916378021, -0.7267482876777649, -0.034255288541316986, -1.0243041515350342, -0.7475452423095703, -0.9411138892173767, -1.2129896879196167, -0.32434016466140747, -0.6110512018203735, 0.4893702566623688, 0.20956550538539886, -0.41573986411094666, 0.5291609168052673, 0.313970148563385, -1.001579999923706, -0.09129279106855392, 0.3408122658729553, 0.253766268491745, -0.7765927314758301, 1.0467792749404907, 0.5799930691719055, -0.7359197735786438, -0.5899551510810852, -0.3977803587913513, 0.38963741064071655, 0.7977482676506042, -0.2397332787513733, 0.13711844384670258, -0.8343642354011536, -0.45232245326042175, -0.053059689700603485, 1.5393121242523193, -0.10905618965625763, -0.2973683178424835, -0.9879453778266907, 0.3775429129600525, 1.0735284090042114, 0.5334504842758179, -0.5729302167892456, 0.9141541123390198, -0.6472694873809814, -0.9340019226074219, 0.14009353518486023, 0.07797648012638092, 0.9930770397186279, -0.3350544273853302, -0.37039342522621155, 0.09574858844280243, -0.1595129817724228, -0.3301638960838318, 0.43971604108810425, 0.15010592341423035, 0.7930722236633301, -0.3406849503517151, 0.054950471967458725, 1.431235671043396, -0.3916250467300415, -0.026096101850271225, -1.6987859010696411, 0.6995317935943604, 0.44050267338752747, 1.2599308490753174, 0.3354474604129791, 1.4035053253173828, 0.10659433901309967, -0.84236741065979, 0.17236576974391937, -0.18807809054851532, 0.9870229959487915, -0.050337858498096466, -0.6282238960266113, -0.09433454275131226, -0.22766168415546417, -0.46174657344818115, -0.9493381381034851, -0.2744606137275696, 0.36002641916275024, -0.7232394218444824, -0.1142927035689354, 0.8242276906967163, 1.388222336769104, -0.2958528995513916, -0.07361405342817307, -0.040088944137096405, -0.22174198925495148, 0.5500307083129883, 0.14939749240875244, -0.12392622977495193, 0.020404931157827377, -0.06065593287348747, -1.2928105592727661, 0.32124239206314087, 0.08419934660196304, 0.7846534252166748, 0.7201714515686035, -0.8210418820381165, 0.009122375398874283, -0.34607288241386414, 0.037613946944475174, 0.20929186046123505, 0.23739905655384064, -0.480228990316391, 0.11869625747203827, 0.19300256669521332, -0.15893584489822388, -0.18144041299819946, 1.683995246887207, 0.38504287600517273, -0.22535361349582672, 0.16504330933094025, 0.37252727150917053, 0.0005517182871699333, 0.22754225134849548, -0.1650623083114624, 0.5394532680511475, -0.7467578053474426, 0.00823521800339222, -0.5129930973052979, 0.14949969947338104, 2.1038951873779297, 0.028102727606892586, 0.18031413853168488, 0.5458570122718811, -0.31495124101638794, -0.9346570372581482, 0.039287883788347244, -0.13085110485553741, -0.22052910923957825, -1.5606844425201416, -0.07202820479869843, 0.15644049644470215, -0.7939412593841553, 0.5612168312072754, 0.6751548647880554, 0.315805584192276, 0.2814550995826721, -0.05124916136264801, 0.31209424138069153, 0.7496950626373291, 0.9938300251960754, 0.6709689497947693, 0.5921858549118042, -0.3277295231819153, -0.24012094736099243, 1.0554746389389038, 0.0321887768805027, -0.3582199215888977, 0.5127540230751038, 0.34793612360954285, 0.8735047578811646, -1.5631227493286133, -0.8520144820213318, 1.1164616346359253, 0.36829712986946106, 0.5509191155433655, 0.45917242765426636, 0.7990660071372986, -0.6839007139205933, 0.18511725962162018, 0.3568606972694397, -0.3982318937778473, 0.4392423629760742, -0.23386123776435852, -0.2997458279132843, 0.10860804468393326, -0.2861216068267822, 0.1840333342552185, -0.6673614978790283, -0.6017410755157471, -0.41797584295272827, -1.0458412170410156, 0.6586837768554688, 0.3174108564853668, -0.0718773603439331, 0.5897253155708313, -0.6008031368255615, -1.3522117137908936, 0.9457687735557556, -0.5727394819259644, -0.0658663809299469, -0.1891898661851883, -0.834194004535675, -0.07117357105016708, -0.6514992117881775, -0.1750849038362503, -0.21034368872642517, -0.7132148146629333, -0.6895133852958679, 0.23605895042419434, -1.3661051988601685, -0.14705486595630646, 0.36287784576416016, 1.0352935791015625, 1.3420764207839966, -0.11709565669298172, -0.040292225778102875, 0.5562554597854614, -0.8456225991249084, -0.3519207239151001, 0.7619399428367615, -0.10231419652700424, -0.671116828918457, -1.7344896793365479, -0.2632301151752472, 1.489547848701477, 0.38546067476272583, -0.3366471529006958, 0.7715599536895752, 0.595257580280304, 1.2689419984817505, -0.31513455510139465, -1.523053526878357, 0.4956694543361664, 0.09964587539434433, 0.6315694451332092, 0.8348277807235718, -0.48368704319000244, -0.7893969416618347, -0.4009656012058258, -1.8988926410675049, 1.6353908777236938, -0.08912661671638489, -1.02960205078125, 1.0776915550231934, 0.08071313798427582, -0.2980814576148987, 0.05004461109638214, -1.324222445487976, -0.4498644471168518, 0.06055350601673126, 0.19654282927513123, -1.2439374923706055, 0.568418562412262, 0.05481787025928497, 0.7303664088249207, 0.19544406235218048, 0.07459834963083267, -0.34407904744148254, -0.8567517995834351, 0.16216175258159637, 0.7453657388687134, 0.28333473205566406, 0.41734716296195984, 0.586715579032898, 0.2870270907878876, 0.43079090118408203, -0.15731962025165558, 0.3551061153411865, 0.039496418088674545, 0.35633763670921326, 0.6781511902809143, -0.4435027241706848, 0.12184694409370422, -0.6944066286087036, 0.3627541959285736, -0.5990723967552185, -0.707356870174408, 0.6264890432357788, 0.23477838933467865, -0.13227832317352295, -0.013262923806905746, -0.8266658782958984, -0.14644521474838257, -0.19512240588665009, -0.5519652962684631, 0.9053796529769897, -1.9218693971633911, -0.43612614274024963, -0.15206898748874664, -0.08134404569864273, -0.23379351198673248, -0.5772638916969299, 0.16506727039813995, -0.4482049345970154, -0.7410616874694824, -0.8315237164497375, -0.056408073753118515, -0.3076143264770508, -0.8870769739151001, 0.9102276563644409, 0.9707664251327515, -0.8768041133880615, 0.24275602400302887, -0.1603303998708725, -1.0885674953460693, -0.10013369470834732, -1.3796353340148926, 0.6443109512329102, 0.1884768158197403, 0.7508653402328491, -0.04514892399311066, 1.1259217262268066, -0.6522384881973267, -0.8987529873847961, -0.5167436003684998, 0.359703004360199, 0.4934779703617096, 0.3140808641910553, -0.27755501866340637, 1.4023886919021606, 0.4459114372730255, -0.484174519777298, -0.30567893385887146, 0.47470441460609436, -0.7307102680206299, 0.33398598432540894, 0.9804424047470093, -0.39798957109451294, 0.4398970305919647, 1.2962490320205688, 0.24614423513412476, 0.8353061676025391, 0.5767331123352051, 0.04249433055520058, -0.6675370931625366, -0.7021185755729675, 0.1429571807384491, -0.15394139289855957, -1.6994379758834839, -0.6269920468330383, -0.21610765159130096, -1.0555527210235596, -0.9447665214538574, 0.7182443141937256, 0.6516774296760559, -0.9290580153465271, -0.2786926031112671, -0.471383661031723, 0.1781567931175232, -0.5533329248428345, 0.35428228974342346, 0.06881639361381531, -0.5355628728866577, -0.015355011448264122, -0.011284176260232925, 0.12536770105361938, -1.1934521198272705, -0.2401553988456726, 0.3258264362812042, 0.2825407385826111, -0.6503341197967529, 0.45692822337150574, 0.6325473189353943, -0.2392451912164688, -0.651222288608551, 0.9277087450027466, 0.8922609686851501, -0.0138993039727211, -0.15499423444271088, 0.1184244379401207, -0.09295450896024704, 1.2271003723144531, -1.3231980800628662, 0.806219756603241, -0.3252376616001129, 0.46678832173347473, 0.12233244627714157, -0.5511083006858826, -0.5529068112373352, 0.3575194478034973, -0.5076355338096619, 0.75509113073349, 0.7713684439659119, -0.3197123110294342, -0.6179948449134827, 1.2319942712783813, 0.17815227806568146, -0.18544822931289673, -0.13281899690628052, 0.4375035762786865, -0.25561612844467163, 0.28835827112197876, 0.7543082237243652, 1.0889308452606201, -0.5210331082344055, 0.4754010736942291, -0.3449043333530426, 0.023257410153746605, 0.9133666753768921, -0.28148776292800903, -1.2333158254623413, -0.4465290606021881, -1.2460898160934448, -0.24227812886238098, 1.2373234033584595, -1.0190882682800293, -0.9347599744796753, 0.18709373474121094, 0.2858935594558716, 0.170869842171669, -0.4262547492980957, -0.5180240273475647, -0.4301091432571411, 0.683869481086731, 0.30863380432128906, -0.35755062103271484, 1.2137774229049683, -0.3251403868198395, -0.6375880837440491, -0.17459934949874878, -0.1471003293991089, -0.11517742276191711, 0.6585607528686523, 0.7215639352798462, -0.004811670631170273, 0.2648811638355255, -0.3042941987514496, -0.42135411500930786, 0.3927501440048218, -0.28695663809776306, -0.059877388179302216, -0.18496301770210266, -0.8784087300300598, 0.10292678326368332, 0.559798538684845, 0.45778530836105347, -0.18023569881916046, -0.09364582598209381, -0.6226441264152527, 0.5612233281135559, 0.21375919878482819, 1.1635619401931763, -0.7148077487945557, 0.34411031007766724, 0.13560380041599274, -0.5242342352867126, -0.10316988825798035, -0.43387603759765625, 0.38174229860305786, -0.47650009393692017, 0.9670817852020264, 0.6553694605827332, 0.14376568794250488, 0.3149223029613495, -1.0004740953445435, -0.03256777301430702, 0.16232410073280334, -0.1322007179260254, 0.19301262497901917, -1.0182232856750488, -0.43916380405426025, -0.5538564324378967, -0.48857423663139343, 0.624720573425293, 0.6030718684196472, -0.0717645138502121, 0.21323738992214203, -0.5661065578460693, 0.3824544847011566, -0.3770257532596588, -0.12478084117174149, 0.6486914157867432, 1.3192256689071655, 1.191051959991455, 0.3268791437149048, 0.012034254148602486, -0.10691042244434357, 0.695997416973114, -0.8994981646537781, -0.6779705286026001, -0.6472657322883606, -0.35284239053726196, -1.0983930826187134], [0.4597851037979126, 0.31108373403549194, -3.160808563232422, -0.9122166037559509, 0.0848330408334732, 0.8736913800239563, 0.7131565809249878, 0.5199477672576904, -0.3107275664806366, 0.23551461100578308, -2.1045174598693848, 0.09366656839847565, 0.723853349685669, -0.04642393812537193, -0.706185519695282, 0.214848130941391, 0.5236194729804993, -0.32202833890914917, 0.00938473641872406, 1.1916425228118896, -1.2442054748535156, -0.6152081489562988, 0.17687314748764038, 0.2280193269252777, 0.5316016674041748, -0.5841854810714722, -0.7204529047012329, 0.42860573530197144, -0.9149092435836792, -0.9274226427078247, 0.9078483581542969, -0.0661243349313736, -0.27722615003585815, -0.5086706876754761, -1.823518991470337, -0.34682321548461914, 1.4651241302490234, 1.1254386901855469, 0.6106842160224915, 0.9083818793296814, 2.4604897499084473, 1.0031200647354126, -1.0899245738983154, -0.7059042453765869, -0.6700867414474487, -0.5407214164733887, 1.3815327882766724, -0.5109501481056213, 0.014529440551996231, 0.49020978808403015, 0.36709463596343994, 0.40151166915893555, 0.8865092992782593, 1.2073230743408203, 1.786604642868042, -0.6689801216125488, 1.1933274269104004, 0.167740598320961, 0.20923036336898804, -0.8565938472747803, 1.097776174545288, -0.23542499542236328, -0.38798147439956665, 1.1641826629638672, 0.046931009739637375, 0.12392645329236984, 0.06813345849514008, 0.7458597421646118, 0.14805221557617188, -0.6652411222457886, 0.8686553239822388, 1.308179259300232, 0.10527974367141724, -0.6082160472869873, -0.9256971478462219, -0.24733132123947144, 0.4008641242980957, 0.3011474013328552, 0.188812717795372, 1.2535221576690674, -1.147602915763855, 0.9064807891845703, 0.8386458158493042, 0.2803356647491455, 0.23436661064624786, 0.4592912197113037, 0.2768807113170624, -0.018915753811597824, -1.0412790775299072, 0.7487496137619019, 0.07344165444374084, 0.7878437638282776, 1.1375954151153564, -0.5164263248443604, 0.15359261631965637, -0.6939491629600525, -0.16816189885139465, -0.5503977537155151, -0.2238340526819229, -0.6096181869506836, -0.9509931206703186, -0.823114812374115, 1.48341965675354, 0.5921725034713745, -0.2955041527748108, 2.555190086364746, 0.2983148694038391, -0.3302514851093292, -0.6193208694458008, -0.7794588804244995, 0.3389861583709717, 0.37920454144477844, -0.6499451398849487, -1.389756679534912, -0.5026264190673828, 0.26233986020088196, 0.4437651038169861, 0.3913387060165405, 0.49324169754981995, 0.541350245475769, -0.4031704068183899, 0.1754843294620514, -0.27620410919189453, 0.2795659899711609, 0.5159905552864075, -0.8635988831520081, -1.0071263313293457, 0.43027040362358093, 0.08217868208885193, 0.1871899515390396, 0.8500754833221436, 0.08918406069278717, 0.3988456130027771, 1.075850248336792, -0.029689088463783264, 0.7876341938972473, 0.31553417444229126, -1.1594691276550293, -0.5904698967933655, 0.5721969604492188, 0.4389379620552063, 0.047013215720653534, 0.09545265883207321, -0.9309038519859314, -0.3695151209831238, -0.19798673689365387, 0.8297793865203857, -0.5764172673225403, -0.7413040995597839, -0.10251903533935547, -1.3538576364517212, 0.9986145496368408, -0.3623560070991516, 0.2855624854564667, 1.1147127151489258, -0.32958507537841797, -0.15466651320457458, 0.009953320026397705, 0.09679253399372101, 0.03838459774851799, 0.8235553503036499, -0.665859580039978, 0.14767393469810486, 1.1237062215805054, 0.297664076089859, -0.7008432745933533, -0.10677396506071091, 0.48665714263916016, 0.08135940134525299, 0.6647323966026306, 0.03402036428451538, -1.2206981182098389, -1.045891284942627, 0.0529743991792202, -0.22204264998435974, -1.259589672088623, 0.5685586929321289, -0.6722015142440796, -1.2176848649978638, -0.6130750179290771, 1.115022897720337, -1.0023727416992188, 0.25483769178390503, -0.010223928838968277, 0.767288088798523, -0.11411597579717636, -0.6914334297180176, -1.0270484685897827, -0.10130052268505096, -0.9809773564338684, -2.0321714878082275, 0.45148950815200806, -0.8630338311195374, -0.11663979291915894, -0.4261772036552429, -0.6547076106071472, 0.39004331827163696, -1.1985585689544678, -0.761483371257782, -0.049601681530475616, 0.12683719396591187, -0.0763191506266594, -0.7329049110412598, 0.4898838400840759, -0.13355028629302979, -0.22839823365211487, -1.0691450834274292, 0.4686537981033325, -0.49725598096847534, 0.29146039485931396, 0.23983612656593323, -0.3472405672073364, 0.08426929265260696, 0.8425298929214478, 0.2682197690010071, -1.6004548072814941, 0.03342984616756439, 0.09282232075929642, -0.06182042136788368, -0.3932320773601532, 0.6159031391143799, 0.791864812374115, 1.0731806755065918, -0.7163394093513489, 0.8860034942626953, 0.05393137037754059, 0.3439328372478485, -0.3923710584640503, -0.7545148134231567, -0.05321681126952171, -0.7140711545944214, -0.722233772277832, 0.3664624094963074, 0.6873189210891724, -1.2035765647888184, 0.8958669304847717, -0.25247257947921753, 0.24738235771656036, -0.25225725769996643, 0.3282192051410675, -0.08164143562316895, 0.6047252416610718, -1.041202425956726, -0.2822599709033966, -0.6307347416877747, 0.7423012852668762, 0.010155066847801208, -0.32235991954803467, 0.6461629271507263, 0.884506106376648, 0.4591848850250244, 0.38494205474853516, 1.2166310548782349, -0.7483378648757935, -0.15071827173233032, -1.17972731590271, -0.47170567512512207, 0.71086585521698, 0.21018381416797638, 1.7183723449707031, 0.8060071468353271, -0.4489898085594177, -0.08515670895576477, -0.5962564945220947, -0.18288658559322357, -1.2958781719207764, -0.6779832243919373, -0.5378717184066772, 0.8841737508773804, -0.05670511722564697, 0.42573487758636475, 0.13555213809013367, -0.49494999647140503, 0.6109605431556702, -0.06778095662593842, 0.33046793937683105, 0.6758378148078918, 0.2370235025882721, -0.4532715678215027, 0.5565690994262695, -0.041295021772384644, -1.2939566373825073, -0.5256941914558411, -0.9303657412528992, 0.7028659582138062, -0.05802486836910248, -0.6308246850967407, 0.29914161562919617, 0.5131802558898926, -0.26772254705429077, 0.05184146389365196, 0.32215631008148193, -0.31061604619026184, 0.37702471017837524, -0.1577470302581787, 0.8312211036682129, 0.7829869985580444, -0.6007645130157471, -0.24259962141513824, 0.0847969502210617, 0.27678754925727844, 0.7366893291473389, 1.0020267963409424, 1.9545817375183105, -0.1396307647228241, 0.20512324571609497, 0.33224794268608093, 0.06054233759641647, -0.18516439199447632, -0.4358212351799011, -1.3811562061309814, -1.2183362245559692, 0.1305915266275406, -0.5282297134399414, -0.23487602174282074, 0.26404762268066406, -0.28295576572418213, -0.6408090591430664, -0.12662482261657715, -0.25705984234809875, -0.20062237977981567, 0.11783431470394135, -0.25878000259399414, -0.5843877792358398, 0.7598774433135986, 1.0875649452209473, -1.3572120666503906, 0.11810538917779922, -0.10201718658208847, -0.19288425147533417, 0.9183407425880432, 0.009933294728398323, 0.7810512781143188, -1.1955277919769287, -0.8582518100738525, 0.13482388854026794, 0.24778001010417938, 0.5663513541221619, -1.1517350673675537, -0.41399386525154114, 1.2990167140960693, 1.0520710945129395, -0.010570257902145386, -0.3753982186317444, 0.27416712045669556, -0.580102264881134, -1.0717288255691528, -0.20280510187149048, 0.2023608684539795, 0.7059583067893982, -1.4841305017471313, -0.39229199290275574, 0.23358921706676483, -0.6124278903007507, -0.394065260887146, 0.5496300458908081, -0.48918837308883667, 0.6787733435630798, -0.10777539014816284, -0.671733558177948, 2.2173655033111572, -0.29733991622924805, 0.7008414268493652, -1.4347529411315918, 0.5114127993583679, 0.23995941877365112, 1.9796520471572876, 0.17813363671302795, 1.3782484531402588, 0.09890376031398773, -0.5910168886184692, 0.06303565949201584, 0.04530186951160431, 0.6882932782173157, 0.8389995694160461, -0.08878467977046967, -0.013630274683237076, 0.09583514928817749, -0.36213213205337524, -0.2888256311416626, -0.13750243186950684, 0.28276005387306213, -0.8749806880950928, -0.11943790316581726, 0.4708120822906494, 0.4078720510005951, -0.9000146389007568, 0.01506565511226654, 0.22936834394931793, -0.4749711751937866, 0.07941529899835587, 0.19115450978279114, -1.4009339809417725, 0.2928670346736908, 0.9399259090423584, -1.5063388347625732, 0.5031881928443909, -0.0008488520979881287, 0.6327203512191772, 1.0149407386779785, -0.7168186902999878, -0.07720769196748734, -0.3755966126918793, 1.1462676525115967, 0.5408918857574463, -0.09763482213020325, 0.05390162020921707, -0.39848363399505615, 0.770042896270752, 0.16742882132530212, 0.04307699203491211, 1.3852863311767578, 0.2771373689174652, -0.3879741430282593, 0.23289328813552856, 0.6752897500991821, 0.12630684673786163, 0.7503578662872314, 0.055291008204221725, -0.31794273853302, -0.35629916191101074, 0.014473129995167255, -0.13423295319080353, 0.8339204788208008, 1.3098669052124023, 0.39672237634658813, -0.024278106167912483, 0.2548205852508545, -0.8919366002082825, -1.4401384592056274, 0.537092924118042, 0.6215824484825134, 0.18849311769008636, -0.2682209014892578, 0.0677361711859703, 0.5416288375854492, 0.2125525176525116, 0.7807697057723999, 0.6993345022201538, 0.46703481674194336, 0.45424485206604004, -0.5063598155975342, 1.0485575199127197, 0.7234272956848145, 0.7518932819366455, 0.40036433935165405, 0.538560152053833, -0.9937008619308472, -0.4811384677886963, 0.8368310928344727, -0.41824015974998474, 0.39549413323402405, 0.045676615089178085, 0.42013323307037354, 1.3743689060211182, -1.413650393486023, 0.2997753322124481, 0.2628234326839447, 0.4032191038131714, 0.14052768051624298, 0.9901285171508789, 0.6764854788780212, -0.9197769165039062, -0.2403150200843811, -0.49704229831695557, -1.06416654586792, -0.7715761661529541, 0.03477047011256218, 0.3715493679046631, 1.0356566905975342, -0.5278522968292236, -0.4525723457336426, -0.5762060880661011, -0.25831693410873413, 0.4909138083457947, -0.5564792156219482, 0.08957278728485107, 0.2630828022956848, -0.316913366317749, 0.9877878427505493, -0.19639894366264343, -0.6488047242164612, 0.7993475198745728, -1.1200650930404663, -0.016225937753915787, -0.3291342556476593, -1.5257903337478638, -0.09486912935972214, 0.2750532627105713, -0.5103338956832886, 0.08839081227779388, 0.08992801606655121, 0.38998711109161377, -0.33560290932655334, -1.2382698059082031, -0.1307569146156311, 0.4981665015220642, 1.4789899587631226, 0.16472077369689941, 0.7524290084838867, 0.4039018750190735, -0.035370342433452606, -0.6344751119613647, -0.2253057211637497, 0.7413010597229004, -0.7284867763519287, -0.062202174216508865, -1.1501412391662598, -0.5429506301879883, 0.573021411895752, 0.23415598273277283, 0.5905417203903198, -0.21993598341941833, 0.6020866632461548, 1.2379465103149414, -0.018075738102197647, -1.1866025924682617, 1.3927147388458252, -0.15559788048267365, 0.44017890095710754, 0.2929042875766754, -0.508733332157135, -0.8355884552001953, 0.22178536653518677, -1.5287463665008545, 0.52928626537323, 0.230968177318573, -0.9795998334884644, 0.10240154713392258, 0.2408219873905182, -0.012556908652186394, 0.4150787591934204, -0.936965823173523, 0.4189000725746155, 0.6522388458251953, 0.16397391259670258, -0.994255542755127, 0.6245763301849365, 0.5379620790481567, -0.3045864999294281, -0.10537339001893997, -0.15546926856040955, -0.48112761974334717, -0.34933367371559143, -0.312216192483902, -0.026744849979877472, 1.0057713985443115, -0.035331208258867264, 0.46380823850631714, 0.12908010184764862, 1.1500873565673828, -0.6922293305397034, -0.48162275552749634, -0.2472594976425171, 0.8140637874603271, -0.01468951627612114, -0.780147135257721, 0.5440835952758789, -1.374391794204712, -0.24955622851848602, 0.011028051376342773, -0.11618631333112717, 0.9684653282165527, 0.7641996145248413, -0.19239458441734314, -0.006891701370477676, -0.667578935623169, 0.47471004724502563, -0.3422315716743469, -0.7849750518798828, 0.33854740858078003, -1.580524206161499, -0.2053380310535431, -0.3417580723762512, -0.4734402894973755, 0.327120304107666, -0.23179450631141663, 0.31203532218933105, -0.788009762763977, -0.9768917560577393, -0.9058744311332703, -0.2681345045566559, 0.13413190841674805, -0.1419796198606491, 0.9792789220809937, 1.1494210958480835, -0.43997472524642944, -0.14608226716518402, 0.3696199059486389, -0.9238905906677246, 0.059897035360336304, -1.091292381286621, 0.8877497911453247, -0.2978460192680359, 1.5944172143936157, -0.7258157730102539, 1.1332454681396484, -0.8351001143455505, -0.7771949172019958, -1.1384055614471436, -0.6673676371574402, -0.024159131571650505, 1.1592224836349487, -1.5979859828948975, 1.097910761833191, -0.17633415758609772, -0.9556909799575806, -0.2490171492099762, 0.8495116233825684, -0.22310484945774078, 0.1404571384191513, -0.5733208656311035, -0.20935803651809692, 0.7106806039810181, 1.6353380680084229, 0.37506943941116333, 1.5151453018188477, 0.09632959961891174, -0.33117952942848206, 0.0938601866364479, -0.46257850527763367, -0.33502358198165894, 0.03464477136731148, -0.9002907276153564, -0.008746970444917679, -0.22169172763824463, -1.5461004972457886, -0.6189262866973877, 0.25930336117744446, 1.2446348667144775, -1.4338006973266602, 0.218157559633255, -0.6629222631454468, -0.4895283579826355, -1.1217167377471924, 0.883836030960083, -0.48743534088134766, -0.043566346168518066, 0.04677596688270569, 0.16735297441482544, -0.05597250163555145, -0.501501202583313, -0.29345566034317017, -0.02904564142227173, 0.10888797044754028, -0.5485348701477051, 1.283682107925415, 1.1579623222351074, 0.47572705149650574, -0.11509811133146286, 1.3462834358215332, 1.1643718481063843, -0.2877315878868103, 0.16718141734600067, 0.15954427421092987, -0.5174608826637268, -0.026987876743078232, -0.2684655487537384, -0.578292727470398, -1.0680334568023682, 0.9134579300880432, -0.12481069564819336, -0.3827793598175049, -1.2675199508666992, 1.4800419807434082, -0.4315354526042938, -0.12904658913612366, 0.19459623098373413, -1.414023756980896, -0.11794950067996979, 0.7923619747161865, 0.07346577942371368, 0.18664930760860443, 0.47839248180389404, 0.9013189077377319, -0.22759698331356049, 0.1850602924823761, 0.6889739036560059, -0.03754653409123421, -1.1492385864257812, 0.6104322671890259, 0.47933992743492126, -0.25650835037231445, 0.030002497136592865, -0.23930683732032776, -2.067002296447754, -0.15065070986747742, -1.1320302486419678, -0.22943150997161865, 0.535544753074646, -1.0279693603515625, -0.9690842628479004, -0.05960724130272865, 0.5033540725708008, -0.5990172028541565, -0.08808215707540512, -0.1579906940460205, -0.2910085916519165, -0.01728745922446251, 1.2578552961349487, -0.12273810803890228, 1.241155743598938, -0.039924584329128265, -0.12961077690124512, -0.9342705011367798, -0.8298614621162415, 0.33318889141082764, 1.000396490097046, 0.5510066747665405, -0.35505008697509766, 0.42429351806640625, 0.049131836742162704, -0.4798131585121155, 0.03395075723528862, -0.2010090947151184, -0.2704024910926819, 0.08839702606201172, -0.64077228307724, -0.09418749809265137, -0.07241935282945633, 0.6711444854736328, -0.27914148569107056, -0.787200927734375, -0.23117536306381226, 0.27346277236938477, -0.48178842663764954, 0.5073018074035645, 0.06878801435232162, 1.3183573484420776, 0.3355642557144165, -0.8576903939247131, 0.06815316528081894, -0.5379053354263306, 1.1580915451049805, -0.2525351941585541, 0.50957852602005, -0.3188912272453308, -0.45329421758651733, -0.06333653628826141, -0.7674349546432495, 0.166120246052742, 0.36569902300834656, 0.41960474848747253, -0.25629472732543945, -0.6840944886207581, -1.597952127456665, -0.9150163531303406, 0.05881958454847336, -0.19049009680747986, 0.19904178380966187, 0.6573903560638428, -0.3836281895637512, -0.5559393167495728, 0.27132928371429443, 0.1916620433330536, -0.02113642543554306, 0.5678734183311462, 1.6696351766586304, 1.8905115127563477, 0.6227498054504395, 0.012168124318122864, -0.7305647730827332, 0.4798857867717743, -0.16169780492782593, -0.23648060858249664, -1.243251085281372, 0.7544572949409485, 0.07246094942092896], [0.21853844821453094, 0.8309078812599182, -2.6925785541534424, -1.190637469291687, -0.4534156322479248, 0.3948628008365631, 1.8902169466018677, 0.4334219992160797, -0.45357227325439453, -0.265948086977005, -0.6074482202529907, 0.23916350305080414, 0.6356931924819946, 1.1383007764816284, -0.2139584720134735, -0.1194332167506218, 0.7047262191772461, -0.08461002260446548, 0.43598443269729614, 1.0048619508743286, -0.9382650256156921, 0.32777708768844604, -0.22380687296390533, 0.3875511586666107, 0.4065926969051361, 0.40402960777282715, -0.8962631821632385, 0.08662395924329758, -0.48119983077049255, -0.9107981324195862, 1.2737547159194946, -0.8594422340393066, -0.6869574189186096, -0.23567157983779907, -0.3865673840045929, -0.5918333530426025, 1.4527397155761719, 0.7509312033653259, 1.512046217918396, 1.7531166076660156, 2.729053020477295, -0.5976812839508057, -0.0038337833248078823, -1.3600883483886719, -0.39042016863822937, -0.31036949157714844, 1.1612882614135742, -1.5102810859680176, -1.0493738651275635, -0.1146441400051117, 0.637367844581604, 0.7180810570716858, 0.25074705481529236, 0.9078878164291382, 1.416675329208374, -0.9412992596626282, 0.3739517033100128, -0.5239354968070984, 0.6393139958381653, 0.25924643874168396, 0.11008184403181076, 0.37249380350112915, 0.03496880084276199, 0.8575481176376343, 0.4823909401893616, -0.591690719127655, -0.7133176326751709, 0.11531924456357956, -0.017650548368692398, 0.006859598681330681, 0.14367879927158356, 0.1375410556793213, -0.6318778395652771, 0.4621085524559021, -0.7955698370933533, 0.7073112726211548, 0.24729250371456146, 0.5988508462905884, 0.36647531390190125, 0.6634673476219177, -0.40607523918151855, 0.15118852257728577, 1.058615803718567, -0.29914700984954834, 1.7276133298873901, 0.4390358626842499, -0.11870292574167252, -0.8066809177398682, -0.6853480935096741, 1.6887497901916504, 0.3009217083454132, 0.20064599812030792, 0.5945718288421631, 0.3897082507610321, -0.4485794007778168, -0.12139380723237991, 0.062327682971954346, -0.16507065296173096, -0.015897491946816444, -0.37942418456077576, -1.0812095403671265, -0.9632067084312439, 0.14636893570423126, -0.15188099443912506, 0.21167638897895813, 1.7926052808761597, -0.48252031207084656, 0.0166096743196249, -0.8928979635238647, -0.7043537497520447, -0.2516680061817169, -0.763649046421051, -0.8722566366195679, -0.628410816192627, -0.459371954202652, 0.46759334206581116, 0.9207214117050171, -0.059822872281074524, 0.9205317497253418, 0.4809439182281494, -0.2579653561115265, 0.047528862953186035, -0.057888779789209366, 0.037121038883924484, 0.25739261507987976, 0.621439516544342, -0.3875771462917328, -0.026304682716727257, 0.7144673466682434, 0.46242383122444153, 0.5782776474952698, 0.06977907568216324, 0.5912336111068726, 1.442729115486145, -0.5395984649658203, 0.8058369755744934, -0.03278196230530739, -1.0076234340667725, -0.48489153385162354, 0.1684480458498001, 0.4176625907421112, -0.6703746914863586, -0.537351667881012, -0.7136330008506775, -0.13679368793964386, -0.9548789262771606, 0.9973201155662537, 0.13032974302768707, -0.09206701070070267, -0.17056110501289368, -0.8448425531387329, 0.3009529113769531, 0.357636421918869, 0.8199758529663086, 0.6536911725997925, -0.4151487648487091, 0.18456505239009857, 0.7245196104049683, -0.2667534649372101, 0.6578099131584167, 0.29955974221229553, -0.2042064666748047, -0.871090829372406, 0.3974094092845917, 0.38137751817703247, -0.7004366517066956, 0.22057563066482544, 0.5342584848403931, -0.06874683499336243, 0.1040971502661705, -0.4073818624019623, -0.23612160980701447, -1.1459224224090576, 0.19512377679347992, 0.6861675381660461, -0.7782410979270935, 1.1998101472854614, -0.9554786682128906, -1.0109645128250122, -1.3864339590072632, 0.8568069934844971, -0.5545576810836792, -0.0029031354933977127, -1.001455545425415, 0.9565621614456177, -0.9823094010353088, -0.0441843643784523, -0.6673881411552429, -0.6796776056289673, -0.8317658305168152, -1.478257179260254, -0.4858004152774811, -1.1974396705627441, 0.3683471083641052, -0.638874888420105, -0.9155139327049255, 0.7891061902046204, -0.8603684902191162, -1.3321483135223389, 0.1004931703209877, -0.005551372654736042, -0.5514594316482544, -0.7968013286590576, 0.7987388372421265, -0.963524580001831, 0.690526008605957, -1.0646030902862549, 0.6534162163734436, -1.3213541507720947, 0.1557958424091339, -0.0280331801623106, 0.3659555912017822, -0.5331193804740906, 0.6682544946670532, -0.6737581491470337, -1.2865495681762695, 0.05571440979838371, 0.49446889758110046, 0.19745869934558868, -0.3188452124595642, 0.6983104348182678, 0.8522560000419617, 0.7739226222038269, -0.3525647521018982, 0.849051833152771, -0.5276561975479126, -0.3130088448524475, -0.47075119614601135, -0.6791939735412598, 0.5371959209442139, -0.9537927508354187, -1.0386425256729126, 0.8395864367485046, 0.4634643495082855, -1.3367230892181396, 0.6262320876121521, -0.20272499322891235, -0.0238211527466774, -0.21632154285907745, 0.3226679265499115, 0.34838059544563293, -0.10234476625919342, -0.11987258493900299, -0.7248634696006775, -0.37101343274116516, 0.9122734069824219, 0.35665348172187805, -0.6753001809120178, 1.0018267631530762, 1.5021170377731323, -0.290039986371994, -0.6120824813842773, 0.8677238821983337, -0.36243101954460144, 0.201872780919075, -1.061308741569519, -1.2597664594650269, 0.12695059180259705, -0.44073060154914856, 1.9726407527923584, 1.4921618700027466, -1.128983974456787, -0.7694619297981262, 0.376271516084671, -0.2061622589826584, -1.0283520221710205, 0.14076115190982819, 0.20717406272888184, 0.5247394442558289, -0.2777461111545563, -0.19570684432983398, -0.43683311343193054, -0.276753306388855, 0.36887359619140625, -0.48421868681907654, 0.390277236700058, 0.6942460536956787, 0.5367076396942139, 0.4857892096042633, 0.6392711400985718, 0.37354063987731934, -0.7534636855125427, -1.0975544452667236, -0.2050866335630417, 0.9136420488357544, 0.1155414804816246, 0.6280694007873535, 0.3526746928691864, -0.28212815523147583, -0.30225270986557007, 0.23624956607818604, 0.9394544363021851, 0.13791655004024506, 0.3430248498916626, -0.9033572673797607, 0.39367520809173584, 1.1536086797714233, -1.3729990720748901, -0.2598101496696472, 0.6301288604736328, 1.182112216949463, 0.4715728759765625, 1.1891342401504517, 1.8860557079315186, 0.7378761172294617, -0.17825505137443542, -0.3429756760597229, -0.7468482851982117, -0.2753618359565735, -0.32895970344543457, -0.4344445466995239, -1.3236980438232422, -0.6074486970901489, -0.06344141066074371, -0.04935923218727112, 0.3211437165737152, -0.6257805824279785, 0.8619526028633118, 0.425297349691391, -0.7367395758628845, -0.047266773879528046, -0.03184382617473602, 0.5188034176826477, -0.16573426127433777, 0.5213077068328857, -0.356076180934906, -1.0116212368011475, -0.3050394356250763, 0.2261638194322586, 0.5987610816955566, 1.3742811679840088, 0.13477180898189545, -0.0782116949558258, -1.0603482723236084, -0.30352216958999634, -0.14204882085323334, 0.6782253980636597, -0.38634881377220154, -0.16882634162902832, -1.1511832475662231, 0.5849982500076294, 0.9521169662475586, 0.2751747965812683, -0.7450177073478699, 0.7769614458084106, -0.8457760214805603, -0.3679230511188507, -0.7815994024276733, -0.3100748062133789, 0.47968214750289917, -0.5203213691711426, -0.5929498672485352, 0.0602821409702301, -0.3463377058506012, -0.3653709888458252, 0.3717001676559448, 0.08016888797283173, 0.8021562695503235, -0.5265432596206665, -0.0729014128446579, 1.5974066257476807, -0.75494784116745, -0.5096844434738159, -1.7581050395965576, 1.4108906984329224, -0.06841621547937393, 1.488883137702942, 0.6352632641792297, 0.5874664783477783, 0.39307093620300293, -0.09104418754577637, 0.30980169773101807, -0.23360782861709595, 1.0749261379241943, -0.2683509886264801, -0.3526897430419922, -0.24864673614501953, -0.27988937497138977, -0.08040855824947357, 0.02935653366148472, -0.7201955914497375, 0.4172125458717346, -0.33562374114990234, -0.9017806053161621, 0.695343017578125, 0.6358426809310913, -0.6097230315208435, -0.4438419044017792, 0.44465622305870056, 0.2797805666923523, 0.002579697174951434, -0.4549614191055298, -1.200964331626892, -0.6557296514511108, 0.26692748069763184, -1.4544000625610352, -0.1524210423231125, 0.6636766195297241, 0.5244662761688232, 0.5807703137397766, -0.8984059691429138, -0.12987016141414642, -0.15635748207569122, 0.0563008151948452, 1.0665903091430664, -0.03636261075735092, 0.26315078139305115, 0.29751506447792053, 0.5568116903305054, 0.07573805749416351, -0.5894543528556824, 2.1549267768859863, 0.5055603981018066, -0.15592554211616516, -0.19420431554317474, 0.5706655979156494, 0.43349260091781616, 0.45089730620384216, -0.579341471195221, 0.6915005445480347, -0.31518638134002686, 0.32936981320381165, -0.8524839282035828, -0.608391284942627, 2.014468193054199, 0.16861625015735626, -0.016946546733379364, 0.6096254587173462, -0.8879762291908264, -1.0431897640228271, 0.18419399857521057, 0.32200905680656433, 0.7529988884925842, -0.6604382991790771, -0.10687924176454544, 0.1477731168270111, -1.0322694778442383, 0.5828210711479187, 0.404669851064682, 0.8046897053718567, 0.1346869170665741, 0.16331683099269867, 1.114246129989624, 0.08706667274236679, 0.659460723400116, 1.2054402828216553, 0.28404104709625244, -0.8800524473190308, -0.2189580500125885, 0.8933337330818176, -0.30249062180519104, 0.43475356698036194, 0.2519749701023102, 0.35671505331993103, 1.3479105234146118, -1.4860914945602417, -0.13957767188549042, 0.7029774785041809, 0.3304853141307831, 1.373525857925415, 0.7485984563827515, 0.9275930523872375, -0.5535426139831543, -0.3155439794063568, 0.42282524704933167, -0.26288989186286926, 0.571773886680603, 0.0962800458073616, -0.27416595816612244, -0.07209303230047226, -1.2016048431396484, -0.208389550447464, -0.1162700206041336, -0.3316737711429596, -0.6296743154525757, -1.0977555513381958, 0.5576960444450378, 0.5954223871231079, 0.4073951542377472, 0.9135106205940247, 0.2676188349723816, -0.9079812169075012, 0.9833791255950928, -1.1536955833435059, 0.12952229380607605, 0.020602481439709663, -0.3856433629989624, 0.2419283092021942, -0.6399838924407959, 0.22307175397872925, 0.3020712435245514, -0.6353577971458435, -0.6685794591903687, 0.505600094795227, -0.9302988648414612, 0.3735564053058624, 0.7010518312454224, 1.5691636800765991, 0.6838973164558411, 0.6626037359237671, 0.4037676155567169, 0.49570247530937195, -0.9234940409660339, -0.6448261737823486, 0.5303905606269836, -0.6189810037612915, -0.04888152331113815, -1.4259686470031738, -0.31364473700523376, 1.7352232933044434, 0.613446056842804, -0.45618316531181335, 0.19159837067127228, 0.35165902972221375, 0.956038236618042, -0.5346543788909912, -1.2879270315170288, -0.028852378949522972, -0.512189507484436, 0.38707783818244934, 1.0835469961166382, -0.5006906390190125, -0.2195807546377182, 0.34377521276474, -1.6236705780029297, 1.2854394912719727, 0.1601187288761139, -0.9390438795089722, 0.7537218928337097, 0.8672497272491455, 0.19486138224601746, 0.22547543048858643, -0.4485751688480377, -0.6207563877105713, -0.3839276134967804, -0.08189210295677185, -1.2482876777648926, 1.0935252904891968, -0.12700095772743225, 0.061610180884599686, -0.27452388405799866, 0.08834365755319595, -0.6840004920959473, 0.5065890550613403, -0.0032172459177672863, 0.3109639585018158, 0.9058735370635986, 0.5784784555435181, 0.19003556668758392, 0.39586904644966125, -0.13270360231399536, -0.6162482500076294, -0.31485486030578613, -0.018044481053948402, 0.6608521342277527, -0.4006207287311554, -1.3567228317260742, -0.045100290328264236, 0.18590758740901947, 0.5807026028633118, -0.30428624153137207, -0.8916978240013123, 1.0740039348602295, 0.4190569818019867, -0.037156086415052414, -0.035911012440919876, -0.41007158160209656, -0.22551235556602478, -0.14549128711223602, -0.6621239185333252, 0.8212318420410156, -1.6795763969421387, 0.4136921763420105, -0.8466073274612427, -0.026162289083003998, 0.5372661352157593, -0.008934812620282173, -0.27369004487991333, -1.7161822319030762, -0.04178164154291153, -1.3443434238433838, -0.2663031220436096, 0.7908767461776733, -0.9181042909622192, 0.1353577971458435, 1.1154166460037231, -1.1965949535369873, 0.40086129307746887, 0.2112141102552414, -1.5209243297576904, -0.45774397253990173, -1.5629369020462036, 0.7781441807746887, -0.5227470993995667, 0.5425200462341309, -0.843252420425415, 0.7667694687843323, -1.0257524251937866, -1.2594819068908691, -0.6283121705055237, -0.14950881898403168, 0.6341042518615723, 1.1732021570205688, -0.7997482419013977, 0.9337846040725708, 0.7016449570655823, -1.0337944030761719, -0.28062403202056885, 0.4750289022922516, -1.1310495138168335, 0.17432282865047455, 1.0208228826522827, -0.19369496405124664, -0.05073847994208336, 1.490405559539795, -0.46588489413261414, 1.2692235708236694, 0.6109846234321594, 0.5298283696174622, -0.7000033855438232, -1.0213173627853394, -0.37169861793518066, -0.043676652014255524, -0.6973606944084167, -0.5234200954437256, 0.09083981066942215, -1.5798250436782837, -0.5753552317619324, 0.5561632513999939, 1.602665901184082, -0.3659924566745758, -0.36012396216392517, -0.47738921642303467, 0.6465110778808594, -0.5032438635826111, 0.3176238536834717, -0.21488028764724731, 0.3536972105503082, 0.0802176222205162, -0.12420105934143066, -0.6171786785125732, -0.7064944505691528, -0.16940224170684814, -0.04922042414546013, -0.012964490801095963, -0.5146259069442749, 1.0112278461456299, 0.9192918539047241, -0.8407667875289917, -1.2886402606964111, 1.5999901294708252, 1.586768627166748, -0.6035213470458984, 0.3354377746582031, -0.23555655777454376, 0.47526851296424866, 0.3166056275367737, -0.8964780569076538, -0.13652317225933075, -0.7465223670005798, 0.23491081595420837, 0.23182688653469086, -0.3555375635623932, -1.0032217502593994, -0.01723305881023407, -0.35357221961021423, 0.4209785461425781, 0.5130739212036133, -0.2118445783853531, -0.31879958510398865, 1.5322426557540894, 0.6607296466827393, 0.44424936175346375, 0.4315268099308014, 0.04861878603696823, 0.2002524733543396, 0.36526310443878174, 1.4223225116729736, 0.4778606593608856, -0.7412139773368835, 0.7176566123962402, 0.39493927359580994, 0.12096620351076126, 0.01412292942404747, -1.331060528755188, -1.6822125911712646, -0.6465460062026978, -0.7339543700218201, -0.5436504483222961, 0.1562386155128479, -0.33644285798072815, -0.4120464324951172, 0.14147375524044037, 0.2334161400794983, 0.07209886610507965, -0.7494722604751587, -0.2586047053337097, -0.4522010385990143, 0.17790010571479797, 0.9668736457824707, -0.9650515913963318, 0.6118292808532715, -0.08317462354898453, -0.3462042510509491, -0.3169229030609131, -0.8506618738174438, -0.30496224761009216, 0.22624346613883972, 0.6207032203674316, -0.22202056646347046, 0.31197768449783325, -0.1495388150215149, -0.41634705662727356, -0.230375736951828, -0.7249070405960083, 0.773749828338623, -0.6125717759132385, -0.7850807309150696, 0.37703579664230347, 0.9936596751213074, 0.025645174086093903, -0.061388883739709854, -0.800491213798523, -0.3806353211402893, 0.7583670616149902, -0.36614933609962463, 0.3677305281162262, -0.6568765044212341, 0.9339364767074585, 0.6386974453926086, -0.5465871095657349, 0.8584948182106018, -0.088823601603508, 0.07921181619167328, -0.6233581900596619, 0.564526379108429, 0.2906741201877594, -0.2692034840583801, 0.7001011371612549, -1.0155991315841675, 0.36664658784866333, -0.06887441128492355, 0.04923142120242119, -0.11483962088823318, -0.5957229733467102, -0.1496904343366623, -0.4681004285812378, -0.2326126992702484, 0.980778157711029, 0.12111746519804001, 0.33012306690216064, 0.07157838344573975, -1.523742437362671, -0.262170672416687, 0.3872990608215332, 0.3038073182106018, 0.7850751280784607, 1.8556851148605347, 1.8756818771362305, 0.33033230900764465, -0.29595282673835754, -0.32323533296585083, 0.26762655377388, -0.4890887141227722, -0.5540843605995178, -1.0456295013427734, 0.14517554640769958, -0.5039323568344116], [0.20455694198608398, 1.361508846282959, -2.2239766120910645, -1.5307077169418335, 0.5241474509239197, -0.22096198797225952, 0.8930737972259521, 0.39475834369659424, -0.9215692281723022, -0.11533553898334503, 0.08887703716754913, 0.05965464562177658, 1.1992177963256836, 0.8953452110290527, -0.04869705066084862, 0.5760685205459595, -0.02502039074897766, -0.6566441655158997, 1.0074266195297241, 1.0502066612243652, 0.014194570481777191, 0.09627921879291534, 0.07853732258081436, 0.23528961837291718, 0.06005604565143585, 0.21987049281597137, -0.5502668619155884, -0.448294997215271, -0.308834433555603, -0.710025429725647, 0.2717626094818115, -1.0466874837875366, 0.06705091893672943, 0.9694089293479919, -0.9694615602493286, -1.3230363130569458, 1.5272362232208252, 1.1831282377243042, 1.0574828386306763, 0.28024300932884216, 1.1823617219924927, 0.06800955533981323, -0.5547266602516174, -0.24786004424095154, -0.6456623077392578, -0.1469375044107437, 0.28275126218795776, -0.34120291471481323, -0.37820303440093994, 0.31609442830085754, 0.4552725851535797, 0.44272056221961975, 0.10664992779493332, 0.2688654363155365, 1.2236403226852417, 0.008979249745607376, 0.7192922830581665, -0.0628172978758812, 0.7380287647247314, -0.9296491146087646, 0.13121286034584045, 1.268031120300293, -0.04801328852772713, 1.3180502653121948, 1.0345911979675293, 0.549130916595459, -0.8451319336891174, 0.13808655738830566, 0.45325979590415955, -0.3285520374774933, 0.408214807510376, 0.6457144618034363, 0.29371196031570435, 0.11072305589914322, -0.7699286937713623, 0.3227519094944, 0.48808351159095764, 0.4271608591079712, -0.5555811524391174, 0.9707842469215393, 0.34698790311813354, 0.06503129005432129, 1.3853849172592163, -0.49337896704673767, 0.6856098175048828, 0.46800702810287476, 0.17690002918243408, -0.8095208406448364, 0.6889720559120178, 0.6375442743301392, 0.2523617446422577, -0.17320044338703156, 0.7768150568008423, 0.22874696552753448, -0.25594842433929443, 0.7307097315788269, -0.6787134408950806, 0.13690254092216492, -0.08195775002241135, -0.5125687718391418, -1.3270785808563232, -0.22340801358222961, 0.007816620171070099, -0.336011677980423, -0.4822806417942047, 1.0222437381744385, 0.803057074546814, 0.2739792466163635, -0.5474220514297485, -0.5894441604614258, -0.13772639632225037, 0.12683677673339844, 0.09625421464443207, -0.9549157619476318, -0.9505332112312317, 0.19240103662014008, 0.8138194680213928, -0.5570728182792664, 0.7456762194633484, 1.1018251180648804, -0.7327723503112793, 0.6827397346496582, 0.8322133421897888, 0.8569947481155396, -0.050221748650074005, -0.42769208550453186, -0.3947754204273224, -0.5164110064506531, 0.676110029220581, -0.5871325135231018, -0.10168643295764923, -0.6896609663963318, -0.3173424005508423, 0.16215714812278748, -0.510674774646759, 0.4106200933456421, -0.317709356546402, -0.7440822720527649, -0.3063117563724518, 0.2035873383283615, 0.6897709369659424, -0.3118414878845215, -0.7850783467292786, -0.8762238621711731, -0.6749172210693359, -0.2663164436817169, 0.8249716758728027, 0.016699887812137604, -0.0409332774579525, -0.5942658185958862, -0.9733462333679199, 1.234616756439209, 0.437950998544693, 0.7830884456634521, 0.5597152709960938, -0.5770907402038574, 0.8473539352416992, -0.12927980720996857, 0.26883700489997864, 0.6114777326583862, 1.3614606857299805, 0.25371211767196655, -0.7852377891540527, 0.07337787747383118, -0.27763691544532776, -0.49862805008888245, 0.3110520541667938, 0.8663452863693237, 0.282191663980484, 0.17888270318508148, -0.03051608055830002, -0.26693639159202576, -1.1728391647338867, 0.26349127292633057, 0.2259880006313324, -0.9210351705551147, 1.220618486404419, -0.3132516145706177, -0.30781057476997375, -0.21255718171596527, 0.24478641152381897, -0.6634289622306824, 0.10982748121023178, 0.0002451874315738678, 0.1719280183315277, -0.5359481573104858, 0.07974839210510254, -0.16812384128570557, -0.21560460329055786, -0.383590430021286, -1.6474964618682861, 0.24090948700904846, -0.7070242166519165, 0.009541746228933334, -0.8918042778968811, -0.19340753555297852, 0.7343044281005859, -0.5539183616638184, -0.31180262565612793, 0.2727071940898895, -0.610998272895813, 0.16444547474384308, -1.2341725826263428, 0.5326411128044128, -0.22785018384456635, 0.4129130244255066, -1.5979559421539307, 0.6535394191741943, -1.1053342819213867, -0.09003837406635284, 0.9704805612564087, -0.9361518621444702, 0.49705126881599426, 0.4147214889526367, -0.4153440594673157, -1.3483104705810547, 0.5196797251701355, 0.18446996808052063, -0.6856358051300049, 0.005475275218486786, 0.6858486533164978, 0.6309757232666016, 0.3160625994205475, -0.38743671774864197, 0.244462788105011, -0.6783915162086487, 0.14882242679595947, -0.13135984539985657, -0.6443870663642883, 0.5892157554626465, -0.7486128211021423, -1.083991527557373, 0.8346586227416992, 0.2693401277065277, -0.6224914193153381, 0.1780550181865692, 0.09257402271032333, 0.14035511016845703, 1.2827328443527222, 0.5635443329811096, 0.3396146893501282, 0.3052670359611511, -0.8280545473098755, -0.6594491004943848, -0.6908374428749084, 0.8470630049705505, 0.8496918678283691, -0.9177582859992981, 0.3209596276283264, 0.8268409967422485, 0.40145549178123474, 0.34874409437179565, 0.8612769246101379, -1.1840153932571411, -0.12198550254106522, -0.8987115621566772, -0.47661423683166504, 0.22714468836784363, -0.22994546592235565, 1.261823296546936, 0.8816586136817932, -1.2763543128967285, 0.6201565265655518, 0.0906582847237587, -0.08965481072664261, -0.16377241909503937, -0.7640140056610107, 0.6729135513305664, 0.3767555356025696, -0.02780105173587799, -0.2694842517375946, -0.3129175901412964, -0.5552166104316711, 0.4939791262149811, -0.4930824041366577, 0.35437482595443726, 0.5551013946533203, 0.7287893295288086, -0.8902894854545593, 0.3517979085445404, 1.0452733039855957, -0.6524465084075928, -0.8668035864830017, -0.2977752685546875, 0.1152181476354599, -0.18519170582294464, -0.41166770458221436, 0.46465376019477844, 0.56141597032547, -0.1357317566871643, 0.10698242485523224, 0.25937747955322266, 0.1871865838766098, 0.8283795118331909, -0.7372129559516907, 0.20770004391670227, 1.0864571332931519, 0.03590685874223709, 0.650906503200531, 0.4020056426525116, 0.6700528860092163, 0.8798794150352478, 1.1014100313186646, 1.8309866189956665, 0.2723774015903473, -0.2814463973045349, -0.40812745690345764, -1.1979591846466064, -0.12406427413225174, 0.043229762464761734, -0.7283433079719543, -0.9594693183898926, -0.09270823746919632, 0.2141711711883545, -0.1953984946012497, 0.3163480758666992, -0.1322018802165985, 0.5102630853652954, 0.634116530418396, -0.5800348520278931, 1.0720807313919067, 0.7395191788673401, -0.4150860905647278, -0.2690950036048889, -0.016303017735481262, -0.10754165053367615, -1.1018059253692627, -0.006266362965106964, 0.7824991941452026, -0.11395099759101868, 0.7958744764328003, 0.12988799810409546, 0.14669452607631683, -0.8344371914863586, -1.0301872491836548, 0.13907389342784882, 0.8789008259773254, -0.20848390460014343, -0.05948302894830704, -0.670762300491333, 1.9385522603988647, -0.14149923622608185, 0.23000970482826233, -0.46677178144454956, 0.6631986498832703, 0.15013790130615234, -0.8316599130630493, -0.6655611395835876, 0.1170433759689331, -0.12022346258163452, -0.14020831882953644, -0.039789874106645584, 0.26542314887046814, -0.4012237787246704, 0.23081517219543457, 1.1539112329483032, 0.664108395576477, 1.6379755735397339, 0.0761263370513916, -0.9667316675186157, 0.5961536169052124, -0.4952221214771271, 0.07371248304843903, -1.3553999662399292, 0.8516101241111755, -0.10137923061847687, 1.1752020120620728, 0.710235595703125, -0.503877580165863, 0.25809791684150696, -0.04077230393886566, 0.3453228771686554, 0.15165990591049194, 1.0856163501739502, 0.12645161151885986, -1.2419155836105347, -0.5786775946617126, -0.1532129943370819, 0.0036776773631572723, -0.5308966636657715, -0.16171765327453613, 0.44306468963623047, -0.3216157555580139, -0.10838472098112106, 1.0688356161117554, -0.25131747126579285, -0.25403621792793274, -0.3309788405895233, 0.2000533491373062, -0.20220226049423218, -0.13226039707660675, -0.3349514305591583, -1.5867233276367188, -0.3729332387447357, 0.0495021678507328, -1.1101279258728027, -0.06546258926391602, -0.22894448041915894, 0.41788309812545776, 0.5346260070800781, -1.0462672710418701, 0.40126314759254456, 0.09513717889785767, 0.7912482619285583, 0.6007000207901001, 0.25991225242614746, 0.6299232244491577, -0.20829367637634277, 0.7666980624198914, 0.29029029607772827, -0.31110841035842896, 1.1484979391098022, -0.2563628554344177, -0.5333337187767029, 0.13787071406841278, -0.11141234636306763, 0.27774015069007874, -0.05687206983566284, 0.6162988543510437, 0.5529339909553528, -0.004944950342178345, 0.09465411305427551, 0.013904877007007599, 0.10423322021961212, 0.5599023103713989, 0.8612967133522034, 0.7080717086791992, 0.9269693493843079, -0.5925676226615906, -0.7390642166137695, 0.6003335118293762, 0.007865614257752895, 1.4619495868682861, -0.5121629238128662, -0.05757961422204971, 0.5327319502830505, -1.5421847105026245, 0.5034660696983337, 0.29165586829185486, 0.7464824318885803, -0.008372312411665916, -0.4082558751106262, 1.0684616565704346, -0.1297629326581955, 0.8266366720199585, 1.2440446615219116, 0.18691584467887878, -0.4106162488460541, -0.3544839024543762, 1.081737995147705, -0.697943925857544, 0.23899973928928375, 0.4003141522407532, 0.3156706392765045, 1.407983660697937, -1.0920536518096924, -0.8404173851013184, 0.696717381477356, -0.10813987255096436, 0.24724061787128448, 0.5748947858810425, 0.776515543460846, -0.9761756658554077, 0.23157814145088196, 0.6449651718139648, -0.600713849067688, -0.21865148842334747, -0.13685977458953857, 0.18746617436408997, 1.494372844696045, -0.25153106451034546, -0.011302530765533447, 0.28386569023132324, -0.04308180883526802, 0.16406096518039703, -0.07892327755689621, -0.3022432029247284, 0.3582150638103485, 0.051930107176303864, 0.22222818434238434, -0.17797154188156128, -0.4904187321662903, 0.35274121165275574, -0.5616970658302307, 0.12837298214435577, 0.34569618105888367, -1.2265511751174927, 0.2717354893684387, -0.6631166934967041, -0.14257490634918213, -0.019831502810120583, -0.469076931476593, -0.5018103122711182, -0.17720097303390503, -0.8964722156524658, -0.3604423701763153, 1.0720514059066772, 1.4860780239105225, -0.6289032697677612, 0.4987746775150299, 0.37561240792274475, -0.004418771713972092, -0.6833630800247192, 0.2094499170780182, 0.41614362597465515, -0.6561495065689087, 0.46726366877555847, -1.8538564443588257, -0.7898303866386414, 0.8422712683677673, 0.4778417944908142, 0.006814759224653244, 0.12734632194042206, 0.37725088000297546, 0.41908958554267883, -1.1251015663146973, -0.8983854055404663, 0.34493207931518555, -0.6253333687782288, -0.09672914445400238, 0.4800490438938141, -0.2941725254058838, -0.7425863742828369, -0.5954026579856873, -1.1952236890792847, 1.2362911701202393, 0.6599235534667969, -1.3531434535980225, 0.5929948091506958, 0.5843368172645569, 1.0594487190246582, 0.4829191267490387, -0.019258789718151093, -0.4615851044654846, -0.29568180441856384, 0.09354130923748016, -0.40638378262519836, 0.32681259512901306, 0.1986134946346283, 0.7110323905944824, 0.06925009191036224, 0.36822670698165894, -0.32126036286354065, 0.4991365373134613, 0.813984215259552, -0.4043993651866913, 0.4034312069416046, 0.8785133957862854, 0.11285034567117691, -0.047079894691705704, -0.10641397535800934, -0.4206278920173645, -1.2117886543273926, -0.30579155683517456, 0.5718430876731873, -0.612406313419342, -0.12967325747013092, -0.35777080059051514, 0.1468408703804016, -0.2060813158750534, 0.41927310824394226, 0.07002753019332886, 0.682833731174469, 0.839877188205719, -0.31345173716545105, -0.13962212204933167, 0.5680378079414368, -0.27249228954315186, 0.3247336447238922, 0.2930345833301544, -0.7742289900779724, -1.361109972000122, 0.29665103554725647, -0.5592174530029297, -0.4802435338497162, -0.21229584515094757, 0.33924439549446106, -0.03225652500987053, -1.4251718521118164, -0.6175574660301208, -1.5513107776641846, -0.1365390121936798, 0.26586592197418213, -0.9148851633071899, 0.24513979256153107, 0.59068763256073, -1.0714151859283447, -0.05438113212585449, -0.516284704208374, -1.6147382259368896, 0.42562177777290344, -1.0027331113815308, 0.15063317120075226, -0.5767900347709656, 1.6800843477249146, -0.3338402509689331, 0.1854574829339981, -0.6782095432281494, -0.757057785987854, 0.22624774277210236, -0.4327748715877533, 0.507499635219574, 0.9725989699363708, -1.2527679204940796, 0.028432924300432205, 1.1224294900894165, -0.4600328505039215, -0.07777034491300583, 0.41258877515792847, -0.758789598941803, 0.380375474691391, 0.36464923620224, 0.06527825444936752, -0.12659798562526703, 1.165785312652588, -0.06223005801439285, 0.9135169386863708, -0.7691690921783447, -0.005268573760986328, -0.4508476257324219, -0.5283770561218262, -0.4073691964149475, 0.9495836496353149, -0.9642840623855591, -0.09615571051836014, -0.7554317116737366, -1.2548060417175293, -0.12392716109752655, 0.6751457452774048, 1.3376413583755493, -0.5369260907173157, -0.8077536821365356, -0.9466336369514465, 0.4431193470954895, -0.6220574378967285, 0.39400359988212585, 0.17060217261314392, 0.28663504123687744, 0.3787071108818054, 0.684977650642395, 0.06455101817846298, -0.6533470153808594, -0.009782050736248493, 0.6322438716888428, 0.05403250828385353, -1.6394802331924438, 1.189136266708374, 0.5367696285247803, 0.17649774253368378, -0.636508047580719, 1.66971755027771, 0.5316283702850342, -0.16831481456756592, -0.7399364113807678, -0.7188167572021484, -0.012649822980165482, 0.995927095413208, -1.329727053642273, -0.23398330807685852, -0.9863075017929077, 0.3281482458114624, -0.9439517855644226, -0.41676515340805054, -1.6994554996490479, 0.14053550362586975, -0.2272907942533493, -0.6705813407897949, 0.7165290117263794, -0.8708077073097229, 0.2511362135410309, 0.613243818283081, 0.6103852391242981, 0.2742061913013458, 0.9708389043807983, 0.9113170504570007, -0.08313295245170593, 0.2352859526872635, 0.8373709321022034, -0.4212630093097687, -1.1843857765197754, 0.07263804972171783, 0.5292255878448486, 0.7102993726730347, -0.26007261872291565, -0.19642503559589386, -1.550093173980713, -0.7784274220466614, -0.7053848505020142, -0.4737528860569, -0.4331638216972351, -0.0730489194393158, -1.1488782167434692, 0.5715243220329285, -0.000845741480588913, -1.1680477857589722, -0.19652189314365387, -0.15559212863445282, -0.9694167375564575, -0.46681952476501465, 0.42128220200538635, -0.771513819694519, 0.08164230734109879, -0.09903615713119507, -0.08124560117721558, -0.019215140491724014, -1.2439509630203247, 0.5556463599205017, 0.739915132522583, 0.6248099207878113, -0.36824873089790344, 0.5805394649505615, -0.40150967240333557, -0.752896785736084, -0.30757153034210205, -0.9033402800559998, 0.14340858161449432, -0.30347269773483276, -0.8389407396316528, -0.05425417795777321, 0.6433649063110352, 0.014383558183908463, -0.06646154075860977, -1.5606046915054321, -0.2066197246313095, 0.8325413465499878, -0.383232980966568, 0.2365114986896515, -0.937255322933197, 0.9956340789794922, -0.17090114951133728, -0.11465498059988022, 0.8100104331970215, -0.06708649545907974, 1.3050816059112549, -0.4411986470222473, 0.769906759262085, -0.041239239275455475, -0.3592502772808075, 0.2075551152229309, -0.6705784797668457, 0.3227469325065613, -0.42467615008354187, -0.050403423607349396, -0.5615707635879517, -0.159781351685524, -0.8998310565948486, -0.7112289667129517, 0.7418616414070129, 1.1081887483596802, 0.15940336883068085, -0.9781378507614136, 0.3389197289943695, -0.7401631474494934, -0.25828203558921814, -0.0873817428946495, -0.49635758996009827, -0.682992160320282, 0.7132753133773804, 1.2586865425109863, 1.3156501054763794, 1.127271294593811, 0.22613348066806793, 0.545806884765625, -0.4440154731273651, -0.4133971929550171, -1.3987265825271606, -0.497459352016449, -0.7761999368667603], [0.45487096905708313, 1.072420358657837, -2.532846450805664, -1.2378231287002563, 0.3867693841457367, 0.4825824499130249, 1.6918591260910034, 0.509148359298706, 0.20559599995613098, -0.5958399772644043, 0.06893951445817947, 0.10398329049348831, 0.7724658250808716, 1.2026526927947998, -0.15762081742286682, 0.4196130633354187, 0.5140318870544434, -0.2560977339744568, 0.8810482025146484, 0.7165201306343079, -0.6761107444763184, 0.1529439389705658, -0.3251066207885742, 0.26032620668411255, -0.13428503274917603, 0.5605872273445129, -1.5421806573867798, 0.1100362241268158, -0.6183661818504333, -0.5400176048278809, 0.9772195219993591, -1.339797019958496, -0.6539880633354187, 0.18608912825584412, -0.8888441324234009, -0.38706544041633606, 1.3095072507858276, 1.2184193134307861, 0.9966530799865723, 1.4086521863937378, 2.3739094734191895, -0.31957095861434937, 0.2479322999715805, -1.125403881072998, -0.006233883090317249, 0.02716180868446827, 1.323664665222168, -1.3516368865966797, -0.6738717555999756, -0.4970266819000244, 0.5699012279510498, 0.005758728366345167, 0.2857551574707031, 1.3155752420425415, 1.4046876430511475, -0.6999563574790955, 0.8710843920707703, -0.47482532262802124, 0.5710964202880859, 0.181003600358963, 0.5441881418228149, 0.24639418721199036, 0.15528002381324768, 1.135717511177063, 0.25640949606895447, -0.19236069917678833, -0.8602295517921448, 0.224294051527977, 0.20643888413906097, 0.3089277148246765, 0.13082267343997955, -0.08635245263576508, -1.0229891538619995, 0.5869462490081787, -1.2545455694198608, 0.6258903741836548, 0.5517498850822449, 0.8135078549385071, 0.3875328004360199, 1.0284773111343384, -0.5677708387374878, -0.05366922914981842, 0.36283308267593384, -0.41351979970932007, 1.4072730541229248, 0.37498757243156433, 0.4481064975261688, -1.2110247611999512, -0.35819903016090393, 1.3107013702392578, 0.12599536776542664, -0.22368764877319336, 0.7170853614807129, 0.46996456384658813, -0.1513090431690216, -0.453468382358551, 0.10292480140924454, -0.15995192527770996, -0.5574654340744019, -0.2766050696372986, -1.295697569847107, -0.16951227188110352, -0.077606201171875, -0.12916596233844757, 0.7126836776733398, 1.7900007963180542, -0.10053449124097824, -0.3860466480255127, -0.6795997619628906, -0.5604814887046814, -0.4779430031776428, -0.7330313920974731, -0.5941030979156494, -0.8812786936759949, -0.8475342392921448, 0.73576420545578, 1.1574814319610596, -0.7912079691886902, 1.312233805656433, 0.4838598966598511, -0.23683829605579376, 0.40854504704475403, 0.11476282775402069, 0.11825922131538391, 0.6487972140312195, 0.5211865305900574, -0.6247006058692932, -0.059288620948791504, 0.9641625285148621, -0.05684233829379082, 0.5822698473930359, -0.07133044302463531, 0.5255003571510315, 1.2973154783248901, -0.19680389761924744, 0.9633907079696655, 0.3668358027935028, -0.5567998886108398, -0.15690137445926666, 0.2788435220718384, 0.5154905915260315, -0.266463041305542, -0.4499337673187256, -0.8814817070960999, 0.2335333377122879, -0.9359737634658813, 0.563215970993042, -0.180198073387146, -0.3008127212524414, -0.6720598936080933, -1.083990216255188, 0.2557947039604187, 0.28690412640571594, 0.9333738684654236, 0.364391952753067, -0.6569912433624268, 0.6693893074989319, 0.3305674195289612, 0.36331549286842346, 0.773918092250824, 0.5054892301559448, 0.5021217465400696, -0.7210551500320435, 0.6372796893119812, 0.5066606402397156, -1.056025743484497, -0.005986446514725685, 0.5310761332511902, 0.46004459261894226, -0.12583613395690918, -0.6907801628112793, -0.332348495721817, -0.8769106864929199, -0.05643896386027336, 0.6740811467170715, -1.02842378616333, 1.3430062532424927, -0.7665267586708069, -1.4519938230514526, -0.9022302627563477, 0.7636251449584961, -0.31338149309158325, 0.30839765071868896, -0.5402961373329163, 0.6262060403823853, -0.6824144721031189, -0.06747027486562729, -0.32904618978500366, -0.6322396397590637, -0.7588306665420532, -1.1932508945465088, -0.7515211701393127, -1.2774379253387451, 0.23441825807094574, -0.413918137550354, -1.033993124961853, 0.49691900610923767, -0.7135881781578064, -0.8732492327690125, -0.06345751881599426, -0.3610967993736267, -0.36539411544799805, -1.1978185176849365, 0.5776627659797668, -0.7810513377189636, 0.8815778493881226, -1.1225959062576294, 0.9570738673210144, -1.567907452583313, -0.1685778796672821, 0.08411749452352524, 0.11043720692396164, -0.33868250250816345, 0.7637442946434021, -0.648177981376648, -1.3080124855041504, 0.16082985699176788, 0.3520219922065735, -0.2975369095802307, -0.3936523199081421, 0.6044407486915588, 0.19506296515464783, 0.8318104147911072, -0.11310500651597977, 0.5029181241989136, -0.06165941432118416, -0.7217264771461487, -0.782949686050415, -0.4319470524787903, 0.6767961978912354, -0.747398316860199, -1.2778093814849854, 1.2864196300506592, 0.8295496702194214, -1.463558554649353, 0.4777785539627075, -0.041743598878383636, -0.21940335631370544, 0.24086861312389374, 0.3753618896007538, 0.2712005376815796, -0.07925937324762344, -0.1507018506526947, -0.07901892066001892, -0.45467182993888855, 0.8775302171707153, 0.7385775446891785, -0.40770867466926575, 0.9770055413246155, 1.3422764539718628, -0.028204569593071938, 0.13708734512329102, 0.8042307496070862, -0.44979530572891235, 0.21186986565589905, -0.5314876437187195, -0.9182157516479492, -0.17461109161376953, -0.5538156628608704, 1.6702684164047241, 0.9168534874916077, -1.21555495262146, -0.42266619205474854, 0.28465157747268677, -0.2445315569639206, -0.606001615524292, -0.3273827135562897, 0.19780988991260529, 0.08499622344970703, -0.4832875728607178, -0.2865428626537323, -0.11377064883708954, -0.31298232078552246, 0.3282225430011749, -0.39845266938209534, 0.1420249044895172, -0.05437461659312248, 0.5657297372817993, 0.3311298191547394, 1.1090898513793945, -0.15523718297481537, -0.6256361603736877, -0.9595549702644348, -0.01595158316195011, 1.148604154586792, 0.16738809645175934, 0.1763806939125061, 0.5749847292900085, 0.2114802449941635, -0.24485352635383606, -0.17780429124832153, 0.9360584020614624, -0.42395177483558655, 0.2713444232940674, -1.0533549785614014, 0.17744995653629303, 1.6087095737457275, -1.2316358089447021, -0.5412541627883911, 0.3998914659023285, 0.7227814793586731, 0.8932366967201233, 1.0028642416000366, 1.5941407680511475, 0.0759967789053917, 0.03778570517897606, 0.0888708159327507, -0.5693826079368591, -0.19637207686901093, -0.6490678191184998, -0.5649634599685669, -1.0700501203536987, -0.35078001022338867, 0.03230289742350578, 0.31899648904800415, 0.7774601578712463, -0.5155386328697205, 1.0301456451416016, 0.4524344503879547, -0.7126400470733643, 0.08166956156492233, 0.05757980793714523, 0.07616829127073288, -0.3263932168483734, 0.3123354911804199, -0.5187532901763916, -0.9009339809417725, -0.6483046412467957, 0.0698724165558815, 0.21256889402866364, 1.4629172086715698, 0.003957576118409634, 0.010062549263238907, -0.8775030374526978, -0.7808964252471924, -0.1579047441482544, 0.6977798342704773, -0.5380061864852905, -0.27027758955955505, -1.1085522174835205, 0.25001028180122375, 0.5348896384239197, -0.11237100511789322, -0.8814781308174133, 0.31014424562454224, -0.4984738230705261, -1.4490915536880493, -0.2975229024887085, 0.16219152510166168, 0.8557398319244385, -0.43607228994369507, -0.5479820966720581, 0.37366005778312683, -0.3724285662174225, -0.5585606694221497, 0.5477861762046814, 0.23814897239208221, 0.7014796137809753, -0.33970654010772705, 0.029739752411842346, 1.3027186393737793, -0.5188024640083313, -0.2027137130498886, -2.0838639736175537, 1.1511448621749878, -0.2276887744665146, 1.3350900411605835, 0.4943835437297821, 0.33608606457710266, 0.41760289669036865, -0.37295687198638916, 0.02305155247449875, 0.15811145305633545, 1.299487829208374, -0.14674945175647736, -0.3077320456504822, -0.2894241511821747, -0.29667142033576965, 0.0814238116145134, -0.22922787070274353, -0.5143888592720032, 0.5907818675041199, -0.4196294844150543, -0.6568177938461304, 0.8616043925285339, 0.2699447274208069, -0.7856673002243042, -0.8220863938331604, 0.38330078125, 0.8392309546470642, 0.002239711582660675, -0.14147917926311493, -1.2494630813598633, -0.283479243516922, 0.16382166743278503, -1.278825283050537, 0.33889493346214294, 0.6487153768539429, -0.23984383046627045, 0.33393239974975586, -1.0294173955917358, -0.0045366049744188786, -0.3543907403945923, 0.250463604927063, 0.8177149891853333, -0.340455561876297, 0.7308158278465271, 0.5390247702598572, 0.1979677975177765, -0.021914571523666382, -0.34965041279792786, 1.7023515701293945, 0.072517029941082, -0.353483110666275, -0.4101817011833191, 0.22257769107818604, 0.32603979110717773, 0.041787125170230865, -0.32454827427864075, 0.2843073904514313, -0.3051779866218567, 0.551835298538208, -0.4652794301509857, -0.5180418491363525, 1.9911830425262451, 0.6269955039024353, 0.1287676990032196, 0.7315259575843811, -0.7860932350158691, -0.8189842104911804, 0.3357681632041931, 0.03184131532907486, 0.04340137541294098, -0.669651210308075, -0.1921166628599167, 0.4852389395236969, -1.1154340505599976, 0.695570170879364, 0.5536502003669739, 0.780427098274231, 0.013271761126816273, 0.10841295123100281, 0.6180572509765625, 0.21670903265476227, 0.8879601955413818, 0.9451327323913574, 0.6835452318191528, -0.21323168277740479, -0.6043038368225098, 0.777658224105835, -0.6238568425178528, 0.25625938177108765, 0.39472830295562744, -0.10306262969970703, 1.4424984455108643, -1.5955721139907837, -0.5376685857772827, 1.064491629600525, 0.22293470799922943, 1.3965532779693604, 0.6563385128974915, 0.5602387189865112, -0.6024888753890991, 0.24829702079296112, 0.45985451340675354, -0.27593106031417847, 0.6216424703598022, 0.06612459570169449, -0.24139487743377686, -0.298764169216156, -0.7546650171279907, 0.1333850473165512, -0.5575466752052307, -0.7356176972389221, -0.33402809500694275, -0.9583954811096191, 0.6383839845657349, 0.6614991426467896, 0.5006406903266907, 0.8437087535858154, -0.10283549875020981, -1.0344393253326416, 0.8056197762489319, -0.7886313199996948, 0.07207037508487701, 0.2545474171638489, -0.30030110478401184, 0.11047866195440292, -1.3919519186019897, -0.31928935647010803, 0.5129501819610596, -0.7093533873558044, -1.055742621421814, 0.25274333357810974, -0.8388267755508423, 0.22348052263259888, 0.4854094386100769, 1.5248321294784546, 0.6096146702766418, 0.13703902065753937, 0.15703295171260834, -0.06620478630065918, -1.1381603479385376, -0.2671521306037903, 0.7191693782806396, -0.13102953135967255, -0.08737356215715408, -1.7771881818771362, -0.6004438996315002, 1.8104448318481445, 0.8802875876426697, -0.8011147379875183, 0.14540530741214752, 0.8988646268844604, 1.3717116117477417, -0.6527674198150635, -1.3278582096099854, 0.17721378803253174, -0.7912672162055969, 0.10975275188684464, 0.7067264914512634, -0.3132297992706299, -0.38228708505630493, -0.47780781984329224, -1.9515663385391235, 1.176112174987793, 0.013212584890425205, -1.1118223667144775, 1.1652532815933228, 0.7835800647735596, 0.4227057993412018, 0.620425283908844, -0.08879287540912628, -0.31579041481018066, 0.022199025377631187, -0.03335129842162132, -0.9900619983673096, 0.518580436706543, 0.004277917556464672, 0.2734912037849426, -0.10504880547523499, 0.37168607115745544, -0.319562166929245, 0.259317547082901, 0.4830002784729004, 0.673145055770874, 0.5431456565856934, 0.6861469149589539, 0.0034816390834748745, 0.10322245210409164, -0.22188574075698853, -0.6730772256851196, -0.4364190399646759, -0.35549288988113403, 0.8971376419067383, -0.22988195717334747, -1.3171849250793457, -0.038044191896915436, 0.22956866025924683, 0.15340515971183777, 0.16294001042842865, -0.7304664850234985, 0.8539374470710754, 0.10927601903676987, 0.04951733723282814, 0.26635992527008057, -0.39801496267318726, 0.3997213840484619, -0.1861710548400879, 0.0128677012398839, 0.7059686183929443, -1.3533706665039062, 0.3435213565826416, -0.20605403184890747, 0.1792730987071991, 0.08498053252696991, -0.015505820512771606, 0.15084095299243927, -1.3638886213302612, -0.7600514888763428, -1.311631679534912, -0.17424464225769043, 0.9017523527145386, -0.5385491251945496, 0.440203994512558, 0.7329630255699158, -1.4243497848510742, 0.3023729920387268, 0.06066729500889778, -1.3040297031402588, -0.31105291843414307, -1.283389925956726, 1.2188539505004883, -0.664399266242981, 1.0403560400009155, -0.9031752347946167, 0.6645780205726624, -1.0647400617599487, -1.2364248037338257, -1.0950264930725098, -0.09511281549930573, 1.0689277648925781, 1.0870893001556396, -0.9825506806373596, 1.284839153289795, 0.9656996726989746, -0.7477583885192871, -0.8879638910293579, 0.11017600446939468, -0.8582976460456848, 0.6404767036437988, 1.016680359840393, 0.4056226313114166, 0.10623300820589066, 1.2387051582336426, -0.13861539959907532, 0.7669156193733215, 0.4213583767414093, 0.7277857065200806, -1.0290559530258179, -0.5695256590843201, -0.33650192618370056, 0.5390796065330505, -0.7205038070678711, -0.37472590804100037, -0.14385217428207397, -1.1469295024871826, -0.5127992033958435, 0.8609578609466553, 1.1785129308700562, -0.712679386138916, -0.4522060453891754, -0.9653730988502502, 0.7973179221153259, -0.2759678065776825, 0.05445136874914169, -0.03288769721984863, -0.08105336874723434, 0.5765307545661926, 0.12801682949066162, -0.7005433440208435, -0.8391771912574768, -0.22782275080680847, 0.23014087975025177, -0.1143871322274208, -0.35480499267578125, 0.945442259311676, 0.6109887957572937, -1.015249490737915, -1.1128787994384766, 1.924723744392395, 1.645298719406128, -0.2827789783477783, -0.08348039537668228, 0.2514663338661194, 0.4000592827796936, 0.6757662892341614, -0.6280126571655273, -0.09390585124492645, -0.9404543042182922, 0.7693541646003723, 0.001757550984621048, -0.7196365594863892, -0.9186882972717285, -0.02360456995666027, -0.44797229766845703, 0.3414655327796936, 0.6344261169433594, -0.5120143294334412, -0.05271651968359947, 1.3864295482635498, 0.4658939838409424, -0.07235386222600937, 0.6913986206054688, 0.5223067998886108, -0.06177247315645218, -0.0899803638458252, 1.1998953819274902, 0.6192549467086792, -1.187116265296936, 1.0307868719100952, 0.4696215093135834, 0.2883477509021759, 0.32815203070640564, -1.1132922172546387, -2.0107176303863525, 0.04264017194509506, -0.9527220129966736, -1.1201108694076538, 0.20137573778629303, -0.8746007084846497, -0.9923873543739319, 0.5275896787643433, 0.14521466195583344, 0.047808971256017685, -1.032150387763977, 0.5234549641609192, -0.4833928346633911, 0.20662689208984375, 0.5156152248382568, -0.9554663896560669, 0.8790625929832458, 0.08629706501960754, -0.6803134679794312, -0.6703417897224426, -0.6880891919136047, 0.35669589042663574, 0.11341561377048492, 0.04974501207470894, -0.34067296981811523, 0.6420093774795532, -0.223210409283638, -0.7630946636199951, 0.1768219918012619, -1.0564128160476685, 0.3656911253929138, -0.5658596754074097, -0.7341560125350952, 0.34376290440559387, 1.2849074602127075, 0.0002509020268917084, 0.12925103306770325, -0.787754237651825, -0.29179394245147705, 0.7273126244544983, -0.384544312953949, 0.4299579858779907, -0.5870928764343262, 0.8239366412162781, 0.39277198910713196, -0.3802526295185089, 0.626583993434906, -0.27177178859710693, -0.0033361176028847694, -0.33869093656539917, 0.4579312801361084, 0.12362530827522278, -0.07289624214172363, 0.19774048030376434, -0.7625826597213745, 0.3013021647930145, -0.36541131138801575, 0.06000468134880066, -0.09699603915214539, -1.0255528688430786, -0.8437090516090393, -0.40365129709243774, -0.3844342529773712, 0.9595940709114075, 0.19910037517547607, 0.7093507647514343, -0.2998676598072052, -1.1974750757217407, 0.1322503387928009, 0.06634746491909027, -0.3542967140674591, 0.3888798952102661, 1.7145131826400757, 1.5961552858352661, 0.3576830327510834, 0.07858652621507645, -0.4104524254798889, 0.7504568696022034, -0.37884145975112915, -0.37706029415130615, -1.1648986339569092, -0.34790536761283875, -0.4642045199871063], [0.9129478931427002, 1.0283514261245728, -1.9574933052062988, -0.2850193381309509, -0.0265867430716753, -0.04128507524728775, 0.7289487719535828, 0.7309468388557434, -0.26452958583831787, -0.5832101106643677, -0.34948593378067017, 0.39356452226638794, 0.5653750896453857, 0.1099974662065506, 0.6230791807174683, 0.596500813961029, 0.9555144309997559, -0.2003750056028366, 0.5079505443572998, 0.5178695917129517, -0.6639973521232605, -1.152497410774231, 0.44537681341171265, -0.10938933491706848, -0.1214698776602745, 0.6967368125915527, -1.4638190269470215, -0.819892942905426, -1.5442675352096558, -0.687106728553772, 1.283125400543213, -0.675077497959137, 0.22039294242858887, 0.42360901832580566, -1.7133790254592896, -0.1946294754743576, 0.8800828456878662, -0.16358768939971924, 0.1902279257774353, 0.3603861331939697, 1.3381327390670776, 0.17932400107383728, 0.13079768419265747, -1.1889716386795044, 0.9391293525695801, 0.11204494535923004, 0.38154178857803345, -0.5275063514709473, 0.6849993467330933, -0.534344494342804, 0.3675619959831238, -0.13245758414268494, -0.4092288315296173, 1.830885410308838, 1.059385061264038, -0.5495100617408752, -0.25512954592704773, 0.4816387891769409, 0.44085532426834106, 0.5629096031188965, 1.0830880403518677, -0.14084163308143616, -0.07539524137973785, 0.9234607815742493, 0.6923384666442871, 0.32865357398986816, 0.7430738210678101, 0.9986242055892944, -0.4582786560058594, 0.06936519593000412, 0.523307204246521, 0.2252824753522873, -0.4007762670516968, 0.7437547445297241, -0.8302412033081055, -0.15527617931365967, -0.6309478282928467, 0.7318254709243774, 0.04786228388547897, 0.824237048625946, -0.4085819721221924, 0.191023588180542, 0.3018210232257843, 0.7578091025352478, -0.37936869263648987, -0.05043947696685791, 0.6882630586624146, 0.00668034702539444, -0.9012155532836914, 0.8600380420684814, -0.13235822319984436, 0.9757001996040344, 0.38720232248306274, -0.1549183577299118, -0.3888254165649414, -0.7334293127059937, -0.316631555557251, -0.42303144931793213, -0.5085040926933289, -1.3724302053451538, 0.026099082082509995, -1.7650604248046875, 1.21842360496521, 0.5115553140640259, 1.762134075164795, 1.0766505002975464, 0.12442487478256226, -1.1736912727355957, -0.3514663279056549, -0.17150774598121643, -0.04263295978307724, 1.1110092401504517, -0.7760013937950134, -1.1247920989990234, 0.18569718301296234, 1.391739845275879, 0.3574744760990143, -0.22661927342414856, 0.6388995051383972, 0.8940659761428833, -0.9111251831054688, 0.7381316423416138, -0.13654404878616333, 0.43098193407058716, 1.3320221900939941, 0.06657487154006958, -0.14234018325805664, -0.4685784578323364, 0.052393872290849686, 0.4277719557285309, 0.1289764642715454, -0.815504789352417, -0.5238618850708008, 1.194819450378418, -1.0944509506225586, 1.1581915616989136, -0.025745831429958344, -0.3771563768386841, -0.08213134109973907, -0.16492393612861633, 1.0543394088745117, -0.36460286378860474, -0.5615047216415405, -0.05720854923129082, -0.2633059322834015, -0.805862545967102, 0.25108563899993896, -0.30825668573379517, -0.5762198567390442, -0.12523989379405975, -0.7531646490097046, 0.3896602988243103, -0.13147547841072083, 1.5517643690109253, 0.2276575267314911, 0.04747256264090538, 0.6591944694519043, -0.14296749234199524, 0.7464357614517212, 0.2628008723258972, 0.37341463565826416, -0.09467240422964096, -1.012570858001709, 1.0630059242248535, -0.24455931782722473, 0.08247224241495132, 0.3620592951774597, 0.36225616931915283, 0.09171731770038605, 0.603334903717041, -0.5969218611717224, -1.0238494873046875, -0.17227056622505188, 0.12781043350696564, -0.10943887382745743, -0.7650576829910278, 0.4312725067138672, -0.171453058719635, -0.541038990020752, -1.1744542121887207, 0.7048635482788086, -0.40418025851249695, 0.6619274020195007, 0.3575979471206665, 0.648576021194458, -0.18263569474220276, -0.2658827304840088, 0.18438422679901123, 0.12049379199743271, -0.02923177368938923, -0.9486904144287109, -0.6720100045204163, -0.5924618244171143, -0.06640130281448364, -0.2859625220298767, -0.8220645785331726, 0.16035795211791992, -0.5978556275367737, -0.545755922794342, 0.41604238748550415, -0.5214464664459229, 0.043156322091817856, -1.2242298126220703, -0.6198740005493164, -0.48372700810432434, 0.04387208819389343, -0.8713708519935608, 0.2109152227640152, -1.1400891542434692, 0.5747036933898926, 0.7992966175079346, -0.08317874372005463, -1.128082275390625, 0.5465089082717896, 0.1563219577074051, -0.4732586741447449, -0.29141658544540405, -0.4055297076702118, -0.04660141468048096, 0.9414335489273071, -0.22441181540489197, -0.24086827039718628, 1.2065954208374023, 0.09936759620904922, 1.0029929876327515, 0.1979677975177765, -1.537367343902588, -1.013205647468567, -1.2351338863372803, 0.0900154858827591, -1.0493367910385132, -0.5848140716552734, 0.641421914100647, 0.6879901885986328, -0.6232560873031616, 0.45136040449142456, 0.533503532409668, -0.07327315211296082, 0.19713658094406128, 0.680077314376831, 0.1963382363319397, 0.1964963674545288, -1.1665961742401123, -0.666499674320221, -0.22931009531021118, -0.013403783552348614, 0.9019032716751099, -0.7405917644500732, 0.031644802540540695, 1.3070764541625977, 1.1273480653762817, -0.01702655851840973, 0.9093320965766907, 0.2400585114955902, -0.5414930582046509, -1.3506741523742676, -0.005379736423492432, -0.2103479504585266, 0.211139976978302, 1.073422908782959, 0.4401158392429352, -1.0588436126708984, 0.34870535135269165, -0.4732465147972107, 0.2162829339504242, -0.2162250429391861, -0.046913132071495056, -0.506961464881897, -0.04200718551874161, 0.06528716534376144, 0.2757173180580139, 0.4475938677787781, -0.10159042477607727, 0.2209174633026123, -0.696700394153595, 0.005887215957045555, -0.5741948485374451, 0.7246496677398682, -0.22285456955432892, 0.8739811182022095, -0.1519922912120819, -1.3325588703155518, -1.0012184381484985, -0.5519547462463379, 0.5403034090995789, -0.2867739796638489, -0.15920507907867432, 1.6062794923782349, 0.7899467945098877, -0.11759662628173828, -0.355807900428772, 0.04098627716302872, 0.20268885791301727, -0.052756913006305695, 0.5168922543525696, -0.1579546481370926, 0.6958345174789429, -0.5219441056251526, -0.7154311537742615, -0.4049486815929413, -0.08968253433704376, 1.0912421941757202, 1.0087791681289673, 0.8448499441146851, -1.797468900680542, -0.44236817955970764, -0.6545352339744568, -0.32648035883903503, -1.0204821825027466, -0.6090241074562073, -0.16755086183547974, -1.073614478111267, 0.034682631492614746, -0.012351928278803825, 0.005853205919265747, 0.42759352922439575, 0.25381842255592346, 0.3188982903957367, 1.5929820537567139, 0.3712918758392334, -0.2298637330532074, -0.5636436939239502, 0.09435956180095673, -0.9748520851135254, 0.4641197919845581, 1.7375872135162354, -1.7844856977462769, -0.3052089214324951, -0.4499790668487549, -0.276284784078598, 0.4656364917755127, -0.043944332748651505, 0.2478487640619278, -1.0798859596252441, 0.10815469920635223, 0.21498319506645203, 0.6768448352813721, -0.06398129463195801, -0.031335875391960144, -0.4115977883338928, 0.026438642293214798, 0.886610746383667, -0.16495241224765778, -0.26240652799606323, 0.5610076189041138, -0.2806019186973572, 0.13093169033527374, -0.49734175205230713, 0.38442954421043396, 0.9889763593673706, -0.8596463799476624, -0.5509286522865295, 0.008461914956569672, -0.8040458559989929, -0.424765020608902, 0.11630520224571228, -0.5239167213439941, 0.9311314821243286, 0.9994471073150635, 0.24832399189472198, 1.2530862092971802, -0.5083516836166382, -0.11251510679721832, -1.3648796081542969, 0.5175449848175049, 0.8617181777954102, 1.5524141788482666, 0.5469418168067932, 0.7448908090591431, 0.4273064136505127, -0.835507869720459, 0.3545728325843811, 0.11733803153038025, 0.6438491344451904, -0.5534548163414001, -0.43582212924957275, -0.018178630620241165, -0.9053367376327515, -0.24321666359901428, -0.5359508991241455, 0.3110990524291992, 0.4225847125053406, 0.3908841907978058, -0.27477192878723145, 0.8946382999420166, 0.2053592950105667, -0.02602238580584526, -0.3236733078956604, -0.29717403650283813, 0.8330631256103516, -0.28504568338394165, -0.39865654706954956, -0.6534353494644165, -0.3770313262939453, -0.2178904414176941, -0.7292852401733398, 0.24197131395339966, 0.6660149097442627, -0.10205812007188797, 0.614774763584137, -1.585437536239624, -0.14652173221111298, 0.06320998817682266, 0.6214805245399475, 0.3626301884651184, 0.19599208235740662, -0.17451393604278564, 0.04437347501516342, -0.9455820322036743, 0.11950203031301498, 0.22174876928329468, 0.9588177800178528, -0.05757205933332443, 0.23693466186523438, -0.6795768737792969, -0.4185168743133545, 0.2659904956817627, -0.30520063638687134, -0.34427618980407715, 0.08173614740371704, -0.1856359839439392, -0.14483201503753662, 0.3003252148628235, 0.2287527620792389, 1.3302940130233765, 0.7176604866981506, 0.34557318687438965, 0.655423641204834, 0.15904846787452698, -0.31996482610702515, -0.12038037180900574, 0.5204397439956665, -0.4968213140964508, -0.5549589395523071, 0.3058397173881531, -0.10220302641391754, -0.5990535616874695, 0.44101816415786743, 0.3439205586910248, 0.35012286901474, 0.23010152578353882, -0.1377640962600708, 0.6756644248962402, 0.3944846987724304, 0.5142306089401245, 0.6305948495864868, 1.1919443607330322, 0.14520053565502167, -1.0255107879638672, 0.5173699855804443, -0.41357576847076416, 0.5985282063484192, 0.31974366307258606, 0.12786446511745453, 0.9404313564300537, -1.2138423919677734, -0.7127130627632141, 0.47348660230636597, 0.20430506765842438, 0.47274547815322876, 0.35838428139686584, 0.94977867603302, -0.11700291186571121, 0.026011981070041656, -0.3055838942527771, -0.36810386180877686, 0.8316054344177246, -0.05279059708118439, 0.4562472701072693, 0.6969481706619263, -0.19309276342391968, 0.3069929778575897, -0.38364124298095703, -0.3822503089904785, 0.44210124015808105, -0.4851002097129822, -0.5378161668777466, 0.6170295476913452, 0.002190306782722473, 1.2447295188903809, -0.44491657614707947, -1.40956711769104, -0.008367441594600677, -0.9038069844245911, 0.039667759090662, -0.3846272826194763, -0.6047465801239014, -0.5952751636505127, -0.23574146628379822, -0.210099995136261, 0.35639697313308716, -0.557164192199707, 0.0840599462389946, 0.13689468801021576, -1.1369473934173584, 0.11117897182703018, 0.3158181607723236, 0.3522922992706299, 0.9726265668869019, 0.016143526881933212, -0.4807102382183075, 0.25346750020980835, -0.6775556206703186, 0.3820798993110657, 0.590707540512085, -0.32233238220214844, 0.2188943475484848, -0.8453947305679321, -0.6782017946243286, 1.3350975513458252, 0.5181832313537598, 0.027046266943216324, -0.4672529697418213, 1.3488249778747559, 1.5318360328674316, -0.38588792085647583, -0.9827444553375244, 1.6193430423736572, -0.22511349618434906, 1.2014923095703125, 0.18430286645889282, -0.4232840836048126, -0.5487627387046814, -0.1433754861354828, -1.5637946128845215, 1.0888850688934326, 0.07034017890691757, -0.7954121232032776, 0.5808528661727905, 0.28941434621810913, 0.6287411451339722, 0.5185140371322632, -0.052989475429058075, 0.0476437546312809, 0.9365039467811584, -0.33723533153533936, -1.323447585105896, 0.5087984800338745, 0.8263081312179565, 1.1452875137329102, -0.03404448181390762, 0.002312788739800453, -0.2095792144536972, -0.05341672897338867, -0.509606659412384, 0.39863908290863037, 0.4915364980697632, 0.34848910570144653, 0.41199731826782227, -0.8136653900146484, 0.02886819839477539, -0.33941394090652466, 0.7102230787277222, -0.09489241242408752, 1.0445002317428589, -0.3267877697944641, -0.13684439659118652, 0.3183843791484833, -0.6241248846054077, -0.4781413674354553, -0.08007622510194778, -0.6332544088363647, 1.267086386680603, 0.668576717376709, -0.44073760509490967, -1.077697515487671, -0.12474894523620605, -0.2643236815929413, -0.03901877626776695, 0.0629812479019165, 0.7045230865478516, -0.8283579349517822, 0.12658275663852692, -0.3662131428718567, 0.10147496312856674, -0.2687425911426544, -0.049783967435359955, 0.12239053100347519, 0.0008892379701137543, -1.4869215488433838, -0.34247952699661255, 0.0796467736363411, 0.8211658000946045, 0.3268592357635498, 0.3270638585090637, -0.23081310093402863, -1.4355127811431885, 0.4677242636680603, 0.6115524768829346, -1.2107629776000977, -0.096976637840271, -0.9685742259025574, 0.4358556270599365, 0.3474055528640747, -0.19491538405418396, 0.21049615740776062, 0.24850930273532867, -1.1457931995391846, -1.664038062095642, -0.41624411940574646, 0.3180754780769348, 0.30871501564979553, 0.5839003324508667, -1.2683780193328857, 0.6538584232330322, -0.21209216117858887, -0.774734616279602, -0.16652819514274597, -0.14857348799705505, -0.686156153678894, -0.5721288323402405, -0.03256164863705635, -0.24916917085647583, 0.2967435121536255, 0.5114642381668091, 0.4458787143230438, 0.5801759958267212, 0.4593278169631958, 0.8726897239685059, -1.2810883522033691, -0.3459450602531433, -0.4584375321865082, 0.33994394540786743, -1.1488399505615234, -0.4060375690460205, -0.3109120726585388, -0.5387836694717407, -0.3085327744483948, 0.7242035865783691, 0.3827250003814697, -0.8671679496765137, -0.10582392662763596, 0.23017549514770508, -0.49030035734176636, -0.5709264874458313, 0.7517927885055542, 0.193227156996727, -1.763897180557251, 0.20066452026367188, 0.2543390393257141, 0.3801332116127014, -0.8077346086502075, -0.19450464844703674, -0.6466151475906372, 0.5592398047447205, 0.14638200402259827, 0.909132719039917, 0.2205626368522644, 0.4843141436576843, -0.9708303213119507, 1.062524437904358, 0.39172542095184326, 0.6860076189041138, -0.1557941436767578, 0.12749359011650085, -0.7263664603233337, 0.07595659047365189, -0.09400331974029541, 0.38843628764152527, -0.43714237213134766, 0.4772571921348572, 0.3740270435810089, 0.11846955865621567, -0.06565359234809875, 0.2757611572742462, 0.3180529475212097, 0.30134886503219604, 1.1725621223449707, -0.23495081067085266, -0.46886464953422546, 0.9077728986740112, 0.7650104761123657, -0.539999783039093, 0.0865681916475296, 0.15995436906814575, 0.2931673526763916, -0.14955642819404602, 0.10031243413686752, 0.19093066453933716, -0.45688819885253906, -0.044819675385951996, 0.6634995937347412, -0.44018590450286865, 0.027487505227327347, -0.8371676206588745, -1.6634535789489746, 0.2060888409614563, -0.36305999755859375, 0.2733883261680603, 0.8881661891937256, -0.7820475101470947, -0.1702694296836853, -0.6630890369415283, 0.3582828640937805, 0.12077340483665466, -1.0721865892410278, 0.608366072177887, 0.0998215526342392, -0.3702477812767029, -0.1279277801513672, -0.47879379987716675, 1.1295924186706543, -0.3662370443344116, 0.043314047157764435, -0.31110939383506775, 0.2599954903125763, 0.2987222671508789, 0.2030002772808075, 0.1916494518518448, -0.5085486769676208, -0.19988512992858887, -0.6774188280105591, -0.20637738704681396, 0.1909770965576172, 1.1630628108978271, -0.3309635519981384, -0.02544458582997322, -0.8699451684951782, -0.08878341317176819, 0.7580106854438782, 0.24058598279953003, -0.8054159879684448, -0.2713873088359833, 0.047294095158576965, 0.6264299154281616, -0.6764236688613892, 0.7907983660697937, -0.543893039226532, 0.684739887714386, 0.03565853834152222, -0.11191415786743164, -0.42056602239608765, -0.3966790437698364, 0.8080539703369141, -0.33612072467803955, 0.37797799706459045, -0.598048746585846, -0.3959461450576782, -0.2579761743545532, -0.9390881061553955, -0.24000877141952515, -0.19368046522140503, -0.5634862184524536, 0.4938449263572693, -1.2460482120513916, -0.7701342701911926, -0.3562072217464447, -0.3358110785484314, -0.12491467595100403, -0.6309749484062195, -0.4807397127151489, -0.11298936605453491, -0.969356894493103, 0.8233470916748047, 0.6204996109008789, 0.24276065826416016, 0.5169926881790161, 0.985824465751648, 1.7662012577056885, 0.45996344089508057, -0.4410243034362793, -0.03032839670777321, 0.7596200704574585, -1.0449469089508057, -0.30309000611305237, -0.3631609082221985, 0.03726619854569435, -0.3700915575027466], [0.9477852582931519, 1.079688549041748, -1.4595613479614258, -1.2386667728424072, -0.32584211230278015, -0.20128099620342255, 0.8490021228790283, 0.5778640508651733, -0.14243924617767334, -1.6150861978530884, -1.597521424293518, 0.23218876123428345, 0.03558065742254257, 1.0864781141281128, 1.2790803909301758, 0.7936580777168274, 0.9627972841262817, -0.258148193359375, 0.372501939535141, 0.9519468545913696, 0.7670096755027771, -0.3965272605419159, 0.12999212741851807, -0.6016992926597595, 0.8159844279289246, 0.7338755130767822, -1.125146746635437, -0.2071416676044464, -1.2245314121246338, -0.921791672706604, 1.1895802021026611, 0.25719526410102844, 0.00999982375651598, -0.460231751203537, -1.6547726392745972, -0.45363402366638184, 1.310556173324585, 0.39534062147140503, -0.18443326652050018, 1.492158055305481, 1.4797258377075195, 0.4817458987236023, 0.47090771794319153, -1.2688872814178467, 0.2888059914112091, -0.02510586939752102, 0.5179056525230408, 0.01460434589534998, -0.4510017931461334, -1.5297791957855225, 0.5842390060424805, -0.45981380343437195, -0.6104798913002014, 0.9241690635681152, 1.0081186294555664, -0.5052444338798523, 0.14053016901016235, 0.7267609238624573, -0.29248544573783875, 0.5091347098350525, 0.9999474883079529, 0.4471150040626526, -0.6729046702384949, 0.2633502185344696, -0.18636633455753326, -0.10375813394784927, 0.19242577254772186, 0.575516402721405, -0.9862146377563477, 0.02047819085419178, -0.0592690072953701, 0.9238603115081787, -0.5368038415908813, 0.7605153322219849, -1.5809837579727173, -0.005311986431479454, 0.16590002179145813, 0.42153751850128174, 0.23311875760555267, 1.3254114389419556, -0.7357535362243652, -0.3520297110080719, -0.3196246922016144, -0.40516817569732666, 0.5459195375442505, 0.05020667240023613, 0.43975841999053955, -0.20628561079502106, -0.30409932136535645, 1.2459017038345337, -0.3669640123844147, 0.09815721213817596, 0.24119965732097626, -0.33344507217407227, -1.4635001420974731, -0.772419810295105, 0.2507951557636261, -0.5148624777793884, -0.5567689538002014, -0.8317113518714905, -0.4000674784183502, -0.9981921315193176, 1.1414076089859009, 1.129356861114502, 1.168272614479065, 1.8448004722595215, 0.6641336679458618, -1.4235607385635376, -0.7003311514854431, 0.3074815273284912, 0.42502278089523315, 0.9203801155090332, -0.6331733465194702, -1.3308117389678955, -0.24938781559467316, 0.7904008626937866, 0.6158655285835266, -0.7776223421096802, 1.0542258024215698, 1.1216771602630615, -0.7974596619606018, -0.5419742465019226, -0.8545941710472107, 0.6133824586868286, 1.4937856197357178, 0.11576177179813385, -0.6091732382774353, -0.041531916707754135, -0.25688114762306213, 0.0018651848658919334, 0.4513450264930725, -0.3833646774291992, -0.30643430352211, 0.7389364838600159, -0.2942938804626465, 1.0909521579742432, -0.3439757525920868, -0.8467685580253601, 0.7045785784721375, -0.13314926624298096, 0.3569629490375519, 0.0012291520833969116, -0.3261519968509674, -0.6613682508468628, 0.638010561466217, -0.7175014615058899, -0.02624335139989853, -0.3202807903289795, -0.7210361361503601, 0.31672507524490356, -1.3339215517044067, 0.07172676175832748, -0.04531910642981529, 1.4154579639434814, 0.131662517786026, 0.5882744789123535, 0.27783164381980896, 0.35823968052864075, -0.3177991211414337, 0.23561489582061768, 0.6033204197883606, 0.10447254776954651, -1.51560378074646, 1.1207547187805176, 0.3459574282169342, -0.4141674339771271, 0.7284725904464722, 0.7198094129562378, -0.372951477766037, 0.5713462829589844, -0.6445046067237854, -0.2724829614162445, -0.7554962635040283, 0.16781653463840485, -0.35842519998550415, -0.12459903210401535, 0.7873581051826477, -1.1704152822494507, -0.5205518007278442, -0.32169225811958313, 0.1669437289237976, -0.13332675397396088, 0.1092960461974144, -0.507477879524231, 0.6213277578353882, -0.5537348985671997, -0.6959259510040283, -0.6250086426734924, -0.09534107148647308, -0.279589980840683, -0.9977134466171265, 0.12125365436077118, -0.6320139765739441, 0.556229293346405, -0.3803100883960724, -1.6209626197814941, 0.21041284501552582, -0.6061681509017944, -0.6683065891265869, -0.22690173983573914, -0.31510141491889954, -0.4067170321941376, -1.0410813093185425, -0.2811107933521271, -1.12652587890625, 0.515489935874939, -0.7173571586608887, -0.28830835223197937, -1.3054852485656738, -0.05155254155397415, 0.8301775455474854, 0.022853251546621323, -0.7330101132392883, 1.1733622550964355, 0.5016756653785706, -0.5495136380195618, -0.1728687584400177, 0.12423597276210785, 0.09070565551519394, 0.305289089679718, 0.33636757731437683, -0.14590515196323395, 0.8815129995346069, 0.10619766265153885, 0.47088077664375305, 0.031871017068624496, -1.485890507698059, -0.13821928203105927, -0.911835253238678, -0.3638170659542084, -0.6939122676849365, -0.6047923564910889, 0.8955554366111755, 1.08303964138031, -1.3007628917694092, 1.006493091583252, -0.4899764060974121, 0.16754136979579926, 0.3470054268836975, 0.5193619132041931, 0.43965208530426025, 0.5387262105941772, -0.5647603273391724, 0.1365220993757248, -0.4176199436187744, 0.3644300103187561, 0.9096097350120544, -0.5637599229812622, -0.38805606961250305, 1.3567627668380737, -0.2313847839832306, -0.4094294309616089, 0.6751284599304199, -0.30286896228790283, 0.23929744958877563, -0.603875458240509, 0.18587978184223175, -0.461246132850647, -0.3078586459159851, 1.655214548110962, 0.024435317143797874, -1.3400081396102905, -0.2568844258785248, -0.5998146533966064, -0.09694837778806686, -0.6964589357376099, 0.30530238151550293, -0.05085369572043419, 0.5400192737579346, 0.2899268567562103, -0.25739333033561707, -0.41405126452445984, -0.12352946400642395, 1.0669561624526978, 0.1704350858926773, -0.2837277948856354, -0.7381231784820557, 0.5092437267303467, 0.13134482502937317, 0.4962688684463501, 0.05855421721935272, -1.8383616209030151, -0.5674553513526917, -0.33330264687538147, 0.5641853213310242, -0.30102744698524475, -0.8599077463150024, 0.2001563310623169, 0.4890984296798706, -0.6879605650901794, 0.5451614856719971, -0.13071320950984955, -0.9239628911018372, 0.2991470694541931, 0.2557458281517029, -0.6352624297142029, 0.4464682936668396, -0.17323100566864014, -0.9344847798347473, -0.10610567033290863, 0.27632904052734375, 1.0429279804229736, 0.6097506284713745, 0.8877009153366089, 0.12638498842716217, -0.2867199778556824, -0.03244774788618088, 0.05843643099069595, -0.23441120982170105, 0.2149379402399063, -0.3198181688785553, -0.38089945912361145, 0.023983370512723923, -0.5240033864974976, 0.11244867742061615, 0.7784721851348877, 0.25111037492752075, 0.8990999460220337, 0.48567259311676025, 0.3972434103488922, -0.556917667388916, -0.8452935218811035, 0.22351756691932678, -1.0319304466247559, -0.10233799368143082, 0.9868184924125671, -0.9646607637405396, 0.0020682583563029766, 0.2969142198562622, -0.41838204860687256, 0.27633237838745117, -0.6869748830795288, 0.5681002140045166, -0.6937069296836853, 0.28273800015449524, 0.4413009583950043, 1.2464118003845215, -0.11836003512144089, -0.33934730291366577, -0.8232027888298035, 0.8058381676673889, 0.23678971827030182, 0.08012058585882187, -0.496500164270401, 0.6003789901733398, -0.34169718623161316, -0.5941330194473267, -0.2835433781147003, 0.10009998083114624, 1.5265570878982544, 0.14680294692516327, -0.04209420830011368, -0.4779934287071228, 0.18004335463047028, -0.5478806495666504, 0.723042905330658, -0.14967601001262665, 1.4911545515060425, 0.337980180978775, 0.35073766112327576, 0.5839889049530029, -0.36461371183395386, 0.4015340805053711, -0.9092062711715698, 0.4885573983192444, 0.31921055912971497, 1.5606814622879028, 0.8503563404083252, -0.16962529718875885, 0.29068872332572937, -0.04040026664733887, -0.26769858598709106, 0.14386242628097534, 0.4679739475250244, -0.13377031683921814, -0.44254815578460693, -0.5399746298789978, 0.7526989579200745, -0.018784845247864723, -0.5718944668769836, -0.01760358177125454, 0.40859273076057434, 0.222865492105484, -0.570222020149231, 1.1725128889083862, -0.021743163466453552, 0.2588129937648773, -0.12182056158781052, -0.6711813807487488, 0.05432339757680893, -0.10142174363136292, -0.4904147684574127, -0.05576033517718315, 0.23695920407772064, 0.15478068590164185, -0.10800578445196152, -0.5567638278007507, 0.21946732699871063, 0.40876761078834534, 0.45305219292640686, -1.1443053483963013, -0.06035608425736427, 0.254732608795166, 0.116858571767807, 0.27882862091064453, 0.22857974469661713, 0.19572298228740692, 0.48004087805747986, -0.7086436748504639, 0.29499614238739014, 0.6639848351478577, 0.9553920030593872, -0.04321959614753723, 0.359296053647995, -0.5630204081535339, -0.29869627952575684, 0.37827059626579285, 0.033832281827926636, -0.5202877521514893, 0.07841689884662628, -0.715099573135376, 0.14174321293830872, 0.5890220403671265, -0.5401875972747803, 1.4003583192825317, -0.1623615026473999, 0.2828696072101593, 0.7981335520744324, -0.0778389722108841, -1.595787763595581, 0.20323407649993896, 0.17207513749599457, 0.13127629458904266, -0.16213983297348022, 0.42938339710235596, -0.16953834891319275, 0.3404008746147156, 0.47402822971343994, -0.053667496889829636, 0.6403346657752991, -0.13437792658805847, -0.47612008452415466, 0.06884798407554626, 0.7694358229637146, 0.7868460416793823, 0.8490781188011169, 1.2035778760910034, -0.6055784821510315, -1.1288235187530518, 1.2844927310943604, 0.2635805904865265, 1.146046757698059, 0.27759963274002075, 0.39843958616256714, 1.85221529006958, -0.9755811095237732, -0.2916281223297119, 0.3546069860458374, -0.42218342423439026, -0.5463458299636841, 0.6708208918571472, -0.0046092672273516655, -0.7241060137748718, -0.48362666368484497, 0.09328372031450272, -0.17021216452121735, 0.629985511302948, -0.08983369916677475, -0.12671853601932526, 0.603511393070221, -0.7464127540588379, -0.29310503602027893, -1.1304972171783447, 0.11728163808584213, 0.776236891746521, 0.07278591394424438, 0.11322696506977081, 0.8459293842315674, 0.6152268052101135, 1.2556744813919067, -0.45577695965766907, -2.070871591567993, 0.1250447779893875, -0.8274497985839844, 0.3993794023990631, -0.07381226867437363, -0.5909265875816345, -0.5976082682609558, -0.30755698680877686, 0.32985901832580566, -0.11779390275478363, -0.4352511465549469, -0.2144751101732254, 0.2720663249492645, -1.1699448823928833, 0.5258803963661194, -0.38633692264556885, 0.9928069114685059, 1.0307260751724243, 0.49835219979286194, -0.06485716998577118, 0.41321128606796265, -0.6172237992286682, 0.2943213880062103, -0.017109137028455734, -0.17956796288490295, 0.22137655317783356, -1.0190629959106445, -1.0693732500076294, 0.8993561863899231, 1.2211312055587769, 0.6557366847991943, 0.35675424337387085, 1.2493374347686768, 1.6456607580184937, -0.811186671257019, -0.48345082998275757, 0.3278365731239319, -0.626002311706543, 0.2122770994901657, -0.08537903428077698, -0.8763052225112915, -0.3335593640804291, 0.02387813664972782, -2.1232805252075195, 0.7972862124443054, 0.193034827709198, -0.6050485372543335, 0.21452604234218597, 0.5278292298316956, 0.8296419978141785, 0.77960604429245, -1.0212955474853516, -0.32301831245422363, 0.93083655834198, -0.7726626992225647, -1.1196726560592651, 0.6392509937286377, 0.28357166051864624, 0.8227710723876953, -0.3956387937068939, -0.38564714789390564, -0.3998662233352661, -0.15406794846057892, -0.21133190393447876, 0.11496998369693756, 1.3658281564712524, 0.7142276763916016, 0.5523536801338196, -1.3484536409378052, 0.37294450402259827, -0.23511335253715515, 1.0453497171401978, -0.25040575861930847, 1.3359524011611938, 0.6519157290458679, -0.0991753339767456, 0.16544656455516815, -0.32320815324783325, -1.0453888177871704, -0.5621708631515503, -0.7820272445678711, 0.9892421960830688, 0.7790927290916443, -0.18972259759902954, -0.12238480895757675, -0.39320501685142517, -0.053520698100328445, -0.030188411474227905, 0.2811641991138458, 0.5931476354598999, -1.056867003440857, -0.44763392210006714, 0.355058878660202, 0.2667497992515564, -0.05130196362733841, 0.7849457859992981, -0.14667284488677979, -0.6920680403709412, -1.3239399194717407, -0.40828433632850647, 0.1339103877544403, 0.6225118041038513, -0.39170512557029724, -0.021159883588552475, 0.1083545908331871, -1.924118995666504, 0.8129803538322449, -0.05557061359286308, -1.0132571458816528, -0.6318525075912476, -0.836906373500824, 1.2672054767608643, 0.7930297255516052, -0.3440117835998535, 0.4230395555496216, 0.3913167119026184, -0.8427724242210388, -0.1943359076976776, -1.4781715869903564, 0.10291692614555359, 0.22588638961315155, 1.2260268926620483, -0.5611780881881714, 0.380404531955719, -0.29395782947540283, -0.6001120805740356, -0.2048531174659729, -0.5247568488121033, -0.5535951852798462, 0.6343539953231812, 0.5176137685775757, 0.18049290776252747, 0.6659931540489197, 0.7486194968223572, 0.24053825438022614, 0.6830815076828003, -0.04050077870488167, 0.6090198755264282, -1.098781704902649, -0.5312203764915466, -0.5139312744140625, 0.23931509256362915, -0.8984869718551636, -0.8473355770111084, 0.10550101101398468, -0.48161745071411133, -0.8149431943893433, 0.6425657868385315, 0.7764503359794617, -0.41835081577301025, -0.3290398120880127, 0.3500162959098816, 0.03944075480103493, -1.2223687171936035, 0.941753625869751, 0.3422858715057373, -1.096305251121521, -0.3640361726284027, 0.2189064472913742, 0.107197105884552, -0.9987013339996338, -0.3106522560119629, -0.12770706415176392, -0.22363604605197906, -0.08406002819538116, 0.4085245728492737, 0.7024234533309937, 0.1416846364736557, -0.49400830268859863, 0.783930242061615, 1.275620937347412, 0.36799177527427673, 0.24400180578231812, 0.6625305414199829, -0.6779059767723083, 0.1565706580877304, 0.2753998041152954, -0.6561673283576965, -0.32668107748031616, 0.8662095665931702, -0.3656693398952484, -0.22510258853435516, -0.9188107848167419, 0.3243343234062195, -0.17265570163726807, -0.21404051780700684, 0.9067435264587402, 0.1527201235294342, -1.1154860258102417, 0.23599493503570557, 0.5549913644790649, -0.3113149106502533, 0.28798559308052063, 0.3369286060333252, 0.7026350498199463, 0.31502217054367065, 0.04871584475040436, 0.47650328278541565, -0.3272596001625061, 0.7949616312980652, 0.3234608471393585, -0.838925302028656, 0.0981895700097084, -0.9681620001792908, -1.9733129739761353, 0.061327047646045685, -0.08874193578958511, -0.8552324771881104, 0.30336907505989075, -1.1761001348495483, -0.1766965538263321, -0.7327426075935364, -0.43866103887557983, 0.1401074379682541, -1.3018463850021362, 0.30830666422843933, -0.1909337192773819, 0.3931412696838379, 1.2922714948654175, -0.16967609524726868, 0.8681868314743042, -0.044900041073560715, 0.04566986858844757, -0.0029867617413401604, 0.08638283610343933, -0.39785176515579224, 0.3676075339317322, -0.13050316274166107, -0.32229727506637573, -0.40448564291000366, -1.0289809703826904, -0.1498517543077469, 0.398771733045578, -0.10909808427095413, 0.24849960207939148, 0.4750511050224304, -1.1850563287734985, 0.11780884116888046, 0.6637563109397888, 0.7002655267715454, -0.2594855725765228, -0.15576307475566864, -0.258654922246933, 0.5391717553138733, 0.30449187755584717, 1.4741883277893066, -0.5884848237037659, 1.1477152109146118, 0.42256635427474976, 0.20446759462356567, -0.8793855309486389, 0.2015637308359146, 1.0038467645645142, -0.3526609241962433, 0.25567033886909485, -0.6482823491096497, -0.32846665382385254, -0.12362869828939438, -0.464935302734375, -0.021452130749821663, -0.1193297803401947, -1.3921781778335571, 0.05894986167550087, -0.019871026277542114, -1.1935940980911255, -0.302516371011734, -0.4467175006866455, -0.07660675793886185, -0.42313894629478455, 0.6079434156417847, -0.34068241715431213, -0.8162238597869873, 0.7501230835914612, 0.04582643508911133, -0.23462630808353424, 0.31003159284591675, 1.526546835899353, 1.5178972482681274, 0.6839640140533447, -0.4113892614841461, -0.1139773279428482, 0.8352926969528198, -0.9711301326751709, -0.44743964076042175, -0.463695764541626, 0.018752850592136383, 0.04541809856891632], [0.762101411819458, 1.8274277448654175, -2.4056239128112793, -0.01657646894454956, -0.3720317780971527, 0.024778958410024643, 0.8319790363311768, 1.104480266571045, 0.5386694669723511, 0.19837793707847595, -1.3918471336364746, 0.09573298692703247, 0.7723987102508545, 0.3396211266517639, 0.3666367530822754, 0.7713583707809448, 0.5268691182136536, 0.7146393060684204, 0.2351725846529007, 0.3470538556575775, -0.987112283706665, -0.6265119314193726, -0.07285456359386444, -0.06309771537780762, 0.5276895761489868, 0.4947044849395752, -1.6127886772155762, -0.12149167060852051, -1.814675211906433, -0.40993645787239075, 0.08607395738363266, -1.0237996578216553, 0.7109869122505188, -0.40427693724632263, -1.2458415031433105, 0.4145132005214691, 1.8584377765655518, 0.44663259387016296, 0.45870107412338257, 0.10531150549650192, 1.829325795173645, -0.2301410734653473, -0.9581325054168701, -0.6343995332717896, 0.5033820867538452, 0.3487538695335388, 0.6116007566452026, -1.4270644187927246, 0.006092049181461334, 0.04572930186986923, 0.3864870071411133, 0.6066898107528687, 0.0694044977426529, 1.8529895544052124, 1.3884193897247314, -0.9592874050140381, -0.4549926817417145, 0.04991737753152847, 0.870720386505127, 0.411157488822937, 1.4355792999267578, 0.12320659309625626, 0.1331380009651184, 1.121838092803955, 0.8133099675178528, -0.23518285155296326, 0.873245358467102, 0.5739808082580566, -0.02938007563352585, -0.4567452073097229, 0.24612891674041748, 0.339080274105072, -1.1542487144470215, -0.18186546862125397, -0.9316514730453491, 0.2686501443386078, 0.37723278999328613, 0.9578575491905212, -0.6552020311355591, 0.890354573726654, -1.0182812213897705, -0.030501235276460648, -0.12902387976646423, 0.025941476225852966, 0.3825158476829529, 0.31256935000419617, 1.018174171447754, -0.546427845954895, -0.09556572884321213, 1.5197079181671143, -0.12752285599708557, 0.8047555685043335, 0.44623643159866333, 1.0422039031982422, -0.13372765481472015, -0.39703941345214844, 0.031620752066373825, -0.47131121158599854, -0.4241124391555786, -1.1615203619003296, -0.27428901195526123, -0.7950805425643921, 0.2845209836959839, 0.643740177154541, 1.5706629753112793, 0.9852830171585083, 0.13231369853019714, -1.1691570281982422, -0.20006750524044037, 0.05602358281612396, 0.0031491145491600037, 0.2195400595664978, -0.08141674101352692, -1.5165003538131714, -0.7056926488876343, 0.7908901572227478, 0.5921682119369507, -0.4578353762626648, -0.15137214958667755, 0.7609503269195557, -1.2553014755249023, 0.5838127136230469, 0.19874592125415802, 0.5990109443664551, -0.14510560035705566, 0.8062642216682434, 0.08655266463756561, 0.16726934909820557, 0.8097652196884155, 0.7957988977432251, 0.7229299545288086, -0.22357048094272614, -0.5346086025238037, 1.124468445777893, -0.8998372554779053, 1.606290578842163, -0.4149666130542755, -1.3303346633911133, -0.9246233105659485, 0.2778469920158386, 1.0226588249206543, -0.8046907782554626, -0.2887651026248932, -0.18183746933937073, -0.7292255759239197, -0.7712135910987854, 0.24903038144111633, -0.3971962332725525, -0.8232054114341736, 0.1730469912290573, -1.4278099536895752, 0.6227583885192871, -0.3400219976902008, 1.4348658323287964, 0.48268604278564453, 0.11620976030826569, 1.0227859020233154, -0.16356581449508667, 0.16701024770736694, 0.5349975824356079, 0.057623352855443954, -0.5203562378883362, -0.3915148973464966, 0.7818917036056519, 0.20188255608081818, -0.4125819802284241, -0.01348620280623436, 0.272935152053833, -0.10124144703149796, 1.253814697265625, -0.553770899772644, -0.3168622851371765, -0.49876517057418823, -0.11354079097509384, 0.2751161456108093, -0.5475406646728516, 0.1435067355632782, -0.4269710183143616, -1.0699135065078735, -1.0364668369293213, 1.233769178390503, -0.297183632850647, 1.0588210821151733, 0.2831735908985138, 0.9072046279907227, 0.5655326843261719, -0.6142265200614929, -0.12145187705755234, -0.27551913261413574, -0.6750127077102661, -0.6453620791435242, -0.31599438190460205, -0.6508058309555054, 0.057190969586372375, -0.6971714496612549, -0.3893274664878845, 0.7430187463760376, -0.496425986289978, -0.805662989616394, 0.14792248606681824, 0.1996818333864212, -0.19343259930610657, -1.1194250583648682, -0.43873438239097595, 0.6656457781791687, 1.3174397945404053, -1.4812806844711304, -0.018919821828603745, -0.7307933568954468, 0.7893792986869812, 1.1266847848892212, -0.35614076256752014, -0.835915744304657, 0.6651085615158081, 0.3987995386123657, -0.8818761706352234, 0.23266810178756714, -0.5675883293151855, 0.6675239205360413, -0.10954621434211731, 0.1740604043006897, 0.26183822751045227, 1.044028878211975, 0.623559296131134, 0.7369357347488403, -0.14568638801574707, -0.8799045085906982, -0.8083065152168274, -0.9754167795181274, -0.15615148842334747, -0.7795140743255615, -1.1593247652053833, 0.7060129642486572, 0.5812996625900269, -0.45314306020736694, 0.9340915679931641, 0.6577383875846863, 0.32112646102905273, 0.04399195313453674, 0.6350042223930359, 0.18211987614631653, 0.1929585039615631, -0.5521471500396729, -1.3567211627960205, -0.47024673223495483, 0.4441385865211487, 0.5377267003059387, -0.5915603637695312, 0.02901267632842064, 0.9603269100189209, 1.3474726676940918, 0.392147958278656, 1.3131003379821777, 0.7751193046569824, -0.5612889528274536, -0.8877605199813843, -0.2462906837463379, 0.3327942192554474, -0.46659237146377563, 1.5848546028137207, 1.170198917388916, -0.7122663855552673, -0.47576195001602173, 0.13703802227973938, -0.2707923352718353, -0.0615973062813282, 0.6206033229827881, -0.9678013920783997, 0.31654036045074463, 0.4169330596923828, 0.8267293572425842, 1.1491115093231201, -0.21842992305755615, 0.4950914978981018, -0.13963103294372559, -0.7465086579322815, -0.10345843434333801, 0.2747856378555298, -0.21997563540935516, 1.1774147748947144, 0.3619729280471802, -0.9261259436607361, -0.6345100998878479, -0.21880173683166504, 0.555034875869751, -0.146389901638031, -0.01679064705967903, 1.1563620567321777, 0.7298684120178223, 0.08817266672849655, -0.11584839969873428, 1.0261034965515137, -0.24605657160282135, -0.12130404263734818, 0.0004920102655887604, 0.21069282293319702, 0.5895137190818787, -0.701583206653595, -0.8639422059059143, 0.27573662996292114, 0.14446212351322174, 0.9829643368721008, 1.484283447265625, 1.6368813514709473, -1.0930052995681763, -0.14129428565502167, -0.4015581011772156, -0.6236386299133301, -0.8180240392684937, -0.08511653542518616, -0.1727038472890854, -0.9210790991783142, 0.24439913034439087, -0.6818745136260986, -0.2837531864643097, -0.07751843333244324, 0.5159282088279724, -0.31964725255966187, 1.4323549270629883, -0.06106002256274223, 0.36514267325401306, -0.11114057153463364, -0.3368188440799713, -1.5553348064422607, 0.4284117519855499, 0.7838473320007324, -2.1782889366149902, -0.7837530970573425, -0.22097183763980865, 0.07988578081130981, 0.07287532091140747, -0.1459171026945114, 0.47815942764282227, -1.0405571460723877, -0.7543790340423584, 0.14530198276042938, 1.1916160583496094, 0.30926433205604553, -0.32449859380722046, -0.7492880821228027, -0.08231380581855774, 0.08940233290195465, 0.04797956347465515, -0.8470120429992676, -0.009184155613183975, -0.2828281819820404, -0.41575461626052856, -0.6413029432296753, 0.4577629268169403, 0.9095066785812378, -0.9064154028892517, -0.42200952768325806, 0.5011296272277832, -0.2281360626220703, -0.6948400735855103, 0.5811464786529541, -0.2811795175075531, 0.968384325504303, 0.06794463098049164, 0.3492083251476288, 1.2552212476730347, -1.0596890449523926, -0.18058447539806366, -0.9788059592247009, 0.4208204746246338, 0.477111279964447, 2.1380372047424316, -0.34422022104263306, 0.36666274070739746, 0.2922605872154236, -0.5161432027816772, -0.07625904679298401, -0.3337750732898712, 0.7322386503219604, 0.24448052048683167, -0.2049981653690338, -0.17565907537937164, -1.3360084295272827, -0.38754409551620483, -0.8815701603889465, -0.12519264221191406, 0.10466001182794571, 0.6189459562301636, 0.39287465810775757, 0.4438934028148651, 0.6651009917259216, -0.7556310296058655, -0.1770780384540558, -0.16087430715560913, 0.03292255103588104, -0.38012751936912537, -0.2193162441253662, 0.17605990171432495, -0.13058973848819733, 0.39862361550331116, -0.9759349822998047, 0.5905098915100098, 0.48547422885894775, -0.23430532217025757, 1.0126465559005737, -1.2682554721832275, 0.023569822311401367, -0.9739122986793518, 0.10155080258846283, 0.5736994743347168, 0.15863420069217682, -0.34898024797439575, 0.20674371719360352, -0.4186015725135803, -0.3605119287967682, -0.6611683964729309, 1.1929419040679932, 0.23019328713417053, -0.25760316848754883, -0.9273003339767456, 0.39329439401626587, 0.7445461750030518, -0.8636776208877563, 0.07354776561260223, -0.07775913178920746, -0.42821305990219116, -0.12529587745666504, 0.2717592418193817, 0.3001350164413452, 1.728942632675171, 0.5012048482894897, 0.16472773253917694, 0.5982552766799927, -0.42185890674591064, -0.553373396396637, 0.009612701833248138, 0.8354765176773071, -0.5221210718154907, -0.10865742713212967, 0.16984418034553528, 0.39417916536331177, -0.43411362171173096, 0.17423740029335022, -0.07176376134157181, -0.0189657062292099, 0.17061148583889008, -0.2800813615322113, 0.2757706642150879, 0.475130558013916, 1.4917306900024414, -0.4597383737564087, 0.725100040435791, 0.06676002591848373, -0.5343332290649414, 0.5776636600494385, -0.840045154094696, 0.09237934648990631, 0.9137173891067505, 0.05715616047382355, 1.2259912490844727, -1.6394257545471191, -0.6447188258171082, 1.026118516921997, 1.1289228200912476, -0.007079429924488068, 0.5831974744796753, 0.9679818749427795, -0.5106897354125977, 0.4840030074119568, 0.37298503518104553, -0.5871356725692749, 0.8259764909744263, -0.20393474400043488, -0.14737068116664886, 0.1834786832332611, -0.17608994245529175, 0.2943217158317566, -1.1230101585388184, -0.7041009664535522, 0.8900028467178345, -0.6154484152793884, -0.06885173916816711, 0.19714899361133575, -0.1735183298587799, 0.9115549325942993, -0.25181522965431213, -1.5700287818908691, 0.21414873003959656, -0.56802898645401, -0.12174274772405624, -0.36274245381355286, -0.6204555034637451, -0.6697462797164917, -0.2107320874929428, -0.887438178062439, -0.6900818943977356, -1.3639768362045288, -0.14766521751880646, 0.07500597834587097, -1.1544702053070068, 0.0008186474442481995, 0.5091666579246521, 0.6437415480613708, 0.6127727031707764, 0.09272850304841995, -0.2839384078979492, 0.3783283233642578, -0.4739361107349396, 0.0646352469921112, 1.00138258934021, -0.05651375651359558, -0.5386796593666077, -0.1387937217950821, -1.0110211372375488, 1.9719613790512085, -0.0500873401761055, -0.12402172386646271, 0.20685669779777527, 0.7164819240570068, 1.4370120763778687, -0.38036543130874634, -0.4615187346935272, 0.915004312992096, -0.469022274017334, 1.328183889389038, 1.1189509630203247, -0.6002329587936401, -0.6892812252044678, -0.4183503985404968, -1.324220061302185, 1.456129789352417, 0.02406376600265503, -0.3374815583229065, 0.9174772500991821, 0.6117684245109558, -0.054302286356687546, 0.34806644916534424, -0.35289132595062256, -0.10589548200368881, 0.2574504017829895, 0.21485966444015503, -0.8428534269332886, 0.11444001644849777, 0.5326775908470154, 0.11563003063201904, -0.4203419089317322, 0.17608679831027985, 0.105682872235775, 0.10976450890302658, -0.7195164561271667, 0.25607678294181824, -0.4644920229911804, -0.022034987807273865, 0.2587535083293915, -0.123850978910923, -0.32707029581069946, -0.24961577355861664, -0.21963293850421906, -0.09058093279600143, 0.4571494460105896, 0.4230044484138489, -0.3323912024497986, 0.16657495498657227, -0.43468064069747925, -0.3012220859527588, -0.038484930992126465, -0.23349356651306152, 1.554710030555725, 0.5382276773452759, -0.3447449803352356, -0.36002346873283386, 0.03444096818566322, -0.5661222338676453, -0.6696724891662598, -0.37277835607528687, 0.21138504147529602, -1.0472261905670166, -0.48714888095855713, -0.26291805505752563, -0.31156039237976074, 0.3840823769569397, -0.15024706721305847, -0.048603709787130356, -0.5180923938751221, -1.0900695323944092, -0.7817627191543579, 0.5081498622894287, 0.1680099070072174, -0.7181854844093323, 0.3310077488422394, 0.059989288449287415, -1.502806305885315, 0.23789647221565247, 0.3181033134460449, -1.4538650512695312, 0.12966220080852509, -1.19956374168396, -0.3603562116622925, -0.23508432507514954, -0.024564821273088455, -1.1185874938964844, 0.7036104202270508, -1.1661502122879028, -1.7242696285247803, -0.7365450859069824, 0.3091743588447571, 1.1838581562042236, 0.7822120785713196, -1.4552749395370483, 1.4867992401123047, -0.588632345199585, -0.642096996307373, -0.5065166354179382, 0.012208599597215652, -0.2715626358985901, -0.298423707485199, 0.26182180643081665, -0.3082523047924042, 0.8914090394973755, 0.9160417914390564, 0.7041507959365845, 0.9656260013580322, 0.3784191906452179, 0.8849025368690491, -1.27680242061615, -0.4852699935436249, 0.06284119188785553, -0.04111041501164436, -1.1925089359283447, 0.19953782856464386, -0.3810656666755676, -0.3626566529273987, -0.8508110046386719, 1.2282211780548096, 0.315395325422287, -1.0907044410705566, 0.31210407614707947, -0.6246778964996338, 0.15470489859580994, -0.5131792426109314, 0.4759027659893036, 0.1547955870628357, -0.6186058521270752, 0.5924944281578064, 0.6299099922180176, -0.00015410780906677246, -0.334250807762146, 0.41950225830078125, -0.6750616431236267, 0.6405531167984009, -0.08769334852695465, 0.2725745439529419, -0.030734702944755554, 0.04259325563907623, -1.0507922172546387, 1.3377165794372559, 0.37077265977859497, 0.4682449400424957, 0.18629512190818787, -0.07982639223337173, -1.0220117568969727, 0.07561127841472626, -0.6015182733535767, 0.19293469190597534, -0.8646039366722107, 0.782347559928894, 0.4571463465690613, 0.22379854321479797, 0.23492766916751862, 0.730098307132721, -0.096644327044487, -0.0216834619641304, 0.8495962619781494, 0.3721695840358734, -0.8634331822395325, 1.3359906673431396, 1.2486352920532227, -0.7850334644317627, 0.5527004599571228, 0.18126721680164337, 0.18628254532814026, -0.44094759225845337, 0.3388088643550873, 0.5567024946212769, -0.4881722033023834, 0.6239312887191772, 0.5772297382354736, -0.6570819020271301, -0.11090242862701416, -0.4862772226333618, -2.0292446613311768, -0.2614094316959381, -0.4727657437324524, 0.7199041843414307, 0.6885002851486206, -0.5217081308364868, -0.2066464126110077, -0.6132776737213135, 0.17203360795974731, 0.22749945521354675, -0.6779252290725708, 0.1443449705839157, 0.06890026479959488, 0.7098323702812195, 0.5353447198867798, -0.7560495138168335, 0.5858542919158936, -0.4238188564777374, -0.8421434164047241, -0.49228888750076294, -0.0854080319404602, 1.1084208488464355, 0.5421751737594604, -0.30797821283340454, -0.05242873355746269, 0.4321105480194092, -1.2002179622650146, -1.0087180137634277, 0.07652956992387772, 0.8282773494720459, 0.43216001987457275, -0.2807505428791046, -0.7567939162254333, -0.04897915571928024, 0.7357950806617737, 0.31831490993499756, -0.7501158118247986, -0.4546671509742737, -1.1349163055419922, -0.1869489997625351, -0.2868664264678955, 0.6103302240371704, -0.8957734704017639, 0.6539777517318726, 0.23903410136699677, -0.486798495054245, -0.4667445421218872, -0.6470481157302856, 0.5751333236694336, 0.27806177735328674, 0.5340892672538757, -0.5631399154663086, -0.016833383589982986, 0.04070441424846649, -1.162530779838562, -0.8179304599761963, -0.13206130266189575, -0.33872532844543457, 0.4444003105163574, -1.0645880699157715, -0.5430161952972412, -0.722771406173706, -0.8222694396972656, 0.5473506450653076, 0.07553655654191971, -0.14178919792175293, -0.7364374399185181, -1.5279146432876587, 0.19877368211746216, 1.0510982275009155, 0.18583886325359344, 0.322974294424057, 1.020111083984375, 2.1853339672088623, 0.18893349170684814, -0.12032480537891388, 0.1200275719165802, 1.7268970012664795, -1.0526224374771118, 0.5361969470977783, -1.2670457363128662, 0.2542020082473755, -1.3056560754776], [-0.044416941702365875, 1.402078628540039, -2.1044273376464844, -0.5751803517341614, 0.937399685382843, 0.5377804636955261, 1.1635857820510864, -0.5951124429702759, -0.20127534866333008, -1.0722850561141968, -0.4094125032424927, -0.26667454838752747, 0.09839703142642975, 0.7631881833076477, 0.4673151969909668, 0.5306785106658936, 0.49050143361091614, -0.06190618872642517, 1.2788488864898682, 0.4677765667438507, -0.11954407393932343, -1.2324954271316528, 0.2534376382827759, -0.21570545434951782, -0.06821386516094208, 0.9183183312416077, -0.6897538900375366, -0.5990045666694641, -1.0413578748703003, -0.8887815475463867, 1.1081053018569946, -0.09156759828329086, -0.048293549567461014, -0.21083639562129974, -1.774829626083374, -0.7879432439804077, 1.2079535722732544, 0.6112561821937561, 0.20100431144237518, 0.67087721824646, 0.9761568903923035, 0.13960899412631989, 0.3890904188156128, -1.9786666631698608, 0.6392406225204468, -0.06167510151863098, 0.7141895294189453, -0.3255566954612732, 0.1653776317834854, -0.9034363031387329, 0.838537335395813, -0.8802545070648193, -0.059793438762426376, 1.2898439168930054, 1.1563773155212402, -0.9385828971862793, 0.13842163980007172, 0.703889012336731, 0.21646322309970856, 0.5371145009994507, 1.3306845426559448, -0.08250689506530762, 0.34213605523109436, 1.1351946592330933, 0.4447283446788788, -0.5871655344963074, 0.5824933052062988, 0.3825901448726654, -0.40209585428237915, 0.1529236137866974, 0.4195556640625, 0.3709208071231842, -0.4289121925830841, 0.4129824638366699, -1.1188958883285522, 0.5018109083175659, 0.015501728281378746, 0.9211567044258118, 0.007773702964186668, 0.9204725027084351, -1.415655493736267, 0.26863205432891846, 0.3584529757499695, -0.44087883830070496, -0.01630742847919464, 0.27709221839904785, 0.5186018943786621, -1.3774021863937378, 0.2641228437423706, 1.5119484663009644, 0.3732386827468872, -0.017975464463233948, 0.8525304198265076, -0.0610804557800293, -0.6695416569709778, -0.0656445324420929, 0.6111995577812195, -0.780052661895752, -0.4182969629764557, -0.7210943102836609, -0.3762964904308319, -0.5219188332557678, 0.37289711833000183, 0.7780442237854004, 0.7030501961708069, 1.4739928245544434, 0.8026324510574341, -0.6953709125518799, -0.7013683915138245, 0.5345568060874939, 0.4290313124656677, 0.9168300628662109, -0.7973065972328186, -1.8277637958526611, 0.07084958255290985, 1.0727769136428833, 1.1884177923202515, -0.23366156220436096, 0.7352898120880127, 0.5803743600845337, -0.6883097887039185, 0.020284513011574745, -0.07488586008548737, 0.15736153721809387, 0.9510090947151184, 0.22885742783546448, -1.2559577226638794, -0.3198770582675934, -0.5297157168388367, 0.05795867368578911, 0.051867250353097916, -0.7450546026229858, -0.4421796500682831, 1.0683461427688599, -0.3563646078109741, 1.3871995210647583, -0.5950978398323059, -0.42596572637557983, 0.16471128165721893, 0.23044627904891968, 0.3156585097312927, 0.13477765023708344, -0.4090591073036194, -0.01203947514295578, 0.028788354247808456, -0.804588258266449, -0.2644311487674713, 0.12513631582260132, -0.573696494102478, 0.6233339905738831, -1.5516018867492676, 0.34896114468574524, -0.6330293416976929, 1.2675631046295166, 0.5392600297927856, 0.30281195044517517, 0.613922655582428, -0.08545085787773132, 0.663864016532898, 0.3346075713634491, 0.7295199632644653, 0.2668069899082184, -1.3949730396270752, 0.4862120449542999, 0.3736444115638733, -0.7925489544868469, 0.6505952477455139, 0.7489773631095886, 0.24204151332378387, 0.4646972417831421, -0.6178117990493774, -0.19154228270053864, -0.2792834937572479, 0.30406874418258667, -0.048249635845422745, -0.6079807281494141, 0.8046802282333374, -0.10889249294996262, -1.3971679210662842, -1.7045847177505493, 0.5950488448143005, 0.013176130130887032, 0.04309837520122528, 0.3291095495223999, 0.8083045482635498, 0.26174986362457275, -0.4119787812232971, -0.015316197648644447, 0.016819478943943977, -1.0674653053283691, -0.7454851865768433, -0.4864177405834198, -0.8929452300071716, 0.4420503079891205, -0.49489906430244446, -0.5372951030731201, 0.45095619559288025, -0.13190028071403503, -0.08731527626514435, -0.09742825478315353, -0.8522457480430603, -0.9675421118736267, -1.144926905632019, 0.17437180876731873, -0.5184071660041809, 0.3083248734474182, -0.8491614460945129, 0.22992844879627228, -1.2479742765426636, 0.21547269821166992, 1.2807226181030273, 0.058582667261362076, -0.4344826936721802, 0.39499661326408386, -0.22967155277729034, -1.5037336349487305, 0.40812110900878906, 1.052208423614502, 0.0531281977891922, 0.31415504217147827, -0.18236325681209564, 0.2741188406944275, 0.8582251667976379, -0.4091895818710327, 1.0648363828659058, -0.3365202844142914, -1.0243147611618042, -0.5555379390716553, -0.5597243309020996, -0.3390186131000519, -1.1280755996704102, -1.3639311790466309, 0.05573968216776848, 0.49124717712402344, -1.9625942707061768, 0.23368535935878754, 0.6805025339126587, 0.5626250505447388, 0.6205450296401978, 1.6622130870819092, 0.6643199324607849, 0.9633110761642456, -0.7071590423583984, -0.11280830204486847, -0.7898626327514648, 0.025212008506059647, 0.6449944376945496, -0.9789050221443176, -0.16248762607574463, 0.8597478866577148, 0.6789675951004028, 0.1082460880279541, 1.0387721061706543, -0.7720965147018433, -0.31927213072776794, -0.605482816696167, -0.006399938836693764, -0.2712418735027313, 0.13777852058410645, 1.3605409860610962, 0.13134025037288666, -0.8385430574417114, 0.28443601727485657, -0.6256663799285889, 0.6213763952255249, -0.3827158212661743, 0.07805140316486359, 0.7872428297996521, 0.4928026795387268, 0.275836706161499, -0.06286284327507019, -0.37795403599739075, -0.49480947852134705, 1.246436595916748, -0.07226847857236862, -0.08141486346721649, -0.2145618051290512, 0.27434059977531433, -0.05888327956199646, 0.6872826218605042, -0.1352906972169876, -0.28388711810112, -1.6226588487625122, -0.14523962140083313, 0.09060405194759369, -0.2893370985984802, 0.24956834316253662, 1.0195488929748535, 0.539933443069458, -0.3532797694206238, 0.6074523329734802, -0.0952989012002945, 0.10229871422052383, 0.3134474754333496, 0.46941033005714417, -0.5433635711669922, 0.4815135896205902, -0.4496583342552185, -0.557758092880249, -0.7674725651741028, 0.23448191583156586, 1.8430041074752808, 0.8695045709609985, 1.3646984100341797, -0.49211400747299194, -0.2611118257045746, -0.026110516861081123, -0.3392760157585144, -0.9135829210281372, -0.6041941046714783, 0.3453706204891205, -0.18080663681030273, -0.5854396224021912, -1.2244876623153687, 0.6823505163192749, 0.6875934600830078, -7.525738328695297e-05, 1.0361957550048828, 0.3259107172489166, 0.16345131397247314, -0.7962639927864075, -0.6736337542533875, -0.3431941568851471, -1.2720447778701782, -0.1830618977546692, 1.196555495262146, -0.9641283750534058, -0.6531535983085632, 0.3009282946586609, -0.10465964674949646, 0.062458280473947525, -0.4629671573638916, 0.6853082180023193, -0.8842697143554688, -0.482924222946167, -0.4065365493297577, 1.7548667192459106, -0.13173240423202515, -0.26848772168159485, -0.36818230152130127, 1.1941726207733154, 0.29132306575775146, -0.2277919054031372, -0.15404821932315826, 0.25351041555404663, -0.5528118014335632, -0.4281257390975952, 0.18193526566028595, 0.3441208004951477, 0.48398280143737793, -0.6385772824287415, -0.9108831286430359, 0.005539761856198311, 0.4248200058937073, -0.7372708916664124, 0.5731465816497803, -0.5222831964492798, 0.9453089237213135, 0.6282860636711121, 0.35267505049705505, 0.16191807389259338, -0.47458821535110474, 0.027106793597340584, -1.4890053272247314, 0.6722936630249023, 0.4593076705932617, 1.2345292568206787, 1.076357364654541, -0.26315629482269287, 0.22206299006938934, -0.49018147587776184, 0.2840631902217865, 0.26683759689331055, 0.7327660918235779, -0.3486359715461731, -0.34564438462257385, 0.040152303874492645, -0.34210172295570374, 0.7411035895347595, -0.1598832607269287, 0.1799665242433548, 0.35067129135131836, -0.5963546633720398, -0.5441079139709473, 1.3977422714233398, 0.4392251670360565, 0.2281745821237564, -0.8279949426651001, -0.23219740390777588, 0.9369310736656189, -0.6521297097206116, -0.18103542923927307, -0.11943482607603073, 0.186629056930542, -0.11645528674125671, -0.449252724647522, -0.1015159860253334, 0.19368292391300201, 0.3029336631298065, 0.8812821507453918, -0.8393614888191223, -0.5066608190536499, -0.02316705323755741, 0.44363465905189514, 0.4801435172557831, 0.17985934019088745, 0.06910116970539093, 0.5626983642578125, -0.31538379192352295, 0.5841789245605469, 0.9278424382209778, 1.0892587900161743, 0.10640393197536469, -0.19018007814884186, 0.08403732627630234, -0.19006550312042236, 0.12339188158512115, -0.10685995221138, -0.5098809003829956, -0.04154783487319946, -0.533090353012085, 0.39194753766059875, -0.2861706018447876, -0.5692172646522522, 1.251650333404541, -0.18539445102214813, 0.11035978049039841, 0.16871170699596405, 0.3045724332332611, -0.9119853377342224, -0.014953173696994781, -0.05300378426909447, -0.6782175302505493, -0.1948852241039276, -0.34968438744544983, -0.6042516231536865, -0.17507857084274292, 0.5160726308822632, 0.3492030203342438, 0.8868139982223511, -0.5238142609596252, -0.10495352745056152, -0.19212675094604492, 0.5683580040931702, 0.5623717904090881, 1.5593655109405518, 0.9641308784484863, -0.024325767531991005, -1.6710721254348755, 0.9761072993278503, 0.1796172708272934, 0.570366621017456, 0.2982291877269745, -0.22637251019477844, 1.4007247686386108, -0.9531839489936829, 0.19427631795406342, 0.690990149974823, 0.24069352447986603, -0.46889179944992065, 0.595853328704834, -0.3794657588005066, -0.44467681646347046, 0.054475389420986176, 0.5628691911697388, 0.22113493084907532, 0.19415895640850067, 0.20309904217720032, 0.2980792820453644, 0.4020068943500519, -0.5604016184806824, 0.5857418775558472, -1.0299540758132935, -0.4043668508529663, 0.20931437611579895, -0.053215429186820984, 0.3620953857898712, 1.1426080465316772, 0.39168956875801086, 1.1203868389129639, 0.0364224836230278, -1.4785677194595337, -0.36651650071144104, -0.4754094183444977, 0.351588636636734, -0.6013376712799072, -0.2816106975078583, -0.6153092384338379, -0.15963760018348694, -0.2791922688484192, 0.0005451012402772903, 0.26380956172943115, -0.3057316839694977, -0.47574394941329956, -1.4053184986114502, 0.5821470022201538, 0.517678439617157, 0.772447407245636, 0.22406497597694397, -0.11446995288133621, -0.3570012152194977, -0.09574105590581894, -0.9226447343826294, 0.23347757756710052, -0.13882635533809662, 0.04444823041558266, 0.15969090163707733, -1.320959448814392, -0.7234352231025696, 0.6750874519348145, 0.24664929509162903, 0.12417282909154892, -0.25109604001045227, 1.538688063621521, 1.1849652528762817, -0.5526554584503174, -0.28242817521095276, 0.7309940457344055, -0.8661783933639526, 0.5297197103500366, -0.32654017210006714, -0.40482595562934875, -0.44939813017845154, -0.19263093173503876, -1.9263606071472168, 0.8765355348587036, -0.2766849398612976, -0.03346119076013565, 0.4769194424152374, 0.23345601558685303, 1.1203832626342773, 1.1810165643692017, -0.5686975717544556, 0.49938732385635376, 0.21406012773513794, -0.3017459511756897, -0.9241124987602234, 0.6727129220962524, 0.48438504338264465, 0.9963387846946716, -0.3056102693080902, -0.07761286944150925, -0.34820738434791565, -0.36981046199798584, -0.4363214373588562, -0.2938145697116852, 0.07501427084207535, 0.511756420135498, 0.5220009684562683, -0.27466532588005066, 1.0655338764190674, -0.5553305149078369, 0.22789786756038666, -0.3295741677284241, 0.9014621376991272, 0.45954498648643494, -0.06279753893613815, 0.42082643508911133, -0.6488525867462158, -0.21745935082435608, -0.6002092361450195, -0.5127614140510559, 0.5074313282966614, 1.3647516965866089, 0.3936319351196289, -0.5014240741729736, -0.9629132747650146, -0.19461287558078766, -0.5711473822593689, -0.0006628185510635376, 0.5665513873100281, -0.6923477053642273, -0.2901225686073303, 0.24926185607910156, 0.1053847223520279, -0.10752146691083908, 0.16154620051383972, -0.2361067235469818, -0.790973424911499, -1.254316806793213, -1.2919632196426392, -0.2765788733959198, 0.730676531791687, -0.3323654532432556, 0.9095617532730103, 0.23388101160526276, -1.4668869972229004, 0.8250917196273804, 0.20047567784786224, -1.6804964542388916, -0.5589976906776428, -0.5783993005752563, 1.222690224647522, 0.4497523605823517, 0.3297041356563568, 0.5968297719955444, 0.8392669558525085, -1.532357096672058, -0.8837911486625671, -0.9164702892303467, -0.5126408934593201, 0.7114959359169006, 0.32732445001602173, -1.3515228033065796, 0.8285483121871948, 0.48760199546813965, -0.5964936017990112, -0.6338737607002258, -0.3605274260044098, -1.1504671573638916, 0.004224175587296486, 0.3948376476764679, 0.075180783867836, 0.11847539991140366, 1.2121427059173584, 0.8445920944213867, 0.24041076004505157, -0.09362898766994476, 0.9736860394477844, -1.0760033130645752, -0.2553984224796295, -0.48080238699913025, 0.327483206987381, -1.0482970476150513, -1.1696546077728271, 0.2494489997625351, -0.5954972505569458, -0.8529770374298096, 0.7223266363143921, 1.1194740533828735, -1.1038074493408203, 0.49088096618652344, 0.06334243714809418, -0.12344810366630554, -1.880218267440796, 0.6596723794937134, -0.29157379269599915, -0.9603985548019409, -0.6547042727470398, 0.40917259454727173, 0.21706482768058777, -1.2592369318008423, 0.1419535130262375, -0.11371022462844849, -0.08684258908033371, -0.0674600675702095, 0.40368157625198364, 1.2514503002166748, 0.5888975858688354, -0.6911795735359192, 0.29414352774620056, 0.8137028813362122, -0.2950771749019623, -0.0989765077829361, 0.6513705849647522, -0.5109925270080566, 0.4285961985588074, 0.12616749107837677, -0.6559460759162903, -0.48558032512664795, 0.9427412152290344, 0.15103274583816528, 0.006050620228052139, 0.3641006350517273, 0.26445943117141724, 0.30660760402679443, -0.015192186459898949, 1.0691674947738647, -0.4623146057128906, -1.3946688175201416, 0.40905269980430603, 0.9947550296783447, -0.07667391002178192, -0.018950199708342552, 0.6497119665145874, 0.38912296295166016, 0.15719690918922424, 0.23639865219593048, -0.29088497161865234, -0.9340640306472778, 0.34830233454704285, 0.4151287376880646, 0.13145121932029724, -0.03394405543804169, -0.8913295865058899, -1.560900092124939, -0.08936385065317154, -1.2257578372955322, -0.024204490706324577, 0.14585544168949127, -0.7508996725082397, -1.5732682943344116, 0.018859265372157097, -0.2908936142921448, -0.02791270986199379, -0.5886101722717285, 0.3030117452144623, -0.023865852504968643, -0.5761330127716064, 0.4989162087440491, -0.1033472865819931, 1.371401071548462, -0.10972832888364792, -0.2476048618555069, -0.5061457753181458, -0.2326846420764923, 0.6293866634368896, -0.22567059099674225, 0.2231796234846115, -0.5927191972732544, 0.837131679058075, -0.9157205820083618, -0.2824017405509949, -0.18971416354179382, 0.18336135149002075, -0.11333727091550827, 0.7743070721626282, -0.6868599057197571, 0.3057585656642914, 0.8741434216499329, 0.3597508668899536, -0.6306324005126953, -0.18999935686588287, -0.5318303108215332, 0.3912307024002075, -0.29989001154899597, 1.2328815460205078, -0.15254338085651398, 0.9042124152183533, 0.9792290925979614, -0.30203959345817566, -0.5118998289108276, 0.19738158583641052, 0.914580762386322, -0.26755595207214355, 0.3967004418373108, 0.3061973452568054, 0.1567133218050003, -0.558241605758667, -0.607599675655365, 0.6482073068618774, -0.2026410698890686, -0.8589388132095337, 0.5440601110458374, -1.2092862129211426, -0.8026772141456604, -0.7221213579177856, -0.33440807461738586, -0.06153516843914986, -0.042402248829603195, 0.12536391615867615, -0.16215014457702637, -1.1820133924484253, 0.08321592211723328, 0.1484343707561493, -0.8830643892288208, 0.5652592778205872, 0.7463646531105042, 2.329296827316284, 0.6495596170425415, -0.32279807329177856, -0.5489091277122498, 0.2523348033428192, -0.7435396909713745, 0.3841293454170227, -0.3262218236923218, 0.1125044971704483, -0.6474377512931824], [0.10231846570968628, 1.0659829378128052, -2.1682400703430176, -0.33129939436912537, 0.3209768533706665, 0.45532742142677307, 0.8770010471343994, 0.5706318020820618, 0.405374139547348, -0.9323114156723022, -1.313124418258667, 0.4830459654331207, 0.9249844551086426, 0.3263990879058838, 0.2946232855319977, 0.5251953601837158, 0.49269387125968933, -0.5952733755111694, 0.8297678828239441, 0.3552466332912445, -1.1429009437561035, -0.9356111288070679, 0.07489956170320511, -0.33883136510849, 0.03423900902271271, 0.4557921886444092, -0.9324043989181519, -0.9979634881019592, -1.4103879928588867, -0.0914892852306366, 0.3495200574398041, -0.6778118014335632, 0.155171200633049, -0.022704096511006355, -0.9266040325164795, 0.07065974175930023, 0.8601217269897461, -0.02931276522576809, -0.06395316869020462, 0.7652401924133301, 1.8470056056976318, -0.5812004804611206, 0.27128100395202637, -1.03751540184021, 0.6289132237434387, 0.13285380601882935, -0.01802481897175312, -0.41060540080070496, 0.6342703700065613, -0.2270466685295105, 0.9746413230895996, -0.5870822668075562, -0.17095118761062622, 1.0599764585494995, 1.1368530988693237, -0.5628495812416077, -0.17136846482753754, 0.6610867381095886, -0.02865487150847912, 0.29744020104408264, 1.0006452798843384, 0.3632409870624542, -0.3974243104457855, 0.8607131242752075, 0.6125075817108154, -0.21258407831192017, 0.1570136994123459, 0.4972154498100281, -0.4526255428791046, -0.07555914670228958, 0.5421399474143982, 0.2972063422203064, -0.8923390507698059, 0.2597699761390686, -0.7489974498748779, -0.19245938956737518, -0.02537437714636326, 0.5878583192825317, 0.5624841451644897, 1.1647802591323853, -0.5969042181968689, 0.09717773646116257, 0.6001951694488525, -0.19123850762844086, 0.14687758684158325, 0.3986470699310303, 0.4181042015552521, 0.03464614227414131, -0.7122012376785278, 1.5718038082122803, 0.2584656774997711, 0.3547275960445404, -0.025239083915948868, -0.23318436741828918, -0.6992363929748535, -0.384457528591156, 0.02751469798386097, -0.8576423525810242, 0.190452441573143, -1.2767711877822876, -0.20215079188346863, -1.1046861410140991, 0.7753300070762634, 0.9903930425643921, 0.8875487446784973, 1.1325366497039795, 0.7555757761001587, -1.0730760097503662, -0.022369422018527985, -0.3248979151248932, 0.6104768514633179, 0.4167401194572449, -0.6737470626831055, -1.0004745721817017, -0.4795008599758148, 0.7286986708641052, 1.077257752418518, -0.587882936000824, 0.5800970792770386, 0.5062273144721985, -0.5214924216270447, -0.05804259702563286, -0.5228179097175598, 1.0581892728805542, 0.9136543869972229, 0.8513570427894592, -0.4959871172904968, -0.2529863119125366, 0.10209362208843231, 0.011967492289841175, -0.4561743438243866, -0.12844109535217285, -0.5628744959831238, 1.059421420097351, -0.25337764620780945, 1.6568615436553955, -0.2958360016345978, -0.6483516693115234, 0.24640856683254242, -0.04864031821489334, 0.5732844471931458, 0.06101341173052788, -0.9325271248817444, -0.2502155900001526, -0.18218860030174255, -0.7293974757194519, 0.16617174446582794, -0.18278776109218597, -0.45789071917533875, 0.26021644473075867, -1.3024137020111084, 0.48892053961753845, -0.7733827829360962, 1.2297933101654053, 0.21235382556915283, -0.008066585287451744, 0.8803772330284119, 0.0037546390667557716, 0.17065764963626862, 0.5225971341133118, 0.7883098721504211, -0.17839114367961884, -0.7053188681602478, 1.1352145671844482, 0.01542922668159008, -0.4688056707382202, 0.29472967982292175, 0.4334350526332855, -0.06535112857818604, 0.40660783648490906, 0.16312386095523834, 0.07943543791770935, -0.044019050896167755, 0.3471578359603882, -0.2200697958469391, -1.1575427055358887, 0.41276612877845764, -0.6459521651268005, -1.4046210050582886, -1.5755198001861572, 0.5713626742362976, -0.16638943552970886, 0.3401279151439667, -0.15411430597305298, 0.6391913890838623, -0.28667381405830383, -0.3859771490097046, 0.03271142393350601, -0.10956935584545135, -0.763965904712677, -0.8186301589012146, -0.4519422948360443, -0.871889054775238, 0.2746366262435913, -0.8471947312355042, -0.9153027534484863, 0.7712245583534241, 0.02628072164952755, -0.4050903022289276, -0.49256300926208496, -0.4583922326564789, -0.5020535588264465, -1.820373773574829, 0.024592315778136253, -0.6868930459022522, 1.5392324924468994, -0.40678343176841736, 0.372230589389801, -1.0611748695373535, 0.4929890036582947, 0.8997527360916138, -0.2878718674182892, -1.2753450870513916, -0.0531785786151886, 0.077097587287426, -0.4155494272708893, -0.24561449885368347, 0.26047295331954956, 0.06227713078260422, 0.6873406767845154, 0.1242678165435791, 0.2957139015197754, 0.32234323024749756, -0.42472293972969055, 0.8951354622840881, -0.3092218041419983, -0.8821630477905273, -0.7016598582267761, -0.8831051588058472, 0.08581787347793579, -0.5311516523361206, -1.3095921277999878, 0.2685120701789856, 0.41865652799606323, -0.9387242794036865, 1.0082529783248901, 0.38706356287002563, 0.27884408831596375, 0.2308167666196823, 0.38125982880592346, 0.2960532009601593, 0.7696126103401184, -0.9484925270080566, -0.3377460539340973, -0.07428505271673203, -0.006398544646799564, 0.4777834415435791, -0.6091687083244324, -0.4950910210609436, 1.486143946647644, 1.1639573574066162, -0.2961326539516449, 0.9370927214622498, 0.08406482636928558, -0.3165017068386078, -0.7313705086708069, 0.07616059482097626, 0.010594666004180908, -0.48202750086784363, 1.136252760887146, 0.8145649433135986, -1.2046138048171997, -0.3258589208126068, -0.07589883357286453, -0.25087952613830566, -0.492736279964447, -0.36022064089775085, -0.6817397475242615, 1.0527338981628418, 0.07994964718818665, -0.13020826876163483, 0.008484813384711742, -0.6042671799659729, 0.770729124546051, 0.012712228111922741, 0.06607689708471298, -0.7489562034606934, 0.3639538586139679, -0.3355691134929657, 0.67885422706604, -0.023780284449458122, -1.2299585342407227, -0.7351587414741516, 0.01798960566520691, 0.6716556549072266, 0.4613363742828369, 0.4706447124481201, 1.0437787771224976, 0.9757965803146362, -0.24446174502372742, 0.01043689250946045, -0.3891716003417969, 0.053843904286623, 1.0151010751724243, 0.27677083015441895, -0.1427791267633438, 0.6264241933822632, -0.1381281167268753, -0.7853248119354248, -0.6286437511444092, 0.19790175557136536, 0.8888104557991028, 1.2809594869613647, 0.4844275116920471, -1.035516619682312, -0.3356713354587555, -0.307262659072876, 0.3139493465423584, -0.49372607469558716, -0.8229315876960754, -0.7269675731658936, -0.5352737307548523, -0.28235137462615967, 0.04297490417957306, -0.06319069117307663, 1.099464774131775, 0.0005694061983376741, 0.5027269721031189, 0.7135552763938904, 0.09378576278686523, -0.28631603717803955, -0.20254486799240112, -0.06637599319219589, -1.077304482460022, 0.16481085121631622, 1.4891247749328613, -1.5432761907577515, -0.4280920624732971, 0.04032602161169052, 0.09263391047716141, 0.1344631314277649, -0.15531037747859955, 0.14767809212207794, -0.5591437816619873, -0.27342191338539124, -0.06990406662225723, 1.2906755208969116, 0.20906475186347961, -0.06892435252666473, -0.6277373433113098, 1.2432600259780884, 0.23648859560489655, -0.16802659630775452, -0.1529979258775711, 0.34681248664855957, -0.8409165740013123, -0.7620750069618225, -0.4372577667236328, 0.1581173688173294, 0.7334797978401184, -0.4700258672237396, -0.3987032473087311, -0.28184589743614197, -0.1352570354938507, -0.8003107309341431, 0.12294899672269821, -0.6733930110931396, 0.4497731328010559, 0.29160770773887634, 0.22037672996520996, 0.726969838142395, -0.2741752862930298, 0.6186981201171875, -1.2398617267608643, 0.3826824724674225, 1.1399307250976562, 0.8952075242996216, 0.9379507303237915, 0.2916163206100464, 0.08268488943576813, -0.9687803387641907, -0.36276575922966003, 0.08932004123926163, 0.6898979544639587, 0.0335208959877491, 0.13532307744026184, -0.44211289286613464, -0.4230997860431671, 0.11540547758340836, -0.7623655200004578, -0.09769964963197708, 0.2447512447834015, -0.25080132484436035, -0.5632684230804443, 0.7220411896705627, 0.12528735399246216, -0.026956776157021523, -0.36253827810287476, 0.2774563729763031, 1.0852571725845337, -0.4656570851802826, 0.1162312924861908, 0.14398953318595886, 0.19159863889217377, 0.3781634569168091, -0.17724530398845673, -0.2557332217693329, 0.5110142827033997, 0.16268059611320496, 0.8078315854072571, -1.5647345781326294, -0.38266366720199585, -0.2825195789337158, -0.0056684971787035465, 0.44864508509635925, 0.11976038664579391, 0.1214926540851593, 0.18268141150474548, -0.5072701573371887, -0.3446296155452728, 0.08044572174549103, 0.746229350566864, 0.012647668831050396, 0.5457168221473694, -0.5068028569221497, 0.4775415360927582, 0.4295043647289276, -0.8024523258209229, -0.7662203311920166, 0.47105368971824646, -0.6446012258529663, 0.552959144115448, 0.6493451595306396, -0.1981944739818573, 1.6227173805236816, -0.008315451443195343, 0.15261441469192505, 0.8815245032310486, -0.3032084107398987, -0.24390418827533722, -0.016252396628260612, 0.707231342792511, -0.3845173418521881, -0.9631162285804749, 0.21922314167022705, 0.35895559191703796, 0.443779855966568, 0.2967756390571594, -0.010054541751742363, 0.5325489640235901, 0.3288618326187134, -0.49046260118484497, 0.12261214852333069, 0.882689356803894, 0.9427655935287476, 0.4904576241970062, 0.7225733399391174, 0.4094087481498718, -1.2012698650360107, 0.7995283007621765, -0.3002049922943115, -0.15055063366889954, 0.2288036346435547, 0.329083114862442, 1.4017531871795654, -1.4846128225326538, -0.1932739019393921, 0.3658563196659088, 0.10311920940876007, 0.09683805704116821, 0.5415061712265015, 0.7107263803482056, -1.219359040260315, -0.029575787484645844, 0.3369160294532776, -0.056885723024606705, 0.3309822380542755, 0.2839503586292267, 0.3885314464569092, 0.4173871576786041, -0.6234391331672668, -0.05865945667028427, -0.7092468738555908, -0.3197086453437805, 0.5579224228858948, -0.0940452292561531, 0.6385071277618408, -0.029640397056937218, 0.44189342856407166, 0.9081335067749023, -0.7083243131637573, -1.437511920928955, -0.09937963634729385, -0.6541922688484192, -0.04288578778505325, -0.03500746935606003, 0.031154150143265724, -0.5874741077423096, -0.2664118707180023, 0.3319528102874756, 0.22169767320156097, -0.09665657579898834, -0.2307945191860199, 0.7933726906776428, -1.3800389766693115, 0.029530614614486694, 0.7194676399230957, 1.2603294849395752, 1.1668399572372437, 0.0057183727622032166, -0.15975575149059296, 0.5090819001197815, -0.4250332713127136, 0.18117277324199677, 0.0679297149181366, -0.27497947216033936, 0.13008661568164825, -0.7806468605995178, -0.5721760392189026, 0.28312498331069946, 0.600123405456543, -0.15968476235866547, -0.4336242973804474, 0.9485036134719849, 1.712527871131897, -1.0997151136398315, -0.6716794371604919, 1.3679943084716797, -0.24315118789672852, 1.3237695693969727, 0.09202957153320312, -0.5403064489364624, -0.44869911670684814, -0.04130573943257332, -1.588956356048584, 0.9674293398857117, -0.03323015943169594, -0.8864249587059021, 0.549061119556427, 0.3188721537590027, 0.10258984565734863, 0.8728535175323486, -1.0549025535583496, -0.3517206609249115, 0.8451035022735596, -0.26789242029190063, -1.1512596607208252, 1.0357874631881714, 0.4050579369068146, 0.8430876731872559, 0.138723686337471, 0.3366875946521759, 0.06399861723184586, 0.02899136394262314, 0.05667665973305702, 0.07987604290246964, 0.23309601843357086, 0.3596363663673401, 0.6011831164360046, -0.4619158208370209, 0.16814009845256805, -0.67613685131073, 0.15372523665428162, 0.03178201615810394, 0.9632284641265869, 0.33039504289627075, 0.030660271644592285, 0.20213201642036438, -1.0846507549285889, -0.2694091498851776, -0.37189146876335144, -0.8557957410812378, 0.563021719455719, 0.8984380960464478, 0.2958866059780121, -0.05288699269294739, -0.4264548420906067, -0.3228088617324829, -0.4888628125190735, 0.07304667681455612, 0.2412615716457367, -1.1684246063232422, -0.03072221949696541, 0.23150771856307983, -0.5207378268241882, -0.006342282053083181, -0.3125993609428406, -0.15529663860797882, 0.12949416041374207, -1.3491697311401367, -0.6754097938537598, -0.06375851482152939, 0.5797572135925293, -0.05049595609307289, -0.10218393802642822, -0.2561062276363373, -1.475102186203003, -0.4757612943649292, -0.03125256672501564, -1.3841638565063477, -0.2354561984539032, -0.5118942856788635, 0.8524957299232483, 0.6853434443473816, 0.11148573458194733, -0.16142183542251587, 0.6538130044937134, -1.4890739917755127, -0.4698450267314911, -0.15240883827209473, 0.1858101785182953, 0.4593568742275238, 0.6549222469329834, -1.2492588758468628, 1.46169114112854, 0.6970295310020447, -0.10430856049060822, -0.016131293028593063, -0.17647019028663635, -0.3493719696998596, -0.314985454082489, 0.9479802250862122, 0.19142307341098785, 0.42328256368637085, 0.7814844250679016, 0.23117443919181824, 0.7108777165412903, 0.3805773854255676, 1.081787347793579, -1.203076958656311, -0.9404045343399048, -0.42464929819107056, 0.39655840396881104, -0.8945383429527283, -0.626814067363739, -0.30789220333099365, -0.4982600510120392, -0.20757748186588287, 0.23686224222183228, 0.6366410255432129, -1.2171657085418701, 0.08995842933654785, -0.6517255902290344, 0.39706623554229736, -0.8135122656822205, 0.5450487732887268, 0.4975011348724365, -1.3151673078536987, 0.14493897557258606, 0.34186702966690063, 0.3273337781429291, -1.3267239332199097, -0.25798022747039795, -0.1350814700126648, 0.291176974773407, -0.48120397329330444, 0.4930216670036316, 0.39604806900024414, 0.38608431816101074, -0.2937229573726654, 1.2730199098587036, 1.0801337957382202, 0.13045193254947662, -0.31069475412368774, 0.5707135200500488, -0.46761375665664673, 0.3563702702522278, -0.12389545142650604, 0.38450658321380615, -0.38289541006088257, 1.0122379064559937, 0.21658967435359955, 0.26207125186920166, -0.3236078917980194, 0.24836452305316925, -0.3693268895149231, 0.06653143465518951, 0.5999838709831238, -0.6834617853164673, -0.4040021300315857, 0.47950050234794617, 0.7492506504058838, -0.2765651047229767, -0.244053915143013, -0.13801972568035126, 0.5232362747192383, -0.10222692042589188, 0.3910113275051117, 0.3886050283908844, -0.16386425495147705, 0.09896217286586761, 0.9655537605285645, -0.3180219829082489, -0.35695725679397583, -0.19215397536754608, -1.4746640920639038, 0.018978828564286232, -0.5558215975761414, -0.24908900260925293, 0.36162060499191284, -0.9485746026039124, -0.6328722238540649, -0.19933265447616577, -0.24473488330841064, 0.3017418682575226, -0.7387725710868835, 0.20390787720680237, 0.007705984637141228, -0.1823708564043045, 0.6752809286117554, -0.7326675653457642, 0.7697107195854187, -0.6917986869812012, 0.034298282116651535, -0.6516261696815491, 0.4012249708175659, -0.035909246653318405, 0.3749435842037201, -0.32734885811805725, -0.5633912086486816, 0.030752448365092278, -0.3960244953632355, -0.2293747216463089, 0.47840940952301025, 0.7295539379119873, -0.04979148134589195, 0.7656174302101135, -0.7690362334251404, -0.5390255451202393, 0.3102305233478546, 0.7761883735656738, -0.37363988161087036, -0.4240533411502838, -0.7530390024185181, 0.5502291917800903, 0.04698440432548523, 1.3844380378723145, -0.9649777412414551, 0.15643201768398285, -0.10184285789728165, 0.04244295507669449, 0.000504232244566083, -0.6056462526321411, 0.555650532245636, -0.3764986991882324, 0.35506540536880493, 0.09692861884832382, -0.37101781368255615, -0.4551047682762146, -0.6512395143508911, -0.26553234457969666, 0.36614298820495605, -0.4382425546646118, 0.6659207940101624, -0.9429123997688293, -0.6722255945205688, -0.16617250442504883, 0.21363693475723267, -0.6117614507675171, 0.1925770342350006, 0.3031248450279236, -0.18510016798973083, -0.2799486517906189, 0.004167613107711077, 0.468740850687027, -0.4285370707511902, -0.10697269439697266, 1.117249608039856, 1.1362162828445435, 0.16832242906093597, -0.478011816740036, -0.26431870460510254, 1.047026515007019, -1.198576807975769, 0.13500948250293732, -0.9018951058387756, -0.7559676170349121, -0.10781159996986389], [-0.39694976806640625, 1.090183138847351, -1.4066890478134155, -1.1148264408111572, -0.47423234581947327, 0.4856611490249634, 1.6838023662567139, 0.6603217720985413, 0.2953663170337677, -0.31943488121032715, -0.2240762561559677, 0.6972107887268066, 1.4102883338928223, 0.9461860656738281, 0.27948302030563354, -0.0693749412894249, 0.383198618888855, 0.7541815042495728, 0.6331110000610352, -0.2945845127105713, -1.0455254316329956, -0.42872169613838196, 0.10567206144332886, 0.3865562975406647, 0.5292056202888489, 0.6849457025527954, -1.1356722116470337, -0.4291585087776184, -1.8512885570526123, -0.8884330987930298, 0.6940662860870361, -1.0801299810409546, 0.07916732132434845, 0.26765769720077515, -0.042718276381492615, -0.3624902367591858, 1.7967908382415771, 0.374753475189209, 0.759194016456604, 0.30729231238365173, 2.6090569496154785, 0.03666824847459793, 0.04491455852985382, -1.1409307718276978, -0.8512347340583801, -0.016205545514822006, 0.17628324031829834, -1.6066268682479858, 0.1735917031764984, 0.2542645335197449, 0.6791911125183105, 0.7209205031394958, 0.5685153007507324, 1.2241333723068237, -0.1548507809638977, -0.9776166081428528, 0.5019965767860413, 0.2843027114868164, 0.9105278253555298, -0.08914065361022949, 0.3952701687812805, -0.3235118091106415, -0.15845122933387756, 1.6128029823303223, 0.33396244049072266, -0.2577882409095764, -0.057232510298490524, -0.247924342751503, 0.40025269985198975, -0.4354606866836548, 0.025768447667360306, 0.02966429851949215, 0.09252007305622101, 0.5929543375968933, -1.1098498106002808, 0.6124457716941833, 0.5985241532325745, -0.3788522779941559, -0.44985246658325195, 0.9978538155555725, -0.6368800401687622, -0.31922999024391174, 0.6874637603759766, -0.23359890282154083, 0.8610819578170776, 1.0657014846801758, 0.005349092185497284, 0.652769923210144, -0.2741072475910187, 1.647155523300171, -0.04311066120862961, 0.41515272855758667, -0.0021348893642425537, 0.20963092148303986, -0.05000254511833191, -0.7389814257621765, -0.5221012830734253, -0.8106756210327148, -0.9231913685798645, -0.8716508150100708, -0.6579275727272034, -0.6790211796760559, 0.6821976900100708, 0.08134479075670242, 1.1199536323547363, 1.0317142009735107, 0.05301903560757637, -0.20050351321697235, -0.7606571912765503, -0.16897407174110413, -0.3723706603050232, -0.23618054389953613, -0.6356344223022461, -0.5905603766441345, -0.44953811168670654, 0.34792521595954895, 0.4895799458026886, -0.16298148036003113, 0.10981863737106323, 0.8882145881652832, -0.7987903356552124, -0.23158963024616241, -0.6358280777931213, 0.5510768890380859, 0.395700603723526, 0.5880473852157593, -0.003049788996577263, -0.19053369760513306, 1.3437669277191162, 0.6175557971000671, -0.12623853981494904, -0.4671078622341156, 0.6963537931442261, 1.4914973974227905, -0.46231138706207275, 0.6205940246582031, 0.4333188235759735, -2.0233068466186523, -0.46139395236968994, 0.2631904184818268, 0.7585200071334839, -0.5522411465644836, -0.6163248419761658, -0.6691105961799622, -0.3071939945220947, -0.8048445582389832, 1.1489263772964478, 0.4487757384777069, -0.6443384289741516, 0.18542329967021942, -0.9861330986022949, 0.29547369480133057, 0.22914350032806396, 1.0037381649017334, -0.22019705176353455, -0.5316094160079956, 0.15428999066352844, 0.17778652906417847, 0.24768364429473877, 0.8764947056770325, 1.025538682937622, -0.035772159695625305, -1.076111912727356, 0.8834315538406372, -0.07808344811201096, -0.9195353984832764, 0.12240973114967346, 0.6408451795578003, 0.24559247493743896, 0.1297142207622528, -0.2725996971130371, -0.20021384954452515, -0.464782178401947, 0.04032697156071663, 0.638279914855957, -0.683861255645752, 0.9552501440048218, -0.6508235931396484, -0.9457811117172241, -1.6735680103302002, 0.5231411457061768, -0.17262372374534607, 0.15515130758285522, -0.3563116788864136, 1.2357842922210693, -0.8034521341323853, 0.0650535300374031, -0.4878609776496887, -0.8317248225212097, -1.0459396839141846, -0.86786288022995, 0.3505702316761017, -0.6927043795585632, -0.05582860857248306, -0.337060809135437, -0.2057081013917923, 0.4323188066482544, -0.6724497675895691, -1.0355088710784912, 0.6313415765762329, 0.4055660367012024, -0.35904669761657715, -1.9636980295181274, 0.29425475001335144, -0.7181505560874939, 0.4304244816303253, -1.288620948791504, 0.5845532417297363, -0.8122532367706299, 0.4921649396419525, 0.1620752513408661, 0.7176516652107239, -1.1944866180419922, 1.0741480588912964, -0.19166551530361176, -0.8618881702423096, 0.19545584917068481, 0.0825527235865593, -0.2655312120914459, 0.4447213113307953, 0.10243848711252213, 0.3955373764038086, 0.8217796087265015, -0.15216930210590363, 0.4998432993888855, 0.3741939067840576, -0.8359560966491699, -1.057632565498352, -0.8805030584335327, 0.24530112743377686, -0.6852155327796936, -0.6156649589538574, 0.5873007774353027, 0.5101587772369385, -0.6452995538711548, 0.4635840058326721, 0.6122236847877502, -0.34368276596069336, 0.48667511343955994, 0.021951019763946533, 0.27303996682167053, 0.654794454574585, -0.35405516624450684, -1.119249939918518, -0.34528738260269165, 0.32815906405448914, 1.1040585041046143, -0.15577442944049835, 0.8225297331809998, 1.5959372520446777, 1.211995005607605, 0.3394280970096588, 0.23860979080200195, -0.3749399185180664, -0.06581266224384308, -0.47254589200019836, -0.10417945683002472, -0.19370168447494507, -0.9263553023338318, 1.1145696640014648, 1.3497755527496338, -1.6214250326156616, -0.12358202040195465, 0.6382176876068115, 0.3200012445449829, -0.12603138387203217, -0.21065804362297058, -0.03905046731233597, 0.7516062259674072, 0.1686539202928543, 0.004116617143154144, 0.8964183330535889, -0.13430267572402954, -0.09003227949142456, -0.2564498782157898, -0.21990157663822174, -0.20538650453090668, 0.19440370798110962, -0.48387497663497925, 1.0796847343444824, 0.835963785648346, -0.9242583513259888, -0.7948390245437622, -0.4109601378440857, 0.8375402688980103, 0.35904356837272644, 0.26381590962409973, 1.138634204864502, 0.04503548517823219, -0.02951081469655037, -0.2393510937690735, 0.43157055974006653, -0.5796985626220703, 0.23417997360229492, -0.35770657658576965, -0.5324957966804504, 0.7657889127731323, -1.1234122514724731, -0.6895895004272461, 0.5386428833007812, 0.16424661874771118, 0.19119347631931305, 0.9870156049728394, 1.0471082925796509, -0.4680495262145996, 0.6094866991043091, -0.6765204668045044, -0.1856870800256729, -0.8800779581069946, -0.4507497549057007, -0.6792665123939514, -0.7870817184448242, 0.030547983944416046, 0.1575259566307068, 0.8606754541397095, 0.40825366973876953, -0.5384663343429565, 0.7585575580596924, 1.1138205528259277, 0.40677258372306824, -0.08602676540613174, 0.7314001321792603, -0.22731256484985352, -0.3008718192577362, 0.9867070913314819, 0.9851028323173523, -1.515891432762146, -0.035007819533348083, -0.2904879152774811, 0.39307987689971924, 0.5838148593902588, -0.36394059658050537, 0.39667391777038574, -0.5814648270606995, -0.42249593138694763, 0.8631620407104492, 1.2252583503723145, 0.07604478299617767, -0.6889864206314087, -1.1077778339385986, 0.5014838576316833, 0.8635789155960083, 0.5658591985702515, -1.1607396602630615, 1.0917384624481201, -0.5090558528900146, -0.27066922187805176, -0.8822126388549805, -0.12711843848228455, 1.1248996257781982, -0.3555483818054199, -0.04138056933879852, 0.6464059352874756, 0.024469105526804924, -0.8818192481994629, -0.2498757392168045, 0.0893961638212204, 0.5866762399673462, 0.3353419303894043, 0.3087008595466614, 1.43965482711792, -1.3866294622421265, -0.4964701533317566, -2.27744722366333, 1.0163354873657227, 0.4745846390724182, 1.9050889015197754, 0.28408196568489075, 1.0807318687438965, 0.2995498776435852, -0.6766815781593323, 0.3707963228225708, 0.3869333565235138, 0.5819233655929565, 0.2451181411743164, -0.3681386709213257, -0.06817290186882019, -0.623079240322113, -0.6672568321228027, -0.6819124221801758, -0.35562780499458313, 0.8409692049026489, -0.5390113592147827, -0.19858190417289734, -0.034999437630176544, 1.0091536045074463, -0.8090294599533081, -0.34208229184150696, -0.1566115915775299, 0.3319944143295288, -0.21142613887786865, -0.669054388999939, -0.42050039768218994, -0.21735253930091858, -0.3371177911758423, -1.446955919265747, 0.17722150683403015, 0.10539611428976059, -0.6230615973472595, 0.9047880172729492, -1.7883379459381104, -0.2803260087966919, -0.3349234163761139, -0.15652954578399658, 0.21254156529903412, 0.2712392508983612, -0.4461674988269806, 0.11846934258937836, -0.029522359371185303, 0.0008793696761131287, -0.018055692315101624, 1.0429608821868896, 0.4450136423110962, 0.10706869512796402, -0.19927489757537842, 0.2778615951538086, 0.4181765913963318, 0.1352938413619995, -0.46195143461227417, 1.1147809028625488, -1.0915418863296509, 0.03171338513493538, -0.043197955936193466, 0.49723970890045166, 2.5621094703674316, 0.597293496131897, 0.8131064772605896, 0.7532631158828735, -0.40213534235954285, -0.7005947828292847, 0.33557891845703125, -0.2584962844848633, -0.17806877195835114, -0.9821483492851257, 0.28520846366882324, 0.1176348328590393, -0.8897030353546143, 0.4930649399757385, 0.41334861516952515, -0.41096943616867065, -0.021627487614750862, -0.03007066622376442, 0.8205183744430542, 0.6359627842903137, 1.0578243732452393, 0.07941346615552902, 0.657974123954773, -0.5775254964828491, -0.9128464460372925, 1.1474565267562866, -0.5984230041503906, -0.10028297454118729, 1.0447572469711304, 0.5547902584075928, 0.3727600574493408, -1.1465225219726562, -1.358873963356018, 0.7267855405807495, -0.1933126449584961, 0.7959438562393188, -0.13670793175697327, 1.713947057723999, -0.4140872061252594, -0.24402214586734772, 0.34389111399650574, -0.044728152453899384, 1.308756709098816, -0.3607003688812256, -0.33749693632125854, -0.18287095427513123, -0.15631748735904694, -0.14443111419677734, -0.44804930686950684, -0.7240895628929138, 0.27676740288734436, -0.8862314224243164, 0.6172189712524414, 0.39649033546447754, 0.2664543688297272, 0.3547822833061218, -0.12416326254606247, -1.6980862617492676, 0.8661341071128845, -0.7120720744132996, -0.1446334719657898, -0.197500541806221, -0.6877183318138123, -0.2484644651412964, -0.7562081813812256, -0.6645675897598267, -0.07147139310836792, -1.129842758178711, -0.5611212849617004, 0.6434003710746765, -0.8651555776596069, 0.054693736135959625, 0.719996452331543, 1.8118431568145752, 0.9167287349700928, -0.18860995769500732, 0.056979112327098846, 0.6607381105422974, -0.8951947689056396, 0.14002221822738647, 0.6913689374923706, -0.5035663843154907, -0.8216146230697632, -1.1464251279830933, -0.8729740381240845, 2.4269323348999023, 0.7418230175971985, -0.413409948348999, 0.7895970344543457, 0.30133718252182007, 1.523914098739624, -0.255533903837204, -1.3513950109481812, 0.6573372483253479, 0.5099221467971802, 0.3202028274536133, 0.5399588942527771, -0.5855796337127686, -0.7880700826644897, -0.7260520458221436, -1.19307279586792, 2.0897650718688965, 0.4005292057991028, -0.9802701473236084, 0.3961483836174011, 1.0559228658676147, -0.15836943686008453, 0.2760388255119324, -1.0481587648391724, 0.19819492101669312, 0.4352215826511383, -0.6918942332267761, -1.170555830001831, 0.5944353342056274, 0.059523697942495346, 0.7140683531761169, -0.46709707379341125, 0.34856659173965454, -0.42479127645492554, -0.3916410803794861, -0.27940189838409424, 0.5538589954376221, 0.4429923892021179, -0.1537596583366394, 0.1868269443511963, -0.1355077177286148, -0.7473037242889404, -0.7132312059402466, 0.3834317624568939, -0.061948105692863464, 0.6166188716888428, 0.5086967349052429, -1.4286863803863525, -0.21784725785255432, -0.07523978501558304, 0.14551138877868652, -0.7359774708747864, -1.034881830215454, 0.9557297229766846, 0.7079870700836182, -0.7046868801116943, 0.4945576786994934, -0.19235725700855255, -0.48830974102020264, 0.004555901512503624, -1.2040296792984009, 0.3157418966293335, -2.0817158222198486, -0.02430690824985504, -0.9283907413482666, 0.3206397593021393, 0.5711419582366943, -0.03941863030195236, 0.1460830271244049, -0.13177959620952606, -1.2492358684539795, -0.8815586566925049, 0.4185560345649719, 0.4848950207233429, -1.4708317518234253, -0.23293623328208923, 0.05805998295545578, -1.3687124252319336, 0.3083932399749756, 0.36352288722991943, -1.1307075023651123, -0.10853379964828491, -1.2957744598388672, 0.32162684202194214, 0.6209379434585571, 0.4370153546333313, -0.20015917718410492, 0.8088477849960327, -0.4611430764198303, -0.7135999202728271, 0.053815703839063644, 0.4935743808746338, 1.1729350090026855, 0.7346552014350891, -0.42632946372032166, 1.5221891403198242, -0.11901218444108963, -0.8424748778343201, -0.1445024013519287, 0.5022905468940735, -0.8571555614471436, 0.3491678833961487, 0.8653426170349121, -0.14873239398002625, 1.1546630859375, 1.0231478214263916, 0.8403071165084839, 1.1120686531066895, 0.590329647064209, -0.10524561256170273, -0.6748861074447632, -0.3325136601924896, -0.8131656646728516, -0.10599435120820999, -1.0640649795532227, -0.32999539375305176, -0.052016958594322205, -1.0917260646820068, -0.629845917224884, 0.9709183573722839, 0.7787643671035767, -0.8817351460456848, -0.1142040565609932, -1.1005109548568726, 0.23750804364681244, -0.31936585903167725, 0.5654132962226868, 0.1484246551990509, -0.15624016523361206, 0.4636664390563965, -0.24211840331554413, -0.10200726985931396, -0.6555699110031128, -0.10933239012956619, -0.4392857253551483, 0.17455366253852844, -0.4741310775279999, 0.24498337507247925, 0.2074064016342163, -0.92171311378479, -0.6119421720504761, 1.8680596351623535, 0.6460480093955994, -0.12856963276863098, -0.07009201496839523, -0.6834397315979004, -0.35653746128082275, 0.5597814321517944, -0.25380975008010864, 0.970064640045166, -0.48641932010650635, 0.4760226011276245, 0.44301337003707886, -0.1951330006122589, -0.7158623933792114, -0.052511684596538544, -0.764683187007904, 0.5470755100250244, 1.3277664184570312, 0.13458478450775146, -0.32893064618110657, 1.5437288284301758, 0.7911679744720459, -0.21674737334251404, 0.763874888420105, 0.0478367805480957, -0.04281843826174736, 0.3114568591117859, 0.4484010338783264, 0.7580803632736206, -0.6149110794067383, 0.7179638147354126, 0.4416951537132263, 0.05431355908513069, 1.1252596378326416, -1.1885496377944946, -1.9449293613433838, -0.06627769023180008, -0.5141580104827881, -0.06513851881027222, 0.9141773581504822, -0.390636146068573, -0.21293790638446808, 0.21241195499897003, 0.5405974388122559, 0.06477827578783035, -0.5214090347290039, -0.5983464121818542, -0.4519045650959015, 0.2085629552602768, 0.39657062292099, -0.5265098810195923, 0.9622718691825867, -0.44509053230285645, -0.242702454328537, -0.7492250204086304, -0.22253841161727905, -0.05735396593809128, 0.6181912422180176, 0.8155807256698608, 0.09557449072599411, -0.33934125304222107, -1.0024017095565796, -0.012764312326908112, 0.050741687417030334, -1.1451300382614136, -0.19347436726093292, -0.4683295488357544, -1.6307260990142822, 0.3511705994606018, 0.7263811826705933, -0.24318549036979675, -0.2729138135910034, -0.8678035736083984, -0.9496639966964722, 0.6853393912315369, 0.3120933175086975, 0.7140762805938721, -1.3045861721038818, 0.4859899878501892, 0.06429336965084076, -0.7212477922439575, -0.6576929092407227, -0.7917052507400513, 0.662177324295044, -0.31828659772872925, 0.4328193962574005, -0.08091180771589279, -0.10357822477817535, 0.5104860067367554, -1.0293211936950684, 0.3087542653083801, -0.25164929032325745, 0.09311601519584656, -0.12101094424724579, -1.267773151397705, -0.32186469435691833, -0.05005042254924774, -0.050435908138751984, 0.6246017813682556, 0.44327935576438904, 0.11777499318122864, 0.26230788230895996, -0.7447754740715027, 0.06427295506000519, 0.523919939994812, -0.10142611712217331, 0.4217519760131836, 1.295865535736084, 1.5596275329589844, -0.11017350852489471, -0.2270057201385498, 0.028780154883861542, 0.7239811420440674, -1.2564254999160767, -0.19860245287418365, -1.6662418842315674, -0.8117200136184692, -1.1727043390274048], [-0.4370487928390503, 1.5874011516571045, -2.5767321586608887, -0.791496992111206, -0.1473293900489807, 0.17986764013767242, 1.4439969062805176, 0.4913526177406311, 0.369948148727417, -0.3087076246738434, -1.4939119815826416, 0.27662941813468933, 1.559338927268982, 0.8457896113395691, 0.600634753704071, -0.43770644068717957, -0.014074372127652168, -0.24024352431297302, 1.617178201675415, 1.2585041522979736, -1.1557809114456177, -0.3505581021308899, -0.5832545757293701, 0.04061124473810196, 0.46977129578590393, -0.9172930121421814, -1.3325906991958618, -0.7053202390670776, -1.6813987493515015, -0.9749122858047485, 0.8914746046066284, -0.7273484468460083, 0.024767128750681877, -0.34330928325653076, -1.0623385906219482, 0.10798174142837524, 1.4536256790161133, 0.5069915652275085, 0.8412377238273621, 0.6603624820709229, 2.8052778244018555, 0.3548237383365631, -0.1670622080564499, -1.1797356605529785, -0.5855389833450317, 0.19877471029758453, 0.053528349846601486, -1.0518428087234497, 0.30982962250709534, -0.18599680066108704, 0.8004198670387268, -0.47462034225463867, 1.079483151435852, 0.5599892139434814, 0.11144372820854187, 0.17993682622909546, 0.7502492666244507, -0.20289550721645355, 0.22376258671283722, 0.1639927625656128, 0.3215610086917877, 0.6154927611351013, -0.17006926238536835, 1.0896837711334229, 0.10702546685934067, -0.36417099833488464, -0.0028034148272126913, 0.48100388050079346, 0.5171621441841125, -0.6599410772323608, 0.693748414516449, 0.006746105384081602, 0.03226771578192711, -0.019797898828983307, -0.9490869641304016, 0.5040104985237122, 0.24091671407222748, 0.29677045345306396, 0.23560181260108948, 1.2511779069900513, -0.7620688676834106, -0.3320055902004242, 0.5749853849411011, 0.597050666809082, 1.2031402587890625, 0.7703918218612671, 0.4102427065372467, 0.008612471632659435, -0.4242013990879059, 1.7043888568878174, 0.010123763233423233, 0.1417171061038971, 0.38492053747177124, -0.5793431997299194, -0.2550326883792877, -0.38319146633148193, -0.08188822865486145, -0.8134838938713074, 0.21080662310123444, -0.8155153393745422, -0.4561613202095032, -1.436761736869812, 0.19408825039863586, 0.015775166451931, 0.4381142258644104, 1.2225146293640137, -0.3223588168621063, 0.036530524492263794, -0.6779576539993286, -0.5294266939163208, 0.043688636273145676, 0.09584123641252518, -0.6263900995254517, -0.9713443517684937, -1.00991952419281, 0.9343386888504028, 0.38541844487190247, -0.2180371731519699, 0.21366597712039948, 0.36631283164024353, -1.169614553451538, -0.5094364285469055, -0.09337493032217026, 0.6281187534332275, 0.07254292815923691, 0.3220008313655853, -0.23435604572296143, -0.2181144654750824, 0.7408252358436584, 0.4153141379356384, -0.019741958007216454, -0.18175750970840454, 0.5565316081047058, 0.8605382442474365, -0.4670732319355011, 1.0102614164352417, 0.20984473824501038, -1.686747431755066, -0.5945625901222229, 0.11038213223218918, 0.49805551767349243, -0.3349520266056061, -0.3976958096027374, -0.6239234805107117, 0.08751019090414047, -0.9233133792877197, 0.7783710360527039, -0.1908458024263382, -0.4550268352031708, -0.3660193681716919, -1.328115463256836, 0.4365673363208771, 0.02517510950565338, 1.2080985307693481, 0.06380227953195572, -0.7645118236541748, 0.29577869176864624, 0.13101939857006073, 0.04789808392524719, 0.9704282283782959, 0.5384578108787537, -0.14329932630062103, -0.574612021446228, 0.9866799116134644, -0.09541603177785873, -1.053178071975708, 0.5054467916488647, 1.1232373714447021, 0.03740210086107254, 0.791858434677124, 0.19214916229248047, 0.263626366853714, -0.49854546785354614, -0.06423953920602798, 0.5852534174919128, -1.7437238693237305, 0.9680420160293579, -0.7389258742332458, -0.9943974614143372, -1.1583666801452637, 0.3660041093826294, -0.5884174704551697, 0.03800337016582489, -0.05825285241007805, 1.0284353494644165, -0.18280085921287537, -0.20795433223247528, -0.7503682971000671, 0.24229036271572113, -1.1111174821853638, -0.8224233984947205, 0.21725162863731384, -1.2677638530731201, -0.4558773636817932, -0.470187246799469, -0.9326748847961426, 0.5163123607635498, -0.47176656126976013, -1.5603145360946655, 0.500443160533905, -0.5542135238647461, -0.6072036027908325, -1.6662770509719849, 0.2910149097442627, -1.041414737701416, 0.447472482919693, -1.2558375597000122, 0.1919281780719757, -0.7870426177978516, 0.6301698088645935, 0.29623427987098694, 0.04906606301665306, -1.4666526317596436, 0.9857835173606873, -0.08619336783885956, -0.6556929349899292, 0.35391366481781006, 0.08666212111711502, -0.39588961005210876, 0.44208571314811707, -0.12704600393772125, 1.1069964170455933, 0.5332581996917725, 0.39722970128059387, 0.5051307678222656, -0.17059952020645142, -0.16358649730682373, -0.2930934727191925, -0.5419816970825195, 0.19731369614601135, -0.8978227972984314, -0.29015713930130005, 0.9844204187393188, 0.4667466878890991, -1.332737684249878, 0.4363630414009094, 0.6797459125518799, -0.05362908914685249, 0.7953674793243408, 0.5251379609107971, 0.04313525930047035, 0.6159206032752991, -0.18764136731624603, -0.9122281074523926, -0.3810734450817108, 0.6699206829071045, 0.7829745411872864, -0.726897656917572, 0.3462497889995575, 1.2631736993789673, 0.084839828312397, 0.4690488576889038, 0.5592196583747864, -0.701831042766571, -0.5230119824409485, -0.40484189987182617, -0.3230888843536377, 0.23353813588619232, -0.5333285331726074, 1.7341128587722778, 1.1475789546966553, -0.8854556679725647, -0.3458508253097534, -0.1452772319316864, -0.05233302339911461, -0.5614906549453735, -0.3875328004360199, -0.011486900970339775, 0.514484703540802, -0.2726108133792877, -0.1647208333015442, 0.4583830237388611, -0.35833486914634705, 0.3553146719932556, -0.5013052821159363, -0.3513018786907196, -0.5594649314880371, 0.36447227001190186, 0.01788119226694107, 1.5866273641586304, 0.4231027066707611, -0.9188446998596191, -0.5839605927467346, -0.4683210849761963, 0.8303530216217041, 0.9123458862304688, 0.44272515177726746, 0.7441003322601318, 0.1926286518573761, 0.05984252691268921, 0.41720932722091675, 1.1008204221725464, -0.9679220914840698, 0.37220802903175354, -0.020692670717835426, 0.1371280401945114, 0.7389541268348694, -0.5221402049064636, -1.3309310674667358, -0.22107072174549103, 0.6654825210571289, 0.5697850584983826, 0.9183706641197205, 1.2335416078567505, -0.002475516404956579, -0.3168407380580902, -0.03882654011249542, -0.3027915060520172, -0.5784849524497986, -0.5609763860702515, -0.6827258467674255, -0.7308980226516724, 0.12550948560237885, 0.3106819689273834, 0.003644367214292288, 0.646087110042572, -0.05030323192477226, 1.3706495761871338, 0.8692483901977539, -0.28591081500053406, -0.5776767134666443, 0.06626543402671814, 0.11770046502351761, -0.13061131536960602, 0.29884210228919983, 0.3867122232913971, -1.9336026906967163, -0.5948675274848938, 0.39269763231277466, -0.05363841727375984, 0.6051045060157776, -0.06364890933036804, 0.28196099400520325, -0.7346796989440918, -1.0171804428100586, 0.5112268924713135, 1.065491795539856, 0.13971030712127686, -0.7281727194786072, -0.826076090335846, 1.0592800378799438, 1.4334237575531006, 0.6911522150039673, -0.9461848735809326, 0.76978999376297, -0.38090527057647705, 0.2088320255279541, -0.5268071889877319, -0.02723768725991249, 0.6848913431167603, -0.11490502208471298, -0.14988704025745392, 0.5939295291900635, -0.16653364896774292, -0.009614020586013794, 0.4601505696773529, 0.5760746002197266, 0.7318426966667175, 0.13097649812698364, 0.17018269002437592, 1.3103262186050415, 0.0030454311054199934, -0.30038776993751526, -1.8788660764694214, 1.2618862390518188, 0.4771537482738495, 1.3514233827590942, -0.14707200229167938, 0.785269558429718, 0.5456264615058899, -0.7708790302276611, 0.2874092161655426, 0.4055764079093933, 0.9451785683631897, 0.5063685178756714, -0.6068093180656433, -0.584373414516449, 0.07520978152751923, -0.26590999960899353, -0.7210097908973694, -0.473269522190094, -0.004881085362285376, -0.9583609104156494, -0.5886712074279785, 0.7849992513656616, 0.7722470164299011, -0.8548648357391357, -0.21307246387004852, 0.5966101288795471, 0.5636575818061829, 0.1978161334991455, -0.25233376026153564, -0.8884092569351196, 0.048872508108615875, -0.05523604527115822, -1.4201488494873047, 0.1159314289689064, 0.21272511780261993, 0.40376320481300354, 0.5914812684059143, -1.5644354820251465, -0.2506399154663086, 0.3727853298187256, 0.2676825523376465, 0.6731663346290588, 0.9241135716438293, 0.005010113585740328, -0.2583182752132416, 0.600869357585907, -0.6075356006622314, 0.06074976548552513, 0.949177086353302, 0.42503514885902405, 0.4324437379837036, -0.0049750665202736855, 1.0410352945327759, 0.35931187868118286, 0.3535436689853668, -0.5524027943611145, 0.42301440238952637, -0.47707048058509827, 0.24105152487754822, 0.13051903247833252, 0.2642419934272766, 2.282350540161133, 0.08456256985664368, 0.6781291961669922, 1.2685149908065796, -0.5647340416908264, -1.4431275129318237, 0.6840652823448181, -0.07331186532974243, 0.36354541778564453, -0.6075826287269592, 0.6515876650810242, 0.16205726563930511, -0.6222079992294312, 0.2683967351913452, 0.8740497827529907, 0.8470026850700378, 0.2303488552570343, 0.21685576438903809, 0.32007142901420593, 0.6243957281112671, 0.9288405776023865, 0.5074909925460815, 0.1961873471736908, 0.0238431878387928, -0.861173152923584, 0.7203328609466553, -0.781176745891571, -0.5093115568161011, 0.6157081723213196, 0.32114091515541077, 1.004520297050476, -1.622454047203064, -0.7145832180976868, 0.7057704329490662, 0.6186574697494507, 0.4687280058860779, 0.5571122169494629, 1.664150595664978, -0.5338351726531982, 0.03212757781147957, 0.8304558396339417, -0.4024082124233246, 0.8084427118301392, 0.2694522738456726, -0.4498879909515381, 0.27691689133644104, -0.3092992603778839, -0.13514423370361328, -0.37819814682006836, -0.4509001076221466, -0.5486191511154175, -0.3791164457798004, 0.2624356746673584, 0.2524884343147278, 0.25187841057777405, 0.69526606798172, -0.4091950058937073, -0.7095322608947754, 0.5241432785987854, -0.6770216822624207, 0.1758926510810852, -0.27295053005218506, -0.7930456399917603, -0.2478930652141571, -0.5870323181152344, -0.43623510003089905, 0.3742905557155609, -1.2288120985031128, -0.6701809167861938, 0.04370187222957611, -1.1306341886520386, -0.16752199828624725, 0.47794681787490845, 1.7536283731460571, 1.346807599067688, 0.1716310977935791, -0.33494359254837036, 0.3397034704685211, -0.9598433971405029, -0.5438152551651001, 1.0780985355377197, -0.708347499370575, -0.47843289375305176, -1.326852560043335, -0.5947514772415161, 1.6257587671279907, 0.35866400599479675, 0.14511939883232117, 0.6940075755119324, 0.5436326861381531, 1.4731166362762451, -0.4160464406013489, -1.3418132066726685, 0.5687869191169739, -0.22477149963378906, 0.6890491247177124, 0.8905265927314758, -0.730390727519989, -1.1892896890640259, 0.05267605930566788, -1.479127287864685, 1.4927924871444702, 0.4610324501991272, -0.9721964001655579, 1.1087194681167603, 0.5283843874931335, 0.10489190369844437, 0.4324071407318115, -0.7683115601539612, 0.4347453713417053, 0.7683017253875732, -0.4388256371021271, -0.5741335153579712, 0.6664924621582031, -0.18274758756160736, 0.28717169165611267, -0.377830445766449, 0.7806128859519958, -0.2480994611978531, -0.3018965423107147, -0.18537086248397827, 0.33432766795158386, 0.4245965778827667, 0.5230181813240051, -0.2779175341129303, -0.4404526352882385, 0.10011415183544159, -0.8728299140930176, -0.32561731338500977, 0.04533353075385094, -0.04750186204910278, -0.09693465381860733, -1.7146899700164795, 0.17653141915798187, -0.4177548587322235, 0.21334385871887207, 0.012789526954293251, -0.720805287361145, 0.4077482521533966, 0.15229803323745728, -0.24201829731464386, 0.7173258066177368, -0.31590014696121216, -0.6024782061576843, -0.46330803632736206, -0.6343560814857483, 0.20057182013988495, -1.829897403717041, -0.18100954592227936, -1.0393922328948975, -0.14316152036190033, 0.30143672227859497, 0.27305614948272705, 0.1796780526638031, -0.6826131343841553, -1.3426117897033691, -1.3328649997711182, 0.037471529096364975, 0.40454769134521484, -1.1492862701416016, 0.19758862257003784, 0.34461721777915955, -0.892096757888794, 0.5775507092475891, 0.007325115613639355, -0.899994432926178, -0.10709503293037415, -1.6325633525848389, 0.5902206897735596, 0.1308521181344986, 0.18098510801792145, -0.26580744981765747, 0.7374642491340637, -0.6454735994338989, -0.2165195345878601, -1.5149410963058472, -0.06442733854055405, 1.4244961738586426, 1.050434947013855, -1.0746442079544067, 1.2159134149551392, -0.6627303957939148, -1.0599507093429565, 0.2407381534576416, 0.5931046605110168, -0.2918449342250824, -0.06517277657985687, 0.4266246259212494, -0.19406773149967194, 0.22244539856910706, 1.5719056129455566, -0.11192820966243744, 1.0818182229995728, 0.6506116390228271, -0.08098803460597992, -0.6886664628982544, -0.2254686951637268, 0.27822545170783997, 0.5106768012046814, -1.024328351020813, 0.06624174118041992, -0.2559199631214142, -1.1856354475021362, -0.45691630244255066, 0.28749561309814453, 0.5869805812835693, -1.1914682388305664, -0.026006203144788742, -0.8740776777267456, 0.4446137547492981, -1.2284083366394043, 0.20485836267471313, 0.17787589132785797, -0.022197598591446877, 0.014303544536232948, 0.004801933187991381, -0.38071510195732117, -0.6654024124145508, 0.563565194606781, -0.2251022756099701, 0.30388113856315613, -0.4891771078109741, 0.7714534997940063, 0.6371031999588013, -0.2303507775068283, -0.7125470042228699, 1.5355459451675415, 0.7685150504112244, -0.09157388657331467, -0.11535043269395828, -0.1841271072626114, -0.31417450308799744, 0.9490715265274048, -0.4174804091453552, 0.15695378184318542, -1.2076435089111328, 0.6309384107589722, 0.2719145715236664, -0.46011558175086975, -0.7800679206848145, 0.15206202864646912, -0.7967020869255066, -0.012189893051981926, 0.41750600934028625, -0.22582659125328064, -0.04443327710032463, 1.5138881206512451, 0.46657609939575195, 0.29053470492362976, 0.4789442718029022, -0.33778005838394165, 0.37590792775154114, 0.05400458350777626, 0.45952707529067993, 0.6373978853225708, -0.7482506632804871, 0.07864046096801758, 0.9052721261978149, -0.1856439858675003, 0.2789718210697174, -1.1818934679031372, -1.502480387687683, 0.030711015686392784, -0.923621416091919, -0.2452719360589981, 0.7128457427024841, -0.4446161687374115, -0.4390075206756592, 0.17098911106586456, 0.700303852558136, 0.3007659614086151, -0.5082190036773682, -0.4293808341026306, -0.304227352142334, -0.12175334990024567, 0.8990966081619263, -0.2503630220890045, 1.2709771394729614, -0.9922894239425659, 0.3367866277694702, -0.4249034821987152, -0.5021671652793884, 0.43361738324165344, 1.0161802768707275, -0.2917585074901581, -0.5473737120628357, 0.6623172760009766, -0.9347772598266602, -0.3073715567588806, 0.21643443405628204, -0.12548822164535522, 0.6652563214302063, -0.23183481395244598, -1.578354835510254, 0.10532200336456299, 0.8950180411338806, 0.251718670129776, -0.30855435132980347, -0.6231251358985901, -0.8434597849845886, 0.4329988956451416, -0.08512140810489655, 0.523565411567688, -0.5866948366165161, 0.469781756401062, 0.9281842112541199, -0.3859626352787018, -0.4980149567127228, -0.6943686604499817, 1.1290992498397827, -0.6882389783859253, 0.5546324849128723, -0.4276719093322754, -0.034433476626873016, 0.37747645378112793, -0.872350811958313, -0.47070637345314026, -0.14896723628044128, 0.08104565739631653, 0.024512486532330513, -0.760435163974762, -1.4768279790878296, -0.7341390252113342, -0.012629239819943905, -0.39498695731163025, 0.4569215476512909, 0.6248621940612793, -0.0008534053340554237, -0.5328137278556824, 0.21141964197158813, 0.3048057556152344, 0.16513659060001373, 0.09812339395284653, 1.9371851682662964, 1.5095466375350952, -0.20313973724842072, -0.07683316618204117, -0.2569541335105896, 0.7053112387657166, -0.9092100858688354, -0.20949137210845947, -1.227868676185608, -0.6591246128082275, -0.6383852958679199], [0.28986045718193054, 0.7123085260391235, -2.286497116088867, -0.26880744099617004, -0.6096882224082947, 0.43574339151382446, 0.36670318245887756, 0.7157012820243835, 0.6583956480026245, -0.9461596608161926, -0.6994540095329285, 0.14578711986541748, 1.302878737449646, 0.4070339798927307, 0.19811362028121948, -0.47666770219802856, 0.7939473986625671, 0.24852165579795837, 1.208371639251709, 0.9780315160751343, -0.9322576522827148, -1.6520954370498657, 0.11525256186723709, 0.25974172353744507, 0.17843331396579742, 0.4400566816329956, -1.0270047187805176, -0.3264703154563904, -2.140815496444702, -0.9725093245506287, 0.6365634799003601, -0.535602867603302, 0.2312767505645752, 0.3627243936061859, -0.8445634245872498, 0.05207379162311554, 1.37766432762146, 0.13732604682445526, 0.021866008639335632, 1.0204285383224487, 2.416801929473877, 0.40926775336265564, -0.7351089119911194, -0.8498775362968445, 0.493046373128891, -0.29682478308677673, 0.3695235252380371, -0.974698007106781, -0.5744034647941589, -0.16762076318264008, -0.037289414554834366, 0.5094299912452698, -0.24417154490947723, 1.5097568035125732, 0.5301083922386169, -0.6911095380783081, 0.339324951171875, -0.5189955234527588, 0.5082244873046875, 0.14701683819293976, 0.5006166696548462, 0.3105960488319397, 0.09548618644475937, 1.321117877960205, 0.18551456928253174, 0.5652274489402771, 0.17241480946540833, 0.8667894601821899, -0.12404920160770416, -0.6421347260475159, 1.065166711807251, 0.22302401065826416, -0.24534359574317932, 0.7468440532684326, -0.7125803232192993, 0.47357457876205444, 0.3452679216861725, 0.9013281464576721, -0.5849379897117615, 1.1905605792999268, -0.597124457359314, 0.29602885246276855, 0.5117281675338745, -0.1581670492887497, 0.3366284668445587, 0.14088377356529236, 0.5502694249153137, -0.34562408924102783, -0.6889449954032898, 1.2781482934951782, -0.24066628515720367, 0.17873771488666534, 0.14125975966453552, 0.10758301615715027, -0.2251192182302475, -0.4364270567893982, -0.5036576390266418, -0.46802425384521484, -0.044672541320323944, -0.6531463861465454, -0.7990322113037109, -1.37294602394104, 0.46740883588790894, 0.16274484992027283, 0.6186236143112183, 1.444784164428711, -0.169772669672966, -1.0894757509231567, 0.008034910075366497, 0.0486069954931736, -0.14210523664951324, -0.5986404418945312, -0.5032404065132141, -1.429895281791687, -0.7841207385063171, 0.3215666115283966, 0.6891022324562073, -0.5079105496406555, 0.9757845997810364, 0.5213464498519897, -0.5212778449058533, 0.18839038908481598, -0.5805730819702148, 0.5086157917976379, 0.48455512523651123, -0.06867896765470505, 0.10000431537628174, -0.29503166675567627, 0.534703254699707, 0.7704542875289917, -0.07075801491737366, -0.555283784866333, 0.5126272439956665, 1.9198036193847656, -0.45022645592689514, 0.3158555030822754, -0.18903912603855133, -1.4312865734100342, 0.12272959202528, 0.5156720280647278, 0.7956621050834656, -0.5619372725486755, 0.02190958708524704, -0.8411749005317688, -0.5475729703903198, -0.40803614258766174, 0.7362139821052551, -0.2607957124710083, -0.48180654644966125, -0.1415635049343109, -0.958832859992981, 0.23739546537399292, 0.2818916440010071, 0.3738834857940674, 0.2596520185470581, 0.07688688486814499, 0.9348286390304565, 0.26209756731987, 0.5394572615623474, 0.42168480157852173, 0.6631275415420532, -0.04572126641869545, -0.48645779490470886, 0.7492787837982178, 0.2550245523452759, -0.8256210684776306, -0.32595765590667725, 0.5566977858543396, -0.36684468388557434, 0.21712099015712738, -0.11603200435638428, -0.611992359161377, -0.8136857151985168, -0.1879020631313324, 0.18742914497852325, -1.2832826375961304, 1.3002692461013794, -0.32857808470726013, -0.8416218161582947, -1.3829429149627686, 1.612334966659546, -0.3687496483325958, -0.17496320605278015, -0.19903846085071564, 1.4728974103927612, -0.7535385489463806, -0.2047519087791443, -0.1051316037774086, -0.4746769070625305, -0.9234166145324707, -0.7875789999961853, -0.08238522708415985, -1.1815952062606812, -0.11517756432294846, -0.9882182478904724, -1.1889541149139404, 0.12280280888080597, -0.2287576049566269, -0.5306000113487244, -0.24464750289916992, 0.36590516567230225, -0.10371887683868408, -1.6305712461471558, 0.034623801708221436, -0.13522979617118835, 0.5881062150001526, -1.0088526010513306, 0.40932491421699524, -0.5777542591094971, 0.5554604530334473, 0.9735177755355835, -0.13559265434741974, -0.960868775844574, 0.7632785439491272, -0.33649519085884094, -0.8656811714172363, 0.41130930185317993, 0.11828678101301193, 0.429501473903656, -0.13711883127689362, 0.9023720622062683, 0.9491097927093506, 0.48536789417266846, 0.26650771498680115, 0.6628285050392151, 0.07968637347221375, -0.660343587398529, -0.8072307109832764, -0.3973097503185272, 0.2819978594779968, -0.8915864825248718, -0.9884994626045227, 0.5545442700386047, 0.3726080060005188, -0.9678217768669128, 0.9362309575080872, 0.34221187233924866, -0.22458216547966003, 0.247853621840477, 0.26918962597846985, 0.48766499757766724, 0.30432671308517456, -0.5602409839630127, -0.7137046456336975, -0.5778138041496277, 0.4226459860801697, 0.7493499517440796, -0.7538040280342102, 0.1823466569185257, 1.0917266607284546, 0.6572787761688232, -0.06891967356204987, 0.46064087748527527, 0.09783420711755753, -0.2366986870765686, -0.7422360777854919, -0.7176925539970398, -0.04014302417635918, -1.6828640699386597, 1.7272961139678955, 0.8052378296852112, -0.9817936420440674, -0.1395977884531021, -0.28432297706604004, -0.14641082286834717, -0.2680332660675049, -0.35277971625328064, -0.5470665693283081, 0.47129127383232117, -0.35743188858032227, 0.31659355759620667, 0.2727181017398834, -0.44001278281211853, 0.4125315546989441, -0.7945650219917297, -0.22541655600070953, 0.21857260167598724, 0.3170028328895569, 0.02495430037379265, 0.887859046459198, 0.45543143153190613, -0.8432567119598389, -0.6156577467918396, -0.49293574690818787, 1.046460509300232, -0.12980055809020996, -0.050402190536260605, 1.1994563341140747, 0.47938624024391174, -0.5948936343193054, -0.2950097322463989, 0.7711018919944763, -0.39434999227523804, -0.04120960459113121, 0.003245447762310505, -0.15646158158779144, 0.7597277760505676, -0.2338426560163498, -1.2354531288146973, -0.0019259881228208542, 0.4760305881500244, 0.5613908767700195, 1.177098035812378, 1.2343858480453491, -0.5825465321540833, -0.07795260101556778, 0.03320511430501938, -0.23045435547828674, -0.5087205171585083, -0.3950258493423462, -0.5000473260879517, -1.1414384841918945, -0.05629738047719002, -0.603333055973053, -0.096115343272686, 0.4412396252155304, 0.8921621441841125, 0.9293622374534607, 1.2437492609024048, -0.8456655740737915, -0.09385109692811966, 0.2868187725543976, -0.49283331632614136, -0.24326376616954803, 0.5000544786453247, 0.0061093345284461975, -1.0732626914978027, -0.7026934623718262, -0.17749013006687164, -0.08630825579166412, 0.9244689345359802, 0.03700510039925575, 0.5292693376541138, -1.1631879806518555, -1.198598861694336, 0.006082406733185053, 0.9324426651000977, 0.7012824416160583, -0.7367863059043884, -0.9348483085632324, 0.2572663426399231, 1.1820532083511353, 0.15408891439437866, -0.7561982274055481, 0.4498808681964874, -0.5703365206718445, -0.14795029163360596, -0.6913310289382935, 0.23660136759281158, 1.1968470811843872, -0.05775130167603493, -0.7037653923034668, 0.13647522032260895, -0.2962535321712494, -0.6939782500267029, -0.1229700967669487, -0.36387473344802856, 0.5953975915908813, 0.10005046427249908, 0.23757906258106232, 1.174670934677124, -1.0731441974639893, -0.35519784688949585, -1.949455976486206, 0.6805110573768616, 0.7494344711303711, 1.6174179315567017, 0.05815001204609871, 0.8967553973197937, 0.5716128945350647, -1.0347094535827637, -0.05886898189783096, 0.3014673590660095, 0.7975279092788696, 0.0609356127679348, -0.618644118309021, -0.2727477252483368, -0.658635139465332, -0.4984823167324066, -0.8036763072013855, -0.3704165518283844, 0.20880907773971558, -0.8138024806976318, -0.17663922905921936, 0.9466572403907776, 1.2262436151504517, -0.6977943181991577, -0.30488523840904236, -0.1256321370601654, 0.12485852837562561, 0.04086794704198837, -0.027081752195954323, -0.3743429481983185, -0.6891036629676819, 0.6400295495986938, -0.7701602578163147, 0.03723359853029251, 0.40743640065193176, -0.059030722826719284, 0.46043795347213745, -1.4199540615081787, 0.33511093258857727, -0.4962400794029236, 0.269931823015213, 0.7525478601455688, 0.046490419656038284, 0.25974249839782715, 0.4933004379272461, 0.4511614739894867, -0.19910338521003723, -0.24206750094890594, 1.4874720573425293, -0.008577506989240646, 0.03424433246254921, -0.49904850125312805, 0.22364924848079681, 0.6274279356002808, -0.08874411135911942, -0.9246491193771362, 0.8294346928596497, -0.39807388186454773, 0.6855056285858154, 0.6771873831748962, 0.4239034652709961, 1.7953749895095825, 0.2549557089805603, 0.15729789435863495, 0.6427227258682251, 0.21807147562503815, 0.11309998482465744, -0.388492614030838, 0.17419838905334473, -0.6376680135726929, -0.4142225980758667, 0.2007588893175125, 0.4058276414871216, -0.4412630498409271, 0.3041677176952362, 0.8777377605438232, 0.0888001024723053, 0.24559831619262695, -0.22660596668720245, 0.9255492687225342, 0.605407178401947, 0.724521279335022, 0.1802813857793808, 0.4344205856323242, 0.3214409053325653, -0.7980111241340637, 1.1350624561309814, -0.7862259149551392, 0.34823596477508545, 0.19371525943279266, -0.1272325962781906, 1.2675098180770874, -1.1046257019042969, -1.1460963487625122, 0.44176843762397766, 0.11102329939603806, 0.6856111288070679, 0.6823099851608276, 0.9583468437194824, -0.5335560441017151, -0.1484338790178299, 0.7514095306396484, -0.5300704836845398, 0.865038275718689, 0.45363157987594604, -0.515760600566864, 0.12176595628261566, -0.9363041520118713, -0.13063345849514008, -0.921276330947876, -0.10183224081993103, 0.04946433752775192, -0.7286337018013, 0.6994469165802002, 0.5792990326881409, 0.4005403518676758, 0.0761917233467102, -0.36162909865379333, -0.9090496301651001, 0.784273624420166, -1.0029276609420776, -0.07925519347190857, -0.04164682328701019, -1.0870311260223389, -0.46741071343421936, 0.03550216928124428, -0.8849486112594604, -0.6259102821350098, -1.061279296875, 0.1768287867307663, 0.3279184401035309, -0.9233107566833496, -0.07229353487491608, 0.6890672445297241, 1.0292500257492065, 0.839449942111969, -0.06778512895107269, 0.1320764422416687, 1.0942453145980835, -0.7558718919754028, -0.1433679312467575, -0.15643520653247833, -0.32024499773979187, -0.40039169788360596, -0.6613218784332275, -0.985000491142273, 1.5213037729263306, 0.5397953391075134, -0.2008591592311859, 0.01875295676290989, 0.5244477391242981, 2.1200613975524902, -0.3293227553367615, -1.2540621757507324, 0.2830306589603424, -0.6774961352348328, 0.40638503432273865, 0.6741753816604614, -0.5374304056167603, -0.41465872526168823, -0.6916823387145996, -1.0474159717559814, 1.7345592975616455, 0.2572042644023895, 0.10527462512254715, 1.0474146604537964, 1.088413119316101, -0.08884676545858383, 0.7745598554611206, -0.23479075729846954, -0.1656913161277771, 0.16036254167556763, -0.09542485326528549, -0.7599166035652161, 1.020142912864685, 0.6048182845115662, -0.21665385365486145, -0.5161817073822021, -0.08656270056962967, -0.9237484931945801, -0.21173100173473358, -0.2835562825202942, 0.19582276046276093, -0.04607764258980751, 0.21266408264636993, 0.1894795000553131, -0.49377861618995667, -0.23223061859607697, -0.4803473651409149, 0.34725579619407654, 0.14110951125621796, 1.1116732358932495, -0.11388327181339264, -1.0605872869491577, 0.554672360420227, -0.5177614092826843, 0.06086304038763046, -0.14950411021709442, -0.3738611042499542, 1.1773651838302612, 0.5413360595703125, -0.35950368642807007, 0.8871651887893677, -0.5247299075126648, -0.14985251426696777, 0.09865086525678635, -0.2592027187347412, 0.59367436170578, -1.415040135383606, -0.03226128965616226, -0.1398688107728958, -0.5324447154998779, 0.646484375, 0.6579982042312622, -0.17572259902954102, -0.6519213914871216, -1.3350493907928467, -0.5991021990776062, -0.1327095925807953, 0.4220989942550659, -0.4733627438545227, -0.00952630490064621, 0.5970695614814758, -1.3702102899551392, 0.571147620677948, 0.36952659487724304, -1.1951789855957031, -0.2314872294664383, -1.1837782859802246, 0.440395325422287, 0.1207907646894455, -0.16721035540103912, -0.5685228109359741, 0.530775785446167, -0.7415308356285095, -0.7902831435203552, -1.064816951751709, -0.568311870098114, 1.087231993675232, 1.1197786331176758, -0.9452452659606934, 0.9186781644821167, 0.23639146983623505, -0.6444017887115479, -0.2742254436016083, 0.16223472356796265, -0.34272444248199463, -0.0850803479552269, 0.4799179136753082, -0.3404048979282379, 0.4411350190639496, 1.4862850904464722, 1.1760865449905396, 1.0254863500595093, 0.6681122779846191, 0.5704545378684998, -1.4875437021255493, -0.6101895570755005, -0.32102617621421814, -0.216542586684227, -0.4390382468700409, 0.0002483595162630081, -0.6091984510421753, -0.8560336232185364, -0.1135922223329544, 1.0687379837036133, 0.4730238914489746, -0.7744724154472351, 0.20381218194961548, -0.9537768959999084, 0.08432914316654205, -0.2777103781700134, 0.7087712287902832, 0.16053137183189392, -0.5902140140533447, 0.646687388420105, -0.4701366424560547, -0.6673213839530945, -0.5826894044876099, -0.10852508991956711, -0.16437627375125885, 0.6515175700187683, -0.23436647653579712, 0.18543939292430878, 0.2773040235042572, 0.14065252244472504, -0.7762607932090759, 1.6528189182281494, 0.7209967970848083, 0.06603194028139114, 0.2296469509601593, 0.13807855546474457, -0.16400043666362762, 0.35192251205444336, -0.2999703586101532, 0.5606278777122498, -1.0972323417663574, 0.2915552854537964, -0.25853800773620605, 0.15292081236839294, -0.6018409729003906, 0.7734764218330383, -0.5945636034011841, 0.2977895736694336, 0.9848122000694275, 0.07765579223632812, -0.7974967956542969, 0.7891495227813721, 0.9073331356048584, -0.5430256128311157, 0.49476930499076843, -0.33819568157196045, 0.4255222678184509, -0.016351565718650818, 0.5157907009124756, 0.7477936148643494, -0.7055864334106445, 0.7295881509780884, 1.040818452835083, -0.3605978488922119, -0.015241516754031181, -0.6150040626525879, -1.532182216644287, -0.1310088336467743, -1.0469180345535278, -0.9143177270889282, 0.1624259650707245, -0.603603184223175, -1.0683562755584717, 0.5003989338874817, -0.11315064877271652, 0.6235678791999817, -0.7136950492858887, 0.353656142950058, -0.5176886916160583, -0.023247143253684044, 0.3211463391780853, 0.14740918576717377, 0.7262040376663208, -0.41521087288856506, -0.30818280577659607, -0.5535506010055542, -0.016418419778347015, 0.26309144496917725, 0.45886102318763733, -0.05035475268959999, -0.18514394760131836, 0.0044047096744179726, -0.4212413728237152, -0.6837453842163086, 0.4309041202068329, 0.15484458208084106, 0.2136717289686203, -0.3979029357433319, -0.8690661191940308, 0.8428880572319031, 0.45906174182891846, -0.47904330492019653, 0.05745164304971695, -0.492052286863327, -0.8457702398300171, 0.028598275035619736, -0.03199762850999832, 0.7371949553489685, -0.6992352604866028, 1.0537844896316528, 0.2747802138328552, 0.07869086414575577, 0.09563557058572769, -0.28593647480010986, 0.5659099221229553, -0.12594814598560333, 0.8419446349143982, -0.1070147454738617, -0.9540931582450867, 0.7867504954338074, -0.9118250012397766, -0.0631726011633873, 0.582797646522522, 0.38446903228759766, 0.49889105558395386, -0.9945805072784424, -0.7658331394195557, -0.3687763810157776, 0.20507344603538513, 0.30770644545555115, 0.39807644486427307, 0.04219917207956314, -0.6010742783546448, -0.42893674969673157, -0.00802002102136612, 0.038615792989730835, 0.15119145810604095, 0.4566469192504883, 1.4551435708999634, 1.9737361669540405, -0.17938706278800964, -0.05808284506201744, -0.07396317273378372, 0.7234983444213867, -0.9083318114280701, -0.34917962551116943, -0.8852024078369141, 0.12595385313034058, -0.10096025466918945], [-0.1214422658085823, 1.8893104791641235, -2.171353816986084, -1.2179760932922363, -0.4337505102157593, -0.42902183532714844, 0.293069988489151, 0.16808636486530304, -0.12580616772174835, -0.7120541930198669, -1.5613787174224854, -0.1080901026725769, 1.6293697357177734, 1.2152396440505981, 0.6792392134666443, 0.8259853720664978, 1.021634578704834, -0.09292273968458176, 0.35895901918411255, 1.0810900926589966, -0.4000263512134552, -0.8564921617507935, -0.6927168965339661, -0.17095935344696045, 0.46570104360580444, 0.3022700250148773, -1.483831763267517, -0.15010277926921844, -1.4971582889556885, -1.2769150733947754, 0.28286951780319214, -0.6677533388137817, 0.14759495854377747, -0.18134063482284546, -1.6220715045928955, -0.0837029218673706, 1.4595497846603394, 0.32355332374572754, -0.005281446501612663, 1.2210115194320679, 2.337949275970459, 0.012358391657471657, 0.34335508942604065, -1.1621965169906616, 0.7219018340110779, -0.282672256231308, 0.3443982005119324, -1.2620495557785034, -0.5559506416320801, -0.37523892521858215, 0.3265064060688019, 0.5033783912658691, 0.10565221309661865, 1.002310872077942, 1.160175085067749, 0.29370591044425964, -0.5956149697303772, 0.4205615222454071, -0.5515509247779846, 0.5294821262359619, 1.4410827159881592, 0.4186648726463318, -0.5202636122703552, 0.255381315946579, 0.3201759457588196, -0.008248621597886086, 0.13125090301036835, 0.6405606269836426, -0.5986405611038208, -0.34683674573898315, 0.16791993379592896, 0.9537544846534729, -0.3435222804546356, 0.2396754026412964, -1.489810824394226, 0.46230119466781616, 0.7539380788803101, 0.4971613585948944, -0.12653298676013947, 1.5644371509552002, -1.0566227436065674, -0.1408921182155609, 0.261625736951828, -0.48901990056037903, 0.7685444951057434, -0.04747965186834335, 0.3381432592868805, -0.3755095899105072, -0.6759853363037109, 1.1093688011169434, -0.1406901329755783, 0.5134124755859375, 0.2557298243045807, -0.05174338072538376, -0.3693380355834961, -0.7606302499771118, 0.34284430742263794, -0.7246279120445251, -0.3335629403591156, -0.948428213596344, -0.6316001415252686, -1.1394379138946533, 0.8270927667617798, 0.6274236440658569, 1.0888142585754395, 1.3131757974624634, 0.3211301565170288, -1.6313496828079224, -0.7738749384880066, 0.19021470844745636, -0.12628403306007385, -0.37653183937072754, -1.172653317451477, -1.44255793094635, -0.7021283507347107, 0.574174702167511, 0.4095590114593506, -0.7284795045852661, 1.1711914539337158, 0.42703455686569214, -0.8792621493339539, -0.7370322346687317, -0.15246258676052094, 0.6211805939674377, 0.7869606018066406, 0.3981724679470062, -0.7025400400161743, -0.32723191380500793, 0.06652764230966568, 0.20700837671756744, 0.7953693270683289, 0.09783682972192764, -0.6384106874465942, 1.280991554260254, -0.136733278632164, 0.9038125872612, -0.24280530214309692, -0.7401344180107117, -0.041991423815488815, -0.07337657362222672, 0.34011492133140564, -0.6499128937721252, -0.8633188009262085, -0.7826026082038879, -0.04039369896054268, -0.5309470295906067, 0.3407379984855652, -0.19836056232452393, -0.5943408608436584, -0.25019145011901855, -1.2005659341812134, 0.6905947327613831, 0.17138293385505676, 1.236232876777649, 0.3435150384902954, 0.3132436275482178, 0.8719455003738403, -0.25466546416282654, -0.09858351200819016, 0.5435689091682434, 0.6658064723014832, 0.1419268250465393, -0.5768641233444214, 1.1180421113967896, 0.1616918444633484, -0.4473206698894501, 0.4988977015018463, 0.049685850739479065, -0.13446453213691711, 0.26875415444374084, -0.34285271167755127, -0.23730002343654633, -0.23533391952514648, 0.4831063151359558, 0.48787012696266174, -1.215457797050476, 0.937103271484375, -0.4539896249771118, -0.9831951260566711, -1.0743380784988403, 0.9047404527664185, -0.6571308970451355, 0.17111773788928986, -0.17302639782428741, 0.7193027138710022, -0.10209168493747711, -0.36310476064682007, -0.28258785605430603, -0.2646048069000244, -0.39521753787994385, -1.0490418672561646, -0.07378882169723511, -0.9096269011497498, 0.07970687747001648, -0.9705578684806824, -1.1991499662399292, 0.4932737946510315, 0.20363932847976685, -0.8422999978065491, -0.04721242934465408, -0.2204819768667221, -0.22742420434951782, -1.7964816093444824, -0.03849737346172333, -0.9808156490325928, 1.3558107614517212, -0.4062361717224121, 0.0605308897793293, -1.0706148147583008, 0.1697906255722046, 0.7626381516456604, 0.3271149694919586, -0.9089388847351074, 0.7948146462440491, 0.6060869097709656, -0.9562383890151978, 0.015227047726511955, -0.2608870565891266, 0.46925923228263855, 0.22751878201961517, 1.1370196342468262, 0.35391417145729065, 0.812887966632843, 0.1426059901714325, 0.6118062138557434, -0.09585577994585037, -0.9569942355155945, -0.714756429195404, -1.0088260173797607, 0.27805376052856445, -0.9947325587272644, -0.536317765712738, 0.7631195187568665, 1.1814790964126587, -0.6926831603050232, 1.1003732681274414, -0.29844650626182556, 0.34451350569725037, 0.5262443423271179, 0.7063761949539185, 0.3172299563884735, 0.09707924723625183, -0.5454493761062622, -0.2554917633533478, -0.3583887815475464, 0.5203452110290527, 0.9105277061462402, -0.4898413419723511, -0.11658783257007599, 1.5063755512237549, 0.20900385081768036, -0.2335628867149353, 0.773837149143219, 0.6054639220237732, -0.6078912019729614, -0.7156235575675964, -0.30301934480667114, -0.1137721985578537, -0.5591623187065125, 1.2903757095336914, 0.9019679427146912, -1.6845589876174927, -0.5854050517082214, -0.46709683537483215, 0.05744538456201553, -0.6458957195281982, 0.16649314761161804, -0.5321776866912842, 0.7368824481964111, -0.03573179617524147, 0.020063744857907295, 0.2014179676771164, -0.13020837306976318, 0.9887766242027283, -0.18657320737838745, -0.3269086182117462, -0.2291250377893448, 0.6380524039268494, -0.002194315195083618, 1.0129073858261108, 0.36424264311790466, -1.873823642730713, -0.6918829083442688, -0.5509839653968811, 0.9523897767066956, 0.10114943236112595, -0.4267295002937317, 1.3438122272491455, 0.5852529406547546, -0.8275532126426697, 0.017851263284683228, 0.22259774804115295, -0.25157496333122253, -0.21222108602523804, -0.5332235097885132, 0.18018504977226257, 0.49181899428367615, -0.5968270301818848, -0.6926625967025757, 0.0800282433629036, 0.3119564354419708, 1.1265778541564941, 1.0339634418487549, 1.3471705913543701, 0.06003174930810928, -0.25123506784439087, -0.3918660581111908, 0.2606426179409027, -0.3264835476875305, -0.12838828563690186, -0.3850551247596741, -1.1213380098342896, -0.190294086933136, -1.0121763944625854, -0.11108847707509995, 0.8832991719245911, -0.10672692209482193, 0.6619689464569092, 0.6275782585144043, -0.8463377356529236, -0.7784180641174316, -0.22987309098243713, 0.12778069078922272, -1.0092406272888184, 0.6133460998535156, 0.524682879447937, -0.8966416120529175, -0.06566081941127777, 0.3789575695991516, -0.06798528879880905, 0.5613324046134949, -0.2990441918373108, 0.2709372341632843, -0.9215561747550964, -0.2564444839954376, 0.2585601508617401, 1.270530104637146, 0.14169640839099884, -0.5047624707221985, -0.16555388271808624, -0.2563401460647583, 0.011444631963968277, 0.0015545031055808067, -0.6718726754188538, 0.433857798576355, -0.1654677540063858, -0.5510338544845581, -0.9669846892356873, 0.4115452766418457, 1.2902939319610596, -0.39179348945617676, -0.057342976331710815, -0.11198753118515015, -0.08534259349107742, -0.005741363391280174, 0.6766026616096497, -0.29453882575035095, 1.7289525270462036, -0.24834276735782623, 0.26216110587120056, 1.119110107421875, -0.2331930696964264, 0.5579303503036499, -1.3962870836257935, 0.8862997889518738, 0.1636987179517746, 1.9719470739364624, 0.6532544493675232, 0.33482328057289124, 0.47710120677948, -0.46662116050720215, 0.012308333069086075, 0.3720490634441376, 0.7994100451469421, -0.14900539815425873, -0.6902524828910828, 0.011635661125183105, 0.19138818979263306, -0.26944926381111145, -0.6148755550384521, -0.36083754897117615, 0.3016693592071533, -0.6604841947555542, -0.090156190097332, 1.1068077087402344, 0.27921003103256226, -0.6092268228530884, 0.09631615877151489, 0.49875855445861816, -0.3560705780982971, -0.08378826081752777, -0.37441354990005493, -0.3169892132282257, 0.016650717705488205, 0.40057677030563354, -0.8270885944366455, -0.48612546920776367, -0.0675325021147728, -0.10108856111764908, 0.5484704971313477, -0.9140429496765137, -0.5320094227790833, -0.558455765247345, -0.384225457906723, 0.6620818972587585, 0.3002844750881195, 0.5565375089645386, 0.04325129836797714, 0.2398376613855362, -0.2292241007089615, 0.13701891899108887, 1.479854702949524, 0.25000011920928955, -0.037126556038856506, -0.746598482131958, -0.2997109293937683, 0.3132004737854004, -0.2035840004682541, -0.6188220381736755, -0.08594360202550888, -0.7401507496833801, 0.19018356502056122, 0.13254541158676147, -0.07145027071237564, 1.851367473602295, 0.11957304179668427, 0.46695974469184875, 0.7760671973228455, -0.03191698342561722, -0.7738973498344421, 0.21515138447284698, 0.4472384452819824, -0.10411244630813599, -0.49431538581848145, 0.39224255084991455, 0.5315482020378113, 0.21450814604759216, 0.5377742052078247, -0.03973909839987755, 0.8011224865913391, 0.1079375222325325, -0.10100170969963074, 0.5161091089248657, 0.6512356400489807, 0.9501656889915466, 0.3392740786075592, 0.8953402042388916, -0.5236456990242004, -0.8112086653709412, 1.066005825996399, 0.3257806599140167, 0.6003717184066772, 0.01373166125267744, 0.674911618232727, 1.5531816482543945, -1.278407335281372, -0.6330662965774536, 0.3472263514995575, -0.041830070316791534, 0.481231153011322, 1.069953441619873, 1.1069227457046509, -1.1572405099868774, -0.10000867396593094, 0.7310740947723389, -0.47311171889305115, 0.5323832631111145, -0.541646420955658, -0.3119921088218689, 0.3822494447231293, -0.45085734128952026, 0.18269263207912445, -0.778237521648407, -0.5392878651618958, 0.5946372747421265, -0.31295961141586304, 0.3088516592979431, 0.33808550238609314, -0.08458522707223892, 1.103682041168213, -0.38577061891555786, -1.2432674169540405, 0.511855959892273, -0.8915235996246338, 0.12467856705188751, 0.022260263562202454, -0.7733922004699707, -0.775421679019928, -0.8591905832290649, -0.5501366853713989, -0.1302538961172104, -1.389685869216919, 0.07917126268148422, 0.21232585608959198, -1.505449891090393, 0.3764747381210327, 0.5700858235359192, 1.2882040739059448, 1.3733357191085815, 0.2651125490665436, 0.7480145692825317, 0.07415823638439178, -0.7378353476524353, 0.37168583273887634, 0.3430250883102417, -0.61518394947052, 0.40208882093429565, -1.2497044801712036, -0.7798494100570679, 1.0528342723846436, 0.6715684533119202, 0.3300839364528656, -0.08144187927246094, 0.30804571509361267, 1.603597640991211, -0.5169647336006165, -1.2737237215042114, 0.17517563700675964, -0.7144507765769958, 0.5827880501747131, 0.3335144519805908, -1.249537706375122, -1.0021953582763672, 0.14912639558315277, -1.5001994371414185, 1.4765293598175049, 0.2261260598897934, -0.8766857981681824, 0.8534791469573975, 0.6068505048751831, 0.2763601541519165, 0.9160007834434509, -1.296670913696289, -0.21077817678451538, 0.8792492747306824, -0.8489164113998413, -1.0668493509292603, 0.28751593828201294, 0.27342623472213745, 0.6919949054718018, 0.07513385266065598, 0.28738677501678467, -0.025748930871486664, -0.3120192587375641, 0.5784210562705994, 0.314895361661911, 0.8312138319015503, 0.4087921679019928, 0.34966689348220825, -0.5613325238227844, -0.36703425645828247, -0.7862584590911865, 0.22565098106861115, 0.0784272849559784, 1.5952105522155762, -0.09854072332382202, -0.8669303059577942, 0.12474959343671799, -0.28318527340888977, -0.08526443690061569, -0.13627879321575165, -0.8782751560211182, 1.2754262685775757, 0.816886305809021, -0.2684653103351593, 0.45059970021247864, -0.45754939317703247, -0.15945906937122345, -0.24441643059253693, 0.01600741222500801, 0.782900869846344, -1.8902227878570557, -0.5752298831939697, -0.22915881872177124, 0.3416370749473572, 0.10150805860757828, 0.8342620134353638, -0.4695037603378296, -0.7255626320838928, -1.410791039466858, -0.6577997207641602, -0.3597356081008911, 0.39992910623550415, -0.6241804361343384, 0.2263399064540863, 0.21132421493530273, -1.5107024908065796, 0.7507140040397644, -0.46178603172302246, -1.3155148029327393, -0.7448266744613647, -1.326465368270874, 1.2110344171524048, 0.3611544966697693, -0.03974057361483574, -0.08055096864700317, 0.8393981456756592, -0.19290687143802643, -0.2643035650253296, -1.3218859434127808, 0.32917216420173645, 0.706987738609314, 1.4866721630096436, -0.9002601504325867, 0.5919802188873291, -0.09150632470846176, -0.38601529598236084, 0.3294070363044739, 0.26519420742988586, -0.22862263023853302, 0.01877419650554657, 0.22502894699573517, -0.08613979071378708, 0.5530230402946472, 1.318474531173706, 0.818090558052063, 1.2783585786819458, -0.06386090815067291, 0.3964959681034088, -1.1309109926223755, -0.3178098797798157, -0.6418039798736572, -0.028836041688919067, -1.0038596391677856, -0.5760231018066406, 0.06881360709667206, -0.9656537175178528, -0.37434184551239014, 0.7294227480888367, 0.9545757174491882, -0.49674639105796814, 0.04862697795033455, -0.0316658690571785, 0.38931283354759216, -0.9377942681312561, 0.830293595790863, -0.17936290800571442, -0.6703878045082092, -0.035915639251470566, 0.03248569741845131, -0.4282810091972351, -0.6045848727226257, -0.01329678762704134, -0.06843408197164536, 0.7899158596992493, -0.3091745674610138, 0.6670146584510803, 0.6470058560371399, -0.2332729995250702, -0.5977551341056824, 1.3842946290969849, 0.9119088649749756, 0.10676246881484985, 0.192172110080719, 0.2011822611093521, -0.5696112513542175, 0.5100170969963074, -0.48013797402381897, -0.138092502951622, -0.7095718383789062, 0.7120043635368347, -0.22847159206867218, -0.2995108366012573, -1.0526434183120728, 0.6241455078125, 0.2823885381221771, -0.2124866396188736, 0.9564538598060608, -0.33309710025787354, -0.2907344400882721, 0.5600178837776184, 0.8569314479827881, -0.5728701949119568, 0.023881321772933006, 0.1757853478193283, 0.8264719247817993, -0.17821839451789856, 0.2924339175224304, 0.27948418259620667, -0.6628345251083374, 0.7543356418609619, 0.6792128682136536, -1.126900315284729, -0.40660277009010315, -0.8680071234703064, -1.5103834867477417, -0.1633264571428299, 0.010075908154249191, -0.1978531926870346, 0.43339037895202637, -0.9178006052970886, -0.8276124596595764, -0.25767752528190613, 0.0395195297896862, 0.5406925678253174, -0.5302441716194153, 0.2461225986480713, -0.23932482302188873, 0.5393781065940857, 1.6802431344985962, -0.4689209461212158, 0.9866465330123901, -0.1561133712530136, -0.15200090408325195, -0.4441101849079132, -0.4156172573566437, -0.030535414814949036, 0.06652912497520447, 0.18045920133590698, -0.5305324196815491, 0.24959026277065277, -0.8800625801086426, -0.8375734686851501, 0.3832990825176239, 0.43788468837738037, 0.8727053999900818, -0.29988589882850647, -1.0823458433151245, -0.5216294527053833, 0.9513165354728699, 0.4740258753299713, -0.6254826188087463, -0.36454740166664124, 0.33021074533462524, 0.033932339400053024, -0.04729611054062843, 0.33034542202949524, -0.5614635944366455, 0.9302276372909546, 0.5450260639190674, 0.07815572619438171, -0.3472231924533844, -0.38001707196235657, 0.5974407196044922, -0.3644396960735321, 0.545967161655426, -0.27150943875312805, -0.8886255025863647, 0.387371689081192, -0.3366263508796692, -0.20808295905590057, 0.044974975287914276, -0.29044345021247864, 0.42981523275375366, -0.418573796749115, -1.1025804281234741, -0.7227197289466858, -0.21866904199123383, 0.5261120796203613, 0.4649994671344757, 0.46908244490623474, -0.323370099067688, -0.9754362106323242, 0.16895389556884766, 0.5440739393234253, 0.2733892798423767, 0.4921693801879883, 2.0662193298339844, 1.8237566947937012, 0.2541332542896271, -0.3948769271373749, -0.4380497336387634, 0.8769128918647766, -0.9140369892120361, -0.31101611256599426, -0.9564169049263, 0.07091821730136871, -0.031131554394960403], [0.11644572764635086, 2.1576526165008545, -2.6517295837402344, -0.022288374602794647, -0.12484635412693024, 0.9428777694702148, 1.1257998943328857, 0.0950293242931366, 0.18607285618782043, -0.5420606732368469, -0.9097602963447571, -0.20999562740325928, 1.469442367553711, 0.687542736530304, 0.12088720500469208, 0.8881455063819885, 0.06341595202684402, 0.11256489902734756, 0.42927518486976624, 1.0808777809143066, -0.9535578489303589, -1.0781683921813965, -0.6513205170631409, 0.24048252403736115, -0.7024612426757812, 0.03283003717660904, -1.4287365674972534, 0.16441090404987335, -0.10771307349205017, -0.8159334063529968, 0.4085315465927124, -0.9846552014350891, -0.33512574434280396, -0.22729839384555817, -1.1477307081222534, 0.09004657715559006, 0.8481395244598389, 0.582700252532959, 0.5178256630897522, 1.0539729595184326, 2.103078603744507, -0.19858740270137787, -0.3437056243419647, -1.0077641010284424, 0.6605431437492371, -0.5031432509422302, 0.25987470149993896, -0.9058035016059875, 0.522663950920105, 0.04477279260754585, 0.44620755314826965, 0.14062978327274323, 0.7861235737800598, 0.5026877522468567, 1.2450515031814575, -1.000605821609497, 0.33655375242233276, -0.719650149345398, 0.6603564023971558, -0.26429009437561035, 0.9604169726371765, -0.05424385517835617, 0.47424373030662537, 0.8821870684623718, 0.6237388849258423, -0.37645694613456726, 0.21541738510131836, 0.23509185016155243, -0.42467015981674194, -0.34357431530952454, 0.4607401192188263, 0.35740527510643005, -0.31790366768836975, 0.09965341538190842, 0.3500019907951355, 0.21980829536914825, 0.25063490867614746, 0.8214877247810364, -0.22410158812999725, 1.1702800989151, -0.5947287082672119, 0.1704091876745224, 0.340124249458313, -0.2709653377532959, 0.5603444576263428, 0.08162936568260193, 0.4781586825847626, -0.3695225715637207, -0.04296819493174553, 1.4989676475524902, 1.0863335132598877, 0.1554533690214157, 0.396694153547287, 0.4030536115169525, 0.5137425661087036, -1.2585763931274414, 0.026529543101787567, -0.7973188161849976, -0.5884743928909302, -0.7219292521476746, -0.9545069932937622, -0.8918075561523438, 0.6967262625694275, 0.4838225841522217, 0.9248968958854675, 1.8822325468063354, 0.08572676032781601, -0.7379445433616638, -0.508042573928833, 0.2360982745885849, 0.4331081211566925, -0.4144670069217682, -0.9129753112792969, -0.8670163154602051, -0.687808632850647, 0.5066633224487305, 0.9284728765487671, -0.3308965563774109, 0.7511893510818481, 0.5292693376541138, -0.5771473050117493, -0.7663537263870239, -0.7657594680786133, 0.45840969681739807, 0.4445977807044983, 0.1915697157382965, -1.081720232963562, 0.34304380416870117, -0.0210097748786211, 0.20014332234859467, 0.37254515290260315, 0.8878737688064575, 0.36731839179992676, 0.896052360534668, -0.30159398913383484, 1.0011613368988037, -0.9990204572677612, -0.9315657019615173, -0.3222246468067169, -0.05211425945162773, 0.18552711606025696, -0.5540814399719238, -0.8127016425132751, -1.1025145053863525, -0.7089483737945557, 0.12022148072719574, 0.6455085873603821, -0.13648223876953125, -0.6510499119758606, -0.0968594029545784, -1.540099024772644, 1.2043566703796387, -0.5461776256561279, 0.5043600797653198, 0.6816948056221008, -0.41775649785995483, 0.4797323942184448, 0.6061434149742126, 0.05444268509745598, 0.276388019323349, 0.5639711618423462, 0.5578948855400085, 0.016881633549928665, 0.9573560953140259, 0.3307035267353058, -0.5586946606636047, 0.37337103486061096, -0.08854028582572937, -0.251920223236084, 0.7549899816513062, -0.3686692416667938, -0.3699682950973511, -0.9816839098930359, 0.13857176899909973, 0.09484731405973434, -1.2544254064559937, 0.4864654242992401, -0.726498544216156, -0.7708646059036255, -1.3952826261520386, -0.027748916298151016, -0.28978484869003296, 0.1011253148317337, 0.19848506152629852, 0.8558818697929382, -0.38813090324401855, -0.4732321798801422, -0.3669661581516266, -0.9840221405029297, -1.0762724876403809, -1.2924879789352417, 0.2822256088256836, -1.5044593811035156, 0.46995386481285095, -0.6856573820114136, -0.2922225892543793, 0.9838442206382751, -0.3505100607872009, -0.8100651502609253, -0.19833557307720184, -0.1813289225101471, -0.43385669589042664, -1.3935593366622925, 0.21208630502223969, -0.48010408878326416, 0.876224160194397, -0.7111914753913879, 0.8108897805213928, -0.7752517461776733, -0.0031121023930609226, 0.5677801370620728, 0.45664235949516296, -0.7908223271369934, 0.22071042656898499, -0.0863257572054863, -1.1986089944839478, -0.3797539472579956, -0.1947030872106552, -0.17285282909870148, -0.07317854464054108, 0.9643836617469788, 0.01984523981809616, 0.9661247730255127, 0.1751454919576645, 0.7358176708221436, -0.8138968348503113, -0.40546825528144836, -0.629758358001709, -0.6662985682487488, 0.27843818068504333, -0.23758065700531006, -1.1786236763000488, 1.2545017004013062, 0.5692813992500305, -1.3265655040740967, 1.328932762145996, -0.22922970354557037, 0.043006088584661484, -0.11262015998363495, 0.25439587235450745, 0.8956817388534546, 0.201155424118042, -0.6447358131408691, -0.6099677085876465, -0.3792811930179596, 0.40925848484039307, 0.7759672999382019, -0.15739800035953522, -0.3335353136062622, 1.650312900543213, 0.917970597743988, -0.07574746757745743, 0.5344344973564148, 0.43222108483314514, -0.053552042692899704, -1.1136012077331543, -0.17517510056495667, 0.11466880142688751, -0.4608565866947174, 0.9592297673225403, 0.6811979413032532, -0.9459715485572815, -0.3913155496120453, 0.04196719080209732, 0.032895900309085846, -0.15957526862621307, -0.37007224559783936, -0.7470859885215759, 0.5010102987289429, -0.3626053035259247, 0.14713050425052643, 0.05526379868388176, -0.43220412731170654, 0.9843392968177795, -0.21571145951747894, -0.46941614151000977, 0.14399227499961853, 0.8486002087593079, 0.12492506951093674, 1.0047500133514404, -0.2744814455509186, -1.2642321586608887, -0.607218861579895, 0.11030040681362152, 1.109913945198059, 0.020650584250688553, 0.29044950008392334, 0.7394384741783142, 1.0609031915664673, -0.31009840965270996, 0.4351555407047272, 0.7184047698974609, 0.12752029299736023, 0.12863688170909882, 0.04220813512802124, 0.6250139474868774, 0.6032581329345703, -0.37782323360443115, -0.9995368123054504, 0.42845577001571655, 0.45574456453323364, 0.4639984667301178, 0.9591046571731567, 1.4109535217285156, -0.3785282373428345, -0.22223159670829773, -0.4924659729003906, -0.17816287279129028, -0.4737459719181061, -0.7246139645576477, -0.7614246010780334, -0.736473798751831, 0.38821521401405334, -0.5993698239326477, -0.1915874183177948, 0.7534549832344055, -0.44913557171821594, 0.21859949827194214, 0.585009753704071, -0.23678387701511383, -0.057642657309770584, -0.1703580766916275, 0.026851391419768333, -1.3051679134368896, 0.33843615651130676, 0.5410152077674866, -1.2816882133483887, -0.33973589539527893, 0.09707040339708328, 0.4943312704563141, 0.19177451729774475, 0.07689251750707626, 0.7584118247032166, -0.8557867407798767, -1.1444289684295654, 0.3060374855995178, 1.147040605545044, 0.7168311476707458, -0.3672578036785126, -0.9383818507194519, 0.30430710315704346, 0.7416155934333801, -0.29582953453063965, -0.5605125427246094, 0.17956902086734772, 0.5559912919998169, -0.9157528877258301, -0.13488294184207916, 0.034787483513355255, 0.507040798664093, -0.684897780418396, -0.5860170125961304, 0.050024330615997314, 0.1744416058063507, -0.5829084515571594, 0.3128000795841217, -0.49455565214157104, 1.0590434074401855, -0.24014948308467865, -0.4037279486656189, 0.46762627363204956, -0.31235364079475403, 0.37745460867881775, -2.0210518836975098, 0.34364062547683716, 0.28853389620780945, 1.2408684492111206, 0.4747806787490845, 0.6372948288917542, -0.017391787841916084, -1.0208415985107422, 0.04091496393084526, 0.31389302015304565, 0.9403578639030457, 0.24551501870155334, 0.18830503523349762, -0.09633630514144897, -0.618143618106842, 0.019392788410186768, -0.40093064308166504, -0.03755361959338188, 0.9516987204551697, -0.893975019454956, -0.20929747819900513, 0.8712700605392456, 0.0470147430896759, -0.8332956433296204, -0.6786016821861267, 0.4619393050670624, 0.2581550180912018, 0.06517938524484634, -0.30063730478286743, -0.7112256288528442, -0.4286439120769501, 0.5442707538604736, -0.7797309756278992, -0.820619523525238, -0.03241104260087013, 0.03689756244421005, 0.826687753200531, -0.7388357520103455, 0.09902837127447128, -1.0358078479766846, 0.13831685483455658, 0.5633536577224731, 0.3677096664905548, 0.3506169319152832, 0.3033173084259033, 0.2710902690887451, -0.5166162252426147, 0.1423099786043167, 1.6766448020935059, -0.06298961490392685, -0.5808942914009094, -0.15085400640964508, 0.7179898023605347, -0.18318714201450348, -0.7173587083816528, -0.35901519656181335, 0.4840128719806671, -0.6279918551445007, 0.05222000181674957, 0.43388238549232483, -0.11092943698167801, 1.630255937576294, 0.11887132376432419, -0.2644781768321991, -0.026514291763305664, -0.5819171667098999, -0.7100656628608704, 0.1666395664215088, 0.45275336503982544, -0.2541590929031372, -0.09206213802099228, 0.5217469930648804, 0.7395591735839844, 0.8232169151306152, 0.12644349038600922, 0.15093889832496643, 0.3317154347896576, 1.2378766536712646, -0.12046145647764206, 0.5750254392623901, 0.18369871377944946, 0.9273360967636108, 0.7555201649665833, 0.15817061066627502, 0.1429002285003662, -0.7259470224380493, 0.786897599697113, -0.5712032914161682, -0.3216152787208557, 0.3778969645500183, 0.038165535777807236, 1.0204166173934937, -2.1958189010620117, -0.27805769443511963, 0.2941528558731079, 0.3510790467262268, 0.14285875856876373, 0.3703644573688507, 0.3023664653301239, -1.286380648612976, 0.08997634053230286, 0.1649664044380188, -0.0008682562038302422, 0.05905866250395775, 0.5173171758651733, 0.2081553339958191, 0.49965694546699524, -0.5121811628341675, -0.29200679063796997, -0.4380805492401123, -0.09809843450784683, -0.43296945095062256, -0.25984305143356323, 0.2838384211063385, -0.3994345963001251, 0.6252975463867188, 0.9797396063804626, -0.6034662127494812, -0.8827933669090271, 0.4711459279060364, -1.377203106880188, 0.6707823276519775, -0.09047244489192963, -1.0362505912780762, -0.6766640543937683, -0.6003812551498413, -0.29993948340415955, 0.0578119233250618, -1.1082649230957031, 0.1274206042289734, -0.05616316944360733, -1.3121201992034912, -0.10973981767892838, 0.7598410844802856, 1.252471685409546, 1.3530473709106445, 0.13868466019630432, 0.9877708554267883, 0.08903589844703674, -0.8905518651008606, 0.07099543511867523, 0.6147943139076233, -0.4156089425086975, -0.5057874321937561, -1.0442599058151245, -0.8049352765083313, 1.057554006576538, 0.1642540991306305, 0.23212899267673492, -0.48110392689704895, 0.7880222201347351, 1.5142775774002075, -0.6795886754989624, -0.8852017521858215, 0.6789979338645935, -0.4064868092536926, 0.5575562715530396, 0.49785277247428894, -0.8973388075828552, 0.05357704311609268, 0.05506756529211998, -1.5769761800765991, 0.9949613809585571, -0.036222945898771286, -0.40338173508644104, 0.958954930305481, 0.3691959083080292, 0.5862270593643188, 0.9254629611968994, -1.2831637859344482, 0.010374479927122593, 0.33660513162612915, 0.4004173278808594, -0.8886725306510925, 0.943340003490448, 1.1671768426895142, -0.15977999567985535, 0.6594548225402832, 0.6222009062767029, -0.050387799739837646, 0.024575021117925644, 0.28489384055137634, -0.1388692706823349, 0.1334095150232315, 0.5273104906082153, 0.15499192476272583, -0.23169854283332825, 0.5334741473197937, -0.41880273818969727, -0.10482627153396606, 0.45399513840675354, 0.9510835409164429, 0.03657245263457298, -0.3410545587539673, 0.47369125485420227, -0.24275314807891846, 0.15617293119430542, 0.4850805997848511, 0.11430531740188599, 0.6012182831764221, -0.2329634428024292, 0.11372482776641846, 0.7713390588760376, 0.11120013892650604, -0.32585904002189636, -0.797305166721344, 0.02946636825799942, 0.39341166615486145, -1.1328296661376953, -0.48382285237312317, 0.3197769820690155, -0.2954353988170624, 0.28646165132522583, 0.04250108823180199, -0.18261995911598206, -1.1837754249572754, -1.7259595394134521, -0.3856836259365082, -0.8754299283027649, 0.3152647018432617, -0.5371546745300293, 0.9329638481140137, 0.08386893570423126, -1.6065673828125, 0.5866044759750366, 0.1679239571094513, -1.341735601425171, -0.41321173310279846, -0.5970957279205322, 0.44661328196525574, -0.47280991077423096, 0.5136011838912964, -0.2938002943992615, 0.34849098324775696, -0.5976315140724182, -0.7545130252838135, -0.5368701815605164, -0.43902328610420227, 0.40648624300956726, 1.4102190732955933, -1.2554130554199219, 0.9513294696807861, 0.43243733048439026, -0.0676010400056839, -0.18988493084907532, 0.35464420914649963, -0.9093438982963562, -0.20998381078243256, 0.4941541254520416, -0.029706357046961784, 0.15862011909484863, 1.3375061750411987, 0.7074348330497742, 1.0324703454971313, -0.11251436918973923, 0.7682092785835266, -0.9202717542648315, -0.7453364729881287, -0.11282757669687271, -0.1622486263513565, -1.0984437465667725, -0.4781795144081116, -0.0077330367639660835, -0.8312944173812866, -0.6605960130691528, 0.3564942479133606, 0.8929208517074585, -1.118309497833252, 0.33591681718826294, -0.6729608178138733, 0.7023782134056091, -0.3434784412384033, -0.2993256747722626, -0.21362411975860596, -0.3489736020565033, 0.28149929642677307, 0.1316506415605545, -0.2472493201494217, -1.03371262550354, -0.29945188760757446, 0.4166232645511627, 0.559460461139679, -0.8115965723991394, 0.8331050872802734, 0.21622323989868164, -0.06443801522254944, -0.12867394089698792, 0.872907817363739, 1.381210446357727, -0.4478488862514496, -0.04867401719093323, 0.044328343123197556, -0.8800223469734192, 0.6327608823776245, -1.2355549335479736, 0.013582533225417137, -0.8360537886619568, 1.0269312858581543, 0.22421373426914215, 0.20928366482257843, -0.6309187412261963, 0.42038288712501526, -0.45569881796836853, -0.05394718796014786, 0.45083045959472656, -0.8619840741157532, -0.20716553926467896, 0.6701790690422058, 0.8772875666618347, -0.2926202118396759, 0.5226000547409058, 0.3724357485771179, 0.8467893004417419, -0.2779397666454315, 0.5681763887405396, 0.013035953044891357, -0.21999205648899078, 0.43213677406311035, 0.5105466246604919, -0.07970502972602844, 0.4174633324146271, -0.45706310868263245, -1.429381251335144, 0.13820239901542664, -0.14477922022342682, -0.20152316987514496, 0.731172502040863, -1.0106505155563354, -0.9076792597770691, 0.16808471083641052, -0.09899559617042542, 0.22732488811016083, -0.0009877849370241165, -0.24268944561481476, -0.32777997851371765, 0.09957782924175262, 1.2271510362625122, -0.19611234962940216, 1.0585050582885742, -0.40328651666641235, -0.4625316262245178, -0.5543215274810791, -0.14291296899318695, -0.36404892802238464, 0.36013054847717285, -0.03248913958668709, -0.24046801030635834, 0.15871845185756683, -0.7697173357009888, -0.48755213618278503, 0.5084371566772461, 0.3515786826610565, 0.4848060607910156, 0.09714584797620773, -0.746111273765564, -0.5132423043251038, 0.37427738308906555, 0.7404612898826599, -0.06095424294471741, -0.7725396156311035, -0.5908479690551758, -0.24110116064548492, -0.004080981016159058, 0.5662029385566711, -0.5969614386558533, 0.5264069437980652, 0.7207852005958557, 0.21101014316082, -0.0804484561085701, -0.5091301202774048, -0.31778737902641296, -0.4614945650100708, 0.5219449400901794, -0.7784422039985657, -0.12375128269195557, -0.11415811628103256, -0.7500616312026978, 0.007652967236936092, 0.4446789622306824, -0.05551555007696152, 0.2783525288105011, -0.3870682418346405, -0.23853084444999695, -0.16254985332489014, 0.3103255331516266, 0.01908762753009796, 0.41053691506385803, 0.48890647292137146, -1.022972822189331, -0.8962762951850891, 0.03598570078611374, 0.4727029800415039, 0.23688839375972748, 0.33682647347450256, 2.005551815032959, 1.799576759338379, 0.30765631794929504, 0.027147457003593445, -0.48376739025115967, 0.872491717338562, -0.9103876352310181, -0.5455899238586426, -0.9632024168968201, 0.13269229233264923, 0.0743904784321785], [0.15209394693374634, 2.5880186557769775, -2.750401258468628, -0.7206113338470459, 0.34741321206092834, 0.7799856066703796, 1.116036057472229, 0.04531088471412659, -0.08967968076467514, -0.28281310200691223, -0.699684202671051, -0.14092162251472473, 1.0779154300689697, 0.30305179953575134, 0.16869209706783295, 0.8731561899185181, 0.6246100068092346, 0.006480194628238678, 0.31871336698532104, 0.5766254663467407, 0.25461655855178833, -1.7112410068511963, -0.5377128720283508, 0.1507088541984558, 0.3892609477043152, -0.7159793972969055, -1.4340194463729858, -0.5269966721534729, -1.1104719638824463, 0.3668059706687927, 0.5090451240539551, -0.009830884635448456, -0.32145464420318604, 0.1127420961856842, -1.2923126220703125, 0.3038705885410309, 0.7307202219963074, -0.3666642904281616, -0.3252837359905243, 0.3545498847961426, 1.6826890707015991, -0.2442014366388321, -0.33036673069000244, -0.8889930844306946, 0.9673201441764832, -0.18912474811077118, 0.9036795496940613, -0.17585885524749756, 0.15475915372371674, -0.6851396560668945, 1.2341779470443726, -0.40582001209259033, 0.16281281411647797, 1.0450648069381714, 0.9628772735595703, -0.7813068628311157, -0.15216071903705597, 0.8552330136299133, 0.2454100400209427, 0.11716035008430481, 0.7488333582878113, 0.6540209650993347, 1.2833271026611328, 1.4053521156311035, 1.0785553455352783, -0.42577120661735535, 0.7475330829620361, 0.2485027015209198, 0.43708667159080505, 0.04173274338245392, 0.7795265913009644, 0.2710705101490021, -0.30030617117881775, -0.4961951673030853, -1.0590064525604248, 0.6661517024040222, 0.006181113421916962, 0.3820776045322418, -0.09187407046556473, 1.1561864614486694, -0.304153174161911, -0.5314438939094543, -0.1658565104007721, -0.279083251953125, 0.5709465146064758, -0.07242632657289505, 0.5382676720619202, -0.1803298145532608, -0.07008698582649231, 1.3165695667266846, -0.40203502774238586, 0.22874653339385986, 0.4449903666973114, -0.10387641936540604, -0.2518772780895233, -0.02872272953391075, -1.2135472297668457, -0.44238343834877014, -0.7602525949478149, -1.2192814350128174, -0.9035554528236389, -0.4803923964500427, 0.266716867685318, 0.23499980568885803, 0.20314250886440277, 1.368005633354187, 0.7713254690170288, -0.44639939069747925, -0.1089576929807663, 0.005724221467971802, 0.26281502842903137, 0.014468150213360786, -0.8354314565658569, -1.2101106643676758, -0.22729302942752838, 0.837622344493866, 1.9346650838851929, 0.9377493858337402, 0.9933820366859436, 0.35047271847724915, 0.047899916768074036, -0.06710060685873032, -0.6026819348335266, 0.0026381611824035645, 0.9391642808914185, 0.39308077096939087, -0.8196107745170593, 0.13842228055000305, 0.5881702899932861, 0.17896027863025665, 0.6101784110069275, -0.10224712640047073, 0.13162104785442352, 0.32988062500953674, -0.3464414179325104, 1.0686628818511963, -0.16546599566936493, -1.4261600971221924, -0.3817271590232849, 0.6913828253746033, 0.58128821849823, -0.4916219413280487, -0.41463690996170044, -0.2793175280094147, -0.19628794491291046, -0.5375720858573914, 0.36466917395591736, -0.20813126862049103, -0.5736407041549683, 0.25972673296928406, -1.5596650838851929, 0.7686130404472351, -0.05939747020602226, 1.4034545421600342, 0.8823549747467041, -1.0211066007614136, 0.8135047554969788, 0.8599361181259155, 0.2970018982887268, -0.24016635119915009, 1.5028477907180786, -0.2293553501367569, -0.752844512462616, 0.8117468953132629, 0.31384992599487305, -0.13302470743656158, 0.6330778002738953, 0.14792008697986603, -0.12365821748971939, 0.3291913866996765, 0.1896737664937973, -0.21295538544654846, -0.7027740478515625, 0.17168119549751282, 0.14822503924369812, -0.7189772725105286, 1.0593286752700806, 0.5727179646492004, -1.3555052280426025, -1.4162888526916504, 0.7713145017623901, -0.7913073897361755, 0.1522028148174286, 0.25657919049263, 0.4482971131801605, -0.02338550239801407, 0.17320233583450317, -0.2955605983734131, -0.18150204420089722, -1.402337908744812, -0.23550811409950256, 0.17399714887142181, -1.4546478986740112, 0.4548209011554718, -0.7840008735656738, -0.6856632232666016, 1.313503384590149, 0.4358017146587372, -0.6309003829956055, -0.19103339314460754, 0.676376223564148, 0.3130101263523102, -1.1348501443862915, 0.1512746512889862, -0.5743274092674255, 0.760414719581604, -0.6606952548027039, 0.3633764386177063, -0.7384173274040222, 0.06986463069915771, 0.850327730178833, -0.9570736885070801, -0.7333892583847046, 0.3497343063354492, 0.09695646166801453, -1.0000433921813965, 1.034024953842163, -0.11110047996044159, -0.4540623128414154, -0.4279692769050598, 0.16653215885162354, -0.1880953162908554, 0.24581263959407806, 0.034020863473415375, 0.9560580253601074, -0.22397302091121674, -0.12506231665611267, -0.6659989953041077, -0.11510272324085236, 0.3940960168838501, -0.6473139524459839, -0.7956603765487671, 0.2627745568752289, 0.88219153881073, -1.1837214231491089, 0.7828061580657959, -0.1552930772304535, 0.42666369676589966, 0.06833627074956894, 0.9409451484680176, 0.593246579170227, 0.1019350066781044, -1.1666151285171509, 0.12144997715950012, -1.017316222190857, -0.06853556632995605, 0.576733410358429, -0.9744367003440857, -0.3775920569896698, 1.3091788291931152, 1.1713337898254395, 0.31562963128089905, 0.5588051080703735, -0.3243052661418915, -0.05369570478796959, -0.6254812479019165, -0.4301607310771942, 0.2788200378417969, -0.8908758163452148, 0.9241204857826233, 0.8941070437431335, -0.3973926901817322, 0.6066083312034607, -0.4616777300834656, -0.3956761062145233, -0.9584718942642212, -0.26160895824432373, -0.08382154256105423, 0.573617696762085, -0.514279842376709, -0.16300441324710846, 0.3354984223842621, -0.31849175691604614, 0.7758124470710754, 0.16686564683914185, -0.4211757481098175, 0.6976421475410461, 1.0876402854919434, -0.03529825806617737, 0.8263694047927856, -0.039191968739032745, -1.2509068250656128, -1.3077099323272705, -0.360564261674881, 0.47078752517700195, -0.07254613190889359, -0.11262606829404831, 1.0145715475082397, 0.4419150948524475, -0.08346246927976608, 0.3086019456386566, 0.38208284974098206, -0.24856381118297577, 0.10303408652544022, -0.3691115975379944, 0.1158829852938652, 0.586348831653595, -0.6174446940422058, -0.5171009302139282, -0.37548232078552246, 0.3188738226890564, 0.7420107126235962, 1.4524006843566895, 1.4075294733047485, -0.30376291275024414, -0.18490909039974213, 0.5969834923744202, 0.20902886986732483, -0.31095626950263977, -0.6899834275245667, -0.576069712638855, -0.6927047967910767, 0.022986404597759247, -0.7249483466148376, 0.18068000674247742, 1.0283288955688477, 0.5686248540878296, 0.5801821351051331, 0.8501924276351929, 0.11846152693033218, -1.0938658714294434, -0.07315089553594589, -1.2068895101547241, -0.7898198366165161, 0.8312076330184937, 0.8658943176269531, -1.5013781785964966, 0.133956179022789, -0.2417750060558319, 0.12879998981952667, 0.21411912143230438, 0.42887094616889954, 0.34556975960731506, -1.1915591955184937, -0.5749028921127319, -0.2819305956363678, 1.038619041442871, -0.141049325466156, -0.14975596964359283, -0.7123746871948242, 0.4653831720352173, 0.5546286106109619, -0.36021044850349426, -0.2487042397260666, -0.3196001946926117, -0.14197194576263428, -0.3807148039340973, 0.22896379232406616, 0.255094975233078, 0.31390342116355896, -1.0313549041748047, -1.1834176778793335, 0.6136893033981323, 0.2967442274093628, -1.0047370195388794, 0.5626917481422424, -0.33433058857917786, 1.4857773780822754, -0.13473054766654968, 0.7727271914482117, 1.3804843425750732, 0.2392951250076294, 0.3564099371433258, -1.4393274784088135, 0.6097970008850098, 0.42750468850135803, 1.130051851272583, 0.31066441535949707, 0.5217445492744446, -0.005781505256891251, -1.2364107370376587, -0.5544149279594421, 0.5561578869819641, 0.6967175006866455, 0.33871355652809143, -0.15389277040958405, -0.3263024091720581, -0.6723909974098206, -0.1299847811460495, 0.12226618081331253, 0.31656068563461304, 0.029971923679113388, -0.3867805302143097, -0.6734232306480408, 1.2553327083587646, 0.718181848526001, -0.9750323295593262, -1.25016450881958, 0.05003761500120163, 0.4977104961872101, -0.44217437505722046, 0.24469660222530365, -0.8614642024040222, 0.1913658082485199, 0.4545145630836487, -0.7301735877990723, -0.4440997242927551, -0.3767504096031189, 0.04254510998725891, 0.8186752796173096, -0.9044587016105652, -0.5412719249725342, -0.9208748936653137, 0.46238550543785095, 0.8905344605445862, 0.7184598445892334, 0.5115445256233215, 0.16506151854991913, -0.10788629204034805, -0.14921525120735168, 0.051614824682474136, 0.9917851686477661, -0.49618273973464966, -0.0007029264234006405, 0.18521851301193237, 0.500149667263031, 0.6251447200775146, -0.38019517064094543, -0.6119216680526733, 0.028266897425055504, 0.06641487032175064, 0.6108462810516357, 0.3340252935886383, -0.3038105070590973, 1.288772702217102, -0.5714711546897888, 0.24075880646705627, 0.3303954005241394, 0.10529695451259613, -1.1654982566833496, -0.14566592872142792, 0.33323729038238525, -0.39679282903671265, -0.9352426528930664, 0.22003059089183807, 0.5373343825340271, 0.5739004611968994, -0.0007632598280906677, 0.8375732898712158, 0.6392337679862976, 0.29944339394569397, 0.051232703030109406, 0.75996333360672, 0.14662228524684906, 1.208415150642395, 0.7211381793022156, 0.7433491945266724, -0.32045456767082214, -0.34561672806739807, 0.8415371179580688, 0.3047085106372833, -0.15562951564788818, 0.8440565466880798, -0.015645232051610947, 0.9766569137573242, -0.9725830554962158, -0.06908854842185974, 1.2993342876434326, -0.5760445594787598, 0.438312828540802, -0.1797744631767273, 0.9165596961975098, -0.9620524048805237, -0.01789439097046852, 0.8778585195541382, -0.07318000495433807, 0.6785157322883606, -0.2818332016468048, 0.35300537943840027, 0.13420969247817993, -0.636512815952301, 0.3369249105453491, -1.1998350620269775, -0.009940080344676971, -0.761174738407135, 0.15844959020614624, 0.8315917253494263, 0.5579656362533569, 0.28344982862472534, 1.3680822849273682, -0.6979859471321106, -1.0887240171432495, 0.36893534660339355, -0.817815899848938, 0.05222158879041672, -0.5597275495529175, -0.2160934954881668, -0.22437086701393127, -0.46885809302330017, -0.42324692010879517, 0.011078842915594578, -0.9301795959472656, -0.6961499452590942, -0.6738247275352478, -0.8329446315765381, 0.22559237480163574, 0.042494334280490875, 0.8728199005126953, 0.3467674255371094, 0.3351091742515564, 0.02114565670490265, -0.03376638516783714, -1.4982378482818604, -0.3207482397556305, 0.4646746516227722, -0.6390601992607117, -0.48364800214767456, -1.1019092798233032, -0.4503094553947449, 1.2306227684020996, 0.4839245080947876, -0.07424905151128769, -0.02916543558239937, 0.716350257396698, 1.631393551826477, -0.538783848285675, -0.5675237774848938, 0.2111743539571762, -0.030623240396380424, 0.7531182169914246, 0.3773064613342285, -0.7853789925575256, -0.46051540970802307, -1.4739347696304321, -2.15671968460083, 1.3307629823684692, 0.28178003430366516, 0.3392123281955719, 0.9040324091911316, 0.6944544911384583, -0.22630542516708374, 0.971785306930542, -0.44562944769859314, -0.402586966753006, -0.4663074314594269, -0.01830080896615982, -0.758444607257843, 0.49601131677627563, 0.824866771697998, -0.28287577629089355, -0.505740761756897, 0.49243155121803284, -0.15354715287685394, -0.2978077828884125, 0.11496550589799881, -0.18513983488082886, -0.17558883130550385, 0.11009792983531952, 0.26146113872528076, -0.5283936262130737, 0.7492955923080444, -1.0497381687164307, -0.029026906937360764, 0.4868505001068115, 0.015911370515823364, 0.383548766374588, -1.1816028356552124, 0.7768494486808777, 0.02807566151022911, 0.1915421038866043, 0.4937986433506012, -0.39648130536079407, 0.9237396121025085, -0.010865969583392143, 0.5253865718841553, 1.0706793069839478, 0.04680459573864937, -0.4028719365596771, -0.7518066167831421, 0.03894425183534622, -0.2570444643497467, -0.8839035034179688, -1.2389219999313354, -0.36974310874938965, -0.22569547593593597, 0.09715618193149567, 0.4805929362773895, -1.0927977561950684, -1.3505535125732422, -1.1026394367218018, 0.2509586215019226, -0.3133390247821808, 0.8836067318916321, -0.8440544605255127, -0.015725841745734215, 0.11622095853090286, -1.0910882949829102, -0.251778244972229, 0.28518521785736084, -2.0994534492492676, -0.16188907623291016, -0.5279513001441956, 0.9935073256492615, -0.18881641328334808, 0.05499480664730072, -0.38432395458221436, 1.1191649436950684, -1.158371925354004, -0.8156620860099792, -0.9957876801490784, -0.6841193437576294, 1.2744430303573608, 0.6953786015510559, -0.7032284736633301, 0.9402191638946533, 0.1609378606081009, -0.2215125560760498, 0.07312380522489548, 0.35680124163627625, -0.8293033838272095, -0.5176394581794739, 0.21306580305099487, -0.5518454909324646, 0.2994050979614258, 1.5344511270523071, 0.48792752623558044, 1.6311705112457275, -0.1554047167301178, 1.6964685916900635, -0.7601639628410339, -0.4636508822441101, 0.03945910930633545, 0.8394390940666199, -0.5995274186134338, -0.09589877724647522, 0.003847295418381691, -1.447052240371704, -0.2888795733451843, 0.4924536943435669, 0.938576340675354, -0.3773875832557678, -0.15510042011737823, -0.7525187730789185, 0.40133559703826904, -1.1459554433822632, 0.26783886551856995, -0.33732345700263977, -0.7657490372657776, 0.10730215162038803, 0.1283651441335678, 0.39723289012908936, -0.7173399925231934, 0.31940317153930664, 0.31541213393211365, 0.5985368490219116, -0.797074019908905, 0.326455295085907, -0.03643789514899254, -0.1137411966919899, -1.1206912994384766, 1.1638363599777222, 0.9254009127616882, -0.08687525242567062, -0.3083076477050781, 0.32963645458221436, -0.26144832372665405, 0.17440932989120483, -0.7170187830924988, -0.4541560709476471, -0.9262183308601379, 0.6067206263542175, 0.3382883369922638, -0.040415238589048386, 0.1672210544347763, 0.5220261216163635, -0.3738303482532501, -0.6829728484153748, 1.5154542922973633, -0.4852161407470703, -0.7289119362831116, 0.8425376415252686, 0.8772358298301697, -0.5402320623397827, 0.7112699747085571, 0.15265074372291565, 0.1257520467042923, 0.1759016513824463, 0.8875612020492554, 0.07080435752868652, -0.5616536140441895, 0.45452991127967834, 0.41096657514572144, -0.604794442653656, 0.27788329124450684, -0.35977795720100403, -1.8539118766784668, -0.26106300950050354, -0.03237748146057129, -0.35616666078567505, -0.26991844177246094, -0.9678881168365479, -1.070701003074646, 0.5252434611320496, -0.27029046416282654, -0.16790194809436798, -0.796501636505127, 0.14395785331726074, -0.34960123896598816, 0.11684698611497879, 0.33691391348838806, -0.3434324264526367, 0.8528762459754944, -0.3374274671077728, 0.21662399172782898, -0.7386550307273865, 0.11621564626693726, 0.5565243363380432, 0.3636234700679779, -0.26879891753196716, -0.41597434878349304, 0.6090935468673706, -0.8085618615150452, -0.6268507838249207, -0.009274812415242195, -0.27945899963378906, 0.4751392900943756, -0.2180686742067337, -0.2673918306827545, -0.10733287781476974, -0.08533564954996109, 1.1117812395095825, -0.3411485552787781, -0.8795739412307739, -0.8894070386886597, 0.4640384316444397, -0.029643846675753593, 1.2052308320999146, -0.38511693477630615, 0.3472709655761719, 0.07695543766021729, -0.8565357327461243, 0.06741498410701752, -0.7433196306228638, 1.4022231101989746, -0.33440786600112915, 0.09321807324886322, -0.8921211361885071, -0.4814392030239105, 0.8264889121055603, -0.9616557359695435, -0.5354293584823608, -0.07898551225662231, -0.41667622327804565, -0.19263295829296112, -0.40197575092315674, -1.0242670774459839, -0.6586612462997437, -0.19514554738998413, -0.07543410360813141, 0.708335280418396, 0.48921939730644226, -0.32734450697898865, -0.6628299951553345, -0.030463475733995438, 1.2410303354263306, -0.48717445135116577, 0.3441130518913269, 1.2247488498687744, 1.6089712381362915, 0.13847899436950684, -0.19169831275939941, -0.4661262333393097, 0.657362163066864, -0.7404472827911377, 0.4649903178215027, -1.3148438930511475, -0.7914369702339172, -0.43827763199806213], [-0.6468607783317566, 2.2647249698638916, -2.927760124206543, -1.1377586126327515, -0.04307497292757034, -0.3007517457008362, 1.1863325834274292, 0.6272547245025635, -0.21156270802021027, -1.256378412246704, -0.7934648990631104, 0.18263833224773407, 0.5491165518760681, 0.7449966073036194, 0.4010224938392639, 0.8033917546272278, 0.27390310168266296, 0.08932528644800186, 0.17422300577163696, 0.8901050090789795, 0.36111751198768616, -1.1041841506958008, -0.2818729877471924, -0.4577783942222595, 0.1711234301328659, -0.31218692660331726, -1.2622311115264893, 0.4475720524787903, -1.343800663948059, -0.5794089436531067, 1.4533610343933105, -0.45188528299331665, 0.06825710833072662, -0.26940101385116577, -1.4715063571929932, -0.9875062704086304, 0.27557703852653503, -0.3310016095638275, -0.88251793384552, 0.29702436923980713, 1.9857511520385742, -0.12816444039344788, -0.1925240308046341, -1.3089715242385864, 1.1588687896728516, -0.45286276936531067, -0.36547425389289856, -0.8533362746238708, 0.626768171787262, -0.7397992014884949, 0.6930710673332214, -0.3491285741329193, 0.5198242664337158, 0.6675940155982971, 0.7105171084403992, -0.20996630191802979, 0.2897483706474304, 1.0225356817245483, 0.09802814573049545, 0.8340622186660767, 0.8510024547576904, 0.7310730814933777, 0.24586139619350433, 0.6361545920372009, 0.3646305203437805, 0.05770581588149071, 0.38354772329330444, 0.5560734868049622, -0.33097368478775024, 0.06784535199403763, 1.2109545469284058, 0.39334869384765625, -0.3910810053348541, -0.6708301901817322, -0.942678689956665, 0.3797023296356201, -0.5686348676681519, 0.6784663200378418, -0.10241805016994476, 1.2299044132232666, 0.25731587409973145, 0.07721077650785446, -0.15241739153862, -0.35230687260627747, 0.4090779423713684, -0.09145797789096832, 0.30187636613845825, 0.07744092494249344, -0.38291677832603455, 1.5009267330169678, 0.19265596568584442, 0.5898595452308655, 0.6716402769088745, -0.10242284089326859, -0.16944414377212524, -0.37005460262298584, -0.29720890522003174, -0.4111952483654022, -0.22039136290550232, -0.757020115852356, -1.0100680589675903, -0.9325683116912842, 0.6219236254692078, 0.3338966965675354, 0.9743685722351074, 1.757285237312317, 0.7418131828308105, -1.1471387147903442, -1.096878170967102, 0.18161442875862122, 0.20451797544956207, -0.1267118752002716, -1.0063366889953613, -0.4246794879436493, -0.006364257074892521, 1.1373242139816284, 1.4650640487670898, 0.058401014655828476, 0.5951367020606995, 0.33273962140083313, -0.38135573267936707, -0.6610780358314514, -1.1290090084075928, 0.270271897315979, 1.3148292303085327, -0.3735447824001312, -0.83799809217453, 0.0758814811706543, -0.05208709090948105, -0.33657413721084595, 0.7833483815193176, 0.12954965233802795, -0.054749745875597, 0.7160871624946594, -0.07647402584552765, 0.806027352809906, 0.0033538276329636574, -0.8673019409179688, 0.9824835658073425, 0.5610116124153137, 0.06493481993675232, -0.45327404141426086, -0.7655943036079407, -0.807177722454071, 0.3348502516746521, -0.42174580693244934, -0.004458268638700247, -0.6947875618934631, -0.9362419247627258, 0.09213722497224808, -2.1549816131591797, 0.7538942694664001, -0.3560902774333954, 2.0646450519561768, 0.340343177318573, -0.2840900719165802, 0.3829682767391205, 0.0796954557299614, 0.0691804364323616, 0.6712401509284973, 1.5838441848754883, -0.15270178020000458, -0.45114630460739136, 1.8023338317871094, 0.6652097105979919, -0.8324804306030273, 0.797607421875, 0.5059722661972046, -0.7606003880500793, 0.32463377714157104, -0.3984106183052063, 0.0017957012169063091, -0.5424758791923523, 0.1658344864845276, 0.15840716660022736, -0.48977741599082947, 1.1815303564071655, -0.03973447158932686, -0.846299409866333, -1.2663633823394775, 0.5020096302032471, -0.5332967638969421, 0.025789618492126465, 0.7264783978462219, 0.7600909471511841, -0.22512146830558777, -0.8693979382514954, -0.1866748183965683, -0.25349196791648865, -0.5739546418190002, -1.1796298027038574, 0.49159619212150574, -1.5168018341064453, 0.5353742241859436, -0.706945538520813, -0.6136816143989563, 0.6174197196960449, -0.337552011013031, 0.15271860361099243, -0.257633775472641, -0.16947969794273376, -0.4154653251171112, -1.6123181581497192, -0.3694532811641693, -0.8781816959381104, 1.311186671257019, -0.3868989646434784, 0.4224846363067627, -0.2186952829360962, 0.6440572738647461, 1.284420371055603, -0.4222507178783417, -1.0384656190872192, 0.10350055992603302, 0.44470083713531494, -1.2153726816177368, 0.04180563986301422, -0.05518660694360733, -0.059996869415044785, -0.036653634160757065, 0.4068357050418854, -0.01695297844707966, 1.1492995023727417, 0.4268433153629303, 0.7199360728263855, -0.05252866446971893, 0.19207161664962769, -0.19578056037425995, -0.5301721096038818, 0.3967626988887787, -1.0609917640686035, 0.06146317347884178, 0.5392694473266602, 0.7722848653793335, -1.0173652172088623, 1.2892662286758423, -0.4141324758529663, 0.6643274426460266, 0.699178159236908, 0.7907006144523621, 1.0656654834747314, -0.08760540187358856, -0.4492361545562744, -0.21423190832138062, -0.5660125017166138, -0.4864151179790497, 1.1449722051620483, -0.525547206401825, -0.6925720572471619, 1.8557648658752441, 0.7593607306480408, 0.10848811268806458, 0.3284306824207306, -0.46481117606163025, 0.31475216150283813, -1.174850344657898, 0.41732367873191833, 0.1966087520122528, -0.9289020895957947, 0.3583056926727295, 0.25835415720939636, -1.48112952709198, -0.07900069653987885, -0.6540631055831909, 0.5158020853996277, -0.5229647159576416, 0.17175062000751495, -0.012232833541929722, 0.4667469561100006, -0.4403848350048065, 0.12758000195026398, -0.5836072564125061, -0.2098696529865265, 0.7977616786956787, 0.046051591634750366, -0.29200419783592224, 0.34199032187461853, 1.3780001401901245, 0.2939959168434143, 0.9607698917388916, -0.30371010303497314, -1.544590711593628, -1.0273183584213257, -0.7436941266059875, 0.933488667011261, -0.23041395843029022, -0.27899158000946045, 0.48415234684944153, 0.8704383969306946, -0.21478332579135895, 0.5350279808044434, 0.252017080783844, 0.06596361845731735, 0.02932598441839218, 0.24083778262138367, 0.6605480313301086, 0.12302060425281525, -0.7027448415756226, -0.9469212889671326, -0.4146900177001953, 0.23105166852474213, 0.48268789052963257, 1.0956660509109497, 1.021870732307434, -0.21927502751350403, 0.044893596321344376, -0.19022735953330994, 0.267536997795105, 0.15347465872764587, -0.5307093262672424, -0.8227089047431946, -0.18335306644439697, 0.18260401487350464, -0.8947588801383972, -0.17501401901245117, 1.2877448797225952, 0.453261137008667, 1.1944881677627563, 0.31764301657676697, -0.5516530871391296, -1.4959849119186401, -0.1354856938123703, -0.488008975982666, -0.9521438479423523, 0.9453831315040588, 1.0820930004119873, -1.203418493270874, 0.11088376492261887, 0.14539386332035065, 0.2004944533109665, 0.20908692479133606, -0.0940980389714241, 0.17184235155582428, -1.1428707838058472, -0.5550649166107178, 0.1200113520026207, 0.9127752780914307, -0.31988298892974854, -0.18571095168590546, -0.196754589676857, 0.7913367748260498, 0.9586805105209351, -0.2213989496231079, -0.31648218631744385, 0.2982705235481262, -0.08428309857845306, -0.9502994418144226, 0.1657288372516632, 0.20353297889232635, 1.4263147115707397, -0.7800217270851135, -0.5399892330169678, -0.5942797064781189, -0.17653608322143555, -0.9385070204734802, 0.31245607137680054, 0.49383673071861267, 0.7827185988426208, 0.36852794885635376, 0.4635980725288391, 0.697685956954956, 0.0016998124774545431, 0.5816804766654968, -1.838178277015686, 0.3679777979850769, 0.8581531643867493, 1.0971264839172363, 0.04324851557612419, 0.5120273232460022, 0.22949373722076416, -1.037034511566162, -0.058843955397605896, 0.037468522787094116, 0.19180569052696228, 0.23438818752765656, -0.42419230937957764, 0.23431400954723358, -0.16198933124542236, 0.23140238225460052, 0.25472593307495117, 0.32726559042930603, 0.2956884801387787, -0.07731381058692932, -0.1390780806541443, 1.2360262870788574, -0.30608120560646057, -0.44404280185699463, -0.8799749612808228, 0.2331436425447464, 0.2609693706035614, -0.19915278255939484, -0.056458741426467896, -0.679716169834137, 0.00026462238747626543, 0.36593833565711975, -0.15104731917381287, -1.0727068185806274, -0.39773884415626526, -0.02895263582468033, 0.8723435997962952, -0.9042506814002991, -0.9964220523834229, -0.6633796095848083, 0.6023184657096863, 0.5600312352180481, -0.10759487748146057, 0.9339815974235535, 0.1186588779091835, -0.4491185247898102, -0.2197214514017105, 0.16917777061462402, 1.5101608037948608, 0.2615742087364197, -0.3172447979450226, -0.17204269766807556, 0.5563132762908936, 0.7445865869522095, -0.5440239906311035, -0.3221611976623535, -0.2761668264865875, -0.833953320980072, 0.5051748752593994, 0.5224949717521667, -0.31688809394836426, 1.2233941555023193, -0.9547768235206604, 0.5190610289573669, 0.747148871421814, -0.286195307970047, -0.9516127705574036, -0.5653518438339233, 0.17853467166423798, -0.30118000507354736, -0.2941572964191437, 0.1448066085577011, 0.05110479146242142, 0.6173977255821228, 0.4771077632904053, 0.41661715507507324, 0.27498868107795715, 0.10892655700445175, -0.747305691242218, 0.26456889510154724, 0.6063560843467712, 0.6606465578079224, 0.9964643716812134, 0.9356052279472351, -0.5756158828735352, -0.7693538069725037, 0.9262727499008179, 0.14960893988609314, 0.04985528066754341, 1.1346135139465332, 0.311685711145401, 1.6834242343902588, -1.7162867784500122, 0.32091253995895386, 0.3741757273674011, 0.3173907697200775, 0.4038732349872589, -0.48133763670921326, 0.8198479413986206, -1.577937364578247, -0.1093081459403038, 0.42445436120033264, -0.3126603364944458, 0.8206880688667297, -0.19850365817546844, -0.004414440598338842, 0.46796295046806335, -0.1927787810564041, 0.1026766449213028, -0.5519335865974426, -0.1784338653087616, 0.13540053367614746, 0.6807615756988525, 0.7252371311187744, 0.8565211296081543, 0.2445545494556427, 1.2761523723602295, -1.3570079803466797, -1.5093834400177002, 0.5569397211074829, -1.3508762121200562, 0.3144490122795105, 0.2663761079311371, -0.4846149682998657, -0.36912667751312256, -1.3461657762527466, 0.06723809242248535, -0.3568874001502991, -0.8914827704429626, 0.07423925399780273, -0.3124241232872009, -1.404646396636963, -0.4516680836677551, -0.22341513633728027, 0.992729902267456, 0.2228093445301056, 0.35701221227645874, 0.6668825745582581, 0.39341413974761963, -0.6362688541412354, 0.22027955949306488, -0.01548434142023325, -0.4679241180419922, 0.1367095708847046, -1.1126333475112915, -0.6672679781913757, 0.7328792810440063, 0.7242993712425232, 0.7653235793113708, -0.1919737011194229, 0.9379785060882568, 1.652852177619934, -0.3733983039855957, -0.42295581102371216, 0.7855969071388245, -0.023108184337615967, 0.27961891889572144, 0.39684322476387024, -0.9255174398422241, -0.15728312730789185, -0.3066282868385315, -2.030059814453125, 1.272472858428955, -0.04580410569906235, -1.0772286653518677, 0.6820172071456909, 0.8151190280914307, -0.08724629133939743, 1.3232033252716064, -0.2986332178115845, -0.5323130488395691, 0.3652200400829315, -0.16688942909240723, -1.359131932258606, 0.277717649936676, 1.2700068950653076, 0.35049688816070557, -1.0549763441085815, -0.05013136565685272, -0.3058621883392334, -0.6615668535232544, 0.19457577168941498, -0.2612505257129669, 0.8476977944374084, 0.12072189152240753, -0.09945828467607498, -0.9039397239685059, 0.17927958071231842, -1.0136009454727173, 0.4979693591594696, 0.26237383484840393, 0.8093320727348328, -0.023835020139813423, -0.9459840059280396, 0.9703717827796936, -0.29846590757369995, -0.6343125700950623, 0.29130810499191284, -0.8702657222747803, 0.22130678594112396, 0.5670174956321716, 0.23006556928157806, 0.3244772255420685, -0.058559343218803406, -0.5252634286880493, -0.7194744348526001, 0.2532188594341278, 0.804487407207489, -1.4802234172821045, -0.8354744911193848, 0.0489928238093853, 0.004508325830101967, 0.3503904938697815, 0.6405201554298401, -0.5214478969573975, -1.0666935443878174, -1.1855907440185547, -0.6808870434761047, -0.9398742914199829, 0.5869090557098389, 0.03342514857649803, -0.26024332642555237, -0.2461378425359726, -1.39046049118042, 0.960111677646637, -0.5555760860443115, -1.984959602355957, -0.15847939252853394, -0.1421528458595276, 0.8847315907478333, -0.29541635513305664, -0.5250746011734009, 0.22466610372066498, 1.117659568786621, -0.5444061160087585, -0.09589529782533646, -1.1044511795043945, -0.5754256248474121, 0.9225298762321472, 1.3325376510620117, -1.23824143409729, 1.1115527153015137, 0.18841665983200073, -0.5888832807540894, -0.31455475091934204, 0.17517513036727905, -1.8172807693481445, -0.12017262727022171, 0.33524802327156067, -0.1410059928894043, 0.7401129007339478, 1.6596394777297974, 0.3735860288143158, 1.0605486631393433, 0.5750035047531128, 1.050278663635254, -0.36542513966560364, -0.4887697100639343, -0.3021705150604248, -0.22441136837005615, -1.0397660732269287, -0.1299980878829956, 0.21492688357830048, -0.9295832514762878, -0.7500362992286682, 1.0458896160125732, 0.6795055270195007, -0.7853800654411316, 0.42426732182502747, 0.03964175656437874, 0.4427003860473633, -1.349231243133545, 0.4310443103313446, 0.3170144557952881, -1.2714780569076538, -0.21914248168468475, 0.28605392575263977, 0.7151004076004028, -0.859592616558075, 0.5081402063369751, 0.5269162654876709, 0.43318817019462585, -0.609757125377655, 0.660090446472168, -0.2318982630968094, 0.1526639610528946, -0.8614569306373596, 1.20444917678833, 0.772086501121521, 0.40043753385543823, 0.514113187789917, 0.8145993947982788, -0.21320590376853943, 0.06452962756156921, -0.17357264459133148, -0.43056023120880127, -1.1015522480010986, 0.5256191492080688, 0.1868361532688141, -0.06205645948648453, -0.29453063011169434, 0.3094131648540497, -0.2510845959186554, -0.6751017570495605, 1.4095512628555298, -0.5782368183135986, -1.0789977312088013, 0.6028989553451538, 0.788642168045044, -0.21223735809326172, 0.48236483335494995, -0.055017050355672836, 1.30397629737854, -0.32212066650390625, 0.7556402683258057, -0.08179498463869095, -0.5110535025596619, 0.4011533558368683, 0.29825425148010254, -0.9249488115310669, 0.26516956090927124, -0.4985738694667816, -1.057337999343872, -0.08618493378162384, -0.16879452764987946, -0.23011644184589386, 0.3699600398540497, -0.8564552068710327, -1.3584216833114624, -0.12946854531764984, -0.22785967588424683, -0.2436659038066864, -0.43965592980384827, 0.0669417679309845, -0.4937499165534973, -0.4071754813194275, 1.1694425344467163, -0.4023970067501068, 0.7916502356529236, -0.02252129279077053, 0.18636645376682281, -0.11956053227186203, 0.15908187627792358, -0.2670508921146393, 0.016688678413629532, -0.3405211269855499, -0.6459894180297852, 0.15882916748523712, -0.926109254360199, 0.21985019743442535, 0.7559097409248352, 0.02143210358917713, 0.22212405502796173, 0.18672998249530792, -0.997717559337616, -0.46309375762939453, 0.6703246831893921, 0.8270057439804077, -0.711255669593811, -0.8293466567993164, -0.5085206031799316, -0.22239604592323303, 0.6569205522537231, 1.3036292791366577, -1.0606297254562378, 0.5668764710426331, 0.7280110716819763, -0.5006613731384277, -0.6486733555793762, -0.7807797789573669, 1.4814605712890625, -0.6492133140563965, 0.7928521037101746, -1.203485131263733, -0.4022165834903717, 0.04559672251343727, -0.9211066365242004, 0.048613496124744415, -0.3806377351284027, -0.21021495759487152, 0.554154098033905, -0.012915215454995632, -0.9202512502670288, -0.5085685849189758, 0.3695274293422699, -0.04479743912816048, -0.1045590341091156, 1.1750152111053467, 0.02217632345855236, -0.7421281337738037, -0.3336217999458313, 0.5812095999717712, 0.32209306955337524, 0.40573808550834656, 1.4793771505355835, 1.5953387022018433, 0.18032202124595642, -0.35239356756210327, -0.49229785799980164, 0.6261740326881409, -1.2234772443771362, 0.0359160453081131, -1.0082424879074097, -0.3248199224472046, 0.41184502840042114], [-0.454715371131897, 1.84957754611969, -2.247901678085327, -0.797571063041687, -0.05102625861763954, 0.12067216634750366, 0.15640392899513245, 0.8424597978591919, -0.5295817255973816, -1.4516551494598389, -0.5175600051879883, -0.0860099047422409, -0.26082539558410645, 0.4721167981624603, -0.9032976031303406, 0.794032633304596, 0.4780179262161255, 0.10118661820888519, 0.07676360011100769, 0.10478001832962036, -0.2507358491420746, -1.0877184867858887, 0.1408206969499588, -0.35980191826820374, 0.04183894768357277, 0.4869942367076874, -0.921898603439331, 0.005556457210332155, -0.9317516684532166, -0.30911922454833984, 1.168235421180725, -0.5110861659049988, 0.5565944314002991, -0.037854645401239395, -0.8114151358604431, -0.7404153943061829, -0.2065657675266266, -0.5617395043373108, -0.9422031044960022, 0.7945524454116821, 1.2643810510635376, -0.6229584813117981, -1.587362289428711, -0.8393074870109558, 0.2923138439655304, -0.04945174604654312, 1.1868345737457275, -1.1236590147018433, 0.13448397815227509, -0.7212048768997192, 0.3317371904850006, -0.8744322657585144, 0.6231943368911743, 0.6131487488746643, 1.9283418655395508, -2.1164584159851074, -0.2437267005443573, 0.29348692297935486, 0.21319440007209778, -0.39006516337394714, 1.6327924728393555, 0.12023870646953583, 0.25628462433815, 1.4461863040924072, 0.6939654350280762, -0.1700279265642166, 0.23347532749176025, 0.4385893940925598, 0.2873116135597229, -0.08537646383047104, 0.44582152366638184, 0.47867870330810547, -0.277376651763916, -0.6015875339508057, -0.9935054183006287, -0.20653925836086273, 0.42972150444984436, 0.33677613735198975, 0.31194114685058594, 0.3115057051181793, 0.17048439383506775, -0.02830350585281849, 0.8957464098930359, -0.902039647102356, 0.2999241054058075, -0.13763323426246643, -0.4487188756465912, -0.7736761569976807, -0.7304778695106506, 1.4923009872436523, -0.19373172521591187, 0.26253798604011536, 0.7251418828964233, 0.00813037995249033, -0.36881381273269653, -1.0609451532363892, 0.6121159791946411, -0.9003125429153442, -0.9102023243904114, -0.6115240454673767, -0.9552316665649414, -0.2675801217556, 0.06872965395450592, 0.12549416720867157, 0.26039478182792664, 1.4708884954452515, -0.5188220739364624, -0.2901601493358612, -0.06452462077140808, 0.5902017951011658, 0.7353286147117615, 0.03358350321650505, 0.15240494906902313, -0.46451425552368164, 0.6034930944442749, -0.2373713254928589, 1.6223210096359253, -0.04954550042748451, 0.33420097827911377, 0.6347230076789856, -0.5051229000091553, -0.2378578782081604, -0.8014321327209473, 0.34125378727912903, 0.841887354850769, 0.2137276828289032, -0.683922290802002, 0.4060199558734894, 0.114525206387043, 0.0032411422580480576, -0.0379449725151062, 0.445793479681015, -0.853900134563446, 0.6052839756011963, -0.1899486482143402, 0.6503881216049194, -0.5202398896217346, -1.6321113109588623, -0.11576472967863083, -0.3488192856311798, 0.4497734606266022, -0.3590218126773834, -1.707332730293274, -0.6475386619567871, 0.9247971773147583, -0.12653732299804688, 0.24543634057044983, -0.09394927322864532, -0.30194467306137085, 1.2677342891693115, -0.6271137595176697, 0.1550004780292511, -0.31796225905418396, 0.7443246245384216, 0.9180325865745544, 0.029845431447029114, 0.38391873240470886, 0.24573232233524323, 0.541191041469574, 0.3230915069580078, 0.6144338846206665, -0.20000164210796356, -1.6098958253860474, 0.49250927567481995, 1.2815734148025513, -0.6439101099967957, 0.6450130343437195, 0.8541700839996338, -0.4774855673313141, -0.0012627528049051762, -0.5625283122062683, -0.7175790667533875, -1.6690645217895508, 1.050818681716919, -0.3194427192211151, -0.011991994455456734, 0.16216082870960236, -0.5149458646774292, -0.8273159861564636, -0.9794106483459473, 0.8793280720710754, -0.42936286330223083, 0.7826076149940491, 0.003485271707177162, 0.5222452878952026, 0.14121028780937195, -0.3517347276210785, -1.2759969234466553, -1.0286259651184082, -1.482387900352478, -0.5873799920082092, -0.4007404148578644, -0.8947967886924744, 0.3997621238231659, -0.7819312810897827, -0.36182016134262085, 1.010967493057251, -0.16778455674648285, 0.4859807789325714, -0.09702520072460175, 0.3555664122104645, 0.09101299941539764, -0.16422294080257416, 0.09886201471090317, -0.2139635533094406, -0.014880897477269173, -0.8629385232925415, 0.30893459916114807, -0.8558133840560913, 0.23000752925872803, 1.241064190864563, -0.8325229287147522, -0.3465498685836792, 0.6209655404090881, 0.608413577079773, -1.1943094730377197, 0.2044041007757187, -0.43079784512519836, -0.08736498653888702, -0.18701522052288055, 0.6510207056999207, -0.2536097466945648, 0.7717604637145996, -0.18283119797706604, 0.5999473333358765, -0.4617933928966522, -1.1950312852859497, -0.7312371730804443, -0.4410814344882965, -1.0980165004730225, -0.12476874142885208, -0.9630900025367737, 1.0428640842437744, 0.2267436683177948, -0.3630633056163788, 0.6466252207756042, -0.8268641233444214, 0.5946294069290161, -0.043465565890073776, 0.6970869898796082, 0.7662519216537476, 0.16806919872760773, -0.658083975315094, -0.6782001256942749, -0.773517906665802, -0.6223041415214539, 0.10420000553131104, -0.7643330693244934, 0.24449941515922546, 0.7871341109275818, 0.7161350250244141, -0.6862283945083618, 0.4011772572994232, -0.8104250431060791, 0.16230207681655884, -1.1485167741775513, 0.039980847388505936, -0.09922116994857788, -0.7357199192047119, 0.7941150665283203, 1.073992371559143, -1.231457233428955, -0.987942636013031, -0.09887288510799408, 0.1106213927268982, -0.9456398487091064, -0.05543776974081993, -0.7137516736984253, 0.35188600420951843, 0.3643602728843689, 0.4442322552204132, 0.5030839443206787, -0.09882405400276184, 1.1049176454544067, 0.22339434921741486, 0.11966753005981445, 0.7719400525093079, 0.5566332340240479, 0.13863801956176758, 0.7896920442581177, -0.20300732553005219, -0.9914847612380981, -0.8149677515029907, -0.2443084418773651, 0.6921207904815674, -1.0174604654312134, -0.8575516939163208, 0.14747187495231628, 1.0231268405914307, -0.7492213845252991, 1.5152345895767212, 0.06581480801105499, 0.06664533913135529, 0.3327850103378296, -0.1355249285697937, 0.22035154700279236, 1.0206061601638794, -0.32900071144104004, -1.3137397766113281, 0.44711795449256897, 0.5723294019699097, 0.8349584937095642, 1.242222547531128, 1.1294326782226562, -0.7458463907241821, 0.3701106905937195, -0.18473760783672333, 0.06836618483066559, -0.8934662342071533, -0.24489924311637878, -0.04722142592072487, -0.7100907564163208, 0.2890554666519165, -0.12710948288440704, 0.07454913854598999, 1.0147089958190918, 0.1307186335325241, 0.036495961248874664, 0.05739643797278404, -1.085639476776123, -1.4898732900619507, -0.27525293827056885, -0.6711546778678894, -0.7964667677879333, 1.1772971153259277, 1.6018919944763184, -1.0190463066101074, 0.15211725234985352, -0.39651334285736084, 0.5242303013801575, 0.5474287867546082, 0.28886130452156067, 0.7935574054718018, -1.537192463874817, -0.4343937039375305, -0.34700527787208557, 1.1210086345672607, 0.2418629229068756, -0.14245419204235077, -0.9638981819152832, -0.5887380242347717, 0.24586091935634613, -0.37265220284461975, -0.18519246578216553, 0.243183434009552, -0.6343184113502502, -0.26514771580696106, -0.39208292961120605, 0.13965687155723572, 0.9176796078681946, -0.4898858368396759, -0.4294467568397522, 0.22935019433498383, -0.3215341567993164, -0.47523579001426697, 0.20380954444408417, -0.3144712746143341, 0.6208934187889099, 0.023908646777272224, 0.44651728868484497, 1.0655025243759155, 0.4051031470298767, 0.4814698398113251, -1.644515872001648, -0.024564893916249275, 0.8231192231178284, 1.3579407930374146, 0.2244964838027954, -0.2699364721775055, 0.3100299537181854, -0.900026261806488, -0.18746380507946014, -0.13734720647335052, 0.10334128886461258, 1.0065584182739258, -0.7852832078933716, -0.09741039574146271, -0.7683516144752502, -0.004787222482264042, -0.01440993882715702, -0.5938115119934082, 0.4263255000114441, 0.06605353951454163, -0.45401304960250854, 0.965515673160553, 0.7581083178520203, -0.07421057671308517, 0.1883753538131714, -0.18607212603092194, 0.426054447889328, -0.4074896275997162, -0.5293444395065308, -0.8338541984558105, 0.6196738481521606, 0.5092214345932007, 0.5879004001617432, -0.5991294980049133, -0.9240103960037231, 0.3733859956264496, 1.2055538892745972, -0.6202252507209778, -0.629516065120697, -1.011022686958313, 0.4006192088127136, 0.49263495206832886, -0.13003279268741608, 0.07215455174446106, 0.07443730533123016, -0.2531919777393341, -0.17666026949882507, 0.525911808013916, 0.9656857848167419, 0.007407866418361664, -0.12775211036205292, 0.3607199192047119, 0.15575627982616425, 0.7836273312568665, 0.7260341048240662, -0.4441225826740265, 0.027576901018619537, -1.5300965309143066, -0.2500643730163574, 0.03423920273780823, 0.22587265074253082, 1.1048270463943481, -0.6232418417930603, -0.31963294744491577, -0.030640989542007446, 0.5537100434303284, -0.6956673860549927, -0.5107191205024719, 0.5243174433708191, 0.030664460733532906, 0.017143724486231804, 0.8109831809997559, 0.23021574318408966, 0.8846274018287659, -0.0011850972659885883, 0.0750872790813446, 0.6691430807113647, -0.1588340699672699, -0.2914115786552429, 0.7064564228057861, 0.08501720428466797, 0.870482325553894, 2.2823715209960938, 0.928981602191925, -0.864386260509491, -0.4922766089439392, 0.567393958568573, 0.13267430663108826, 0.3691280782222748, 0.1483432501554489, 0.5393968820571899, 1.3852370977401733, -0.23012220859527588, -0.08215852081775665, 0.952967643737793, 0.4728408455848694, 0.6689043045043945, -0.0614832267165184, 0.11811885237693787, -0.9047808647155762, -0.05231565237045288, -0.4539942741394043, -0.17065565288066864, 0.5120458006858826, 0.31653162837028503, -0.1443348526954651, 0.1531195193529129, -0.8288646340370178, 0.44488629698753357, -0.24961605668067932, 0.33206048607826233, 0.7099503874778748, 0.5240033864974976, 0.0839766263961792, 0.4941713809967041, 0.4649523198604584, 1.355108380317688, -0.5213873982429504, -0.821098804473877, 0.49127572774887085, -1.1153740882873535, 0.7798819541931152, -0.736270010471344, -0.4013388454914093, -0.13645297288894653, -0.9134487509727478, -0.4847604036331177, -0.8330351710319519, -0.8680295944213867, -1.031482219696045, 0.580450177192688, -0.3879658579826355, -0.07917499542236328, -0.8931742906570435, 0.6042519807815552, 0.5229679942131042, 0.13872353732585907, 1.0797637701034546, 1.0239965915679932, 0.023133745416998863, 0.18037928640842438, -0.1864624321460724, 0.4126434624195099, -0.6525377035140991, -0.40948015451431274, -0.5290542840957642, 0.19193993508815765, 0.28156304359436035, 0.0571540892124176, -0.09227442741394043, 0.6268513202667236, 1.820305585861206, -0.6832968592643738, -0.41777026653289795, 0.43127837777137756, -0.35500675439834595, 0.9870832562446594, 0.27696508169174194, -0.8632051348686218, 0.6543735861778259, -0.13271647691726685, -2.4861152172088623, 1.3504621982574463, -0.5033413171768188, 0.7633769512176514, 0.6171688437461853, 0.8411566615104675, -0.47422581911087036, 1.251956820487976, -0.7136138677597046, -0.31909555196762085, -0.7250881195068359, 0.034628547728061676, -1.4554722309112549, 0.875950813293457, 1.2966121435165405, 0.16183505952358246, -1.1636240482330322, 0.12161125242710114, 0.1747230738401413, 0.10753263533115387, -0.4205116927623749, -0.7825812101364136, 0.09265811741352081, 0.5308898687362671, 0.8636120557785034, -0.25149837136268616, -0.21104146540164948, -0.7235323786735535, 0.8092656135559082, 0.7312209010124207, 0.6688914895057678, 0.20517165958881378, -0.4616818130016327, 0.785592257976532, -0.406927227973938, 0.022594809532165527, 0.5870429277420044, -0.2662856876850128, 1.410749912261963, 1.1467229127883911, -0.4613606035709381, 0.07292935997247696, -0.5342466831207275, -0.9539642333984375, -0.9592339396476746, 0.03024720586836338, 1.0620660781860352, -0.7327850461006165, -0.09314043074846268, -0.8274691700935364, -0.49390384554862976, 0.09455960988998413, 0.7255796194076538, -0.11671920865774155, -0.925109326839447, -0.7939714789390564, 0.18012000620365143, 0.3704400658607483, 0.7157095670700073, -0.3673996925354004, 0.5679640173912048, -0.39428651332855225, -1.5543920993804932, 0.540911853313446, 0.09591037780046463, -1.3693979978561401, -0.2776121199131012, -0.8088135123252869, 0.7593364715576172, -0.023335343226790428, -0.12168482691049576, 0.25035950541496277, 0.9625256061553955, -0.9482482075691223, -1.1053420305252075, -0.6141012907028198, -0.07293200492858887, 0.6130319833755493, 0.9939413666725159, 0.3477388620376587, 0.5190549492835999, 0.5151634216308594, -0.3111788332462311, -0.17906750738620758, -0.05333518981933594, -1.455871820449829, 0.6394672989845276, 0.32768210768699646, -0.25240930914878845, -0.03730880841612816, 1.6671593189239502, -0.09114272892475128, 1.4516661167144775, 0.21054451167583466, 1.180730938911438, -0.6167399287223816, -0.531214714050293, -0.5891202092170715, 0.5773318409919739, -0.8908623456954956, 0.12536479532718658, -0.2620929479598999, -0.9315335750579834, -0.23370790481567383, 0.47970548272132874, 0.9730029106140137, -0.7394886612892151, 0.8528560400009155, -0.3693726658821106, -0.45204177498817444, -1.265278935432434, 0.5770035982131958, 0.5421245694160461, -0.8224690556526184, 0.7822742462158203, 0.1783386468887329, 0.2498864382505417, -0.26661738753318787, -0.07212544977664948, 0.2072129100561142, 0.47455212473869324, -0.32919108867645264, 0.4606649875640869, -0.5007346272468567, 0.4067002236843109, -0.4669082462787628, 0.6039480566978455, 0.5106672048568726, -0.8085862398147583, 0.35110995173454285, 0.5383555293083191, -0.6296519041061401, -0.047875139862298965, -0.05376393720507622, -0.5599787831306458, -0.5696543455123901, 0.8562498092651367, 0.29212120175361633, 0.599585771560669, -0.3812794089317322, 0.3731157183647156, 0.15520213544368744, 0.33430397510528564, 1.214981198310852, -0.538931667804718, -0.6096590161323547, 1.167112112045288, 1.0690696239471436, -0.5562626719474792, 0.20434166491031647, 0.23391814529895782, 0.07388829439878464, 0.7328963875770569, 0.7423352599143982, 0.6266598701477051, -0.69685298204422, -0.1850862205028534, -0.23595939576625824, 0.2098788321018219, 0.6215954422950745, 0.6521586775779724, -1.527788758277893, 0.2078435719013214, 0.08394646644592285, -0.5388352274894714, 0.6394116878509521, -0.2478073388338089, -0.22595259547233582, 0.2106337994337082, -0.36337822675704956, -0.04993095621466637, -0.3754670321941376, -0.008104201406240463, -0.6171027421951294, -0.011034802533686161, 0.4887603521347046, 0.22118178009986877, 0.9274681210517883, 0.47481757402420044, 0.5594179034233093, -0.3452897369861603, -0.5995073914527893, -0.41405370831489563, 0.03011246956884861, -0.5358949899673462, -1.2483371496200562, 0.45563066005706787, -0.11514801532030106, -0.5094379186630249, 0.5539774298667908, -0.30788886547088623, 0.7017921209335327, -0.38274335861206055, 0.1982351690530777, 0.22883771359920502, 0.2143910825252533, -0.21530404686927795, -0.41172507405281067, -0.7873673439025879, -0.35048094391822815, 0.42514511942863464, 0.21820904314517975, 2.0124614238739014, -0.7284809350967407, 1.1548049449920654, 0.02039855346083641, 0.21368609368801117, -0.17585448920726776, -0.36494848132133484, 0.5062642097473145, 0.10810321569442749, 0.17073523998260498, -0.6402174830436707, 0.1488555371761322, 0.020436884835362434, -1.4802381992340088, -0.2338956743478775, -0.3033982813358307, 0.03198719024658203, -0.14823530614376068, 0.09872447699308395, -0.14193712174892426, -0.8012970685958862, -0.35291194915771484, 0.8580886125564575, 0.5841384530067444, 0.3428764045238495, -0.5509495139122009, -1.21940279006958, -0.5937505960464478, 0.5208020210266113, 0.23562949895858765, 0.6194131374359131, 0.7753158807754517, 0.8311880826950073, 0.15255121886730194, -0.27032461762428284, -0.06723303347826004, 0.06926664710044861, -0.4513673484325409, -0.6190465092658997, -0.6991376280784607, 0.6925542950630188, 0.2226061373949051], [-0.5970653295516968, 1.7474573850631714, -2.4479899406433105, -0.44638147950172424, 0.483467698097229, -0.38423240184783936, 0.8294991850852966, 0.00521784508600831, -0.2520427107810974, -0.9535742402076721, -0.04131929948925972, 0.07945875078439713, 0.9434725642204285, 0.7059954404830933, 0.23494581878185272, 1.0028584003448486, 0.17587579786777496, -0.3595127463340759, 0.22050826251506805, 0.5023100972175598, 0.6797831654548645, -1.691728949546814, -0.1663465052843094, -0.6917965412139893, 0.08547183126211166, 0.10537375509738922, -0.7247220873832703, 0.6474238634109497, -0.8481088280677795, -1.0239160060882568, 2.1241400241851807, -0.7974312901496887, -0.06858091056346893, -0.17463284730911255, -1.3359549045562744, -0.5219994783401489, 0.465859979391098, -0.405017614364624, -0.3647257089614868, 0.8244966864585876, 2.1490941047668457, 0.1950344294309616, -0.532620370388031, -1.275588870048523, 1.0229730606079102, 0.08437582850456238, 0.7099926471710205, -0.7133327126502991, 0.19040493667125702, -1.4132519960403442, 0.4173877239227295, -0.6892000436782837, 0.6157445311546326, 1.049343228340149, 0.6020168662071228, -0.42444658279418945, 0.33424612879753113, 0.8564415574073792, 0.03253272548317909, -0.03693528473377228, 1.1594158411026, 0.8688697814941406, 0.6291031837463379, 1.142911434173584, 0.670370876789093, -0.20726169645786285, 0.5217843651771545, 0.15348243713378906, 0.22265580296516418, -0.1867099553346634, 0.6840555667877197, 0.5936174392700195, -0.5204736590385437, -0.6864582300186157, -0.6083795428276062, -0.22199571132659912, -0.1460435837507248, 0.6143841743469238, -0.5376790165901184, 0.6117120981216431, -0.33821675181388855, 0.37603721022605896, 0.1114639937877655, -0.5745696425437927, 0.5383525490760803, -0.10300936549901962, 0.26678478717803955, -0.003215692937374115, -0.7604941725730896, 1.5995376110076904, 0.19373157620429993, -0.2080010622739792, 0.3700213134288788, -0.733533501625061, -0.9631403088569641, -1.2480000257492065, -0.20012596249580383, -0.8590465188026428, 0.19974955916404724, -1.0076305866241455, -0.7624150514602661, -0.9683017730712891, 0.4961756765842438, 0.1799902319908142, 0.6165226101875305, 2.094559669494629, 0.19271999597549438, 0.01390443928539753, -0.7563557624816895, 0.19575364887714386, 0.4129030108451843, 0.2861948013305664, 0.019247766584157944, -0.2763161361217499, 0.19543752074241638, 0.5412877202033997, 1.4803708791732788, 0.25361061096191406, 0.21873889863491058, 0.028818903490900993, -0.2760441303253174, -0.5590065717697144, -0.25224167108535767, 0.40637677907943726, 1.5024868249893188, -0.37265706062316895, -1.1287363767623901, -0.29503342509269714, 0.21786577999591827, -0.8736631870269775, 0.07355175912380219, -0.1662164032459259, -0.1573927402496338, 0.571690022945404, -0.35229018330574036, 1.049375295639038, -0.2833637595176697, -0.7697774171829224, 0.09056835621595383, -0.14206191897392273, -0.4317646026611328, -0.5668755173683167, -0.9937521815299988, 0.1551305651664734, 0.47397345304489136, -0.7804997563362122, 0.5451844930648804, 0.18398837745189667, -0.44254401326179504, 0.32502564787864685, -1.4059996604919434, 0.07211033999919891, -0.06786087900400162, 1.8524751663208008, 0.6690323352813721, -0.573125422000885, 0.4667567312717438, 0.6439613699913025, -0.006726516410708427, 0.39216262102127075, 0.8535569310188293, 0.08963428437709808, -0.9243041276931763, 1.1660876274108887, 0.720167875289917, -0.8693214654922485, 1.0347429513931274, 0.5493555068969727, -0.5812019109725952, 0.7158044576644897, -0.432563453912735, -0.012107044458389282, -1.180554986000061, 0.6851704716682434, -0.22710980474948883, -0.15503761172294617, 0.9923380613327026, -0.38630279898643494, -1.0991755723953247, -1.4953515529632568, 0.5644893646240234, -0.09035446494817734, -0.07088369131088257, 0.4960705637931824, 0.5345801711082458, 0.10532457381486893, -0.23620747029781342, -1.0145233869552612, -0.0966484546661377, -1.0900980234146118, -0.9968065023422241, -0.4157116115093231, -1.2990261316299438, 0.39901337027549744, -0.80083167552948, -0.3162814974784851, 0.8079231977462769, -0.8176245093345642, 0.23451490700244904, -0.014296984300017357, -0.11627324670553207, -0.04949810728430748, -1.2719594240188599, 0.264020174741745, -0.6165807247161865, -0.13625900447368622, -0.43954965472221375, 0.5249437689781189, -0.5289016962051392, 0.6176823377609253, 0.8809296488761902, -0.4942624866962433, -0.4199598729610443, -0.11260566860437393, 0.452318012714386, -1.691904067993164, 0.4444589614868164, -0.4076201319694519, -0.19900023937225342, -0.24384935200214386, 0.40879741311073303, 0.46484771370887756, 0.894252598285675, -0.051118865609169006, 0.975498616695404, -0.20544280111789703, -0.40721461176872253, -0.7066313624382019, -0.4227225184440613, -0.40353599190711975, -0.527532696723938, -0.37403762340545654, 0.23483140766620636, 0.5976912975311279, -0.9286876916885376, 0.9049591422080994, -0.5022802948951721, 0.5406078696250916, 0.45263126492500305, 1.4916176795959473, 0.7677175998687744, 0.00693883839994669, -0.8797013163566589, -0.09004170447587967, -0.5435209274291992, 0.10594422370195389, 0.581908643245697, -0.4292087256908417, 0.1738085299730301, 2.0735397338867188, 0.9741158485412598, -0.714423656463623, 0.3838847875595093, -0.7367401719093323, -0.05886590853333473, -0.8634455800056458, 0.2816426753997803, -0.5204898118972778, -1.2540487051010132, 0.8359358310699463, 0.07829716801643372, -1.2083046436309814, 0.14714424312114716, -0.19143980741500854, 0.7532886266708374, -0.47878706455230713, 0.3241473436355591, 0.06450334936380386, 0.43599462509155273, -0.04330972954630852, 0.021320553496479988, -0.2123222053050995, -0.6743061542510986, 1.0030744075775146, -0.2284458428621292, -0.18463295698165894, 0.5562242865562439, 1.0115032196044922, 0.026478886604309082, 0.9128549098968506, -0.8322056531906128, -1.6304521560668945, -1.042824387550354, -0.22259318828582764, 0.7866576313972473, 0.005388149991631508, -0.00500085623934865, -0.2676294147968292, 1.3858821392059326, 0.15242671966552734, 1.054473876953125, 0.1420467495918274, -0.04164595529437065, -0.08240344375371933, -0.43648988008499146, 0.3132458031177521, 0.25130361318588257, -0.8798776268959045, -1.195346713066101, -0.6580772399902344, 0.4079824388027191, 0.7147696614265442, 1.1298099756240845, 0.9597505927085876, -0.06413228809833527, 0.3872319459915161, -0.42542901635169983, 0.027497051283717155, -0.20880676805973053, -0.5188153982162476, -0.471584290266037, -0.46331077814102173, -0.1437811553478241, -0.05319664999842644, -0.24472470581531525, 1.2305899858474731, -0.060400817543268204, 0.9527867436408997, 0.6749298572540283, -0.8569974899291992, -1.5566157102584839, -1.3153173923492432, -0.21663321554660797, -1.1134847402572632, 0.8943176865577698, 1.0177687406539917, -0.8589479327201843, -0.1204681396484375, 0.45293161273002625, 0.40045085549354553, 0.764041006565094, 0.17087632417678833, 0.510827898979187, -1.8598644733428955, -0.08165353536605835, -0.1690840870141983, 0.7841545343399048, 0.2579120099544525, 0.846721887588501, -0.348953515291214, 0.2526232600212097, 0.37662023305892944, -0.44554606080055237, -0.1593727171421051, 0.19418862462043762, -0.5876151919364929, -0.036705438047647476, 0.18173804879188538, 0.29243385791778564, 1.3028216361999512, -0.5081843733787537, -0.4179871678352356, 0.043523963540792465, -0.0003104811767116189, -0.9308505058288574, 0.23368267714977264, -0.04539843648672104, 1.1382477283477783, 0.2646206319332123, 0.25499919056892395, 1.01966392993927, 0.16415581107139587, 0.6200423240661621, -2.0066440105438232, 0.7194365859031677, 0.8781834840774536, 1.4730440378189087, 0.0781431719660759, -0.0332111231982708, 0.21957927942276, -0.5486578941345215, -0.48933228850364685, -0.1311977654695511, 1.1397080421447754, 0.7233108878135681, -0.27631425857543945, -0.21556587517261505, -0.5606635808944702, -0.20719674229621887, -0.33066487312316895, 0.010929868556559086, 0.3751709461212158, 0.010957970283925533, -0.009213373064994812, 1.2556992769241333, -0.14834047853946686, -0.3874341547489166, -0.410652220249176, -0.07455887645483017, 0.5892713069915771, -0.08193067461252213, -0.13049905002117157, -0.16503030061721802, 0.4437577724456787, 0.018560141324996948, 0.02782805636525154, -1.0504562854766846, -0.6045898795127869, -0.14008986949920654, 0.8919697999954224, -1.1723711490631104, -0.39500921964645386, -0.9290289878845215, 0.9230438470840454, 0.9671291708946228, -0.23423577845096588, 0.655962347984314, 0.05146532133221626, -0.4200746417045593, -0.44918200373649597, 0.5891321301460266, 1.2404145002365112, 0.1365874707698822, -0.21244867146015167, 0.2912691533565521, 0.5312801599502563, 0.5318360924720764, -0.4476475715637207, -1.1438074111938477, 0.4006502032279968, -0.8186900615692139, 0.000961855985224247, 0.07620350271463394, 0.03017628751695156, 1.5641003847122192, -0.15022684633731842, 0.447477251291275, 0.2127256840467453, 0.0580017976462841, -1.7491734027862549, -0.13638140261173248, -0.005812891758978367, 0.3303366005420685, -0.13174346089363098, -0.37476906180381775, 0.45583683252334595, 0.28104865550994873, 0.33501893281936646, 0.6873098015785217, 0.10097619891166687, 0.42209765315055847, -0.31800633668899536, 0.3365594446659088, 0.2949174642562866, 0.795713484287262, 1.7623378038406372, 0.9406761527061462, -0.28682810068130493, -0.4658835828304291, 1.4643296003341675, 0.3296051323413849, 0.5271036028862, 0.5505644083023071, 0.5531008243560791, 1.3973021507263184, -1.4568305015563965, 0.13491912186145782, 0.14998939633369446, 0.039440449327230453, 0.4441315233707428, -0.23214435577392578, 0.5331864953041077, -0.9130785465240479, 0.21033619344234467, 0.2853073477745056, -0.5584459900856018, 1.1989972591400146, 0.19402417540550232, 0.0999065488576889, 1.0979148149490356, -0.7197620272636414, -0.1799170970916748, -0.746835470199585, 0.16253003478050232, -0.3038974404335022, -0.2817687392234802, 0.9429766535758972, 1.1836042404174805, 0.7827228903770447, 1.084073543548584, -0.8687093257904053, -1.2889472246170044, 0.2438749521970749, -0.9821949005126953, 0.0957612469792366, -0.15438497066497803, -0.3511568307876587, -0.1539868265390396, -0.9790938496589661, -0.540986180305481, -0.14072805643081665, -0.7657634019851685, -0.12715387344360352, -0.05556442588567734, -0.9240716099739075, 0.41573503613471985, -0.20392857491970062, 0.942432165145874, 0.6544507741928101, 0.31797292828559875, 0.9113170504570007, 0.2552196979522705, -0.2878677546977997, -0.20811069011688232, 0.05764086917042732, -0.09205678850412369, -0.35987964272499084, -0.6104021072387695, -0.19422926008701324, 0.4756755530834198, 0.6426276564598083, -0.32662084698677063, 0.19578438997268677, 1.3529201745986938, 1.1317594051361084, -0.7175601124763489, -0.38778603076934814, 0.526690661907196, -0.8702556490898132, 0.649298906326294, 0.2616662085056305, -1.3964165449142456, 0.4446077346801758, -0.4089614152908325, -2.543748140335083, 1.621527910232544, 0.06764795631170273, 0.04376017674803734, 0.4331449866294861, 0.6519913673400879, -0.39104172587394714, 1.3661069869995117, -0.09150534868240356, -0.688482403755188, 0.18855106830596924, -0.29023393988609314, -1.175301432609558, 1.0894593000411987, 1.2995872497558594, 0.4906880259513855, -0.6253206729888916, 0.5810086131095886, 0.05025337263941765, -0.03983540087938309, -0.41682669520378113, -0.45456552505493164, 0.5089322924613953, 0.8498722314834595, 0.013595560565590858, -0.3796112835407257, 0.5660019516944885, -0.6188045144081116, 0.6300381422042847, 0.293222576379776, 1.104466438293457, 0.25968363881111145, -0.28937023878097534, 0.5408431887626648, -0.459188312292099, -0.5106740593910217, 0.03523522615432739, -0.604981541633606, 0.8635220527648926, 0.07153518497943878, 0.257066935300827, 0.43153202533721924, -0.10835019499063492, -0.40896111726760864, -0.8535892367362976, 0.9100493788719177, 0.18582738935947418, -0.9009436368942261, -0.5535684823989868, -0.2444390058517456, 0.029396671801805496, -0.29208430647850037, 0.7890001535415649, -0.4954439103603363, -1.3988683223724365, -0.6192572712898254, -0.5003939270973206, -0.5186861753463745, 0.5760250687599182, -0.024346139281988144, 0.4348587691783905, 0.11717614531517029, -1.7205185890197754, 0.7212243676185608, 0.16236364841461182, -2.163877487182617, -0.13342605531215668, -1.0277525186538696, 1.3600233793258667, 0.08463361859321594, -0.16819128394126892, 0.5526597499847412, 1.0021005868911743, -0.8687719106674194, -0.3724796772003174, -1.1356120109558105, -0.8194372057914734, 0.7258774638175964, 0.8298228979110718, -0.8201414942741394, 0.734485924243927, -0.037444762885570526, -0.8287957310676575, -0.5267621874809265, -0.14812709391117096, -2.0008745193481445, 0.08909741044044495, 0.1885463148355484, 0.15009605884552002, -0.05002054572105408, 1.486855149269104, 0.2666076123714447, 0.7958372831344604, -0.2281917929649353, 1.287315011024475, -0.8806176781654358, -1.3366285562515259, -0.2718546688556671, 0.16819888353347778, -0.9050835967063904, -0.44573068618774414, -0.21823038160800934, -0.9173552989959717, -0.522697389125824, 0.28868886828422546, 1.3195058107376099, -0.46437132358551025, 0.413141131401062, -0.21862910687923431, -0.10552486032247543, -1.133243441581726, 0.48535001277923584, 0.771174967288971, -1.666292428970337, 0.3524748980998993, -0.26497769355773926, 0.41512420773506165, -1.1958147287368774, 0.21379505097866058, 1.1586068868637085, 0.25655728578567505, -0.5702918767929077, 0.3804109990596771, -0.7405177354812622, 0.13254794478416443, -0.35368937253952026, 0.8142099976539612, 0.7185536623001099, -0.362151175737381, 0.34568682312965393, 0.6911361813545227, -0.21011342108249664, 0.017018001526594162, -0.3522677421569824, -0.6712876558303833, -0.3894491195678711, 0.14676526188850403, 0.29935887455940247, 0.8668025135993958, -0.01765439845621586, 0.3907370865345001, -0.4208134114742279, -0.0595039427280426, 1.2119179964065552, -0.31295859813690186, -0.9964825510978699, 1.2238000631332397, 1.0153114795684814, 0.038106996566057205, 0.34690624475479126, -0.023941662162542343, 0.6463817358016968, 0.23689688742160797, -0.03947319835424423, 0.00985038559883833, -0.7597305774688721, 0.4088345170021057, -0.060997579246759415, 0.11963683366775513, 0.3455246686935425, -0.7019279599189758, -1.5654046535491943, 0.013085377402603626, 0.0677320584654808, -0.3106933534145355, 0.42392218112945557, -0.9264960885047913, -0.8708229064941406, 0.10451935231685638, -0.03386516869068146, 0.38326409459114075, -0.30086877942085266, -0.2145586609840393, -1.0726479291915894, -0.38224127888679504, 0.4126494824886322, -0.41905921697616577, 1.4757119417190552, -0.24709245562553406, 0.20582662522792816, -0.1190245971083641, 0.21690072119235992, -0.6021305322647095, -0.41343966126441956, -0.1702812761068344, -0.9313367009162903, -0.23046544194221497, -0.666016697883606, -0.3514419198036194, 0.4432845711708069, -0.6144866943359375, 0.5219338536262512, 0.42282095551490784, -0.417447954416275, 0.17370449006557465, 0.5944753885269165, 0.2883077561855316, -0.47515445947647095, -0.7961448431015015, -0.5066919326782227, 0.36289283633232117, 0.32011231780052185, 1.184231162071228, -0.7991707921028137, 0.8578487038612366, 0.3157968521118164, -0.036619432270526886, -0.7698807120323181, -0.717308521270752, 1.6413718461990356, -0.7265959978103638, 0.8064799904823303, -0.9892094731330872, -0.11198867857456207, -0.3738861083984375, -1.2819911241531372, -0.3647754490375519, -0.2787969708442688, -0.31864747405052185, -0.004182322416454554, -0.38069939613342285, -0.11607318371534348, -1.0143380165100098, 0.19539174437522888, -0.03886636346578598, -0.022942010313272476, 0.8011327385902405, -0.06714046746492386, -0.9416502714157104, -0.48909232020378113, 0.06968844681978226, 0.18639391660690308, 0.7412006258964539, 1.4492632150650024, 1.4129191637039185, 0.09728570282459259, -0.32556235790252686, -0.4004557132720947, 0.6950355768203735, -0.7312738299369812, -0.23915517330169678, -1.2835502624511719, -0.2960623502731323, 0.5116958022117615], [1.0959097146987915, 2.141512870788574, -2.369123697280884, -0.24214313924312592, 0.09650363773107529, -0.33652403950691223, 0.6166852116584778, 0.6009204387664795, -0.15809154510498047, -0.3184838593006134, -0.9295205473899841, -0.2791118323802948, 0.187245175242424, 0.13278760015964508, 0.3234948217868805, 1.171920657157898, 0.6951027512550354, 0.4743579030036926, 0.4563932418823242, 1.1636601686477661, -0.3541277050971985, -1.1893352270126343, -0.5215287804603577, 0.5664096474647522, 0.09668101370334625, -0.2486603856086731, -1.4501076936721802, -0.5262928605079651, -0.8688660264015198, -0.882200300693512, 1.5345633029937744, 0.2850666046142578, 0.23697051405906677, 0.06546909362077713, -2.3006956577301025, 0.577837347984314, 1.001565933227539, 0.08768849074840546, -0.023176399990916252, -0.0799839124083519, 2.417327880859375, 0.30847957730293274, -0.7075988054275513, -1.2364780902862549, 0.44233423471450806, 0.26582029461860657, 0.948139488697052, -1.190954327583313, 0.2180953025817871, -0.600351095199585, 0.4177874028682709, -0.07670922577381134, 0.5678309202194214, 1.16354238986969, 0.8422271609306335, -0.9974088668823242, 0.22953712940216064, 0.27172327041625977, 0.034832101315259933, 0.5462608337402344, 1.188075065612793, 0.22304962575435638, 0.5803138017654419, 0.7631714344024658, 0.6200322508811951, -0.9643233418464661, 0.6062601208686829, 0.5083056688308716, 0.28041791915893555, 0.8838817477226257, 0.5148893594741821, 0.4620016813278198, -0.4558617174625397, -0.04815283045172691, -0.3826785683631897, 0.5337554812431335, 0.011872009374201298, 0.8732556700706482, -0.20871730148792267, 0.43827009201049805, -0.3046121597290039, 0.14484994113445282, 0.2333022505044937, 0.322553426027298, -0.3430606424808502, 0.038119375705718994, 0.2944825291633606, -0.5216878056526184, -0.3662968873977661, 1.6254559755325317, -0.06266789883375168, 0.9200268387794495, 0.6040864586830139, 0.004946576897054911, -0.09609472006559372, -0.922674834728241, -0.24705316126346588, -1.5815016031265259, -0.7645139694213867, -0.5097169876098633, -0.015415809117257595, -0.9355775117874146, 1.1966907978057861, 0.8939799666404724, 0.6136500835418701, 1.685060739517212, 0.5095372200012207, -1.2139724493026733, -0.11303495615720749, -0.15661250054836273, -0.5937102437019348, -0.28903305530548096, -0.7131924033164978, -1.393206238746643, -0.12371787428855896, 1.2611349821090698, 1.502474069595337, 0.9757561087608337, 0.13880929350852966, 0.466363787651062, -0.3596731126308441, -0.3648894429206848, -0.3762451112270355, -0.04674305394291878, 1.0824252367019653, 0.3938397765159607, -0.486421674489975, -0.20318637788295746, 0.34442138671875, -0.019831374287605286, 0.2989136874675751, 0.027241505682468414, 0.2399657517671585, 0.35668864846229553, -0.40822461247444153, 0.5368642210960388, -0.4917321801185608, -0.6528836488723755, -0.01655949465930462, 0.5234785676002502, 0.37809208035469055, -0.35106581449508667, -0.2284407764673233, -0.027996089309453964, 0.1543906182050705, -0.6334053874015808, 0.9813541769981384, -0.632705569267273, -0.9237186312675476, 0.5632216334342957, -1.5269347429275513, -0.08739759027957916, -0.4251856505870819, 1.4675525426864624, 0.7464307546615601, -0.3863988518714905, 0.6157293915748596, 0.13330969214439392, -0.3843384385108948, 1.0650235414505005, 0.40729475021362305, 0.1616082787513733, -0.5274813175201416, 0.77814120054245, 0.6577606797218323, -0.3725833296775818, 1.0636969804763794, -0.04586854577064514, -0.5579312443733215, 1.3573765754699707, 0.5898598432540894, -0.8964551091194153, -0.4248158037662506, 0.03172997385263443, 0.7985005378723145, -0.5182181596755981, 1.0669667720794678, -0.035450346767902374, -0.8785766959190369, -0.4232158362865448, 0.5281659364700317, -0.04175259917974472, 0.7690142393112183, 0.21917669475078583, 0.5018536448478699, -0.1420344114303589, 0.027857845649123192, -0.2398156374692917, -0.7971460819244385, -1.0860213041305542, -0.8770885467529297, -0.19777080416679382, -1.0809839963912964, 0.11928841471672058, -0.2952550947666168, -0.6883531808853149, 0.778322160243988, -0.060548290610313416, -0.8817458152770996, 0.18099191784858704, 0.08657940477132797, -0.09739206731319427, -1.1545308828353882, -0.16804440319538116, -0.6016520857810974, 0.1990305483341217, -0.5256116986274719, 0.4015333652496338, -0.9355437755584717, 0.7813302874565125, 0.30799877643585205, -1.288280725479126, -1.361045241355896, 0.41092735528945923, 0.06217292323708534, -1.4291348457336426, 0.46491914987564087, -0.40094053745269775, -0.16983261704444885, -0.3009835481643677, -0.45367342233657837, 0.13330692052841187, 0.9212274551391602, 0.06042899563908577, 0.8938357830047607, -0.7496350407600403, -0.34420305490493774, -1.0822614431381226, -0.7315510511398315, 0.0716480240225792, -0.5562499165534973, -0.9965410828590393, 0.31378668546676636, 0.3752976655960083, -1.3375164270401, 0.3964691162109375, -0.3489115834236145, -0.008323995396494865, -0.20241674780845642, 1.0177160501480103, 0.47191935777664185, 0.3829061985015869, -1.027530312538147, 0.12553630769252777, -0.7490187883377075, 0.4899435043334961, 0.8208906650543213, -0.44639527797698975, -0.336215078830719, 1.587717056274414, 1.4505366086959839, -0.538979709148407, 1.1737587451934814, -0.3326661288738251, -0.5486778616905212, -0.7671281099319458, -0.17670251429080963, 0.4283500909805298, -0.7998073101043701, 1.4041564464569092, 0.33096081018447876, -1.0542292594909668, 0.3169475495815277, -0.051406778395175934, 0.4928048849105835, -0.7783707976341248, 0.302910715341568, -1.246351718902588, 0.4781511425971985, -0.19107401371002197, -0.20315799117088318, 0.007973401807248592, -0.17390380799770355, 0.5219250321388245, -0.010534019209444523, -1.1281824111938477, -0.20056666433811188, 1.0417070388793945, -0.36787065863609314, 0.9283226728439331, -0.19279904663562775, -1.3357946872711182, -1.234606385231018, 0.08102510869503021, 0.49761834740638733, -0.1984870731830597, -0.33017221093177795, 0.9553442597389221, 0.3708517849445343, 0.11931607127189636, 0.23794911801815033, 0.030786758288741112, 0.3755294978618622, -0.21610412001609802, 0.5998159646987915, -0.0443514846265316, 0.3313028812408447, -0.7850165963172913, -0.48647382855415344, 0.1004360169172287, 0.5742433667182922, 1.3876721858978271, 0.6649681925773621, 1.165963053703308, -0.7493804097175598, -0.023973528295755386, -0.6853700280189514, -0.06334131956100464, -0.7200362086296082, -0.3822607100009918, -0.46420520544052124, -1.3181084394454956, -0.2562021315097809, -0.5977478623390198, -0.3018563389778137, 0.3337568938732147, 0.30482208728790283, 0.6917295455932617, 0.7288775444030762, -0.4309917390346527, -1.275529146194458, -1.2731350660324097, -0.41916966438293457, -1.0854707956314087, 0.48191696405410767, 1.4015579223632812, -2.1263492107391357, -0.05080171674489975, -0.3894611895084381, -0.25153154134750366, -0.07492858916521072, -0.12731081247329712, 0.6270543336868286, -0.8069531321525574, -0.0720810666680336, -0.2169748842716217, 1.2657761573791504, 0.13680095970630646, -0.1033843383193016, -0.6434482932090759, 0.7241002321243286, 0.24384184181690216, -0.15528810024261475, -0.8493810892105103, -0.33904653787612915, -0.36599576473236084, -0.21961383521556854, 0.49033740162849426, 0.2204567790031433, 0.42030659317970276, -0.3052207827568054, -1.4578791856765747, -0.0843917652964592, -0.812316358089447, -0.41464847326278687, 1.0045702457427979, -0.023998426273465157, 0.9874555468559265, -0.296581894159317, 0.32484203577041626, 0.6325318813323975, -0.035724300891160965, 0.0736275315284729, -0.4960639774799347, 0.7746027112007141, 1.1559240818023682, 1.5248011350631714, 0.2678888440132141, 0.03838605433702469, 0.034529123455286026, -0.997520387172699, 0.35332679748535156, -0.3750426173210144, 0.26646220684051514, -0.038131233304739, -0.5291118621826172, -0.15396113693714142, -0.634605884552002, 0.38881394267082214, -0.001300943549722433, 0.5091950297355652, 0.5777713656425476, 0.03599085658788681, 0.24344463646411896, 0.7898921966552734, 0.6144307255744934, -0.4806152284145355, -0.465904176235199, 0.08196251094341278, 0.7002516388893127, -0.5624464154243469, 0.5723031163215637, -0.2560611963272095, -1.1749449968338013, 0.17658177018165588, -0.7259589433670044, -1.0635459423065186, -0.18800540268421173, 0.6050633192062378, 1.3611679077148438, -1.0499897003173828, -0.4339604675769806, -0.5764757990837097, 0.8793994188308716, 0.9835861325263977, 0.3630511462688446, 1.07760751247406, 0.5266740322113037, -0.4484647512435913, 0.3551337420940399, 0.08463471382856369, 1.2576394081115723, -0.287261426448822, -0.11897537857294083, -0.27117490768432617, 0.0057562654837965965, 0.5757478475570679, -0.9729551076889038, 0.3939622938632965, -0.0296114981174469, 0.11529693007469177, -0.4785933494567871, 0.3951073884963989, -0.3045588731765747, 1.933061122894287, 0.1345946043729782, -0.4786635637283325, -0.6261057257652283, 0.01400630921125412, -0.46748700737953186, 0.4084782898426056, 1.057714819908142, -0.6501104235649109, -0.344567209482193, -0.0012882091104984283, 0.5152732729911804, 0.3684846758842468, -0.02336743474006653, 0.173968106508255, 0.11430229246616364, 0.515317440032959, 0.12158522754907608, 0.7041884064674377, 0.2004755735397339, 1.2338358163833618, 0.8729931712150574, 1.4206782579421997, -0.2594788670539856, -0.016502730548381805, 0.9241505861282349, 0.28285881876945496, 0.5856086015701294, 0.9288887977600098, 0.29553505778312683, 0.9343931078910828, -0.5960025787353516, -0.46453744173049927, 0.7809939980506897, -0.0021227169781923294, 0.4283948242664337, -0.06801965832710266, 0.48781660199165344, -1.1616765260696411, -0.06769400835037231, 0.11392348259687424, -0.5533739924430847, 0.2742359936237335, -0.07491622120141983, 0.7085224390029907, 0.9743372201919556, -0.7006791830062866, 0.1483089029788971, -0.8366864323616028, -0.26061245799064636, -0.7778955101966858, -0.3849543333053589, 0.5962398052215576, 0.15027517080307007, 0.914013147354126, 0.8416606187820435, -0.3081327974796295, -1.018826961517334, -0.10604092478752136, -1.3342982530593872, 0.3853462338447571, -0.21230106055736542, -0.046130307018756866, -0.9327922463417053, -0.1262357234954834, -0.28571751713752747, -0.3214598000049591, -0.8183396458625793, -0.2856390178203583, -1.0862925052642822, -1.0826406478881836, 0.7963393330574036, 0.06937576085329056, 0.39664897322654724, 0.90983647108078, 0.5903892517089844, 0.005425659473985434, 0.522197425365448, -1.087593674659729, -0.3240281939506531, 0.7311522364616394, 0.5021852254867554, -0.5157580971717834, 0.17800486087799072, -0.8610702157020569, 0.20951209962368011, 0.0703561082482338, -0.038662441074848175, 0.7135806679725647, 0.6236461400985718, 1.308292269706726, -1.0187900066375732, -0.31971079111099243, 0.8485345840454102, -0.9921121001243591, 0.9696630239486694, 0.6630457639694214, -0.6748164296150208, -0.07153283804655075, -0.6278417110443115, -1.4778956174850464, 1.7200188636779785, 0.2970646023750305, 0.18915435671806335, 0.5411453247070312, 0.8718830943107605, -0.031455688178539276, 0.9221346974372864, -0.3629954159259796, 0.0011115269735455513, 0.10334132611751556, 0.07584535330533981, -0.38106635212898254, -0.025947852060198784, 0.9946402907371521, 0.05795183777809143, -0.4812379777431488, -0.02552301064133644, -0.31663262844085693, -0.214509055018425, -0.7205619215965271, -0.008002279326319695, 0.3690188229084015, 0.31662625074386597, 0.38446274399757385, -0.1877351999282837, 0.525869607925415, -1.0776151418685913, 0.10017040371894836, 0.6954393982887268, 0.6516902446746826, 0.39661070704460144, -0.3093441426753998, 1.0966532230377197, -0.7537133097648621, 0.23962128162384033, -0.25808265805244446, -0.41427165269851685, 1.106622576713562, -0.047062791883945465, -0.015216761268675327, 0.5266460180282593, 0.18083487451076508, -0.9270676970481873, -0.9918745160102844, -0.0811956524848938, 1.341077446937561, -0.9543097019195557, -0.8765451908111572, -0.3610944449901581, 0.007543180603533983, 0.07313786447048187, 0.2264205813407898, 0.11334218829870224, -1.1049933433532715, -1.3526687622070312, -0.13759441673755646, -0.4897456765174866, 1.127493143081665, -0.3468776047229767, 0.5653765797615051, 0.006676798686385155, -1.5590399503707886, 0.6874943971633911, -0.010503647848963737, -1.5934289693832397, 0.38239964842796326, -0.5839687585830688, 0.4174756705760956, -0.008586314506828785, 0.08346443623304367, 0.059022314846515656, 1.2912845611572266, -0.7174807190895081, -0.8378679752349854, -1.4817906618118286, -0.7717861533164978, 0.1276378035545349, 1.5311012268066406, -1.1121400594711304, 1.8411097526550293, -0.627157986164093, -0.19047966599464417, -0.30942007899284363, -0.01837347075343132, -0.33636045455932617, -0.012777951546013355, -0.2790079712867737, -0.1548253297805786, 0.4615718722343445, 0.8452108502388, 1.041358232498169, 1.4126273393630981, 0.23478421568870544, 1.2466011047363281, -1.026746392250061, -0.6233765482902527, -0.12360823154449463, -0.0645604282617569, -0.6877543330192566, -0.6937485337257385, -0.0077803065069019794, -0.8439880609512329, -0.8045617341995239, -0.3506562113761902, 1.2258403301239014, -1.1854655742645264, 0.7460061311721802, 0.3802102506160736, -0.5363979339599609, -0.7824856042861938, 0.05097631737589836, 0.09662795811891556, -0.4421705901622772, 0.27650582790374756, 0.041021693497896194, 0.15581350028514862, -0.8718594908714294, -0.4725518226623535, 0.6704597473144531, 0.07565389573574066, -0.42094239592552185, 0.22743678092956543, -0.015808148309588432, 0.38975390791893005, -0.5266897082328796, 1.1319222450256348, 0.787608802318573, -0.17202728986740112, 0.07227545231580734, -0.17178286612033844, -0.9497984051704407, 0.27452611923217773, -0.15097029507160187, -0.22647066414356232, -0.44100135564804077, 0.6979242563247681, 0.45512521266937256, -0.17890691757202148, 0.09677529335021973, 0.21025831997394562, 0.4766652584075928, 0.08649270981550217, 1.1384388208389282, -0.6934916973114014, 0.1320054978132248, 1.432702660560608, 1.1040648221969604, -0.5566328763961792, 0.6965308785438538, -0.3515738546848297, 0.22381484508514404, 0.5672568678855896, 0.19927246868610382, 0.1491767317056656, -0.7676494121551514, 0.3609967827796936, 0.37529873847961426, -0.3210360109806061, -0.4100104570388794, -0.7726694345474243, -1.6855648756027222, -0.10715460032224655, -0.31701263785362244, 0.09351260215044022, 0.5140453577041626, -0.971969723701477, -0.599814772605896, 0.04142744839191437, 0.08404990285634995, 0.0005183180328458548, -0.12422909587621689, 0.41194459795951843, -0.4585319757461548, -0.3149164319038391, 0.7980296015739441, -0.18323016166687012, 0.9424900412559509, -0.36277616024017334, -0.5073296427726746, -0.3284895718097687, -0.5507960915565491, 0.3124040365219116, -0.09880039095878601, -0.6510022878646851, -0.888712465763092, 0.47484835982322693, -0.6835448741912842, -0.13193799555301666, 0.13056062161922455, 0.4201776385307312, 0.35140830278396606, -0.22354763746261597, -0.0361587256193161, 0.46582522988319397, 0.5325469374656677, 0.41433650255203247, -0.39338040351867676, -0.8906688690185547, -1.182633399963379, 0.1349092721939087, -0.2927819490432739, 0.340090811252594, -0.505466878414154, 0.825959324836731, 0.21186526119709015, -0.664797306060791, -0.4588845670223236, -0.6332001686096191, 0.849263072013855, 0.3240344822406769, -0.11834016442298889, -1.2261731624603271, -0.18527962267398834, -0.10540338605642319, -1.22677481174469, -0.18460862338542938, -0.4208734333515167, -0.2110302895307541, -0.19915887713432312, -0.8992457985877991, -0.9290197491645813, -0.9636677503585815, 0.09630965441465378, 0.4874054789543152, 0.18487779796123505, 0.7375420331954956, -0.4336772561073303, -1.1915278434753418, 0.08320940285921097, 1.5045838356018066, 0.2560155987739563, 0.37660717964172363, 1.2882112264633179, 1.1503952741622925, 0.2559204399585724, -0.4711957275867462, -0.22602826356887817, 0.10690710693597794, -1.1320565938949585, 0.6469547152519226, -0.8133674263954163, -0.44523897767066956, -0.4064346253871918], [-0.3723863661289215, 2.2544918060302734, -2.53059458732605, -0.923529863357544, 0.10140477120876312, 0.002910822629928589, 1.4296375513076782, 0.4884054958820343, 0.03463757410645485, -1.4978984594345093, -0.056955769658088684, -0.1998804360628128, 0.5740365386009216, 0.6957622766494751, 0.15328101813793182, 0.3251182734966278, 0.3071214556694031, -0.6766011714935303, 0.5850779414176941, 0.9235190749168396, 0.19669322669506073, -1.402207851409912, -0.18484815955162048, -0.2179737538099289, 0.22423337399959564, -0.21546384692192078, -1.3879462480545044, 0.28273552656173706, -0.6945500373840332, -0.8439441323280334, 1.769718885421753, -0.5371209979057312, -0.02877913974225521, 0.13438327610492706, -0.9579429030418396, -0.3088705837726593, 0.34565794467926025, 0.0540100634098053, -0.3414762020111084, -0.06548518687486649, 2.5465080738067627, -0.06553728878498077, -0.4512960910797119, -1.3275189399719238, 0.6382509469985962, 0.05676031485199928, 0.12663981318473816, -1.207942247390747, -0.10102318972349167, -0.8292229175567627, 0.13618284463882446, -0.00836188904941082, 1.1925128698349, 0.6968124508857727, 1.1864875555038452, -1.016261100769043, 0.3298822045326233, 1.3988721370697021, 0.2580845355987549, 0.11127892136573792, 0.5428006052970886, 0.9413189888000488, 0.574997067451477, 1.4734574556350708, 0.4525604248046875, -0.6900373101234436, 0.6194140315055847, 0.014919149689376354, 0.21273669600486755, 0.27437442541122437, 0.13358387351036072, 0.22215533256530762, -0.2888962924480438, -0.525907576084137, -1.2285773754119873, 0.06231345608830452, -0.23399710655212402, 0.40889424085617065, 0.03843842074275017, 0.7544354796409607, -0.2430209219455719, -0.13665300607681274, 0.0056846244260668755, -0.006390061229467392, 0.47265443205833435, 0.5947560667991638, 0.3647483289241791, -0.4168488383293152, -0.6707624793052673, 1.6931192874908447, 0.002546636387705803, -0.010367038659751415, 0.44234922528266907, 0.02997034229338169, -0.519119143486023, -0.7080943584442139, -0.42986807227134705, -0.44745975732803345, -0.01905650645494461, -0.8574382066726685, -0.49620378017425537, -0.4806835949420929, 0.2790418565273285, 0.6976834535598755, -0.2328578531742096, 2.1925811767578125, 0.1332404911518097, -0.5658389329910278, -0.8389632105827332, -0.21313564479351044, -0.12106171995401382, 0.187638059258461, 0.1031675934791565, -0.13326673209667206, -0.3624417781829834, 0.7560604810714722, 1.5216363668441772, 0.34846991300582886, 0.15145398676395416, 0.11163129657506943, -0.28933537006378174, -1.1078683137893677, -0.4380984306335449, 0.10290568321943283, 1.8582231998443604, -0.05997907742857933, -1.0710521936416626, -0.3611527681350708, 0.10776523500680923, -0.1404956728219986, -0.007249265909194946, 0.12569384276866913, -0.09464527666568756, 0.4825090765953064, -0.18575701117515564, 1.009466290473938, 0.486910879611969, -1.066042423248291, 0.4161951541900635, 0.20553797483444214, -0.23172175884246826, -0.4477018415927887, -0.6626135110855103, -0.9737972021102905, 0.2782866954803467, -0.6337147355079651, 0.8401069045066833, 0.14513875544071198, -0.1732693463563919, 0.19858551025390625, -1.8308359384536743, -0.14218217134475708, 0.3215556740760803, 1.5576248168945312, 0.484898179769516, -0.9023062586784363, 0.35953837633132935, 0.4838407337665558, 0.5771051645278931, 0.7870330214500427, 1.0374523401260376, -0.43554598093032837, -0.8104262948036194, 0.9729456901550293, 1.2920514345169067, -0.8556274771690369, 0.7277746796607971, 0.19296981394290924, -0.4932481646537781, 0.49365368485450745, 0.18721161782741547, -0.19427284598350525, -0.46590498089790344, 0.7374765872955322, -0.10031615942716599, -1.1201846599578857, 1.2283529043197632, -0.46473804116249084, -0.8879565596580505, -1.3837370872497559, 0.7489610314369202, -0.05293118953704834, -0.13069431483745575, 0.18127791583538055, 0.5541865229606628, -0.6305062174797058, 0.0703018456697464, -1.079309344291687, 0.21498025953769684, -0.4877854287624359, -0.773785412311554, -0.015154695138335228, -1.5876491069793701, 0.17312631011009216, -0.4483749270439148, -0.9666467308998108, 1.085954189300537, -0.2462049126625061, -0.4795699715614319, -0.023577624931931496, -0.4217230975627899, -0.16181713342666626, -1.1762819290161133, -0.1238497868180275, -0.8540805578231812, 0.11526674777269363, -0.4929066002368927, 0.6611466407775879, -0.4642269015312195, 0.9771226048469543, 0.573266863822937, 0.10019002854824066, -0.6924280524253845, 0.42471081018447876, 0.5113717317581177, -0.9635102152824402, 0.2923434376716614, 0.021209686994552612, -0.25185489654541016, 0.041724324226379395, 0.10873634368181229, 0.37660133838653564, 0.8082126379013062, 0.30553677678108215, 0.8545008301734924, -0.27129343152046204, -0.6276001930236816, -0.29138508439064026, -0.6863864660263062, 0.20907019078731537, -0.3681219816207886, -1.0034723281860352, 0.5710111260414124, 0.20371989905834198, -0.652505099773407, 1.1127018928527832, -0.28208866715431213, 0.2494659274816513, 0.47728970646858215, 1.0798914432525635, 0.7027501463890076, 0.2014995813369751, -0.6943414807319641, -0.8132501244544983, -0.36265265941619873, -0.3903588652610779, 0.6740551590919495, -0.33717653155326843, 0.3223794996738434, 1.750348448753357, 0.9707763195037842, -0.2147199660539627, 0.22231124341487885, -0.7339682579040527, 0.041895490139722824, -0.9583987593650818, 0.059216130524873734, -0.11032944172620773, -0.9111279249191284, 1.3846657276153564, 0.48159709572792053, -1.8423986434936523, -0.5122196078300476, -0.2964380383491516, 0.09070783853530884, -0.7445864677429199, -0.49166417121887207, -0.3676203191280365, 0.08884114027023315, 0.0813026949763298, 0.010434497147798538, -0.47265303134918213, -0.29404041171073914, 1.0375596284866333, -0.40113165974617004, -0.5219353437423706, 0.18395766615867615, 0.8238527178764343, 0.02346445806324482, 1.2390472888946533, -0.017392344772815704, -1.6180247068405151, -0.828088641166687, 0.3017481863498688, 0.6804797053337097, 0.42417383193969727, -0.07030589878559113, -0.16889016330242157, 1.01918625831604, 0.17091532051563263, 0.5209524035453796, 0.4519617259502411, -0.016336629167199135, 0.062489550560712814, -0.2144172042608261, 0.1906357705593109, 0.6123842000961304, -1.009497046470642, -0.6694176197052002, -0.1284058541059494, 0.8859688639640808, 1.1662846803665161, 1.3342734575271606, 1.1316603422164917, -0.1406198889017105, 0.3253333568572998, -0.1425025910139084, -0.2891133427619934, -0.33135977387428284, -0.6957498788833618, -0.5499367713928223, -0.9939659833908081, -0.21354679763317108, -0.5243109464645386, -0.009628650732338428, 1.2267462015151978, 0.05341889336705208, 1.1173489093780518, 0.10506917536258698, -0.5458166599273682, -1.0206687450408936, -0.6469175815582275, -0.6436303853988647, -0.6206746101379395, 0.7306267023086548, 1.146987795829773, -0.6456022262573242, 0.05965554714202881, -0.07791253924369812, 0.5754518508911133, 0.9375780820846558, 0.3940723240375519, 0.10100710391998291, -1.3150999546051025, -0.46141529083251953, 0.16805340349674225, 1.0732494592666626, -0.29541686177253723, 0.10123979300260544, -0.4752453863620758, 0.7746497392654419, 1.1584749221801758, -0.1982853263616562, -0.29919466376304626, -0.002330780029296875, -0.6424344182014465, -0.35267752408981323, -0.25723057985305786, -0.14495381712913513, 0.9958478808403015, -0.10292088985443115, -0.36863332986831665, -0.2108100801706314, -0.47872841358184814, -0.49918946623802185, 0.5050526261329651, 0.13558639585971832, 1.091425895690918, -0.14543598890304565, 0.7071505188941956, 1.4454843997955322, 0.4502519965171814, 0.5577289462089539, -2.01656174659729, 0.5598326325416565, 0.9146445989608765, 0.718837559223175, 0.6113347411155701, 0.5230607390403748, 0.30532026290893555, -1.117563009262085, -0.48660603165626526, -0.1191079244017601, 0.6535320281982422, 0.6007646918296814, 0.2993094027042389, -0.3402823805809021, -0.09153925627470016, 0.5115841627120972, -0.3431670367717743, 0.607996940612793, 0.43382948637008667, -0.5552705526351929, -0.2364426702260971, 0.9277711510658264, 0.032560303807258606, -0.4122682213783264, -0.8472073078155518, 0.363348126411438, 0.24663646519184113, -0.18410877883434296, 0.023582449182868004, -0.5855649709701538, -0.045323941856622696, 0.08895085752010345, 0.13234864175319672, -0.7420644164085388, -0.8536865711212158, 0.10427214205265045, 1.0599452257156372, -1.3544769287109375, -0.6420531868934631, -0.8183232545852661, 0.4303489923477173, 0.42438894510269165, -0.39443448185920715, 0.5405547618865967, -0.03586101531982422, -0.20459435880184174, -0.44924283027648926, 0.20861653983592987, 1.3633010387420654, 0.38246625661849976, -0.1667340099811554, -0.14611031115055084, 0.51564621925354, 0.45880717039108276, -0.42215263843536377, -0.5025412440299988, -0.026157226413488388, -0.8971932530403137, 0.41627568006515503, 0.30472731590270996, -0.37048855423927307, 1.420219898223877, -0.47851189970970154, 0.0848333090543747, 0.41125091910362244, -0.3292613625526428, -1.0483238697052002, 0.20701144635677338, 0.12624257802963257, -0.050554800778627396, -0.19720569252967834, -0.11360543221235275, 0.4318270981311798, 0.1971317082643509, 0.4334847331047058, 0.5161882638931274, 0.17745669186115265, -0.240748330950737, -0.19186708331108093, 0.6376968622207642, 0.18583890795707703, 0.3151896595954895, 1.5083277225494385, 0.9925724864006042, -0.5853139758110046, -0.8196212649345398, 0.684020459651947, 0.07209789007902145, -0.1774844378232956, 1.1871484518051147, 0.7283732891082764, 1.0669050216674805, -1.668575644493103, -0.18574118614196777, 0.7582062482833862, -0.3225126564502716, 0.9937041401863098, -0.05927562341094017, 0.37687742710113525, -1.1026382446289062, -0.14196433126926422, 0.16068850457668304, -0.20282095670700073, 1.0038659572601318, 0.08484179526567459, -0.020450014621019363, 0.7157711386680603, -0.5794384479522705, -0.24843895435333252, -0.5704062581062317, -0.42214855551719666, -0.20611633360385895, 0.2152450829744339, 1.1805038452148438, 0.8160091042518616, 0.8753515481948853, 0.9153919816017151, -0.5078579783439636, -0.9319283366203308, 0.6046684980392456, -1.1351711750030518, -0.13692665100097656, -0.057931847870349884, -0.39721864461898804, -0.1097119003534317, -0.9266810417175293, -0.31802836060523987, 0.15717054903507233, -0.6586356163024902, -0.5675969123840332, -0.6939307451248169, -0.9804955720901489, 0.18619059026241302, -0.06680253148078918, 1.3975096940994263, 0.7904037833213806, 0.3348918855190277, -0.029235634952783585, 0.04562656581401825, -0.8033729195594788, -0.2513505816459656, 0.2757502496242523, -0.2915542423725128, 0.1999569833278656, -1.1053930521011353, -0.5980687141418457, 0.4575185179710388, 0.49540582299232483, 0.07036746293306351, 0.1992998719215393, 1.188855767250061, 1.77675199508667, -0.7498349547386169, -0.18182134628295898, 0.8529885411262512, -0.5258722305297852, 0.6735453009605408, 0.519203245639801, -0.8098804950714111, -0.06279660761356354, -0.11968177556991577, -2.301119327545166, 1.6989270448684692, -0.02005898952484131, -0.586903989315033, 0.6924272179603577, 0.8789438009262085, -0.3392089903354645, 1.4531018733978271, -0.5885007977485657, -0.4729902148246765, 0.17376279830932617, -0.2873535752296448, -1.6089354753494263, 0.36628252267837524, 0.7954242825508118, -0.06954269111156464, -0.8471983671188354, 0.6288950443267822, 0.018288597464561462, 0.11464524269104004, 0.5982035994529724, -0.37919870018959045, 0.7559922337532043, 0.39159321784973145, 0.04077534005045891, -0.6638134121894836, 0.8798955678939819, -1.0986608266830444, 0.4480205476284027, 0.3693060278892517, 0.9683871269226074, 0.2734251916408539, -0.8928183913230896, 0.7026383876800537, -0.6191901564598083, -0.17489251494407654, 0.1468367576599121, -0.5552339553833008, 0.5286176204681396, 0.28611263632774353, 0.6477799415588379, 0.3463573753833771, -0.34860438108444214, -0.42012733221054077, -0.7817266583442688, -0.12418895959854126, 0.15155689418315887, -1.4463865756988525, -0.07820657640695572, -0.48485466837882996, -0.21131961047649384, 0.25776827335357666, 0.3614465594291687, -0.21794560551643372, -1.3505781888961792, -0.9376106858253479, -0.8402333855628967, -0.6672884225845337, 0.8770828247070312, -0.28154125809669495, 0.4568088948726654, -0.11266979575157166, -1.583030104637146, 0.8315363526344299, -0.6725620031356812, -1.9992609024047852, -0.22440941631793976, -0.012111409567296505, 1.269429087638855, -0.1906575858592987, 0.1140093058347702, 0.6435978412628174, 0.8215177059173584, -0.0753663033246994, -0.55816251039505, -1.3478790521621704, -0.5752049684524536, 0.7567416429519653, 0.5492613911628723, -0.6188027262687683, 1.6699256896972656, 0.3497089743614197, -0.34770894050598145, -0.19497200846672058, 0.17405307292938232, -1.7868770360946655, -0.19660770893096924, 0.267142117023468, -0.1215563416481018, 0.28764966130256653, 1.232292890548706, 0.1878330260515213, 1.1225866079330444, 0.37623533606529236, 1.2381349802017212, -0.4311123192310333, -1.012593150138855, 0.1527271866798401, 0.08658691495656967, -0.8880807757377625, 0.07187715917825699, 0.2851578891277313, -0.9225649237632751, -0.9033225178718567, 0.3223186135292053, 1.0993326902389526, -0.7464540600776672, 0.688743531703949, -0.23737041652202606, 0.573189914226532, -1.5674285888671875, 0.398519903421402, 0.6949756741523743, -0.8205738067626953, -0.11019408702850342, 0.2802073657512665, 0.6340662837028503, -1.2513976097106934, 0.0626121535897255, 0.5802998542785645, -0.06734585762023926, -0.6213926672935486, -0.13389024138450623, -0.3155476152896881, 0.33551374077796936, -0.5783042311668396, 1.6401458978652954, 0.6961238384246826, -0.17642100155353546, 0.10427329689264297, 1.0425407886505127, -0.005365659948438406, 0.4346536695957184, -0.33241650462150574, -0.37333622574806213, -0.9071770310401917, 0.3799302577972412, 0.16177605092525482, 0.23761680722236633, -0.6598287224769592, 0.2604881525039673, -0.20497947931289673, -0.4115292429924011, 2.02646803855896, -0.47220200300216675, -0.604500412940979, 0.9792886972427368, 0.4828420877456665, -0.07805013656616211, 0.7554001808166504, -0.23859310150146484, 0.6622813940048218, -0.056265462189912796, 0.5606634020805359, 0.10151338577270508, -0.5178192853927612, 0.06698460131883621, 0.7518283724784851, -0.39656519889831543, 0.5871743559837341, -0.4471430480480194, -1.2716578245162964, -0.8790154457092285, -0.5331107974052429, -0.6259339451789856, 0.727940022945404, -0.38760602474212646, -0.5519428253173828, -0.3518770933151245, -0.21942541003227234, -0.0612955167889595, -0.9455339312553406, -0.08955660462379456, -1.07802152633667, -0.7948032021522522, 0.5614472031593323, -0.5214546918869019, 1.1827435493469238, 0.09945638477802277, 0.8208243250846863, -0.32165271043777466, -0.3596510589122772, -0.10410548001527786, 0.0001785573549568653, -0.19189250469207764, -0.6222345232963562, 0.8183398246765137, -0.8019896149635315, 0.15772832930088043, 0.33623263239860535, -0.7101964950561523, 0.4952491819858551, -0.13405348360538483, -1.2417356967926025, 0.14900819957256317, 0.22150388360023499, 0.10181549191474915, -0.4068397879600525, -0.7042093873023987, -0.8971533179283142, 0.66362464427948, 0.3705858290195465, 0.9121537208557129, -0.7087903022766113, 0.7638970017433167, 0.5183908343315125, -0.29979759454727173, -0.9897884726524353, -0.6891865134239197, 1.3427743911743164, -0.47291937470436096, 0.6702263355255127, -0.8255305290222168, 0.047991566359996796, -0.15460939705371857, -1.1804460287094116, -0.32044121623039246, -0.12169798463582993, -0.5156208872795105, -0.031358201056718826, -0.7291830778121948, -0.34527716040611267, -0.8268617391586304, 0.28569480776786804, -0.0443619005382061, 0.10322942584753036, 0.674892246723175, 0.2123442143201828, -0.7348799705505371, -0.8756810426712036, 0.20395882427692413, 0.2619740962982178, 0.6781546473503113, 1.2477020025253296, 1.3390116691589355, 0.08796478062868118, -0.20794008672237396, -0.4190950095653534, 0.154244065284729, -0.6043580174446106, -0.06693549454212189, -1.0559748411178589, -0.541242241859436, -0.05815467610955238], [-0.6466774344444275, 0.7929073572158813, -2.3725924491882324, -0.8073758482933044, 0.4500918984413147, -0.49151164293289185, 0.7349882125854492, -0.0012904815375804901, -0.7880847454071045, -0.28613466024398804, -1.3344005346298218, 0.49583932757377625, -0.5754044055938721, 0.1957225799560547, -0.27105867862701416, 0.8911151885986328, 1.0074611902236938, -0.1854296773672104, 0.7034185528755188, 0.7448040246963501, -0.5433462858200073, -1.106935739517212, 0.7779027223587036, 0.4329890012741089, 0.33496084809303284, 0.45798733830451965, -1.5011621713638306, -0.7333377003669739, -0.5554541945457458, -0.55805903673172, 1.9039968252182007, 0.25640833377838135, -0.46148526668548584, -0.1914229542016983, -1.3635835647583008, -0.5604103803634644, 0.4429357051849365, -0.05352296307682991, 0.18948984146118164, 1.1429224014282227, 1.35666024684906, 0.5456544160842896, -0.7880585193634033, -1.8348042964935303, 0.5394415259361267, -0.7144795656204224, 0.09324418753385544, -0.92400062084198, -0.5432806015014648, -1.3931559324264526, 0.5382136106491089, 0.32646024227142334, 0.5111181735992432, 0.11313968896865845, 1.4352083206176758, -0.7309923768043518, -0.14452825486660004, 0.9452807903289795, 0.4635547995567322, -0.29550501704216003, 1.5441792011260986, 0.19311147928237915, -0.25168725848197937, 0.26732149720191956, 0.5164057612419128, 0.1136353462934494, 0.6750127077102661, 0.36821675300598145, -0.43079304695129395, -0.09208569675683975, 0.34102532267570496, 0.044837549328804016, -0.6601642966270447, 0.3409768044948578, -0.6134703755378723, 0.5387156009674072, 1.1832387447357178, 0.03306533023715019, -0.24228891730308533, 0.36447519063949585, -0.3342956006526947, -0.07373624294996262, 0.12550559639930725, -0.12913063168525696, -0.2412494271993637, 0.20822595059871674, 0.35414063930511475, 0.6172224879264832, -0.7809507250785828, 2.01267409324646, 0.07622768729925156, 0.3569236993789673, 0.9738278388977051, -0.5974876880645752, 0.21920686960220337, -0.7090116143226624, -0.07987166196107864, -0.9561966061592102, -0.8902185559272766, -0.6026334166526794, 0.05805196985602379, -0.567278265953064, 0.6989962458610535, 0.2836059033870697, 0.7485577464103699, 1.3572077751159668, 0.43462657928466797, -0.32730767130851746, -0.26922059059143066, 0.18821030855178833, -0.09382788091897964, -0.10050907731056213, -1.3035165071487427, -0.7952826619148254, 0.5044186115264893, 1.1348645687103271, 1.0175962448120117, -0.5675690770149231, -0.021779270842671394, 0.7601314187049866, -0.6896531581878662, -0.32449620962142944, -1.128908634185791, 0.5089355707168579, 1.2780016660690308, 0.6298897862434387, -0.06081903725862503, -0.14341358840465546, 0.14947637915611267, -0.10858942568302155, 1.140586018562317, 0.3682138919830322, -0.07307994365692139, 0.48456260561943054, 0.11936648935079575, 1.219494104385376, -0.24497640132904053, -1.0175899267196655, 0.03393522650003433, -0.5628749132156372, -0.488958477973938, -0.47960934042930603, -0.8792271614074707, -0.34766143560409546, 0.39551976323127747, -0.6698969602584839, 0.4354352056980133, 0.2721119821071625, -0.7218141555786133, 0.2679320275783539, -1.0226870775222778, 0.07892841845750809, 0.21843576431274414, 0.5362939238548279, 0.5496541261672974, 0.4428638219833374, 0.40972957015037537, 0.025130392983555794, -0.08337213844060898, 1.2300732135772705, 0.7086376547813416, -0.18360809981822968, -0.594327449798584, 1.0093730688095093, 0.6843879818916321, -0.657680332660675, 0.9590311646461487, 0.24147899448871613, 0.28223949670791626, 0.30741065740585327, -0.37818795442581177, -1.2346431016921997, -0.33276131749153137, 0.4248884916305542, -0.12460093200206757, -0.7183137536048889, 0.33239901065826416, -0.6298204064369202, -1.4449024200439453, -0.9161653518676758, 0.31018179655075073, -0.7016996741294861, 0.3235442042350769, -0.178517684340477, 0.5886000990867615, -0.3708772361278534, 0.2957463562488556, 0.22474651038646698, -0.8202781677246094, -1.3767119646072388, -1.0568273067474365, -0.6334450244903564, -1.3001933097839355, -0.23854242265224457, -0.3055588901042938, -0.8135958909988403, -0.1961510330438614, -0.7651929259300232, -0.4405207335948944, 0.21077708899974823, -0.16252361238002777, -0.5351480841636658, -0.6253445744514465, 0.482340931892395, -0.41997653245925903, 0.6666219234466553, -0.7502243518829346, 0.24242721498012543, -0.7312555909156799, 0.2407686859369278, 1.6455501317977905, 0.5694254636764526, -1.1367777585983276, 0.7459772825241089, -0.08060998469591141, -1.947800874710083, 0.6186310052871704, -0.1468818038702011, -0.5547375082969666, 0.18276973068714142, 0.5597624778747559, 0.5786397457122803, 0.4841429889202118, 0.2234739363193512, 0.3505047857761383, 0.08867280185222626, -0.9989883899688721, -0.41450411081314087, -0.7463074922561646, -0.6317028403282166, -0.8484904170036316, -0.6124957203865051, 0.8944221138954163, 1.0652031898498535, -1.1489359140396118, 0.18617157638072968, -0.8316879272460938, 0.5222846865653992, 0.13876782357692719, 0.339960515499115, 0.2214486449956894, 0.8184511065483093, -1.044913649559021, 0.11485772579908371, -0.9566157460212708, -0.6733705997467041, 0.6817888021469116, -0.15163104236125946, 0.5761160850524902, 1.2805256843566895, 1.0369067192077637, -0.4086134135723114, -0.5172678828239441, -0.0950484573841095, -0.15545694530010223, -0.9705240726470947, -0.5205791592597961, 0.25354287028312683, -0.9641983509063721, 1.0474845170974731, 0.5138497352600098, -0.4813731014728546, -0.40679019689559937, 0.17733538150787354, -0.1782376766204834, -0.3835884630680084, 0.08408664166927338, -0.8663902878761292, 1.098557472229004, 0.007179230451583862, -0.5637162923812866, 0.24605585634708405, 0.22350025177001953, 0.4215434491634369, -0.3587031662464142, -0.14199581742286682, -0.48897597193717957, 0.7779192924499512, -0.3616006076335907, 0.25641849637031555, -0.3196892738342285, -1.5525578260421753, -0.8219019770622253, -0.7313295006752014, 0.8616233468055725, -0.016783030703663826, -0.35617852210998535, 0.24816705286502838, 0.48500722646713257, -0.3094947636127472, 0.27713096141815186, 0.5848109126091003, 0.9577704668045044, -0.2045908421278, 0.21733620762825012, 0.10924771428108215, 0.7599243521690369, -1.2211960554122925, -0.8320967555046082, 0.009363335557281971, -0.009864618070423603, 1.1669968366622925, 0.08777786046266556, 1.449161171913147, -0.897843599319458, -0.21611754596233368, -1.319313406944275, 0.25120919942855835, -1.0207593441009521, -0.12892811000347137, 0.04276452213525772, -1.1773154735565186, -0.6371715664863586, -1.0467760562896729, 0.05141431838274002, 0.29603075981140137, -0.9851942658424377, 0.5725189447402954, 0.8962704539299011, -0.2573050856590271, -1.7776497602462769, -0.7442936301231384, 0.388210266828537, -1.2042224407196045, 0.8837597370147705, 1.4676584005355835, -0.9356374740600586, -0.2815706431865692, 0.20538601279258728, -0.5215804576873779, 1.203017234802246, -0.38829952478408813, 1.0648140907287598, -0.7333957552909851, -0.6775543689727783, 0.3180658221244812, 1.2360116243362427, 0.505996584892273, -0.09660811722278595, -0.6934093832969666, 0.02243046835064888, 0.5263354778289795, -0.1017570048570633, -0.4721534848213196, 0.8362510204315186, 0.04207732900977135, -0.5188389420509338, 0.023097790777683258, 1.0656567811965942, 0.8915748000144958, -0.6189039349555969, -0.6726478934288025, -0.6147873401641846, -0.13404743373394012, -0.6234263777732849, 0.3526177406311035, -0.3158910572528839, 1.3690906763076782, -0.0594232939183712, -0.40342915058135986, 1.0075432062149048, 0.008968954905867577, -0.20616470277309418, -1.5242465734481812, 0.5597188472747803, 0.7089007496833801, 1.555027961730957, 0.609456479549408, -0.010230008512735367, 0.03392397612333298, -0.5421923995018005, 0.2232457399368286, 0.29909199476242065, 1.0445021390914917, 0.8288046717643738, -0.8559550046920776, -0.5241961479187012, -0.3209218978881836, 0.2793436348438263, -0.30985355377197266, -0.436977356672287, -0.1540943682193756, -0.7550769448280334, -0.3487990200519562, 1.1177868843078613, 0.9574883580207825, -0.016825513914227486, 0.1806231141090393, 0.18169938027858734, 0.633236825466156, -1.0067065954208374, -0.14921064674854279, -0.6012651324272156, -0.5824987292289734, 0.6708074808120728, -0.6772290468215942, -0.5398795008659363, 0.12580245733261108, 0.7178367376327515, 0.8211670517921448, -1.5356266498565674, 0.017582306638360023, -0.3694452941417694, 0.6183675527572632, 0.12762898206710815, 0.43690839409828186, 0.332561731338501, 0.013206308707594872, 0.26774588227272034, 0.576898992061615, 0.04680755361914635, 1.8287781476974487, 0.09002149105072021, -0.63386070728302, 0.45004338026046753, 0.41716504096984863, 0.13931801915168762, 0.24719324707984924, -0.4821189045906067, 0.2542414367198944, -0.27058684825897217, -0.8477196097373962, -0.32391422986984253, -0.36002182960510254, 1.622270941734314, -0.30749449133872986, 0.2035554051399231, 0.26372769474983215, -0.02694738283753395, -0.9830660820007324, 0.15961962938308716, 0.09625859558582306, -0.3711884021759033, -0.070896215736866, 0.25016090273857117, 0.6278859972953796, 0.6204410195350647, 0.8186314702033997, 0.13958683609962463, 1.2245689630508423, -0.13417857885360718, 0.30638566613197327, 0.49620628356933594, 0.3492448925971985, 1.1373432874679565, 0.8172429203987122, 1.4434503316879272, -0.6666797399520874, -0.6109955310821533, 1.6602238416671753, -0.19357141852378845, 0.5652025938034058, 0.33500319719314575, 0.6399911642074585, 1.1864486932754517, -1.3530086278915405, -0.36452001333236694, 0.3795185983181, 0.18213775753974915, 0.7405605912208557, -0.855400025844574, -0.6157618165016174, -0.9046661257743835, 0.09387984871864319, -0.1754707545042038, -0.010608295910060406, 0.8387725353240967, 0.2908113896846771, 0.3667996823787689, 0.7037279009819031, -0.5860645771026611, 0.7214860320091248, -0.6912247538566589, 0.7894577383995056, -0.23032744228839874, -0.512849748134613, 0.15901289880275726, 0.2032465636730194, 0.9052941203117371, 1.5607550144195557, -0.32749101519584656, -0.39474520087242126, 0.19218921661376953, -0.9428527355194092, -0.07717088609933853, -0.5054653286933899, 0.0959549993276596, -0.4206887185573578, -0.42572110891342163, 0.1762228012084961, 0.09579723328351974, 0.3468688726425171, -0.02477412112057209, 0.02632082626223564, -1.1943227052688599, -0.3115529716014862, 0.6937248706817627, 0.8136633634567261, -0.04136297106742859, 0.6342298984527588, 0.7198754549026489, 0.21972759068012238, -1.0024094581604004, -0.1869438737630844, 0.370444118976593, 0.6567791700363159, -0.037019696086645126, -0.6393361687660217, -0.9521489143371582, 0.10161886364221573, 0.5016121864318848, 0.09325800836086273, 0.18586722016334534, 0.9855616688728333, 0.9489268660545349, 0.07773090153932571, -0.7102457284927368, 0.5567288994789124, -0.9320219159126282, 0.1012839823961258, 0.1282372623682022, -1.2176768779754639, -0.29755082726478577, 0.24871404469013214, -2.3394079208374023, 1.3198401927947998, 0.017311278730630875, -0.7983534932136536, 0.5432254076004028, 1.1030369997024536, 0.16356261074543, 0.5319639444351196, -0.8390018939971924, 0.3479922413825989, 0.24010081589221954, -0.015219304710626602, -0.9027340412139893, 0.5310884714126587, 1.0783069133758545, 0.4768151640892029, -0.058887094259262085, 0.6248832941055298, 0.16869784891605377, -0.11209901422262192, -0.5450858473777771, -0.1395024210214615, 0.650759756565094, 0.38152340054512024, 0.42067915201187134, -0.825279951095581, 0.11674723774194717, -0.6812184453010559, 0.30178123712539673, -0.04930213838815689, 1.266758918762207, 0.6333968639373779, -0.4405789077281952, 0.35257694125175476, -1.077831506729126, 0.5610962510108948, 0.19555407762527466, -0.9915052056312561, 1.2702041864395142, 0.08157289028167725, -0.27488818764686584, 0.3560546934604645, -0.5686648488044739, -0.94185870885849, -0.8148636817932129, -0.1257622390985489, 1.4731602668762207, -1.651157021522522, -0.7134305834770203, -0.2601625919342041, -0.24269968271255493, 0.19679352641105652, -0.48137834668159485, 0.445349782705307, -0.7805252075195312, -1.6021462678909302, -0.29905447363853455, -0.1268269270658493, 0.8912715315818787, -0.5667470693588257, 0.2353798747062683, 0.571899950504303, -1.4664905071258545, 0.6430032849311829, -0.1017957404255867, -1.4885413646697998, -0.011875629425048828, -1.0486795902252197, 0.5677909851074219, -0.2345404028892517, 0.29744550585746765, 0.22848854959011078, 0.8997611999511719, -0.9817346930503845, -1.0224720239639282, -0.3569866418838501, -0.08490251004695892, 1.0287684202194214, 1.107640027999878, -0.5074307918548584, 0.9845627546310425, -1.0479825735092163, -0.7007095217704773, -0.9220724105834961, 0.006331562530249357, -0.9069321155548096, 0.13822655379772186, -0.09996519982814789, 0.0680658221244812, 0.5616231560707092, 1.1568549871444702, 1.378804087638855, 0.6966584324836731, 0.7840144038200378, 0.43092063069343567, -1.1217737197875977, -0.08341418951749802, -0.6991782188415527, 0.287848562002182, -1.7676494121551514, -0.48355939984321594, -0.23534156382083893, -0.25293034315109253, -1.2487070560455322, 0.3528450131416321, 0.7412208914756775, -0.9262169003486633, 0.5536820292472839, 0.47616270184516907, 0.07799732685089111, -0.2262488156557083, 0.2925415337085724, 0.29925358295440674, -0.9643460512161255, -0.15403716266155243, 0.5108532905578613, 1.389752984046936, -0.7119062542915344, -0.46670812368392944, 0.37769606709480286, 0.28561097383499146, -0.41353532671928406, 0.916822075843811, 0.48491206765174866, -0.4983288645744324, 0.4407329559326172, 1.204527497291565, 1.293649435043335, 0.04714658111333847, 0.38413068652153015, 0.40917885303497314, -0.49706923961639404, -0.042319800704717636, -0.16811317205429077, 0.31863313913345337, -0.42714834213256836, 1.0330458879470825, 0.5166721343994141, 0.1698802411556244, -0.8957453370094299, 0.6645431518554688, -0.274397611618042, 0.3955214321613312, 0.8837140798568726, -0.5691405534744263, -0.5659341812133789, 0.9182013273239136, 0.903986394405365, 0.04472600668668747, 0.39396199584007263, 0.25973549485206604, 0.1551532745361328, 0.014659527689218521, 0.38204216957092285, 0.5394762754440308, -0.5888082385063171, -0.07423105090856552, -0.25760701298713684, 0.3391997516155243, 0.31516319513320923, -0.2476528286933899, -0.7254670858383179, 0.048364393413066864, -1.0564613342285156, -0.7485507130622864, 1.0064178705215454, -1.3100391626358032, -0.2675310969352722, -0.441046804189682, 0.00019569694995880127, -0.22819532454013824, 0.0018116701394319534, -0.515320360660553, -0.6987265944480896, 0.19980531930923462, 1.5064047574996948, -0.26417040824890137, 0.700037956237793, 0.48091018199920654, 0.43675848841667175, -0.014075158163905144, -0.07437077164649963, -0.4937768280506134, -0.05630534142255783, 0.5290582776069641, -0.30996888875961304, 0.12477647513151169, -0.04600630700588226, -0.8787108659744263, -0.35483500361442566, -0.3961627185344696, -0.006071601063013077, -0.6881406307220459, -0.37137144804000854, 0.033959709107875824, 0.41791245341300964, 0.5940302014350891, -0.5737517476081848, -0.8306882381439209, -0.5308618545532227, 0.014592270366847515, 0.022287752479314804, 1.3407279253005981, -0.7491241693496704, 1.3967105150222778, -0.30135318636894226, -0.4355662167072296, -0.3102637827396393, -0.8519576191902161, 0.1868264526128769, -0.30568671226501465, 0.17591044306755066, -0.3004375994205475, -0.19248324632644653, 0.7923364043235779, -1.0965791940689087, 0.360226571559906, -0.23607131838798523, 0.36972370743751526, 0.33407601714134216, -0.8824464082717896, -0.36769363284111023, -0.6498596668243408, -0.01624346524477005, 0.3855896592140198, 0.30352041125297546, 0.8938083648681641, -0.5117896199226379, -1.2451355457305908, -0.21658030152320862, 1.1158894300460815, 0.34824880957603455, 1.3314956426620483, 0.9789448380470276, 1.827903389930725, 0.6328691840171814, -0.16229890286922455, -0.7547488212585449, 0.08818026632070541, -0.5686613917350769, -0.2640695869922638, -0.6215072274208069, 0.06926756352186203, -0.07748404890298843], [-0.5638975501060486, 1.3719847202301025, -2.457801103591919, -0.5487335324287415, 0.033907175064086914, 0.10977964848279953, 1.7551100254058838, -0.048535242676734924, -0.21205198764801025, -1.401423454284668, -0.30703532695770264, -0.37316957116127014, 0.24444639682769775, 0.3743365705013275, 0.3666606545448303, 0.2310602068901062, 0.8698928952217102, 0.10023242980241776, 0.14719325304031372, 0.9181488156318665, 0.29129689931869507, -1.4963891506195068, 0.27695178985595703, -0.4609884023666382, 0.41980957984924316, -0.2487642765045166, -1.503033995628357, 0.2248809039592743, -1.3406801223754883, -0.0194145105779171, 1.0146946907043457, -0.14767910540103912, 0.36142411828041077, -0.4121447503566742, -1.5948641300201416, -0.6103590726852417, 0.37940359115600586, -0.1647433191537857, -0.4392746686935425, -0.2787793278694153, 2.2242863178253174, -0.1650848239660263, -0.23213911056518555, -1.6451655626296997, 0.7383127212524414, -0.27942922711372375, 0.4463103711605072, -1.1626839637756348, 0.09171880781650543, -1.076704978942871, 0.8666112422943115, -0.6110346913337708, 0.7395808696746826, 1.4573814868927002, 0.9929550290107727, -1.1491636037826538, -0.06191100925207138, 1.5355321168899536, 0.20368538796901703, 0.44913217425346375, 1.2498648166656494, 0.13819535076618195, 0.9093424677848816, 1.0592373609542847, 0.29594919085502625, -0.7219398021697998, 0.8790174126625061, 0.1820678561925888, 0.4858901798725128, 0.22898626327514648, 0.9516945481300354, 0.1358902007341385, -0.442106157541275, 0.0033917464315891266, -0.6910295486450195, 0.7069635987281799, -0.17832686007022858, 0.4560002088546753, 0.2905098795890808, 0.5131816267967224, -0.015186638571321964, 0.12402449548244476, -0.10348134487867355, -0.5197827816009521, -0.8543092608451843, -0.33471977710723877, 0.4680212140083313, -0.3888194262981415, -0.4505067467689514, 1.0860642194747925, -0.04648091271519661, 0.49333706498146057, 0.7087985873222351, -0.38996899127960205, -0.40432029962539673, -0.5093740820884705, -0.19782352447509766, -0.5976905226707458, -0.18948380649089813, -0.6392444968223572, -0.3541859984397888, -1.4514610767364502, 0.7369794249534607, 0.5119681358337402, 0.4156971275806427, 1.3695954084396362, -0.09763620793819427, -0.8775248527526855, -0.627292811870575, 0.013488780707120895, 0.07182997465133667, 0.14957289397716522, -0.9760259389877319, -1.0322290658950806, 0.31593307852745056, 1.5284883975982666, 1.5369572639465332, 0.14336293935775757, 0.017856115475296974, -0.11537507176399231, -0.4179359972476959, -0.38834327459335327, -0.01903049647808075, -0.29473888874053955, 1.6524986028671265, -0.2869623303413391, -0.6485397815704346, -0.16019462049007416, -0.517255961894989, -0.22895899415016174, 0.6753098368644714, 0.1659698486328125, 0.3625563681125641, 0.6152885556221008, -0.6637097001075745, 0.9938808679580688, -0.14172177016735077, -0.976197361946106, 0.23515765368938446, 0.3748144507408142, 0.5298774242401123, -0.2038595974445343, -0.7142219543457031, -0.5649880766868591, 1.0008333921432495, -0.8223831653594971, 0.46715259552001953, -0.20079396665096283, -1.0406248569488525, 0.1998327076435089, -1.8417470455169678, -0.18771527707576752, 0.055460017174482346, 2.0190160274505615, 0.7551524639129639, -0.7721313834190369, 0.2797222137451172, 0.23430506885051727, 0.5373868942260742, 0.7663725018501282, 1.5692230463027954, -0.513412594795227, -0.8860357999801636, 0.9360543489456177, 1.57615327835083, -0.13167120516300201, 0.9716160297393799, 0.48798373341560364, -0.46632635593414307, 0.8137820363044739, -0.287399560213089, -0.7305695414543152, -0.34204909205436707, -0.13445092737674713, -0.11994460970163345, -0.6093142032623291, 1.0066945552825928, 0.11429966986179352, -1.0136300325393677, -1.3522523641586304, 0.9921794533729553, -0.1389620006084442, 0.17029745876789093, 0.3834187984466553, 0.5819377303123474, -0.582888662815094, -0.5643606781959534, 0.0889040008187294, -0.21091328561306, -1.169845461845398, -0.013967921026051044, 0.1399386078119278, -1.4138544797897339, 0.2809355556964874, -0.47053176164627075, -0.7355421781539917, 0.7613820433616638, -0.9808065295219421, -0.48484131693840027, -0.4335302412509918, 0.02980346977710724, 0.28991761803627014, -1.053696632385254, 0.1465042233467102, -0.5551501512527466, 0.5593205690383911, -0.9092853665351868, 0.6109012365341187, -0.26576510071754456, 0.7457228302955627, 0.7094348669052124, -0.4592169225215912, -1.2511519193649292, 0.8977603912353516, 0.5891261696815491, -1.4676530361175537, 0.7654460668563843, 0.2780807316303253, 0.026134993880987167, 0.16663846373558044, -0.13710558414459229, -0.16709047555923462, 1.049403190612793, 0.31323719024658203, 0.7891675233840942, 0.14065271615982056, -0.2052374929189682, -0.5663332939147949, -0.6763823628425598, 0.13387230038642883, -0.8682118654251099, -0.6311712265014648, 0.4478507936000824, -0.11427589505910873, -1.2710484266281128, 0.4559670686721802, -0.33556362986564636, 0.6123469471931458, 0.38582298159599304, 0.697232723236084, 0.9555875062942505, 0.16607563197612762, 0.06265680491924286, -0.2956690788269043, -0.7329890131950378, -0.34872710704803467, 0.9900310635566711, -0.18369831144809723, -0.015663547441363335, 1.472318410873413, 0.879628598690033, -0.1487227827310562, 0.3203521966934204, -0.5899799466133118, 0.4517652094364166, -0.9676470756530762, 0.42872387170791626, -0.2569015324115753, -1.0674288272857666, 1.7278664112091064, 0.5029627084732056, -1.2765312194824219, 0.14800313115119934, -0.8472958207130432, -0.1471920609474182, -0.7101694345474243, -0.34365707635879517, -0.25574082136154175, 0.35278066992759705, -0.26491281390190125, 0.07675895094871521, -0.3358345925807953, -0.2637519836425781, 0.9796813726425171, 0.17736275494098663, -0.7797338366508484, 0.061447348445653915, 0.9064362645149231, 0.3211819529533386, 0.9995362758636475, -0.10498996824026108, -1.424381136894226, -1.093534231185913, -0.09979428350925446, 0.7812920212745667, 0.13591501116752625, -0.24997973442077637, 0.7498171329498291, 0.924030065536499, -0.09318661689758301, 0.7297114133834839, 0.7789943814277649, 0.451212078332901, 0.30094823241233826, 0.2615613341331482, 0.5540990829467773, 0.21882279217243195, -1.3816524744033813, -1.3460848331451416, -0.12663212418556213, 0.26712852716445923, 1.5632351636886597, 1.2514469623565674, 0.8374324440956116, -0.4675534963607788, 0.38600409030914307, -0.3519987165927887, 0.2698718309402466, -0.42308083176612854, -0.2780532240867615, -0.27264565229415894, -0.31717541813850403, -0.23655052483081818, -0.9302241206169128, 0.023085234686732292, 1.355049967765808, 0.4274098575115204, 1.0775941610336304, 0.6742072105407715, -0.49630770087242126, -1.492669939994812, -0.5362289547920227, -0.2505144774913788, -1.1321327686309814, 1.0442043542861938, 1.9442367553710938, -1.3910270929336548, 0.07300499081611633, 0.35188162326812744, 0.06591078639030457, 0.18663296103477478, 0.20438863337039948, 0.3903959095478058, -1.2844369411468506, -0.07496541738510132, 0.09361528605222702, 1.456307053565979, -0.5158573985099792, 0.11815590411424637, -0.39785006642341614, 0.5667120218276978, 0.8508605360984802, -0.03967367485165596, -0.5627711415290833, 0.08728527277708054, -0.8616304397583008, -0.30015894770622253, -0.46445250511169434, 0.4263904094696045, 0.9272305369377136, -0.23085913062095642, -1.3331656455993652, -0.45846810936927795, -0.36415886878967285, -0.9568471908569336, 0.20091427862644196, -0.3178447186946869, 0.543900728225708, 0.42580685019493103, 0.8841189742088318, 1.0664615631103516, 0.28096768260002136, 0.0004683062434196472, -1.411673665046692, 0.3670807182788849, 0.974005937576294, 1.356221079826355, 0.2141093909740448, 0.7048466205596924, -0.03647275269031525, -1.3327996730804443, 0.22049450874328613, 0.28979137539863586, 0.17997154593467712, 0.5148932337760925, -0.521176278591156, -0.2954922020435333, -0.5259696841239929, 0.23960590362548828, 0.3008723258972168, 0.7169759273529053, 0.18253737688064575, 0.06536955386400223, -0.31044459342956543, 1.1267491579055786, 0.8062461614608765, 0.08300668001174927, -1.0267497301101685, -0.5032804608345032, 0.5948213338851929, -0.6679317355155945, -0.6775908470153809, -0.513629674911499, -0.1532561033964157, 0.6783863306045532, -0.13525360822677612, -0.17088335752487183, -0.3875131905078888, 0.44807514548301697, 1.1640328168869019, -0.9987215995788574, -0.623778223991394, -0.6152178645133972, 0.3210619390010834, 0.31898605823516846, -0.5516011118888855, 0.4742690920829773, 0.7191954255104065, -1.0685036182403564, 0.09064146131277084, 0.24734075367450714, 1.491546869277954, -0.04151025414466858, 0.17493613064289093, -0.16754482686519623, 0.27134740352630615, 0.7899814248085022, -0.6890878677368164, -0.9750102758407593, -0.28338170051574707, -0.4756826162338257, 0.35196787118911743, 0.052462488412857056, -0.1423964649438858, 1.8241746425628662, -0.5237306356430054, 0.3729249835014343, 0.536688506603241, 0.30792441964149475, -0.7637960910797119, 0.028317509219050407, -0.2507472336292267, -0.374324232339859, -0.016174834221601486, 0.2935366928577423, 0.007077813148498535, 0.5809712409973145, 0.33783861994743347, 0.2827599048614502, 0.18264888226985931, -0.20332679152488708, -0.40071889758110046, 0.5134657025337219, 0.5596444010734558, 1.1099553108215332, 1.1482036113739014, 1.2713176012039185, -0.7622287273406982, -0.5387650728225708, 0.9519270062446594, 0.25946328043937683, -0.27708500623703003, 0.8720371723175049, 0.2976365387439728, 0.7431163787841797, -1.1055165529251099, 0.21801866590976715, 1.26520836353302, -0.5608271360397339, 1.2575443983078003, -0.3808276057243347, 0.2974995970726013, -1.2377575635910034, -0.06147662550210953, 0.27071812748908997, -0.4689539968967438, 0.9387454986572266, 0.1100412905216217, -0.08671854436397552, 0.7563508749008179, -0.047225359827280045, 0.018027812242507935, -0.5142852067947388, -0.5209904313087463, -0.3399077355861664, 0.29254746437072754, 0.6665344834327698, 1.1615793704986572, 0.6820873022079468, 1.3527618646621704, -0.11263538897037506, -1.1498591899871826, 0.35932818055152893, -0.535076379776001, -0.01878385618329048, -0.8953268527984619, -0.20634594559669495, -0.4174206256866455, -0.9458945989608765, 0.03141377121210098, -0.24293141067028046, -0.9822787642478943, -0.7329803705215454, -0.7707349061965942, -1.0848721265792847, 0.3731168806552887, 0.37822574377059937, 1.7355502843856812, 0.7580536603927612, 0.18453949689865112, -0.3447083830833435, 0.014990240335464478, -0.6778711080551147, 0.025282680988311768, 0.06516429036855698, -0.18451063334941864, 0.12541088461875916, -1.2791815996170044, -0.6502566933631897, 0.7987551093101501, 0.913842499256134, 0.16856639087200165, 0.5330926179885864, 1.4989063739776611, 1.4643956422805786, -0.33790168166160583, -0.3382532298564911, 0.6473004221916199, -0.618302583694458, 0.5368859171867371, 0.32475653290748596, -0.8776252269744873, -0.1270809769630432, -0.3400364816188812, -2.039931535720825, 1.1240019798278809, -0.08469796180725098, -0.5016462802886963, 0.8334172368049622, 0.7121502161026001, 0.1149575412273407, 1.5036214590072632, -0.35218778252601624, -0.3993251919746399, -0.0948508083820343, -0.2724166810512543, -1.4386123418807983, 0.6496312022209167, 1.14320969581604, 0.08571402728557587, -1.144936203956604, 0.4980468153953552, -0.6163696050643921, -0.3657516539096832, -0.06046859174966812, -0.09178274124860764, 0.4070541262626648, 0.3278970718383789, 0.02055252157151699, 0.02877815067768097, 0.6119940876960754, -1.229434847831726, 0.6864673495292664, 0.08128144592046738, 0.2655101716518402, 0.2780844271183014, -1.0019197463989258, 1.2130513191223145, -0.040475040674209595, -0.5511212944984436, -0.2602677047252655, -1.0919545888900757, 0.25637882947921753, 0.9474831223487854, 0.4123830497264862, -0.1536089926958084, -0.3949616253376007, -0.5363726019859314, -0.9871797561645508, 0.2340129315853119, 0.5340327024459839, -0.6527284383773804, -0.10074428468942642, -0.26583465933799744, -0.20514726638793945, 0.11130859702825546, 0.49757078289985657, 0.6367483139038086, -0.9414162635803223, -1.0660984516143799, -0.7343476414680481, -0.8233903646469116, 0.5619280934333801, 0.49270060658454895, 0.37897175550460815, -0.09395227581262589, -1.3612773418426514, 0.9110350012779236, -0.7601444721221924, -1.994542121887207, 0.024872999638319016, -0.3262943625450134, 1.0157309770584106, -0.2778376042842865, 0.1265503168106079, 0.2557762861251831, 1.247599482536316, -0.9981250166893005, -0.9215962886810303, -1.0757101774215698, -0.6569469571113586, 0.8980922698974609, 0.5766781568527222, -0.3339436948299408, 1.1444745063781738, -0.09890898317098618, -0.8929184675216675, -0.31806111335754395, -0.3574672043323517, -1.4917751550674438, -0.687145471572876, -0.09416063129901886, 0.6984767317771912, 0.8026109337806702, 1.1564666032791138, 0.4075518250465393, 1.108283281326294, 0.1817840039730072, 1.6429013013839722, -0.3290726840496063, -0.7152000069618225, 0.18273024260997772, 0.22239069640636444, -0.5167666077613831, -0.24560610949993134, 0.3849320411682129, -0.6876051425933838, -0.8135591149330139, 0.5322291254997253, 0.44950395822525024, -0.581960916519165, 0.6984387040138245, 0.025126785039901733, -0.0004447121173143387, -0.9901328086853027, 0.6254203915596008, 1.1792012453079224, -1.2132607698440552, -0.576328694820404, 0.3776223361492157, 0.33317410945892334, -0.7399505376815796, 0.043418847024440765, 0.863775908946991, 0.6618483662605286, -0.40119731426239014, 0.5586879253387451, -0.23805324733257294, 0.9582645893096924, -0.3665790557861328, 0.7404670715332031, 0.8377445340156555, 0.05372006446123123, 0.49059662222862244, 0.5741654634475708, -0.11477440595626831, -0.19993843138217926, 0.21162322163581848, -1.0268443822860718, -0.8493770360946655, 0.19699417054653168, 0.26901477575302124, -0.33533716201782227, -0.10174770653247833, 0.4596349596977234, 0.44509583711624146, -0.5723488330841064, 2.30696439743042, -0.8831188678741455, -1.036135196685791, 0.851470410823822, 0.7012476921081543, -0.5001663565635681, 0.5838808417320251, -0.26168617606163025, 0.5168547630310059, -0.7207702398300171, 0.15346795320510864, -0.010861724615097046, -0.8392757177352905, -0.07602208852767944, 0.08673657476902008, -0.5329275727272034, 0.6592155694961548, -0.804004430770874, -1.5533990859985352, -0.6385577917098999, -0.6017824411392212, 0.05942583829164505, 0.51425701379776, -0.7423237562179565, -0.4684371054172516, 0.007635856978595257, 0.0696110650897026, -0.5616945028305054, -0.7048166394233704, -0.22229178249835968, -0.4472518563270569, -0.4899638295173645, 0.766409158706665, -0.3360276520252228, 1.1611307859420776, 0.1589098423719406, 0.4455943703651428, 0.03195025399327278, -0.033252473920583725, 0.05912769213318825, 0.18088263273239136, -0.619540810585022, -0.7858827710151672, 0.5430622696876526, -0.42075538635253906, 0.1079949140548706, 0.2610008716583252, -0.35902881622314453, 0.06687656044960022, -0.022017348557710648, -1.2945058345794678, -0.6894877552986145, 0.4445853531360626, 0.4268210232257843, -0.5751751065254211, -0.9506635665893555, -0.38282912969589233, 0.7607737183570862, -0.1474200338125229, 0.810167670249939, -0.5055526494979858, 0.7687076926231384, 0.3137265145778656, -0.7713723182678223, -0.9508603811264038, -1.4528955221176147, 1.3820579051971436, -0.885513186454773, 0.33315491676330566, -0.7801092863082886, -0.35758736729621887, 0.32966506481170654, -1.0181266069412231, -0.04599638283252716, -0.5432976484298706, 0.15058739483356476, 0.627469003200531, -0.5390858054161072, -1.1907002925872803, -0.4920511543750763, -0.31050238013267517, -0.11503558605909348, 0.11844577640295029, 0.5318449139595032, 0.028824161738157272, -1.5291022062301636, -0.6961588859558105, 0.6685689091682434, 0.32592424750328064, 0.44137561321258545, 1.1678763628005981, 1.2619643211364746, -0.19410419464111328, -0.479884535074234, -0.16872423887252808, 0.32388201355934143, -1.318897008895874, -0.028742734342813492, -0.7940083146095276, -0.15717117488384247, 0.015598506666719913], [0.010297281667590141, 2.391871929168701, -2.622643232345581, -0.22560277581214905, -0.10272381454706192, 0.14437630772590637, 1.4568307399749756, -0.06432528793811798, 0.04257320240139961, -0.3042462170124054, -0.5531690716743469, 0.0739409402012825, 0.4113883078098297, 0.5105074644088745, 0.22209888696670532, 1.2229876518249512, -0.3514728844165802, 0.32900097966194153, 1.0767945051193237, 1.5042903423309326, 0.05188065767288208, -1.6951857805252075, -0.774919331073761, -0.001707341056317091, -0.43962305784225464, -0.6408337950706482, -0.9788473844528198, 0.28833264112472534, -0.7875766158103943, -0.9987265467643738, 0.7771375179290771, -0.5365960597991943, 0.36657556891441345, -0.45743075013160706, -2.0810794830322266, -0.5122905969619751, 1.409938097000122, 0.14759159088134766, -0.5820919871330261, 0.42008495330810547, 2.5097908973693848, -0.5473307967185974, -0.37244725227355957, -1.2436386346817017, 0.45683443546295166, 0.43898719549179077, 0.3953559696674347, -0.8526023626327515, 0.4146886169910431, -0.8209150433540344, 0.8192257881164551, -0.1855955868959427, 0.4811949133872986, 1.5091763734817505, 0.631038248538971, -1.2725310325622559, -0.2411646693944931, 0.9749168753623962, -0.12532079219818115, 1.0430914163589478, 1.3951822519302368, 0.15926635265350342, 0.7438182234764099, 0.8382514119148254, 0.4151299297809601, -0.6998715400695801, 0.6886827945709229, 0.3771778643131256, 0.07880693674087524, 0.24810655415058136, 0.32670241594314575, -0.5420368313789368, -1.4190220832824707, -0.3091285228729248, -0.4761848449707031, 0.35157057642936707, -0.4992615580558777, 0.6540217399597168, 0.47262129187583923, 0.6112120747566223, -0.4443998634815216, 0.486077219247818, -0.08100175857543945, -0.21431958675384521, 0.09039761871099472, -0.09289627522230148, 0.7227276563644409, -0.5865287184715271, -0.342364102602005, 1.381901502609253, -0.23878878355026245, 0.17629674077033997, 0.9530449509620667, -0.13234709203243256, 0.024557389318943024, -0.8047714829444885, 0.38052207231521606, -0.92088383436203, -0.01544809341430664, -1.1129018068313599, -0.37198519706726074, -0.46543818712234497, 0.9066763520240784, 0.6708759069442749, 0.825766921043396, 1.732785701751709, 0.17480653524398804, -0.8264889121055603, -0.7009156346321106, 0.008436806499958038, -0.28196465969085693, 0.36365509033203125, -0.35963737964630127, -1.261941909790039, 0.06195710599422455, 1.1062310934066772, 1.5233232975006104, -0.14155463874340057, 0.6137219667434692, 0.543034017086029, -0.3510918617248535, -0.7225853204727173, -0.5397432446479797, 0.5721286535263062, 1.3944298028945923, 0.1825663298368454, -0.7746294736862183, -0.05566981062293053, -0.6249786615371704, -0.16696076095104218, 0.7018832564353943, 0.18046574294567108, -0.21604369580745697, 0.7350205779075623, -0.2744690179824829, 1.5601370334625244, -0.48934492468833923, -0.693555474281311, -0.3749663233757019, 0.6223766803741455, 0.255576491355896, 0.529898464679718, -0.625685453414917, -0.9897480607032776, 0.17834964394569397, -0.4904307425022125, 0.24785910546779633, -0.43095165491104126, -0.29676830768585205, 0.7694330811500549, -1.7083427906036377, -0.028188548982143402, -0.24395127594470978, 1.9068607091903687, 0.5253576636314392, -0.2078588604927063, 1.428174376487732, -0.07338700443506241, 0.07983040064573288, 0.9996791481971741, 1.0352920293807983, 0.005968020297586918, 0.16555188596248627, 1.5089315176010132, 0.6327024698257446, -0.8331195712089539, 1.0025238990783691, 0.7125771641731262, -0.5096850395202637, 0.5512145757675171, -0.28083890676498413, -0.27965065836906433, -0.9226841330528259, 0.34416666626930237, 0.10134872794151306, -0.3451332151889801, 0.8976263999938965, 0.4071336090564728, -1.2274850606918335, -1.1785379648208618, 0.7853631973266602, 0.19839239120483398, 0.8362960815429688, 0.49960145354270935, 0.1431744247674942, -0.04795357584953308, -0.7580768465995789, -0.5760613679885864, 0.15955087542533875, -0.8973423838615417, -0.6287916898727417, -0.1939866989850998, -1.3573510646820068, 0.5831731557846069, -0.7192540168762207, -0.9824481010437012, 1.5509638786315918, -0.7984551787376404, -0.6127318143844604, -0.4514754116535187, 0.18373563885688782, -0.3895784914493561, -1.2679247856140137, -0.3178020417690277, -0.4960629940032959, 0.7836425304412842, -0.7753874063491821, 0.25216951966285706, -0.8646151423454285, 1.0295448303222656, 0.6464530229568481, -0.6776857376098633, -0.9568677544593811, 0.07947076857089996, 0.5149570107460022, -1.1761435270309448, 0.28678813576698303, -0.0671684518456459, 0.492804616689682, -0.026681246235966682, -0.03171480447053909, -0.28303319215774536, 0.9367758631706238, -0.1648443639278412, 0.4925202429294586, -0.438761442899704, -0.6413766741752625, -0.6709204316139221, -0.07638335227966309, 0.19839279353618622, -0.33577483892440796, -0.8134249448776245, 0.16112031042575836, 0.6975353360176086, -0.9266956448554993, 0.491963267326355, -0.23878781497478485, 0.13367724418640137, 0.28427717089653015, 0.8772497177124023, 0.7593785524368286, 0.1557631641626358, -0.440548837184906, -0.6605701446533203, -0.8585284948348999, -0.4319734275341034, 0.6021308302879333, -0.14856821298599243, -0.18428441882133484, 1.4325919151306152, 0.7486231327056885, -0.22964665293693542, 0.5586355328559875, 0.005369482561945915, 0.19467279314994812, -1.0020866394042969, 0.3290809690952301, 0.23166710138320923, -0.19173690676689148, 1.312563419342041, 0.3321605324745178, -0.7945197224617004, 0.18742190301418304, -0.5912462472915649, 0.7668808698654175, -0.5336848497390747, 0.013895513489842415, -0.5349095463752747, -0.0048629892989993095, -0.00884514581412077, 0.34996700286865234, 0.06531441956758499, -0.6353619694709778, 0.6366281509399414, 0.22883038222789764, -0.9073198437690735, 0.2530321478843689, 1.0478917360305786, 0.08352615684270859, 0.7168602347373962, -0.32139503955841064, -1.7843998670578003, -0.9813714623451233, -0.41150516271591187, 0.8695623278617859, 0.31637394428253174, -0.2572060227394104, 0.7548194527626038, 1.440497636795044, 0.41719216108322144, 0.5825546383857727, 0.21737869083881378, -0.3486948609352112, -0.5351259112358093, 0.390129953622818, 0.0926230251789093, 0.6381880640983582, -0.7235412001609802, -0.9612380862236023, -0.2284087836742401, -0.20804943144321442, 1.1186964511871338, 1.4923620223999023, 1.1258974075317383, -0.7722448706626892, -0.15831205248832703, -0.2936958968639374, -0.16355060040950775, -0.5573057532310486, -0.3660302758216858, -0.3195875287055969, -0.7756678462028503, -0.37007489800453186, -0.4267585575580597, -0.32356253266334534, 0.6831644773483276, 0.27943873405456543, 0.8580800294876099, 0.857526957988739, -0.28569743037223816, -1.0966264009475708, -0.8984957933425903, -0.445620596408844, -1.394281029701233, 0.6318346858024597, 1.1602307558059692, -1.8134839534759521, -0.4197778105735779, 0.2865164875984192, 0.26529210805892944, 0.2919595241546631, 0.06493636965751648, 0.38534533977508545, -1.4179227352142334, -0.004161432385444641, -0.2853778898715973, 1.5820385217666626, 0.13495667278766632, 0.11585964262485504, -0.3107975721359253, 0.3123120665550232, 0.6687498092651367, -0.4741690158843994, -0.9737226366996765, 0.10811176151037216, -0.529379665851593, -0.6308976411819458, -0.04903503507375717, -0.1697710007429123, 0.5792733430862427, -0.792624294757843, -1.5357307195663452, -0.07837647199630737, -0.4922574758529663, -1.0580601692199707, 0.7837458848953247, 0.22651152312755585, 0.5866034030914307, -0.0664697214961052, 0.1166640967130661, 0.9472719430923462, -0.032130587846040726, 0.3993399143218994, -1.0646977424621582, 0.6283635497093201, 0.7123150825500488, 0.8611401319503784, 0.4557632803916931, 0.5061275959014893, -0.0787518098950386, -1.3363759517669678, -0.08694233745336533, -0.6460406184196472, 0.5288696885108948, -0.030929913744330406, -0.6198499798774719, 0.12351062893867493, -0.6075766682624817, 0.3277055621147156, -0.033437926322221756, 0.07329218089580536, 0.6357158422470093, 0.09223349392414093, 0.2509264051914215, 0.7173560857772827, -0.0990617498755455, -0.5807308554649353, -0.7101970314979553, -0.28288036584854126, 0.26978054642677307, -0.42355605959892273, -0.014776654541492462, 0.12496691197156906, -0.08232656866312027, 0.4180929660797119, -0.0005935837980359793, -0.20198707282543182, -0.6697310209274292, 0.6651506423950195, 1.3905465602874756, -1.0071959495544434, -0.7368671894073486, -0.8216189742088318, 0.5259437561035156, 1.0568931102752686, 0.16660583019256592, 0.7052769660949707, 0.815359354019165, -0.2838611900806427, 0.24291285872459412, 0.10168728232383728, 1.677477240562439, 0.10255701094865799, -0.5032323598861694, -0.425809770822525, 0.39103272557258606, 1.0056706666946411, -1.4378941059112549, 0.07043763995170593, -0.07042078673839569, -0.8098970651626587, 0.30683451890945435, -0.0003087229561060667, -0.80555260181427, 1.594200849533081, 0.05889206379652023, -0.14682750403881073, 0.48706433176994324, 0.12002666294574738, -0.8328253626823425, 0.18769647181034088, 0.5999420881271362, -0.9612698554992676, 0.23022620379924774, 0.3391948938369751, 0.4090999364852905, 0.8985971808433533, -0.2808803617954254, 0.676146388053894, -0.0602952316403389, -0.09077521413564682, -0.25454023480415344, 0.38589924573898315, -0.03196194767951965, 0.9120497107505798, 0.8242381811141968, 1.151336669921875, 0.06322315335273743, -0.5433676242828369, 0.3077954649925232, -0.26771655678749084, 0.22608980536460876, 1.2392772436141968, -0.01657712087035179, 1.1243276596069336, -1.7995786666870117, 0.36687541007995605, 1.2063716650009155, 0.07352563738822937, 0.5819194316864014, -0.16242749989032745, 0.1142394095659256, -1.418715238571167, 0.11679569631814957, 0.5332944393157959, -0.6331409811973572, 1.0022261142730713, 0.0827733650803566, 0.36999472975730896, -0.19465987384319305, -0.29756903648376465, -0.007960084825754166, -0.7956558465957642, -0.12959258258342743, -0.23770661652088165, -0.08590316027402878, 0.9854095578193665, 0.3996169865131378, 0.5023542046546936, 1.108459234237671, -0.42538243532180786, -1.5454683303833008, 0.2350824624300003, -0.618037760257721, -0.21988359093666077, -0.4578648805618286, -0.3456198275089264, -0.9121711850166321, -0.9631850719451904, -0.20022980868816376, -0.09055501967668533, -0.9974503517150879, -0.953970730304718, -0.2697889804840088, -1.6873278617858887, 0.8001524806022644, -0.17635679244995117, 1.0546181201934814, 0.6673910021781921, 0.071720190346241, 0.11647229641675949, 0.05394690856337547, -1.0141862630844116, 0.42887812852859497, 0.685173749923706, -0.5761334300041199, -0.38705873489379883, -0.4361667335033417, -0.43792667984962463, 1.1932212114334106, 0.42000627517700195, -0.14359839260578156, 0.8199148774147034, 0.9661590456962585, 1.1979213953018188, -0.5255661606788635, -0.550816535949707, 1.1486308574676514, -0.4461268484592438, 1.4270533323287964, 0.40382060408592224, -0.6389539241790771, -0.3765508532524109, 0.1071779876947403, -1.5483652353286743, 0.8714925646781921, 0.06915315985679626, -0.1357118785381317, 0.607833981513977, 0.7230777144432068, 0.08491139858961105, 1.2351347208023071, -0.4749051630496979, -0.6662352085113525, 0.5554559826850891, 0.1444583684206009, -0.7506626844406128, 0.40293848514556885, 1.3073818683624268, 0.48020896315574646, -0.719187319278717, -0.42974182963371277, -0.0737406462430954, -0.3006078600883484, 0.1920270323753357, -0.4716050922870636, 0.3201034963130951, 0.2708092927932739, 0.09827514737844467, -0.06781549751758575, 0.508399248123169, -0.8767942190170288, 0.1298561841249466, 0.8451656103134155, 0.9670442938804626, 0.7147107124328613, -0.5310221910476685, 0.9513242244720459, -0.32143548130989075, 0.1086023673415184, 0.2914678752422333, -0.29231417179107666, 0.6987926363945007, 0.321231484413147, 0.6011146306991577, 0.3202369511127472, -0.18964450061321259, -0.44304966926574707, -0.9040641784667969, -0.0011148119810968637, 0.31590238213539124, -0.5799689292907715, -0.45364198088645935, 0.06632234901189804, -0.2348935306072235, 0.2146434187889099, 0.14888712763786316, 0.30870911478996277, -1.3726556301116943, -1.015675663948059, -0.6946107149124146, -0.3555999994277954, 0.4699864089488983, -0.38339963555336, 0.5729045867919922, -0.025949111208319664, -2.1127476692199707, 0.337667316198349, -0.5812409520149231, -1.9427688121795654, -0.12025711685419083, -0.5932846665382385, 0.8470113277435303, -0.331853449344635, 0.09695397317409515, -0.13313448429107666, 1.1035128831863403, -0.9708783626556396, -1.0562286376953125, -1.0272818803787231, 0.07923270761966705, 0.7739575505256653, 0.675478458404541, -0.8632662892341614, 1.4455766677856445, 0.11472535878419876, -0.38313570618629456, -0.27372124791145325, -0.5098811984062195, -1.1872658729553223, -0.07369180023670197, -0.3339560031890869, 0.014135963283479214, 0.35802164673805237, 1.5527548789978027, 0.7058191299438477, 0.7589026689529419, 0.47561147809028625, 1.1619436740875244, -0.9723542928695679, -1.2189639806747437, 0.1643814742565155, 0.10053025186061859, -0.8912933468818665, -0.2432999312877655, 0.2372789829969406, -0.5251355171203613, -0.8878738284111023, 0.26732337474823, 1.0664490461349487, -0.5992628931999207, 0.5003772974014282, 0.4058828353881836, 0.14625075459480286, -0.9805785417556763, 0.19619959592819214, -0.1904880851507187, -1.2350690364837646, -0.0592539943754673, 0.018746845424175262, 0.5661157965660095, -1.6482067108154297, 0.4221401810646057, 0.5668731331825256, 0.34529128670692444, 0.17818187177181244, 0.12243181467056274, -0.3506298363208771, 1.0013866424560547, -0.29820412397384644, 0.7174345850944519, 0.7604698538780212, -0.006183556281030178, -0.24187041819095612, 0.5664795637130737, -0.5284814834594727, -0.16522054374217987, -0.05504574626684189, -0.5145039558410645, -0.6947427988052368, 1.0153334140777588, 0.10402039438486099, -0.004878803621977568, 0.5619436502456665, 0.4773987829685211, -0.081082783639431, -0.8182433843612671, 1.7255057096481323, -1.0218836069107056, -1.1031652688980103, 0.8154091835021973, 0.8030078411102295, -0.40449681878089905, 0.18929621577262878, -0.11295808851718903, 0.6970232725143433, -0.12201807647943497, 0.5565335154533386, -0.293067991733551, -0.8154287338256836, 0.3643266558647156, -0.12069245427846909, -0.6190751791000366, -0.24645358324050903, -0.7860903739929199, -1.402795672416687, -0.5979145765304565, -0.10925666987895966, 0.15054403245449066, 0.70100998878479, -0.5353791117668152, -1.333227515220642, -0.16900406777858734, 0.5287895798683167, 0.05998208373785019, -0.343730092048645, 0.07135593891143799, -0.8510313034057617, -0.20004859566688538, 1.1919256448745728, -0.6373625993728638, 1.1008386611938477, -0.07316894084215164, -0.07360871136188507, -0.8829755187034607, 0.8067112565040588, 0.597938060760498, 0.11169304698705673, -0.6586824655532837, -0.7004462480545044, 0.6684040427207947, -0.4075727164745331, 0.6642376780509949, 0.2946060001850128, 0.30477049946784973, 0.5454409718513489, 0.5908406972885132, -1.0938283205032349, -0.5347751975059509, 0.07455451041460037, 0.7648605704307556, -0.4969525635242462, -0.726453959941864, -0.6783750653266907, 0.3127797544002533, 0.016263417899608612, 0.726738691329956, -0.4733646810054779, 1.2852555513381958, 0.7469772100448608, -1.5089046955108643, -0.20479336380958557, -0.5328111052513123, 1.5265742540359497, -0.08199777454137802, 0.1433599591255188, -0.6030860543251038, 0.29223111271858215, -0.3139028251171112, -0.9971287250518799, -0.19054701924324036, -0.4830488860607147, -0.5268338918685913, -0.36911389231681824, -1.0180258750915527, -0.24956302344799042, -1.0987162590026855, -0.1881915181875229, 0.2798498570919037, 0.09741716831922531, 0.4488638937473297, -0.6802390217781067, -1.3651949167251587, -0.27955207228660583, 0.832866907119751, 0.3852829337120056, 0.25424227118492126, 1.5998260974884033, 1.4051045179367065, -0.2160273939371109, -0.8417130708694458, -0.5606553554534912, 0.5833019614219666, -0.639385998249054, 0.8327537178993225, -0.9057145118713379, -0.6426712274551392, -0.18024545907974243], [0.4255019426345825, 2.2603023052215576, -2.6630823612213135, -0.6376784443855286, 0.7043351531028748, 0.38070639967918396, 1.580428123474121, -0.25285643339157104, 0.1753581315279007, -0.9082460403442383, -0.03316260874271393, 0.04538312554359436, 1.2403452396392822, 0.5594602823257446, 0.6160067319869995, 0.49644872546195984, 0.5487469434738159, -0.14239829778671265, 0.07241818308830261, 0.8804488182067871, 0.02089826576411724, -0.9481446146965027, 0.13746672868728638, -0.05025837570428848, -0.7347660660743713, -0.3951285183429718, -1.17867112159729, 0.05031872168183327, -0.6725817918777466, -0.6261062026023865, 1.4488941431045532, -0.3937866687774658, -0.5394921898841858, -0.5740483999252319, -0.6646607518196106, -0.32223039865493774, 1.178524136543274, -0.18260495364665985, 0.5263820290565491, 0.8932321071624756, 2.023451805114746, 0.26482102274894714, -0.6383591890335083, -1.4010519981384277, 0.853618323802948, 0.3132439851760864, 0.3535222113132477, -0.7614766359329224, 0.5083553194999695, 0.09487203508615494, 0.883493959903717, -0.5880183577537537, 0.07788504660129547, 1.04271399974823, 1.282256841659546, -1.4845598936080933, 0.0801374614238739, 0.210363507270813, 0.4288467466831207, -0.15076814591884613, 0.7175524234771729, 0.08696555346250534, 0.006862870883196592, 1.0926775932312012, 0.14143317937850952, 0.003356418339535594, 0.31648534536361694, 0.21024374663829803, 0.2930741012096405, 0.1478263884782791, 0.23682962357997894, 0.22781115770339966, -0.5901719927787781, 0.06187710165977478, -1.1759320497512817, 0.15926194190979004, -0.16813747584819794, 0.3010236322879791, 0.3740786612033844, 0.5453935265541077, -0.3606525659561157, -0.28772732615470886, 0.15279445052146912, -0.24941487610340118, 0.4112473130226135, 0.26607829332351685, 0.6546486616134644, -0.2673158645629883, -0.31248632073402405, 2.052189826965332, 0.2033894807100296, 0.002256059553474188, 0.8713067770004272, 0.2654719650745392, -0.5321215391159058, -0.6917719841003418, 0.4310985803604126, -0.05876757949590683, -0.7804856300354004, -0.46302059292793274, -0.4978695213794708, -0.8196893334388733, 0.23642095923423767, 0.3511330187320709, 0.05984429270029068, 1.7823200225830078, 0.9270952939987183, -0.2894265949726105, -0.7826763391494751, 0.21272635459899902, 0.09411311894655228, 0.09698362648487091, -0.21190594136714935, -0.35844624042510986, -0.823888897895813, 1.0911946296691895, 1.1982643604278564, 0.42322295904159546, 0.2217978984117508, 0.757084310054779, -0.3717075288295746, -0.4059912860393524, -1.008711576461792, 0.5578678846359253, 0.7382955551147461, -0.1770687699317932, -0.9560896158218384, 0.19980032742023468, 0.06866497546434402, -0.012402809225022793, 0.44152966141700745, -0.2761867940425873, -0.19231174886226654, 0.5796293616294861, -0.35830798745155334, 1.354720115661621, 0.04558926820755005, -0.7968837022781372, 0.1742924302816391, 0.1230786144733429, 0.0813596174120903, 0.14887231588363647, -0.4702134132385254, -0.42353540658950806, 0.5490325689315796, -0.8488413095474243, 0.047079216688871384, -0.47969022393226624, -1.1981799602508545, 0.2717236578464508, -1.766129493713379, 0.22457867860794067, -0.5144038200378418, 1.6175575256347656, 0.4324324429035187, -0.18766118586063385, 0.30534493923187256, 0.9309521317481995, 0.6747549772262573, 0.25961005687713623, 1.0497465133666992, -0.3595763146877289, -0.647650957107544, 0.9633753299713135, 0.2119004726409912, -0.5143961310386658, 0.9386624693870544, 0.6089925169944763, 0.09074399620294571, 0.3866785764694214, -0.6536552309989929, -0.20835433900356293, -0.18265490233898163, 0.01797548122704029, -0.3376813530921936, 0.02133922278881073, 1.2283332347869873, -0.6086398959159851, -1.3427904844284058, -1.7670124769210815, 0.27748721837997437, -0.24089713394641876, -0.05761522427201271, -0.33260151743888855, 0.6067822575569153, 0.1496540904045105, 0.1235528513789177, -0.2001621425151825, -0.05309631675481796, -0.936332106590271, -0.4961759150028229, 0.12417417764663696, -0.8766290545463562, 0.1059064269065857, -1.1748299598693848, -1.0008004903793335, 0.47644171118736267, -0.5084042549133301, -0.6684209704399109, -0.4204351305961609, -0.5038108229637146, -0.6671189069747925, -0.8371584415435791, 0.14757777750492096, -0.4570144712924957, 0.590872049331665, -0.7413602471351624, 0.6777158975601196, -0.6010379195213318, 0.2514435350894928, 1.1064023971557617, -0.17872485518455505, -0.8135738968849182, 0.1924675852060318, 0.13074886798858643, -1.0459108352661133, 0.5941328406333923, 0.2861503064632416, 0.7129331231117249, 0.07130474597215652, 0.11668149381875992, -0.06741809844970703, 0.4651836156845093, -0.10723468661308289, 1.4911173582077026, 0.013033776544034481, -0.28566500544548035, -0.7945749759674072, -0.3787526488304138, -0.18497337400913239, -1.0589932203292847, -0.5002393126487732, 0.9294294118881226, 0.4043167531490326, -1.4153443574905396, 0.5122805237770081, -0.5389900207519531, 0.17829298973083496, 0.6111229658126831, 1.3435603380203247, 0.28643301129341125, 0.2165469527244568, -0.5921172499656677, -0.1622544229030609, -0.7658095955848694, 0.09580234438180923, 0.6740403175354004, -0.49895763397216797, 0.18056620657444, 1.5982630252838135, 0.6321132779121399, -0.22586947679519653, 0.5794263482093811, -1.2131997346878052, 0.3163476884365082, -0.3592284321784973, -0.11081695556640625, 0.2708684504032135, -1.0759536027908325, 1.2372264862060547, 0.04708702489733696, -0.5345436334609985, -0.3223024904727936, 0.10432472825050354, 0.5354478359222412, -0.7495568990707397, -0.3281046450138092, 0.013692371547222137, 0.21059873700141907, -0.21278199553489685, 0.0829404667019844, 0.2271924614906311, -0.4338972866535187, 0.42019376158714294, 0.0012310664169490337, -0.008208699524402618, 0.27110812067985535, 0.24929706752300262, 0.18239320814609528, 0.6663897037506104, -0.4589403569698334, -1.0549986362457275, -0.7452343702316284, -0.2461133599281311, 1.016624093055725, 0.15523111820220947, -0.638554036617279, -0.1257309913635254, 1.1633048057556152, -0.06696431338787079, 0.1906908005475998, 0.08458263427019119, -0.542253851890564, -0.25414496660232544, 0.3995034992694855, 0.1165182888507843, 1.1296635866165161, -0.8969175219535828, -0.4697181284427643, -0.4291227459907532, 0.5482348203659058, 0.8576558828353882, 0.39329811930656433, 1.1418862342834473, -0.4342765212059021, 0.059495989233255386, 0.3172996938228607, -0.4396003484725952, -0.7321164011955261, -0.5112569332122803, -0.551073431968689, -0.4979062080383301, -0.4883100688457489, 0.27335503697395325, -0.05412977933883667, 0.48138707876205444, -0.12103462219238281, 0.41376593708992004, 0.6514820456504822, -0.6336573362350464, -0.5114007592201233, -0.016714001074433327, -0.5377985835075378, -1.1938709020614624, 1.1236915588378906, 0.9919443130493164, -0.5675238370895386, -0.19066999852657318, 0.5865404605865479, 0.33622246980667114, 0.1171916201710701, -0.2524879276752472, 0.2681535482406616, -1.0814496278762817, -0.9002434015274048, -0.33602386713027954, 1.0736826658248901, -0.10348063707351685, -0.07999785989522934, -0.6071726083755493, 0.13719792664051056, 0.5912469029426575, -0.5551469326019287, -0.8115795850753784, 0.18945187330245972, -0.09212950617074966, -0.9955385327339172, 0.02236807532608509, 0.41020557284355164, 0.7114647030830383, -0.23428653180599213, -0.36578431725502014, -0.2837189733982086, -0.5043923258781433, -0.11972767114639282, 0.8353561758995056, 0.5138132572174072, 1.218286156654358, -0.0037560509517788887, -0.11706580966711044, 1.2775096893310547, -0.04881710931658745, 0.04009261727333069, -1.6165239810943604, 0.7483980059623718, 0.6236811280250549, 1.376207709312439, 0.2547147870063782, 0.17122837901115417, 0.0433867871761322, -0.7865970134735107, -0.13091516494750977, 0.11297260224819183, 1.087464690208435, -0.2849542200565338, 0.3841618001461029, -0.25500747561454773, -0.1172550693154335, 0.3037421703338623, -0.6652942299842834, -0.037324901670217514, -0.12130650132894516, 0.25665032863616943, -1.152487874031067, 1.5349810123443604, -0.20056571066379547, -0.17375105619430542, -1.430019736289978, -0.43320876359939575, 0.5348855257034302, 0.13977937400341034, -0.4123789668083191, -0.21759666502475739, 0.20197494328022003, 0.6233667135238647, -0.8164458870887756, -0.4612092077732086, -0.4895910322666168, 0.7068250179290771, 0.620035707950592, -1.1258288621902466, -0.06678392738103867, -0.19598329067230225, 0.6964440941810608, 0.17890490591526031, -0.10053648054599762, 0.6540544033050537, 0.01995995081961155, 0.2650330662727356, -0.18826928734779358, 0.14137031137943268, 1.0503383874893188, -0.06953442096710205, -0.6026560664176941, 0.26330408453941345, 0.4272528290748596, -0.03576464205980301, -0.16967809200286865, -0.4672538936138153, -0.059749238193035126, -0.2052087038755417, 0.313959538936615, 0.11276412010192871, -0.10070160031318665, 1.247655987739563, 0.37840697169303894, -0.18903718888759613, 0.2538054585456848, 0.2926712930202484, -1.110358715057373, 0.05582302808761597, 0.06167230010032654, -0.4886234402656555, -0.096369169652462, 0.04941481724381447, -0.5201699733734131, 0.4069431722164154, 0.11829638481140137, 0.508105456829071, 0.08389420807361603, -0.08537503331899643, -0.5056812167167664, 0.1050027459859848, 0.4242252707481384, 0.32026031613349915, 0.9734576344490051, 1.3455924987792969, 0.16861124336719513, -0.991223156452179, 0.6533817052841187, -0.5462179780006409, -0.13845308125019073, 1.2051899433135986, 0.40734827518463135, 1.596346378326416, -1.6162452697753906, -0.17418543994426727, 0.4468022286891937, 0.23480041325092316, 0.3130687475204468, -0.10213244706392288, 0.6160795092582703, -0.7162238359451294, 0.26232731342315674, 0.41382718086242676, -0.37337106466293335, 0.9136620163917542, -0.04701399803161621, 0.056077245622873306, 0.6897820830345154, -0.8389158248901367, 0.15523473918437958, -0.9338033199310303, -0.14990514516830444, 0.5150009989738464, -0.42324984073638916, 0.6703817844390869, 0.6898335218429565, 0.7369072437286377, 1.3883150815963745, -0.41736069321632385, -1.300169587135315, 0.9694635272026062, -1.235682487487793, 0.031049568206071854, 0.10765168815851212, -0.7433276772499084, -0.3431740403175354, -0.44452881813049316, -0.48673713207244873, -0.3501218855381012, -0.7601606249809265, -0.222567617893219, -0.6000186800956726, -1.1513935327529907, 0.056985627859830856, 0.08778480440378189, 1.297789454460144, 0.3574695587158203, 0.18221235275268555, 0.6726337671279907, 0.7484074234962463, -0.9816579818725586, -0.3948650658130646, 0.2114446461200714, -0.4541395604610443, 0.05067455768585205, -1.07785165309906, -0.7517681121826172, 1.1379072666168213, 0.4921441674232483, 0.5026125907897949, 0.5604013800621033, 1.022282600402832, 0.838495671749115, -0.8001458644866943, -0.3353172540664673, 0.5270026326179504, 0.07486171275377274, -0.24945351481437683, 0.37012770771980286, -0.7251166105270386, -0.38312843441963196, -0.2234182506799698, -1.6664272546768188, 0.5669627785682678, 0.040995217859745026, -0.27644744515419006, 0.7567609548568726, 0.24043817818164825, 0.8519566059112549, 1.1817129850387573, -0.27964964509010315, -0.12226174026727676, 0.33896100521087646, 0.4646380543708801, -1.1946823596954346, 0.6679897904396057, 0.7932437062263489, 0.6429993510246277, -0.9058667421340942, -0.03266089782118797, -0.05802658945322037, -0.6692673563957214, -0.11135242134332657, -0.10235808789730072, 0.7014849185943604, 0.9311778545379639, -0.2397187352180481, -0.41733288764953613, 0.4371338188648224, -0.4158923327922821, 0.22016282379627228, 0.2698010504245758, 0.062475401908159256, 0.5272499918937683, -0.25077351927757263, 0.5507712960243225, -0.9419979453086853, -0.8718783855438232, -0.051915284246206284, -0.5646511316299438, 1.0245015621185303, 0.20993925631046295, -0.043866563588380814, 0.11679142713546753, 0.45139235258102417, -0.5274800658226013, -0.25532227754592896, 0.45186930894851685, -0.06033040210604668, -1.11017906665802, -0.15269143879413605, -0.058483708649873734, -0.12331840395927429, 0.16329434514045715, 0.07311458140611649, -0.15234380960464478, -1.2514277696609497, -1.2982553243637085, -0.36706507205963135, -0.18930277228355408, 0.6009454727172852, -0.4557593762874603, 0.13897693157196045, 0.3788752257823944, -1.6636847257614136, 0.47290071845054626, 0.2312004566192627, -1.5127047300338745, -0.08100797981023788, -0.5281632542610168, 0.8993927836418152, 0.06364982575178146, 0.32039839029312134, -0.46306851506233215, 0.8789371252059937, -1.5621681213378906, -1.4186192750930786, -0.2960527837276459, -0.4259023368358612, 0.8928224444389343, 0.478538453578949, -0.9438599944114685, 1.0001704692840576, 0.45462659001350403, -0.22548989951610565, -0.17270860075950623, 0.6795457601547241, -0.9954238533973694, -0.12712769210338593, 0.1916051208972931, 0.13476639986038208, 0.28559228777885437, 1.8869407176971436, -0.13942043483257294, 0.9619322419166565, -0.31251704692840576, 0.74803227186203, -0.3948894143104553, -1.1625840663909912, -0.1764896810054779, 0.28024715185165405, -1.1066049337387085, -0.642101526260376, -0.5715680122375488, -0.45194289088249207, -0.699270486831665, 0.48421886563301086, 0.9512232542037964, -1.0118465423583984, 0.5835034251213074, -0.3665805459022522, 0.153614342212677, -1.3153501749038696, 0.6491442918777466, 0.2930087447166443, -0.46121668815612793, -0.17622122168540955, -0.34011322259902954, 0.6468867063522339, -1.376889705657959, -0.23085500299930573, 0.2091972380876541, -0.22119808197021484, -0.3962342441082001, 0.3403455317020416, 0.6234743595123291, 0.196499302983284, -0.40129607915878296, 1.298970341682434, 1.1785786151885986, -0.07356933504343033, -0.3545035421848297, 0.42348217964172363, 0.12509076297283173, 0.37540140748023987, 0.05485955625772476, -0.36679333448410034, -1.030256748199463, 0.8235434293746948, 0.4656374156475067, 0.0651681125164032, -0.0010233083739876747, 0.38368070125579834, -0.5631188750267029, -0.5008294582366943, 1.340632677078247, -0.5467405915260315, -0.9416602849960327, 0.6919719576835632, 0.5799505710601807, 0.09186828881502151, 0.17498692870140076, 0.32510119676589966, 0.5414710640907288, -0.05314198136329651, 0.5861150622367859, 0.49313658475875854, -0.21419405937194824, 0.13674718141555786, -0.03118116967380047, 0.0836298018693924, -0.053361982107162476, -1.1353507041931152, -1.5733586549758911, -0.570966362953186, -0.2247413992881775, 0.06519506871700287, 0.22196844220161438, -1.2056078910827637, -1.4810746908187866, 0.35922038555145264, -0.029253307729959488, -0.19470113515853882, -1.0428073406219482, -0.06037959083914757, -0.6724843978881836, -0.06740322709083557, 0.47525754570961, -0.03338802605867386, 0.7880147695541382, 0.11427178978919983, 0.025250019505620003, -0.27658286690711975, -0.04835204407572746, 0.0493449829518795, -0.06717103719711304, -0.121769018471241, -0.028967803344130516, 0.14404398202896118, -0.7718117833137512, -0.44064879417419434, 0.6022683382034302, 0.40702876448631287, 0.050578635185956955, 0.07726365327835083, -0.9854177832603455, 0.3498717248439789, 0.31360816955566406, 0.5761927962303162, -0.39220523834228516, -0.7700791358947754, -1.205987572669983, 0.14689107239246368, 0.017829153686761856, 1.306925892829895, -0.5990102887153625, 0.9512238502502441, 0.3863576352596283, -0.47531479597091675, -0.07294292002916336, -0.5127511620521545, 0.9007112383842468, 0.030740171670913696, 0.4511420428752899, -0.5727114677429199, -0.2704222500324249, -0.6683335900306702, -1.389756202697754, 0.2718963027000427, 0.2004997730255127, -0.1447765827178955, 0.335671603679657, -0.9669722318649292, -0.5205391645431519, -0.5943292379379272, 0.12251115590333939, -0.2755677402019501, 0.21246042847633362, 0.5589103102684021, -0.5328466892242432, -0.6559462547302246, -0.273316890001297, 0.012901500798761845, 0.5196828842163086, 0.3582902252674103, 1.0731873512268066, 1.935038685798645, 0.47379088401794434, 0.20567205548286438, -0.2009332925081253, 0.6369829177856445, -0.812221109867096, 0.30844956636428833, -1.265031337738037, -0.038671765476465225, -0.24251163005828857], [-0.343694806098938, 1.9625178575515747, -2.375685691833496, -0.2768937051296234, 0.4260280728340149, 0.22442077100276947, 1.2425543069839478, -0.2504919469356537, -0.1658092588186264, -0.8420299291610718, -0.6582894325256348, 0.09357324987649918, 0.5160896182060242, 0.38412606716156006, 0.4369991421699524, 0.8271948099136353, 0.9917100071907043, 0.47478702664375305, 0.3520936965942383, 1.6579028367996216, -0.31759360432624817, -0.8463040590286255, -0.6801486611366272, -0.434536337852478, -0.12321514636278152, -0.38810524344444275, -0.6432965993881226, 0.29739710688591003, -0.641029953956604, -0.8311090469360352, 0.9909844994544983, 0.209133118391037, 0.7909102439880371, -0.1858440637588501, -1.3795080184936523, -1.0614815950393677, 0.4562593698501587, 0.2573266327381134, 0.38071224093437195, 0.0036789514124393463, 1.7261875867843628, -0.03462149575352669, -0.632175862789154, -2.0949995517730713, 0.4601495862007141, -0.5957299470901489, 0.1789693832397461, -0.8122031092643738, 1.166148066520691, -0.3129478991031647, 0.326521098613739, -1.3912253379821777, 0.30930548906326294, 0.9647585153579712, 1.5993670225143433, -0.8059349656105042, 0.37407681345939636, 0.5777922868728638, -0.8573057651519775, 0.5583544969558716, 1.2665787935256958, 0.5579970479011536, 0.6911858916282654, 1.001477599143982, 0.1932951956987381, 0.13622695207595825, 0.26958608627319336, 0.49672985076904297, 0.008060241118073463, 0.3118465542793274, 0.9291746616363525, 0.10660791397094727, -0.2867332100868225, 0.5802794694900513, -0.6572152376174927, 0.0757608637213707, 0.14323103427886963, 0.6919217705726624, 0.4981365501880646, -0.44457918405532837, 0.11966125667095184, -0.0612218901515007, 0.2511846125125885, -0.8670823574066162, -0.3193925619125366, 0.2484501600265503, 0.33869263529777527, -0.7687584757804871, -0.29649388790130615, 1.1968574523925781, 0.7582235932350159, 0.038955070078372955, 0.9834092855453491, -0.027163835242390633, -0.16851955652236938, -0.963539183139801, 0.210757315158844, -0.34957587718963623, -0.21881301701068878, -0.691294252872467, -0.17436933517456055, -0.5949361324310303, 0.667972207069397, 0.4179110825061798, 0.3980937898159027, 1.356793761253357, 0.9861037135124207, 0.23606884479522705, -0.8779032826423645, 0.2460774928331375, -0.049326539039611816, -0.48161154985427856, -0.8896802663803101, -0.9910731315612793, -0.6581656336784363, 0.9721643924713135, 1.4207940101623535, -0.029309449717402458, 1.0518795251846313, 1.4958559274673462, 0.17122811079025269, -0.8533712029457092, -0.7244518399238586, 0.3728259801864624, 1.0306956768035889, -0.285478413105011, -1.6606501340866089, -0.2954708933830261, -0.30682989954948425, 0.12443143874406815, 0.8923538327217102, -0.5986779928207397, 0.053717002272605896, 0.8796413540840149, -0.13084730505943298, 0.994778573513031, -0.27647295594215393, -0.7090359330177307, 0.7276734113693237, 0.5468149781227112, 0.3909878730773926, 0.5154905319213867, -0.48228394985198975, 0.22676844894886017, 0.5910239815711975, -0.8115260601043701, 0.1750350445508957, -0.3676402270793915, -0.6249006986618042, 1.1157106161117554, -1.8409860134124756, 0.670746386051178, -0.3722810447216034, 1.7368853092193604, 0.5301207900047302, -0.5559476017951965, 0.019915103912353516, 0.5517739653587341, 0.3352035582065582, 0.39667972922325134, 1.4047209024429321, -0.2948928773403168, -0.827414333820343, 0.5573515295982361, 0.7545239329338074, -0.7341567873954773, 0.5926036238670349, 0.20646366477012634, -0.2889820337295532, 0.8005254864692688, -0.4239334464073181, 0.17047378420829773, -0.6895402073860168, -0.49551281332969666, 0.09378482401371002, -0.5631556510925293, 0.7755818367004395, 0.6055084466934204, -0.8967276215553284, -1.1740103960037231, 0.6283586025238037, -0.35219258069992065, 0.2449316680431366, -0.1682303249835968, 0.5015048980712891, -0.3198826313018799, 0.005316146649420261, -0.3411063253879547, -0.8262407779693604, -1.3849389553070068, -0.39760294556617737, 0.2880946099758148, -1.1126960515975952, 0.7046816349029541, -1.3605083227157593, -0.7367481589317322, 0.5213983058929443, -0.2163541465997696, -0.12668634951114655, -0.14860226213932037, -0.04942408949136734, -0.047844383865594864, -1.0621651411056519, 0.04943698272109032, -0.322095662355423, 0.6715396046638489, -0.5175132155418396, 0.5385156869888306, -0.42347875237464905, 0.3075524866580963, 0.9097792506217957, -0.3430558741092682, -0.9874196648597717, -0.060246992856264114, -0.2442929893732071, -1.3706402778625488, 0.23668040335178375, 0.16090275347232819, 0.3222825527191162, 0.20776765048503876, 0.3154222071170807, -0.2208571434020996, 0.6880677938461304, -0.0997559055685997, 0.992527961730957, -0.14355623722076416, -0.08969848603010178, -1.2330241203308105, 0.011860751546919346, 0.04621462523937225, -0.6296706795692444, -0.2531915009021759, 0.623890221118927, 0.606773853302002, -1.4117323160171509, 1.1213278770446777, -0.3261401951313019, 0.5295013785362244, 0.7477890253067017, 0.6522216200828552, 0.8814274072647095, 0.6371995210647583, 0.2192692905664444, -0.21081306040287018, -0.5890634655952454, -0.3934731185436249, 0.9405444860458374, -0.7423155307769775, 0.1850382387638092, 1.1311999559402466, 0.8323516845703125, -0.15499117970466614, 0.6913203597068787, -1.2919461727142334, 0.31044453382492065, -1.2521711587905884, -0.15437301993370056, 0.3875201344490051, -0.8732690215110779, 1.2196532487869263, 0.3481619656085968, -1.193825602531433, -0.3608490526676178, -0.30430370569229126, 0.6576962471008301, -0.49186718463897705, -0.13496385514736176, -0.26213544607162476, 0.6574817895889282, 0.23715882003307343, 0.009636947885155678, 0.213080033659935, -0.2309853881597519, 1.284211277961731, 0.0617218054831028, -0.12269411236047745, 0.19305318593978882, 1.3967024087905884, 0.18207602202892303, 0.9621849656105042, -0.2257971316576004, -0.8868412375450134, -0.7299841046333313, -0.8574604392051697, 0.6314170956611633, 0.19361042976379395, -0.4261901378631592, 0.3153907060623169, 1.132084608078003, -0.0055547431111335754, 1.5183324813842773, -0.14090529084205627, -0.011148333549499512, -0.12538032233715057, 0.6884745955467224, 0.6596513390541077, 0.7045769095420837, -0.8867234587669373, -0.622782826423645, 0.32160043716430664, 0.14140938222408295, 0.921838104724884, 0.7763587832450867, 1.2805429697036743, -0.9076089262962341, 0.10690770298242569, -0.19414998590946198, 0.10054393112659454, -0.6158729791641235, -0.12586276233196259, -0.579933762550354, -0.4651268422603607, -0.5713587403297424, -1.059662103652954, -0.02168460562825203, 0.37641119956970215, 0.15106706321239471, 0.6947575211524963, 0.6699918508529663, -1.1842126846313477, -1.8366230726242065, -0.5053335428237915, -0.06537625938653946, -1.1441447734832764, 1.3177917003631592, 1.018587589263916, -1.091550350189209, 0.3047631084918976, 0.2597757875919342, -0.2177516222000122, -0.3120698630809784, -0.4484247863292694, 0.11815886944532394, -0.6670706272125244, -0.7597360014915466, 0.025489570572972298, 1.0119014978408813, 0.08942627161741257, 0.06363280862569809, 0.09020751714706421, 0.7774282097816467, 0.30616092681884766, -0.3015364110469818, -0.9995706081390381, 0.2415292114019394, -0.07706591486930847, -1.0938663482666016, -0.3938055634498596, 1.126102089881897, 0.8178644776344299, -0.4671567678451538, -0.9923257827758789, -0.1986701637506485, -0.30142903327941895, -0.6994250416755676, 0.1692027598619461, 0.5072735548019409, 0.6595048904418945, -0.6754254102706909, 0.35554516315460205, 0.7535915970802307, -0.39687544107437134, 0.2856270670890808, -1.0998241901397705, 0.9007698893547058, 0.8561846017837524, 1.4418638944625854, -0.1631024181842804, 0.5078617930412292, 0.4662957489490509, -0.6174519658088684, -0.4177769124507904, -0.029663940891623497, 0.549955427646637, -0.366573691368103, -0.560593843460083, -0.4817095100879669, -0.267024427652359, 0.4516352713108063, 0.03800783306360245, -0.07722419500350952, 0.44690170884132385, -0.03843469172716141, -0.4001029431819916, 1.1964937448501587, -0.06758874654769897, -0.10366162657737732, -0.6192378401756287, 0.007954634726047516, 0.27747607231140137, -0.36129793524742126, -0.15981937944889069, -0.08959829807281494, -0.42509761452674866, 0.27633464336395264, -0.42506858706474304, -0.7317386269569397, -0.9545947313308716, 0.9387327432632446, 1.0147886276245117, -0.9192060232162476, -0.7227080464363098, -0.7639938592910767, 0.6441158056259155, 0.2025029957294464, -0.4530598223209381, 0.7998038530349731, 0.41466933488845825, -0.06482833623886108, -0.23688611388206482, -0.03134365752339363, 1.1884891986846924, 0.1845199167728424, -0.16515810787677765, 0.28372490406036377, 0.5355029106140137, -0.20929677784442902, -0.6937699317932129, -0.1290564090013504, -0.265509694814682, -0.08506074547767639, -0.3992050290107727, 0.6937727332115173, -0.14857451617717743, 1.9344866275787354, 0.6378381252288818, 0.6171175837516785, -0.004538011737167835, 0.2606174349784851, -1.2090187072753906, -0.09347359836101532, 0.6530641317367554, -0.26401323080062866, -0.3858618438243866, 0.03300287202000618, -0.3903525471687317, 0.4084163308143616, -0.18322575092315674, 0.67741858959198, 0.45596861839294434, 0.5642412304878235, -0.14604291319847107, 0.0019368752837181091, 0.397998571395874, 0.3728457987308502, 0.935566246509552, 1.1859813928604126, -0.4716167151927948, -0.7241648435592651, 0.5609102249145508, 0.037747692316770554, 0.2891109585762024, 0.6894075274467468, 0.5187579989433289, 1.1674610376358032, -1.5024861097335815, -0.03766930475831032, 0.8494300246238708, 0.11390317231416702, 0.3530295193195343, 0.44082510471343994, 0.33377090096473694, -0.8640305995941162, -0.1469782143831253, 0.3399884104728699, -0.18517427146434784, 0.7855759263038635, 0.1680632084608078, 0.3770561218261719, 0.5787212252616882, -0.015096204355359077, -0.03309231624007225, -0.7487292289733887, -0.19109827280044556, -0.03154272213578224, -0.18479622900485992, 0.9160801768302917, 0.09016397595405579, 0.9530786275863647, 1.096175193786621, -0.7392213940620422, -1.2292699813842773, 0.7388023734092712, -1.2177995443344116, 0.06259274482727051, -0.47758588194847107, -0.11069171875715256, -0.5604835748672485, -0.47199708223342896, -0.567898690700531, -0.47671693563461304, -0.7601742148399353, -0.16710269451141357, -1.227183222770691, -0.7044119238853455, 0.574101448059082, -0.0319334901869297, 0.9550691843032837, 0.12162336707115173, 0.6020742058753967, 0.6205465197563171, 0.10281915217638016, -0.6612123250961304, 0.2895817756652832, -0.21767859160900116, -0.07589273154735565, -0.09292236715555191, -1.2271126508712769, -0.7674850821495056, 0.2309272736310959, 1.0169918537139893, 0.38826820254325867, 0.3366983234882355, 1.1720962524414062, 1.3065779209136963, -0.8522899150848389, -1.3037482500076294, 0.7727005481719971, -0.31003719568252563, 0.5577513575553894, 0.03878581151366234, -0.8618928790092468, 0.12361352145671844, -1.243791103363037, -1.778941035270691, 1.0030994415283203, -0.01650257781147957, 0.07346402853727341, 1.2612684965133667, 0.5890071988105774, 0.02835746295750141, 1.846746802330017, 0.059399235993623734, 0.04396591708064079, -0.381203293800354, -0.2622244656085968, -1.271475911140442, 1.0771937370300293, 1.418111801147461, 0.21677516400814056, -1.4503719806671143, 0.3399673402309418, -0.3123822808265686, -1.0116474628448486, -0.30369216203689575, 0.2871367931365967, 0.1256955862045288, 0.7057232856750488, -0.3417789041996002, -0.16596579551696777, 0.12600301206111908, -0.9598357677459717, -0.11498585343360901, 0.2426360547542572, 0.6753602623939514, 0.9131141901016235, -0.5475649237632751, 0.8791245818138123, -0.957310676574707, -1.1296632289886475, -0.2735517621040344, -0.652365505695343, 0.16494645178318024, 0.5766540169715881, 0.5201789736747742, -0.13255617022514343, -0.30675652623176575, -0.16004036366939545, -0.7985584735870361, 0.2172715663909912, 0.7702713012695312, -0.9810665249824524, -0.6744224429130554, 0.31541210412979126, -0.3382222354412079, 0.1424049437046051, 0.005193844437599182, -0.4098811447620392, -0.725193202495575, -1.1066240072250366, -0.3002178370952606, -0.7259848713874817, 0.6085817813873291, -0.6575003862380981, 0.28659138083457947, -0.20467381179332733, -1.2779747247695923, 0.4642522633075714, -0.052276451140642166, -1.5677047967910767, -0.4021192789077759, -0.6305690407752991, 0.6604645252227783, -0.31033897399902344, 0.9150384664535522, -0.218329519033432, 1.3242658376693726, -1.6095774173736572, -0.44924017786979675, -0.5387738347053528, -0.3828839361667633, 0.9245964884757996, 0.7632747888565063, -1.2588969469070435, 0.9645566344261169, -0.34698450565338135, -0.6695023775100708, -0.849476158618927, 0.005238847807049751, -1.3418105840682983, 0.3642384111881256, 0.09589579701423645, -0.08243997395038605, 0.5857172012329102, 1.5629159212112427, 0.31135207414627075, 1.0965328216552734, -0.33521199226379395, 1.2840677499771118, -0.19113199412822723, -0.8282162547111511, -0.23651497066020966, 0.26103466749191284, -1.0778120756149292, -0.49959704279899597, 0.2830977439880371, -0.6305436491966248, -0.6258172988891602, 0.4406284689903259, 0.7981048226356506, -1.0848066806793213, 0.24586787819862366, -0.8843997120857239, -0.7391418814659119, -1.0619242191314697, 0.6488610506057739, 0.6938907504081726, -1.3051238059997559, -0.5092746019363403, 0.028557095676660538, 0.4443489909172058, -1.2229644060134888, 0.43313974142074585, 0.4837694466114044, 0.4216330051422119, -0.07473957538604736, 0.21600666642189026, -0.1006949171423912, 0.9539998173713684, -0.17611883580684662, 0.6155561208724976, 1.2969425916671753, -0.1599678099155426, 0.4717544913291931, -0.02750461921095848, -0.24467208981513977, 0.05591001361608505, -0.2640019953250885, -0.8518694043159485, -0.5059283971786499, 0.8224318623542786, 0.2440079003572464, -0.276587575674057, 0.45990580320358276, 0.3720948398113251, 0.16086991131305695, -0.5702967643737793, 1.7914206981658936, -0.6851773262023926, -0.8504550457000732, 0.6567445993423462, 0.8575392961502075, -0.27783241868019104, 0.1008925586938858, -0.3068683445453644, 0.3865739107131958, -0.2831188142299652, 0.8478663563728333, 0.20776936411857605, -0.6630844473838806, -0.05448592081665993, -0.16471454501152039, -0.22457580268383026, 0.3075207769870758, -0.871421217918396, -1.2262059450149536, 0.121575266122818, -0.10623842477798462, -0.2191666215658188, 0.47314876317977905, -1.3302432298660278, -1.8900080919265747, 0.30069035291671753, -0.3328762650489807, -0.5961782336235046, -0.6922059059143066, -0.07951277494430542, -0.2665890157222748, -0.12086579948663712, 0.7861995697021484, -0.2459011673927307, 0.6144009828567505, -0.19785162806510925, 0.0522531159222126, -0.46580561995506287, -0.42823249101638794, 0.14371739327907562, -0.2891167104244232, -0.0016804265324026346, -0.3666003942489624, 0.6302290558815002, -0.48696500062942505, -0.3322937786579132, 0.30290308594703674, 0.1366702765226364, 0.0731116533279419, -0.1861899197101593, -0.5219008922576904, 0.3007798492908478, 0.029917579144239426, 0.32715868949890137, -0.41655686497688293, -0.799280047416687, -0.42917370796203613, -0.45159226655960083, 0.3301040828227997, 0.6493264436721802, -0.7938258051872253, -0.04953104257583618, 0.9604841470718384, -0.8751248121261597, -0.6500978469848633, -0.3170166611671448, 0.8908622860908508, -0.4057779014110565, 0.23177705705165863, -0.4670647382736206, -0.5150641798973083, -0.5396466851234436, -1.1535676717758179, -0.20302197337150574, -0.1299612820148468, -0.05625919625163078, 0.7067732810974121, -0.5151692628860474, -0.3888244926929474, -0.5758722424507141, 0.9038726687431335, -0.055652979761362076, 0.4792373776435852, 0.5772308707237244, -0.09249113500118256, -0.7956779599189758, -0.07649490237236023, -0.10172298550605774, 0.8292564153671265, 0.4515458643436432, 1.504763126373291, 1.2481741905212402, 0.36017632484436035, 0.4753909409046173, 0.2009616494178772, 0.6941925883293152, -0.7899167537689209, -0.14966623485088348, -0.8985288739204407, -0.5320348739624023, -0.09070336073637009], [0.6907796263694763, 2.0888941287994385, -3.015634536743164, 0.8448196649551392, 0.3774552643299103, 0.16739968955516815, 1.7747435569763184, -0.17212754487991333, 0.4779823422431946, -0.7862173914909363, -0.2757798731327057, 0.0880194827914238, 0.04958445206284523, 0.3883498013019562, 0.4797629714012146, 0.5753671526908875, 0.2992786467075348, -0.5905726552009583, 1.0830210447311401, 1.0199013948440552, 0.7422101497650146, -0.5672982931137085, -0.453447550535202, -0.231380894780159, -0.3374170660972595, 0.8556742072105408, -1.2904689311981201, 0.24524104595184326, -0.5079820156097412, -0.849265992641449, 1.6155844926834106, 0.4803467392921448, 0.03828468546271324, 0.41972845792770386, -2.3396334648132324, -0.10693016648292542, 1.0974534749984741, -0.020488396286964417, 0.6701352596282959, -0.511325478553772, 2.4686996936798096, -0.4166143238544464, 0.0729505866765976, -1.6861056089401245, -0.11506795883178711, 0.5169854164123535, 0.38832154870033264, -0.5403941869735718, 0.19093067944049835, -0.6959635615348816, 0.5770502090454102, -0.6937631964683533, 0.12961137294769287, 1.2256611585617065, 0.5613369941711426, -0.23837041854858398, 0.09405902773141861, 0.002160182688385248, -0.17823311686515808, 0.0760338306427002, 0.895855188369751, -0.3155284821987152, 0.17828835546970367, 0.5068075060844421, 0.380509614944458, -0.009041105397045612, 0.7313787341117859, 0.2166641652584076, 0.38472604751586914, 0.4936997890472412, 0.36659637093544006, -0.20576684176921844, -0.9577489495277405, -0.2981626093387604, -0.5087665915489197, 0.19745442271232605, -0.17341738939285278, 0.31788167357444763, 0.45769959688186646, 0.7031648755073547, -0.479301780462265, 0.325531005859375, 0.8731685876846313, -0.1013140007853508, 0.31552937626838684, 0.15903422236442566, 0.46461591124534607, -0.8716564178466797, -0.3467339277267456, 1.8990026712417603, 0.502160370349884, 0.7338209748268127, 0.6854748725891113, -0.38303184509277344, -0.5811289548873901, -0.8138871788978577, -0.12814807891845703, -0.7376469969749451, 0.22512464225292206, -0.5882446765899658, -0.1943770945072174, -0.4981659948825836, 0.16178065538406372, -0.028300317004323006, -0.2038133144378662, 0.9608837962150574, -0.09315845370292664, -0.4932045638561249, -0.40877673029899597, -0.10485213994979858, -0.16318345069885254, -0.19124974310398102, -0.344679594039917, -1.4007633924484253, -0.7542974948883057, 1.3891814947128296, 1.409766435623169, 1.0017448663711548, 0.535376250743866, -0.08737586438655853, -0.3579881489276886, -0.17699120938777924, -0.6118958592414856, -0.1492524892091751, 0.770927369594574, -0.19844232499599457, -0.6719571352005005, 0.2428961992263794, -0.1899706870317459, 0.440262109041214, 0.719208836555481, -0.04618510231375694, -0.20059071481227875, 0.8329118490219116, -0.00374003779143095, 1.1991798877716064, -0.5086966156959534, 0.02946055680513382, 0.5705580115318298, 0.3604128658771515, 0.4453469216823578, -0.4075463116168976, 0.3891270160675049, -0.052830614149570465, 0.21954412758350372, -0.43384048342704773, 1.082704782485962, -0.18401722609996796, -0.5790677070617676, 0.7338396906852722, -1.5426818132400513, 0.5880579352378845, -0.7252601981163025, 0.941117525100708, 0.020234951749444008, -0.41666343808174133, 0.29448530077934265, 0.2794138193130493, 0.4485832154750824, 0.4403057396411896, 0.7054741382598877, -0.257997065782547, -1.3213320970535278, 0.5445749163627625, 0.5550520420074463, -0.9094225168228149, 0.3522973954677582, 0.33179771900177, -0.9229451417922974, 0.9119855165481567, -0.3758063018321991, -0.5350976586341858, -0.27539747953414917, -0.22201375663280487, 0.3087221384048462, -0.36393338441848755, 1.2166095972061157, 0.2502944767475128, -0.9025097489356995, -1.283903956413269, 0.8955876231193542, -0.18619494140148163, 0.39561474323272705, 0.5154948830604553, 0.5396537184715271, -0.32107844948768616, 0.6149584054946899, -0.3470645248889923, -0.6596314311027527, -0.5882772207260132, -0.6438814401626587, 0.15179601311683655, -1.5506144762039185, 0.26376378536224365, -0.3342617452144623, -0.5784565210342407, 1.5107760429382324, -0.650044322013855, -0.12550532817840576, -0.13843730092048645, -0.08461610227823257, -0.4947909712791443, -0.6961326599121094, -0.20435424149036407, -0.7076154947280884, 0.3778242766857147, -1.1335558891296387, 0.899808406829834, -0.24792194366455078, 0.48263245820999146, 0.7471646666526794, -1.079390287399292, -1.2064082622528076, 1.255110502243042, -0.3487827777862549, -2.259335994720459, 0.5285673141479492, 0.5572685599327087, 0.13666917383670807, -0.11738720536231995, -0.110940121114254, 0.1259346306324005, 0.49751296639442444, 0.4096585214138031, 1.0065914392471313, -1.11281418800354, 0.0935773178935051, -1.0842769145965576, -0.40017077326774597, 0.8668773174285889, -0.92754065990448, -0.9919415712356567, 0.36667317152023315, 0.1484985500574112, -1.482807993888855, 0.7729337811470032, 0.0013467799872159958, 0.03388785570859909, 0.4821024537086487, 1.3423776626586914, 0.7009317278862, 0.2702181935310364, -0.43876275420188904, -0.22184905409812927, -0.17549042403697968, -0.0817154049873352, 0.6757654547691345, -0.6246607303619385, -0.26047879457473755, 1.0260928869247437, 0.5943114161491394, -0.310131311416626, 0.9551021456718445, -0.6310238242149353, 0.3138439357280731, -1.4631365537643433, -0.46692126989364624, -0.28313758969306946, -1.4198073148727417, 1.2440001964569092, 1.058916687965393, -0.9170057773590088, 0.6435735821723938, -0.4232480525970459, -0.3479144275188446, -0.6499925851821899, -0.49610623717308044, -0.9242876172065735, -0.15281502902507782, -0.3201645612716675, -0.06116282939910889, -0.7231853008270264, -0.4468690752983093, 1.384569525718689, -0.37454888224601746, -0.24100103974342346, 0.2036363184452057, 0.38748323917388916, 0.7392128705978394, 0.4984804093837738, -0.024574993178248405, -1.9403091669082642, -0.7618798017501831, 0.5048769116401672, 1.3226836919784546, -0.07841333746910095, 0.8114867806434631, 0.35961174964904785, 0.9316574335098267, 0.6679502129554749, 0.33857962489128113, -0.1964636892080307, 0.22918207943439484, 0.33478090167045593, 0.19275720417499542, -0.03422274813055992, 0.2751956284046173, -0.6720921397209167, -0.6920552253723145, -0.5370252728462219, 0.6750284433364868, 0.9596831798553467, 0.9725319147109985, 0.7787280082702637, -0.23144418001174927, 0.5579254031181335, -0.40340831875801086, 0.013411354273557663, -0.2304583042860031, -0.5799351334571838, 0.12093417346477509, -0.6803703904151917, -0.4306652843952179, -0.4728606343269348, -0.005999094340950251, 0.484536349773407, 0.150238499045372, 1.3918551206588745, 0.9782760739326477, -0.784956693649292, -1.3412249088287354, -0.8976349830627441, 0.24000534415245056, -0.795748770236969, 0.829484760761261, 0.9729594588279724, -1.5602285861968994, 0.7550013065338135, 0.24185678362846375, 0.5148118138313293, 0.8947982788085938, -0.10467111319303513, 0.281622976064682, -1.3406661748886108, -0.5158384442329407, -0.1326867789030075, 1.327661156654358, -0.28530001640319824, 0.0017213569954037666, -0.5337722897529602, -0.028644418343901634, 0.842814028263092, -0.11008843779563904, 0.15899282693862915, 0.23613840341567993, -0.3892977237701416, -0.5997049808502197, -0.004978109151124954, 0.3169393539428711, 0.5137239098548889, -0.39092350006103516, -1.326794981956482, 0.12044361978769302, 0.11535058170557022, -0.7847573757171631, 0.26669418811798096, 0.779403805732727, 0.09866885095834732, -0.5738284587860107, 0.04473678395152092, 1.094105839729309, 0.17972664535045624, -0.11823353171348572, -0.4066976010799408, 0.5239754915237427, 0.7548521757125854, 1.2770394086837769, 0.30679643154144287, 0.5733119249343872, 0.30781570076942444, -1.4659888744354248, -0.4388626515865326, -0.004540991969406605, 0.66023850440979, -0.2054721564054489, -0.6287075877189636, -0.11801638454198837, -0.24727816879749298, -0.2212163507938385, 0.41524431109428406, 0.5514605641365051, -0.028666481375694275, -0.20003676414489746, -1.1020145416259766, 0.6709296107292175, -0.046659260988235474, -0.48278549313545227, -0.9666450619697571, -0.0169527605175972, 0.6043992638587952, -0.18321536481380463, -0.29483088850975037, -0.46378588676452637, -0.11694558709859848, 0.33725377917289734, -0.7174111604690552, -0.4199093282222748, -0.10108835250139236, 0.2607434391975403, 1.0434941053390503, -1.3245117664337158, -0.2284785360097885, -0.5222998857498169, 0.6510547399520874, 0.7719243168830872, -0.36657556891441345, 0.6647870540618896, 0.7081965804100037, -0.33512088656425476, -0.2308804839849472, -0.04920037463307381, 1.3687806129455566, -0.3302806615829468, -0.14732679724693298, 0.5019115209579468, -0.18701808154582977, 1.0100222826004028, -1.2863714694976807, -0.24762289226055145, 0.2743544280529022, -0.46701663732528687, 0.3164111375808716, -0.011932878755033016, -0.7896976470947266, 1.3318098783493042, 0.3029016852378845, -0.5532332062721252, 0.2816959023475647, 0.0103569645434618, -1.1228018999099731, 0.030246460810303688, 0.3668874502182007, -0.09664458781480789, -0.40311169624328613, 0.36840227246284485, 0.5320827960968018, 0.5493801832199097, 0.5800642967224121, 0.2863472104072571, 0.11074725538492203, 0.31307655572891235, 0.023470891639590263, 0.24065926671028137, 1.058850646018982, 0.9545316100120544, 1.056262493133545, 1.0066602230072021, -0.5642006397247314, -0.13569030165672302, 0.49390679597854614, -0.2821817100048065, 0.6948274374008179, 1.12704336643219, -0.239538311958313, 1.251860499382019, -1.4982223510742188, 0.28844520449638367, 0.8865323066711426, 0.39851853251457214, 1.3164424896240234, -0.1887723207473755, 0.6388672590255737, -0.8364578485488892, -0.5064999461174011, 0.9100950956344604, -0.5871227979660034, 1.0272380113601685, 0.18031008541584015, -0.13357742130756378, 0.73291015625, -0.8496260643005371, -0.4276510179042816, -0.730383038520813, -0.34987449645996094, -0.828116238117218, -0.46576690673828125, 0.512016236782074, 1.0000605583190918, 1.0551276206970215, 0.6081036329269409, 0.27361810207366943, -1.7052749395370483, 0.15320929884910583, -1.0022766590118408, 0.18727265298366547, -0.1307377815246582, 0.1300913244485855, -0.9900360703468323, -0.6743745803833008, -0.030945396050810814, 0.02152233012020588, -0.7498562335968018, -0.33751562237739563, -0.07654757797718048, -1.134519338607788, 0.3972405195236206, 0.9899142980575562, 0.2745720148086548, 0.47140222787857056, 0.23788657784461975, -0.1651010811328888, 0.2734549343585968, -0.5277650356292725, -0.6622902750968933, -0.7937373518943787, 0.03380989283323288, 0.16464926302433014, -1.250040054321289, -0.27723073959350586, 0.6009365320205688, 0.9754635691642761, 0.3588860034942627, 1.3664387464523315, 1.1518484354019165, 1.2260359525680542, -1.0825639963150024, -0.4487367868423462, 0.37780922651290894, -0.41815057396888733, 1.0140008926391602, 0.9698463082313538, -0.5261797904968262, -0.3904288411140442, -0.8287081122398376, -1.8572720289230347, 0.7613409161567688, -0.29998424649238586, -0.13329723477363586, 0.8948107361793518, 0.6106489300727844, 0.16834604740142822, 0.3737300634384155, -0.7294256687164307, -0.5758500695228577, -0.11373629420995712, 0.1169959157705307, -0.6110052466392517, 0.9369186758995056, 0.859146773815155, -0.4178548753261566, -1.3091500997543335, 0.42665988206863403, -0.4234273135662079, -0.5971757173538208, 0.04405141994357109, 0.40909823775291443, -0.7070584893226624, 0.41674894094467163, 0.11852160096168518, -0.8092434406280518, 0.41261377930641174, -1.3913999795913696, 0.6438437700271606, 0.3373122811317444, 0.20523640513420105, 0.7661881446838379, -0.24997460842132568, 1.003757357597351, -0.6543639898300171, -0.22890454530715942, -0.49597495794296265, -0.42023882269859314, 0.5361759662628174, 0.585989236831665, 0.6691503524780273, -0.31192538142204285, -0.894304096698761, -0.27147960662841797, -0.6406146883964539, 0.022777657955884933, 0.8399488925933838, -0.5742858648300171, 0.1920044720172882, 0.1662244349718094, -0.5596863031387329, 0.14160099625587463, -0.20435625314712524, 0.05711902305483818, -0.9805697202682495, -0.9902766942977905, -0.4164687395095825, -0.4577693045139313, 1.1540671586990356, -0.4739064872264862, 0.8293532729148865, -0.034574177116155624, -1.2227997779846191, 0.3394373953342438, -0.13020919263362885, -1.6443971395492554, 0.14511021971702576, -0.943077802658081, 0.7803040742874146, -0.692937970161438, -0.16152898967266083, -0.2363450825214386, 1.1704552173614502, -1.5873976945877075, -0.8836963772773743, -1.8853720426559448, -0.3575391173362732, 0.5615138411521912, 0.9410561919212341, -1.8805789947509766, 1.1891597509384155, -0.526041567325592, -0.7488875389099121, -0.4731290638446808, -0.22951312363147736, -1.1228728294372559, -0.366007536649704, 0.1532823145389557, 0.724504828453064, 0.3052223026752472, 1.8292160034179688, -0.0998721569776535, 0.9487418532371521, 0.3407277464866638, 1.336311936378479, -0.09199193865060806, -0.2765175700187683, 0.3410789966583252, 0.7248063683509827, -1.379563331604004, 0.1903010904788971, 0.04850784316658974, -0.03253742307424545, -1.118001103401184, 0.4407828748226166, 0.561795175075531, -0.37025704979896545, 0.22944475710391998, -0.38296476006507874, 0.30016428232192993, -0.7320575714111328, 0.2973410487174988, 0.6125278472900391, -0.925691545009613, -0.07257350534200668, -0.9623104929924011, 0.11221089959144592, -1.2158769369125366, -0.4021545648574829, 0.19734309613704681, -0.15177856385707855, -0.4146081209182739, 0.6127346158027649, 0.28855186700820923, 0.728955090045929, -0.5179001688957214, 0.8786314129829407, 0.8629745244979858, -0.5873575806617737, -0.2905382215976715, 0.4364316165447235, 0.39864206314086914, -0.19907614588737488, 0.06725436449050903, -0.21237529814243317, -0.7214857935905457, 0.40528759360313416, 0.2336198389530182, -0.36514797806739807, 0.010850009508430958, 0.594131350517273, -0.013094860129058361, 0.48036906123161316, 1.1308934688568115, -0.217729851603508, -0.8752927780151367, 1.0177732706069946, 0.6742197275161743, -0.9613384008407593, 0.013562552630901337, -0.058906834572553635, 0.6735141277313232, -0.05372868478298187, 0.39050644636154175, 0.4338077902793884, -0.7458999156951904, 0.4351855218410492, -0.20906223356723785, 0.13768209517002106, 0.26992860436439514, -0.4562247693538666, -0.8111711144447327, -0.9075262546539307, -0.8688415288925171, -0.21126072108745575, 0.3973639905452728, -1.075939655303955, -1.3799948692321777, 0.3418779671192169, 0.5566983222961426, -0.46722567081451416, 0.2353784143924713, -0.0052504814229905605, -0.2576224207878113, -0.4170321524143219, 0.8452498316764832, -0.17561087012290955, 1.359399676322937, -0.5131664872169495, 0.02088637463748455, -0.09615034610033035, -0.11096911877393723, -0.051738012582063675, -0.14362987875938416, 0.09221549332141876, -0.721123456954956, 0.6387514472007751, -1.072405219078064, -0.516994297504425, 0.16563557088375092, 0.3403588533401489, -0.07617663592100143, -0.3420945405960083, -1.2093929052352905, 0.7189873456954956, 0.34072306752204895, 0.13206784427165985, -0.5364436507225037, -0.44742482900619507, -0.6768575310707092, 0.1593042016029358, -0.3935287594795227, 0.8598617911338806, 0.01035594567656517, 0.8791396021842957, 0.5687424540519714, -0.6929140090942383, -1.099299430847168, -1.0980486869812012, 0.6796890497207642, 0.24507597088813782, 0.31377261877059937, -0.1309901624917984, 0.7922085523605347, -0.39366844296455383, -0.9873066544532776, -1.0034189224243164, 0.05791143327951431, 0.29837968945503235, 0.5748509764671326, -0.6902772188186646, -0.6929498910903931, -0.38392165303230286, 0.9398486614227295, -0.07434920221567154, 0.16351932287216187, 0.356251060962677, -0.31255173683166504, -0.9758297204971313, -0.12547168135643005, 0.47518062591552734, 0.2007184475660324, 0.6872552633285522, 1.723394513130188, 0.9659530520439148, 0.0833999365568161, -0.37817931175231934, 0.04105758294463158, 0.7298234701156616, -1.4789706468582153, -0.06546454131603241, -0.867336630821228, -0.483461856842041, -0.07834642380475998], [0.670873761177063, 2.5666115283966064, -2.8639564514160156, 0.4565143287181854, 1.019042730331421, 0.454334020614624, 0.9357755780220032, 0.6534588932991028, 0.07290693372488022, -0.673214852809906, -1.112908124923706, 0.5483556985855103, -0.1414954513311386, 0.8435606956481934, 0.31483954191207886, -0.21179994940757751, 0.8127113580703735, 0.19339270889759064, -0.10168522596359253, 1.1620842218399048, 0.49686071276664734, -0.6056675910949707, -0.6952574849128723, 0.2750544548034668, 0.004299473017454147, -0.023230750113725662, -0.9967606067657471, 0.24179407954216003, -0.9920597076416016, -0.4891241192817688, 1.5711414813995361, 0.6394340991973877, 0.6509617567062378, 0.17421363294124603, -1.9890691041946411, 0.03719101846218109, 0.5911147594451904, -0.29684796929359436, 0.32683855295181274, -0.17854458093643188, 1.7353222370147705, 0.1833494007587433, -0.18021845817565918, -1.3914690017700195, -0.36182957887649536, 0.16803638637065887, 0.4260185658931732, -0.5355978608131409, 0.41721999645233154, -0.7029899954795837, 0.9984534382820129, -0.4163798391819, 0.41215357184410095, 0.48339858651161194, 0.8915283679962158, -1.1850663423538208, 0.4799293577671051, 0.5639658570289612, -0.13564150035381317, 0.6941640377044678, 0.8964411616325378, -0.6710578799247742, 1.0969220399856567, 0.5982657074928284, 0.031294092535972595, -0.6939487457275391, 0.5275850296020508, 0.3052232563495636, 0.5466118454933167, 0.24963797628879547, 0.9004459977149963, 1.1664807796478271, -1.1563191413879395, 0.2859452962875366, -0.9756622314453125, 0.14333246648311615, -0.145871102809906, 0.38398268818855286, 0.005733763799071312, 0.40312764048576355, -0.0894542708992958, 0.4626834988594055, 0.4114088714122772, 0.44890326261520386, -0.2360934019088745, 0.16758964955806732, 0.4366002082824707, -0.4870177209377289, -0.34863439202308655, 1.1069130897521973, 0.04729855805635452, 0.6124024987220764, 0.9106763005256653, -0.2809833586215973, -0.30013415217399597, -0.7992616295814514, -0.3414173722267151, -1.3241041898727417, -0.40308743715286255, -0.6219027042388916, 0.008948049508035183, -0.6043736934661865, 0.7229329943656921, 0.6431050300598145, 0.23709695041179657, 1.6010345220565796, -0.12365357577800751, -0.5813052654266357, -0.26580652594566345, -0.3624878525733948, 0.09100289642810822, 0.15974970161914825, 0.1514105349779129, -1.7790921926498413, -0.17013311386108398, 0.9894523620605469, 1.115722417831421, 0.6556040048599243, -0.3729158937931061, 0.42445215582847595, -0.42094340920448303, -0.458204060792923, -0.736579179763794, 0.17278940975666046, 1.7550758123397827, -0.09295596182346344, -0.15338733792304993, 0.441741406917572, -0.11635483801364899, 0.20302249491214752, 0.27229464054107666, 0.043613169342279434, -0.12342521548271179, 0.5254051685333252, -0.6759414672851562, 0.8192430734634399, -0.49428725242614746, -0.20280689001083374, 0.0033356850035488605, 1.222444772720337, 0.5210340619087219, -0.35203808546066284, -0.0835859552025795, -0.4350638687610626, 0.38204485177993774, -0.19275303184986115, 0.743602454662323, 0.14190703630447388, -0.7896665334701538, 0.7624611258506775, -2.095228910446167, 0.38871219754219055, 0.03281873092055321, 0.947088897228241, 0.703006386756897, -0.09087809920310974, 0.4770418107509613, 0.09451130777597427, -0.012981596402823925, 0.24304084479808807, 1.1214838027954102, 0.05516327917575836, -0.9187544584274292, 0.9294232130050659, 0.7424876689910889, -0.33744844794273376, 0.30009549856185913, 0.3155458867549896, -0.27060022950172424, 1.1737803220748901, 0.005541522055864334, -0.5006855130195618, -0.8528767228126526, 0.32531028985977173, -0.1944524049758911, -0.18269731104373932, 0.8952212333679199, 0.23406384885311127, -0.7317565083503723, -0.910431981086731, 0.5481342077255249, -0.028789952397346497, 0.1939089298248291, -0.018648158758878708, 0.9828433990478516, -0.3710704445838928, -0.5743545293807983, -0.8485254049301147, -0.41730523109436035, -0.6531291604042053, -0.43399879336357117, 0.032107170671224594, -1.1180315017700195, 0.5875308513641357, -0.6720688939094543, -1.4384771585464478, 1.0113834142684937, -0.37403440475463867, -0.2893499433994293, -0.09771645069122314, 0.14077283442020416, -0.4991803467273712, -1.302164912223816, -0.4548482596874237, -0.48137471079826355, 0.5442538857460022, -1.035315752029419, 0.6639463305473328, -0.9749976396560669, 0.8407010436058044, 0.6766031980514526, -0.40717819333076477, -1.6375882625579834, 0.2011033147573471, -0.19515934586524963, -1.3036134243011475, 0.4029233753681183, -0.2483861744403839, 0.46330487728118896, -0.6830999255180359, -0.48830515146255493, 1.0973159074783325, 0.8146098852157593, -0.6297431588172913, 0.7845912575721741, -0.8568131327629089, 0.11710423231124878, -0.9466069936752319, -0.09756909310817719, 0.3079623281955719, -0.8755550384521484, -1.0584099292755127, 0.7079290151596069, 0.9197879433631897, -1.6039354801177979, 0.6963610649108887, -0.5848666429519653, 0.2818099856376648, 0.2810129225254059, 1.160141110420227, 0.22890597581863403, 0.9446596503257751, -1.0400408506393433, 0.010138992220163345, -1.2510685920715332, -0.6145921349525452, 0.5661441087722778, -0.3462525010108948, -0.08025245368480682, 1.3040434122085571, 0.6011239290237427, -0.21772369742393494, 0.8026323318481445, -0.27643027901649475, 0.04389705881476402, -0.958442211151123, -0.006084372755140066, -0.13880853354930878, -0.7294468283653259, 1.867631435394287, 1.106265664100647, -0.5537940263748169, 0.10530886799097061, -0.4606037437915802, -0.05813390389084816, -0.7984880208969116, 0.0059699625708162785, -0.7760704755783081, 0.1959514021873474, -0.4524126648902893, 0.06960780173540115, -0.7323402762413025, 0.06721610575914383, 1.3031224012374878, 0.5330471396446228, -0.7786775827407837, -0.32112252712249756, 0.5392919778823853, -0.2305169254541397, 0.4561992287635803, -0.6109866499900818, -1.1675877571105957, -1.354573369026184, 0.34009239077568054, 1.056038498878479, -0.1594826877117157, 0.40318605303764343, 0.5891366600990295, 1.0267192125320435, -0.21586035192012787, 0.3008187711238861, 0.07081626355648041, 0.09393195062875748, 0.004297053441405296, 0.7783551216125488, 0.46053487062454224, 0.23100829124450684, -0.7017304301261902, -0.6533703804016113, -0.35154032707214355, -0.056843455880880356, 1.0799190998077393, 0.7914322018623352, 1.2784959077835083, -1.0032463073730469, -0.09334680438041687, -0.620063841342926, -0.1366306096315384, -0.9162716865539551, -0.4397018849849701, -0.4054841995239258, -0.8192061185836792, -0.5193459391593933, -0.6356188654899597, -0.41986942291259766, 0.4901678264141083, 0.017073512077331543, 1.1210267543792725, 0.4349711537361145, -0.3913062512874603, -1.812825083732605, -1.048769474029541, -0.7894166111946106, -0.7257362604141235, 0.6790228486061096, 1.5348366498947144, -2.3530776500701904, 0.041247639805078506, -0.14560283720493317, -0.11416828632354736, -0.417441725730896, -0.7151418924331665, 0.24404111504554749, -1.1067678928375244, -0.19955679774284363, -0.48067039251327515, 1.3880170583724976, 0.31202274560928345, -0.5062370300292969, -0.19552841782569885, 0.9109766483306885, 1.0407230854034424, -0.37112483382225037, 0.20169579982757568, 0.26981982588768005, -1.4498552083969116, -0.001167519949376583, -0.235885888338089, 0.14001062512397766, 0.012048550881445408, -0.595780074596405, -1.1832228899002075, -0.5918026566505432, -0.6956688165664673, -0.7683932185173035, 0.8323136568069458, 1.2497546672821045, 0.6039428114891052, 0.2952008843421936, 0.10553449392318726, 1.0967689752578735, 0.18647918105125427, 0.4738523066043854, -1.0194660425186157, 0.5100403428077698, 0.8671022057533264, 1.848682165145874, 0.6426293849945068, 0.03718777373433113, 0.4215985834598541, -1.2791988849639893, -0.4900258779525757, 0.09670445322990417, 0.4347565770149231, 0.2727033197879791, -0.4584541618824005, -0.3794732391834259, -0.7152420878410339, 0.07709342241287231, 0.044182222336530685, 0.9902815222740173, 0.11185003072023392, -0.05158437788486481, -0.3659171164035797, 1.6763577461242676, 0.47183123230934143, 0.09830119460821152, -1.1131709814071655, -0.519881546497345, 0.8012152910232544, -1.0086441040039062, 0.2386402040719986, 0.09516967833042145, -0.09281393885612488, 0.5784637928009033, -0.832973837852478, -0.7769890427589417, -0.221268892288208, 0.4535566568374634, 0.9342345595359802, -1.5866621732711792, -0.36928990483283997, -0.6231312155723572, 0.4346897304058075, 0.9329907894134521, 0.8249600529670715, 0.46641647815704346, 0.5968179702758789, -0.7361539006233215, 0.18701769411563873, 0.37198200821876526, 1.2864489555358887, -0.33913713693618774, 0.07726123183965683, 0.1825382560491562, 0.22784776985645294, 0.5592800974845886, -0.8875962495803833, 0.0959348976612091, -0.2692532241344452, -0.7233638167381287, -0.3361749053001404, 0.30017325282096863, -0.936285138130188, 1.6209927797317505, -0.10368270426988602, -0.7508600354194641, 0.21430231630802155, 0.5070713758468628, -1.275933027267456, -0.05150327831506729, 0.6343560814857483, -1.1892826557159424, 0.017337270081043243, 0.588373601436615, 0.5391653180122375, 0.8292884826660156, 0.12418576329946518, 0.6393589973449707, 0.3623330593109131, 0.6465945839881897, 0.2597368061542511, 0.3241596221923828, 0.6246669888496399, 1.666945457458496, 0.6780076026916504, 1.9328261613845825, 0.07000409811735153, -0.7531312108039856, 0.9789590835571289, -0.7639408111572266, 0.2672426104545593, 0.9087960124015808, 0.05169522389769554, 1.1215815544128418, -1.5042107105255127, -0.0008627604693174362, 1.3731046915054321, -0.31175652146339417, 0.7165953516960144, 0.18633605539798737, 0.6499279141426086, -1.0877360105514526, 0.20015142858028412, 0.18827150762081146, -0.5839575529098511, 0.6832827925682068, 0.14050991833209991, 0.4981948733329773, 0.9936404228210449, -0.577111542224884, 0.12377613037824631, -0.9260258078575134, -0.5770307183265686, 0.240115687251091, 0.25688403844833374, 0.28017479181289673, 0.7298615574836731, 1.1123813390731812, 0.396742582321167, -0.27703821659088135, -1.8135117292404175, 0.5091424584388733, -1.0042543411254883, 0.33708181977272034, -0.2470424473285675, -0.0987364798784256, -0.822059690952301, -0.5205880999565125, 0.3771466910839081, -0.4773784577846527, -0.2752707302570343, -0.6590990424156189, -1.1812307834625244, -0.9004088044166565, 0.5121710896492004, 0.14690075814723969, 0.5013401508331299, 0.1880963295698166, 0.9765719771385193, 0.04899440333247185, 0.011384505778551102, -0.4737541973590851, -0.16116274893283844, 0.2896290719509125, 0.3346864879131317, -0.5918622612953186, -0.1316738724708557, -0.9460222125053406, 0.28148773312568665, 0.4360692501068115, 0.15617524087429047, 0.40450236201286316, 0.9119920134544373, 1.034929871559143, -0.4601973593235016, -0.43174099922180176, 0.3126239776611328, -0.7977978587150574, 0.9197767376899719, 0.5037820339202881, -0.2829494774341583, 0.12934137880802155, 0.022909121587872505, -1.7471126317977905, 1.1562297344207764, 0.3490886688232422, -0.002271127887070179, 0.7026017904281616, 0.9750661849975586, 0.47959697246551514, 0.6567673683166504, -0.6203945875167847, 0.011384275741875172, 0.6868472695350647, -0.29120969772338867, -0.38468098640441895, -0.09841465204954147, 0.44022682309150696, -0.29020956158638, -0.9657790660858154, 0.44387733936309814, -0.31508952379226685, -0.3583792448043823, -0.27301904559135437, 0.5819235444068909, -0.07732298970222473, 0.9836409687995911, 0.09183960407972336, -0.3004470467567444, 0.4880407750606537, -1.3793648481369019, -0.14358510076999664, 0.8627174496650696, 0.4038350582122803, 0.9248150587081909, -0.16185994446277618, 1.5548855066299438, -1.1468093395233154, -0.3978053629398346, 0.006104964762926102, -0.6774094700813293, 0.4880466163158417, 0.02674882672727108, 0.36877843737602234, 0.3334504961967468, -0.48450884222984314, -0.20406575500965118, -0.7626670002937317, -0.1489718109369278, 0.9586077928543091, -0.9618746638298035, -0.64095139503479, -0.6507078409194946, -0.8250868916511536, 0.2034495770931244, 0.31421002745628357, 0.5726873278617859, -0.44502338767051697, -1.266113042831421, -0.4265960454940796, -0.32387441396713257, 0.7150523662567139, -0.3122422397136688, 0.2800816595554352, -0.5968430638313293, -1.1060041189193726, 0.6780118942260742, -0.2604841887950897, -2.1234352588653564, 0.2497079223394394, -0.24075758457183838, 0.2546037435531616, -0.23267576098442078, -0.14626742899417877, 0.5174549221992493, 1.2283909320831299, -1.8284311294555664, -1.128906488418579, -1.3914110660552979, -0.8112620711326599, 0.24721528589725494, 0.9283527135848999, -0.9991292357444763, 1.4017298221588135, -1.0681908130645752, -0.20159688591957092, -0.6876874566078186, -0.1520927995443344, -0.8616453409194946, -0.09059832245111465, 0.30441638827323914, -0.19276946783065796, -0.010408395901322365, 1.4395233392715454, -0.06295940279960632, 0.8699932098388672, 0.12507887184619904, 1.546844720840454, -0.8343880772590637, -1.2622953653335571, 0.5015797019004822, 0.7278558015823364, -0.6281693577766418, -0.17175623774528503, 0.22938968241214752, -1.0084724426269531, -1.023316740989685, -0.06307603418827057, 0.4123997986316681, -0.7018508911132812, 0.15136292576789856, 0.6383805871009827, -0.3432161211967468, -0.9243425726890564, 0.4131108224391937, 0.7158148288726807, -0.7516469359397888, -0.023114094510674477, -0.8131119012832642, 0.6479038596153259, -0.8640106916427612, 0.44665566086769104, 0.3479451537132263, -0.566152811050415, -0.05593126267194748, -0.009112096391618252, 0.271140992641449, 0.5533090829849243, -0.6060150861740112, 1.1193474531173706, 0.40841931104660034, -0.3499666452407837, -0.06337545067071915, -0.04084296151995659, -0.13108868896961212, 0.26407766342163086, -0.06405894458293915, -0.34636837244033813, -0.48478105664253235, 0.6865532994270325, 0.6381569504737854, -0.016119226813316345, 0.6481199264526367, 0.8426513671875, -0.002992479130625725, 0.2413203865289688, 0.6978328824043274, -0.3712485134601593, -0.5035758018493652, 1.3676890134811401, 0.47791123390197754, -0.4271862208843231, -0.06352631002664566, -0.3725103437900543, 0.7334587574005127, 0.73249751329422, 0.9450436234474182, 0.5410686731338501, -0.34179598093032837, 0.5990748405456543, 0.3426298499107361, -0.46197763085365295, -0.4869426190853119, -0.33490869402885437, -1.6114329099655151, -0.08575286716222763, -0.4276781678199768, -0.10917369276285172, 0.6577346324920654, -0.9935255646705627, -1.007323980331421, -0.2607851028442383, -0.5252092480659485, -0.5557044744491577, -0.35468122363090515, -0.2405754178762436, -0.04985455423593521, 0.16488046944141388, 0.6536532044410706, -0.3086162209510803, 1.4409513473510742, -0.24576440453529358, -0.1351778656244278, -0.6594486236572266, -0.6635568737983704, -0.15897443890571594, 0.29801949858665466, -0.07878002524375916, -0.4577690064907074, 0.9801174998283386, -1.019837498664856, -0.12532438337802887, 0.08496847003698349, 0.363253653049469, 0.020838463678956032, -0.2807781398296356, -0.4421641230583191, 0.5762681365013123, 0.32660770416259766, 0.8814347386360168, -1.2560899257659912, -0.976944625377655, -1.3274638652801514, 0.968774139881134, 0.12289068102836609, 0.7761774659156799, -0.21824242174625397, 0.6548009514808655, 0.11197713762521744, -0.7541072368621826, -0.941300094127655, -0.3451522886753082, 1.4802417755126953, 0.26106590032577515, -0.21929307281970978, -0.6289983987808228, 0.39484909176826477, -0.04827195405960083, -1.3520079851150513, -0.8090924024581909, 0.6429456472396851, -0.41288650035858154, -0.302012175321579, -0.3514227867126465, -0.8553820848464966, -1.175708532333374, 0.21195687353610992, -0.11367881298065186, 0.1777767837047577, 0.7968912720680237, -0.48466020822525024, -0.3639054000377655, 0.09117212146520615, 0.9482290148735046, 0.25647789239883423, 0.4628205895423889, 1.4875609874725342, 1.1467630863189697, -0.07419446110725403, -0.7004702091217041, -0.31097444891929626, 0.10316009819507599, -1.6439014673233032, 0.16378580033779144, -0.6787332892417908, 0.04039771482348442, -0.1911274492740631], [0.7804491519927979, 1.4993640184402466, -2.7815399169921875, 0.5130330920219421, 0.7252818942070007, 0.39973583817481995, 0.4997656047344208, 0.4846724271774292, 0.47061747312545776, -0.4024360179901123, -0.6904162168502808, -0.06768489629030228, -0.05669927969574928, 0.38387933373451233, 0.8165030479431152, 0.24236980080604553, 0.533458948135376, 0.025916853919625282, 0.2041100412607193, 1.3516114950180054, 0.010491281747817993, -1.2440388202667236, -1.2891980409622192, 0.3636842668056488, -0.3485439419746399, 0.7580931186676025, -1.5906065702438354, 0.3147180378437042, -0.8836227655410767, -0.44623813033103943, 0.7779812812805176, -0.36254575848579407, 0.36467546224594116, 0.13783687353134155, -1.9148014783859253, 0.1925506889820099, 0.43559587001800537, 1.038373351097107, 0.0019528456032276154, 0.4248400032520294, 1.656360149383545, -0.2363114058971405, 0.25802144408226013, -1.057508945465088, 0.6536272764205933, -0.3730382025241852, 0.4526797831058502, -1.3276103734970093, 1.792885661125183, 0.036419883370399475, 0.5328765511512756, -0.2961787283420563, 0.04207136854529381, 0.2971455454826355, 1.7664586305618286, -1.8814677000045776, 0.9386719465255737, 0.18149268627166748, -0.33872100710868835, 0.6987165808677673, 1.5012199878692627, -0.6083580255508423, 1.5159029960632324, 0.8507929444313049, 0.4216301441192627, -1.006400465965271, 0.43831107020378113, 0.5630134344100952, -0.01921987719833851, 0.10149841010570526, 0.5688080191612244, 0.5860490798950195, -1.398497462272644, 0.22966018319129944, -0.8773508071899414, -0.07987136393785477, -0.4479838013648987, 0.557059109210968, 0.25334465503692627, 0.46608635783195496, -0.4899408519268036, 0.6374557614326477, 0.5677117109298706, 0.24523860216140747, -0.5579923391342163, -0.1680741310119629, 0.35545894503593445, -0.5208131074905396, -0.2269878387451172, 1.2114710807800293, 0.7529359459877014, 0.24774514138698578, 0.8332238793373108, 0.7148743867874146, -0.323678582906723, -0.4297720193862915, -0.24069766700267792, -0.8574717044830322, -0.48254990577697754, -0.9390754103660583, -0.36786195635795593, -0.39955568313598633, 1.114651083946228, 1.2183128595352173, 1.3875051736831665, 1.6756556034088135, -0.2626628279685974, -0.914425790309906, -0.3319936990737915, -0.21109150350093842, -0.035000432282686234, 0.23947301506996155, 0.04643239825963974, -1.6896878480911255, -0.6724419593811035, 1.277039647102356, 0.38890546560287476, 0.33270639181137085, -0.18011656403541565, 0.5083497762680054, -0.20567655563354492, -0.10296869277954102, -0.5962477326393127, 0.19489116966724396, 1.5893417596817017, -0.6911081671714783, -0.3821672797203064, 0.32877427339553833, -0.44593092799186707, 0.444685697555542, -0.007447018753737211, -0.07702363282442093, 0.1289222091436386, 1.1912457942962646, -0.039454661309719086, 0.8104674220085144, -0.22720971703529358, -0.00915578193962574, -0.0333695113658905, 0.7385101914405823, 0.6803107857704163, 0.05174577608704567, -0.8125094771385193, -0.5605826377868652, -0.5351144671440125, -0.6554864048957825, 0.5322849750518799, -0.11322342604398727, -0.2883448600769043, -0.24669934809207916, -2.2650721073150635, 0.08023752272129059, -0.43709447979927063, 1.1707801818847656, 0.48160234093666077, -0.49285316467285156, 1.042459487915039, 0.2460900843143463, 0.188133105635643, 0.5402438044548035, 0.5108143091201782, 0.03293817117810249, 0.05614693462848663, 0.6325292587280273, 1.0096160173416138, -0.7758703231811523, -0.0435083769261837, -0.17117178440093994, 0.08363760262727737, 1.4679145812988281, -0.21391215920448303, -0.7784185409545898, -0.5849467515945435, -0.21312366425991058, 0.15465109050273895, -1.3234295845031738, 0.6271774768829346, -0.06264287978410721, -0.7403429746627808, -1.2827597856521606, 0.603950023651123, 0.06311224400997162, 0.31539803743362427, -0.13823582231998444, 0.7530437111854553, -0.5244042277336121, -0.5255847573280334, -0.08639692515134811, -0.6036036014556885, -0.3279981017112732, -0.4354780912399292, -0.06822241097688675, -1.1772842407226562, -0.29857775568962097, -0.38373202085494995, -1.343374252319336, 0.8709056377410889, -0.03156406059861183, -0.5979125499725342, -0.553823709487915, 0.18349705636501312, -0.655674159526825, -1.2069175243377686, -0.6268454790115356, -0.10343532264232635, 0.8821053504943848, -0.6176518797874451, -0.004140467848628759, -0.8628509640693665, 0.3582715690135956, 1.010971188545227, -0.623275876045227, -1.2039412260055542, -0.4991358518600464, 0.328328013420105, -0.809273362159729, -0.04701698198914528, 0.3531024754047394, 0.37854743003845215, -0.825657069683075, 0.2810509502887726, 0.5573227405548096, 1.0140843391418457, -0.6736431121826172, 0.33045291900634766, -0.04320736229419708, -0.30759841203689575, -0.9068339467048645, -0.5015709400177002, 0.043692439794540405, -0.7401553988456726, -0.8902965784072876, 1.0088435411453247, 0.6680893301963806, -1.250104308128357, 0.9754880666732788, -0.13178038597106934, 0.5119459629058838, 0.3648001551628113, 0.8478385210037231, 0.587205171585083, 0.3793754279613495, -0.6083924770355225, -0.18849340081214905, -1.0668044090270996, -0.4445967674255371, -0.2117641419172287, -0.3502297103404999, -0.2341943234205246, 1.349606990814209, 0.6805949211120605, 0.004972465336322784, 0.5968114733695984, -0.09733965992927551, 0.5182725787162781, -0.9899145364761353, -0.19479697942733765, 0.11305508017539978, -0.7528541684150696, 1.9548053741455078, 0.814575731754303, -1.107729196548462, -0.2678685784339905, -0.5665587186813354, 0.18707175552845, -0.14524737000465393, -0.48186033964157104, -1.5084161758422852, 0.7960341572761536, -0.20512118935585022, 0.3854847252368927, -0.007152050733566284, -0.0972248986363411, 1.4172178506851196, 0.41058048605918884, -0.34971269965171814, -0.028246238827705383, 0.6078625321388245, -0.5608712434768677, 0.6037631034851074, -0.7295339703559875, -0.7051951289176941, -1.29706871509552, 0.5326188206672668, 0.5273948907852173, 0.12113888561725616, 0.5668591856956482, 1.9235609769821167, 1.3737585544586182, -0.34852996468544006, 0.031802620738744736, 0.606367826461792, 0.14885829389095306, -0.18155649304389954, 1.0674242973327637, 0.8618462085723877, 0.9614681005477905, -1.087833046913147, -0.4533684551715851, -0.6091161370277405, 0.006011802703142166, 0.9574625492095947, 0.9409908652305603, 0.9670408964157104, -1.1557365655899048, 0.05741763487458229, -0.4661814272403717, 0.20510900020599365, -0.8690831065177917, -0.5088517069816589, -0.4304765462875366, -1.1396490335464478, -0.009150569327175617, -0.7572554349899292, -0.42732295393943787, 0.39071452617645264, 0.08158764988183975, 0.6728207468986511, 0.17308025062084198, -0.5023865699768066, -1.066379427909851, -1.3199251890182495, -0.2619872987270355, -0.9052867889404297, 0.768695592880249, 0.8468752503395081, -2.0857644081115723, -0.06223507970571518, 0.6453489661216736, -0.09102712571620941, -0.3049308657646179, 0.06642406433820724, 0.3726597726345062, -1.2354741096496582, -0.26635342836380005, -0.2615599036216736, 1.1295665502548218, 0.2835887372493744, -0.5266486406326294, -0.5068734884262085, 1.195709228515625, 0.1853492558002472, 0.26637277007102966, -0.21088248491287231, 0.06818632036447525, -0.35727763175964355, -0.46427151560783386, -0.28156062960624695, 0.8741257786750793, 0.27894824743270874, -0.7536954283714294, -0.804539144039154, -0.5402963757514954, -0.35956817865371704, -0.8621656894683838, 0.2792779207229614, -0.001162022352218628, 0.5026108622550964, -0.19192223250865936, 0.42739337682724, 0.9197794795036316, -0.508930504322052, 0.4802476167678833, -0.9925069212913513, 1.0184252262115479, 0.9124727249145508, 1.3553861379623413, 0.03976451978087425, 0.5002774000167847, 0.44018274545669556, -1.1812055110931396, -0.7788297533988953, -0.11117102205753326, 0.6268674731254578, 0.09547226130962372, 0.1691543161869049, 0.03748144954442978, -0.9250985980033875, 0.13147245347499847, 0.0934443473815918, 0.366800457239151, 0.05433548241853714, -0.47007259726524353, 0.5125342607498169, 1.4893018007278442, -0.3082486689090729, -0.6822900772094727, -0.7516720294952393, 0.21496737003326416, 0.94727623462677, -0.4702290892601013, -0.27970951795578003, 0.15457291901111603, -0.08709997683763504, 0.6689409017562866, -0.7540464997291565, -0.8705524206161499, -0.000906599685549736, 0.7290188670158386, 0.732422947883606, -1.4514819383621216, 0.025725385174155235, -0.9805770516395569, 0.07467395067214966, 0.25243622064590454, 0.7329301238059998, 0.5590083599090576, 0.8822834491729736, -0.37758564949035645, -0.12542849779129028, -0.17397253215312958, 1.520941972732544, 0.10589636117219925, -0.06488816440105438, -0.03213489055633545, 1.200114369392395, 0.21548132598400116, -1.2459492683410645, 0.5548421740531921, 0.056170813739299774, -0.9495860934257507, 0.01912437379360199, 0.8383929133415222, -0.27084922790527344, 1.1642383337020874, -0.31825539469718933, -0.36481571197509766, 0.4355544149875641, -0.10131937265396118, -0.46404314041137695, 0.2859092354774475, 0.11816129833459854, -0.815213680267334, 0.5112070441246033, 0.26501503586769104, 0.8192397356033325, 0.30857375264167786, 0.22209203243255615, 0.5188025832176208, 0.4924016296863556, 0.8292043805122375, -0.3280581831932068, 0.6660330295562744, 0.36933720111846924, 1.2165669202804565, 0.1105593740940094, 1.0426987409591675, 0.5723368525505066, -0.11215074360370636, 0.9384033679962158, -1.0397166013717651, 0.4297703802585602, 0.8922231793403625, 0.15523625910282135, 0.8835616111755371, -1.7794898748397827, -0.4167483150959015, 0.9472296237945557, -0.07107453048229218, 0.5891363024711609, 0.6444642543792725, 0.4419748783111572, -0.9115185737609863, 0.6548724174499512, 0.1362062394618988, -0.1485917568206787, 0.42586636543273926, 0.5075146555900574, 1.0279552936553955, 1.0193182229995728, -0.2872450053691864, 0.5326528549194336, -0.595726490020752, -0.8792864680290222, 0.2886865735054016, -0.3631349802017212, 0.5708488821983337, 0.0193688552826643, 0.6150321364402771, 0.7060182094573975, -0.8312461376190186, -0.45952218770980835, 0.580380916595459, -1.7653669118881226, 0.3611844778060913, -0.1689678281545639, -0.6929824948310852, -0.3176656663417816, -0.12761762738227844, -0.15343782305717468, -0.5244365930557251, -0.4309462308883667, -0.7303122282028198, -0.622676432132721, -0.9555485844612122, 0.2389204055070877, 0.1048460528254509, 0.5521206259727478, 0.220870703458786, 0.039607126265764236, 0.23880499601364136, -0.09732262790203094, -0.5228343605995178, 0.15518607199192047, 0.5383622646331787, 0.5999730825424194, -0.6701012253761292, -0.7070885300636292, -1.518597960472107, 0.5356167554855347, 0.7329766154289246, -0.14822690188884735, -0.6016579866409302, 1.3647843599319458, 1.038037657737732, -0.6753061413764954, -0.5471317172050476, 0.6953282356262207, -0.6764400601387024, 0.5664222836494446, 0.3352983593940735, -0.779077410697937, 0.3316355049610138, -0.3957173228263855, -1.2527012825012207, 0.9630682468414307, -0.17072360217571259, -0.6496607065200806, 0.7496086359024048, 0.5785216093063354, 0.6464585065841675, 1.0231959819793701, -0.1939232349395752, -0.17774033546447754, 0.33634868264198303, 0.1435433179140091, -0.5962116122245789, 0.0325302928686142, 0.8635229468345642, 0.10883169621229172, -1.0795572996139526, -0.0959365963935852, -0.43376192450523376, 0.421773761510849, -0.1170801967382431, 0.7087790966033936, -0.33607229590415955, 0.5209730863571167, -0.507453203201294, 0.2873281240463257, 0.5748235583305359, -1.0720993280410767, -0.08814030885696411, 0.23683075606822968, 1.3892481327056885, 0.3431684970855713, 0.29462119936943054, 1.260273814201355, -1.0679845809936523, -0.6126847267150879, -0.24777871370315552, -0.16882559657096863, 0.6611506342887878, -0.002790282480418682, 0.6141736507415771, 0.23515936732292175, -0.20232228934764862, -0.248140349984169, -0.905026376247406, -0.1512448638677597, 0.5633848905563354, 0.01433729287236929, -0.48107820749282837, -0.18757936358451843, -0.18503935635089874, -0.39696311950683594, 0.2628062069416046, 0.192494198679924, -0.3066469132900238, -1.7837145328521729, -0.9900549054145813, -1.0944401025772095, 0.9151203632354736, 0.4082144796848297, 0.28608351945877075, -0.3071956932544708, -1.147316575050354, 0.4447643458843231, -0.5285046100616455, -1.5386883020401, -0.6934115886688232, 0.04801340401172638, 0.3857298493385315, -0.4156370759010315, 0.2793952524662018, -0.42644864320755005, 0.8098893761634827, -1.4405872821807861, -1.0649030208587646, -1.055750846862793, -0.21930409967899323, 0.6960299015045166, 0.6167839169502258, -0.45158758759498596, 1.2102487087249756, -0.929208517074585, 0.20794133841991425, -1.1510225534439087, -0.24762746691703796, -1.3462313413619995, 0.14869116246700287, 0.18828125298023224, 0.07052364200353622, 0.2582380473613739, 1.0336989164352417, 0.9283063411712646, 0.9425365328788757, -0.11113707721233368, 0.8686192631721497, -1.0193570852279663, -1.0987355709075928, 0.12115229666233063, 0.8989242911338806, -0.09456928074359894, -0.20021012425422668, 0.42246192693710327, -0.8728918433189392, -0.5862824320793152, 0.07444583624601364, 0.39939406514167786, -0.8085785508155823, 0.11444120854139328, 0.23890921473503113, 0.45803171396255493, -0.573208212852478, 0.3975617289543152, 0.5659536123275757, -0.6146852374076843, -0.12129075080156326, 0.08410341292619705, 0.8514594435691833, -0.841798722743988, 0.09388475120067596, 0.18153342604637146, -0.15102753043174744, -0.07952272146940231, 0.27058857679367065, -0.36322706937789917, 1.0545871257781982, -0.3450501561164856, 1.240423560142517, 1.4187248945236206, 0.20071303844451904, 0.38141629099845886, 0.3729313910007477, -0.43716707825660706, 0.31773608922958374, -0.6174939274787903, -0.2882860600948334, -0.5708266496658325, 0.8343252539634705, 0.3094291687011719, -0.3927103579044342, 0.5227051377296448, 0.5443354249000549, 0.11373220384120941, -0.2809904217720032, 0.6782062649726868, -0.39286279678344727, -0.0982419028878212, 0.7955510020256042, 0.924804151058197, -0.25910958647727966, -0.10612465441226959, -0.10060819983482361, 0.9960028529167175, -0.1382678747177124, 0.4196803867816925, 0.29694417119026184, 0.07572653144598007, 0.016827676445245743, 0.11798910051584244, -0.6657131314277649, -0.22481071949005127, -0.2855406701564789, -1.2036226987838745, -0.18142876029014587, 0.11641591042280197, -0.36043787002563477, 0.4072035551071167, -1.2312090396881104, -1.5032846927642822, -0.04572957754135132, -0.4530942142009735, 0.085739366710186, -0.12745818495750427, -0.32289209961891174, 0.24179907143115997, -0.46820637583732605, 0.25860121846199036, -0.5537393093109131, 1.0868839025497437, 0.4121726453304291, -0.3708655834197998, -0.9260488152503967, -0.872255802154541, 0.1641317754983902, -0.45647746324539185, -0.3373693525791168, 0.22630926966667175, 0.7600409388542175, -0.37713131308555603, -0.14398019015789032, -0.37959015369415283, 0.7655214071273804, 0.1404748558998108, 0.570789098739624, -0.886520266532898, -0.3540573716163635, 0.6977726221084595, 0.9621367454528809, -0.8783248662948608, -0.6976401209831238, -1.0697181224822998, 0.5109516978263855, -0.3639214336872101, 0.4589037001132965, -1.1188875436782837, 0.5289471745491028, 0.19821956753730774, -0.1958818882703781, 0.13807997107505798, -0.30610671639442444, 0.3634404242038727, -0.16677139699459076, 0.18349330127239227, -0.21310998499393463, 0.18018688261508942, -0.33296340703964233, -0.8484550714492798, -0.5215984582901001, -0.5744267702102661, 0.16174975037574768, 0.7343899011611938, -0.9873168468475342, -0.5447923541069031, -0.9533849358558655, 0.16428333520889282, 0.023301763460040092, 0.03031494840979576, 0.6202591061592102, -0.49297189712524414, -1.3047549724578857, 0.19808296859264374, 0.21019943058490753, 0.7192889451980591, 0.42929837107658386, 1.09677255153656, 1.274924874305725, 0.076046422123909, -0.4581338167190552, -0.48435086011886597, 0.30787336826324463, -1.4747183322906494, -0.31081900000572205, -1.4291796684265137, 0.19420009851455688, -0.5364486575126648], [0.5563545823097229, 1.0185250043869019, -2.6045238971710205, -0.3241741955280304, -0.043367013335227966, 0.10125239193439484, 2.2154877185821533, 0.3710455000400543, 0.3052982687950134, -0.8846278190612793, -0.9314035177230835, 0.06835587322711945, -0.3179006278514862, 0.25348129868507385, 0.18094024062156677, 0.4891911447048187, 0.848115086555481, 0.7572466731071472, 0.123323954641819, 0.7756714224815369, 0.4108387529850006, -0.5489293932914734, -0.0010576173663139343, -0.011391650885343552, 0.19309741258621216, 1.0505800247192383, -0.7041048407554626, 0.16338741779327393, -1.5243948698043823, -0.4360663592815399, 0.9509986042976379, -0.7670623064041138, 0.26023516058921814, 0.03092007152736187, -1.5068366527557373, -0.13519325852394104, 1.2202224731445312, 0.3984842002391815, 0.1617850512266159, 0.5441387295722961, 2.497987747192383, -0.25642770528793335, -0.33480048179626465, -1.315342664718628, -0.017890799790620804, -0.47567498683929443, 0.18672612309455872, -0.35307690501213074, 0.265279620885849, -0.7954450249671936, 1.0331557989120483, -0.22454187273979187, 0.2888244390487671, 1.1128931045532227, 0.9337112903594971, -1.5105546712875366, 0.20318081974983215, -0.07052943855524063, -0.4086686670780182, 0.26866036653518677, 1.6339346170425415, -0.6757072806358337, 0.28787946701049805, 1.4207850694656372, 0.6617875099182129, -1.0563061237335205, 0.8269310593605042, 0.05318661779165268, -0.6960713267326355, 0.20416070520877838, 1.042124629020691, 0.018974818289279938, -1.2958896160125732, 0.3329540193080902, -0.7411412596702576, 0.4107553958892822, -0.7490251660346985, 0.8684492707252502, 0.12189541757106781, 0.9217033386230469, -0.712002158164978, 0.641108512878418, 0.8775807023048401, -0.10327175259590149, -0.12029051035642624, -0.1056600883603096, 0.1839413195848465, -0.44395872950553894, -0.43596842885017395, 1.978299617767334, -0.078424833714962, 0.32530519366264343, 0.9972036480903625, -0.28012511134147644, -0.2444448173046112, -0.6491377353668213, 0.15992730855941772, -0.8104454278945923, -0.5211376547813416, -0.38845589756965637, -0.6493260860443115, -0.827289342880249, 0.9251653552055359, 0.7695363163948059, 0.9147989749908447, 1.1210277080535889, -0.5934008359909058, -0.9362409114837646, -0.8530099391937256, -0.19610154628753662, 0.024992618709802628, 0.9421128034591675, -0.1129232868552208, -1.1225733757019043, 0.3057462275028229, 0.28267496824264526, 0.9335222244262695, 0.060446590185165405, 0.29876869916915894, 0.33322426676750183, -0.398672878742218, -0.4808723032474518, -1.2498760223388672, 0.24989065527915955, 1.0494340658187866, 0.3565986752510071, -0.03753242269158363, 0.5803087949752808, -0.04119957238435745, 0.5937663912773132, 0.14185072481632233, 0.635593056678772, 0.3263462781906128, 1.5546661615371704, -0.5237302184104919, 0.03635891154408455, -1.604655385017395, -0.8308142423629761, 0.3588023781776428, 0.5805760025978088, 1.1395381689071655, -1.173951268196106, -0.48156359791755676, -0.5005701780319214, -0.5385611653327942, -0.07772812992334366, 0.4635877013206482, -0.671658456325531, -0.275393009185791, 0.2717362642288208, -2.3591816425323486, 0.2619616389274597, -0.12030747532844543, 0.7060235738754272, 0.7597419023513794, 0.43726107478141785, 0.3025340139865875, 0.4610312879085541, -0.2423524558544159, 0.3902110159397125, 0.36521145701408386, 0.3642372786998749, -0.3576621115207672, 1.266998052597046, 0.9615639448165894, -0.7280212044715881, -0.26194727420806885, 0.22410833835601807, 0.022732026875019073, 0.6755129098892212, -0.203341543674469, -0.8743111491203308, -0.8136072754859924, 0.05328156799077988, 0.28305718302726746, -0.2572157382965088, 0.7939350008964539, -0.012451587244868279, -1.0678157806396484, -1.3775217533111572, 0.8870140910148621, 0.14388474822044373, 0.5887951254844666, 0.010805631056427956, 0.6577547788619995, -0.669723391532898, -0.38739556074142456, 0.08652110397815704, -0.5859832167625427, -0.366316556930542, -1.1927266120910645, -0.2077862024307251, -1.4165217876434326, 0.251309871673584, -1.2723314762115479, -0.9670588970184326, 0.9788467288017273, -0.23416462540626526, -0.5671489238739014, -0.6299899220466614, 0.07847394794225693, -0.49363943934440613, -1.390488862991333, -0.4364112317562103, -0.9488023519515991, 0.6213385462760925, -1.375640869140625, 0.08684096485376358, -0.7681609392166138, 0.4838603138923645, 1.0636684894561768, 0.07096511125564575, -1.1908622980117798, -0.16804911196231842, -0.035764388740062714, -0.8943926095962524, -0.645222008228302, 0.28253209590911865, 0.4011485278606415, -0.41426509618759155, -0.10561283677816391, 0.4137900173664093, 1.1692607402801514, -0.5088199973106384, 1.0615750551223755, -0.31210315227508545, -0.5284250378608704, -0.13962408900260925, -1.2083625793457031, -0.08473321795463562, -0.6467331051826477, -0.5657016634941101, 0.9822413921356201, 0.8875769972801208, -1.6098181009292603, 0.5603744387626648, -0.3801748752593994, 0.5469712018966675, -0.3433157801628113, 0.09721142053604126, 0.813599705696106, 0.70890212059021, -0.39971405267715454, -0.47657468914985657, -0.4766347408294678, -0.01979251205921173, 0.36221998929977417, 0.3180433213710785, -0.1405610293149948, 1.1890652179718018, 0.9056633114814758, -0.3521883189678192, 0.4668363332748413, 0.8873671293258667, -0.03309698775410652, -1.7328671216964722, 0.10193753987550735, -0.3645413815975189, -0.598522961139679, 1.390297770500183, 0.8055402636528015, -0.803006112575531, -0.2670231759548187, -0.2821471393108368, 0.36672839522361755, -0.613891065120697, 0.3510211706161499, -0.14075852930545807, 0.44146081805229187, 0.08314564824104309, 0.2985460162162781, -0.5045817494392395, 0.8149150013923645, 1.2246038913726807, -0.008258271962404251, -0.4293908178806305, 0.037855733186006546, 0.7308312058448792, 0.11597523838281631, 0.6633745431900024, 0.27240264415740967, -1.6025186777114868, -0.7048773765563965, 0.5465058088302612, 0.12520599365234375, -0.27760401368141174, -0.18425917625427246, 1.2351958751678467, 1.100298285484314, 0.0020854584872722626, 0.49356481432914734, 0.3765234351158142, -0.1506119817495346, 0.3181346654891968, 0.3784539997577667, 0.10974092781543732, 0.37258321046829224, -0.8945459127426147, -1.1565032005310059, -0.7996612787246704, -0.07543062418699265, 0.770980179309845, 0.7356934547424316, 1.2328579425811768, -0.5196154117584229, -0.10036526620388031, -0.4918661117553711, -0.4264395534992218, -0.7765586376190186, -0.24066662788391113, -0.5043031573295593, -1.1449191570281982, 0.016841575503349304, -0.7907488346099854, 0.09329437464475632, 0.6548025012016296, -0.2859545648097992, 1.0503915548324585, 0.27393510937690735, -0.1423344761133194, -0.8093821406364441, -0.4902275502681732, 0.07643983513116837, -0.6744973659515381, 0.5625611543655396, 1.007565975189209, -1.742753028869629, -0.04370748624205589, -0.03409069776535034, 1.3340351581573486, 0.26167869567871094, -0.6643651127815247, 0.25078463554382324, -2.0252881050109863, -0.3480672240257263, 0.1331712156534195, 1.0364857912063599, 0.017068997025489807, -0.6013683676719666, -0.5108920335769653, 0.8323180675506592, 0.984658420085907, -0.2727217376232147, -0.019138697534799576, 0.8623058795928955, -1.0865519046783447, -0.7663213610649109, -0.021887771785259247, -0.07492737472057343, 0.9388487935066223, -0.4850691556930542, -0.7299046516418457, -0.28952550888061523, -0.0789085179567337, -0.4009527564048767, 0.27121037244796753, -0.05381610617041588, 0.4190748333930969, 0.6929165124893188, 0.49524495005607605, 0.8247095942497253, -0.5090559720993042, 0.2947688698768616, -1.568151593208313, 0.004643437452614307, 1.2003246545791626, 1.4541122913360596, 0.26794639229774475, 0.5110939145088196, 0.23553448915481567, -0.5835003852844238, -0.08891480416059494, -0.01606108248233795, 1.004708170890808, -0.6840687394142151, -0.23147542774677277, -0.3114134669303894, -1.0178269147872925, 0.06825242191553116, 0.5449504852294922, 0.45956867933273315, 0.2801889479160309, -0.3281990885734558, 0.21720896661281586, 1.2326853275299072, 0.46832677721977234, -0.23772622644901276, -0.21822261810302734, -0.26645249128341675, 0.9433785676956177, -0.330319881439209, -0.6101104617118835, -0.6540929079055786, 0.038991790264844894, 0.9176401495933533, -0.613520085811615, -0.689174234867096, 0.26140061020851135, 1.1192506551742554, 0.9411325454711914, -1.1314457654953003, 0.22234971821308136, -0.7892212867736816, 0.7478844523429871, 0.6812578439712524, 0.8465197682380676, 0.05128651112318039, 0.4417087137699127, -0.9340377449989319, -0.29393959045410156, -0.47245675325393677, 1.3326728343963623, -0.2532541751861572, -0.05592438578605652, 0.3109597861766815, -0.3935368061065674, 0.8587122559547424, -0.6942702531814575, -0.02970014326274395, 0.06804553419351578, -0.6921297311782837, 0.6228613257408142, -0.21409884095191956, -0.5206689238548279, 1.2824255228042603, -0.1409623622894287, -0.6798171997070312, 0.5363299250602722, 0.3926548659801483, -0.4044282138347626, -0.23794372379779816, 0.6073641777038574, -0.24303191900253296, -0.002093382179737091, 0.08368968963623047, 0.4435010552406311, 0.4255548417568207, 0.3271070122718811, 0.9989193677902222, -0.04837001860141754, 0.4540114998817444, -0.6445994973182678, 0.5384466052055359, 0.6936537027359009, 0.9478353261947632, 0.7240170836448669, 0.8334817290306091, -1.0304539203643799, -0.5132104158401489, 0.7581860423088074, 0.2032962441444397, 0.8968803286552429, 0.5248029828071594, -0.09741020947694778, 1.3379812240600586, -2.0427327156066895, -0.18178720772266388, 0.9065365195274353, 0.4001059830188751, 0.6346969604492188, -0.021389205008745193, 0.37508848309516907, -0.8315675854682922, -0.6710014343261719, -0.9177007675170898, -0.06638205796480179, 1.3159840106964111, 0.23031510412693024, -0.27589595317840576, 0.7857473492622375, -0.9898319840431213, -0.10552311688661575, -0.47160932421684265, -1.0561192035675049, 0.10453647375106812, -0.2852309048175812, 0.09311983734369278, 0.1253967583179474, 0.9100704789161682, 1.3952465057373047, -0.09841510653495789, -2.145071506500244, 0.24146826565265656, -0.8853518962860107, -0.23053480684757233, -0.46810224652290344, -0.2666145861148834, -1.3090450763702393, -0.39026376605033875, 0.5646873116493225, -0.2153858095407486, -0.5074644684791565, -0.63857102394104, -0.42668619751930237, -1.1177126169204712, 0.44342920184135437, 0.333878755569458, 0.5502068400382996, 0.3911621570587158, -0.35349926352500916, 0.07832692563533783, 0.3527337312698364, -0.20782549679279327, 0.28251612186431885, 0.562221109867096, 0.14185550808906555, -0.6730871200561523, -0.6699692606925964, -0.5919297933578491, 1.0195658206939697, 0.6752505302429199, -0.0011444874107837677, -0.2943837642669678, 1.3384584188461304, 1.328107237815857, -0.22096554934978485, -0.6796374320983887, 1.2608593702316284, -0.6161364316940308, 0.7550272941589355, 0.3214032053947449, -0.4675693213939667, 0.521391749382019, 0.320773720741272, -1.4110291004180908, 0.6601623892784119, -0.24765819311141968, -0.47923552989959717, 0.7895123362541199, 0.7701655030250549, 0.5769402384757996, 0.36510002613067627, -0.4003932774066925, -0.797541618347168, 0.3507000803947449, 0.03001321107149124, -0.8082752823829651, 0.5760601162910461, 1.0298134088516235, -0.08399787545204163, -0.5885397791862488, -0.3944242000579834, -0.1734834909439087, 0.4244632422924042, -0.4583781063556671, -0.020731627941131592, 0.5143916010856628, 0.3840141296386719, -0.009176375344395638, -0.3152711093425751, 0.15827316045761108, -0.5794579386711121, 0.18176697194576263, 0.13119275867938995, 0.8919728994369507, 0.6501040458679199, 0.6045586466789246, 1.1952471733093262, -0.4942854046821594, -0.19530175626277924, -0.3088292181491852, 0.15262708067893982, 0.8820196390151978, 0.5219814777374268, 0.3166910409927368, -0.7574130892753601, -0.9731852412223816, -0.5585334897041321, -0.7597745656967163, -0.22418345510959625, 1.1319788694381714, -0.5902698636054993, -0.11448681354522705, -0.3009019196033478, -0.8092359900474548, 0.6421672105789185, 0.15434256196022034, 0.36455437541007996, -1.1705577373504639, -1.1850780248641968, -1.1179438829421997, -0.13264267146587372, 0.9998357892036438, 0.21067437529563904, 0.5965942144393921, -0.032913126051425934, -1.5250056982040405, 0.4820484519004822, -0.03353337198495865, -1.6973371505737305, -0.36939331889152527, -0.2076939344406128, 0.8610602021217346, 0.1813448667526245, 0.202933669090271, 0.05671171844005585, 0.9370880722999573, -0.8039442896842957, -0.7775341272354126, -1.3518234491348267, -0.5961021184921265, 0.5159424543380737, 0.7877386212348938, -0.8066666722297668, 1.4501330852508545, 0.13077382743358612, -0.83302241563797, -0.9148632884025574, -0.560194730758667, -1.5015894174575806, 0.10435011237859726, 0.6156669855117798, 0.6915990114212036, 0.7621490359306335, 1.3865827322006226, 0.387158066034317, -0.03364628180861473, 0.7812071442604065, 0.7277918457984924, -1.3395483493804932, -1.3244208097457886, -0.5025590658187866, 0.7962002158164978, -0.7579816579818726, -0.5986682772636414, 0.06267919391393661, -0.8434484601020813, -0.9421079754829407, -0.007166162133216858, 0.9676414132118225, -0.8820327520370483, 1.0219799280166626, 0.6458173394203186, -0.3590697646141052, -0.5712999701499939, 0.2990260720252991, 0.48191118240356445, -0.6603910326957703, -0.3807474672794342, -0.3463584780693054, 0.04970730468630791, -0.5033266544342041, -0.1555631160736084, -0.2491394430398941, -0.13816951215267181, -0.11888595670461655, 0.696243941783905, 0.053238581866025925, 0.5892220735549927, -0.4059504270553589, 1.4308706521987915, 0.786226749420166, -0.2513035833835602, 0.2487344741821289, 0.763840913772583, 0.03725520893931389, -0.3949028253555298, -0.7392804026603699, -0.313912570476532, -0.1987423598766327, 0.4661896526813507, 0.14374597370624542, -0.1491059958934784, 0.128078892827034, 0.5720823407173157, 0.30747947096824646, 0.22209206223487854, 0.36841830611228943, -0.48905086517333984, -1.0333632230758667, 0.8446317911148071, 1.0722812414169312, 0.09912010282278061, -0.06631772220134735, 0.2071993052959442, 1.2458921670913696, -0.21708574891090393, 0.3269791007041931, 0.009933538734912872, -0.5265647172927856, 0.5172692537307739, 0.01169450581073761, -0.6673404574394226, 0.2226385623216629, 0.13370381295681, -1.7500983476638794, 0.35570254921913147, -0.5594340562820435, -0.7480477094650269, 0.7123957872390747, -0.36431413888931274, -0.03520897775888443, -0.30337387323379517, -0.4919948875904083, 0.532795250415802, 0.050661034882068634, -0.05694691836833954, -0.38145241141319275, 0.02802664041519165, 0.7973033785820007, -0.21530187129974365, 1.3784434795379639, -0.37615835666656494, -0.16474373638629913, -1.1115391254425049, -0.564420223236084, -0.656006932258606, -0.0631248727440834, 0.011757750995457172, -0.3489477336406708, 0.3700697720050812, -0.2723381519317627, -0.16362610459327698, -0.12815438210964203, 0.0204862579703331, 0.2521478533744812, 0.07392235100269318, -0.5878338813781738, 0.0661739930510521, 0.08643393218517303, 0.36162206530570984, -0.8756633996963501, -0.6508335471153259, -0.661605715751648, 0.4086953401565552, 0.013430126011371613, 1.2988859415054321, -0.5039737820625305, 1.3068701028823853, 0.6011293530464172, 0.0661325603723526, -0.6294130086898804, -0.6699646711349487, 1.0820232629776, -0.025587698444724083, 0.100898377597332, -0.6380294561386108, 0.3512006402015686, -0.1885257065296173, -1.6753220558166504, -0.5602994561195374, 0.40168386697769165, -0.8120787143707275, 0.6304229497909546, -0.9856684803962708, -0.33216363191604614, -0.5931708216667175, -0.6422430276870728, -0.05189668759703636, 0.015431905165314674, 0.5614291429519653, -0.9631368517875671, -1.0831798315048218, -0.027820833027362823, 0.44951868057250977, 0.6193544268608093, 0.31339436769485474, 1.29594886302948, 1.8870925903320312, 0.024128898978233337, -0.5802397131919861, -0.3135914206504822, 0.4901807904243469, -1.2762223482131958, -0.31509050726890564, -0.5378425717353821, 0.6572827100753784, 0.12249402701854706], [0.7426621913909912, 1.8914809226989746, -2.5365099906921387, -0.38954275846481323, -0.11787720024585724, 0.37433257699012756, 1.6079853773117065, 0.39648133516311646, 0.7670449018478394, -0.4293704330921173, -1.2823631763458252, 0.03673223406076431, 0.5136008262634277, 0.5724231004714966, 0.5608686208724976, 0.37959128618240356, 0.6154017448425293, 0.2713485658168793, -0.1559363156557083, 1.2681336402893066, 0.023012980818748474, -1.4905474185943604, -0.7607347369194031, 0.09278922528028488, 0.06420206278562546, -0.2774762809276581, -1.6788541078567505, 0.17471730709075928, -0.9905088543891907, -0.7155365943908691, 0.4349295198917389, -0.3854585886001587, 0.22754894196987152, 0.3086501657962799, -1.5570588111877441, -0.03237235173583031, 1.4829943180084229, 0.758175790309906, 0.3829355239868164, 0.9075961112976074, 1.8310068845748901, 0.12193727493286133, 0.9817250370979309, -1.1747289896011353, 0.4375925362110138, -0.20008689165115356, 0.6148416996002197, -1.26522958278656, 0.736068606376648, -0.0666150227189064, 1.1446043252944946, 0.44478872418403625, 0.19527462124824524, 0.6861889958381653, 0.587510883808136, -1.3533051013946533, 0.5124088525772095, -0.41959482431411743, -0.03381630405783653, 0.4672900438308716, 1.0086238384246826, 0.027238158509135246, 1.0341668128967285, 1.2364115715026855, 0.4906088411808014, -0.6469731330871582, 0.5097150206565857, 0.5739098787307739, -0.3601464331150055, -0.286307156085968, 0.6233261823654175, 0.7168235182762146, -1.52881920337677, 0.6163424253463745, -0.9703008532524109, 0.9751020669937134, -0.08223257213830948, 0.8136479258537292, -0.22372008860111237, 1.1758424043655396, -0.5582947134971619, -0.03787217289209366, 0.33001378178596497, 0.041187990456819534, 0.13526245951652527, 0.010218899697065353, 0.6891103982925415, -0.6184582710266113, -0.2316364049911499, 0.5728007555007935, -0.20434118807315826, 0.11365552246570587, 0.3718391954898834, 0.6182823181152344, 0.2144547700881958, -0.4660107493400574, -0.11853300034999847, -0.3042846918106079, -0.6413857340812683, -0.48398464918136597, -0.7914590239524841, -1.127524495124817, 0.443203866481781, 0.21021977066993713, 1.119154453277588, 1.8448281288146973, 0.02905469574034214, -1.1565146446228027, -0.7549652457237244, 0.24850918352603912, -0.4052383005619049, -0.22324268519878387, -0.12788163125514984, -1.3535462617874146, -0.5624315142631531, 1.0473114252090454, 0.8437526226043701, -0.030934929847717285, 0.6343005895614624, 0.6088013648986816, -0.7658578157424927, -0.370257169008255, -0.4321896731853485, 0.48945340514183044, 0.6692729592323303, 0.04178086668252945, -0.34542033076286316, 0.03167467191815376, -0.3800046741962433, 0.4089430272579193, 0.5257879495620728, 0.4911114573478699, 0.4770835041999817, 1.4629703760147095, 0.06439314782619476, 0.8521488904953003, -0.3840138018131256, -0.5937854647636414, -0.02423902414739132, 0.6906692385673523, 0.5578139424324036, -0.6387855410575867, -0.7873251438140869, -0.9194861650466919, -0.42655301094055176, -0.5406437516212463, 0.8477149605751038, -0.08496120572090149, -0.7304673790931702, -0.18786554038524628, -2.0208053588867188, 0.29879671335220337, -0.2560006380081177, 0.4895535111427307, 0.7818662524223328, -0.5083448886871338, 0.6959275007247925, 0.25017282366752625, -0.08473722636699677, 0.4034765660762787, 0.5575020909309387, 0.18258343636989594, -0.15651695430278778, 1.0399235486984253, 0.4107806980609894, -0.7644132971763611, -0.003264008089900017, 0.7628815174102783, -0.2883969247341156, 0.6455343961715698, -0.2682296335697174, -0.021054314449429512, -1.0163627862930298, -0.036894820630550385, -0.0005550198256969452, -1.0578892230987549, 0.9154685139656067, -0.23311083018779755, -0.948264479637146, -1.068321704864502, 1.2101643085479736, -0.37446263432502747, 0.3751493990421295, 0.07793240249156952, 0.7728009223937988, -0.7617766261100769, -0.4701690077781677, 0.36637526750564575, -0.9463021159172058, -0.1559993177652359, -0.5527781844139099, 0.06587251275777817, -1.2615764141082764, 0.1738242655992508, -0.8466582894325256, -1.0135496854782104, 0.582835853099823, -0.1249990463256836, -1.5128544569015503, -0.5306233167648315, 0.07811810821294785, -0.6981246471405029, -1.9111645221710205, -0.11651403456926346, -0.4312175512313843, 1.217215895652771, -1.2110077142715454, 0.33495646715164185, -1.394059181213379, 0.5617453455924988, 0.7058061957359314, 0.19017598032951355, -0.8844441175460815, -0.2539620101451874, 0.01994590274989605, -1.1077775955200195, -0.11519873887300491, 0.10318316519260406, 0.5311947464942932, -0.8085933923721313, 0.07131414115428925, 0.8013538122177124, 1.162915587425232, -0.40536874532699585, 0.3621627688407898, 0.11820965260267258, -0.4103940427303314, -0.6278524994850159, 0.0036230646073818207, 0.8443781733512878, -0.5302100777626038, -0.7362629175186157, 0.9708768129348755, 0.7248801589012146, -1.5091471672058105, 1.0020018815994263, 0.07613779604434967, 0.19181260466575623, 0.1215086430311203, 0.7653672695159912, 0.8237576484680176, 0.3181489109992981, -0.8467357754707336, -0.3956204354763031, -0.31818652153015137, 0.3115374743938446, 0.7945265173912048, -0.13480480015277863, 0.3322790563106537, 1.5770193338394165, 0.46298232674598694, 0.09252957999706268, 0.3858807682991028, -0.3145306706428528, -0.2154671847820282, -0.6710241436958313, -0.5001094341278076, -0.08996957540512085, -0.9276750683784485, 1.646165370941162, 0.7183024883270264, -0.9734383821487427, -0.6575503945350647, -0.26547470688819885, 0.4138905107975006, -0.3551926016807556, -0.006901897490024567, -0.6831076741218567, 0.6201426982879639, -0.10431300848722458, -0.2046469748020172, -0.41373610496520996, 0.08576004952192307, 1.4166194200515747, 0.07592888176441193, -0.5894164443016052, -0.24212148785591125, 0.3319970965385437, 0.02339758723974228, 0.9860955476760864, -0.23827791213989258, -1.297768235206604, -1.3488831520080566, -0.26155075430870056, 0.6694777011871338, 0.4683384895324707, 0.45528164505958557, 1.0473915338516235, 0.6167755126953125, -0.16704033315181732, -0.04727108031511307, 0.8099157810211182, 0.2667861878871918, 0.09772675484418869, 0.1548633575439453, 0.08059976994991302, 0.9413832426071167, -1.0217725038528442, -0.5750747919082642, 0.12443225085735321, 0.29221972823143005, 1.0825971364974976, 0.8324282765388489, 1.4104490280151367, -0.3975907266139984, 0.09504058957099915, -0.25103405117988586, -0.03955047205090523, -0.8689780235290527, -0.5796622633934021, -0.7527840733528137, -1.1223294734954834, -0.17929382622241974, -0.3218303322792053, -0.05309247970581055, 0.6684219837188721, 0.10370809584856033, 0.5550469756126404, 0.8393025994300842, -0.5206330418586731, -0.31842178106307983, -0.1181398257613182, -0.07138416171073914, -0.6433488130569458, 0.21419133245944977, 0.4440516233444214, -2.018145799636841, -0.391362726688385, 0.2335517406463623, 0.29341426491737366, 0.4472031593322754, 0.404941588640213, 0.602088987827301, -0.8365084528923035, -0.7105346322059631, -0.21539053320884705, 1.243100643157959, 0.035813990980386734, -0.7485056519508362, -0.6699923872947693, 0.6444745659828186, 0.8511691689491272, -0.29721251130104065, -0.30211350321769714, 0.18373823165893555, -0.5094537138938904, -0.08202656358480453, -0.42154017090797424, 0.39792248606681824, 0.2811180651187897, -1.0506929159164429, -0.9762841463088989, -0.030902110040187836, -0.2158132791519165, -0.4580744802951813, 0.6407275795936584, -0.1979432851076126, 1.1556750535964966, -0.12439213693141937, 0.8852155208587646, 0.8213974833488464, -0.8895537257194519, 0.15682712197303772, -1.4342315196990967, 0.9014881253242493, 0.8667742013931274, 1.6652439832687378, 0.4152231812477112, 0.5285411477088928, 0.2191353142261505, -0.9322642087936401, -0.07551314681768417, 0.16060060262680054, 1.1842542886734009, -0.34425103664398193, -0.10172867029905319, -0.09026192873716354, -1.0445821285247803, -0.06902729719877243, -0.35250863432884216, 0.20307119190692902, 0.6024765372276306, -0.8036118745803833, -0.025487368926405907, 1.3778307437896729, -0.04348563030362129, -1.0099248886108398, -0.9154548048973083, 0.21817219257354736, 0.8630653023719788, -0.47714370489120483, 0.16345587372779846, -0.20163112878799438, -0.1613961160182953, 0.8064382076263428, -0.8999547958374023, -0.3561753034591675, 0.7654275894165039, 0.585918128490448, -0.02635716274380684, -1.3217923641204834, 0.0016662066336721182, -1.1968865394592285, 0.297290176153183, 1.6379554271697998, 0.5157273411750793, 0.5278002023696899, 0.44984170794487, 0.10682138800621033, -0.5339928269386292, -0.683303952217102, 1.7794878482818604, -0.494067907333374, 0.04296426847577095, 0.22099412977695465, 0.11106119304895401, 1.2522690296173096, -0.35168835520744324, 0.060084469616413116, -0.03443748876452446, -0.5738322734832764, 0.17712996900081635, 0.6720869541168213, -0.5351558923721313, 2.2034189701080322, -0.24835553765296936, -0.5234975814819336, 0.8420584797859192, 0.20299199223518372, -0.6706128120422363, -0.18191102147102356, 0.057962529361248016, -0.87089604139328, -0.8706263899803162, 0.07102691382169724, 0.8855519890785217, -0.09633719176054001, 0.4494352340698242, 0.5459164977073669, 0.2094665765762329, 0.4564020037651062, 0.26634350419044495, 1.0305023193359375, 0.35444769263267517, 1.1604732275009155, 0.13996534049510956, 0.9109705686569214, -0.255899578332901, -0.2691424489021301, 0.8717437982559204, -0.8692522048950195, 0.37365251779556274, 0.42949387431144714, 0.6111812591552734, 1.1805076599121094, -1.8945732116699219, -0.7230681777000427, 0.8663995862007141, 0.1323339194059372, 0.7130119800567627, 0.7752912640571594, 0.45291826128959656, -1.0359857082366943, 0.33116084337234497, 0.3409108519554138, -0.5464593172073364, 0.5907314419746399, 0.23460762202739716, 0.19095739722251892, 0.6878775954246521, -0.25779086351394653, -0.0052263811230659485, -0.5387653112411499, -0.9583842754364014, 0.348987340927124, -1.08424973487854, 0.6461759209632874, 0.2639286518096924, 0.8482124209403992, 0.9527291655540466, -0.7035871148109436, -1.0900379419326782, 0.7185093760490417, -1.2451943159103394, 0.14131566882133484, -0.1132054328918457, -1.000840425491333, -1.1616970300674438, -0.5496392846107483, 0.11801449209451675, -0.3846985995769501, -0.688927948474884, -0.41894569993019104, -0.33897513151168823, -1.4587090015411377, 0.5638805031776428, 0.3876006007194519, 1.0385355949401855, 0.6314546465873718, 0.2678001821041107, 0.4121120870113373, 0.3318793475627899, -0.9420560002326965, 0.033829573541879654, 0.5871853232383728, -0.6413783431053162, -0.8089927434921265, -0.7477480173110962, -1.1056158542633057, 1.158577561378479, 0.7926860451698303, 0.140703484416008, 0.24851912260055542, 0.7403908371925354, 1.2625027894973755, -0.6499179005622864, -1.2504298686981201, 0.219476118683815, -0.7230747938156128, 0.3951532542705536, 0.9034378528594971, -0.6734879016876221, -0.4354836642742157, -0.01053912565112114, -1.6717432737350464, 1.2737655639648438, 0.0035646967589855194, -0.428943932056427, 1.1421434879302979, 0.6265786290168762, 0.8055053949356079, 1.021893858909607, -0.31872808933258057, -0.06361530721187592, 0.42124930024147034, 0.36129361391067505, -0.7443712949752808, -0.006346813403069973, 0.579483687877655, -0.2127065658569336, -0.22176001965999603, 0.22243037819862366, -0.16037385165691376, -0.021386900916695595, -0.11964632570743561, 0.6310104131698608, -0.24961189925670624, 0.7298905849456787, -0.8609134554862976, -0.055646926164627075, 0.36722439527511597, -0.9945700168609619, -0.09782018512487411, 0.10002044588327408, 0.95091712474823, 0.10153000801801682, -0.6143200397491455, 0.6192132830619812, -0.33360499143600464, -0.041817113757133484, -0.26515448093414307, -0.3142298758029938, 1.231799840927124, 0.18901565670967102, 0.2334790974855423, 0.8399859666824341, 0.16498993337154388, -0.13014709949493408, -0.564433217048645, 0.5371295809745789, 0.5466748476028442, -0.4391922056674957, -0.3238951861858368, 0.11599104106426239, -0.49164918065071106, -0.03796229138970375, 0.4110485315322876, -0.0969240665435791, -0.9416543245315552, -1.4286266565322876, -1.1592968702316284, -0.80198073387146, 0.43545523285865784, -0.10103879123926163, -0.13502922654151917, 0.04215552285313606, -1.3961645364761353, -0.28414642810821533, -0.10832996666431427, -1.7002443075180054, -0.5060667395591736, -0.4010755121707916, 0.5677940845489502, -0.11773791164159775, 0.2574481964111328, -0.43533140420913696, 0.5416271686553955, -1.2379546165466309, -0.46917814016342163, -1.4744679927825928, -0.7648698091506958, 1.0963711738586426, 0.6171716451644897, -0.624706506729126, 1.0288947820663452, -0.1266319751739502, -0.3026670515537262, -0.7982956767082214, 0.1704038828611374, -0.631291389465332, -0.13332629203796387, 0.06471370905637741, 0.03104495070874691, 0.36376798152923584, 1.4468649625778198, 0.7175036072731018, 1.1109675168991089, 0.5804752707481384, 0.917117178440094, -1.108731985092163, -1.2639719247817993, 0.24788494408130646, 1.0013469457626343, -0.6661067008972168, -0.12633116543293, 0.18509076535701752, -1.2444514036178589, -0.643892228603363, 0.5102853775024414, 0.44597306847572327, -0.8258137702941895, -0.30932316184043884, -0.6752395033836365, 0.4014073610305786, -0.830277681350708, -0.017739996314048767, 0.5771094560623169, -0.39015981554985046, -0.11481662839651108, 0.04076842591166496, -0.2806129455566406, -1.1488033533096313, -0.0020091403275728226, 0.058577731251716614, 0.3577885329723358, -0.2750532329082489, 0.288837194442749, -0.19514377415180206, 0.09266788512468338, -0.8664972186088562, 1.4037389755249023, 1.227960467338562, -0.24146123230457306, 0.07560897618532181, 0.024943772703409195, 0.02951984666287899, 0.31270071864128113, -0.6845120787620544, 0.07252005487680435, -0.839527428150177, 0.5666562914848328, 0.37649813294410706, 0.05559205636382103, -0.06779307872056961, 0.7255322337150574, 0.0016809217631816864, -0.15061886608600616, 0.5739717483520508, -0.3418876528739929, -0.5061389803886414, 1.2452515363693237, 1.4159787893295288, -0.4085818827152252, 0.31579598784446716, 0.5006366968154907, 0.7646175026893616, 0.08529200404882431, 0.4753638505935669, -0.07361603528261185, -0.6385765075683594, 0.705074667930603, 0.36969220638275146, -0.7812910079956055, -0.39165621995925903, -0.5628355741500854, -1.4056123495101929, -0.02361823432147503, -0.021407289430499077, -0.38296815752983093, 0.48915910720825195, -0.6571632623672485, -1.0166771411895752, -0.03123866394162178, -0.16429658234119415, 0.4094811677932739, -0.5518385171890259, -0.39713987708091736, -0.5090345740318298, 0.3881390690803528, 0.990748405456543, -0.3747776746749878, 1.0567737817764282, -0.255143940448761, -0.9625757932662964, -1.3702775239944458, -0.42257583141326904, 0.016459228470921516, 0.023390674963593483, -0.5222495794296265, 0.13330085575580597, 0.8376659154891968, -0.7756640911102295, 0.2856749892234802, 0.1025943011045456, -0.07072553783655167, -0.07063440978527069, 0.11742280423641205, -0.859031617641449, -0.32972630858421326, 0.7606738209724426, 0.5950739979743958, -0.3543713390827179, -0.6732438802719116, -0.7341152429580688, 0.39485713839530945, 0.08700287342071533, 0.3074365258216858, -0.6726101040840149, 0.6502888202667236, 0.7508611083030701, -0.1437128484249115, -0.21037878096103668, -0.24289485812187195, 0.8322339057922363, 0.19633951783180237, -0.15874312818050385, -1.0846853256225586, -0.5480676889419556, 0.09796393662691116, -1.1559289693832397, -0.38465848565101624, -0.34421440958976746, -0.11322121322154999, -0.024430308490991592, -0.34948596358299255, -0.8654866218566895, -0.8451817035675049, -0.3288635313510895, 0.009037647396326065, 0.531588613986969, 0.5399860739707947, -0.43862107396125793, -0.8573607802391052, 0.3153790831565857, 0.6082788705825806, 0.43047288060188293, 0.4719198942184448, 1.8499994277954102, 1.9895591735839844, 0.43453314900398254, -0.2905447781085968, -0.1613750010728836, 0.30873823165893555, -1.3748149871826172, -0.07931849360466003, -1.7173752784729004, 0.2637193202972412, -0.5756362080574036], [0.2986343502998352, 2.066756248474121, -2.3526291847229004, 0.7008398175239563, 0.10308200120925903, 0.6880887746810913, 0.4516335427761078, 0.1752861738204956, -0.05065976083278656, -0.2811453342437744, -1.461158275604248, 0.8556385040283203, 0.37419503927230835, 0.9773374199867249, 0.6376152038574219, 0.6365393400192261, 1.1158607006072998, -0.7711029052734375, -0.7601311206817627, 1.2211718559265137, 0.2333337664604187, -1.2712657451629639, -0.6647083163261414, 0.02876378782093525, 0.030947543680667877, -0.06407251954078674, -1.4497243165969849, -0.25052234530448914, -0.8673213720321655, -0.8565000295639038, 0.7799817323684692, 0.37547457218170166, 0.7595866322517395, -0.009636327624320984, -1.9376788139343262, -0.36191678047180176, 1.2495479583740234, 0.36650246381759644, -0.21237915754318237, 0.3466281294822693, 1.6727514266967773, -0.6515050530433655, -0.2638325095176697, -1.8844407796859741, 0.8840141296386719, -0.28400129079818726, 0.5677236318588257, -0.2578994631767273, 0.8676130175590515, -0.7979738712310791, 0.40640783309936523, 0.6410177946090698, -0.10611585527658463, 0.7494263052940369, 0.9766309261322021, -1.0097016096115112, 0.28486204147338867, -0.18467363715171814, 0.12179546058177948, 0.5793074369430542, 1.7679779529571533, -0.6643493175506592, 1.331434726715088, 0.8475445508956909, 0.41499829292297363, -0.49028053879737854, -0.08036468178033829, 0.8278717994689941, -0.745996356010437, -0.5546573400497437, 0.7355060577392578, 0.8414849638938904, -1.2165765762329102, 0.46365299820899963, -0.7293186783790588, -0.009114688262343407, 0.5064588785171509, 0.5328437089920044, -0.016923721879720688, 0.8104262351989746, -0.34739699959754944, 0.06444322317838669, 0.3947758674621582, 0.07081922143697739, -0.05160582810640335, 0.32799243927001953, 0.539874255657196, -0.6148797869682312, -0.5295628309249878, 0.8038623332977295, -0.11098150908946991, 0.17926497757434845, 0.8275671005249023, 0.05939452350139618, 0.34288787841796875, -0.5535891652107239, 0.020430676639080048, -1.1552189588546753, -0.48533201217651367, -0.6177855730056763, 0.1213831752538681, -1.044663667678833, 0.9285588264465332, 0.6726122498512268, 0.6658564805984497, 1.286712884902954, -0.4728028178215027, -1.3262064456939697, -0.2401425838470459, -0.03461582213640213, 0.1813790202140808, 0.27065014839172363, -0.6627562046051025, -1.4351234436035156, -0.343667209148407, 1.0175435543060303, 1.1023759841918945, -0.3334500789642334, 0.2622821033000946, 0.563807487487793, -0.6628482341766357, -0.8308886885643005, -0.7186222076416016, -0.12701673805713654, 1.3293688297271729, -0.30594050884246826, -0.41081753373146057, -0.33920836448669434, -0.5456641316413879, 0.045783981680870056, 0.9314935207366943, 0.9331640005111694, -0.3357737064361572, 1.2345008850097656, -0.6630154848098755, 1.2183220386505127, -0.2101200819015503, -0.804133415222168, -0.0032734721899032593, 0.5682823657989502, 0.5497622489929199, -0.41403335332870483, -0.38223642110824585, -0.3155679702758789, -0.7105711102485657, -0.7212731838226318, 1.4741976261138916, 0.42376309633255005, -0.35500603914260864, 0.2177467793226242, -1.5211111307144165, 0.1870170384645462, 0.21406419575214386, 0.7794935703277588, 0.6865648031234741, -0.11760114133358002, 0.438842236995697, 0.7978516221046448, 0.04999765008687973, 0.3541603684425354, 0.7434877157211304, -0.6108831167221069, -0.33493131399154663, 0.5840722322463989, 0.6730467081069946, -0.5816930532455444, 0.44495081901550293, 0.755415141582489, 0.019553102552890778, 0.6771352291107178, -0.12250837683677673, -0.11210329830646515, -0.9697027206420898, 0.26259660720825195, -0.011573749594390392, -0.6689451336860657, 1.3904565572738647, -0.08916784077882767, -0.8674347400665283, -0.6949295997619629, 0.8019965887069702, 0.23316839337348938, 0.571476936340332, 0.10744008421897888, 0.9339172840118408, -0.6986595392227173, -0.39309215545654297, -0.17511332035064697, -0.8811915516853333, -0.7320661544799805, -0.5370424389839172, -0.6360363960266113, -0.956534743309021, 0.6113482117652893, -0.737326443195343, -1.4710592031478882, 0.6915311217308044, -0.24901846051216125, -1.080601692199707, -0.4304608404636383, 0.3208046853542328, -0.44762304425239563, -1.1661794185638428, -0.5617193579673767, -0.23320382833480835, 0.6859003305435181, -0.306474506855011, 0.6741867065429688, -1.4425113201141357, 0.14810997247695923, 0.8506097793579102, -0.5064035654067993, -1.0957411527633667, -0.4469481110572815, 0.4218914210796356, -0.8713552355766296, 0.28659698367118835, -0.0763947069644928, -0.026762716472148895, -0.2695428431034088, -0.28934845328330994, 0.47793048620224, 1.113288402557373, -0.2703218460083008, 0.8149286508560181, -0.3691801428794861, -1.3530477285385132, -0.9561103582382202, -0.3206242024898529, 0.051496271044015884, -0.34170177578926086, -1.0324764251708984, 1.008725881576538, 1.1230437755584717, -1.0542986392974854, 0.9848587512969971, -0.3006601929664612, 0.7502380609512329, -0.11853654682636261, 0.5324366092681885, 0.6911813020706177, 0.9004125595092773, -1.4665369987487793, -0.08284902572631836, -0.48288559913635254, 0.004337683320045471, 0.5245029926300049, -0.4472711682319641, 0.16425158083438873, 1.4776721000671387, 0.6264090538024902, -0.6778326630592346, 0.7964398860931396, 0.27257561683654785, -0.33467942476272583, -1.0455448627471924, -0.41608381271362305, -0.03749100863933563, -0.8829065561294556, 1.6315953731536865, 0.37010952830314636, -1.3310234546661377, 0.2113480269908905, -0.5804060697555542, -0.014994633384048939, -0.9415868520736694, 0.27746227383613586, -1.1246113777160645, 0.9314127564430237, -0.5209536552429199, 0.13476556539535522, 0.04915935918688774, -0.009003564715385437, 1.5489574670791626, -0.008957482874393463, -1.00662100315094, -0.15445226430892944, 0.3959518074989319, 0.05734757333993912, 1.141076683998108, -0.6821601390838623, -1.0459543466567993, -1.0005615949630737, 0.0920676589012146, 0.9302129745483398, 0.13713939487934113, 0.2374878078699112, 1.227334976196289, 0.5885317921638489, -0.06537379324436188, 0.3891906142234802, 0.266364187002182, 0.6442805528640747, 0.47254517674446106, 0.4593244194984436, 0.19454380869865417, 0.8252713680267334, -0.5705347061157227, -0.4328870475292206, -0.17889626324176788, 0.5555417537689209, 0.539993941783905, 0.7493404150009155, 1.501050353050232, -0.5861349701881409, 0.48071610927581787, -0.5335170030593872, 0.36465996503829956, -1.0951027870178223, -0.39045336842536926, -0.819865345954895, -1.0903440713882446, -0.029203355312347412, -0.6457041501998901, 0.11677467823028564, 0.04579175263643265, 0.3440282344818115, 0.7444592714309692, 0.6113178730010986, 0.02959810197353363, -1.5669987201690674, -0.7907123565673828, -0.3909953236579895, -1.0536324977874756, -0.015101060271263123, 0.8606337308883667, -2.0636210441589355, -0.16097673773765564, -0.45228829979896545, -0.19407686591148376, -0.15084214508533478, -0.03454184532165527, 0.4909672141075134, -0.8459309339523315, -0.2335100769996643, -0.16140522062778473, 1.8019299507141113, 0.36342787742614746, -0.10652948915958405, -1.0692658424377441, 0.9058778285980225, 0.9358571171760559, -0.46480393409729004, -0.06432456523180008, 0.8033666610717773, -0.6638094186782837, 0.3299272358417511, -0.25872156023979187, 0.5557026863098145, 0.18638929724693298, -1.1452982425689697, -1.2667605876922607, -0.33582422137260437, -0.4379707872867584, -0.5695757269859314, 0.12932607531547546, -0.040550291538238525, 0.666019082069397, 0.16549131274223328, -0.0020484942942857742, 1.2766062021255493, -0.5941215753555298, 0.3592129349708557, -0.9410496950149536, 0.3166041374206543, 0.46789082884788513, 1.4718668460845947, 0.7065906524658203, 0.623114824295044, 0.27480313181877136, -0.38464635610580444, -0.6602068543434143, 0.07164395600557327, 1.1807974576950073, 0.1472839117050171, -0.32385241985321045, -0.09266488254070282, -1.090692400932312, -0.09151658415794373, -0.10587239265441895, -0.032719969749450684, 1.1431689262390137, -0.4385233223438263, 0.023534124717116356, 1.2632664442062378, 0.10668112337589264, -0.5260360240936279, -0.427763432264328, -0.19249692559242249, 0.659509539604187, -1.343130350112915, 0.21329864859580994, -0.16238394379615784, -0.5696448087692261, 0.5819492340087891, -0.65444016456604, -0.6866687536239624, 0.3463311195373535, 0.8428370952606201, 0.3686752915382385, -1.2653083801269531, -0.05563570559024811, -1.3365180492401123, 0.35142192244529724, 0.9381061792373657, 0.45739394426345825, 0.19019415974617004, 0.4932398200035095, 0.05298512428998947, -0.12426663935184479, 0.1702090948820114, 1.8110339641571045, -0.689190149307251, 0.42807891964912415, -0.0593133270740509, -0.3612323999404907, -0.0449000708758831, -0.5423694252967834, -0.07674424350261688, 0.2893650531768799, -0.5072656869888306, -0.13082875311374664, 0.6851657629013062, -0.4765673577785492, 1.3708086013793945, -0.08601599931716919, -0.42825761437416077, -0.09634216129779816, -0.06376613676548004, -0.2446966916322708, -0.3184114694595337, 0.6838462352752686, -0.5782807469367981, -0.003461550921201706, -0.03760761767625809, 1.5586678981781006, 0.00982677936553955, -0.02721598371863365, 0.27603664994239807, 0.6215533018112183, 0.5244821310043335, 0.18125008046627045, 0.885919988155365, 0.4555530548095703, 1.0250877141952515, 0.09981420636177063, 0.9713215827941895, -0.1398458182811737, -0.22170737385749817, 0.848175048828125, -0.7592746615409851, 0.8718730211257935, 0.25651028752326965, 0.44390347599983215, 1.1885939836502075, -1.8028837442398071, 0.10634933412075043, 0.6797796487808228, -0.027923710644245148, 0.8221563100814819, 0.8856639862060547, 0.42818185687065125, -1.0637074708938599, 0.2876654267311096, -0.07588599622249603, -0.08595655858516693, 0.07402205467224121, 0.354740709066391, 0.5726116299629211, 0.3109767436981201, -0.7342774271965027, 0.2524709403514862, -0.029392676427960396, -0.7999054193496704, 0.2695982754230499, -0.20673871040344238, 0.2706512212753296, 0.11515084654092789, 0.8724638223648071, 1.5758600234985352, -0.013519972562789917, -0.9113210439682007, 0.05218512564897537, -1.1065709590911865, 0.5635334253311157, -0.1932685822248459, -0.29500845074653625, -0.8193931579589844, 0.1991463303565979, 0.34850436449050903, 0.17690148949623108, -0.8854424953460693, -0.22679072618484497, -0.8063174486160278, -0.9994717836380005, 1.131235122680664, 0.4150424003601074, 0.6913571357727051, 0.4952409565448761, 0.7668635845184326, 0.7014836072921753, 0.3239856958389282, -0.9812952280044556, 0.1239345520734787, 0.18656432628631592, -0.0306730754673481, -1.0227856636047363, -0.4114843010902405, -0.9705811738967896, 0.5443419218063354, 0.37933290004730225, -0.05395972728729248, 0.08851202577352524, 0.7155832052230835, 1.4167522192001343, -0.6892415285110474, -0.4918607771396637, 0.11310382187366486, -1.0816335678100586, 0.22560691833496094, 0.47588014602661133, -0.7953203320503235, 0.7393031120300293, -0.10109215974807739, -1.521550178527832, 1.1057106256484985, 0.18773554265499115, 0.05917016789317131, 1.2597172260284424, 0.23180325329303741, -0.05397787317633629, 1.4584648609161377, -0.25253549218177795, 0.054618507623672485, 0.23553362488746643, -0.24787339568138123, 0.003965228796005249, 0.06157933175563812, 0.8178278207778931, -0.14235764741897583, -0.7401806116104126, 0.09685845673084259, -0.5331045985221863, 0.6111299991607666, -0.22414898872375488, 0.17023316025733948, -0.1893804967403412, 0.5781142711639404, -0.5198768377304077, -0.16681884229183197, 0.6594188213348389, -0.9247787594795227, -0.6201686859130859, 0.8378475904464722, 0.9408615827560425, 0.4930862784385681, 0.27224990725517273, 0.8992738723754883, -0.9121524095535278, -0.01247645728290081, 0.3015948235988617, -0.08774422109127045, 1.5181868076324463, -0.008792474865913391, 0.13987544178962708, 0.39508819580078125, -0.02895170822739601, 0.1130434200167656, -0.7866373062133789, 0.1982242316007614, 0.9425454139709473, -0.5305277705192566, -0.8882938027381897, -0.03511693701148033, -0.8001205921173096, -0.004275068640708923, 0.39417213201522827, -0.017040938138961792, -0.7365096211433411, -1.083681583404541, -0.6434321403503418, 0.1254693567752838, 0.85817551612854, -0.6517657041549683, 0.3828847110271454, -0.04301935434341431, -1.6339733600616455, 0.38300883769989014, 0.2771303951740265, -1.859133005142212, -0.2285379320383072, -0.7630511522293091, 0.3022991716861725, 0.14315444231033325, 0.031139444559812546, -0.2437441498041153, 0.4431554675102234, -1.4950847625732422, -1.0361781120300293, -1.3894330263137817, -0.5200850963592529, 0.534324049949646, 0.801109790802002, -0.8523173332214355, 0.9720227718353271, -0.6904821395874023, 0.5996124148368835, -0.6144328713417053, -0.3768812119960785, -1.0979125499725342, 0.49441003799438477, -0.1615528017282486, -0.2287161499261856, -0.08858059346675873, 1.5070931911468506, 0.7882001399993896, 1.1807893514633179, 0.25046640634536743, 1.2892762422561646, -1.2783150672912598, -1.0130940675735474, -0.2986488938331604, 0.6787830591201782, -0.6200107336044312, -0.34544938802719116, 0.19130489230155945, -0.7980102300643921, -1.0726876258850098, -0.25621524453163147, 1.015213966369629, -0.32604989409446716, 0.5110225081443787, -0.18742142617702484, 0.30845415592193604, -0.8206294775009155, 0.142438605427742, 0.7975913286209106, -1.0919618606567383, -0.40753450989723206, -0.45405346155166626, 0.4838593602180481, -1.0292686223983765, -0.01330623123794794, 0.2720312476158142, -0.08962399512529373, 0.118168905377388, -0.18553441762924194, 0.11735354363918304, 0.8475672602653503, -0.4948464035987854, 1.0351636409759521, 1.1733194589614868, -0.4670073390007019, 0.02451523020863533, -0.22103260457515717, -0.5844202637672424, 0.06014523655176163, -0.748771071434021, -0.6664009690284729, -0.7245259881019592, 1.0909382104873657, 0.4623503088951111, 0.2325364053249359, 0.07837896794080734, 0.8869771957397461, 0.32517367601394653, 0.18333682417869568, 0.035561561584472656, -1.1839027404785156, -0.7198777794837952, 0.722917914390564, 0.8665522336959839, -0.593695878982544, -0.18527169525623322, -0.16908085346221924, 0.5586560368537903, 0.8004135489463806, 0.3678857982158661, 0.19613118469715118, -0.5142389535903931, 0.6387752294540405, 0.9751275777816772, -0.20884566009044647, -0.4997737407684326, -0.5537105202674866, -1.8720932006835938, 0.07892641425132751, -0.08837378025054932, -0.29308199882507324, 0.6252152919769287, -0.9793535470962524, -0.7659237384796143, 0.10539841651916504, -0.4264034628868103, -0.02593567594885826, -0.006775088608264923, -0.11067645251750946, -0.44645529985427856, 0.4156196117401123, 0.7888336181640625, -0.1522824615240097, 1.0483660697937012, -0.16898798942565918, -0.402601420879364, -0.9641250371932983, -0.30126723647117615, 0.4694109857082367, -0.5373739004135132, -0.0020338408648967743, -0.3493032455444336, 0.7903343439102173, -0.8990691304206848, 0.03920214623212814, -0.05076253414154053, 0.10299323499202728, -0.05085407942533493, -0.05278190225362778, -0.18869996070861816, 0.28485599160194397, 0.0547289177775383, 0.711866021156311, -0.9450509548187256, -0.8406243324279785, -0.35483503341674805, 0.4556821584701538, -0.2223052829504013, 0.5928086638450623, -0.047422945499420166, 0.2642751634120941, 0.39062613248825073, -0.22059816122055054, -0.31312114000320435, 0.03592688590288162, 0.15654030442237854, -0.03429233655333519, -0.2853648364543915, -0.8862130641937256, 0.11908771842718124, 0.6274832487106323, -1.5158209800720215, -0.3272913098335266, 0.29654181003570557, -0.3304691016674042, -0.3697795271873474, -0.4885235130786896, -0.7620850801467896, -1.0403876304626465, 0.2788251042366028, 0.2576814293861389, 0.08338266611099243, 0.6709406971931458, -0.5298126935958862, -1.0695586204528809, 0.11762865632772446, 0.4981144666671753, 0.05459567904472351, 0.5560295581817627, 1.3418052196502686, 1.4155166149139404, -0.07100953161716461, -0.7591662406921387, -0.31116151809692383, 0.25103759765625, -1.4592878818511963, 0.07892198860645294, -0.9169096946716309, 0.14477750658988953, -0.11243705451488495], [1.0264744758605957, 0.7947080731391907, -2.612638235092163, 0.144480898976326, -0.5245968103408813, 0.7580782771110535, 0.6469892859458923, 0.8478497266769409, 0.43255099654197693, -0.9729399681091309, -1.4611217975616455, -0.2988700270652771, 1.0658378601074219, 0.11205367743968964, 0.2935244143009186, 0.37582024931907654, 0.7973353266716003, 0.3909919261932373, 0.10902136564254761, 0.731428861618042, -0.3549928367137909, -1.3125057220458984, -0.25566354393959045, -0.028045132756233215, -0.22234277427196503, 0.26812371611595154, -1.364211082458496, -0.18447245657444, -1.2926257848739624, -0.5156828165054321, 0.3475331962108612, -0.48462700843811035, 0.31311526894569397, -0.026759237051010132, -1.0938692092895508, 0.49415647983551025, 1.2319048643112183, 0.7188411355018616, 0.7724528312683105, -0.08924250304698944, 1.8500680923461914, 0.200020432472229, 0.21098703145980835, -0.7198236584663391, 0.5621070265769958, -0.467224657535553, 0.8744624853134155, -0.6869987845420837, -0.5843538641929626, 0.016977956518530846, 0.7539078593254089, -0.009107808582484722, -0.8373859524726868, 1.1509889364242554, 0.5087959170341492, -1.5193828344345093, -0.5759310722351074, -0.6441935300827026, -0.20186308026313782, -0.3135884702205658, 0.7913796901702881, -0.5153792500495911, 0.6409721374511719, 1.5673524141311646, 0.31408193707466125, -0.5392303466796875, 0.04821338132023811, 0.4288543164730072, 0.48306751251220703, -0.9138455986976624, 0.7252711653709412, 0.40022119879722595, -0.7842966318130493, 0.9573380947113037, -0.8600330352783203, 0.5675236582756042, 0.5528333783149719, 1.018541932106018, 0.2325257509946823, 1.1979947090148926, -0.422322541475296, -0.31265830993652344, 0.6087857484817505, -0.30666449666023254, 0.3440249264240265, -0.02102590538561344, 0.3649922311306, -0.8174673318862915, -0.19678995013237, 0.9190826416015625, -0.7671810984611511, 0.4584846496582031, 0.5034705996513367, 0.18953227996826172, -0.004319861531257629, -0.09648659080266953, -0.22259891033172607, -0.32886654138565063, -0.8718641996383667, -0.5169404149055481, -0.948744535446167, -1.407057285308838, -0.2503160834312439, -0.12422582507133484, 0.885796844959259, 0.8396123647689819, 0.6955919861793518, -1.3102457523345947, 0.3557666838169098, 0.17039553821086884, -0.22477392852306366, -0.01818251982331276, -0.21528120338916779, -1.6757874488830566, -1.0560392141342163, 0.577593982219696, 1.4077062606811523, -0.7482495903968811, 1.620044469833374, 0.2932712733745575, -0.16669920086860657, -0.12066514045000076, 0.07271625101566315, -0.11804213374853134, 0.8325903415679932, 0.18111969530582428, -0.7021796107292175, -0.4777917265892029, 0.4464351236820221, 0.7090213298797607, 0.2625136077404022, 0.4602205753326416, 0.26814958453178406, 1.1688681840896606, -0.1468677818775177, 0.21178875863552094, -0.7438340187072754, -0.813990592956543, -0.23901811242103577, 0.3516930937767029, 1.1557374000549316, -0.5487537384033203, -0.181208536028862, 0.276694118976593, -0.8252741694450378, -0.4698978364467621, 0.5304237008094788, -0.40792521834373474, -0.3366064429283142, 0.01123524084687233, -0.7896766066551208, -0.1544298678636551, -0.38441595435142517, 1.0653904676437378, 0.7262502908706665, -0.21778206527233124, 0.36049556732177734, 0.24535931646823883, 0.3051247298717499, -0.7322900295257568, 0.17278577387332916, 0.2950523793697357, -0.06874839961528778, 0.005012102425098419, 0.5696836113929749, -0.4533883333206177, -0.5938695669174194, 0.9637822508811951, 0.02300693839788437, -0.4984305799007416, 0.22791865468025208, 0.1662137657403946, -0.7875386476516724, -0.2502964437007904, 0.596680223941803, -0.7513930797576904, 0.8833945393562317, -0.26396605372428894, -1.6656091213226318, -1.569117546081543, 1.3816113471984863, -0.3996174931526184, 0.7466927766799927, -0.01667025312781334, 1.308295488357544, 0.13377203047275543, 0.254426509141922, -0.5508952736854553, 0.09448143094778061, -1.008341908454895, -0.34107619524002075, 0.22510303556919098, -0.8819689154624939, 0.3490796387195587, -0.8441027402877808, -0.7517768144607544, 0.7793726325035095, -0.13626845180988312, -0.47718942165374756, -0.593763530254364, 0.21604402363300323, -0.1664382815361023, -1.2882925271987915, 0.05433070287108421, -0.6516514420509338, 1.0179641246795654, -0.764971911907196, 0.2321707308292389, -1.1335422992706299, 0.007795413956046104, 0.6568651795387268, -0.13799098134040833, -0.7867569923400879, -0.07562283426523209, 0.05586455017328262, -0.6305753588676453, 0.6220595836639404, 0.25737759470939636, 0.3212151825428009, -0.2745051681995392, 0.10658593475818634, 0.9937077164649963, 0.9882408380508423, -0.4497115910053253, 1.2267464399337769, -0.27947044372558594, -1.0155375003814697, -0.7865868210792542, -0.3698071837425232, 0.17939262092113495, -0.7579154372215271, -1.1992021799087524, 0.5314822793006897, 0.36144474148750305, -0.9367327690124512, 0.4661574065685272, 0.06260514259338379, 0.2658124566078186, -0.2136421650648117, 0.8297101259231567, 0.5506166219711304, -0.12411718815565109, -0.19762860238552094, 0.11783859133720398, 0.10589238256216049, 0.27670449018478394, 0.31260451674461365, -0.5088220834732056, 0.04727769270539284, 0.9222456216812134, 0.6550722718238831, 0.22675150632858276, 0.8306970000267029, 0.327886700630188, -0.541934072971344, -0.2176523059606552, -0.9215376973152161, -0.008567974902689457, -0.6833451390266418, 1.3886793851852417, 0.40311697125434875, -0.7334272861480713, -0.32779961824417114, -0.2902410924434662, -0.1264658272266388, -0.3463984727859497, 0.05119903385639191, 0.0377887487411499, 0.17354966700077057, -0.8354095220565796, -0.03404069319367409, 0.015142888762056828, -0.2854037880897522, 0.7869218587875366, -0.4047078490257263, -0.5792021155357361, 0.3215372562408447, 0.23759698867797852, -0.014694621786475182, 1.6068086624145508, 0.2980543076992035, -0.9501277208328247, -0.6741227507591248, -0.13307395577430725, 0.35772162675857544, -0.550571084022522, 0.5760416984558105, 1.273791790008545, 0.4021424651145935, -0.5568103194236755, -0.04153120145201683, 0.4819257855415344, 0.14347194135189056, 0.3691921830177307, -0.14952075481414795, 0.01714162901043892, 0.41745415329933167, -0.22439593076705933, -0.5900359749794006, 0.13983291387557983, 0.544729471206665, 0.5538929104804993, 0.7711824774742126, 1.0400984287261963, 0.11113099008798599, -0.1765374392271042, 0.005278817377984524, -0.0031923330388963223, -0.8145633339881897, -0.8877783417701721, -0.21245723962783813, -0.868702232837677, -0.636592447757721, -0.1851321905851364, -0.19174903631210327, 0.8967356085777283, 0.6647427678108215, 0.2071746587753296, 1.1897971630096436, -0.4065290689468384, -0.14386619627475739, 0.6879053115844727, -0.5710483193397522, -0.24692507088184357, 0.5103792548179626, 0.28907328844070435, -1.6378554105758667, -0.0107661671936512, -0.3832746744155884, 0.3696211278438568, 0.0752638503909111, 0.3213094174861908, 0.00765405036509037, -1.1685154438018799, -0.7764068841934204, -0.37786829471588135, 0.968915581703186, 0.13892482221126556, -0.8292343616485596, -0.17525622248649597, 0.09637533128261566, 0.8134233951568604, 0.053773973137140274, -0.019735312089323997, 0.1928706020116806, -0.667850911617279, -0.6084187626838684, -0.07190632820129395, 0.5168314576148987, 0.4868202805519104, -0.4970100224018097, -1.0764511823654175, 0.27374765276908875, -0.11129770427942276, -0.6572331190109253, 0.3523099720478058, -0.48641666769981384, 0.862834095954895, 0.27227485179901123, 0.4563114047050476, 1.1904345750808716, -0.47364339232444763, 0.8369297981262207, -2.1534950733184814, 0.63236403465271, 0.5131031274795532, 1.9535765647888184, -0.2546238303184509, 0.6104242205619812, -0.1540292501449585, -0.8040763735771179, 0.14738333225250244, 0.4794453978538513, 0.7828441262245178, -0.11107040196657181, -0.06097620725631714, 0.19147071242332458, -0.8313804864883423, -0.3617892563343048, 0.12320704758167267, 0.029827965423464775, 0.24580219388008118, -0.8735267519950867, -0.3305305242538452, 0.9698539972305298, 0.5504297018051147, -1.0305088758468628, -0.6866329908370972, -0.10709455609321594, 0.5609040260314941, -0.5060566663742065, -0.19164031744003296, -0.47857001423835754, -0.2010474056005478, 1.1787952184677124, -0.9597494602203369, 0.7907110452651978, 1.2719438076019287, 0.4405616223812103, -0.029922060668468475, -1.057171106338501, 0.22018283605575562, -1.1371735334396362, -0.036134690046310425, 0.9248817563056946, 0.12337511777877808, 0.3320992887020111, 0.2491946816444397, 0.06836355477571487, -0.11745896935462952, -0.5731830596923828, 1.6891443729400635, -0.3938460350036621, 0.10490963608026505, -0.08580604195594788, -0.46844562888145447, 1.0469155311584473, -0.10844841599464417, -0.3011826276779175, 0.1321774274110794, -0.24643583595752716, 0.091523677110672, 0.10966671258211136, -0.0894780158996582, 1.7434331178665161, 0.5813817381858826, -0.2150283008813858, 0.39561641216278076, 0.15989187359809875, -0.3606572449207306, 0.03147764876484871, 0.6885842680931091, -0.3646218180656433, -0.8013947606086731, 0.18538379669189453, 0.22146040201187134, 0.2921672463417053, 0.076786108314991, 0.43439120054244995, 0.3942987322807312, 0.08494395017623901, -0.04067637026309967, 1.3459454774856567, 1.085654377937317, 0.7619349360466003, -0.08805935829877853, 1.211637258529663, -0.1847747415304184, 0.08654018491506577, 0.6566388607025146, -0.08799715340137482, 0.2499406486749649, 0.24756892025470734, 0.2665185034275055, 1.2132179737091064, -0.791262686252594, -0.4893062710762024, 0.8933729529380798, -0.015888039022684097, 0.9926160573959351, 1.058347463607788, 0.5620203018188477, -0.11038347333669662, 0.12650282680988312, 0.026706447824835777, -0.4080468416213989, 0.5200468301773071, 0.4398716986179352, -0.33261311054229736, 0.6112254858016968, -0.8371708393096924, 0.4752362072467804, -1.1917188167572021, -0.1576564759016037, -0.38318517804145813, -0.7368228435516357, 0.58968186378479, 0.7072179913520813, 0.1734568327665329, 1.1428816318511963, 0.2549891769886017, -1.1640599966049194, 0.27182599902153015, -1.0161224603652954, -0.26350271701812744, -0.23676909506320953, -0.8872663974761963, -0.9842169880867004, 0.30704042315483093, -0.17435817420482635, -0.2247931808233261, -0.5727536082267761, -0.06217539310455322, -0.07945241779088974, -0.7433821558952332, 0.6855438351631165, 0.45108762383461, 0.4962441623210907, 0.2653712034225464, -0.011993611231446266, 0.08168123662471771, 1.0827518701553345, -0.5527758002281189, 0.03979460895061493, 0.010177170857787132, -0.4194784164428711, -0.2840103805065155, -0.705435037612915, -0.27651292085647583, 1.2868589162826538, 0.28901079297065735, -0.2735517919063568, -0.6901676654815674, 0.4658692181110382, 1.2302595376968384, -0.27903318405151367, -1.0055725574493408, -0.04782237485051155, -0.4859321713447571, 0.454683780670166, 0.458481103181839, -0.4470658004283905, -0.8596433997154236, -0.49961358308792114, -1.0581880807876587, 1.0856008529663086, -0.0573713481426239, -0.11176986992359161, 0.7289814352989197, 0.9121724963188171, 0.36794808506965637, 0.47897377610206604, -0.2852120101451874, 0.044862162321805954, 0.04775378108024597, 0.27615663409233093, -0.5075117945671082, 0.563749372959137, 0.2722342610359192, 0.15411125123500824, -0.13012714684009552, 0.6551831960678101, -0.42491614818573, 0.2682712972164154, -0.6134341955184937, 0.409570574760437, -0.032422978430986404, 0.10092101246118546, 0.12969867885112762, 0.3152208924293518, -0.291638046503067, -0.6169175505638123, -0.10503043979406357, -0.06690787523984909, 1.0054105520248413, -0.1498975157737732, -0.581130862236023, 0.25752153992652893, -0.7949538230895996, 0.20867730677127838, -0.28173407912254333, -0.4569869637489319, 1.3238346576690674, 0.8073843121528625, 0.41123294830322266, 0.5667772889137268, -0.4179568886756897, 0.09995938092470169, -0.5666549801826477, -0.08741024881601334, 1.0664658546447754, -1.049380898475647, 0.41527947783470154, -0.10414615273475647, -1.009649634361267, 0.12543299794197083, 0.43605539202690125, -0.05922231450676918, -0.5522751808166504, -1.0462967157363892, -1.2179068326950073, -0.2917245626449585, 0.8397322297096252, -0.6491614580154419, -0.17436346411705017, 0.2178400158882141, -0.7499461770057678, -0.7229076027870178, 1.1702972650527954, -1.1261470317840576, -0.48040375113487244, -1.016683578491211, 0.641707718372345, 0.17617158591747284, 0.5848981738090515, -0.8569521307945251, 0.37065589427948, -1.2065919637680054, -1.1349483728408813, -1.3765052556991577, -0.4807989299297333, 0.9447776675224304, 0.44237762689590454, -1.06415855884552, 0.5687419176101685, 0.5040308237075806, 0.601851761341095, -0.5056367516517639, 0.20537564158439636, 0.022732309997081757, 0.4059249460697174, 0.284790575504303, -0.17412517964839935, -0.40020281076431274, 1.2606550455093384, 0.5147829055786133, 0.7483282685279846, 1.1571980714797974, 0.8763066530227661, -1.2726224660873413, -0.2974323034286499, -0.4648587703704834, 0.5516983866691589, -0.1268547922372818, -0.5643621683120728, -0.05817572399973869, -0.7729777693748474, -0.01272496860474348, 0.3573436439037323, 0.5981418490409851, -0.9836066961288452, -0.244262233376503, -1.817931056022644, 0.18375100195407867, -0.5271808505058289, 0.3948505222797394, -0.06108709052205086, -0.28939199447631836, 0.2698553204536438, -0.4852980375289917, -0.7364175915718079, -1.7424417734146118, -0.27565398812294006, 0.12033676356077194, 0.10170644521713257, -0.2996218800544739, -0.2234225571155548, 0.21255053579807281, 0.7572035193443298, -0.26419463753700256, 1.4913506507873535, 1.1831161975860596, 0.09470777958631516, 0.06886269897222519, -0.04570766165852547, 0.23002128303050995, 0.3103013336658478, -0.5660552382469177, -0.7641482949256897, -0.8045714497566223, 0.6189022064208984, -0.19577474892139435, -0.3465286195278168, 0.04397132992744446, 0.7651944160461426, 0.3273285925388336, 0.4743042290210724, 0.7979531288146973, -0.6511935591697693, -0.7490684390068054, 1.0312176942825317, 1.1022608280181885, -0.9977531433105469, 0.22014650702476501, 0.3277502954006195, 0.5619751811027527, 0.4490664005279541, 0.5977956652641296, 0.6624898314476013, -1.0867470502853394, 0.9222236275672913, 0.8502930998802185, -0.5578328371047974, -0.3432963788509369, -0.36825108528137207, -1.57517409324646, -0.11321259289979935, -0.21317629516124725, -1.0363789796829224, 0.12781845033168793, -0.8915512561798096, -0.45991966128349304, 0.3838701546192169, -0.13943533599376678, 0.5219907760620117, -0.8457143902778625, 0.8557326793670654, 0.017051439732313156, 0.21518200635910034, 0.1287962943315506, -0.42818883061408997, 0.7412152290344238, -0.2643603980541229, -0.593559980392456, -1.4863989353179932, -0.5453645586967468, 0.4699322283267975, -0.16488945484161377, -0.31757161021232605, 0.3847004473209381, 0.6183262467384338, -0.5704329013824463, -0.7588409781455994, 0.5721928477287292, -0.1770840287208557, -0.09579848498106003, -0.7359839081764221, -0.7799152731895447, 0.7605025172233582, 0.521515965461731, 0.08570457994937897, -0.4232921004295349, -0.6422794461250305, -0.40154752135276794, 0.37996330857276917, 0.16608552634716034, 0.1315649151802063, -0.23051421344280243, 0.8235471248626709, -0.13587598502635956, -0.22111597657203674, 0.0369432233273983, -0.6697942614555359, 0.6484652161598206, 0.09550473839044571, 0.27014032006263733, 0.020679160952568054, -0.38345634937286377, 0.5965136885643005, -1.1247390508651733, -0.5551034212112427, 0.6652475595474243, 0.012929554097354412, 0.20764437317848206, -0.5633094906806946, -1.551047444343567, -0.08135126531124115, 0.21274833381175995, -0.22734999656677246, 1.0959151983261108, 0.10932038724422455, -0.6130500435829163, -0.7177762985229492, 0.1515972912311554, 0.18608711659908295, -0.46495118737220764, 0.10350500792264938, 1.0846842527389526, 2.060354709625244, 0.28384798765182495, -0.026067273691296577, 0.08553767204284668, 0.503024697303772, -1.0725305080413818, 0.1983342170715332, -1.223835825920105, 0.36467769742012024, -0.694837749004364], [-0.0687083825469017, 0.4415515959262848, -1.7736446857452393, -0.5890169739723206, -1.176894187927246, 0.5281082987785339, 1.1394013166427612, 0.8952858448028564, 0.47942373156547546, -0.451374888420105, -1.5492091178894043, -0.4839942753314972, 0.40997055172920227, 0.48167502880096436, -0.5729172229766846, 0.36477723717689514, 0.10781247168779373, 0.5182710289955139, 0.6963578462600708, 0.8234840631484985, -0.8347403407096863, -0.5111109614372253, 0.1582929939031601, 0.5163741111755371, -0.5236921906471252, 0.9021382331848145, -1.6265288591384888, 0.1856178492307663, -1.4653515815734863, -1.1244032382965088, 0.5897364616394043, -0.9046613574028015, 0.033835846930742264, 0.3482513427734375, -1.0397714376449585, -0.11262808740139008, 1.4067838191986084, 1.452970266342163, 0.613125741481781, 0.7435472011566162, 2.829441547393799, 0.053277041763067245, -0.43222740292549133, -0.8805289268493652, 0.595474898815155, -0.38655996322631836, 1.0260694026947021, -1.5995581150054932, -0.2714327573776245, -0.06934383511543274, 0.8688632249832153, 0.7950237989425659, 0.1549430936574936, 0.6678085923194885, 1.2179532051086426, -1.1899964809417725, -0.130814790725708, -0.5124896168708801, 0.3042784035205841, -0.007866671308875084, 0.12620972096920013, 0.13650275766849518, 0.7068703174591064, 1.0171258449554443, 0.7340047955513, 0.22724786400794983, -0.32296544313430786, 0.5579842329025269, -0.5579911470413208, -0.6738640666007996, 0.46673783659935, -0.058592356741428375, -0.8654264807701111, 0.22759728133678436, -0.5567728281021118, 0.5386960506439209, 1.3701097965240479, 1.1218541860580444, -0.28701603412628174, 0.7637851238250732, -0.8213943839073181, 0.11029936373233795, 0.9669904708862305, -0.5064169764518738, 0.4358827471733093, -0.2653554379940033, 0.506417989730835, -0.88618403673172, -0.8588131666183472, 1.428847074508667, 0.1581726372241974, 0.22121135890483856, 0.30348384380340576, -0.02999471314251423, -0.3794029653072357, 0.22056743502616882, 0.3931288719177246, -0.347212016582489, -0.37263748049736023, -0.728996217250824, -1.1846975088119507, -0.6618982553482056, 0.49727025628089905, 0.08774195611476898, 1.1357771158218384, 1.9926459789276123, 0.16632741689682007, -0.6072846055030823, -0.6715763211250305, 0.09705211222171783, -0.4145975112915039, -0.3359314501285553, -0.23627246916294098, -1.282077431678772, -0.6925556659698486, 0.37079375982284546, 0.9411499500274658, -0.6236597895622253, 0.9416270852088928, 0.7935359477996826, -0.36425262689590454, -0.26607275009155273, -0.14129655063152313, -0.2863158583641052, 0.8382655382156372, 0.3986636996269226, -0.2671504616737366, -0.2596319019794464, 0.7553146481513977, 0.3329189121723175, 1.1641830205917358, 0.3540637791156769, 0.24785202741622925, 2.0587244033813477, 0.031748123466968536, 0.28854629397392273, 0.3766994774341583, -1.2229057550430298, -0.7331746220588684, 0.09498625248670578, 1.1742708683013916, -0.8534908890724182, -0.13899610936641693, -0.7370448112487793, -0.9716144800186157, -0.9534721374511719, 1.0191214084625244, -0.33995264768600464, -0.3334392309188843, 0.0803457573056221, -1.0072181224822998, 0.08419205248355865, 0.6494930386543274, 0.6556928753852844, 0.12737227976322174, 0.02405090630054474, 0.6047256588935852, 0.8692290782928467, 0.5579292178153992, 0.7240582704544067, 0.31638726592063904, -0.362674742937088, 0.0680353119969368, 0.6056140065193176, 0.8493208885192871, -0.2046387940645218, -0.36275219917297363, 0.28776803612709045, -0.08311634510755539, -0.048128124326467514, 0.27626270055770874, -0.2995627522468567, -0.8359482884407043, 0.5334370732307434, 0.09878960996866226, -1.0835986137390137, 1.3051567077636719, -0.7638951539993286, -1.1841720342636108, -1.4725687503814697, 1.6063770055770874, -0.11111003160476685, -0.14012672007083893, -0.04783051833510399, 1.251908779144287, -0.7382065057754517, -0.25651654601097107, -0.11400427669286728, -0.7677552103996277, -1.075310230255127, -0.6757990717887878, -0.20204389095306396, -1.1147631406784058, 0.16179360449314117, -0.402774840593338, -1.0639371871948242, 0.2539139986038208, -0.25820666551589966, -0.8097260594367981, -0.2841813564300537, 0.4735161066055298, 0.2437242567539215, -1.0364134311676025, -0.058024242520332336, -0.7087352275848389, 0.9486071467399597, -0.9028741717338562, 0.41690051555633545, -0.848603367805481, 0.04696808382868767, 0.2858653962612152, -0.0388614758849144, -0.7872570753097534, 0.3380342423915863, -0.336630254983902, -0.6252528429031372, 0.74278324842453, 0.01999509707093239, 0.5635848045349121, -0.7297289967536926, 0.8626110553741455, 0.6030681729316711, 0.610478401184082, -0.3653724193572998, 1.1079708337783813, 0.20745420455932617, -0.2277657836675644, -0.8058999180793762, -0.6182074546813965, 0.20286794006824493, -0.5219892263412476, -1.2978870868682861, 0.7901118397712708, 0.20702539384365082, -1.3597476482391357, 0.847316324710846, -0.05872279033064842, -0.27283036708831787, -0.31467992067337036, 0.8964117765426636, 0.34793028235435486, 0.7564241886138916, -0.1765493005514145, -0.5825666189193726, -0.3100387156009674, 0.6364116668701172, 0.8095831274986267, 0.037500906735658646, 0.9032666683197021, 1.2117719650268555, 0.42213910818099976, -0.17146460711956024, 0.31076017022132874, 0.3812009394168854, -0.43337973952293396, -0.6106070280075073, -0.3574048578739166, -0.10287385433912277, -1.3737484216690063, 2.2608394622802734, 0.7120332717895508, -1.0667012929916382, -0.335249125957489, 0.1670781672000885, -0.5937385559082031, -0.24865812063217163, -0.046685900539159775, -0.7808197140693665, 0.44619306921958923, 0.08931787312030792, -0.012908075004816055, 0.5291610360145569, 0.2545700669288635, 0.8919786214828491, -0.2281447798013687, -0.48277977108955383, 0.44218289852142334, 0.5015000700950623, -0.3464778661727905, 1.090471863746643, 0.5904523730278015, -1.1000694036483765, -0.31971272826194763, -0.5238303542137146, 1.1396116018295288, -0.3079582154750824, -0.4274976849555969, 0.9792467951774597, 0.1659812182188034, -0.45296546816825867, 0.12580759823322296, 0.899336040019989, 0.21695682406425476, 0.1732359677553177, -0.1800784021615982, 0.2799800634384155, 1.132257342338562, -1.13480806350708, -0.7963943481445312, 0.35705578327178955, 0.3768062889575958, 0.40663424134254456, 1.3345519304275513, 1.4347639083862305, -0.07535935938358307, -0.00022001378238201141, -0.31164050102233887, 0.027770794928073883, -1.0050320625305176, -0.6413033604621887, -0.28483906388282776, -1.0948421955108643, -0.03561815619468689, -0.48895707726478577, -0.2669195830821991, 0.5411139130592346, 0.013219115324318409, 0.3160732686519623, 0.8495752215385437, -0.8876983523368835, -0.2001749873161316, -0.012431183829903603, 0.22978079319000244, -0.5868672132492065, 0.8541160821914673, 0.10769690573215485, -1.3635468482971191, -0.7113983631134033, 0.24266955256462097, 0.09031667560338974, 0.982339084148407, 0.45719781517982483, -0.08161736279726028, -1.1492923498153687, -1.4654419422149658, 0.077733114361763, 1.334336280822754, -0.04255099967122078, -0.959109902381897, -0.7328034043312073, 0.2037913054227829, 0.6547630429267883, 0.11149125546216965, -0.704252302646637, 0.4827227294445038, -0.8900099396705627, -0.8807048797607422, -0.3115752339363098, -0.02622240222990513, 0.7829341888427734, -0.2298268973827362, -0.7892752289772034, 0.16484585404396057, 0.07280838489532471, -0.7196397185325623, 0.24216336011886597, -0.8858844041824341, 1.2041865587234497, -0.1792893260717392, 0.474928617477417, 1.3904727697372437, -1.332287311553955, -0.4402162730693817, -1.898361325263977, 1.0593039989471436, 0.49257686734199524, 1.5536072254180908, -0.10156909376382828, 0.6835830211639404, 0.3721961975097656, -0.3871944546699524, 0.024393552914261818, 0.6581476330757141, 0.8602266311645508, 0.1281503289937973, -0.2253945767879486, 0.013780291192233562, -0.23264913260936737, -0.4511696994304657, -0.4351775348186493, -0.5832293629646301, 0.4812084138393402, -0.8057991862297058, 0.07683414965867996, 0.6719157099723816, 0.7723026871681213, -1.7679699659347534, -0.32534924149513245, 0.2079247534275055, 0.1499863564968109, 0.20347392559051514, 0.11547041684389114, -0.24535581469535828, -0.34689950942993164, 0.736543595790863, -1.0156744718551636, -0.04850047826766968, 0.21318282186985016, -0.41439029574394226, 0.7171958684921265, -1.3725800514221191, 0.08223330229520798, -1.1951075792312622, 0.09282147139310837, 0.7758178114891052, 0.05646873265504837, 0.5053738355636597, 0.7121129631996155, 0.1169833317399025, -0.28379714488983154, -0.3567196726799011, 1.9620105028152466, 0.34027934074401855, -0.05699123814702034, -0.4055578410625458, 0.4336693286895752, 0.6668704748153687, -0.5976824760437012, -0.584874153137207, 0.29496151208877563, -0.8688559532165527, 0.6197048425674438, -0.16872970759868622, 0.2158433347940445, 1.4499709606170654, 0.09744521230459213, 0.3253897428512573, 0.13632524013519287, -0.4424348771572113, -0.5814344882965088, -0.4701886773109436, 0.10613219439983368, -0.09019573032855988, -0.3236899971961975, 0.17916104197502136, 1.1451436281204224, 0.09075235575437546, 0.1189543828368187, 0.2557346522808075, -0.148078054189682, -0.09924117475748062, -0.020097896456718445, 0.5968440771102905, 0.15901367366313934, 0.9299396872520447, 0.32538649439811707, 0.3414251208305359, -0.43709421157836914, 0.394281268119812, 1.5052402019500732, -0.3679392337799072, 0.36398380994796753, 0.5636945962905884, 0.5195698142051697, 1.1462419033050537, -1.817307949066162, -0.668677568435669, 0.5510091185569763, -0.11363004893064499, 0.9029639959335327, 0.9620518088340759, 0.36043986678123474, -1.1351091861724854, 0.20074495673179626, -0.24609197676181793, -0.44769206643104553, 0.4746457040309906, 0.4810204803943634, -0.40764304995536804, 0.2153751403093338, -0.6774728894233704, -0.23791615664958954, -1.1211491823196411, -0.05862446129322052, 0.2887493669986725, -1.3170132637023926, 0.47921231389045715, 0.2397925704717636, 0.26622867584228516, 0.579700767993927, -0.1726072132587433, -0.8730385899543762, 0.7334500551223755, -0.9100872874259949, -0.3303149342536926, -0.4185613989830017, -1.0772373676300049, -0.5179949402809143, 0.1463339775800705, -0.4419465661048889, 0.3810499310493469, -0.21080225706100464, -0.754569411277771, 0.232444629073143, -0.9607263207435608, 0.5433364510536194, 0.9464746117591858, 1.191042184829712, 0.7376705408096313, 0.1298244446516037, 0.6435539722442627, 0.5289291143417358, -0.9645540118217468, 0.48805391788482666, 0.7755365967750549, -0.15167437493801117, -0.4875526428222656, -0.6504715085029602, -0.6208115816116333, 1.2629185914993286, 0.6317028403282166, -0.42182764410972595, 0.09486694633960724, 0.12271389365196228, 1.3194799423217773, -0.011679602786898613, -0.7621303796768188, 0.048106156289577484, -0.18205562233924866, 0.4311060905456543, 0.9437498450279236, -0.8013458251953125, -0.25305497646331787, -0.4109466075897217, -1.0628421306610107, 1.3736482858657837, 0.3282671570777893, -0.8112131953239441, 1.5562244653701782, 1.1006910800933838, -0.1459013819694519, 0.5543236136436462, 0.31063762307167053, -0.7399328351020813, 0.20443658530712128, -0.004666642285883427, -1.6218211650848389, 0.7168809771537781, 0.0752720981836319, 0.20294946432113647, -0.7399323582649231, -0.20140796899795532, -1.1839268207550049, 0.567379891872406, -0.5963818430900574, -0.3359951972961426, 0.4578675925731659, 0.20370371639728546, 0.3334437906742096, 0.3048756718635559, -0.4368964433670044, -0.007269289810210466, -0.4734300374984741, -0.49983370304107666, 0.6841283440589905, -0.2767607271671295, -1.4220951795578003, 0.3249575197696686, 0.17394942045211792, 0.39535602927207947, 0.26626908779144287, -0.21045784652233124, 1.407742977142334, 1.0239791870117188, 0.2865585684776306, 0.6340008974075317, -0.424881249666214, -0.26508161425590515, -0.1384563446044922, -0.9361319541931152, 0.3851010799407959, -1.1929093599319458, 0.2381218671798706, -0.46974265575408936, -0.12233906239271164, 0.34894371032714844, 0.05796905606985092, -0.22793667018413544, -0.7415115237236023, -0.7674902081489563, -1.5737301111221313, 0.2530871331691742, 0.6667612791061401, -0.7039875388145447, -0.4349345862865448, 0.2495572715997696, -1.3598756790161133, 0.16922707855701447, 0.6458324790000916, -1.160017728805542, -0.34127989411354065, -1.159508466720581, 0.8019216060638428, -0.9068955779075623, 0.6209901571273804, -0.7070575952529907, 0.7189305424690247, -0.5230802893638611, -1.1239622831344604, -0.5871309041976929, -0.3711230158805847, 1.0931607484817505, 1.0935263633728027, -0.6919236779212952, 0.8634910583496094, 0.3090268075466156, -0.5832182765007019, -0.25818932056427, 0.3199038803577423, -0.045738741755485535, 0.7869952321052551, 0.19105570018291473, -0.4425411820411682, 0.655854344367981, 1.0015519857406616, 0.7138555645942688, 1.2610445022583008, 0.17791706323623657, 0.9931060075759888, -1.1760363578796387, -0.33351507782936096, -1.0732089281082153, -0.05408259108662605, -0.31340864300727844, -0.43031591176986694, -0.6626138687133789, -0.984404981136322, -0.14186103641986847, 0.8943981528282166, 1.2371476888656616, -0.8137583136558533, -0.23398199677467346, -0.8068240880966187, 0.8014866709709167, -0.2728356420993805, 0.4602300822734833, -0.004690042696893215, -0.24929183721542358, -0.053550392389297485, -0.6674671173095703, -0.4701937139034271, -0.5785536766052246, -0.6095070242881775, -0.2687637507915497, 0.43067944049835205, -0.19486375153064728, 0.3756425678730011, 0.7808033227920532, -0.011376718990504742, -0.2879164516925812, 2.185779571533203, 1.338724970817566, -0.23763597011566162, 0.8956605792045593, -0.4552321135997772, -0.3305172026157379, -0.31808438897132874, -0.8239647150039673, 0.4105474054813385, -0.7536178231239319, 0.5174142718315125, -0.1680101901292801, 0.0876619890332222, -1.1612704992294312, 0.3099052608013153, 0.15540045499801636, 0.47604337334632874, 0.8059001564979553, -0.2734833061695099, -0.2882634699344635, 0.6673901081085205, 0.9584078192710876, -0.49574366211891174, 0.5664117932319641, 0.3643024265766144, 0.5135656595230103, 0.14064466953277588, 0.603338360786438, 0.34045857191085815, -1.2336978912353516, 0.6484943628311157, 0.0385536290705204, -0.6766252517700195, -0.1346033662557602, -0.7691800594329834, -1.445975422859192, -0.523989200592041, -0.5751940608024597, -0.9162490367889404, 0.32277533411979675, -0.6713875532150269, -0.6466668248176575, 0.32212698459625244, -0.19269278645515442, 0.09401404112577438, -0.5909180641174316, 0.08767681568861008, -0.3569163680076599, 0.02914166823029518, 0.497883141040802, 0.016779005527496338, 0.4779849648475647, 0.32285773754119873, -0.16843095421791077, -0.9650471210479736, -0.626204252243042, -0.11081115901470184, 0.22178223729133606, 0.06548482924699783, 0.4309332072734833, 0.22100390493869781, -0.1576928049325943, -0.27473750710487366, 0.21741285920143127, -0.6331700086593628, 0.6790040731430054, -0.26680120825767517, -0.4751441776752472, 0.17191533744335175, 0.46665602922439575, -0.4867429733276367, -0.1692521870136261, -0.35460615158081055, -0.15567860007286072, -0.21646378934383392, -0.7496858239173889, 0.16903434693813324, -0.44751662015914917, 0.6332346200942993, 0.35701698064804077, 0.14762096107006073, 0.32295140624046326, -0.17744751274585724, 0.12687304615974426, -0.3869697153568268, 0.37336963415145874, 0.3154618442058563, -1.0491178035736084, 0.517585813999176, -1.3841441869735718, 0.3258962035179138, -0.3458639085292816, 0.5083483457565308, 0.05240525305271149, -0.7239858508110046, -0.9188185930252075, -0.45591798424720764, -0.23451216518878937, 1.149548888206482, 0.5061787366867065, 0.8047837018966675, -0.9110214710235596, -1.3073418140411377, -0.38382336497306824, -0.3267626166343689, 0.053374260663986206, 0.9259229898452759, 1.6973655223846436, 1.5179502964019775, 0.26817387342453003, -0.20797428488731384, -0.11025727540254593, 0.7304743528366089, -0.563367486000061, -0.8106915950775146, -1.1325749158859253, -0.2341698855161667, -0.255058616399765], [0.01391932275146246, 1.0474679470062256, -1.937429666519165, -0.20000383257865906, 0.658793032169342, -0.42883285880088806, 1.5673712491989136, -0.1776025891304016, 0.9716423153877258, -1.2055960893630981, -0.37566614151000977, -0.24651966989040375, 0.5735188126564026, 1.2779244184494019, -0.7231682538986206, 0.6035867929458618, 0.4548881947994232, -0.5358943939208984, -0.9760546684265137, 0.80268794298172, 0.181693896651268, -2.5137534141540527, -0.8282184600830078, -0.6299811005592346, -0.37914517521858215, -0.2525254189968109, -0.26463255286216736, 0.5712230801582336, -1.4687305688858032, -0.42638254165649414, 0.746318519115448, -0.4549766778945923, -0.3523164689540863, 0.7053971290588379, -0.5582041144371033, -0.6044514179229736, 0.4625830054283142, -0.21109521389007568, -0.25771665573120117, 0.5848783254623413, 1.0297377109527588, -0.25324657559394836, -0.588342547416687, -0.5680190324783325, 0.8131076693534851, -1.1706749200820923, 1.6412663459777832, -0.5438027381896973, 0.2885075807571411, -1.8545680046081543, 0.6068668961524963, -1.4637837409973145, 0.2110166996717453, 0.45036154985427856, 0.5267877578735352, -1.1981074810028076, 0.03552384674549103, 0.33260491490364075, -0.6023099422454834, 0.24225689470767975, 1.9388279914855957, 0.9216382503509521, 0.3069843649864197, 1.9446338415145874, 0.16057290136814117, -0.0941181480884552, -0.05207177996635437, -0.27928397059440613, -0.3071750998497009, -0.005889022722840309, 0.5707385540008545, -0.596555233001709, -0.04549730569124222, 0.5030041933059692, -0.4254438877105713, 0.5105909705162048, -0.5945845246315002, 0.136007621884346, -0.31415531039237976, 0.1778433471918106, 0.23035970330238342, -0.12067611515522003, 0.7771583795547485, -0.7720786333084106, -0.3131732642650604, -0.8503150343894958, 0.13005654513835907, -0.5426356196403503, -1.469155192375183, 2.116081476211548, -0.15971432626247406, -0.1249089166522026, 0.3411928415298462, 0.35647496581077576, -0.10163107514381409, -1.826526403427124, 0.044792983680963516, -0.49772393703460693, -0.4296461343765259, -0.07671058177947998, -0.6141166687011719, -0.36502888798713684, -0.25488540530204773, -0.17395231127738953, 0.7637153267860413, 1.1943787336349487, 0.005654420703649521, -0.9880701303482056, 0.3831489086151123, -0.1542406678199768, 1.1945172548294067, -0.1052100658416748, 0.038848862051963806, -0.1041235476732254, 0.04680902883410454, 0.1802045851945877, 0.7970153093338013, 0.03366721794009209, -0.11945538222789764, 1.5866461992263794, 0.33068838715553284, -1.417008876800537, -0.7687355279922485, -0.22623705863952637, 0.7531927824020386, -0.04021138325333595, -0.5697086453437805, -0.3113151788711548, -0.8529523611068726, -0.7836775779724121, -0.21676839888095856, -0.024879634380340576, -0.1361936777830124, 0.11253046989440918, -0.3886038362979889, 1.129923939704895, -0.6389278769493103, -1.0363855361938477, -0.23337815701961517, -0.3320237994194031, 1.0701481103897095, 0.2821251451969147, -0.8271719813346863, -0.11201479285955429, 0.41064324975013733, -0.37959718704223633, -0.4128621816635132, -0.07361385971307755, -0.08363693952560425, 0.5699219107627869, -0.7091654539108276, 0.140006884932518, 0.2315242439508438, 1.0818036794662476, 1.2709006071090698, -0.4978059232234955, -0.341147243976593, 1.0677242279052734, 0.7302471399307251, 0.5161838531494141, 0.9853654503822327, -0.08175419270992279, -0.0714707300066948, 1.1597199440002441, 0.3852269947528839, 0.052386097609996796, 0.630873441696167, 0.8323476314544678, -0.1266574114561081, 0.8977078795433044, -0.5891621112823486, 0.09078418463468552, -0.8212231993675232, 0.7048598527908325, 0.026504382491111755, 0.4457884430885315, 0.38331785798072815, 0.021885178983211517, -1.1727886199951172, -0.4490951895713806, 0.8625332713127136, -1.4551054239273071, -0.7708236575126648, -0.02363932877779007, -0.2852504551410675, 0.20996612310409546, -0.08271059393882751, -1.4738619327545166, -0.022483468055725098, -1.14975905418396, -0.7045770883560181, 0.009241837076842785, -0.7208647727966309, -0.14446595311164856, -0.9742339253425598, 0.01903640665113926, 1.2171924114227295, -0.026503615081310272, 0.35962358117103577, -0.5250189900398254, 0.1773132085800171, 0.8077855706214905, -0.7752283215522766, 0.5316557288169861, 0.27327072620391846, 0.42852503061294556, 0.5909690856933594, 0.7150754332542419, 0.11761920899152756, 0.6564642786979675, 1.1363309621810913, -1.4272801876068115, 0.19346362352371216, -0.2873873710632324, 0.09494465589523315, -0.056706514209508896, 0.2674371898174286, -0.8292248845100403, -0.7773545384407043, -0.026849305257201195, 0.7070208787918091, -0.4841296672821045, -0.2587205469608307, -0.5422652363777161, 0.7122504711151123, -0.3869323134422302, -1.7456234693527222, -0.23527298867702484, -0.6237932443618774, -0.05374174192547798, -0.07055007666349411, -0.524945855140686, 0.6013684272766113, 0.24308791756629944, -0.29187965393066406, 0.8828374147415161, -1.024367332458496, 0.7557836174964905, 0.030485689640045166, 0.7692429423332214, 1.137908935546875, -0.32797402143478394, 0.2536633610725403, -0.0860559493303299, -0.9511573910713196, -0.02122301608324051, 0.05003955960273743, -0.7107803821563721, -0.7205098867416382, 1.0676548480987549, 1.5156080722808838, -0.13913381099700928, 0.16755756735801697, -0.022095153108239174, 0.3427945077419281, -1.3058249950408936, 0.5357823371887207, 1.1174746751785278, -0.1463741511106491, -0.18801547586917877, 0.6378088593482971, -0.3651919364929199, -0.24132241308689117, -0.47399234771728516, -0.10794767737388611, -0.43611279129981995, -0.6328984498977661, -0.3181878328323364, -0.07054668664932251, 0.2158970683813095, -0.2613570988178253, 0.1360183209180832, -0.3404063284397125, 0.7927719354629517, 0.056882258504629135, 0.10719530284404755, 1.1378586292266846, 0.7711671590805054, 0.3247630298137665, 0.9763213396072388, -1.0616072416305542, -1.689150094985962, -0.7481792569160461, 0.3128673732280731, 0.1326325684785843, 0.12419907748699188, -0.7346490025520325, 0.137893944978714, 0.6925073862075806, -0.34660637378692627, 1.287402868270874, 0.005083865486085415, -0.25742530822753906, -0.6428363919258118, -0.8283932209014893, 0.17248187959194183, -0.05229353532195091, -1.0756868124008179, -1.0302122831344604, -0.12331247329711914, 0.23722046613693237, 0.9455630779266357, 1.3909828662872314, 0.9463610649108887, -0.2652747333049774, -0.4611668884754181, -0.33723556995391846, 0.20266303420066833, 0.48144474625587463, 0.06171102076768875, -0.4023565351963043, -0.028460539877414703, -0.8521331548690796, 0.4234611392021179, 0.3066583573818207, 0.9601927399635315, 0.21479685604572296, 0.2622189521789551, 0.49588000774383545, -0.3473994731903076, -1.3547550439834595, -0.32430705428123474, -0.7916646599769592, -0.9865075945854187, 0.23217976093292236, 1.4070487022399902, -0.800143837928772, -0.740135133266449, 0.357655793428421, 0.23347024619579315, 0.04187151789665222, 0.8363988399505615, 0.27484825253486633, -1.3341807126998901, 0.3575995862483978, -0.7168547511100769, 0.381187379360199, -0.13175496459007263, 0.30638810992240906, 0.30189216136932373, -0.09972210228443146, 0.500329852104187, -0.7557098865509033, -0.2626552879810333, -0.170701801776886, -0.25019583106040955, 0.1957530826330185, 0.06747576594352722, -0.05329698696732521, 0.4128822088241577, -0.049340467900037766, -1.0124484300613403, 0.24437794089317322, -0.5181971192359924, -0.1723678857088089, -0.33120498061180115, -0.2597879469394684, 0.7332221865653992, -0.21192912757396698, 0.3341095447540283, 1.2838242053985596, 0.7698757648468018, 0.42720136046409607, -1.2216318845748901, 0.20610663294792175, 0.24484187364578247, 1.1101195812225342, -0.2896896302700043, -0.9301734566688538, -0.0204915888607502, -0.2522144913673401, -0.0033223293721675873, -1.150891900062561, -0.2413095086812973, 0.2592506408691406, 0.32670730352401733, -0.9361575841903687, -0.5909484624862671, -0.5140408277511597, 0.04694833233952522, -0.3628634512424469, 0.211965873837471, 0.2776334881782532, -0.06582148373126984, 0.4807074964046478, 0.14248868823051453, 0.6730021834373474, -0.3329082131385803, 0.6459142565727234, -0.4602956771850586, 0.08772557973861694, 0.5204370617866516, -0.2611992657184601, -0.2386392056941986, 0.418204665184021, -0.9167437553405762, -0.40175461769104004, -1.3647537231445312, 0.3935006260871887, 1.5933810472488403, -0.9833102822303772, -1.1086087226867676, 0.24100801348686218, 0.4903292953968048, 0.8828364610671997, -0.32901009917259216, 0.8566601872444153, 0.4578436017036438, -0.2079334259033203, -0.8296441435813904, 1.349422812461853, 0.37438467144966125, -0.0792609378695488, -0.4156402349472046, 0.215787872672081, 0.05240270867943764, 0.6945217251777649, -0.34381404519081116, 0.1269785612821579, 0.5633035898208618, -0.8239840865135193, 0.26113376021385193, 0.33056148886680603, 0.061583369970321655, 1.4327210187911987, 0.6633485555648804, 0.15875352919101715, -0.048673372715711594, 0.041017256677150726, -1.121027946472168, -0.16403385996818542, 0.46596309542655945, 0.890024721622467, -0.9590277075767517, -0.01182048674672842, 0.2831173241138458, 0.2151486873626709, 0.41579216718673706, 1.078546166419983, -0.38556039333343506, 0.2819809913635254, -0.8758666515350342, 0.035103436559438705, -0.34031686186790466, 1.506999135017395, 1.4067047834396362, 0.2508769631385803, -0.09518489986658096, -0.23415659368038177, 0.7494279146194458, -0.5169573426246643, 0.25683143734931946, 0.5099920630455017, 0.731999933719635, 0.7300033569335938, -0.2533120810985565, 0.4212754964828491, 0.12966521084308624, -0.29855313897132874, 0.40220531821250916, 0.06699240207672119, 0.2126810997724533, -0.9659929275512695, 0.21631741523742676, 0.1922605335712433, 0.6409310698509216, 0.7351234555244446, -0.221589595079422, 0.09141941368579865, -0.08001775294542313, -0.8142358660697937, -0.028402427211403847, 0.19169379770755768, 1.118790626525879, -0.20629264414310455, -0.857412576675415, 0.3476100265979767, -0.04577383026480675, 0.7696987986564636, 2.1490869522094727, -0.7639845013618469, -1.3638089895248413, -0.23139020800590515, -0.7505563497543335, -0.1950095146894455, -0.9284441471099854, -0.1256314218044281, 0.19733014702796936, -0.2549787759780884, 0.17622505128383636, 0.08986054360866547, -0.9297212958335876, -0.6835724115371704, -1.0979981422424316, 0.48402470350265503, 0.8076899647712708, -0.5819312930107117, 1.0750994682312012, 0.30476823449134827, 0.11045125871896744, 1.2341327667236328, 0.296924889087677, -0.9420130848884583, -0.25027766823768616, 0.23075422644615173, 0.45167076587677, -0.2672966718673706, -0.042184967547655106, -0.314308226108551, 0.3780532479286194, -0.40950945019721985, -0.5654510855674744, -0.166591614484787, 1.083694338798523, 0.819664716720581, -0.5436603426933289, -0.6075674295425415, 0.908121645450592, -1.3827458620071411, 1.1992963552474976, 0.718854546546936, -1.2227457761764526, 0.7458063364028931, -0.6897067427635193, -2.0928566455841064, 1.2874618768692017, 0.4506949186325073, 0.4050905108451843, 1.4261339902877808, 0.8802462816238403, 0.05948669835925102, 1.0257481336593628, -0.11282545328140259, -0.4025545120239258, -0.20555007457733154, 0.44748005270957947, -1.4945307970046997, 0.8912542462348938, 1.8106180429458618, 0.47534215450286865, -0.49701905250549316, 0.6249334812164307, 0.7032354474067688, -0.15083934366703033, -0.03971463441848755, -0.21987445652484894, 0.16578486561775208, 0.8525235056877136, 0.06126568466424942, -0.2533535659313202, 0.6088864207267761, -0.7679145932197571, 0.29377713799476624, 0.9211841225624084, 1.0067576169967651, 0.441593736410141, 0.023758571594953537, -0.4986543655395508, 0.34943991899490356, -0.5037384033203125, 0.48942792415618896, 0.17912007868289948, 0.506393313407898, 0.3010372221469879, -0.275390625, -0.3596891462802887, -0.35743120312690735, -0.4819786548614502, -0.8116317987442017, 0.16729876399040222, 0.7381570339202881, -0.20146843791007996, -0.4701225757598877, -0.44304612278938293, -0.664495587348938, 0.10239937901496887, 0.769607663154602, 0.05103040859103203, -1.0970696210861206, -0.6509835720062256, 0.4175327718257904, 0.08443935960531235, 0.23401594161987305, 0.21806947886943817, 0.4158664047718048, -0.06582190841436386, -1.4921009540557861, 0.6662046909332275, 0.37182915210723877, -1.7853293418884277, -0.05214076489210129, -0.07562469691038132, 0.7415984869003296, 0.4027594327926636, 1.0140388011932373, -0.5698926448822021, 1.5308642387390137, -1.2284165620803833, -0.8873233199119568, -0.2704460918903351, -0.020197169855237007, 0.304820716381073, -0.12310396134853363, 0.4057183563709259, 0.26725631952285767, 0.1862560510635376, -0.21080027520656586, -0.18680405616760254, 0.36484095454216003, -1.3689024448394775, 0.09789424389600754, -0.781674325466156, 0.5370810627937317, -0.47532588243484497, 0.6883417963981628, 0.0828033983707428, 1.1813043355941772, -0.37481462955474854, 1.9035413265228271, -0.12574109435081482, -1.0005792379379272, -0.4508433938026428, 0.5700786709785461, -0.7353314161300659, -0.5689805746078491, -0.4955180883407593, -0.89431232213974, 0.3193117380142212, 0.07731104642152786, 0.2621358335018158, -0.34361574053764343, 0.17332591116428375, -0.05715493857860565, -0.014099566265940666, -0.9970501065254211, 0.44965529441833496, 0.5924243927001953, -1.9323303699493408, -0.002734158653765917, -0.0327339768409729, 0.5530233383178711, -0.9490167498588562, -0.1347111165523529, 1.3237192630767822, 1.2663159370422363, -0.19430023431777954, 0.5596639513969421, -0.4977478086948395, 1.1379022598266602, -0.6815384030342102, 0.5052469372749329, 0.09494943171739578, -0.045604899525642395, -0.7745842337608337, 0.21435463428497314, -0.33409783244132996, -0.479159414768219, -0.5513258576393127, -0.5271202921867371, 0.07437931001186371, 0.6425593495368958, 0.4602707326412201, 0.29764634370803833, 0.1519789695739746, 1.119896411895752, 0.33304500579833984, -0.2333916872739792, 1.204365849494934, -0.5769843459129333, -0.2813338339328766, 1.164792776107788, 1.205741047859192, -0.49372607469558716, -0.22187495231628418, 0.21329611539840698, -0.36463773250579834, 0.5351532697677612, 0.32738611102104187, -0.1696186363697052, -0.21255405247211456, 0.34562042355537415, -0.20609280467033386, -0.05993463099002838, -0.21631065011024475, -0.21058142185211182, -0.7207430005073547, 0.6684021949768066, -0.47925034165382385, 0.13760066032409668, -0.4485395550727844, -0.4726564884185791, -0.5107351541519165, -0.371932715177536, -0.3766736686229706, 0.5612375140190125, 0.5006357431411743, 0.28524449467658997, -0.8415365219116211, -0.6173771619796753, 0.7592878341674805, -0.7324415445327759, 1.030727744102478, 0.510242760181427, 0.2448296993970871, -1.1272889375686646, 0.7418997287750244, 0.16360127925872803, -0.4048728346824646, -0.13418053090572357, -1.7140536308288574, -0.6152080297470093, 0.14137235283851624, -0.4474159777164459, 0.9172172546386719, -0.021123744547367096, 1.151697039604187, 0.17965726554393768, -0.08325961232185364, -0.17779938876628876, -0.40922415256500244, -0.2921057641506195, -0.33330243825912476, -1.6258320808410645, -0.272255539894104, 0.30718687176704407, 0.8771895170211792, 0.9228496551513672, -0.6424562931060791, 0.07331462949514389, 0.62517249584198, -0.9346377849578857, -0.4539944529533386, -0.14989019930362701, 0.6371257901191711, 0.04057871922850609, -0.11474425345659256, -1.0764020681381226, -1.3911702632904053, 0.33154720067977905, -1.094980001449585, 0.047499194741249084, -0.48235857486724854, -0.9768320322036743, -0.17253488302230835, 0.05587070807814598, -0.1665315479040146, -0.3720601499080658, 0.15998448431491852, 0.8535434007644653, 0.6860135197639465, 0.24437955021858215, 0.43479228019714355, -0.507716953754425, 0.4205857217311859, 0.397358238697052, -0.1992068588733673, 0.8667399883270264, 0.42057666182518005, 1.5772043466567993, -0.2790394425392151, -1.0019900798797607, -0.001827790285460651, 0.43451830744743347, -0.3483763635158539, -0.04712885990738869, -1.0553516149520874, -0.5925674438476562, 0.560093104839325], [0.2716299891471863, 1.9378597736358643, -1.9707908630371094, -0.07027775794267654, 0.1018182709813118, 0.6830713152885437, 0.14081551134586334, 0.12874822318553925, -0.6393696069717407, -0.848108172416687, -0.5967137813568115, 0.06808449327945709, 0.018798483535647392, 0.4494878053665161, 0.4987258017063141, 1.3998603820800781, 1.2854030132293701, -0.06341433525085449, 0.19355757534503937, 0.7312001585960388, -0.5014523863792419, -1.1309441328048706, 0.06491797417402267, 0.19967271387577057, -0.33473843336105347, 0.023654606193304062, -1.457338571548462, -0.9047593474388123, -1.1282413005828857, -0.8519670367240906, 1.2536839246749878, 0.28106987476348877, 0.1395757645368576, -0.1558777540922165, -1.8707010746002197, -0.4782755970954895, 0.6304510831832886, 0.20354853570461273, -0.34717339277267456, 0.23611359298229218, 1.4023699760437012, 0.2850334346294403, -0.518805205821991, -1.7369582653045654, 1.1191848516464233, -0.002994721755385399, 0.6795684695243835, -0.7874767184257507, -0.03853783383965492, -0.9448371529579163, 0.8188810348510742, 0.0529063381254673, -0.04827991500496864, 0.5198966860771179, 1.2009358406066895, -0.7016285061836243, 0.251935213804245, 0.7152028679847717, 0.45565569400787354, 0.5181929469108582, 0.7654049396514893, -0.24820956587791443, 0.8794728517532349, 1.0183453559875488, 0.6456981897354126, -0.4455120861530304, 0.12711042165756226, 0.31790298223495483, -0.12184172868728638, -0.2273249477148056, 0.3631208539009094, 0.007603255100548267, -0.42413148283958435, -0.11539744585752487, -0.7213999629020691, 0.3948913812637329, 1.205801010131836, 0.49258777499198914, -0.2848481833934784, 0.031066378578543663, -0.889134407043457, 0.26312562823295593, 0.5804650783538818, 0.038804296404123306, -0.5120009779930115, -0.014045697636902332, 0.07208175212144852, -0.3308367133140564, -0.5651124119758606, 1.8764762878417969, 0.1787794828414917, 0.8353263735771179, 0.8659636378288269, -0.7884383201599121, -0.2999943196773529, -0.8751120567321777, 0.16958338022232056, -1.3622864484786987, -0.5228173732757568, -0.7447590231895447, -0.031763091683387756, -0.5271424055099487, 0.5234441757202148, 0.37338191270828247, 0.06832331418991089, 1.3013770580291748, 0.181487038731575, -0.7427215576171875, 0.26372894644737244, -0.11767417937517166, -0.36842578649520874, 0.04036611318588257, -1.3656911849975586, -1.1122597455978394, 0.019173547625541687, 1.4658316373825073, 1.8874608278274536, -0.062116291373968124, 0.2505062222480774, 0.7846857905387878, -0.7179259657859802, -0.4704720973968506, -0.5933560132980347, -0.21130609512329102, 1.1855597496032715, 0.16765107214450836, -0.6141304969787598, -0.15598635375499725, -0.021278884261846542, 0.3406537175178528, 1.1192609071731567, 0.4852631688117981, -0.12672409415245056, 0.9195183515548706, -0.41817107796669006, 1.473041296005249, -0.40524110198020935, -0.8779424428939819, -0.3202285170555115, 0.2905438542366028, 0.38863617181777954, -0.7213348150253296, -0.2532518804073334, -0.40079623460769653, -0.10412337630987167, -0.6371864080429077, 1.1790674924850464, -0.0419137142598629, -0.8154792189598083, 0.8593267202377319, -0.4892326593399048, -0.27885425090789795, 0.03198612853884697, 1.1678515672683716, 0.7961684465408325, -0.039734210819005966, 0.16452763974666595, 0.349168062210083, -0.10253918915987015, 0.16058748960494995, 1.0220868587493896, -0.3760681748390198, -0.6210490465164185, 0.031399328261613846, 0.7022969126701355, 0.24669261276721954, 0.9179385304450989, 0.8546888828277588, -0.03843645006418228, 0.7477677464485168, 0.16134725511074066, -0.5540549755096436, -0.5925832986831665, 1.181098222732544, 0.17095652222633362, -0.32519811391830444, 1.2020657062530518, -0.1599682867527008, -1.8598549365997314, -1.0063859224319458, 1.0346684455871582, -0.07579860091209412, 0.1919879913330078, -0.4378455877304077, 0.21724537014961243, -0.33280888199806213, 0.2839657962322235, -0.123445063829422, -1.1148293018341064, -1.4296313524246216, -0.18530254065990448, -0.46715834736824036, -1.1851660013198853, 0.5371993184089661, 0.15716001391410828, -1.0284885168075562, 0.4271625578403473, -0.2825576961040497, -0.6338146328926086, 0.44856929779052734, 0.5169180631637573, 0.017475347965955734, -1.0545259714126587, 0.059809207916259766, -0.4442700445652008, 0.4111751616001129, -0.9751678705215454, 0.5114967823028564, -0.9738864898681641, 0.1503743976354599, 1.0055372714996338, -0.5695411562919617, -1.348741054534912, 0.14949969947338104, 0.1499645859003067, -1.2692474126815796, 0.8377054333686829, 0.1453200876712799, -0.23652532696723938, 0.02887539751827717, 0.534411609172821, 0.19771932065486908, 0.1865837574005127, -0.0820332020521164, 0.5257711410522461, -0.11110147833824158, -0.5553139448165894, -1.603227138519287, -0.5503962635993958, -0.3000898063182831, -0.6942355632781982, -0.7683578133583069, 0.22159530222415924, 0.7276573777198792, -0.8265206217765808, 0.8080949783325195, -0.33989855647087097, -0.3205028474330902, -0.40688931941986084, 1.3494553565979004, 0.5111158490180969, 0.6475747227668762, -1.2834579944610596, -0.005991295445710421, -1.1565810441970825, -0.7383697032928467, 1.4202748537063599, -0.5926387906074524, 0.3647523820400238, 1.3777190446853638, 0.9796628952026367, -0.29511019587516785, 0.7284426689147949, 0.2566285729408264, -0.02225017361342907, -0.6415801048278809, -0.38612449169158936, -0.02313789166510105, -1.3781943321228027, 1.6932191848754883, 0.45381009578704834, -0.8487077355384827, 0.7379830479621887, -0.019500309601426125, -0.08524858951568604, -0.3352575898170471, -0.23026147484779358, -0.9215030074119568, 0.7089313864707947, -0.5085094571113586, -0.3241000771522522, 0.8221971988677979, 0.17146413028240204, 1.0206019878387451, -0.3413343131542206, -1.0280057191848755, -0.2557010352611542, 1.010788917541504, 0.2115633487701416, 0.8424239158630371, -0.40915125608444214, -0.9139524102210999, -0.7931910157203674, -0.23095804452896118, 1.0337070226669312, -0.2566666603088379, -0.6247161626815796, 0.9309271574020386, 0.6188156008720398, -0.39060866832733154, -0.10326913744211197, -0.009355323389172554, 0.1105865091085434, -0.3062174618244171, 0.06896747648715973, 0.33575838804244995, 0.8141629695892334, -0.6083991527557373, -0.7402823567390442, 0.18696050345897675, 0.5914597511291504, 1.244236707687378, 0.6770277619361877, 1.3851745128631592, -0.3103500008583069, 0.20144733786582947, -0.8418115377426147, 0.1339026540517807, -1.1102628707885742, -0.0543060377240181, -0.7063798308372498, -1.4684284925460815, 0.09512857347726822, -0.6890156865119934, 0.1848476082086563, 0.6853879690170288, 0.5110300183296204, 0.7925766110420227, 0.6093146800994873, -0.37653079628944397, -1.7041304111480713, -0.7272059321403503, -0.6241382360458374, -1.5058175325393677, 0.6691726446151733, 1.597350835800171, -1.2270936965942383, -0.3057643473148346, -0.049794942140579224, -0.4599135220050812, -0.023105086758732796, -0.20225682854652405, 0.5948153138160706, -1.4921083450317383, -0.8831988573074341, 0.11407860368490219, 1.7686976194381714, 0.4349656105041504, -0.3670571446418762, -0.749637246131897, 0.6894339919090271, 0.5065480470657349, 0.4805259108543396, -0.37876445055007935, 0.49446988105773926, -0.8059859871864319, 0.033620115369558334, 0.12046961486339569, 0.993886411190033, 0.2693963646888733, -0.5863215923309326, -1.187743902206421, -0.20080219209194183, -0.08474695682525635, -0.7498116493225098, 0.20393040776252747, -0.3549385368824005, 0.8983290791511536, -0.10842037200927734, 0.23802824318408966, 1.2241742610931396, -0.2217313051223755, -0.5399082899093628, -1.1659196615219116, 0.519301176071167, 0.7602221369743347, 1.4717692136764526, 1.107984185218811, 0.4559079110622406, 0.12130526453256607, -0.5158535838127136, 0.3438456356525421, 0.12409704178571701, 0.7616782188415527, 0.8168798089027405, -0.7259207367897034, -0.43162864446640015, -0.9964452385902405, 0.23676203191280365, 0.08273932337760925, -0.30083179473876953, 1.2160022258758545, -0.5992475748062134, -0.5700675249099731, 0.9347302317619324, 1.2245898246765137, -0.9500191807746887, -0.555553674697876, -0.1270681470632553, 0.674680233001709, -1.1604164838790894, 0.5604042410850525, -0.0068774232640862465, -0.6225007772445679, 0.26466965675354004, -0.9846709966659546, -0.9165198802947998, 0.19856242835521698, 0.6267994046211243, 1.08956778049469, -1.2184652090072632, 0.011715293861925602, -1.0655988454818726, 0.8585326075553894, 0.9236382842063904, 0.2308601438999176, 0.9162423014640808, 0.5515092611312866, -0.47231510281562805, 0.12762044370174408, 0.22013816237449646, 1.5391756296157837, -0.35652515292167664, -0.24011336266994476, -0.4090785086154938, -0.39318352937698364, -0.41814783215522766, -0.21701569855213165, -0.453444242477417, 0.26502808928489685, -0.6791994571685791, -0.07832609862089157, -0.341850221157074, -0.5610896348953247, 2.2088840007781982, -0.18123067915439606, -0.08046893775463104, -0.4693397879600525, 0.2081020325422287, -0.3350733518600464, 0.3202444911003113, 0.6167738437652588, -0.4487941563129425, -0.4294980466365814, -0.13348977267742157, 0.9217457175254822, 0.5809906125068665, -0.03416997939348221, 0.5213882327079773, 0.5880311131477356, 0.140165776014328, -0.0016507264226675034, 0.8439173698425293, 0.17215083539485931, 0.8691949248313904, 0.5144983530044556, 1.1269234418869019, -0.6351746320724487, -0.5245665907859802, 1.5004353523254395, -0.19428467750549316, 0.4070202708244324, -0.13629259169101715, 0.31804776191711426, 1.1261777877807617, -1.2129454612731934, -0.8382225632667542, 0.909561276435852, -0.8109909296035767, 0.032793596386909485, 0.39691343903541565, 0.4004902243614197, -1.2913391590118408, 0.3834388852119446, 0.16412398219108582, 0.033155657351017, 0.7528411746025085, -0.3971886932849884, 0.4182251989841461, 0.6805531978607178, -0.6633158326148987, 0.6142531037330627, -0.9875978231430054, 0.4738410413265228, -0.31073975563049316, -0.14277248084545135, 0.10208715498447418, 0.5780931115150452, 0.2870868146419525, 0.872564435005188, 0.006463420111685991, -1.0274819135665894, -0.10076936334371567, -1.0597469806671143, 0.44577717781066895, -1.171809434890747, 0.22219379246234894, -0.360612154006958, -0.3126806318759918, 0.22373110055923462, 0.5779585838317871, -0.5552456378936768, -0.7505347728729248, -1.0433597564697266, -0.7253741025924683, 1.2969942092895508, 0.3308974504470825, 0.6820834279060364, 0.36340975761413574, 1.0107864141464233, 0.7754538655281067, 0.07164782285690308, -0.49117669463157654, -0.04175736755132675, 0.1896294355392456, 0.32352471351623535, -0.6278379559516907, -0.3031497597694397, -0.19818761944770813, 0.20266634225845337, 0.9445635080337524, 0.6931564211845398, 0.3448824882507324, 0.44441989064216614, 1.4107434749603271, -0.5083453059196472, -0.5759080052375793, 0.05140167847275734, -0.32837268710136414, 0.4145607054233551, 0.4809052348136902, -1.3242555856704712, 0.1328694075345993, -0.7316083908081055, -1.691141963005066, 1.8342145681381226, 0.12271015346050262, 0.12733115255832672, 0.6074780225753784, 0.9126275181770325, -0.3099243938922882, 0.9530332684516907, 0.11575542390346527, 0.38002291321754456, -0.22291399538516998, -0.13911886513233185, -0.6802358627319336, -0.18411821126937866, 1.1938444375991821, -0.03250192105770111, -0.6849574446678162, 0.27303722500801086, -0.9277379512786865, 0.153151273727417, -0.9915623068809509, -0.2509545683860779, 0.8903512358665466, 0.8227643966674805, 0.839390218257904, -0.7083544135093689, 0.5978651642799377, -0.719525158405304, 0.31714314222335815, 0.3141489624977112, 0.5160397291183472, 0.3627317547798157, -0.5639669299125671, 0.511470377445221, -0.7788076996803284, 0.43693268299102783, 0.25969091057777405, -0.7344269752502441, 1.074629306793213, 0.8020516633987427, -0.4808347523212433, 1.2252857685089111, -0.36339953541755676, -0.36683908104896545, -0.8499307632446289, -0.3082652688026428, 1.1583349704742432, -1.1419957876205444, -1.1348549127578735, -0.25324100255966187, -0.67128586769104, -0.12333518266677856, 0.5298714637756348, -0.23443986475467682, -1.035166621208191, -0.9183358550071716, -0.27214688062667847, 0.5230721831321716, 0.2607749402523041, -0.7764040231704712, -0.028450530022382736, 0.1300881952047348, -0.9260928630828857, 0.06069780886173248, 0.5126834511756897, -1.546539545059204, -0.1152758002281189, -1.218195915222168, 0.5678155422210693, -0.3749036490917206, 0.4788326025009155, 0.04580904170870781, 0.9052317142486572, -1.202774167060852, -0.7006356716156006, -0.5604134798049927, -0.7368457317352295, 0.7251110076904297, 0.8389554619789124, -1.1071432828903198, 0.6532530188560486, -0.6915136575698853, -0.3959275484085083, -0.508527398109436, -0.4072655737400055, -0.4446215331554413, 0.5400794148445129, -0.13943055272102356, -0.07298161089420319, 0.572694718837738, 1.6180223226547241, 1.182674765586853, 1.4018263816833496, 0.07419035583734512, 1.361075520515442, -0.8119013905525208, -0.2985868453979492, -0.7033078670501709, 0.25306251645088196, -1.3017187118530273, -0.8616852760314941, 0.12619787454605103, -0.6602494716644287, -0.8874052166938782, 0.07807981967926025, 0.6988332271575928, -0.8429610729217529, 0.4365698993206024, 0.1241404339671135, 0.04404756799340248, -0.763018012046814, 0.3590603172779083, -0.008997812867164612, -0.9712598919868469, -0.013998571783304214, -0.11281754076480865, 0.2309168428182602, -0.8494380116462708, -0.79024338722229, 0.35412323474884033, 0.04957973212003708, -0.33293309807777405, -0.06124221533536911, 0.32329046726226807, 0.33290043473243713, -0.5328568816184998, 1.0727461576461792, 0.7995957732200623, -0.434301495552063, 0.23374295234680176, -0.1592419594526291, -0.16894342005252838, -0.23654645681381226, -0.6372815370559692, 0.38890284299850464, -0.7067145705223083, 0.8058156967163086, 0.15970061719417572, 0.15087267756462097, -0.15691576898097992, 0.5750005841255188, 0.2507108449935913, 0.675504207611084, 1.305929183959961, -0.7739053964614868, -0.8074561953544617, 1.243275761604309, 0.4952385425567627, -1.10185968875885, 0.44551074504852295, -0.025623686611652374, -0.584985613822937, 0.17021986842155457, 0.4341234564781189, 0.8353365063667297, -0.7133334279060364, 0.7164363861083984, 0.40922319889068604, -0.014269515872001648, -0.14256320893764496, -0.3998277187347412, -1.8025087118148804, -0.13378947973251343, -0.0016506239771842957, -0.13691522181034088, 0.6612281203269958, -1.0681606531143188, -0.9922338128089905, 0.3639048933982849, 0.39730215072631836, -0.3301078677177429, -0.8330240249633789, 0.5345970392227173, -0.44016000628471375, -0.10445767641067505, 0.6363768577575684, 0.49756184220314026, 1.3020325899124146, 0.2567007541656494, -0.0439789704978466, -0.7386801838874817, 0.11555293202400208, 0.8220387101173401, -0.05360759422183037, -0.1349267065525055, -0.34526127576828003, 0.4831487834453583, 0.21505571901798248, -0.19959671795368195, -0.1127350851893425, -0.6466765403747559, -0.12600445747375488, -0.3605845868587494, -0.26260343194007874, 0.3275968134403229, 0.13340705633163452, 0.8545044660568237, -0.7021461725234985, -0.9220292568206787, -0.8278347253799438, 0.1457248479127884, -0.30930471420288086, 0.9890583157539368, 0.27639949321746826, 0.8077155947685242, -0.29262399673461914, -0.6589390635490417, -0.23762832581996918, -0.7448197603225708, 0.4692325294017792, -0.0664660856127739, 0.4327560365200043, 0.0916377529501915, -0.41266798973083496, 0.45296958088874817, -1.2597250938415527, 0.001851685345172882, -0.33031195402145386, 0.2669964134693146, -0.4349677860736847, -0.9871876835823059, -0.7910919189453125, -1.0106581449508667, 0.1201682984828949, 0.48087450861930847, 0.7230570912361145, 0.5639845728874207, 0.5802404284477234, -1.18172025680542, -0.09919024258852005, 1.040894865989685, -0.5826483964920044, 0.17690257728099823, 1.707197666168213, 1.0076406002044678, 0.27496904134750366, -0.15624785423278809, 0.007129565812647343, 0.5420845746994019, -1.2832547426223755, -0.027694065123796463, -0.5951235890388489, -0.3255907893180847, -0.3425292372703552], [0.3334190249443054, 1.8408290147781372, -1.7979404926300049, -1.0414823293685913, -0.0005459459498524666, -0.525019109249115, 0.788112461566925, 0.43000704050064087, -0.29931339621543884, -0.7464616894721985, -0.8297680020332336, -0.05110343545675278, 0.9569726586341858, 0.7332573533058167, 0.27570533752441406, 0.5026518702507019, 0.7533797025680542, -0.04848892241716385, 0.525977611541748, 0.7833502292633057, 0.22960799932479858, -1.3379521369934082, 0.41296911239624023, -0.07858466356992722, 0.3269295394420624, 0.0916893258690834, -1.0493892431259155, -0.2139812409877777, -1.1370649337768555, -1.975278615951538, 1.2620567083358765, 0.6780591011047363, 0.353148490190506, -0.250324010848999, -1.5481624603271484, -0.9568122625350952, 0.5561535358428955, -0.019870754331350327, -0.7046836018562317, 0.8441654443740845, 1.626387357711792, -0.18227805197238922, -0.84536212682724, -0.8673904538154602, 0.9880071878433228, -0.5928212404251099, 0.3482338488101959, -1.026308298110962, -0.11169281601905823, -1.5293476581573486, 0.43981432914733887, 0.013859105296432972, -0.1110030859708786, 1.0700922012329102, 0.8185846209526062, -1.0068429708480835, 0.4436299204826355, 0.7890673875808716, -0.21025590598583221, 0.7342664003372192, 0.9070760607719421, -0.0031643109396100044, 0.43781009316444397, 0.7220231890678406, 0.09906399995088577, -0.2965361773967743, 0.9754064679145813, 0.5670037865638733, 0.26557981967926025, 0.8688219785690308, 0.7247104644775391, 0.2519421875476837, -0.35544899106025696, 0.18152198195457458, -0.15792639553546906, -0.37086164951324463, 0.22268171608448029, 0.6895763874053955, -0.3686327338218689, 1.4048519134521484, -0.35731351375579834, 0.09569796174764633, -0.23424562811851501, -0.3129187524318695, -0.13480645418167114, 0.037136662751436234, -0.4090626537799835, -0.5869958400726318, -0.36395445466041565, 1.5610076189041138, 0.13875561952590942, -0.08283808827400208, 0.46416378021240234, -0.43696874380111694, -0.5484653115272522, -0.9534568786621094, 0.4847048819065094, -0.7992455363273621, -0.37744107842445374, -0.716550886631012, -0.2244666963815689, -0.18269628286361694, 1.0616205930709839, 0.6256149411201477, 0.5619068145751953, 1.391194462776184, 0.9173288345336914, -1.3375493288040161, -0.4031594395637512, 0.2731170952320099, 0.04919165372848511, 0.10234884172677994, -0.8127318620681763, -0.9484732747077942, -0.4184790849685669, 0.9591607451438904, 0.872348427772522, -0.10375744849443436, 0.7142546772956848, 0.448207288980484, -0.34837085008621216, -0.9590675234794617, -0.7939853072166443, 0.08869931101799011, 1.5257829427719116, 0.15358582139015198, -0.6011655330657959, 0.17429614067077637, 0.34879299998283386, -0.6697434186935425, 0.12478100508451462, -0.0773129016160965, -0.5266097187995911, 0.6718327403068542, -0.22027496993541718, 1.3192543983459473, -0.603384792804718, -1.2165461778640747, 0.6867413520812988, -0.06728558987379074, -0.09145208448171616, -0.1544327735900879, -0.7366585731506348, -0.5907362103462219, 0.21450287103652954, -0.1655454933643341, 0.4694986641407013, -0.3651154339313507, -0.3592343330383301, 0.891446590423584, -1.3901019096374512, -0.027460282668471336, -0.4913928806781769, 1.215477705001831, 0.6593068838119507, 0.20699554681777954, 0.2187020480632782, -0.2905674874782562, 0.152180016040802, 0.5105965733528137, 0.821674108505249, 0.1589699387550354, -0.5862846970558167, 0.9540587067604065, 0.5800046920776367, 0.060503605753183365, 0.9108527302742004, 0.5402639508247375, -0.5899251103401184, 0.8024207353591919, -0.4708150625228882, -0.49137604236602783, -0.8620401620864868, 0.5452237725257874, 0.27581676840782166, -0.23625735938549042, 0.9776188731193542, -0.43904030323028564, -0.8533457517623901, -0.5645706057548523, 1.0053348541259766, -0.540411114692688, 0.011005629785358906, 0.21108968555927277, -0.030635757371783257, -0.26962125301361084, -1.0519312620162964, -0.7976141571998596, -0.5232551693916321, -0.8225666880607605, -0.9014574885368347, -0.2373083233833313, -0.9381224513053894, 1.0319855213165283, -0.7471194267272949, -0.5761736035346985, 0.5606555342674255, -0.4916374683380127, -0.5852291584014893, 0.3607737123966217, 0.32726967334747314, -0.20024478435516357, -1.5467092990875244, -0.23042240738868713, -0.36037421226501465, 0.6211014986038208, -0.12699317932128906, 0.2026478350162506, -0.7090694904327393, 0.23230886459350586, 1.4906560182571411, -0.3079495429992676, -1.1388450860977173, 0.12359768152236938, 0.17212940752506256, -1.2699898481369019, 0.013488790951669216, -0.16243956983089447, 0.1904277503490448, -0.01842084899544716, 0.1883544772863388, 0.27351030707359314, 0.4324115812778473, 0.132688507437706, 0.3740512430667877, -0.08062132447957993, -1.16128408908844, -0.23893548548221588, -0.33952999114990234, 0.32665199041366577, -0.6093334555625916, -0.9294437766075134, 0.6682776212692261, 0.6616576313972473, -0.7379767298698425, 0.5398364663124084, -0.98255854845047, 0.7408765554428101, 0.3169322609901428, 1.2120708227157593, 0.897260844707489, 0.11250606179237366, -0.510545015335083, -0.03120841644704342, -0.8230271935462952, -0.19210797548294067, 0.5982602834701538, -0.5928502082824707, -0.2713780105113983, 1.4202402830123901, 0.48989757895469666, -0.42080679535865784, 0.8574966192245483, -0.6170955896377563, -0.020356133580207825, -1.2503336668014526, 0.1678721308708191, -0.1652689129114151, -0.4691942632198334, 1.2651007175445557, 0.4195713400840759, -1.0650306940078735, -0.23149776458740234, -0.1538078337907791, 0.26798006892204285, -0.7828642129898071, -0.27922773361206055, -0.20710915327072144, 0.7598503232002258, -0.3037329614162445, 0.033991582691669464, -0.16946221888065338, -0.7045051455497742, 1.506610631942749, -0.20490719377994537, -0.23896357417106628, 0.13516999781131744, 1.2806780338287354, 0.009369014762341976, 0.9890422821044922, -0.6327876448631287, -1.9077056646347046, -1.4343730211257935, -0.6897619366645813, 1.3396273851394653, -0.06470201164484024, -0.537447988986969, 0.45061194896698, 1.4572458267211914, -0.4026890993118286, 0.8853451013565063, 0.1396840512752533, 0.04509836062788963, 0.17036984860897064, 0.4700714647769928, 0.12473580986261368, -0.02138872817158699, -0.5713522434234619, -0.8769077062606812, -0.2724195718765259, 0.5061737298965454, 0.8598513007164001, 0.963637113571167, 1.3420543670654297, -0.16154992580413818, 0.25544553995132446, -0.8304087519645691, 0.31659677624702454, -0.391448974609375, 0.2939918339252472, -0.17219439148902893, -0.9017881751060486, 0.09891753643751144, -0.21465995907783508, 0.2373959869146347, 0.4263359308242798, 0.4322851896286011, 0.603081226348877, 0.4939716160297394, -0.49586525559425354, -1.167167067527771, -0.7229800820350647, 0.1391892284154892, -1.261523723602295, 0.5371131896972656, 0.7881342172622681, -1.171246886253357, 0.12912395596504211, 0.13861185312271118, -0.2002180814743042, -0.004813791252672672, -0.08625553548336029, 0.4530782699584961, -0.9806379079818726, 0.44414815306663513, -0.455066978931427, 1.3492431640625, -0.38523781299591064, 0.06885406374931335, -0.4393778145313263, 0.7372402548789978, -0.09813010692596436, -0.006483287550508976, -0.21434342861175537, 0.4589484930038452, -0.3513546884059906, 0.1068413257598877, -0.06921211630105972, 0.1793527603149414, 1.0509285926818848, -0.3327091336250305, -0.6929826140403748, -0.869512140750885, -0.17440667748451233, -0.6474826335906982, 0.47003403306007385, 0.18161872029304504, 1.2636866569519043, -0.07340215891599655, -0.4094786047935486, 1.0838209390640259, -0.14040310680866241, 0.37008965015411377, -0.5315303206443787, 0.9968949556350708, 0.45172014832496643, 1.7377256155014038, 0.9021387100219727, -0.30513861775398254, 0.8281757831573486, -0.28314146399497986, -0.09104147553443909, -0.2916043698787689, 0.4617859125137329, 0.240465447306633, -0.14339424669742584, -0.5371282696723938, 0.13809774816036224, 0.2770281732082367, -0.4798796474933624, -0.5218200087547302, 0.9742332100868225, 0.10566453635692596, -0.33467593789100647, 1.098660945892334, -0.0808434933423996, -0.15396752953529358, -0.28623390197753906, 0.03582196682691574, 0.1325995922088623, -0.519382119178772, -0.14649955928325653, -0.16460877656936646, -0.6149947643280029, 0.3100724220275879, -0.2749706208705902, -0.840979814529419, -0.46227535605430603, 0.4358566105365753, 1.3398823738098145, -1.4147896766662598, -0.6241315007209778, -0.3040822446346283, 0.6157984733581543, 0.9258010387420654, 0.2085428684949875, 0.9856663942337036, 0.22262482345104218, -0.5437940955162048, 0.34381169080734253, 0.613315224647522, 1.3880127668380737, -0.24271897971630096, -0.26816585659980774, -0.20336902141571045, -0.37813395261764526, 0.23016402125358582, -0.6448761224746704, -0.9747448563575745, 0.0745922103524208, -0.7629749774932861, -0.05607791990041733, 0.5468653440475464, -0.42479580640792847, 1.4591026306152344, -0.4108589291572571, 0.011607213877141476, 0.11941961199045181, 0.20593443512916565, -1.010233998298645, -0.19990554451942444, 0.06775856763124466, -0.04346640408039093, -0.2712154686450958, 0.37436798214912415, 0.3491038382053375, 0.6998201608657837, 0.6110222339630127, 0.45932939648628235, 0.48814070224761963, 0.39439892768859863, -0.23154713213443756, 0.5252939462661743, 0.5219303369522095, 0.8040488958358765, 0.6714391112327576, 1.5689235925674438, 0.12739169597625732, -0.9550977945327759, 1.02920401096344, -0.18527504801750183, 0.5807302594184875, 0.5595016479492188, -0.02852565050125122, 1.3262183666229248, -1.0094094276428223, 0.17043879628181458, 1.1232670545578003, -0.5255648493766785, 0.3356458246707916, 0.2915107309818268, -0.189676433801651, -1.4129632711410522, -0.3202202618122101, 0.38378024101257324, -0.4892844557762146, 1.2958136796951294, -0.005693260580301285, 0.2891349196434021, 0.8270397782325745, -0.34834668040275574, 0.1375192552804947, -1.2076377868652344, -0.03429390490055084, 0.22108829021453857, 0.03862982988357544, 0.41920047998428345, 0.8931464552879333, 0.9114581346511841, 1.0911166667938232, -0.7979124188423157, -1.6450570821762085, 0.09966258704662323, -0.8524611592292786, 0.25424033403396606, -0.39171746373176575, -0.4867793023586273, -0.7291246056556702, -1.0899276733398438, 0.02675705775618553, -0.7611295580863953, -1.0538588762283325, -0.30464741587638855, -0.12756124138832092, -1.338943600654602, 0.326220840215683, -1.0604877471923828, 0.9495723247528076, 0.46185946464538574, 0.4338623285293579, 0.6686052680015564, 0.013450216501951218, -0.8033345341682434, 0.23884259164333344, 0.06029147654771805, 0.3643161952495575, 0.21165594458580017, -0.3489760756492615, -0.6528406739234924, 0.6166228652000427, 1.148749589920044, 0.21280571818351746, 0.08631888031959534, 0.35418668389320374, 1.7563576698303223, -0.7949938774108887, -0.5939011573791504, 0.6236463189125061, -0.7717180252075195, 0.627616822719574, 0.1836841106414795, -0.9955337643623352, 0.3927219808101654, -0.033127423375844955, -2.1204397678375244, 1.3326705694198608, 0.185487300157547, 0.04937593638896942, 0.5896927714347839, 0.46856629848480225, 0.2241402268409729, 0.6768608689308167, -0.6089712381362915, -0.42715075612068176, 0.2960273325443268, -0.47854915261268616, -0.7901099324226379, 0.7189560532569885, 1.2428526878356934, 0.15394318103790283, -0.8506629467010498, 0.44966521859169006, -0.27765533328056335, -0.13860727846622467, -0.31668421626091003, -0.12699690461158752, 0.8626516461372375, 0.44464316964149475, 0.36496707797050476, -1.0833133459091187, 0.44601526856422424, -0.859551191329956, 0.43109798431396484, 0.34030917286872864, 0.7171826958656311, 0.7410513162612915, -0.27084723114967346, 0.3458555042743683, -0.08960143476724625, -0.5700292587280273, -0.5087192058563232, -1.190165400505066, 0.8803419470787048, -0.33439117670059204, -0.3453204333782196, 0.022586174309253693, -0.46139732003211975, -0.2042292356491089, -0.39730241894721985, 0.8533762693405151, 0.48416996002197266, -1.1262825727462769, -0.6987108588218689, 0.04481135308742523, -0.7613378763198853, 0.08280592411756516, 0.7270792126655579, -0.22613009810447693, -0.9892118573188782, -1.0925344228744507, -0.02368774265050888, -0.09013360738754272, 0.7447690367698669, -0.28246578574180603, 0.15338487923145294, -0.30900081992149353, -1.6540799140930176, 0.629689633846283, -0.13894446194171906, -1.449448585510254, -0.41751375794410706, -0.885201632976532, 0.7016091346740723, -0.018811339512467384, -0.054202623665332794, 0.24931202828884125, 1.2760188579559326, -0.6024713516235352, -0.705411970615387, -0.5457589626312256, -0.5097823143005371, 0.292622447013855, 1.4885588884353638, -0.9207865595817566, 0.7567400932312012, 0.15988881886005402, -0.6070716381072998, -0.19975319504737854, -0.3033539354801178, -1.070908546447754, 0.21549883484840393, 0.25634369254112244, -0.18603576719760895, 0.6113758683204651, 1.4566577672958374, 0.20461174845695496, 1.1249700784683228, 0.7127373814582825, 2.014984130859375, -0.6691578030586243, -0.8283072710037231, -0.6029520034790039, 0.790681004524231, -0.7224436402320862, -0.743356466293335, -0.39183303713798523, -0.5752395391464233, -0.19024010002613068, 0.10977593064308167, 0.8628540635108948, -0.702957808971405, 0.5862231254577637, 0.27618664503097534, -0.733273983001709, -1.197922706604004, 0.8245530128479004, 0.6291692852973938, -1.556523323059082, 0.05837653577327728, 0.21825604140758514, 0.41612058877944946, -0.9598617553710938, -0.05650228634476662, 0.8132143020629883, 0.26848098635673523, 0.4492444694042206, 0.2694215178489685, -0.1072075366973877, 0.44336235523223877, -0.45743343234062195, 0.8327332735061646, 1.115692138671875, -0.28813958168029785, 0.14331048727035522, 0.9617640972137451, 0.17164264619350433, 0.2066143900156021, 0.13401299715042114, -0.8979818224906921, -0.48891931772232056, 0.7731665968894958, -0.10709120333194733, 0.16359838843345642, -0.5800333023071289, 0.873321533203125, 0.62840735912323, 0.27348044514656067, 1.3234843015670776, -0.3702090084552765, -0.7780998945236206, 0.5798372626304626, 0.8008397221565247, -0.5657570362091064, 0.2557336986064911, 0.2153017222881317, 0.5931148529052734, 0.22527408599853516, 0.5508748292922974, 0.4485268294811249, -0.3666287362575531, 0.7281222343444824, 0.40086451172828674, -1.1079427003860474, -0.27694958448410034, -0.5019690990447998, -1.5397357940673828, -0.4437902271747589, 0.09135741740465164, -0.9344077706336975, 0.41032469272613525, -0.7724291086196899, -0.771501362323761, -0.5238510370254517, -0.9449048638343811, 0.0708952397108078, -1.049998164176941, 0.25767961144447327, -0.965663731098175, -0.11798490583896637, 1.09619140625, -0.11467470228672028, 1.2920303344726562, 0.15067540109157562, -0.10964661836624146, 0.1623939573764801, 0.16630922257900238, 0.20676735043525696, -0.04641595110297203, -0.13139714300632477, -1.117010474205017, -0.10543052852153778, -0.4280325174331665, -0.42751386761665344, 0.6148802638053894, -0.5252954959869385, 0.2944365441799164, -0.2596719264984131, -0.12172320485115051, 0.17133623361587524, 0.049441032111644745, 0.47167521715164185, -0.5198290944099426, -0.9780421853065491, -0.31241700053215027, -0.07028871774673462, 0.39872896671295166, 0.8255195021629333, -0.37257739901542664, 0.8913904428482056, 0.0704863891005516, -0.4536049962043762, -0.5250786542892456, -0.5418992042541504, 0.7239956855773926, -0.326462984085083, -0.0823444128036499, -0.6208831071853638, -0.8998677134513855, -0.0524057112634182, -1.3421300649642944, -0.06822162121534348, -0.9606426954269409, -0.8673550486564636, -0.027454480528831482, -0.5077983140945435, -1.0866841077804565, -0.5489548444747925, 0.0004555918276309967, 0.37514159083366394, 0.14662882685661316, 0.45993292331695557, -0.3610151410102844, -0.4524039030075073, 0.09365793317556381, 0.762836754322052, 0.7039995193481445, 0.6744648218154907, 1.5124931335449219, 1.6636027097702026, 0.8981133103370667, -0.41268399357795715, 0.015654172748327255, 0.33548641204833984, -0.8720369338989258, -0.4062229096889496, -1.0124763250350952, 0.046117428690195084, 0.3962322771549225], [0.18413449823856354, 2.0837111473083496, -1.7279754877090454, -0.1171262338757515, 0.4953274428844452, 0.30922743678092957, 1.1506788730621338, 0.04109163209795952, 0.006524684838950634, -1.2793583869934082, -0.7456907629966736, 0.35674723982810974, 0.3744751214981079, 0.6219109892845154, 0.20853666961193085, 1.2353953123092651, 0.8602384328842163, 0.1314619779586792, -0.011568216606974602, 0.6846189498901367, 0.14034435153007507, -1.7445895671844482, 0.3121461868286133, -0.3654906153678894, -0.14541397988796234, -0.32416942715644836, -1.3600478172302246, -0.21130944788455963, -1.4288575649261475, -0.3468471169471741, 1.209473729133606, -0.13708028197288513, 0.16035443544387817, 0.19332483410835266, -1.910096287727356, -0.08002263307571411, 0.6067988872528076, -0.1390359103679657, 0.7875328063964844, 0.6649031639099121, 1.357032299041748, -0.3154314160346985, -0.3137621283531189, -0.9274731874465942, 1.019275426864624, -0.4377083480358124, 0.8995318412780762, -0.9391233921051025, 0.061274491250514984, -1.2754216194152832, 0.8052161335945129, -0.09526826441287994, -0.12908504903316498, 1.266790747642517, 1.5315735340118408, -1.6500130891799927, 0.5707104802131653, 0.3458419740200043, -0.21084722876548767, 0.576653778553009, 0.6840120553970337, 0.9073731899261475, 1.0789028406143188, 1.1846879720687866, 0.4342220723628998, -0.19788506627082825, 0.10817424952983856, -0.19881153106689453, 0.44511720538139343, 0.6480082273483276, 0.4192187190055847, 0.23001240193843842, -0.2479216456413269, 0.3304380476474762, -0.27768686413764954, 0.9536049962043762, 0.5238373279571533, 0.1867009699344635, -0.5403819680213928, 1.0273534059524536, 0.3561916947364807, -0.04321634769439697, -0.41357260942459106, -0.23415029048919678, -0.3660060167312622, -0.18032674491405487, 0.45477408170700073, -0.42505770921707153, -0.8769945502281189, 1.60139000415802, 0.1806415617465973, 0.2372138798236847, 0.20662976801395416, -0.169538214802742, -0.06697457283735275, -0.9998188614845276, -0.24056841433048248, -0.4978923797607422, -0.020016444846987724, 0.06201544404029846, -0.5515591502189636, -0.655975878238678, -0.3804985582828522, 0.7854217290878296, 0.8255688548088074, 1.169260025024414, -0.10719900578260422, -0.9722893834114075, -0.1332821249961853, 0.3167910575866699, -0.12646150588989258, -0.37941774725914, -0.7631214261054993, -1.1016343832015991, -0.3863660395145416, 1.4259670972824097, 1.0355414152145386, -0.012689891271293163, 0.639690637588501, 0.8093799352645874, -0.3854685425758362, -1.0261768102645874, -0.5955295562744141, -0.4038293659687042, 1.400387167930603, 0.489761084318161, -0.848315954208374, -0.15015222132205963, -0.2813178598880768, 0.04925618693232536, 0.517798662185669, -0.09323276579380035, -0.3280741572380066, 0.5530639290809631, -0.6436508893966675, 1.4494905471801758, -0.6874962449073792, -1.025863528251648, 0.4364235997200012, 0.17623840272426605, 0.632725715637207, 0.10775774717330933, -0.6553841829299927, -0.6299934387207031, 0.25794148445129395, -0.11343885213136673, -0.05862511321902275, -0.12969328463077545, -0.5071772933006287, 0.5683485865592957, -1.8576958179473877, 0.6033258438110352, 0.19155742228031158, 1.2644362449645996, 0.7645273208618164, -0.931571900844574, 0.06728431582450867, 0.20781543850898743, 0.09299518913030624, -0.2512337565422058, 0.7857160568237305, -0.008542587980628014, -0.4316943883895874, 0.6286205053329468, 0.4225371479988098, -0.4701515734195709, 0.3408922851085663, 0.33663010597229004, -0.006360780447721481, 0.8550477027893066, -0.28760820627212524, -0.21657627820968628, -0.5290160179138184, 0.16677866876125336, 0.013586228713393211, -0.8125803470611572, 0.693678617477417, 0.25852206349372864, -1.1526525020599365, -1.101862907409668, 1.137142539024353, -0.4050225615501404, -0.025422554463148117, 0.03429937735199928, -0.12605471909046173, 0.09868774563074112, -0.28782153129577637, -0.12602360546588898, -0.8835120797157288, -0.8668452501296997, -0.18717272579669952, -0.6683947443962097, -0.9419469237327576, 0.7848024964332581, -0.8025608062744141, -0.8446221351623535, 0.5072183609008789, 0.05937228724360466, -0.3588467836380005, -0.1404784470796585, -0.20850929617881775, -0.5300373435020447, -1.2602779865264893, -0.02522519789636135, -0.2707577049732208, 0.4630768895149231, -0.08451381325721741, -0.1060059517621994, -0.4655739963054657, -0.042532000690698624, 0.6372015476226807, -0.372590571641922, -1.3316594362258911, 0.007095403037965298, -0.130097895860672, -1.3400648832321167, 0.09468820691108704, -0.2440546452999115, -0.5382346510887146, 0.08184270560741425, 0.61396324634552, -0.11746512353420258, 1.0034937858581543, -0.14070847630500793, 0.8326869606971741, -0.5652668476104736, -0.6953075528144836, -0.47815626859664917, -0.3182532787322998, 0.1946299523115158, -0.11784950643777847, -0.6645117402076721, 0.6869974732398987, 0.42622196674346924, -0.18245156109333038, 0.8966456651687622, -0.331574410200119, 0.42428064346313477, 0.24126258492469788, 0.8012380599975586, 0.7001830339431763, 0.15512514114379883, -0.9523499011993408, -0.5593985319137573, -0.5929757952690125, -0.6288846731185913, 0.22011002898216248, -0.10544996708631516, -0.30498504638671875, 1.2616407871246338, 1.1858892440795898, -0.45450910925865173, 0.7317366600036621, -0.6159157156944275, 0.06483792513608932, -0.8954948782920837, -0.05493911728262901, 0.07574496418237686, -0.5309841632843018, 0.9794313311576843, 0.21955791115760803, -1.0629839897155762, -0.009679947048425674, -0.5863623023033142, 0.3286862373352051, -0.7326334118843079, -0.29306715726852417, -0.9709829688072205, 0.8193783760070801, -0.5022976398468018, 0.006192801520228386, -0.5397099256515503, -0.7737376093864441, 0.7158889770507812, -0.03472251445055008, -0.3514823913574219, 0.07121795415878296, 1.462058424949646, 0.06310868263244629, 0.9042552709579468, -0.49171000719070435, -1.6919968128204346, -1.0376852750778198, 0.24298644065856934, 0.8481622338294983, -0.01950981840491295, -0.648128092288971, 0.3828018605709076, 0.8918812274932861, -0.472980797290802, 0.7920774817466736, 0.2833281457424164, 0.12451616674661636, -0.11147486418485641, 0.3077766001224518, -0.2824689745903015, 0.27581125497817993, -0.5435287952423096, -0.7812063694000244, -0.1968730241060257, 0.2758351266384125, 1.004928469657898, 1.0776230096817017, 0.76332026720047, -0.102704256772995, -0.32564449310302734, -0.6968367099761963, 0.22947773337364197, -0.867864727973938, -0.3842129707336426, -0.1377880722284317, -1.0368766784667969, 0.13530635833740234, -0.32338130474090576, -0.04790221154689789, 0.9660369157791138, -0.1168166771531105, 0.10769058018922806, 0.837171196937561, -0.07751597464084625, -0.9649884700775146, -0.36142590641975403, -0.5789679884910583, -0.9306766390800476, 0.6290889382362366, 1.1162047386169434, -0.9115285873413086, 0.2681005001068115, 0.8792864084243774, 0.18364006280899048, -0.4262498915195465, -0.40941929817199707, -0.0374448224902153, -0.9099858403205872, -0.06680111587047577, -0.6908400058746338, 1.4825773239135742, 0.06930190324783325, 0.09108806401491165, -0.1666228324174881, 0.28436505794525146, 0.46384546160697937, -0.48133230209350586, -0.5018265843391418, -0.26205500960350037, -0.7275223135948181, -0.412771999835968, -0.17586718499660492, 0.5230540633201599, 0.34240978956222534, -0.3716873824596405, -0.964122474193573, -0.28394636511802673, -0.15671345591545105, -1.0083223581314087, 0.13390608131885529, -0.005493019707500935, 1.1297712326049805, -0.449228435754776, 0.30173972249031067, 0.7828348875045776, 0.30518588423728943, 0.6403894424438477, -0.8102409839630127, 0.31844592094421387, 0.8270749449729919, 1.6515947580337524, 0.5772270560264587, -0.08088432252407074, 0.2297600656747818, -0.5263319611549377, -0.43246889114379883, -0.11700708419084549, 1.082115888595581, -0.1937841773033142, -0.19310855865478516, -0.049087975174188614, -0.3614826500415802, 0.33963990211486816, -0.2568426728248596, 0.008933963254094124, 0.5289790630340576, -0.1816297471523285, -0.5096023678779602, 0.9675421714782715, -0.008548465557396412, -0.3297409117221832, -0.6095813512802124, -0.01866002380847931, 0.31273353099823, -0.40135741233825684, 0.7106982469558716, -0.512197732925415, -0.3239845335483551, 0.507537305355072, -0.4116279184818268, -0.4716081917285919, -0.4169504940509796, 0.6782286167144775, 0.8706382513046265, -1.1036440134048462, -0.25390011072158813, -0.5986507534980774, 0.49076205492019653, 0.8188298344612122, -0.30048879981040955, 0.8008508682250977, 0.44784289598464966, -0.6986345648765564, -0.40244483947753906, 0.3306504487991333, 1.0532883405685425, 0.31234249472618103, 0.06857677549123764, -0.10557352751493454, -0.8010270595550537, 0.5008152723312378, -0.81816166639328, -0.23795980215072632, 0.11895403265953064, 0.0026986245065927505, 0.3480057418346405, 0.5488244295120239, -0.36835145950317383, 1.783774733543396, 0.20631419122219086, -0.13253240287303925, 0.23081684112548828, -0.5160272717475891, -0.8242990970611572, 0.15369047224521637, 0.7126886248588562, -0.5905448198318481, -0.8343626260757446, -0.18917274475097656, 0.43990346789360046, 1.0673009157180786, 0.6870261430740356, 0.587743878364563, 0.3980318605899811, 0.7618839740753174, 0.11810826510190964, 0.4575839638710022, 0.15572865307331085, 1.1872599124908447, 0.4912453591823578, 1.2762115001678467, -0.2645959258079529, -0.7931103110313416, 1.0155924558639526, -0.4728258550167084, 0.17932702600955963, 0.7318230867385864, 0.1642848700284958, 1.2106800079345703, -1.0640031099319458, -0.4051268994808197, 0.39720776677131653, 0.002279209438711405, 0.7901731133460999, 0.03503241017460823, -0.3896150290966034, -1.239853024482727, 0.13117052614688873, 0.43243393301963806, 0.11841847747564316, 0.3065840005874634, -0.26561757922172546, 0.5595422387123108, 0.37243473529815674, -1.0819283723831177, 0.29678377509117126, -0.9021772742271423, 0.1836216002702713, -0.40392985939979553, 0.4117308557033539, 0.9546284079551697, 0.10563160479068756, 0.8457822203636169, 1.4509859085083008, -0.3529362082481384, -1.0225228071212769, 0.10381321609020233, -1.3390883207321167, 0.6344645619392395, -0.45365482568740845, -0.3580837547779083, -0.47764208912849426, -0.7182601690292358, 0.2111855149269104, 0.16885261237621307, -0.9644832015037537, -0.20744812488555908, -0.17496901750564575, -0.9312297701835632, 0.5770099759101868, 0.09698209911584854, 1.011259913444519, 0.31770530343055725, 0.14284542202949524, 0.24462683498859406, 0.4635041654109955, -1.1193788051605225, 0.32646650075912476, 0.034283347427845, 0.47367382049560547, -0.2215823084115982, -0.6810360550880432, -0.7584416270256042, 0.36537158489227295, 0.8741426467895508, -0.29021185636520386, -0.08619687706232071, 0.7768738269805908, 1.3221274614334106, -0.4842596650123596, -0.2594165802001953, 0.3615171015262604, -1.1280286312103271, 0.8819877505302429, 0.5255786776542664, -1.0143351554870605, 0.46327123045921326, -0.7663809061050415, -1.5902996063232422, 1.5801615715026855, 0.20652247965335846, -0.10312927514314651, 0.8039422631263733, 0.7120165824890137, 0.3029378354549408, 0.9684257507324219, -0.514150857925415, -0.3775028884410858, -0.10976249724626541, 0.24158473312854767, -0.8164911866188049, 0.5950050354003906, 0.7599491477012634, -0.16887328028678894, -0.7494069337844849, 0.05728629231452942, 0.12311244755983353, -0.2877057194709778, -0.5654552578926086, 0.16981391608715057, 0.33605140447616577, 0.9860542416572571, 0.6246710419654846, -0.8074834942817688, 0.8141096830368042, -0.6077095866203308, 0.13660597801208496, 0.6412394046783447, 0.8843047022819519, 0.4438413977622986, -0.17249460518360138, 0.18304239213466644, -0.2927381992340088, -0.6619570851325989, 0.1541827917098999, -0.5731401443481445, 0.5588854551315308, 0.3337499499320984, 0.31600648164749146, 0.7462021708488464, -0.2370055913925171, 0.4137190580368042, -1.066085934638977, 0.3866969048976898, 0.8041581511497498, -0.5658154487609863, -0.5809851288795471, 0.5057829022407532, -0.2938539385795593, 0.030743911862373352, 0.4222317636013031, 0.12090890854597092, -0.8875133991241455, -0.7912155389785767, -0.07346071302890778, -0.7477782964706421, 1.1707788705825806, 0.15333183109760284, 0.31553441286087036, 0.16865114867687225, -1.204569697380066, 0.002829190343618393, 0.17628179490566254, -1.3960824012756348, -0.1795666515827179, -0.4656197428703308, 0.7054967880249023, 0.13291510939598083, 0.1299467831850052, -0.3066157102584839, 0.9761195778846741, -1.3035811185836792, -1.1637600660324097, -0.6822076439857483, -0.7237228155136108, -0.22506245970726013, 0.636198103427887, -0.8605067133903503, 0.7396516799926758, 0.43358370661735535, -0.22547058761119843, -0.16079920530319214, -0.29158949851989746, -1.0331963300704956, -0.590613067150116, 0.5848291516304016, 0.2502855360507965, 0.07922215014696121, 1.3532466888427734, 0.8031255602836609, 1.3476215600967407, 0.24210968613624573, 1.6388550996780396, -1.181013822555542, -0.5384974479675293, -0.5148515701293945, 0.6991098523139954, -0.7837138772010803, -1.206663727760315, -0.2312411516904831, -0.502143919467926, -0.48938634991645813, 0.4430130422115326, 1.2306698560714722, -0.7986428737640381, 0.6761325001716614, -0.12312053143978119, 0.17742373049259186, -0.9779825806617737, -0.030750229954719543, 0.1659509539604187, -0.6692100167274475, 1.0410960912704468, -0.027703722938895226, 0.2213350385427475, -0.8229067325592041, -0.4332754611968994, 0.8090190291404724, 0.541248619556427, -0.20968462526798248, 0.2696194350719452, -0.17670540511608124, 0.4951423406600952, -0.6163159012794495, 0.8804547190666199, 0.8002037405967712, 0.0036833900958299637, -0.1413266807794571, -0.033644065260887146, 0.12405356764793396, -0.15584413707256317, -0.3318976163864136, -0.6612457036972046, -0.37960219383239746, 0.18700864911079407, 0.32368919253349304, 0.47630056738853455, -0.16133305430412292, 0.2962842583656311, 0.31581562757492065, -0.047634322196245193, 1.5275609493255615, -0.8070898652076721, -0.4529404938220978, 0.5293792486190796, 0.6393297910690308, -1.0703204870224, 0.24553550779819489, 0.1977846324443817, -0.09798943996429443, 0.0628216490149498, 0.48490095138549805, 0.7091331481933594, -0.40003398060798645, 0.6107430458068848, 0.7651112675666809, -0.7003350853919983, -0.2505730390548706, -0.5210883617401123, -1.1476138830184937, -0.7357118725776672, 0.24831125140190125, -0.6125386357307434, -0.13314737379550934, -0.7190897464752197, -0.6117159128189087, 0.49098703265190125, -1.1600561141967773, -0.33803385496139526, -0.41993415355682373, 1.0048599243164062, -0.45944055914878845, 0.08435092121362686, 1.2054495811462402, -0.365860253572464, 1.0414783954620361, 0.1735837608575821, -0.24169491231441498, -1.1231015920639038, 0.1086471676826477, 0.3341907858848572, 0.0306796133518219, -0.24694758653640747, -1.4780402183532715, 0.02572154998779297, -0.32419365644454956, -0.1191190630197525, 0.07200095802545547, -0.26638832688331604, 0.2590242922306061, -0.011085357517004013, 0.23582491278648376, 0.25112128257751465, 0.5252425074577332, 0.553394615650177, -0.27696067094802856, -0.7066131830215454, -1.083036184310913, 0.19953113794326782, 0.06293555349111557, 0.7852232456207275, -0.8702709674835205, 0.4322575628757477, 0.12317696958780289, -0.17979128658771515, -0.13966281712055206, -0.4780198335647583, 0.548247218132019, -0.09942518174648285, -0.3125847280025482, -0.5571905970573425, 0.007047010585665703, -0.12960106134414673, -1.1995091438293457, -0.06169801577925682, 0.18725599348545074, -1.0008161067962646, -0.34097009897232056, -0.5508144497871399, -0.2844441533088684, -0.6748561859130859, -0.25039708614349365, -0.09337827563285828, 0.28086423873901367, 0.8619155883789062, -0.17231053113937378, -0.6541967988014221, 0.43608230352401733, 0.9305602312088013, -0.12852349877357483, 0.49542906880378723, 1.2381895780563354, 0.763287365436554, 0.34933042526245117, -0.4294831156730652, 0.21176278591156006, 0.06819228082895279, -0.779544472694397, -0.23920834064483643, -0.6496886610984802, -0.23473861813545227, 0.2173353135585785], [0.3021467626094818, 1.9633523225784302, -2.0445563793182373, -1.2021766901016235, 0.6938896179199219, -0.4538392424583435, 0.40055009722709656, 0.8014158606529236, 0.4037812650203705, -1.7208824157714844, -1.3325750827789307, 0.7549015283584595, 0.7355369329452515, 0.9548215866088867, 0.6821091771125793, 0.3579995930194855, 0.22174210846424103, -0.4165399968624115, 0.025661297142505646, 0.8047227263450623, -0.5155569911003113, -0.8585100173950195, -0.3403884470462799, -0.08883291482925415, 0.264145165681839, 0.14154213666915894, -1.0251749753952026, -0.24564512073993683, -1.0589382648468018, -1.4703625440597534, 0.7790341973304749, -0.6036717295646667, -0.9040741324424744, -0.22433066368103027, -1.8574076890945435, -0.566709578037262, 0.38273951411247253, -0.6251186728477478, -0.6959023475646973, 0.9605209231376648, 1.985709547996521, 0.3995995819568634, -0.37579306960105896, -0.950604259967804, 0.4085536599159241, -0.7209981083869934, -0.03595421090722084, -0.7029237151145935, -0.43528977036476135, -1.385627269744873, 0.3919846713542938, -0.21248547732830048, -0.05203146114945412, 0.8050632476806641, 1.030395269393921, -0.5213307738304138, -0.0016479343175888062, 0.4177958071231842, -0.1599545180797577, 0.1977228820323944, 1.0701215267181396, 0.41664600372314453, -0.4330447316169739, -0.041415985673666, 0.05154147371649742, 0.5986395478248596, -0.28544607758522034, 1.1602729558944702, -0.2756196856498718, -0.15347565710544586, 0.32824981212615967, 0.4766392409801483, -0.1978253871202469, 0.002019330859184265, -0.623022735118866, -0.13551712036132812, 0.9498725533485413, 0.09900517761707306, 0.036509640514850616, 0.9451425075531006, -0.5992634296417236, 0.18711674213409424, -0.2939343750476837, -0.41227996349334717, 0.2896680533885956, -0.041787005960941315, -0.16869865357875824, 0.1547083854675293, -1.0991997718811035, 1.3093560934066772, 0.2353632152080536, -0.3248857259750366, 0.27803125977516174, 0.11013645678758621, -0.8031163215637207, -0.6727795600891113, 0.16578157246112823, -0.5191826224327087, -0.46412500739097595, -0.5444682836532593, -0.7006950378417969, -0.7113038301467896, 0.5148673057556152, 1.2839298248291016, 0.4067000448703766, 1.5516095161437988, 0.42515286803245544, -1.403586745262146, -0.3111531734466553, 0.08666755259037018, 0.4989706873893738, -0.05439485237002373, -0.7736865878105164, -1.389512538909912, -0.30378422141075134, 0.30250126123428345, 1.1255344152450562, -0.17736855149269104, 1.3097357749938965, 0.25365951657295227, -0.4544754922389984, -0.7865726947784424, -0.5649729371070862, 0.7713829278945923, 1.1890482902526855, -0.4864892065525055, -0.08442169427871704, -0.12200063467025757, 0.1074790358543396, -0.4751221239566803, -0.10323842614889145, -0.23824140429496765, -0.5749135613441467, 1.1546460390090942, 0.20906348526477814, 0.9680939316749573, -0.08523485064506531, -0.986680805683136, 0.6217477321624756, -0.2107694298028946, -0.007553018629550934, -0.41506630182266235, -0.7920271754264832, -1.258583903312683, 0.6811990737915039, -0.5815258622169495, 0.33560335636138916, -0.42809993028640747, -0.6792864203453064, 0.21049948036670685, -0.7160890102386475, -0.18041808903217316, -0.2180270105600357, 1.259440302848816, 0.37715014815330505, -0.09957517683506012, 0.07168729603290558, 0.13831943273544312, -0.15481197834014893, 0.47106996178627014, 0.8981151580810547, 0.061754755675792694, -0.8449999094009399, 1.2574723958969116, -0.12074176222085953, -0.5914871692657471, 1.5717895030975342, 0.365390419960022, -0.45003166794776917, 0.7867041230201721, -0.4932868480682373, -0.07622236758470535, -0.7518317103385925, 0.42739948630332947, -0.09958642721176147, -0.4536641240119934, 1.0048234462738037, -1.4614570140838623, -0.4031960070133209, -0.5024647116661072, 0.2634281814098358, -0.08652984350919724, 0.02565140649676323, -0.5892614722251892, 0.7983258962631226, -0.31354618072509766, -0.18528048694133759, -0.8104928135871887, 0.1956632286310196, -0.7748667001724243, -1.6432640552520752, -0.16016064584255219, -1.3468953371047974, -0.33493515849113464, -0.1169801726937294, -1.1371692419052124, 0.24296143651008606, -0.2071845531463623, -0.1930704563856125, 0.14323216676712036, -0.14069326221942902, -0.40706154704093933, -1.340483546257019, -0.20696856081485748, -0.5443323254585266, 0.6429411172866821, 0.29421696066856384, 0.3167586624622345, -0.6107531785964966, 0.6336976885795593, 0.838785707950592, -0.5341777801513672, -0.6128544211387634, 1.0765602588653564, 0.7169049382209778, -0.6642122864723206, -0.38182979822158813, -0.19889719784259796, 0.5396051406860352, 0.02791205421090126, 0.6608600616455078, 0.36783039569854736, 0.5856103897094727, -0.04273296147584915, 0.3543912470340729, -0.12589102983474731, -0.9593169093132019, -1.013641357421875, -1.1543591022491455, 0.1895802915096283, -0.8612026572227478, -0.3420242965221405, 0.36694350838661194, 1.7496438026428223, -0.9025280475616455, 1.1607741117477417, -0.8109130263328552, 0.3994928002357483, 0.3876272141933441, 0.42408308386802673, 0.36594662070274353, 0.07174025475978851, -1.0256890058517456, 0.2736870348453522, -0.25739070773124695, -0.1457967758178711, 0.31952396035194397, -0.11522478610277176, -0.8681061863899231, 1.5083366632461548, 0.03232313320040703, -0.16624440252780914, 0.9864112138748169, -0.006653249263763428, 0.10179077833890915, -0.8980119228363037, -0.047000620514154434, -0.07661829888820648, -0.8621330857276917, 1.1217772960662842, 0.1974346786737442, -1.6466468572616577, -0.6885851621627808, -0.6356439590454102, -0.1976403295993805, -0.6095409989356995, -0.41533926129341125, -0.9936075806617737, 0.8600446581840515, -0.35009896755218506, 0.03078440949320793, -0.13212737441062927, -0.14302575588226318, 1.252122163772583, -0.467746376991272, 0.6020657420158386, 0.4909954369068146, 0.1239396408200264, 0.23500682413578033, 0.5208738446235657, 0.03655011206865311, -1.3095754384994507, -0.7590253949165344, -0.6201627254486084, 1.1323350667953491, -0.3494716286659241, -0.6067860722541809, 0.21794018149375916, 0.17531448602676392, -0.642680287361145, 0.4601925015449524, -0.12405285239219666, -0.19705115258693695, 0.4113638699054718, 0.2668926417827606, -0.03761701658368111, 0.38862088322639465, -0.48797607421875, -0.4960130751132965, -0.49562227725982666, 0.8402934670448303, 1.1621266603469849, 1.2136082649230957, 1.1141570806503296, 0.0876360535621643, -0.024930451065301895, 0.3382285237312317, 0.3121473491191864, 0.3737705647945404, 0.3141472339630127, -0.7281785607337952, -0.5519570112228394, 0.5471078157424927, 0.10786152631044388, 0.018604347482323647, 0.7445652484893799, 0.38545170426368713, 1.138221263885498, 0.3427063524723053, -0.4442438781261444, -0.99797123670578, -0.6010043621063232, -0.35624703764915466, -0.7306578159332275, 0.8525196313858032, 0.6866629719734192, -1.0970993041992188, 0.7243202924728394, 0.3119652271270752, -0.6189390420913696, 0.46514892578125, 0.0038838014006614685, 0.3639960289001465, -0.8903181552886963, -0.3539848029613495, 0.17555159330368042, 1.3647737503051758, 0.5886486172676086, -0.19478467106819153, -0.3248124420642853, 0.05347415432333946, 0.13911469280719757, 0.25028756260871887, -0.7725940346717834, 0.9744828939437866, 0.1075240895152092, -0.864155113697052, -0.926347553730011, 0.30406510829925537, 1.3289433717727661, -0.28280696272850037, -0.2405678778886795, -0.9386463165283203, -0.5373900532722473, -0.49521955847740173, 0.7063031792640686, 0.20561029016971588, 0.6719690561294556, -0.027017414569854736, -0.34218695759773254, 0.6847572326660156, -0.11614476144313812, 0.24738022685050964, -1.2968391180038452, 1.161913275718689, 0.6052781939506531, 1.563670039176941, -0.09890197217464447, -0.20782595872879028, 0.8073569536209106, -0.7060522437095642, -0.6932846903800964, -0.12880371510982513, 0.7117709517478943, 0.14261852204799652, -0.412195086479187, -0.8478816747665405, 0.3512268364429474, 0.21341779828071594, -0.42146310210227966, -0.16770482063293457, 0.5985338687896729, 0.1429450809955597, -0.765923023223877, 0.8120806217193604, 0.051792047917842865, 0.05485682189464569, -0.5081528425216675, 0.4691658616065979, 0.02309490740299225, -0.13715292513370514, -0.05832463130354881, -0.3072560429573059, 0.049046196043491364, -0.14074184000492096, -0.6975755095481873, -1.436205506324768, 0.07289431989192963, 0.6736249327659607, 1.1484936475753784, -0.9099794626235962, -0.28964048624038696, -0.260923832654953, -0.31247881054878235, 0.5364806056022644, 0.31842052936553955, 0.6192061305046082, 0.33211955428123474, 0.00469622015953064, -0.010521546006202698, 0.9872686862945557, 1.252063274383545, -0.322793573141098, 0.11495433747768402, -0.4085051715373993, 0.45979148149490356, 0.5464978814125061, -0.37957000732421875, -1.1219371557235718, -0.26345139741897583, -0.6990475058555603, -0.028460804373025894, 0.5408085584640503, -0.30925294756889343, 1.459898829460144, 0.05566142499446869, 0.754891574382782, 0.4679872393608093, -0.590645432472229, -0.7661738991737366, 0.7020725607872009, 0.45119228959083557, 0.228166401386261, -0.6140110492706299, 0.5001233220100403, 0.6842161417007446, 0.679456353187561, 1.1067017316818237, 0.13392221927642822, 0.5687685608863831, 0.48463186621665955, -0.4626600444316864, 0.21537677943706512, 1.0398004055023193, 0.854549765586853, 0.46298089623451233, 1.494888424873352, -0.5497506856918335, -0.5137072205543518, 1.5183587074279785, -0.23565280437469482, 0.2232854962348938, 0.960543155670166, 0.2389879822731018, 1.9500612020492554, -0.7550556063652039, -0.4335794448852539, 0.3857590854167938, 0.08464805036783218, -0.14701971411705017, -0.0031634774059057236, 0.16671425104141235, -0.7880286574363708, -0.2172701358795166, 1.0220580101013184, -0.18197035789489746, 0.5667547583580017, -0.5000765919685364, -0.19735194742679596, 0.1185089498758316, -0.13617044687271118, -0.2721632122993469, -0.8035120964050293, -0.3598463833332062, -0.008060014806687832, 0.3242637515068054, 0.6830213665962219, 0.8705248832702637, -0.1123398169875145, 0.8142948150634766, -0.5663934946060181, -0.8416070938110352, 0.11598177254199982, -1.3225979804992676, 0.5522769093513489, 0.24603773653507233, -1.0459471940994263, -0.6605469584465027, -0.4957844316959381, -0.2952556908130646, -0.790306568145752, -0.8139863610267639, -0.28629106283187866, 0.50877445936203, -0.7363698482513428, -0.4674546718597412, -0.30514928698539734, 0.87313312292099, 0.6537601351737976, 0.7937813997268677, 0.9000096321105957, 0.33248454332351685, 0.17324239015579224, 0.408157080411911, -0.22939182817935944, -0.25824403762817383, 0.3970487117767334, -0.6839869618415833, -0.5019957423210144, 0.24068863689899445, 1.001317024230957, 0.6256093978881836, -0.4809626638889313, 0.21194462478160858, 1.8748782873153687, -1.0908758640289307, -0.6210605502128601, 0.28873616456985474, -0.4180781841278076, 1.4092864990234375, 0.21099060773849487, -1.2791754007339478, -0.340270459651947, 0.4667026996612549, -1.7278804779052734, 0.7162351608276367, -0.3054707944393158, -0.10348405689001083, -0.2896609306335449, 0.3731096088886261, -0.12787975370883942, 0.6814098954200745, -0.6589701175689697, 0.0760737732052803, 0.7743648886680603, -0.37615299224853516, -0.8523396849632263, 0.803581953048706, 0.4513864815235138, 0.6432103514671326, -0.4688352346420288, 0.29385992884635925, -0.02411198616027832, -0.2984822690486908, -0.07967568188905716, 0.07033491134643555, 1.2410556077957153, 0.5413944721221924, 0.3389335870742798, -1.5117597579956055, 0.7557839155197144, -0.6443656086921692, 0.9960463643074036, -0.2586807310581207, 0.803656280040741, 0.1360420286655426, -0.8552932143211365, 0.3286829888820648, -0.5656448006629944, -0.21893425285816193, -0.3475525379180908, -0.7643319964408875, 1.1171905994415283, 0.08798788487911224, -0.149930939078331, 0.4012903571128845, -0.19932685792446136, -0.711647629737854, -0.46314334869384766, -0.2844526469707489, 0.9921969771385193, -1.3454080820083618, -0.5502488613128662, 0.0853220596909523, 0.09938348829746246, 0.6619393229484558, 0.30075857043266296, -0.3252556324005127, -0.9868949055671692, -1.517427921295166, -0.26270949840545654, -0.00851023755967617, 0.7570450305938721, -0.8801532983779907, 0.27103447914123535, 0.012933820486068726, -1.8766741752624512, 0.6411933302879333, 0.21716845035552979, -1.324894666671753, -0.7397017478942871, -1.2588709592819214, 1.0279674530029297, 0.5546576976776123, -0.474656879901886, -0.22451196610927582, 0.62665855884552, -0.43259161710739136, -0.36702215671539307, -0.5621655583381653, 0.5671312212944031, -0.055481381714344025, 1.0302246809005737, -0.3092918395996094, 0.37562328577041626, -0.2554422914981842, 0.25517094135284424, -0.3014613091945648, -0.19680725038051605, -0.8275275826454163, 0.1984737068414688, 0.058142878115177155, 0.541856586933136, -0.0448172502219677, 0.5354477167129517, 0.1705915480852127, 0.9605711102485657, -0.6693062782287598, 0.876960039138794, -0.41628187894821167, -0.47548261284828186, -0.47116923332214355, 0.24165979027748108, -0.9859907627105713, -0.34668436646461487, -0.1838006228208542, -0.6086767911911011, -0.8838703632354736, 0.1374037116765976, 0.710191011428833, -0.20413155853748322, 0.9274804592132568, -0.12090550363063812, 0.8225083947181702, -1.0907889604568481, 1.0296409130096436, 0.2008533924818039, -0.6772603988647461, 0.3079530596733093, -0.6251924633979797, 0.6816210746765137, -0.6071194410324097, -0.01344403624534607, 0.4820479154586792, 0.6294971108436584, -0.2704410254955292, -0.1790352612733841, 0.38313567638397217, -0.5068374276161194, -0.4644275903701782, 0.9021823406219482, 0.8199342489242554, 0.15251824259757996, 0.6754974722862244, 0.6830071210861206, -0.39103326201438904, 0.19473384320735931, 0.3211078643798828, -0.5790334343910217, -0.4811348021030426, 0.29087120294570923, -0.33556807041168213, 0.20489002764225006, -1.1374763250350952, 0.6680639386177063, -0.5713669657707214, -0.21627676486968994, 0.8696914911270142, -0.12789031863212585, -0.3987714946269989, 0.762925922870636, 0.32091936469078064, -0.5118765234947205, -0.0546591579914093, 0.1400851011276245, 0.17714151740074158, 0.8461925983428955, 0.7586863040924072, 0.4936073124408722, 0.13466350734233856, 0.8447269201278687, 0.806587278842926, -0.5813798308372498, -0.14230650663375854, -0.3805239796638489, -1.5717217922210693, -0.8073466420173645, 0.2938340902328491, -0.5340608954429626, 0.4064168334007263, -0.9384209513664246, -0.6661722660064697, -0.07325417548418045, 0.038971662521362305, 0.576384961605072, -0.8541799783706665, -0.054257649928331375, -0.7006524801254272, 0.22472286224365234, 1.4490078687667847, -0.17765763401985168, 1.4277997016906738, 0.4016101062297821, 0.524031400680542, 0.49757203459739685, 0.27101555466651917, -0.018054507672786713, 0.44933366775512695, -0.1357274353504181, -0.8766071796417236, -0.00131618557497859, -0.7131497859954834, -0.7447111010551453, 0.9903066754341125, 0.22728438675403595, 0.6141461730003357, 0.43318477272987366, -0.6072394847869873, 0.2114790380001068, 0.5145310163497925, 0.7406179904937744, -0.5251675844192505, -0.840441107749939, -0.5633931159973145, 0.10923390090465546, 0.07033520191907883, 1.6186405420303345, -0.43077442049980164, 1.0545183420181274, 0.7215025424957275, 0.033250439912080765, -0.13364523649215698, -0.22726036608219147, 0.4726927876472473, -0.43065083026885986, 0.6295779347419739, -0.23707948625087738, -0.33435529470443726, 0.1688258945941925, -0.7282084226608276, -0.17752358317375183, -0.33134958148002625, -0.5087388157844543, 0.125247523188591, -0.24606947600841522, -1.1792443990707397, -0.9215845465660095, 0.41448158025741577, 0.04193801060318947, -0.37340840697288513, 0.7395591735839844, -0.2717461884021759, -0.4210785925388336, 0.773137092590332, 0.5626358389854431, 0.3173619508743286, 0.29773521423339844, 2.0719432830810547, 1.1177341938018799, 0.21735446155071259, -0.5254402756690979, -0.410256952047348, 0.7032796740531921, -0.9297409653663635, -0.29997116327285767, -1.0465753078460693, -0.1726263165473938, 0.5079619288444519], [-0.4531186819076538, 1.5076793432235718, -2.0014259815216064, -0.34682902693748474, 0.9863001108169556, -0.010308319702744484, 0.5102552175521851, 0.8320944905281067, 0.027293935418128967, -0.4272044599056244, -0.02878681570291519, -0.1642524152994156, 1.0203996896743774, 1.019324541091919, 0.6090759634971619, 0.28353339433670044, 0.47564321756362915, -0.41026389598846436, 0.1703599989414215, 0.9497610926628113, -0.38385453820228577, -1.2358297109603882, -0.8769550919532776, 0.10379988700151443, 0.08909910917282104, 0.002781609073281288, -2.042778968811035, -0.8096025586128235, -1.0781294107437134, -0.3445439338684082, 0.7869799137115479, -1.0494599342346191, -0.2624417841434479, 0.7717120051383972, -0.7577567100524902, -0.9985995888710022, 0.5968770384788513, 0.09653239697217941, -0.1543516218662262, 0.7040644288063049, 2.3801538944244385, -0.14436624944210052, -1.022498369216919, -0.8282119035720825, 1.0537734031677246, -0.824781596660614, 0.538753092288971, -1.1017941236495972, -0.06608577072620392, -1.0603107213974, 0.07510978728532791, -0.7555227279663086, 0.6708557605743408, 0.6611496210098267, 1.4975945949554443, -0.44161492586135864, -0.28948092460632324, -0.6040191650390625, 0.45743516087532043, 0.08070062100887299, 1.0736839771270752, 0.8411290645599365, -0.12327471375465393, 1.3626317977905273, 0.6968016624450684, 0.020450789481401443, -0.2763887643814087, 0.8734769225120544, 0.5399062037467957, -0.08996587246656418, 0.2182696908712387, -0.19643087685108185, -0.464321494102478, 0.04680255055427551, -0.08730889856815338, -0.5631395578384399, 0.3010807931423187, 0.558152973651886, -0.35846811532974243, 0.40433210134506226, 0.16698560118675232, -0.14652486145496368, 0.6444326639175415, -0.5630941390991211, 0.5828020572662354, -0.46967360377311707, 0.13214458525180817, -0.0313568040728569, -0.18950316309928894, 1.862382411956787, 1.0276737213134766, -0.13932715356349945, 0.4877011179924011, -0.6297093629837036, 0.29530981183052063, -1.427194595336914, -0.024791302159428596, -0.9710189700126648, -0.8703531622886658, -0.3308688998222351, -0.7839783430099487, -0.8075030446052551, 0.1534281224012375, 0.23295247554779053, 0.8227220177650452, 1.388901948928833, -0.11800410598516464, -0.726803183555603, -0.06719832867383957, -0.028819715604186058, 0.3816412091255188, -0.4321039319038391, -0.9001737236976624, -0.7322478890419006, -0.19535686075687408, 0.31649094820022583, 1.4833444356918335, 0.09423024952411652, 0.4073747396469116, 0.3151528239250183, -0.689652681350708, 0.15929320454597473, -0.5218091011047363, 0.11172996461391449, 0.3884963095188141, 0.27879494428634644, -0.42532071471214294, -0.01399518083781004, 0.08825145661830902, -0.3438238203525543, -0.1331709325313568, 0.5639663934707642, 0.16830749809741974, 0.628301739692688, -0.5021082758903503, 1.8035436868667603, -0.7493704557418823, -1.535340428352356, -0.0911112129688263, -0.0992380753159523, 0.8496214151382446, -0.37037527561187744, -0.76444411277771, -1.0562376976013184, 0.03132679685950279, -0.2843945324420929, 0.2207130640745163, -0.4391532838344574, -0.2535911798477173, 0.22325080633163452, -0.6374478936195374, 0.34929656982421875, 0.18439753353595734, 1.1646456718444824, 0.21504506468772888, -0.2681494653224945, 0.6209986209869385, 0.1555783450603485, -0.07586145401000977, -0.177217036485672, 0.7006084322929382, 0.1270374059677124, -1.5014816522598267, 1.3319110870361328, -0.08222678303718567, -0.8577433824539185, 0.9419105648994446, 0.4907601773738861, -0.16475586593151093, 0.8335102796554565, -1.2543692588806152, -0.0024496447294950485, -1.246327519416809, 0.8832317590713501, 0.1944427192211151, -0.8522660732269287, 1.036413550376892, -0.541059136390686, -0.7669850587844849, -0.9514845013618469, 0.45279380679130554, -0.7636842727661133, -0.015685267746448517, -0.4306599795818329, 0.7796936631202698, -0.7552146315574646, 0.009973691776394844, -0.4810074269771576, -0.29787707328796387, -1.3610244989395142, -1.1159907579421997, -0.2784220576286316, -0.7843656539916992, 0.5543190240859985, -0.5079142451286316, -0.27199921011924744, 1.0936775207519531, -0.7405088543891907, -0.10947593301534653, -0.14552350342273712, -0.07266931235790253, 0.513269305229187, -1.5221551656723022, 0.3790910840034485, -0.5697340369224548, 0.8582461476325989, 0.1975824534893036, 0.5231186151504517, -0.21215181052684784, 0.48115429282188416, 1.1163119077682495, -0.6345593929290771, -1.0799200534820557, 0.44543904066085815, -0.04223410040140152, -0.4672118127346039, -0.132894366979599, -0.7021984457969666, -0.12832045555114746, -0.2757299244403839, 0.4029650390148163, -0.09563156962394714, 0.33231544494628906, 1.0210504531860352, 0.025682121515274048, -0.17379362881183624, -0.5972541570663452, -0.16888727247714996, -0.7518166899681091, 0.33778131008148193, -0.6701003909111023, -0.4611688256263733, 0.39151179790496826, 0.5866407752037048, -1.226165771484375, 0.822536051273346, -0.6842748522758484, 0.7711120843887329, 0.3043884038925171, 0.02564316801726818, 0.16656404733657837, 0.3230617344379425, -0.17706996202468872, -0.2751747965812683, -0.34528785943984985, -0.2991694211959839, 0.5656682252883911, -0.2071233093738556, -0.6645241379737854, 1.2607049942016602, 1.4860492944717407, -0.029025303199887276, 0.9040226340293884, 0.6016198992729187, 0.22318880259990692, -0.967124879360199, 0.1919899731874466, -0.11028896272182465, -0.9081975817680359, 0.6619688272476196, 1.102751612663269, -0.7479449510574341, -0.2629946768283844, -0.38848382234573364, -0.9741119742393494, -0.3384203314781189, -0.5803781151771545, -0.9841532111167908, 0.4705025851726532, -0.1871451735496521, 0.2080681025981903, 0.27684205770492554, -0.6162238717079163, 0.48997732996940613, 0.0681150034070015, 0.15208099782466888, 0.013869248330593109, -0.0004086345434188843, 0.43137311935424805, 0.42694082856178284, -0.07466599345207214, -0.7362064719200134, -0.7630090117454529, -0.12310686707496643, 0.5511451363563538, -0.28520724177360535, -0.3944278955459595, 0.8420448899269104, 0.7617148160934448, -0.9689144492149353, 0.5991289019584656, 0.09661804139614105, 0.36791741847991943, -0.05648479610681534, -0.082585908472538, 0.9923872947692871, 0.7383599877357483, -0.8586823344230652, -1.324088454246521, -0.7255648374557495, 1.0252928733825684, 0.893521249294281, 1.3496615886688232, 1.0649431943893433, 0.09472376853227615, -0.11116298288106918, 0.1766321212053299, 0.3636268079280853, 0.3728269934654236, -0.5364357829093933, -0.809966504573822, -0.35598403215408325, -0.20503011345863342, -0.11822284013032913, -0.5408756732940674, 1.3100107908248901, -0.15425366163253784, 0.9238332509994507, 0.714968204498291, -0.46274620294570923, -0.6063109040260315, -0.6135170459747314, 0.10155171155929565, -1.1505581140518188, 0.6997628211975098, 1.0187053680419922, -0.8190339207649231, -0.3914034962654114, -0.1808997094631195, -0.34961065649986267, -0.01694481261074543, 0.4421042799949646, 0.3328162133693695, -1.4090312719345093, 0.07756055146455765, 0.2709888815879822, 0.9763110876083374, 0.3959245979785919, 0.024373050779104233, -0.35975366830825806, 0.51376873254776, 1.0521565675735474, -0.5001495480537415, -0.5936747789382935, 0.5163729190826416, -0.2035893052816391, -0.5283340215682983, -0.2198449820280075, -0.5265577435493469, 1.1452455520629883, -0.4446435570716858, 0.036785174161195755, 0.05789962410926819, -0.5905373096466064, -0.4414723217487335, 0.046482544392347336, -0.5256351828575134, 0.7410104870796204, 0.14941132068634033, 0.013950847089290619, 0.6073521375656128, 0.16794776916503906, 0.1754942089319229, -1.7654989957809448, 0.6635148525238037, 0.34938132762908936, 1.0380605459213257, -0.17397047579288483, 0.1342983990907669, 0.3515693247318268, -0.24018631875514984, -0.0704372376203537, 0.46331849694252014, 0.7786808013916016, 0.2859925925731659, -1.033251404762268, -0.45491716265678406, 0.495392769575119, -0.5828460454940796, -0.36824703216552734, -0.09689000248908997, 0.08457868546247482, -0.5044115781784058, -0.7379809617996216, 0.8181865811347961, 0.2858385443687439, -0.0779023990035057, -0.7182037234306335, 0.13632908463478088, 0.07444211095571518, -0.7363235354423523, 0.4705969989299774, -0.6513085961341858, -0.2549532353878021, -0.7473581433296204, -0.5357861518859863, -0.7994727492332458, -0.39671483635902405, 0.4467800259590149, 1.172754168510437, -0.6213378310203552, -0.07604433596134186, -1.0335752964019775, 0.6477721929550171, 0.9439377188682556, 0.39155313372612, 0.24556636810302734, 0.4368779957294464, -0.25560298562049866, -0.6941700577735901, 0.29150184988975525, 0.9312003254890442, -0.6286765336990356, -0.0008693849667906761, -0.30376318097114563, 0.850368320941925, 0.13411903381347656, -0.005707234144210815, -0.6530978083610535, -0.24154400825500488, -0.5581358075141907, 0.9606778621673584, 0.6841382384300232, 0.17355385422706604, 1.6805610656738281, 0.03030211478471756, -0.13915163278579712, 0.15373584628105164, 0.12216013669967651, -0.5699642300605774, 0.22621852159500122, 0.3518511652946472, -0.3669619560241699, -0.4814682602882385, 0.1421675682067871, 0.39759910106658936, 0.3999831974506378, 0.44606253504753113, 0.35944297909736633, 0.8235161304473877, 1.589185357093811, -1.0176787376403809, -0.48942437767982483, 0.2714146077632904, 1.2601892948150635, 1.5793157815933228, 0.47292962670326233, 0.1533736139535904, -1.1225411891937256, 0.5437958836555481, -0.061037130653858185, -0.5493693351745605, 0.48577284812927246, 0.07786306738853455, 1.2889262437820435, -1.2969990968704224, -0.17756381630897522, 0.622719943523407, 0.14673252403736115, 0.686432957649231, -0.06005983427166939, 0.013908224180340767, -0.3779866397380829, 0.2666800916194916, 0.6368894577026367, -0.054705411195755005, 0.7037372589111328, -0.7025151252746582, -0.27928438782691956, -0.49090418219566345, -0.7972213625907898, 0.1471175104379654, -0.36000239849090576, -0.140333890914917, -0.6972874402999878, 0.5245851874351501, 0.6148319244384766, -0.4696381986141205, 0.4107564389705658, 1.2867234945297241, -0.9195917248725891, -0.9349715709686279, 0.11729361116886139, -0.33216363191604614, 1.049875259399414, -0.2866653800010681, 0.23584352433681488, -0.10323618352413177, -0.9526667594909668, -0.6131964325904846, -0.2228441685438156, -0.9901444315910339, -0.6693612933158875, -0.5535456538200378, -0.8755740523338318, -0.6882664561271667, 0.31402677297592163, 1.0715022087097168, 0.7384935617446899, 0.4315703213214874, 0.7344180345535278, 0.09887844324111938, 0.1685423105955124, 0.24123559892177582, 0.09764765948057175, 0.1716790497303009, -0.3480735421180725, -0.9833712577819824, -0.5049289464950562, 0.5175982713699341, 0.7597070336341858, 0.013693999499082565, -0.20242814719676971, 1.0236719846725464, 2.000277042388916, 0.12466713786125183, -0.570866048336029, 0.7490045428276062, -0.2815325856208801, 1.1362097263336182, 0.8352404832839966, -1.4676703214645386, 0.26369526982307434, -0.19537340104579926, -1.6098641157150269, 0.9714952111244202, -1.0437698364257812, -0.2664656341075897, 1.392971158027649, 0.5840230584144592, -0.5506102442741394, 0.7977272868156433, -0.8950856924057007, 0.019183363765478134, -0.274177610874176, -0.4270092248916626, -0.937965452671051, 0.3405349850654602, 1.1623153686523438, 0.10762954503297806, -1.1536023616790771, 0.5932835936546326, -0.06626881659030914, -0.3776804208755493, 0.5938359498977661, -0.24081099033355713, 0.04562158137559891, 0.8701069951057434, 0.6134514212608337, -0.9786579012870789, 0.127770334482193, -0.3425581753253937, 0.2787996828556061, 0.5697917342185974, 0.18822835385799408, 0.41910043358802795, -0.23653273284435272, 0.10118900239467621, 0.014388617128133774, -1.1209297180175781, 0.9141432642936707, -0.017441773787140846, 0.8054782748222351, -0.06842871010303497, -0.5639738440513611, 0.5479288101196289, -0.4330372214317322, -1.1730284690856934, -0.7094564437866211, -0.2648311257362366, 0.6381708383560181, -0.6510230898857117, -0.5764400959014893, -0.6452011466026306, -0.26696935296058655, 0.6158371567726135, 0.5427311062812805, 0.46564099192619324, -1.209428071975708, -1.068144679069519, 0.011747792363166809, 0.1374988853931427, 0.5848000645637512, -0.20500081777572632, 1.090736985206604, -0.33651605248451233, -2.0795273780822754, 1.1631418466567993, 0.22809335589408875, -1.4444019794464111, -0.9928420782089233, -1.3823366165161133, 0.8120589852333069, -0.47270941734313965, -0.010043011046946049, -0.027767805382609367, 1.4816420078277588, -0.5538509488105774, -0.582868754863739, -0.3673211932182312, -0.18121227622032166, -0.09635332226753235, 1.2825816869735718, -1.176388144493103, 0.9853217601776123, -0.24562397599220276, -0.5849186778068542, -0.73019939661026, 0.4802701473236084, -1.0622742176055908, -0.11410489678382874, 0.37581849098205566, 0.6022397875785828, -0.0054549165070056915, 1.3094826936721802, -0.06765646487474442, 1.180531620979309, -0.6842899918556213, 1.0806469917297363, -1.0102026462554932, -0.4184768497943878, -0.3138887584209442, 0.22074903547763824, -0.958475649356842, -0.2196987271308899, -0.06833739578723907, -0.9653367400169373, -1.0283252000808716, 0.6136618256568909, 0.7960751056671143, -0.7323105931282043, -0.2621365785598755, 0.05359872058033943, 0.5501248836517334, -0.3558175265789032, -0.13511891663074493, 0.2183549702167511, -0.8081528544425964, 0.47693464159965515, -0.22306734323501587, 0.4372633397579193, -0.28267592191696167, 0.16407880187034607, 1.2058838605880737, 0.5055174827575684, -0.7428525686264038, 0.7133001089096069, 0.8856128454208374, -0.26663723587989807, -1.0769928693771362, 1.0399185419082642, 0.9009432792663574, -0.5216966867446899, 0.36375191807746887, 0.6353583931922913, 0.2694890797138214, 0.39085322618484497, -0.49984967708587646, -0.725171685218811, -0.2001211941242218, 0.7361164689064026, 0.23215335607528687, 0.7613433599472046, -0.5930399894714355, 0.5127397775650024, -0.2287645936012268, -0.1080947071313858, 0.5205590724945068, -0.11841173470020294, 0.04610639810562134, 1.0313800573349, 0.21418322622776031, 0.048511382192373276, 0.05906005576252937, 0.6597113609313965, 0.35361582040786743, -0.09627338498830795, 0.18702641129493713, 0.6250815987586975, -0.5393692851066589, -0.13120891153812408, 0.585304319858551, -0.35030752420425415, 0.14756999909877777, 0.38117220997810364, -1.9071651697158813, -0.6563801765441895, -0.13411220908164978, -0.6878674030303955, 0.29432737827301025, -0.5642809271812439, -0.9833831787109375, 0.10502983629703522, 0.16157522797584534, 0.5139937400817871, -0.3432586193084717, -0.3200731873512268, -0.20910726487636566, -0.22121432423591614, 1.0645184516906738, -0.35873332619667053, 0.9458057880401611, 0.23939554393291473, -0.016184352338314056, -0.15282462537288666, -0.09727636724710464, -0.30588406324386597, 0.09144733101129532, -0.009664056822657585, -0.7633395195007324, 0.059826042503118515, -0.6115723252296448, -0.29840436577796936, 0.3276844918727875, 0.8612866997718811, 0.928805947303772, -0.40471354126930237, -0.5786950588226318, -0.4979974925518036, 0.14241696894168854, 0.6038801074028015, -0.9023584723472595, -1.1457198858261108, -0.8462391495704651, 0.2117716521024704, 0.13114827871322632, 1.6468559503555298, -0.10055255144834518, 0.6478837132453918, 0.6784412860870361, 0.37847021222114563, -0.25873616337776184, -0.6390017867088318, 0.2567070722579956, -0.7219745516777039, 1.0766266584396362, -0.03377759829163551, -0.04579532891511917, 0.4396822154521942, -1.034939169883728, 0.21776320040225983, 0.6712902784347534, 0.04761085659265518, 0.59611976146698, -0.2972146272659302, -1.0686935186386108, -0.5808610916137695, 0.8217726349830627, -0.31721872091293335, 0.03666989877820015, 0.49098536372184753, -0.17316332459449768, -0.7762245535850525, -0.36367180943489075, 0.7765580415725708, -0.2912347912788391, 0.6726992726325989, 1.6898703575134277, 1.2334762811660767, -0.25724560022354126, -0.062426984310150146, -0.262226402759552, 1.0402380228042603, -1.3282239437103271, -0.318868488073349, -0.6013792157173157, 0.1534050852060318, -0.009209130890667439], [0.0015053562819957733, 1.188709020614624, -2.2578864097595215, -1.0145055055618286, 0.5693181157112122, -0.2081119418144226, 0.8988479375839233, 0.6917972564697266, -0.04540227726101875, -0.6909911036491394, -0.7978106141090393, -0.026521313935518265, 1.212215542793274, 1.0962302684783936, 0.18398797512054443, 0.46484503149986267, 1.2976291179656982, -0.32600632309913635, 0.5345835089683533, 1.545937180519104, -0.6273043155670166, -1.2637252807617188, -0.6839715242385864, 0.12975938618183136, -0.23276132345199585, 0.5112478733062744, -1.8634330034255981, -1.1645861864089966, -1.7764480113983154, -0.4539283812046051, 0.6171561479568481, -0.8864519000053406, -0.25329136848449707, 0.8666486144065857, -1.3516494035720825, -0.6604677438735962, 0.947884738445282, 0.3028516173362732, 0.1017480120062828, -0.36442774534225464, 2.4010350704193115, -0.12300775200128555, -0.44805091619491577, -0.9172479510307312, 0.42549923062324524, -0.8054159283638, 0.8316844701766968, -0.5662035942077637, 0.5952507853507996, -0.4380750358104706, 0.5785658955574036, -0.08801406621932983, -0.008163737133145332, 0.3678776025772095, 1.0052250623703003, -0.9088336229324341, -0.5794076919555664, 0.06125809997320175, 0.6773467659950256, 0.6798997521400452, 1.1625295877456665, 0.5662983655929565, -0.2689461410045624, 1.7604631185531616, 0.8069502711296082, 0.1471129208803177, -0.08948078006505966, 0.7803803086280823, -0.22606095671653748, 0.1801915317773819, 0.6632504463195801, -0.44752293825149536, 0.08502331376075745, 0.21001261472702026, -0.2678828835487366, 0.051976483315229416, 0.5308389663696289, 0.10080529004335403, -0.031859371811151505, 0.26322057843208313, -0.1241806149482727, 0.0630996897816658, 0.7289159893989563, -0.786000669002533, 1.1288707256317139, 0.15662889182567596, 0.10397127270698547, -0.22810643911361694, -0.7219625115394592, 1.4465289115905762, 0.8203387260437012, 0.23072253167629242, 0.13809414207935333, -0.5490023493766785, 0.3107532560825348, -0.26300039887428284, 0.1257466971874237, -1.349197268486023, -1.0684131383895874, -0.7868728041648865, -1.2749067544937134, -0.5514678359031677, 0.40297940373420715, 0.4230829179286957, 1.0168126821517944, 0.8825971484184265, -0.10608407855033875, -0.9207767248153687, 0.3735499083995819, 0.12326405942440033, 0.4674372971057892, 0.5488513708114624, -1.4842801094055176, -1.0464401245117188, 0.26747214794158936, 1.2279083728790283, 1.1411851644515991, -0.08173815160989761, 1.0556960105895996, 0.8728749752044678, -0.6109853982925415, 0.22726300358772278, -0.40984225273132324, 0.15188336372375488, 0.5853174924850464, 0.7746679186820984, 0.013754032552242279, -0.5329906344413757, 0.38030585646629333, 0.017425449565052986, 0.09280869364738464, -0.06003783643245697, -0.5774936676025391, 0.5542568564414978, -0.6407623887062073, 1.4159433841705322, -0.9415719509124756, -1.833831787109375, -0.011435255408287048, -0.11659889668226242, 1.3726637363433838, -0.23399236798286438, -0.7806791663169861, -0.8174489736557007, -0.3997838497161865, -0.6027525663375854, 0.07497727870941162, -1.0782817602157593, -0.504490315914154, 0.5123637914657593, -0.8706765174865723, 0.180103600025177, 0.1427517533302307, 1.2741830348968506, -0.23153848946094513, -0.3602524697780609, 0.5480324029922485, 0.24739450216293335, 0.5454256534576416, 0.24829255044460297, 1.3844584226608276, -0.3770615756511688, -0.5166329741477966, 1.5133116245269775, 0.7123978734016418, -0.35367679595947266, 0.3069159984588623, 0.8639316558837891, -0.18217667937278748, 0.42629462480545044, -0.33747339248657227, -0.3042290210723877, -0.6896016001701355, 0.16699457168579102, 0.46348410844802856, -0.4871930480003357, 1.4878077507019043, 0.013043505139648914, -0.6484010815620422, -1.1385241746902466, 1.3698384761810303, -0.7554991841316223, 0.16418495774269104, -0.8070724606513977, 0.6902178525924683, -0.705482542514801, 0.12539175152778625, -0.43916139006614685, 0.06085152551531792, -1.4626024961471558, -0.6154342889785767, 0.2888627350330353, -0.778536856174469, 0.2712570130825043, -0.5803141593933105, -0.5347482562065125, 0.8896964192390442, -0.2576369643211365, -0.27452006936073303, -0.05100938305258751, -0.20090177655220032, 0.09923272579908371, -1.612618327140808, -0.3294132649898529, -0.811226487159729, 0.9740366339683533, -0.21413618326187134, 0.49439820647239685, -0.3282659649848938, -0.4308987557888031, 0.9410562515258789, -0.2781899571418762, -1.3196018934249878, 0.6666290760040283, 0.3131754696369171, -0.1015637069940567, 0.3160371780395508, -1.1894426345825195, -0.47185543179512024, 0.0383782833814621, 0.3899960219860077, -0.33703556656837463, -0.10051227360963821, 0.7664808034896851, 0.45846861600875854, -0.011016623117029667, -0.2697206735610962, -0.14798273146152496, -0.32776984572410583, 0.1424103081226349, -1.1829103231430054, -1.063100814819336, 1.0915040969848633, 0.6862756609916687, -1.5554654598236084, 0.9603099822998047, -0.8226574659347534, 0.4367390275001526, 0.2886768877506256, 0.8030739426612854, 0.7426023483276367, 0.2831195592880249, -0.4149000346660614, -0.21486465632915497, -1.015844464302063, 0.34470584988594055, 0.8335673213005066, -0.04021381586790085, -0.6019258499145508, 1.690108060836792, 1.7777647972106934, 0.5733725428581238, 0.9651622772216797, 0.4610982835292816, 0.04490898549556732, -0.9377937912940979, 0.05705174803733826, 0.1762966364622116, -1.3565757274627686, 1.0471299886703491, 0.9395143985748291, -1.4026545286178589, 0.05597968026995659, -0.24190105497837067, -0.7015224695205688, -0.23299932479858398, -0.6515275835990906, -0.7864654660224915, 0.31008338928222656, -0.06737398356199265, 0.3230249583721161, 0.13702601194381714, -0.2967985272407532, 0.34745076298713684, -0.31439724564552307, -0.14188702404499054, 0.03879062831401825, 0.0184380654245615, 0.42630791664123535, 0.9473592042922974, 0.28956902027130127, -0.6063929796218872, -0.7567780613899231, -0.013904329389333725, -0.09018567949533463, -0.5529466271400452, -0.5070726871490479, 1.2645680904388428, 0.6875724196434021, -0.7528153657913208, 0.1451689749956131, 0.3507361114025116, 0.037921249866485596, -0.34507760405540466, 0.09264927357435226, 0.6832817196846008, 0.31221696734428406, -1.2788071632385254, -1.093878984451294, -0.5176395773887634, 0.8325745463371277, 1.7775400876998901, 1.4635623693466187, 1.0287142992019653, -0.048907533288002014, -0.3696284294128418, -0.1170271709561348, 0.07786742597818375, -0.45994654297828674, -0.5601159930229187, -0.707429051399231, -0.44570624828338623, 0.0808228850364685, 0.37427231669425964, -0.379978746175766, 0.8525692224502563, 0.7452377080917358, 1.1664063930511475, 0.9162405729293823, -0.6541635394096375, -0.4670984745025635, 0.4454466998577118, 0.33930641412734985, -0.9212134480476379, 0.7260016202926636, 0.8618451952934265, -0.5763142704963684, -0.42603781819343567, 0.2667739987373352, -0.31655189394950867, 0.010184995830059052, 0.8094586133956909, 0.3212132751941681, -1.0411672592163086, -0.7274780869483948, 0.1272551268339157, 0.8848255276679993, -0.1815803349018097, 0.18069680035114288, -0.30753880739212036, -0.19559668004512787, 0.9102105498313904, -0.3661600649356842, -0.7485219836235046, 0.3750437796115875, -1.0718485116958618, -0.4579654335975647, 0.08790206164121628, -0.39449843764305115, 1.470306634902954, -0.27616631984710693, -0.47267022728919983, 0.4076998829841614, -0.2612261176109314, -0.312939316034317, -0.1086854487657547, -0.6198815107345581, 0.5109485983848572, 0.5076212286949158, 0.7970704436302185, 0.8854027986526489, -0.3054752051830292, -0.11233246326446533, -1.6386878490447998, 0.6438173651695251, 0.6878029704093933, 1.1615149974822998, -0.30771005153656006, 0.47516000270843506, 0.16435445845127106, -0.2871701717376709, 0.4465983510017395, 0.13608677685260773, 0.9070830345153809, 0.23592324554920197, -0.4823094606399536, -0.8422412872314453, -0.4261101484298706, -0.05836564302444458, -0.6235756874084473, 0.11432456970214844, 0.18304575979709625, -0.8308050036430359, -0.08829108625650406, 0.8629058599472046, 0.6557101011276245, -1.0527992248535156, -1.0626873970031738, -0.24100536108016968, 0.2347346842288971, -0.5439935922622681, 0.5692965984344482, -0.6061164140701294, -0.2393103539943695, -0.22520554065704346, -1.4378383159637451, -0.40394049882888794, 0.23172777891159058, 0.33849385380744934, 1.420662522315979, -0.7713461518287659, -1.042062520980835, -0.323025643825531, 0.21286451816558838, 0.5368152856826782, -0.09917955100536346, 0.0904230996966362, 0.9485031366348267, -1.0703924894332886, -0.42860764265060425, 0.40948835015296936, 0.7569906115531921, -0.47306326031684875, 0.5149088501930237, -0.08551851660013199, -0.04261596128344536, 0.2705194354057312, -0.06224923953413963, -0.7441891431808472, -0.7358046174049377, -0.5321632623672485, 0.3336702287197113, 0.18690849840641022, 0.5697813630104065, 1.8319340944290161, -0.2840433716773987, -0.24138687551021576, 0.4213216006755829, -0.6128495335578918, -0.5341315269470215, -0.05753512680530548, 0.6306283473968506, -0.08189327269792557, -1.0769623517990112, 0.3551730513572693, 0.3413703441619873, 0.35011935234069824, 0.5578542947769165, -0.10269493609666824, 0.8611348271369934, 0.8923422694206238, -0.4181060492992401, -0.22674915194511414, 0.2837947905063629, 1.3586795330047607, 1.2076635360717773, 0.07548882067203522, 0.19368821382522583, -0.8106541037559509, 0.6076480150222778, 0.01998922973871231, -0.3814559280872345, 0.6758803129196167, -0.1426839977502823, 1.1749910116195679, -1.1515918970108032, -0.23607772588729858, 0.7386124730110168, -0.035086508840322495, 0.32860860228538513, -0.3889041841030121, 0.34204772114753723, -0.31179162859916687, 0.20492757856845856, 0.04572929069399834, 0.9737249612808228, 0.7057647109031677, -0.2746477425098419, 0.03206091374158859, -0.0630214512348175, -0.766647458076477, 0.3813174366950989, -0.38960808515548706, -0.4053199291229248, -0.46135997772216797, 0.48802903294563293, 0.11473698168992996, -0.23010686039924622, -0.2605293393135071, 1.646488904953003, -0.7888976335525513, -0.7954928278923035, 0.14470596611499786, -0.2934269607067108, 0.5764662623405457, -0.9930382370948792, -0.1542573869228363, -0.7403264045715332, -0.34469419717788696, -0.08804488182067871, 0.03289131447672844, -1.3089402914047241, -0.7868057489395142, -0.5927704572677612, -0.8639063835144043, 0.24131613969802856, 0.770359992980957, 1.0267611742019653, 0.4788336753845215, 0.36601129174232483, 0.07153903692960739, 0.1552281528711319, -0.3797682225704193, 0.2469012588262558, 0.1871791034936905, -0.2575473189353943, -0.1634322851896286, -0.8438780307769775, -0.372829794883728, 0.685299813747406, 0.6267301440238953, 0.2726210951805115, 0.3424065113067627, 1.088981032371521, 2.2084996700286865, 0.06805526465177536, -0.7297036647796631, 0.4181066155433655, -0.7059842348098755, 1.199688196182251, 0.6175028085708618, -1.5985764265060425, -4.0333718061447144e-05, -0.980804443359375, -0.8592588305473328, 1.1177560091018677, -0.5335910320281982, -0.994657039642334, 1.688202142715454, 0.43789905309677124, -0.16365890204906464, 1.3070943355560303, -0.1071561723947525, 1.0877461433410645, -0.4656188488006592, 0.005700979381799698, -1.3610161542892456, 0.7277027368545532, 0.9440757036209106, 0.27238890528678894, -1.321610689163208, 0.0799146518111229, -0.19133509695529938, -0.32242950797080994, 0.36268243193626404, -0.14543385803699493, 0.8938537240028381, 0.21862897276878357, -0.1685091257095337, -1.2106513977050781, -0.47960126399993896, -0.14547352492809296, -0.2709229588508606, 0.19034922122955322, 0.11497936397790909, -0.2383785843849182, -0.8447349071502686, 0.25414228439331055, 1.0612342357635498, -0.7331626415252686, -0.4109255373477936, -0.674627959728241, 0.7100276947021484, 0.18543843924999237, -0.284709095954895, -0.6357897520065308, -0.4172224998474121, -0.8669614195823669, -0.7594743371009827, -0.36616286635398865, 0.5638701915740967, -0.8303067088127136, -0.6932696104049683, 0.04501596838235855, -0.35795512795448303, 0.39043989777565, 0.45463496446609497, 0.5686421394348145, -1.4908497333526611, -1.143298625946045, -0.1835717111825943, 0.08011173456907272, 0.4987648129463196, -0.49702736735343933, 1.0687440633773804, -0.3282488286495209, -1.0439175367355347, 0.842976987361908, -0.03545233607292175, -1.693257451057434, -0.7143362760543823, -0.995849072933197, 1.072208285331726, -0.7767665386199951, 0.06870968639850616, 0.05785582959651947, 1.29676353931427, -0.41844597458839417, -1.2130440473556519, -0.49272674322128296, -0.08703869581222534, 0.4219681918621063, 1.0990715026855469, -0.658881425857544, 0.9307809472084045, 0.09071361273527145, -0.9303266406059265, 0.14499419927597046, 0.7828044891357422, -0.8202992677688599, -0.07445523887872696, 0.7363949418067932, 0.782686173915863, 0.37104710936546326, 1.1051123142242432, -0.039986610412597656, 1.3604481220245361, -0.33235278725624084, 0.7812882661819458, -0.8719021677970886, 0.4062320590019226, 0.417897492647171, 0.36995095014572144, -0.242855042219162, -0.7665672302246094, -0.41715720295906067, -0.8978304266929626, -0.8617093563079834, 0.3896544277667999, 0.9005029201507568, -1.0684372186660767, -0.03530797362327576, -0.2824043333530426, 1.0027283430099487, -1.0059515237808228, -0.04903645068407059, 0.010717352852225304, -0.7710481286048889, 0.27541208267211914, -0.41830503940582275, 0.5073471069335938, -0.4202928841114044, -0.16278371214866638, 0.8290700912475586, 0.7975282073020935, -0.6220961809158325, 0.598270833492279, 1.0030587911605835, -0.34820684790611267, -1.2902886867523193, 1.7118492126464844, 0.7878389358520508, 0.24993087351322174, 0.11491996794939041, -0.019315080717206, 0.5621364712715149, -0.012569875456392765, -0.6297727823257446, -0.3051791787147522, -0.2449217438697815, 0.7926382422447205, 0.12284465879201889, 0.17193667590618134, -0.6967146396636963, 0.313888281583786, 0.3886077404022217, -0.11210838705301285, 1.052565574645996, -0.37057673931121826, 0.021786505356431007, 0.7798637747764587, 0.32510513067245483, -0.429670125246048, 0.2949894368648529, 0.37951987981796265, 0.1697397083044052, -0.40567904710769653, 0.8098082542419434, 0.2600254416465759, -0.31124597787857056, 0.1664573848247528, 0.2905929386615753, -0.47850391268730164, 0.089478500187397, -0.4812689423561096, -2.5729620456695557, 0.022544309496879578, -0.24982328712940216, -0.8852514624595642, 0.5509619116783142, -0.7589349150657654, -0.6275912523269653, 0.36947932839393616, 0.3541538417339325, -0.39784175157546997, -0.38404783606529236, -0.26596799492836, -0.46895140409469604, -0.4941338896751404, 0.9711543917655945, -0.3645705580711365, 1.003660798072815, -0.15483640134334564, -0.15129753947257996, -0.36671870946884155, -0.020650628954172134, -0.07495928555727005, 0.5362593531608582, 0.3778913617134094, -0.6556007266044617, -0.26921507716178894, -0.5946194529533386, 0.13310889899730682, 0.022812966257333755, 0.8518771529197693, 0.7388060688972473, -0.5767229199409485, -0.8703726530075073, -0.14548315107822418, 0.7161217927932739, 0.27645641565322876, -1.2356698513031006, -1.0547776222229004, -0.8564844727516174, 0.6166301965713501, -0.5371732711791992, 1.019370675086975, -0.17511692643165588, 0.42100220918655396, 0.6474545001983643, -0.2230789065361023, -0.3313294053077698, -0.5579219460487366, 1.0882059335708618, -0.3392464816570282, 0.7186564803123474, -0.13364988565444946, -0.5677448511123657, 0.6451128721237183, -1.036161184310913, -0.29985311627388, 0.507999837398529, -0.21792832016944885, 0.41364291310310364, -1.0457149744033813, -0.8674834370613098, -0.5452225208282471, 0.09757757931947708, 0.6219066977500916, 0.4586867094039917, 0.6292263269424438, 0.3436446189880371, -1.1320161819458008, 0.004846431314945221, 0.2952740788459778, -0.47285619378089905, 0.7228938341140747, 1.33099365234375, 1.4894988536834717, 0.10831117630004883, -0.10856538265943527, -0.11282169818878174, 1.0838210582733154, -0.7916297316551208, -0.5735796093940735, -1.2554816007614136, -0.0670492947101593, 0.0940835177898407], [-0.2281634360551834, 0.9728761911392212, -2.307185649871826, -0.4867136776447296, 0.3183324933052063, 0.2567273676395416, 1.4728869199752808, -0.1977459341287613, 0.04001152515411377, -0.6821922063827515, -1.177156686782837, 0.10075021535158157, 0.7366175651550293, 1.0374932289123535, 0.3612104654312134, 0.3286864161491394, 0.66031414270401, -0.2858704924583435, 0.9499029517173767, 1.3152976036071777, -0.6161159873008728, -0.7537758946418762, -0.5385705828666687, 0.3947864770889282, 0.43544116616249084, 0.36106184124946594, -1.2498579025268555, -1.1572705507278442, -0.9924253225326538, -0.7936016917228699, 0.12350791692733765, -0.7045776844024658, -0.5253093242645264, 0.6684753894805908, -0.5817700624465942, 1.034686803817749, 1.4708662033081055, 0.5271317362785339, 0.8338282704353333, 1.0162854194641113, 2.704007148742676, -0.5021753311157227, 0.45864149928092957, -1.3775252103805542, 0.2496255785226822, -0.25293901562690735, 0.36603111028671265, -0.9785263538360596, -0.09086083620786667, -0.7839180827140808, 0.7600123286247253, 0.5446078777313232, 0.7138316631317139, 1.081096887588501, 1.0628100633621216, -1.1608223915100098, -0.10459958761930466, 0.06197250261902809, 0.07452838122844696, 0.4057338237762451, 0.763716459274292, 0.05654388293623924, -0.33904778957366943, 1.351511001586914, 0.47612860798835754, -0.4605241119861603, 0.07312469184398651, 0.09396186470985413, 0.04801810532808304, -0.22177734971046448, -0.10299976170063019, -0.22041454911231995, -0.125219464302063, 0.10988403111696243, -1.4860330820083618, 0.5591734051704407, 0.8018395304679871, 0.2864021062850952, 0.3587450683116913, 0.6430731415748596, -1.253357172012329, 0.3436563014984131, 0.452508807182312, 0.25753021240234375, 1.1073262691497803, 0.5893430113792419, 0.6743589639663696, -0.6829290986061096, -0.9291149377822876, 2.046548843383789, 0.48895329236984253, 0.16593733429908752, -0.06271388381719589, -0.5214003324508667, 0.1305590718984604, 0.11750692129135132, -0.3039443790912628, -0.9606491923332214, -0.5990315675735474, -0.7371036410331726, -0.5963236093521118, -0.7008289098739624, 0.49057769775390625, 0.5920799970626831, 1.029547095298767, 1.6491724252700806, 0.06302683055400848, -0.5980902910232544, -1.2806476354599, 0.23034274578094482, 0.4661048352718353, 0.3141736090183258, -0.5723494291305542, -1.5069606304168701, -0.5716461539268494, 0.2335524559020996, 0.47245749831199646, -0.4842034578323364, 0.5398713946342468, 0.577076256275177, -0.6222929358482361, -0.04211621358990669, -0.7052932977676392, 0.4458036720752716, 0.6666184663772583, 0.6959419846534729, -0.349573016166687, -0.21685777604579926, 0.2934112548828125, 0.4415155351161957, 0.23224219679832458, 0.26914381980895996, 0.1484275609254837, 0.9552584290504456, -1.0117533206939697, 1.488065481185913, -0.14309971034526825, -0.7668949961662292, -0.21326132118701935, -0.37023797631263733, 0.46405744552612305, -0.09899821877479553, -0.5216858386993408, -1.220268964767456, -0.13967783749103546, -0.8477180600166321, 0.63377445936203, -0.646713376045227, -0.47992295026779175, -0.4510918855667114, -1.131298542022705, -0.04586363211274147, 0.30784621834754944, 0.687666118144989, 0.36080193519592285, 0.02337535098195076, 0.9567078351974487, 0.26090696454048157, 0.007215565070509911, 0.28811800479888916, 0.8311960697174072, -0.207050621509552, -0.47052696347236633, 0.44730082154273987, 0.29689544439315796, -0.1274375468492508, 0.47062456607818604, 0.34339362382888794, 0.5320054888725281, 1.00407874584198, -0.16084438562393188, -0.3130733370780945, -1.0642048120498657, 0.32696443796157837, 0.09672217071056366, -1.7490919828414917, 0.7370406985282898, -0.06297709047794342, -1.5460172891616821, -1.290876865386963, 0.6259796023368835, -0.6516380906105042, -0.15365728735923767, -0.539261519908905, 0.1464540660381317, -0.18297360837459564, -0.0076753683388233185, -0.5174825191497803, -0.45723599195480347, -0.9421539306640625, -0.8670040965080261, -0.5298438668251038, -1.3269652128219604, 0.06285208463668823, -0.594731867313385, -0.9510248303413391, 0.40541601181030273, -0.21764366328716278, -1.4787201881408691, -0.08581776171922684, 0.24733375012874603, -0.35278528928756714, -1.2997583150863647, 0.10766281187534332, -0.9937984347343445, 0.7648336887359619, -1.1528472900390625, 0.18785251677036285, -1.0770639181137085, 0.11088135838508606, 0.2743225693702698, -0.19980865716934204, -0.8532770872116089, 0.8556192517280579, 0.020261624827980995, -0.7943487167358398, -0.1583511382341385, 0.004490816965699196, -0.18058428168296814, 0.20071829855442047, 0.6034323573112488, 0.28025853633880615, 0.3940373659133911, -0.006083826068788767, 0.9037227630615234, -0.24073123931884766, -0.9803227782249451, -0.2947655916213989, -0.7392389178276062, 0.6038526892662048, -0.8476238250732422, -1.24200439453125, 1.205660343170166, 0.3338814079761505, -1.1477097272872925, 0.769895613193512, -0.22244331240653992, -0.47384515404701233, 0.49842968583106995, 0.893454909324646, 0.06235280632972717, 0.33140435814857483, -0.4652544856071472, -0.2307419329881668, -0.2400057464838028, 0.5670968294143677, 0.17146264016628265, -0.256832093000412, 0.2061581164598465, 1.265707015991211, 0.47783270478248596, -0.28230464458465576, 0.336920827627182, -0.4007260203361511, -0.7212216258049011, -0.4285850524902344, -0.6798277497291565, 0.03205810487270355, -0.3270721137523651, 1.8123124837875366, 0.6992374062538147, -1.1497865915298462, -0.17705033719539642, -0.33470940589904785, 0.08859268575906754, -0.760214626789093, -0.4017006754875183, -1.0512052774429321, 0.5534102320671082, 0.3598231375217438, 0.4818188548088074, 0.09142784029245377, -0.3232276141643524, 0.8403998017311096, 0.029516709968447685, 0.10415966808795929, -0.7136210799217224, 0.325497567653656, 0.03797907009720802, 1.1764788627624512, 0.8175761699676514, -1.219642162322998, -0.8991115689277649, -0.0598251074552536, 0.5826786756515503, 0.07975704222917557, -0.06422580778598785, 0.9501747488975525, 1.0985536575317383, -0.48491567373275757, 0.14009180665016174, 0.713189423084259, -0.6054874658584595, 0.35311612486839294, 0.2572057843208313, 0.2620353698730469, 0.34030672907829285, -1.5360743999481201, -1.2127867937088013, -0.5918442010879517, 0.48232391476631165, 1.092050552368164, 1.740466594696045, 0.7782993316650391, -0.16527944803237915, -0.44565674662590027, 0.0543062798678875, 0.018097296357154846, -1.0173672437667847, -0.21405276656150818, -0.1770692616701126, -1.0558569431304932, 0.3462396562099457, 0.10674108564853668, 0.12990932166576385, 0.6101329326629639, -0.054345227777957916, 0.5512694716453552, 0.44665786623954773, -0.4596390724182129, -0.608622670173645, -0.32248935103416443, -0.2825410068035126, -1.0304914712905884, 0.23582465946674347, 0.6369761824607849, -0.987500786781311, 0.006120787933468819, 0.3800218403339386, 0.331552654504776, 0.6357026100158691, 0.36518946290016174, 0.9594184160232544, -1.0286043882369995, -0.16607525944709778, 0.10788999497890472, 1.690405249595642, -0.0994369387626648, -0.766978919506073, -1.1731594800949097, -0.2242138385772705, 0.9548788666725159, -0.06783195585012436, -1.0209823846817017, 0.23110774159431458, -0.35867902636528015, -0.9974018335342407, -0.5050727725028992, -0.25032222270965576, 0.8136541843414307, -0.16366225481033325, -1.1611192226409912, 0.6582305431365967, 0.1750781387090683, -0.03224522992968559, 0.7538554668426514, -0.5555678606033325, 1.1171272993087769, -0.05157039687037468, 0.2406664937734604, 1.4495922327041626, -0.2684383988380432, 0.5896810293197632, -1.413387417793274, 0.8779847621917725, 0.3937712013721466, 1.005994200706482, 0.5320486426353455, 0.06556306034326553, 0.4201802611351013, -0.7795864939689636, 0.023174874484539032, 0.18928486108779907, 1.1225581169128418, 0.06682135909795761, -0.3834882378578186, -0.915904700756073, 0.0029159036930650473, -0.12001828104257584, -0.9800952672958374, -0.5854665040969849, -0.028896767646074295, -0.9226232171058655, -0.8641408085823059, 1.3014724254608154, 1.1306586265563965, -0.7369540333747864, -0.4821670353412628, 0.5363771915435791, 0.15363657474517822, 0.1906765252351761, 0.131109356880188, -0.6919788122177124, 0.6182816624641418, 0.3684936761856079, -1.0987831354141235, 0.17621901631355286, 0.09679082781076431, 0.8902994990348816, 0.6131305694580078, -0.9272845983505249, -0.3945336639881134, -0.2533925771713257, -0.1583445966243744, 0.44967466592788696, 0.37510430812835693, -0.023120148107409477, 0.9803663492202759, -0.4692496359348297, 0.16547207534313202, 0.5477365851402283, 1.008955955505371, 0.229021817445755, 0.031326983124017715, -0.4022025167942047, 0.19241757690906525, 0.372464120388031, -0.7895753979682922, -0.5222165584564209, 0.2349526584148407, -0.4708282947540283, 0.8598951697349548, -0.014810326509177685, -0.13082243502140045, 1.6962858438491821, 0.40968403220176697, 0.1745513677597046, 0.8264362215995789, -0.24029269814491272, -0.46216511726379395, 0.31803175806999207, 0.29743775725364685, 0.28426551818847656, -0.7017264366149902, 1.0414139032363892, 0.15707287192344666, -0.3175086975097656, 0.831746518611908, 0.5170738697052002, 0.8080438375473022, 0.2524130642414093, -0.3743985593318939, -0.059503376483917236, 0.6542771458625793, 1.3904320001602173, 1.0926766395568848, 0.6231405735015869, 0.35968196392059326, -0.7314271330833435, 0.776279091835022, -0.2621404528617859, -0.4533301889896393, 0.8345433473587036, -0.1688690334558487, 1.107124924659729, -1.6310709714889526, -0.5071724653244019, 1.1331394910812378, 0.33533358573913574, 0.38240379095077515, 0.5326709151268005, 0.6187695860862732, -0.8818530440330505, -0.02714153565466404, 0.42023080587387085, -0.3476141095161438, 0.09989384561777115, 0.43063122034072876, -0.05748377740383148, -0.1712612807750702, -0.32755348086357117, 0.09458770602941513, -0.7002884745597839, -0.28536567091941833, -0.29398825764656067, -0.6300009489059448, 0.5862365365028381, 0.1258280724287033, -0.23252880573272705, 1.3548718690872192, -0.24602873623371124, -1.191450834274292, 0.17422990500926971, -0.532403290271759, -0.115984246134758, -0.44071057438850403, -0.8198203444480896, -1.0248775482177734, -1.3299514055252075, -0.09496372938156128, 0.493412584066391, -1.2995553016662598, -0.9527816772460938, 0.055757150053977966, -1.1752134561538696, 0.4221256971359253, 0.20783589780330658, 1.5709517002105713, 1.4997237920761108, 0.026832517236471176, -0.224420428276062, 0.34972983598709106, -0.9704505205154419, 0.10528348386287689, 0.8915233016014099, -0.42965275049209595, -0.11573950201272964, -1.1371337175369263, -0.5808024406433105, 1.4256759881973267, 0.9241787195205688, -0.4366019368171692, 0.39903178811073303, 1.0160776376724243, 1.203004002571106, -0.6027213931083679, -1.0177087783813477, 0.4349062144756317, -0.18318027257919312, 1.007157564163208, 0.14246469736099243, -0.9824939370155334, -0.5797143578529358, -0.44824695587158203, -1.1999653577804565, 1.5869107246398926, -0.12418298423290253, -0.7607845664024353, 0.5576733350753784, 0.4501207172870636, -0.2908362150192261, 0.6686429381370544, -0.8002716302871704, -0.15896938741207123, 0.19907882809638977, 0.22795815765857697, -1.2009247541427612, 0.7240723371505737, -0.3307349979877472, 0.6692827343940735, -0.3965114653110504, -0.2984234690666199, 0.2066352516412735, -0.14929735660552979, 0.5410676002502441, 0.3255312740802765, 0.008441489189863205, 0.6931170225143433, 0.8797954320907593, -0.7377653121948242, -0.0179192665964365, -0.5999635457992554, 0.16946861147880554, 0.5812088847160339, 0.33124104142189026, -0.2381121665239334, -1.073288917541504, 0.2590659260749817, -0.18052944540977478, 0.2888464629650116, 0.03913099318742752, -0.4426160156726837, 1.3415476083755493, 0.36265385150909424, 0.23714971542358398, 0.25501951575279236, -0.5979394912719727, -0.3770099878311157, -0.6200687289237976, -0.14640487730503082, 0.5190025568008423, -0.4148736000061035, -1.0591634511947632, -0.07526606321334839, 0.09644666314125061, 0.143999382853508, -0.28534695506095886, 0.22273653745651245, -0.8796747326850891, -1.2434167861938477, -0.6699270009994507, -0.24708500504493713, 0.6031028628349304, -0.42042073607444763, 0.8409637808799744, 0.01870802603662014, -1.4596654176712036, 0.2727021872997284, -0.709632396697998, -1.5122687816619873, -0.2603908181190491, -0.9424664378166199, 0.9678770899772644, 0.1244397759437561, 0.6059643030166626, -0.17708826065063477, 0.4133845865726471, -0.462146520614624, -1.0384814739227295, -0.9294552206993103, 0.23532047867774963, 0.5172895193099976, 0.7616363763809204, -0.532277524471283, 1.3062679767608643, 0.3008674681186676, -0.412630170583725, -0.059818707406520844, -0.11876191943883896, -0.26056551933288574, -0.05456704646348953, 1.1425211429595947, -0.08144614845514297, 0.8359218835830688, 0.9535263776779175, 0.18450787663459778, 0.9683945178985596, 0.6696931719779968, 0.4112713634967804, -1.0780515670776367, -0.9830828905105591, -0.6094234585762024, -0.003480694256722927, -0.6905823349952698, -0.37243732810020447, -0.39031195640563965, -0.930895984172821, -1.4312413930892944, 0.3601073622703552, 1.403423547744751, -0.7693785429000854, 0.2889130711555481, -0.30787113308906555, 0.9746369123458862, -1.184988260269165, 0.3626549541950226, 0.024918172508478165, -0.34614717960357666, 0.3946165144443512, -0.21110078692436218, 0.13650648295879364, -0.840509831905365, 0.01760917901992798, 0.05346569046378136, 0.6115343570709229, -0.07711555063724518, 0.7031835913658142, 0.8098646998405457, -0.10652616620063782, -0.3959895968437195, 1.0678391456604004, 1.2787691354751587, -0.21207669377326965, -0.7326554656028748, 0.6491003036499023, -0.3250397741794586, 0.8633337020874023, -0.38476887345314026, -0.09881235659122467, -0.5055297017097473, 0.8145477771759033, 0.14827921986579895, -0.00025880406610667706, -0.6897448301315308, 0.3777236044406891, -0.3712044060230255, -0.017907073721289635, 0.9402610659599304, -0.4928969442844391, 0.298654705286026, 1.1010843515396118, 0.1317393034696579, -0.6648518443107605, 0.19386371970176697, 0.7707299590110779, 0.21362543106079102, -0.012177880853414536, 0.35028016567230225, 0.2630370259284973, -0.3454665243625641, 0.5130956172943115, 0.48025211691856384, -0.7168043851852417, -0.39258214831352234, -0.46093103289604187, -1.918321132659912, -0.5189778208732605, -0.7569595575332642, 0.07274794578552246, 0.5227081179618835, -0.7741842269897461, -0.9530497789382935, 0.24000360071659088, -0.031078701838850975, 0.5265255570411682, -0.7950615286827087, -0.1196725070476532, -0.5556114912033081, -0.017953641712665558, 1.2286970615386963, -0.49311041831970215, 1.6902345418930054, -0.2472826987504959, 0.11101359128952026, -0.5274695158004761, 0.153124138712883, 0.22573241591453552, 0.8462600111961365, 0.19439439475536346, -0.18221579492092133, -0.07427435368299484, -0.6955880522727966, -0.6287490129470825, 0.07299260795116425, -0.04803711920976639, 0.40261608362197876, 0.038098014891147614, -0.5197837352752686, -0.3462177515029907, 0.6544354557991028, 0.3042183220386505, -0.392608106136322, 0.14701172709465027, -1.117039442062378, 0.8168104887008667, -0.35895225405693054, 0.855973482131958, -0.8701431155204773, 1.0156360864639282, 0.6387972831726074, -0.43158382177352905, 0.24269920587539673, 0.21135126054286957, 0.28525352478027344, -0.059162624180316925, 0.5525285005569458, 0.7025672793388367, 0.11146106570959091, 0.1550687700510025, -0.9547268152236938, 0.06652503460645676, -0.0862710252404213, -0.32995402812957764, 0.248485267162323, -0.6089390516281128, -0.8745511174201965, 0.06495015323162079, -0.07521753758192062, 0.1194351315498352, 0.4828801155090332, 0.21500219404697418, -0.15022990107536316, -1.1718906164169312, 0.4050310552120209, 0.5592842698097229, -0.6936213970184326, 0.6348315477371216, 1.3062011003494263, 1.3484376668930054, 0.22741246223449707, -0.3182508051395416, -0.5524793267250061, 0.5373926758766174, -0.9509127140045166, -0.7903534770011902, -0.6707741022109985, -0.2862666845321655, -0.37445929646492004], [-0.10762152820825577, 2.2107248306274414, -2.432352304458618, 0.054706573486328125, 0.8857226371765137, 0.36697858572006226, 1.1581426858901978, -0.07616706192493439, -0.3478933274745941, -0.15440568327903748, -0.9837016463279724, 0.5392048954963684, 0.6251378655433655, 0.2277611494064331, 0.4157823324203491, 1.140140175819397, 1.4334772825241089, -0.1036924421787262, 0.9443971514701843, 1.2353718280792236, -0.5474092364311218, -0.49504324793815613, 0.2015923112630844, 0.12513265013694763, -0.22736868262290955, 0.3989446759223938, -1.241223931312561, -1.399957537651062, -0.7370059490203857, -1.1072520017623901, 0.4417441785335541, -0.37949877977371216, -0.2471814602613449, -0.1278506964445114, -1.2332037687301636, -0.5785762071609497, 1.704314112663269, 1.412596583366394, 1.016144037246704, 0.3260897397994995, 1.9283078908920288, -0.22900578379631042, 0.4570372998714447, -1.689184546470642, -0.2525416910648346, 0.03506370261311531, 0.41290009021759033, -0.08378136157989502, 0.4827037453651428, -0.24191556870937347, 0.48169204592704773, -0.9068032503128052, 0.5531214475631714, 0.8424937129020691, 1.0486246347427368, -0.27363747358322144, 0.4591308534145355, 0.2832353413105011, 0.06278068572282791, -0.6355255842208862, 0.8007773160934448, 0.29908886551856995, 0.20213264226913452, 0.7601506114006042, 0.17066991329193115, -0.4574272632598877, 0.03534579649567604, 0.06595854461193085, -0.021821539849042892, 0.04507702589035034, -0.0012543294578790665, 0.11845393478870392, -0.8925691843032837, 0.5096595883369446, -1.990590214729309, 0.3743007183074951, 0.6185007691383362, 0.9118102788925171, 0.5919770002365112, 0.3564590811729431, -0.15225307643413544, 0.30976787209510803, 0.6056598424911499, 0.11864840984344482, 0.546332597732544, 0.3464880585670471, 0.8845224380493164, -0.6748378276824951, -0.3350750803947449, 1.525546669960022, 0.8250429630279541, 0.013775574043393135, 0.28579574823379517, -0.42609578371047974, -0.5940285921096802, -0.40353962779045105, 0.4741339683532715, -0.2630637288093567, -0.7090910077095032, -0.964850902557373, -0.5659589767456055, -0.962162435054779, 0.3092832863330841, 0.08756118267774582, -0.18784092366695404, 1.23432195186615, 0.6811308264732361, -0.12145071476697922, -0.35021838545799255, -0.14289070665836334, 0.11839872598648071, 0.6423308849334717, -1.1104522943496704, -1.4092679023742676, -0.8394098877906799, 1.0079147815704346, 1.0532758235931396, -0.17056500911712646, 0.3669646382331848, 1.3837774991989136, -0.16829119622707367, -0.40306007862091064, -0.15579019486904144, 1.128598928451538, 0.21602262556552887, 0.7145007848739624, -0.6477749347686768, -0.47154945135116577, 0.21673110127449036, -0.06753944605588913, 0.34859129786491394, -0.3072790503501892, -0.4003491997718811, 0.7066998481750488, -0.904826819896698, 1.444930076599121, -0.2796061038970947, -0.5098745226860046, -0.06252946704626083, -0.3450305163860321, 0.5713288187980652, 0.4089726507663727, -0.45572659373283386, -0.7293643355369568, -0.4181780219078064, -0.8382960557937622, 0.5517776012420654, 0.09616430848836899, -0.8734859824180603, 0.25796496868133545, -1.1598128080368042, 0.5590121150016785, -0.09495348483324051, 0.30077770352363586, 0.12732155621051788, 0.13892924785614014, 0.633564293384552, -0.025365019217133522, 0.5299794673919678, 0.2858406901359558, 0.8059541583061218, -0.36155468225479126, -0.8069919347763062, 0.2884475886821747, 0.26197001338005066, -0.26568111777305603, 0.2513929605484009, 0.6228066682815552, 0.1923569291830063, 0.6681016683578491, -0.31593430042266846, -0.2112453281879425, -0.33834633231163025, 0.30280712246894836, 0.48724034428596497, -0.9389567375183105, 1.2120105028152466, -0.10501903295516968, -1.3945953845977783, -1.552388072013855, 0.20297802984714508, -0.4945298135280609, 0.45717963576316833, -0.01409730315208435, 0.19911706447601318, -0.8850500583648682, 0.16766826808452606, -0.35853463411331177, -0.7458946108818054, -0.3272707164287567, -0.41060587763786316, -0.394661545753479, -0.6167114973068237, 0.440405011177063, -1.0511924028396606, -0.6409478187561035, 0.42326709628105164, -0.8820812702178955, -0.5471858978271484, 0.09700837731361389, 0.03649729862809181, -0.5758585929870605, -1.1776759624481201, 0.22271424531936646, -0.3449985086917877, 0.942718505859375, -1.3710401058197021, 1.009498119354248, -0.9801194667816162, -0.12706194818019867, 0.567110538482666, 0.11749957501888275, -0.9450355768203735, 0.4559532105922699, -0.0035311952233314514, -1.5973840951919556, 0.4409402012825012, 0.4274846613407135, -0.3523195683956146, 0.4932979643344879, -0.25370723009109497, 0.44223782420158386, 0.06454359740018845, 0.1214338093996048, 0.46058720350265503, -0.24354341626167297, -0.6420679688453674, -0.6709417700767517, -0.47822368144989014, -0.23429974913597107, -0.5709916949272156, -1.3015419244766235, 0.6755887269973755, 0.11558117717504501, -1.3733251094818115, 0.21258428692817688, 0.23851022124290466, 0.003032408654689789, 0.5174694061279297, 1.193809151649475, 0.2512364387512207, 0.595446765422821, -0.3710924983024597, -0.40352097153663635, -0.4138440787792206, 0.18235072493553162, 0.8335824608802795, -0.4789801836013794, 0.2887386381626129, 1.3426486253738403, 1.309685468673706, 0.029979797080159187, 0.3224470317363739, 0.25007155537605286, -0.4961503744125366, -0.7749823331832886, -0.640984833240509, 0.41602885723114014, 0.004194520879536867, 1.733166217803955, 0.47572070360183716, -0.9267093539237976, 0.20267996191978455, -0.0820697769522667, 0.19148540496826172, 0.035200752317905426, -0.5645315647125244, -0.21968373656272888, -0.10894030332565308, 0.4122737944126129, -0.15346455574035645, 0.4899212419986725, -0.14622871577739716, 0.4831353425979614, -0.33597174286842346, -0.7568272948265076, -0.8396355509757996, 0.8441733717918396, -0.39397600293159485, 0.7185295224189758, -0.3312096893787384, -1.1121808290481567, -0.34963253140449524, -0.14438314735889435, 0.7416045069694519, 0.10904490947723389, 0.12239708751440048, 0.3497203588485718, 0.6108607649803162, -0.1521150767803192, 0.2615632712841034, 0.060535043478012085, -0.036098312586545944, -0.04650979861617088, -0.01137620210647583, 0.6131852269172668, 0.8175393342971802, -1.0332889556884766, -0.44744065403938293, -0.05973832309246063, 0.31055471301078796, 1.3669441938400269, 0.4474024772644043, 0.838038444519043, -0.026460980996489525, -0.5155297517776489, -0.32658782601356506, -0.31223973631858826, -1.036981463432312, -0.7657558917999268, -1.1264046430587769, -0.7145410180091858, -0.02505047619342804, -0.0999731793999672, 0.2582181394100189, 0.37694504857063293, -0.3654748201370239, 0.29002904891967773, 1.3574938774108887, -0.30682533979415894, -0.9850828051567078, -0.17610511183738708, -0.5910567045211792, -0.7967019081115723, 0.4634549915790558, 1.1083834171295166, -1.1813106536865234, -0.7326127886772156, 0.1048719510436058, -0.018482627347111702, 0.283964604139328, -0.07546647638082504, -0.014510557055473328, -1.3687201738357544, -0.7832350730895996, -0.3995106816291809, 1.9792535305023193, 0.07169041782617569, -0.4254021644592285, -0.3826870024204254, 0.7942332029342651, 0.7357187271118164, 0.030901866033673286, -1.0388641357421875, 0.6237768530845642, -0.3070501983165741, -0.5287865400314331, -0.06450330466032028, 0.5344310998916626, 0.5056533217430115, -0.6090754270553589, -0.8046715259552002, -0.15271170437335968, -0.2376583218574524, -0.24441131949424744, 0.8286409378051758, 0.012549306266009808, 1.1776247024536133, -0.3274536728858948, 0.0644155815243721, 0.532759428024292, -0.004068966023623943, 0.142318457365036, -1.4452859163284302, 0.3410472869873047, 0.6423803567886353, 0.9441954493522644, 0.7611272931098938, 0.44362249970436096, 0.04245647415518761, 0.509150505065918, 0.25988298654556274, 0.35016152262687683, 1.4608738422393799, 0.0752103179693222, 0.32469916343688965, -0.8159022331237793, -0.4065669775009155, -0.08485466241836548, -0.8595396876335144, -0.048319607973098755, 0.7380987405776978, -0.9684329032897949, -0.38736602663993835, 1.24594247341156, 0.44943177700042725, -0.7544245719909668, -0.20243820548057556, 0.41256844997406006, 0.4178188443183899, -0.5874029994010925, 0.5408278107643127, -0.49375149607658386, 0.03152226656675339, 0.2581561803817749, -1.3248751163482666, 0.16528142988681793, 0.17149975895881653, 0.667031466960907, 0.40146803855895996, -1.321864128112793, -0.010154006071388721, -0.5002796649932861, 0.6769059300422668, 0.33215171098709106, 0.24739430844783783, 0.3059045970439911, -0.12622776627540588, -0.014637534506618977, 0.16761444509029388, 0.026157040148973465, 0.6722667217254639, -0.888302743434906, 0.22272612154483795, -0.10225064307451248, -0.04674287885427475, -0.5546647906303406, -0.44308769702911377, -0.48382553458213806, 0.2069893479347229, -0.02877049706876278, 0.030673496425151825, 0.7077089548110962, -0.2792721390724182, 1.4694195985794067, 0.2164144217967987, 0.8731203079223633, 0.34764620661735535, -0.05277356877923012, -1.18050217628479, -0.014734387397766113, 0.5839971303939819, -0.204222172498703, -0.5911504626274109, -0.4309833347797394, 0.4938102662563324, -0.3442060649394989, 0.368133008480072, 0.440276563167572, 1.0857492685317993, 0.3998940587043762, 0.3554944694042206, -0.22173509001731873, 0.7252495288848877, 0.8211722373962402, 1.276269793510437, 0.368671715259552, -0.14073386788368225, -1.1595057249069214, 0.6229738593101501, -0.8427122831344604, -0.23577560484409332, 0.8775882124900818, 0.024255752563476562, 1.5126361846923828, -1.6137077808380127, -0.40366658568382263, 0.8469758629798889, 0.46757984161376953, -0.07979152351617813, 1.0094231367111206, -0.6020979285240173, -0.3040001690387726, 0.4557786285877228, 0.1598820835351944, -0.09196693450212479, 0.0016033230349421501, 0.11570348590612411, 0.01784466579556465, 0.9128761887550354, -0.4813583791255951, 0.7970815896987915, -0.8398616313934326, 0.1425895243883133, 0.37365299463272095, -0.2651008069515228, 0.2530503273010254, 0.25886669754981995, 0.27621015906333923, 1.2414604425430298, -0.365630179643631, -1.1567848920822144, -0.024330737069249153, -0.7824003100395203, 0.17581981420516968, -0.835054337978363, -0.05469401553273201, -0.6884559392929077, -0.02840137481689453, -0.42369014024734497, 0.6394957304000854, -0.5058168172836304, -0.586106538772583, -0.5265129208564758, -1.4065519571304321, 0.7674693465232849, 0.8717789053916931, 1.3802618980407715, 0.8814371824264526, 0.21944670379161835, 0.6758018136024475, 0.48670968413352966, -0.9885862469673157, -0.31109708547592163, 0.29592227935791016, -0.10917079448699951, -0.03179888799786568, -1.151504397392273, -0.5093899965286255, 0.015484396368265152, 0.16729551553726196, 0.13982948660850525, 0.9255958199501038, 0.8019365072250366, 1.2460205554962158, -0.656247615814209, -0.6649844646453857, 0.7007925510406494, -0.44117531180381775, 0.2785893976688385, 0.7243196368217468, -0.32243168354034424, -0.556299090385437, -0.7867031097412109, -1.396836519241333, 1.2550532817840576, 0.1617647409439087, -0.520253598690033, 1.033941388130188, 0.24694333970546722, 0.5364669561386108, 0.4147856533527374, -0.2060786485671997, 0.40689730644226074, 0.06552676111459732, -0.2761019766330719, -1.066284418106079, 1.0292497873306274, -0.19498205184936523, 0.4587702751159668, 0.1855776309967041, -0.21398590505123138, 0.04135744273662567, -0.49315133690834045, 0.15839871764183044, 0.1805262267589569, 0.3024127781391144, 0.9267995357513428, 0.10124523192644119, -1.318917989730835, 0.5386582016944885, -0.4424934983253479, -1.0398855209350586, 0.5099970698356628, 0.36773398518562317, 0.029283571988344193, -0.21223965287208557, -0.24621495604515076, -0.9125624299049377, -0.6049544215202332, -0.22346986830234528, -0.2840021848678589, 1.112908124923706, 0.6700469851493835, 0.09016314893960953, 0.22266677021980286, -0.4570378065109253, -0.25177523493766785, -0.1999247968196869, 0.39114999771118164, 0.1507347673177719, -1.0347697734832764, -0.26259514689445496, 0.3947117030620575, -0.7662187814712524, -0.15493299067020416, -0.6966635584831238, -0.24299883842468262, -0.6686522960662842, -0.9504261612892151, -1.2356775999069214, 0.06588786840438843, 0.8603399395942688, -0.820527970790863, 0.7930165529251099, 0.040478937327861786, -1.4364101886749268, 0.34317463636398315, -0.2671453356742859, -1.2935731410980225, -0.01692548207938671, -1.1933079957962036, 0.7201250195503235, 0.08457471430301666, -0.026583164930343628, -0.3929574489593506, 0.7089749574661255, -1.4924973249435425, -1.539969563484192, -0.8646976947784424, 0.013474440202116966, 1.010288119316101, 0.24272947013378143, -0.6687788963317871, 1.020904541015625, 0.29132702946662903, -0.23474448919296265, -0.10861711204051971, 0.003988079726696014, -0.016904320567846298, 0.316854864358902, 0.5774695873260498, 0.117256298661232, 0.44536763429641724, 1.0353288650512695, -0.10045827925205231, 1.3721667528152466, 0.32625266909599304, 0.67435222864151, -0.8952503800392151, -0.3173460066318512, 0.14268678426742554, 0.6587681770324707, -1.1271915435791016, -1.0888581275939941, -0.0991661548614502, -0.6551550030708313, -0.7673143744468689, 0.5008137226104736, 0.7382141351699829, -1.1305279731750488, 0.3822879493236542, -0.7407377362251282, 0.09982923418283463, -1.2399815320968628, 0.30577370524406433, -0.3897799253463745, -0.5277447700500488, -0.25740909576416016, 0.7133654356002808, -0.06049944460391998, -1.4830831289291382, 0.3140144944190979, -0.2974972128868103, -0.17615042626857758, -0.5508307814598083, 0.6235960125923157, 1.0407108068466187, 0.562900960445404, -0.7123625874519348, 1.1623106002807617, 0.6321715712547302, -0.24376463890075684, -0.5420283079147339, 0.4841421842575073, -0.2810893952846527, 0.7084605693817139, -0.3077802360057831, -0.2653200030326843, -0.9917165637016296, 1.4787729978561401, 0.37023237347602844, 0.2080845981836319, 0.013962054625153542, 0.3613984286785126, -0.3450530171394348, 0.04741007834672928, 0.5167500972747803, -1.3516790866851807, 0.14560097455978394, 1.1900150775909424, 0.26236727833747864, -0.333074688911438, 0.34924304485321045, 0.48996877670288086, 0.47374388575553894, -0.5569992661476135, 0.4904486835002899, 0.7215558886528015, -0.6052908301353455, 0.16686509549617767, 0.4681461453437805, -0.275736927986145, -0.08866622298955917, -0.4190385937690735, -1.0264582633972168, 0.21950243413448334, -0.5293896198272705, -0.842129647731781, 0.5665827393531799, -1.3952314853668213, -0.6504015326499939, 0.34238186478614807, -0.487079381942749, -0.10119825601577759, -0.5594671368598938, -0.15166960656642914, 0.17926768958568573, -0.2720721364021301, 0.8106995820999146, -0.20900729298591614, 1.7896780967712402, -0.34365344047546387, 0.27972471714019775, -1.86501944065094, -0.5494785308837891, 0.92365962266922, 0.027792789041996002, -0.07460761070251465, 0.3627729117870331, 0.7361958622932434, -0.3219596743583679, -0.2259056568145752, 0.16590990126132965, 0.18482014536857605, 0.021786540746688843, 0.1043359637260437, -0.3889537453651428, -0.10075372457504272, 0.759337842464447, 0.8766707181930542, -0.038815710693597794, -0.5168929696083069, -1.210634469985962, 0.13476905226707458, -0.24755722284317017, 0.6686439514160156, -0.6338503956794739, 0.661392331123352, 0.20096488296985626, -0.6083418130874634, -0.019351013004779816, -0.1911182701587677, 1.212908148765564, 0.16293857991695404, 0.32735762000083923, -0.0034586936235427856, 0.040007755160331726, -0.25531378388404846, -0.9808269143104553, -0.08881565183401108, 0.28730639815330505, -0.6449719071388245, 0.09064783900976181, -1.0914053916931152, -0.38619911670684814, -0.49478626251220703, 0.2741027772426605, 0.6926200985908508, 0.9966964721679688, 0.6770648956298828, -0.03541304171085358, -0.7846208214759827, 0.22538426518440247, 0.24557186663150787, -0.495162695646286, -0.26610317826271057, 1.5842223167419434, 1.8145495653152466, 0.6846118569374084, 0.846407949924469, -0.625745952129364, 0.16188201308250427, -1.052676796913147, -0.8702528476715088, -0.5063503384590149, -0.9304731488227844, -0.15578776597976685], [0.23310746252536774, 1.4278903007507324, -2.1227834224700928, -0.0013359887525439262, 0.3008582592010498, 0.542358934879303, 0.20061683654785156, 0.24048146605491638, 0.1601279079914093, -0.44900789856910706, -1.6744047403335571, 0.18671606481075287, 0.17705923318862915, 0.7730186581611633, -0.6454611420631409, 0.28899574279785156, 0.3989223837852478, 0.39240124821662903, 0.06639847904443741, 0.7916886806488037, -0.8686342835426331, -0.6914786696434021, -0.48644235730171204, 0.16924002766609192, -0.15071633458137512, 0.5631812214851379, -1.7273164987564087, 0.5159450173377991, -1.2806364297866821, -1.0600923299789429, -0.2440098375082016, -0.20849379897117615, -0.0029046721756458282, -0.1921001821756363, -1.1359930038452148, -0.40035492181777954, -0.144361212849617, 0.2120652049779892, 0.03611825779080391, 0.3860289752483368, 1.717891812324524, 1.300004243850708, 0.42230111360549927, -1.384103775024414, 0.7246899008750916, -0.49890196323394775, 1.166635513305664, -1.0525972843170166, -0.3054504990577698, -0.18908853828907013, 0.6534474492073059, 0.10872237384319305, 0.7236050367355347, 0.9924842715263367, 1.3056960105895996, -0.6291726231575012, 0.1873691976070404, -0.10811382532119751, 0.5503983497619629, 0.6714937090873718, 0.7424443960189819, -0.12362820655107498, -0.3078012466430664, 0.9690056443214417, 0.23790723085403442, 0.1908324658870697, 0.03796781599521637, 0.3786236345767975, -0.5877575278282166, -0.04820946604013443, 0.4027002453804016, 0.05261644721031189, -0.22777722775936127, -0.19914419949054718, -0.6910868287086487, 0.24826136231422424, 0.7986147403717041, 0.28921830654144287, -0.49463510513305664, 0.6072691082954407, -0.8116118311882019, 0.19085389375686646, 0.7726139426231384, -0.6297479867935181, -0.11944285780191422, 0.3671623468399048, 0.6435603499412537, -0.48126956820487976, -0.6335395574569702, 1.1797261238098145, 0.4085511267185211, 0.15507684648036957, 0.2227214276790619, -0.012878654524683952, -0.20343449711799622, -0.46741238236427307, 0.2533179223537445, -0.629931628704071, -0.6141504645347595, -0.42592570185661316, -0.8799777030944824, -0.40646547079086304, 0.3141492009162903, 1.1180403232574463, 0.7334396243095398, 1.7478065490722656, -0.7655212879180908, -0.6731159687042236, 0.18913815915584564, 0.8737653493881226, -0.21360425651073456, 0.32893773913383484, -0.7154560685157776, -1.301483392715454, -0.4654480516910553, 0.7633097171783447, 0.9215831756591797, -0.18168842792510986, 0.9174221754074097, 0.9925140738487244, 0.31719765067100525, -0.400615394115448, -0.6625869870185852, 0.737936794757843, 0.6270554065704346, -0.2943347990512848, -0.59977126121521, 0.09925853461027145, 0.11279919743537903, 0.09500574320554733, 0.09188327193260193, -0.22347508370876312, 0.22401823103427887, 1.308854579925537, -0.22462362051010132, 0.8778181076049805, 0.05061694607138634, -1.1196601390838623, -0.239095076918602, 0.25634509325027466, 0.3240402042865753, -0.17993256449699402, -0.28752535581588745, -1.1721669435501099, -0.07295344024896622, -0.037083566188812256, -0.08031845092773438, -0.2243463546037674, -0.7653160095214844, 0.5886319279670715, -1.5705052614212036, 0.5863599181175232, -0.5285415649414062, 0.5946773290634155, 0.3079373240470886, -0.057566773146390915, 0.3155795931816101, 0.20667417347431183, 0.3650619685649872, 0.7665985226631165, 0.8131089210510254, 0.22077587246894836, -0.4080246090888977, 0.5323686599731445, 0.6339337229728699, -0.5180459022521973, 0.22488903999328613, 0.16929423809051514, -0.9301173686981201, 0.9548398852348328, -0.9090262055397034, -0.8999029994010925, -0.6358683109283447, -0.10471216589212418, -0.5027198195457458, -0.6539621353149414, 0.39206257462501526, -0.9749196767807007, -0.9748948812484741, -0.9956554770469666, 1.5433529615402222, -0.536853551864624, 0.45806437730789185, -0.07456962764263153, 0.3157948851585388, -0.48141634464263916, 0.17994274199008942, -0.0462958887219429, -0.26883262395858765, -0.41813141107559204, -1.0222272872924805, -0.09599948674440384, -0.7140877842903137, 0.6394293308258057, -0.30090853571891785, -0.7172701358795166, 0.46211594343185425, 0.11348296701908112, -0.598894476890564, -0.0998583734035492, -0.42442578077316284, -0.49548661708831787, -1.0532402992248535, 0.6898080706596375, 0.24628522992134094, 1.3003851175308228, -0.029620081186294556, 0.5304304957389832, -0.4037953317165375, -0.14067642390727997, 0.859717845916748, -0.17577233910560608, -0.8451278209686279, 0.46893227100372314, -0.05656279996037483, -0.8357998728752136, 0.3788549304008484, 0.1813916116952896, 0.5109861493110657, -0.12333715707063675, 1.111473798751831, 0.5697842836380005, 0.18169835209846497, -0.1403418630361557, 0.18595363199710846, 0.00951335858553648, -0.05997399240732193, -0.26922836899757385, -0.6986958384513855, -0.03863236680626869, -0.8269352316856384, -0.6958134174346924, 1.1850438117980957, 0.09266340732574463, -0.7868857979774475, 1.2758967876434326, -0.42263558506965637, 0.13117045164108276, -0.47532039880752563, 0.6861579418182373, 0.20911411941051483, -0.24508169293403625, -0.9953858852386475, -0.5209296345710754, -0.558621346950531, 0.30209046602249146, 0.6934399008750916, -0.07509656250476837, 0.17337974905967712, 1.6740385293960571, 0.6254227757453918, -0.41358160972595215, 0.8535221219062805, 0.23205623030662537, -0.3441530168056488, -1.0955854654312134, 0.007442876696586609, 0.12120886892080307, -0.8496128916740417, 1.481447458267212, 0.7464153170585632, -1.4593664407730103, -0.44310933351516724, -0.00610921299085021, 0.2801397740840912, -0.39330601692199707, -0.33365002274513245, -0.5496066212654114, 0.6435744762420654, 0.6838569045066833, 0.07285067439079285, -0.10383825749158859, 0.003408856689929962, 1.045656681060791, 0.19367259740829468, 0.32600849866867065, -0.29358816146850586, 0.19505712389945984, 0.25089266896247864, 0.6438420414924622, 0.09072735905647278, -1.618355631828308, -0.6908381581306458, -0.23489058017730713, 0.35160258412361145, -0.08043201267719269, -0.8458347916603088, 0.5943066477775574, 0.8273098468780518, -0.34386998414993286, 0.188558429479599, 0.4260108470916748, 0.14069907367229462, -0.1339043527841568, 0.48404377698898315, 0.36162951588630676, 0.9611651301383972, -0.9675120711326599, -0.7379522323608398, -0.04985545948147774, 0.2727743685245514, 1.5965462923049927, 0.7127408981323242, 1.252373456954956, -0.017344888299703598, -0.2089361995458603, -0.4866703450679779, -0.20428884029388428, -1.079616904258728, -0.446085661649704, -0.896675705909729, -1.0427218675613403, -0.1303950995206833, -0.5039531588554382, 0.44487640261650085, 0.2584313154220581, 0.308535635471344, 0.6355018019676208, 0.044364143162965775, -0.925697386264801, -0.5409746170043945, -0.14882425963878632, 0.4099571108818054, -1.8460667133331299, 1.170067548751831, 1.3119382858276367, -1.1115869283676147, 0.026357362046837807, 0.30333948135375977, -0.17521288990974426, 0.5174158811569214, 0.05993860214948654, 0.6814862489700317, -0.9318989515304565, -0.6614618301391602, -0.008325573056936264, 1.3143434524536133, 0.3845348656177521, -0.5070327520370483, 0.15181028842926025, 0.3121911287307739, 0.5008260011672974, -0.03341691195964813, -1.116401195526123, 0.19400480389595032, -0.1533421277999878, -1.040379524230957, -0.09023365378379822, 0.7612923383712769, 1.1280860900878906, -0.509480357170105, -0.2434232085943222, -0.0887475460767746, 0.036624521017074585, -0.7611689567565918, -0.1974198967218399, -0.4308628737926483, 0.3906809091567993, -0.2573985457420349, 0.09687642753124237, 0.8707171678543091, -0.17154814302921295, 0.02828206494450569, -1.5785497426986694, 0.5339173078536987, 1.0452860593795776, 2.0179615020751953, 0.5437769889831543, 0.26533985137939453, -0.012933650985360146, -0.9531343579292297, -0.5656975507736206, 0.47134119272232056, 0.23711147904396057, 0.6855915188789368, -0.49284929037094116, -0.7773457169532776, 0.05440894886851311, -0.25237444043159485, -0.7231801152229309, -0.742404043674469, 0.27272501587867737, -0.6401440501213074, -0.5077261328697205, 0.6324278116226196, 0.34998396039009094, -0.49596843123435974, -0.19802699983119965, 0.4161216914653778, -0.4589085876941681, -0.5829526782035828, 0.3325263261795044, -0.6483173370361328, -0.05060362070798874, 0.8985589742660522, -0.5715214014053345, -0.8946202397346497, -0.093247190117836, -0.35457414388656616, 0.9595378637313843, -1.3780356645584106, -0.958317220211029, -0.9875888824462891, 0.107378751039505, 0.35242295265197754, 0.08105185627937317, 0.8063363432884216, 0.007801257539540529, -0.05748017504811287, -0.44909289479255676, 0.008609396405518055, 1.239427089691162, -0.03602002188563347, 0.2396768480539322, -0.4522489607334137, -0.002263373229652643, 0.429536908864975, -0.8697735667228699, -0.40096747875213623, -0.4984027147293091, -0.7534886598587036, 0.5145173072814941, -0.0897928774356842, 0.06525132805109024, 0.8622953295707703, 0.00672277482226491, 0.2893499732017517, 0.886173665523529, -0.24543429911136627, -0.7253966331481934, -0.2900552749633789, 0.5345553159713745, -0.5433652997016907, -0.5292057991027832, 0.48444631695747375, 0.33065611124038696, 0.5628019571304321, 0.6805315017700195, -0.06710842996835709, 0.09037865698337555, 0.08545897901058197, -0.2706303894519806, -0.3789313733577728, 0.5487877726554871, 1.3121213912963867, 0.8127482533454895, 1.1254860162734985, -0.0843873992562294, -0.7642199993133545, 1.2521202564239502, -0.01109111774712801, 0.3639068603515625, -0.1929236501455307, 0.8371813297271729, 0.959322452545166, -1.02611243724823, -0.31591033935546875, 0.24825625121593475, 0.6040692925453186, 0.270956814289093, -0.33544260263442993, 0.34640073776245117, -0.7459618449211121, -0.23816055059432983, -0.06860313564538956, -0.11242567002773285, 0.8345855474472046, -0.3361330032348633, 0.12810705602169037, 0.0703035444021225, -0.14047099649906158, -0.07113365828990936, -1.115025520324707, 0.6157999038696289, 0.39436623454093933, 0.06295328587293625, 0.3504568040370941, 0.543167769908905, 0.1909523904323578, 0.43908876180648804, -0.30526968836784363, -0.226897194981575, 0.5996558666229248, -0.9477061033248901, 0.032052770256996155, -0.4963730275630951, -0.8081060647964478, -0.7129324674606323, -0.1042327880859375, -0.2812914550304413, -0.3737855553627014, -0.16319699585437775, 0.015188703313469887, 0.2159409523010254, -1.144948124885559, -0.2023714929819107, 0.5076521635055542, 1.1048763990402222, 0.42610716819763184, 0.7892624735832214, 0.5375963449478149, 0.17083200812339783, -0.7844515442848206, 0.27105963230133057, 0.023751288652420044, 0.05005275458097458, -0.5272477865219116, -0.5225417017936707, -0.5142203569412231, 0.2720237672328949, 0.700580894947052, 0.07316657900810242, -0.1612614095211029, 0.29145440459251404, 1.4701759815216064, -0.27437373995780945, -0.30311423540115356, 0.20471744239330292, -0.2736685872077942, 0.8000061511993408, 0.15496855974197388, -1.0692675113677979, -0.524402916431427, 0.039996951818466187, -2.2878384590148926, 1.3484208583831787, -0.063295878469944, -1.5104092359542847, 0.9872170090675354, 0.7629532814025879, 0.1628233790397644, 0.6184849143028259, -0.41858506202697754, 0.35885319113731384, 0.45872732996940613, 0.08027079701423645, -1.2819126844406128, 0.644389271736145, 0.6711283326148987, 0.2500319182872772, -0.7968510985374451, -0.07743779569864273, 0.052919935435056686, 0.18161864578723907, 0.04308338090777397, 0.25970518589019775, 0.5979771614074707, 0.6848933696746826, -0.038654107600450516, 0.2903848886489868, 0.3645493686199188, -0.4442252516746521, 0.45410647988319397, -0.3701859712600708, 1.3300697803497314, -0.23245419561862946, -0.39315760135650635, 0.2071252316236496, -0.8267092108726501, 0.32050833106040955, 0.04649750515818596, -0.6003515124320984, 0.7528823018074036, 0.38175657391548157, -0.25542980432510376, -0.0865967646241188, -0.5826607942581177, -0.7099388241767883, -0.7010423541069031, -0.4818408787250519, 0.8875207304954529, -1.4494191408157349, -0.40382274985313416, -0.7801417708396912, -0.3274930417537689, 0.11788902431726456, -0.32830706238746643, 0.07647708058357239, -1.0972685813903809, -1.2949588298797607, 0.23227231204509735, 0.3347858488559723, 0.35040727257728577, 0.2199544906616211, 0.5445005297660828, 0.27353155612945557, -1.326442003250122, 0.993462860584259, 0.27982693910598755, -2.3016197681427, -0.5840471982955933, -1.4405558109283447, 0.9959320425987244, 0.5930408239364624, 0.46231526136398315, -0.5296108722686768, 1.3732043504714966, -0.7979043126106262, -0.8179145455360413, -0.7485620379447937, -0.7410783767700195, 0.3516814410686493, 0.5323776006698608, -0.7179973721504211, 0.6148132681846619, 0.1775703728199005, -0.5721545815467834, 0.03237473964691162, 0.1987607777118683, -0.7178057432174683, 0.22855976223945618, 0.3569873869419098, 0.33347082138061523, 0.3994547128677368, 1.033132553100586, 0.7817093133926392, 1.3681050539016724, 0.011481720954179764, 1.1486029624938965, -0.379506379365921, 0.03823251649737358, -0.9033800959587097, -0.16856548190116882, -0.8012745976448059, 0.220183864235878, -0.054782770574092865, -1.061328411102295, -0.834469199180603, 0.23917709290981293, 0.7869868278503418, -1.3705605268478394, -0.2497340738773346, -0.29789209365844727, 0.18080544471740723, -0.748896598815918, 0.5070800185203552, 0.1784386783838272, -0.17141859233379364, 0.4628378450870514, -0.27326926589012146, 0.3446418344974518, -0.3505774140357971, 0.0751374214887619, 0.43261662125587463, 0.7653881311416626, -0.2675701081752777, 0.46697336435317993, 0.3717115521430969, -0.07277755439281464, -0.7079558372497559, 0.8410078287124634, 1.2739646434783936, -0.00036851316690444946, 0.5309520363807678, 0.6217482686042786, -0.42704296112060547, -0.14832302927970886, -0.2670688331127167, -0.07666733115911484, -0.6192597150802612, 0.8002907037734985, -0.05745574086904526, 0.27142593264579773, -0.5993104577064514, 0.7251469492912292, -0.13278284668922424, 0.7644402384757996, 1.1431455612182617, 0.18243356049060822, -0.8580314517021179, 0.6801925897598267, 0.8885654211044312, -0.11390797048807144, 0.23089590668678284, 0.527711808681488, -0.11518904566764832, 0.04221891239285469, 0.43453842401504517, 0.3136504292488098, -0.5102981328964233, 0.6051825881004333, 0.5048708319664001, -0.07617082446813583, -0.14634250104427338, -0.31761959195137024, -1.1967179775238037, -0.9191907048225403, -0.208438903093338, -0.2535458505153656, 0.2698003351688385, -1.671939492225647, -1.2076271772384644, 0.13639673590660095, -0.6997429132461548, 0.26320356130599976, -0.5384960174560547, -0.41155341267585754, -0.018249325454235077, 0.05896318331360817, 1.4434400796890259, -0.3155202865600586, 1.5713093280792236, 0.9370355606079102, -0.6856845617294312, -0.18845294415950775, -0.10195514559745789, -0.42177578806877136, 0.2933206558227539, 0.732658863067627, -0.11566250771284103, 0.8052091598510742, -0.6019156575202942, -0.706571638584137, 0.40971875190734863, 0.03421151638031006, 0.5256770849227905, -0.795045793056488, -0.7370737791061401, -0.31011638045310974, -0.040914617478847504, -0.0894622951745987, -0.6057233810424805, -0.3552560806274414, -0.8507340550422668, 0.08234793692827225, -0.05655255913734436, 0.8383944034576416, -0.261196106672287, 1.0087206363677979, 0.34272846579551697, -0.05580443888902664, -0.4694082736968994, -0.7508940100669861, -0.1818847507238388, -0.348381370306015, 0.3751557767391205, -0.16086049377918243, -0.33090609312057495, 0.2935633957386017, -1.0030450820922852, 0.7792062163352966, 0.5448071956634521, 0.12335441261529922, 0.2887111306190491, -0.3752634823322296, -1.2060292959213257, -1.0497721433639526, 0.3299887478351593, 0.738092303276062, 0.6865827441215515, 0.2819784879684448, -0.041440386325120926, -0.71500164270401, 0.07716326415538788, 0.15173690021038055, 0.036002688109874725, 0.9076883792877197, 1.9852453470230103, 1.6679751873016357, 0.11198706179857254, -0.509372353553772, -0.2572029232978821, 0.9054340124130249, -0.6245798468589783, -0.594743013381958, -0.7008996605873108, 0.13449057936668396, 0.04666280746459961], [-0.30578628182411194, 2.1703155040740967, -2.71166729927063, 0.6683415174484253, 0.6857660412788391, 0.15793654322624207, 0.6039053201675415, -0.016628706827759743, 0.046622276306152344, -0.5966033339500427, -1.036144733428955, 0.33358660340309143, -0.04235520586371422, 1.0344665050506592, -0.3348482847213745, 0.6172477006912231, 0.3970845341682434, 0.04063316062092781, 0.004491404630243778, 1.188252329826355, -0.42921561002731323, -0.7816891074180603, -0.42897579073905945, 0.5665960311889648, -0.11354424059391022, -0.20802080631256104, -1.2378050088882446, 0.29404565691947937, -0.7048581838607788, -0.5639029145240784, 1.6224769353866577, -0.2978211045265198, 0.36322295665740967, -0.3967670500278473, -1.2323795557022095, -0.30777740478515625, 0.38721412420272827, -0.4395856261253357, 0.2573506236076355, -0.15092243254184723, 1.6256698369979858, 0.9205251932144165, -0.13825629651546478, -2.020620107650757, -0.25883206725120544, -0.5022032856941223, 0.7894523739814758, -0.5341994762420654, 0.2642999589443207, -1.042009711265564, 0.5268548727035522, 0.0836343914270401, 0.9080925583839417, 1.715732455253601, 0.5605547428131104, -1.5392389297485352, 0.032757483422756195, 0.7474889159202576, 0.10153016448020935, 0.5464491248130798, 0.9229192733764648, -1.202034592628479, 0.2976699769496918, 0.7479187846183777, 0.3024173974990845, -0.3815043568611145, 0.40171515941619873, 0.3191317617893219, -0.037355970591306686, 0.1255231350660324, 0.17837053537368774, 0.612716019153595, -0.6127083897590637, 0.6995983719825745, -0.7270092964172363, 0.37997081875801086, 0.7439711093902588, 0.07329468429088593, -0.584094762802124, 0.6416012644767761, -0.14390704035758972, -0.016272034496068954, 0.7065466046333313, -0.05277622863650322, -0.22677768766880035, 0.10717800259590149, 0.39352497458457947, -0.2649337947368622, -0.6583683490753174, 1.1627097129821777, 0.4411623179912567, 1.3851312398910522, 1.0503934621810913, -0.20163017511367798, 0.0007798541337251663, -0.7801914215087891, 0.11512820422649384, -1.023238182067871, 0.057606156915426254, -0.6257583498954773, -0.03466382622718811, -1.0585801601409912, 1.3375067710876465, 0.34342458844184875, 0.2931046187877655, 0.8861572742462158, -0.378780335187912, -0.3328186571598053, 0.6903886198997498, -0.038785651326179504, -0.3620949387550354, -0.2457689493894577, -0.6673893928527832, -1.3588200807571411, 0.21790865063667297, 1.4665086269378662, 1.515784502029419, 0.3744022250175476, 0.625071108341217, 0.20258116722106934, -0.6888187527656555, -0.6800071001052856, -0.5709298253059387, 0.06125196814537048, 1.4492552280426025, 0.08628850430250168, -0.6481211185455322, -0.2237967699766159, 0.33981087803840637, 0.3775624930858612, 0.43580299615859985, 0.07468758523464203, -0.1045503318309784, 0.35720294713974, 0.049779415130615234, 0.8378692865371704, -0.44730591773986816, -0.9043088555335999, -0.23052994906902313, 0.8134253025054932, 0.06634389609098434, -0.4181945025920868, 0.24978075921535492, -0.24818794429302216, -0.20382344722747803, -1.2597522735595703, 0.8932402729988098, -0.04245857149362564, -0.2398589849472046, 0.633193850517273, -1.2792595624923706, 0.12493958324193954, 0.1656157225370407, 0.6222062706947327, 0.3739071488380432, -0.17308111488819122, 0.41906046867370605, 0.06814826279878616, 0.4235433042049408, 0.44314149022102356, 1.0836988687515259, -0.008790279738605022, -0.3716686964035034, 0.37348228693008423, 0.4324279725551605, 0.047361817210912704, 0.3126259446144104, -0.023036666214466095, -0.4018303155899048, 1.0892382860183716, 0.018100526183843613, -0.9068868160247803, -0.12591272592544556, 0.7213688492774963, 0.11331548541784286, -0.4142829477787018, 0.547204315662384, -0.39115333557128906, -1.1241830587387085, -0.8265394568443298, 1.002173900604248, -0.4617833197116852, 0.907364010810852, -0.2895181477069855, 0.7268968224525452, 0.3778359591960907, 0.22237059473991394, -0.5724111199378967, -0.5809302926063538, -1.2112687826156616, -0.49039921164512634, -0.09047044068574905, -1.462459683418274, 0.37849634885787964, -0.4971584677696228, -0.9727436304092407, 0.6588771939277649, -0.9404937028884888, -0.8084258437156677, 0.4445706009864807, 0.7746853828430176, -0.4460916221141815, -0.631521463394165, 0.05449783429503441, -0.4678463935852051, 0.7635068297386169, 0.21659892797470093, 1.0530434846878052, -0.6299455165863037, 0.4554120898246765, 0.699751615524292, -0.8195674419403076, -1.560896873474121, 0.7890905141830444, -0.534584641456604, -1.2255693674087524, 0.9328722357749939, 0.16441525518894196, 0.017256220802664757, 0.038836244493722916, -0.342072457075119, 1.1871321201324463, 0.1395796537399292, -0.5280283689498901, 0.34765440225601196, -0.973249077796936, -0.5013724565505981, -2.0465614795684814, -0.1506839245557785, -0.31353506445884705, -1.0633713006973267, -1.1917119026184082, 0.4514853060245514, 0.24474868178367615, -1.4723832607269287, 0.4275926351547241, -0.08758160471916199, 0.31008514761924744, -0.22215627133846283, 1.2180445194244385, 0.15788224339485168, 0.8180139660835266, -0.42608365416526794, 0.0001837071031332016, -0.5933375954627991, -0.07538291066884995, 0.6876713633537292, -0.2826189696788788, 0.8684291839599609, 1.4331517219543457, 0.6199986934661865, -0.48946237564086914, 0.6049674153327942, -0.5280619859695435, -0.3981929421424866, -0.8341154456138611, -0.029968174174427986, 0.5177090167999268, -0.5131898522377014, 1.4490805864334106, 0.41842958331108093, -0.9301003813743591, 0.31045001745224, 0.331920325756073, 0.20050114393234253, -0.096643827855587, -0.34835174679756165, -0.798101007938385, -0.07899196445941925, -0.355044424533844, -0.30188262462615967, 0.5257692337036133, 0.1966015249490738, 0.7842814326286316, -0.3718433082103729, -0.7812581062316895, -0.1155647486448288, 0.4551997482776642, -0.5757512450218201, 0.8574078679084778, -1.041512370109558, -1.5057612657546997, -0.6355594396591187, 0.4620135724544525, 0.10231570899486542, 0.19250671565532684, 0.23177005350589752, 0.711763858795166, 0.49469420313835144, 0.2149888128042221, 0.2887275218963623, 0.010760397650301456, 0.6794162392616272, -0.2738569378852844, 0.28814268112182617, 0.21450360119342804, 0.8478872776031494, -0.4066425561904907, -0.9342132210731506, 0.20814642310142517, 0.29834553599357605, 1.4084030389785767, 0.43834540247917175, 1.456676959991455, -0.5882181525230408, -0.0571427196264267, -0.7894995808601379, -0.1650514304637909, -1.374767780303955, -0.06266507506370544, -0.5124865174293518, -1.1770036220550537, -0.7233599424362183, -0.7127424478530884, 0.14295822381973267, 0.13356484472751617, 0.0719216912984848, 0.760807454586029, 0.3491438627243042, 0.30277445912361145, -1.664342999458313, -0.7607272863388062, -0.5562858581542969, -0.7719435691833496, 0.9413571953773499, 2.0257980823516846, -1.480736494064331, 0.07120420038700104, 0.005425245966762304, -0.12310456484556198, 0.4873320460319519, 0.5448099970817566, 0.23335357010364532, -1.3138984441757202, 0.012976037338376045, 0.6214514374732971, 1.1942740678787231, 0.8300880789756775, -0.8656749129295349, -0.550419270992279, 0.4590878188610077, 1.1868858337402344, -0.6664910912513733, -0.14958195388317108, 0.5882123708724976, -0.4631895422935486, -0.03259870037436485, 0.022458873689174652, 0.5190621018409729, 0.457234263420105, -0.6538257598876953, -1.2697858810424805, 0.2629299759864807, -0.07247994840145111, -0.7122573256492615, 0.12289821356534958, 0.40248194336891174, 0.4135652184486389, 0.010373223572969437, -0.31789958477020264, 1.3595033884048462, 0.09155848622322083, -0.015142092481255531, -0.8137333393096924, 0.43697553873062134, 0.6004030108451843, 1.8565385341644287, 0.19662706553936005, 0.7485974431037903, 0.1169772744178772, -0.8251534104347229, 0.18333107233047485, 0.24967196583747864, 0.1115512102842331, 0.38949793577194214, -0.7366570234298706, -0.6142972111701965, -0.9805101752281189, 0.18425260484218597, -0.3103351593017578, 0.12258921563625336, 0.7789059281349182, -0.7684807777404785, -0.7575116157531738, 0.7254637479782104, 0.9198473691940308, -0.7645334601402283, -0.3305755853652954, -0.14802266657352448, 0.629290759563446, -1.1069471836090088, 0.487373411655426, 0.6731224656105042, -0.10583006590604782, 0.4323655366897583, -0.774135410785675, -0.7209610342979431, -0.06011180207133293, 0.29958224296569824, 1.1736479997634888, -1.9411933422088623, -0.4103703200817108, -0.9999472498893738, 0.12500648200511932, 0.6393744349479675, 0.12497974932193756, 0.2055915892124176, 0.33911561965942383, -1.0045462846755981, 0.029550623148679733, 0.6356715559959412, 1.0231070518493652, -0.08087213337421417, 0.10782338678836823, -0.13698126375675201, -0.12831871211528778, -0.07510238140821457, -1.298823356628418, 0.25456365942955017, 0.5947491526603699, -0.4378887116909027, -0.23733817040920258, 0.4550022780895233, -0.5882512927055359, 2.342700958251953, 1.0653496980667114, 0.13408347964286804, -0.11681611835956573, 0.6053239703178406, -0.6606721878051758, -0.21555455029010773, 0.45651471614837646, -0.7408462166786194, -0.5626751780509949, 0.7222787737846375, 0.41960012912750244, 0.7391737103462219, -0.1863388866186142, 0.039282992482185364, 0.5520037412643433, 0.49910181760787964, -0.2161077857017517, -0.6135508418083191, 0.3821268379688263, 0.9328232407569885, 0.9943340420722961, 1.405418038368225, -0.04222039133310318, -0.43291613459587097, 1.0994343757629395, -0.49261876940727234, 0.8650254607200623, 0.7340906858444214, 0.2189476639032364, 1.2419536113739014, -1.0071709156036377, -0.3199462294578552, 0.08662208169698715, -0.3439490795135498, 0.5912795066833496, 0.19206443428993225, 0.6862031817436218, -0.568871796131134, -0.6226322054862976, -0.13147401809692383, -0.9806578159332275, 0.78379225730896, 0.08132176846265793, 0.5830281972885132, 0.30861619114875793, -0.810053825378418, -0.06738198548555374, -0.9155454039573669, 0.33840614557266235, -0.9384481906890869, -0.1531289666891098, 0.7327306270599365, 0.8766766786575317, 0.9303389191627502, 0.07918579876422882, 0.4856049716472626, -1.08182692527771, 0.39366352558135986, -1.0086408853530884, 0.17083021998405457, -0.6090692281723022, -0.1854553073644638, -0.8840025663375854, 0.29828283190727234, -0.19486501812934875, -0.16185320913791656, -0.3833714723587036, -0.6144574880599976, -0.872391402721405, -0.7297526001930237, 0.3763452172279358, 0.4999847114086151, 0.8617062568664551, 0.3661158084869385, 1.0213489532470703, 0.9234192371368408, -0.20060621201992035, -0.6182411313056946, -0.44689950346946716, 0.04410208389163017, 0.025094663724303246, -0.5286387801170349, -0.3539104163646698, -0.7238051295280457, 0.5237129330635071, 0.07880573719739914, -0.4541420340538025, 0.7562187910079956, 0.8717594742774963, 1.3116894960403442, -0.3298301100730896, -0.8810942769050598, 0.754443883895874, -0.13084407150745392, 1.497076392173767, 0.5610450506210327, -0.7111639380455017, -0.17338240146636963, -0.2403419315814972, -1.9472676515579224, 1.6352514028549194, -0.09725139290094376, 0.09971166402101517, 1.043654441833496, 0.24920699000358582, -0.10177414864301682, 0.761100709438324, -0.18865486979484558, 0.47835877537727356, 0.0061479657888412476, -0.4872664213180542, -0.3859347403049469, 0.5527579188346863, 0.6288754940032959, 0.17304149270057678, -0.7605059146881104, 0.750794529914856, -0.5215473771095276, -0.1653524935245514, -0.2732168734073639, 0.119303859770298, 0.5870726108551025, 0.18649786710739136, -0.024837231263518333, -0.18946735560894012, 0.27339503169059753, -1.0867559909820557, 0.1333128660917282, 0.6700828671455383, 0.042370010167360306, 0.49572646617889404, -0.40005168318748474, 0.3090016841888428, -1.0645864009857178, -0.021076951175928116, -0.2082444131374359, -0.5662862062454224, 0.8862771987915039, 0.5478212833404541, -0.14106042683124542, 0.6545767188072205, -0.09940574318170547, 0.12488298863172531, -0.3662674129009247, -0.9200650453567505, 1.2230433225631714, -1.2766008377075195, -0.6721758246421814, -1.234582543373108, -0.028726894408464432, 0.018987208604812622, 0.7424359321594238, 0.26287129521369934, -0.6947627067565918, -0.8006835579872131, -0.5300552845001221, 0.4180055856704712, 0.46112552285194397, -0.34551212191581726, 0.5924155712127686, 0.3368484079837799, -0.717143714427948, -0.37475475668907166, -0.1069083884358406, -2.0915095806121826, 0.23720130324363708, -1.145269513130188, 0.5951610803604126, 0.0704185962677002, -0.057403240352869034, 0.3344801664352417, 1.6803584098815918, -1.6823608875274658, -0.9529657363891602, -0.9595740437507629, -1.0284327268600464, -0.27034395933151245, 0.6409467458724976, -0.9683565497398376, 0.5750844478607178, -0.5992966294288635, -0.09457740187644958, -0.3772925138473511, 0.6767615079879761, -0.4259900152683258, 0.10265936702489853, -0.3993995189666748, -0.03593619540333748, -0.04407941550016403, 1.4761571884155273, 1.1256518363952637, 1.1153645515441895, -0.17221467196941376, 1.6393500566482544, 0.031899645924568176, -0.71015864610672, 0.06217820942401886, 0.3363623321056366, -0.45850062370300293, -0.3264656960964203, 0.735748291015625, -0.7839437127113342, -1.4381992816925049, -0.36639487743377686, 0.8881544470787048, -0.9473684430122375, -0.262922078371048, -0.4649287164211273, -0.5133587718009949, -1.2127045392990112, 0.4921736717224121, 0.6187882423400879, -1.1398180723190308, -0.9375250339508057, -1.0522890090942383, 0.014457550831139088, -1.0849299430847168, -0.5307692289352417, 1.1042722463607788, 0.7936105132102966, 0.06597092002630234, 0.306841105222702, 0.2510250508785248, 0.6080061793327332, -0.194205641746521, 0.8205381035804749, 0.8245493769645691, -0.48900672793388367, 0.0689917504787445, -0.40905633568763733, -0.07115547358989716, 0.09383238106966019, -0.6039118766784668, -0.49755311012268066, -0.4581461548805237, 0.6514028906822205, 0.7612065076828003, 0.20809988677501678, 0.14977221190929413, 1.0488438606262207, -0.012711839750409126, 0.7575300335884094, 1.1691910028457642, -0.6715824604034424, -0.12424701452255249, 1.3346142768859863, 0.09104930609464645, -1.1336382627487183, -0.07538126409053802, 0.11189399659633636, 0.236802875995636, 0.15275420248508453, 0.6302176713943481, 0.6085044145584106, -0.09252399206161499, 0.7184222936630249, 0.26755836606025696, -0.37945985794067383, -0.4947577714920044, 0.12829388678073883, -1.4011770486831665, -0.1550668627023697, -0.8466867804527283, 0.010873749852180481, 0.7227352261543274, -1.3142246007919312, -1.3759011030197144, -0.18438273668289185, 0.044130317866802216, -0.5801359415054321, -0.3124048709869385, 0.3991784155368805, 0.3385436534881592, -0.32926636934280396, 0.7698515057563782, -0.36900368332862854, 1.459916591644287, -0.47890448570251465, -0.12453107535839081, -0.5601319670677185, -0.6004745364189148, 0.1783248484134674, 0.37708383798599243, -0.20695531368255615, -0.5629185438156128, 0.590980589389801, -1.0472009181976318, -0.1577252298593521, 0.18714985251426697, 0.1708875447511673, -0.29580655694007874, -0.6439710855484009, -0.6364837288856506, 0.468809574842453, 0.2668903172016144, 0.31883394718170166, -0.4854390323162079, -0.9834647178649902, -0.6237350702285767, 0.37976792454719543, -0.21841849386692047, 0.510168194770813, -0.2633693516254425, 0.5296983122825623, -0.5822945237159729, -1.260060429573059, -1.2507350444793701, -0.0064911385998129845, 0.8141804337501526, 0.5707946419715881, -0.11341097950935364, -0.28547462821006775, -0.26133331656455994, 0.332155704498291, -0.8896490931510925, -0.2255677431821823, 0.718844473361969, 0.09886234998703003, -0.12840594351291656, -0.8290292620658875, -0.1967087835073471, -0.5005814433097839, 0.16774699091911316, 0.7774906158447266, 0.10146532952785492, 1.1429942846298218, 0.06874305009841919, -0.643234372138977, -0.09466478228569031, 0.3080403506755829, 0.4897631108760834, 0.5828169584274292, 1.3018511533737183, 0.9356774687767029, -0.7565270066261292, -0.4001815915107727, 0.04892275854945183, 0.1657976359128952, -1.1570473909378052, -0.3068975508213043, -0.6119601130485535, 0.03714485839009285, 0.7310871481895447], [-0.7649194002151489, 2.4790279865264893, -2.220818281173706, -0.6594656109809875, 1.4432783126831055, 0.408124178647995, 0.712708055973053, -0.20736682415008545, -0.6210689544677734, -0.5364825129508972, -0.5012758374214172, 0.37325048446655273, -0.5268993973731995, 1.9823492765426636, 0.4944929778575897, 0.6652581095695496, 0.14577476680278778, -0.4764440953731537, -0.6634977459907532, 1.2771587371826172, -0.33483317494392395, -1.3660253286361694, -0.44311976432800293, 0.12494460493326187, 0.21728362143039703, 0.28967007994651794, -1.5606446266174316, 0.18854859471321106, -1.0100696086883545, -0.8902290463447571, 0.7798698544502258, -0.33747559785842896, 0.33855873346328735, -0.18480592966079712, -2.1352221965789795, -0.041038721799850464, 0.8537367582321167, 0.051081933081150055, -0.6400994062423706, 0.03407252952456474, 1.6994518041610718, -0.10049251466989517, 0.0697266235947609, -1.9706270694732666, 0.874595046043396, -0.5177466869354248, 1.265824794769287, -1.0415993928909302, -0.3482908606529236, -0.8922194242477417, 0.18709200620651245, -0.9250320196151733, 0.6825292706489563, 1.1199451684951782, 0.9978298544883728, -0.5743328332901001, 0.16409750282764435, 0.309013694524765, 0.5886062979698181, 0.6297309398651123, 1.1145422458648682, 0.07739844918251038, -0.27420902252197266, 0.5933502316474915, 0.7346831560134888, -0.09110582619905472, 0.13346001505851746, 0.7238999605178833, -0.6577013731002808, 0.6342921257019043, 0.5383192896842957, 0.470777690410614, -0.08461932092905045, -0.45334696769714355, -0.7863868474960327, 0.09115076065063477, 0.49410250782966614, 0.2243499755859375, -0.1105489507317543, 0.7115328907966614, -0.607400119304657, -0.2997519373893738, 0.5146082043647766, -0.6882553696632385, 0.05515044927597046, 0.15431992709636688, -0.292082816362381, -0.510942280292511, -0.15813186764717102, 2.1737403869628906, 0.21862097084522247, 0.35521695017814636, 0.1107143685221672, -0.6957531571388245, 0.19716957211494446, -0.06115960329771042, 0.24240557849407196, -0.8712714910507202, -0.5711269378662109, -0.4474700689315796, -0.5672576427459717, -1.2860664129257202, 0.7003530859947205, 0.631307065486908, 0.2380850464105606, 1.3555018901824951, -0.10783789306879044, -1.2271889448165894, -0.10293525457382202, 0.3256729543209076, 0.35016611218452454, 0.5264518857002258, -1.2320339679718018, -1.1805472373962402, -0.2664646506309509, 0.4590364992618561, 1.4553080797195435, -0.4956306517124176, 0.48198202252388, 0.5800690054893494, -0.07629109919071198, -0.9842737913131714, -0.6946113705635071, -0.1589886099100113, 1.069551706314087, 0.6792346835136414, -0.15718339383602142, -0.3527294397354126, 0.4462553560733795, -0.4240167438983917, 0.23693639039993286, -0.15764476358890533, -1.180497646331787, 0.8112637996673584, -0.3432237207889557, 1.1493220329284668, -0.5325625538825989, -0.8149620294570923, 0.730283796787262, 0.11422962695360184, 0.19115446507930756, -0.17625536024570465, -0.27346089482307434, -0.8315389752388, 0.32606640458106995, -1.115134596824646, 1.0011169910430908, -0.3951120376586914, -0.5830034017562866, 0.49261462688446045, -1.5277118682861328, 0.12308799475431442, 0.30064889788627625, 1.1381022930145264, 0.9508855938911438, 0.2005281001329422, 0.40325868129730225, -0.0649360790848732, 0.31615889072418213, 0.6882988214492798, 1.0070008039474487, 0.5547044277191162, -1.1438480615615845, 0.3442096710205078, 0.17436964809894562, -0.4612570106983185, 0.7536619901657104, 0.6794869899749756, 0.6642106175422668, 0.47301217913627625, -0.3056611120700836, -0.30699509382247925, -0.03822220861911774, 1.1550430059432983, -0.1761125922203064, -0.9458166360855103, 0.578859269618988, -0.28788065910339355, -0.8809565305709839, -1.3813979625701904, 1.0299458503723145, -0.361909419298172, -0.02388123609125614, -0.3382400572299957, 0.26381415128707886, -0.3212382197380066, 0.14463385939598083, -0.06022876501083374, -0.6321389675140381, -0.9104426503181458, -1.539475679397583, -0.41632089018821716, -1.501862645149231, 0.026297586038708687, -0.35217761993408203, -1.4547475576400757, 1.1693429946899414, -0.20555174350738525, -0.6614432334899902, 0.6595377326011658, 0.18626396358013153, -0.5688312649726868, -1.286778450012207, -0.2888837158679962, -0.014485415071249008, 1.0595406293869019, -0.222065731883049, 0.10759522020816803, -0.788342297077179, 0.4429525136947632, 1.493189811706543, 0.18875546753406525, -0.8349051475524902, 0.0714949443936348, -0.3572663962841034, -0.803231954574585, 0.15420538187026978, -0.5680145025253296, 0.28043001890182495, 0.39078137278556824, 0.3005886971950531, -0.10542072355747223, 0.2117011845111847, 0.2949691116809845, 0.4017200171947479, -0.8132923245429993, -0.40678417682647705, -0.8927428126335144, -0.8000749349594116, -0.10378775000572205, -1.1684021949768066, -0.8167775869369507, 0.4536396563053131, 0.45365840196609497, -0.9634456038475037, 0.4139113128185272, 0.053423959761857986, 0.12051618844270706, 0.02739294059574604, 1.2409311532974243, 0.2622545063495636, 0.7994769215583801, -0.07152583450078964, -0.030273789539933205, -1.0701836347579956, -0.23149101436138153, 0.7874334454536438, 0.1320551037788391, -0.10608254373073578, 1.0455514192581177, 0.6020119190216064, -0.09307889640331268, 0.6522156000137329, 0.006833601277321577, -0.0025509349070489407, -0.7180888652801514, 0.3190328776836395, 0.23110981285572052, -0.13785867393016815, 1.3120044469833374, 0.46623966097831726, -1.3900034427642822, -0.18277832865715027, 0.0037544872611761093, 0.10656686872243881, -0.6587857007980347, -0.18185807764530182, -0.848222017288208, 0.26051095128059387, -0.10480205714702606, 0.2115279883146286, 0.5021439790725708, -0.3107249438762665, 1.2077745199203491, -0.460068017244339, -0.7402142286300659, 0.3852164149284363, 0.9781234264373779, 0.5872896313667297, 0.7099516987800598, -0.07660019397735596, -1.428649663925171, -0.6242430210113525, 0.12426099181175232, 0.5050219893455505, -0.05516301840543747, -0.06597694009542465, 1.4287757873535156, 0.34922677278518677, -0.10235609859228134, 0.6324765682220459, 0.22421973943710327, 0.06159088388085365, -0.04442856088280678, 0.6730617880821228, 0.48725542426109314, 0.6751677393913269, -0.7354029417037964, -0.8574385643005371, -0.2411658614873886, -0.10930763930082321, 0.7093014717102051, 0.30038756132125854, 1.3347358703613281, -0.47010546922683716, -0.07107225805521011, -0.009277936071157455, -0.1827252209186554, -0.47694408893585205, -0.18009434640407562, -0.7845717072486877, -0.9018213748931885, 0.05866873636841774, -0.3804919719696045, -0.1652674823999405, 0.3205263018608093, 0.3550955355167389, 1.3033215999603271, -0.04366161301732063, -0.11667530238628387, -1.076521635055542, -0.24476443231105804, -0.5743125081062317, -0.5929208397865295, 0.5463268160820007, 1.864727258682251, -1.0074235200881958, 0.061340052634477615, 0.5398242473602295, -0.6234844326972961, 0.3798283040523529, 0.01831408590078354, -0.06916845589876175, -1.1423143148422241, -0.18346062302589417, -0.5140070915222168, 1.6883403062820435, 0.07735393196344376, -0.8920544981956482, -0.46903103590011597, 0.36712315678596497, 1.1863914728164673, -0.06973718851804733, 0.14267583191394806, 0.5681400299072266, -0.8403348326683044, 0.10632339119911194, -0.3824824094772339, 0.892512857913971, 0.32575610280036926, -1.0958679914474487, -0.3565131723880768, -0.014596759341657162, -0.34039565920829773, -0.43221136927604675, -0.050337862223386765, -0.344808429479599, 0.5353666543960571, -0.3321417272090912, 0.13706529140472412, 1.2238582372665405, -0.698996901512146, 0.1828337013721466, -0.9857528805732727, 0.9108787178993225, 0.19445587694644928, 1.2774783372879028, 0.8291603922843933, 0.2577430009841919, 0.559038519859314, 0.3610922396183014, -0.4184723496437073, 0.26054805517196655, 0.7727867960929871, -0.16215276718139648, -1.0033769607543945, -1.0246992111206055, -0.4792570471763611, 0.1517907828092575, -0.6489312052726746, -0.26385682821273804, 0.3844117522239685, -0.7903397679328918, -1.0718010663986206, 1.0590741634368896, 0.6407283544540405, -0.3670676052570343, -0.22202761471271515, -0.11992155760526657, 0.8867413401603699, -0.5901946425437927, 0.3141702711582184, -0.18776097893714905, 0.1056133359670639, -0.19494469463825226, -0.6055932641029358, -1.2678964138031006, -0.9323115944862366, 0.16869641840457916, 1.082732915878296, -1.2082549333572388, -0.3140445649623871, -0.02359742484986782, 0.3318338692188263, 0.9102882742881775, 0.0067736078053712845, 0.41420677304267883, 0.4681871831417084, -0.07492201775312424, 0.6229435801506042, 1.0116019248962402, 1.1180975437164307, -0.0036054099909961224, -0.048914823681116104, -0.48971039056777954, -0.010614006780087948, 0.5113957524299622, -0.884983241558075, 0.02124783582985401, 0.19018852710723877, -0.8535968661308289, -0.24383029341697693, 0.25663354992866516, 0.13170477747917175, 1.2186154127120972, 0.5876305103302002, 0.6297159790992737, 0.5368555784225464, 0.23927250504493713, -0.6010329127311707, -0.39941683411598206, 0.06451579928398132, -0.11844661086797714, -0.623676061630249, 0.06534551829099655, 0.43929755687713623, 0.4094257950782776, -0.0857226774096489, -0.33657699823379517, 0.6754085421562195, -0.097539022564888, -0.5710791349411011, -0.2511316239833832, 0.20065967738628387, 0.9627484679222107, 1.2636665105819702, 1.5976516008377075, -0.37807995080947876, -1.5287933349609375, 0.8981335759162903, -0.6190513372421265, 0.12391025573015213, 0.8125998973846436, 0.38840827345848083, 1.7531757354736328, -1.1327506303787231, -0.7362683415412903, 0.6239657998085022, -0.16783680021762848, 0.1700192093849182, -0.38897785544395447, 0.7270027995109558, -0.3503451645374298, -0.1568753719329834, 1.1910743713378906, 0.05160706862807274, 0.8709784746170044, -0.3755112886428833, 0.6043208241462708, -0.052022162824869156, -0.24691563844680786, 0.2574620544910431, -0.6487954258918762, 0.4748481810092926, -0.36782094836235046, 0.2710762619972229, 0.9335544109344482, 0.14471708238124847, 0.47070083022117615, 1.3129886388778687, 0.27041107416152954, -1.4719138145446777, 0.15284501016139984, -0.7487406134605408, -0.31560274958610535, 0.0065343924798071384, 0.04188684746623039, -0.0802546888589859, -1.0146548748016357, -0.36091354489326477, -0.06473392993211746, -0.34082940220832825, -0.9916899800300598, -0.7169895172119141, -0.5270101428031921, 0.639970600605011, 0.18756702542304993, 1.0608360767364502, 0.41958221793174744, 0.6664689779281616, 0.6744211316108704, 0.31721392273902893, -1.0172820091247559, -0.061662912368774414, -0.00963938981294632, 0.03569108620285988, -0.3266216814517975, -0.5341108441352844, -0.5776461958885193, 0.8217843770980835, 0.4511914551258087, 0.29694899916648865, 0.3288562595844269, 1.0855549573898315, 0.9926614761352539, -0.31135284900665283, -0.7437666654586792, -0.30519601702690125, -0.3110855221748352, 1.5586936473846436, 0.8319690823554993, -0.8370708227157593, -0.43441152572631836, -0.5205145478248596, -2.323834180831909, 1.5958887338638306, -0.21954753994941711, -0.8888206481933594, 0.9144603610038757, 0.23905444145202637, 0.29525870084762573, 0.7498184442520142, -0.0761881023645401, 0.013845138251781464, 0.25948914885520935, -0.4570367932319641, -0.7347927689552307, 0.3077743649482727, 0.03689330071210861, 0.0005068590398877859, -1.6435273885726929, 0.2452026605606079, 0.1021452248096466, -0.6137007474899292, 0.9743183255195618, 0.5600924491882324, 0.37120506167411804, 0.13142672181129456, -0.21861635148525238, -0.2662394344806671, 0.5441733598709106, -0.2350347936153412, 0.22130174934864044, -0.5160596370697021, 0.28400519490242004, 0.1795896738767624, -0.11468935757875443, -0.46232372522354126, 0.45990151166915894, -0.11543173342943192, -0.10507262498140335, -0.6108360290527344, 0.6308832168579102, 1.043999195098877, -0.6077004075050354, 0.32762250304222107, -0.2426607608795166, -1.168096899986267, -0.8762409687042236, -0.49531203508377075, 0.8219517469406128, -0.9678253531455994, 0.06660202890634537, -0.7773784399032593, -0.4069754183292389, -0.25820910930633545, 0.581953227519989, -0.09420575946569443, -1.492296576499939, -1.6094958782196045, -0.29114294052124023, 0.17475281655788422, 0.36988022923469543, -0.7163670659065247, 1.1942999362945557, 0.01002766378223896, -1.3951643705368042, 0.9087938070297241, -0.22366616129875183, -1.3969224691390991, -0.7534480094909668, -1.2137138843536377, 0.8478817343711853, 0.1158866360783577, -0.6295368075370789, 0.15982945263385773, 0.5788632035255432, -1.402449131011963, -0.8634750843048096, -0.2672297954559326, -0.37603864073753357, 0.680700421333313, 0.44516825675964355, -0.43691036105155945, 0.8713770508766174, 0.002583000808954239, -0.2572902739048004, -0.16733576357364655, 0.4378628730773926, -1.3781377077102661, 0.20728753507137299, 0.4326435923576355, 0.353603333234787, 0.31623896956443787, 2.105255603790283, 1.336608648300171, 1.1226778030395508, -0.8716340661048889, 1.7453553676605225, -0.4762609899044037, -0.5879030227661133, -0.1289815902709961, 0.23139439523220062, -1.654962182044983, -1.0865468978881836, 0.5594034194946289, -1.1004548072814941, -1.033743143081665, 0.23564240336418152, 1.2969387769699097, -0.4764823615550995, -0.11416836827993393, -0.191053569316864, 0.54887855052948, -1.196495771408081, 1.0645517110824585, 0.6727068424224854, -1.361617088317871, -0.07111872732639313, -0.30614280700683594, 1.251572847366333, -0.8347988724708557, 0.37302252650260925, 0.4304434061050415, 0.6019600033760071, -0.3528505563735962, 0.24717387557029724, 0.26547443866729736, 0.2608877122402191, -1.0246955156326294, 1.1197854280471802, 0.7056267857551575, -0.4730151891708374, 0.03575733304023743, 0.6711963415145874, -0.13961981236934662, 0.29131579399108887, -0.15493392944335938, 0.07887300848960876, -0.579892635345459, 0.7790151238441467, 0.17590832710266113, 0.2824185788631439, -0.20517970621585846, 0.9999892115592957, 0.09965954720973969, 0.7470842599868774, 1.239811897277832, -0.9346896409988403, -0.46685129404067993, 0.932605504989624, 0.5001912713050842, -0.594331681728363, 0.14453931152820587, 0.4654100239276886, -0.29263320565223694, 0.23759271204471588, 0.8469697833061218, 0.5181365609169006, -0.7112112045288086, 0.6524080634117126, 0.38516566157341003, -0.535884439945221, -0.5868843793869019, -0.06198957562446594, -1.636223554611206, -0.0580270029604435, -0.3822576105594635, -0.3461126983165741, 0.6777318120002747, -0.37797513604164124, -1.778073787689209, -0.40185555815696716, -0.7777227163314819, -0.40570926666259766, 0.03830066695809364, -0.1547538787126541, 0.03268156945705414, -0.2346331775188446, 1.2383244037628174, -0.16100139915943146, 2.3410892486572266, -0.022558411583304405, 0.03646191582083702, -0.08871327340602875, 0.4236946105957031, 0.16633340716362, 0.3807854652404785, -0.21234381198883057, -1.048617959022522, 0.7826122045516968, -0.8697302937507629, -0.4247097373008728, 0.512497067451477, 0.23377203941345215, 0.6761561036109924, -0.4520946443080902, -0.4054476320743561, 0.7344694137573242, 0.5006352066993713, 0.953070342540741, -1.0278793573379517, -1.1524553298950195, -0.6871097683906555, 0.11977832764387131, -0.3830382227897644, 0.4584328532218933, -0.32487037777900696, 0.29822516441345215, 0.9952949285507202, -0.8895693421363831, -0.3758507966995239, -0.15945956110954285, 0.700325071811676, -0.27220600843429565, 0.34867072105407715, -0.22921064496040344, -0.23723119497299194, 0.34822919964790344, -0.8697436451911926, 0.46078088879585266, 0.15480327606201172, -0.4406888484954834, 0.2614502012729645, -0.3313191831111908, -0.5482163429260254, -0.8124369978904724, 0.02967584878206253, 0.46597450971603394, 0.4552929103374481, 0.018739696592092514, -0.017277128994464874, -1.0594714879989624, 0.3722946047782898, 0.645911455154419, -0.12622441351413727, 0.646531343460083, 1.7345106601715088, 0.8810498118400574, -0.3662629723548889, -0.18359620869159698, -0.3065931797027588, 1.1069188117980957, -0.7831209897994995, -0.16031916439533234, -0.4409601390361786, 0.04609034210443497, -0.7559508085250854], [0.7504335045814514, 1.689741849899292, -2.3607563972473145, 0.19870947301387787, 0.2767174243927002, 0.6186822056770325, 0.790856122970581, -0.4444393813610077, 0.12144254893064499, -0.6816451549530029, -0.5905376672744751, 0.18071922659873962, -0.3686829209327698, 0.14445848762989044, 0.12069172412157059, 0.7468646764755249, 1.0176640748977661, -0.31719839572906494, -0.6082623600959778, 1.7990318536758423, -0.2425176203250885, -1.1751928329467773, -0.42213350534439087, 0.2080996185541153, 0.06806621700525284, 0.22483985126018524, -1.335637092590332, 0.18242178857326508, -1.6308504343032837, -0.5295403599739075, 1.6039468050003052, -0.49958840012550354, 0.7745769023895264, 0.3707874119281769, -1.8113714456558228, 0.8835211396217346, 0.9444365501403809, 0.5680149793624878, -0.2566547989845276, 0.36664360761642456, 1.5274215936660767, 0.35006284713745117, -0.03407268598675728, -1.619950294494629, 0.26678770780563354, -0.7741285562515259, 1.325928807258606, -0.9473730325698853, 0.739611804485321, -0.4877997636795044, 1.1154159307479858, -0.15268132090568542, -0.3529738783836365, 0.9109992980957031, 0.6550408005714417, -1.0381215810775757, 0.06922295689582825, 0.36701443791389465, 0.37684008479118347, 0.16815978288650513, 1.401371955871582, -0.7142707705497742, 0.6837170720100403, 0.6063942909240723, 0.29710426926612854, -1.156261920928955, 0.35722100734710693, 0.32891836762428284, -0.05090983957052231, -0.03782209753990173, 0.8117111325263977, 1.0244803428649902, -0.28271055221557617, 0.8986806273460388, -0.9608955979347229, 0.9229522943496704, 0.6119371652603149, 0.2938145399093628, -0.23323044180870056, 0.0438908115029335, 0.36149105429649353, -1.0690929889678955, 0.3930628001689911, -0.43660491704940796, -0.27584943175315857, 0.3265365660190582, 0.44617578387260437, -0.5092285871505737, -0.451593816280365, 0.9801449179649353, -0.005818675272166729, 0.03860282152891159, 0.7798327803611755, -0.264629602432251, 0.15530632436275482, 0.22933518886566162, -0.8871899843215942, -1.1718060970306396, -0.6947609782218933, -0.7753238081932068, -0.3752211332321167, -0.23943088948726654, 0.6459067463874817, 0.7678413987159729, 0.3506700396537781, 0.8649312853813171, 0.4641495943069458, -1.1294596195220947, 0.6896557807922363, 0.37303635478019714, -0.5834513306617737, 0.17412373423576355, -0.8930506706237793, -1.8084774017333984, -0.8253180384635925, 0.9752897620201111, 1.5679309368133545, -0.05307117849588394, 0.8424788117408752, 0.06909483671188354, -0.5615843534469604, -0.6616057753562927, 0.14935633540153503, -0.027365608140826225, 1.3380478620529175, 0.722282350063324, -0.14781785011291504, -0.1152934581041336, 0.11319281160831451, 0.0845353901386261, 0.34421947598457336, -0.13065573573112488, -0.2532859742641449, 0.16395089030265808, -0.22442536056041718, 0.5322527885437012, -1.4693877696990967, -1.1732509136199951, 0.4470865726470947, 1.04398775100708, 0.38792985677719116, -0.10503019392490387, 0.14480793476104736, -0.1839619129896164, 0.13787251710891724, -0.22880537807941437, 0.39868879318237305, -0.31491023302078247, -0.30856838822364807, 0.5611141324043274, -1.2180255651474, 0.5128363370895386, -0.11804164201021194, 0.6462087631225586, 0.3622162342071533, -0.005954283755272627, 0.3314397931098938, -0.24795298278331757, 0.24157743155956268, 0.3702687919139862, 0.9087294340133667, 0.4437817633152008, -0.4059934616088867, -0.0582679882645607, 0.865790843963623, 0.014936540275812149, 0.2389330267906189, -0.19242453575134277, -0.16234295070171356, 1.133326768875122, 0.15124641358852386, -0.4122910499572754, -0.04268333315849304, 0.6076130270957947, 0.2693651020526886, -0.592223584651947, 0.7222095131874084, -0.4736066460609436, -1.5558792352676392, -1.0139206647872925, 1.016671895980835, -0.4572919011116028, 0.29125699400901794, -0.019939614459872246, 0.5613739490509033, -0.4294058382511139, 0.18850041925907135, -0.20466020703315735, -0.5768039226531982, -0.8429688811302185, -0.42388200759887695, 0.3260466158390045, -1.271389126777649, -0.7036328911781311, -0.5344959497451782, -0.9140164852142334, 1.2085717916488647, -0.39700961112976074, -0.7560828924179077, 0.28087788820266724, 0.2600965201854706, -0.5169994235038757, -1.3793281316757202, -0.003347208956256509, -0.36985960602760315, 1.5799168348312378, -0.49869394302368164, -0.1383741796016693, -1.2572438716888428, -0.017204180359840393, 1.0537887811660767, -0.662290632724762, -1.1396403312683105, 0.14408718049526215, -0.17464858293533325, -0.8458508253097534, 0.14103963971138, -0.5232548117637634, -0.4426005184650421, -0.6481804251670837, 0.10620176047086716, 0.5412424206733704, 0.19594459235668182, -0.6383545398712158, 0.2621840536594391, -0.4899895489215851, -0.05691233277320862, -0.7229459881782532, 0.171064093708992, -0.3831273913383484, -1.07696533203125, -0.7316064238548279, 0.25931400060653687, 0.6736383438110352, -1.3949483633041382, 0.27648526430130005, -0.043398648500442505, 0.053154632449150085, 0.11609719693660736, 1.2920223474502563, 0.6617720723152161, 0.5133626461029053, -0.5795900821685791, 0.7851282358169556, -0.7034751176834106, -0.7480969429016113, 0.749515175819397, -0.33780229091644287, -0.07456060498952866, 1.5145539045333862, 0.9622921943664551, 0.9676850438117981, 0.1878441721200943, -0.36156219244003296, -0.2538236379623413, -0.2256891131401062, -0.6818530559539795, 0.2938174307346344, -0.8131480813026428, 1.6068252325057983, 0.5693600177764893, -0.7400466799736023, 0.605400800704956, -0.4989689886569977, 0.10111706703901291, -0.8605419993400574, -0.2537168860435486, -0.35685017704963684, 0.5790306329727173, -0.5826249718666077, -0.09241360425949097, 0.5126715302467346, 0.6448574662208557, 0.8588740229606628, -0.14179803431034088, -0.3786434531211853, 0.20853880047798157, 0.6175076365470886, -0.23749005794525146, 1.0889027118682861, -0.7007350325584412, -0.6412643194198608, -1.30219304561615, -0.14989106357097626, 0.0008737463504076004, -0.13505248725414276, 0.4226876199245453, 1.645176887512207, 0.13073137402534485, -0.6493910551071167, 0.10207628458738327, 0.1596752554178238, 0.12505288422107697, -0.3250342309474945, 0.993736207485199, 0.11326295137405396, 0.5904319286346436, -0.8934465050697327, -1.1035466194152832, 0.13878382742404938, 0.3970980644226074, 0.8441182971000671, 0.4024771451950073, 1.2476005554199219, -0.3341819643974304, 0.054096248000860214, -0.6500962376594543, 0.14137206971645355, -1.1138864755630493, -0.2504931390285492, -0.04887927323579788, -0.7480760216712952, -0.26706841588020325, -0.49825021624565125, -0.26279181241989136, 0.7149470448493958, 0.5108768343925476, 0.5587802529335022, 0.6412162780761719, 0.2725962698459625, -1.4087607860565186, 0.1461978554725647, -0.2561440169811249, -0.918258547782898, 0.517292320728302, 1.6168344020843506, -0.9684932827949524, 0.4084591269493103, -0.07679546624422073, -0.17017421126365662, -0.3347622752189636, -0.06661687791347504, 0.5035341382026672, -1.001155138015747, -0.24299050867557526, 0.2092919647693634, 0.6878076791763306, 0.28949227929115295, -0.23064938187599182, -0.22490744292736053, 1.1877591609954834, 1.2697386741638184, -0.2356845736503601, -0.23309551179409027, 0.16842404007911682, -0.5010843276977539, -0.5732119083404541, -0.0882287472486496, 1.170897364616394, -0.2780255973339081, -0.8534107208251953, -0.6724709868431091, -0.23774924874305725, -1.02273690700531, -0.12604016065597534, 0.30265355110168457, -0.45711690187454224, 0.7111272215843201, -0.4803682863712311, 0.5415697693824768, 0.7415429949760437, 0.16681639850139618, -0.1432323157787323, -1.2885380983352661, 0.8741559982299805, 0.2865985333919525, 1.3105897903442383, -0.5400766730308533, 0.34354326128959656, 0.5576730966567993, -0.4075947105884552, -0.16203926503658295, 0.1587173491716385, 0.7597883343696594, 0.31850528717041016, -0.6110297441482544, -0.1491534411907196, -0.6717999577522278, 0.19355008006095886, 0.04731752723455429, 0.06164296343922615, 0.33586567640304565, -0.9597445130348206, 0.19216981530189514, 1.0301234722137451, 0.6636548638343811, -0.19468052685260773, -0.5495100617408752, -0.437660276889801, 0.2821667194366455, -0.9151266813278198, 0.37890735268592834, -0.1270136535167694, -0.605991780757904, 0.6605161428451538, -1.1286717653274536, -0.6571959257125854, 0.09185203909873962, 1.0153586864471436, 1.2884547710418701, -1.2093775272369385, -0.33842307329177856, -0.7075318694114685, -0.2555044889450073, 0.5133722424507141, 0.7704019546508789, 0.2839670479297638, 0.6636375784873962, -0.228105828166008, 0.41550958156585693, -0.050659600645303726, 1.3586119413375854, -0.25667062401771545, -0.12357170879840851, 0.4475741386413574, 0.0429488942027092, 0.09934714436531067, -0.7655459046363831, 0.3816955089569092, 0.2660703659057617, -0.5206890106201172, -0.4060838222503662, 0.25679704546928406, -0.4515193998813629, 1.6522055864334106, 0.7011063694953918, 0.10082700848579407, -0.4729602634906769, 0.22494074702262878, -0.8451823592185974, 0.6927960515022278, 0.5089006423950195, -1.3511604070663452, -0.7997052073478699, -0.005263104569166899, 0.37778156995773315, 0.5867313146591187, 0.2758883833885193, 0.1563410758972168, 0.7422108054161072, 0.11824077367782593, 0.1435486227273941, 0.5932440161705017, 0.5226824879646301, 1.3705366849899292, 0.31571102142333984, 1.1584031581878662, 0.12944908440113068, -0.5754334330558777, 1.0158271789550781, -0.2752155661582947, 0.1558026373386383, 0.6420750021934509, 0.31766989827156067, 0.8038639426231384, -0.9401344656944275, 0.06525032222270966, 0.9185210466384888, 0.16847702860832214, 0.8555944561958313, 0.13578857481479645, 0.48966270685195923, -0.17397437989711761, 0.16680379211902618, 0.9742014408111572, -0.03936086595058441, 0.4689605236053467, 0.1434505134820938, 0.8747742772102356, -0.04630795866250992, -0.7934767603874207, 0.54790860414505, -0.9869194626808167, 0.537727952003479, -0.55904221534729, -0.8302085399627686, 0.12706635892391205, 0.6743824481964111, 0.8628690242767334, 1.0227717161178589, -0.34230339527130127, -0.19249315559864044, 0.31305909156799316, -1.0371606349945068, 0.4654666781425476, -0.5627639293670654, 0.3083131015300751, -0.8158736228942871, 0.26558420062065125, 0.5860747694969177, -0.04916249215602875, -0.18042664229869843, -0.681204080581665, -1.0929045677185059, -0.8962419033050537, 0.9972810745239258, 0.5335223078727722, 0.6373669505119324, 0.2477426677942276, 0.33459433913230896, 0.5156333446502686, 0.315009742975235, -1.5199589729309082, -0.29039981961250305, 0.43233540654182434, 0.34459125995635986, -0.26089656352996826, -0.5595566034317017, -0.9297928810119629, 0.11775553971529007, -0.01813359558582306, -0.19273430109024048, -0.3005933165550232, 0.9933918714523315, 0.8800352215766907, -0.3076339662075043, -1.0492453575134277, 0.4757658839225769, -1.4099783897399902, 0.9166457653045654, 0.02375977858901024, -0.4297330677509308, -0.5681005716323853, -1.03632390499115, -1.2579950094223022, 1.1956268548965454, 0.1259678155183792, -0.0707540214061737, 0.6108753681182861, 1.0478160381317139, -0.027683299034833908, 1.1115845441818237, 0.17136506736278534, 0.3046655058860779, -0.4200807511806488, -0.17358511686325073, 0.06278597563505173, -0.009183445945382118, 0.5237331390380859, -0.989968478679657, -1.231292963027954, 0.906999945640564, 0.13915705680847168, -0.07676529884338379, -0.8661406636238098, 0.855338454246521, 0.0666026845574379, 0.8561550974845886, 0.16994714736938477, 0.2364019751548767, 0.6089984774589539, -1.259565830230713, -0.4826389253139496, 0.4042101800441742, 0.6062143445014954, 0.19452382624149323, 0.4217888414859772, 0.7865745425224304, -0.7737679481506348, -0.4189031422138214, -0.07126986980438232, -1.069191336631775, 0.3400746285915375, 0.17271876335144043, 0.31084054708480835, 0.5510172247886658, -0.5394756197929382, -0.31094977259635925, -1.0220530033111572, -0.6004124879837036, 1.1376398801803589, -0.6489476561546326, -0.8781231641769409, -0.3239724338054657, -0.4104510247707367, -0.15643423795700073, 0.09415005892515182, -0.3853599727153778, -0.8458418846130371, -1.3615344762802124, 0.011305471882224083, -0.30538323521614075, 0.8098970055580139, -0.17376410961151123, 0.5670691728591919, -0.34664228558540344, -0.9553684592247009, -0.3122172951698303, 0.30790281295776367, -2.2378153800964355, 0.02819063700735569, -0.4745297431945801, 0.4941195249557495, -0.09379834681749344, -0.14899280667304993, -0.08681046217679977, 1.2939651012420654, -1.399700403213501, -0.5507564544677734, -0.582623302936554, -0.41761314868927, 0.7761201858520508, 1.2824645042419434, -0.8017466068267822, 0.8385739922523499, -0.46855872869491577, 0.27335524559020996, -0.6353262662887573, 0.5129974484443665, -0.8913396000862122, 0.26811766624450684, -0.046373363584280014, 0.21139344573020935, 0.12051323056221008, 1.9173073768615723, 0.7943551540374756, 0.6743319034576416, 0.06734073907136917, 0.9129050374031067, -1.243967890739441, -0.21671772003173828, 0.07452426850795746, 0.45078831911087036, -0.6613683104515076, -0.607411801815033, 0.4480733573436737, -0.6313478946685791, -1.3841625452041626, -0.5613203644752502, 0.5531311631202698, -0.6445790529251099, 0.5200105905532837, -0.6519443988800049, -0.26511162519454956, -0.5150566697120667, 0.5391306281089783, 0.32811519503593445, -0.5345929861068726, -0.2272442877292633, -0.46908411383628845, 0.789429247379303, -0.5007205605506897, -0.14175571501255035, 1.0212234258651733, 0.24997152388095856, -0.847073495388031, -0.3753597140312195, 0.13867641985416412, 0.48016682267189026, -0.35932886600494385, 1.3443430662155151, 1.0410341024398804, 0.46856826543807983, -0.2049187868833542, -0.23703746497631073, 0.01174258068203926, 0.4749997854232788, -0.6658336520195007, -0.2630385756492615, -0.2369338870048523, 0.5537044405937195, -0.003368138102814555, 0.08426576852798462, 0.6693430542945862, 0.8590095639228821, -0.13432736694812775, 0.5146406888961792, 0.4344784915447235, -0.9792851805686951, -0.1608411818742752, 1.4213778972625732, 0.6891998648643494, -1.1844089031219482, 0.3226476013660431, 0.07035671174526215, 0.17725317180156708, 0.5058701038360596, 0.6285148859024048, 0.17111550271511078, -0.4028202295303345, 0.6764070987701416, 0.8949289321899414, -0.8955102562904358, -0.2706959843635559, -0.5373691320419312, -1.204752802848816, -0.02082490548491478, -1.0262819528579712, -1.2547221183776855, 0.4788341224193573, -1.6099153757095337, -1.2334734201431274, 0.29345670342445374, -0.4898206889629364, -0.09753071516752243, -0.7924814224243164, 0.45229798555374146, 0.6775935292243958, -0.7031345367431641, 0.5302512049674988, -0.3865011930465698, 1.4040542840957642, -0.3014121651649475, -0.2714996337890625, -0.8549771904945374, -0.3990103602409363, 0.48056185245513916, -0.2311154454946518, -0.02829698473215103, -0.02449602074921131, 0.5603448748588562, -0.4075194001197815, -0.6352673172950745, -0.22188524901866913, 0.32945141196250916, 0.00423634797334671, -0.19346120953559875, 0.03423279523849487, 0.6794030666351318, 0.4719393849372864, 0.48174580931663513, -0.9903152585029602, -0.5252503752708435, -1.0698045492172241, 0.47659537196159363, -0.3673611581325531, 0.5859585404396057, -0.4429267346858978, 0.3810824155807495, 0.2525222599506378, -0.6349114775657654, -0.4921755790710449, -0.5852593183517456, 0.28848758339881897, 0.4639725983142853, -0.47604039311408997, -0.4404703974723816, -0.2605415880680084, 0.39788979291915894, -1.0494167804718018, -0.39817702770233154, -0.04368015006184578, 0.25369587540626526, 0.5074400305747986, -0.6379926800727844, -0.4294309616088867, -0.6004143357276917, 0.2957930266857147, 0.6130362749099731, 0.8144111633300781, 0.36435574293136597, 0.3368076682090759, -0.7970595359802246, 0.5903449058532715, 0.6046696305274963, 0.36327633261680603, -0.03798370808362961, 0.7689827680587769, 0.9330302476882935, -0.6172649264335632, -0.45454472303390503, -0.541027307510376, 0.2913293242454529, -1.0219323635101318, -0.10272563248872757, -1.0679879188537598, -0.13301321864128113, -0.15965121984481812], [0.4934995472431183, 1.1374735832214355, -2.615983009338379, 0.4353025257587433, 0.9110274910926819, 0.9075161218643188, 0.5224610567092896, 0.3975931406021118, -0.0006017535924911499, -0.22775974869728088, -0.9430657625198364, 0.3153951168060303, -0.15697766840457916, 0.06726504117250443, -0.1831335425376892, 0.6808704733848572, 0.6106845140457153, 0.2740751802921295, 0.5368601083755493, 1.3537812232971191, -0.6891371011734009, -0.595007061958313, -0.8034354448318481, 0.3528822064399719, -0.231909841299057, 0.2445254921913147, -1.8751882314682007, 0.36098891496658325, -1.1930923461914062, -1.1773567199707031, 1.156862735748291, -1.053160548210144, 0.029034171253442764, -0.32029905915260315, -1.5036334991455078, -0.09624707698822021, 0.4397602081298828, -0.1740018129348755, -0.20918160676956177, -1.2341326475143433, 1.4889028072357178, 0.9356822967529297, -0.7306705713272095, -1.2087950706481934, -0.09023240208625793, 0.022127509117126465, 1.4724749326705933, -0.9157128930091858, 0.27028003334999084, -0.2779489755630493, 0.7813787460327148, 0.6016747951507568, 0.5880955457687378, 1.4582550525665283, 0.637021541595459, -0.8726344108581543, 0.5845130681991577, 0.6950201988220215, 0.311301589012146, 0.2095206081867218, 1.2197414636611938, -0.9516311883926392, 0.8858785629272461, 0.9875635504722595, 0.1683221161365509, -0.45513999462127686, 0.41848891973495483, 0.18803347647190094, 0.5204953551292419, -0.5220601558685303, 0.7544479966163635, 0.5142907500267029, 0.13427916169166565, 0.514228880405426, -1.1035873889923096, 0.07315999269485474, 1.012553095817566, 0.07288628071546555, -0.3677799701690674, 0.12781041860580444, -0.3749648928642273, -0.4261782765388489, 0.28439533710479736, -0.4447248578071594, -0.5076330900192261, 0.643638014793396, 0.1096593365073204, -0.5279079675674438, 0.05877513438463211, 1.0788533687591553, 0.19021081924438477, 1.1284611225128174, 0.6472841501235962, 0.3117874264717102, -0.2144204080104828, -0.2795799970626831, -0.5700259208679199, -0.7976300716400146, -0.47263744473457336, -1.3100954294204712, -0.4132120609283447, 0.045862700790166855, 0.6301048994064331, 0.588711142539978, -0.2551227807998657, 1.2377352714538574, 0.09816683083772659, -1.166703701019287, 0.5946750640869141, -0.02303718775510788, -0.32381904125213623, 0.06588417291641235, -0.4348669648170471, -1.4601681232452393, -0.23248541355133057, 0.9199464321136475, 1.7310240268707275, 0.5399475693702698, 1.0821534395217896, 0.9394726753234863, -0.4100605845451355, -0.2541923522949219, -0.0599723681807518, 0.04652812331914902, 0.842807948589325, 0.606156587600708, -0.8160338997840881, -0.47887563705444336, 0.9471061825752258, -0.2648474872112274, 0.8763704299926758, -0.0606328621506691, 0.5660324096679688, 1.1049927473068237, -0.7430588006973267, 0.46992725133895874, -0.27195313572883606, -0.8239504098892212, 0.1762394905090332, 0.70196533203125, 0.8421833515167236, -0.2177850753068924, -0.019963044673204422, -0.5889990329742432, 0.007347438484430313, -0.20494578778743744, 0.40864723920822144, -0.5107896327972412, -0.8129923939704895, 1.2891892194747925, -0.829627513885498, 0.708783745765686, 0.6470333933830261, 0.6735018491744995, 0.6372513771057129, -0.5636424422264099, 1.299467921257019, -0.47821784019470215, 0.3989684581756592, 0.24287867546081543, 0.9764899015426636, 0.5095363855361938, -0.37578946352005005, -0.08227936923503876, 0.5110040903091431, -0.3828067481517792, 0.45567578077316284, 0.080407053232193, -0.34048259258270264, 1.190159797668457, -0.2058432251214981, -1.1380441188812256, -0.25998806953430176, 0.6894172430038452, 0.02262183092534542, -0.6075332164764404, 0.47028428316116333, -0.4373622238636017, -1.4052062034606934, -0.37367749214172363, 1.651094913482666, -0.3348401188850403, 0.3211783170700073, 0.26836907863616943, 0.246662437915802, 0.21286514401435852, -0.238918736577034, -0.6815578937530518, -0.5199477672576904, -0.940482497215271, -0.5430505871772766, 0.37194108963012695, -1.4856882095336914, 0.23761244118213654, -0.06241844967007637, -1.0847814083099365, 0.39043641090393066, -1.10889732837677, -0.44326087832450867, 1.1822229623794556, 0.38069790601730347, 0.11510799080133438, -0.5594048500061035, -0.35173898935317993, -0.4288681745529175, 1.0650111436843872, -0.19075801968574524, 0.2815222144126892, -0.4971165060997009, 0.3824034631252289, 0.7778891324996948, -1.0513768196105957, -1.3662691116333008, 0.1839534193277359, 0.4957374334335327, -1.224216341972351, 0.6046725511550903, -0.2048901915550232, -0.12197840213775635, -0.7280256748199463, 0.13316945731639862, 0.8133536577224731, 0.3957168459892273, 0.15098141133785248, 0.4618993401527405, -0.09235435724258423, -0.12125781923532486, -1.2923963069915771, 0.29256707429885864, -0.7178041338920593, -0.5416393876075745, -1.1011137962341309, 0.2386331856250763, 0.45189741253852844, -1.1559009552001953, 0.2555781602859497, 0.2631351351737976, 0.11615709960460663, -0.08670182526111603, 1.5959899425506592, 0.41540032625198364, 1.0384297370910645, -0.6261606216430664, 0.003989465534687042, -1.1420648097991943, 0.0735776498913765, 1.0931248664855957, -0.27909135818481445, 0.12465696781873703, 1.7760597467422485, 1.0377131700515747, -0.06139405816793442, 0.4961504340171814, -0.6970357894897461, -0.1812095046043396, -0.4632145166397095, -0.27811264991760254, 0.604106068611145, -0.7016574144363403, 1.7578482627868652, 0.7723181247711182, -0.7078676223754883, 0.3378506898880005, 0.605660080909729, 0.08156754821538925, -0.12454935163259506, -0.2322775423526764, -0.7304308414459229, 0.1751514971256256, -0.6838860511779785, 0.478488564491272, 0.06947377324104309, 0.46331119537353516, 0.8480727672576904, -0.34821444749832153, -0.7009071111679077, 0.2937343120574951, 0.2439555525779724, -0.8641935586929321, 1.0149058103561401, -0.5250282287597656, -1.249940276145935, -0.338589608669281, -0.045416343957185745, 0.35182660818099976, -0.2628633379936218, 0.029915576800704002, 1.2021071910858154, 0.6608076095581055, -0.04271204397082329, 0.009018510580062866, 0.4446493983268738, 0.29040610790252686, -0.2462305873632431, 0.4753105044364929, -0.04697096720337868, 1.120442509651184, -0.6657776832580566, -0.415152370929718, 0.2297452837228775, 0.28408998250961304, 1.3175575733184814, 0.09713955968618393, 1.520444393157959, -0.858188807964325, -0.1399160921573639, -0.13074804842472076, -0.8231090903282166, -1.738922119140625, -1.2275500297546387, -0.5772697329521179, -0.7130619287490845, -0.32633769512176514, -0.7225420475006104, -0.26083457469940186, 0.2891222834587097, 0.18677470088005066, 0.893396258354187, 0.11450507491827011, 0.22876977920532227, -1.2636576890945435, -0.1352684199810028, -0.747079610824585, -0.7786094546318054, 0.8365538120269775, 1.43002450466156, -1.4337255954742432, 0.20152390003204346, -0.5900332927703857, -1.0019447803497314, 0.8980427980422974, 0.2711450457572937, 0.41428709030151367, -0.39624348282814026, -0.7123512029647827, -0.32718992233276367, 1.2319350242614746, 1.1032969951629639, -0.3349483609199524, -0.4935522675514221, 0.6300483345985413, 0.8375656008720398, 0.3343851566314697, -0.41563162207603455, 0.19131819903850555, -0.7381691932678223, -0.3213624358177185, 0.01945234090089798, 0.3154495358467102, 0.44501495361328125, -0.48150089383125305, -0.8028831481933594, -0.15337428450584412, -0.7615693807601929, -0.5708110928535461, 0.2798742353916168, 0.14968900382518768, 0.8438683152198792, -0.22363221645355225, -0.31394344568252563, 0.8299736380577087, 0.0291725043207407, 0.34452956914901733, -1.0721280574798584, 0.555056095123291, 0.8875308036804199, 1.150877833366394, -0.5968738198280334, 0.8777716159820557, 0.38252943754196167, -0.5975358486175537, 0.3897210657596588, 0.11476759612560272, 0.9174299240112305, 0.30163246393203735, -0.5996959209442139, -0.22383004426956177, -0.9956257939338684, 0.3317375183105469, -0.393665611743927, -0.08007486164569855, 0.20366211235523224, -0.8647869825363159, -0.20300185680389404, 0.648859977722168, 0.6107593178749084, -1.384324550628662, -0.7788835167884827, -0.6973837614059448, 0.05348929017782211, -0.48130911588668823, 0.2725882828235626, 0.2866562604904175, -0.35219040513038635, 1.1603648662567139, -1.261157751083374, -0.07014375180006027, -0.1596904844045639, -0.19143790006637573, 0.9867272973060608, -1.5276907682418823, -0.7626796364784241, -1.079054832458496, -0.0948532372713089, 0.775892436504364, 0.49702802300453186, 0.4398229420185089, 0.33608800172805786, -0.14948396384716034, 0.08912620693445206, 0.688205897808075, 1.7274696826934814, 0.036890819668769836, -0.3576801121234894, -0.03609567880630493, 0.11847599595785141, -0.4837648868560791, -1.0203523635864258, 0.009291715919971466, 0.05313058942556381, -0.584954023361206, -0.22797614336013794, 0.47361230850219727, -0.6009883880615234, 1.5869581699371338, 0.20247536897659302, 0.23785433173179626, 0.16673219203948975, -0.37045055627822876, -0.7747374773025513, -0.029546156525611877, 0.922448456287384, -0.7458958625793457, -0.5266943573951721, 0.40650683641433716, 0.6229310035705566, 0.5226033926010132, 0.23742884397506714, 0.5271830558776855, -0.008977361023426056, -0.2613842785358429, 0.04581984132528305, -0.043372832238674164, 0.2409244030714035, 1.3271706104278564, 0.8964065313339233, 0.6824286580085754, -0.5361344218254089, -0.6154760122299194, 1.263216495513916, 0.3934626877307892, 0.5679082870483398, -0.06860481202602386, 1.1922576427459717, 0.6289974451065063, -0.9930094480514526, -0.5370783805847168, 0.8328321576118469, -0.2421659231185913, 0.7357138395309448, 0.3213304877281189, 0.537287175655365, -0.6402090191841125, -0.26040178537368774, -0.1980234980583191, 0.24500250816345215, 0.2663908004760742, 0.2184716910123825, 1.1308107376098633, 0.6648339629173279, -1.1606321334838867, 0.08668643236160278, -0.7173376083374023, -0.059242088347673416, -0.45745849609375, -0.3655892014503479, 0.4071922302246094, 0.4762738347053528, 0.8425823450088501, -0.31016477942466736, -0.3070237934589386, -0.1404784619808197, 0.2858092784881592, -0.916658341884613, 0.07536472380161285, -0.20160357654094696, -0.5033480525016785, -1.3981636762619019, 0.4588744640350342, 0.001954288687556982, -0.23942476511001587, 0.12209387868642807, -0.20504257082939148, -1.0187636613845825, -0.7553761005401611, -0.3444432020187378, 0.7262630462646484, 1.300316333770752, -0.19511157274246216, 0.4672878682613373, 0.7625049352645874, -0.019511383026838303, -0.55854731798172, -0.12816694378852844, 0.4640403389930725, 0.02553454414010048, -0.13249841332435608, -0.7404236793518066, -0.42519596219062805, 0.29989784955978394, -0.1633610725402832, 0.16000095009803772, 0.4207730293273926, 0.011310454457998276, 1.245980978012085, -0.17242956161499023, -0.6527763605117798, 0.17746728658676147, -0.8749045133590698, 1.0439026355743408, 0.06529918313026428, 0.1702791005373001, -0.22054877877235413, -0.7536327838897705, -1.1096153259277344, 1.1823738813400269, -0.011694713495671749, -1.1287212371826172, 0.10648542642593384, 0.9254286289215088, -0.0956215113401413, 0.9244801998138428, -0.060886893421411514, 0.2775304317474365, 0.47171327471733093, 0.3330894112586975, -0.7146322131156921, -0.4970419108867645, 0.84211665391922, -0.15002337098121643, -0.5755026340484619, 0.9777469635009766, -0.37098583579063416, 0.36487704515457153, -0.0027287136763334274, 0.4387158155441284, 0.6569687128067017, 0.21236038208007812, 0.11499090492725372, -0.20968639850616455, -0.22705845534801483, -1.1528491973876953, -0.4443945288658142, -0.4584486186504364, 0.16472738981246948, 0.3113458454608917, -0.8850502371788025, 0.3837023675441742, -0.7051888704299927, 0.4137071371078491, 0.1971288025379181, -0.5032228231430054, 0.8062393665313721, 0.29465359449386597, 0.19978117942810059, 0.7309871912002563, -0.4290897250175476, -0.06162863224744797, -0.7469104528427124, -0.9882166385650635, 0.7985376715660095, -1.3171602487564087, -0.581855058670044, -0.5374417901039124, -0.5278427600860596, -0.4277733564376831, -0.29985636472702026, -0.10659598559141159, -0.628217875957489, -1.144179105758667, -0.6435784697532654, 0.29923051595687866, 0.6755397319793701, -0.25268155336380005, 0.3380800783634186, 0.5850169658660889, -0.8329998254776001, -0.29540807008743286, -0.014622273854911327, -1.627556324005127, -0.13508340716362, -0.7651041746139526, 0.5789275169372559, -0.30479416251182556, 0.3515312969684601, -0.007088825106620789, 0.8931742310523987, -1.9770565032958984, -0.928015410900116, -0.5063788294792175, -0.7073622941970825, 0.675894021987915, 1.1309618949890137, -1.3579092025756836, 1.0375733375549316, 0.17233732342720032, -0.24102333188056946, 0.22688227891921997, 0.16804227232933044, -0.6085031032562256, 0.19272847473621368, -0.5755628347396851, 0.39494556188583374, 0.45646941661834717, 1.6879658699035645, 1.433690071105957, 0.8324788808822632, -0.06373901665210724, 0.9369728565216064, 0.0001839771866798401, -0.2689475417137146, 0.1217832937836647, 0.4618682861328125, -0.0002733711153268814, -0.3113938570022583, 0.054854489862918854, -0.3513365387916565, -0.6694064140319824, -0.24043720960617065, 0.94789719581604, -0.8526462316513062, 0.11545819044113159, -0.17107707262039185, -0.07712632417678833, -0.36558133363723755, 0.3263132870197296, 0.32597362995147705, 0.6130213141441345, 0.10329177975654602, -0.32500317692756653, 0.608298659324646, -0.3718414306640625, -0.6989800930023193, 0.5537517070770264, 0.7581450939178467, -0.7128219604492188, 0.05366777256131172, 0.3892183303833008, 0.15577101707458496, -0.055002082139253616, 1.3935604095458984, 0.6508468389511108, -0.14782901108264923, 0.26054465770721436, -0.3610203266143799, -0.6086639761924744, 0.12327015399932861, -0.3759211003780365, -0.5948808193206787, -0.5642685890197754, 0.6448960304260254, 0.46114352345466614, -0.34922945499420166, -0.03345699980854988, 0.6900382041931152, -0.08828812092542648, 0.9046592712402344, 1.487838625907898, -0.5963455438613892, -0.9086971282958984, 0.9543355703353882, 0.3324912190437317, -1.1082763671875, 0.8189603090286255, 0.34401100873947144, 0.24420663714408875, -0.21866261959075928, 1.126600742340088, 0.218617245554924, -0.6334452629089355, 0.9242874383926392, 0.3490625321865082, -0.06436854600906372, -0.6160091161727905, -0.09790166467428207, -1.858100175857544, -0.08776780217885971, -0.46787774562835693, -1.183426856994629, 0.5990346670150757, -1.3157293796539307, -1.3459291458129883, 0.2314826399087906, 0.3071712255477905, -0.5117143392562866, -0.49268996715545654, 0.046635836362838745, 0.061129145324230194, -0.3512047827243805, 1.0037527084350586, -0.6501099467277527, 1.4128694534301758, 0.33058586716651917, -0.16127237677574158, -1.1942505836486816, -1.2442107200622559, 0.25567877292633057, 0.5322537422180176, -0.689776599407196, -0.6877105832099915, 0.9321600198745728, -0.547612190246582, -0.6498466730117798, 0.7919082045555115, 0.7075218558311462, -0.041131697595119476, -0.22754666209220886, -0.94278883934021, 0.7365951538085938, 0.4253964126110077, 0.09002850949764252, -0.838158369064331, -0.7517843246459961, -1.1556618213653564, -0.17758530378341675, -1.1419835090637207, 0.6623804569244385, 0.07707170397043228, 1.287616491317749, -0.8110073208808899, -0.8140501976013184, -0.560682475566864, -0.7072811722755432, -0.19595088064670563, 0.2949323058128357, -0.3653516173362732, -0.35263314843177795, -0.7395626306533813, -0.11637704074382782, -0.7977592349052429, -0.37051355838775635, 0.5424349308013916, 0.9064829349517822, -0.05873282253742218, -0.826945960521698, -0.602615237236023, -0.7687622308731079, 0.16068784892559052, 0.777004599571228, 0.19508694112300873, 0.2224520593881607, 0.2805292010307312, -0.8797286748886108, 0.23522254824638367, 0.40949541330337524, 0.1753837764263153, -0.07517263293266296, 1.2000267505645752, 1.1504859924316406, -0.4693414568901062, -0.2898779511451721, 0.0017963536083698273, 0.4525708556175232, -0.5379088521003723, 0.5329186916351318, -1.2523823976516724, -0.19986692070960999, -0.13148146867752075], [0.08801362663507462, 1.8274341821670532, -2.6404335498809814, -0.22077755630016327, 0.42459636926651, 0.0934380292892456, 0.6917510628700256, -0.27710387110710144, -0.15563909709453583, -0.6983884572982788, -0.47025397419929504, -0.14330412447452545, 0.6375563740730286, -0.06995993107557297, 0.02173570729792118, 0.5123456716537476, 0.6224338412284851, 0.09157471358776093, 0.14192849397659302, 1.605914831161499, -0.13913525640964508, -1.3848038911819458, -0.4287969768047333, 0.4419105052947998, 0.0687418133020401, 0.3026092052459717, -2.025979995727539, -0.18779703974723816, -1.6747368574142456, -1.3530439138412476, 1.643401861190796, -0.06545846164226532, 0.8034993410110474, 0.11039033532142639, -1.535553216934204, 0.31263628602027893, 1.3934332132339478, 0.30153390765190125, 0.6533949375152588, 0.2085547149181366, 2.042692184448242, 0.4171026647090912, -0.5052264332771301, -1.6885873079299927, 0.07605832815170288, 0.1859581470489502, 1.2553983926773071, -1.760326862335205, -0.42478200793266296, -0.5160215497016907, 0.7345223426818848, -0.19203057885169983, 0.4763548672199249, 0.9571365714073181, 1.015986442565918, -0.810542643070221, 0.7255946397781372, 1.2792294025421143, -0.10548705607652664, 0.462063729763031, 1.3863290548324585, -0.26342135667800903, 1.3846330642700195, 0.4086666703224182, 0.5357078909873962, -0.6890020966529846, 0.7639727592468262, 0.29201674461364746, 0.07760076969861984, -0.266772598028183, 0.796826958656311, 0.6797528862953186, -0.8237229585647583, 0.4321986138820648, -1.3042844533920288, 0.8480031490325928, 0.6264950037002563, 0.5130428075790405, 0.3998278081417084, 0.2859836518764496, 0.2340553104877472, 0.28290417790412903, 0.44203418493270874, -0.08652561902999878, -0.2561000883579254, 0.6067108511924744, -0.13566945493221283, -0.6005755662918091, -0.5317919850349426, 0.6635933518409729, 0.10221488773822784, 0.6071541905403137, 0.6869555711746216, -0.15475967526435852, -0.6359986066818237, -1.1001802682876587, -0.8322441577911377, -0.7371184229850769, -0.4203605651855469, -0.908970057964325, -0.20235185325145721, -0.8021332621574402, 1.2605549097061157, 0.3943059742450714, 0.21393394470214844, 1.4047863483428955, 0.4393264651298523, -1.2575749158859253, -0.08174794167280197, -0.4492506682872772, -0.31342098116874695, -0.10258419066667557, -0.6101571321487427, -1.747496247291565, -0.7198094129562378, 1.0799498558044434, 1.689941167831421, 1.0539882183074951, 0.4154883623123169, 0.5620009303092957, -0.3607539236545563, -0.20360635221004486, -0.6543051600456238, 0.10916370898485184, 1.7547025680541992, 0.8507882356643677, -0.6613246202468872, -0.15019762516021729, 0.17969535291194916, -0.6140468716621399, 1.3473542928695679, -0.049613986164331436, -0.2478603720664978, 0.785603940486908, -0.366842120885849, 0.8372307419776917, -0.4199812710285187, -0.6530573964118958, 0.17146413028240204, 0.9662808179855347, 0.015483028255403042, -0.4676240384578705, -0.33988115191459656, -0.9357516765594482, 0.0539417490363121, -0.5347623825073242, 0.782224714756012, 0.04364122077822685, -1.2221317291259766, 0.7082118391990662, -0.9747015833854675, 0.28199803829193115, 0.1777717024087906, 1.2085288763046265, 0.44432327151298523, -0.38048887252807617, 0.9224541187286377, 0.5698937177658081, 0.22020389139652252, 0.9100229740142822, 0.668373167514801, -0.12637068331241608, -0.6524845361709595, 0.4716455340385437, 0.6146037578582764, -0.18128450214862823, 0.705925464630127, -0.12608058750629425, -0.5603737235069275, 1.3300657272338867, 0.30657532811164856, -0.6491190791130066, -0.4606587886810303, 1.2612159252166748, 0.09324368834495544, 0.36570578813552856, 0.8252360224723816, -0.24051153659820557, -1.8992948532104492, -0.9189702272415161, 1.6614922285079956, -0.6649839878082275, 0.2184584140777588, -0.23665544390678406, 0.25061601400375366, -0.5528613924980164, 0.27644091844558716, -0.46224138140678406, -1.1512095928192139, -1.292000651359558, -0.1563805788755417, -0.15111246705055237, -0.9907359480857849, 0.3077530264854431, -0.5242799520492554, -1.165945291519165, 0.9191661477088928, -0.951648473739624, -1.4108914136886597, 0.25603044033050537, 0.8747114539146423, -0.06890565156936646, -1.2602754831314087, -0.35783651471138, -0.8929274082183838, 1.4768620729446411, -0.9704595804214478, 0.7801740169525146, -0.8352460265159607, 0.8191264867782593, 1.0024182796478271, -0.7021061182022095, -0.9305630922317505, 0.5964635610580444, -0.15535308420658112, -1.5969738960266113, 0.3299145996570587, -0.562006950378418, 0.20423834025859833, -0.9855177998542786, 0.07251712679862976, 0.5885473489761353, 0.7548924684524536, -0.27865070104599, 0.580706000328064, -0.1341165453195572, 0.0065153674222528934, -0.8231731653213501, 0.214553564786911, -0.4338968098163605, -1.0883766412734985, -0.49695339798927307, 0.22243931889533997, 0.1770390272140503, -1.2859188318252563, -0.20528572797775269, -0.21556073427200317, 0.09359192848205566, -0.20317357778549194, 1.5999785661697388, 0.534889280796051, 0.40650007128715515, 0.020093685016036034, -0.2302650362253189, -0.7102166414260864, -0.4683496057987213, 0.9796727299690247, -0.5661562085151672, 0.5002081990242004, 1.6496745347976685, 0.6132504940032959, 0.01733962446451187, -0.06860469281673431, -0.9166136384010315, 0.023260608315467834, -0.96085125207901, -0.3851231038570404, 0.14784274995326996, -0.994478166103363, 2.405219078063965, 1.1764719486236572, -0.39385750889778137, 0.15781350433826447, -0.23179668188095093, 0.397104948759079, -0.8077182769775391, 0.2601524889469147, -0.4388229250907898, 0.2335597723722458, -0.17529107630252838, -0.2263806164264679, -0.011369572021067142, -0.08294985443353653, 0.526768684387207, -0.27328720688819885, -0.5628800392150879, 0.11836351454257965, 0.4482204020023346, -0.2841605544090271, 0.6048890352249146, -0.443089097738266, -1.4484981298446655, -0.8916801810264587, -0.10225864499807358, 0.6499860882759094, 0.12763401865959167, 0.39425063133239746, 0.8260350227355957, 0.623893678188324, 0.02930186502635479, 0.6046924591064453, 0.29843389987945557, 0.18904557824134827, -0.4115762710571289, 0.4930482506752014, -0.008072914555668831, 0.6663237810134888, -0.7003300189971924, -0.9395896196365356, 0.5239154100418091, 0.0820021703839302, 1.8187657594680786, 0.45460015535354614, 1.305727481842041, -0.8228453993797302, 0.18898992240428925, -0.385383665561676, 0.19560204446315765, -1.149444818496704, -0.5767216682434082, -0.19771116971969604, -1.185188889503479, -0.7520031332969666, -0.11997990310192108, -0.3109889626502991, 0.5846436023712158, -0.2375451922416687, 0.8719589114189148, 0.5524667501449585, 0.08368973433971405, -1.7771199941635132, -1.215266227722168, -0.12165717780590057, -0.8447802662849426, 1.3749818801879883, 0.9093666076660156, -1.493074655532837, 0.01975107379257679, -0.1058245375752449, -0.24611257016658783, 0.3920711278915405, -0.27981430292129517, 0.043994463980197906, -0.7574349045753479, 0.07738780975341797, -0.008290101774036884, 0.38742947578430176, -0.19279544055461884, -0.570441484451294, -0.5603454113006592, 0.5658231973648071, 0.5823444724082947, -0.7010940313339233, -0.343049019575119, -0.04970410093665123, -1.2330197095870972, -0.285139262676239, 0.04908972233533859, 0.6920986771583557, -0.0582582913339138, -0.7115758061408997, -1.559152603149414, -0.0026946356520056725, -0.596443235874176, -0.6182190775871277, 0.18977928161621094, 0.17966300249099731, 0.9024358987808228, -0.8281174302101135, 0.5695835947990417, 1.0794199705123901, -0.009982115589082241, 0.1565455049276352, -1.41403329372406, 1.1267722845077515, 0.9147868156433105, 1.1218457221984863, 0.28404903411865234, 0.6046579480171204, 0.7364879250526428, -0.7781321406364441, -0.08282162249088287, 0.25327450037002563, 0.5192899703979492, 0.02636636793613434, -0.2033124715089798, 0.019520942121744156, -0.3240445852279663, 0.02257016859948635, -0.25792059302330017, 0.005079872440546751, 0.670083224773407, -0.23458489775657654, 0.16399262845516205, 0.9628203511238098, 0.6139785051345825, -0.4873815178871155, -0.49943074584007263, -0.011678694747388363, 0.29544198513031006, 0.026892803609371185, 0.20624712109565735, -0.30103710293769836, -0.6368018984794617, 0.8145134449005127, -1.6321220397949219, -0.22886314988136292, -0.17770087718963623, 0.09632819890975952, 1.347080945968628, -0.7854751944541931, -0.5656394362449646, -0.6455090641975403, 0.21962735056877136, 1.4653921127319336, 0.2547401785850525, 0.877443253993988, 0.9419630765914917, -0.2735128402709961, 0.3066740930080414, 0.3451429605484009, 1.8329066038131714, 0.3697786331176758, -0.8353937864303589, 0.5103935599327087, 0.3652624785900116, 0.17389430105686188, -0.47625574469566345, -0.04047894850373268, 0.5540857911109924, -0.3949698507785797, -0.36180779337882996, 0.01531714666634798, -0.5989928245544434, 2.3266289234161377, 0.6019311547279358, 0.12176623195409775, -0.15806540846824646, -0.11428449302911758, -1.3973734378814697, 0.011863569729030132, 0.4347536861896515, -0.8787463903427124, -0.423138827085495, 0.40009254217147827, 0.3751462996006012, 0.9770996570587158, 0.17983973026275635, 0.4046996235847473, 0.03843742981553078, 0.13105224072933197, 0.6026099920272827, 0.36124739050865173, 0.18275697529315948, 1.5533069372177124, 1.0213521718978882, 1.1811752319335938, 0.15448062121868134, -0.6539104580879211, 1.2218904495239258, -0.6250724792480469, 0.43598803877830505, 0.9367232322692871, 0.346463680267334, 0.7796842455863953, -1.7263823747634888, 0.1775868535041809, 0.7878546118736267, -0.19866794347763062, 0.997491717338562, 0.44018521904945374, 0.6362534761428833, -0.7446960806846619, -0.2830570936203003, 0.7333815693855286, -0.146389439702034, 0.3768971264362335, -0.12853612005710602, -0.07240231335163116, 0.8987614512443542, -0.9635486006736755, 0.16037069261074066, -1.4203399419784546, 0.037260837852954865, -0.0237482488155365, -0.850616455078125, 0.4439263641834259, 0.7417395114898682, 1.178362250328064, 0.27808329463005066, -0.3224390745162964, -0.7554597854614258, 0.4610263705253601, -0.7385808229446411, 0.08462219685316086, -0.7015042901039124, 0.04479590430855751, -1.2084019184112549, -0.5069573521614075, -0.3742430508136749, -0.025898408144712448, -0.3107943832874298, -0.4723917841911316, -1.0671128034591675, -0.8738449811935425, 0.5990153551101685, 0.7277434468269348, 0.7791659832000732, 0.5031132102012634, 0.6699846386909485, 0.3353920578956604, 0.09185337275266647, -1.1807363033294678, -0.5184226632118225, 0.36630329489707947, 0.06540393829345703, -0.1722204089164734, -0.20289675891399384, -0.6186317205429077, 0.4050890803337097, 0.38479676842689514, -0.4065345227718353, 0.9745866060256958, 0.6883043646812439, 1.0538568496704102, -0.7547030448913574, -1.2479418516159058, 0.6087798476219177, -0.517916202545166, 0.4977492392063141, 0.4722633361816406, -0.685032844543457, -0.7692530751228333, -0.552994966506958, -1.2934398651123047, 1.3618011474609375, 0.09429765492677689, -0.41511696577072144, 0.5736539363861084, 0.7713882923126221, -0.07938352227210999, 0.7121036052703857, -0.8189370036125183, -0.029559850692749023, 0.04719715192914009, -0.2094944268465042, -1.095560908317566, 0.023857226595282555, 0.8070637583732605, -0.026765206828713417, -1.1134642362594604, 0.682488203048706, -1.0600666999816895, -0.017726799473166466, -0.6549597978591919, 0.6585546731948853, 0.47606608271598816, 1.0945954322814941, 0.8420094847679138, 0.15108616650104523, 0.6295790672302246, -1.2490681409835815, -0.012224355712532997, 1.0373725891113281, 0.18799753487110138, 0.47382625937461853, -0.5978732109069824, 1.288438320159912, -0.767143964767456, -0.42643076181411743, -0.22809414565563202, -0.4924898147583008, 0.5280865430831909, 0.4877217411994934, 0.08282091468572617, 0.8023626804351807, -0.5193626880645752, -0.32681623101234436, -0.7668493390083313, -0.44829505681991577, 1.254194736480713, -1.6071988344192505, -0.6432669162750244, -0.19167056679725647, -0.4474424719810486, -0.47630131244659424, 0.4662345051765442, -0.12131564319133759, -0.48192712664604187, -1.0644919872283936, -0.33173131942749023, -0.25819867849349976, 1.1303468942642212, -0.5159679651260376, 0.6361464858055115, -0.20738759636878967, -1.076891303062439, 0.47639918327331543, -0.6341394186019897, -2.0734548568725586, 0.35021454095840454, -0.6022724509239197, 0.7788264751434326, -0.89403235912323, -0.24495519697666168, 0.24598701298236847, 1.4124699831008911, -1.461205005645752, -0.49283748865127563, -0.9713224768638611, -0.32283931970596313, 1.0029774904251099, 0.8913296461105347, -0.8075644373893738, 1.7582777738571167, -0.050971705466508865, -0.6009622812271118, -0.24414962530136108, 0.4087327718734741, -0.8373311161994934, 0.02822592295706272, -0.13050733506679535, -0.2435046285390854, 0.20285649597644806, 1.7375527620315552, 0.6698277592658997, 0.8928699493408203, 0.0921589806675911, 1.6963666677474976, -0.7976446151733398, -1.2000453472137451, 0.08038335293531418, 0.5429727435112, -0.16506901383399963, -1.2093031406402588, 0.24337461590766907, -0.8962502479553223, -1.3360011577606201, -0.3135494887828827, 0.9836033582687378, -0.6203718781471252, 0.5375461578369141, 0.2131776511669159, -0.15016262233257294, -0.41771215200424194, 0.592928946018219, -0.17459607124328613, -0.19228850305080414, 0.4268289804458618, -0.3416460454463959, 0.07056677341461182, -0.8083257079124451, -0.11861398816108704, 0.7673931121826172, 0.8695780634880066, -0.19627127051353455, -0.3572642505168915, 0.2581687271595001, 0.110661081969738, -0.43077412247657776, 1.536338210105896, 0.719135046005249, -0.19741658866405487, -0.018441328778862953, -0.134572833776474, -0.4790653586387634, 0.11046452820301056, 0.11323443800210953, -1.1455743312835693, -0.5894911885261536, 0.6494751572608948, 0.6439933776855469, -0.20920580625534058, 0.4712183177471161, 0.6713277101516724, 0.41125160455703735, 0.7429606914520264, 0.7139744162559509, -1.144690752029419, -0.47835224866867065, 1.3454091548919678, 0.5914967656135559, -0.8920503854751587, 0.25437867641448975, -0.19119541347026825, 0.10868056863546371, 0.09886404126882553, 0.9722424745559692, 0.3057177662849426, -0.7178501486778259, 0.375312864780426, 1.1663289070129395, -0.5665268898010254, -0.40275293588638306, -0.8388521075248718, -1.817959189414978, -0.7212580442428589, -0.31681615114212036, -0.6052404046058655, 0.5676042437553406, -1.3401031494140625, -1.5018951892852783, 0.23375380039215088, 0.1970117837190628, -0.36190322041511536, -0.6172979474067688, 0.3892774283885956, 0.13065633177757263, -0.6965311765670776, 1.2667804956436157, -0.5508943796157837, 1.2828062772750854, -0.29955655336380005, 0.21461701393127441, -0.3582388460636139, -0.24376684427261353, 0.10119657218456268, 0.06471600383520126, -0.22917605936527252, -0.5411608815193176, 0.38838082551956177, -0.5753774642944336, -0.6396334767341614, 0.15956413745880127, 0.14843402802944183, 0.4054085910320282, -0.2669476866722107, -0.2823163866996765, 0.0875447541475296, 0.9679431319236755, -0.08582747727632523, -0.5339667201042175, -0.48980653285980225, -1.1014337539672852, 0.46316713094711304, -0.2179919332265854, 0.14239326119422913, 0.22015289962291718, 0.4977226257324219, 0.48439815640449524, -1.1399611234664917, -0.385163813829422, -0.7065880298614502, 0.5308253169059753, 0.47557562589645386, -0.5741879940032959, -0.7149746417999268, -0.6056567430496216, 0.5064346790313721, -1.0731902122497559, -0.4841068983078003, -0.24824562668800354, 0.39890915155410767, -0.14267005026340485, -0.7379605770111084, -0.6083528995513916, -0.691895604133606, -0.08905183523893356, 0.32264789938926697, 0.5011596083641052, -0.15867716073989868, 0.08812951296567917, -0.5810682773590088, -0.3927513360977173, 1.1855082511901855, 0.5773380994796753, 0.4210692346096039, 1.2030223608016968, 0.8408308029174805, 0.11384943872690201, -0.39941084384918213, 0.06799513846635818, 0.14358724653720856, -1.1883569955825806, 0.24338935315608978, -0.7639710903167725, -0.5050064921379089, -0.07853051275014877], [1.0775146484375, -0.07632303237915039, -4.00146484375, -0.547882080078125, 1.3052978515625, -0.5041046142578125, 0.09389781951904297, 0.41823577880859375, -0.4677276611328125, 0.96405029296875, -0.5348010063171387, 0.526824951171875, 1.69305419921875, 0.3725433349609375, 1.1978759765625, -0.92279052734375, 0.0702362060546875, 0.6990318298339844, -0.6847648620605469, 0.716033935546875, -0.4580068588256836, -1.2548828125, -0.4835357666015625, 0.361663818359375, 2.091552734375, 1.02972412109375, 0.23765945434570312, -0.5589313507080078, -1.190673828125, 0.059897422790527344, 1.2335205078125, -0.06591796875, 0.422332763671875, -0.11250114440917969, -0.2476806640625, -0.86273193359375, 1.07000732421875, 0.97882080078125, 0.89208984375, -0.18286895751953125, -0.0585784912109375, 0.0771942138671875, -0.3929557800292969, -0.2258758544921875, 1.3756103515625, -0.997161865234375, 0.30809783935546875, -0.2583799362182617, 0.5055999755859375, 0.7176055908203125, 0.02552032470703125, 0.2598533630371094, 0.5641326904296875, -1.08526611328125, 0.813232421875, 0.2220306396484375, -0.30194091796875, -0.14327049255371094, 0.71234130859375, 1.0592041015625, 0.007916450500488281, -0.785400390625, 0.51593017578125, 1.165557861328125, 0.36664295196533203, -2.0234375, 0.013180732727050781, 0.6326904296875, -0.5038795471191406, -0.05454254150390625, 0.4120941162109375, -1.2637939453125, 0.35205078125, 0.80364990234375, -0.0004425048828125, 0.978759765625, 0.06806564331054688, 1.30767822265625, -0.4321441650390625, -0.8001556396484375, 0.09105682373046875, -0.81329345703125, 0.724273681640625, -0.3944740295410156, 0.4857826232910156, -0.7322235107421875, 0.2740135192871094, 0.3385467529296875, -1.3031005859375, 1.59027099609375, 0.2271289825439453, 0.8129119873046875, 0.21664857864379883, 1.09210205078125, -0.10491943359375, -0.3686065673828125, -0.20586395263671875, 0.870819091796875, -0.49066162109375, 1.0367546081542969, -0.45647430419921875, -0.5882110595703125, -0.0019826889038085938, -0.09266281127929688, 0.6441650390625, 0.45253753662109375, 0.6417808532714844, -0.33553600311279297, -0.5590362548828125, -0.336212158203125, -0.3051910400390625, -0.038330078125, 0.10413742065429688, -0.43988037109375, 0.8167877197265625, 0.6935062408447266, 1.25933837890625, -0.6748886108398438, -0.9798583984375, 1.099029541015625, 0.6717147827148438, -0.79119873046875, -0.81011962890625, 0.568634033203125, 0.9627685546875, 0.54840087890625, -0.92724609375, -0.396759033203125, 0.7393798828125, -1.29107666015625, -1.0194091796875, 0.2830963134765625, -0.11268877983093262, 1.369873046875, 0.2824716567993164, 1.3310546875, 0.038883209228515625, -0.7050108909606934, 0.67572021484375, 0.647979736328125, 1.45916748046875, -0.8458404541015625, -0.4565410614013672, 0.7889060974121094, 0.13848876953125, 0.10184860229492188, 0.232391357421875, -0.92987060546875, -1.08056640625, 0.6678619384765625, 0.3002128601074219, -0.05823516845703125, -0.063018798828125, 1.072265625, 0.42168426513671875, -0.803131103515625, -2.11328125, 0.7687835693359375, -0.25281524658203125, 0.4599151611328125, 0.4822540283203125, -0.1183013916015625, -0.9459228515625, 1.13726806640625, -0.7935943603515625, -0.3537101745605469, 0.6629753112792969, 0.22823333740234375, 0.12723946571350098, 1.04974365234375, -2.09375, -1.18695068359375, -0.08977222442626953, -0.325650691986084, 0.932403564453125, 0.3419189453125, 0.77545166015625, -0.849611759185791, -0.273040771484375, 0.48944091796875, 1.040771484375, -0.606292724609375, 0.963134765625, -0.419342041015625, -0.31136077642440796, 0.9041175842285156, -0.4453468322753906, 0.05916547775268555, -0.6597442626953125, -0.736083984375, 0.016374826431274414, 1.13543701171875, -0.5592384338378906, -0.10247611999511719, -1.5902099609375, -0.31949615478515625, 1.001220703125, 0.7440185546875, -0.47792816162109375, -1.428497314453125, -0.6059675216674805, 0.2418060302734375, -0.3669891357421875, 0.20949172973632812, -0.47521209716796875, 1.063201904296875, 1.01019287109375, 1.0059814453125, 0.05940723419189453, 0.8258056640625, 0.8243026733398438, -0.4240608215332031, -0.39405059814453125, -0.62103271484375, 0.2366790771484375, 0.18756675720214844, 0.22186040878295898, -1.1773681640625, -0.13056564331054688, 1.167633056640625, -0.43811988830566406, 1.25335693359375, -0.694976806640625, 0.12753582000732422, 0.8984375, 0.6048736572265625, -0.9664306640625, -0.66473388671875, -0.181396484375, -0.9239501953125, 0.8082275390625, -1.25701904296875, 0.8184814453125, -0.5335693359375, -0.6760101318359375, 0.1600780487060547, -0.22133255004882812, -0.146636962890625, 0.3527851402759552, 1.193939208984375, 0.669769287109375, -0.4065876007080078, -0.8167266845703125, -1.234130859375, -1.710693359375, -0.011566162109375, -0.2979736328125, 0.296356201171875, 0.437957763671875, 2.470947265625, 0.735382080078125, -0.3196258544921875, 0.5039520263671875, 0.267822265625, 1.23797607421875, -0.547576904296875, -0.18692779541015625, 0.8153076171875, -0.5406341552734375, 1.0116767883300781, -0.3312034606933594, -0.16844940185546875, -0.532318115234375, -0.22057533264160156, -0.43568897247314453, -0.17673492431640625, 0.96484375, 0.23255157470703125, 0.7013702392578125, -0.687744140625, 0.715118408203125, 1.266357421875, -0.05008697509765625, 0.25153160095214844, -0.30449676513671875, -0.027756690979003906, -0.17252731323242188, 0.5869827270507812, -0.870513916015625, 1.338623046875, -0.7476234436035156, -1.026763916015625, -1.472412109375, 0.4280853271484375, -0.5573959350585938, 0.33469390869140625, 0.043426513671875, -0.37528228759765625, 0.1965789794921875, 0.696014404296875, 0.8359756469726562, 0.609039306640625, 0.058345794677734375, -0.3404045104980469, 0.5484485626220703, 0.08700942993164062, 0.0829315185546875, -1.18817138671875, -0.146453857421875, -0.4518890380859375, 0.4624176025390625, -0.6502227783203125, 0.1720123291015625, 0.845062255859375, -0.87896728515625, -0.5353994369506836, -0.720306396484375, -0.19322967529296875, 0.61383056640625, -0.7557373046875, -0.91668701171875, 0.528289794921875, -1.02166748046875, -0.2913024425506592, -1.0557861328125, -0.19036865234375, 0.6406707763671875, 0.502044677734375, 0.83251953125, -0.10797500610351562, -0.16134262084960938, -0.06949043273925781, -0.66748046875, -0.470367431640625, 1.45947265625, 0.8856201171875, -0.779052734375, 0.37823486328125, -0.799072265625, -0.48638916015625, -1.72125244140625, 0.835174560546875, 1.6126708984375, -0.48209381103515625, -0.19217681884765625, 1.000732421875, -0.5932173728942871, -0.02489471435546875, 0.1838226318359375, 0.87396240234375, 0.7068157196044922, -1.33111572265625, -0.3065605163574219, -0.700347900390625, 0.23245620727539062, 1.1551513671875, -0.20189452171325684, 0.7169952392578125, 0.615447998046875, 0.3359203338623047, -0.3262596130371094, -0.7545166015625, -0.4103269577026367, -0.1855621337890625, 1.42138671875, 0.11436939239501953, 0.3884735107421875, 1.2513427734375, -1.179718017578125, 0.3128681182861328, 0.478973388671875, -0.3604736328125, -0.2583961486816406, -1.1787109375, 0.5567970275878906, 1.234466552734375, 1.6527099609375, -0.92584228515625, 0.445648193359375, -0.39083099365234375, 0.14499664306640625, 0.03473472595214844, -0.48666834831237793, -0.6134490966796875, -1.15625, -0.32320404052734375, -1.567138671875, -1.12762451171875, -1.60302734375, 0.6794586181640625, 0.19775390625, -0.7909393310546875, 0.67462158203125, 0.876373291015625, 0.7517299652099609, -0.5698089599609375, 0.585235595703125, -1.4417724609375, -0.3759307861328125, 0.24413299560546875, -1.0478515625, -1.3271484375, 0.084197998046875, -0.7880783081054688, 0.06776046752929688, -0.695831298828125, 0.32833099365234375, -1.14532470703125, -0.9516448974609375, -0.24458885192871094, -1.4912109375, -2.0455322265625, -0.422332763671875, 0.17224884033203125, -0.5972685813903809, 0.044826507568359375, 0.9130096435546875, -0.345672607421875, -0.19525146484375, -0.0283203125, 0.7841796875, 0.5462570190429688, -0.4054832458496094, -1.008056640625, -0.6656646728515625, 0.7491455078125, 1.1690673828125, -0.78887939453125, 0.8398551940917969, -0.43603515625, 0.2592430114746094, 0.019378662109375, -0.262176513671875, -0.10074996948242188, 0.804779052734375, 0.3750457763671875, 0.35530853271484375, -0.096771240234375, 0.2691984176635742, -1.028564453125, -0.6448745727539062, 0.7304229736328125, 0.762298583984375, 0.35137939453125, 0.5274810791015625, 0.2521209716796875, -0.38568115234375, -0.3959808349609375, 0.2279815673828125, 1.0946044921875, 1.2677764892578125, -1.24267578125, -0.34786224365234375, -0.1929779052734375, 0.9256591796875, 1.249786376953125, 0.96746826171875, -0.4784698486328125, -0.9700927734375, 0.3546905517578125, -0.7404880523681641, -0.14735031127929688, -0.3512115478515625, 1.05438232421875, 0.8051681518554688, -1.36492919921875, -0.3738861083984375, 0.5951766967773438, -0.6686477661132812, 0.959136962890625, 0.04581451416015625, -0.0277862548828125, -0.26814746856689453, -0.11968803405761719, -0.03408050537109375, 0.1308441162109375, 0.5341949462890625, -0.38739013671875, -0.3606414794921875, 0.940521240234375, -0.06810379028320312, 0.21311378479003906, -0.5644645690917969, -1.014373779296875, -0.383056640625, -0.79827880859375, -0.4217491149902344, 0.04310417175292969, 1.11907958984375, 0.22800636291503906, 0.88153076171875, -1.11419677734375, -0.2706146240234375, -0.7384567260742188, 0.375885009765625, 0.823211669921875, 0.08233642578125, -0.9849853515625, -0.26885986328125, -0.4040260314941406, 0.756591796875, -0.3760414123535156, 0.10881805419921875, -0.4472503662109375, 0.366668701171875, 0.0315399169921875, -0.13753318786621094, 1.31488037109375, 0.43482208251953125, -0.7556295394897461, 0.332916259765625, 2.636962890625, -0.3893089294433594, -0.26972198486328125, 0.31354522705078125, 0.854339599609375, 1.32696533203125, -0.14852380752563477, -1.034515380859375, 0.4171638488769531, -0.6925048828125, -0.802398681640625, 0.3285980224609375, 0.824951171875, 1.5225830078125, -0.4456138610839844, 0.10394287109375, -0.3275604248046875, -0.5516104698181152, -0.7001876831054688, 0.574432373046875, -0.2888298034667969, 0.9184112548828125, -2.1243896484375, -0.6380157470703125, 0.5127849578857422, 0.79376220703125, -0.3650856018066406, -0.39691162109375, 0.4528656005859375, 0.12070608139038086, -0.08072376251220703, -0.48651123046875, -0.5231475830078125, -0.6716499328613281, -0.2147674560546875, -1.07781982421875, 0.89410400390625, 0.953277587890625, 0.9031982421875, -0.0612640380859375, -0.629241943359375, 0.2060089111328125, -0.10080528259277344, -0.42156219482421875, 0.5833759307861328, -0.6414031982421875, 0.2812264561653137, -0.3218536376953125, 0.10888290405273438, 0.06401443481445312, -0.368804931640625, 0.19835054874420166, 0.7766342163085938, 0.7577056884765625, -0.828094482421875, 0.21732640266418457, -0.5753173828125, 0.1014862060546875, -1.00115966796875, 0.83831787109375, -0.809234619140625, 1.65234375, 1.11505126953125, 0.2985725402832031, 0.771484375, 0.12397360801696777, -0.768218994140625, 0.0620269775390625, 1.25946044921875, 1.734710693359375, -1.41314697265625, -0.07683563232421875, -1.12396240234375, 0.1465740203857422, 0.611358642578125, -0.19327163696289062, 0.6785888671875, -0.7108306884765625, -1.4013671875, -0.6292266845703125, -1.13470458984375, 0.3205232620239258, 0.5452661514282227, -0.01465606689453125, -0.23199200630187988, -1.358154296875, 0.01781463623046875, 1.2901153564453125, -0.723541259765625, 0.37496137619018555, -0.59954833984375, -0.248199462890625, 0.7203527092933655, 0.0584716796875, 0.14244842529296875, 0.524322509765625, -0.1993865966796875, -0.617889404296875, 1.0106964111328125, 0.6040191650390625, 0.028900146484375, 1.755126953125, -1.3406982421875, 1.068359375, 0.751678466796875, -0.3017578125, -0.22946929931640625, 0.9637374877929688, -0.2972679138183594, 0.462432861328125, 0.6295013427734375, -0.540008544921875, -0.058868408203125, -0.021953582763671875, -0.871429443359375, 1.5625, -0.3528900146484375, -0.77471923828125, 0.534271240234375, -0.5251922607421875, -0.24059295654296875, -0.3474922180175781, -0.71002197265625, 0.2471160888671875, -1.46563720703125, -1.3944091796875, -0.7694549560546875, 0.48772430419921875, 0.87030029296875, -1.8143310546875, 0.0008133649826049805, -1.518310546875, -0.18198776245117188, 0.08189773559570312, 0.407012939453125, -0.06886053085327148, 0.621124267578125, -0.6324844360351562, 1.052978515625, 0.8404541015625, -0.8108139038085938, -0.1883535385131836, 0.899017333984375, 0.6139926910400391, 0.042011260986328125, 1.6446533203125, 0.6927337646484375, 0.4292144775390625, -0.140594482421875, 0.88494873046875, 1.4794921875, 0.39487457275390625, 0.339752197265625, -1.27685546875, -0.4326133728027344, 0.796417236328125, -0.85076904296875, -0.1325969696044922, 0.21215057373046875, 0.94915771484375, -0.19472503662109375, -0.9775390625, 0.96990966796875, 0.35935211181640625, 0.10765838623046875, 0.470367431640625, -0.4689321517944336, -0.269134521484375, -0.026787757873535156, 0.836090087890625, 0.5208282470703125, 0.12993621826171875, 0.04283905029296875, 0.11869406700134277, 0.770660400390625, 1.43798828125, 0.562286376953125, 0.47907257080078125, 0.14968490600585938, -0.2415323257446289, -0.19699859619140625, 0.22707366943359375, -0.83294677734375, 0.01387786865234375, -1.08575439453125, 0.10925102233886719, -0.66656494140625, -0.6591415405273438, -0.45526885986328125, -0.47076416015625, -1.1279296875, 0.03798103332519531, 0.8863067626953125, 0.03873252868652344, 0.05616474151611328, -0.33649444580078125, 0.2491779327392578, -0.91632080078125, 0.66522216796875, -0.3931427001953125, 0.941009521484375, -0.721954345703125, 0.39296722412109375, -0.3455085754394531, 0.5110855102539062, 0.533782958984375, -0.89007568359375, 0.39089202880859375, 0.36046600341796875, -0.544677734375, -0.658050537109375, -0.20740699768066406, 0.6781158447265625, 1.5621337890625, 0.312164306640625, -1.2322998046875, -1.53216552734375, 0.16708683967590332, 0.428955078125, -0.11752700805664062, -0.4512939453125, -1.25982666015625, -0.744903564453125, 0.753021240234375, 0.3157806396484375, -0.22103500366210938, -1.32391357421875, -0.36868858337402344, -0.815643310546875, 0.1490936279296875, -0.55413818359375, -1.406494140625, 1.0885467529296875, -0.82318115234375, -0.18204498291015625, -1.4202880859375, 0.49559783935546875, -0.8932037353515625, -1.17022705078125, -1.027435302734375, 0.05148124694824219, -0.1896343231201172, 0.008195877075195312, 0.0651557445526123, 0.05808258056640625, 0.00994110107421875, 0.42176055908203125, 0.15546417236328125, 0.00644683837890625, -0.362152099609375, -0.8431396484375, -1.2608642578125, 0.2728309631347656, 0.537017822265625, 0.6863174438476562, 1.32684326171875, 0.3628692626953125, 1.95068359375, 0.11780166625976562, 0.160064697265625, -0.07209396362304688, -0.1861896514892578, -0.5300827026367188, -0.369537353515625, -1.24200439453125, -1.4501953125, -0.1416797637939453], [0.2451205849647522, 2.1424996852874756, -2.6274893283843994, -0.3248721957206726, 1.016411304473877, 0.16508440673351288, 1.4288442134857178, 0.2182430624961853, -0.11728992313146591, -0.6535104513168335, -0.7528513073921204, 0.04963482543826103, 0.5556259155273438, -0.1814650148153305, 0.4695238471031189, -0.1897886097431183, 0.22882544994354248, 0.18388527631759644, 0.39763540029525757, 1.1492186784744263, -0.7679171562194824, -0.9841697216033936, -0.4182060956954956, 0.47839537262916565, 0.12116555869579315, -0.05535686016082764, -1.4259592294692993, -0.3811067044734955, -1.102442741394043, -0.004983913153409958, 1.8314403295516968, -0.5871971249580383, 1.2366982698440552, 0.2584581673145294, -1.52310311794281, 0.2678028643131256, 1.0495740175247192, 0.26590415835380554, -0.5382739305496216, -0.9064152240753174, 1.4035755395889282, 1.6644898653030396, -0.698729932308197, -0.7360104918479919, -0.4643881022930145, 0.8024068474769592, 0.5751084685325623, -0.9996505379676819, -0.16342712938785553, -0.044404711574316025, 0.8875340223312378, -0.03177677467465401, 0.2677071690559387, 1.9329837560653687, 0.6250057816505432, -1.2041106224060059, 0.5137226581573486, 0.6499719619750977, -0.10174516588449478, 0.5965396165847778, 1.4621782302856445, -0.396660178899765, 1.174968957901001, 0.26195958256721497, 0.6329618692398071, -0.8428918719291687, 0.5643577575683594, 0.1043301671743393, 0.8261457681655884, -0.08797022700309753, 0.6708210706710815, -0.24765895307064056, -0.25377127528190613, 0.5204806923866272, -1.375706672668457, 0.26977527141571045, 0.2941499948501587, 0.27903228998184204, 0.06195454299449921, -0.5179508328437805, -0.3615959584712982, 0.17096836864948273, 0.8239087462425232, 0.19796352088451385, -0.023241247981786728, 0.17790213227272034, 0.5089239478111267, -0.48918992280960083, 0.05603119730949402, 1.5180230140686035, 0.023958081379532814, 0.7226377725601196, 0.8877363801002502, 0.30330348014831543, -0.44378286600112915, -0.625904381275177, -0.36432546377182007, -1.3387032747268677, -0.9428396821022034, -0.6351845860481262, -0.25441670417785645, -0.33771803975105286, -0.05679884925484657, 0.886608898639679, 0.13876965641975403, 1.7357388734817505, -0.13635776937007904, -0.40641963481903076, 0.4102843701839447, -0.1408405750989914, -0.8325783014297485, 1.1819556951522827, -0.05875144898891449, -1.4996185302734375, -0.7573006749153137, 1.2910388708114624, 1.2039783000946045, 0.7086601257324219, 0.38170892000198364, 0.9299166202545166, -0.45681488513946533, 0.29693207144737244, -0.2695257067680359, -0.00016400031745433807, 0.6576193571090698, 0.35024282336235046, -0.4667696952819824, -0.2256314903497696, 0.4268767237663269, -0.03374599665403366, 1.1694912910461426, -0.6309123039245605, -0.08620908856391907, 0.32310813665390015, -0.4842599928379059, 0.9472708702087402, -0.32105863094329834, -0.8343518972396851, 0.42633575201034546, 1.167733907699585, 0.5703425407409668, -0.04879198595881462, 0.022398510947823524, -0.9738152623176575, 0.3016141951084137, -0.5441774129867554, 0.421538770198822, -0.7715260982513428, -0.545060396194458, 0.17271190881729126, -1.1831461191177368, 0.3990756869316101, -0.14769183099269867, 0.8221826553344727, 0.669230580329895, -0.6651274561882019, 0.6009661555290222, -0.8019708395004272, 0.6237339973449707, 0.21450652182102203, -0.10524830967187881, 0.1574903130531311, -0.9352261424064636, 0.426543653011322, 0.08067343384027481, -0.7709764838218689, 0.6320421695709229, 0.38775086402893066, -0.4518110156059265, 1.0363367795944214, 0.008644934743642807, -0.6734432578086853, -0.6086763143539429, 0.5116948485374451, 0.3697988986968994, 0.02301117032766342, 0.9925797581672668, 0.4837372303009033, -0.8181156516075134, -0.04595308378338814, 1.0594590902328491, -0.21254116296768188, 0.8552713394165039, -0.3367031216621399, 0.0026040617376565933, -0.042373742908239365, -0.27456599473953247, -0.4480721056461334, -0.1307390183210373, -0.7339085340499878, -0.36095917224884033, -0.3705114424228668, -1.445427656173706, -0.03868135064840317, -0.5320994257926941, 0.11157608777284622, 1.0505926609039307, -0.6395388245582581, -0.5305230021476746, 0.5537993907928467, 0.4402351975440979, -0.22660179436206818, -0.7948305606842041, 0.2677280008792877, -0.7641414999961853, 0.8688300251960754, -0.6756144762039185, 0.29906800389289856, -0.6600793600082397, 0.40094509720802307, 1.4281755685806274, -1.3704156875610352, -1.1998004913330078, 0.7401339411735535, 0.5879595875740051, -1.3720108270645142, 0.4551801383495331, -0.359421968460083, -0.5603552460670471, -0.6799940466880798, -0.7434868812561035, 0.4058496356010437, 0.45522722601890564, 0.20624341070652008, 0.7109671235084534, -0.7375436425209045, 0.08218143880367279, -0.7374924421310425, 0.4267079532146454, -0.07185011357069016, -1.1960138082504272, -1.5335935354232788, 0.13706836104393005, 0.6897484064102173, -1.6981602907180786, -0.2494317889213562, -0.2709134519100189, 0.20670464634895325, -0.17976485192775726, 1.2859779596328735, -0.016690675169229507, 0.7038553357124329, -0.7296261191368103, -0.12148934602737427, -0.691749095916748, -0.15089155733585358, 1.2380387783050537, -0.5760256052017212, 0.16461512446403503, 0.8528014421463013, 0.46250930428504944, 0.0338362455368042, 0.9739739298820496, -0.8707212209701538, -0.22615863382816315, -0.2459058314561844, -0.538375973701477, 0.37850162386894226, -0.6257159113883972, 1.2913928031921387, 0.5882470011711121, -0.6851627230644226, 0.5589696764945984, 0.03485559672117233, 0.21334803104400635, -0.07070942968130112, -0.457411527633667, -0.2977593243122101, -0.10088372975587845, -0.5588856935501099, 0.13799411058425903, 0.4094865024089813, -0.16723036766052246, 0.4362056255340576, -0.5841803550720215, -0.7364968657493591, 0.24682332575321198, 1.0304603576660156, -1.022849678993225, 0.7633819580078125, -0.49858608841896057, -0.876639723777771, 0.11156124621629715, 0.1666799783706665, 0.46179676055908203, 0.2963188886642456, 0.19664184749126434, 0.3645358979701996, 0.788276731967926, -0.028521912172436714, 0.27718812227249146, 0.0752982422709465, -0.08004094660282135, 0.014704076573252678, 1.0981096029281616, -0.2548394501209259, 1.4376204013824463, -0.08931746333837509, -0.43203791975975037, 0.1075286716222763, 0.3195422887802124, 1.2799824476242065, 0.45703259110450745, 1.0587157011032104, -0.8076530694961548, -0.9312868714332581, 0.07161720097064972, -0.1100163608789444, -1.0728557109832764, -0.898577868938446, -0.27145516872406006, -0.7106274962425232, -0.2659202218055725, -0.04765111953020096, -0.6645505428314209, 0.2024029642343521, 0.46900495886802673, 0.7710403800010681, -0.04573286324739456, -0.058970220386981964, -1.1794451475143433, -0.11039722710847855, -0.5654233694076538, -0.3684151768684387, 0.7499628663063049, 1.6050969362258911, -1.6252292394638062, 0.10448185354471207, -0.6247025728225708, -1.1328474283218384, 0.022259056568145752, -0.23715811967849731, 0.6586513519287109, -0.7294020056724548, -0.5214626789093018, -0.48634448647499084, 0.6362417936325073, 0.2031930536031723, 0.02123708464205265, -0.6273486614227295, 1.2096630334854126, 0.8161104917526245, 0.3377630114555359, -0.7292581796646118, -0.048887934535741806, -0.7645817995071411, -0.3717026710510254, 0.04640014469623566, 0.6712254881858826, 0.10618893802165985, -0.6789158582687378, -1.1307802200317383, -0.26834696531295776, -0.5451157689094543, -0.261341392993927, 1.1938380002975464, 0.4186183512210846, 0.8516448140144348, -0.4170108139514923, -0.40668368339538574, 0.9122792482376099, -0.2931278645992279, 0.47081825137138367, -0.8123435974121094, 0.4005015790462494, 0.8222105503082275, 1.4377436637878418, -0.23957215249538422, 0.15458624064922333, 0.24833591282367706, -0.8440086841583252, 0.13269975781440735, -0.3453908860683441, 0.42930540442466736, 0.3747422695159912, -0.9302934408187866, 0.010628332383930683, -0.08123400062322617, -0.23811973631381989, -0.2140960544347763, 0.40627729892730713, -0.5515171885490417, -0.3370368480682373, -0.014166513457894325, 0.8447412848472595, 0.6163675785064697, -1.0904008150100708, -0.7428823113441467, -0.3542947769165039, 0.7298922538757324, -0.8438065648078918, 0.7339951992034912, -0.30358728766441345, 0.059303514659404755, 0.6214379668235779, -1.5543030500411987, 0.7720060348510742, -0.2547863721847534, 0.0030611716210842133, 1.303767442703247, -0.978035032749176, -0.47429776191711426, -0.3868093192577362, 0.3212612271308899, 0.7981915473937988, 1.485680341720581, 0.6446461081504822, 0.002630210015922785, -0.5179829001426697, 0.3941253125667572, 0.3340788185596466, 1.2863664627075195, -0.3812316954135895, -0.5264587998390198, 0.20973306894302368, -0.22526979446411133, -0.27103734016418457, -1.0021458864212036, 0.3653617203235626, 0.028543323278427124, 0.17437322437763214, -0.10441267490386963, 0.7329773306846619, -0.3333286643028259, 1.3693501949310303, 0.1059480607509613, 0.08155695348978043, 0.005412741098552942, -0.053991060703992844, -0.8077895045280457, 0.4237391948699951, 0.5935336947441101, -0.6434921622276306, 0.08575288951396942, -0.005776687990874052, 0.04068600758910179, 1.0743420124053955, -0.31210973858833313, 0.03860877454280853, 0.5829434394836426, 0.6708653569221497, -0.6329347491264343, 0.04163549095392227, 0.3834250569343567, 0.944480299949646, 0.6215963959693909, 1.1604163646697998, 0.8046876192092896, -1.1380493640899658, 0.9489468932151794, -0.22980408370494843, 0.38625970482826233, 0.9022119045257568, 0.006160931661725044, 0.9767817854881287, -1.3993799686431885, -0.08394353091716766, 0.6688321232795715, 0.009644518606364727, 0.5976816415786743, 0.1949053257703781, -0.37003788352012634, -0.8965759873390198, 0.2691977918148041, 0.4662185311317444, -0.32942676544189453, 0.34332355856895447, -0.026847831904888153, 0.8816636800765991, 1.3325773477554321, -0.8798895478248596, 0.40344300866127014, -0.8129341006278992, -0.8593025207519531, -0.29304033517837524, -0.015778884291648865, 0.9291432499885559, 0.6389124989509583, 0.7856196761131287, -0.044211819767951965, -0.1305670291185379, -0.468888521194458, 0.42304015159606934, -0.7865851521492004, 1.0109124183654785, -0.4620761275291443, -0.04908904805779457, -0.7817118763923645, -0.29245999455451965, -0.3260609209537506, -0.8836553692817688, -0.4745550751686096, -0.5793123841285706, -1.0562602281570435, -0.7811719179153442, -0.19740097224712372, 0.4698546528816223, 0.11167819052934647, 0.10988118499517441, 0.7359439134597778, 0.13459311425685883, 0.5695182681083679, -0.5548996329307556, 0.44212281703948975, 0.36758488416671753, 0.21702419221401215, 0.0020364364609122276, -0.7378973364830017, -1.0521800518035889, 0.6202231049537659, 0.25414735078811646, -0.17114980518817902, 0.21823987364768982, 0.328106552362442, 1.196117639541626, -0.6461269855499268, 0.01911076530814171, 0.850642740726471, -0.08763720095157623, 1.1704189777374268, 0.25602325797080994, -0.49802473187446594, -0.6253807544708252, 0.10048703849315643, -1.6671143770217896, 1.0136408805847168, -0.17491386830806732, 0.08504144847393036, 0.13739947974681854, 0.5402047038078308, 0.27986329793930054, 0.17872563004493713, -0.11319325864315033, 0.48754793405532837, -0.1581277698278427, -0.17851431667804718, -0.6036974191665649, 0.603172242641449, 0.5249404311180115, -0.32459884881973267, -1.0694916248321533, -0.048405684530735016, -0.17882344126701355, 0.13007238507270813, -0.26759710907936096, 0.6900174021720886, -0.20234468579292297, -0.056113045662641525, 0.22451040148735046, -0.5597620010375977, -0.18390913307666779, -0.047191768884658813, -0.45388564467430115, 1.114603042602539, 0.7807111740112305, -0.09308074414730072, -0.49066057801246643, 1.4234461784362793, -1.0250946283340454, -0.4669322073459625, -0.5032103061676025, -0.5998652577400208, 0.8648284673690796, 0.600296676158905, 0.3611994683742523, 1.5433555841445923, -0.3031812012195587, -0.40417855978012085, -0.8406245708465576, -0.2092389017343521, 0.7014614939689636, -0.9724640250205994, -1.1759459972381592, -0.4820546507835388, -0.6518996357917786, -0.18123291432857513, -0.2452443689107895, 0.5987027287483215, -0.439044326543808, -1.0402112007141113, -0.19761531054973602, 0.07719232887029648, 1.321081519126892, -0.46208351850509644, 0.4736877679824829, 0.6205182075500488, -0.9466220736503601, 0.3461931645870209, -0.3253883719444275, -1.275346279144287, -0.019319403916597366, -1.0954264402389526, 0.4119347929954529, -0.12039031088352203, 0.17664700746536255, -0.043208345770835876, 1.4725301265716553, -1.2583997249603271, -0.9786669611930847, -1.2955496311187744, -0.235224187374115, 1.161975383758545, 0.46853873133659363, -2.1301939487457275, 1.507543683052063, -0.1678370237350464, -0.19231468439102173, -0.28243330121040344, 0.18745297193527222, -0.3120092749595642, 0.07394534349441528, -0.5470554232597351, 0.33820900321006775, 0.358725905418396, 1.2689275741577148, 0.13196629285812378, 0.977530837059021, -0.1342899352312088, 1.1990243196487427, -0.7606555819511414, -0.35416266322135925, -0.017582902684807777, 0.7963110208511353, -0.27799543738365173, -0.5080443024635315, -0.22157177329063416, -0.8954156041145325, -0.571792483329773, 0.12766550481319427, 0.8762317895889282, -0.9667516946792603, 0.5712432861328125, -0.21012097597122192, -0.4592445492744446, -0.7444437742233276, 0.3576803207397461, -0.365202933549881, -0.316621869802475, 0.4415229856967926, -0.6198810935020447, 0.2503405809402466, -0.738733172416687, 0.4512275457382202, 1.0510828495025635, 0.7170733213424683, -0.9571365118026733, 0.1735362410545349, 0.8832347393035889, 0.33234137296676636, -0.7038701176643372, 1.1673030853271484, 0.7855843901634216, -0.6881502270698547, -0.4968068301677704, -0.29880309104919434, -0.40230223536491394, 0.6286441683769226, -0.1163174957036972, -0.4508097767829895, -0.7214909195899963, 0.3623163402080536, 0.26932552456855774, -1.058412790298462, 0.7627951502799988, 0.19564370810985565, -0.008647209964692593, -0.6662623286247253, 1.1368606090545654, -0.9165744781494141, -1.114192247390747, 1.3347665071487427, 0.45195460319519043, -1.0225108861923218, 0.409795343875885, -0.12049481272697449, -0.44149497151374817, 0.10645575076341629, 0.6319101452827454, 0.6329882144927979, -0.9305249452590942, -0.059503912925720215, 1.2796193361282349, -0.3706609904766083, -0.24921654164791107, -0.36023828387260437, -1.6774096488952637, -0.38760384917259216, -1.3394865989685059, -0.9076020121574402, 0.6530470848083496, -0.9241794943809509, -1.0388437509536743, 0.6900466084480286, 0.46880611777305603, -0.6611096858978271, -0.396074116230011, -0.16571049392223358, 0.2838437855243683, -0.5963561534881592, 0.9415751099586487, -0.2550235390663147, 1.553926706314087, -0.25267860293388367, -0.4261779189109802, -0.09974349290132523, -0.5291422009468079, 1.0781515836715698, 0.33270248770713806, -0.671058714389801, -0.6750162839889526, 0.4965921640396118, -0.6211853623390198, -0.7053831219673157, 0.4777139127254486, 0.34664928913116455, 0.513073205947876, -0.37732186913490295, -0.6679869890213013, 0.31874072551727295, 0.4120444059371948, 0.5687770247459412, -0.7452024221420288, -1.1896228790283203, -0.6172200441360474, 0.767533004283905, -0.7206956744194031, 0.2758291959762573, 0.511120080947876, 0.9011933207511902, 0.40235111117362976, -1.1622716188430786, -0.2876209616661072, -0.8174618482589722, 0.675383448600769, 0.14850063621997833, -0.5248932242393494, 0.10804177075624466, 0.4466976821422577, 0.1195136085152626, -0.8714914917945862, -0.6517122387886047, 0.5259556770324707, 0.1788363754749298, 0.018493952229619026, -0.7533516883850098, -1.0585389137268066, -0.8570071458816528, -0.00958029180765152, 0.14638842642307281, 0.7999326586723328, 0.5599537491798401, 0.41581496596336365, -1.1938332319259644, 0.8374931216239929, 0.9103052616119385, -0.037178389728069305, -0.3801790773868561, 0.484154611825943, 0.38229772448539734, -0.19141824543476105, -0.3166431188583374, -0.48131734132766724, 0.729239284992218, -0.8656796813011169, 0.9569892287254333, -0.7597128748893738, -0.6477221250534058, -0.07809417694807053], [-0.20768243074417114, 2.3101308345794678, -3.185514450073242, 0.4717504680156708, 0.9657737016677856, 0.1849443018436432, 1.2111748456954956, 0.39592570066452026, 0.1234307587146759, -0.7341877222061157, -0.8449513912200928, 0.134612575173378, 0.5829514861106873, 0.4508697986602783, -0.35329669713974, 0.5629965662956238, 0.22052887082099915, -0.1855935901403427, 0.6469832062721252, 1.1688381433486938, 0.0107234762981534, -1.2109527587890625, -0.8330621123313904, 0.47743576765060425, 0.08439968526363373, -0.12148521095514297, -1.5835776329040527, -0.05935022607445717, -0.7737670540809631, -0.575035572052002, 1.6300866603851318, -0.04917145520448685, 0.807000458240509, 0.5674382448196411, -1.1827609539031982, -0.08112850040197372, 0.43454110622406006, 0.2835920751094818, -0.0924365371465683, -0.7863932847976685, 1.1105698347091675, 0.8891416788101196, 0.25797349214553833, -0.9576922059059143, -0.4490998089313507, 0.8181922435760498, 1.5413479804992676, -0.9982461929321289, 0.5591009259223938, -0.6974519491195679, 0.6807037591934204, -0.3889677822589874, 0.4007270932197571, 1.6287732124328613, 0.8504615426063538, -1.1451112031936646, 0.417804092168808, 0.9971968531608582, -0.47931453585624695, 0.12334761023521423, 1.4058518409729004, 0.07566583156585693, 0.662880003452301, 0.19911742210388184, 0.2512172758579254, -0.43898555636405945, 0.4150209426879883, 0.4936787784099579, 1.258357048034668, -0.2048136591911316, 0.7558321952819824, 0.8779430985450745, -0.522316575050354, 0.7041066288948059, -0.8497548699378967, 0.4494154155254364, 0.5974613428115845, 0.2933194041252136, -0.4782960116863251, 0.3506065011024475, -0.21591144800186157, 0.1592463105916977, 0.5953978896141052, 0.6408848166465759, -0.09454882889986038, 0.16448530554771423, 0.14468304812908173, -0.28015533089637756, -0.5571700930595398, 1.4064552783966064, -0.3013100028038025, 0.6794266104698181, 1.1090329885482788, 0.07584326714277267, -0.06263846158981323, -0.7701289653778076, 0.06263191252946854, -1.11114501953125, -0.7304467558860779, -0.6807560920715332, -0.18173255026340485, -0.26952415704727173, 0.5360965132713318, 0.848970353603363, -0.0038039139471948147, 1.220339298248291, -0.14530187845230103, -0.8845839500427246, 0.6996681690216064, -0.06484534591436386, -0.32693567872047424, 1.0474574565887451, -0.1784582883119583, -1.0882840156555176, -0.4245544373989105, 1.2849689722061157, 0.3601817190647125, 0.4013453722000122, 1.1876327991485596, 0.6346749663352966, -0.5117784738540649, -0.5360167026519775, -0.4728465676307678, 0.09931732714176178, 1.4596667289733887, 0.5766144394874573, -0.4587586224079132, -0.384315550327301, 0.6862569451332092, 0.072083979845047, 1.2924357652664185, -0.2075187712907791, -0.41904428601264954, 0.3265936076641083, -0.06466539949178696, 1.5568692684173584, -0.5518779754638672, -0.6316336393356323, 0.03416989743709564, 0.9378809928894043, 0.11207804828882217, -0.06841826438903809, -0.1509115844964981, -0.6048864722251892, 0.1462918370962143, -0.394160658121109, -0.2811185419559479, -0.35720258951187134, -0.3423667252063751, 1.1099777221679688, -1.383908987045288, 0.8753125071525574, -0.02667730487883091, 1.1645742654800415, 0.9111150503158569, -0.6066796779632568, 0.3049444556236267, -0.7822296023368835, 0.6304985880851746, 0.4095730185508728, 0.4084547162055969, -0.06499070674180984, 0.04010983183979988, 0.6854311227798462, 0.12730292975902557, -0.596508264541626, 0.09135010093450546, 0.4647388756275177, -0.4606020152568817, 1.1250779628753662, -0.12573300302028656, -0.9331926107406616, -0.7495956420898438, 0.4125092029571533, 0.266193687915802, -0.8778169751167297, 0.7460975050926208, -0.038427338004112244, -1.364904522895813, -0.4461105763912201, 0.7011762261390686, -0.8073267936706543, 0.4306614398956299, 0.15410646796226501, 0.3912052810192108, -0.02348635159432888, -0.09274344146251678, -0.2685233950614929, -0.6681782007217407, -0.6697277426719666, -0.5372729301452637, -0.35095104575157166, -1.1849024295806885, -0.010738356038928032, -0.4865763783454895, -0.933281421661377, 0.9559447169303894, -0.2558538615703583, -0.9669068455696106, 0.49561282992362976, 0.637479305267334, -0.16557426750659943, -1.2463090419769287, -0.7874814867973328, -0.8660669326782227, 1.358839511871338, -0.9507570266723633, 0.27850306034088135, -1.2904499769210815, 0.5231143236160278, 1.2159944772720337, -1.0591756105422974, -1.0788719654083252, 0.4363052248954773, 0.7772994041442871, -1.5077749490737915, 0.9088761806488037, -0.04777619242668152, -0.025122500956058502, -0.5457240343093872, -0.348238468170166, 0.5078303813934326, 0.5579641461372375, 0.06440474838018417, 0.32375016808509827, -0.7031842470169067, -0.4613845944404602, -1.0599490404129028, 0.0785151794552803, -0.011012737639248371, -0.8150377869606018, -0.94190514087677, 0.37282344698905945, 0.4287548363208771, -1.030875325202942, 0.26098012924194336, -0.4849129617214203, 0.08407298475503922, 0.3286360502243042, 1.4352211952209473, 0.4748488962650299, 1.3674280643463135, -0.6716287136077881, -0.18020260334014893, -0.6905484795570374, -0.47291114926338196, 0.7166922688484192, -0.2630554139614105, -0.2123170644044876, 0.9554830193519592, 0.8365892767906189, -0.10281655192375183, 0.4272936284542084, -0.5042575597763062, 0.15116439759731293, -0.6672375798225403, -0.10869467258453369, 0.19662165641784668, -0.16396157443523407, 1.4677873849868774, 1.0674570798873901, -0.8253848552703857, 0.4029124975204468, -0.19712385535240173, 0.6334056258201599, 0.19910836219787598, -0.5256562829017639, -0.6358465552330017, -0.4475783705711365, -0.18366000056266785, -0.15363645553588867, -0.17984862625598907, 0.14610424637794495, 0.8800390958786011, -0.7669824361801147, -1.187900424003601, 0.305793821811676, 0.7144328951835632, -0.5792109370231628, 0.9145345091819763, -1.0857049226760864, -1.5106840133666992, -0.4826112389564514, 0.3985803723335266, 0.6371607184410095, -0.009283759631216526, -0.1464795172214508, 0.6774094104766846, 0.3540806174278259, 0.08974789828062057, 0.3494521677494049, -0.47151440382003784, 0.908488392829895, -0.030885495245456696, 0.20102350413799286, -0.18973304331302643, 0.8640716671943665, -0.2784923315048218, -1.004568099975586, 0.06036906689405441, 0.5378854870796204, 1.4724674224853516, 0.9170824289321899, 1.4193065166473389, -0.8946982026100159, -0.31446072459220886, -0.38284754753112793, -0.2568015456199646, -0.9082004427909851, -0.7104752659797668, -0.5286293625831604, -0.9124972820281982, -0.908197283744812, -0.11601623892784119, -0.46688467264175415, 0.05391767993569374, 0.2672100365161896, 0.5949728488922119, 0.9925998449325562, -0.4499436914920807, -1.1634902954101562, -0.31390324234962463, -0.1833297312259674, 0.06694653630256653, 0.695288896560669, 1.580001950263977, -1.6683987379074097, -0.5820176005363464, -0.3641199767589569, -0.46353840827941895, 0.10853970795869827, 0.5146589875221252, 0.20310766994953156, -1.4516663551330566, -0.39459481835365295, -0.1835561841726303, 0.7486110329627991, 0.0636935830116272, -0.542256236076355, -0.5633163452148438, 0.49524563550949097, 0.7327383756637573, 0.31929221749305725, -0.20490780472755432, 0.11017931997776031, -1.1173344850540161, -0.5733712315559387, -0.43717020750045776, 0.3519302010536194, 0.3987792432308197, -1.11647367477417, -1.4071861505508423, -0.5339532494544983, -0.17357923090457916, -0.5038644671440125, 0.8688972592353821, 0.6962172985076904, 1.1250113248825073, 0.226648211479187, -0.15375147759914398, 1.1463202238082886, -0.01047354843467474, 0.5249196290969849, -1.2247469425201416, 0.7677378058433533, 0.6043104529380798, 1.0363858938217163, 0.3993384540081024, 0.020144281908869743, 0.49748942255973816, -1.437050223350525, -0.17807060480117798, 0.14266976714134216, 0.17362825572490692, -0.23553146421909332, -0.3699333965778351, 0.04631703719496727, -0.4633767008781433, 0.059219732880592346, -0.7436240911483765, -0.21119625866413116, 0.2162407636642456, -0.27586543560028076, -0.2717221677303314, 0.8611515760421753, 0.8876096606254578, -0.4736986756324768, -0.06318692117929459, -0.46106693148612976, 0.7716407179832458, -0.32180505990982056, 0.48522838950157166, -0.19077667593955994, 0.6578643321990967, 1.002501368522644, -1.089505910873413, -0.04324251413345337, -0.8025928735733032, 0.4703330099582672, 1.2263668775558472, -1.0312542915344238, -0.5204110145568848, -0.20181585848331451, 0.4450434148311615, 0.4827805459499359, 0.8676442503929138, 0.47957584261894226, 0.3323642313480377, -0.24315474927425385, 0.1596670299768448, 0.6022920608520508, 1.2828401327133179, -0.03718459606170654, -0.20199377834796906, 0.9047706127166748, 0.2998887598514557, 0.45954716205596924, -0.9488168954849243, 0.3656318783760071, 0.43342268466949463, -0.1381024718284607, -0.42789238691329956, 0.4490148723125458, -0.5285162925720215, 1.5556528568267822, 0.7657560110092163, 0.4234427511692047, 0.41909313201904297, 0.20640721917152405, -1.3225599527359009, 0.19521591067314148, 0.15337920188903809, -0.9568545818328857, -0.27818024158477783, 0.5256687998771667, -0.061260223388671875, 0.9146307706832886, -0.07626573741436005, -0.050591617822647095, 0.5319356322288513, 0.4440271854400635, 0.28739896416664124, -0.16342733800411224, 0.5774658918380737, 1.100391149520874, 0.6912356615066528, 0.9380454421043396, -0.11531383544206619, -0.3123528063297272, 0.7874038219451904, -0.6932175159454346, 0.660686194896698, 1.5411279201507568, 0.5607628226280212, 1.1826748847961426, -1.4930446147918701, -0.2531262934207916, 0.8194770812988281, 0.03227562457323074, 0.5662840604782104, 0.4735746383666992, -0.06488804519176483, -0.5434108972549438, 0.18240809440612793, 0.47718414664268494, -0.2990444600582123, 0.3901427984237671, -0.7520374655723572, 0.5622230768203735, 0.7794368863105774, -0.8863511681556702, 0.21792614459991455, -0.8173890709877014, -0.07429418712854385, -0.2869378328323364, -0.3988064229488373, 0.7659252285957336, 0.48193052411079407, 0.7988928556442261, -0.24629609286785126, -0.5224274396896362, -0.37795430421829224, 0.619792640209198, -0.9339964389801025, 0.15820379555225372, -0.5953646302223206, 0.028903961181640625, -0.8104297518730164, -0.7556929588317871, -0.31166210770606995, -0.24601681530475616, -0.5708314776420593, -0.5072484612464905, -0.7356445789337158, -0.6770179271697998, 0.2947961091995239, 0.5484132766723633, 0.977175235748291, -0.18004551529884338, 0.30466923117637634, 0.12034823000431061, 0.06912726163864136, -0.6509932279586792, 0.09818707406520844, 0.5301637649536133, 0.12069970369338989, -0.11277875304222107, -0.4153652489185333, -1.1336637735366821, 0.5289737582206726, 0.2129317820072174, -0.5088916420936584, -0.15672484040260315, 0.49203798174858093, 1.3356165885925293, -0.759626030921936, -0.9624446630477905, 0.7784842252731323, -0.480663925409317, 1.0075949430465698, 0.7395954728126526, -0.7347813248634338, -1.1028165817260742, -0.09094905853271484, -1.8564095497131348, 1.456937313079834, -0.09908074140548706, -0.2713819444179535, 0.8427351117134094, 0.6016095876693726, 0.7032598257064819, 0.8354014754295349, -0.38819974660873413, 0.5621472597122192, 0.34970852732658386, 0.025585196912288666, -0.5097354054450989, 0.09362950176000595, 0.6440622210502625, -0.14207270741462708, -1.2794946432113647, 0.566590428352356, 0.316489040851593, -0.08435263484716415, -0.7744937539100647, 0.5871180295944214, -0.12070365250110626, 0.7111793756484985, 0.1633448749780655, -0.8712503910064697, 0.056861381977796555, -0.9120305180549622, 0.3193000555038452, 0.4736447036266327, 0.7564107775688171, 0.7099441885948181, -0.5822069048881531, 0.698885977268219, -1.010226845741272, 0.39473122358322144, -0.0016981243388727307, -0.2913621664047241, 0.7715585827827454, 0.5517650842666626, 0.4370814859867096, 1.332150936126709, 0.07221279293298721, -0.4659024178981781, -0.6163229942321777, -0.7140617966651917, 1.0681054592132568, -1.0170758962631226, -0.5049782395362854, -0.8769936561584473, -0.6374093890190125, -0.7218499183654785, 0.917147696018219, 0.5517371892929077, -0.6631346344947815, -1.267857551574707, -0.3425533175468445, 0.12141342461109161, 0.950264036655426, -0.5567725300788879, 0.8366947770118713, 0.12273894250392914, -0.8908316493034363, -0.16101160645484924, -0.2906864881515503, -1.5802851915359497, -0.14639145135879517, -1.0012612342834473, 0.3421086370944977, 0.1139807179570198, -0.2504434585571289, 0.4223300814628601, 1.2730644941329956, -1.6812630891799927, -1.347800850868225, -1.6752856969833374, -0.567408561706543, 1.0192270278930664, 0.6971792578697205, -1.632062315940857, 0.841582715511322, -0.5357885360717773, -0.4672086238861084, -0.20852907001972198, 0.28484615683555603, -0.6021811366081238, -0.0018458687700331211, -0.829626739025116, -0.3132413327693939, 0.24603864550590515, 1.37187659740448, 0.4429810345172882, 0.9957293272018433, 0.3057388663291931, 1.471909523010254, -0.5889869332313538, -0.8430643081665039, 0.1998884379863739, 0.9980692267417908, -0.8992065191268921, -0.5488516092300415, 0.08485529571771622, -0.8438924551010132, -0.8511198163032532, 0.28086137771606445, 0.9791877865791321, -0.6638563871383667, -0.04422765597701073, 0.03551115840673447, -0.38340049982070923, -0.8345752954483032, 0.7914388179779053, 0.18738240003585815, -0.6855194568634033, -0.15137559175491333, -0.670642614364624, 0.04141809046268463, -1.380714774131775, 0.35471034049987793, 0.7498022317886353, 0.6724075078964233, -0.5130926370620728, 0.07351226359605789, 0.5670457482337952, 0.7058098912239075, -0.7040214538574219, 1.4288134574890137, 0.0548291951417923, -0.3404596149921417, -0.7080442905426025, 0.11409526318311691, -0.4389934837818146, 0.5405874252319336, -0.1624995470046997, -0.03345131129026413, -0.8349950909614563, 0.13652357459068298, -0.10329920053482056, -0.2126755714416504, -0.20788313448429108, 0.8552422523498535, 0.1371617466211319, 0.48389753699302673, 1.0801626443862915, -1.1649508476257324, -0.34143438935279846, 0.8863071203231812, 0.21018818020820618, -0.8746143579483032, -0.018910937011241913, 0.009101109579205513, -0.2699747681617737, 0.24670051038265228, 0.676589846611023, 0.752158522605896, -0.9664197564125061, 0.5111107230186462, 0.045631490647792816, -0.33926916122436523, -0.4647862911224365, -0.3331264555454254, -1.6079821586608887, 0.4899652898311615, -0.886323869228363, -0.721595823764801, 0.047515083104372025, -0.7974262237548828, -0.9885837435722351, -0.3075636327266693, 0.5809745192527771, -0.854987621307373, -0.18993224203586578, 0.6564748287200928, -0.1376427710056305, -0.13943630456924438, 1.5774216651916504, -0.7734020948410034, 1.4586082696914673, -0.17605653405189514, -0.385934054851532, -0.8404979109764099, -0.12353957444429398, 0.21882788836956024, 0.344255268573761, -0.3694298267364502, -0.702416181564331, 0.5322005152702332, -0.11107078194618225, -0.4619951546192169, 1.0780915021896362, 0.020418070256710052, -0.08713844418525696, -0.5598117709159851, -0.7721247673034668, 0.7974207401275635, 0.22914113104343414, 0.68229740858078, -0.6601110100746155, -0.7084402441978455, -0.8622221946716309, 0.4183897376060486, -0.3614260256290436, 0.044828277081251144, -0.18720440566539764, 0.6291289329528809, 0.062272071838378906, -1.3964346647262573, -0.4646827280521393, -1.0054221153259277, 1.0733577013015747, 0.6674783825874329, -0.26267537474632263, -0.4081474840641022, -0.1985797882080078, -0.35375645756721497, -0.802889347076416, -0.7496685981750488, 0.18969722092151642, 0.02652108296751976, -0.6713456511497498, -0.5218053460121155, -0.1528794765472412, -1.163346767425537, 0.005178377963602543, 0.39195895195007324, 0.38213202357292175, 0.6171250939369202, -0.019568689167499542, -1.2962037324905396, 0.681952714920044, 0.6704469919204712, 0.6157775521278381, -0.021733025088906288, 1.0631495714187622, 0.7127867341041565, 0.14095087349414825, -0.5757497549057007, 0.027798738330602646, 0.6146173477172852, -0.9734360575675964, -0.3117290437221527, -1.056148648262024, -0.4082106351852417, 0.35677003860473633], [-0.3333817422389984, 2.103209972381592, -2.9494564533233643, -0.021117843687534332, 0.5160644054412842, -0.05034325271844864, 0.9849159121513367, 0.7002232670783997, 0.026354027912020683, -1.2057615518569946, -0.513616681098938, 0.30583107471466064, 1.0618922710418701, 0.9220775365829468, 0.021253859624266624, 0.6985846161842346, 0.3076416850090027, -0.6745290756225586, -0.46694275736808777, 0.8372313976287842, -0.8392040729522705, -1.0957049131393433, -0.04917808994650841, 0.6650558114051819, -0.04876670613884926, 0.4848257899284363, -1.901146411895752, -0.30804112553596497, -1.109379529953003, -1.009556770324707, 0.6221706867218018, -0.09948398917913437, 0.22464071214199066, 0.11113664507865906, -1.398446798324585, -0.3665301203727722, 0.6132457256317139, -0.0735919252038002, -0.29457616806030273, -1.074794054031372, 1.865761637687683, 0.12152011692523956, -0.12594850361347198, -1.3596880435943604, 0.16663670539855957, -0.16917185485363007, 1.5672798156738281, -0.8740314841270447, 0.35966047644615173, -0.8999584317207336, 0.09373650699853897, -0.09258558601140976, -0.005714752245694399, 1.4540544748306274, 0.6983276605606079, -1.0493659973144531, -0.05538693442940712, 0.6038822531700134, 0.3235034644603729, 1.3756256103515625, 1.0509467124938965, 0.07716149836778641, 0.042693138122558594, 1.2726813554763794, 0.5531972646713257, 0.2574901282787323, 0.4484454393386841, 0.25421464443206787, 0.25209301710128784, -0.3708368241786957, 0.17292988300323486, -0.3495507538318634, 0.1489434391260147, 0.2145804464817047, -0.3821698725223541, 0.3947471082210541, 0.08526010066270828, 0.24988482892513275, -0.7922075986862183, 0.28053995966911316, -0.3662258982658386, 0.10045907646417618, 0.7725191116333008, -0.11407341808080673, -0.8859946727752686, -0.05276751518249512, 0.17648136615753174, -0.43506866693496704, -0.01304258219897747, 1.425679087638855, 0.4068572223186493, 0.4382907748222351, 0.6151320934295654, -0.06784304976463318, -0.6735398769378662, -0.14141745865345, 0.25042271614074707, -1.0699728727340698, -0.49444857239723206, -1.055752158164978, -0.1969776153564453, -0.9223071336746216, 0.09518884867429733, 0.7115602493286133, 0.5842055082321167, 1.1859626770019531, -0.028814582154154778, -0.7037524580955505, 0.742845356464386, 0.05985981971025467, -0.43034327030181885, 1.0918666124343872, -1.2537248134613037, -1.3967812061309814, -0.10351572930812836, 1.2326685190200806, 0.6794357895851135, 0.0008656072895973921, 1.4131138324737549, 0.682589054107666, -0.13334645330905914, -0.5573073625564575, -0.3325953185558319, 0.2564535140991211, 0.81589275598526, 0.6967548131942749, -0.515302836894989, -0.646222710609436, 0.6162882447242737, -0.3276018798351288, 0.7961407899856567, -0.5586937069892883, -0.5806314945220947, 0.6887429356575012, 0.22257646918296814, 1.2862837314605713, -1.0840740203857422, -0.8218614459037781, 0.3927335739135742, 0.5925766825675964, 0.5028945803642273, -0.431294322013855, 0.24494969844818115, -0.8760724663734436, -0.1134270578622818, -0.3614415228366852, 0.1590099185705185, -0.7132853269577026, -0.5792727470397949, 0.8156604170799255, -1.2579312324523926, 0.7549759149551392, -0.2987615764141083, 1.0873312950134277, 0.6160397529602051, -0.8091492652893066, 0.5138869881629944, -0.4269634187221527, 0.7317667603492737, 0.677765965461731, 1.087843894958496, -0.3431764543056488, -0.011056162416934967, 0.21999645233154297, 0.48641446232795715, -0.40449953079223633, 0.8288934230804443, 0.5211085677146912, -0.5348191261291504, 1.058190107345581, -0.28238099813461304, -1.054382085800171, -0.12896369397640228, -0.1902257800102234, -0.052768006920814514, -0.5686812996864319, 1.0670684576034546, -0.489950031042099, -0.6681315302848816, -0.7597298622131348, 1.0188963413238525, -0.7864527702331543, 0.48264625668525696, -0.37996482849121094, 0.39278218150138855, -0.018320506438612938, 0.1089094951748848, -0.11093077063560486, 0.10888367146253586, -1.3838106393814087, -1.0048500299453735, -0.42763882875442505, -0.7968536019325256, 0.4969349205493927, -0.03623959422111511, -0.5964364409446716, 0.7596633434295654, -0.6215893626213074, -0.5095095038414001, 0.14543770253658295, 0.3584194481372833, 0.5198877453804016, -0.9949861168861389, -0.4562200605869293, 0.014566882513463497, 1.0385375022888184, -0.03858640044927597, 0.21495267748832703, -0.3625386357307434, 0.02903609909117222, 0.7948592305183411, -0.6460610628128052, -1.258151888847351, 0.9128220677375793, 0.6629347801208496, -0.8807047009468079, 0.3270077109336853, -0.2050316482782364, -0.2787003219127655, 0.0912998765707016, 0.3057880103588104, 0.31811439990997314, -0.1090056374669075, 0.07660552859306335, 0.3202837407588959, -0.3835498094558716, -0.6199778318405151, -1.125393271446228, -0.8071061372756958, 0.23225292563438416, -0.9077908992767334, -0.5150518417358398, 0.8032588958740234, 0.4275592863559723, -0.7958919405937195, 0.5315567851066589, -0.24343571066856384, 0.1926351636648178, 0.4858405292034149, 0.6740935444831848, 0.14347058534622192, 0.2059038132429123, -0.4953066110610962, -0.3465781807899475, -0.7573996186256409, 0.17949725687503815, 1.0536333322525024, -0.34661877155303955, -0.10923629999160767, 1.384620189666748, 1.2836294174194336, -0.2641596794128418, 0.9478574991226196, 0.11719494313001633, -0.35122695565223694, -0.5064707398414612, -0.2683785855770111, 0.29478827118873596, -0.8619769215583801, 1.5083684921264648, 0.9879240989685059, -1.3863449096679688, 0.10631993412971497, -0.46847689151763916, 0.32134923338890076, -0.08662953972816467, -0.9408319592475891, -0.9555975198745728, -0.27338317036628723, -0.5129268765449524, 0.4768155813217163, 0.08289309591054916, 0.24347195029258728, 0.7667629718780518, -0.7652373313903809, -0.6189692616462708, -0.2873918414115906, 1.0662745237350464, 0.27986451983451843, 1.3293278217315674, -0.5424743294715881, -1.4213474988937378, -0.7864219546318054, 0.4778513014316559, 0.2932700216770172, -0.21294768154621124, -0.4476207196712494, 1.3700276613235474, 0.47465837001800537, 0.19664716720581055, 0.8012999892234802, -0.1882714331150055, 0.5738274455070496, 0.02031729742884636, 0.2783392667770386, 0.057858940213918686, 0.9223974347114563, -0.9600557088851929, -1.0482457876205444, -0.06985937803983688, 0.8515005707740784, 1.5560812950134277, 0.7813925743103027, 1.0261399745941162, -0.5522969961166382, 0.011251645162701607, -0.32076871395111084, -0.441463828086853, -0.6157797574996948, -0.40473347902297974, -0.9383973479270935, -0.9370160698890686, -0.09252526611089706, -0.6896626353263855, -0.2968602478504181, 0.3835369646549225, 0.8174984455108643, 1.2112854719161987, 0.5908345580101013, -1.0132040977478027, -0.6767479181289673, 0.0015204104129225016, -0.40330472588539124, -0.6888684630393982, 0.5305994749069214, 1.4673892259597778, -1.372107744216919, -0.34524810314178467, -0.19354736804962158, -0.32144078612327576, 0.4210399091243744, 0.16527041792869568, -0.38954034447669983, -1.1402432918548584, -0.7985610961914062, 0.4460267722606659, 1.1266779899597168, -0.004623361397534609, -0.5510634183883667, -0.1838451325893402, 0.06260953843593597, 0.7401546835899353, 0.30222567915916443, -0.721524178981781, 0.5372949838638306, -0.7169502973556519, -0.07978656888008118, -0.523772120475769, 0.6200835704803467, 0.7711297273635864, -0.7217660546302795, -1.00679612159729, -0.6406252384185791, -0.28673607110977173, -0.7979729771614075, 0.15921121835708618, 0.6702438592910767, 0.5241522192955017, -0.08967867493629456, 0.24762757122516632, 1.866081714630127, -0.44565093517303467, -0.26937779784202576, -0.7609536647796631, 0.4997059404850006, 0.8289753198623657, 1.437267780303955, 0.30381351709365845, 0.8452126383781433, 0.7279502153396606, -0.8922994136810303, -0.04516516998410225, 0.31393587589263916, 0.874332070350647, 0.059879470616579056, -0.8786262273788452, -0.7439472675323486, -0.5229333639144897, 0.37626001238822937, -0.7564332485198975, -0.3372480571269989, 0.392077773809433, -0.06030898541212082, -0.4801512062549591, 0.5839217305183411, 1.1279224157333374, -0.4470803439617157, -0.6342586278915405, 0.18435414135456085, 0.7081269025802612, -0.8818160891532898, 0.22597143054008484, -0.37942782044410706, 0.3901781737804413, 0.42123809456825256, -0.9139155745506287, -0.4176810085773468, -0.1751011461019516, 0.30414092540740967, 2.0704550743103027, -1.476475477218628, -0.576099693775177, -0.3458932936191559, 0.250036358833313, 0.22203491628170013, -0.0040407306514680386, 0.08505389839410782, 0.785780131816864, -0.7788287997245789, 0.025282101705670357, 0.8770170211791992, 1.4731332063674927, 0.19287610054016113, -0.33989444375038147, -0.35710206627845764, -0.5158547163009644, 0.32639026641845703, -1.1711329221725464, -0.2803231477737427, 0.319879949092865, -0.5205714106559753, -0.07098738104104996, 0.22019481658935547, 0.32159537076950073, 2.349123477935791, 0.3761129677295685, 0.6977013349533081, 0.25718894600868225, 0.11421716213226318, -0.509580135345459, -0.4374079406261444, 0.7299359440803528, -0.6294682621955872, -0.8549957275390625, 0.8919548988342285, 0.12172851711511612, 0.30596020817756653, 0.08550797402858734, -0.1109049841761589, 0.4190385341644287, 0.13488756120204926, -0.5062257051467896, -0.19220004975795746, 0.3137836754322052, 1.345352053642273, 0.8916504383087158, 1.1094160079956055, -0.29973524808883667, -0.3592393398284912, 1.397167444229126, -0.06767042726278305, 0.41210031509399414, 0.6970473527908325, 0.24286052584648132, 1.1132159233093262, -1.1798603534698486, -1.0620383024215698, 0.39834511280059814, -0.43190228939056396, 0.48393309116363525, -0.33227449655532837, 0.3298039436340332, -0.9969528317451477, -0.6632222533226013, 0.35487785935401917, -0.16984207928180695, 1.1777777671813965, -0.8594129085540771, 0.6038373112678528, 0.6358820199966431, -0.3467293679714203, -0.5371177792549133, -0.4395318031311035, -0.07944715023040771, -0.5546438097953796, 0.125092014670372, 0.7434201240539551, 0.8907670974731445, 0.4345235228538513, 0.44856491684913635, 0.11443313211202621, -0.5442728400230408, 0.2702878415584564, -0.8684035539627075, 0.28184637427330017, -0.5947933197021484, -0.02661316469311714, -0.6014984250068665, -0.15017588436603546, -0.41580599546432495, -0.35655030608177185, -1.1181670427322388, -1.4229806661605835, -0.4957990348339081, -0.6794487237930298, 0.23472648859024048, 0.7220850586891174, 0.7644047737121582, 0.6303235292434692, 0.1297706514596939, 0.24843813478946686, 1.027036428451538, -0.5773846507072449, 0.15196800231933594, 0.6040225625038147, 0.22963492572307587, 0.26427608728408813, -0.834488034248352, -0.19865375757217407, 0.6764989495277405, 0.8147619962692261, -0.24558697640895844, 0.1384512037038803, 0.09365427494049072, 1.6254075765609741, -0.17638397216796875, -0.8097516894340515, 0.4600379765033722, -0.6198909878730774, 1.311481237411499, 0.9303457736968994, -1.0375144481658936, -0.325263112783432, -0.3370975852012634, -1.5981987714767456, 1.4379007816314697, -0.6516959071159363, -0.5653464198112488, 1.26385498046875, 0.8572698831558228, -0.16235119104385376, 0.9446565508842468, -0.2552856504917145, 0.4129583537578583, 0.8359803557395935, 0.27769970893859863, -0.24870924651622772, 0.8740788102149963, 1.183412790298462, -0.08517273515462875, -1.1728225946426392, 1.21575129032135, -0.33967798948287964, -0.29802024364471436, -0.5962801575660706, 0.5281139016151428, -0.01354222185909748, -0.1079094409942627, 0.0896938368678093, -0.14950303733348846, 0.4585615396499634, -0.9887771606445312, 0.6109732389450073, 0.023155227303504944, 0.5968632102012634, 0.18169397115707397, -0.7266953587532043, -0.2571060061454773, -0.5823966264724731, 0.16632840037345886, -0.1798209398984909, -0.6266939640045166, 1.251947045326233, 0.8190943598747253, 0.0816797986626625, 0.25423356890678406, 0.3334769308567047, -0.7710207104682922, -0.9546412825584412, -0.7216942310333252, 1.019227385520935, -1.6559475660324097, 0.27470940351486206, -1.4513356685638428, -0.6569252014160156, -0.7640001177787781, 0.3779688775539398, 0.6749069094657898, -1.2048810720443726, -1.212119698524475, 0.47246018052101135, 0.38559290766716003, 1.0020743608474731, -0.3810744881629944, 0.4915791451931, -0.3041808307170868, -1.0862380266189575, -0.137932687997818, 0.0035273078829050064, -1.490676760673523, -0.2449476420879364, -1.2495671510696411, 0.7360112071037292, 0.25026974081993103, -0.23083728551864624, 0.018822267651557922, 1.6969280242919922, -1.735425591468811, -1.3750823736190796, -0.6517676711082458, -0.217288538813591, 0.8413648009300232, 0.8746828436851501, -0.9601575136184692, 0.9698973894119263, -0.19999155402183533, -0.5566118359565735, -0.07050013542175293, 0.23494765162467957, -0.6854153871536255, 0.05569399520754814, -0.6570578217506409, 0.21998398005962372, 0.2389293611049652, 1.0330294370651245, 0.6895469427108765, 1.6095547676086426, 0.0550815649330616, 1.6699740886688232, -0.41154810786247253, -0.8097445368766785, 0.1496949940919876, 0.42275863885879517, -0.8911757469177246, -0.4374990165233612, 0.17855900526046753, -0.8109930157661438, -0.9336737394332886, 0.19015415012836456, 1.2196972370147705, -0.6439079642295837, 0.3848397433757782, -0.23791378736495972, 0.017676951363682747, -0.5751165747642517, 0.8835467100143433, 0.46047961711883545, -0.9591944217681885, -0.7137802839279175, -0.5162203311920166, -0.1700793206691742, -0.8343409299850464, -0.845132052898407, 0.6573591232299805, 0.9149159789085388, -0.5407382249832153, -0.31237128376960754, 0.03042716160416603, 0.37922343611717224, -0.7890436053276062, 1.2042063474655151, 0.21067039668560028, -0.44913583993911743, 0.06938014179468155, 0.11798453330993652, -0.3498799204826355, 0.13073498010635376, -0.22238832712173462, -0.11240483075380325, -0.37882155179977417, 0.02911956235766411, -0.43026500940322876, 0.36598607897758484, -0.9078199863433838, 0.8124042749404907, 0.5571601986885071, 0.7553263902664185, 1.9070005416870117, -1.0929585695266724, -0.3414429724216461, 1.1793758869171143, 0.1878984123468399, -0.9448472857475281, 0.355676531791687, -0.13029950857162476, -0.39484450221061707, -0.23339641094207764, 0.6629209518432617, 0.5547215342521667, -0.9504920840263367, 0.8660890460014343, 0.4775554835796356, -0.09451426565647125, 0.12943261861801147, -0.3094611167907715, -1.566200613975525, -0.24025312066078186, -0.5308508276939392, 0.39489907026290894, 0.7714418172836304, -0.6929802298545837, -0.5737292170524597, -0.3341865837574005, 0.42523133754730225, -0.1074763610959053, -0.6842605471611023, 0.43086251616477966, -0.23465099930763245, -0.07183325290679932, 0.9610359072685242, -0.8310986757278442, 1.5429065227508545, 0.07046139240264893, -0.39071735739707947, -0.2761992812156677, 0.19174210727214813, -0.012412150390446186, 0.26033225655555725, -0.459432452917099, -0.8482343554496765, 0.1563519686460495, -0.08769148588180542, -0.13599637150764465, 0.9256122708320618, 0.41221684217453003, 0.5424110293388367, -0.8913283348083496, -1.0417060852050781, 0.5508396029472351, 0.484668493270874, 0.0855618566274643, -0.56707364320755, -1.3193652629852295, -0.38252609968185425, 0.3944407105445862, -0.3660741150379181, 0.38005346059799194, -0.1532474309206009, 0.38713735342025757, 0.3466706871986389, -0.9148010611534119, -0.738649845123291, -1.0019527673721313, 1.1738035678863525, -0.0812363550066948, 0.1900179088115692, 0.16440488398075104, -0.6206585764884949, 0.1584714949131012, -0.5429006218910217, -0.32137662172317505, 0.36126652359962463, 0.09641185402870178, 0.2095855325460434, -1.022207260131836, -0.4016428589820862, -0.8966625928878784, -0.4731300175189972, 0.3630687892436981, 0.803284764289856, 0.7033842206001282, 0.7164287567138672, -1.478242039680481, 0.7658252716064453, 0.45121029019355774, -0.19726473093032837, 0.37131577730178833, 1.574152946472168, 0.9731098413467407, -0.4271085560321808, -0.4074433743953705, -0.08004465699195862, 0.9200097918510437, -0.7086910009384155, -0.29724109172821045, -1.3435908555984497, -0.6447597146034241, 0.11731468141078949], [-1.1223244667053223, 2.0527091026306152, -2.743731737136841, 0.36985883116722107, 1.0499197244644165, -0.08626023679971695, 1.3337534666061401, 0.004646657034754753, -0.17815673351287842, -0.4696984589099884, -0.6569536924362183, 0.5093085765838623, 0.7135547995567322, 0.8873103260993958, 0.327494353055954, 0.20099209249019623, 0.60172438621521, -0.40408337116241455, 0.5677622556686401, 0.8767159581184387, -0.5377410650253296, -0.9817512631416321, -0.40925782918930054, 0.31597188115119934, 0.4474058449268341, 0.1296733170747757, -1.3194881677627563, 0.4099811315536499, -1.150691270828247, -0.9264757633209229, 1.5373914241790771, -0.49042943120002747, -0.0008513191714882851, -0.10818549245595932, -1.194236159324646, 0.05474048852920532, 0.9524753093719482, 0.1267307698726654, -0.5650658011436462, -0.4168292284011841, 2.1412582397460938, 0.10672629624605179, -0.2454671859741211, -1.4871350526809692, 0.19450072944164276, -0.21602506935596466, 0.39344504475593567, -0.4638795852661133, 0.24327680468559265, -1.065610647201538, 0.2967032790184021, 0.6783242225646973, -0.02243027836084366, 1.2450071573257446, 0.5772045850753784, -0.694485604763031, 0.5656039714813232, 0.9495587348937988, -0.6427892446517944, 0.711164116859436, 0.7264355421066284, -0.521981418132782, -0.22973255813121796, 0.150911346077919, 0.5347968339920044, -0.2797575294971466, 1.3220244646072388, 0.555325984954834, 0.22262831032276154, 0.07223423570394516, 0.42706021666526794, 0.6475703120231628, -0.18362414836883545, 0.051297228783369064, -0.6383527517318726, 0.39079606533050537, 0.42112430930137634, 0.4598677158355713, -0.39153429865837097, 0.5947816967964172, -0.0830007940530777, 0.39001917839050293, 0.31878504157066345, 0.2669863700866699, 0.3331625759601593, -0.03090146742761135, -0.3241620659828186, -0.03260854259133339, 0.05219052731990814, 2.2010691165924072, 0.16059421002864838, 0.6178165674209595, 0.8865882158279419, 0.2779536545276642, 0.10889291018247604, -0.46758654713630676, -0.09578245878219604, -0.8855584859848022, -0.19321879744529724, -0.970925509929657, 0.15160007774829865, -0.9940407276153564, -0.3452524244785309, 0.7895785570144653, 0.5434407591819763, 1.9043397903442383, -0.7486463189125061, -0.6366764903068542, 0.048631858080625534, -0.3001711666584015, -0.6289950013160706, 0.6068089008331299, -0.7806087136268616, -0.9983437061309814, -0.042609803378582, 0.669158935546875, 0.8014394640922546, 0.42340371012687683, 0.7734048366546631, 0.324747771024704, -0.40434256196022034, -0.37557485699653625, -0.20887921750545502, 0.7241397500038147, 0.7833939790725708, 0.44759801030158997, -0.5890282988548279, -0.45235586166381836, 0.2864021062850952, 0.10686234384775162, 0.09786567836999893, -0.8492887616157532, 0.1466531902551651, 0.5191391110420227, -0.5558186769485474, 0.7000795006752014, -0.6930206418037415, -0.9137210249900818, 0.23681247234344482, -0.001766386441886425, 0.03983931615948677, -0.4005641043186188, -0.22965486347675323, -0.783683717250824, 0.5244379639625549, -0.7055230140686035, 0.6213490962982178, -0.27491796016693115, -0.6418287754058838, 0.0633029192686081, -1.2677416801452637, 0.43694421648979187, -0.19462457299232483, 1.0776304006576538, 0.1337091475725174, -0.2393355816602707, 0.6220694184303284, -0.21812692284584045, 0.4004116356372833, 1.2253477573394775, 0.4805130660533905, 0.27580803632736206, -0.9943655729293823, 0.9840435981750488, 0.8610774278640747, -0.8177493810653687, 0.6091309785842896, -0.14382928609848022, -0.5002736449241638, 1.0344175100326538, -0.10032514482736588, -0.6511730551719666, -0.6313984990119934, 0.35504329204559326, 0.09871882200241089, -0.6379605531692505, 0.9510418176651001, -0.3230036199092865, -1.0775243043899536, -1.361304521560669, 0.6549990773200989, -0.32763123512268066, 0.41504254937171936, -0.09609697014093399, 0.5776026248931885, -0.09933321923017502, 0.008499384857714176, -0.3453013300895691, 0.02789345383644104, -1.0753071308135986, -1.2716758251190186, -0.21863222122192383, -1.2097609043121338, -0.05879531428217888, -0.16680234670639038, -0.48218855261802673, 1.0998634099960327, -0.8703579902648926, -0.5999422669410706, -0.046353779733181, 0.3115127980709076, -0.6301231384277344, -1.6377779245376587, -0.12848612666130066, -0.3645946979522705, 1.0923283100128174, -0.3471936881542206, 0.6721792221069336, -0.8503998517990112, 0.31843042373657227, 0.9352619051933289, -0.15193867683410645, -1.3593848943710327, 0.43262919783592224, 0.10171741247177124, -1.517765760421753, 0.7811056971549988, -0.2656956911087036, 0.41290488839149475, 0.02067137323319912, -0.25323694944381714, 1.2504440546035767, 0.13128261268138885, 0.04327038303017616, -0.03746197745203972, -0.9185547232627869, -0.3033863604068756, -0.8861346244812012, -1.3850371837615967, 0.6476454138755798, -1.0837270021438599, -0.619778573513031, 0.40639281272888184, 0.7430161237716675, -1.487457513809204, 0.9100339412689209, -0.29262441396713257, 0.4343615472316742, 0.40698063373565674, 0.7036444544792175, 0.3022400736808777, 0.34085527062416077, -0.7983682751655579, -0.047458499670028687, -0.9784818291664124, -0.17326508462429047, 0.44733691215515137, -0.30591288208961487, 0.38322335481643677, 1.2013684511184692, 1.173335075378418, -0.282943993806839, 0.2934410870075226, -0.34898078441619873, 0.24081259965896606, -0.9278045892715454, -0.14146055281162262, 0.7369027137756348, -0.4633234143257141, 1.108932375907898, 0.6939570903778076, -1.5332621335983276, -0.2473771870136261, -0.29369476437568665, 0.1464574784040451, -0.6671988368034363, -1.0854963064193726, -0.8609445095062256, 0.02606184408068657, -0.21699319779872894, -0.09502827376127243, -0.031069165095686913, -0.586892306804657, 0.8831437826156616, -0.1439722329378128, 0.0659366324543953, -0.15105952322483063, 0.7424085736274719, 0.09931057691574097, 0.42818769812583923, -0.31882232427597046, -1.191907525062561, -0.5014002323150635, 0.535689115524292, 0.3612799048423767, 0.4011869430541992, 0.9769704937934875, 0.8364726305007935, 0.49308252334594727, 0.3575921952724457, 0.6094344854354858, 0.2945882976055145, 0.4304214417934418, 0.4335755705833435, 0.14373183250427246, 0.405476450920105, 0.9670354723930359, -1.6462633609771729, -0.7907525897026062, -0.02922859974205494, 0.396087110042572, 1.3628603219985962, 0.9813603758811951, 1.435225009918213, -0.4359135031700134, -0.3680749833583832, -0.3446700870990753, -0.03785134479403496, -0.03786521404981613, -0.1889292597770691, -0.8010494112968445, -0.7907391786575317, -0.6313411593437195, -0.8284956812858582, -0.25604310631752014, 0.31464529037475586, -0.2691165804862976, 1.1274641752243042, 0.5507224202156067, -0.6573765277862549, -0.6527105569839478, -0.5055278539657593, -0.19892868399620056, -0.40832749009132385, 0.9843679070472717, 1.4488500356674194, -1.6783123016357422, -0.12898977100849152, 0.20386242866516113, 0.20785854756832123, 0.311989963054657, 0.1334272027015686, 0.07616059482097626, -1.0614498853683472, -0.4060472249984741, -0.27267584204673767, 0.9224035739898682, 0.08727280795574188, -0.43874216079711914, -0.13066880404949188, 0.2514767646789551, 1.0216773748397827, 0.10707569122314453, -0.6083377003669739, 0.46001237630844116, -0.8329702019691467, -0.3781651556491852, -0.2061149626970291, 0.049301665276288986, 0.8619210124015808, -0.609585165977478, -0.7779896855354309, -0.38561707735061646, -0.38082563877105713, -0.2376541644334793, 0.9064707159996033, 0.46353623270988464, 0.4687953591346741, 0.042474955320358276, -0.40332847833633423, 1.4726125001907349, -0.16157017648220062, 0.522704005241394, -1.3348532915115356, 1.034018874168396, 0.7478360533714294, 1.2878763675689697, 0.8519868850708008, 0.22209139168262482, 0.6111435294151306, -0.5496874451637268, -0.4574393928050995, 0.19010122120380402, 0.5625687837600708, 0.6127631664276123, -0.2339356541633606, -0.2143539935350418, -0.110505111515522, -0.0033862562850117683, -0.5409835577011108, 0.21332179009914398, 0.5464561581611633, -0.446507066488266, -0.7429712414741516, 1.205114722251892, 0.669938862323761, -0.23119010031223297, -0.40227583050727844, -0.6027898192405701, 0.5278797149658203, -0.8620632886886597, 0.21641959249973297, -0.08158961683511734, -0.07995135337114334, 0.06805511564016342, -0.6321752667427063, 0.04902788996696472, -0.3789632022380829, 0.1616574376821518, 1.140708088874817, -1.2638089656829834, -0.15379278361797333, -0.5966828465461731, 0.023084213957190514, 0.9288991093635559, 0.17689283192157745, 0.18806637823581696, 0.10559029132127762, 0.11389192193746567, 0.7135856747627258, 0.14699697494506836, 1.1859990358352661, -0.1461307257413864, -0.3665861487388611, 0.5193822383880615, 0.05460093542933464, 0.3985461890697479, -0.9842071533203125, -0.7882388234138489, -0.22683964669704437, -0.5662791728973389, -0.6141754388809204, 0.5827281475067139, 0.38164329528808594, 1.8310467004776, 0.16267521679401398, 0.45650964975357056, 0.3569169342517853, -0.1690649688243866, -0.7231606841087341, -0.33566227555274963, 0.13254188001155853, -0.23749999701976776, 0.05397481471300125, -0.2534962296485901, 0.7561689615249634, 0.6048670411109924, -0.12555263936519623, 0.09597126394510269, 0.20484447479248047, 0.3002031445503235, 0.23038747906684875, -0.22299757599830627, 0.6347569227218628, 1.1194982528686523, 0.6851807832717896, 1.5081559419631958, -0.3599473237991333, -1.1395597457885742, 0.6937945485115051, 0.2316180169582367, -0.08077898621559143, 0.8813526630401611, 0.575107753276825, 1.3128173351287842, -1.3978593349456787, -0.17963261902332306, 0.735022246837616, 0.13414844870567322, 0.2687787711620331, -0.5330308079719543, 0.042560894042253494, -1.0636636018753052, -0.13373389840126038, 0.8829326629638672, -0.8740426898002625, 0.905358612537384, 0.12305354326963425, -0.1468518078327179, 1.138327956199646, -0.3420102298259735, 0.1446561962366104, -0.762834906578064, -0.2394072562456131, -0.6246044635772705, -0.10333137959241867, 0.7937342524528503, 1.0075714588165283, 1.0757948160171509, 0.3705978989601135, -0.04258997365832329, -0.5364761352539062, 0.18749885261058807, -1.034376859664917, 0.29328685998916626, -0.00754851009696722, 0.24330727756023407, -0.6676642894744873, -1.1718024015426636, -0.1709420531988144, -0.816055417060852, -1.0970937013626099, -0.10337641835212708, -0.35515472292900085, -1.0229895114898682, 0.4913875460624695, 0.13150541484355927, 0.8087950348854065, 0.7414022088050842, 0.5120738744735718, 0.45632320642471313, 0.2372858226299286, -0.7366296648979187, -0.07307445257902145, -0.20048744976520538, -0.16584917902946472, -0.017701048403978348, -0.7615880966186523, -0.5079740285873413, 0.6748865246772766, -0.25788891315460205, -0.37721675634384155, -0.4446044862270355, 0.7113043665885925, 1.8673536777496338, -0.11130734533071518, -0.2948322296142578, 0.6954565644264221, -0.4059409201145172, 1.4459718465805054, 1.3107496500015259, -1.1452323198318481, -0.4272034466266632, 0.32254862785339355, -1.999032974243164, 1.3192960023880005, -1.0561836957931519, -0.04225213825702667, 0.6968902349472046, 0.17204080522060394, -0.1271224319934845, 1.236317753791809, -1.2783833742141724, 0.3469022214412689, 0.46209123730659485, -0.5679185390472412, -0.6809791922569275, 0.3632737994194031, 1.2153764963150024, -0.11496228724718094, -1.0330666303634644, 0.5728232264518738, -0.1753542125225067, -0.626510739326477, -0.2987450659275055, 0.5240092277526855, 0.11107108741998672, 0.2662492096424103, -0.07131697237491608, -0.30743879079818726, 0.5226856470108032, -1.5228354930877686, 0.26132816076278687, -0.044952116906642914, 0.47940683364868164, 0.7800991535186768, -0.549551784992218, 0.7059096097946167, -0.3033955991268158, -0.0619724802672863, -0.36653563380241394, -1.037937879562378, 1.1158322095870972, 0.18075881898403168, -0.020439784973859787, 0.9114231467247009, -0.23511500656604767, -0.8799149990081787, -0.8675588369369507, -0.24028588831424713, 0.7488111853599548, -0.9775005578994751, -0.24473936855793, -0.8343843221664429, -0.5465319752693176, -0.13025417923927307, -0.019088611006736755, 0.6513977646827698, -1.3310655355453491, -1.206132411956787, -0.2686639130115509, -0.22458499670028687, 0.6567688584327698, -0.6265381574630737, -0.07724756002426147, 0.3557702898979187, -1.3091533184051514, 0.7835478782653809, -0.46590888500213623, -1.7799222469329834, 0.10837599635124207, -1.275781512260437, 0.8870435953140259, -0.3126380145549774, -0.5420414209365845, 0.3107939064502716, 1.7329130172729492, -1.517154335975647, -1.145128607749939, -0.8175719380378723, -0.1438130885362625, 0.6828474998474121, 0.7281943559646606, -0.6578369736671448, 1.480217456817627, -0.5193539261817932, -0.22978784143924713, -0.8252422213554382, 0.19714640080928802, -0.6968775391578674, -0.2600429058074951, -0.4435848593711853, 0.003973802551627159, -0.13181570172309875, 1.0639835596084595, 0.8723357319831848, 0.9052366614341736, -0.003414093516767025, 1.309919834136963, -0.7445166110992432, -0.6882825493812561, 0.07241590321063995, 0.46345505118370056, -1.0374575853347778, -0.6802701354026794, -0.2554980516433716, -0.4858855903148651, -1.0484050512313843, 0.19944262504577637, 1.1950782537460327, -0.46202975511550903, 0.4294178783893585, -0.16932745277881622, 0.5273483395576477, -1.15383780002594, 0.5602478981018066, 0.14258967339992523, -1.6887454986572266, -0.20463982224464417, -0.652296781539917, 0.16062520444393158, -0.9255390167236328, 0.44006916880607605, 0.7191120386123657, 0.6249280571937561, -0.6999475955963135, -0.02195393107831478, 0.5484977960586548, 0.030106352642178535, -0.705034613609314, 0.9910704493522644, 0.7036548852920532, -0.4022267162799835, -0.23493748903274536, 0.997471809387207, 0.08812448382377625, 0.3716799318790436, 0.46031472086906433, -0.008394014090299606, -0.4808080494403839, 0.03792174533009529, 0.011052542366087437, -0.012445870786905289, -0.05154244974255562, 0.14940759539604187, -0.2825564444065094, 0.2984057664871216, 0.9748867154121399, -0.6174129843711853, -0.8454970121383667, 1.513781189918518, 0.5616729855537415, 0.06152801960706711, -0.022930091246962547, -0.26949742436408997, 0.11853707581758499, 0.17501404881477356, 0.7989627122879028, 0.5811158418655396, -0.10587310045957565, 0.050042975693941116, 0.5740622282028198, -0.045340899378061295, -0.12768906354904175, -0.11791948974132538, -1.3169351816177368, -0.32530781626701355, -0.8522019982337952, 0.6417766213417053, 0.48061177134513855, -0.6651543974876404, -0.6724544763565063, -1.2291280031204224, -0.04923589527606964, -0.06165082007646561, -0.23065416514873505, -0.7647312879562378, -0.046453047543764114, -0.03774499520659447, 1.5950229167938232, -0.4511851668357849, 1.5891382694244385, -0.6116995215415955, -0.38930031657218933, -0.2697218060493469, 0.12198550999164581, 0.49878042936325073, 0.04479718953371048, 0.31223103404045105, -0.8348584771156311, 0.5850733518600464, -0.536209762096405, -0.8320261836051941, 0.7701785564422607, 0.33432427048683167, 0.2865542471408844, -0.6094480752944946, -0.6364780068397522, 0.3782987892627716, 0.3863182067871094, 0.36095112562179565, -0.7493330240249634, -1.1011309623718262, -0.7312891483306885, -0.05046851933002472, -0.04727242514491081, 0.46279019117355347, -0.48328301310539246, 0.9055132269859314, 0.6080271005630493, -0.8257912397384644, -0.691717803478241, -1.527672290802002, 0.8727987408638, 0.02914041094481945, 0.3891255557537079, -0.2201511114835739, 0.061174310743808746, 0.6364562511444092, -0.7193906307220459, -0.8222609758377075, -0.2349041849374771, 0.5212845206260681, 0.16264505684375763, -0.7560079097747803, -0.2922545373439789, -1.2519302368164062, -0.32177308201789856, 0.009408313781023026, 0.8094114661216736, 0.6948357820510864, 0.3182140588760376, -0.8614763021469116, 0.048972781747579575, 0.6034340262413025, 0.3456285893917084, 0.6898298859596252, 1.4465453624725342, 1.2404024600982666, -0.27559056878089905, -0.42986002564430237, -0.3140415847301483, 0.7352452278137207, -0.7644563317298889, -0.040983639657497406, -0.5291313529014587, -0.13322517275810242, 0.21572460234165192], [0.37878111004829407, 2.2354745864868164, -2.9160006046295166, 0.48581111431121826, 0.6083338856697083, -0.42939019203186035, 0.6181135177612305, 0.20114454627037048, -0.24036012589931488, -1.080702304840088, -0.6466184258460999, -0.09245496243238449, 0.8617374897003174, 0.8190584778785706, 0.4846747815608978, 0.6709504127502441, 0.31525328755378723, -0.4527246952056885, 0.5804045796394348, 1.603519082069397, -0.5727075338363647, -1.1098569631576538, -0.4427519738674164, 0.08748044818639755, -0.05623113736510277, 0.27539706230163574, -1.502987027168274, -0.22452853620052338, -0.9286849498748779, -0.8308998346328735, 1.3060016632080078, -0.24064189195632935, 0.8265595436096191, -0.223636656999588, -1.5229377746582031, 0.21185137331485748, 1.2307977676391602, -0.2235012799501419, 0.11934537440538406, -1.0588136911392212, 1.9240503311157227, 0.6094117760658264, -0.4999018907546997, -1.396647572517395, 0.27729323506355286, 0.029919186607003212, 0.704115629196167, -0.9771783947944641, 0.37373843789100647, -0.7281970977783203, 0.7560439109802246, 0.25985509157180786, -0.4380073845386505, 1.30888032913208, 0.7786426544189453, -0.9855237007141113, -0.10634976625442505, 0.6537444591522217, 0.1934545636177063, 0.8223401308059692, 1.1729344129562378, -0.51777583360672, 0.14821884036064148, 0.4793488085269928, 0.5185002088546753, -0.28724581003189087, 0.49013394117355347, 0.17644523084163666, 0.6854112148284912, -0.10844580084085464, 0.2238752841949463, 0.15253104269504547, -0.3313477039337158, 0.12304110080003738, -0.6491968035697937, 0.9371994733810425, 0.45329549908638, 0.29136142134666443, -0.03082374297082424, 0.3868826627731323, -0.03694683313369751, 0.012253538705408573, 0.8979735374450684, -0.537082850933075, -0.13199998438358307, -0.10203371942043304, 0.5549468994140625, 0.06714034080505371, -0.5976128578186035, 1.3721665143966675, -0.2203892320394516, 0.5693540573120117, 0.8595621585845947, 0.2973768711090088, -0.06587860733270645, -0.5771680474281311, 0.5431272983551025, -1.566705584526062, -0.18385791778564453, -0.7821863889694214, 0.13556085526943207, -0.8028281331062317, 0.4048795998096466, 1.0166287422180176, 0.5757288932800293, 0.9565660357475281, -0.22917672991752625, -0.6167579889297485, 0.1780935376882553, -0.009876572526991367, -0.6089047789573669, -0.5146539807319641, -0.7713923454284668, -1.446738362312317, -0.18112927675247192, 0.8425431847572327, 1.7213413715362549, 0.02613949589431286, 1.1610444784164429, 0.30338239669799805, -0.6067488193511963, -0.3112553656101227, -0.568635106086731, 0.2568947374820709, 1.2053959369659424, 0.5483874082565308, -0.6991428136825562, -0.659467339515686, 0.37431418895721436, 0.14205065369606018, 0.6410353183746338, -0.013797755353152752, -0.6318535804748535, 0.06470552831888199, -0.40270596742630005, 1.3074791431427002, -0.977008581161499, -0.34358134865760803, -0.045578133314847946, 0.808939516544342, 0.10396076738834381, -0.005859553813934326, 0.1265992522239685, -0.365548700094223, 0.3291454315185547, -0.9606345295906067, 0.20795844495296478, -0.48473140597343445, -0.6632183194160461, 1.193535327911377, -0.9121848344802856, 0.07889603078365326, -0.7455326318740845, 1.5190280675888062, 0.48473718762397766, -0.855096161365509, 0.32622578740119934, 0.019533826038241386, 0.34738844633102417, 0.45138540863990784, 0.6543466448783875, -0.10807374864816666, -0.6172373294830322, 0.018507016822695732, 0.48559507727622986, -0.3959178924560547, 0.796924889087677, 0.10778166353702545, -0.4381287693977356, 1.5324798822402954, -0.45591866970062256, -0.6765731573104858, -0.5638375878334045, 0.571030855178833, -0.19227449595928192, -0.10960686951875687, 1.073392629623413, -0.3527691662311554, -1.1553692817687988, -0.5806835889816284, 1.3198645114898682, -0.3814791142940521, 0.6214599013328552, 0.02820981852710247, 0.6276766061782837, 0.46150490641593933, 0.1821436882019043, -0.6100713610649109, -0.43070486187934875, -1.274034857749939, -0.6207498908042908, -0.398145854473114, -1.1636154651641846, 0.4563608765602112, -0.26024988293647766, -0.752072811126709, 1.001042366027832, -0.4324468970298767, -0.5972204804420471, 0.3015389144420624, -0.1586495339870453, -0.13605737686157227, -0.9673344492912292, -0.14338745176792145, -0.25869011878967285, 1.5589417219161987, -0.6242138147354126, 0.8629423975944519, -0.12851938605308533, 0.1744513362646103, 0.5840852856636047, -1.147236943244934, -1.1386191844940186, 0.6380786299705505, 0.2963557839393616, -1.6616623401641846, 0.8865612745285034, -0.19541789591312408, 0.036480896174907684, 0.007653495296835899, 0.20118562877178192, 1.197352409362793, 0.20738622546195984, -0.21308746933937073, 0.7362803220748901, -0.8910393118858337, -0.39122042059898376, -1.1363290548324585, -0.5480756163597107, -0.14174096286296844, -1.3153517246246338, -0.8585179448127747, 0.14311662316322327, 0.5342507362365723, -1.229261875152588, 0.23876987397670746, -0.16017277538776398, -0.2504122853279114, 0.22504939138889313, 1.1545549631118774, 0.5073477029800415, 0.1477302610874176, -0.49521538615226746, -0.11531843990087509, -1.1012409925460815, 0.629343569278717, 0.6698243021965027, -0.2816303074359894, -0.2629948854446411, 1.0719630718231201, 1.202815294265747, -0.2606743276119232, 0.9126500487327576, -0.34821003675460815, -0.14790652692317963, -0.5272348523139954, -0.6212753653526306, 0.41575098037719727, -0.6216702461242676, 1.2224079370498657, 0.8140106201171875, -0.9043706059455872, 0.09804735332727432, -0.36358222365379333, 0.09991341829299927, -0.5553399324417114, -0.34996092319488525, -1.5120540857315063, -0.26227569580078125, -0.6594298481941223, -0.3614027202129364, 0.4924229681491852, -0.11118988692760468, 0.44429245591163635, -0.4618479609489441, -0.43162527680397034, 0.3098539710044861, 0.7324086427688599, -0.25053685903549194, 0.8152307271957397, -0.2515721917152405, -1.5211851596832275, -1.1394178867340088, 0.2804483473300934, 0.2150876671075821, 0.20996788144111633, 0.4237976372241974, 0.9588561654090881, 0.7683152556419373, 0.2216765433549881, 0.6860181093215942, -0.12254028767347336, 0.44600850343704224, -0.37525859475135803, 0.27664464712142944, 0.4328787922859192, 0.9776762127876282, -0.6810015439987183, -0.8477472066879272, -0.3694479465484619, 0.705273449420929, 1.4640141725540161, 1.2174001932144165, 0.8272795677185059, -0.6148844361305237, 0.0642537772655487, -0.5499931573867798, -0.25632208585739136, -1.1564178466796875, -0.21546834707260132, 0.02093886211514473, -0.80889493227005, -1.209226369857788, -0.11807983368635178, -1.0120856761932373, 0.542547345161438, 0.36952510476112366, 0.6665078997612, 1.3033719062805176, -0.5731532573699951, -0.881537914276123, -0.7191984057426453, -0.21396060287952423, -1.1596189737319946, 0.9089851975440979, 1.1891484260559082, -1.4182207584381104, 0.02936922013759613, 0.20069323480129242, -0.19977346062660217, 0.07250610738992691, 0.28940021991729736, 0.27499058842658997, -1.0861412286758423, -0.09485678374767303, 0.2965643107891083, 0.7179747223854065, 0.2727627754211426, -0.10676003992557526, -0.019156277179718018, 0.03105221502482891, 0.4956316649913788, 0.32483452558517456, -0.8456193804740906, 0.1290169507265091, -0.47379931807518005, -0.3346676528453827, 0.06316731125116348, 0.4787801206111908, 0.2959986925125122, -0.9072394967079163, -1.1121121644973755, -0.4892606735229492, -0.35302454233169556, -0.7558239698410034, 0.5587853789329529, 0.508499026298523, 0.31160295009613037, -0.3286820948123932, 0.33478406071662903, 1.3185926675796509, 0.03389750048518181, 0.1277237832546234, -0.7976849675178528, 1.1795461177825928, 0.4325670003890991, 1.7331156730651855, 0.04663108289241791, 0.13431359827518463, 0.213369682431221, -1.465600609779358, 0.14078307151794434, -0.07383719086647034, 0.26069697737693787, 0.3787880539894104, -0.9145276546478271, 0.005301028490066528, -0.6354303956031799, 0.8735822439193726, -0.22750356793403625, 0.15462259948253632, 0.29223528504371643, -0.38536617159843445, -0.24572639167308807, 0.8895789384841919, 0.7328834533691406, -0.4183696508407593, -0.6050973534584045, -0.10775187611579895, 0.4293246269226074, -0.9047459363937378, 0.4754462242126465, -0.2105327993631363, -0.3957420587539673, 0.804298996925354, -0.29331502318382263, -0.024631408974528313, -0.3970756232738495, 0.390207439661026, 1.8088161945343018, -1.2439361810684204, -0.4103877544403076, -0.46688416600227356, 0.2771078050136566, 0.8350074291229248, 0.20909951627254486, 0.5358878374099731, 0.7180299758911133, -0.4765366017818451, 0.11888553202152252, 0.3413779139518738, 1.2968236207962036, 0.19775012135505676, -0.4061047434806824, 0.22573420405387878, -0.46037557721138, 0.7479600310325623, -1.6582698822021484, 0.6103214621543884, 0.25634002685546875, -0.1755484789609909, -0.5578818917274475, -0.16867175698280334, -0.2332337647676468, 2.1052515506744385, 0.611147403717041, -0.001504517043940723, 0.13957640528678894, 0.04640103131532669, -1.143746256828308, -0.04152876138687134, 0.8074743747711182, -0.8400630950927734, -0.6998008489608765, 0.7230265140533447, 0.12198012322187424, 0.6160687208175659, 0.06408359855413437, -0.05370548367500305, 0.24227462708950043, 0.4234221875667572, 0.24504989385604858, -0.10307232290506363, 0.6312863826751709, 1.5758047103881836, 0.34073418378829956, 1.4479984045028687, -0.06555262207984924, -0.5788741707801819, 0.6045194268226624, -0.12461301684379578, 0.6925949454307556, 0.9940491914749146, 0.38928958773612976, 0.9259209632873535, -0.5366073846817017, -0.25681161880493164, 0.43542927503585815, 0.18172378838062286, 0.5632778406143188, -0.2627006471157074, 0.6939886808395386, -0.42757609486579895, -0.10117164999246597, 0.6528118848800659, -0.3249163031578064, 0.5049106478691101, -0.2823624014854431, 0.20091164112091064, 0.9210606217384338, -0.3586522340774536, 0.348636269569397, -1.1340938806533813, -0.2902151346206665, -0.24331079423427582, -0.409109503030777, 0.8052220940589905, 0.5124829411506653, 0.9763724207878113, 0.4344367980957031, 0.49206116795539856, -0.5499905347824097, 0.08581619709730148, -0.7904030084609985, -0.0499747134745121, -0.2975701689720154, 0.2744286060333252, -0.8322449922561646, -0.27872976660728455, -0.3338063955307007, -0.3587256968021393, -0.2286389172077179, -0.21462364494800568, -0.29718127846717834, -0.9548612236976624, 0.5758910179138184, 0.7786113619804382, 0.3271481394767761, 0.5643703937530518, 0.14409618079662323, 0.1317369043827057, 0.8089451193809509, -0.6024089455604553, 0.027933793142437935, 0.38490208983421326, 0.09684378653764725, -0.029103847220540047, -0.500742495059967, -0.7046648859977722, 0.8025727868080139, 0.3251761794090271, -0.23910807073116302, 0.17043137550354004, 0.5521116852760315, 1.2868366241455078, -0.4799647927284241, -0.32212308049201965, 0.3959401547908783, -0.829163670539856, 1.1619725227355957, 1.2079956531524658, -0.7649558782577515, -0.8387755155563354, -0.6333877444267273, -1.8885592222213745, 1.524225115776062, -0.6251828670501709, 0.027752544730901718, 1.095509648323059, 0.5566152334213257, -0.07463381439447403, 1.3206723928451538, -0.14353005588054657, 0.6391946077346802, 0.2703826129436493, -0.39416059851646423, 0.0774957463145256, 0.7893968224525452, 0.7952272891998291, -0.23973600566387177, -0.8886343240737915, 0.9374701976776123, -0.11672385782003403, -0.33631592988967896, -0.49136972427368164, 0.11394897103309631, -0.0803324356675148, 0.3153817057609558, 0.3203035593032837, -0.07575874775648117, 0.18139728903770447, -1.193591594696045, 0.28482264280319214, 0.4765119254589081, 0.5712161660194397, 0.14044886827468872, -0.36493995785713196, 0.5472020506858826, -0.7905579805374146, 0.08625845611095428, -0.010437899269163609, -0.2324400097131729, 1.212609052658081, 0.5761561393737793, -0.038309305906295776, -0.0978904739022255, 0.07171198725700378, -0.6245802640914917, -1.0921194553375244, -0.49081918597221375, 1.457762598991394, -1.5123353004455566, 0.07451768964529037, -0.7362194061279297, -0.3385979235172272, -0.4576302170753479, 0.14919957518577576, 0.7544003129005432, -0.9379857182502747, -0.945794403553009, -0.12575305998325348, 0.004081390798091888, 0.6901296973228455, -1.1278082132339478, 0.18476620316505432, 0.12275831401348114, -1.0754798650741577, -0.11403780430555344, -0.04789716750383377, -1.7082797288894653, 0.5678611993789673, -1.1453958749771118, 0.545592725276947, -0.03631485626101494, 0.15336546301841736, -0.19172492623329163, 1.3375141620635986, -1.1840261220932007, -1.5347009897232056, -1.2001148462295532, -0.2792837917804718, 0.5318924188613892, 1.2929705381393433, -1.2485992908477783, 1.1657119989395142, -0.19794097542762756, -0.32626980543136597, -0.14214789867401123, 0.2784809470176697, -0.41835540533065796, -0.08101370185613632, -0.23979578912258148, 0.3655479848384857, -0.24620656669139862, 1.1791017055511475, 0.7406278252601624, 0.9455310702323914, 0.2561335861682892, 1.2915161848068237, -0.7587264776229858, -0.2160692662000656, 0.13086482882499695, 0.2933617830276489, -0.7121408581733704, 0.07973745465278625, 0.5155470371246338, -0.7274790406227112, -1.0836098194122314, 0.014693851582705975, 0.7151626348495483, -0.7138140201568604, 0.20339439809322357, -0.28294098377227783, -0.33286842703819275, -0.6840919256210327, 0.20910955965518951, 0.11153096705675125, -0.41246944665908813, -0.08688738942146301, -0.6825871467590332, -0.142588809132576, -0.7976071238517761, 0.2440856248140335, 1.0338057279586792, 0.6117250919342041, -0.18982888758182526, -0.1428823322057724, 0.2584141194820404, 0.41063302755355835, -0.5765640139579773, 0.6776542067527771, 0.6879634261131287, -0.3884379267692566, -0.02912629209458828, -0.10569184273481369, -0.36581891775131226, -0.09288721531629562, -0.14105863869190216, -0.4236699044704437, -0.8166813254356384, 0.5720030069351196, 0.3121670186519623, -0.22304922342300415, 0.43051138520240784, 0.2715664207935333, 0.19757212698459625, 0.22025255858898163, 1.584138035774231, -0.8305061459541321, -0.006476655602455139, 1.4230701923370361, 0.3997204005718231, -1.380923867225647, -0.09189843386411667, -0.8501768708229065, 0.21925146877765656, 0.44780755043029785, 0.08911523222923279, 0.6714332103729248, -0.40446552634239197, 0.7727224230766296, 0.001489236019551754, -0.25558972358703613, -0.4626349210739136, -0.46241793036460876, -1.19559907913208, -0.4583481252193451, -0.8314957022666931, -0.06068151816725731, 0.0769488513469696, -1.4852943420410156, -0.8453509211540222, -0.04891463741660118, 0.2478288859128952, -0.3500230610370636, -0.3568706512451172, 0.4482324719429016, 0.1353537142276764, -0.3282625377178192, 1.2326407432556152, -0.36309778690338135, 0.4550686478614807, 0.060273464769124985, -0.010453497059643269, -0.3393840789794922, -0.20534883439540863, 0.19139666855335236, 0.02477240189909935, -0.6732326745986938, -1.350033164024353, 0.276526540517807, -0.6713333129882812, -0.5346056818962097, 0.5489745140075684, 0.5774663090705872, 0.4733969271183014, -0.8086430430412292, -0.9693135023117065, 0.5532550811767578, 0.9041444659233093, 0.06769534945487976, -0.7270948886871338, -1.1357548236846924, -0.9344905018806458, 0.15678520500659943, -0.3025997579097748, 0.8056643009185791, -0.2685605585575104, 0.44810348749160767, 0.2343713939189911, -0.7925655841827393, -0.9636244177818298, -0.8796660304069519, 0.7894864678382874, 0.4785785675048828, -0.114455945789814, -0.5710898637771606, 0.07518327236175537, -0.3025137186050415, -0.8486092686653137, -0.6393380761146545, 0.04370792955160141, 0.32281991839408875, -0.04359692335128784, -1.131156086921692, -0.4413236379623413, -0.995685875415802, 0.10452957451343536, 0.5109044909477234, 0.8241901397705078, 0.17298977077007294, -0.2852298617362976, -1.3223897218704224, -0.09860308468341827, 1.4252010583877563, 0.2032734751701355, -0.006359881721436977, 1.2288885116577148, 0.4382171332836151, -0.10804051905870438, -0.7405375838279724, 0.10696873068809509, 0.23967598378658295, -0.8427165746688843, 0.43338289856910706, -0.6926855444908142, -0.5121281147003174, -0.40081897377967834], [-0.12617100775241852, 2.140777111053467, -2.737794876098633, 0.16213516891002655, 0.7787225246429443, -0.4163397550582886, 1.651484727859497, -0.3420312702655792, -0.23731127381324768, -0.9449273943901062, -0.9816679358482361, 0.02604692056775093, 0.7757999897003174, 0.8708007335662842, 0.7063698768615723, 0.6742120981216431, 0.42126700282096863, -0.27684932947158813, 0.4614161550998688, 1.2887362241744995, 0.0573611818253994, -0.915464460849762, -0.3088737726211548, 0.27058935165405273, -0.1970352977514267, 0.4014367461204529, -0.7151369452476501, 0.31976866722106934, -1.114963412284851, -0.9403015971183777, 1.4422187805175781, 0.3059546947479248, 0.673409640789032, 0.5067829489707947, -1.282726526260376, -0.07720385491847992, 1.0071070194244385, 0.27266114950180054, 0.13322962820529938, -0.17266307771205902, 1.9040430784225464, 0.6137620806694031, 0.012286249548196793, -1.4738571643829346, 0.06500354409217834, 0.27841371297836304, 0.896692156791687, -0.9901763200759888, 0.5518465042114258, -0.7189205288887024, 0.21246302127838135, -0.1026831641793251, -0.09212587028741837, 1.9983153343200684, 0.494423508644104, -0.9505903124809265, 0.6506442427635193, 0.6187673211097717, -0.30329230427742004, 0.22499026358127594, 0.8528380393981934, -0.04764708876609802, 0.7947022914886475, 0.3128422200679779, 0.5719015002250671, -0.31442612409591675, 0.444052517414093, -0.055767741054296494, -0.24704664945602417, 0.1574072390794754, 0.11649798601865768, -0.06528022885322571, -0.69089275598526, 0.32541289925575256, -0.8675023913383484, 0.5430732369422913, 0.5988290905952454, 0.7082121968269348, 0.07598672807216644, 0.3029678761959076, -0.7597311735153198, 0.5398284792900085, 0.7031951546669006, 0.04496161267161369, -0.40555086731910706, 0.17224948108196259, 0.8666597008705139, -0.6389669179916382, -0.5199534893035889, 1.8215599060058594, 0.30061808228492737, 0.7679665684700012, 0.9167389869689941, -0.4038281738758087, -0.7339490652084351, -0.9462106227874756, 0.38309264183044434, -1.1209654808044434, -0.20231911540031433, -0.2925732433795929, -0.34319236874580383, -0.6115019917488098, 0.6147794723510742, 1.0534260272979736, 0.2752753794193268, 1.3219512701034546, 0.033950358629226685, -1.0602291822433472, -0.16309857368469238, -0.2769054174423218, -0.5396419763565063, 0.14737266302108765, -0.2998710870742798, -1.0746088027954102, -0.19302624464035034, 1.0523157119750977, 1.1860285997390747, 0.0882207527756691, 0.48920390009880066, 0.47317224740982056, -0.5669045448303223, -0.5531051158905029, -1.069648265838623, 0.10392805188894272, 1.1589058637619019, -0.08327940851449966, -1.0542021989822388, -0.0870092436671257, 0.004629767499864101, 0.15347440540790558, 1.1274967193603516, 0.08832574635744095, -0.5179969668388367, 1.148095726966858, -0.3344520926475525, 1.544316053390503, -0.9248018264770508, -0.7680881023406982, 0.40013784170150757, 0.22879907488822937, 0.16274259984493256, -0.34646451473236084, -0.2442648708820343, -0.2617034912109375, 0.12010625004768372, -0.844317615032196, 0.45815393328666687, -0.39029863476753235, -0.7653566002845764, 0.47877180576324463, -1.5829052925109863, 0.5326825976371765, -0.3642112612724304, 0.8567711710929871, 0.44592317938804626, -0.3555004298686981, 0.020007766783237457, -0.10338927060365677, 0.25652971863746643, 0.7848075032234192, 0.40854254364967346, -0.11694321781396866, -0.7769070863723755, 0.550237774848938, 0.5980194211006165, -0.5546010136604309, 0.746163547039032, 0.2218039184808731, -0.729644238948822, 0.9511281251907349, -0.2504809498786926, -0.961401641368866, -0.78977370262146, 0.14074619114398956, -0.04877573251724243, -0.3141336441040039, 1.167296051979065, -0.013673360459506512, -1.2308083772659302, -0.7844587564468384, 1.0372921228408813, -0.9157620072364807, -0.1519673615694046, -0.30178403854370117, 0.5686970949172974, -0.4938645660877228, 0.02133309096097946, -0.08011932671070099, -0.8800948262214661, -0.5976709127426147, -0.728952169418335, -0.3018870949745178, -0.9237444400787354, 0.4339899718761444, -1.0959410667419434, -0.5155401825904846, 0.8160430192947388, -1.250052809715271, -0.8868604302406311, -0.4639632999897003, 0.1276794672012329, -0.8670743107795715, -1.0514404773712158, -0.047312621027231216, -0.7256721258163452, 0.6106847524642944, -0.7414541244506836, 0.5693246722221375, -0.5307636260986328, 0.3568367660045624, 0.6565868258476257, -0.5908677577972412, -1.3774160146713257, 0.3808172345161438, 0.5368850231170654, -1.9387776851654053, 0.6312978863716125, 0.5039934515953064, 0.28843894600868225, 0.4655402898788452, -0.3009064793586731, 0.2738681733608246, 0.7886595129966736, -0.28232094645500183, 0.5995785593986511, -0.6356359124183655, 0.31197232007980347, -1.063065767288208, -0.3600751459598541, 0.14785993099212646, -0.4140434265136719, -0.48421812057495117, 0.8329055905342102, -0.005188025534152985, -1.4684773683547974, 0.6194528937339783, -0.3651811480522156, 0.4283301830291748, 0.2530430257320404, 1.2871719598770142, 0.8892791867256165, 0.4102827310562134, -0.10277727246284485, -0.8043472766876221, -0.6804500818252563, 0.25724509358406067, 0.7828910946846008, -0.36716774106025696, 0.34878480434417725, 1.0581841468811035, 0.8894430994987488, -0.7532637119293213, 0.5378698110580444, -0.4372972846031189, 0.05004142224788666, -1.7835407257080078, -0.011294822208583355, -0.08301512151956558, -1.2705957889556885, 1.6058039665222168, 0.7910307049751282, -1.7275543212890625, -0.05028179660439491, 0.03537740558385849, 0.14211930334568024, -0.11145573109388351, -0.30863142013549805, -0.7830798625946045, 0.2130475640296936, 0.060660604387521744, -0.2483842968940735, -0.3567095696926117, -0.5371647477149963, 0.710787296295166, -0.4814799129962921, -0.5337105989456177, -0.20539866387844086, 0.6485052704811096, -0.15235300362110138, 0.848440945148468, -0.18709661066532135, -2.0170812606811523, -0.7443179488182068, 0.6150157451629639, 1.0438615083694458, 0.13080452382564545, 0.2703540325164795, 0.7985115647315979, 1.0595502853393555, 0.8977057933807373, 0.5357905030250549, 0.1513601392507553, 0.2591378092765808, 0.12071847170591354, 0.49154412746429443, -0.07389723509550095, 0.6123545169830322, -0.7086358666419983, -0.9521704316139221, -0.6605991721153259, 0.35444992780685425, 1.5834693908691406, 0.6984046101570129, 1.0343137979507446, -0.33882197737693787, 0.027561824768781662, -1.01920485496521, -0.2431531697511673, -1.3148391246795654, -0.11364983022212982, -0.3539469838142395, -1.3413447141647339, -0.6420601010322571, -0.42582014203071594, -0.19656872749328613, -0.10303676873445511, 0.6564950942993164, 0.678692102432251, 0.09406892955303192, -0.2205274999141693, -0.5143467783927917, -0.745018482208252, 0.26511815190315247, -0.9260185360908508, 0.70889812707901, 2.0742621421813965, -1.282819390296936, 0.2637926936149597, 1.0032762289047241, 0.04358680173754692, 0.1411820650100708, 0.047715891152620316, 1.0911080837249756, -1.1622405052185059, -0.6291972994804382, -0.25404971837997437, 1.006065845489502, 0.24140003323554993, -0.4652804136276245, -0.4806522727012634, 0.37567606568336487, 0.7430411577224731, -0.25124844908714294, -0.8934726119041443, 0.8553785085678101, -1.066759705543518, -0.4120366871356964, -0.04096458479762077, 0.4677024781703949, 0.5199351906776428, -0.5304422378540039, -1.1615358591079712, -0.4545772671699524, 0.16395869851112366, -0.45204973220825195, 0.3733144700527191, 0.6312242150306702, 0.3064478933811188, -0.3132084906101227, -0.0004142001271247864, 0.8788650631904602, -0.24690595269203186, 0.11111427843570709, -0.8854338526725769, 0.4465976357460022, 0.8504554033279419, 1.753031849861145, 0.9077293872833252, 0.3555332124233246, 0.7202708125114441, -0.6136559844017029, -0.1409491002559662, -0.22150862216949463, 0.6262388229370117, -0.15357472002506256, -0.3333766460418701, -0.08217567205429077, -0.20082208514213562, -0.12491527199745178, 0.045707523822784424, -0.2012205272912979, 0.6848695874214172, -0.5644785761833191, -1.0393356084823608, 0.8862869739532471, 0.8432913422584534, -0.6103237867355347, 0.074473075568676, -0.310324490070343, 1.2048215866088867, -0.23671990633010864, 0.33792421221733093, -0.33532530069351196, -0.32563552260398865, 0.3632393479347229, -0.8548775911331177, -0.29274991154670715, -0.34964871406555176, 0.32673001289367676, 1.1460232734680176, -1.3402169942855835, -0.31022438406944275, -0.5852128267288208, 0.26167377829551697, 0.4333832859992981, -0.2189934253692627, 0.21467629075050354, 0.7496959567070007, -0.3045620024204254, 0.06496892124414444, 0.5113336443901062, 1.399030089378357, -0.29945963621139526, -0.554039478302002, 0.474446564912796, -0.6419070363044739, 0.19930200278759003, -1.0566641092300415, -0.25503304600715637, 0.14098083972930908, -0.5258979201316833, -0.10870664566755295, 0.309774249792099, -0.21134193241596222, 2.0234475135803223, 0.5071771740913391, -0.05325400456786156, 0.2891503870487213, -0.32263055443763733, -0.7444756031036377, -0.33817487955093384, 0.27050507068634033, -0.06103389710187912, 0.3593728542327881, -0.2418016642332077, 0.4570564925670624, 0.17452684044837952, 0.20916594564914703, -0.361102432012558, 0.4501306414604187, 0.4494543671607971, 0.17845873534679413, -0.3840222954750061, 0.4424378275871277, 1.3877745866775513, 0.6641854643821716, 0.5606027245521545, -0.5546086430549622, -0.8215563297271729, 0.8588776588439941, -0.583737850189209, 0.9165441989898682, 1.1993072032928467, 0.7683313488960266, 1.5717047452926636, -1.7036948204040527, 0.18185076117515564, 0.15335765480995178, 0.3010793626308441, 0.45814305543899536, -0.20743907988071442, 0.0457761324942112, -1.3639190196990967, -0.15426023304462433, 0.3537525534629822, -0.527600109577179, 0.9604846835136414, -0.35890886187553406, 0.19575665891170502, 1.1639299392700195, -0.7347555756568909, -0.12017179280519485, -0.977177083492279, -0.05027628690004349, -0.6927326321601868, -0.4833911955356598, 0.7977586388587952, 0.971522867679596, 1.4209673404693604, 0.6383219361305237, -0.16228529810905457, -1.1723655462265015, 0.7021793127059937, -0.7475099563598633, 0.4552399516105652, -0.47371169924736023, -0.3523588180541992, -1.1256389617919922, -0.9449670314788818, -0.07800004631280899, -0.44763627648353577, -0.7008987069129944, -0.6507009267807007, -0.3133547604084015, -1.195273756980896, 0.7297230958938599, 0.7112200260162354, 0.7752401232719421, 0.2996511459350586, 0.35449934005737305, 0.8201146721839905, 0.5375385880470276, -0.515080451965332, 0.49311065673828125, -0.09239544719457626, 0.09222757816314697, 0.019682491198182106, -0.6380868554115295, -0.8953542113304138, 0.32767271995544434, 0.7528389692306519, -0.3410777151584625, 0.8040735721588135, 1.155394434928894, 1.3397583961486816, -0.607506275177002, -0.6305355429649353, 0.6366533637046814, -0.08060025423765182, 1.1626880168914795, 0.7913520336151123, -0.8009238243103027, -0.1535487323999405, -0.20547038316726685, -1.5491846799850464, 1.7176891565322876, -0.13814154267311096, -0.20774498581886292, 1.1695736646652222, 0.6319512724876404, 0.3196985125541687, 1.0239663124084473, -0.2568110227584839, -0.16201455891132355, 0.19772779941558838, 0.22246548533439636, -0.8258199095726013, 0.8754560351371765, 1.065918207168579, 0.07775135338306427, -1.2403441667556763, -0.34811875224113464, -0.3689514994621277, 0.2618376910686493, -0.6270288228988647, -0.4356992244720459, 0.26799604296684265, 0.08887138217687607, -0.1862489879131317, -0.793476402759552, 0.5149916410446167, -0.7919977307319641, 0.8219414353370667, 0.06055428460240364, 0.9385190010070801, 0.5181710720062256, -0.05023384466767311, 0.6937915086746216, -0.5921710729598999, -0.5825791954994202, -0.3452993333339691, -0.11115086078643799, 0.9908320307731628, 0.41609880328178406, 0.6035194993019104, 0.2580511271953583, -0.3271504342556, -0.5216813087463379, -0.1431797444820404, -0.5215504765510559, 1.2255215644836426, -1.169210433959961, 0.14948196709156036, -0.6735367774963379, -0.5266090035438538, -0.0186595618724823, 0.3011777997016907, 0.9782189130783081, -1.045871615409851, -0.9728691577911377, -0.452725350856781, -0.18197713792324066, 0.5483517646789551, -0.8434931039810181, 0.40609392523765564, 0.454638808965683, -1.233652949333191, 0.6272796392440796, -0.2685076594352722, -1.3662241697311401, -0.18081799149513245, -1.535975456237793, 0.9905965924263, -0.08244038373231888, -0.21446757018566132, 0.17010581493377686, 0.7517043948173523, -1.0321239233016968, -1.0706398487091064, -0.7856003642082214, -0.3313194513320923, 0.9784389138221741, 1.0092962980270386, -1.1245366334915161, 1.638195514678955, 0.08342036604881287, -0.6553676128387451, -0.6705015301704407, -0.18236729502677917, -1.3678115606307983, -0.21676984429359436, 0.022290097549557686, 0.6011333465576172, 0.149294912815094, 1.6814517974853516, 0.627448320388794, 0.639701783657074, 0.39299941062927246, 1.55045747756958, -0.8219792246818542, -1.0546661615371704, 0.026648536324501038, 0.5937978029251099, -1.0685746669769287, -0.6562957763671875, 0.07517131417989731, -0.7375265955924988, -1.2818528413772583, 0.24732908606529236, 1.0419187545776367, -0.27459436655044556, 0.5753753185272217, 0.02185504510998726, 0.0841745138168335, -0.8276011943817139, 0.6651975512504578, 0.1911165565252304, -1.033196210861206, -0.20887067914009094, -0.89073246717453, -0.02712726779282093, -1.127271056175232, -0.27180564403533936, 0.4132842719554901, 0.22322265803813934, -0.49690091609954834, 0.3888947069644928, 0.4057655334472656, 0.3907335698604584, -0.43369483947753906, 1.2662156820297241, 0.984082818031311, -0.2628629505634308, 0.13952970504760742, 0.2198757827281952, -0.46491938829421997, -0.6454836130142212, -0.22103925049304962, -0.005085172597318888, -0.41251957416534424, 0.3718979060649872, -0.037565458565950394, 0.11511442065238953, -0.3760407865047455, 0.5490120649337769, 0.10867255181074142, 0.6111723780632019, 1.2705698013305664, -0.7865809202194214, -0.5658290982246399, 0.8264220356941223, 0.6304815411567688, -1.1039221286773682, -0.2814882695674896, 0.33710208535194397, 0.2653002440929413, -0.5548049807548523, 0.04570821300148964, 0.8345341682434082, -0.9409414529800415, 0.3747967779636383, -0.1149340346455574, -0.08468741178512573, -0.2023490071296692, -0.5984501838684082, -1.6110726594924927, -0.4726727306842804, -0.6454499363899231, -0.4488157629966736, 0.5767198204994202, -0.7506507039070129, -0.9138852953910828, -0.3686307370662689, 0.05174756050109863, 0.14923566579818726, -0.03214147686958313, 0.037529658526182175, -0.3060947358608246, -0.30707037448883057, 1.871910810470581, -0.23894526064395905, 1.0546029806137085, -0.06903799623250961, -0.18176710605621338, 0.02316359244287014, -0.05797488987445831, -0.228787362575531, 0.04154670238494873, 0.26413723826408386, -0.6209182739257812, 0.16416555643081665, -0.40846747159957886, -0.2447177767753601, 0.3253440856933594, -0.2097276747226715, 0.20076078176498413, -0.591088056564331, -1.0318140983581543, 0.6880998015403748, 0.7439917922019958, -0.2311573177576065, -0.4597312808036804, -0.8519189953804016, -0.8529258370399475, 0.3914773166179657, -0.5857734680175781, 0.22895079851150513, -0.583125114440918, 0.8980972170829773, 0.6406363844871521, -0.9465550184249878, -0.5718305706977844, -1.030281662940979, 0.9495546221733093, 0.1387467384338379, 0.5042203664779663, -0.0672699585556984, 0.20083379745483398, 0.04256730526685715, -1.2099688053131104, -0.5951896905899048, -0.15693241357803345, -0.2746284306049347, 0.38876935839653015, -0.8575990200042725, 0.11604388058185577, -0.6430335640907288, -0.004285167902708054, 0.5531114339828491, 0.2209642380475998, 0.727091908454895, 0.3832550346851349, -1.6678540706634521, -0.1371716409921646, 0.4758688807487488, 0.7722764611244202, 0.756604790687561, 1.5385289192199707, 0.8451356291770935, 0.29940301179885864, 0.14575760066509247, 0.3018321096897125, 0.657226026058197, -1.1071110963821411, -0.28089624643325806, -0.8295450806617737, -0.3296565115451813, 0.1483272761106491], [0.529283344745636, 1.777596116065979, -2.231405019760132, -0.4371163845062256, 0.6981003880500793, -0.5900915861129761, 0.3602549135684967, -0.18411624431610107, 0.17992709577083588, -1.3284322023391724, -0.4726830720901489, 0.5274671912193298, 0.37142908573150635, 1.1287740468978882, 0.1723109781742096, -0.04580159857869148, 0.5019378662109375, -0.0017238417640328407, 0.1959438920021057, 0.8117348551750183, 0.014321304857730865, -1.7640070915222168, -0.41136011481285095, 0.6957665085792542, 0.2728911340236664, -0.4741354286670685, -1.2819887399673462, -0.6428653001785278, -1.5447137355804443, -1.2865817546844482, 1.10051691532135, 0.03447801247239113, -0.24315394461154938, 0.4109814763069153, -1.020035982131958, -0.6669421792030334, -0.020842012017965317, -0.1402151733636856, -0.4840123951435089, 0.69529789686203, 1.169460415840149, 1.0184242725372314, -0.8663296103477478, -1.8561207056045532, 0.6213609576225281, -0.38482964038848877, 1.3083797693252563, -1.0231682062149048, 0.8267298936843872, -2.0499813556671143, -0.1474127322435379, -0.14763705432415009, 0.11578574031591415, 0.9329971671104431, 1.170278787612915, -1.1589525938034058, 0.17436937987804413, 0.30577853322029114, -0.1645761877298355, 0.1445881873369217, 0.6669508218765259, 0.2249913066625595, 0.6321002840995789, 0.7200407385826111, 0.5522763729095459, 0.228913813829422, 0.9326238632202148, -0.2469618022441864, 0.2369266301393509, -0.45694664120674133, 0.5822687745094299, 0.359366774559021, -0.6282452344894409, 0.7120192646980286, -0.3436562120914459, 0.21513690054416656, 0.493226557970047, 0.32114535570144653, -0.6826983094215393, 0.856585681438446, 0.1492006629705429, -0.4845096468925476, -0.16560806334018707, -0.9320439100265503, -0.10870122164487839, 0.3189989924430847, -0.1805996596813202, 0.23012419044971466, -0.1164267286658287, 1.1106655597686768, 0.3425861895084381, -0.10878568142652512, 0.6403477787971497, -0.22645725309848785, 0.2088855803012848, -0.9049047231674194, -0.33503997325897217, -1.0730786323547363, -0.7034355998039246, 0.1291164755821228, -0.930592954158783, -1.2668790817260742, 1.0596431493759155, 0.7162429094314575, 0.10180847346782684, 1.4127565622329712, -0.4046684503555298, -1.0788098573684692, 0.14316117763519287, 0.019822610542178154, 0.19883723556995392, -1.1804773807525635, -0.8011431097984314, -1.8445887565612793, 0.34062522649765015, 0.9093312621116638, 2.0063157081604004, 0.23878170549869537, 0.9947343468666077, 0.4333764910697937, -0.5983856320381165, -0.6018396615982056, -0.8648263812065125, 0.5235459804534912, 1.3301634788513184, -0.5644363164901733, -0.6210448145866394, -0.4329858124256134, 0.5240633487701416, -0.09322740882635117, -0.09260711073875427, 0.023346666246652603, -0.4756932258605957, 0.7042363882064819, 0.24068337678909302, 1.3446530103683472, 0.10784821957349777, -0.9583316445350647, 0.28824129700660706, 0.8018147945404053, 0.3588191866874695, -0.4088488519191742, 0.0687498226761818, -0.5786935687065125, -0.02323964610695839, -0.07345763593912125, -0.02123439311981201, -0.07772257924079895, -0.6826692819595337, 0.7580647468566895, -1.4035152196884155, -0.49143683910369873, -0.5356159806251526, 0.744627833366394, 0.7845311760902405, 0.03923296183347702, -0.22864815592765808, -0.32311028242111206, 0.2528128921985626, 0.04952521622180939, 0.6808951497077942, -0.24431410431861877, -0.6212717890739441, 0.8637309670448303, 0.4100182354450226, -0.4819081127643585, 0.6212136149406433, 0.13343480229377747, -0.33476853370666504, 0.5111857652664185, -0.2802669107913971, -0.3949710726737976, -0.9357203245162964, 0.0022412813268601894, 0.15928606688976288, -0.34223997592926025, 1.0526220798492432, -0.4999617040157318, -0.8802192807197571, -1.0315179824829102, 1.0249497890472412, -0.41147223114967346, 0.7461709976196289, -0.345464289188385, 0.33031368255615234, 0.2868092358112335, 0.5073620080947876, -0.4710387587547302, -0.639151394367218, -1.1942535638809204, -0.08340699225664139, -0.8937990069389343, -1.0615712404251099, 0.6678644418716431, -0.8314374685287476, -0.5741541385650635, 0.4241439402103424, 0.040629152208566666, -0.2102908492088318, 0.21526923775672913, 0.3739624321460724, -0.12477215379476547, -1.5570383071899414, 0.2654419541358948, 0.18821333348751068, 0.5642646551132202, 0.2501348555088043, 0.31004059314727783, -0.621213972568512, 0.09377254545688629, 1.6226911544799805, -0.6038832664489746, -1.4212117195129395, 1.014397382736206, 0.121945321559906, -1.0746266841888428, 0.8430598974227905, -0.060268040746450424, -0.10351934283971786, -0.10803411155939102, -0.12562119960784912, 0.3315684497356415, -0.08064288645982742, -1.032779335975647, -0.015535637736320496, 0.13894782960414886, -0.6961535215377808, -1.610395908355713, -0.4551469683647156, -0.027571920305490494, -1.0395981073379517, -0.7601747512817383, 0.42414820194244385, 0.7881050109863281, -1.2798166275024414, 0.5739898085594177, 0.2729811370372772, 0.9554727673530579, 0.3204593062400818, 0.54783034324646, 0.7381147742271423, 0.7441215515136719, -0.22870731353759766, 0.22715197503566742, -0.7630503177642822, -0.5874525308609009, 0.6433262228965759, -0.45329779386520386, 0.16406886279582977, 1.6839046478271484, 0.9568126797676086, 0.08042626082897186, 0.0621931254863739, 0.22127634286880493, -0.03758317977190018, -0.8214355707168579, -0.07994308322668076, 0.38705018162727356, -0.9425302743911743, 1.0312594175338745, 0.6962003111839294, -1.295491099357605, -0.45212990045547485, -0.2221098691225052, 0.16507893800735474, -0.42814207077026367, -0.40888020396232605, -1.1694685220718384, 0.5776873826980591, -0.33072078227996826, -0.29487767815589905, 0.25937697291374207, 0.16148117184638977, 0.833008885383606, -0.3929401636123657, -0.4273856580257416, 0.9839159250259399, 0.35767170786857605, 0.32581567764282227, 0.7863816022872925, -0.9875501990318298, -1.0902316570281982, -1.445202112197876, 0.46978482604026794, 0.09471201151609421, -0.14842747151851654, -0.26701098680496216, 0.9955323934555054, 0.7429524660110474, -0.1361914724111557, 0.048545993864536285, -0.6342526078224182, 0.641236424446106, -0.6717370748519897, 0.801183819770813, 0.28303202986717224, 0.5003225803375244, -0.43819767236709595, -0.4805590510368347, -0.751533567905426, 0.5764667987823486, 0.8219207525253296, 0.7741528153419495, 1.4714829921722412, -0.5949717164039612, -0.00016672443598508835, -0.36088827252388, 0.03290024772286415, -0.16886594891548157, 0.5109575986862183, 0.10174276679754257, -0.6159453988075256, -0.3556785583496094, -0.430550754070282, -0.16100747883319855, 0.4200294315814972, -0.16128845512866974, 1.3177392482757568, 0.35793519020080566, 0.019149918109178543, -1.3397984504699707, -0.719451367855072, -0.6113576889038086, -0.9537661075592041, 0.6981897950172424, 1.1995880603790283, -1.1912007331848145, 0.5158299207687378, 0.24774613976478577, 0.007038983516395092, -0.03538966178894043, 0.700273871421814, 0.2568415105342865, -1.3263541460037231, 0.02098015882074833, 0.0515548475086689, 1.2763639688491821, 0.6449270248413086, -0.4994822144508362, -0.2012423872947693, 0.8101553320884705, 0.17126193642616272, -0.7934517860412598, -0.8828374743461609, 0.7613084316253662, -0.43452051281929016, 0.23012611269950867, -0.5565196871757507, 0.3735242187976837, 0.5774341821670532, -0.9558819532394409, -0.43824031949043274, -0.25549963116645813, -0.14569923281669617, -0.41350051760673523, 0.028846079483628273, 0.07980265468358994, 0.6459868550300598, 0.3364603817462921, 0.2604750692844391, 1.0000272989273071, 0.2988559901714325, 0.09908659756183624, -0.5395143628120422, 0.5510013103485107, 0.231537863612175, 1.9870381355285645, 0.33012208342552185, 0.4871467351913452, 0.053818557411432266, -1.0681092739105225, -0.5698899626731873, 0.6638150811195374, 0.9420853853225708, -0.23591248691082, -0.7414833903312683, -0.5144739151000977, -0.44129329919815063, -0.3175913095474243, 0.07977787405252457, -0.4641363322734833, -0.23565636575222015, -0.5084084868431091, -0.5539388060569763, 1.2354419231414795, 1.0048877000808716, 0.3247770071029663, -0.9291442036628723, 0.04645572602748871, 0.32625794410705566, -0.7579398155212402, 0.6598702073097229, -0.3562958240509033, -0.458610862493515, 0.8424984216690063, -0.2931683659553528, -1.0119167566299438, -0.4990650713443756, -0.043227940797805786, 1.5957499742507935, -1.8176372051239014, -0.07027559727430344, -0.03530336171388626, 0.19917836785316467, 1.0700677633285522, 0.5911745429039001, 0.6087769269943237, 0.4311509132385254, 0.4488808512687683, 0.07468437403440475, 0.8832243084907532, 1.2347934246063232, -0.2020082175731659, -0.22848770022392273, -0.07686448842287064, 0.13152474164962769, 0.5236838459968567, -1.222127079963684, -1.05825674533844, 0.4742569327354431, -0.5571457743644714, 0.10921689867973328, -0.21691463887691498, 0.22189536690711975, 1.4125680923461914, 0.26789388060569763, 0.3288784623146057, 0.1808302253484726, 0.6041762232780457, -0.3023304045200348, -0.3190751373767853, 0.17728425562381744, -1.2051537036895752, -0.2749515473842621, 0.21567299962043762, 0.37264707684516907, 0.6086418032646179, 0.2098798006772995, 0.5981932878494263, 0.9929490089416504, 0.619361162185669, 0.17036795616149902, -0.691021203994751, 0.41078558564186096, 1.1069880723953247, 1.043913722038269, 0.680070161819458, -0.08576942980289459, -0.9245871305465698, 1.9681243896484375, -0.3013067841529846, 0.01915881596505642, 1.1040363311767578, 0.4011821150779724, 1.053246021270752, -0.9073876142501831, -0.5392833352088928, 0.5948002934455872, 0.28302985429763794, 0.05600791797041893, -0.7232152819633484, 0.5178641676902771, 0.14914782345294952, 0.11201466619968414, 0.827401340007782, -0.513611376285553, 0.9266217350959778, -0.13078425824642181, 0.7112016677856445, -0.18193396925926208, -0.7858514785766602, 0.28541305661201477, -1.587617039680481, -0.20313480496406555, -0.2575279474258423, 0.2569773495197296, 1.2013239860534668, 0.6889523267745972, 0.5654489398002625, 1.1315654516220093, -0.017473358660936356, -1.1180448532104492, 0.012772220186889172, -0.7423231601715088, 0.42166104912757874, -0.913622260093689, 0.38698962330818176, -0.8364193439483643, -0.4648905098438263, 0.17763425409793854, -0.4674246907234192, 0.004513752181082964, -0.08748728781938553, -0.061415430158376694, -0.16836392879486084, 0.2417161762714386, 0.728285551071167, 0.2523396909236908, -0.24609270691871643, 0.55548095703125, 0.7134325504302979, 0.4184228181838989, -1.1755900382995605, -0.04704843834042549, 0.6422684788703918, -0.006037639919668436, -0.4131728410720825, -0.32887840270996094, -0.8318613171577454, 0.4749329388141632, 0.7595924735069275, -0.6415053606033325, 0.20213940739631653, 0.7062864303588867, 1.6082940101623535, -0.6615599989891052, -1.145062804222107, 0.41177091002464294, -0.3442063331604004, 0.6775617599487305, 0.2657434940338135, -1.2431098222732544, 0.1724463701248169, -0.5444082617759705, -1.8140287399291992, 1.7777975797653198, -0.1370764523744583, 0.39435189962387085, 0.9896835088729858, 0.9830172657966614, 0.030822481960058212, 1.068548321723938, -0.27451708912849426, 0.6463091969490051, 0.05818258970975876, 0.019542807713150978, -0.6954532265663147, 0.8271361589431763, 1.1508406400680542, -0.14043280482292175, -1.399189829826355, 0.3210969567298889, 0.35190731287002563, -0.23425878584384918, 0.10790847986936569, 0.0911419615149498, 0.5644069910049438, 0.31868231296539307, -0.1163366287946701, -1.0651071071624756, 0.6286212205886841, -0.7645120620727539, 0.43923625349998474, 0.7006645202636719, -0.2045779526233673, 1.0050534009933472, 0.24445614218711853, 0.5513655543327332, -0.5775145888328552, -0.510343611240387, 0.05729149281978607, -1.4807366132736206, 1.2819558382034302, 0.830734372138977, 0.27868926525115967, 0.46395018696784973, -0.3131720721721649, -1.4167728424072266, -0.30806219577789307, -0.5728585720062256, 0.95635586977005, -0.7675740122795105, -0.9601601362228394, -0.9081007242202759, -0.8582347631454468, -0.04750354588031769, 0.8567890524864197, 0.3252195417881012, -0.9101584553718567, -0.9718698263168335, -0.14564259350299835, 0.35270896553993225, 0.9440844655036926, -1.0910899639129639, 0.21231579780578613, -0.1809171587228775, -1.5719422101974487, 0.3130834102630615, 0.6032695770263672, -1.424250602722168, -0.7230417132377625, -1.007979393005371, 0.720781147480011, 0.5155615210533142, -0.8344572186470032, 0.42347559332847595, 0.8561023473739624, -0.9579421281814575, -0.7443863749504089, -0.9008241891860962, -0.5665503144264221, -0.32813405990600586, 0.7982804179191589, -0.3891195058822632, 0.7966756820678711, -0.9203503131866455, -0.02152649126946926, -0.3927473723888397, 0.47897619009017944, -0.9887900352478027, -0.042473480105400085, -0.12630952894687653, 0.17579255998134613, -0.4817064702510834, 1.3005549907684326, 0.9212307929992676, 1.0021330118179321, 0.13042721152305603, 1.5183355808258057, -0.4462451934814453, -0.49571672081947327, -0.182966411113739, 0.6445950269699097, -0.8186913132667542, -0.4593225419521332, 0.08240850269794464, -0.856704592704773, -0.6328145265579224, -0.059154413640499115, 0.7527234554290771, -1.448789358139038, 0.7549104690551758, -0.5071024298667908, -0.12771360576152802, -0.5445398688316345, 0.3873920440673828, 0.7543158531188965, -0.23641614615917206, 0.01721153035759926, -0.5739631056785583, 0.36321336030960083, -0.6935279369354248, 0.45896121859550476, 0.748447597026825, 0.7531255483627319, 0.08507968485355377, 0.1540931612253189, 0.5417753458023071, 0.2698271870613098, -0.5604487061500549, 1.0774544477462769, 0.6417823433876038, -0.25608277320861816, 0.034487009048461914, 0.5489234328269958, 0.06557857990264893, 0.2071988731622696, -0.1307019144296646, -0.7161892652511597, -0.6466512084007263, 0.5491270422935486, -0.17029103636741638, 0.95968097448349, -0.6796301007270813, 0.6448642015457153, -0.020228099077939987, 0.8424146771430969, 1.107730507850647, -0.49278801679611206, -0.003350885584950447, 0.9450220465660095, 0.44194844365119934, -0.46384504437446594, -0.08062362670898438, 0.474032998085022, 0.234438955783844, 0.732621431350708, 0.6692705154418945, 0.5356311798095703, -0.42320865392684937, 0.22469857335090637, 0.8550353646278381, -0.4774613082408905, -0.6853563189506531, -0.06992843002080917, -0.9627870321273804, -1.0207489728927612, -0.1604115217924118, -0.5971438884735107, -0.21579895913600922, -1.2143713235855103, -0.950569748878479, 0.5684590935707092, -0.5972971320152283, -0.15587936341762543, -0.4093417823314667, -0.6720660924911499, -0.3045380711555481, -0.6041276454925537, 0.9105282425880432, -0.36001259088516235, 1.0028349161148071, 0.25466471910476685, 0.47712182998657227, -0.28962644934654236, 0.08398765325546265, -0.19428503513336182, -0.0991937667131424, -0.10551069676876068, -0.6017253398895264, 0.005205394700169563, -0.6978960633277893, -0.11183930188417435, 0.05574502795934677, -0.637756884098053, 0.13788361847400665, -0.5242968201637268, -0.41957464814186096, 0.41950735449790955, 0.7450358867645264, -0.014497363939881325, -0.39357346296310425, -0.869627833366394, -1.1178410053253174, 0.35339829325675964, 0.10510414093732834, 0.9153594970703125, -0.1879088431596756, 0.8279122710227966, -0.20212624967098236, -0.9783636331558228, -0.358448326587677, -0.42433446645736694, 0.7092001438140869, -0.6915029883384705, 0.15281252562999725, -0.6127517223358154, -0.42350712418556213, 0.5962274074554443, -0.8043931722640991, 0.287678062915802, -0.09445653110742569, -0.2731209695339203, -0.11168154329061508, -0.5538089275360107, -1.1050047874450684, -0.3575630486011505, 0.0189411249011755, 0.4799179136753082, 0.7949811220169067, 0.8092595934867859, -0.5794654488563538, -0.7353392243385315, -0.25694552063941956, 0.9043958187103271, 0.6773070693016052, 0.7758685350418091, 1.1277655363082886, 1.2329058647155762, -0.223336860537529, -0.19209440052509308, -0.06871874630451202, -0.02446024678647518, -0.9937075972557068, 0.12880104780197144, -1.0207018852233887, -0.005575112532824278, 0.34206056594848633], [0.9876706600189209, 0.8324131369590759, -2.8793222904205322, -0.6578991413116455, 1.3979294300079346, -0.1432350128889084, 0.7877103090286255, 0.03503141552209854, -0.6995338201522827, -1.1091524362564087, -0.7884939908981323, 0.025787310674786568, 0.0795583426952362, 0.20693428814411163, 1.2233221530914307, 0.09816166013479233, 1.1594915390014648, 0.6167402863502502, 0.07665283977985382, 0.6459512710571289, -0.47315698862075806, -1.4503270387649536, -0.3032786548137665, 0.45536714792251587, -0.22785884141921997, 1.5577994585037231, -0.5456250905990601, -0.175740048289299, -1.2317570447921753, -0.5088061094284058, 1.4507105350494385, -1.000914216041565, 0.7951673269271851, -0.15877631306648254, -2.115161895751953, 0.2890744209289551, 1.5316739082336426, 0.8133525848388672, 0.5564924478530884, -0.5963462591171265, 2.2789711952209473, -0.03508258983492851, -0.08860352635383606, -1.930678129196167, -0.5834077000617981, 0.857420802116394, 0.6419271230697632, -0.4925646185874939, 0.06666533648967743, 0.08413400501012802, 0.18408913910388947, -0.7945425510406494, -0.47015389800071716, 0.9857504367828369, 1.1866393089294434, -0.796947717666626, 0.46457910537719727, 0.10017777979373932, 0.1459837257862091, -0.3509034514427185, 0.5494813919067383, -0.1668175309896469, 0.006508302874863148, 0.6377063989639282, 0.4011205732822418, -1.129871129989624, 0.1130816861987114, 0.5319966077804565, 0.3011971414089203, 0.833979606628418, 0.3286449909210205, -0.8964589834213257, -0.7716138362884521, 1.2633569240570068, -1.1502505540847778, 0.2178129255771637, 0.3713234066963196, 1.0140974521636963, 0.4258238971233368, 0.0950813814997673, -0.9457168579101562, 0.5991033315658569, 1.0249993801116943, -0.5594070553779602, -0.10905928909778595, 0.7441089153289795, 0.582192599773407, -0.8662866950035095, -0.15092864632606506, 1.8331422805786133, -0.08749961853027344, 0.8507885932922363, 0.057226795703172684, 0.10662829130887985, -0.8519163727760315, 0.01923477277159691, 0.4926633834838867, -1.1519461870193481, -0.3014865517616272, -0.39025676250457764, -0.4147697687149048, -1.0145082473754883, 0.08639083802700043, 0.4243469834327698, 0.19824042916297913, 0.4460347890853882, 0.1383979171514511, -0.3130761981010437, 0.09228971600532532, -0.0014919470995664597, -0.9127863645553589, 1.0310344696044922, -0.24043118953704834, -1.491687536239624, -0.1789221465587616, 1.0077729225158691, 1.0058624744415283, 0.36416107416152954, 0.41292303800582886, 0.836030125617981, -0.3577069044113159, -0.05552700161933899, -0.3001289367675781, 0.18012285232543945, 0.6255120635032654, -0.4909971058368683, -1.1295959949493408, -0.05661028251051903, 0.5496236085891724, -0.07109606266021729, 0.40759989619255066, -0.22423997521400452, 0.10262961685657501, 0.8423427939414978, -0.7553443312644958, 0.5207365155220032, -1.3899219036102295, -0.79167640209198, 0.05794353783130646, -0.1572745442390442, 0.8570114970207214, -0.18117676675319672, 0.022610696032643318, -0.41801175475120544, -0.28743577003479004, -0.441381573677063, 0.4947250485420227, -0.9316903352737427, -0.9367592334747314, 0.15752682089805603, -1.052929162979126, 0.3006439507007599, 0.149264395236969, 1.3513991832733154, 0.5172721147537231, -0.24199789762496948, -0.42074310779571533, 0.1308877319097519, -0.08256708085536957, 0.3734726905822754, -0.3820202350616455, -0.3595256507396698, -1.0129354000091553, 0.17724443972110748, 0.7346364855766296, -1.0318238735198975, -0.14339667558670044, 0.8149901628494263, 0.39695054292678833, 1.542586088180542, -0.36412087082862854, -0.7701443433761597, -0.7461977005004883, -0.49661314487457275, 0.4113711714744568, -0.27728691697120667, 1.4779613018035889, 0.18345525860786438, -0.708533525466919, -0.8121827840805054, 0.7877197265625, 0.19999626278877258, 0.9851524829864502, -0.43101438879966736, 0.5888046026229858, -0.1717013120651245, 0.18501216173171997, -0.539592981338501, -0.46835169196128845, -0.7261017560958862, -0.8272457122802734, -0.4391719698905945, -0.676404595375061, 0.5006812214851379, -0.2865273356437683, -1.126412034034729, 0.7287704944610596, -1.0170053243637085, -0.3659731149673462, 0.3065410852432251, 0.1053599864244461, -0.4391423463821411, -0.3397373557090759, -0.4720783531665802, -1.1970605850219727, 0.20356597006320953, -0.9465467929840088, 0.447881817817688, -0.5818580985069275, -0.887914776802063, 0.22196803987026215, -0.33153295516967773, -0.7381088137626648, 1.3091144561767578, -0.010520145297050476, -1.517677664756775, 0.6060184240341187, 0.19628265500068665, -0.3740503191947937, -0.5441226959228516, -0.370134562253952, -0.04431906342506409, 1.2094104290008545, -0.4140707850456238, 0.37457430362701416, -0.1328326165676117, 0.13911648094654083, -1.0925967693328857, -0.5277440547943115, -0.3977225422859192, -0.5988720059394836, -1.320197582244873, 0.6843120455741882, 0.08893799036741257, -1.418917179107666, 0.06301458179950714, -0.02381560578942299, 0.25752824544906616, -0.2694433629512787, 0.8251149654388428, 0.8181815147399902, 0.8049597144126892, -0.05149056762456894, -1.2803908586502075, -0.44777911901474, 1.127800703048706, 0.9872888326644897, -0.9706515073776245, -0.002296753227710724, 0.7289556860923767, 0.3141480088233948, -0.44714853167533875, 0.4556366503238678, -0.5951701998710632, 0.0805397629737854, -0.9525023698806763, -1.0421042442321777, -0.25158101320266724, -1.1334731578826904, 1.6853513717651367, 0.6907175779342651, -0.8917099237442017, 0.19027701020240784, -0.2662518322467804, -0.336509644985199, -0.46010416746139526, -0.3302091062068939, -0.5719150304794312, 0.24520288407802582, -0.12824900448322296, 0.1633186787366867, 0.09358078241348267, 0.05061463266611099, 0.7803281545639038, -0.4542834758758545, -0.576572060585022, -0.3146595060825348, 0.5716627836227417, -0.14075259864330292, 0.939865231513977, -0.30271828174591064, -0.8110654354095459, -0.4831685423851013, 0.3302972614765167, 0.2973054051399231, 0.32095474004745483, -0.4116467833518982, 0.7475977540016174, 0.9051905274391174, 0.22940969467163086, 0.43928125500679016, 0.9269957542419434, -0.42142337560653687, 0.57546067237854, 1.1373984813690186, 0.012684605084359646, 0.8514830470085144, -0.8567523956298828, -0.9446820020675659, -0.6217027306556702, 0.23789331316947937, 1.5938012599945068, 0.4757140874862671, 1.693467378616333, -0.18656302988529205, -0.2067272812128067, -0.5517213940620422, -0.5897480249404907, -0.6693121790885925, -0.49188053607940674, 0.18298855423927307, -1.4463202953338623, -0.666240930557251, -0.47356295585632324, 0.19271910190582275, 0.7574833631515503, 0.8180287480354309, 0.5441108345985413, 0.4554424583911896, -0.40680211782455444, -0.30033189058303833, -0.5783595442771912, -0.04316118359565735, -1.0189673900604248, 0.009252430871129036, 1.2336633205413818, -1.2448993921279907, 0.5849652290344238, -0.7315424680709839, -0.27269500494003296, 0.9867961406707764, -0.6383042931556702, 0.5055832862854004, -1.0952467918395996, -0.5753096342086792, 0.12892326712608337, 0.5418992042541504, -0.06806286424398422, 0.1754799485206604, -0.31347161531448364, 0.36479559540748596, 0.17807473242282867, -0.047003429383039474, -0.6510612368583679, 1.3698699474334717, -0.9602609872817993, -0.9283169507980347, -0.4962601363658905, 0.6665099263191223, 0.08831720054149628, -0.46934056282043457, -0.8562062978744507, -1.054874062538147, 0.20766358077526093, -0.4055064916610718, -0.21315759420394897, 0.03434455022215843, 0.2529923915863037, -0.12477480620145798, 1.203001618385315, 0.4807201623916626, 0.05267893522977829, -0.2008642554283142, -1.1432981491088867, 0.63059401512146, 1.5279183387756348, 2.0373716354370117, 0.9889190196990967, 0.3736332058906555, 0.22278979420661926, -0.1270517259836197, 0.6055797934532166, -0.2819984555244446, 0.965814471244812, -0.2755542993545532, -0.2119356393814087, -0.211390420794487, -0.38350504636764526, -0.11223433911800385, 0.8010473251342773, 0.8621945381164551, -0.21204964816570282, 0.02934500202536583, 0.34286099672317505, 1.5795419216156006, -0.2157275676727295, -0.4200921356678009, -0.5016849040985107, 0.07235097885131836, 1.1103639602661133, -1.4769792556762695, -0.5498745441436768, -0.31106460094451904, 0.0069613344967365265, 0.5540508031845093, -1.2028388977050781, 0.19382750988006592, 0.5872498750686646, -0.20894044637680054, 1.0184898376464844, -0.7997573018074036, -0.3541874289512634, -0.11130397766828537, 0.6986157894134521, 0.26986515522003174, -0.030279580503702164, -0.08432590961456299, 0.435960590839386, -0.7336785793304443, 0.29808852076530457, 0.24562552571296692, 1.562159538269043, -0.11185916513204575, -0.23910966515541077, 0.47716861963272095, -0.6868723034858704, 0.8462197780609131, -0.4199689030647278, -0.4663182497024536, -0.2874116599559784, -0.3392678499221802, -0.06925512850284576, 0.34604182839393616, 0.12571552395820618, 2.240083694458008, 0.28291624784469604, 0.29119521379470825, 0.034878067672252655, 0.48731493949890137, -1.134443759918213, 0.19437554478645325, 0.3576633036136627, 0.4191616177558899, -0.39158517122268677, 0.6369733810424805, 0.20524364709854126, -0.05517255514860153, 0.12896233797073364, -0.8387530446052551, 0.18350300192832947, -0.12498732656240463, -0.20538964867591858, 0.9179202318191528, 0.6691544055938721, 1.2029948234558105, 0.7020246386528015, 0.9705967903137207, -1.0542041063308716, -0.891524076461792, 0.8468866348266602, -0.07386627048254013, 0.5185453295707703, 0.9828379154205322, 0.7117762565612793, 1.229062557220459, -1.8689250946044922, 0.026720209047198296, 1.0027557611465454, -0.13396596908569336, 0.9688389897346497, 0.6092179417610168, -0.4743669927120209, -0.2930763363838196, 0.20200170576572418, 0.6227808594703674, -0.05984639376401901, 0.21520783007144928, 0.5413429737091064, 0.20404261350631714, 1.4538288116455078, -0.23252859711647034, 0.22163528203964233, -0.5580253601074219, -0.6318535208702087, 0.07218952476978302, -0.20412790775299072, 0.09481201320886612, 0.45943209528923035, 0.07386184483766556, 0.9428696632385254, 0.434385746717453, -1.1868020296096802, -0.06994122266769409, -0.23843564093112946, 0.698302149772644, -0.6453834176063538, -0.7550410628318787, -1.092254400253296, -0.31316685676574707, 0.06777868419885635, -0.26712605357170105, -0.94933021068573, -0.40686386823654175, -0.45791512727737427, -0.8282894492149353, 0.7063205242156982, 0.8236665725708008, -0.07996794581413269, 0.27457544207572937, -0.322534441947937, -0.11144295334815979, 0.2312052994966507, -0.21894557774066925, -0.2228975147008896, -0.07512693107128143, 0.19650256633758545, 0.2246645838022232, -1.199570894241333, -0.7637363076210022, -0.2902913987636566, 0.8365561962127686, 0.18835298717021942, 0.3921375274658203, 1.2368745803833008, 1.563609004020691, 0.5158115029335022, 0.16830669343471527, 0.509269118309021, -0.4855276644229889, 0.48842698335647583, 0.8884658813476562, 0.1874319612979889, 0.2343321144580841, -0.6798120737075806, -1.2129085063934326, 0.7671151161193848, -0.006186366081237793, -0.7383059859275818, 0.4823054373264313, 0.274874210357666, 0.19392351806163788, 0.23920699954032898, -0.44596147537231445, 0.3908989429473877, -0.3095518946647644, -0.5827338099479675, -0.6461755037307739, 0.7712570428848267, 0.5516498684883118, -0.017068158835172653, -0.2791042625904083, -0.1536567509174347, -0.5395808815956116, -0.03854283690452576, -0.488999605178833, 0.7713638544082642, 0.04270893707871437, 0.37084081768989563, -0.04770816117525101, 0.10043581575155258, 0.44122129678726196, -0.4312959909439087, -0.28657829761505127, -0.29136237502098083, 0.44675537943840027, 0.8191916346549988, 0.4452475905418396, 0.6014251708984375, -0.5419310927391052, -0.508155107498169, -0.6702800989151001, -0.06066185608506203, 0.7045320272445679, 1.0703089237213135, 0.5552115440368652, 0.47520673274993896, -0.6810144782066345, -0.12575861811637878, -0.4165157079696655, 0.5124810934066772, 1.9671658277511597, -0.6192066669464111, 0.10239222645759583, -0.3247903287410736, -0.6979029178619385, 0.2506428360939026, -0.2817729711532593, 0.6568926572799683, -1.0517531633377075, -1.4395701885223389, -1.799336314201355, -0.10496009886264801, 0.7161999940872192, -0.3192724883556366, 0.8561339378356934, 0.14119496941566467, -1.1564233303070068, 0.32100534439086914, 0.36065760254859924, -0.39740151166915894, 0.434865802526474, -1.4190170764923096, 0.3590858578681946, 0.6366234421730042, 0.6278972625732422, -0.5519239902496338, 1.0778882503509521, -1.521545171737671, -1.7792004346847534, -0.5813188552856445, 0.698445200920105, 1.0650063753128052, 0.5492614507675171, -1.4965202808380127, 1.5266997814178467, 0.016073256731033325, 0.052193693816661835, -0.38281646370887756, -0.31265169382095337, -0.26183438301086426, 0.3305504024028778, 0.18541398644447327, 0.9952554702758789, 0.23343077301979065, 1.4050540924072266, 0.200236976146698, 0.6680158376693726, 0.685280978679657, -0.08141452819108963, -1.1441240310668945, 0.008829042315483093, 0.20448166131973267, 0.9602909088134766, -0.46405577659606934, -0.5362012386322021, -0.1494426727294922, -0.4164119064807892, -0.5654077529907227, 0.1683332920074463, 0.859323263168335, -0.4525594711303711, 0.5737826228141785, -0.4348157048225403, 0.11522458493709564, -1.1394208669662476, 0.8534332513809204, 0.23376122117042542, -0.003035183995962143, -0.35431617498397827, 0.0027637779712677, 0.06638262420892715, -0.9174411296844482, -0.04992023482918739, 0.0480152890086174, -0.35845768451690674, -0.6020634174346924, 0.6020790338516235, -0.11170613020658493, 0.4569469690322876, -0.12722477316856384, 1.3560740947723389, 1.1565136909484863, -0.19728219509124756, 0.3435670733451843, -0.3987942337989807, 0.015118511393666267, -0.3270905315876007, -0.615084171295166, -1.3905999660491943, -0.5252599120140076, 0.4007936716079712, 0.4725446105003357, -0.19381123781204224, -0.14399990439414978, -0.07801283150911331, 0.3462798595428467, 0.47522950172424316, 0.9230031967163086, -0.9706296920776367, -0.4945090413093567, 0.8098250031471252, 0.4001767039299011, -0.48690134286880493, 0.06054473668336868, -0.06155642867088318, 0.04427281767129898, 0.008069571107625961, 0.20442143082618713, 0.35786426067352295, -0.8054747581481934, 0.17969736456871033, 0.40563762187957764, 0.47621482610702515, 0.005941152572631836, -0.12759117782115936, -1.7281148433685303, -0.32714998722076416, -1.3091638088226318, -0.0740974098443985, 1.0121320486068726, -1.1976654529571533, -0.8351417183876038, -0.06484188884496689, 0.5103741884231567, -0.09906141459941864, 0.26044437289237976, 0.1808270663022995, 0.7727693915367126, -0.4866384267807007, -0.1529739499092102, -0.648970365524292, 0.5337661504745483, 0.09630037099123001, 0.08095252513885498, -0.38866549730300903, -0.25473570823669434, 0.5843372344970703, -0.07917490601539612, 0.01638716273009777, -0.540261447429657, 0.767605721950531, -0.4747272729873657, -0.4778299331665039, 0.08552289009094238, 0.7031859159469604, 0.3881824016571045, -0.19049522280693054, -1.2354791164398193, 0.48990368843078613, 0.7664159536361694, 0.4422331750392914, -0.17760159075260162, -1.1409521102905273, -0.44948214292526245, 0.8751053810119629, -0.7974029779434204, 0.7937047481536865, 0.0685444250702858, 0.08433741331100464, 0.3514993190765381, -0.5357043743133545, -0.7354085445404053, -0.563563346862793, 0.37111419439315796, 0.17528441548347473, 0.17729264497756958, -0.014274386689066887, 0.3468266725540161, 0.00126754492521286, -1.3221514225006104, -0.4937986731529236, -0.10165026783943176, -0.4473956525325775, 0.2907163202762604, -1.0929045677185059, -0.32703858613967896, -0.6986636519432068, 0.3895445764064789, 0.6531765460968018, 0.0188225656747818, 0.7033596634864807, -0.002503514289855957, -1.6961252689361572, 0.2206541895866394, 0.3478800058364868, 0.0025282204151153564, -0.09485065191984177, 1.0672519207000732, 0.9278336763381958, 0.5154945254325867, 0.6821333765983582, -0.31945812702178955, 0.26358842849731445, -1.2703747749328613, -0.17259526252746582, -0.3295879065990448, 0.1225399523973465, -0.7553068399429321], [1.0388292074203491, 1.567883849143982, -2.4904069900512695, -0.515694797039032, 0.915591299533844, -0.6828662157058716, 0.8072577118873596, -0.49948233366012573, -0.5512784719467163, -1.3410911560058594, -0.6843780279159546, 0.20103658735752106, 0.5934271812438965, 0.4005252718925476, 0.8102210760116577, 0.0529228039085865, 0.8523557186126709, 0.8252488970756531, 0.0670025572180748, 0.49173229932785034, -0.11833344399929047, -1.5555636882781982, 0.3480704724788666, 0.11740292608737946, 0.5095639824867249, 0.28425151109695435, -0.8936201333999634, -0.4040434956550598, -1.1524879932403564, -0.9133641719818115, 1.1936594247817993, -0.7594735622406006, 0.19096918404102325, -0.17633868753910065, -1.8780667781829834, -0.1663413643836975, 0.8610876202583313, 0.6707549095153809, 0.43141260743141174, 0.41826969385147095, 2.1485300064086914, 0.09273836761713028, 0.10375551879405975, -1.525869607925415, 0.5142301321029663, -0.3379814028739929, 0.9679683446884155, -0.8250485062599182, -0.09543459862470627, -1.0545649528503418, 0.12444520741701126, -0.7444990873336792, -0.5100642442703247, 1.0151845216751099, 0.7431125640869141, -0.6986055374145508, 0.46136677265167236, 0.4055158197879791, 0.29614540934562683, -0.629552960395813, 0.5275563597679138, 0.6447892785072327, 0.6432119011878967, 0.3771354556083679, 0.08124597370624542, -0.1949702352285385, -0.20342959463596344, 0.5959240198135376, 0.28229066729545593, 0.6615482568740845, 0.48589426279067993, 0.3339070677757263, -0.6986157298088074, 0.4824283719062805, -1.2487846612930298, 0.6592370867729187, 0.7142403721809387, 0.6870344877243042, 0.09254050999879837, 0.7973145246505737, -0.7356147766113281, 0.03570730984210968, 0.10542220622301102, -0.17367422580718994, 0.22337785363197327, 0.6703660488128662, 0.609054684638977, -0.3100167214870453, -0.47640231251716614, 1.4527761936187744, 0.270381361246109, 0.6133929491043091, 0.6002998948097229, -0.5154479742050171, -0.2828904390335083, -0.8128639459609985, 0.026798121631145477, -1.1684327125549316, -0.43388301134109497, -0.3566933572292328, -0.8872619271278381, -1.2115414142608643, 0.25038576126098633, 0.6704908609390259, 0.3299235999584198, 1.079048991203308, 0.7664387822151184, -0.6972936987876892, 0.01341626513749361, -0.13585124909877777, -0.3910919427871704, 0.5022505521774292, -0.9090655446052551, -1.1414953470230103, -0.25243398547172546, 1.09296715259552, 1.5634056329727173, 0.033123619854450226, 0.631136953830719, 1.0505784749984741, -1.145463466644287, -0.48819008469581604, -1.3476792573928833, -0.4522479474544525, 1.6853383779525757, -0.09516526758670807, -1.1219193935394287, -0.04994707927107811, 0.30390357971191406, 0.16219156980514526, 0.7990823984146118, -0.03208659589290619, -0.11587761342525482, 1.0782839059829712, -0.7583678364753723, 1.2204471826553345, -0.21962818503379822, -1.532446026802063, 0.4709548354148865, 0.7088162899017334, 0.5522158145904541, 0.009418941102921963, -0.1255301833152771, -0.6365993022918701, 0.43140682578086853, -0.29341810941696167, -0.29459288716316223, 0.014138449914753437, -0.827534556388855, 0.01859487034380436, -1.409962773323059, 0.44982466101646423, -0.006000312976539135, 0.795179009437561, 0.853362500667572, -0.28494760394096375, -0.339855432510376, -0.04363316297531128, 0.0005037342198193073, 0.1494630128145218, 0.777283251285553, 0.07287537306547165, -1.1359933614730835, 0.44018304347991943, 0.9177548885345459, -0.9714818596839905, -0.10433510690927505, 0.7426918148994446, 0.1288580447435379, 1.0233519077301025, -0.287810355424881, -0.38036301732063293, -1.0030559301376343, 0.14232274889945984, 0.45825594663619995, -0.08478916436433792, 1.946171760559082, -0.0701398178935051, -0.98808354139328, -1.1073633432388306, 0.41975995898246765, -0.08389294892549515, 0.1399025321006775, -0.36196544766426086, 0.39716753363609314, -0.14582878351211548, 0.0626874640583992, -0.2986469268798828, -0.686886727809906, -1.354021668434143, -0.7401875257492065, -0.38647544384002686, -0.8123569488525391, 0.5649935007095337, -0.9661744236946106, -1.1696752309799194, 0.7811055779457092, -0.47058945894241333, -0.33088362216949463, -0.09618942439556122, 0.07007831335067749, -0.6436792612075806, -0.8404765129089355, -0.21552403271198273, -0.48157835006713867, 0.6933198571205139, -1.0004996061325073, 0.18463750183582306, -0.5226917862892151, -0.047991231083869934, 0.7538575530052185, 0.09869899600744247, -1.2976566553115845, 0.9798328876495361, -0.23153136670589447, -1.600525975227356, 0.7648420333862305, 0.27516070008277893, 0.37466269731521606, -0.20700576901435852, -0.06811463832855225, -0.19616767764091492, 0.8354578614234924, -0.37900909781455994, 0.5124250054359436, -0.07592595368623734, -0.5632182955741882, -0.9121177196502686, -0.4104178249835968, -0.2067820131778717, -0.6709931492805481, -0.9999014735221863, 0.6881538033485413, -0.0972195416688919, -0.9290722012519836, 0.4612169861793518, 0.25636908411979675, 0.5674746632575989, -0.08881620317697525, 1.013158917427063, 1.0546190738677979, 0.07052846997976303, -0.5908108949661255, -0.49145328998565674, -0.4573359489440918, -0.06551554799079895, 0.89128178358078, -0.1313430815935135, -0.12039612978696823, 1.3578583002090454, 0.9493868350982666, -0.38309717178344727, 0.7735394835472107, -0.10597545653581619, 0.05215787515044212, -1.344294548034668, -0.0478970929980278, -0.2723359167575836, -0.9665495753288269, 1.0458593368530273, 0.40985947847366333, -1.5663888454437256, 0.07452994585037231, -0.3207652270793915, -0.17717069387435913, -0.49988994002342224, -0.42731404304504395, -0.5113621950149536, 0.31503790616989136, -0.4958314299583435, -0.1460486650466919, -0.13737747073173523, -0.7005917429924011, 0.5786615610122681, -0.9624454975128174, -0.6368018984794617, 0.1176675409078598, 0.6974015831947327, -0.019256968051195145, 0.8133756518363953, -0.4486372172832489, -1.6122287511825562, -1.0461461544036865, -0.01206339243799448, 0.6938650012016296, 0.19868238270282745, -0.803758442401886, 1.2571709156036377, 1.1065839529037476, 0.3545858561992645, 0.015716370195150375, -0.03353815898299217, 0.09152548760175705, 0.049454834312200546, 0.35009005665779114, -0.05819828063249588, 0.42270219326019287, -0.6899184584617615, -0.5418137907981873, -0.5281316637992859, 0.38347846269607544, 1.2231392860412598, 0.5005708932876587, 1.2270606756210327, -0.24547044932842255, -0.403696209192276, -0.25470203161239624, 0.25722426176071167, 0.1626559942960739, 0.04937665909528732, -0.40474215149879456, -1.2590936422348022, -0.1580720990896225, -0.6503004431724548, -0.03496851027011871, 0.7826305031776428, 0.1528290957212448, 0.3914230465888977, 0.9527403116226196, 0.2979084551334381, -1.23517906665802, -0.669984757900238, 0.1727081537246704, -1.2459301948547363, -0.029363656416535378, 1.6158686876296997, -0.7942256927490234, 0.6408369541168213, -0.3255910277366638, 0.09508632123470306, 0.01210043765604496, -0.14384470880031586, 0.42141276597976685, -1.0462937355041504, -0.5258535742759705, -0.07810024172067642, 1.3116035461425781, 0.037849366664886475, 0.004713253118097782, -0.20498614013195038, 0.7448879480361938, 0.8565182685852051, -0.5239317417144775, -0.9410231113433838, 0.4510888457298279, -0.8830776810646057, -0.593591034412384, -0.4376492500305176, 0.5082554221153259, 0.3690088987350464, -0.4481005370616913, -0.6981074810028076, -0.820183515548706, -0.1239430159330368, -0.7725581526756287, 0.29353365302085876, 0.16863848268985748, 1.268547534942627, 0.0386444590985775, 0.21129857003688812, 0.9113829731941223, -0.093880295753479, 0.5518020391464233, -0.7773080468177795, 0.3252876102924347, 0.9077316522598267, 1.7776877880096436, 0.7417323589324951, 0.1715276539325714, 0.32023248076438904, 0.062037330120801926, 0.16091127693653107, -0.09943678975105286, 0.45833641290664673, -0.2522381842136383, -0.47072216868400574, -0.6637736558914185, 0.007591788657009602, 0.2357316017150879, 0.3840016722679138, 0.1938747763633728, 0.17144735157489777, -0.3672406077384949, -0.4781787395477295, 1.1157630681991577, 0.9030162692070007, 0.0687108039855957, -0.3157494366168976, -0.515767514705658, 0.5653245449066162, -0.9175154566764832, 0.08575442433357239, -0.8182470798492432, -0.23039713501930237, 0.6540822386741638, -1.3772519826889038, -0.1297990083694458, 0.5242310762405396, 0.2661263644695282, 1.175850510597229, -1.7127270698547363, -0.2615699768066406, 0.007217553909868002, 0.4642985463142395, 0.4855998158454895, -0.2644367516040802, 0.4869731366634369, -0.09459385275840759, -0.16082283854484558, 0.18555814027786255, 0.568747878074646, 1.3167086839675903, -0.4535193145275116, -0.31560301780700684, 0.3469927906990051, -0.9801556468009949, 0.15804129838943481, -0.5302351117134094, -0.4369979202747345, 0.10982999950647354, -0.09448754042387009, 0.2359112948179245, 0.06695476174354553, -0.1748872548341751, 2.2889246940612793, 0.327138215303421, 0.14889779686927795, 0.26908746361732483, 0.633912980556488, -0.9736401438713074, 0.49495571851730347, 0.4146591126918793, -0.13055749237537384, -0.3451496660709381, -0.012355568818747997, -0.09366992115974426, 0.40795981884002686, 0.4103821814060211, 0.019229935482144356, 0.4481421709060669, 0.48267295956611633, 0.6692612767219543, 0.17383091151714325, 0.05230049043893814, 1.1964448690414429, 0.7311005592346191, 1.1186723709106445, -0.4439416527748108, -1.1678102016448975, 0.8057950735092163, -0.3758367598056793, -0.10012511163949966, 1.2121020555496216, -0.14811567962169647, 1.4023696184158325, -1.0960594415664673, -0.4453100562095642, 0.6628199815750122, 0.16710326075553894, 0.39466822147369385, 0.39078453183174133, 0.2608223259449005, -0.7736903429031372, 0.16975006461143494, 0.7162264585494995, -0.5823894143104553, 0.1390271633863449, 0.090408094227314, -0.2854645848274231, 0.6568803191184998, -0.8595523238182068, 0.21839794516563416, -1.1308566331863403, -0.35354432463645935, 0.05949772149324417, -0.1733214557170868, 0.8711475729942322, 1.046708583831787, 0.6834133863449097, 0.8219563364982605, -0.15794098377227783, -1.8724775314331055, 0.060636006295681, -0.49865445494651794, 0.14660730957984924, -0.8046566247940063, -0.019794046878814697, -0.844019889831543, -0.4365234375, 0.33586063981056213, -0.11074209958314896, -0.295194536447525, -0.09135713428258896, 0.0376865528523922, -0.6996151208877563, 0.661953330039978, 0.3808269202709198, 0.3656686544418335, 0.16806356608867645, 0.383924275636673, 0.1617993265390396, 0.9020655751228333, -0.771645188331604, 0.3779583275318146, 0.1457848995923996, 0.020355818793177605, 0.21413739025592804, -0.7772313356399536, -0.7601361274719238, 0.2548045516014099, 0.8692829608917236, -0.03083168901503086, 0.23812933266162872, 0.950456976890564, 1.9345357418060303, -0.5100042819976807, -0.3949372470378876, 0.6658359169960022, -0.7855730652809143, 0.5826995372772217, 0.44561097025871277, -0.41539686918258667, -0.3480057716369629, -0.34891030192375183, -1.245039701461792, 1.4420294761657715, 0.42564958333969116, -0.32736852765083313, 0.6251211762428284, 0.37795764207839966, 0.7433628439903259, 0.9825557470321655, -0.9619002938270569, 0.40845948457717896, -0.06220811605453491, -0.5198032259941101, -0.8403013348579407, 0.6863952875137329, 0.4166455566883087, 0.06061389669775963, -1.031178593635559, 0.17420434951782227, 0.1203480139374733, -0.12666255235671997, -0.4857502281665802, 0.1247834712266922, 0.7343173027038574, 0.38726943731307983, 0.35114941000938416, -0.5969054102897644, 0.27762725949287415, -0.502720832824707, 0.07545952498912811, 0.022577127441763878, 0.33460599184036255, 0.8176268935203552, 0.2545575797557831, 0.5694618821144104, -0.4884565472602844, -0.6056288480758667, -0.05290069431066513, -0.7419776916503906, 1.2716484069824219, 1.2009530067443848, 0.7628886103630066, 0.15996050834655762, -0.4594394862651825, 0.06550364196300507, -0.2895948588848114, -0.06773431599140167, 1.2860057353973389, -0.7488847970962524, -0.2011062651872635, 0.06305969506502151, -0.6665914058685303, 0.47307848930358887, 0.07351477444171906, 0.3775009214878082, -0.976658284664154, -0.9269652962684631, -0.7223376035690308, -0.05674237757921219, 1.2749208211898804, -0.5552582144737244, 0.038898590952157974, 0.4237866699695587, -0.9998312592506409, 1.1929066181182861, 0.5401490926742554, -1.1766597032546997, -0.3107815086841583, -0.6677795648574829, 1.1178853511810303, 0.38446271419525146, -0.02610034868121147, 0.6505349278450012, 1.2400481700897217, -1.0089589357376099, -1.781479001045227, -0.9017438888549805, -0.08063139766454697, 0.748066782951355, 0.7568623423576355, -1.437364935874939, 1.4628698825836182, 0.08760825544595718, -0.1690334975719452, -0.038945335894823074, -0.42725077271461487, -0.8156833648681641, 0.1700161099433899, 0.4062287509441376, 0.2215748429298401, 0.2522982060909271, 1.1939691305160522, 0.6427499055862427, 0.7818356156349182, 0.29911887645721436, 1.174239158630371, -0.83693528175354, -0.05175900086760521, -0.05182167515158653, 0.9551178812980652, -0.8844079375267029, -0.9099213480949402, -0.10325223207473755, -0.8527334928512573, -0.9480119943618774, 0.23485659062862396, 0.7950682640075684, -0.6230829358100891, 0.7044721245765686, -0.5612415075302124, -0.3567650318145752, -1.2261862754821777, 0.41988444328308105, 0.06933467090129852, -0.799114465713501, 0.8350582122802734, -0.25130337476730347, 0.3402731418609619, -1.0808771848678589, -0.22121216356754303, 0.14737661182880402, 0.11648274213075638, -0.8309782147407532, 0.4354381859302521, 0.19803652167320251, -0.06633666157722473, -0.24489738047122955, 1.558699131011963, 0.9810366630554199, -0.18851332366466522, 0.2820900082588196, 0.31010985374450684, -0.06241649389266968, -0.47099193930625916, -0.161422997713089, -1.247193455696106, -0.6679098606109619, 0.5331541299819946, 0.823333740234375, 0.42814865708351135, -0.47179919481277466, 0.5234841108322144, 0.43140676617622375, 0.020650113001465797, 1.4390543699264526, -1.0053973197937012, -0.4049680233001709, 0.6107494235038757, 0.5529652833938599, -0.8656831383705139, -0.5488266348838806, -0.08799475431442261, 0.07911214977502823, 0.22539174556732178, 0.5215434432029724, 0.945149838924408, -0.6755995154380798, 0.4458022713661194, 0.9172443747520447, -0.6771805286407471, -0.08566911518573761, -0.12241347879171371, -1.6718271970748901, -0.5117202401161194, -0.5140770077705383, -1.158233642578125, 0.031181903555989265, -1.3059836626052856, -0.8206725120544434, 0.2612897455692291, -0.12195251882076263, -0.15303285419940948, -0.5369454026222229, 0.1547449678182602, -0.016086990013718605, -0.021941281855106354, 0.4050973653793335, -0.32906895875930786, 0.9146543145179749, 0.22392863035202026, 0.428841769695282, -0.3321283459663391, -0.12431009113788605, -0.12918387353420258, -0.1380426436662674, 0.17039906978607178, -0.6573277711868286, -0.24733972549438477, -0.33989763259887695, -0.5153413414955139, 0.3755108714103699, -0.2762473523616791, 0.057769909501075745, -0.3653661012649536, -0.8255541324615479, 0.330274760723114, 0.9494773149490356, 0.1497260332107544, -0.4707510769367218, -0.45191895961761475, -0.7214730381965637, 0.571686327457428, -0.14577488601207733, 0.8062387704849243, -0.5730956792831421, 0.5993897914886475, 0.30677178502082825, -0.25594332814216614, -0.3847557306289673, -0.9895374774932861, 1.5714656114578247, -0.7996134161949158, 0.312382310628891, -0.7047588229179382, -0.23919789493083954, 0.25044700503349304, -1.183994174003601, -0.044228456914424896, 0.10671024769544601, -0.691415548324585, -0.1910424530506134, -0.724006175994873, -0.5065000653266907, -0.179503932595253, 0.06873133033514023, 0.017279163002967834, 0.028249653056263924, 0.6807892322540283, -0.2164093405008316, -1.2362877130508423, -0.21852655708789825, 0.7049649953842163, -0.035800039768218994, 0.5924835801124573, 1.8125227689743042, 1.1175211668014526, 0.8657239079475403, 0.15479110181331635, 0.2879481315612793, -0.030485093593597412, -1.5273339748382568, 0.22586187720298767, -0.5173028111457825, -0.5217120051383972, -0.6922417879104614], [0.8137246370315552, 0.9896053075790405, -2.2359800338745117, 0.13452376425266266, 0.8368750810623169, 0.5065913200378418, 0.5864095687866211, -0.3089281916618347, -0.8695769906044006, -0.26082465052604675, -1.2968864440917969, 0.4599902331829071, -0.7443023920059204, 0.9620026350021362, 1.0248668193817139, 0.8186580538749695, 0.7723286747932434, 0.49467527866363525, 0.3754560649394989, 0.8526806831359863, 0.07737965881824493, -1.0306904315948486, 0.42870020866394043, -0.20836731791496277, 0.029937492683529854, 0.4161021113395691, -1.429965853691101, -0.7717549800872803, -0.8464693427085876, -0.7282903790473938, 0.47146546840667725, 0.057112935930490494, 0.487598717212677, -0.6116575598716736, -1.406044840812683, 0.4985578954219818, 1.6085224151611328, 1.207818865776062, 0.8269833326339722, 0.5718311071395874, 1.7023863792419434, -0.2340937852859497, -0.18051306903362274, -1.5404067039489746, -0.13731785118579865, -0.5175996422767639, 0.1505489945411682, -0.011034591123461723, -0.04557972401380539, -0.5543403625488281, 0.05430477112531662, -1.2229503393173218, 0.1764148324728012, 0.690349280834198, 0.6622684597969055, -1.409555196762085, 0.47397592663764954, 0.1351127177476883, -0.5253331065177917, -0.43023812770843506, 0.8213027715682983, -0.5618231892585754, 0.42629432678222656, 0.8334988951683044, 0.18694289028644562, -0.6708197593688965, 0.6763976216316223, 0.4422610402107239, -0.9326649904251099, 0.45914334058761597, 0.5210391283035278, 0.11983492225408554, -1.3766696453094482, 0.21370504796504974, -1.1902759075164795, 0.2852817475795746, 0.6804915070533752, 1.2653716802597046, 0.8955903053283691, 0.7717438340187073, 0.05922619253396988, 0.24365441501140594, -0.17573599517345428, -0.49858298897743225, -0.5543820261955261, 0.34922417998313904, 0.8530166745185852, -0.4854128658771515, -0.12658293545246124, 2.23264479637146, 0.32460346817970276, 0.18813228607177734, 1.309561014175415, -0.09357936680316925, -0.6952747702598572, -0.43481892347335815, 0.13600315153598785, -0.6051168441772461, -0.9348649382591248, -0.18115316331386566, -0.6065396666526794, -1.2884718179702759, 0.5228379964828491, 0.19711212813854218, 0.537697434425354, 0.9271350502967834, 0.12355818599462509, -0.6650018095970154, 0.17137669026851654, -0.030128631740808487, -0.1878662109375, 0.6718567609786987, -0.41486382484436035, -1.3793433904647827, 0.08828922361135483, 1.62177312374115, 1.5990017652511597, -0.6693337559700012, -0.3234311044216156, 0.6184731125831604, -0.2229696810245514, -0.22964559495449066, -1.082945704460144, -0.20730680227279663, 0.9869444370269775, 0.29079294204711914, -0.5846351981163025, 0.03358221799135208, -0.2716505825519562, 0.1128460168838501, 0.8945142030715942, 0.1923610419034958, -0.07779223471879959, 1.2866158485412598, -1.5274689197540283, 1.4713221788406372, -0.7349331974983215, -0.03224170207977295, -0.0571623332798481, 0.034696660935878754, 0.7437657713890076, 0.05796251446008682, -0.4599247872829437, -0.11597639322280884, 0.22293706238269806, -0.5726142525672913, 0.4054058790206909, -0.3508438169956207, -0.8658703565597534, 0.16108326613903046, -1.05538010597229, 0.10125921666622162, -0.017381206154823303, 0.5258252024650574, 0.5108797550201416, 0.4018409252166748, -0.013877029530704021, 1.0427944660186768, -0.015352130867540836, 0.24844346940517426, 0.4259333908557892, 0.2875891327857971, -0.2759583592414856, 0.40742307901382446, 1.1506353616714478, -0.5262194275856018, -0.12192553281784058, 1.469016194343567, 0.4665389358997345, 1.2389335632324219, -0.11878586560487747, -0.43781203031539917, -0.5101814866065979, 0.1357947140932083, 0.25031548738479614, 0.022219078615307808, 0.25106289982795715, -0.04563095420598984, -1.7561231851577759, -1.0940649509429932, 0.9450951218605042, -0.12224602699279785, 0.9614986777305603, -0.3540571331977844, 0.6319848895072937, -0.3244456946849823, 0.021466387435793877, -0.27413466572761536, -0.6920149326324463, -0.8855577111244202, -0.849790632724762, -0.7220414280891418, -0.6481215953826904, 0.8167668581008911, -0.6685362458229065, -1.192138671875, 0.3173476457595825, -1.2875734567642212, -0.6516637206077576, -0.6598110795021057, 0.33587026596069336, -0.5296489000320435, -0.26924753189086914, 0.15862517058849335, -0.24415259063243866, 0.9037770628929138, -1.295773983001709, 0.22041617333889008, -0.8897331953048706, 0.019243665039539337, 0.39412569999694824, 0.3108462691307068, -0.7719689607620239, 0.18501995503902435, 0.12906625866889954, -1.9427037239074707, 0.5889601707458496, 0.8497130870819092, -0.4775198698043823, 0.0878460481762886, -0.4571974277496338, 0.16560010612010956, 0.6393048763275146, -0.29237061738967896, 0.5595874190330505, -1.0274399518966675, -0.5512924194335938, -0.7584636211395264, -0.5289327502250671, -0.1350855678319931, -0.6574070453643799, -0.7080168724060059, 1.3271375894546509, 0.12121151387691498, -1.7557387351989746, 0.14485883712768555, 0.16352367401123047, 0.5434668064117432, -0.23816533386707306, 1.4186460971832275, 0.4428354501724243, 0.4649505913257599, -0.7065623998641968, -0.5843548774719238, -0.5044874548912048, 0.02247227542102337, 1.1282254457473755, -0.6658099293708801, 0.012332586571574211, 1.2934473752975464, 0.735822856426239, -0.2741624414920807, 0.3947788178920746, -0.3904536962509155, -0.1700620949268341, -1.7747907638549805, -0.27550140023231506, 0.39798471331596375, -0.1741790920495987, 1.5336774587631226, 1.0577187538146973, -0.815292477607727, -0.2971743941307068, -0.27521803975105286, -0.3114546537399292, -0.43053901195526123, -0.2696780860424042, -0.5457999110221863, 0.6372429728507996, -0.10329184681177139, 0.1254962831735611, 0.27788716554641724, -0.5518538951873779, 0.5489149689674377, -0.41995298862457275, -0.5202212929725647, -0.6735793352127075, 1.1297613382339478, -0.10386176407337189, 0.8809109330177307, -0.11796250194311142, -0.873430609703064, -0.3130991756916046, -0.1434866338968277, 0.7568768858909607, 0.2687739431858063, 0.0549577921628952, 0.4011317491531372, 0.9029804468154907, -0.24538899958133698, 0.4934011697769165, -0.028450867161154747, 0.05835413187742233, 0.3254871964454651, 0.5617090463638306, 0.3166462182998657, 0.8887358903884888, -0.7243874073028564, -0.7809969782829285, -0.012191628105938435, -0.17873051762580872, 1.4551087617874146, -0.2672581076622009, 1.0315195322036743, -0.34096580743789673, -0.5368760824203491, 0.08553540706634521, 0.3382169306278229, -1.3154348134994507, 0.12276273965835571, -0.37403780221939087, -1.2198865413665771, 0.3172294795513153, -0.30222761631011963, 0.19558461010456085, 0.3970177471637726, 0.044606875628232956, 0.4569585919380188, 0.6415627598762512, -0.2705463767051697, -0.6015031933784485, -0.7477546334266663, -0.32360151410102844, -0.8791637420654297, 0.4473050832748413, 1.4584029912948608, -1.5011316537857056, 0.06631232053041458, 0.14731495082378387, 0.057909220457077026, 0.013747703284025192, -0.6216515898704529, 1.078850269317627, -0.8669412732124329, -0.39191287755966187, -0.4273865222930908, 0.984590470790863, -0.3798529803752899, -0.6562007069587708, -0.5512790083885193, 0.6014593839645386, 0.7395365834236145, -0.8984411358833313, -0.13083508610725403, 0.5136778354644775, -0.3132239282131195, -0.1528746336698532, 0.3527810871601105, 0.7774834632873535, 0.6946783661842346, -0.48329830169677734, -1.274916172027588, -0.64759761095047, -0.1626334935426712, -0.2116330862045288, -0.14363643527030945, -0.3570023477077484, 0.8664256930351257, -0.24633274972438812, 0.25793910026550293, 0.6876784563064575, 0.39278852939605713, 0.7023056745529175, -0.9917891621589661, 0.4203706979751587, 0.689760148525238, 2.720978021621704, 0.7829969525337219, 0.6085957288742065, 0.32886144518852234, -0.005132149904966354, 0.3263512849807739, 0.5585649609565735, 0.9288860559463501, -0.1379057615995407, -0.41637057065963745, -0.3133302330970764, -0.6964857578277588, -0.22126702964305878, -0.18435436487197876, -0.12594442069530487, 0.14166472852230072, -0.8377034664154053, -0.258217990398407, 1.170552134513855, 0.6952697038650513, -0.22300684452056885, -0.17516981065273285, -0.3331391513347626, 0.3800131380558014, -1.1508902311325073, 0.005568706896156073, -0.6487768888473511, 0.28522002696990967, 0.6387196779251099, -0.8874040246009827, -0.36258140206336975, 0.5041075944900513, 0.10118506103754044, 0.3679940104484558, -0.5302236080169678, 0.16932342946529388, -0.8473289012908936, 0.8275079131126404, 0.5507820844650269, 0.08558689802885056, 0.4344552755355835, 0.9564032554626465, -0.7093457579612732, 0.1641336977481842, -0.21037565171718597, 1.410151720046997, -0.4675741195678711, 0.06644326448440552, 0.08445587754249573, -0.3934434950351715, -0.13126257061958313, -0.007955343462526798, -0.3208673894405365, -0.012497714720666409, -0.2522817552089691, 0.04249200224876404, 0.4483172595500946, -0.11279621720314026, 1.9184304475784302, -0.3271637260913849, -0.1292688399553299, 0.460908979177475, 0.6948012709617615, -1.3518263101577759, -0.41995829343795776, 0.04971202090382576, -0.10251986235380173, 0.08489765971899033, 0.03010123409330845, 0.042551085352897644, 0.13761931657791138, 0.23685631155967712, 0.2604997754096985, 0.6140137910842896, 0.3728186786174774, 0.3198925852775574, 0.06605565547943115, 0.7426075339317322, 1.4510228633880615, 0.6851291656494141, 0.9491177201271057, 0.10415089130401611, -1.2795947790145874, 0.10665544867515564, -0.8101786375045776, -0.015818774700164795, 0.44549012184143066, -0.2363462746143341, 1.671339750289917, -1.8561593294143677, 0.325298011302948, 0.7182266712188721, 0.23294629156589508, -0.02232733741402626, 0.8853764533996582, -0.6839277744293213, -0.04291395843029022, 0.17129766941070557, 0.024244172498583794, -0.36200544238090515, -0.15053828060626984, 0.596683144569397, -0.6733747720718384, 1.1259181499481201, -0.56288081407547, 0.8126033544540405, -0.5887388586997986, -0.012118826620280743, 0.281694233417511, -0.2921006679534912, -0.07613393664360046, 0.16548463702201843, 0.5892163515090942, 1.226678490638733, 0.14354673027992249, -1.3383570909500122, -0.13972468674182892, -0.6327734589576721, 0.26969006657600403, -0.3475967049598694, -0.4961538314819336, -0.6822504997253418, -0.5374711155891418, 0.2963707745075226, -0.03778230771422386, -0.5668098330497742, -0.17744135856628418, -0.35959818959236145, -1.3024344444274902, 0.7876205444335938, 0.6954932808876038, 0.4673033356666565, 0.5011724233627319, 0.3745594322681427, 0.1753966510295868, 0.26206010580062866, -1.1140453815460205, 0.2724626958370209, 0.05080127343535423, 0.1672901064157486, -0.3379795253276825, -0.669087290763855, -0.5711894631385803, 0.3012195825576782, 0.524222195148468, 0.23796527087688446, 0.6514618396759033, 1.1570595502853394, 1.2629188299179077, -0.5811872482299805, -0.3592551648616791, 0.3555982708930969, -0.6539111137390137, 0.3513474762439728, 0.28335216641426086, -0.13273857533931732, -0.011643040925264359, -0.7325618863105774, -1.7183388471603394, 0.7082284688949585, 0.41562098264694214, -0.4301537573337555, 0.6494318246841431, 0.6109434366226196, 1.1962673664093018, 0.6666204929351807, -0.6484706997871399, -0.07006696611642838, 0.10870147496461868, -0.09548301249742508, 0.011418134905397892, 0.8444387316703796, -0.021285057067871094, 0.09595110267400742, -0.24407438933849335, -0.41650110483169556, -0.49309733510017395, -0.1484876126050949, -0.5585938692092896, 0.5920692682266235, -0.15753158926963806, 0.18963193893432617, 0.7848588228225708, -0.16903960704803467, 0.5090997219085693, -0.17135757207870483, -0.1786235272884369, 0.296356737613678, 0.8535200357437134, 0.6741191148757935, 0.20021894574165344, 0.5396572351455688, -0.738491952419281, -0.5325448513031006, -0.3131846785545349, -0.3635126054286957, 1.289081335067749, 0.6072090268135071, 0.19129693508148193, -0.16606508195400238, -1.1780946254730225, 0.6829178929328918, -0.44346103072166443, 1.1875938177108765, 0.9407632946968079, -0.7215502262115479, -0.11989665031433105, -0.035806093364953995, -1.3508189916610718, -0.1442011445760727, -0.45972633361816406, 0.1470508724451065, -0.44286853075027466, -0.9955775737762451, -0.7906662225723267, 0.1724347621202469, 0.38677695393562317, -0.7794069051742554, 0.9620396494865417, 0.26710906624794006, -1.0456007719039917, 0.5008018612861633, 0.2960438132286072, -1.0686055421829224, 0.28500738739967346, -1.1894590854644775, 0.7311446070671082, 0.2708379328250885, 0.35796070098876953, -0.322719007730484, 0.6904124021530151, -1.182227611541748, -1.197424292564392, -0.8302210569381714, -0.17913833260536194, 0.44199246168136597, 0.8015245199203491, -0.8548973202705383, 1.3091185092926025, -0.07102905958890915, -0.4091174006462097, -0.8496502637863159, -0.6308538913726807, 0.05097610130906105, 0.20964941382408142, 0.7986447811126709, -0.04620113596320152, -0.10647300630807877, 1.1654146909713745, 0.7179687023162842, 0.9322535991668701, 0.23232969641685486, 0.9071639776229858, -1.0724151134490967, -0.7326091527938843, 0.23847819864749908, 0.23527783155441284, -0.7315912842750549, -1.4114412069320679, -0.24513313174247742, -0.20680418610572815, -1.015162467956543, -0.273679256439209, 0.49534109234809875, -0.5330296754837036, 0.2876792550086975, -0.20746980607509613, 0.04278064891695976, -1.0650521516799927, 0.7543138265609741, 0.4631173014640808, -0.9090564250946045, -0.3834972679615021, 0.10355523973703384, -0.04513369873166084, -1.0032480955123901, -0.27138233184814453, -0.2129640281200409, -0.5287984013557434, -0.07021047919988632, 0.7424847483634949, 0.19170553982257843, 0.6099680066108704, -0.3379414677619934, 0.6379198431968689, 0.9377599358558655, -0.22380633652210236, 0.08970905840396881, 0.49031394720077515, -0.8374401926994324, -0.29909834265708923, -0.6792447566986084, -1.1810581684112549, 0.14043311774730682, 1.3121224641799927, 0.40984565019607544, -0.15396784245967865, 0.42229771614074707, 0.05575639754533768, 0.6669235825538635, 0.06724489480257034, 0.5047977566719055, -1.0641697645187378, -0.5568659901618958, 0.6566649079322815, 0.6765722036361694, -0.35633864998817444, -0.591496467590332, 0.49375247955322266, 0.641122579574585, -0.9011159539222717, 0.4847959578037262, 0.6460481882095337, -0.24688154458999634, 0.259452760219574, 0.8114074468612671, 0.038273416459560394, -0.2864307463169098, -0.4451467990875244, -1.8380439281463623, 0.03796829655766487, -0.49037498235702515, -0.37424081563949585, 0.3825515806674957, -1.5806621313095093, -0.7945253252983093, -0.2862074673175812, -0.4925857484340668, -0.6251662969589233, -0.21113252639770508, 0.2657462954521179, 0.42999327182769775, 0.19084517657756805, 0.40962904691696167, 0.1471489816904068, 1.1094233989715576, -0.6576303839683533, 0.05574210360646248, -0.5128922462463379, -0.25972363352775574, 0.3645494282245636, 0.1689726710319519, -0.13004417717456818, -0.3210529088973999, 0.4002385139465332, -0.7576339840888977, -1.104131817817688, -0.44774216413497925, 0.2435918152332306, -0.17150317132472992, -0.14596262574195862, -0.6497324705123901, 0.3534669876098633, 0.8593141436576843, 0.5747014284133911, -0.09161826968193054, -0.9253414869308472, -0.8691912889480591, 0.45487678050994873, -0.5235006809234619, 0.5710621476173401, -0.16660422086715698, 0.6815022230148315, 0.25394681096076965, -0.49901989102363586, -0.3936328887939453, -0.3817960321903229, 0.9430760145187378, 0.1929522007703781, -0.09833615273237228, -0.5279503464698792, 0.6884541511535645, -0.11525703966617584, -1.200461745262146, -0.20591512322425842, -0.021247997879981995, -0.5154464840888977, 0.45259982347488403, -1.1454765796661377, -0.6114953756332397, -0.18432067334651947, -0.3409598767757416, -0.09369030594825745, 0.1250176876783371, 0.2350056916475296, -0.20012688636779785, -0.9014785289764404, 0.2757750153541565, 0.40578708052635193, -0.2725885808467865, 0.4088374376296997, 1.2282814979553223, 1.3027440309524536, 0.5107468366622925, -0.21494878828525543, 0.03234144300222397, 0.7598645091056824, -1.3945919275283813, 0.2835070490837097, -0.3550436496734619, 0.13439826667308807, -0.3565685749053955], [-0.004230991005897522, 0.9285115003585815, -2.1838035583496094, -1.0916192531585693, 0.564371645450592, -0.5757216811180115, 0.6949117183685303, 0.5341594219207764, 0.4691094756126404, -0.48415517807006836, -0.7997563481330872, 0.12772224843502045, -0.05001646280288696, -0.5976077914237976, -0.12078525125980377, 0.44817742705345154, 0.3232581913471222, -0.19429534673690796, -0.2535058259963989, 0.48559844493865967, -1.254392385482788, -1.2174522876739502, -0.006821736693382263, 0.390170156955719, -0.32615506649017334, -0.0897793173789978, -1.1833906173706055, -0.3042377531528473, -1.698796272277832, -0.3812670409679413, 1.5901899337768555, -0.3340299725532532, 0.006414666771888733, -0.03887969255447388, -1.8195085525512695, -0.1347019225358963, 1.549372673034668, 0.33186158537864685, -0.18030419945716858, 1.0788003206253052, 2.5195655822753906, 0.8714938759803772, -0.6761175394058228, -1.4454083442687988, 0.5764681100845337, -0.22816890478134155, 0.3443949520587921, -0.503730833530426, -1.1957039833068848, -0.4411506950855255, 0.574511706829071, -0.8628859519958496, 0.710329532623291, 0.2668994665145874, 1.062529444694519, -0.9441964626312256, 0.539340615272522, 0.10559113323688507, 0.8643431663513184, 0.16769960522651672, 0.9832513332366943, -0.9854114055633545, 0.18000628054141998, 0.25124141573905945, 0.33064284920692444, -0.13979922235012054, -0.05152106285095215, 0.9546322822570801, -0.36803582310676575, 0.48223230242729187, 0.7555333375930786, 0.5311246514320374, -0.4612770080566406, -0.11420105397701263, -0.9510328769683838, 1.362985610961914, 0.20001032948493958, 0.38578876852989197, 0.027311354875564575, 1.0001057386398315, -1.1620274782180786, 0.5284692049026489, 0.6191904544830322, -0.9018679857254028, -0.7223052978515625, 0.1329364776611328, 0.3648930788040161, 0.1891942024230957, -0.5951897501945496, 1.3564157485961914, -0.36254099011421204, -0.003311634063720703, 0.6368633508682251, -0.5104697346687317, 0.24327045679092407, -0.1367778778076172, -1.1922048330307007, -1.267499566078186, -0.7377802133560181, -1.0300283432006836, -0.8808784484863281, -0.8600419759750366, 1.143674612045288, 0.2141987681388855, 0.32883280515670776, 1.3954200744628906, 0.4481133818626404, -0.9104785323143005, -0.15975381433963776, -0.8951776623725891, 0.16710029542446136, 0.19244790077209473, -0.5191094279289246, -0.9975279569625854, 0.3003232479095459, 1.2776025533676147, 1.4012079238891602, 0.4521225690841675, 0.4066355526447296, 0.5901014804840088, -0.4266495704650879, -0.1772969365119934, -0.7326223850250244, 0.7740130424499512, 1.1896295547485352, 0.4461086392402649, 0.02332921326160431, 0.09116052836179733, 0.027160227298736572, -0.009709306061267853, 0.019131284207105637, 0.08387765288352966, 0.3240532875061035, 1.0625207424163818, -0.28138870000839233, 0.3169693946838379, 0.7469907999038696, -1.3372626304626465, 0.278384268283844, -0.398598849773407, 0.2021465301513672, -0.983170211315155, -0.43915724754333496, -0.7921798229217529, 0.34522414207458496, -0.29398924112319946, 0.5391583442687988, 0.016181260347366333, -0.923829197883606, 0.3509570062160492, -1.5262176990509033, -0.2773212790489197, 0.17015190422534943, 0.811765193939209, 0.4326612949371338, 0.18866263329982758, 0.028485000133514404, 0.2927599549293518, 0.4592941403388977, 0.7445798516273499, 0.5038085579872131, 0.19721871614456177, -0.818318247795105, 1.4699125289916992, 0.5058566331863403, -0.715752124786377, 1.151057243347168, 0.24363809823989868, 0.0167082529515028, 1.0844571590423584, 0.28457769751548767, -0.6921210885047913, 0.3545616567134857, 0.6755478382110596, 0.4961448311805725, -0.3506101667881012, 0.6028789281845093, -0.1478639841079712, -1.0800821781158447, -1.1023375988006592, 1.0314973592758179, -0.3854953348636627, 0.5678527355194092, 0.26433420181274414, 0.9499614238739014, -0.06598314642906189, -0.012809514999389648, 0.10892625898122787, -1.0236777067184448, -1.3498520851135254, -0.633445680141449, 0.1347137987613678, -1.2809553146362305, -0.30679166316986084, -0.3854563236236572, -0.49523046612739563, 0.8118914365768433, -0.5069558620452881, -0.7574078440666199, 0.19799834489822388, 0.6785792112350464, -0.2816859185695648, -1.4763622283935547, 0.11042845249176025, -0.6767549514770508, 0.999690055847168, -0.4856855273246765, 0.591327428817749, -0.6799136400222778, 0.3765929937362671, 1.0400301218032837, -0.036495089530944824, -0.7645148038864136, 0.2434430718421936, -0.9952973127365112, -1.1257879734039307, 0.40386590361595154, 0.08532029390335083, -0.15198081731796265, -0.26709693670272827, 0.06692525744438171, 0.6611214876174927, 0.794579803943634, 0.08515018224716187, 0.4308091104030609, 0.25085389614105225, -0.08723163604736328, -0.03784322738647461, -0.33891192078590393, -0.6483767032623291, -0.7077200412750244, -0.8881236910820007, 0.5013984441757202, 1.0786583423614502, -1.4052915573120117, 0.5388988852500916, -0.5307108759880066, 0.2832932770252228, 0.21444827318191528, 0.3428291082382202, 0.6990317106246948, 1.1208289861679077, -0.6132491230964661, 0.006481394171714783, -0.6024415493011475, 0.07074150443077087, 0.8000667095184326, -0.791802167892456, 0.3314318060874939, 1.4046189785003662, 0.6707722544670105, -0.1385551542043686, 0.2921942472457886, -0.9549686908721924, 0.303349107503891, -0.3085557818412781, 0.12973296642303467, 0.7507538795471191, -1.1624131202697754, 2.2313480377197266, 1.2501344680786133, -0.4641945958137512, 0.2774651050567627, 0.09619563817977905, -1.1639686822891235, -1.086834192276001, 0.34928643703460693, -0.27644696831703186, 0.22629916667938232, 0.017535239458084106, -0.2332303822040558, 0.09596803784370422, 0.28679269552230835, 0.7067875862121582, -0.21350665390491486, 0.32631027698516846, -0.15516217052936554, -0.06797032058238983, -0.262462317943573, 0.49987363815307617, -0.1200232058763504, -1.4012324810028076, -0.5131453275680542, 0.01813599094748497, 0.48933717608451843, 0.4858139753341675, -0.38017725944519043, 0.17315995693206787, 0.1317736953496933, -0.7161480188369751, 0.254709929227829, 0.475603312253952, -0.2894468307495117, 0.14030392467975616, 0.7500652074813843, 0.03837791830301285, 0.901456356048584, -1.0132193565368652, -0.9220168590545654, 0.22332549095153809, 0.03669077157974243, 0.6851454973220825, 0.09511002898216248, 1.3547160625457764, -0.4592238664627075, 0.5725115537643433, -0.25684431195259094, -0.5040419101715088, 0.5081889033317566, -0.18686282634735107, -0.33821457624435425, -0.9220972061157227, -0.5076032280921936, 0.13945943117141724, 0.05024275183677673, 0.7592698335647583, -0.5440835356712341, 1.007622241973877, 0.622342586517334, 0.5870181322097778, -0.8710496425628662, -0.20926706492900848, -0.3900732398033142, -0.961902379989624, 0.8081836700439453, 0.8550859689712524, -1.5552759170532227, -0.08718350529670715, 0.03665304183959961, 0.03836192190647125, 0.664470911026001, 0.14857852458953857, 0.7292468547821045, -1.5564274787902832, -0.24910122156143188, -0.11439928412437439, 0.5455098152160645, 0.189253568649292, -0.6681621670722961, -1.0650819540023804, 1.075714111328125, 0.017377734184265137, -0.2947171926498413, -0.4279148578643799, 1.031785011291504, -0.48852717876434326, -1.0280752182006836, 0.09568670392036438, 0.26274609565734863, 0.35996708273887634, -0.4545094966888428, -0.35582655668258667, -0.1281176507472992, -0.7150779962539673, -0.49188506603240967, -0.276370644569397, -0.23605680465698242, 0.7369848489761353, 0.45098933577537537, -0.16245293617248535, 0.6599979996681213, 0.03226163983345032, -1.227073311805725, -1.6926683187484741, 1.0160901546478271, 0.8938378095626831, 1.3753347396850586, 0.20833086967468262, 0.18659377098083496, 0.054905980825424194, -0.7536382675170898, -0.4274730086326599, -0.14395175874233246, 0.7070623636245728, -0.3967415690422058, -0.4034855365753174, -0.30428311228752136, -0.6494070887565613, -0.3493741452693939, 0.39346790313720703, -0.06309749186038971, 0.3038119971752167, 0.1220623105764389, -0.05326199531555176, 1.1279363632202148, 0.3604774475097656, -0.43474870920181274, -0.1456015408039093, -0.17139536142349243, 0.4691387414932251, -0.0664617121219635, 0.16322563588619232, 0.05763326585292816, -0.21815665066242218, 0.4819965064525604, -0.6992707252502441, -0.7799595594406128, -0.3116168975830078, 0.12131202220916748, 1.2944965362548828, -1.1246379613876343, -0.27043765783309937, -0.5331127047538757, 1.145453929901123, 0.1849178671836853, 1.0039787292480469, 0.38458383083343506, 0.30205294489860535, 0.3663094937801361, 0.3655339479446411, -0.048694998025894165, 1.226156234741211, -0.5197698473930359, 0.14754211902618408, 0.32846564054489136, 0.7859132289886475, 0.7068402171134949, 0.25722697377204895, 0.0534793958067894, -0.027842052280902863, -0.4494142532348633, -0.155656635761261, -0.30248650908470154, -0.03453725576400757, 1.2691490650177002, 0.2805791199207306, -0.14226973056793213, -0.4536828398704529, -0.050351209938526154, -0.375455379486084, -0.13086631894111633, 0.5002573132514954, -0.2991490960121155, -0.3139999508857727, 0.2662022113800049, 0.45967748761177063, 0.41077446937561035, 0.7616927623748779, 0.1284344494342804, 0.2928491234779358, -0.15607351064682007, -0.34143543243408203, 0.7353696227073669, 0.5995697379112244, 0.884514331817627, 0.2575150430202484, 1.325326919555664, 0.20859861373901367, -0.6897033452987671, 1.2198548316955566, -1.1149640083312988, 0.5616753101348877, 0.921903133392334, -0.07971662282943726, 0.7940931916236877, -2.271212577819824, 0.36768922209739685, 0.9814310073852539, -0.3285983204841614, 0.7675155401229858, 0.3015247881412506, 0.1447983682155609, -0.958460807800293, -0.02114320546388626, 0.04976000636816025, -0.013540752232074738, 0.4641423225402832, 0.32333505153656006, 0.6335589289665222, 0.5360530614852905, -0.6103640198707581, 0.5226314067840576, -0.6363526582717896, -0.12092837691307068, 0.03011620044708252, -0.5986518859863281, 0.9656561017036438, 0.11643632501363754, 0.26859933137893677, 1.4796932935714722, -0.008880987763404846, -0.9694284200668335, 0.13148953020572662, -1.0461616516113281, 0.512729287147522, -0.416970819234848, 0.36904144287109375, -0.656846284866333, -0.26320505142211914, 0.022957004606723785, 0.5944953560829163, -0.2935720682144165, -0.43654459714889526, -0.2782721519470215, -0.47318994998931885, -0.1014980673789978, 0.5622285604476929, 1.2081670761108398, 0.46480390429496765, 0.22917962074279785, 1.0457446575164795, 0.19054114818572998, -0.7919888496398926, -0.32046788930892944, 0.42961859703063965, 0.36871737241744995, -0.5588293671607971, -0.47949811816215515, -0.6700600981712341, 0.32053375244140625, 1.1184951066970825, -0.17006605863571167, 0.07247702777385712, 1.8645076751708984, 1.5693007707595825, -0.4560752809047699, -0.8435759544372559, 0.8273778557777405, 0.13979800045490265, 1.0487421751022339, 0.021115243434906006, -0.8780221939086914, -0.35578393936157227, -0.7923737168312073, -1.983349323272705, 0.4097125232219696, -0.4123579263687134, -0.015415385365486145, 0.13653099536895752, 0.9422512054443359, -0.22822576761245728, 0.21289992332458496, -0.6619192957878113, 0.493816077709198, -0.34975504875183105, -0.15148574113845825, -0.7520034313201904, 0.2185467630624771, 0.9899468421936035, 0.1396923065185547, -0.8779482841491699, 0.1270456165075302, -0.28096118569374084, -0.24979713559150696, 0.030129343271255493, -0.13395220041275024, 0.3049805164337158, 0.24986477196216583, -0.336764931678772, 0.1564972996711731, 0.5885231494903564, -0.8308848142623901, -0.24860918521881104, -0.1926327794790268, 0.8194578289985657, -0.015615671873092651, -0.9866636991500854, 0.4113231897354126, -0.586034893989563, -0.28283169865608215, -0.15489435195922852, -0.714061439037323, 0.8329233527183533, 0.6644579172134399, -0.671812891960144, 0.6524410843849182, -0.4540640115737915, -0.6966471672058105, -0.5558773875236511, -0.3183274567127228, 0.7038323879241943, -1.3410977125167847, -0.8915312886238098, -0.26397156715393066, -0.27425625920295715, 0.3033803701400757, 0.1376705914735794, -0.20255976915359497, -1.102174997329712, -1.2350541353225708, -1.2117221355438232, -0.009370088577270508, 1.3897595405578613, 0.19579675793647766, 0.2795073091983795, -0.4530907869338989, -2.8707427978515625, 0.3552902340888977, -0.22267603874206543, -1.689237117767334, 0.30997776985168457, -0.7010632157325745, 0.6212165355682373, -0.29056718945503235, -0.3512895107269287, -0.12004715204238892, 0.7413438558578491, -0.9663262367248535, -0.4077264666557312, 0.07210828363895416, -0.7782918810844421, 0.7421382069587708, 0.49736177921295166, -0.47588562965393066, 0.8456116914749146, -0.06935085356235504, 0.18860113620758057, -1.1129283905029297, 0.67316073179245, -1.2299426794052124, 0.03558175265789032, -0.09484865516424179, 0.3055691719055176, 0.5851374864578247, 0.8897121548652649, 0.7165384292602539, 0.4534885287284851, 0.6054547429084778, 0.4548247158527374, -1.171157956123352, -0.8138558864593506, -0.22037893533706665, 0.264252245426178, -0.9626690149307251, -0.5547938346862793, -0.21278420090675354, -0.6743545532226562, -1.1882529258728027, -0.06901252269744873, 0.5069247484207153, -0.87907475233078, 0.1486152708530426, -0.614250659942627, 1.0069830417633057, -0.23431533575057983, 0.8520827889442444, -0.278873473405838, -0.8912726044654846, 0.276144415140152, 0.2216949164867401, 0.3573817312717438, -0.3755202889442444, -0.3082766532897949, 0.1861065924167633, 0.27095359563827515, -0.29753798246383667, 0.28872424364089966, 0.6388707160949707, -0.638400137424469, 0.5632614493370056, 2.0056800842285156, 1.023103952407837, -0.0069170743227005005, 0.0476684495806694, -0.38742002844810486, 0.12471228837966919, 0.3688984811306, 0.02550628036260605, -0.019137054681777954, -0.2811637818813324, 1.3832392692565918, 0.12481603026390076, 0.10839737951755524, -0.7077410817146301, 0.5848367214202881, -0.4096977114677429, -0.14530235528945923, 0.27230018377304077, -0.7991434931755066, -1.1621861457824707, 0.6953821182250977, 1.1413469314575195, -0.3987974226474762, 0.739360511302948, 1.0963910818099976, -0.2672421634197235, 0.6669343709945679, 0.37456271052360535, 0.7831717729568481, -0.1328555941581726, 0.23173993825912476, 0.6821675300598145, -0.2508079707622528, -0.07713395357131958, -0.6124720573425293, -1.710404872894287, 0.5283549427986145, -1.1935213804244995, -0.9705374240875244, 1.0238020420074463, -0.5778101682662964, -1.2517551183700562, 0.2555805742740631, -0.21171605587005615, 0.04636663198471069, 0.05577808618545532, -0.48850977420806885, -0.28527987003326416, -0.5636694431304932, 0.7669568061828613, 0.10643534362316132, 2.0153369903564453, -0.4376581311225891, -0.3548768162727356, -0.5389742851257324, -0.3158300518989563, 0.13786014914512634, 0.03459632396697998, 0.03764235973358154, -0.8843235969543457, 0.2143985629081726, -0.45957863330841064, -0.8868709802627563, -0.026266857981681824, -0.3361183702945709, 0.25917962193489075, -0.11656153202056885, -0.7144469022750854, 0.2773306369781494, 0.47588732838630676, 0.18905580043792725, 0.3511875867843628, -0.3856797516345978, -0.8213606476783752, 0.2525666356086731, -0.22482246160507202, 0.5082770586013794, 0.19227924942970276, 0.8229951858520508, 0.47202068567276, -0.14676925539970398, -0.08112752437591553, -0.7919827699661255, 0.12112888693809509, -0.2894308865070343, -0.37715238332748413, -0.9267236590385437, -0.09326881170272827, 0.5572649240493774, -0.7752947807312012, 0.48082464933395386, 0.09090632200241089, 0.5415843725204468, 0.3657120168209076, -0.5146626234054565, -0.674979567527771, -0.8438724875450134, -0.5852110981941223, 0.6516354084014893, -0.5231893062591553, 0.20709770917892456, -0.7299900054931641, -0.5941237807273865, 0.5794469714164734, 1.1718615293502808, -0.15431320667266846, 0.45507657527923584, 0.7407413125038147, 1.7208278179168701, 0.2844181954860687, -0.4293793737888336, -0.5575317740440369, 0.5610668659210205, -0.5557835698127747, 0.2964949607849121, -0.5781614780426025, -0.004983842372894287, -0.21800822019577026], [1.0654515027999878, -0.05316123366355896, -1.692701816558838, -0.5222979187965393, 0.6590361595153809, -0.18545138835906982, 1.0233089923858643, -0.44930627942085266, -0.7856237888336182, -0.3602331280708313, -1.1351014375686646, 0.3092917203903198, 0.4835274815559387, 0.06581288576126099, 0.34079620242118835, 0.0023156865499913692, 0.7065603137016296, -0.050034184008836746, -0.4305172264575958, 0.5304619073867798, -0.13483063876628876, -1.547978401184082, -0.6355488896369934, -0.2414339780807495, -0.6018128395080566, 0.9480124711990356, -0.43370237946510315, 0.13605551421642303, -1.1319212913513184, 0.21078887581825256, 1.4079641103744507, -0.5766342878341675, 0.5557293891906738, 0.14685691893100739, -1.8629390001296997, -0.022368714213371277, 1.3251503705978394, 0.9483010172843933, 0.19110193848609924, 0.2590015232563019, 1.20639967918396, 1.2630997896194458, 0.5653180480003357, -1.1212109327316284, 0.3938387334346771, -0.5063348412513733, 0.5178555846214294, 0.09134172648191452, 0.27413409948349, 0.10771777480840683, 0.37185609340667725, -0.8220908641815186, -0.5691210627555847, 0.9786545038223267, 0.3942664861679077, -0.4779355525970459, 0.3590373694896698, -0.29904431104660034, -0.2598302662372589, -0.7977677583694458, 1.265583872795105, -0.4327944815158844, -0.22865360975265503, 0.34950143098831177, 0.623436689376831, -0.5948234796524048, 0.1795528382062912, -0.08437157422304153, -0.1799592524766922, -0.5148853063583374, 0.8819769024848938, 0.025328373536467552, -1.1473716497421265, 0.528837263584137, -0.7093262076377869, 0.8359261751174927, 1.313879370689392, 0.6360041499137878, 0.47126248478889465, 0.1709415763616562, -1.5558346509933472, 0.08779003471136093, 0.6781704425811768, 0.18978193402290344, -0.3149650990962982, 0.6197013258934021, 1.0798112154006958, -0.2086075395345688, -0.24142901599407196, 1.3345531225204468, -0.25905242562294006, 0.29342949390411377, 1.0345102548599243, -0.40711042284965515, -0.3595532476902008, -0.3242450952529907, -0.6473246216773987, -0.7288461923599243, -0.562088668346405, -0.35671675205230713, -0.9282984733581543, -0.9303802847862244, 0.3402954041957855, 0.8645801544189453, 0.8621317148208618, 1.0971978902816772, 0.7341597676277161, -1.38221275806427, 0.2028547078371048, -0.22474656999111176, 0.2741249203681946, 0.38652998208999634, -0.37550488114356995, -1.2143338918685913, -0.19550922513008118, 0.6332298517227173, 2.0543618202209473, -0.7157896757125854, 0.605461061000824, 0.9460884928703308, -0.7671979665756226, -0.10090192407369614, -0.8688743114471436, 0.44749125838279724, 1.0890415906906128, -0.06677452474832535, -0.2684193253517151, -0.33679723739624023, -0.0859856829047203, 0.731060802936554, 1.0447936058044434, 0.4062569737434387, -0.47007033228874207, 1.503176212310791, -0.14826785027980804, 1.0971848964691162, -0.09006141126155853, -1.2850725650787354, 0.21892622113227844, -0.09108980000019073, 0.06881067156791687, -0.8451661467552185, 0.039976511150598526, -0.3599553406238556, -0.4921484589576721, 0.21256770193576813, 0.14903971552848816, -0.2479245364665985, -0.72829270362854, -0.5052763819694519, -0.6810690760612488, -0.4752119481563568, -0.30512961745262146, 0.4715002775192261, 0.8337076306343079, -0.04847339168190956, -0.8067244291305542, 0.1954573690891266, -0.2964157164096832, -0.24758704006671906, -0.37520506978034973, 0.2754325866699219, -0.5988922715187073, 0.7029450535774231, 0.2299727201461792, -0.9509835839271545, 0.39683857560157776, 0.7885806560516357, -0.08704198151826859, 0.05859393998980522, -0.5289239883422852, -0.03554340824484825, -0.4634130001068115, -0.7030600309371948, 0.6713805198669434, 0.16912300884723663, 1.2334274053573608, 0.7593734264373779, -1.7421027421951294, -0.811937153339386, 1.0451923608779907, -0.15533365309238434, 0.30284473299980164, -0.4136468172073364, 1.2553982734680176, -0.002300238236784935, 0.5229706168174744, 0.6701695919036865, -0.773641049861908, -0.38239380717277527, -0.5060519576072693, -0.3623967170715332, -0.3959369659423828, 0.5825616121292114, -0.6424441337585449, -0.7816122174263, 0.4414246380329132, -1.0332025289535522, -0.3323795199394226, -0.3905477523803711, 0.3923931121826172, -0.38362881541252136, -1.1608211994171143, -0.18091051280498505, -0.7481337785720825, 0.7664549350738525, -0.7271955013275146, -0.13383139669895172, -1.1146924495697021, -0.0499410405755043, 1.0286142826080322, 0.0756555125117302, -1.1593658924102783, 0.22109977900981903, -0.5732857584953308, -1.2332454919815063, 0.4562366306781769, 0.4717459976673126, -0.02001018635928631, 0.5711630582809448, -0.9120254516601562, -0.27119481563568115, 0.5466480851173401, -0.6869101524353027, 0.3447107672691345, 0.06696344166994095, -0.7256426811218262, -1.0803173780441284, 0.20735974609851837, -0.5681390762329102, -0.5987593531608582, -1.6772198677062988, 1.0278568267822266, 0.31587889790534973, -1.1540926694869995, 0.33472931385040283, -0.03240128234028816, 0.8747150301933289, -0.6429719924926758, 0.4870522916316986, 0.6947534680366516, 0.34938451647758484, -0.0031037344597280025, -0.46652016043663025, -0.7935895919799805, 0.6747141480445862, 1.9724652767181396, -0.5705071091651917, 0.026448749005794525, 1.167054295539856, 1.3207098245620728, -0.13474206626415253, -0.21365462243556976, 0.12759657204151154, 0.44810745120048523, -1.0829111337661743, -0.3559753894805908, -0.0018999408930540085, -1.0203596353530884, 1.3180464506149292, 0.16079223155975342, -0.7063411474227905, -0.3166660964488983, 0.22323188185691833, -0.6706525087356567, -0.5987537503242493, -0.5367007851600647, -0.14023509621620178, 0.5310110449790955, -0.16045667231082916, -0.3092799186706543, 0.36139386892318726, -0.030035337433218956, 0.5782581567764282, -0.5214436054229736, 0.11760196089744568, 0.18339094519615173, 0.47279250621795654, 0.4500828683376312, 0.8475607633590698, -0.1528659462928772, -0.8208222985267639, 0.4436384439468384, 0.5077879428863525, 0.4944169223308563, 0.058387868106365204, -0.17433440685272217, 0.6557905077934265, 0.9411153197288513, 1.0106065273284912, -0.21083605289459229, 0.7328357100486755, 0.9759865403175354, 0.11968895047903061, 0.6048822999000549, -0.07161980122327805, 0.21619802713394165, -0.00992096122354269, -0.7286497354507446, -0.13697253167629242, 0.3652518689632416, 0.9492322206497192, -0.029762830585241318, 0.6716195344924927, 0.09715194255113602, 0.03541253134608269, -0.5110481381416321, -0.107762910425663, 0.2311238944530487, -0.6303896307945251, -0.0629638060927391, -0.8140907883644104, -0.7308356761932373, -0.28996798396110535, 0.02891230210661888, 0.8212037682533264, 0.29850777983665466, 0.39641377329826355, 0.07867972552776337, 0.48944613337516785, -0.3526837229728699, 0.017349466681480408, 0.6672043800354004, -0.7797538042068481, 0.24264013767242432, 0.7137075662612915, -1.2799526453018188, 0.11867986619472504, -0.16002336144447327, -0.22363901138305664, 0.30192437767982483, -0.3563225269317627, 1.0284284353256226, -0.6442872881889343, -0.531441867351532, -0.093538299202919, 0.4995358884334564, 0.12436744570732117, -0.3146020770072937, -0.7664536833763123, 0.5560128688812256, 0.8807544112205505, 0.15141965448856354, 0.36706358194351196, 0.9855841398239136, -0.2431384027004242, -0.9871504306793213, -0.02264859899878502, 1.177901268005371, -0.2727532982826233, -0.34111109375953674, -0.694588303565979, 0.11650655418634415, -0.6462162733078003, -1.2310166358947754, 0.25771021842956543, -0.39453595876693726, 0.4318307638168335, 0.21253058314323425, -0.28054818511009216, 0.42170989513397217, -0.3131199777126312, 0.2703718841075897, -1.3663469552993774, 0.5021513104438782, 0.8655262589454651, 0.9211817383766174, 0.6684101819992065, 0.32488515973091125, 0.16279107332229614, -0.6715410351753235, -0.4922448694705963, 0.10697823017835617, 0.9353858232498169, -0.4827144742012024, -0.46516162157058716, -0.4405205249786377, -0.7419450879096985, -0.531631588935852, 0.7090242505073547, -0.133122980594635, -0.17027276754379272, -0.7462780475616455, -0.005905495025217533, 1.1024227142333984, 0.5192102193832397, -0.5220136642456055, -0.1571764051914215, -0.45798513293266296, 0.8579549193382263, -0.6064420342445374, -0.41710638999938965, -0.27793899178504944, -0.1387200951576233, 0.7991303205490112, -1.0967286825180054, 0.27692753076553345, 0.3978073000907898, 0.538332462310791, 0.2621210515499115, -1.4061973094940186, 0.13296476006507874, -0.8339833617210388, 0.8049896359443665, 0.3132210075855255, 0.9420464038848877, 0.379755437374115, 0.380668044090271, 0.7575028538703918, 0.07682020962238312, -0.18229247629642487, 1.6752694845199585, -0.49444764852523804, 0.10031650960445404, 0.35058802366256714, -0.3473023474216461, 0.08670639246702194, -0.29780253767967224, 0.14232592284679413, 0.37920525670051575, -0.20844051241874695, 0.44281190633773804, 0.2486574500799179, -0.4397369921207428, 1.3957511186599731, 0.43593600392341614, -0.24308674037456512, 0.04904470965266228, 0.0676484927535057, -0.5531952977180481, -0.19436872005462646, -0.1772133708000183, -0.14551544189453125, -0.03549334406852722, 0.09930688887834549, 0.32588115334510803, 0.5023873448371887, 0.22433598339557648, -0.6524298787117004, 0.24805918335914612, 0.5449288487434387, 0.2871241271495819, 0.7126867771148682, 0.3719552755355835, 0.8516865372657776, 0.043357137590646744, 1.046882152557373, 0.4022984206676483, -0.6691482663154602, 0.5669651031494141, -0.2647044360637665, 0.8308563828468323, 0.4564128518104553, 0.22345057129859924, 1.3619836568832397, -1.889250636100769, 0.21666747331619263, 1.2652236223220825, 0.7421978116035461, 0.6409494876861572, 0.9319323301315308, -0.3248900771141052, -0.43784835934638977, 0.4269873797893524, 1.1017361879348755, 0.25145813822746277, 0.7499994039535522, -0.13712415099143982, 0.04061390459537506, 1.0808894634246826, -1.3397448062896729, 0.5010531544685364, -1.0787385702133179, -0.46189555525779724, -0.3871665894985199, -0.8453351259231567, -0.005006399005651474, 0.526692271232605, 0.8156701326370239, 1.5478651523590088, -0.06252583116292953, -1.4113956689834595, 0.10131771117448807, -0.7113556265830994, 0.6710867285728455, -0.8880655169487, 0.14781439304351807, -1.1851649284362793, -0.20543497800827026, 0.6334134936332703, 0.22652678191661835, -0.13654446601867676, -0.19531592726707458, 0.03846059739589691, -0.593850314617157, 0.5129338502883911, 0.7447702884674072, 0.16814269125461578, -0.6096215844154358, 0.2957642674446106, 0.2214413285255432, 0.4663774371147156, -0.3723253011703491, 0.45110002160072327, -0.3989771008491516, -0.1839178055524826, -0.4014524221420288, -0.6835636496543884, -1.2121168375015259, 0.25028327107429504, 1.4061444997787476, -0.16874322295188904, -0.3973070979118347, 1.5887621641159058, 1.7850008010864258, -0.5238981246948242, -0.5661455392837524, 0.3618154227733612, 0.10669993609189987, 0.5688549280166626, 0.052023157477378845, -1.3746592998504639, -0.41483479738235474, -0.5956960916519165, -0.5255479216575623, 0.24128322303295135, 0.008599255234003067, -0.021835386753082275, -0.05744393169879913, 0.4165785312652588, 0.2827860116958618, 0.4044369161128998, -0.6728261709213257, 0.7026134729385376, -0.2477775365114212, 0.48282691836357117, -0.5835551619529724, 0.5343221426010132, 0.8141524791717529, -0.031615082174539566, -0.9242697954177856, 0.2423650622367859, -0.17359785735607147, 0.4576250910758972, -0.31128886342048645, 0.21627666056156158, -0.16058479249477386, -0.47683069109916687, -0.10555952042341232, -1.0020705461502075, 0.6209746599197388, -0.35536083579063416, -0.5197945237159729, -0.09007055312395096, 1.3769707679748535, 0.32557347416877747, -0.22278587520122528, 0.36029690504074097, -1.2493098974227905, -0.2839360535144806, -0.9411633014678955, -0.6109441518783569, 1.0113327503204346, 0.7158575654029846, 0.4830801486968994, 0.5154300928115845, -0.37988319993019104, 0.01223358791321516, -0.645068883895874, -0.022961951792240143, 1.7807518243789673, 0.08483675867319107, -0.4066767990589142, 0.2431277185678482, -1.234744668006897, 0.36755305528640747, -0.17511716485023499, 0.5297195315361023, -0.49730101227760315, -1.1566053628921509, -0.6847065091133118, -0.14296846091747284, 1.240992546081543, -1.1108046770095825, -0.10142248123884201, 0.29627907276153564, -1.321481704711914, 0.0048608798533678055, 0.5950024724006653, -0.996703028678894, -0.12054502964019775, -0.882257878780365, 0.27686846256256104, 0.7827128171920776, 0.27363914251327515, 0.2262340486049652, -0.2809942364692688, -1.0656675100326538, -0.49644240736961365, -0.4489542245864868, -0.038250312209129333, 1.8325963020324707, 0.3690199851989746, -1.2976351976394653, 1.5881792306900024, -0.2447478026151657, -0.17382071912288666, -1.3632639646530151, -0.5717948079109192, -0.5516176223754883, 0.31624889373779297, 0.7133598327636719, 0.8858687877655029, 0.19137102365493774, 1.4591495990753174, 1.5234514474868774, -0.5009196400642395, 0.6432486772537231, -0.2742673456668854, -0.8949000835418701, 0.023232201114296913, -0.04459394887089729, 0.927830696105957, -1.198153018951416, -1.0971832275390625, 0.3286896347999573, -0.09277881681919098, -0.32894933223724365, -0.12233185768127441, -0.24317283928394318, -0.4632248282432556, -0.15522798895835876, -0.6020042896270752, 0.09116068482398987, -0.1557927429676056, 0.8274276852607727, 0.34437957406044006, -0.8082071542739868, 0.5173537135124207, -0.1592269092798233, 0.48473984003067017, -1.0107038021087646, -0.580971896648407, -0.5407009720802307, -0.07288723438978195, -0.31736648082733154, 0.13765493035316467, 0.21151374280452728, -0.3251968026161194, 0.1630619913339615, 1.5869847536087036, 1.4414894580841064, 0.38838425278663635, 0.08746788650751114, -0.43993425369262695, 0.1858132779598236, -0.24331168830394745, -0.5585322380065918, -0.09615685045719147, -0.5807070732116699, 1.1922109127044678, -0.41508713364601135, 0.04665416479110718, 0.14170604944229126, 0.22653062641620636, 0.12263928353786469, 0.0402284599840641, 0.5788185596466064, -0.4072030186653137, -1.6775751113891602, 0.3654666543006897, 0.33483707904815674, -0.38929715752601624, -0.6103174686431885, 1.0037117004394531, 0.0036475989036262035, -0.15001238882541656, -0.22694839537143707, 0.27968737483024597, -0.9062409400939941, -0.3098476827144623, 0.16451343894004822, -0.012705439701676369, 0.2857862412929535, -0.32474520802497864, -1.0728892087936401, 0.19186939299106598, -1.3854453563690186, -1.2881524562835693, 0.2143845558166504, -0.800693154335022, -0.6452925801277161, 0.33639124035835266, 0.19332139194011688, 0.862419068813324, -0.2525520920753479, -0.03591906279325485, 0.1825263798236847, -0.30394643545150757, 0.7366216778755188, 0.4543362259864807, 0.32288801670074463, -0.25289204716682434, -0.23613578081130981, -0.23133599758148193, 0.5273658037185669, 0.2934526801109314, -0.17044205963611603, -0.03383047506213188, -0.5110525488853455, -0.3935169279575348, -0.6484261155128479, -1.1536935567855835, 0.08869654685258865, -0.8325660824775696, -0.05694384127855301, -0.048684682697057724, -0.7496356964111328, -0.1086086854338646, 0.625525176525116, -0.5549919009208679, -0.20993344485759735, -0.5176884531974792, -0.5586513876914978, 0.5574727058410645, -0.15748164057731628, 0.40858617424964905, 0.47762662172317505, 0.21310491859912872, -0.06250827759504318, -0.6748377084732056, -0.11002795398235321, -1.1011537313461304, 0.4952322840690613, -0.4447633624076843, 0.7363767623901367, -0.6237555146217346, 0.5342935919761658, 0.3282693028450012, -1.338149070739746, 0.21858632564544678, 0.20853975415229797, -0.021051768213510513, 0.14249759912490845, -0.5895405411720276, -0.7118119597434998, -0.043695155531167984, 0.15813055634498596, 0.14313988387584686, 0.4753352105617523, 0.10596247762441635, -0.2911912798881531, -1.6171900033950806, 0.665256142616272, 0.2332143485546112, -0.5662028789520264, 0.2784952223300934, 0.7925149202346802, 1.2175443172454834, 0.09609628468751907, 0.1719529926776886, -0.19489476084709167, 0.46840527653694153, -0.8924777507781982, 0.15623220801353455, -1.0910735130310059, 0.2693174183368683, 0.20316439867019653], [0.9489157199859619, 0.7440871000289917, -2.572554349899292, -0.4039287269115448, 0.6372706294059753, 0.23932653665542603, -0.17454595863819122, 0.6796554327011108, 0.04566089063882828, -0.5295185446739197, -1.2813688516616821, 0.5525307059288025, 0.005097071640193462, 0.4810951054096222, 0.3981480896472931, 0.4513959586620331, 1.24402916431427, 0.5765973329544067, -0.24967478215694427, 0.8478155136108398, -0.751657247543335, -1.5184736251831055, -0.7210981249809265, 0.49995455145835876, 0.5460963249206543, 0.2600829601287842, -1.2846755981445312, 0.3947305679321289, -1.082507848739624, -0.5471671223640442, 2.102869749069214, -0.10575789958238602, 1.096958041191101, -0.7218182682991028, -1.2453655004501343, -0.16578362882137299, 0.3213542103767395, 0.7436371445655823, -0.41208112239837646, -0.14996160566806793, 2.0601439476013184, 1.260368824005127, -0.758658230304718, -1.6909698247909546, 0.28916141390800476, -1.085920810699463, 1.4147017002105713, -0.6144725680351257, 0.04198146238923073, -0.7891592383384705, -0.04680395498871803, -0.24045754969120026, 0.17743562161922455, 1.5449011325836182, 0.3932270407676697, -1.2063584327697754, 0.7844825983047485, 1.0436831712722778, -0.40592628717422485, 0.10884304344654083, 1.1056612730026245, -0.15956033766269684, 0.5383965969085693, 0.07227719575166702, 0.531672477722168, -0.17403031885623932, 0.03383871167898178, 0.04893169179558754, 0.2795805335044861, -0.14072051644325256, 0.21676652133464813, 0.06297902017831802, -0.3955479860305786, 0.30143818259239197, -0.8148854374885559, 0.8164648413658142, 0.6341250538825989, 0.495669424533844, 0.132628932595253, -0.1548856794834137, -0.8167127966880798, 0.18170799314975739, 0.949798047542572, 0.029223162680864334, -0.6317647099494934, 0.11313193291425705, 0.4863966405391693, -0.15041601657867432, -0.4285954535007477, 1.3287962675094604, 0.2732677161693573, 0.6299641728401184, 0.8078203797340393, -0.06499793380498886, -0.04890147224068642, -0.37643882632255554, -0.18421080708503723, -1.4160330295562744, -0.27245453000068665, -0.6387515664100647, -1.044389009475708, -0.963634192943573, 1.088606834411621, 0.8142589926719666, -0.3004520535469055, 1.6662007570266724, 0.034111205488443375, -0.40895697474479675, 0.1496274769306183, -0.417845755815506, -0.8588199615478516, 0.15516430139541626, -0.31415942311286926, -1.035361886024475, -0.1758764237165451, 0.21146440505981445, 1.3207664489746094, 0.09938418120145798, 0.6551346778869629, 0.5007304549217224, -0.49456077814102173, 0.029661647975444794, -1.2139897346496582, 0.1413501501083374, 1.4634431600570679, -0.3182970881462097, -1.0758578777313232, 0.6397040486335754, 0.9471718072891235, 0.19233785569667816, 0.24468259513378143, 0.3854719400405884, 0.4010064899921417, 1.6223737001419067, 0.04389262571930885, -0.08186085522174835, -0.3550676107406616, -1.7119001150131226, 0.06549622863531113, 0.01955035701394081, 0.38259127736091614, -0.27447986602783203, 0.08388163894414902, -0.8402142524719238, 0.3015426993370056, 0.11825977265834808, 0.6116611361503601, -0.014426950365304947, -0.9489712715148926, 0.386515736579895, -1.2236077785491943, -0.13631248474121094, -0.04562218487262726, 0.8007131218910217, 0.5822154879570007, -0.13823112845420837, 0.16022849082946777, -0.0529671236872673, -0.089784175157547, 0.7396839261054993, 0.2844461500644684, 0.08866273611783981, -0.7932934165000916, 0.48404935002326965, 0.5721569061279297, -0.5753000974655151, 0.7475913166999817, 0.2965204119682312, -0.8898375630378723, 0.8992537260055542, 0.03781009465456009, -1.3674818277359009, -0.4073498845100403, 0.3261857032775879, 0.6307119131088257, -0.43621188402175903, 0.19104433059692383, -0.1480357050895691, -1.3810676336288452, -0.9791134595870972, 1.1706880331039429, -0.4023398756980896, 0.4924742877483368, -0.47065532207489014, 0.31171715259552, 0.027616439387202263, -0.32825350761413574, 0.1374177783727646, -0.5205693244934082, -0.953689694404602, -1.0480905771255493, 0.024950752034783363, -1.060516119003296, 0.17295414209365845, -0.5151202082633972, -0.4902876317501068, 0.5082333087921143, -1.0772558450698853, -0.6684173941612244, -0.32564955949783325, 0.7777338624000549, -0.20905570685863495, -0.4044271409511566, -0.12434810400009155, -0.7232562303543091, 0.19748063385486603, -0.17923815548419952, 0.4080684781074524, -0.5819261074066162, 0.28502461314201355, 0.3306054472923279, -0.680390477180481, -1.1699364185333252, -0.17363300919532776, -0.07477213442325592, -1.392242431640625, 0.8017492294311523, -0.05641473829746246, -0.03714269399642944, -0.16956545412540436, 0.30733487010002136, 0.050166577100753784, 1.1270955801010132, -0.6331163048744202, 0.0535719059407711, 0.16099616885185242, -0.5104451179504395, -0.8492767810821533, -0.25435906648635864, -1.1161969900131226, -0.8087096810340881, -0.353763610124588, 0.6735406517982483, 0.4168267846107483, -2.078545093536377, 0.4830678403377533, -0.7829563617706299, 0.5293568968772888, -0.10097062587738037, 0.8253574371337891, 0.5136529803276062, 0.4265696406364441, -0.42140746116638184, -0.466457724571228, -0.6289936900138855, 0.3967437148094177, 0.6694988012313843, -0.532282829284668, 0.4725092649459839, 1.6782419681549072, 0.914046049118042, -1.0859566926956177, 0.7819401621818542, -0.5537161827087402, -0.16254252195358276, -1.2945661544799805, -0.04795989766716957, 0.5502265095710754, -0.8596470355987549, 1.3468958139419556, 0.7982251644134521, -1.1028697490692139, 0.2999389171600342, -0.3780987560749054, -0.9681941270828247, -0.4140930473804474, -0.04310104250907898, -1.0787222385406494, 0.18935967981815338, -0.034537263214588165, -0.4027480483055115, -0.03377929702401161, 0.10857456177473068, 0.38474902510643005, -0.4881875514984131, -0.6086155772209167, 0.04506923258304596, 0.4298088848590851, -0.4846963882446289, 0.6036319136619568, -0.17768599092960358, -0.7973557710647583, -0.3349546492099762, 0.010543029755353928, 0.7463395595550537, -0.37573176622390747, -0.014106913469731808, 1.107772946357727, -0.04496985673904419, 0.734370768070221, 0.4547162652015686, 0.551708996295929, 0.8296033143997192, -0.0038615702651441097, 0.7503449320793152, 0.579947292804718, 0.8321265578269958, -1.0255379676818848, -0.9246352314949036, 0.13377194106578827, 0.2005988359451294, 0.8320726752281189, 0.21591682732105255, 1.2637739181518555, -0.5484493970870972, 0.4267594516277313, -0.5379435420036316, -0.0170595683157444, -0.6934157609939575, -0.21519948542118073, -0.5448305606842041, -1.4981160163879395, -0.7274492979049683, -0.7195382118225098, -0.2793627679347992, 0.5626863837242126, 0.5134352445602417, 0.12058313935995102, -0.07891014963388443, 0.08203287422657013, -1.292364239692688, -0.6839028596878052, -0.6028690934181213, -0.8646397590637207, 0.9618616104125977, 0.9210137724876404, -1.2706071138381958, 0.2683940827846527, -0.09945932030677795, -0.4161059558391571, 1.1454015970230103, 0.26077404618263245, 1.802006483078003, -0.6781169772148132, -0.321834534406662, -0.17865167558193207, 0.42026135325431824, 0.3557683825492859, -0.8399435877799988, -0.22782623767852783, 0.8950446248054504, -0.2068934589624405, -0.19797568023204803, -0.8871893882751465, 0.1964787393808365, -0.6199299693107605, -0.739553689956665, -0.08310747891664505, 0.731185257434845, -0.00684779230505228, -1.4468456506729126, -1.4148627519607544, -0.49179157614707947, -0.5798094868659973, -0.3033018112182617, -0.013791155070066452, 0.4402352273464203, 0.27977052330970764, -0.441621869802475, -0.019307421520352364, 0.7726022005081177, -0.11809687316417694, 0.33408665657043457, -1.0479416847229004, 0.14555096626281738, 1.1819679737091064, 1.924567699432373, 0.479164719581604, 0.5336542725563049, 0.4837758541107178, -0.752791702747345, 0.07817548513412476, 0.06323894113302231, 0.23003435134887695, 0.2749711871147156, 0.2505570650100708, -0.16628023982048035, -0.2709282636642456, 0.051265567541122437, 0.22152693569660187, 0.20412108302116394, 0.3760668635368347, -0.48650291562080383, -0.7458503246307373, 0.49615076184272766, 0.9730392694473267, -0.5902050733566284, -0.025907959789037704, -0.9704580307006836, 0.5274077653884888, -0.6747746467590332, 0.30469825863838196, -0.37896737456321716, -0.5428811311721802, 1.0432313680648804, -0.9439184665679932, -0.22812005877494812, -0.3612246811389923, 0.38598883152008057, 0.6193822622299194, -1.4431390762329102, -0.32814690470695496, -0.777804434299469, 0.7142311334609985, 0.8071361184120178, 1.0595176219940186, 0.427400141954422, 0.376606285572052, 0.3490403890609741, 0.4760236442089081, 0.35061731934547424, 2.188823938369751, 0.22237445414066315, -0.27814748883247375, 0.2779131829738617, 0.46900859475135803, 0.05490986630320549, -0.4876849055290222, 0.651558518409729, 0.04269564896821976, -0.2962390184402466, 0.41028785705566406, 0.28791865706443787, -0.16491657495498657, 1.6924179792404175, 0.608210027217865, 0.07053440809249878, -0.3568195402622223, 0.4882003664970398, -0.2819926142692566, -0.3036823868751526, 0.4421609044075012, -0.4734654128551483, -0.10522125661373138, 0.06474882364273071, -0.22526225447654724, 0.7659170031547546, -0.10758499056100845, -0.3699089288711548, 0.5496735572814941, 0.5596752166748047, -0.3318250775337219, 0.5092176795005798, 0.2757013142108917, 1.3519253730773926, 0.5551180243492126, 0.9531159996986389, -0.7852402329444885, -0.3129001259803772, 1.117700219154358, -0.10658589005470276, 1.1060057878494263, 1.0599966049194336, 0.5366179943084717, 0.9544727802276611, -0.9302535057067871, -0.2502475380897522, 0.7032424211502075, 0.42097988724708557, 1.346376895904541, 0.15460239350795746, 0.34586820006370544, -0.5156879425048828, -0.4887523651123047, 0.03017006441950798, -0.22680234909057617, 0.43254655599594116, 0.08477333933115005, 0.47722098231315613, 1.1890708208084106, -1.3116189241409302, -0.25864386558532715, -0.7493957877159119, -0.17495158314704895, -0.9201875329017639, -1.0699251890182495, 0.5552598834037781, 0.5708003640174866, 0.8123469948768616, 0.8206857442855835, 0.24766972661018372, -0.5736672878265381, 0.4301544725894928, -1.41823410987854, 0.6620948314666748, 0.001343913609161973, 0.0025890888646245003, -0.7675254344940186, -0.3657228946685791, -0.12144066393375397, -0.6496540904045105, -0.34746208786964417, -0.39104029536247253, -0.7296422719955444, -0.2366686314344406, 0.22974610328674316, 0.794488251209259, 0.6647936105728149, 0.3300739526748657, 0.9622368216514587, 1.4139879941940308, 0.6748555898666382, -0.6023193597793579, 0.11106541007757187, -0.252238005399704, 0.21965014934539795, -0.46643462777137756, -0.18573921918869019, -1.0654261112213135, 0.13559918105602264, 0.36581599712371826, -1.0771701335906982, 0.3411857485771179, 1.3406457901000977, 1.3000662326812744, -0.3077342212200165, -1.0911980867385864, 0.9894099235534668, 0.02066637948155403, 0.7380203604698181, 0.46651414036750793, -0.5303075313568115, -0.11086861789226532, -0.39759159088134766, -1.9162049293518066, 1.2213962078094482, -0.7524135112762451, 0.17900888621807098, 0.6556541919708252, 1.0561585426330566, -0.2187669724225998, 0.8861989974975586, -0.26977837085723877, -0.08072154223918915, -0.15800142288208008, -0.05237436667084694, -0.8706967830657959, 0.4587551951408386, 0.8264576196670532, 0.16680079698562622, -0.6928014755249023, -0.37512749433517456, -0.8123827576637268, 1.5143113136291504, -0.8454084992408752, -0.13827760517597198, 0.8134505748748779, -0.7308304905891418, -0.44142788648605347, 0.31735485792160034, -0.21576239168643951, -0.6702114343643188, 0.17171569168567657, -0.12651784718036652, 1.4457967281341553, 0.6218411922454834, 0.05005565285682678, 1.3158726692199707, -0.5548030138015747, 0.4132041335105896, -0.08919763565063477, -0.46838629245758057, 1.0618377923965454, 0.5799614191055298, 0.40052348375320435, 0.6489914059638977, -0.29339897632598877, -0.5250451564788818, -0.524945080280304, -0.5788053274154663, 1.0946440696716309, -0.9598253965377808, -0.6948637962341309, -0.9698861837387085, -0.4427981972694397, 0.8813949823379517, 0.21367092430591583, 0.7873665690422058, -0.6314266324043274, -1.103076696395874, -1.021790623664856, 0.13566875457763672, 0.8530464172363281, 0.011353341862559319, 0.21199457347393036, 0.39692816138267517, -1.2920615673065186, 0.27483898401260376, 0.5339417457580566, -1.002760887145996, -0.0016384073533117771, -0.8442642688751221, 0.5724223256111145, 0.6436161398887634, -0.31388425827026367, 0.05044015496969223, 0.4399816691875458, -1.315121054649353, -0.47353896498680115, -0.15701402723789215, -0.6723420023918152, 0.07191869616508484, 0.9723365902900696, -1.3553804159164429, 0.7029191255569458, 0.1987934410572052, -0.03392903879284859, -0.5170676112174988, -0.1105697751045227, -1.3967642784118652, 0.34916073083877563, -0.11512687802314758, 0.46941980719566345, 0.20010097324848175, 1.2854851484298706, 1.0832430124282837, 0.5163906812667847, 0.4503551423549652, 0.5176281929016113, -0.38909006118774414, -0.28946420550346375, -0.11386313289403915, 0.5505459904670715, -0.30317190289497375, -1.0026665925979614, 0.11729377508163452, -0.5133219361305237, -0.8067635893821716, -0.0555877611041069, 1.1109435558319092, -0.23401671648025513, 0.5909938812255859, -0.32700955867767334, -1.3882564306259155, 0.17413388192653656, 0.4557071626186371, 0.14300207793712616, -0.47719308733940125, 0.014225313439965248, -0.47072121500968933, 0.25282108783721924, -0.3798513114452362, -0.262119323015213, 0.28190651535987854, 0.1387253999710083, 0.011363113299012184, 0.8470619916915894, -0.057229917496442795, 0.20576532185077667, -0.38882675766944885, 2.2217936515808105, 1.1309977769851685, -0.8566693663597107, 1.117572546005249, -0.2480388879776001, -0.710504949092865, -0.49097904562950134, -0.8096131086349487, -1.0576143264770508, 0.11867018789052963, 0.7729251980781555, 0.31097596883773804, 0.30210080742836, -0.36951473355293274, 0.19624081254005432, 0.16531500220298767, 0.7724676132202148, 0.6063863635063171, -0.796425998210907, -0.7140204906463623, 0.6428771615028381, 0.5052105784416199, -0.46741369366645813, -0.10926832258701324, 0.6773639917373657, 0.1417083889245987, 0.11211835592985153, 0.49857673048973083, 1.2110358476638794, -0.694033682346344, 0.7309693098068237, 0.6865601539611816, -0.3479471206665039, -0.6480861306190491, -0.07078469544649124, -1.7053804397583008, 0.15765410661697388, -0.8174028396606445, -1.2220635414123535, 0.5687757730484009, -1.2240221500396729, -1.1876964569091797, 0.0072962818667292595, -0.1131722554564476, -0.06337270140647888, -0.1702217161655426, -0.4209345579147339, 0.9292954206466675, -0.5349632501602173, 1.3616697788238525, 0.1820887178182602, 1.0994471311569214, -0.08557900041341782, -0.2905057966709137, -0.17485450208187103, -0.9182897210121155, -0.4089234173297882, -0.0730794370174408, 0.1804361194372177, 0.006157033611088991, 0.5646128058433533, -0.1956176608800888, -0.7315577268600464, 0.33451154828071594, 0.2723526954650879, 0.31221914291381836, -0.19401705265045166, -0.5870106220245361, 0.13754823803901672, -0.013825923204421997, -0.12455347925424576, -0.2606200575828552, -0.8647652268409729, -0.2825780212879181, -0.25194087624549866, -1.0301423072814941, 0.7601398825645447, -0.14637310802936554, 0.7526495456695557, -0.381409615278244, -0.8736507296562195, -0.23834723234176636, -0.9046099185943604, 0.47413554787635803, -0.07169058918952942, -0.48446154594421387, -1.1449620723724365, 0.24583664536476135, 0.3217315971851349, -1.2176207304000854, 0.1773366928100586, -0.025293894112110138, -0.008835437707602978, -0.15678755939006805, -0.47725415229797363, -0.5830484628677368, -0.7120856046676636, 0.38097044825553894, 0.332116961479187, 0.39336687326431274, 0.5181106328964233, -0.2613392174243927, -1.7305495738983154, 0.007613829802721739, 0.3838345408439636, 0.7530720829963684, 0.9460878968238831, 1.1012349128723145, 1.8181476593017578, -0.3596686124801636, -0.06644479185342789, 0.07094915211200714, 0.46462497115135193, -0.5579137802124023, -0.3374016284942627, -0.8044589757919312, 0.2310771644115448, -0.18465988337993622], [-0.0028198231011629105, 1.1157760620117188, -2.6761505603790283, -0.12161114066839218, 0.2925264835357666, 0.060342781245708466, 0.8118197321891785, -0.4708710014820099, -0.2420579344034195, -1.160138487815857, -0.9245257377624512, 0.7093574404716492, -0.12817047536373138, 1.0145745277404785, 0.418422132730484, 0.7613595128059387, 1.1403826475143433, 0.09222514182329178, -0.390145480632782, 1.2222235202789307, 0.4993436336517334, -1.435502529144287, -0.17564626038074493, -0.1343943327665329, 0.7508305311203003, 0.6010035276412964, -0.8858675956726074, 0.0746752992272377, -0.6183923482894897, -0.04700920730829239, 1.710179090499878, -0.2568410038948059, 0.7438058853149414, 0.016916023567318916, -1.538124680519104, -0.2821969985961914, 0.870788037776947, 0.4755147397518158, 0.5470173954963684, -0.6616230010986328, 1.9672958850860596, 0.2848615050315857, -0.2644194960594177, -1.7524076700210571, 0.2502174973487854, -0.5354312062263489, 0.050339389592409134, -0.6523058414459229, -0.07926762104034424, -1.1009650230407715, 0.07809635996818542, -0.24319221079349518, -0.21397943794727325, 1.3493093252182007, 0.4660249352455139, -1.2998615503311157, 1.1731114387512207, 0.9341313242912292, -0.24618273973464966, 0.22709931433200836, 1.0640746355056763, -0.23142145574092865, 0.9127905964851379, -0.025662440806627274, 0.5933570265769958, -0.443400114774704, 0.27411985397338867, 0.14577995240688324, 0.22729381918907166, 0.5030996203422546, 0.658237099647522, 0.5554311871528625, -0.25102055072784424, 0.41312798857688904, -0.6611096858978271, 0.5351828932762146, 0.5901113748550415, 0.6536387801170349, -0.2550532817840576, 0.5419158339500427, -1.143075942993164, 0.5141410827636719, 0.9485878348350525, -0.3373399078845978, -0.6495373845100403, 0.22629167139530182, 0.46865734457969666, 0.45239728689193726, -0.6329783797264099, 1.7208062410354614, 0.42720356583595276, 1.0633888244628906, 0.4627108573913574, -0.1479702889919281, 0.23796416819095612, -0.046248871833086014, -0.5254949331283569, -1.2702387571334839, -0.08793525397777557, -0.17130620777606964, -0.4432830512523651, -0.8493014574050903, 0.19827909767627716, 0.7657646536827087, 0.40111348032951355, 1.566344141960144, -0.03895245119929314, -0.33295726776123047, 0.635768473148346, -0.19692149758338928, -1.2827130556106567, 0.19874098896980286, -0.6482741236686707, -0.46037137508392334, 0.2380535900592804, 0.9112987518310547, 1.1478989124298096, -0.2236083447933197, 0.4758196473121643, 0.601006031036377, -0.5819004774093628, -0.3467082381248474, -1.293899416923523, 0.1631423383951187, 1.3726943731307983, 0.045909538865089417, -0.9211134910583496, 0.30415773391723633, 0.31539076566696167, 0.7753563523292542, 0.8702660799026489, -0.1301635205745697, 0.08707867562770844, 1.5626566410064697, -0.7747340798377991, 0.413394033908844, -0.6659937500953674, -0.9110851287841797, 0.458238810300827, 0.2764366567134857, 0.2572380006313324, -0.30346429347991943, -0.008654935285449028, -0.563980221748352, 0.24796099960803986, -0.4502470791339874, 0.3688981831073761, -0.37146586179733276, -0.9054535627365112, -0.24525265395641327, -1.1467634439468384, 0.29475459456443787, 0.22534188628196716, 1.1007453203201294, 0.8013691902160645, -0.524314820766449, -0.5374968647956848, -0.010950874537229538, 0.06568481773138046, 0.4697558879852295, 0.5828031897544861, 0.11485987901687622, -1.077450156211853, 0.07325297594070435, 0.9491686224937439, -1.0488379001617432, 0.39411425590515137, 0.22541919350624084, -0.6320345401763916, 0.9231850504875183, -0.27206745743751526, -1.2196458578109741, -0.3484675884246826, 0.21552474796772003, 0.5047268271446228, -0.17728972434997559, 0.6183469295501709, 0.29691433906555176, -1.1876834630966187, -0.9235363006591797, 1.0034414529800415, -0.458035409450531, 1.0160150527954102, -0.6195885539054871, 0.010250010527670383, -0.18703719973564148, -0.29322534799575806, -0.1577744483947754, -0.7302697896957397, -0.7300114631652832, -0.6720514893531799, -0.2584899663925171, -1.101183533668518, 0.69924396276474, -0.706271231174469, -0.5029340386390686, 0.5475342273712158, -0.5885146260261536, -0.4109753668308258, -0.09631739556789398, 0.6996030211448669, -0.45010483264923096, -0.6464154124259949, -0.22610071301460266, -0.5631945133209229, 0.541634202003479, 0.03478074446320534, 0.5162914395332336, -0.5462692975997925, 0.4579017460346222, 0.44231894612312317, -0.649334192276001, -1.8228428363800049, -0.008696507662534714, 0.16497796773910522, -1.5723682641983032, 0.6200472712516785, -0.0004880521446466446, -0.06306532770395279, 0.31261157989501953, -0.09187930822372437, 0.04131140559911728, 0.782508373260498, -0.5959559082984924, 0.06064692139625549, -0.5739291906356812, -0.02101990394294262, -1.2950000762939453, -0.24914973974227905, -0.12530528008937836, -1.1721218824386597, -0.4822002649307251, 0.5899652242660522, 0.6259782910346985, -1.2402865886688232, 0.7870767116546631, -0.4369746446609497, 0.18998199701309204, -0.0720055028796196, 1.015255331993103, 0.706523060798645, 0.34110739827156067, -0.8286339640617371, -0.47342514991760254, -0.6729630827903748, 0.03684019669890404, 0.8202531933784485, -0.33393654227256775, 0.15830527245998383, 1.0594464540481567, 1.277459740638733, -0.7369261384010315, 0.5688251256942749, -0.4479668438434601, -0.12638626992702484, -1.8420854806900024, -0.3850608170032501, 0.32251492142677307, -0.915396511554718, 0.9311253428459167, 0.7299076318740845, -2.0059235095977783, 0.39228904247283936, -0.10560978949069977, -0.028906600549817085, -0.4947807490825653, -0.5115354061126709, -0.4544996917247772, 0.3694639205932617, -0.3088075816631317, -0.408904492855072, -0.36585932970046997, -0.19695739448070526, 0.7872363924980164, -0.6560291051864624, -0.5838624238967896, -0.12034448981285095, 0.7884225845336914, 0.14784692227840424, 1.117051124572754, -0.05796169862151146, -1.345478892326355, -0.7041246294975281, 0.08321095257997513, 0.529660701751709, 0.19697551429271698, -0.03227046877145767, 0.8056545257568359, 0.2869899272918701, 0.47274482250213623, 0.45184144377708435, -0.4889199435710907, 0.6223495006561279, 0.628815770149231, 0.31170254945755005, 0.18250177800655365, 0.7859780788421631, -0.938330352306366, -0.6232382655143738, -0.4422529339790344, 0.826309084892273, 1.2633147239685059, 0.03181355074048042, 0.9409759044647217, -0.43287476897239685, -0.03172934800386429, -1.2186462879180908, -0.2452152967453003, -0.650403618812561, -0.1339634209871292, -0.43965762853622437, -1.297868013381958, -0.13706129789352417, -0.4377107322216034, -0.34480077028274536, 0.4158632755279541, 0.20218303799629211, 0.8623424172401428, 0.15006335079669952, 0.0361722931265831, -1.4473973512649536, -0.5917639136314392, 0.0014616474509239197, -0.6014490723609924, 0.6389827728271484, 1.8451262712478638, -1.1522901058197021, 0.2790762484073639, 0.16619248688220978, 0.14315445721149445, 0.4390221834182739, 0.1333126425743103, 1.0373014211654663, -0.8618685603141785, -0.14229705929756165, 0.44340479373931885, 0.6496434211730957, 0.2471732497215271, -0.6984741687774658, -0.561532735824585, 0.8939107656478882, 0.18568098545074463, -0.053817931562662125, -0.28943005204200745, 0.6741330027580261, -0.7632603645324707, -0.9266805052757263, -0.1817457675933838, 0.43954500555992126, 0.19960151612758636, -1.0277429819107056, -1.265846848487854, -0.79292231798172, -0.048702746629714966, -0.4376675486564636, 0.27950915694236755, 0.4873412847518921, 0.3759476840496063, -0.10220973938703537, -0.20588867366313934, 0.6738074421882629, 0.1067139059305191, 0.4503036439418793, -0.8200979828834534, 0.17916478216648102, 1.1860380172729492, 1.8373132944107056, 0.5353924036026001, 0.36343640089035034, 0.5088455677032471, -0.8362889885902405, 0.1021401658654213, 0.0762859657406807, 0.34834203124046326, 0.12846381962299347, -0.3110567033290863, -0.17123202979564667, -0.7173298001289368, 0.08934736996889114, 0.21027086675167084, -0.04310140758752823, 0.41818782687187195, -0.5920736193656921, -0.8199197053909302, 0.5127832889556885, 0.8509542346000671, -0.2269086092710495, 0.23345819115638733, -0.6827638745307922, 0.7931607961654663, -0.7388885021209717, 0.24690905213356018, -0.526452898979187, -0.3004627525806427, 0.67826247215271, -1.162887454032898, -0.3607190251350403, -0.21430206298828125, 0.470994770526886, 0.9541324973106384, -1.388878345489502, -0.29374420642852783, -0.6122921109199524, 0.648681640625, 1.0683081150054932, 0.6999523639678955, 0.47633033990859985, 0.4716246426105499, -0.5760011672973633, 0.3465891480445862, 0.6919347047805786, 1.667285680770874, -0.1787552535533905, -0.04806780070066452, 0.3573518693447113, -0.8329241275787354, -0.27790001034736633, -0.7066339254379272, 0.15276402235031128, 0.23236623406410217, -0.07978778332471848, 0.31970804929733276, 0.0675094798207283, -0.17835408449172974, 2.2376174926757812, 0.30049407482147217, 0.4388484060764313, 0.17439678311347961, 0.3712727129459381, -0.6561214923858643, -0.46220073103904724, 0.4113943874835968, -0.444498747587204, -0.3799828886985779, 0.11938337981700897, 0.03025214374065399, 0.4271557033061981, 0.29046630859375, -0.005061892792582512, 0.6177522540092468, 0.7318719029426575, 0.056950222700834274, -0.19368702173233032, 0.859557032585144, 1.256103754043579, 0.2939263582229614, 1.386722445487976, -0.9619196057319641, -0.620182454586029, 1.2754573822021484, -0.3608682155609131, 0.893416702747345, 0.5324523448944092, 0.5365183353424072, 1.2257977724075317, -1.2856359481811523, -0.1043260395526886, 0.7757651209831238, 0.020057927817106247, 1.077824354171753, -0.1759367734193802, 0.19966846704483032, -0.3002748489379883, -0.39894577860832214, -0.20554940402507782, -9.427405893802643e-05, 0.46471503376960754, -0.08061165362596512, 0.22854536771774292, 0.9607108235359192, -0.8562830090522766, -0.33067235350608826, -0.3707670569419861, -0.625816285610199, -1.182539939880371, -0.47465425729751587, 0.5623898506164551, 0.4340505003929138, 1.2304645776748657, 1.310883641242981, 0.5866408348083496, -1.028008222579956, 0.1678091585636139, -0.897739589214325, 0.49246543645858765, -0.24797073006629944, 0.06301112473011017, -0.5787336826324463, -0.5266452431678772, 0.4607309103012085, -0.28544747829437256, -0.5343177318572998, -0.05716030299663544, -0.3662998080253601, -1.0232843160629272, 0.7196400761604309, 0.597989559173584, 0.8838070034980774, 0.5020440220832825, 0.499743789434433, 0.5399678945541382, 0.23989371955394745, -0.4378305673599243, 0.12107902020215988, 0.01291186735033989, 0.5087525844573975, -0.17489409446716309, -0.43630561232566833, -1.0120984315872192, 0.19508887827396393, 0.6876407265663147, -0.23949329555034637, 0.5630353093147278, 1.2969380617141724, 1.673221230506897, -0.11194619536399841, -0.695122241973877, 0.7635161280632019, -0.49916529655456543, 1.1228200197219849, 0.5394834876060486, -0.38936835527420044, 0.40760698914527893, -0.11160560697317123, -1.7343989610671997, 1.4849907159805298, -0.6531360745429993, 0.0855613499879837, 0.7652040123939514, 1.0779019594192505, 0.4791003167629242, 1.0358569622039795, -0.6255294680595398, -0.004006918519735336, -0.36610308289527893, -0.7891416549682617, -0.32717815041542053, 0.9827044606208801, 0.39684224128723145, -0.4556652903556824, -0.7127521634101868, -0.3000662624835968, -0.5802121758460999, 0.816472589969635, -1.0703712701797485, 0.5682137608528137, 0.5245531797409058, -0.4251790940761566, 0.002630474977195263, -0.514298141002655, 0.35963767766952515, -1.2959758043289185, 0.15135709941387177, -0.10165213793516159, 1.2180907726287842, 0.7867202162742615, 0.08677104115486145, 0.8752498626708984, -0.5462058782577515, -0.24960856139659882, -0.526009202003479, -0.7983767986297607, 1.0706521272659302, 0.5694261789321899, 0.5870237350463867, 0.2986200749874115, -0.5765105485916138, -0.4859859049320221, -0.8990329504013062, 0.012598699890077114, 1.7227187156677246, -1.1810388565063477, -0.6886604428291321, -0.44475212693214417, -0.39014336466789246, 0.3462126553058624, -0.10762009024620056, 0.7050513625144958, -0.6946259140968323, -0.9771180748939514, -0.4237552583217621, -0.1306001842021942, 0.9881629347801208, -0.3630749583244324, 0.3611970543861389, 0.6170797348022461, -0.9244623780250549, 0.5148497819900513, 0.3642709255218506, -1.4424418210983276, 0.13240019977092743, -1.3992254734039307, 0.8392981290817261, 0.4802493453025818, -0.3977796733379364, 0.4642927348613739, 1.2060232162475586, -1.8536428213119507, -0.8435739874839783, -0.7037032246589661, -0.29580816626548767, 0.12784965336322784, 1.209036946296692, -1.678646206855774, 1.052708625793457, 0.13217684626579285, -0.39849916100502014, -0.3153071701526642, 0.031508225947618484, -1.0722649097442627, -0.08725936710834503, -0.40003472566604614, 0.42892029881477356, 0.5693300366401672, 0.9040549397468567, 0.46791478991508484, 0.7820925116539001, 0.10034490376710892, 0.8428748846054077, -1.0689072608947754, -0.8427324295043945, 0.15474437177181244, 0.5276548862457275, -0.4971717894077301, -1.16468346118927, 0.3282600939273834, -0.3584335148334503, -1.025078296661377, 0.011163618415594101, 1.0429447889328003, -0.45006951689720154, 0.37852540612220764, -0.5271130800247192, -0.5660040974617004, -0.31400376558303833, 0.4965716004371643, 0.6247528791427612, -1.0087132453918457, -0.2708636522293091, -0.6848442554473877, 0.33574748039245605, -0.7479097247123718, -0.22932401299476624, 0.7229143381118774, -0.07173464447259903, -0.8252002000808716, 0.5585306882858276, 0.029506783932447433, 0.6417175531387329, -0.6078155040740967, 1.4569860696792603, 0.6805092096328735, -0.7063013315200806, 0.9273843765258789, 0.11732058227062225, -0.17685146629810333, -0.779891312122345, -0.8938720226287842, -0.802925705909729, -0.24713736772537231, 0.5429551005363464, 0.576684296131134, -0.09773509949445724, -0.64961838722229, -0.038219500333070755, 0.446614146232605, 0.2510811686515808, 1.0375629663467407, -0.7974434494972229, -0.7707885503768921, 0.5093766450881958, 0.4196317493915558, -0.7914115190505981, -0.4376845061779022, 0.3970837891101837, -0.16765563189983368, -0.30183470249176025, 0.07028558850288391, 1.0252766609191895, -0.6809148192405701, 0.5956704020500183, 0.6262147426605225, -0.44824591279029846, -0.5948882102966309, 0.09394185245037079, -1.6411901712417603, -0.5207894444465637, -0.7713719606399536, -0.5641973614692688, 0.6844007968902588, -0.9554260969161987, -0.7917714715003967, 0.3647232949733734, -0.13774748146533966, -0.39790165424346924, -0.23719081282615662, 0.08098206669092178, 0.35349026322364807, -0.42258477210998535, 1.3369272947311401, -0.25992733240127563, 1.586531162261963, -0.3861117959022522, -0.2868979573249817, -0.32137343287467957, -0.5664754509925842, -0.2880096733570099, -0.4364742338657379, 0.32826724648475647, -0.23139327764511108, -0.16762802004814148, -0.5833325982093811, -0.47595059871673584, 0.029585065320134163, -0.2147521823644638, 0.3438867926597595, -0.036901846528053284, -1.3156384229660034, 0.4918944835662842, 1.0064059495925903, 0.09388060122728348, -0.5245935916900635, -1.0307624340057373, -0.4180513918399811, 0.48694321513175964, -0.45539969205856323, 0.5881503820419312, -0.5792208909988403, 1.0266368389129639, -0.04796529933810234, -0.5791592597961426, -0.3091413378715515, -1.0096112489700317, 0.8719939589500427, -0.4438443183898926, 0.1338626742362976, -0.3352045714855194, 0.07668221741914749, 0.2886281907558441, -1.1258742809295654, -0.03647088259458542, -0.06138520687818527, -0.045728567987680435, 0.3238079845905304, -0.6887767910957336, 0.06716417521238327, -0.5281164050102234, -0.23870444297790527, 0.30119603872299194, 0.5802748799324036, 0.6053229570388794, 0.24588648974895477, -1.686085820198059, 0.1323104053735733, 0.3425111770629883, -0.08099321275949478, 0.8341683745384216, 1.2401199340820312, 0.8586206436157227, 0.43998801708221436, -0.32623952627182007, 0.3365526795387268, 0.18510647118091583, -1.0701125860214233, 0.3291851580142975, -0.5710307955741882, -0.451533704996109, -0.21794696152210236], [0.3681657612323761, -0.031838156282901764, -2.459928035736084, -0.7651617527008057, -0.056081224232912064, -0.24489091336727142, 1.8173691034317017, -0.1901022344827652, -0.06255776435136795, -1.5353097915649414, -0.7312269806861877, 0.33043909072875977, 0.8767998218536377, 0.4073050916194916, 0.4780791699886322, 0.17301952838897705, 1.3521459102630615, 0.24465115368366241, 0.08144480735063553, 0.7331534624099731, -0.5450794696807861, -1.1047978401184082, -0.04312922805547714, -0.5034513473510742, -0.0127370934933424, 0.2758917212486267, -1.1418653726577759, 0.28946632146835327, -0.9896581172943115, -0.03583644703030586, 0.7203236222267151, -1.0428407192230225, 0.2603321671485901, 0.16507208347320557, -0.8462052941322327, 0.015049264766275883, 1.6641037464141846, 0.7172606587409973, 0.7927606701850891, 0.3347488045692444, 2.052597761154175, 0.31745707988739014, 1.1500251293182373, -0.8387081623077393, 0.008944448083639145, -0.7304919362068176, 1.367149829864502, -0.7231833338737488, -0.5010404586791992, -0.08842021226882935, 1.4349461793899536, -0.19263555109500885, -0.5319409966468811, 0.8959218859672546, 0.5745543241500854, -0.7387271523475647, 0.5179842114448547, -1.447225570678711, 0.0411655530333519, -0.6377593874931335, 0.8693774342536926, 0.12981896102428436, 0.06794513016939163, 1.1880813837051392, 0.1602543294429779, -1.183005928993225, -0.3743632137775421, 0.42580223083496094, -0.06753750145435333, -0.6264793276786804, 0.18462041020393372, 0.1264413595199585, -0.023844370618462563, 0.6135680079460144, -1.5296242237091064, 0.1633738875389099, 0.9211129546165466, 0.7883664965629578, 0.21564805507659912, 1.0153018236160278, -0.7113806009292603, 0.17026250064373016, 0.9724332690238953, -0.4124482274055481, 0.46375077962875366, -0.016275877133011818, 0.5405431985855103, -0.4101465940475464, -0.8867979049682617, 1.438563346862793, -0.29768720269203186, 0.19527554512023926, 0.24087484180927277, 0.08884960412979126, -0.40764275193214417, -0.33415937423706055, 0.3053407669067383, -0.21059244871139526, -0.08167419582605362, -0.18191632628440857, -0.9445763230323792, -1.1580032110214233, 0.1946353316307068, -0.1737082451581955, 1.0898771286010742, 1.7407798767089844, 0.4279560446739197, -0.6301180720329285, -0.4525262713432312, 0.1581990271806717, -1.0175833702087402, 0.1142222210764885, -0.5883414149284363, -1.072426676750183, -0.4927627146244049, 0.8121412992477417, 1.0668087005615234, -0.20522810518741608, 1.0351439714431763, 1.0236202478408813, -0.2002328485250473, -0.11087842285633087, 0.015616814605891705, 0.04906172677874565, 0.39606761932373047, -0.19421999156475067, -0.2657209038734436, -0.21873007714748383, 0.6636607646942139, 0.6264691948890686, 0.6828615069389343, -0.01027217973023653, 0.11125892400741577, 1.538573980331421, -0.3809579014778137, 0.1862897425889969, -0.0478726327419281, -0.9878835678100586, -0.23543605208396912, 0.17438967525959015, 0.8558505773544312, -0.9745966196060181, -0.3974047303199768, -0.012892399914562702, -0.32781434059143066, -0.7271813154220581, 0.5183209776878357, -0.21655242145061493, -0.31500980257987976, -0.7822337746620178, -0.9239712357521057, -0.45142337679862976, 0.28552865982055664, 0.8037049174308777, 0.8084412217140198, -0.7321837544441223, -0.6440605521202087, 0.45688462257385254, 0.20775999128818512, -0.22325026988983154, 0.7194863557815552, -0.23095254600048065, -0.5000853538513184, 0.4286063015460968, 0.3953326344490051, -0.6948782801628113, -0.4724065065383911, 0.9975688457489014, 0.5690299868583679, 0.1364593654870987, -0.5240446329116821, 0.16345062851905823, -1.3678842782974243, -1.140981912612915, 0.4561753273010254, -0.0820605605840683, 1.4842464923858643, -0.308335542678833, -1.5958333015441895, -1.2657440900802612, 1.244641900062561, -0.4829949736595154, 0.42515379190444946, -0.40285223722457886, 0.258015513420105, -0.6733631491661072, 0.12711173295974731, 0.16520443558692932, -0.6796994209289551, -0.26485443115234375, -0.4304712116718292, -0.10637831687927246, -0.6439041495323181, 0.5023093223571777, -0.5786958932876587, -0.4237849712371826, 0.5423569083213806, -0.6957409977912903, -1.0018223524093628, -0.4802326261997223, 0.14781199395656586, -0.24036848545074463, -1.7560460567474365, 0.6514887809753418, -0.671562671661377, 1.2401726245880127, -0.955608069896698, 0.443241149187088, -1.2090641260147095, -0.2255619466304779, 0.49843624234199524, 0.43378540873527527, -0.3674169182777405, 0.4693520665168762, -0.6669744253158569, -1.430066466331482, 0.44669589400291443, 0.09352952241897583, -0.2908910810947418, -0.0767882764339447, -0.2388361096382141, 0.8333168625831604, 0.7083380222320557, -0.673053503036499, 0.6324928998947144, -0.12940940260887146, 0.015592600218951702, -0.587775707244873, -0.2144167274236679, 0.822666347026825, -0.38964831829071045, -0.7648522853851318, 0.9324312806129456, 0.5248907804489136, -0.9452700614929199, 0.17051191627979279, -0.15189658105373383, 0.08391782641410828, -0.4012625217437744, 0.4019967019557953, 0.7600375413894653, 0.14069846272468567, 0.41088613867759705, -0.24379554390907288, -0.7266443967819214, 0.9905474185943604, 0.8396660685539246, -0.6011087894439697, 0.6113777756690979, 1.351919412612915, 1.1429295539855957, -0.14776982367038727, 0.6488644480705261, -0.018304914236068726, -0.6866177320480347, -0.6957728266716003, -0.9673004150390625, 0.4046081304550171, -1.10018789768219, 1.4038891792297363, 0.7951256632804871, -0.3262728452682495, -0.6286113262176514, -0.0042452155612409115, -0.2768602967262268, -0.5677655339241028, -0.4284367263317108, 0.46824824810028076, 0.008076192811131477, -0.48239752650260925, -0.24772793054580688, -0.09129958599805832, -0.0753851979970932, 0.1345071643590927, -0.428689181804657, 0.49295851588249207, 0.31196704506874084, 0.23589852452278137, 0.04926914721727371, 1.2331193685531616, 0.34552454948425293, -1.4949002265930176, -0.29194700717926025, 0.008132628165185452, -0.210911363363266, 0.002245369367301464, -0.4435167908668518, 0.6745705008506775, 0.07845913618803024, -0.4361952543258667, -0.10554368793964386, 0.9556537866592407, -0.3555890917778015, 0.5134099721908569, -0.35067620873451233, 0.13219614326953888, 1.4403355121612549, -0.4570268392562866, -0.5915398001670837, 0.14420263469219208, 0.4708945155143738, 0.8022081851959229, 0.19198118150234222, 0.9716382622718811, -0.025265252217650414, -0.36288949847221375, -0.40556877851486206, -0.187762051820755, -0.46341457962989807, -0.03901416435837746, -0.584956169128418, -1.179102897644043, -0.4538908302783966, -0.2335810512304306, 0.16958990693092346, 0.5029547214508057, 0.69893878698349, 0.4557676613330841, 0.8599614500999451, 0.09876225888729095, -0.08860227465629578, 0.5551764369010925, 0.23350226879119873, -0.7468759417533875, 0.4742756485939026, 0.5414488315582275, -1.3533309698104858, 0.12524493038654327, 0.1220628023147583, 0.1017616018652916, 0.5261750221252441, 0.039073362946510315, 0.14215509593486786, -1.2036052942276, -0.35184046626091003, 0.4244808852672577, 1.1583751440048218, -0.7664558291435242, 0.053037822246551514, -0.590160608291626, 0.5868862867355347, 0.8579103946685791, 0.8066418766975403, -0.41849833726882935, 1.1283178329467773, -0.642029881477356, -0.765142560005188, -0.4036860466003418, 0.20061342418193817, 0.7400676012039185, -0.43992894887924194, -0.7583969831466675, 0.2174205780029297, -0.332745760679245, -0.40252289175987244, 0.8914322853088379, -0.3163961172103882, 0.4573878049850464, -0.32262372970581055, 0.3313230276107788, 0.6927400231361389, -0.5335599184036255, 0.2338491976261139, -1.239630937576294, 0.6617880463600159, 1.0732554197311401, 1.751615047454834, 0.14799083769321442, 0.3651745319366455, 0.4373592436313629, -0.12027833610773087, 0.21426819264888763, 0.14651192724704742, 1.0430017709732056, -0.1791083812713623, -0.15366068482398987, -0.36925438046455383, -0.6110462546348572, -0.085926353931427, 0.05045847222208977, 0.45127996802330017, 0.3635088801383972, -1.1861063241958618, -0.14492271840572357, 1.209093689918518, 1.0153462886810303, -0.7758303880691528, -0.26502352952957153, 0.20864738523960114, 0.031939540058374405, -0.2661663293838501, 0.025165973231196404, -0.3057243227958679, -0.1301119178533554, 0.5018800497055054, -1.5185610055923462, 0.7413727045059204, 0.9549863338470459, -0.218706414103508, 0.45242637395858765, -1.4297373294830322, 0.41839733719825745, -1.0048856735229492, 0.7241331338882446, 0.5231839418411255, 0.040715981274843216, 0.4100794196128845, 0.1835457682609558, 0.2638531029224396, 0.23748788237571716, -0.015644829720258713, 1.2207469940185547, -0.5235627293586731, 0.14415961503982544, 0.009221120737493038, -0.613422691822052, 0.6897541880607605, -0.24573275446891785, -0.6381076574325562, -0.1498836725950241, 0.059421781450510025, 0.168848916888237, 0.15577638149261475, -0.05465254560112953, 2.3256595134735107, 0.3618350923061371, 0.13411182165145874, -0.03816773742437363, -0.32496216893196106, -1.3314783573150635, -0.1418556571006775, -0.025136923417448997, 0.236083522439003, -1.085587739944458, -0.2197723239660263, 0.49137282371520996, 0.2651158273220062, 0.2931915521621704, 0.22525526583194733, 0.06872902810573578, 0.5352818369865417, 0.3854880928993225, 0.7648630142211914, 0.6445133090019226, 1.4795469045639038, -0.13100354373455048, 0.6734827756881714, -0.5633068680763245, -0.3999882936477661, 0.19519735872745514, -0.7830716371536255, 0.2462255358695984, 0.5523865818977356, 0.15209755301475525, 0.930730402469635, -1.660893440246582, -0.20873600244522095, 1.310314655303955, 0.22187228500843048, 1.0798531770706177, 0.8212985992431641, 0.23377981781959534, 0.029316283762454987, 0.07851091027259827, 0.27261999249458313, -0.11087249964475632, 0.8037967681884766, 0.6096410751342773, -0.1995197981595993, 1.0132055282592773, -0.8141394257545471, 0.003448547562584281, -0.7906668782234192, -0.4031030237674713, -0.11491671204566956, -1.2708255052566528, 0.40340670943260193, 0.9067167639732361, 0.7400898933410645, 1.216482400894165, 0.21274083852767944, -1.7791099548339844, 0.69969242811203, -0.6235780715942383, -0.1835537850856781, -0.8467634916305542, -0.8377035856246948, -0.6982970833778381, -0.2660283148288727, 0.0366964191198349, 0.02089635841548443, -0.08773303031921387, -0.5493305325508118, 0.2558816075325012, -0.7425603270530701, 1.1302422285079956, 0.7559885382652283, 1.258395791053772, 0.2148919403553009, 0.26492780447006226, -0.009882916696369648, 0.8583818078041077, -0.6474348902702332, 0.036018334329128265, 0.6351751089096069, -0.618404746055603, -0.7539142966270447, -1.7294331789016724, -0.8617345094680786, 1.4227828979492188, 0.8685662746429443, -0.44240328669548035, -0.43093809485435486, 1.0128997564315796, 1.166511058807373, -0.28986793756484985, -0.35273611545562744, 0.26302391290664673, -0.9891103506088257, 0.43405547738075256, 0.6225698590278625, -0.6426807045936584, -0.5444246530532837, -0.9704039096832275, -1.5007988214492798, 0.5698083639144897, 0.20292910933494568, -0.2593689560890198, 0.42868107557296753, 1.0110116004943848, 0.4327407777309418, 0.26048803329467773, -0.31285449862480164, 0.5159377455711365, -0.531110942363739, 0.6910595297813416, -0.8793213367462158, 0.659443736076355, -0.20664361119270325, 0.18519775569438934, -0.5638743042945862, 0.6126536726951599, -0.21523542702198029, 0.015631860122084618, -0.5261462926864624, -0.06970831006765366, 0.29701414704322815, 0.7492117881774902, -0.47667840123176575, -0.3815670311450958, 0.2793501317501068, -0.4931916892528534, -0.1122409850358963, -0.6692039966583252, 0.7434548139572144, 0.05670485273003578, -1.4182847738265991, -0.239610955119133, -0.3656897246837616, -0.037159040570259094, 0.04526432603597641, -0.6218516230583191, 1.6926321983337402, 0.8193944692611694, 0.5750724673271179, 0.6535367965698242, -0.44726383686065674, 0.3050444722175598, -0.34907078742980957, 0.7035507559776306, 1.3553466796875, -0.6802181005477905, 0.22086846828460693, -0.1956057846546173, -0.7225221395492554, 0.24491015076637268, -0.22608056664466858, 0.06199515610933304, -0.8001269698143005, -0.8255493640899658, -0.6825212836265564, -0.33477985858917236, 0.5869776606559753, -0.010148223489522934, -0.48326295614242554, 0.5859284996986389, -1.1809139251708984, -0.35647961497306824, 0.43735530972480774, -1.0291956663131714, -0.4109179675579071, -1.383960485458374, 0.551770031452179, 0.14771725237369537, 1.1624627113342285, 0.05340156704187393, 0.4784069061279297, -1.145229458808899, -1.0364638566970825, -0.8134616613388062, -0.055544883012771606, 0.8293038606643677, 0.42592859268188477, -1.0878868103027344, 0.7246264219284058, 0.36601021885871887, -0.26461365818977356, -0.7266992330551147, 0.06236466392874718, -0.29225873947143555, 0.28085756301879883, -0.2601448893547058, 0.4483984708786011, 0.16714833676815033, 1.1176140308380127, 0.7130688428878784, 1.1518473625183105, 0.8370899558067322, 1.0776070356369019, -1.056018352508545, -0.32137417793273926, -0.3426746428012848, 0.8414547443389893, -1.2028146982192993, -0.6385138630867004, -0.5335033535957336, -0.9964515566825867, -0.4217670261859894, 0.5292300581932068, 0.519156813621521, -0.8695055842399597, -0.5715409517288208, -1.515110731124878, 0.5597087740898132, -0.8888206481933594, -0.1337786465883255, 0.007842754013836384, -0.553290605545044, 0.48116734623908997, 0.12915778160095215, -0.4632242023944855, -1.1909403800964355, -0.9069709181785583, 0.4205273389816284, 0.44002002477645874, -0.9175572395324707, 0.5626019835472107, 0.20327796041965485, -0.164287731051445, -0.7628527283668518, 1.3838320970535278, 1.6761441230773926, -0.009465521201491356, 0.2838335931301117, -0.47884079813957214, 0.6364989280700684, 0.40589460730552673, -0.7978194952011108, 0.06713628023862839, -0.6246308088302612, 0.7259085178375244, 0.09332015365362167, -0.2596748173236847, 0.0750102698802948, 0.28080517053604126, -0.3388994634151459, 0.14474545419216156, 0.7700204849243164, -0.10224289447069168, -0.8952184915542603, 1.380150318145752, 0.7865402698516846, -0.3821813762187958, -0.2736569344997406, 0.7183178067207336, 0.38542693853378296, 0.1432507187128067, 0.5172150135040283, 0.844612181186676, -1.237534999847412, 0.4259948432445526, 0.09873069822788239, -0.054306644946336746, 0.03728248551487923, -0.7247014045715332, -1.5630282163619995, -0.41176533699035645, -0.560477077960968, -1.2089101076126099, 0.029981564730405807, -1.0414714813232422, -0.17830371856689453, 0.11440415680408478, -0.03213290125131607, 0.4831271767616272, -0.8973010182380676, 0.030270757153630257, -0.9963438510894775, -0.003104392671957612, 0.4200747013092041, -0.5212502479553223, 0.5941575169563293, -0.29284170269966125, -0.3826773762702942, -1.102800726890564, -0.023585904389619827, 0.03222241625189781, 0.42149242758750916, 0.12133333086967468, -0.44582515954971313, -0.13272720575332642, -0.7060645222663879, -0.5496354699134827, 0.4876587986946106, -1.2204357385635376, 0.1157526969909668, -0.0606808103621006, -1.2134448289871216, 0.36538493633270264, 0.9572460055351257, -0.2913050949573517, -0.12831003963947296, -0.6839431524276733, -0.31761616468429565, 0.35073232650756836, 0.08236084133386612, 0.07052401453256607, -0.3502925932407379, 0.8803417086601257, -0.02001572586596012, -0.4914458990097046, 0.25837117433547974, -0.46902862191200256, 0.7937739491462708, -0.48136982321739197, 0.4783448278903961, 0.8051706552505493, -0.1792004555463791, 1.0510282516479492, -0.914286732673645, 0.1560809314250946, 0.25225532054901123, -0.14049167931079865, 0.1589011698961258, -0.5282823443412781, -1.313554286956787, 0.24646563827991486, 0.06469665467739105, 0.5612870454788208, 0.36976417899131775, 0.10667701810598373, -0.006996444426476955, -0.9605422019958496, 0.5277560353279114, 0.2108311653137207, -0.6221827268600464, 0.25590816140174866, 1.7750520706176758, 1.858909249305725, 0.3573552966117859, 0.5614404678344727, 0.227325901389122, 0.44523921608924866, -1.2467213869094849, -0.6457891464233398, -0.929860532283783, -0.03990095108747482, -0.8577861785888672], [0.07677395641803741, 1.3806259632110596, -1.2699363231658936, -1.5356322526931763, 0.28784123063087463, -0.6600820422172546, 0.3808666467666626, 0.09548139572143555, -0.11653673648834229, -0.943620502948761, -1.2869826555252075, 0.2603827714920044, 0.7064964771270752, 1.3548978567123413, 1.1988393068313599, 0.18649962544441223, 0.47548431158065796, -1.0430010557174683, 0.1967732459306717, 0.7167782187461853, 0.6623823642730713, 0.2816668748855591, -0.3298620581626892, -0.712647557258606, 0.3337882161140442, 0.26225709915161133, -1.3182188272476196, -0.12607836723327637, -1.2256340980529785, -0.5030423998832703, 1.0629892349243164, -0.8521609902381897, 0.6328336596488953, -0.5084280967712402, -2.006047248840332, -0.8524157404899597, 1.0501313209533691, 0.7970028519630432, -0.39185667037963867, 0.23745490610599518, 1.163370966911316, 0.8688482642173767, 0.07946927100419998, -1.2634555101394653, 0.8793937563896179, -0.7095260620117188, 0.3003305494785309, -0.6453291177749634, 0.21897484362125397, -1.2830053567886353, 0.9315306544303894, -0.9804143309593201, -0.1349584311246872, 0.6443076133728027, 0.6426131129264832, 0.45295456051826477, -0.47361186146736145, 0.3182075619697571, 0.5347548127174377, 0.0762651264667511, 1.2109607458114624, 0.5530859231948853, -1.133271336555481, 0.6734282374382019, 0.1683398187160492, -0.02213137410581112, -0.21751420199871063, 0.34552910923957825, -0.7009471654891968, -0.19861863553524017, 0.048688288778066635, 0.4266055226325989, -0.7008364200592041, 0.18486183881759644, -1.34322988986969, 0.7325365543365479, 0.2292095571756363, 0.3040083050727844, 0.430677592754364, 0.9410544037818909, -0.9943044781684875, -0.6342321634292603, 0.3019806146621704, -0.7355782389640808, 0.5559640526771545, 0.17867693305015564, 0.4085918068885803, -0.7705969214439392, -0.39057350158691406, 1.7995176315307617, -0.4921817481517792, 0.34358084201812744, -0.122661292552948, -0.15047724545001984, -0.2145165205001831, -0.31304284930229187, 0.40370622277259827, -0.542175829410553, 0.13593944907188416, -0.16933231055736542, -0.7189620733261108, -0.31108638644218445, 0.41670727729797363, -0.08561930805444717, 0.81560879945755, 1.351537823677063, 0.42163193225860596, -0.9785571098327637, -0.48656484484672546, -0.1423010230064392, 0.4801396131515503, -0.4237585961818695, -1.172247290611267, -1.4889798164367676, -0.6606987714767456, 0.5740432739257812, 0.9610428810119629, 0.03470531478524208, 0.9044538736343384, 1.309261679649353, -0.8128468990325928, -0.2621709406375885, -0.15001904964447021, 0.5778190493583679, 0.9277558326721191, 0.26243653893470764, -0.5886715650558472, -0.058925922960042953, -0.04187340661883354, -0.23356039822101593, -0.18212147057056427, 0.31275075674057007, -0.5020715594291687, 0.8131093382835388, -0.2330971360206604, 0.829891562461853, -0.45073482394218445, -0.6139722466468811, 0.5421504378318787, -0.5819083452224731, 0.2945268452167511, -0.7967106103897095, -0.8748414516448975, -0.9362154006958008, 0.3065093159675598, -0.6610477566719055, 0.09301811456680298, -0.1657586246728897, -0.6893379092216492, 0.5363911390304565, -0.5183603167533875, 0.6062725186347961, -0.16856464743614197, 1.358058214187622, -0.15808986127376556, 0.060468029230833054, 0.6049166321754456, -0.1453263759613037, -0.30961480736732483, -0.3202655613422394, 0.7158974409103394, 0.47444602847099304, -0.8426102995872498, 0.8267077803611755, -0.06057871878147125, -0.21555764973163605, 0.6185052990913391, 0.16059890389442444, -0.5764971375465393, 0.7836573719978333, -0.6300258636474609, -0.03356556221842766, -0.336588978767395, 0.18668901920318604, 0.5999709367752075, -0.13327720761299133, 1.1702325344085693, -0.7807235717773438, -0.19164608418941498, -0.8150057792663574, 0.6520563960075378, -0.8523508906364441, 0.17207194864749908, 0.13949546217918396, 0.347182035446167, -0.30826592445373535, -0.22873236238956451, -0.6627998948097229, 0.3976166546344757, -0.48923248052597046, -0.837409257888794, 0.01728380285203457, -1.0773849487304688, 0.2311161905527115, -0.19557271897792816, -0.9966260194778442, 0.9091746211051941, -1.1049385070800781, -0.38074779510498047, 0.5220676064491272, -0.22319923341274261, 0.03329313173890114, -0.9423344731330872, 0.396999329328537, -0.874788761138916, 0.9802021384239197, -0.10028577595949173, 0.09327081590890884, -0.4843990206718445, -0.032881058752536774, 1.0841795206069946, -0.23211826384067535, -0.41474974155426025, 0.8798545598983765, 0.31414005160331726, -0.7258337140083313, -0.09912698715925217, 0.4129366874694824, -0.012055560946464539, -0.044803619384765625, 0.8503963947296143, 0.0005677081644535065, 1.241368293762207, 0.9740049242973328, 0.09024330973625183, 0.09999401122331619, -0.9174879193305969, -0.2298884391784668, -1.0496505498886108, 0.2580782175064087, -0.6691705584526062, -1.1030375957489014, 0.6451396942138672, 0.7325820922851562, 0.19750022888183594, 0.9518560171127319, -0.3246753215789795, 0.809966504573822, 0.8839257955551147, 0.8911351561546326, 0.378470778465271, -0.328023761510849, -0.5228123068809509, -0.09553094953298569, -0.2057301104068756, 0.32259050011634827, 0.9379257559776306, -0.013096507638692856, -0.7358396649360657, 1.2085250616073608, -0.3378508388996124, -0.16680823266506195, 0.6601868271827698, -0.03360723704099655, -0.11990771442651749, -0.8607083559036255, 0.023753192275762558, 0.22966264188289642, -0.7933010458946228, 1.1439464092254639, 0.8388224840164185, -1.2664599418640137, -0.32092586159706116, -0.2074742317199707, -0.5341672301292419, -0.5014175772666931, -0.45322224497795105, -0.9018877148628235, 0.21845240890979767, -0.0757814422249794, 0.08929818123579025, -0.026647543534636497, 0.10307558625936508, 0.9529176354408264, -0.0035988306626677513, -0.05710273236036301, -0.3997691571712494, 0.3708120882511139, 0.5552378296852112, 0.7013579607009888, 0.3442513942718506, -1.7392083406448364, -0.48397621512413025, -0.06709574908018112, 0.2580215036869049, 0.3122435212135315, -0.49801307916641235, 0.5791497826576233, 0.45479488372802734, -0.8046103715896606, 0.3223384618759155, 0.06951528042554855, -0.3217509686946869, -0.47366780042648315, 0.1352577656507492, 0.3997054100036621, 0.3202735483646393, -0.6104236245155334, -0.891555666923523, -0.4419594705104828, 0.26130592823028564, 1.1269536018371582, 0.6493079662322998, 0.9161345362663269, 0.48089855909347534, -0.17252230644226074, -0.3969975709915161, -0.25686514377593994, -0.2886400818824768, 0.19382351636886597, 0.07124646753072739, -0.545630156993866, -0.2362951785326004, -0.21415407955646515, 0.057872410863637924, 1.60462486743927, 0.2937034070491791, 1.1085001230239868, 0.616168200969696, -0.14651483297348022, -0.7783207297325134, -0.5816746950149536, 0.5759197473526001, -1.052229642868042, -0.002659915015101433, 1.1434717178344727, -0.6389883160591125, -0.03269163519144058, -0.5278652310371399, -0.24851027131080627, 1.0929487943649292, 0.12289006263017654, 0.20727598667144775, -0.7444596290588379, -0.2144932746887207, -0.5034123063087463, 1.2480567693710327, 0.004542395938187838, 0.36008894443511963, 0.006451457738876343, -0.29231998324394226, 0.4241555631160736, 0.8982851505279541, -0.26882490515708923, 0.6584389209747314, -0.12912389636039734, -0.3083720803260803, -0.7276343107223511, 0.5432356595993042, 1.0483380556106567, -0.23921829462051392, -0.0661541223526001, -0.7357192039489746, -0.1704714447259903, -0.7258622646331787, 0.6096521615982056, 0.5895826816558838, 1.1225143671035767, 0.18101397156715393, 0.4686220586299896, 0.6326187252998352, -0.13210873305797577, 0.022387726232409477, -0.5591018795967102, 0.8971781134605408, 0.4096233546733856, 1.2036272287368774, 0.058178387582302094, -0.5088319182395935, 0.4270830750465393, -0.7456441521644592, -0.15033145248889923, 0.259827196598053, 0.5951660871505737, -0.5921875238418579, -0.6611849665641785, -1.067111611366272, 0.10493308305740356, 0.13352075219154358, -0.31967440247535706, 0.27178800106048584, 0.1823800653219223, -0.5125186443328857, -0.7436568140983582, 0.7173309922218323, 0.27253809571266174, -0.23074352741241455, -0.36237362027168274, 0.18888568878173828, 0.29103586077690125, 0.0079725980758667, -0.20175319910049438, -0.5132974982261658, 0.1045583188533783, -0.07576772570610046, -0.44578227400779724, -0.7607650756835938, -0.020222440361976624, -0.0974377766251564, 0.18571016192436218, -0.5206632614135742, -0.1202344074845314, -0.25559866428375244, -0.38780614733695984, 0.9081661701202393, 0.29545891284942627, 0.3104698061943054, -0.03160027787089348, -0.744675874710083, -0.15091195702552795, 0.28390854597091675, 0.6200782060623169, 0.0964110866189003, 0.7609161734580994, -0.5780855417251587, -0.4238855838775635, 0.27341678738594055, -0.5212638974189758, -0.35722091794013977, -0.12736453115940094, -1.1084481477737427, 0.3737258017063141, -0.2365940511226654, -0.3500305116176605, 1.5649844408035278, -0.2843477427959442, 0.25674188137054443, 0.7082337737083435, -0.40497130155563354, -1.0971463918685913, 0.3312560021877289, 0.5651206374168396, 0.6428191661834717, -0.42487746477127075, 0.6661490201950073, 0.11274012178182602, -0.36083313822746277, 1.1911230087280273, -0.5230044722557068, 0.7252320051193237, 0.3486858308315277, -1.3880549669265747, 0.09366907924413681, 0.4326212704181671, 0.9352934956550598, 0.7396877408027649, 0.2833280563354492, -0.19006019830703735, -1.2919390201568604, 0.7980775237083435, -0.44194120168685913, 0.730673611164093, 0.7631547451019287, -0.07725837081670761, 1.5956802368164062, -1.1789462566375732, -0.7006160020828247, 0.6847208142280579, 0.5323665142059326, 0.3379839360713959, 0.8768864274024963, 0.06324831396341324, -0.8279657959938049, 0.08402083069086075, 0.7857793569564819, -0.11285524070262909, 0.5985491275787354, -0.4420994818210602, -0.4452437162399292, 0.4258463680744171, -0.22881484031677246, 0.3422882556915283, -0.1778225600719452, -0.3183348476886749, -0.2191949039697647, 0.025645582005381584, 0.3065781891345978, 0.41716232895851135, 0.4557121694087982, 1.5496201515197754, -0.8877393007278442, -1.5756070613861084, 0.2399551272392273, -0.6641305685043335, 0.22716374695301056, 0.8130924105644226, -0.641526997089386, -0.43324699997901917, -0.8688603043556213, -0.40343207120895386, 0.2255474179983139, -0.7950252890586853, -0.2795006036758423, 0.036226462572813034, -1.5510789155960083, 0.05888598412275314, 0.16077403724193573, 1.5132378339767456, 0.9455281496047974, 0.2767052948474884, 0.13431093096733093, 0.3379494845867157, -0.0667891651391983, 0.30335167050361633, -0.029513690620660782, -0.8096449971199036, 0.868901789188385, -0.9498786330223083, -0.6156595945358276, 0.8785766959190369, 1.0949335098266602, 0.3215770721435547, -0.26678037643432617, 0.4775385856628418, 1.346093773841858, -0.36143413186073303, -0.4660737216472626, 0.11159200966358185, -0.9312162399291992, 0.8688282370567322, 0.3134683072566986, -0.8811243772506714, -0.4928604066371918, -0.15748059749603271, -1.908845067024231, 0.929354190826416, -0.538619339466095, -0.9004946947097778, 0.12061671912670135, 0.1754385530948639, 0.5971811413764954, 0.44589802622795105, -0.6867509484291077, 0.19522801041603088, 0.5713384747505188, -0.578320324420929, -0.9203327298164368, -0.020842308178544044, 0.5815801024436951, 0.05561407282948494, -0.29661107063293457, 0.550616443157196, 0.5506563782691956, 0.4861295819282532, 0.5607157349586487, 0.16276758909225464, 0.7191662192344666, 0.6269069910049438, 0.49483972787857056, -1.7959730625152588, -0.05693226680159569, -0.9808796644210815, 0.22775311768054962, -0.3470669388771057, 1.0499666929244995, -0.3290523588657379, -1.1209434270858765, -0.008448265492916107, 0.4484178125858307, -0.5815371870994568, -0.5077971816062927, -0.5145175457000732, 0.4334772825241089, 0.6245616674423218, -0.9602362513542175, 0.10073895752429962, -0.2579309940338135, -0.8000388145446777, -0.5235157608985901, 0.5557928085327148, 0.8035745024681091, -1.172700047492981, -0.13555078208446503, 0.3886544704437256, 0.14246851205825806, 0.07037915289402008, -0.10416383296251297, -0.05367007479071617, -0.9977031946182251, -0.9110884666442871, -0.21748588979244232, 0.0929533913731575, 0.5551129579544067, -0.34759992361068726, 0.018439941108226776, 0.14802969992160797, -1.6698623895645142, 0.5637828707695007, 0.16440066695213318, -1.184288501739502, -0.40341007709503174, -1.1307461261749268, 0.834144651889801, 0.6086521148681641, -0.1953401416540146, 0.2487819492816925, 0.7998754978179932, -0.506863534450531, -0.6897277235984802, -1.4294092655181885, 0.010800709947943687, 0.7598833441734314, 1.183397650718689, -0.834864616394043, 0.4853964149951935, 0.585618793964386, -0.25289568305015564, 0.22920653223991394, 0.18972837924957275, -1.3923678398132324, -0.5434566140174866, 0.3747464716434479, 0.5102306008338928, 0.5031461715698242, 0.9333145022392273, -0.0062044532969594, 0.2667692005634308, 0.18640179932117462, 0.451277494430542, -0.14275723695755005, -0.026061540469527245, -0.5534740090370178, 0.1552751660346985, -1.0083777904510498, -0.7735018730163574, 0.8361942172050476, -0.303524911403656, -0.4120694696903229, 0.642204761505127, 0.9817479848861694, -0.28353151679039, -0.20404116809368134, 0.005872579291462898, 0.6107168793678284, -0.446209192276001, 0.9331203699111938, -0.06275397539138794, -0.7416232824325562, -0.25580549240112305, -0.17144939303398132, 0.3710358440876007, -0.598864734172821, 0.3688177466392517, 0.35131141543388367, 0.03695237636566162, -0.4252743721008301, 0.6982394456863403, 0.428684800863266, -0.051401782780885696, -0.40762782096862793, 1.1867016553878784, 1.4739235639572144, -0.3987923264503479, 0.10511352866888046, 0.0917266309261322, 0.08420447260141373, 0.3073676526546478, -0.27444493770599365, -0.7230938673019409, -0.5136095881462097, 0.9412675499916077, 0.25601473450660706, -0.24044929444789886, -0.8557400107383728, 0.1756233274936676, -0.13141801953315735, -0.08104298263788223, 0.9796038269996643, -0.09278750419616699, -0.42163050174713135, 0.8281049132347107, -0.03720657154917717, -0.27082523703575134, 0.2495735138654709, 0.381132572889328, 0.4663940668106079, 0.18828947842121124, 0.3468914330005646, 0.4162493348121643, -0.11815428733825684, 1.0734953880310059, 0.5507495999336243, -0.3650485575199127, -0.521422803401947, -0.7849568724632263, -1.5338629484176636, -0.13090185821056366, -0.3194580376148224, -0.8435891270637512, 0.25848227739334106, -0.5081692934036255, -0.17257514595985413, 0.4420216977596283, -0.13005298376083374, 0.34449660778045654, -0.7162193059921265, 0.002079254947602749, 0.41401979327201843, 0.22765688598155975, 1.2774194478988647, -0.20293031632900238, 0.9105727672576904, 0.47310206294059753, 0.28167977929115295, -0.1058100014925003, -0.04701106250286102, -0.04849773645401001, 0.6158990263938904, -0.6271253228187561, -0.9315049052238464, -0.017217809334397316, -0.44522199034690857, -0.5182167887687683, 0.42193347215652466, 0.31086456775665283, 0.7137261033058167, 0.056439775973558426, -1.1453378200531006, -0.6624892950057983, 0.42977187037467957, 0.4649963676929474, -0.7050033211708069, -0.22242037951946259, -0.3356916308403015, 0.28504976630210876, -0.3140261173248291, 0.8836768865585327, -0.2769641876220703, 0.510994553565979, 0.8934174180030823, 0.06513644754886627, -1.179043173789978, -0.32954010367393494, 1.0783615112304688, -0.5624997615814209, 0.5850046277046204, -1.0615414381027222, -0.038976531475782394, -0.4773730933666229, -0.43601498007774353, -0.07759978622198105, -0.03612527996301651, -0.8314492106437683, -0.08014488965272903, -0.4907747507095337, -1.0464671850204468, -0.7646406888961792, 0.32006576657295227, 1.1116158962249756, -0.8605642914772034, 0.29647326469421387, 0.30594244599342346, -1.0659517049789429, 0.8152735233306885, 0.38615065813064575, -0.019138673320412636, 0.14671479165554047, 1.4974867105484009, 1.5170304775238037, -0.0737675279378891, -0.3280562162399292, -0.44858065247535706, 0.5113017559051514, -0.6719384789466858, -0.0006050984375178814, -0.5500922203063965, 0.24620871245861053, -0.45770585536956787], [0.32628145813941956, 1.921994924545288, -1.8438161611557007, -1.6716302633285522, 0.20231404900550842, -0.015833202749490738, -0.13701274991035461, 0.4930061399936676, -0.5480270385742188, -0.8625169396400452, -1.2527518272399902, 1.0902810096740723, 1.3410555124282837, 1.4350016117095947, 0.6010682582855225, 0.4681169092655182, 0.7468911409378052, -0.43957144021987915, 0.2608230412006378, 0.988936722278595, 0.6037111282348633, -0.4545603394508362, -0.5417208671569824, -0.8849959373474121, 0.376421183347702, 0.5439892411231995, -1.7898749113082886, -0.5557032823562622, -0.9383565783500671, -1.163804054260254, 0.9228030443191528, -0.5239741802215576, -0.45720118284225464, -0.3194696307182312, -1.9668363332748413, -1.1137357950210571, 0.30314627289772034, 0.5314669013023376, -0.09669595211744308, 0.9851673245429993, 0.7203163504600525, 0.6611511707305908, -0.027006305754184723, -1.3035968542099, 1.0258238315582275, -0.35567882657051086, -0.42483001947402954, -0.9469076991081238, 0.03579145297408104, -1.30118989944458, 0.5728465914726257, -0.6417860984802246, 0.27525773644447327, 0.24963942170143127, 0.4898563623428345, 0.9237989783287048, -0.017878353595733643, 1.0143877267837524, 0.17540761828422546, 0.05254814773797989, 1.374118447303772, 0.061194583773612976, -0.8162965774536133, -0.14761880040168762, 0.5750535726547241, 0.09022631496191025, 0.5517956018447876, 0.9095413684844971, -0.6485456228256226, 0.39853715896606445, 0.48608890175819397, 0.3136425316333771, -0.6566770672798157, 0.16952066123485565, -1.2922732830047607, 0.07957404106855392, 0.02910531498491764, -0.15570993721485138, -0.10089302062988281, 1.1618151664733887, -1.013416051864624, -0.42471519112586975, 0.15214252471923828, -0.30506572127342224, 0.5836457014083862, 0.37861981987953186, -0.264467716217041, -0.6653295159339905, -0.09602612257003784, 1.2638189792633057, -0.3510333001613617, 0.37358978390693665, 0.06856510043144226, 0.010496617294847965, -0.5739095211029053, -0.8061501979827881, 0.5518168210983276, -0.7401300072669983, 0.09525644779205322, -0.8716109991073608, -0.4627341628074646, -0.7348576784133911, 0.9255443215370178, 0.6875876188278198, 1.0488221645355225, 1.4501607418060303, 0.5332505702972412, -0.8640580773353577, -0.749352753162384, 0.5414978265762329, 0.357870489358902, 0.05776806175708771, -1.3973170518875122, -1.0774434804916382, -0.5060680508613586, 0.6095068454742432, 0.672960102558136, -0.7220097184181213, 1.0778712034225464, 0.9914866089820862, -0.3939964771270752, -0.9294272661209106, -0.9683211445808411, 1.0144442319869995, 1.2311354875564575, 0.38691309094429016, -0.5197381973266602, 0.1069340929389, 0.06860335916280746, -0.654815137386322, 0.18378053605556488, 0.15978489816188812, -0.7340490818023682, 0.5831504464149475, 0.2264251559972763, 1.0997834205627441, -0.23438136279582977, -0.767601728439331, 0.9034432172775269, -0.6586472988128662, -0.025968117639422417, -0.832632839679718, -0.8011084794998169, -0.8466947674751282, -0.2215806245803833, -0.007217132020741701, -0.2500390112400055, 0.06975405663251877, -1.3568999767303467, 0.208119735121727, -1.2241454124450684, 0.5093085169792175, -0.013803769834339619, 1.605486512184143, -0.368936151266098, 0.5774706602096558, 0.7968924045562744, -0.10582393407821655, -0.5603663325309753, 0.6197933554649353, 0.697787344455719, 0.17120002210140228, -1.189841389656067, 1.0047580003738403, 0.2608114778995514, -1.233959674835205, 1.5259195566177368, 0.0665464848279953, -0.1791219264268875, 0.9268644452095032, -0.9688248634338379, -0.07550641894340515, -0.4406132102012634, 0.3646884858608246, 0.5037547945976257, -0.4684503972530365, 0.7340047955513, -0.588437020778656, 0.03339190408587456, -0.6586658954620361, -0.11519312858581543, -0.6598106622695923, 0.26612234115600586, 0.10100862383842468, 0.3869819939136505, 0.07626812160015106, -0.1792334020137787, -0.5374497771263123, -0.6062873005867004, -0.18344494700431824, -1.4539765119552612, 0.22566714882850647, -1.5918716192245483, -0.23589195311069489, -0.2521922290325165, -0.9430881142616272, 0.5307716131210327, -0.056691478937864304, -0.061659932136535645, 0.39255619049072266, -0.47626376152038574, -0.4151713252067566, -1.4469114542007446, -0.2323208749294281, -1.1352373361587524, 0.8214721083641052, -0.26324713230133057, 0.5368818044662476, -0.5719915628433228, 0.2939355671405792, 1.3041318655014038, 0.19142763316631317, -1.115421175956726, 0.5656251311302185, 0.14131957292556763, -1.0933688879013062, -0.510585367679596, -0.03082440234720707, 0.2770423889160156, 0.7134939432144165, 0.8184497356414795, -0.04501519352197647, 0.5049569010734558, 0.6663867235183716, 0.0326785147190094, 0.15279550850391388, -1.190064787864685, -0.2662827968597412, -1.259790301322937, 0.16163946688175201, -0.6679757833480835, -0.3478807806968689, 1.2690485715866089, 1.0751953125, -0.5624279379844666, 0.8082947731018066, -0.2392202615737915, 0.6055549383163452, 1.0276012420654297, 0.8687385320663452, 0.26377296447753906, 0.5113332271575928, -0.8912036418914795, -0.31505292654037476, -0.3970082402229309, -0.22788240015506744, 1.3154546022415161, -0.020423606038093567, -0.21163073182106018, 1.1457171440124512, -0.4072229564189911, -0.3712880313396454, 0.24524709582328796, 0.33339792490005493, 0.2602875828742981, -0.743812620639801, 0.496398001909256, -0.2963584065437317, -0.7750941514968872, 1.1495059728622437, 0.4616168141365051, -1.7530144453048706, -0.8398271203041077, -0.31427711248397827, 0.19254624843597412, -0.3674203157424927, -0.20587724447250366, -0.9680440425872803, 0.8115509748458862, -0.12438299506902695, -0.06318913400173187, 0.28651291131973267, 0.1525839865207672, 0.6435204148292542, -0.24160441756248474, 0.017664644867181778, -0.27045726776123047, 0.5982337594032288, 0.24926769733428955, 0.5567165613174438, -0.4826154112815857, -2.1075241565704346, -0.40297025442123413, -0.3394581079483032, 0.5485498905181885, 0.4245069622993469, 0.23126542568206787, 0.562647819519043, 0.7647535800933838, -0.7552887201309204, 0.19237573444843292, -0.32801276445388794, -0.059713710099458694, -0.3571797311306, 0.3822251558303833, 0.419647753238678, 0.444487988948822, -0.29399603605270386, -0.9007295966148376, -0.5202773213386536, 0.03646309673786163, 1.0049872398376465, 0.5848501324653625, 1.090376615524292, -0.8205570578575134, -0.32100656628608704, -0.5141026973724365, -0.11904411762952805, -0.38543203473091125, 0.040820252150297165, -0.7569805979728699, -0.6316142678260803, -0.0896049216389656, -0.31751877069473267, -0.27875816822052, 0.9595367312431335, 0.05806224048137665, 1.755568265914917, 0.9431763887405396, 0.028942424803972244, -1.3298413753509521, -0.9544206857681274, 0.1322891116142273, -1.5635044574737549, 0.7143761515617371, 0.7062350511550903, -0.4286474585533142, 0.5969552397727966, -0.49471864104270935, -0.4685184359550476, 0.34855008125305176, -0.35567933320999146, 0.4157079756259918, -0.8248999714851379, -0.6629984378814697, -0.2084028422832489, 0.8815548419952393, 0.33322766423225403, -0.11069443076848984, -0.8767024874687195, -0.17720316350460052, -0.07595599442720413, -0.023650670424103737, -0.4701460301876068, 0.6491262912750244, 0.39567285776138306, -0.43569815158843994, -0.8240566849708557, 0.8203206062316895, 1.5768378973007202, -0.4325883388519287, 0.45622754096984863, -0.9315774440765381, 0.08635024726390839, -0.3813677728176117, 0.2583676278591156, 0.8617459535598755, 0.8048073053359985, 0.2933904230594635, -0.20629693567752838, 0.5075393915176392, -0.2671978771686554, 0.37372300028800964, -0.7517489194869995, 0.5076594948768616, 0.3063996136188507, 1.3463307619094849, 0.540214478969574, -0.12579475343227386, 0.5157300233840942, -0.665781557559967, -0.1305118203163147, 0.26297974586486816, 0.10400483012199402, 0.12097002565860748, -0.7570230960845947, -0.7166616320610046, 0.3823951482772827, -0.19890251755714417, -0.29629257321357727, -0.7919244170188904, -0.07655724883079529, 0.22896379232406616, -0.27073410153388977, 0.6169727444648743, -0.7015929818153381, -0.4822019636631012, 0.2645951807498932, 0.01374020054936409, 0.49269455671310425, -0.3579406440258026, -0.5238772630691528, -0.3082645833492279, 0.1684679239988327, -0.053362198173999786, -0.4853450357913971, -0.8702687621116638, -0.13819098472595215, 0.29169517755508423, 0.2661742866039276, -1.129875659942627, -0.5948014855384827, -0.03521718084812164, 0.0874939113855362, 0.0747426375746727, 0.7236540913581848, 0.8609139323234558, -0.5332314372062683, -0.08113593608140945, 0.23638123273849487, 0.509820282459259, 0.8381580114364624, 0.20922161638736725, 0.1690434217453003, -0.8833410739898682, -0.06413203477859497, 0.20596428215503693, -0.2733859717845917, -0.49117711186408997, -0.0970301404595375, -1.146910309791565, -0.2219427227973938, -0.3538982570171356, -0.40590420365333557, 1.4894709587097168, 0.2035006433725357, 0.3327224552631378, 1.1141564846038818, -0.3460330665111542, -0.7081987857818604, 0.4072197675704956, 0.4760606586933136, 0.3461824655532837, 0.20811259746551514, 0.8914614915847778, 0.6089432835578918, 0.4450323283672333, 0.6301257610321045, -0.607553243637085, 0.9468105435371399, 0.2939413785934448, -1.097240686416626, -0.324153333902359, 0.3885394036769867, 0.60442715883255, 0.5444966554641724, 0.5050492286682129, -0.15039299428462982, -1.4969936609268188, 1.2711853981018066, -0.19836977124214172, 0.9853341579437256, 0.5737542510032654, 0.8500818610191345, 1.6078319549560547, -1.0703760385513306, -0.34462302923202515, 0.3776947259902954, 0.43214473128318787, 0.4383682608604431, 0.2740427851676941, 0.4435046911239624, -1.2104065418243408, -0.002690340159460902, 0.5343762040138245, 0.1622038632631302, 0.7730218768119812, -0.6013630032539368, 0.026755886152386665, 0.388381689786911, -0.1389656364917755, 0.39500343799591064, -0.1651509702205658, -0.3874412775039673, 0.4807324707508087, -0.13056010007858276, 0.3164575397968292, 0.5604800581932068, 0.5937709808349609, 1.4995479583740234, -0.8690816164016724, -1.0902836322784424, 0.24272464215755463, -0.9049389958381653, 0.22798562049865723, 0.7292012572288513, -0.7249905467033386, -0.2775983214378357, -1.443016529083252, -0.2866688668727875, 0.11959762871265411, -0.4158547520637512, 0.06024222448468208, -0.017409900203347206, -0.810282289981842, -0.48075273633003235, -0.20853914320468903, 1.209523320198059, 1.2033406496047974, 0.8972777724266052, 0.6116865873336792, 0.3635473847389221, -0.3131341338157654, 0.5730659365653992, 0.11014824360609055, -0.43653520941734314, 0.27834340929985046, -0.8705494999885559, -1.1916322708129883, 0.7054147124290466, 1.222516655921936, 0.7093570232391357, 0.24029986560344696, 1.0502737760543823, 1.6712604761123657, -1.1749762296676636, -0.8926350474357605, 0.027996979653835297, -0.303139865398407, 0.8183532953262329, 0.1607932448387146, -0.766061007976532, -0.38317254185676575, 0.8560749888420105, -2.139199733734131, 1.2572312355041504, 0.023616008460521698, -1.177493929862976, -0.16642363369464874, -0.15061528980731964, 0.8394911885261536, 0.6331800818443298, -0.7193549275398254, 0.2059614062309265, 0.8520855903625488, -0.9469015002250671, -1.165853500366211, 0.5227713584899902, 0.12376154959201813, 0.6835066080093384, -0.3985799551010132, 0.6405400037765503, 0.5379164218902588, 0.15469014644622803, 0.7055099606513977, 0.687292754650116, 1.1010980606079102, 0.2541060149669647, 0.13413268327713013, -2.012146472930908, -0.44248631596565247, -0.9401341676712036, 0.21601149439811707, -0.018429363146424294, 1.4530588388442993, -0.00797165185213089, -0.5498302578926086, 0.5145759582519531, -0.10168828070163727, -0.4139029085636139, -0.7966955900192261, -0.5916980504989624, 0.9342043995857239, 0.3111436665058136, -0.5062512159347534, 0.029113883152604103, -0.19317716360092163, -0.3447759449481964, 0.031942371279001236, 0.27447211742401123, 0.7150377631187439, -1.6119859218597412, -0.5487121343612671, -0.018032655119895935, 0.12169229239225388, 0.10493858903646469, -0.07969033718109131, 0.2249501794576645, -0.9573458433151245, -1.399789571762085, -0.4323793053627014, -0.2197655737400055, 0.39912161231040955, -0.8846858739852905, -0.4661245346069336, -0.2308633029460907, -1.514255404472351, 1.0943628549575806, -0.15689167380332947, -1.2026069164276123, -0.543502688407898, -1.2641332149505615, 0.8812037706375122, 0.02996455691754818, -0.015667326748371124, 0.3930860459804535, 0.5968249440193176, -0.6094823479652405, 0.042818740010261536, -0.8341696858406067, 0.2027437835931778, 1.1029630899429321, 1.5576844215393066, -0.592064619064331, 0.09595954418182373, 0.26277032494544983, -0.13548073172569275, -0.252492755651474, 0.0018544960767030716, -1.1401474475860596, 0.476962685585022, 0.4002560079097748, 0.40213075280189514, 0.12061886489391327, 1.2865357398986816, 0.11374077945947647, 0.5577254891395569, -0.05327247828245163, 0.09392517805099487, -0.2099967896938324, -0.3024241030216217, -0.6886435747146606, 0.5080843567848206, -1.3149341344833374, -0.5191829204559326, 0.34016865491867065, -0.42769676446914673, -0.03928418084979057, 0.9438234567642212, 0.31547921895980835, -0.5457804799079895, -0.05009844899177551, 0.2320999801158905, 0.1584288775920868, -0.6565319299697876, 0.8080421686172485, 0.1547589898109436, -0.9842249751091003, -0.3773038387298584, 0.5442464351654053, 0.928969144821167, -0.9595156908035278, 0.35439613461494446, -0.07940296083688736, 0.5883737802505493, -0.24569754302501678, 0.7757411599159241, 0.44152697920799255, -0.400869756937027, -0.4765317738056183, 0.7872925400733948, 1.1573410034179688, 0.4301438629627228, 0.5114505887031555, 0.9462358951568604, -0.09942968189716339, 0.85714191198349, -0.28585517406463623, 0.07644322514533997, -1.2068402767181396, 0.3050263226032257, -0.19104769825935364, 0.012373348698019981, -0.6180023550987244, 0.5640604496002197, -0.002321343868970871, 0.08747400343418121, 0.6379756331443787, 0.3143670856952667, -0.343485027551651, 0.4043079614639282, 0.4278314411640167, -0.09134960174560547, 0.35973644256591797, 0.29796889424324036, 0.7806059718132019, -0.018494660034775734, 0.04020410403609276, 0.42041733860969543, 0.020128769800066948, -0.05504637584090233, 0.33908721804618835, -0.5320942401885986, -0.08824704587459564, -0.49916601181030273, -1.1825436353683472, 0.15439045429229736, 0.03934433311223984, -0.5795400738716125, 0.37233036756515503, -1.2862071990966797, -0.7325308918952942, -0.02168266661465168, -0.36025822162628174, -0.11701890826225281, -0.5725500583648682, -0.46781468391418457, 0.21520398557186127, 0.5981494188308716, 2.2312748432159424, 0.31078580021858215, 0.9591943025588989, 0.05696026608347893, 0.4245966970920563, 0.34365060925483704, -0.16864128410816193, 0.30956950783729553, 0.06860929727554321, -0.4056532680988312, -0.5579878687858582, -0.399827241897583, -0.5457080006599426, -0.3831396996974945, 0.9546093344688416, 0.10156671702861786, 0.43333005905151367, 0.10568835586309433, -1.4238373041152954, -1.0913137197494507, 0.835342288017273, 1.142175555229187, -1.4291720390319824, -0.21156786382198334, -0.04225519672036171, -0.19126658141613007, 0.18268823623657227, 1.2029647827148438, -0.6328698396682739, 0.8119885325431824, 0.2647917568683624, 0.09795812517404556, -1.0874240398406982, -0.3583873510360718, 0.3327762186527252, -0.6354967355728149, 0.420609712600708, -0.7771114706993103, -0.1082257553935051, -0.2797192335128784, -0.42594656348228455, -0.012362940236926079, 0.0016988329589366913, -0.23184140026569366, 0.36320674419403076, 0.3572237193584442, -0.8116267919540405, -0.5855244398117065, 0.9373539686203003, 0.31587743759155273, -0.3421449363231659, 0.6621325612068176, -0.5537499785423279, -0.9797406792640686, 0.7922824025154114, 0.6998917460441589, 0.2949279844760895, 0.5726812481880188, 1.9333553314208984, 1.531845211982727, -0.1836836040019989, -0.47384992241859436, -0.42108672857284546, 0.6684868335723877, -1.0128319263458252, -0.908044159412384, -0.2188391387462616, -0.08383277803659439, 0.3255707919597626], [0.5193480849266052, 1.7859516143798828, -1.7993453741073608, -1.3912668228149414, 0.1955994814634323, -0.11059939116239548, 0.6606051325798035, 0.5829099416732788, -0.5074655413627625, -0.8368289470672607, -0.7840495705604553, 0.6290220022201538, 0.8014944791793823, 1.6868261098861694, 1.1346769332885742, -0.34313899278640747, 0.6819494366645813, -0.8339492082595825, 0.85716313123703, 1.0355364084243774, 0.6186221837997437, 0.4631226062774658, -1.0007305145263672, -0.5786211490631104, 0.23049406707286835, 0.49928706884384155, -1.223922610282898, 0.21471847593784332, -1.7427558898925781, -1.0909901857376099, 0.9517908692359924, -0.4429440200328827, 0.13894255459308624, -0.8119634985923767, -2.0206048488616943, -1.4815655946731567, 1.425286889076233, 0.7472032904624939, -0.2214793711900711, 0.8999022245407104, 1.1890426874160767, 0.49301615357398987, -0.47199109196662903, -1.2587236166000366, 0.45145630836486816, 0.20563501119613647, 0.27356743812561035, -0.4688415825366974, -0.17449891567230225, -1.464880347251892, 0.5824679136276245, -0.4733082950115204, 0.6089394688606262, 0.6273667812347412, 0.9545872807502747, 0.4364170730113983, -0.31986483931541443, 0.7652508616447449, 0.20833691954612732, -0.2431047409772873, 1.0984054803848267, 0.2233646661043167, -0.8905618786811829, -0.22973015904426575, 0.05463726446032524, -0.213655486702919, 0.6292083859443665, 0.0687914788722992, -0.4710254967212677, 0.21853050589561462, 0.7765047550201416, 0.31460800766944885, -0.994964063167572, -0.10537492483854294, -1.644531488418579, -0.08845892548561096, -0.05870194733142853, 0.3247775435447693, 0.01799158565700054, 0.6232848167419434, -1.4117311239242554, 0.008343391120433807, 0.03298274427652359, -0.3769003748893738, 1.0129867792129517, 0.5928239822387695, 0.21269133687019348, -0.28940489888191223, 0.15972022712230682, 1.6724212169647217, -0.35887372493743896, 0.6646257638931274, 0.3096955418586731, -0.03700695186853409, -0.5354713797569275, -0.8766143321990967, 0.10406885296106339, 0.2679412364959717, 0.04902934283018112, -0.4515400230884552, -0.46221402287483215, -0.8591393232345581, 1.1956065893173218, 0.5062585473060608, 0.6593780517578125, 1.4426970481872559, 0.9645792245864868, -1.0037025213241577, -1.1442071199417114, -0.27280357480049133, 0.1617051512002945, -0.2863631546497345, -0.9372252225875854, -0.6930733919143677, -0.4377995729446411, -0.02099008858203888, 0.9584504961967468, 0.023118067532777786, 0.5204366445541382, 0.4811493456363678, -0.1014513447880745, -0.4911905825138092, -0.38058221340179443, 0.9675328135490417, 0.9740108251571655, -0.3465670943260193, -0.7883988618850708, -0.03357242792844772, 0.400234580039978, -0.8901227116584778, 0.12350883334875107, 0.3708838224411011, -0.3314967453479767, 0.8635138869285583, 0.11231624335050583, 0.6335203647613525, -0.17091555893421173, -0.2566530704498291, 0.42544829845428467, -0.9846084117889404, 0.056157294660806656, -0.9268414378166199, -0.5954148769378662, -0.824393630027771, 0.7612440586090088, -0.37275153398513794, 0.50630784034729, 0.20159770548343658, -1.1380540132522583, 0.405594140291214, -0.8111740946769714, 0.04819962754845619, 0.4156876504421234, 1.751101016998291, -0.2572847902774811, 0.25652238726615906, 0.9375028610229492, 0.2969514727592468, -0.5341964364051819, 0.7657194137573242, 0.7558263540267944, 0.2491227239370346, -1.471136450767517, 1.4291753768920898, 0.03201182559132576, -0.724635899066925, 1.4600753784179688, 0.16366344690322876, -0.06725581735372543, 0.7731029391288757, -0.9996261596679688, -0.10634621232748032, -0.6616307497024536, 0.48125872015953064, 0.11830821633338928, 0.3188090920448303, 1.2678658962249756, -0.7456645965576172, -0.7653156518936157, -0.5239382386207581, 0.2727971374988556, -0.13111089169979095, -0.2516029477119446, -0.5377378463745117, 0.3563210368156433, -0.5392113327980042, -0.21896734833717346, -0.7168830633163452, -0.14087693393230438, -0.47264039516448975, -1.1952475309371948, 0.6869494915008545, -1.765775442123413, -0.4020042419433594, -0.12387782335281372, -1.3577935695648193, 0.8886827230453491, -0.8590592741966248, -0.37035053968429565, 0.3420894742012024, -0.275333046913147, -0.09057123959064484, -0.980134904384613, 0.3122754693031311, -0.8932620286941528, 0.29374703764915466, -0.6928994655609131, 0.48448070883750916, -0.7248426079750061, 0.4254568815231323, 0.7750774621963501, 0.41645199060440063, -0.5094700455665588, 0.94403076171875, 0.20338965952396393, -1.29009211063385, -0.25742781162261963, 0.364517480134964, 0.5655887126922607, 0.721987247467041, 0.6175711154937744, -0.16081342101097107, 0.9840577840805054, 0.9161324501037598, 0.008998681791126728, 0.5420976877212524, -1.0854729413986206, -0.6197888851165771, -1.2693079710006714, 0.35471272468566895, -0.5247376561164856, -1.4891331195831299, 0.5619978308677673, 0.9843361973762512, -1.042291283607483, 0.24550189077854156, -0.34207403659820557, 0.3393198549747467, 0.9472107887268066, 1.1755715608596802, -0.24312081933021545, 0.2577071189880371, -0.26085591316223145, -0.4101385772228241, -0.5482375621795654, 0.5688050389289856, 1.5687625408172607, 0.3504275977611542, 0.2137308120727539, 1.5215041637420654, -0.6616315245628357, -0.34428051114082336, 0.44541600346565247, -0.10183797776699066, 0.273436963558197, -0.573299765586853, -0.058543816208839417, -0.7985246181488037, -1.4682389497756958, 1.4354205131530762, 0.6990247368812561, -1.7357362508773804, -0.572251558303833, -0.29880496859550476, 0.07263975590467453, -0.687491774559021, 0.1596325784921646, -0.3412320017814636, 0.35327476263046265, -0.1812170147895813, -0.2720208168029785, 0.15888670086860657, -0.3088493347167969, 0.6587729454040527, -0.021130641922354698, -0.07115179300308228, -0.23852065205574036, 0.18338385224342346, 0.8277117013931274, 0.5120276808738708, -0.14902140200138092, -1.9781694412231445, 0.08654291927814484, -0.25236591696739197, 0.8004918098449707, 0.18204903602600098, -0.16628940403461456, -0.1577802151441574, 0.7736806869506836, -0.4779304265975952, -0.3496286869049072, 0.044071607291698456, -0.6984631419181824, -0.2000410258769989, -0.5149655342102051, 0.6156690716743469, 0.13984182476997375, -0.5466985702514648, -0.8995656967163086, -0.44777676463127136, 0.07654811441898346, 1.1587094068527222, 0.43910926580429077, 1.4650722742080688, -0.4381992220878601, -0.477418452501297, -0.3219563066959381, -0.26432347297668457, -0.05926550179719925, 0.4040326476097107, -0.5436484813690186, -0.29132479429244995, -0.8522951006889343, -0.41323167085647583, -0.023703744634985924, 1.4383964538574219, -0.16348762810230255, 1.1627683639526367, 0.5700196027755737, -0.09194187819957733, -1.0234746932983398, -0.724425196647644, 0.3853370249271393, -1.4751591682434082, 0.827521800994873, 0.7445236444473267, -0.3342941105365753, 0.5057541728019714, -0.10825823247432709, -0.056981004774570465, 0.9716952443122864, 0.370715469121933, 0.35611873865127563, -0.6298778057098389, -0.3571292459964752, -0.14898884296417236, 0.6223989725112915, 0.0725899338722229, -0.011521072126924992, -1.071547031402588, 0.06927691400051117, 0.1998584270477295, -0.16255956888198853, -0.4078364372253418, 0.965665340423584, -0.450690895318985, -0.25762519240379333, -0.5962539911270142, 0.4334246814250946, 1.4826387166976929, 0.18484312295913696, 0.3305957317352295, -0.7069781422615051, -0.38575437664985657, -0.37975582480430603, 0.7853954434394836, 1.0420244932174683, 0.7642727494239807, -0.19345489144325256, 0.34337204694747925, 0.9118444919586182, 0.20790265500545502, -0.03964288905262947, -1.032914638519287, 1.0329951047897339, 0.2694509029388428, 1.1611878871917725, 0.5468913912773132, -0.18195655941963196, 0.03254270926117897, -0.05537259951233864, -0.21725493669509888, 0.062021780759096146, 0.11759260296821594, 0.29499125480651855, -0.5280197858810425, -0.520553708076477, 0.08222727477550507, -0.21720285713672638, -0.22942744195461273, 0.3833785951137543, 0.05394989252090454, 0.12565462291240692, -0.12512291967868805, 0.7665659785270691, -1.0027884244918823, -0.28040897846221924, -0.2894912660121918, -0.7476683855056763, 0.2867209017276764, -0.024670036509633064, -1.1200153827667236, -0.10589016228914261, 0.21239390969276428, 0.027820654213428497, -0.74410080909729, -0.9590764045715332, -0.4949905276298523, 0.30806463956832886, 0.7786392569541931, -1.1768288612365723, -0.022646663710474968, -0.2800322473049164, 0.2822081744670868, 0.26859328150749207, 0.04956101253628731, 0.5586400032043457, -0.18470433354377747, -0.07029121369123459, 0.470537930727005, 0.48344945907592773, 0.9621421694755554, 0.3237602412700653, -0.2810395061969757, -0.6927223801612854, -0.14956513047218323, 0.7559905648231506, -0.30221015214920044, -0.5699727535247803, 0.15734849870204926, -1.391878366470337, -0.040813859552145004, -0.8259053826332092, -0.4237261712551117, 1.1147133111953735, 0.010712350718677044, -0.3412685692310333, 1.1155805587768555, -0.2057335376739502, -1.447776198387146, 0.03750839829444885, 0.19320736825466156, 0.1727646142244339, -0.1755513697862625, 0.6774948835372925, 0.6615558862686157, -0.12523099780082703, 0.6199765205383301, -0.1177813708782196, 0.5732809901237488, -0.43197891116142273, -0.9766362309455872, 0.38596850633621216, 0.5082759857177734, 1.0769011974334717, 0.8251823782920837, 0.6464030146598816, -0.8705875277519226, -1.4599580764770508, 0.9395490288734436, -0.5762816667556763, 0.9111087322235107, 0.7165445685386658, 0.9706860184669495, 1.5875078439712524, -1.7860888242721558, -0.176711767911911, 0.7892964482307434, 0.4554746150970459, 0.8821069598197937, 0.38945308327674866, 0.24192969501018524, -0.7371686697006226, 0.12529803812503815, 0.4393424391746521, -0.01450119074434042, 0.32796990871429443, -0.26754000782966614, -0.5611038208007812, 0.5297099351882935, -0.698894739151001, -0.33483147621154785, 0.23802070319652557, -0.37058448791503906, 0.3746880888938904, -0.5010955929756165, 0.07178405672311783, 0.99283367395401, 0.8427188396453857, 1.249766230583191, -1.1508381366729736, -1.570353627204895, 0.4460562467575073, -0.44892042875289917, 0.011139526031911373, 0.6699689030647278, -0.9029281139373779, -0.3863792419433594, -1.2967665195465088, -0.2821268141269684, 0.6027872562408447, -0.3534564673900604, -0.20408698916435242, -0.4235520362854004, -0.7870963215827942, 0.2126058042049408, -0.008032413199543953, 1.4538942575454712, 1.1017324924468994, 0.6772112250328064, 0.5107054710388184, -0.4818325638771057, -0.5959444046020508, -0.014473016373813152, 0.0356704518198967, -0.6059489846229553, 0.3006620407104492, -0.8658905029296875, -0.9983261227607727, 1.1925157308578491, 1.227047085762024, 0.5645139217376709, 0.593419075012207, 1.1186528205871582, 1.893712043762207, -0.8537284731864929, -0.7745137214660645, -0.07370935380458832, -0.3308170437812805, 0.4721696972846985, 0.5615953803062439, -0.4063717722892761, -0.38949617743492126, 0.4157743453979492, -2.6056313514709473, 1.0043383836746216, 0.3861253261566162, -0.5072072744369507, -0.2078286111354828, -0.5337724685668945, 0.9241587519645691, 0.7920590043067932, -1.0557254552841187, 0.07003310322761536, 0.5135042071342468, -1.4143885374069214, -1.144117832183838, -0.28705650568008423, 0.4110807776451111, 0.7441458702087402, -0.8629262447357178, 0.7835168838500977, 0.20003686845302582, 0.489617258310318, 0.8057211637496948, 0.5339271426200867, 1.0128098726272583, 0.7649571895599365, -0.04681891202926636, -1.873822569847107, -0.1060902327299118, -0.7781344056129456, 0.2153978943824768, -0.33765795826911926, 1.4187045097351074, 0.46621423959732056, -0.649263858795166, 1.0697591304779053, -0.10211044549942017, -0.9470861554145813, -0.8563531637191772, -0.7192962765693665, 0.47532957792282104, 0.6175459027290344, -0.718001127243042, -0.17597469687461853, -0.7040005922317505, -0.1671663075685501, -0.36171674728393555, 0.271236777305603, 0.8557673692703247, -1.3044861555099487, -0.6543206572532654, 0.23654088377952576, -0.028566328808665276, 0.3450753390789032, -0.06472256779670715, 0.626688539981842, -0.658508837223053, -1.0942307710647583, -1.1759312152862549, 0.4079534709453583, 0.23996751010417938, -0.6809229254722595, -0.2879221737384796, 0.23005090653896332, -1.9900811910629272, 1.171910285949707, -0.4305958151817322, -1.1557484865188599, -0.27347588539123535, -0.77254718542099, 0.9877549409866333, -0.5173100829124451, 0.3365649878978729, 0.4656921625137329, 0.6974507570266724, -0.27796247601509094, -0.24059629440307617, -1.1890721321105957, 0.591027557849884, 1.3997375965118408, 0.8978816866874695, -0.6934682130813599, 0.7492884993553162, 0.10301363468170166, -0.6559833288192749, -0.08550361543893814, 0.032695140689611435, -1.8142409324645996, 0.45472609996795654, 0.5192579030990601, 0.6240037679672241, 0.6160475015640259, 1.1677912473678589, 0.6744846701622009, 0.9109872579574585, -0.36766302585601807, 0.1716138869524002, 0.21487519145011902, -0.24760939180850983, -0.6973125338554382, 0.42241743206977844, -1.4119926691055298, -0.8093987107276917, 0.6767822504043579, -0.7149267196655273, -0.27623969316482544, 0.9219108819961548, 0.05292040482163429, -0.036474570631980896, 0.017061632126569748, 0.06520219147205353, 0.18602675199508667, -0.6891626715660095, 1.0126140117645264, 0.21191559731960297, -1.0626696348190308, -0.36152321100234985, 0.582615315914154, 0.6296408772468567, -1.2899359464645386, 0.3086138665676117, -0.4257262349128723, 0.5642387270927429, 0.11019787192344666, 0.5551988482475281, 0.8757394552230835, -0.37168511748313904, -0.7461464405059814, 0.7606821656227112, 1.6087974309921265, -0.12565627694129944, -0.07049403339624405, 1.005842685699463, 0.14788605272769928, 0.2668799161911011, 0.1587291955947876, -0.463177889585495, -1.4011168479919434, 1.0153543949127197, -0.22792740166187286, -0.7035015225410461, -0.6163703203201294, 0.29231536388397217, -0.7633339166641235, -0.07059428840875626, 0.7589263319969177, 0.29867106676101685, -0.354458749294281, 0.7760723233222961, 0.3288755714893341, -0.14540702104568481, 0.46987617015838623, 0.3741964101791382, 0.5333572626113892, -0.38907739520072937, 0.46731191873550415, 0.06311012804508209, 0.007363041862845421, 0.055689360946416855, 0.14458557963371277, -0.0905189961194992, 0.4413492679595947, -0.6508772969245911, -1.9871207475662231, -0.16509880125522614, -0.6499739289283752, -0.10201883316040039, 0.7032983303070068, -0.9125736355781555, -0.3290926516056061, 0.19942902028560638, -0.10578639805316925, 0.009519878774881363, -1.1589696407318115, -0.5386360287666321, 0.0778437927365303, 0.5082961320877075, 1.4954010248184204, 0.350646048784256, 0.9144012331962585, 0.1859542578458786, 0.5034169554710388, 0.13760478794574738, -0.1939295083284378, -0.005503354128450155, 0.25907033681869507, 0.02589190937578678, -0.5312998294830322, 0.05000489950180054, -0.4360402524471283, -0.3999398648738861, 0.9644352197647095, -0.6028683185577393, 0.17757150530815125, -0.05039898678660393, -1.6414649486541748, -0.5789861083030701, -0.012078415602445602, 0.6762238144874573, -0.6325118541717529, -0.1554969698190689, -0.23607957363128662, 0.19260157644748688, -0.05495990067720413, 0.8181559443473816, 0.06491943448781967, 1.3778408765792847, 0.676440954208374, -0.1251082718372345, -1.2305402755737305, -0.45048075914382935, 0.6348522901535034, -0.3906988799571991, 0.22389085590839386, -0.8917437791824341, -0.06091396138072014, -0.30137935280799866, -0.7284929156303406, 0.2210829108953476, 0.21254689991474152, -0.3946245014667511, -0.17506837844848633, -0.05331439524888992, -0.7551557421684265, -1.1608291864395142, 0.6623319387435913, 1.0909428596496582, -0.24505387246608734, 0.11970584839582443, -0.341786652803421, -0.5373943448066711, 0.35932087898254395, 0.5516642928123474, 0.41438624262809753, 0.45617181062698364, 1.5153915882110596, 2.0122148990631104, -0.0007575768977403641, -0.18024367094039917, -0.09768415987491608, 0.557902455329895, -1.2017624378204346, -0.1796901822090149, -0.5314472317695618, -0.06701204925775528, -0.2711241841316223], [0.48334330320358276, 1.5124090909957886, -1.4560174942016602, -1.3149583339691162, 0.53092360496521, -0.7229890823364258, 0.5858429670333862, 0.7813279628753662, -0.6293761730194092, -1.2713872194290161, -1.228276014328003, 0.874670684337616, 0.5297130346298218, 0.7659842371940613, 1.0646103620529175, 0.22772669792175293, 1.2102043628692627, -0.6947996020317078, 0.14607533812522888, 0.9073978066444397, 0.6909390687942505, 0.13153280317783356, -0.2414659708738327, -0.9402483701705933, 0.7657018303871155, 0.12671443819999695, -1.3268200159072876, 0.8137428760528564, -1.3574645519256592, -1.5534119606018066, 1.3490560054779053, -0.9365476369857788, 0.35554835200309753, -0.5556647181510925, -1.6047074794769287, -0.901674747467041, 1.1282137632369995, 0.40121132135391235, -0.3977653384208679, 0.797925591468811, 1.500998616218567, 0.7940434813499451, -0.388313353061676, -1.018828272819519, 1.2008761167526245, -0.5341607332229614, 0.2619413435459137, -0.8886392712593079, -0.36802759766578674, -1.6219565868377686, 0.6367905139923096, -0.4076932966709137, -0.10243361443281174, 0.6370826959609985, 0.8160709142684937, 0.5170797109603882, -0.3060416281223297, 0.5520661473274231, -0.09220892190933228, -0.8850880861282349, 0.9286638498306274, 0.45615553855895996, -0.7533618211746216, 0.8041175603866577, -0.05273834615945816, -0.3248971402645111, -0.19230493903160095, 0.5445044636726379, -0.3371324837207794, -0.3694128692150116, 0.6426125764846802, 0.2928849458694458, -0.6206579208374023, 0.06339138001203537, -1.417046070098877, 0.22605641186237335, 0.2026747316122055, 0.2582281529903412, -0.18622513115406036, 1.3233662843704224, -0.4215999245643616, -0.6563271284103394, -0.463463693857193, -0.9905315041542053, 0.5305593013763428, -0.25652843713760376, 0.03165234625339508, -0.0029624514281749725, -0.40880832076072693, 1.9176852703094482, -0.11548809707164764, 0.06919555366039276, -0.2436271756887436, 0.5154539346694946, -0.5168254971504211, -0.7074613571166992, -0.025516383349895477, 0.24066868424415588, -0.16282328963279724, -0.467204749584198, -0.7882360219955444, -0.5143865346908569, 0.8012073040008545, 0.37180450558662415, 0.24810342490673065, 1.3280545473098755, 1.0241353511810303, -1.0840098857879639, -0.782650887966156, -0.22125017642974854, -0.2918529808521271, -0.2047978788614273, -0.6685206890106201, -0.7578142881393433, -1.3915550708770752, -0.059047553688287735, 0.9081129431724548, -0.00018780911341309547, 0.7892851233482361, 1.0066235065460205, -0.6065202951431274, -1.1858909130096436, -0.18655891716480255, 0.35701704025268555, 0.936279833316803, -0.2514718472957611, -0.9042997360229492, -0.18389007449150085, 0.7234559655189514, -0.4059368669986725, -0.03721456602215767, 0.27157479524612427, -0.27971363067626953, 1.0895476341247559, 0.36607763171195984, 0.9175659418106079, 0.18675115704536438, -0.717913031578064, 0.3933548033237457, -0.7012238502502441, -0.10016117990016937, -0.6439882516860962, -0.4953523278236389, -0.8971671462059021, 0.18022695183753967, -0.7718931436538696, -0.5508302450180054, 0.3315001428127289, -0.8434079885482788, 0.9576162695884705, -0.9486193060874939, 0.48432329297065735, -0.07156114280223846, 1.6393802165985107, -0.12140002846717834, 0.7371865510940552, 0.7433789968490601, 0.36406180262565613, -0.6957382559776306, 0.051748115569353104, 1.105031967163086, 0.2966386079788208, -1.3129780292510986, 0.9792352318763733, 0.3708422780036926, -0.49262431263923645, 0.6817227005958557, 0.5266921520233154, -0.5138969421386719, 0.8118484020233154, -1.1953414678573608, -0.2550944983959198, -0.670260488986969, 0.6335482597351074, -0.20181314647197723, 0.3278084695339203, 1.150070071220398, -1.151540756225586, -1.286281704902649, -1.0649603605270386, 0.32183438539505005, -0.5821604132652283, 0.12496335059404373, 0.14186754822731018, 0.09242565184831619, 0.2609426975250244, -0.10590406507253647, -0.8481811881065369, 0.2201840728521347, -0.7443735599517822, -0.8629354238510132, 0.1815875917673111, -1.1243298053741455, 0.10348399728536606, -0.21892227232456207, -0.9345365166664124, 0.6510105133056641, -1.1341700553894043, 0.24957819283008575, 0.35261231660842896, 0.06212877854704857, -0.4494125545024872, -1.3450170755386353, 0.03360667824745178, -0.5323390960693359, 0.6649784445762634, 0.08529738336801529, -0.0682426393032074, -0.5446248054504395, 0.6173002123832703, 1.2713335752487183, 0.026981418952345848, -0.3818730413913727, 0.5148479342460632, 0.7105885744094849, -1.016824722290039, -0.25720176100730896, 0.6573435664176941, 0.39883679151535034, 0.2996789216995239, 0.829353392124176, 0.010514296591281891, 0.7134179472923279, 0.613294243812561, 0.2075568288564682, -0.02027835324406624, -1.6167171001434326, 0.11676709353923798, -1.0446754693984985, -0.6907974481582642, -0.14022044837474823, -0.978874921798706, 0.6257860660552979, 0.724330484867096, -0.07777270674705505, 0.990475058555603, -0.12841156125068665, 0.4442325532436371, 0.3575799763202667, 1.4968957901000977, 0.5225791335105896, 0.15172195434570312, -0.656599223613739, 0.39179903268814087, -0.16738887131214142, 0.013844098895788193, 1.1853864192962646, -0.013841399922966957, -0.3126120865345001, 1.89449942111969, 0.06084166467189789, -0.16702499985694885, 0.7103089094161987, -0.08514430373907089, 0.05356423184275627, -0.5015965104103088, 0.14993201196193695, 0.0298320185393095, -1.051234483718872, 1.0615328550338745, 0.9030657410621643, -1.9230475425720215, -0.4394603669643402, -0.13959527015686035, -0.6130842566490173, -0.6114928722381592, -0.15079213678836823, -0.6700913906097412, 0.3394078016281128, -0.13492532074451447, -0.30747082829475403, 0.2579571306705475, 0.03909287974238396, 0.7704579830169678, -0.27843084931373596, -0.08446435630321503, 0.10972633212804794, 0.23385056853294373, 0.32452571392059326, 1.1188050508499146, -0.38975778222084045, -1.8809844255447388, -0.43649670481681824, -0.6521341800689697, 0.5385175347328186, 0.5753493309020996, -0.7886673212051392, 0.1259620487689972, 1.0432982444763184, -0.538062572479248, -0.09082116186618805, -0.04671400785446167, 0.14865481853485107, 0.14100144803524017, -0.6354559659957886, 1.1157509088516235, 0.28633633255958557, -0.5365705490112305, -0.5157297849655151, -0.7747673988342285, 0.139798104763031, 0.7812918424606323, 0.8823477625846863, 0.9595873355865479, 0.5013225078582764, 0.026491304859519005, -0.9057283997535706, -0.03540647402405739, -0.11200685054063797, 0.3117915689945221, -0.5444461703300476, -0.8471958041191101, -0.3657948076725006, -0.5476369857788086, -0.10953493416309357, 1.1746922731399536, -0.09668312966823578, 0.9956067800521851, 0.8955346941947937, 0.19342239201068878, -0.8288874626159668, -0.8412532806396484, 0.2115691602230072, -1.3859530687332153, 0.6446406841278076, 0.6895976662635803, -0.1464506834745407, 0.52989262342453, -0.09587980806827545, 0.2644481956958771, 0.7667312026023865, 0.42169004678726196, 0.1225278303027153, -0.8944647312164307, -0.14207576215267181, -0.08729307353496552, 1.1257692575454712, 0.12319584935903549, 0.0163510013371706, -0.12593358755111694, -0.5406284928321838, -0.37371230125427246, 0.7403380870819092, 0.1716257631778717, 0.6176930665969849, -0.19258463382720947, -0.23381634056568146, -0.49041587114334106, 0.925520122051239, 1.5019603967666626, -0.203485369682312, 0.8094407320022583, -0.7914735078811646, -0.2467762976884842, -0.6841509938240051, 0.9603711366653442, 0.5981417298316956, 1.1739516258239746, 0.6011718511581421, -0.06608449667692184, 1.1429808139801025, 0.0036788880825042725, 0.5093615055084229, -1.2436240911483765, 0.29271751642227173, 0.43379664421081543, 1.255142092704773, -0.06447680294513702, -0.06773661822080612, 0.4860093593597412, -0.01988997682929039, -0.8438672423362732, -0.1530395746231079, 0.6209047436714172, 0.08265314251184464, -0.468149334192276, -0.5983436107635498, -0.042367495596408844, -0.3049158751964569, -0.27562668919563293, 0.33112484216690063, -0.10832341760396957, -0.3341312110424042, -0.4760165810585022, 0.1960781067609787, -0.3651808798313141, -0.33703598380088806, -0.05928735062479973, 0.07110559940338135, 0.10790754109621048, -0.17404957115650177, -0.057433001697063446, 0.39057281613349915, -0.04578704759478569, 0.33927664160728455, -0.32034558057785034, -0.9157488942146301, -0.15434905886650085, -0.3969530165195465, 0.5611595511436462, -1.4843553304672241, -0.447642058134079, -0.43858519196510315, 0.44078725576400757, -0.33817583322525024, -0.06417211890220642, -0.06912403553724289, -0.11114072054624557, 0.3825731575489044, -0.40365713834762573, 0.6508499383926392, 1.1552002429962158, 0.06285158544778824, -0.1949406862258911, 0.22295349836349487, -0.39531034231185913, 0.5663830637931824, -0.6329490542411804, -0.45297956466674805, 0.165178582072258, -1.0584772825241089, 0.1449003666639328, 0.06806173920631409, -0.38483160734176636, 1.6634912490844727, -0.1431533694267273, -0.1449294537305832, 0.6523390412330627, 0.5148594975471497, -1.1917223930358887, 0.8542355298995972, 0.3994849920272827, 0.4486970603466034, -0.28064966201782227, 0.4595043659210205, 0.06220242753624916, -0.2566704750061035, 0.7051467299461365, -0.14420638978481293, 0.7388644218444824, 0.2456897348165512, -0.7788202166557312, 0.0018805647268891335, 0.6139256954193115, 0.984778881072998, 0.49681901931762695, 0.9679874777793884, -0.6627629995346069, -0.9806779623031616, 1.0804346799850464, -0.16048529744148254, 1.3758784532546997, 1.0898786783218384, 0.6422354578971863, 1.5304384231567383, -1.5152485370635986, -0.04956504702568054, 0.7567339539527893, 0.4579410254955292, 0.05214110389351845, 0.41043081879615784, 0.43408963084220886, -0.765720546245575, -0.07098497450351715, 0.7794910073280334, -0.3851009011268616, 1.0776537656784058, -0.6271846890449524, -0.2875177264213562, 0.11172207444906235, -1.090762734413147, 0.24756382405757904, -0.4455147385597229, -0.6278384923934937, 0.2043098658323288, -0.5024244785308838, 0.3633207678794861, 0.7694116234779358, 0.6749237179756165, 1.7330824136734009, -0.8534750938415527, -1.9106534719467163, 0.3247850835323334, -1.1273701190948486, -0.2712315022945404, 0.7185085415840149, -0.4905109107494354, -0.9788638949394226, -0.7883789539337158, -0.09180134534835815, 0.5240770578384399, 0.0024933628737926483, 0.14763756096363068, -0.22998666763305664, -1.0813716650009155, 0.17704781889915466, -0.24114571511745453, 1.002690315246582, 0.8742110729217529, 0.5253573060035706, 0.30458107590675354, 0.6718440651893616, 0.07550262659788132, -0.35404226183891296, -0.4212496876716614, -0.45701998472213745, 0.5869827270507812, -0.7074496746063232, -1.3534938097000122, 0.6559668183326721, 0.9349241852760315, 0.31555986404418945, -0.09915235638618469, 0.858574628829956, 1.5213873386383057, -0.8460241556167603, -0.859083354473114, 0.006229297257959843, -1.1479805707931519, 0.11044656485319138, 0.1172972247004509, -1.3343453407287598, -0.15312357246875763, -0.23879995942115784, -1.7289061546325684, 1.4941083192825317, -0.0036963969469070435, -0.8808702826499939, -0.26789721846580505, 0.3078826665878296, 0.23706664144992828, 0.5220023989677429, -0.348295658826828, 0.011040092445909977, 0.35698360204696655, -1.032547116279602, -1.1963781118392944, 0.19944141805171967, 0.35984495282173157, 0.24793191254138947, -0.18616798520088196, 0.6702951192855835, 0.15462203323841095, 0.5059248805046082, 0.5107313990592957, 0.4976089894771576, 0.9133033752441406, 0.4606287479400635, 0.12654522061347961, -1.847848892211914, 0.09161529690027237, -0.9702394008636475, 0.05699748918414116, -0.27920305728912354, 1.5677247047424316, 0.6876378059387207, -0.28038305044174194, 0.2124636471271515, 0.09408543258905411, -0.7662369012832642, -0.45709162950515747, -1.1672232151031494, 0.9593214392662048, 0.15117961168289185, -0.60824054479599, -0.0482354499399662, -0.553616464138031, -0.4761486351490021, -0.3885425329208374, 0.5059452652931213, 0.641997754573822, -1.1908107995986938, -0.7556341290473938, 0.3107708692550659, -0.2092134654521942, 0.0422530472278595, 0.4213278293609619, -0.03063609078526497, -0.7033678889274597, -1.0651636123657227, -0.6532014012336731, 0.09037644416093826, 0.48117050528526306, -0.6633765697479248, -0.5555694103240967, -0.026777775958180428, -1.7546207904815674, 0.6674804091453552, -0.28265106678009033, -1.003585696220398, -0.6723447442054749, -0.9551448822021484, 0.7741599082946777, 0.37218618392944336, 0.0977889820933342, 0.38749805092811584, 0.4193805754184723, -0.9060044884681702, -0.5829275250434875, -0.9827781915664673, -0.0516018383204937, 0.6648346185684204, 0.8922699093818665, -0.5878857970237732, 0.8579850196838379, 0.636772632598877, -0.7520997524261475, 0.7188552021980286, 0.00843833014369011, -1.3428013324737549, 0.6054381132125854, 0.5620010495185852, 0.4265614449977875, 0.530478298664093, 1.2015174627304077, 0.3680718243122101, 0.6713839173316956, 0.21476757526397705, 0.7352321147918701, -0.12265341728925705, -0.45020338892936707, -0.6814208626747131, 0.16048306226730347, -1.0051535367965698, -0.9289332628250122, 0.362419068813324, -0.20208334922790527, -0.3495650887489319, 0.5082305073738098, 0.14181479811668396, -0.393783301115036, -0.2329416573047638, -0.6565433740615845, 0.16985554993152618, -0.5740055441856384, 0.5415439605712891, 0.4518778920173645, -0.6762003302574158, -0.4108239710330963, 0.27729332447052, 0.665558397769928, -1.3085206747055054, 0.017170408740639687, 0.28752627968788147, 0.5489909052848816, -0.8114131093025208, 0.8299291133880615, 0.5143610835075378, -0.320320188999176, -0.2622169554233551, 1.6291450262069702, 1.6589853763580322, -0.11668440699577332, 0.5570585131645203, 0.5862647294998169, 0.23974160850048065, -0.003310857340693474, -0.43608880043029785, -0.7994334101676941, 0.012254534289240837, 1.0301295518875122, -0.2523457109928131, 0.3614351153373718, -0.8567031025886536, 0.9788732528686523, -0.48217034339904785, 0.1995202600955963, 0.7294568419456482, 0.4628271460533142, -0.6765085458755493, 0.7045953869819641, 0.501030683517456, -0.06482811272144318, -0.08461259305477142, 0.35738876461982727, 0.6991820931434631, -0.10431990772485733, 0.6566556096076965, 0.38451388478279114, -0.3179793357849121, 0.4109804928302765, 0.2924852669239044, -0.4913056194782257, 0.5552816390991211, -0.14949925243854523, -1.159897804260254, -0.3766302764415741, 0.06593269109725952, -0.8740301132202148, 0.09261208027601242, -0.440702348947525, 0.22367221117019653, 0.3435077667236328, -0.17324692010879517, 0.5958063006401062, -1.1742414236068726, -0.16660459339618683, -0.28460341691970825, 0.19562679529190063, 1.395342469215393, 0.0695134773850441, 1.1896347999572754, 0.024602919816970825, -0.013479482382535934, -0.3843015134334564, 0.058417126536369324, -0.3673783838748932, 0.38021770119667053, -0.22504524886608124, -0.395122766494751, -0.10041287541389465, -0.5319383144378662, -0.30805549025535583, 0.8668094873428345, 0.36274516582489014, 0.25069278478622437, -0.035572245717048645, -1.0516201257705688, -0.6886139512062073, 0.6221965551376343, 0.3151184916496277, -0.36558401584625244, -0.446973592042923, -0.27054572105407715, -0.06463460624217987, -0.016962382942438126, 1.1775017976760864, -0.6425945162773132, 0.4683365523815155, -0.31209033727645874, 0.31469398736953735, -0.9366633892059326, -0.3787270784378052, 0.8008769750595093, -0.5786105990409851, 0.60594642162323, -0.9626825451850891, -0.1464925855398178, -0.5010687112808228, -0.8261776566505432, -0.28592222929000854, -0.1454887092113495, -0.7716889381408691, 0.08899487555027008, 0.1571168452501297, -0.6394593715667725, -0.8593134880065918, 0.6643503904342651, 0.7877932786941528, -0.3434155583381653, 0.3718147277832031, -0.8479602932929993, -1.0936906337738037, 0.12598025798797607, 0.0962774008512497, 0.4690539836883545, 0.3877990245819092, 1.8644733428955078, 2.1510448455810547, 0.2440742552280426, -0.31250235438346863, -0.08002451062202454, 0.8036041259765625, -0.8463281393051147, -0.8349109292030334, -0.5145363211631775, -0.062259070575237274, 0.07673206180334091], [1.0899949073791504, 0.7509233355522156, -1.494874358177185, -0.9559431076049805, 1.0290119647979736, 0.5361577272415161, 0.869834840297699, 0.9159483909606934, -0.10586194694042206, -0.6210784316062927, -1.6175508499145508, 0.4901221990585327, -0.06465915590524673, 1.06734037399292, 0.5171496272087097, 0.21162164211273193, 1.300948977470398, 0.02250494435429573, -0.2478865534067154, 0.21007946133613586, 0.10043271631002426, -0.35542261600494385, 0.08697479218244553, -0.07724232971668243, 0.26408934593200684, 0.2957109212875366, -1.2531291246414185, -0.21682162582874298, -1.4455080032348633, -0.6089966297149658, 0.9693036079406738, -1.178305745124817, -0.5489514470100403, -0.2860060930252075, -1.7921626567840576, -0.2798708975315094, 0.6765385866165161, 0.7808229327201843, 0.5162895917892456, 1.0440444946289062, 2.061617851257324, -0.19540420174598694, -0.2904767692089081, -1.301134705543518, 0.23820936679840088, -0.5486639738082886, 0.7058125138282776, -0.9480266571044922, -0.4664456844329834, -1.5962063074111938, 1.2554819583892822, -0.23187780380249023, 0.5054449439048767, 1.0408935546875, 1.6362091302871704, -0.27580422163009644, -0.45254871249198914, -0.274738609790802, 0.9737206101417542, -0.16970115900039673, 1.5808179378509521, 0.29809218645095825, -0.5561549663543701, 1.2700749635696411, -0.064345583319664, -0.28525325655937195, -0.23124653100967407, 0.3472188413143158, -0.6336156129837036, 0.2837813198566437, 0.6212777495384216, 0.44236230850219727, -0.34437718987464905, 0.34104305505752563, -1.2806980609893799, 0.08961697667837143, 0.5365105271339417, 0.43778377771377563, 0.5114162564277649, 1.003418207168579, -1.032867193222046, 0.06564973294734955, -0.4835933744907379, -0.5154492855072021, 1.032397747039795, -0.33093613386154175, 0.2592030465602875, -0.2875957489013672, -1.0454697608947754, 2.310612916946411, 0.019612561911344528, -0.6334980726242065, -0.14084075391292572, -0.9186083078384399, -0.420263409614563, -0.5415054559707642, -0.379379540681839, -0.45786142349243164, -1.2056522369384766, -0.07035418599843979, -0.8630859851837158, -1.0184078216552734, 0.10056034475564957, 0.1434682011604309, 0.5086216926574707, 1.3580361604690552, 0.332491934299469, -0.9981326460838318, -0.17873147130012512, 0.07845094799995422, -0.13497090339660645, 0.4647570252418518, -1.0913548469543457, -1.2739598751068115, -0.590217649936676, 0.9653388261795044, 1.10643470287323, -0.3306652009487152, -0.15213654935359955, 0.4295400083065033, -0.6935776472091675, -0.1525712013244629, -0.8825258612632751, 0.29927492141723633, 0.7045629620552063, 0.5251876711845398, -0.26721665263175964, 0.1797017902135849, 0.5744091868400574, -0.1543918251991272, 0.0020492179319262505, -0.09455318003892899, 0.3901764750480652, 0.7091304659843445, -0.3290579915046692, 1.2201886177062988, -0.41691720485687256, -0.5980426669120789, -0.27980557084083557, -0.115179643034935, 0.1096530556678772, 0.035203829407691956, -0.7211288809776306, -0.5851032137870789, 1.072137475013733, -0.8512997031211853, 0.027406364679336548, -0.4149540066719055, -0.7899847030639648, -0.0631643757224083, -0.9099217057228088, 0.5393829345703125, -0.05873149633407593, 0.869513988494873, 0.5644525289535522, 0.7164792418479919, 0.1783294379711151, 0.6803874969482422, -0.10874233394861221, 0.2681485712528229, 1.3060840368270874, 0.05088585242629051, -0.40328821539878845, 1.145850419998169, 0.5730876922607422, -0.26685187220573425, -0.2593497931957245, 0.755768358707428, 0.16468161344528198, 0.3088034987449646, -0.6656063199043274, -0.2405858337879181, -0.3757811188697815, 0.7071635723114014, -0.23200620710849762, 0.22422733902931213, 0.6785671710968018, -0.7435188293457031, -0.8425109386444092, -0.09202162176370621, 0.5313181281089783, -0.1272970587015152, 0.7245228886604309, -0.5947278738021851, 0.6369777917861938, -0.114435113966465, 0.4867396950721741, -0.14141790568828583, -0.04719031974673271, -0.8381322026252747, -0.5726163387298584, -0.5871478915214539, -0.9460849761962891, 0.01926056668162346, -0.4954168498516083, -1.5918384790420532, 0.3110337555408478, -0.7261645197868347, 0.07666625827550888, 0.008480452932417393, -0.5880045294761658, -0.26900216937065125, -1.3022069931030273, 0.26858794689178467, -0.4641677439212799, 0.11882349848747253, -0.6358698010444641, 0.0874868705868721, -1.1727582216262817, 0.05488848686218262, 0.9300203919410706, 0.5766138434410095, -0.1752217561006546, 1.2691251039505005, -0.11539110541343689, -1.0110623836517334, -0.14717593789100647, 0.4398494064807892, 0.244759202003479, -0.055435001850128174, 0.24505680799484253, -0.2654699683189392, 0.5549740791320801, 0.32441800832748413, 0.5848062038421631, 0.16725802421569824, -1.1605786085128784, -0.23220233619213104, -0.9010010957717896, -0.6265136003494263, -0.44703570008277893, -1.1478455066680908, 0.9866000413894653, 0.7876211404800415, -0.7747789621353149, 1.1145873069763184, -0.5157098174095154, 0.05907266214489937, 0.06256982684135437, 0.8880363702774048, 0.05479740351438522, 0.5249205827713013, -0.4438687860965729, -0.1814327985048294, -0.2383790761232376, 0.4311739206314087, 0.9880825877189636, 0.007728365249931812, -0.03433055058121681, 1.1881494522094727, 0.11781270056962967, 0.40694886445999146, 0.6790400743484497, 0.25945526361465454, -0.16400402784347534, -0.4217691421508789, -0.1795891523361206, -0.680546224117279, -0.4202187657356262, 1.202072262763977, 1.4196968078613281, -1.3688373565673828, -0.5575072765350342, -0.27325525879859924, -0.38150614500045776, -0.20569713413715363, 0.3466675579547882, -0.2705131769180298, 0.7248174548149109, -0.004707593470811844, -0.10874543339014053, 0.24710723757743835, -0.18069572746753693, 0.3828892707824707, 0.05520469322800636, -0.2604234516620636, -0.31092745065689087, 0.06111074239015579, 0.24791841208934784, 0.6089916229248047, -0.7594075202941895, -1.0112054347991943, -0.3679315745830536, 0.3099328279495239, 0.40648552775382996, -0.18041805922985077, -1.3409870862960815, 0.5477344989776611, 0.6918084025382996, -0.4414382874965668, 0.06708353757858276, 0.7268375754356384, -0.4088904559612274, 0.3120899796485901, -0.1003303974866867, 0.6362255215644836, 0.3028450608253479, -0.5196684002876282, -1.0996495485305786, -0.8558611273765564, 0.504640519618988, 1.2711020708084106, 0.30516573786735535, 1.421650767326355, 0.4549518823623657, -0.3382059633731842, -0.14119014143943787, 0.07973909378051758, -1.096752643585205, -0.3821619153022766, -0.6776304244995117, -1.026107668876648, 0.29504790902137756, -0.38051003217697144, 0.2925468981266022, 1.5395143032073975, -0.024997228756546974, 1.0932596921920776, 0.6828879714012146, -0.4925990104675293, -0.9866980314254761, -0.14287519454956055, 0.6378663182258606, -1.091401219367981, 0.5917119979858398, 0.9982197880744934, -0.5295757055282593, -0.4822564125061035, 0.40979892015457153, 0.38382574915885925, 1.024817943572998, -0.8734779953956604, 0.4957978129386902, -1.0867788791656494, -0.11408217996358871, -0.4738748073577881, 1.0279134511947632, -0.24677792191505432, 0.05423495173454285, -0.9049584269523621, -0.01436435803771019, 0.7242281436920166, -0.2725313603878021, -0.14482080936431885, 0.5604716539382935, -0.7581015229225159, -0.463364839553833, -0.6021742224693298, 0.6902270317077637, 1.0996596813201904, -0.014191065914928913, 0.1630421131849289, -0.19327767193317413, -0.38627055287361145, -0.4066312611103058, 0.37594425678253174, -0.24385888874530792, 0.6513928771018982, -0.016737954691052437, 0.4162321090698242, 1.2126840353012085, -0.4187221825122833, 0.023514559492468834, -1.4850974082946777, 0.13515381515026093, 0.5985710024833679, 1.2369310855865479, -0.028476186096668243, 0.06988271325826645, 0.24375921487808228, -0.36485955119132996, 0.3331417441368103, 0.11904197931289673, 1.0953267812728882, -0.09456757456064224, -0.7689926624298096, -0.8275123834609985, -0.533573567867279, -0.0443384014070034, -0.48533082008361816, 0.2706223726272583, -0.15321744978427887, -0.5360719561576843, -0.972748339176178, 1.047960638999939, 0.32770344614982605, 0.10376518964767456, -0.7199926972389221, 0.33438077569007874, 0.06791606545448303, 0.012509765103459358, 0.5568132400512695, -0.5248838663101196, 0.09025280177593231, 0.5657995939254761, -0.8885124325752258, -0.9548236727714539, 1.071096420288086, 0.2805061638355255, 0.4659073054790497, -0.9136292934417725, 0.21484942734241486, -0.46455833315849304, 1.0689191818237305, 0.32151249051094055, -0.2152968794107437, 0.1516980677843094, 0.7308057546615601, -0.9317957162857056, -0.1102553978562355, 0.007900918833911419, 0.9143660664558411, -0.37890708446502686, -0.11743208020925522, -0.6894235610961914, -0.13384883105754852, 0.3126656711101532, 0.5837169885635376, -0.6161325573921204, -0.6264556646347046, -0.4453642666339874, 0.24310095608234406, 0.002990737557411194, 0.038370281457901, 1.7640119791030884, 0.07390603423118591, -0.45066335797309875, 0.8166974782943726, 0.3088007867336273, -1.2777429819107056, 0.4002995491027832, 0.32935237884521484, -0.1731557846069336, -0.4420018494129181, -0.15089580416679382, 0.11168770492076874, 0.015090162865817547, 0.8731406331062317, -0.1873323619365692, 0.3218270540237427, 0.10259629040956497, -0.2471373975276947, 0.09606630355119705, 0.6564711928367615, 1.1455475091934204, 0.6648083925247192, 1.3018386363983154, -0.5872259736061096, -0.9451276063919067, 1.171480655670166, -0.38340625166893005, 0.2550216615200043, 0.4115103483200073, -0.19354015588760376, 1.3653361797332764, -1.084282398223877, -0.2585986852645874, 0.5033338665962219, -0.4457396864891052, 0.5617784857749939, 0.09741012006998062, 0.10893162339925766, -0.5377691388130188, 0.541968822479248, 0.27114588022232056, -0.17016351222991943, 0.7219981551170349, -0.06318724900484085, -0.2998203635215759, 0.039477620273828506, -1.0111639499664307, 0.5699869394302368, -0.5718100070953369, -0.41806212067604065, 0.4299241900444031, -0.008128399029374123, 0.35683342814445496, 0.8628504872322083, 0.10858479142189026, 2.635101556777954, -0.2230287492275238, -1.6967978477478027, 0.2178323119878769, -0.4071250855922699, -0.10769066959619522, 0.19306734204292297, -0.0413239486515522, -0.8634107708930969, -0.7940466403961182, 0.09214290976524353, 0.7722923159599304, -0.3758394718170166, 0.07941988855600357, 0.08239294588565826, -1.2866252660751343, -0.1613815277814865, 0.5121865272521973, 1.3988691568374634, 1.166837453842163, 0.439474880695343, 0.3121001422405243, 0.4835515320301056, -0.07078203558921814, -0.6267488598823547, 0.22698292136192322, 0.2539827823638916, 0.13404399156570435, -0.6618649959564209, -0.5615576505661011, 0.7958593368530273, 0.8981786966323853, 0.08038844913244247, -0.0062330481596291065, 1.3455361127853394, 0.8984318375587463, 0.10345608741044998, -0.4985176622867584, 0.11793026328086853, -1.4122371673583984, 0.17813044786453247, 0.38736873865127563, -0.47655045986175537, -0.09496510028839111, -0.541425883769989, -1.5745435953140259, 0.6211282014846802, 0.016475534066557884, -0.7756680846214294, -0.016381990164518356, 1.1246256828308105, 0.418204128742218, 0.48020675778388977, -0.2606959640979767, -0.009422184899449348, 0.5226970911026001, -0.42314818501472473, -1.0961668491363525, 0.2142055630683899, 0.0890519991517067, 0.15430830419063568, -0.6228377223014832, 0.5674508213996887, 0.1537935882806778, 0.07605421543121338, -0.03036331571638584, 0.37536561489105225, 0.854557454586029, 0.6576260924339294, 0.7531024217605591, -1.691765546798706, 0.139678955078125, -0.1201818585395813, -0.09879874438047409, -0.43399733304977417, 0.9966339468955994, 0.5693304538726807, -0.04081825539469719, -0.36482712626457214, -0.14834646880626678, -0.8990360498428345, -0.1769089549779892, -1.2167668342590332, 1.1465812921524048, 0.4149961471557617, -0.7543209195137024, -0.45511049032211304, -0.640929102897644, -0.559980571269989, -0.8239620327949524, 0.8793855309486389, 0.5413584113121033, -0.7347427010536194, -0.7576485872268677, -0.09968970715999603, -0.18196777999401093, 0.7509267926216125, -0.33490100502967834, -0.2961289584636688, -1.1377142667770386, -1.5585261583328247, -0.4140923321247101, 0.41686221957206726, 1.0733195543289185, -0.363705039024353, 0.1924228072166443, -0.009713136591017246, -1.3867013454437256, 0.9046265482902527, 0.14117029309272766, -0.8785357475280762, -0.28160035610198975, -0.8085359930992126, 0.5336436033248901, 0.26647770404815674, 0.37404555082321167, -0.31416964530944824, 0.7740567326545715, -1.1029102802276611, -1.038061499595642, -0.9568594694137573, 0.09304915368556976, 0.2964020371437073, 0.3412996232509613, -0.4512137174606323, 1.1781203746795654, 0.10541525483131409, -0.7878287434577942, -0.0008023586124181747, -0.10119058936834335, -0.7154396772384644, -0.005736378952860832, 0.9185376167297363, 0.2972261607646942, 0.35532888770103455, 0.9536833167076111, 0.021884702146053314, 0.3670685291290283, 0.12042608112096786, 0.6671217083930969, -0.945544958114624, -0.2648354768753052, -0.025916114449501038, -0.16901801526546478, -0.7906678318977356, -0.8499509692192078, -0.1227467805147171, -0.15421907603740692, -1.071692705154419, 0.8445626497268677, 0.6691906452178955, -1.0604727268218994, 0.3061770498752594, -0.7287088632583618, 0.3216026723384857, 0.019178949296474457, 0.22721034288406372, 0.11320167034864426, -0.505702793598175, -0.4454502463340759, 0.15854603052139282, 0.3165908753871918, -0.9379745125770569, -0.22731554508209229, -0.09057691693305969, 0.0650855079293251, -0.7100082635879517, 0.7498055100440979, 0.4287741780281067, -0.4461284875869751, -0.7075940370559692, 1.3451358079910278, 1.5724574327468872, -0.26042479276657104, -0.15280592441558838, 0.28239455819129944, 0.20920835435390472, -0.13847388327121735, -0.5208309888839722, -0.7145273685455322, -0.029964199289679527, 0.8355987071990967, 0.49913281202316284, 0.5346706509590149, -0.13400185108184814, 0.6771014332771301, -0.22580167651176453, 0.07612265646457672, 0.018880493938922882, 0.07305416464805603, -0.6088389754295349, 0.6594595313072205, 0.4197886288166046, 0.0542105957865715, 0.4817032217979431, 0.4923158884048462, 0.021676955744624138, 0.05826099216938019, 1.0102133750915527, 0.2738780379295349, -0.21778514981269836, 0.661684513092041, 0.7522718906402588, -0.5236421823501587, 0.06097456440329552, -0.4541533589363098, -1.566522479057312, -0.19208472967147827, -0.3729613721370697, -1.0473212003707886, 0.6219092011451721, -0.8408010005950928, 0.03699561208486557, 0.598772406578064, 0.01180991716682911, 0.22618666291236877, -0.5599034428596497, 0.12469454854726791, -0.4045824110507965, 0.6488109230995178, 0.3994494676589966, -0.4979918897151947, 1.6725918054580688, 0.02273309975862503, -0.3735469579696655, -0.9265364408493042, 0.058022383600473404, 0.13111041486263275, 0.38058438897132874, -0.13610495626926422, 0.06059498339891434, 0.08148914575576782, -0.7907617092132568, -0.4688171148300171, -0.07244199514389038, -0.23588049411773682, 0.09358897060155869, -0.5444109439849854, -1.060682773590088, -0.3276025056838989, 0.28393951058387756, 0.3203982412815094, -0.2673056125640869, -0.7977970838546753, -0.3327096402645111, 0.6815717816352844, 0.036117587238550186, 1.1967145204544067, -0.6125324368476868, 0.7124963402748108, 0.42217880487442017, -0.0176980122923851, 0.06490333378314972, 0.12654463946819305, 0.6722924113273621, 0.1211479976773262, 0.8773038387298584, -0.19998902082443237, -0.258427232503891, 0.017799606546759605, -0.9766445755958557, -0.04031156003475189, 0.1531134396791458, -0.584483802318573, 0.04721399396657944, -0.5515251159667969, -0.7580823302268982, -0.6956192255020142, -0.4873460829257965, 0.130471333861351, -0.183668315410614, 0.31093937158584595, -0.9014307856559753, -0.3129805028438568, 0.460757315158844, 0.27152684330940247, -0.14238429069519043, 0.6229407787322998, 1.2474578619003296, 2.0623271465301514, 0.4083510935306549, -0.2839885354042053, -0.584843635559082, 0.6271197199821472, -1.218303918838501, -0.35857322812080383, -1.4578323364257812, 0.33615079522132874, -0.18110249936580658], [0.7497368454933167, 1.3498591184616089, -2.172292470932007, -1.5881892442703247, -0.03525746986269951, -0.10464414954185486, 1.1912555694580078, 0.6032661199569702, -0.380621075630188, -1.4927177429199219, -1.3969918489456177, 0.7670795321464539, 0.11303986608982086, 1.0515087842941284, 0.3797885477542877, 0.38102567195892334, 1.1876786947250366, 0.00770528893917799, 0.6376985311508179, 0.6411573886871338, -0.1884785145521164, 0.22717145085334778, -0.01520706806331873, -0.016385706141591072, 0.5978853106498718, 0.9304656982421875, -1.189231514930725, 0.2159116566181183, -1.737237811088562, -1.1558119058609009, 1.3987793922424316, -1.245409369468689, 0.11450057476758957, -0.9243862628936768, -1.476584792137146, -0.18051695823669434, 0.5841405987739563, 0.33336398005485535, -0.4835642874240875, 0.8766230940818787, 2.127882242202759, 0.28927093744277954, -0.9017784595489502, -0.6224992871284485, 0.4757022261619568, -0.831712007522583, 0.5473321676254272, -1.771068811416626, -0.5282933712005615, -1.5511577129364014, 0.7719354629516602, -0.7417307496070862, -0.21366047859191895, 0.9778196811676025, 1.0772573947906494, 0.057322949171066284, -0.3170028328895569, 0.4079764485359192, -0.09282511472702026, 0.11864513158798218, 1.6110358238220215, -0.15408897399902344, -0.03238635137677193, 1.2842930555343628, -0.1789000779390335, 0.10764221847057343, -0.24432320892810822, 0.026827828958630562, -0.6031993627548218, 0.5130684971809387, 0.8602616190910339, -0.2145054191350937, -0.6478827595710754, 0.2792970836162567, -2.0185468196868896, 0.27786821126937866, 0.42609313130378723, 0.201289564371109, 0.19135944545269012, 1.408045768737793, -0.44281643629074097, 0.3755761384963989, -0.7052471041679382, -0.9450652003288269, 0.1209627240896225, -0.5963158011436462, 0.3440763056278229, -0.7134822010993958, -1.2285163402557373, 1.3885304927825928, 0.4343456029891968, -0.05757014825940132, 0.5032264590263367, 0.04537351429462433, -0.2732878625392914, -0.4798540472984314, -0.10237323492765427, -0.03701406344771385, -0.25522077083587646, -1.0368727445602417, 0.02711852453649044, -0.8144035339355469, 0.6490422487258911, 0.6434070467948914, 0.617068350315094, 1.0660678148269653, 0.31515970826148987, -0.6883290410041809, -0.9829447269439697, -0.4538814425468445, -0.6986566185951233, -0.26704078912734985, -0.8573678731918335, -0.638031005859375, -0.9532942175865173, 0.9888944625854492, 1.2206674814224243, -0.8870853185653687, 0.2860361933708191, 1.2951059341430664, -0.4880262315273285, -1.0189619064331055, -0.17149750888347626, -0.20539195835590363, 1.3322657346725464, -0.3805159330368042, -0.6683109402656555, 0.20527392625808716, 0.1689125895500183, -0.34368622303009033, 0.6275997757911682, -0.32964012026786804, -0.18777599930763245, 0.860478401184082, 0.12283934652805328, 0.8689073920249939, -0.015075267292559147, -0.4894753396511078, 0.3499267101287842, -0.22807416319847107, -0.14596427977085114, -0.452095627784729, -0.5262007713317871, -0.37965595722198486, 0.7681388258934021, -0.367231547832489, -0.010688729584217072, 0.057114165276288986, -0.5848777294158936, 0.5033074617385864, -0.9849233627319336, 0.0016814526170492172, 0.2947312593460083, 1.6177301406860352, 0.39858299493789673, 0.05659942328929901, 0.4293455481529236, 0.326087087392807, -0.02056649513542652, 0.795266330242157, 0.9190932512283325, 0.017404919490218163, -0.6489474177360535, 0.8360152840614319, 1.0299816131591797, -0.6547256112098694, 0.3075418472290039, 0.3570508658885956, 0.03456401452422142, 0.6763147711753845, -0.9169993996620178, -0.7332804799079895, 0.015554605051875114, 0.5968160033226013, -0.3481476604938507, -0.43905574083328247, 1.1441112756729126, -0.9989149570465088, -1.1151360273361206, -0.7232507467269897, 0.6522575616836548, -0.9274588227272034, 1.012717843055725, -0.5068460702896118, 0.605755090713501, 0.3551595211029053, -0.40503016114234924, -0.33112791180610657, -0.13963335752487183, -0.9047116637229919, -1.1698188781738281, -0.32217928767204285, -0.8653867244720459, 0.19818685948848724, -0.7316752672195435, -1.1765758991241455, -0.011040693148970604, -1.3109034299850464, 0.19596882164478302, 0.050818633288145065, 0.14222954213619232, -0.02801935188472271, -1.345610499382019, -0.27120712399482727, -0.5844573378562927, 0.7685985565185547, -0.4058702886104584, 0.5056234002113342, -0.45478472113609314, 0.06034315377473831, 0.8484426140785217, -0.3226495683193207, -0.654642641544342, 0.9572309851646423, 0.5102941393852234, -1.2916702032089233, -0.27107539772987366, 0.3104858696460724, 0.1036379337310791, -0.20462895929813385, 0.8760085105895996, -0.08065517991781235, 0.5807107090950012, 0.4302847981452942, -0.005449168384075165, -0.01821484975516796, -1.5728065967559814, -0.11703478544950485, -0.6772109270095825, -0.24187235534191132, -0.7462785243988037, -0.34182876348495483, 1.0619640350341797, 0.8031489253044128, -0.5026435852050781, 1.1902517080307007, -0.3449864983558655, 0.09773795306682587, 0.2094869315624237, 0.4990690052509308, 1.128784418106079, -0.2022334337234497, -0.03116975910961628, 0.06625305861234665, -0.1846190094947815, -0.10167689621448517, 1.1420506238937378, -0.19570086896419525, 0.016812000423669815, 1.4323492050170898, 0.07784625887870789, -0.6178925037384033, 0.7492607235908508, 0.11093548685312271, 0.2030748426914215, -0.8352175354957581, -0.12578119337558746, 0.10771499574184418, -0.9433782696723938, 1.1691025495529175, 0.7769278883934021, -1.4559886455535889, -0.29740050435066223, -0.201022669672966, -0.3899967074394226, -0.28120386600494385, 0.33704036474227905, -0.46550360321998596, 0.5570310950279236, -0.03251083195209503, -0.09520186483860016, 0.2880485951900482, -0.07284781336784363, 0.5620551705360413, 0.12145739048719406, -0.0842440277338028, 0.02972196415066719, 0.6022840738296509, -0.018862633034586906, 0.9341028928756714, -0.12383092194795609, -1.7642523050308228, -0.6882904171943665, -1.1560386419296265, 0.7586441040039062, -0.18041928112506866, -0.3917165696620941, 0.7948985695838928, 1.1299947500228882, -0.2668938636779785, 0.5593478679656982, 0.4652692973613739, 0.14474281668663025, -0.1374322921037674, 0.5769934058189392, 1.0657535791397095, 0.7723239660263062, -1.0678592920303345, -0.43660327792167664, -0.6981118321418762, -0.2805282473564148, 1.0547016859054565, 0.3586045503616333, 1.3302475214004517, 0.09955252707004547, -0.1027831882238388, -1.2283287048339844, 0.181118443608284, -0.8512352108955383, -0.2838285565376282, -0.3785158097743988, -1.228786587715149, -0.00709433201700449, -0.8156706094741821, 0.05460210517048836, 1.0938800573349, 0.23325592279434204, 1.548574447631836, 1.0608679056167603, -0.28754723072052, -1.2999910116195679, -0.6600329875946045, 1.0175801515579224, -1.2253965139389038, 0.6431993246078491, 0.682637095451355, -0.2581844925880432, 0.04891616106033325, 0.021608486771583557, 0.47577619552612305, 1.2228337526321411, -0.06526545435190201, 0.5644844770431519, -0.605426549911499, -0.25483211874961853, 0.13480569422245026, 0.6656885147094727, -0.4590834975242615, -0.43883126974105835, -0.45856034755706787, 0.013369815424084663, -0.10281869024038315, 0.12119594216346741, -0.5996864438056946, 0.38157543540000916, -0.5044858455657959, -0.39881736040115356, -0.2195790559053421, 0.6408476829528809, 2.192129373550415, -0.16839773952960968, 0.07074964046478271, -0.3171652555465698, -0.4146893620491028, -0.46578994393348694, 0.4617418944835663, 0.025465214625000954, 0.6032674312591553, 0.08479473739862442, 0.02763814479112625, 1.262349009513855, -0.09025221318006516, 0.2540920078754425, -1.5442874431610107, -0.031951043754816055, 0.1604713797569275, 1.6829344034194946, 0.48930999636650085, 0.11400438845157623, 0.2633587419986725, -0.33637914061546326, 0.3437342643737793, -0.5026872158050537, 1.1594343185424805, 0.020704379305243492, -0.41739943623542786, -0.4445677101612091, -0.42253410816192627, 0.09881646931171417, -0.4549669325351715, -0.31379184126853943, 0.7316092848777771, -0.1496260166168213, -0.3129754066467285, 0.15054084360599518, 0.061475757509469986, -0.3189038038253784, 0.18093562126159668, 0.3886207938194275, -0.10897888988256454, 0.026526369154453278, -0.0394236221909523, -0.3395139276981354, -0.07830386608839035, 1.1648534536361694, -0.6939939856529236, -0.2678094506263733, 0.5007926821708679, 0.0798255130648613, 0.6733771562576294, -1.5653388500213623, 0.10127521306276321, -0.590256929397583, 0.7336430549621582, -0.3511071801185608, -0.6506603360176086, 0.23719079792499542, 0.23060205578804016, -0.3926742672920227, -0.1852095127105713, -0.054894305765628815, 1.2562001943588257, 0.292275995016098, -0.7846606969833374, 0.11751820147037506, -0.11708758026361465, 0.1899419128894806, 0.7076650261878967, -0.3578033447265625, -0.3032149076461792, -0.3290351629257202, 0.11143963038921356, -0.34028780460357666, -0.3818443715572357, 1.7331429719924927, 0.1579999327659607, -0.477054625749588, 0.6188092231750488, 0.13079647719860077, -0.5824834108352661, 0.41698718070983887, 0.279402494430542, 0.40051260590553284, 0.14229649305343628, 0.5195862054824829, 0.49253976345062256, -0.19240623712539673, 0.7237186431884766, 0.18846218287944794, -0.08894587308168411, 0.2558201253414154, -0.8896585702896118, 0.3539184033870697, 0.17733994126319885, 1.0644680261611938, 0.7709688544273376, 0.5130475759506226, -0.9180302023887634, -0.5739614963531494, 1.1808406114578247, 0.4711390435695648, 1.267928123474121, 0.670172393321991, 0.15423698723316193, 1.3985782861709595, -1.6073815822601318, -0.059059157967567444, 0.36953026056289673, 0.05806706100702286, 0.6267785429954529, 0.6674371361732483, 0.30914944410324097, -1.0720504522323608, -0.12951958179473877, -0.33934253454208374, -1.0314600467681885, 1.187355875968933, -0.17416909337043762, -0.12782621383666992, 1.0551644563674927, -0.27841079235076904, -0.1195220947265625, -0.38652464747428894, -1.2056924104690552, 0.5376530289649963, -0.5610280632972717, 0.218642458319664, 0.8701152205467224, 0.7078458070755005, 0.7691283226013184, -0.7045876383781433, -1.3962427377700806, 0.16239561140537262, -1.4171339273452759, -0.13764694333076477, 0.3014460504055023, -0.18863876163959503, -1.7022004127502441, -1.2703967094421387, -0.3285895586013794, 0.14561837911605835, -0.47411274909973145, -0.2114356905221939, 0.32339727878570557, -1.1968823671340942, -0.427918404340744, 0.2874075174331665, 1.535683035850525, 0.7248944044113159, -0.32483044266700745, 0.945258617401123, 0.3673074543476105, -0.12336275726556778, 0.13115592300891876, 0.0272198636084795, 0.5661038756370544, 0.23898819088935852, -0.998375415802002, -0.9997740387916565, 0.644108235836029, 0.767539918422699, 0.05152058228850365, -0.22017331421375275, 0.7643116116523743, 1.8919750452041626, -0.7840059995651245, -0.6953185796737671, 0.7482004761695862, -0.6981304287910461, 0.05312985181808472, 0.06218837574124336, -0.9078904986381531, 0.09976066648960114, -0.3117081820964813, -1.6514613628387451, 1.3624045848846436, -0.40128573775291443, -0.6961249709129333, 0.6484448313713074, 0.7775405645370483, -0.18749411404132843, 0.6101210117340088, -0.2896020710468292, -0.09061641991138458, 0.3571629524230957, -0.4600784182548523, -1.4832124710083008, 0.21017885208129883, 1.375265121459961, 0.28562548756599426, -0.672856867313385, 0.48267194628715515, -0.2874147593975067, 0.19585296511650085, -0.05377496778964996, 0.9330063462257385, 0.8081949949264526, 0.48970332741737366, 0.5693985819816589, -1.0715652704238892, 0.07986533641815186, -1.5791003704071045, 0.0704307109117508, -0.5669780373573303, 0.9659290313720703, 0.4852137267589569, -0.24490994215011597, 0.42415645718574524, 0.02932920679450035, -0.6840465068817139, -0.4434415102005005, -0.9207288026809692, 1.094016432762146, 0.5573188662528992, -0.7190935611724854, 0.14347226917743683, -0.5334513783454895, -0.07960668951272964, -0.321819007396698, 0.5038580298423767, 0.6035212278366089, -1.78287935256958, -0.8184314966201782, 0.23964422941207886, -0.3411097228527069, -0.8436015844345093, 0.5961167216300964, 0.042910136282444, -0.3916681408882141, -1.2322297096252441, -1.1307042837142944, 0.6123818755149841, 0.8599706292152405, -0.2859610915184021, -0.29512813687324524, 0.06552906334400177, -0.9470828771591187, -0.023704132065176964, -0.4958750307559967, -0.7610123157501221, -0.5341871380805969, -0.7658945918083191, 1.297717809677124, 0.5090906620025635, 1.0272266864776611, -0.46295246481895447, 0.9023258090019226, -0.7632737755775452, -0.14687655866146088, -0.9442318081855774, -0.02587631717324257, 0.9442312717437744, 0.9940779209136963, -0.9173881411552429, 0.991532564163208, 0.33633628487586975, -0.5843871235847473, -0.8155969977378845, -0.13795319199562073, -0.42642942070961, 0.18588361144065857, 0.49289003014564514, 0.007702012546360493, 0.676171064376831, 1.5491470098495483, -0.3026810884475708, 0.9681845903396606, 0.522533118724823, 0.8307088613510132, -0.3342699706554413, -0.7689548134803772, -0.6991788744926453, -0.4097643196582794, -0.5693212151527405, -0.7516419291496277, 0.6552410125732422, -0.8765504360198975, -0.7986929416656494, 0.2373291403055191, 0.8988913893699646, -0.7640868425369263, 0.4202530086040497, -0.9971375465393066, 0.22582285106182098, -0.8012135028839111, 0.8107532262802124, -0.08830974996089935, -0.8661852478981018, -1.3478785753250122, -0.0977979227900505, 0.13535885512828827, -0.6494157910346985, -0.41294366121292114, 0.32577553391456604, 0.5901281833648682, -0.6584653258323669, 0.9706502556800842, -0.2612444758415222, -0.1190272644162178, -0.0009085081983357668, 2.028658151626587, 1.7988239526748657, 0.2539386749267578, 0.4455139935016632, 0.3882642388343811, -0.29758524894714355, -0.3154047429561615, -0.827650249004364, -0.6549291610717773, 0.24187874794006348, 0.8120161890983582, 0.04943434149026871, 0.061784811317920685, -0.3997327387332916, 1.0177233219146729, -0.5714775323867798, -0.6105653047561646, 0.8109496235847473, 0.3438400626182556, -0.598405659198761, 0.7206992506980896, 0.39339005947113037, 0.28188467025756836, 0.7699061036109924, 0.2759529948234558, 0.7135456800460815, -0.9102778434753418, 0.8591049313545227, 0.3979339599609375, -0.40654879808425903, 0.9328677654266357, 0.18618135154247284, -0.9575427770614624, 0.553515613079071, -0.134647399187088, -1.4261507987976074, -0.5549536943435669, -0.19829879701137543, -0.698724627494812, 0.4069744944572449, -0.4364532232284546, 0.19843249022960663, 0.4746186137199402, -0.3001629710197449, 0.09652291238307953, -0.9107968211174011, 0.24784688651561737, -0.6221266388893127, 0.40726438164711, 0.8364746570587158, -0.27714115381240845, 1.5512443780899048, -0.2946521043777466, -0.7293006181716919, -0.1446237415075302, -0.4439963102340698, -0.2567424178123474, -0.0212150439620018, -0.3210917115211487, -0.5652949213981628, -0.1581871658563614, 0.07235211133956909, -0.45525404810905457, 0.5773187279701233, 0.577521800994873, 0.5126860737800598, -0.39811578392982483, -0.9130818843841553, -0.722255527973175, 0.9152210354804993, 0.2756298780441284, -0.403260737657547, -0.414504736661911, 0.27051496505737305, 0.6386077404022217, 0.13821566104888916, 0.956875741481781, -1.0872104167938232, 0.4658239781856537, 0.5838418006896973, 0.02606637217104435, -0.8608431816101074, -0.1785232275724411, 0.6980642080307007, -0.11109700798988342, 0.6267642378807068, -0.06440560519695282, -0.13076214492321014, -0.0066995322704315186, -0.9472395181655884, 0.27139461040496826, 0.21554571390151978, -0.14447177946567535, 0.32104170322418213, -0.7514855265617371, -0.5600653886795044, -1.0511435270309448, 0.29605698585510254, 0.4802379012107849, 0.04038356617093086, 0.6590381860733032, -0.45639458298683167, -1.2891095876693726, -0.22452318668365479, 0.5031581521034241, 0.5606600046157837, 0.8409788012504578, 1.6783344745635986, 2.175102710723877, 0.05687260627746582, -0.38943228125572205, -0.4549707770347595, 0.7025190591812134, -1.0866005420684814, -0.2058081477880478, -0.8925247192382812, 0.29317423701286316, -0.026898900046944618], [0.4175654947757721, 1.1076370477676392, -0.8686848878860474, -0.31670722365379333, 0.6700303554534912, 0.1857779324054718, 1.4144986867904663, 0.039431601762771606, 0.32513704895973206, -0.34178274869918823, -0.8103511929512024, -0.04314091429114342, 0.9073023200035095, 1.0382386445999146, 0.17342035472393036, 0.43932148814201355, 1.2018141746520996, -0.19438372552394867, 0.06324456632137299, 1.177187442779541, -0.20500406622886658, -0.48502498865127563, -0.3936218321323395, 0.46366822719573975, -0.46958959102630615, 0.62691330909729, -1.6320855617523193, -0.14471638202667236, -1.2199453115463257, -0.7330194711685181, 1.4256380796432495, -0.7838892936706543, -0.2974412441253662, 0.15485088527202606, -1.6922802925109863, -0.14423459768295288, 0.9322534203529358, 0.5491613149642944, 0.7861988544464111, 0.30539631843566895, 1.8858084678649902, -0.13029375672340393, -0.10280441492795944, -1.2981586456298828, 0.9277600646018982, -0.6415098309516907, 1.233984112739563, -1.6143600940704346, -0.06607773900032043, -0.4737853407859802, 0.6126260757446289, 0.04215867444872856, 0.24271509051322937, 1.035241961479187, 0.810572624206543, -1.0933760404586792, -0.17203757166862488, -0.14271478354930878, 0.241120383143425, 0.722758412361145, 0.9688540697097778, 0.6628650426864624, -0.0537450946867466, 0.7930533289909363, 0.6573354005813599, 0.31770798563957214, -0.016489343717694283, 0.3822340667247772, -1.162078857421875, 0.4776698350906372, 0.3716121315956116, 0.1945437341928482, -0.5639527440071106, 0.16578885912895203, -0.038918446749448776, 0.9192758798599243, 0.7843204140663147, 0.6330474019050598, 0.2726345658302307, 1.0320979356765747, -0.5828375816345215, 0.16480493545532227, 0.038848619908094406, -0.8598964214324951, 0.21265792846679688, -0.05378323420882225, -0.011237452737987041, -0.8246335387229919, -0.6385494470596313, 1.7039543390274048, 0.18507766723632812, 0.2424173206090927, 0.498071551322937, -0.6982290148735046, 0.015821631997823715, -0.8481962084770203, 0.6776198744773865, -0.6193865537643433, -0.9686539173126221, -0.07282711565494537, -0.9140639305114746, -0.9249046444892883, 0.38180437684059143, 0.5607761740684509, 1.100868821144104, 1.2152999639511108, -0.6993275880813599, -0.8547204732894897, -0.48287829756736755, 0.0856226310133934, -0.05752729997038841, 0.401979923248291, -0.7138481140136719, -0.22973483800888062, 0.4675045907497406, 1.3085473775863647, 1.3214819431304932, -0.11403678357601166, 0.4323035180568695, 0.7033257484436035, -0.22047725319862366, -0.2832215130329132, -0.810422956943512, 0.3918687701225281, 0.20903563499450684, 1.2286884784698486, -0.2989662289619446, -0.2501594126224518, 0.44459033012390137, 0.44753456115722656, 0.40074923634529114, 0.11744686216115952, -0.055248893797397614, 1.008682370185852, -0.286072701215744, 0.843859851360321, -0.5701661705970764, -1.3395500183105469, -0.013028251938521862, -0.3318619728088379, 0.8366624712944031, -0.4729281961917877, -0.7721909880638123, -0.2757374048233032, -0.0682339146733284, -0.27563369274139404, -0.46253716945648193, 0.007473666220903397, -0.4819176495075226, -0.26081690192222595, -1.2588717937469482, -0.08129781484603882, -0.3750113844871521, 0.7080538868904114, -0.31879138946533203, -0.24826103448867798, 0.13830819725990295, 0.6395281553268433, 0.3329326808452606, 0.1807154417037964, 1.1176968812942505, 0.2577856183052063, -0.6534621715545654, 1.1106071472167969, 0.5295169949531555, -0.1829490065574646, 0.7100266218185425, 0.015019233338534832, 0.06199377402663231, 0.4108545184135437, -0.35460925102233887, -0.8325937986373901, -0.08988851308822632, -0.17803791165351868, 0.4412958323955536, -0.21285127103328705, 1.5239241123199463, 0.01802576147019863, -1.113625168800354, -1.3677716255187988, 1.1088509559631348, -0.3475266993045807, 0.03370020166039467, -0.7814205288887024, 0.6175874471664429, -0.7371373772621155, 0.18789178133010864, 0.8420279026031494, -0.05314061790704727, -1.020450234413147, -0.6623467206954956, -0.24414394795894623, -0.9193558692932129, 0.4966588616371155, -0.8829782605171204, -0.7968816757202148, 0.5483164191246033, -0.752514660358429, -0.24439966678619385, -0.1738419085741043, -0.3322847783565521, -0.3783547878265381, -1.2715353965759277, 0.3261720538139343, -0.21647994220256805, 0.49499842524528503, -0.20426227152347565, 0.11096341162919998, -0.33392077684402466, -0.4299013018608093, 0.798760175704956, 1.0522569417953491, -1.0775463581085205, 0.6373053193092346, -0.6184424757957458, -0.6210764050483704, 0.06750239431858063, -0.11678609997034073, 0.09864183515310287, -0.2806858718395233, 0.15102049708366394, -0.3861066997051239, 0.6903775930404663, 0.18379166722297668, 0.6404000520706177, -0.22717970609664917, -1.1212875843048096, -0.7195385098457336, -0.7826631665229797, -0.18392236530780792, -0.8015263080596924, -0.786749005317688, 1.1933417320251465, 0.5818836092948914, -0.8645581007003784, 0.8197804689407349, -0.9448475241661072, 0.0077622029930353165, 0.39635169506073, 0.6912371516227722, 0.10494906455278397, 0.402424693107605, -0.25713515281677246, -0.41121187806129456, -0.5298791527748108, 0.4631474018096924, 0.6835426688194275, 0.17665740847587585, 0.4634036123752594, 1.0417948961257935, 1.299845576286316, -0.09488740563392639, 0.7554970979690552, 0.2474251538515091, -0.329819917678833, -1.4925233125686646, -0.04419628903269768, -0.1732005923986435, -0.6910645961761475, 1.3051902055740356, 0.3520154058933258, -1.1446263790130615, -0.9077672958374023, 0.19757455587387085, -0.1996781975030899, -0.25176799297332764, 0.217622771859169, -1.1363002061843872, 1.2939095497131348, 0.10661867260932922, 0.28678399324417114, 0.0356203131377697, -0.0789293423295021, 0.6053616404533386, -0.061238594353199005, -0.18047256767749786, -0.8449308276176453, -0.09511521458625793, 0.806327760219574, 0.5575022101402283, 0.7264428734779358, -1.2389726638793945, -0.43930718302726746, 0.046093832701444626, 0.10728982836008072, -0.5914789438247681, -0.23564524948596954, 1.3790942430496216, 0.16400381922721863, -0.405924528837204, -0.017709992825984955, 0.612910270690918, -0.5905670523643494, -0.6877666115760803, 0.41342443227767944, 0.9144115447998047, 0.793805718421936, -0.8908658623695374, -1.0704345703125, -0.26931628584861755, 0.6384009718894958, 0.725982129573822, 0.7888630032539368, 1.083817720413208, -0.4994613230228424, -0.38867971301078796, -0.44571778178215027, -0.20344707369804382, -0.9799846410751343, -0.5467895269393921, -0.24450837075710297, -0.99098801612854, -0.04616434499621391, 0.11120913177728653, -0.1670869141817093, 0.9124234914779663, -0.1300252377986908, 1.1033233404159546, 0.526495099067688, -0.41451922059059143, -0.30212172865867615, 0.14358486235141754, 0.4234364330768585, -0.6045193672180176, 0.6738994121551514, 0.9451583623886108, -0.5652377605438232, -0.4542589485645294, 0.48068392276763916, 0.1157279834151268, 0.2204963117837906, 0.06468132883310318, 0.1755504161119461, -1.2935599088668823, -0.3478386402130127, -0.2461903691291809, 0.8586094379425049, 0.32500749826431274, 0.21226008236408234, -0.699429452419281, 0.05501555651426315, 1.0336064100265503, -0.11058567464351654, -0.8509907722473145, 0.9918678998947144, -0.48159685730934143, -0.5227309465408325, 0.08247318863868713, 0.48521459102630615, 0.9968665838241577, -0.532020628452301, -0.34398534893989563, -0.19008852541446686, -0.3265170156955719, -0.07833681255578995, -0.3036828935146332, -0.5949552059173584, 0.6275882124900818, 0.32799431681632996, 0.12827323377132416, 0.6879814267158508, -1.1300921440124512, -0.13126254081726074, -1.1199493408203125, 0.6255267858505249, 0.571935772895813, 1.2632633447647095, -0.007740522734820843, -0.03915252909064293, 0.08069968223571777, -0.16212579607963562, 0.1274113953113556, 0.39601385593414307, 0.4700968563556671, -0.31888487935066223, -0.18680857121944427, -0.32100948691368103, 0.36803051829338074, -0.2971572279930115, -0.6301289796829224, -0.11617860943078995, 0.6903365850448608, -1.1623202562332153, -1.022371530532837, 0.6468603014945984, 0.19341857731342316, -0.5783531069755554, -0.6878153085708618, 0.08288081735372543, 1.0675318241119385, -0.30126073956489563, 0.7381209135055542, -0.4660661518573761, -0.3443242907524109, -0.05411115661263466, -0.8895983695983887, -0.9469146132469177, 0.01331295631825924, 0.3940645456314087, 0.9293098449707031, -1.2193471193313599, 0.14592856168746948, -0.940091609954834, 0.4904712438583374, 0.7018898129463196, -0.0249874796718359, 0.42276933789253235, 0.5531160235404968, -0.7379401326179504, -0.035110458731651306, 0.06678395718336105, 1.2689330577850342, 0.20214466750621796, 0.269055038690567, -0.11719809472560883, -0.1953437626361847, 0.06475727260112762, -0.31478720903396606, -0.09365277737379074, -0.4168172776699066, -0.26429006457328796, -0.2572630047798157, -0.18828193843364716, 0.4373572766780853, 1.761500358581543, -0.09497659653425217, -0.13055171072483063, 0.7150636911392212, -0.8520095348358154, -0.3195718824863434, -0.5891555547714233, 1.0110914707183838, -0.34094569087028503, -0.8586474061012268, 0.4539009630680084, 0.6048668026924133, 0.9308480024337769, 0.024471323937177658, -0.2065492570400238, 0.5104953050613403, 0.8362678289413452, -0.16325773298740387, -0.18540449440479279, 0.5905130505561829, 1.142163634300232, 0.526595950126648, 0.5282408595085144, -0.5597389340400696, -0.5899118781089783, 1.2241559028625488, -1.2465291023254395, 0.16456936299800873, 0.5551307201385498, 0.16046679019927979, 1.144640564918518, -1.3001998662948608, -0.582168459892273, 0.018154585734009743, -0.3130759596824646, 0.3827529549598694, 0.08224832266569138, 0.006949706003069878, -0.12304548174142838, 0.04561937600374222, 0.19211645424365997, 0.2134496569633484, 0.8530445694923401, -0.06342235952615738, -0.1490153968334198, 0.09819970279932022, -0.4903586208820343, 0.06966176629066467, -0.9639682769775391, -0.33042269945144653, -0.07561258226633072, -0.6344621181488037, -0.04395350441336632, 0.12727153301239014, 0.037676844745874405, 1.5512995719909668, -0.5938795804977417, -1.1365447044372559, 0.5666555166244507, -0.564628005027771, 0.5138370990753174, -0.9699444770812988, -0.42544907331466675, -0.7948916554450989, -0.6725316643714905, -0.08589527755975723, 0.43098902702331543, -0.32728004455566406, -0.5180179476737976, -0.600726842880249, -0.30331653356552124, 0.22672641277313232, 0.8200679421424866, 1.2030143737792969, 0.835111141204834, 0.39116567373275757, 0.09179452061653137, 0.27783846855163574, -0.4931781589984894, 0.24293631315231323, 0.4764416217803955, 0.2622087895870209, -0.4961337149143219, -1.1458326578140259, -0.5113202929496765, 1.18280827999115, 1.2287123203277588, -0.4014681279659271, -0.1887228637933731, 1.6691093444824219, 0.7751889824867249, 0.10379091650247574, -0.45346421003341675, 0.7284900546073914, -0.2324654459953308, 1.1509943008422852, 0.4525456428527832, -1.2774577140808105, 0.07461864501237869, -0.34235143661499023, -1.6283059120178223, 0.7386499643325806, -0.24101227521896362, -1.5897349119186401, 0.7811915278434753, 1.191827654838562, 0.27701476216316223, 0.9926680326461792, -0.08507685363292694, 0.5848726034164429, -0.29833441972732544, -0.10621482878923416, -1.6668572425842285, 0.6040905714035034, 0.8798165321350098, 0.0530240498483181, -1.0582735538482666, 0.27748903632164, 0.031701941043138504, 0.17536866664886475, 0.25802895426750183, 0.41103366017341614, 0.8919334411621094, 0.590207040309906, 0.1988135427236557, -0.8721904754638672, 0.05039256066083908, -0.23454883694648743, -0.1414032131433487, -0.3903355002403259, 1.3096387386322021, -0.01956523396074772, 0.01661008596420288, -0.5102691650390625, 0.8241902589797974, -0.6831910610198975, -0.857166588306427, -0.9545758366584778, 0.8641310334205627, 0.328961580991745, -0.22071944177150726, -0.3465445637702942, -0.27189257740974426, -0.8044634461402893, -0.8461595773696899, -0.4104146957397461, 1.4449645280838013, -1.0915435552597046, -0.17548048496246338, -0.27624770998954773, -0.08664675801992416, -0.16295437514781952, 0.1349882036447525, 0.23167653381824493, -1.4915225505828857, -1.6846919059753418, -0.7787802219390869, -0.062378011643886566, 1.0081852674484253, -0.24325445294380188, 0.39776721596717834, 0.08469275385141373, -1.6745256185531616, 0.6995202302932739, -0.356402188539505, -1.0301870107650757, -0.8706955909729004, -1.157412052154541, 0.9111830592155457, -0.47339561581611633, 0.1464470773935318, -0.03963788226246834, 1.278438687324524, -0.7486578822135925, -1.3859282732009888, -0.328919380903244, -0.2501199543476105, 0.8258238434791565, 0.2431512475013733, -0.03780103102326393, 0.9358522891998291, 0.26846224069595337, -0.6430750489234924, -0.6341462731361389, 1.2235389947891235, -1.2693979740142822, 0.1700543612241745, 0.32577547430992126, 0.9154601097106934, 0.49748843908309937, 1.1176142692565918, 0.4643378257751465, 0.656546950340271, 0.1836654543876648, 0.8371703028678894, -0.14904393255710602, -0.7173354029655457, 0.14041808247566223, -0.08297888189554214, -1.025296688079834, -1.535361409187317, 0.04202118515968323, -0.6191550493240356, -0.7609112858772278, 0.433884859085083, 1.4794646501541138, -1.1831259727478027, 0.09883210062980652, -0.3648586869239807, 1.220941185951233, -0.15567784011363983, 0.31355971097946167, 0.4177384078502655, -0.8594526052474976, 0.12636201083660126, -0.48330429196357727, -0.09520186483860016, -0.605914294719696, -0.2349119633436203, 0.3851109445095062, 0.13445943593978882, -0.26985132694244385, 0.5214061141014099, 0.44491714239120483, -0.6456178426742554, -0.7859262228012085, 1.6447771787643433, 1.1511551141738892, -0.282990962266922, 0.6087368726730347, 0.3397684693336487, 0.128363236784935, -0.00847243145108223, -0.5762879848480225, -0.1246298998594284, -0.11867286264896393, 0.7279196977615356, -0.030968403443694115, 0.29910194873809814, -0.5829150676727295, -0.3021691143512726, 0.889836847782135, 0.3674508333206177, 0.500426173210144, 0.43174412846565247, -0.3138929009437561, 0.6468903422355652, 0.4327588379383087, -0.49508771300315857, 0.14028143882751465, 0.3828134536743164, 0.028311695903539658, -0.5410025715827942, 0.4478023052215576, 0.4069467782974243, 0.07741513848304749, 0.38956961035728455, 0.1981126219034195, -0.14796403050422668, -0.5718412399291992, -0.9711602330207825, -1.7823703289031982, -0.6260014176368713, -0.20800907909870148, -0.5196224451065063, 1.2239116430282593, -1.4022517204284668, -0.41744139790534973, 0.01574878580868244, -0.3407423794269562, -0.3777138292789459, -0.46742475032806396, -0.23189683258533478, -0.5353155732154846, 0.4239497184753418, 1.4805364608764648, -0.5795149803161621, 1.1127079725265503, 0.25917792320251465, -0.6308309435844421, -0.3516840934753418, -0.3760315179824829, -0.48240169882774353, 0.33629918098449707, 0.02014012821018696, -0.2589186131954193, 0.13024838268756866, -0.5695700645446777, -0.13784007728099823, -0.30703189969062805, 0.13912059366703033, 0.7890332937240601, -0.6273014545440674, -0.7266086339950562, -0.466407835483551, 0.49774083495140076, -0.6992236375808716, -1.0685832500457764, -0.7569212317466736, -0.3764069974422455, 0.08067285269498825, -0.37493181228637695, 0.34319832921028137, -0.35420653223991394, 0.3620503842830658, 1.0215548276901245, -0.15616276860237122, -0.36561599373817444, -0.6791626811027527, 0.16248242557048798, -0.10925780236721039, 0.08459896594285965, -0.07763998955488205, -0.42200714349746704, 0.30115100741386414, -1.3708528280258179, 0.7612196803092957, 0.22977933287620544, -0.39770352840423584, 0.2512359917163849, -0.3541571795940399, -0.685298502445221, -0.46878430247306824, -0.7418652176856995, 0.894841730594635, -0.088199183344841, 0.20270627737045288, 0.29561281204223633, -1.0126765966415405, 0.4903644919395447, 0.6554880738258362, -0.130862757563591, 1.2025290727615356, 1.2531191110610962, 0.94356769323349, -0.22061020135879517, -0.3600175082683563, -0.2191305011510849, 0.9626439213752747, -0.9570536613464355, -0.2715488076210022, -1.087486743927002, 0.6086085438728333, 0.00935332104563713], [0.11202623695135117, 1.132148265838623, -2.399587631225586, -0.48053792119026184, 0.20819959044456482, -0.0177528765052557, 1.3860243558883667, 0.6474320292472839, -0.007369489409029484, -0.5364418029785156, -0.8268380761146545, -0.5656125545501709, 0.9651023745536804, 0.5545603632926941, -0.015825310721993446, -0.23413847386837006, 0.6174245476722717, -0.020079437643289566, 0.7530302405357361, 0.8850399255752563, -0.6405256986618042, 1.5601234436035156, 0.5393140912055969, 0.020052941516041756, 0.37494444847106934, 0.5745375156402588, -0.4837314188480377, 0.3333435654640198, -1.2122819423675537, -1.0568821430206299, 0.8219599723815918, -1.178237795829773, 0.20452772080898285, 0.8223569393157959, -0.5090976357460022, -0.020262861624360085, 1.2269929647445679, 1.282385230064392, 0.7944536209106445, 1.231442928314209, 2.494378089904785, -0.9746019244194031, -0.11593521386384964, -0.9392584562301636, 0.8562461733818054, -0.8982654809951782, 0.41878411173820496, -1.1833720207214355, -0.7880436182022095, -0.62808758020401, 0.13148000836372375, 0.7597866654396057, 0.8080139756202698, 1.239983320236206, 0.7935656905174255, -0.19120152294635773, 0.7449623346328735, -0.2782118022441864, 0.5127381086349487, 0.37956422567367554, 0.28075850009918213, -0.32643839716911316, -0.4929613173007965, 0.8118429780006409, 0.6999512314796448, 0.3688822388648987, -0.6607190370559692, 0.3802796006202698, 0.22631298005580902, -0.1844063103199005, 0.9732499122619629, 0.5339332222938538, -0.15015102922916412, 0.7977975010871887, -0.8994932770729065, 0.15233565866947174, 0.17839273810386658, 0.5176824331283569, 1.1059645414352417, 0.7783722281455994, -0.8814364671707153, -0.09174743294715881, 1.0968515872955322, -0.11805250495672226, 1.0209770202636719, 0.5268601179122925, 0.48899179697036743, -0.5979142189025879, -0.3476911783218384, 1.6707793474197388, -0.5728294849395752, -0.1849481761455536, 0.5841287970542908, 0.9555666446685791, -0.11191421002149582, -0.21569129824638367, -0.4248236119747162, 0.13819655776023865, 0.1771906614303589, -1.2386205196380615, -1.1972695589065552, -0.6313077211380005, 0.5245435237884521, 0.9414962530136108, -0.06490753591060638, 1.2862818241119385, 0.428937703371048, -0.4660032093524933, -1.101103663444519, -0.1648566573858261, -0.344953715801239, 0.4280104339122772, -0.4687153697013855, -0.591801643371582, -0.7831341028213501, 1.1498130559921265, 0.1600998193025589, 0.025862235575914383, 0.8578181862831116, 0.3223569095134735, -0.9940718412399292, 0.39067941904067993, 0.3274199068546295, 0.32601308822631836, 0.8410234451293945, 0.8578765392303467, -0.27236127853393555, 0.10783079266548157, 0.45132583379745483, 0.015829358249902725, 0.014298065565526485, -0.37584733963012695, 0.4912749230861664, 0.7475030422210693, -0.9929928183555603, 0.6808822154998779, -0.025425024330615997, -0.778753936290741, -0.32426977157592773, 0.0716886892914772, 0.7577229142189026, -0.35151252150535583, 0.5629280209541321, -1.015014886856079, -0.09425457566976547, -1.0529887676239014, 0.22878168523311615, -0.31326794624328613, -0.369610071182251, -0.0003637464251369238, -0.812625527381897, 0.7492383122444153, 0.19379587471485138, 0.7292624711990356, 0.7897395491600037, -0.6825189590454102, -0.18752074241638184, 0.4114890992641449, -0.15466056764125824, 0.8819400668144226, 0.4864276647567749, -0.293805330991745, -0.9180176258087158, 0.4949910044670105, 0.5212442874908447, -0.7909238934516907, -0.2767966389656067, 0.47975850105285645, -0.2103523164987564, 0.4981288015842438, -0.7762411832809448, -0.8199299573898315, -0.7418444752693176, 0.5911216139793396, 0.252143532037735, -0.9297513961791992, 0.6897858381271362, -0.6878165006637573, -0.6798053979873657, -1.6992231607437134, 0.8988386988639832, -0.3387101888656616, -0.07990794628858566, -0.15672458708286285, 0.626855731010437, -0.2452041059732437, -0.3502965569496155, -0.5546723008155823, -0.5311865210533142, -0.43336549401283264, -0.8433401584625244, -0.23796233534812927, -1.1246010065078735, 0.43761134147644043, 0.03988020494580269, -0.8821530342102051, 0.4442601501941681, -1.002152919769287, -0.8205069303512573, -0.4025171101093292, 0.22583156824111938, -0.5804014801979065, -0.7924793362617493, 0.17511044442653656, -0.6340295076370239, -0.0764261931180954, -1.336153268814087, 0.8263950347900391, -0.7122492790222168, 0.7310804724693298, 0.433301717042923, -0.029163094237446785, -0.7889946103096008, 1.414323329925537, -0.6614903211593628, -1.087765097618103, 0.21961617469787598, 0.29963311553001404, -0.21348202228546143, 0.27842217683792114, 0.8845083713531494, 0.257610946893692, 0.25377190113067627, 0.23436453938484192, 0.6245884895324707, -0.7246227264404297, -0.663489580154419, -0.5845686197280884, -1.0715949535369873, 0.5822107195854187, -1.0401688814163208, -1.1915788650512695, 1.0023270845413208, -0.08857803791761398, -0.3599417507648468, 0.3916272521018982, 0.39864128828048706, 0.14777952432632446, 0.8538467884063721, -0.006021205335855484, 0.3091776669025421, -0.7015035152435303, 0.5085723400115967, -0.9248998165130615, -0.685636579990387, 0.07280970364809036, 0.2433438003063202, -0.01938810758292675, 1.139755129814148, 0.7893649339675903, -0.6333211064338684, 0.07770630717277527, 0.7086034417152405, -0.22489343583583832, -0.07150591164827347, -1.0436642169952393, -0.9303921461105347, 0.2242281138896942, -0.3052780330181122, 1.9194624423980713, 1.0300383567810059, -1.333124041557312, -0.09350275248289108, 0.10321546345949173, 0.07630432397127151, -0.514448344707489, -0.33283039927482605, -0.6041536331176758, -0.0729951485991478, -0.19923599064350128, -0.3593132495880127, 0.979097306728363, -0.12418302148580551, 1.0154896974563599, -1.1556479930877686, 0.4007611572742462, -0.3802027702331543, 0.27846264839172363, 0.03915927931666374, 0.9989159107208252, 0.9275009036064148, -1.118237018585205, -0.8675150275230408, -0.11928257346153259, 0.5916181802749634, -0.644649088382721, 0.46849381923675537, 0.7190628051757812, 0.5045991539955139, -0.6313884854316711, 0.2893853187561035, 1.043735384941101, 0.014988874085247517, 0.35584619641304016, -0.4694533348083496, 0.3337636888027191, 0.7499540448188782, -1.3710293769836426, -0.7627076506614685, 0.17245833575725555, 0.8319786787033081, 0.6019086241722107, 1.0280014276504517, 1.1717493534088135, 0.6001115441322327, 0.42403802275657654, -0.07463818043470383, -1.1367138624191284, -0.3193778991699219, -0.6247544884681702, -0.46679234504699707, -0.6784830689430237, 0.22453349828720093, -0.03023601695895195, -0.7133111357688904, 0.49302616715431213, -0.5477923154830933, 0.8152191042900085, 0.6480957269668579, -0.45894286036491394, -0.08154191076755524, -0.031385164707899094, 0.13802345097064972, -0.3821381628513336, 0.3893238604068756, 0.9118360877037048, -0.4912065863609314, 0.5317896008491516, 0.283418208360672, 0.6051428318023682, 1.2249891757965088, 0.289992094039917, -0.22651909291744232, -1.0622174739837646, -0.5111973881721497, -0.05848041549324989, 0.19094447791576385, 0.05690382048487663, 0.19822748005390167, -1.632946491241455, 0.18904848396778107, 0.7936278581619263, 0.7661550045013428, -0.3579716980457306, 0.8556581139564514, -0.6997800469398499, -0.7281539440155029, -0.5249986052513123, -0.1358110010623932, 0.4600561857223511, -0.4683343470096588, -0.5468737483024597, -0.17249463498592377, -0.33673369884490967, 0.07457884401082993, 0.1637117713689804, 0.16941168904304504, 0.8776508569717407, -0.46124136447906494, -0.2968309223651886, 1.738667607307434, -0.08469662815332413, -0.08742848038673401, -1.4278528690338135, 0.9264481663703918, 0.26934903860092163, 0.732688844203949, 0.5561689734458923, 0.530795156955719, 0.41172391176223755, -0.34736761450767517, -0.03463298827409744, -0.014371257275342941, 1.2191520929336548, 0.193726047873497, -0.327829509973526, -0.6930184960365295, 0.2755751609802246, -0.43471968173980713, -0.5717342495918274, -0.6131902933120728, 0.29763662815093994, -0.5358553528785706, -0.16001345217227936, 0.15019038319587708, -0.19317150115966797, -0.4731995165348053, 0.02562675252556801, -0.2564433813095093, 0.478572279214859, 0.07720458507537842, -0.35887420177459717, -0.7205114364624023, -0.4749531149864197, -0.002157021313905716, -1.438946008682251, 0.2768809497356415, 0.2843784689903259, -0.05463054031133652, 0.5873602628707886, -0.8185912370681763, 0.14493806660175323, 0.5854743123054504, 0.5959216952323914, 0.3923572599887848, -0.3646039068698883, 0.31424954533576965, -0.08995267003774643, -0.22328612208366394, 0.24554131925106049, -0.1336144506931305, 1.930308222770691, 0.3125952482223511, 0.2675812840461731, 0.3381047546863556, 0.5954362750053406, 0.18569929897785187, -1.0619868040084839, -0.25093239545822144, 0.713863730430603, -0.3747234642505646, 0.18862071633338928, -0.7685800790786743, -0.3070678114891052, 1.5358591079711914, 0.4818285405635834, 0.36220744252204895, 1.016740083694458, -0.9447190165519714, -0.11798732727766037, -0.03862372785806656, 0.600409209728241, 0.8693141341209412, -1.0644220113754272, 0.47422677278518677, 0.004512373823672533, -0.8802805542945862, 0.4830544590950012, 0.5506243705749512, 0.38633978366851807, -0.47621938586235046, 0.0651715025305748, 0.9358088374137878, -0.20155201852321625, 0.8868131637573242, 0.6644569635391235, 0.5934548377990723, -0.8122308850288391, -0.10665930807590485, 0.6650477647781372, -0.07827677577733994, 0.9692967534065247, 0.5755065679550171, 0.3336760997772217, 1.4836937189102173, -0.6091750264167786, -0.162187397480011, 0.5273537635803223, 0.391940712928772, 0.993500828742981, 0.8157985210418701, 0.2829563021659851, -0.595920741558075, -0.021796002984046936, 0.6184610724449158, -1.1441056728363037, 0.7097493410110474, 0.5835834741592407, -0.3109108507633209, 0.04789157211780548, -0.13614162802696228, -0.4951946437358856, -0.2744276225566864, -0.9142912030220032, -0.7172549962997437, -0.8874263167381287, 0.20138044655323029, 1.051639437675476, -0.533223032951355, 0.429387629032135, -0.2690499722957611, -0.7348334193229675, 0.5163024067878723, -1.1738255023956299, -0.1528974026441574, -0.24976278841495514, -0.6080332398414612, -0.5328059792518616, -1.0764644145965576, -0.46142295002937317, 0.24839630722999573, -0.7077202200889587, -0.6887988448143005, 0.31574586033821106, -1.3648531436920166, 0.042662546038627625, 0.4132463335990906, 1.38588547706604, 0.3689296543598175, -0.24713139235973358, 0.17068010568618774, 0.26479941606521606, -0.7492250204086304, -0.03713947907090187, 1.063245415687561, -0.6368709802627563, 0.2728956639766693, -1.4457862377166748, -0.7301730513572693, 1.3517067432403564, 0.531787097454071, -0.5389312505722046, 0.018356522545218468, 0.15252354741096497, 1.1167608499526978, -0.21160762012004852, -0.5329179763793945, 0.11039993911981583, -0.19871382415294647, 0.9749115109443665, 0.14417923986911774, -0.6048415303230286, -0.7897987961769104, -0.32349684834480286, -2.0416204929351807, 0.9321791529655457, 0.2816484868526459, -1.8227463960647583, 0.4625157415866852, 0.36057281494140625, -0.2950321435928345, 0.5226060152053833, -0.5471645593643188, -0.5338478684425354, 0.029834086075425148, 0.012052265927195549, -1.3337372541427612, 0.11781950294971466, -0.3032073676586151, -0.010265611112117767, -0.14653290808200836, 0.0434054434299469, -0.005329053848981857, 1.015263319015503, -0.3285611867904663, 0.740810215473175, 0.425674170255661, 0.584251344203949, 0.10997641086578369, -0.06376004219055176, 0.15642675757408142, -1.1777491569519043, -0.303120493888855, -0.6896400451660156, 1.1849440336227417, -0.052071064710617065, -0.4988279640674591, -0.08056614547967911, -0.7151316404342651, -0.18819774687290192, -0.3906434178352356, -0.7034308910369873, 0.19646768271923065, 0.5768109560012817, 0.17500901222229004, -0.08459960669279099, -0.20936711132526398, 0.39077088236808777, -0.6385108232498169, -0.4380766451358795, 0.8537279367446899, -1.7742462158203125, 0.06191851571202278, -0.8839051723480225, -0.3474307954311371, -0.3377349078655243, -0.16046717762947083, 0.32839417457580566, -1.2529321908950806, -0.169994056224823, -1.3609641790390015, -0.18206000328063965, 1.2606076002120972, -0.5214066505432129, 0.1809668391942978, 0.7205485105514526, -1.4373302459716797, 0.5266152620315552, 0.012121081352233887, -1.4875547885894775, 0.10056690871715546, -1.139129638671875, 1.0699336528778076, -0.9850590229034424, 0.12238537520170212, -0.2625059485435486, 0.7626810669898987, -1.0801373720169067, -1.4182446002960205, -0.07122316211462021, -0.3536625802516937, 0.7572792768478394, 0.904663622379303, -0.24659085273742676, 1.3144572973251343, 0.8454247713088989, -0.5662325024604797, -0.3614242672920227, 0.36030805110931396, -0.7477600574493408, 0.07562211900949478, 0.777156412601471, 0.056284282356500626, 0.2601274847984314, 0.7150648832321167, -0.41610339283943176, 0.6901172399520874, 0.5435307621955872, 0.6778886914253235, -0.3919351398944855, -0.4952029287815094, -0.4980001747608185, 0.017695525661110878, -0.5670216679573059, -0.08856752514839172, -0.08939731866121292, -0.9865357279777527, -0.6899642944335938, 0.7652719616889954, 0.883561372756958, -0.5879665017127991, -0.47973042726516724, -0.7369384169578552, 0.566921591758728, -1.0495706796646118, 0.14397147297859192, -0.032077085226774216, -0.5174282789230347, 0.32330358028411865, -0.5303929448127747, -0.3116666078567505, -0.3159727454185486, -0.4160362780094147, 0.00831202045083046, 0.2661437392234802, -0.29699695110321045, 0.22158381342887878, 0.6552371978759766, -0.17079196870326996, -0.16213883459568024, 1.8979970216751099, 1.2126123905181885, -0.4868757426738739, 0.5301858186721802, -0.3654150068759918, -0.29828202724456787, 0.5667750239372253, -0.604620099067688, -0.08564551919698715, -0.6777462959289551, 0.314638614654541, 0.054160069674253464, -0.28708165884017944, -0.9697577357292175, -0.5312318801879883, -0.28394296765327454, 0.5858138203620911, 0.045278944075107574, -0.0024161338806152344, -0.33222275972366333, 1.3150973320007324, 0.2256777435541153, -0.39734286069869995, 0.22183476388454437, 0.08190680295228958, 0.3407299816608429, 0.18518640100955963, 0.7561233043670654, 0.10959012806415558, -0.07796254009008408, 0.48555704951286316, -0.14250071346759796, 0.2850480079650879, 0.37173765897750854, -0.7648383975028992, -1.614190697669983, -0.327671080827713, -0.670386791229248, -0.5472548604011536, 0.6783369183540344, -0.23710325360298157, 0.0269966721534729, 0.4607141315937042, 0.022864466533064842, -0.13570046424865723, -0.8023859262466431, -0.15552248060703278, -0.06889605522155762, 0.12937462329864502, 0.2784636616706848, -0.43978792428970337, 1.319138526916504, 0.31164154410362244, -0.004534682258963585, 0.044519610702991486, -0.6594595313072205, -0.45421546697616577, 0.22454895079135895, 0.029926929622888565, -0.3287758231163025, -0.004659026861190796, -0.03544017672538757, -0.5311082005500793, 0.4458995759487152, -0.16232579946517944, 0.3619050085544586, 0.003271050751209259, -0.9742931127548218, 0.02130657620728016, 1.1406059265136719, -0.11621969193220139, -0.7865350842475891, -0.489853173494339, -0.45626962184906006, 0.42740610241889954, 0.1927376091480255, 0.3568439781665802, -1.1531322002410889, 1.4675525426864624, 0.6299083232879639, -0.07269120216369629, 0.20514033734798431, -0.2923023998737335, 0.31420156359672546, -0.8303155303001404, 0.980499267578125, 0.05822622403502464, -0.11315440386533737, 0.15938131511211395, -0.5389386415481567, 0.018826112151145935, -0.2807879149913788, 0.3766089379787445, 0.899186372756958, -0.8001682162284851, -0.680718719959259, -0.3861953020095825, 0.1238226518034935, 0.9947250485420227, 0.04073430970311165, -0.07118771225214005, -0.02373863011598587, -1.2603973150253296, -0.16957531869411469, 0.025299392640590668, 0.04983771964907646, -0.050788916647434235, 1.0477466583251953, 2.1341419219970703, 0.41511258482933044, -0.27416735887527466, -0.16454418003559113, 0.7293832898139954, -0.6205145120620728, -0.11978030949831009, -0.7482923865318298, -0.28738701343536377, -0.6378082633018494], [0.1268572211265564, 1.8703793287277222, -2.107581853866577, 0.060935039073228836, -0.41868293285369873, 0.3765559792518616, 0.9806077480316162, 0.20548385381698608, -0.27270427346229553, -0.20133784413337708, -0.6034663915634155, 0.37304365634918213, 0.6658509969711304, 0.3585895299911499, 0.11082735657691956, 0.41304516792297363, -0.2174305021762848, 0.47289717197418213, 2.067333221435547, 0.8635741472244263, -0.27965062856674194, -1.0766334533691406, -0.4489867091178894, -0.045902155339717865, -0.6695761680603027, 0.7777286767959595, -0.46190452575683594, -0.11620746552944183, -1.2331717014312744, -1.4034063816070557, 0.7536184191703796, -0.4951134920120239, 0.018669236451387405, 0.11232320964336395, -1.7520263195037842, -0.8492259979248047, 2.074281692504883, 0.7776957154273987, 0.07920762151479721, 0.40651339292526245, 2.1632556915283203, 0.04928085207939148, -0.3586863577365875, -0.9805063009262085, 0.7873028516769409, 0.4232759475708008, 0.4749695658683777, -1.1186109781265259, 0.33504676818847656, -0.28357309103012085, 0.5867950320243835, 0.6177499294281006, 0.43555784225463867, 1.0626593828201294, 0.44595178961753845, -0.8393982648849487, -0.1703062355518341, 1.2384333610534668, -0.05714939534664154, 0.7580394744873047, 0.5393602848052979, 0.12799905240535736, 0.6261177062988281, 0.7366429567337036, 1.2606627941131592, 0.030875839293003082, 0.6103433966636658, 0.46662697196006775, -0.08497180044651031, -0.4633510708808899, 0.4917672574520111, -0.20213791728019714, -0.7068850994110107, -0.08023244142532349, -0.628792405128479, 0.6678952574729919, -0.2643741965293884, 0.8362327814102173, -0.37775370478630066, 0.6860806941986084, -0.6536315083503723, -0.20975230634212494, 0.8392248749732971, 0.07360299676656723, 0.37382563948631287, 0.4547048807144165, 0.37633436918258667, -0.580529510974884, 0.23756438493728638, 0.9664564728736877, 0.5029057860374451, 0.4862525463104248, 0.6043481230735779, -0.24803116917610168, -0.19076594710350037, -0.6300498247146606, -0.3153696060180664, -1.3822600841522217, -0.4307882785797119, -1.1438052654266357, -0.18073050677776337, -1.203027367591858, 0.11645984649658203, 0.794753909111023, 0.48543262481689453, 1.8156914710998535, -0.13448160886764526, -0.26104363799095154, -0.8396908044815063, 0.13149844110012054, -0.23636066913604736, 0.4349726438522339, 0.1315433531999588, -1.5362720489501953, 0.0392824150621891, 0.7104300260543823, 1.2995023727416992, -0.2219657301902771, 0.3106755018234253, 0.6911865472793579, -0.9297671318054199, 0.06658579409122467, -0.09060791879892349, 0.09784066677093506, 0.25503265857696533, 0.3615487813949585, -0.6762682199478149, -0.4027762711048126, -0.03686603158712387, 0.3099823594093323, 0.3622822165489197, -0.5444098114967346, -0.042353201657533646, 0.6854519844055176, -1.191306710243225, 1.1480965614318848, 0.1303318589925766, -0.6064194440841675, -0.11661718040704727, -0.47623103857040405, 0.48649561405181885, -0.4899638593196869, -0.9670252799987793, -0.6787395477294922, -0.2925594747066498, -0.7954709529876709, 0.47710418701171875, 0.5547515153884888, -0.9463990926742554, 0.19852226972579956, -0.9738671183586121, 0.5889869928359985, 0.2278544008731842, 0.7880642414093018, -0.039670541882514954, -0.22468741238117218, 1.1573623418807983, -0.01835968717932701, 0.08186303824186325, 0.890404224395752, 0.6497235894203186, 0.5142033696174622, -0.5055941343307495, 0.9633430242538452, 0.022753126919269562, -0.8617942333221436, 0.7688350677490234, 0.4050575792789459, -0.0631709173321724, 0.09446577727794647, -0.37501031160354614, -0.2606505751609802, -0.9574567675590515, 0.7902781963348389, 0.5084953904151917, -0.8448139429092407, 0.9254698753356934, -0.44920748472213745, -0.8506767749786377, -2.181602954864502, 0.15658676624298096, -0.014081870205700397, 0.5587061643600464, 0.6498340368270874, 0.9323612451553345, -0.6775221824645996, -0.02786404639482498, -0.2250491976737976, -0.32396718859672546, -1.0291008949279785, -1.118318796157837, 0.3320038318634033, -0.8118457794189453, 0.18191780149936676, -0.1633160561323166, -0.610985517501831, 0.9661996364593506, -0.21789517998695374, -0.4375372529029846, -0.0953022688627243, -0.4677840769290924, -0.6800801753997803, -1.1972566843032837, -0.12539581954479218, -0.34056803584098816, 0.6192260384559631, -1.2440769672393799, 0.31603288650512695, -0.7164427042007446, 0.38788339495658875, 0.9058900475502014, -0.3209199011325836, -1.1099073886871338, 0.7374986410140991, 0.21938253939151764, -1.5731010437011719, 0.40500086545944214, -0.005716340616345406, 0.43472787737846375, 0.1405288428068161, 0.24715980887413025, 0.9352480173110962, 0.8284248113632202, 0.36868637800216675, 1.0906699895858765, -0.3340713381767273, -1.0373268127441406, -0.9194537401199341, -0.6558816432952881, 0.2891736328601837, -0.8724023103713989, -1.0553209781646729, 0.4373946189880371, 0.7214877605438232, -0.36204907298088074, 1.2265580892562866, 0.3218018114566803, -0.2272781878709793, 0.4280833601951599, 0.6915909051895142, 0.22042883932590485, 1.1282111406326294, -1.131169080734253, -0.9504649639129639, -0.4027712941169739, -0.35798296332359314, 0.1262570470571518, -0.7242840528488159, 0.2494666576385498, 1.330280065536499, 1.5921499729156494, -0.37104088068008423, 0.4772568643093109, -0.438540518283844, 0.0881372019648552, -0.6649086475372314, 0.3074212074279785, -0.038401808589696884, -0.732650876045227, 0.9602015018463135, 0.7351862192153931, -1.2134822607040405, 0.5937576293945312, 0.04968739673495293, 0.46563616394996643, -0.43946748971939087, 0.02123287320137024, -0.45188310742378235, 0.6136930584907532, 0.2692343592643738, 0.009937804192304611, -0.05432150512933731, -0.5316502451896667, 0.5406227111816406, -0.13912582397460938, -0.18610486388206482, -0.3510957360267639, 0.2880439758300781, -0.04530344158411026, 0.2679968774318695, 0.26890116930007935, -1.4446051120758057, -1.2345305681228638, -0.2635790705680847, 0.4964194893836975, 0.36534711718559265, 0.680908739566803, 0.7329403758049011, 1.114140510559082, 0.07534565031528473, -0.1479901820421219, 0.1482832282781601, -0.6097645163536072, -0.25180336833000183, -0.2736859917640686, -0.6469003558158875, 0.4225422143936157, -0.27857017517089844, -0.3492293357849121, -0.040281299501657486, 0.4428470730781555, 0.5845521688461304, 1.4722740650177002, 1.313335657119751, -0.9357032775878906, -0.041604261845350266, -0.3274894058704376, -0.15191872417926788, -1.1390190124511719, -1.0962607860565186, 0.08787790685892105, -0.9236769676208496, -0.1614813357591629, -0.2647852301597595, -0.2401018738746643, 0.4843235909938812, 0.1268632411956787, 0.4106943905353546, 1.4331823587417603, -0.18427716195583344, -0.7748286128044128, -0.4443719983100891, -0.215695321559906, -0.9917992353439331, 0.6166297793388367, 0.6216299533843994, -0.9752886891365051, -0.7035373449325562, -0.10033786296844482, 0.31904280185699463, 0.5947057008743286, -0.23019173741340637, 0.5788267850875854, -0.7273997664451599, -0.8812326788902283, 0.5323869585990906, 1.0026400089263916, 0.7207235097885132, -0.15935875475406647, -0.8926715850830078, 0.1401222050189972, 0.6330030560493469, 0.38486531376838684, -0.7528924345970154, 0.36969882249832153, -0.08850501477718353, -0.38476699590682983, -0.2811230421066284, 0.13846059143543243, 0.8295807838439941, -0.6336060762405396, -0.5148838758468628, 0.21516817808151245, 0.14121469855308533, -1.3629565238952637, 0.6406465172767639, 0.07401677221059799, 1.1285474300384521, 0.2929767966270447, -0.2543456554412842, 1.1099154949188232, -0.34700632095336914, 0.023181870579719543, -1.9185110330581665, 0.6556581854820251, 0.9078885912895203, 1.2897634506225586, 0.8482829928398132, -0.14571380615234375, 0.020222142338752747, -0.4032997488975525, 0.5944397449493408, -0.12900111079216003, 0.6122068762779236, -0.25365880131721497, -0.28651875257492065, 0.019868992269039154, -0.5566695928573608, -0.0896911770105362, -0.5188730359077454, -0.3236842453479767, 0.6795058250427246, -0.16286993026733398, -0.058588266372680664, 0.47403448820114136, -0.1174878254532814, -0.8345886468887329, -0.8219759464263916, -0.13531261682510376, 0.24340218305587769, 0.28850695490837097, 0.322639524936676, -0.4286521077156067, -0.3246096968650818, 0.27052080631256104, -0.6186509132385254, 0.00044542551040649414, -0.5028886795043945, -0.20906749367713928, 1.02485191822052, -1.1040198802947998, -0.4996345043182373, -0.10115428268909454, -0.031842008233070374, 0.943913459777832, 0.2138231098651886, -0.22590941190719604, -0.056791964918375015, -0.32434338331222534, 0.1548653244972229, -0.24828481674194336, 1.1809799671173096, 0.781754732131958, -0.30736851692199707, -0.08409322053194046, 0.293517142534256, 0.5130143165588379, -0.7591971158981323, -0.47532111406326294, 0.3777257800102234, -1.302420735359192, -0.08172982931137085, -0.23371785879135132, -0.003377724438905716, 1.1184496879577637, -0.1682758927345276, 0.5888153910636902, 0.6713480949401855, -0.747346043586731, -0.11513392627239227, -0.045360442250967026, 0.7053586840629578, -0.9044190645217896, -0.2569226622581482, 0.3621536195278168, -0.006811417639255524, -0.3797016739845276, 0.2631751298904419, 0.3294251561164856, 0.47162753343582153, 0.10843956470489502, -0.49277710914611816, 0.5058729648590088, 0.4945492446422577, 0.445216566324234, 1.3824100494384766, 0.5188212394714355, -0.26112306118011475, -0.8682852983474731, 1.4130651950836182, -0.4411119520664215, 0.38483381271362305, 0.13507738709449768, 0.5002065300941467, 1.147169828414917, -1.2572736740112305, -0.6835076212882996, 0.6995674967765808, 0.32897546887397766, -0.19737647473812103, -0.26097628474235535, 0.3402576446533203, -1.355210781097412, -0.36825376749038696, 0.1632942408323288, 0.02704242244362831, 0.26756173372268677, -0.05008430778980255, -0.06925045698881149, 0.244961217045784, -0.0199180506169796, 0.050102557986974716, -0.7032996416091919, -0.129257470369339, 0.30187052488327026, -0.3930984139442444, 0.38196083903312683, 0.25182899832725525, 0.4219430387020111, 0.059676431119441986, -0.47364357113838196, -0.5938528180122375, 0.2182755023241043, -0.7949929237365723, 0.35182592272758484, -0.533760130405426, -0.5126999020576477, -0.47472846508026123, -0.7718427181243896, -0.9551326036453247, -0.269656240940094, -0.19635191559791565, 0.39558500051498413, 0.45759257674217224, -1.3512417078018188, 0.3896612524986267, 0.24302077293395996, 1.272841215133667, 0.8142163753509521, 0.21939370036125183, -0.3191685378551483, -0.012207895517349243, -0.4939430356025696, 0.4020702838897705, 0.23986712098121643, -0.13169628381729126, -0.23328953981399536, -1.209306240081787, -0.49021559953689575, 1.3497518301010132, 0.11272484064102173, 0.33874520659446716, 0.294067919254303, 0.3581587076187134, 1.8427456617355347, -0.42492127418518066, -0.5184842944145203, 0.8038516044616699, 0.12208405137062073, 0.706234335899353, 0.3057709336280823, -0.9033284187316895, -0.6216694116592407, -0.315015971660614, -1.218794345855713, 1.6506285667419434, 0.3389533758163452, -1.0985820293426514, 0.06423668563365936, 0.8097115755081177, 0.3929014205932617, 0.9568884372711182, -1.0243326425552368, -0.1550079584121704, 0.896294891834259, -0.37392133474349976, -1.050734043121338, 0.3324326276779175, 0.7619069814682007, 1.2318720817565918, -0.37670549750328064, 0.32809245586395264, -0.7321100234985352, 0.14679598808288574, -0.13120508193969727, -0.08739975839853287, 0.4796026349067688, 0.38932567834854126, 0.4315693974494934, -0.5784988403320312, 0.4607698917388916, -0.6922060251235962, 0.566338300704956, -0.12250245362520218, 1.6046500205993652, 0.35617825388908386, -0.7625311613082886, 0.3934793174266815, -0.6521955728530884, 0.01693597622215748, -0.48403075337409973, -0.5954133868217468, 0.5069305300712585, 1.1845966577529907, -0.19804245233535767, 0.5147759914398193, -0.05135681480169296, -0.5703723430633545, -0.606644868850708, -0.15968731045722961, 0.5300223231315613, -0.47330164909362793, 0.36953848600387573, -0.43260639905929565, 0.3045503795146942, -0.07205478847026825, -0.24550679326057434, 0.056733548641204834, -0.6112679243087769, -1.3903748989105225, -0.8812612891197205, -0.30682265758514404, 0.35656923055648804, -0.7428919672966003, 0.2118774652481079, 0.2715044319629669, -1.5038628578186035, 0.7442887425422668, -0.125564843416214, -2.048508644104004, -0.08445697277784348, -0.4884021282196045, 0.7394955158233643, -0.5784074068069458, 0.015741854906082153, 0.23505863547325134, 0.6837598085403442, -0.9390870332717896, -1.1487979888916016, -0.8828940391540527, -0.12013611197471619, 0.7218202352523804, 0.6576661467552185, -1.1477185487747192, 1.0702921152114868, -0.5129880309104919, -0.2833121716976166, -0.2714589238166809, -0.20735988020896912, -0.8740938901901245, -0.29893261194229126, 0.2927825450897217, -0.1882076859474182, 0.20786133408546448, 1.147108554840088, 0.8813896775245667, 0.6144607067108154, 0.11524355411529541, -0.17357036471366882, -1.3821241855621338, -0.3217769265174866, -0.21772021055221558, -0.5295605659484863, -0.9897778630256653, -0.48421406745910645, -0.07294531166553497, -0.5111439824104309, -0.7760598063468933, 1.0622022151947021, 1.4824490547180176, -1.176565408706665, 0.5028356909751892, 0.19790086150169373, 0.10339358448982239, -1.279529333114624, 0.4365151524543762, -0.4443846344947815, 0.11747489869594574, 0.7941370606422424, 0.20057925581932068, 0.4833531975746155, -0.9610621929168701, -0.2902086079120636, 0.2900692820549011, 0.2194218784570694, -0.39261049032211304, 0.3146599531173706, 0.522417426109314, 0.30336111783981323, -0.32228410243988037, 1.4205050468444824, 0.261442631483078, -0.3780457377433777, 0.3062293529510498, 0.1761489361524582, -0.4735541045665741, -0.3851308226585388, 0.07934801280498505, 0.431438148021698, -0.9555554389953613, 0.33530503511428833, 0.08067195117473602, 0.26968082785606384, -0.09751993417739868, 0.3026092052459717, -0.010314365848898888, 0.17203909158706665, 1.2942619323730469, 0.3893486261367798, -0.9084221124649048, 1.0669960975646973, 0.5525877475738525, -0.09251611679792404, 0.7973175644874573, -0.5338740348815918, 0.1896388828754425, 0.21478796005249023, 0.2979080080986023, 0.10445288568735123, -0.27829551696777344, 1.2171859741210938, 0.8033331036567688, -0.011230206117033958, -0.26793697476387024, -0.6673777103424072, -1.1594722270965576, -0.6728084087371826, 0.016470829024910927, 0.4258861839771271, 0.5108649134635925, -0.9421457648277283, -0.6746628284454346, -0.17963051795959473, 0.6245854496955872, -0.11707388609647751, -0.14690828323364258, 0.21276675164699554, -0.2083767056465149, -0.6280936002731323, 0.690666675567627, -0.6960327625274658, 1.0498313903808594, 0.5119492411613464, -0.05785498023033142, -1.0579771995544434, 0.10860052704811096, 0.5251073241233826, -0.1876171976327896, 0.39480412006378174, 0.1422964334487915, 0.2864511013031006, -0.9043405055999756, -0.06848487257957458, -0.09445424377918243, 0.2368396520614624, 0.5110592842102051, 0.23466148972511292, -1.558429479598999, 0.2672450840473175, 0.6146239042282104, -0.45883238315582275, -0.2801324725151062, -0.15653842687606812, -0.7931063175201416, 0.25812339782714844, 0.06840342283248901, 0.3078007996082306, -0.46100687980651855, 0.6263431310653687, 0.4133164882659912, 0.012179560959339142, -0.9717876315116882, -1.0678644180297852, 0.7754318714141846, -0.21498961746692657, 0.7037031650543213, -0.5033034682273865, 0.17163491249084473, 0.4088422656059265, -0.6405088901519775, -0.20665544271469116, -0.15364959836006165, -0.5110126733779907, -0.08846345543861389, -1.0743868350982666, -0.4014459550380707, -1.0383713245391846, -0.17848363518714905, 0.4680502116680145, 0.24731367826461792, -0.011729083955287933, 0.05843408405780792, -1.078185796737671, -0.32991623878479004, 0.7536776065826416, -0.04176284745335579, 0.14603032171726227, 1.4747785329818726, 1.7189509868621826, 0.307860404253006, 0.1514328420162201, -0.2846885621547699, 0.16990019381046295, -0.8526804447174072, 0.3162255585193634, -0.8575280904769897, -0.26155519485473633, -0.5733687877655029], [-0.5938746333122253, 1.7009835243225098, -2.1853394508361816, -0.24158231914043427, 0.5067654252052307, 0.14089654386043549, 1.293782114982605, -0.32601726055145264, -0.16637557744979858, -1.0364463329315186, -0.45878636837005615, 0.32243210077285767, 0.7095611095428467, 1.0833818912506104, 0.35414740443229675, 0.6736005544662476, 0.3401857912540436, -0.163908451795578, 0.6942148208618164, 1.2341996431350708, 0.34798628091812134, -1.2701044082641602, -0.2581457495689392, -0.19897721707820892, 0.08568504452705383, -0.3897830545902252, -0.43797263503074646, -0.0398775078356266, -0.6140038967132568, -0.6744182705879211, 0.9237887263298035, -0.21794600784778595, 0.37364494800567627, -0.27809271216392517, -1.0684117078781128, -1.1465619802474976, 0.44964325428009033, -0.359950989484787, -1.0826976299285889, 0.17031486332416534, 2.0379745960235596, -0.04039768502116203, -0.12718108296394348, -1.2595739364624023, 0.5434054732322693, -0.3113824129104614, 0.2765251100063324, -0.6045423746109009, -0.2256610095500946, -1.06777822971344, 0.44954603910446167, -0.4453229010105133, 0.5122482180595398, 0.9581810235977173, 0.42420145869255066, -0.44176238775253296, -0.02938961237668991, 0.9238321185112, -0.325227826833725, 0.4083385467529297, 0.9412536025047302, 0.42820775508880615, 0.3231278955936432, 1.1810681819915771, 0.4156431555747986, -0.4651270806789398, 0.5691156983375549, 0.21025224030017853, 0.5638522505760193, 0.44433310627937317, 0.6828102469444275, 0.35823044180870056, -0.3744560480117798, -0.22768400609493256, -0.4859974980354309, -0.03999566286802292, -0.46018746495246887, 0.39661306142807007, -0.21894079446792603, 0.3174584209918976, -0.30989348888397217, 0.800713300704956, -0.007087950594723225, -0.5348353385925293, 0.4511767327785492, -0.11991530656814575, 0.07794231921434402, -0.683448076248169, -0.704188883304596, 1.208247423171997, -0.09640452265739441, 0.012775547802448273, 0.905886709690094, -0.6379119157791138, -0.45091888308525085, -1.102596402168274, -0.211052805185318, -0.5088613033294678, 0.11642108857631683, -1.2027490139007568, -0.5522611737251282, -0.7790234088897705, 0.15355806052684784, 0.489681601524353, 0.37868115305900574, 1.6420848369598389, 0.7702323794364929, -0.285724937915802, -0.7152062654495239, 0.14446014165878296, 0.504176139831543, -0.2017875462770462, -0.9224060773849487, -0.4059564769268036, -0.1899007260799408, 0.678275465965271, 1.2619695663452148, -0.11649569123983383, 0.7539871335029602, 0.29525208473205566, -0.33032482862472534, -0.9598996639251709, -0.6936723589897156, 0.08280809223651886, 1.515468955039978, -0.19920532405376434, -0.7582783102989197, -0.05124397948384285, -0.43131163716316223, -0.25302380323410034, 0.47963255643844604, -0.10217534750699997, -0.1661132276058197, 0.6543874740600586, -0.40767714381217957, 1.1860392093658447, 0.06862073391675949, -0.9081641435623169, 0.1342039555311203, 0.40261906385421753, -0.16472728550434113, 0.3214060664176941, -0.6671748161315918, -0.7525513172149658, 1.089616060256958, -1.0375888347625732, 0.02152620255947113, -0.23728182911872864, -0.43231886625289917, 0.6724902391433716, -1.129516363143921, 0.03265134617686272, 0.011244475841522217, 1.9053630828857422, 0.21733352541923523, -0.10482367128133774, 0.5458182692527771, 0.13919179141521454, 0.1621864140033722, 0.4780479073524475, 1.5669931173324585, -0.38371598720550537, -0.9427812099456787, 1.3563790321350098, 0.15755538642406464, -0.7102497220039368, 0.6983957886695862, 0.2669369876384735, -0.6885591745376587, 0.44172611832618713, -0.15959309041500092, -0.21839703619480133, -1.299238681793213, 0.7711195945739746, -0.34471073746681213, 0.18363869190216064, 1.4871840476989746, 0.07048754394054413, -0.8092162013053894, -0.5451430082321167, 0.6487491726875305, -0.6564377546310425, 0.018007857725024223, 0.3495458662509918, 0.6621027588844299, -0.4524688422679901, -0.45440220832824707, -0.7745545506477356, 0.011794345453381538, -1.0707917213439941, -0.8445507884025574, -0.3764677345752716, -1.5039575099945068, 0.7500734925270081, -0.9356483221054077, -0.7116559743881226, 0.7180752158164978, -0.2309141606092453, -0.10266361385583878, -0.2948549687862396, -0.21051044762134552, -0.13047584891319275, -1.5256417989730835, 0.27612704038619995, -0.7836705446243286, 0.6570632457733154, -0.2483072429895401, 0.904909074306488, -0.2188732773065567, 0.47737571597099304, 1.0861883163452148, -0.6246727705001831, -1.1833959817886353, 0.4255085289478302, 0.09054487198591232, -1.1088494062423706, 0.2502420246601105, 0.11889612674713135, -0.0811186209321022, 0.42205289006233215, 0.3395840525627136, -0.057857125997543335, 0.37702545523643494, -0.013715543784201145, 0.6204662322998047, 0.08686292171478271, -0.7344498634338379, -0.25345900654792786, -0.4089919924736023, 0.27464184165000916, -0.9974384903907776, -0.7786960005760193, -0.03994038328528404, 0.041170381009578705, -1.2669914960861206, 1.254937767982483, -0.5147725939750671, 0.15021036565303802, 0.9181257486343384, 1.220845341682434, 0.6717270016670227, 0.1425231248140335, -0.13938374817371368, 0.5955314636230469, -0.7146826386451721, -0.40042340755462646, 0.9803747534751892, -0.1663827896118164, -0.10987680405378342, 1.496689796447754, 0.5672829151153564, -0.13845226168632507, 0.7892618775367737, -0.7519540786743164, 0.3518829047679901, -0.5787582993507385, 0.25492843985557556, -0.2585434317588806, -1.05055570602417, 0.8550530076026917, 0.13708147406578064, -0.6340544819831848, 0.21205675601959229, -0.13466113805770874, 0.5137747526168823, -0.37320876121520996, -0.1589004099369049, -0.2587202787399292, 0.21178090572357178, -0.4252718687057495, -0.4081408977508545, 0.14020445942878723, -0.7035978436470032, 1.0282843112945557, -0.028283942490816116, -0.2700507938861847, 0.2309429794549942, 1.5704859495162964, 0.4332694113254547, 1.2741895914077759, -0.0922318547964096, -1.5793733596801758, -0.7865507006645203, -0.06921867281198502, 0.7289533615112305, -0.31070277094841003, -0.3065413236618042, 0.22346509993076324, 0.9973517060279846, -0.3234096169471741, 1.3371281623840332, -0.13375677168369293, -0.09970979392528534, 0.2067522555589676, -0.23850888013839722, 0.4240926504135132, 0.10667318105697632, -0.6830182671546936, -0.6417882442474365, -0.06268216669559479, 0.7109038829803467, 1.1996303796768188, 1.2114615440368652, 0.8076050877571106, 0.11538314819335938, 0.5267949104309082, -0.4158174395561218, 0.2483772337436676, -0.37150147557258606, -0.6726650595664978, -0.3075541853904724, -0.3824811577796936, -0.8665175437927246, -0.15220791101455688, 0.0773148313164711, 0.9986861348152161, -0.28732824325561523, 1.0353333950042725, 0.12682728469371796, -1.2967851161956787, -1.5176092386245728, -0.0062205493450164795, -0.015524497255682945, -1.2485274076461792, 0.7300524711608887, 1.625989317893982, -1.1243832111358643, -0.04948127642273903, 0.5070598721504211, 0.12603285908699036, 0.3845760226249695, 0.7974684834480286, 0.24313880503177643, -0.987739086151123, -0.18998898565769196, -0.37867432832717896, 1.1633800268173218, -0.4557448923587799, 0.0732748880982399, -0.18870140612125397, 0.7975847721099854, 0.6993590593338013, 0.09837479889392853, 0.14575695991516113, 0.5290018916130066, -0.6928461790084839, -0.5311117172241211, -0.14725281298160553, 0.41827160120010376, 0.690747857093811, -0.0779692754149437, -1.1465392112731934, -0.6837747693061829, -0.14858384430408478, -0.5204073786735535, 0.7523475885391235, 0.4085516929626465, 1.0276594161987305, 0.06968383491039276, 0.08553649485111237, 1.1130263805389404, -0.11313224583864212, 0.3448021113872528, -1.4265069961547852, 0.8989978432655334, 0.8583579063415527, 1.1928352117538452, 0.2901725769042969, -0.005739610642194748, 0.27958300709724426, -0.6029396653175354, 0.020059939473867416, -0.27701300382614136, 0.5833548307418823, 0.2687655985355377, -0.651913583278656, -0.17295941710472107, -0.02117609977722168, 0.061683643609285355, -0.10269226133823395, 0.026168888434767723, 0.3254778981208801, -0.09234568476676941, -0.1255510002374649, 1.5359681844711304, 0.21656301617622375, -0.11219971626996994, -0.9217179417610168, 0.5179750919342041, 0.2426406443119049, -0.5497268438339233, -0.352607786655426, -0.03427981585264206, 0.11113478243350983, 0.6191396713256836, -0.19202233850955963, -0.15023477375507355, -0.555324137210846, 0.8155210018157959, 1.2749942541122437, -1.534912347793579, -0.24239343404769897, -0.9860202074050903, 0.7846634387969971, 0.9013646245002747, -0.2962718904018402, 0.97159343957901, 0.34013164043426514, -0.27513548731803894, 0.03671508654952049, 0.6724822521209717, 1.2354620695114136, -0.13029508292675018, 0.23275528848171234, 0.03863580524921417, -0.19763441383838654, 0.7025299668312073, -0.9242969155311584, -0.599534273147583, 0.06694955378770828, -0.6545402407646179, -0.02093678154051304, 0.35903993248939514, -0.41556915640830994, 1.1534483432769775, 0.492666631937027, 0.1257728487253189, 0.48737210035324097, 0.35669445991516113, -0.9321689009666443, 0.2553249001502991, -0.1337786763906479, -0.1006515845656395, -0.13946056365966797, 0.12074701488018036, -0.41823524236679077, 0.16221599280834198, 0.10571431368589401, 0.2557782530784607, 0.04120877385139465, -0.24816225469112396, -0.318440318107605, 0.17075982689857483, 0.3682788014411926, 0.6042187213897705, 1.2852803468704224, 1.5364961624145508, -0.2901856005191803, -0.600203812122345, 0.7161617279052734, 0.06425811350345612, 0.4333830773830414, 0.8994869589805603, 0.5454114079475403, 1.1342835426330566, -0.9644442796707153, 0.42281660437583923, 1.3563247919082642, -0.5342283248901367, 0.49765729904174805, -0.068075031042099, 0.21117202937602997, -1.4644184112548828, 0.2875519394874573, 0.2841624617576599, 0.04274487495422363, 0.7900580763816833, -0.05728905275464058, 0.25895726680755615, 0.45202142000198364, -0.27146831154823303, 0.46061959862709045, -0.2905142307281494, -0.11006040871143341, -0.1777406632900238, 0.02277008816599846, 1.030684232711792, 0.6923537850379944, 0.664958119392395, 0.9477069973945618, -0.5615395903587341, -1.6987543106079102, 0.5117691159248352, -0.7979394197463989, 0.21804878115653992, -0.21188129484653473, -0.1974261850118637, -0.39422374963760376, -0.9763217568397522, -0.3503307104110718, -0.3893093168735504, -0.4460713863372803, -0.9309197068214417, -0.30307573080062866, -0.9829122424125671, 0.0766320750117302, -0.5475688576698303, 1.0693374872207642, 0.515840470790863, 0.45793473720550537, 0.7373751997947693, 0.12374135106801987, -0.5258360505104065, 0.18713970482349396, -0.4428865909576416, -0.17499367892742157, -0.22265349328517914, -1.1704407930374146, -0.5901612043380737, 0.5456269383430481, 0.6941822171211243, 0.45246556401252747, 0.4812563359737396, 0.6869919300079346, 0.9752688407897949, -0.9668270945549011, -0.4511573016643524, 0.44905462861061096, -0.2118949443101883, 0.8208773136138916, 0.17977409064769745, -1.0162937641143799, -0.0620422437787056, -0.16789838671684265, -2.227416515350342, 1.1467362642288208, 0.1513756811618805, -0.3149532377719879, 0.5667961239814758, 0.5379419326782227, -0.002417993266135454, 1.3694286346435547, -0.5824409127235413, -0.00997666735202074, 0.1924293041229248, -0.8419045805931091, -1.4226936101913452, 1.0295097827911377, 0.737669050693512, 0.155255526304245, -1.4150723218917847, 0.03983812779188156, -0.43289268016815186, -0.7320353984832764, -0.3782888948917389, -0.46435773372650146, 0.5794650316238403, 0.6734387278556824, 0.10486210882663727, -0.9822748303413391, 0.07032755762338638, -0.6064445376396179, 0.7044041752815247, 0.6712051033973694, 0.3865344822406769, 0.9982378482818604, -0.4050574004650116, 0.9532471299171448, -0.6491085290908813, -0.34698620438575745, 0.3091142475605011, -0.37494131922721863, 0.44344890117645264, 0.472817063331604, 0.2376098334789276, 0.609367311000824, -0.06826512515544891, -0.5939094424247742, -0.5134033560752869, 0.11545303463935852, 0.7568651437759399, -0.7198031544685364, -0.3607352674007416, -0.3229178488254547, -0.4325924217700958, 0.16090106964111328, 0.6065806150436401, -0.020700804889202118, -1.0235356092453003, -0.5456609725952148, -0.47748997807502747, -0.41099146008491516, 0.6419628262519836, -0.36547932028770447, 0.3936183750629425, 0.14380614459514618, -1.3588995933532715, 0.6600341200828552, 0.1395753175020218, -2.216620683670044, -0.09884577244520187, -0.9597642421722412, 0.8746340870857239, 0.31612399220466614, 0.36829298734664917, 0.5859822630882263, 1.0105869770050049, -0.8880736827850342, -0.2708301246166229, -1.0098090171813965, -0.3696145713329315, 0.6218228340148926, 0.6914486289024353, -0.7205517292022705, 0.7916579246520996, 0.4503602683544159, -0.6388286352157593, -0.4727921187877655, 0.4638834595680237, -1.5279167890548706, -0.04649287089705467, 0.4414297342300415, 0.1718863546848297, 0.11425919085741043, 1.3356099128723145, 0.23706139624118805, 0.9317641854286194, -0.18208131194114685, 1.2528131008148193, -0.44140055775642395, -0.8377143740653992, -0.08983319997787476, 0.3537125289440155, -1.1085633039474487, -0.6641251444816589, 0.02922702394425869, -0.9194967746734619, -0.508021354675293, 0.28290313482284546, 0.940793514251709, -0.21044719219207764, 0.5764443874359131, -0.21011391282081604, -0.06268424540758133, -1.2856407165527344, 0.181965172290802, 0.4480275809764862, -1.3596298694610596, -0.574738621711731, -0.27009880542755127, 0.6912358403205872, -1.211273193359375, 0.4627833068370819, 1.376493215560913, 0.3940267264842987, -0.433640718460083, -0.03459080681204796, -0.0522601418197155, 0.5843615531921387, -1.1161504983901978, 0.6130434274673462, 0.3354455828666687, -0.16617915034294128, -0.12490666657686234, 0.8138637542724609, -0.1834181845188141, 0.2428494691848755, 0.0018467903137207031, -1.2383689880371094, -1.0042192935943604, 0.5143170952796936, 0.03456120193004608, 0.21840929985046387, 0.289169043302536, 0.7180418968200684, -0.41193896532058716, -0.1393134891986847, 1.579651117324829, -0.4910794794559479, -1.1106547117233276, 0.5936363339424133, 0.7569945454597473, -0.4720918834209442, 0.16119477152824402, 0.13252630829811096, 0.547301173210144, -0.0316879004240036, 0.8637607097625732, 0.2131066620349884, -0.8067994713783264, 0.2508494555950165, -0.06460665911436081, -0.9341630935668945, 0.27542462944984436, -0.21100522577762604, -1.0635697841644287, -0.47305822372436523, -0.5826793909072876, 0.03752071037888527, 0.5500637292861938, -1.3522043228149414, -1.1902891397476196, -0.007141639944165945, -0.0603279247879982, 0.038101546466350555, -0.7302168011665344, 0.16444970667362213, -0.8620937466621399, -0.2114013135433197, 0.9158480763435364, -0.4583677351474762, 1.3547015190124512, 0.1587178111076355, 0.05442476272583008, -0.01471959613263607, -0.13594874739646912, -0.0035579977557063103, -0.3915407955646515, -0.22400124371051788, -1.2716970443725586, -0.27730390429496765, -0.6360233426094055, -0.6135163307189941, 0.4631379246711731, -0.5769692659378052, 0.10926618427038193, -0.0827455073595047, -1.0695085525512695, 0.31274309754371643, -0.01000990904867649, 0.2872653603553772, -1.0230752229690552, -0.9359179735183716, -0.32498908042907715, 0.3521752953529358, 0.21829308569431305, 1.3333357572555542, -0.17892728745937347, 1.0128021240234375, 0.38916048407554626, -0.8635921478271484, -1.006186604499817, -0.0967082753777504, 1.5915734767913818, -0.6107531785964966, 0.5701251029968262, -0.34232860803604126, -0.5347778797149658, -0.17455053329467773, -1.2728705406188965, -0.132170170545578, 0.28105250000953674, -0.16154277324676514, -0.3654858469963074, -0.29656702280044556, -0.6450470685958862, -0.27155742049217224, 0.4453218877315521, -0.1564471572637558, 0.5638753771781921, 0.29507362842559814, -0.31954866647720337, -1.0390901565551758, -0.29340577125549316, 0.1836797446012497, -0.47743502259254456, 0.15188418328762054, 1.2322518825531006, 1.5357331037521362, -0.041044682264328, -0.42633095383644104, -0.2187291830778122, 0.7388021945953369, -1.140832781791687, -0.08919654041528702, -0.8692733645439148, -0.3944137394428253, 0.27502962946891785], [0.5222412347793579, 1.2732374668121338, -1.8672730922698975, -1.001229166984558, 1.4122461080551147, 0.6230877637863159, 0.47853487730026245, 0.5308550596237183, -0.08649026602506638, -0.4319004714488983, -0.4437362551689148, 0.5583253502845764, 1.2370043992996216, 1.8307600021362305, 0.6926263570785522, -0.5078340172767639, 0.9222701787948608, -0.33406543731689453, 0.222126767039299, 1.4628636837005615, -0.1314006745815277, -0.46628591418266296, -1.336051344871521, -0.09925210475921631, 0.0778493583202362, 0.5787363648414612, -1.4501593112945557, -0.7186765670776367, -1.2388603687286377, -0.4659549593925476, 0.545620322227478, -0.2637248635292053, -0.8794450163841248, -0.08553905040025711, -2.193638563156128, -0.34193506836891174, 0.6754105091094971, -0.5834181904792786, -0.7463638186454773, 0.6478387713432312, 2.0825634002685547, -0.198125958442688, 0.09577631205320358, -0.8245369791984558, 0.6303480267524719, -0.6899356245994568, -0.3852246105670929, -0.7348649501800537, -0.25951215624809265, -0.9539889693260193, 0.2050047665834427, -0.5556530952453613, 0.11634133756160736, 0.3031386733055115, 0.948630154132843, -0.18663443624973297, -0.8884410858154297, 0.6435648202896118, 0.051784757524728775, -0.35802632570266724, 0.7534526586532593, 0.5353298783302307, -1.340503454208374, 0.6674892902374268, 0.27238279581069946, 0.2951062023639679, -0.31928855180740356, 0.797358512878418, -0.38372498750686646, -0.012441636063158512, 0.4047257602214813, 0.09497381746768951, -0.12190291285514832, 0.6131507754325867, -0.6354085803031921, -0.337848037481308, 0.29362788796424866, -0.3440655767917633, 0.24954625964164734, 0.3233260214328766, -0.8534573912620544, 0.3689318597316742, 0.30452096462249756, -0.8955947756767273, 1.3610955476760864, -0.5645427107810974, 0.1071491539478302, -0.27167049050331116, -0.5561806559562683, 1.8935312032699585, 0.42860695719718933, -0.029797859489917755, 0.511036217212677, -0.951500654220581, -0.28174856305122375, -0.8435849547386169, -0.2690280079841614, -0.951259970664978, -0.9315392971038818, -0.8915695548057556, -0.8021833896636963, 0.031159164384007454, 0.41915419697761536, 0.8918635249137878, 0.6405419707298279, 0.9096044898033142, 0.6678819060325623, -0.37601497769355774, -0.34583231806755066, -0.05625538527965546, 0.9555829167366028, 0.35575464367866516, -0.6854560375213623, -0.9924258589744568, -0.3952030837535858, 1.0596950054168701, 1.1141424179077148, -0.3248702883720398, 0.7953193187713623, 0.23285537958145142, -0.17102493345737457, -0.04779977351427078, -1.0958261489868164, 0.3831707537174225, 1.0853760242462158, 0.45367172360420227, -0.1501990258693695, 0.025815404951572418, -0.2617771327495575, -0.0785192921757698, -0.15040798485279083, 0.03562329709529877, -0.11543535441160202, 0.26462647318840027, -0.37249934673309326, 1.8052443265914917, -0.5934536457061768, -0.9032726287841797, 0.3768143057823181, 0.0145264882594347, 1.0777884721755981, 0.5214566588401794, -0.8108222484588623, -0.8386138081550598, 0.42045509815216064, -0.28599268198013306, -0.08122219145298004, -0.2916356027126312, -0.29548001289367676, 0.5033225417137146, -0.743628978729248, 0.3018486201763153, -0.10965076833963394, 1.2416234016418457, -0.4244484603404999, 0.22316138446331024, 0.3879823088645935, 0.5734500885009766, 0.2794590890407562, 0.41680508852005005, 1.1748629808425903, 0.009800281375646591, -0.790628969669342, 1.4615411758422852, 0.12131007015705109, 0.049981143325567245, 0.4150344729423523, 0.07794103771448135, -0.03854634240269661, -0.12070581316947937, -0.7091560363769531, -0.2110103964805603, -0.33712926506996155, 0.45312902331352234, 0.13507527112960815, 0.0017171446233987808, 1.0734912157058716, -0.471102237701416, -0.911582350730896, -0.6799108386039734, -0.24555720388889313, -0.4154733717441559, 0.4575802981853485, -0.6742497086524963, 1.2335865497589111, -0.3670995235443115, -0.12417776882648468, 0.12516562640666962, 0.10750973969697952, -1.1406043767929077, -1.123464822769165, 0.5869605541229248, -1.3417223691940308, 0.6799910068511963, -0.4154886305332184, -0.9897521734237671, 0.8664910793304443, -0.13176999986171722, -0.04632740467786789, -0.29276591539382935, -0.44871747493743896, -0.5222934484481812, -1.0927101373672485, -0.11482483148574829, -1.124464750289917, 0.7513787746429443, -0.22138111293315887, 0.4059614837169647, -0.8062036037445068, -0.2692030668258667, 0.7432586550712585, -0.39821892976760864, -0.8826518654823303, 1.358184576034546, 0.24030879139900208, -0.175235316157341, -0.3432157039642334, -0.45208606123924255, 0.0587417334318161, 0.19447937607765198, 0.3126482665538788, -0.43597397208213806, 0.2244420051574707, 0.2546042501926422, -0.024010170251131058, -0.6353172659873962, -1.0065299272537231, -0.4063466787338257, -0.9704826474189758, 0.4789488613605499, -0.8756982088088989, -1.6210919618606567, 0.8018987774848938, 0.674143373966217, -1.076401948928833, 1.2779903411865234, -1.1185591220855713, 0.588847279548645, 0.47846388816833496, 0.4851965010166168, 0.2570776641368866, 0.72202068567276, -0.5680150985717773, 0.6180905103683472, -0.2184842824935913, -0.36534371972084045, 0.4305422902107239, -0.18093131482601166, -0.9781926274299622, 1.112406611442566, 0.265147864818573, -0.08918309211730957, 0.9056854248046875, 0.06048201769590378, 0.7476736903190613, -0.9215601086616516, 0.25828641653060913, -0.10059446841478348, -0.43316203355789185, 1.015960454940796, 0.43513616919517517, -1.1915075778961182, -0.6200114488601685, -0.524893045425415, -1.0469423532485962, -0.17109426856040955, -0.11299816519021988, -1.0999466180801392, 0.8116335868835449, -0.5153542757034302, 0.19159692525863647, -0.05518138408660889, -0.682590663433075, 1.0123258829116821, 0.011319148354232311, -0.4892452657222748, -0.4137718677520752, -0.08168105036020279, 0.9289670586585999, 0.42422914505004883, 0.4610106348991394, -0.5684159398078918, -0.29244285821914673, -0.5953384041786194, 1.1623128652572632, -0.8262650966644287, -0.5606383085250854, 0.29564738273620605, 0.7547739148139954, -0.8640111088752747, 0.6260117292404175, 0.16535241901874542, -0.5693945288658142, 0.09406346827745438, -0.22671183943748474, 0.31457680463790894, 0.07089118659496307, -0.8613123297691345, -0.6568910479545593, -0.5700086951255798, 0.7990249991416931, 1.054323673248291, 1.548592209815979, 0.97161865234375, 0.7881119251251221, -0.4555872082710266, 0.6640048027038574, 0.4752189815044403, 0.12669701874256134, -0.6086346507072449, -0.5565155148506165, -0.03191515803337097, -0.04434750974178314, -0.2919117212295532, -0.4063221514225006, 1.3839980363845825, 0.22040370106697083, 1.1595288515090942, 0.3484160304069519, -0.5071543455123901, -0.9205906391143799, -0.44860967993736267, 0.20192773640155792, -0.6035988330841064, 0.33204028010368347, 0.34214985370635986, -0.7481552362442017, 0.26871925592422485, 0.24301718175411224, 0.0987507775425911, 0.6868352293968201, -0.13344842195510864, 0.7376008033752441, -1.1209789514541626, -0.32627877593040466, -0.21219977736473083, 1.3504409790039062, 0.5850812196731567, 0.255344033241272, -0.5926393270492554, -0.21962876617908478, 0.5780003666877747, 0.1873798966407776, 0.06376048922538757, 0.8413222432136536, -0.3258468806743622, -0.6892415285110474, -0.3132249414920807, -0.0653415247797966, 1.0766395330429077, 0.1781829297542572, -0.06135212630033493, -0.03618001192808151, 0.029152952134609222, -0.20910030603408813, 0.3482653498649597, 0.5087555646896362, 0.8841610550880432, 0.3181922435760498, 0.0640367642045021, 0.8184351921081543, -0.19209685921669006, 0.5035051107406616, -0.777368426322937, 0.5232298970222473, 0.4012550711631775, 1.2727636098861694, -0.05751736834645271, -0.4135885536670685, 0.4836086332798004, -0.448696106672287, -0.0019437829032540321, -0.019392739981412888, 0.7461438179016113, 0.20829813182353973, -0.6035187840461731, -0.7380764484405518, 0.7121312022209167, -0.28859949111938477, -0.4497697353363037, 0.10880571603775024, 0.13354572653770447, -0.4837268888950348, -0.651160478591919, 1.075665831565857, 0.12084788084030151, 0.13108545541763306, -1.1357810497283936, -0.32433077692985535, 0.2734036445617676, -0.03452393040060997, -0.2214551419019699, -0.9306913614273071, 0.6386997103691101, -0.2431555688381195, -0.8905283212661743, -0.9003562927246094, 0.024526525288820267, 0.3996129035949707, 1.0388888120651245, -0.6488269567489624, -0.2743377387523651, -0.036055050790309906, -0.4265216290950775, 0.37604445219039917, 0.3671439588069916, -0.18825338780879974, 0.5081247091293335, -0.6600132584571838, -0.11404258012771606, 0.11994744837284088, 1.0913971662521362, -0.3517889976501465, -0.06672889739274979, 0.13255196809768677, 0.5935996174812317, 0.046687278896570206, -0.28825265169143677, -0.88358074426651, -0.9421825408935547, -0.9630908966064453, 0.17902061343193054, 0.22745965421199799, 0.05062289163470268, 0.5362399220466614, 0.1806652992963791, -0.12728236615657806, 1.1916251182556152, -0.4732970595359802, -0.6646952629089355, 0.6296190023422241, 0.3018700182437897, -0.04508126527070999, -0.19899117946624756, 0.7150894999504089, 0.6035483479499817, 0.40351197123527527, 0.821564793586731, -0.030312640592455864, 0.8597414493560791, 0.9398890733718872, -0.21870939433574677, -0.5058046579360962, 0.7063854336738586, 1.1621330976486206, 1.3823734521865845, 1.1589934825897217, -0.057999737560749054, -1.2113542556762695, 0.5801264643669128, -0.5307384133338928, 0.0753817930817604, 0.9947780966758728, 0.07568028569221497, 1.4086259603500366, -0.8620490431785583, -0.07218129932880402, 0.511236846446991, -0.19901695847511292, -0.25619029998779297, 0.14139088988304138, 0.5375183820724487, -0.4259292781352997, 0.01399151049554348, 0.6844476461410522, 0.23276126384735107, 0.7117116451263428, 0.1831618696451187, -0.0006161965429782867, -0.4030100107192993, -0.3491196036338806, -0.0813770741224289, -0.3808436691761017, -0.3285607397556305, 0.17609509825706482, 1.1514183282852173, -0.1615973263978958, -0.19752728939056396, 0.0567660853266716, 1.7785578966140747, -0.5526986122131348, -1.2093167304992676, 0.6828629970550537, -0.5524956583976746, -0.0634486973285675, -0.4636833667755127, -0.3610197603702545, -0.36126717925071716, -0.48118677735328674, 0.0023276647552847862, -0.00926988385617733, -0.5143764019012451, -0.6348066926002502, -0.2518284320831299, -0.7187083959579468, -0.4097108840942383, 0.27934205532073975, 0.8301138877868652, 0.9577833414077759, 0.8178202509880066, 0.3697315454483032, -0.28419268131256104, 0.5229368209838867, 0.43876415491104126, -0.22621330618858337, 0.13578368723392487, 0.583993673324585, -1.5868144035339355, -0.8953036069869995, 0.4059540331363678, 1.4109742641448975, 0.6410495042800903, 0.23844411969184875, 1.5111202001571655, 1.5386165380477905, -0.8587995171546936, -0.4118650257587433, 0.0054468195885419846, -0.3270631432533264, 0.7502854466438293, 0.4532749652862549, -1.1721750497817993, -0.14976854622364044, -0.29185426235198975, -1.8603931665420532, 0.6064040064811707, -0.41754019260406494, -0.9741061925888062, 0.18560130894184113, 0.6286459565162659, 0.244947612285614, 0.896294116973877, -1.5521719455718994, 0.5703085660934448, -0.2861892879009247, -0.3550068438053131, -1.0847305059432983, 0.592664897441864, 0.40247321128845215, 0.8196603059768677, -0.7683172225952148, 0.14900094270706177, 0.0181255042552948, -0.5910010933876038, 0.749059796333313, 1.1239176988601685, 0.6959511637687683, 0.37133875489234924, 0.22686229646205902, -1.4853078126907349, 0.06221042573451996, -0.9651877880096436, 0.1627219170331955, -0.1734127253293991, 0.837123453617096, -0.04124623164534569, -0.45100411772727966, -0.20437516272068024, 0.40073010325431824, -1.0364521741867065, -0.2854684591293335, -0.5965114235877991, 0.7735487818717957, 0.17955441772937775, 0.1703302264213562, -0.051923494786024094, -0.820670485496521, -0.8898358345031738, -0.5633115172386169, -0.49722564220428467, 0.8276143074035645, -0.5176734328269958, -0.6393781304359436, -0.39961689710617065, 0.06783194839954376, 0.4895733892917633, 0.21622063219547272, -0.3678543269634247, -1.309699296951294, -1.612352967262268, -0.6714199185371399, -0.0835309848189354, 0.4045919179916382, -1.018723964691162, 1.1553959846496582, -0.6250790357589722, -1.425347089767456, 0.8305545449256897, 0.014829069375991821, -1.156768798828125, -0.8097047805786133, -1.1733002662658691, 1.156724452972412, -0.05527977645397186, 0.22118300199508667, -0.07347045838832855, 0.8882049918174744, -0.4532565474510193, -0.51106196641922, -0.7807153463363647, 0.5072504281997681, 0.52672278881073, 0.8730340003967285, -0.8773818612098694, 0.6110727190971375, -0.07391492277383804, -0.09782332926988602, -0.3098531663417816, 0.1596081554889679, -0.9560025334358215, -0.01881684735417366, 1.0136613845825195, 0.7000775337219238, 0.44103482365608215, 1.1231262683868408, -0.3132938742637634, 0.7309688329696655, -0.5048704147338867, 0.3150961995124817, -0.5307364463806152, 0.3192112445831299, -0.173336461186409, 0.4306422472000122, -0.9281203150749207, -0.445438951253891, 0.6050914525985718, -0.6658200025558472, -0.8688288331031799, 0.26799094676971436, 1.1607824563980103, -0.3998906910419464, 0.0009242366068065166, -0.0591810867190361, 0.8129311203956604, -1.016806721687317, 0.5049417018890381, 0.6255496144294739, -0.3603302538394928, -0.17112115025520325, -0.31552067399024963, 0.9914746880531311, -0.6190219521522522, -0.052827950567007065, 0.3189350366592407, 0.255853533744812, -0.3843521475791931, 0.24458414316177368, 1.3209054470062256, -0.8918887972831726, -0.20119772851467133, 1.51374351978302, 1.325993299484253, -0.08116966485977173, -0.1440359503030777, 0.18690571188926697, 0.15817193686962128, 0.8138834834098816, -0.1998179405927658, -0.03702234849333763, -0.04450235888361931, 0.17458051443099976, -0.6074405312538147, -0.17841202020645142, -0.6545785665512085, 0.30145856738090515, 0.06429824978113174, -0.5098852515220642, 0.803581953048706, 0.5778899788856506, -0.3385534882545471, 0.607154369354248, -0.1064927726984024, -0.2191910445690155, 0.27381712198257446, -0.3100835084915161, 0.37303251028060913, 0.16011959314346313, 0.8568114638328552, 0.1802883893251419, 0.27168500423431396, 0.41873103380203247, 0.4278416335582733, -0.0581364780664444, -0.03770142048597336, -0.4774317741394043, -2.105203628540039, -0.29155728220939636, 0.05041716992855072, -0.6819749474525452, 0.6839185357093811, -1.068365454673767, -0.3950536847114563, -0.11581547558307648, 0.05388632416725159, -0.02492690458893776, -0.6328122615814209, -0.25763487815856934, -0.34465765953063965, 0.20818397402763367, 1.1685281991958618, 0.07075442373752594, 1.1458266973495483, -0.21388067305088043, -0.09390652179718018, 0.1559305489063263, -0.03407550975680351, -0.1368142068386078, 0.24033448100090027, 0.24181298911571503, -0.4458736479282379, 0.23562853038311005, -0.6017543077468872, -0.5782273411750793, -0.015986070036888123, 0.46881991624832153, 0.21664993464946747, 0.0018501360900700092, -1.2129251956939697, -0.24188917875289917, 0.38325247168540955, 0.6176571249961853, -0.9251811504364014, -0.9703301191329956, -0.5655838847160339, 0.3763303756713867, -0.20375777781009674, 1.6447045803070068, -0.6288201808929443, 0.8168241381645203, 0.992114245891571, -0.09643839299678802, -0.7416544556617737, -0.022852353751659393, 0.8684940338134766, -0.3711204528808594, 1.1815282106399536, 0.28691256046295166, 0.17520016431808472, 0.09844336658716202, -0.8480468392372131, -0.7626145482063293, 0.24230435490608215, -0.6981905698776245, 0.5627710819244385, -0.7307425737380981, -1.090057611465454, -0.7919809818267822, 0.4948740601539612, -0.3146984577178955, -0.32927650213241577, 0.7373319864273071, 0.03689400479197502, -1.0186256170272827, 0.2119341939687729, -0.14430710673332214, -0.6878464221954346, 0.5415525436401367, 1.5579074621200562, 1.06797194480896, -0.38085073232650757, -0.39541390538215637, -0.17733784019947052, 1.038881778717041, -1.579301118850708, -0.45703527331352234, -0.7750880122184753, -0.008561978116631508, -0.16065165400505066], [0.1695675551891327, 1.5944541692733765, -2.888674020767212, -0.6617189049720764, 0.41676878929138184, 0.28242167830467224, 1.5058305263519287, -0.30950507521629333, 0.7181710004806519, -0.21147365868091583, -0.9400073885917664, 0.15514229238033295, 1.4194347858428955, -0.04012482985854149, 0.22617067396640778, 0.3927910029888153, 0.44812700152397156, -0.0022498047910630703, 0.5978440046310425, 1.3434675931930542, -0.2760702669620514, -0.24618996679782867, -0.9702972173690796, -0.3011825680732727, -0.5083418488502502, 0.2392401546239853, -0.6817577481269836, -0.7285376191139221, -1.0554537773132324, -0.8372402191162109, 1.1466522216796875, -0.4287816882133484, -0.2728289067745209, -0.12235663086175919, -1.6354061365127563, -0.772980809211731, 0.9186621904373169, 0.20453369617462158, 0.28995752334594727, 0.2520400583744049, 2.1272904872894287, 1.224181056022644, 0.27290233969688416, -1.010733962059021, 0.5097242593765259, 0.544556200504303, 0.7450619339942932, -0.9980458617210388, 0.44258183240890503, -0.6212138533592224, 1.1449252367019653, -0.584234893321991, -0.474807471036911, 1.0104674100875854, 0.7348094582557678, 0.2549915015697479, 0.3514663279056549, 0.8400428891181946, 0.4100934565067291, -0.6601240038871765, 0.31743571162223816, 0.8707641959190369, -0.011230722069740295, 1.1460824012756348, 0.4448435306549072, -0.21239696443080902, 0.15066629648208618, 0.8688225150108337, -0.17837311327457428, -0.45623815059661865, 0.5828825235366821, 0.06748468428850174, -0.2334742546081543, 0.2175954431295395, -1.422085165977478, 1.0637840032577515, -0.09476649016141891, -0.07688869535923004, -0.11096178740262985, 0.45120033621788025, -0.7375524640083313, 0.5617783069610596, 0.7558122873306274, 0.24772943556308746, 0.7458564043045044, -0.2799488604068756, 0.1495330035686493, -0.6322683095932007, 0.05333187058568001, 1.8583526611328125, 0.04884260520339012, -0.3794788420200348, 0.24063093960285187, -0.8113816976547241, 0.3478533923625946, -0.28480401635169983, -0.15505439043045044, -0.7858749628067017, -0.6844231486320496, -0.5165552496910095, -0.8892032504081726, -0.7367367744445801, 0.5163414478302002, -0.1193707138299942, 0.2933445870876312, 0.5304381847381592, 0.22424890100955963, -0.3489201068878174, -0.5724084973335266, -0.5004444718360901, -0.42050790786743164, 1.0686259269714355, -1.0484641790390015, -0.3317791521549225, -0.45402735471725464, 0.7786250710487366, 0.9425089359283447, 0.4994291365146637, 0.9315835237503052, 1.393045425415039, -1.4137274026870728, -0.1653001308441162, -0.9839186668395996, 0.7498974800109863, 0.20262788236141205, 1.3841605186462402, -0.9178256392478943, -0.5388847589492798, 0.2501308023929596, -0.15573382377624512, 0.5281844139099121, -0.2354649156332016, -0.35593584179878235, 0.665189266204834, -0.1276838183403015, 0.9375208020210266, -0.6722901463508606, -0.4491680860519409, 0.7109089493751526, -0.07696360349655151, 0.9509592652320862, 0.2756398618221283, -0.6004862785339355, -0.36990687251091003, -0.5565305352210999, -0.53971928358078, 0.41594168543815613, -0.30929476022720337, -0.9329938888549805, -0.11192508041858673, -0.5882331132888794, 1.114530324935913, 0.08234567940235138, 1.5335100889205933, -0.4550248980522156, -0.04324732720851898, 0.5106722116470337, -0.07710152864456177, 0.568555474281311, 0.03098948486149311, 0.7556613087654114, 0.031419605016708374, -0.37287068367004395, 1.287513017654419, -0.09723532199859619, -0.5119696855545044, -0.2912137508392334, 0.20754720270633698, -1.2308114767074585, 0.25209978222846985, -0.38643878698349, -0.4044090211391449, -0.525351345539093, 0.22703582048416138, 0.5979557037353516, -0.5554645657539368, 1.4806069135665894, -0.7651109099388123, -1.2534422874450684, -1.3788058757781982, 0.2774779796600342, -0.8175619840621948, 0.1963684856891632, -0.3723907172679901, 0.19759134948253632, -0.6908310651779175, 0.23230774700641632, 0.22272321581840515, -0.35571566224098206, -1.3939361572265625, -0.2610325813293457, 0.43379953503608704, -1.0712170600891113, -0.03920607641339302, -1.0348517894744873, -1.2130513191223145, 1.2303578853607178, -0.2854926884174347, -0.4008677899837494, -0.4063049554824829, -1.1841959953308105, 0.08321157097816467, -0.9543261528015137, -0.32825300097465515, -0.8041872978210449, 1.3139197826385498, -0.5076474547386169, 0.23267045617103577, -0.6383023858070374, 0.5738459229469299, 1.5102298259735107, 0.2111639380455017, -1.0815964937210083, 0.7264207005500793, -0.15086787939071655, -0.28317761421203613, 0.4233078956604004, -0.08717619627714157, -0.19297590851783752, -0.04667969420552254, -0.15992270410060883, -0.04496022313833237, 0.6057575941085815, 0.08106973022222519, 0.7883168458938599, -0.6843807697296143, -0.1256021410226822, -0.9109671115875244, -0.24969500303268433, 0.2945781350135803, -0.11604536324739456, -1.341407299041748, -0.15073555707931519, 0.19801586866378784, -0.1334184855222702, 0.9733854532241821, 0.05289158225059509, 0.1840183585882187, 1.1637117862701416, 0.4366060793399811, 0.7936614751815796, 0.17252682149410248, -0.540625810623169, -0.5495553612709045, -0.5153584480285645, -0.31416231393814087, 0.907332181930542, -0.5794278383255005, 0.007668932434171438, 1.8432425260543823, 1.3764269351959229, -0.22645330429077148, 0.15221619606018066, 0.15957583487033844, 0.11980409175157547, -0.8324614763259888, -0.1506911665201187, 0.3547540605068207, -0.6494125127792358, 0.7835788726806641, 1.0793112516403198, -0.8587286472320557, 0.229900062084198, -0.1170690506696701, 0.24707920849323273, -0.44808587431907654, -0.5380411744117737, -0.20319819450378418, 0.043595775961875916, 0.043993983417749405, -0.13228583335876465, 0.06422918289899826, -0.7728288769721985, 0.7606436014175415, 0.25534117221832275, -0.5460507273674011, -0.7010690569877625, -0.08823644369840622, 0.08410118520259857, 0.6146352291107178, -0.4273990988731384, -1.9111225605010986, -0.33666086196899414, -0.2783258259296417, 0.09722676873207092, -0.17239955067634583, -0.4314008951187134, 0.48764410614967346, 0.5544789433479309, 0.1355811059474945, 0.0988825187087059, 0.6676223278045654, -0.48948192596435547, 0.16830015182495117, 0.5447670817375183, 0.6503681540489197, 0.362935334444046, 0.006678852718323469, -0.5471903681755066, -0.7114834785461426, 0.6636313796043396, 1.0711450576782227, 1.1462568044662476, 1.7171766757965088, 0.4819417893886566, -0.31927135586738586, -0.5287496447563171, -0.36995837092399597, 0.4585128128528595, -1.3348479270935059, -0.18772119283676147, -0.3279033899307251, -0.6757904887199402, -0.27509167790412903, -0.8725444674491882, 1.476377248764038, 0.477791428565979, 1.487912654876709, 0.8071301579475403, 0.1334569752216339, -0.18771295249462128, -0.03408708795905113, 0.9459157586097717, -0.8587403297424316, 0.5859373807907104, 1.0445653200149536, -0.8223653435707092, -0.27812740206718445, 0.003645650576800108, 0.413217157125473, 0.9785184860229492, 0.10882820188999176, 0.08535400032997131, -1.5878562927246094, -0.7414700984954834, -0.17943020164966583, 1.4429203271865845, 0.13705968856811523, -0.016516055911779404, -0.13082869350910187, 1.0265581607818604, 0.38204529881477356, 0.1051737368106842, -0.013313686475157738, 0.15467743575572968, -0.6091665625572205, -0.726714015007019, 0.44117435812950134, 0.7586207985877991, 0.9383135437965393, -0.11224012821912766, -0.3594939410686493, 0.03028690814971924, 0.3264416754245758, -0.18283189833164215, 0.9454077482223511, 0.08438056707382202, 0.8818616271018982, 0.004763833247125149, 0.6193910241127014, 1.0889767408370972, -0.6343435645103455, 0.49221426248550415, -1.011513113975525, 0.726924479007721, 0.8410319089889526, 0.6872808933258057, 0.23301683366298676, 0.07098694890737534, 0.11964872479438782, -1.0002758502960205, 0.15310963988304138, -0.05318857729434967, 0.5809357166290283, 0.06732475012540817, -0.00253984029404819, 0.20646509528160095, 0.2056821882724762, -0.6144672632217407, -0.13956645131111145, 0.44582509994506836, 0.1440797746181488, -0.8400096297264099, -1.138121485710144, 0.5813058614730835, -0.30083760619163513, -0.9729049205780029, -0.3893909752368927, -0.5660148859024048, 0.6334837079048157, 0.2945600152015686, 1.203710913658142, -0.17630305886268616, 0.24191561341285706, 0.49537643790245056, -1.9338765144348145, -0.16566528379917145, 0.27200257778167725, -0.05374366417527199, 0.09362906217575073, -0.7841362953186035, -1.0147480964660645, -0.14902812242507935, 0.02968212403357029, 0.5433886647224426, 0.24259540438652039, -0.04025522992014885, -0.035956479609012604, -0.1782585233449936, -0.9212244749069214, 0.04037518426775932, 0.5876778960227966, -0.6769093871116638, -0.2395719438791275, 0.42436283826828003, -0.12740835547447205, 0.39942699670791626, -0.1488761007785797, -0.635577380657196, -0.3848274350166321, -0.05854537710547447, -0.03457175940275192, -0.28660038113594055, -0.2967565357685089, 1.0142067670822144, 0.3712402582168579, 0.08902022987604141, 0.40137922763824463, -0.4083429276943207, -1.6850037574768066, 0.38850584626197815, 0.7066124677658081, -0.328605979681015, -0.0933346226811409, 1.0629199743270874, -0.10510028898715973, 0.3302750885486603, 0.2686789035797119, 0.02407877705991268, 1.0639309883117676, 0.5722811222076416, -0.09774430841207504, -0.6934739947319031, -0.21609750390052795, 0.5593973398208618, 1.3802040815353394, 0.2783925235271454, 0.2683829963207245, -0.3338589072227478, 0.31215861439704895, -0.48271074891090393, 0.3786156177520752, 1.2594776153564453, 0.19805192947387695, 1.5497304201126099, -2.15171480178833, 0.16463178396224976, -0.06182321533560753, -0.1633097380399704, 0.30913519859313965, -0.5664418935775757, 0.3072047531604767, -1.2848527431488037, 0.16627764701843262, 0.14336571097373962, 0.4043924808502197, 0.4784032106399536, -0.1823967695236206, -0.09044703096151352, 1.1303691864013672, -1.2705374956130981, 0.04074912518262863, -0.4742933213710785, 0.37643224000930786, -0.49664783477783203, 0.2767508327960968, 0.1557990461587906, -0.05299277976155281, 0.38876017928123474, 1.1640779972076416, -0.07344454526901245, -1.2663078308105469, 0.7037802338600159, -0.36971965432167053, 0.7289218306541443, -0.3973829746246338, 0.15038520097732544, -0.6684895753860474, -0.752475917339325, -0.10534566640853882, 0.7665531039237976, -0.5447542071342468, -0.47306719422340393, 0.04433276876807213, -1.1947211027145386, 0.08989416062831879, 0.48081710934638977, 1.003623604774475, 0.48599761724472046, 0.6532518863677979, 0.4011682868003845, 0.7422412633895874, 0.13862916827201843, -0.20210646092891693, 0.017491525039076805, -0.20893129706382751, 0.4111228287220001, -1.0395809412002563, -0.7030948996543884, 0.528656542301178, 0.5805584788322449, 0.29356276988983154, 0.4584028124809265, 1.2407258749008179, 2.206024646759033, 0.08944587409496307, -0.8875030875205994, 0.31720760464668274, -0.34469571709632874, 0.2565302848815918, 0.15635713934898376, -0.5442342162132263, -0.21368096768856049, -0.6495023965835571, -1.7087316513061523, 0.3507073223590851, -0.2126675397157669, -1.286864161491394, 0.9321357607841492, 0.2588666081428528, -0.05676213279366493, 0.7531515955924988, -0.7075090408325195, 0.3479454517364502, 0.2709367573261261, 0.07096146047115326, -1.4870339632034302, 0.40624281764030457, 1.1020629405975342, 0.8283472657203674, -1.1458806991577148, 0.3845062553882599, -0.13154801726341248, -0.16371876001358032, 0.40605998039245605, 0.3852671682834625, 0.5405439138412476, 0.7677827477455139, 0.4609878957271576, -1.1387079954147339, 0.009175513871014118, -0.9491146206855774, -0.5841947197914124, 0.33953872323036194, 0.35434845089912415, -0.3364236354827881, -0.1308239847421646, -0.043836746364831924, -0.31415146589279175, -0.7185704112052917, -0.49512529373168945, 0.016549570485949516, 0.8590365052223206, 0.4283115565776825, 0.018633075058460236, -0.021081196144223213, -0.05772583186626434, -0.48577073216438293, -0.3772694766521454, -0.15539045631885529, 0.7191939353942871, -1.1503517627716064, -0.30906954407691956, -0.27618730068206787, -0.17277976870536804, -0.5831419229507446, -0.1121828630566597, -0.5435357093811035, -1.1552484035491943, -1.2038732767105103, -0.46838438510894775, -0.6883593201637268, 1.133543848991394, -0.6257585883140564, 0.20530997216701508, -0.03704833984375, -1.0764542818069458, -0.12078368663787842, 0.10132786631584167, -1.0943493843078613, -0.548707127571106, -0.759041965007782, 1.2098878622055054, -0.47099170088768005, 0.11878671497106552, 0.32590657472610474, 0.8496298789978027, -0.8659087419509888, -0.9912183284759521, -0.5644464492797852, 0.06616714596748352, 0.8856185674667358, 1.2002249956130981, -1.2756166458129883, 0.9885098934173584, 0.08227690309286118, -1.1445797681808472, 0.09125329554080963, 0.9276734590530396, -0.734243631362915, -0.16891297698020935, 0.18550115823745728, 0.6670069694519043, 0.725628137588501, 1.646349549293518, -0.029706725850701332, 0.764512300491333, 0.5537168383598328, 0.6205834746360779, -0.3919709324836731, -0.08271283656358719, 0.05688714608550072, 0.3018200993537903, -1.074129581451416, -0.544705331325531, 0.2877778708934784, -1.2759569883346558, -0.8256831765174866, 0.9274412989616394, 1.012251615524292, -0.975014328956604, 0.12478991597890854, -0.5881841778755188, 0.2844720780849457, -0.9823344945907593, 0.045023974031209946, -1.376190423965454, -0.09811056405305862, 0.3119078278541565, -0.34774214029312134, 0.6304624676704407, -0.865943193435669, -0.07223350554704666, 0.5379338264465332, 0.35957401990890503, -0.6857492327690125, 0.7686964869499207, 0.6087849140167236, 0.2628495693206787, -0.5284656286239624, 1.4016120433807373, 1.277845025062561, -0.011682420037686825, -0.19795428216457367, 0.12755894660949707, 0.01929829642176628, 0.7632059454917908, -1.142083764076233, -0.4387657642364502, -0.3795875906944275, 0.3711443245410919, -0.06102302297949791, -0.18313829600811005, -0.02485533058643341, -0.03290635719895363, 0.23691490292549133, 0.33316776156425476, -0.17973865568637848, -0.22242707014083862, -0.23183950781822205, 0.6862861514091492, 0.4528275430202484, -0.10370247811079025, -0.2603631913661957, 0.7008001208305359, -0.4714019298553467, -0.5052270889282227, 0.7090473175048828, 0.11519132554531097, 0.006268427241593599, 0.6495590209960938, 0.5678787231445312, 0.09823296219110489, -0.3108646869659424, -0.37429407238960266, -1.261732816696167, -0.6211766600608826, -0.32317879796028137, -0.41820380091667175, 0.47213032841682434, -0.5204192399978638, -1.004379153251648, 0.31173866987228394, 0.5436895489692688, 0.26269015669822693, -0.11268103867769241, 0.5283454656600952, 0.21359920501708984, -0.5354686975479126, 1.0161786079406738, -0.16426584124565125, 1.3286672830581665, -0.3213099241256714, -0.6352643370628357, -0.739766538143158, -0.04646886885166168, -0.20890291035175323, -0.6746876835823059, 0.17236177623271942, -0.17382140457630157, -0.18326038122177124, 0.06916061043739319, 0.16469398140907288, -0.04104125499725342, 0.6891764998435974, 0.11150862276554108, -0.16399642825126648, -1.6006560325622559, 0.05973407253623009, 0.8635914921760559, -0.5993743538856506, -0.301129549741745, -0.5538713335990906, -0.8871066570281982, 0.6958526372909546, -0.4253688156604767, 0.7443413734436035, -0.7269054055213928, 0.12486107647418976, 0.39997586607933044, -0.29526740312576294, -0.9021367430686951, -0.6237759590148926, 1.4325124025344849, -0.41986361145973206, 1.0183387994766235, -0.15228918194770813, -0.16520768404006958, -0.6642246246337891, -1.2558029890060425, -0.9670363664627075, 0.7268689870834351, 0.128616601228714, 0.1548677384853363, -1.4847288131713867, -0.8882107734680176, -0.48824888467788696, 0.12362377345561981, -0.10689260810613632, 0.16262105107307434, 0.5741006731987, -0.6774056553840637, -1.093626618385315, -0.22947688400745392, 0.3278490900993347, -0.4392212927341461, 0.2880638837814331, 1.2606756687164307, 1.2554771900177002, 0.16962522268295288, -0.1850752830505371, 0.5221723318099976, 1.1890666484832764, -0.8232683539390564, 0.2669621706008911, -0.9815759658813477, -0.02683740295469761, 0.07144995033740997], [0.3367466926574707, 1.745367169380188, -2.727437973022461, -0.8687025904655457, 0.659944474697113, -0.1408555507659912, 0.8031864166259766, -0.15530087053775787, -0.2004619985818863, -0.024669064208865166, -0.956173837184906, 0.40356382727622986, 0.9493284225463867, 1.0792938470840454, 0.7682635188102722, -0.4369325637817383, 0.10352076590061188, 0.25361984968185425, 0.8935645818710327, 0.7406260967254639, -0.8241040706634521, -0.7462575435638428, -0.6361877918243408, -0.07477421313524246, 0.6189957857131958, 0.16984829306602478, -0.8673374056816101, 0.10378306359052658, -0.5839738845825195, -0.5696879625320435, 2.069430112838745, -0.630211591720581, 0.3309737741947174, 0.39492449164390564, -1.2946895360946655, 0.7909557819366455, 1.2202160358428955, 0.2519938349723816, 0.4257470965385437, 0.7476876974105835, 2.3805954456329346, 1.3703339099884033, -0.3393324315547943, -0.847084105014801, 0.06786390393972397, 0.0753273293375969, -0.038943395018577576, -1.043884515762329, 0.46924155950546265, -1.011743426322937, 0.5014305710792542, 0.5902186632156372, 0.2806634306907654, 1.497971773147583, -0.06802217662334442, -0.7963380813598633, 0.921220600605011, 0.7088530659675598, 0.10980760306119919, 1.2400389909744263, -0.11469458043575287, 1.162662148475647, 1.0643712282180786, 0.8002893328666687, 0.9340360164642334, -1.0656496286392212, 0.1832333505153656, 0.3968573212623596, -0.06549438834190369, 0.1702939122915268, 0.4133670926094055, -0.19959482550621033, -0.5685074329376221, 0.6705688238143921, -0.751528799533844, 0.7071642875671387, 0.23695920407772064, 0.6334116458892822, 0.05559636652469635, 0.10309164971113205, -0.9947774410247803, 0.19264496862888336, 0.5340871810913086, -0.23276779055595398, 0.3259664475917816, -0.0015688706189393997, 0.20666271448135376, -0.29838621616363525, -0.8223103880882263, 1.7481026649475098, -0.683929443359375, 0.06547853350639343, 0.54949951171875, 0.0819416344165802, 0.03542771562933922, -0.47475743293762207, -0.5043356418609619, -1.1751792430877686, -0.2850289046764374, -0.3039197027683258, -0.10066709667444229, -0.8352891802787781, -0.10254454612731934, 0.39544209837913513, 0.5965757966041565, 1.8173624277114868, -0.17516477406024933, -1.1205449104309082, 0.00018178741447627544, -0.14702416956424713, -0.8572846055030823, 0.4436642527580261, -0.2676646411418915, -1.4779701232910156, 0.09772300720214844, 1.016533374786377, 0.8723958730697632, 0.29484620690345764, 0.6937792301177979, 0.5814675688743591, -0.6691786646842957, -0.6548154354095459, -0.5448592305183411, -0.2655971050262451, 1.5936282873153687, -0.3957064151763916, -0.6165443658828735, -0.5232998728752136, 0.12078431993722916, 0.0836929902434349, 0.45265230536460876, -0.34680041670799255, 0.31804683804512024, 0.6093674302101135, -0.6058354377746582, 0.3513380289077759, -0.14519742131233215, -0.7974200248718262, 0.6449401378631592, 0.6242750287055969, 0.14938734471797943, -0.7700900435447693, 0.10095632076263428, -1.1256911754608154, 0.5607722997665405, -0.7607350945472717, 0.8468970060348511, -1.0060110092163086, -0.9133976697921753, 0.0053381482139229774, -1.172943353652954, 0.020565127953886986, 0.11067275702953339, 1.084980845451355, 0.34520184993743896, -0.5447975993156433, 0.7752910256385803, 0.2714497447013855, -0.25016072392463684, 0.5352773070335388, 0.4600572884082794, 0.0905432477593422, -0.06923869997262955, 1.157012701034546, 0.0662703588604927, -1.182586431503296, 0.7300495505332947, 0.6561977863311768, -1.0294163227081299, 1.3455942869186401, -0.3631250858306885, -0.33740848302841187, -0.9012040495872498, 0.07544110715389252, 0.25063860416412354, -0.5034614205360413, 0.8323842287063599, -0.14603370428085327, -0.7861727476119995, -1.163614273071289, 0.8030644655227661, 0.37233448028564453, 0.9557769298553467, 0.21171420812606812, 0.3584676682949066, 0.05270880088210106, -0.9375603795051575, 0.13709978759288788, -0.1432660073041916, -0.6591348052024841, -0.8119228482246399, -0.18294848501682281, -1.0889164209365845, 0.00027063116431236267, -0.08522236347198486, -0.7577471733093262, 0.31534940004348755, -0.11059165000915527, -0.8567895293235779, 0.13538126647472382, -0.04174164682626724, -0.5911686420440674, -1.1086376905441284, -0.328616738319397, -1.182915210723877, 0.4550246000289917, -0.5509699583053589, 0.2972007095813751, -0.280140221118927, 0.6497443318367004, 1.1938611268997192, -0.9608433842658997, -1.351930022239685, 0.6289898157119751, 0.04948798194527626, -1.1523925065994263, 0.7310590147972107, -0.4938846230506897, -0.16780610382556915, -0.05027289316058159, -0.9160873889923096, 0.1407824158668518, 0.7933614253997803, -0.43375566601753235, 1.1317375898361206, -0.1395934373140335, -0.2743780016899109, -0.8063997030258179, -0.13365104794502258, 0.3026515245437622, -0.7714465856552124, -0.9078161120414734, 0.9947120547294617, 0.28451085090637207, -1.3410612344741821, 1.0833208560943604, -0.16823925077915192, -0.28635814785957336, -0.2270624041557312, 0.6289164423942566, 0.7854308485984802, 0.4690125584602356, -0.9087312817573547, -0.20447349548339844, -0.9295573830604553, 0.3126351833343506, 0.6897483468055725, -0.4036441147327423, 0.18586672842502594, 1.814022183418274, 0.7203337550163269, -0.7830436825752258, 0.33761319518089294, -0.44665318727493286, 0.12490588426589966, -1.3092937469482422, -0.4043031930923462, 0.5569071173667908, -1.0552891492843628, 0.895429790019989, 0.12651821970939636, -1.6263644695281982, 0.15482644736766815, -0.4286704659461975, 0.13079124689102173, -0.11643798649311066, -0.22123180329799652, -0.9564083814620972, -0.100007064640522, -0.1806400865316391, -0.44935929775238037, -0.0846523568034172, -0.12453805655241013, 0.6971824765205383, -0.604137122631073, -0.9646855592727661, -0.3811919391155243, 0.7063561677932739, -0.20654787123203278, 0.7466951608657837, 0.004831151105463505, -1.0067942142486572, -1.2954368591308594, -0.09635178744792938, 0.5318923592567444, 0.4896461069583893, -0.13149824738502502, 0.6197654008865356, 0.925500214099884, 0.4267067611217499, -0.03710422292351723, 0.5585852265357971, 0.5261415839195251, 0.27524855732917786, 0.5674316883087158, -0.7794229388237, 1.073472023010254, -0.4734151065349579, -0.7133952379226685, -0.3913019299507141, 0.9008716940879822, 1.2400884628295898, 0.5480316281318665, 0.9991703033447266, 0.013895970769226551, -0.004357762169092894, -0.6524303555488586, 0.27416563034057617, -0.07146033644676208, -0.4600960910320282, 0.32622453570365906, -1.0753145217895508, 0.05165078863501549, -0.25015464425086975, -0.09769371151924133, 0.46071696281433105, 0.5562340617179871, 0.852528989315033, 0.0277545303106308, -0.40501856803894043, -0.8158940076828003, -0.9025605916976929, -0.2327904999256134, -0.7082115411758423, 0.8208271861076355, 1.3533591032028198, -1.3034467697143555, -0.04985983297228813, 0.35074955224990845, -0.6570946574211121, 0.8274803757667542, -0.04684557393193245, 1.0384546518325806, -0.7313903570175171, -0.07538711279630661, 0.013723200187087059, 0.7101081013679504, 0.1585886925458908, -0.6097146272659302, -0.4627472460269928, 0.43415841460227966, 0.6736263632774353, 0.14708873629570007, -0.5598552823066711, 0.18771809339523315, -0.6558336019515991, -0.7476145029067993, -0.18830490112304688, 0.2763049304485321, 0.5034998655319214, 0.14540457725524902, -1.0112996101379395, -0.5008217096328735, -0.08826158940792084, -0.43448856472969055, 0.38744404911994934, -0.039830464869737625, 0.8186743855476379, -0.01510148961097002, 0.2746467590332031, 1.2130393981933594, -0.29502081871032715, 0.24221062660217285, -0.923025906085968, 0.3980899751186371, 0.8830153346061707, 1.4877578020095825, 0.594822347164154, -0.4558566212654114, 0.04429753124713898, -1.3800098896026611, -0.29931262135505676, -0.7547680139541626, 0.6521161794662476, -0.13794639706611633, -0.4117718040943146, -0.3507247269153595, -0.23231573402881622, -0.11947844922542572, -0.02694583684206009, -0.1754886955022812, -0.1434284895658493, -0.11585839837789536, -0.21290993690490723, 0.7260125875473022, 1.0167510509490967, -0.7818929553031921, -0.8734380602836609, -0.6942471265792847, 0.936872661113739, -0.21519020199775696, 0.5632987022399902, -0.21237973868846893, -0.5039461255073547, 0.7169585227966309, -1.44945228099823, 0.2204243540763855, -0.3525720238685608, -0.5720753073692322, 0.672213077545166, -1.0233579874038696, -0.5878537893295288, 0.02510187029838562, -0.4821798503398895, 1.1543750762939453, 0.6891694068908691, 0.29188627004623413, 0.06018399819731712, 0.2962018847465515, -0.25020095705986023, -0.15826968848705292, 1.145850419998169, 0.010073893703520298, -0.5083593726158142, 0.05713703855872154, -0.5049046277999878, 0.5125398635864258, -0.6652097702026367, -0.3242582082748413, 0.0853966474533081, 1.0666242837905884, 0.22979584336280823, -0.04212595894932747, -0.40753382444381714, 1.5806270837783813, 0.18145743012428284, 0.08008076995611191, -0.09424802660942078, -0.17347106337547302, -0.853104293346405, 0.2359602451324463, 0.05560952425003052, -0.3378751575946808, -0.1931048184633255, 0.38975849747657776, -0.09635350853204727, -0.04218616709113121, 0.31324219703674316, 0.20285622775554657, 0.187333345413208, 0.5436577200889587, -0.7349933385848999, 0.3165612816810608, -0.3308260142803192, 0.9378288984298706, 1.0803606510162354, 1.3988093137741089, 0.15650799870491028, -0.9181262850761414, 1.5725741386413574, 0.1863657683134079, 0.6265187859535217, 1.354886770248413, 0.8186006546020508, 1.0434377193450928, -1.0786585807800293, -0.4172944128513336, 0.6210744976997375, 0.0030360582750290632, 0.8106878399848938, -0.1226424053311348, 0.06432732939720154, -1.168887734413147, -0.15827427804470062, 0.7778478860855103, -0.6741891503334045, 0.6022063493728638, 0.1803470253944397, 0.5457886457443237, 1.0134905576705933, -0.8571704626083374, -0.15029844641685486, -1.066975474357605, -0.5851998925209045, -0.8186284303665161, -0.479476660490036, 0.6247068643569946, 0.7183042168617249, 0.7653615474700928, 0.09533523768186569, 0.07927689701318741, -0.5639004707336426, 0.3257405757904053, -0.7185567021369934, 0.37433677911758423, 0.2840569317340851, -0.21904118359088898, -0.5654810070991516, -0.7662814855575562, -0.08849433064460754, -0.579075813293457, -0.7029700875282288, -0.12464027851819992, -0.37935933470726013, -1.1710292100906372, 0.1473756581544876, -0.0525524728000164, 0.9295275211334229, 0.7576196193695068, 1.366941213607788, 0.08625198155641556, 0.8637126684188843, -0.47185033559799194, 0.22742941975593567, 0.34782469272613525, -0.4748882055282593, 0.19967158138751984, -0.6574519276618958, -0.9354161024093628, 0.3032916784286499, 0.6651442646980286, -0.3528614938259125, 0.33043724298477173, 0.736792802810669, 1.3305809497833252, -0.5471038818359375, -0.42957526445388794, 0.5055550336837769, -0.3931792676448822, 0.6968532204627991, 0.5793069005012512, -1.2732222080230713, -0.10940626263618469, -0.24320557713508606, -1.4948116540908813, 1.479712963104248, 0.04295062646269798, -0.8870928883552551, 0.6271300911903381, 0.16142740845680237, 0.18762628734111786, 0.7007512450218201, -0.8392649292945862, -0.12823757529258728, 0.04045512154698372, 0.48920151591300964, -0.582050621509552, -0.004572439007461071, 0.5981011986732483, -0.218453511595726, -0.6864250302314758, -0.2708246111869812, -0.15833669900894165, 0.20167098939418793, -0.45332857966423035, 0.410658597946167, 0.9969295859336853, 0.09114956110715866, -0.29243403673171997, -1.0482161045074463, 0.5682460069656372, -0.506434440612793, 0.7151994109153748, 0.5085912346839905, 1.0176818370819092, 0.6300575137138367, -0.6476863026618958, 0.5544654726982117, -0.4924432635307312, 0.0332786999642849, -0.7326369881629944, -0.3840959370136261, 0.6158801913261414, 0.1423455774784088, 0.8686271905899048, 1.4947785139083862, 0.034653227776288986, -1.0792852640151978, -0.3192537724971771, -0.4738672971725464, 1.514309287071228, -0.6265375018119812, -0.575958788394928, -0.7175330519676208, -0.3043050467967987, 0.16774123907089233, 0.09742248803377151, 0.4960986077785492, -0.8646366596221924, -1.7840815782546997, -0.25984475016593933, -0.5422249436378479, 0.570206880569458, -0.3245331048965454, 0.38241633772850037, 0.6926447153091431, -1.2799988985061646, 0.488837331533432, 0.4293607771396637, -1.616483449935913, 0.6130666732788086, -0.7418121099472046, 0.6191960573196411, 0.25589361786842346, -0.23843857645988464, 0.3717573881149292, 0.5266862511634827, -0.7784631848335266, -0.7199558615684509, -1.1018836498260498, -0.3242529034614563, 0.3315865099430084, 1.0320433378219604, -1.221134901046753, 1.9086308479309082, -0.17738576233386993, -0.5466683506965637, -0.19185718894004822, 0.47843340039253235, -0.8145110011100769, -0.19912518560886383, -0.33433637022972107, -0.0022961788345128298, -0.20272071659564972, 1.12252938747406, 0.652726411819458, 0.9808343648910522, 0.14637590944766998, 1.3921095132827759, -0.9637690186500549, -0.7725879549980164, -0.9716424942016602, 0.20356416702270508, -0.6101729273796082, -0.38202404975891113, 0.12573949992656708, -0.3956944942474365, -0.7040084004402161, 0.13769981265068054, 1.2554645538330078, -0.3950783610343933, 0.6130684018135071, 0.4209119975566864, -0.15908262133598328, -0.7926846146583557, 0.4384862184524536, 0.18397009372711182, -0.4855585992336273, -0.10735484957695007, -0.9776932001113892, 0.9701806306838989, -0.5942983627319336, -0.025924842804670334, 0.7549536228179932, 0.7087736129760742, -0.27096399664878845, 0.5193200707435608, 0.25959086418151855, 0.34292834997177124, -0.5590569376945496, 0.8792223930358887, 1.146951675415039, -0.6943273544311523, 0.3171497583389282, 0.019739311188459396, -0.11007167398929596, -0.18744318187236786, -0.33068060874938965, -0.3985538184642792, -0.09716899693012238, -0.021946588531136513, 0.2543531358242035, -0.2904256582260132, -0.5273637175559998, 0.12917473912239075, -0.47733962535858154, 0.10893717408180237, 1.427870273590088, -0.43830573558807373, -1.0090140104293823, 1.2532238960266113, 0.22258321940898895, -0.40299761295318604, -0.21938905119895935, 0.06420569866895676, -0.16448892652988434, 0.3956456184387207, 0.7034064531326294, 0.23500367999076843, -0.6480138301849365, 0.7784838080406189, 1.12282133102417, 0.026928557083010674, -0.4519246518611908, -1.325101613998413, -1.640946626663208, -0.7107045650482178, -0.7603548765182495, -0.6284500360488892, 0.24625638127326965, -0.05943944305181503, -1.0707025527954102, 0.11621776223182678, 0.018475940451025963, 0.21697397530078888, -0.4103017747402191, -0.2294362485408783, -0.2793828547000885, -0.9644718766212463, 0.6701415181159973, -0.4774053990840912, 1.3941764831542969, 0.08133465051651001, 0.06010706350207329, -0.1721978634595871, -0.20147857069969177, -0.21697185933589935, 0.8470875024795532, -0.09599237889051437, -0.5460041761398315, -0.20385323464870453, -0.43934735655784607, -0.4262242317199707, 0.6784402132034302, 0.17368482053279877, 0.525252103805542, -0.3690861165523529, -1.4534716606140137, -0.04168742150068283, 1.2717623710632324, -0.1796402782201767, -0.5029948353767395, -0.7118792533874512, -0.6370792984962463, 0.8804455399513245, -0.03509703651070595, 0.8168154358863831, -0.9487463235855103, 0.8382511138916016, 0.8718401193618774, -1.028741717338562, -0.08299598842859268, -0.8689274787902832, 0.8780278563499451, -0.4590614140033722, 0.6913545727729797, -0.8890947699546814, 0.41550570726394653, 0.3681412637233734, -1.7381328344345093, -0.8906653523445129, -0.7716681361198425, -0.5083652138710022, -0.3480455279350281, -0.6372570395469666, -0.6942088603973389, -0.45619767904281616, 0.18329522013664246, 0.42710375785827637, -0.08074616640806198, 1.0989768505096436, -0.15199163556098938, -1.2334080934524536, 0.4354843199253082, 0.5321823358535767, 0.690203070640564, 0.6284448504447937, 1.10038161277771, 1.2379320859909058, -0.18081091344356537, -0.10696951299905777, -0.26428040862083435, 0.8381742238998413, -0.4297734498977661, 0.4799639582633972, -0.29047268629074097, -0.27933675050735474, -0.06043972074985504], [0.8450943827629089, 1.9337806701660156, -2.97733998298645, 0.11610313504934311, 0.9403656125068665, 0.05082640424370766, 0.6976273059844971, -0.32962432503700256, -0.2249482274055481, -0.7497565150260925, -0.8477506637573242, -0.06364519149065018, 1.082769513130188, 0.7511652708053589, 0.49986329674720764, -0.16488121449947357, -0.10892362147569656, -0.02520914375782013, 0.8004512190818787, 1.2463055849075317, 0.3620455265045166, -0.5270326137542725, -0.6829664707183838, 0.1642652004957199, -0.04341323673725128, 0.16700750589370728, -1.1024178266525269, -0.32662156224250793, -1.061662197113037, -0.6811010241508484, 1.5260664224624634, -0.3167397081851959, 0.7214042544364929, -0.6266542077064514, -2.0655057430267334, -1.000912070274353, 1.0292648077011108, -0.4144822657108307, -0.11255915462970734, -0.2154495120048523, 1.8010402917861938, 1.168929100036621, -0.22800537943840027, -1.4094774723052979, -0.8476971387863159, 0.10417730361223221, 1.1646831035614014, -0.2012997269630432, -0.2816782593727112, -0.7907166481018066, 0.7209141850471497, -0.2234029769897461, 0.2732838988304138, 1.9725353717803955, 0.20216359198093414, -0.04177544265985489, 0.6472927927970886, 0.9620842337608337, -0.48190850019454956, 0.6738826632499695, 0.8740978240966797, -0.6363419890403748, 0.7673813104629517, 0.5066123604774475, -0.07757038623094559, -0.2081567496061325, -0.00579855777323246, 0.41758421063423157, 0.5638405084609985, -0.04470929503440857, 0.9987841248512268, 0.38937655091285706, 0.17084455490112305, 0.19002650678157806, -0.5096645355224609, 0.5526094436645508, 0.31178948283195496, 0.33727413415908813, -0.014509767293930054, 0.3539230525493622, -1.1211867332458496, 0.5011233687400818, 1.1391997337341309, 0.6408106088638306, 0.3565317690372467, 0.738694965839386, 0.710719645023346, -1.0432554483413696, -0.5663349628448486, 1.1624971628189087, 0.09140442311763763, 0.6267003417015076, 1.1540639400482178, -0.2846481502056122, -0.6667328476905823, -0.6626110672950745, 0.1245916336774826, -1.6910208463668823, -0.4491462707519531, -0.3394731879234314, -0.4169805347919464, -0.41331470012664795, 0.3683297038078308, 1.3126320838928223, -0.09191927313804626, 1.088499665260315, -0.17630839347839355, -0.7331674695014954, 0.6981446743011475, -0.41193681955337524, -0.5604050159454346, 0.5553783774375916, 0.28861260414123535, -1.5368411540985107, -0.43417930603027344, 0.8220968246459961, 1.0457346439361572, 0.1505810022354126, 0.3904837667942047, 0.04444074258208275, -0.38443872332572937, -0.476322740316391, -1.3143749237060547, -0.22972002625465393, 0.987112283706665, -0.789290726184845, -0.6452450752258301, 0.17605510354042053, 0.43639448285102844, -0.29311004281044006, 0.4610505998134613, -0.5267753601074219, 0.14721539616584778, 0.712058961391449, -0.5107136964797974, 0.551689624786377, -0.03365836292505264, -0.8916141390800476, -0.47325193881988525, 1.2550605535507202, 0.35744476318359375, 0.13705594837665558, 0.18894675374031067, -0.36801889538764954, 0.47996869683265686, -0.656602144241333, 0.6716965436935425, -0.18614661693572998, -0.3368997871875763, 0.20611831545829773, -0.9724122881889343, 0.4150824248790741, -0.3874381184577942, 0.8176804780960083, 0.4316757619380951, -0.2341962605714798, 0.284974068403244, -0.5387235879898071, -0.04459284991025925, 0.7198988795280457, 0.4967460036277771, -0.02487603947520256, -0.3133886158466339, 0.4647597372531891, -0.021947789937257767, -0.36395788192749023, -0.4883785545825958, 0.3277074098587036, -0.8420222997665405, 1.13540780544281, -0.18760265409946442, -1.1433769464492798, -1.3927172422409058, 0.26111549139022827, 0.25568675994873047, -0.08686655759811401, 2.01450514793396, -0.27779844403266907, -0.3930851221084595, -0.608222484588623, 0.3935544192790985, -0.017510434612631798, 0.17639999091625214, 0.08730684965848923, 0.9106431007385254, -0.019002199172973633, -0.03299471363425255, -0.5130457282066345, -0.9326042532920837, -0.9874203205108643, -0.7320036888122559, 0.012170841917395592, -1.6128066778182983, 0.7923619151115417, -0.31666073203086853, -0.677560567855835, 0.9542128443717957, -0.30893585085868835, -0.960232138633728, -0.0836176797747612, -0.19902649521827698, -0.3462788760662079, -0.839509904384613, -0.349549263715744, -0.3535018265247345, 1.0389586687088013, -0.7906191349029541, 1.1911743879318237, -0.7116585373878479, 0.2751275897026062, 0.7291775941848755, -0.8536421060562134, -0.5460901260375977, 0.8495173454284668, -0.006435702089220285, -2.4916398525238037, 0.8466176986694336, 0.4997144937515259, 0.3435334861278534, -0.6530561447143555, 0.05696411803364754, 0.5157169699668884, 0.011500570923089981, -0.36219605803489685, 0.6821463704109192, -0.6904708743095398, -0.3426227569580078, -1.3176668882369995, -0.002824980765581131, -0.5483747124671936, -1.0192582607269287, -0.43155887722969055, -0.10290376842021942, 0.17031094431877136, -1.2113171815872192, -0.2672673761844635, 0.08051696419715881, 0.04578617587685585, 0.5754444003105164, 0.4452361464500427, 0.33240315318107605, 0.8017204403877258, -0.7389134764671326, -0.34353700280189514, -0.5707578063011169, 0.41583162546157837, 0.7165035605430603, -0.6808513402938843, -0.05755161494016647, 1.619871973991394, 0.14555083215236664, -0.8130474090576172, 1.0597718954086304, -0.5488685965538025, 0.3908342123031616, -0.7714079022407532, -0.6548983454704285, 0.07555128633975983, -0.7264310717582703, 1.107642650604248, 0.3284628391265869, -0.7927704453468323, 1.025253415107727, -0.3818429112434387, -0.04107397049665451, -0.6821574568748474, -0.8296362161636353, -0.7122156023979187, 0.13615810871124268, -0.7802268862724304, -0.0379040353000164, -1.0742682218551636, -0.3413253724575043, 0.8490669131278992, -0.048462290316820145, -0.7310328483581543, 0.10470449179410934, 1.0690172910690308, -0.4977235794067383, 0.9241893887519836, -0.42100778222084045, -0.721024751663208, -0.36429527401924133, 0.01568276807665825, 0.6327409744262695, 0.2649639844894409, 0.04730335623025894, 0.9415105581283569, 0.6766791939735413, 0.666138768196106, 0.28446176648139954, -0.013327628374099731, 0.14285694062709808, 0.20884691178798676, 0.4171483814716339, 0.16037596762180328, 0.28167641162872314, -0.5443587303161621, -0.8842498064041138, -0.44977566599845886, 0.45481982827186584, 1.4293625354766846, 0.8106591701507568, 2.001636028289795, -0.3538072109222412, 0.7315150499343872, -0.5685328245162964, -0.10514726489782333, -0.05593596771359444, -0.7590820789337158, -0.1254206895828247, -0.38496825098991394, -0.3162233531475067, -0.6483535170555115, -0.01464085839688778, 0.36350217461586, 1.0097633600234985, 0.797530472278595, 0.16599591076374054, -0.36963847279548645, -0.988966703414917, -0.6523037552833557, -0.009577635675668716, -0.7282416820526123, 0.14110998809337616, 0.8029180765151978, -1.3758198022842407, 0.3712455928325653, -0.32140663266181946, 0.08839975297451019, 0.7020217180252075, 0.10047955811023712, 0.6151776313781738, -0.9353819489479065, -0.42029818892478943, -0.2281905561685562, 1.006680965423584, 0.6938956379890442, 0.15015265345573425, -0.24751640856266022, 0.4224644601345062, 0.9573764801025391, 0.6116449236869812, -0.48504677414894104, 0.5474849939346313, -0.498453825712204, -0.7446210980415344, -0.07435029745101929, 0.8446359038352966, -0.12090948969125748, -0.2034073770046234, -1.3947088718414307, -0.33211013674736023, 0.00886352825909853, -0.7658243775367737, 0.9693548679351807, 0.28518950939178467, 0.14901335537433624, 0.03484001010656357, -0.0028582923114299774, 1.1068223714828491, -0.18626506626605988, 0.4190515875816345, -0.3178258538246155, 0.8866927623748779, 0.8639748692512512, 1.458834171295166, 0.8542578220367432, -0.05695407837629318, -0.27713513374328613, -1.0832215547561646, -0.029375417158007622, -0.28439509868621826, 0.6748085021972656, 0.27723628282546997, -0.2892736494541168, -0.27125489711761475, 0.07494194060564041, 0.30405011773109436, -0.2504567801952362, 0.6861040592193604, -0.013425055891275406, -0.8005465269088745, -0.3182516098022461, 0.5583019852638245, 0.8666993975639343, -0.86384516954422, -0.5245984792709351, -0.58216792345047, 0.28648465871810913, -0.812355101108551, 0.9446275234222412, -0.7629683613777161, -0.3643644154071808, 0.7829872369766235, -0.9267452955245972, -0.17661312222480774, -0.7425552606582642, -0.5139339566230774, 1.376595139503479, -0.7248768210411072, -0.31510215997695923, -0.34241780638694763, -0.10043132305145264, 1.2278681993484497, 0.5297071933746338, 0.2501112222671509, 0.6302008032798767, -0.34504425525665283, 0.623201310634613, 0.605421245098114, 1.423587679862976, -0.5590534806251526, -0.575392484664917, 0.7877249121665955, -0.16763247549533844, 0.36489808559417725, -1.38785719871521, 0.2886728048324585, -0.16242516040802002, 0.11797663569450378, -0.010274356231093407, 0.5052979588508606, -0.056055858731269836, 1.5636794567108154, 0.6081250309944153, -0.2682819962501526, -0.2887114882469177, -0.23199811577796936, -1.0661123991012573, 0.2559400200843811, 0.5934098958969116, -0.4218578338623047, 0.14268775284290314, 0.3606038987636566, 0.34754231572151184, 0.8449269533157349, 0.304715633392334, -0.026854991912841797, 0.37738317251205444, 0.5042102336883545, -0.49233487248420715, 0.00697360560297966, 0.3381381630897522, 1.6542012691497803, 0.5501418709754944, 0.7896491289138794, -0.5794979929924011, -1.2261531352996826, 0.9951075315475464, -0.28600651025772095, 0.7959651947021484, 0.6992180943489075, 0.36504194140434265, 0.9213886857032776, -1.2338597774505615, 0.19423554837703705, 0.7030105590820312, 0.246579110622406, 0.736757218837738, 0.380108118057251, 0.538990318775177, -1.145833134651184, 0.0152374766767025, 0.1549260914325714, -0.41534724831581116, 0.3948970437049866, 0.46165797114372253, 0.06576195359230042, 0.7639230489730835, -0.5764918327331543, 0.07710324227809906, -1.648314118385315, 0.20470547676086426, 0.0069653186947107315, 0.3475223183631897, 0.46145641803741455, 1.3042480945587158, 0.18034180998802185, 0.5378263592720032, 0.16010673344135284, -1.1927653551101685, 0.16347673535346985, -0.14838841557502747, 0.38440823554992676, 0.23670098185539246, -0.1634225994348526, -0.612572193145752, -0.18288306891918182, -0.18385860323905945, -0.032147713005542755, -0.17297382652759552, -0.35602059960365295, -0.3586941063404083, -0.9555804133415222, 0.4548393487930298, 0.40123575925827026, 0.09949726611375809, -0.10947661846876144, 0.7104361057281494, 0.25431114435195923, 0.4852292239665985, -0.2904488742351532, 0.3881293833255768, 0.3006752133369446, -0.16377699375152588, -0.3503667712211609, -0.6392337679862976, -1.2463122606277466, 0.28220102190971375, 0.6443015336990356, 0.17788401246070862, 0.2511175870895386, 0.5743221044540405, 1.5770220756530762, -1.0561753511428833, -0.7669622302055359, 0.24649040400981903, 0.14257396757602692, 1.0949034690856934, 0.3550463616847992, -0.52896648645401, -0.7276359796524048, -0.11897000670433044, -1.9064475297927856, 0.7034308910369873, 0.0015547946095466614, -0.9428233504295349, 0.42447054386138916, -0.43479642271995544, 0.3147047460079193, 0.5129379034042358, -0.2699089050292969, 0.8315537571907043, 0.048814840614795685, -0.2671114504337311, -0.25756508111953735, 0.4317026138305664, 0.935001790523529, 0.3097771406173706, -0.7839524745941162, 0.4319860637187958, -0.7316486239433289, 0.05506282299757004, 0.014232903718948364, 0.07846984267234802, 0.6054192185401917, -0.052303362637758255, -0.031011318787932396, -0.5403254628181458, 0.40050971508026123, -0.8118345141410828, -0.25468167662620544, -0.4465232789516449, 0.5747270584106445, -0.4501219093799591, -0.11937639117240906, 0.5593444108963013, -0.8740547895431519, 0.3530135452747345, -0.2672605514526367, -0.15408174693584442, 0.40733781456947327, 0.5964620113372803, 0.2581411600112915, 0.8754575848579407, -0.8113047480583191, 0.2040117233991623, -0.8970711827278137, -0.1879212111234665, 1.74175226688385, -0.23256486654281616, -0.14418376982212067, -0.5801430344581604, -0.6934810876846313, 0.1527245044708252, -0.0089262081310153, 0.829702615737915, -0.8098506331443787, -0.9986734986305237, -0.24409401416778564, 0.11246412992477417, 0.6424464583396912, -0.34238243103027344, 1.1921823024749756, 0.4276828169822693, -0.8346397876739502, 0.34232398867607117, -0.1921231597661972, -0.8080695271492004, 0.11406980454921722, -1.2075512409210205, 0.013330037705600262, -0.13568951189517975, -0.014742588624358177, 0.16585730016231537, 1.1036087274551392, -0.5058599710464478, -0.8108305335044861, -1.6427403688430786, -1.1226012706756592, 0.48652228713035583, 1.061918020248413, -1.486225962638855, 0.7746220827102661, -0.5454830527305603, -0.43539726734161377, 0.18818119168281555, -0.2039157599210739, -0.6423664689064026, -0.09775347262620926, -0.004207042045891285, 0.4923465847969055, -0.39338797330856323, 1.500666618347168, 0.6058023571968079, 0.755054771900177, 0.0837126299738884, 1.1730701923370361, -0.8810800909996033, 0.04944106191396713, -0.14365439116954803, 0.5491819977760315, -0.45610231161117554, 0.32048726081848145, 0.3793361783027649, -1.1378636360168457, -0.9400355219841003, 0.0038674166426062584, 0.8268068432807922, -0.7632372379302979, 0.33705252408981323, -0.5277586579322815, -0.8439235091209412, -0.7538160681724548, 0.5494505763053894, -0.6783473491668701, -0.45071354508399963, 0.31017985939979553, -0.8988228440284729, 0.11405280977487564, -0.7416696548461914, 0.13555780053138733, 0.8167011737823486, 0.6049496531486511, -0.8442674875259399, 0.17941021919250488, 0.6609086990356445, 0.5498105883598328, -0.660971462726593, 0.8113663792610168, 0.9814948439598083, -0.3750322759151459, 0.18869858980178833, -0.054408926516771317, -0.3337549567222595, 0.3409557044506073, 0.05108942463994026, -0.49416595697402954, -0.584251344203949, 0.6584997773170471, -0.28482314944267273, -0.3736802339553833, 0.24373821914196014, 0.45054706931114197, 0.2356242686510086, 0.8385589122772217, 1.2844572067260742, -0.8058011531829834, -0.8303534984588623, 0.4421747624874115, 0.2867754101753235, -0.6287636160850525, 0.36147359013557434, 0.11763325333595276, -0.20283326506614685, 0.6197633147239685, 0.7409870028495789, 0.9905840754508972, -0.877409040927887, 1.056943416595459, 0.8128563761711121, -0.09631402790546417, 0.013502966612577438, -0.7574455142021179, -1.5252158641815186, 0.025084298104047775, -0.8481396436691284, -0.3614942729473114, 0.5197179317474365, -0.6779927611351013, -1.155291199684143, 0.3612370789051056, 0.49787554144859314, -0.6118303537368774, 0.10368333011865616, 0.4439774751663208, -0.34319010376930237, -0.6656268239021301, 0.5345122814178467, 0.12548282742500305, 1.414842963218689, -0.24229590594768524, -0.1702704280614853, -0.10014896839857101, -0.1287151426076889, 0.8729179501533508, 0.0042151231318712234, 0.01046384871006012, -0.47255656123161316, 0.5049284100532532, -0.8247079849243164, -1.032953143119812, 0.08976466953754425, -0.6302922368049622, 0.2412123829126358, -0.39803412556648254, -1.1510887145996094, 0.6134921312332153, -0.25196608901023865, -0.24278533458709717, -0.5186403393745422, -1.0409001111984253, -0.4476330280303955, 0.518750786781311, -0.3476535379886627, 0.6172833442687988, 0.3928837776184082, 0.5753346681594849, 0.502104640007019, -1.187046766281128, -1.1124283075332642, -0.6023639440536499, 1.2799714803695679, 0.1297549605369568, 0.03862715885043144, -0.3976326584815979, -0.0070455027744174, -0.10566940903663635, -0.9645292162895203, -0.6689277291297913, -0.35885927081108093, -0.07316020131111145, -0.44424787163734436, -1.1838887929916382, -1.1710861921310425, -0.6496477723121643, 0.9373262524604797, 0.4661363959312439, 0.18193450570106506, 0.4354286789894104, 0.03277387097477913, -1.5379765033721924, -0.0834198072552681, 0.8541207909584045, 0.6543486714363098, 0.5701562762260437, 1.6008515357971191, 0.6572083830833435, -0.10496751219034195, 0.18071435391902924, -0.45644503831863403, 0.2580879330635071, -1.4758729934692383, -0.3804047405719757, -1.0733590126037598, -0.3598095178604126, 0.3436152935028076], [0.5236385464668274, 1.360308051109314, -2.1064836978912354, -0.6354657411575317, 2.2398056983947754, 0.35133498907089233, 0.8467134833335876, 0.02122628502547741, 0.022978205233812332, -0.46203693747520447, -0.5268329977989197, 0.7260488271713257, 0.07380736619234085, 1.027334451675415, 1.0709012746810913, -0.1918269246816635, 0.3144683241844177, 0.47410398721694946, -0.2208956480026245, 0.4054548144340515, -1.187605857849121, -0.25020545721054077, -0.8105477094650269, 0.07799021899700165, -0.09319761395454407, 0.44277942180633545, -0.6988920569419861, 0.011657781898975372, -0.6575709581375122, -0.8736495971679688, 0.8713124990463257, -0.7718655467033386, -0.2111641764640808, 0.7026090621948242, -2.818528652191162, 0.11492414772510529, 1.1540117263793945, -0.34991756081581116, -0.42205968499183655, 0.7654991745948792, 2.386561870574951, -0.07038954645395279, -0.2432853877544403, -1.6595721244812012, -0.41428259015083313, 0.46606776118278503, 0.8769480586051941, -0.7340298295021057, -0.3440254330635071, -0.6288967728614807, 0.337371826171875, -0.16848494112491608, 0.6079452633857727, 0.9441313743591309, 0.6113834381103516, -0.614506185054779, 0.7453787326812744, 0.69645756483078, 0.35643309354782104, 0.08834829926490784, 0.2770269811153412, -0.014469880610704422, -0.7093833684921265, 1.456139326095581, 0.12445637583732605, 0.08849728852510452, -0.6272972226142883, 1.1193214654922485, -0.01790096051990986, -0.26096203923225403, 0.5474594831466675, -0.14623600244522095, -0.5284869074821472, 0.31474512815475464, -0.5485039353370667, 0.585089385509491, 0.6665047407150269, -0.12670409679412842, 0.5460749864578247, 0.44100573658943176, -1.544500708580017, 0.27092474699020386, 0.759875476360321, -0.8746902346611023, 0.8155316114425659, 0.3041548728942871, 0.19297654926776886, -0.6014150977134705, -0.6858000159263611, 1.1492446660995483, 0.5162176489830017, 0.006282164715230465, 0.8524330854415894, -1.0852108001708984, -0.45329615473747253, -0.5068692564964294, -0.17010557651519775, -1.0004994869232178, -1.078535795211792, -0.5149333477020264, -0.7350547909736633, -0.07359989732503891, 0.4212900996208191, 0.5354727506637573, -0.070074163377285, 1.354651927947998, 0.00848774891346693, -0.038235265761613846, -0.1717745065689087, -0.3576394021511078, -0.619818389415741, 0.82734614610672, -0.5223347544670105, -1.2546446323394775, -0.09736451506614685, 0.16218610107898712, 0.9709392786026001, 0.27632540464401245, 0.4275873005390167, 0.9285415410995483, -0.04995773360133171, -0.08661419153213501, -0.7706277966499329, 0.3902297019958496, 0.5723848342895508, -0.10921585559844971, -0.8662375211715698, 0.06834019720554352, 0.4052484333515167, -0.22696621716022491, 0.18289107084274292, -0.20191343128681183, 0.3125187158584595, 1.201368808746338, -0.3001154065132141, 1.0163017511367798, -0.23520183563232422, -1.2383837699890137, 0.34697484970092773, -0.12815570831298828, 0.9484373927116394, -0.4665915369987488, 0.07492238283157349, -1.0673798322677612, 0.18370862305164337, -0.7535752654075623, 0.5314751863479614, -0.5986168384552002, -0.7071989178657532, 0.37156277894973755, -1.290352463722229, 0.5592761039733887, 0.06461955606937408, 1.0309100151062012, 0.46851128339767456, 0.04696503281593323, 0.6101589202880859, 0.27179715037345886, 0.5386374592781067, 0.4471491575241089, 0.5537781715393066, -0.480839341878891, -0.9452015161514282, 0.4750072956085205, 0.15168648958206177, -0.41910508275032043, 0.2588672637939453, 0.3891298770904541, -0.6151265501976013, 0.6066645383834839, -0.41888242959976196, -0.34370774030685425, -1.1381773948669434, 0.3198995590209961, 0.36552590131759644, 0.21749012172222137, 1.3010553121566772, -0.4821985065937042, -1.504940390586853, -0.3798481225967407, 0.667773425579071, 0.4713437557220459, 0.6380557417869568, -0.44403550028800964, 1.0688296556472778, 0.17851881682872772, 0.2537086009979248, 0.1816541701555252, 0.3355221450328827, -1.4656031131744385, -1.2022664546966553, -0.09369204193353653, -0.84006667137146, 0.2641906142234802, 0.2750962972640991, -0.7781802415847778, 0.8034839630126953, -1.0790350437164307, -0.433142751455307, -0.09274856001138687, -0.6307401657104492, -0.8149498105049133, -0.7184069752693176, -0.215783953666687, -0.404665470123291, 0.03040519915521145, -0.5745923519134521, 0.5164651274681091, -0.7850260138511658, -0.515014111995697, 0.7223575711250305, 0.3496658205986023, -0.7838386297225952, 0.7416968941688538, -0.7503350973129272, -0.815594494342804, -0.01913035660982132, 0.44099023938179016, 0.08726246654987335, -0.32793399691581726, 0.19512279331684113, -0.3714796304702759, -0.1436389982700348, -0.5442360639572144, 0.17752200365066528, -0.7555526494979858, -0.1523539125919342, -1.0727006196975708, -0.8913170099258423, -0.13397997617721558, -0.6133823394775391, -2.24301815032959, 0.1935979425907135, 0.37509632110595703, -1.2601635456085205, 0.5219172239303589, 0.23456481099128723, 0.7150493264198303, 0.40014198422431946, 0.7576999664306641, 0.3560519814491272, 1.2417633533477783, -1.029949426651001, 0.5332315564155579, -0.3613349199295044, 0.5942026376724243, 0.8676980137825012, -0.8055075407028198, -0.2839724123477936, 1.1173336505889893, 0.6168757081031799, 0.43739742040634155, 0.7952566742897034, -0.36568543314933777, 0.6553670167922974, -0.7382680177688599, -0.3973621726036072, -0.2664168179035187, -0.38717642426490784, 1.3672791719436646, 0.7693808078765869, -1.213979959487915, 0.08220391720533371, 0.20664972066879272, -0.4757888615131378, -1.329572319984436, 0.012343683280050755, -0.37319472432136536, 0.2378210723400116, -0.4311337172985077, 0.03005911596119404, 0.1538086235523224, 0.07065236568450928, 0.7110568284988403, -0.6758699417114258, -0.24245451390743256, -0.12178265303373337, -0.11798093467950821, 0.6713065505027771, 1.0604990720748901, 0.07491061836481094, -0.08534349501132965, -0.2951118052005768, -0.2290666699409485, 0.6799182295799255, -0.18695829808712006, -0.4601067304611206, 0.7957353591918945, 0.6661871075630188, 0.5448327660560608, -0.10545415431261063, -0.030851993709802628, -1.039777159690857, 0.7909572124481201, 0.13396424055099487, 0.07831670343875885, 0.7724056243896484, -0.7075972557067871, -0.538513720035553, -0.4785347878932953, 0.49176448583602905, 1.1422655582427979, 0.9072715044021606, 1.7582712173461914, 0.38743847608566284, 0.1320769041776657, -0.03850126639008522, -0.29387062788009644, -0.011571270413696766, -0.4104580581188202, -0.7698169946670532, -0.8745054006576538, -0.582543134689331, -0.5254709124565125, 0.5779154896736145, 1.1436830759048462, -0.21093951165676117, 1.0203696489334106, 0.19669322669506073, -0.5397098064422607, -0.7808748483657837, 0.24315237998962402, 0.29897958040237427, -0.538581371307373, -0.03511275723576546, 0.6742207407951355, -1.0565781593322754, 0.07102248817682266, -0.47406041622161865, -0.08387435972690582, 1.5110245943069458, -0.367572158575058, 0.6164736747741699, -1.2056199312210083, -0.5222097635269165, -0.3139193058013916, 1.8513882160186768, 0.5895909667015076, 0.03501307964324951, -0.08795972168445587, 0.3120216131210327, 0.459164559841156, -0.1234966292977333, -0.5149530172348022, 1.0148379802703857, -0.8701804280281067, -1.3400505781173706, -0.4653543531894684, -0.11893964558839798, 0.24650456011295319, -0.7609834671020508, -0.41362765431404114, -0.1296144723892212, -0.1533806174993515, -0.32605770230293274, 0.281502902507782, 0.4062277376651764, 0.1265224814414978, -0.14339853823184967, 0.33261820673942566, 1.4707010984420776, -0.20700019598007202, 0.03795685991644859, -1.1185803413391113, 0.2712724208831787, 0.9178495407104492, 1.391800045967102, 0.5370795130729675, -0.014415188692510128, 0.6769065260887146, 0.05055601894855499, -0.10273896157741547, 0.06155099347233772, 0.6876447200775146, 0.4173707067966461, -0.6238600015640259, -0.3266430199146271, -0.42979419231414795, 0.21972636878490448, 0.42651796340942383, 0.04107752442359924, 0.4207868278026581, -0.5276074409484863, -0.5078483819961548, 0.9750146269798279, 0.46608036756515503, -0.42750313878059387, -1.0317966938018799, -0.12280261516571045, 0.9332637190818787, -0.6617761254310608, 0.07298514246940613, -0.47099316120147705, -0.0009114723652601242, -0.05038733035326004, -0.8508402705192566, -0.5062193870544434, 0.2549193501472473, 0.1228121891617775, 1.3216369152069092, -0.24660691618919373, -0.5339013338088989, -0.020998340100049973, -0.09169432520866394, 0.14903460443019867, 0.26427188515663147, 0.368366539478302, 0.26931118965148926, -0.2562086880207062, -0.44586753845214844, 0.31519895792007446, 1.75105881690979, -0.44018858671188354, -0.30444273352622986, 0.33971625566482544, -0.3393597900867462, 0.19703030586242676, -0.24007022380828857, -0.6001814603805542, -1.1110663414001465, -1.0318522453308105, -0.12160630524158478, -0.148126021027565, -0.0070834169164299965, 1.1705527305603027, 0.346435010433197, 0.12336450070142746, 0.51004958152771, -0.3936198353767395, -0.7903154492378235, 0.3009532690048218, 0.29401248693466187, -0.0309244766831398, -0.10458432137966156, 0.03545863926410675, 0.04439312964677811, -0.32792776823043823, 0.033528655767440796, -0.03951350972056389, 0.564301609992981, 0.21099668741226196, -0.07333289086818695, 0.015082518570125103, 0.49045082926750183, 1.0003693103790283, 0.5908252000808716, 0.8241459727287292, -0.5947383046150208, -1.188289761543274, 0.47035783529281616, -0.590782105922699, 0.17906644940376282, 0.6212950348854065, 0.2456032633781433, 1.1107395887374878, -1.8446705341339111, -0.443183034658432, 0.9035957455635071, -0.17685867846012115, -0.008619315922260284, 0.08959602564573288, 0.6427713632583618, -0.51921546459198, 0.19182640314102173, 1.1746008396148682, 0.35981684923171997, 0.6434780955314636, 0.09194693714380264, 0.6864864230155945, -0.029752492904663086, -0.35230714082717896, -0.43368303775787354, -0.3129272162914276, -0.49327096343040466, 0.21307982504367828, -0.07182144373655319, 0.7487191557884216, 0.8112719058990479, 0.1774783879518509, 1.232588529586792, 0.17736555635929108, -1.3974039554595947, 0.6881212592124939, -0.03045070916414261, -0.3418896198272705, -0.29510053992271423, -0.3669140040874481, -0.5875505208969116, -0.09110986441373825, 0.45267799496650696, -0.09544818103313446, -0.6881634593009949, -0.8081533312797546, 0.013602197170257568, -0.9952343702316284, 0.7465187907218933, 0.3273584842681885, 0.6339572668075562, 0.18035250902175903, 0.677344024181366, 0.5031765699386597, 0.3773674964904785, -0.5015382170677185, -0.11211210489273071, -0.02342192456126213, 0.023241275921463966, -0.026485418900847435, -1.2459872961044312, -0.6617780327796936, -0.37250879406929016, 1.063386082649231, 0.3682079017162323, 0.6277008056640625, 1.4678325653076172, 1.5031228065490723, 0.19538764655590057, -0.5692099332809448, -0.007794308941811323, -0.819538414478302, 0.3759081959724426, 1.032297134399414, -0.3687949776649475, -0.1899193674325943, -1.2197626829147339, -1.3401603698730469, 1.098844289779663, 0.07739760726690292, -1.2922999858856201, 0.03351924568414688, 0.3508945405483246, -0.020059019327163696, 0.8015850186347961, -0.5672829747200012, 0.8114063739776611, -0.10853715240955353, -0.6198859214782715, -0.4922374188899994, 0.5782638788223267, 0.38437941670417786, 0.6488455533981323, -0.9606549739837646, 0.4222724437713623, -0.41760191321372986, -0.3610277473926544, 0.5342822074890137, 0.5803540349006653, 0.9014454483985901, 0.7038854956626892, 0.18855084478855133, 0.26141858100891113, 0.06712663173675537, -1.230820655822754, -0.12806378304958344, -0.8696253895759583, 0.8138936161994934, -0.04636964201927185, 0.19408096373081207, 0.4537937641143799, -0.3340767025947571, -0.599882960319519, -0.3931436538696289, -0.24214564263820648, 0.7694333791732788, 0.7177976369857788, -0.0414360910654068, -0.3270924687385559, -1.1343812942504883, -0.32303357124328613, -0.598696231842041, -0.645254373550415, 1.257407784461975, -0.04564766213297844, 0.054255206137895584, -0.1151890903711319, -0.33683067560195923, 0.6045895218849182, -0.3096936345100403, 0.19577950239181519, -1.5537583827972412, -1.41496741771698, -1.5992432832717896, -0.03046598844230175, 0.36903467774391174, -0.4524988532066345, 0.739200234413147, 0.4643208682537079, -1.1201667785644531, 0.5094641447067261, 0.46918973326683044, -0.9422160983085632, 0.07505287230014801, -1.6070071458816528, 0.5400099754333496, 0.24923181533813477, 0.3516674041748047, -0.06070702150464058, 0.8285034894943237, -1.3337856531143188, -1.665724754333496, -0.11253193765878677, 0.8061877489089966, 0.9338968396186829, 0.5949644446372986, -1.1014726161956787, 1.3011555671691895, 0.37904998660087585, -0.49958112835884094, -0.566996157169342, -0.7322869300842285, -1.1083112955093384, 0.5084869265556335, 0.2525518238544464, 1.4679646492004395, 0.1197291910648346, 1.212135910987854, 0.10129808634519577, 0.29904797673225403, -0.21253077685832977, -0.008436620235443115, -0.4526248276233673, -0.13020087778568268, -0.25569039583206177, 0.807242751121521, -0.7600657939910889, 0.10462763160467148, -0.4484196901321411, -0.9301833510398865, -1.8847217559814453, 0.15699255466461182, 1.1100529432296753, -0.1265123188495636, 0.6664758324623108, 0.2180912047624588, 0.20313340425491333, -1.2425529956817627, -0.00946742482483387, 0.5701170563697815, -0.5040192008018494, -0.23623397946357727, -0.31406518816947937, 0.3398417830467224, -0.20160862803459167, -0.13100673258304596, 0.2456652671098709, 0.2657380998134613, -0.9109857678413391, 0.561719536781311, 0.6558454632759094, -0.49358513951301575, -0.036934178322553635, 1.6420644521713257, 0.9012852907180786, 0.32158201932907104, 0.0036926837638020515, 0.06758607178926468, 0.09133893251419067, 0.42766284942626953, -0.20123116672039032, -0.16064582765102386, 0.172105610370636, 0.41277772188186646, -0.04610600695014, -0.06292254477739334, -0.7289516925811768, -0.20645670592784882, -0.581472635269165, -0.20128493010997772, 0.9572990536689758, -0.31534942984580994, -0.7704252600669861, 0.6215980648994446, -0.422518253326416, -0.20224951207637787, 0.2735438048839569, -0.08787627518177032, -1.196318507194519, 0.09328562021255493, 1.0431530475616455, 0.4897930920124054, -0.5433120131492615, 0.6255139708518982, 0.786110520362854, 0.49365803599357605, 0.07156852632761002, -0.0437922403216362, -2.467313766479492, -0.05075838416814804, -0.6250775456428528, -0.7315633296966553, 1.534791350364685, -0.618178129196167, -0.9448035359382629, 0.24634398519992828, 0.6884818077087402, 0.04620639607310295, 0.5114060044288635, -0.16992081701755524, 0.048910561949014664, -0.2362285703420639, 0.16984006762504578, -0.6589578986167908, 1.3012967109680176, 0.32469815015792847, -0.3490069508552551, -0.10663639008998871, -0.08989717066287994, -0.06482726335525513, 0.09542687982320786, 0.11700110882520676, -0.5447932481765747, 1.1077008247375488, -0.05542979761958122, -1.0799744129180908, 0.16689547896385193, 0.4819898009300232, -0.196913480758667, 0.18493349850177765, -1.2146886587142944, 0.5676136612892151, 0.41591185331344604, 0.3473275303840637, -0.5465077757835388, -0.7777706384658813, -0.9255702495574951, 0.5153918266296387, -1.4222146272659302, 1.3278107643127441, -0.18140438199043274, 1.010912537574768, 0.9282466173171997, -0.5978580117225647, -0.35229799151420593, -0.232144296169281, 0.3290882706642151, 0.254734605550766, 0.2853945791721344, -0.31952977180480957, 0.12779895961284637, 0.19337265193462372, -1.4653526544570923, -0.015508739277720451, -0.5680603384971619, 0.2720169425010681, 0.15964071452617645, -1.4194520711898804, -0.4586980938911438, -0.49348413944244385, -0.03593114763498306, 0.357468843460083, -0.17335891723632812, 0.6534013748168945, 0.13013237714767456, -0.7359965443611145, -0.1928049921989441, 0.3270789384841919, 0.10482560098171234, 0.19117708504199982, 1.6565815210342407, 1.36981201171875, 0.742885172367096, 0.12908843159675598, -0.4639330804347992, 0.5531821250915527, -0.7260738611221313, -0.04404420778155327, -0.5663886070251465, -0.0654616728425026, 0.03749900683760643], [1.0813614130020142, 1.0741063356399536, -2.1841719150543213, -1.4675272703170776, 0.8159412741661072, 0.3631075322628021, -0.19747591018676758, -0.20683521032333374, -0.587999701499939, -0.6780514717102051, -1.1567304134368896, 0.6464138627052307, 0.9291284084320068, 1.2380560636520386, 0.5421227812767029, -0.27281978726387024, 1.2723808288574219, -0.47969314455986023, 0.03784271702170372, 0.6725338697433472, 0.4166320562362671, 0.3202784061431885, -0.4903111755847931, 0.5837584137916565, 0.19369807839393616, 0.6139256358146667, -0.642582356929779, -0.06509296596050262, -0.7319162487983704, -1.6024199724197388, 1.975630283355713, -0.8594670295715332, 0.44709983468055725, 0.015263880603015423, -1.723929762840271, -1.0971615314483643, 0.8217827081680298, 0.4027734696865082, -0.4661429226398468, 1.0263301134109497, 1.1983901262283325, 1.0937302112579346, -0.31987711787223816, -0.9660235643386841, 0.13466601073741913, -0.15696972608566284, -0.4835818111896515, -1.1299059391021729, 0.7776118516921997, -0.4000823497772217, 0.9855343103408813, -0.17568336427211761, 0.1605207920074463, 1.194329857826233, 0.35029366612434387, 0.9189924597740173, -0.022129356861114502, -0.30275610089302063, 0.9836482405662537, -1.036887526512146, 0.9964567422866821, -0.038186654448509216, -0.25842753052711487, 0.5780508518218994, 0.4039110243320465, -0.10671402513980865, 0.0916372761130333, 0.919195830821991, 0.05837177485227585, -0.8575305342674255, 0.9733405113220215, -0.016110321506857872, -0.509006679058075, 1.0424199104309082, -2.040363073348999, 1.203174114227295, 0.2903693914413452, 0.026021631434559822, 0.33537808060646057, 0.715050995349884, -1.07379150390625, -0.06601575016975403, 1.0004304647445679, -0.30367735028266907, 0.4659534692764282, 0.128080353140831, 0.33408987522125244, -0.9839301109313965, -0.3551345765590668, 1.144508719444275, 0.08235950022935867, -0.19944585859775543, 0.6718859076499939, -0.36878702044487, -0.09205997735261917, 0.0107608987018466, 0.4180353581905365, -0.20533429086208344, -0.5773025751113892, -0.7187678217887878, -0.44883549213409424, -0.6344443559646606, 0.1252790093421936, 0.7311960458755493, 0.5453882813453674, 1.1365212202072144, 0.1699099987745285, -0.6595519781112671, -0.563640296459198, 0.1977291852235794, 0.1854156255722046, -0.11302580684423447, -0.2917689383029938, -0.756749153137207, -0.4688706398010254, 0.001314481720328331, 0.3355778753757477, -0.41977426409721375, 1.002120018005371, 1.0791990756988525, -1.0682222843170166, -0.20695345103740692, -0.9641738533973694, 0.018639901652932167, 0.5650526285171509, 0.2512795031070709, -0.17688053846359253, -0.4336300492286682, 0.051704373210668564, 0.0788666158914566, -0.5909593105316162, 0.23260889947414398, -0.14474421739578247, 0.8977960348129272, -0.4841286540031433, 0.7297704815864563, 0.12657694518566132, -0.21835559606552124, 0.7253500819206238, -0.4550948143005371, 0.19933173060417175, -0.08563903719186783, -0.230721116065979, -0.7454130053520203, 0.33470281958580017, 0.03649264946579933, 0.22547708451747894, -0.12635768949985504, -0.7469847202301025, 0.3974056541919708, -0.22758357226848602, 0.6973578333854675, 0.1946399211883545, 0.7898253798484802, -0.6726595759391785, 0.2176247537136078, 0.16620241105556488, 0.02316204272210598, -0.47183850407600403, 0.3506545126438141, 0.23015743494033813, 0.14120593667030334, -1.0498907566070557, 1.0494871139526367, -0.13439638912677765, -0.33706584572792053, 0.07678960263729095, -0.5959458947181702, -0.8597829937934875, 0.4636602997779846, -1.0572388172149658, -0.5284690856933594, -0.17853227257728577, 0.8907692432403564, -0.16179153323173523, 0.15817007422447205, 1.0602972507476807, -1.4805961847305298, -0.7384172677993774, -0.9856827855110168, 0.4047899842262268, -0.9824933409690857, 0.3558770418167114, 0.11795094609260559, 0.5716996788978577, -0.38359346985816956, -0.15488676726818085, -0.192435160279274, 0.04737544432282448, -0.6211857795715332, -1.1909736394882202, 0.15877334773540497, -1.0737746953964233, 0.2720203995704651, 0.20187067985534668, -0.9577038288116455, 0.3492175340652466, -0.5028788447380066, -0.8516145348548889, 0.6306553483009338, -1.0322954654693604, 0.006870364770293236, -0.8937716484069824, -0.39701932668685913, -0.9716134667396545, -0.012151670642197132, -0.3063916862010956, 0.17752620577812195, -0.930140495300293, 0.08647636324167252, 0.8700321316719055, -0.3826391398906708, -0.5450615882873535, 0.6451791524887085, 0.39239302277565, -0.8097158670425415, 0.010231252759695053, 0.9658254981040955, 0.3506411910057068, -0.1838955283164978, 0.831416130065918, 0.45480796694755554, 1.0683825016021729, 0.06836335361003876, 0.024680670350790024, 0.05335491895675659, -1.3405282497406006, -0.5546320080757141, -0.8474419116973877, -0.32934755086898804, -0.4415495693683624, -1.3021224737167358, 0.5718527436256409, 0.8082979917526245, -0.7893651723861694, 0.3964182138442993, -0.30456769466400146, -0.1057780310511589, 0.20203152298927307, 1.1070342063903809, 0.3145109713077545, 0.012166363187134266, -0.6751025915145874, -0.2642221748828888, -0.5824649930000305, 0.3680807948112488, 0.14475680887699127, -0.1753993034362793, -0.10025208443403244, 1.5829523801803589, 0.25835156440734863, -0.3146895170211792, 0.31012552976608276, 0.07542643696069717, 0.3396758437156677, -0.9497696757316589, -0.7071757316589355, 0.43091362714767456, -1.0912877321243286, 0.5262851715087891, 0.465921550989151, -1.7349268198013306, -0.2802334129810333, -0.3536323010921478, -0.17066062986850739, -1.0774505138397217, -0.584027111530304, 0.03667007014155388, 0.306011438369751, -0.5971218943595886, -0.2631906270980835, -0.16008485853672028, -0.06551232188940048, 0.6910786628723145, -0.5969478487968445, -0.3584210276603699, -0.09321989119052887, 0.167107492685318, -0.14737334847450256, 0.4107198417186737, -0.29176267981529236, -1.0246444940567017, -0.23374919593334198, 0.27535462379455566, 0.3367144465446472, -0.1581258326768875, -0.33842799067497253, 0.6036367416381836, 0.4864028990268707, -0.2502608001232147, -0.04586820304393768, 0.059108931571245193, -0.14343073964118958, 0.06884395331144333, 0.6542330384254456, 0.7495844960212708, 0.6178498268127441, 0.1411316841840744, -0.5232410430908203, -0.8497293591499329, 1.3338347673416138, 0.44941893219947815, 0.9053336977958679, 1.4192885160446167, 0.03960263356566429, 0.17308972775936127, -1.3267189264297485, -0.3095510005950928, -0.027507971972227097, -0.8009650707244873, -0.01929321140050888, -0.5199321508407593, 0.0054494584910571575, -0.3512580990791321, -0.014555512927472591, 1.4245193004608154, 0.5093806385993958, 0.6468501091003418, 0.47326138615608215, 0.16855891048908234, -1.2294894456863403, -0.6397153735160828, 0.6765874028205872, -1.1840697526931763, 0.6563746333122253, 0.9361791610717773, -1.0289682149887085, 0.4468483328819275, -1.0999705791473389, -0.11295420676469803, 0.922295331954956, -0.26069921255111694, 0.47554895281791687, -1.0913548469543457, -0.9754443764686584, 0.155738964676857, -0.03270484879612923, 0.43264687061309814, -0.14452214539051056, -0.5306427478790283, 0.39470374584198, 0.5959537029266357, 0.513817548751831, 0.20561055839061737, 0.8536243438720703, -0.3534833788871765, -0.8656007051467896, -0.27502572536468506, 0.7629597187042236, 0.710984468460083, -0.2025994211435318, -0.17984241247177124, -0.34973278641700745, 0.05076112598180771, -0.2694862186908722, 0.7479724884033203, 0.4575484097003937, 0.5143636465072632, 0.4662708640098572, -0.0692678913474083, 0.7169044017791748, -0.1760767549276352, 0.7955005764961243, -1.2322579622268677, 0.4612897038459778, -0.037373606115579605, 1.0534319877624512, 0.08408001810312271, -0.16143739223480225, 0.276845246553421, -0.9990934133529663, 0.4597824811935425, -0.23010586202144623, 0.44805455207824707, 0.02719867043197155, -0.7236944437026978, -0.6393250823020935, -0.17578470706939697, -0.607008695602417, 0.0076480433344841, 0.048773542046546936, -0.30693304538726807, -0.26892971992492676, -1.047514796257019, 1.2568669319152832, 0.2256249338388443, -0.5998278260231018, -0.0044365739449858665, -0.6561869382858276, 0.7138395309448242, -0.3743663728237152, -0.1141929179430008, -0.5055372714996338, -0.05206197872757912, 0.5423229932785034, -1.4535250663757324, -0.6657407879829407, 0.059467609971761703, 0.1174069195985794, -0.3199709951877594, -1.0843608379364014, -0.06733211874961853, 0.2711176574230194, 0.07707862555980682, 0.16739563643932343, 0.15539056062698364, 0.5946862101554871, 0.1787879914045334, 0.07765724509954453, -0.18732793629169464, 0.11349987983703613, 1.10682213306427, -0.4287584125995636, 0.010370587930083275, -0.5388678312301636, -0.5335487723350525, -0.04185974597930908, -0.5516353249549866, 0.31210780143737793, -0.004624612629413605, -0.4551680386066437, 0.10866626352071762, 0.19746184349060059, -0.35386645793914795, 0.8314235210418701, 1.1275944709777832, -0.2336329221725464, 1.2070462703704834, -0.3076385259628296, -0.9987184405326843, 0.7329217195510864, 0.040166135877370834, 0.586833119392395, 0.1984356939792633, 0.04313627630472183, 0.15625235438346863, 0.1547696739435196, 0.6680788397789001, -0.1776355803012848, 0.8295182585716248, 0.29838135838508606, -0.6346609592437744, 0.43684154748916626, 0.24368013441562653, 0.8906379342079163, 1.3114484548568726, 0.34372371435165405, -0.1081017479300499, -0.6161530017852783, 0.857986330986023, 0.06736402958631516, 0.5672180652618408, 0.5790196061134338, 0.4995622932910919, 1.634885311126709, -0.9756720662117004, -0.08811018615961075, 0.3425874710083008, 0.7874347567558289, 0.2916778326034546, 0.48445212841033936, 0.35200798511505127, -0.7221890091896057, 0.6639329791069031, 0.2955537438392639, -0.02918889746069908, 0.20322570204734802, -0.14006567001342773, 0.11328473687171936, 1.1374183893203735, -0.7540345191955566, 0.24061782658100128, 0.22477968037128448, -0.4793075621128082, -0.4162624180316925, 0.26760658621788025, -0.3267305791378021, 0.7393409013748169, -0.06172637641429901, 0.4750202000141144, -0.5454245805740356, -0.5412189364433289, 0.2589989900588989, -0.9903204441070557, 0.43715327978134155, 0.7335132956504822, -1.0199662446975708, -0.5013460516929626, -0.790751576423645, 0.2168796956539154, 0.14159992337226868, -0.4668946862220764, 0.3149414658546448, 0.1897895634174347, -1.1791391372680664, -0.7246169447898865, 0.25115346908569336, 0.29202088713645935, 0.014515450224280357, 0.7848364114761353, 0.8120538592338562, 0.4857115149497986, 0.11876481771469116, 0.5974854230880737, -0.5029386281967163, -0.5511078238487244, 0.38217639923095703, -1.010048747062683, -1.3324649333953857, 0.5570365190505981, 0.6946753263473511, 0.3456868529319763, -0.7698874473571777, 1.260128378868103, 1.796591877937317, -0.7464837431907654, -0.6243771910667419, 0.5204706192016602, -0.33475515246391296, 0.2457306981086731, 0.04396125674247742, -0.5149611234664917, -0.07007484138011932, 0.08581827580928802, -1.4236066341400146, 0.8543826341629028, -0.37206563353538513, -0.9211243391036987, 0.014622525312006474, 0.34571143984794617, 0.7104598879814148, 0.7538201808929443, -0.6455368399620056, 0.5373032689094543, 0.9251338839530945, -0.9453825950622559, -0.9009761810302734, -0.33225908875465393, 0.5550894737243652, 0.7945215702056885, -0.8264460563659668, -0.037114303559064865, -0.23280872404575348, 0.3881952464580536, 0.8001591563224792, 0.6474478244781494, 0.503263533115387, 0.7401400208473206, 0.542378842830658, -1.0879045724868774, -0.3066330552101135, -1.0839139223098755, -0.05915485695004463, 0.1470436155796051, 0.6009569764137268, -0.5775323510169983, -0.19295665621757507, 0.24928230047225952, -0.6350382566452026, -0.1260221153497696, -0.38561543822288513, -0.2763810157775879, 1.0442700386047363, 0.41743984818458557, -0.876121997833252, -0.09316282719373703, -0.1940286010503769, -0.5292131900787354, 0.28462982177734375, -0.46306002140045166, 1.242773175239563, -0.9187269806861877, -0.15822936594486237, 0.1040857657790184, 0.2522019147872925, 0.10817509144544601, 0.13666988909244537, 0.32024651765823364, -0.8330974578857422, -1.6347957849502563, -0.43290528655052185, 0.48647212982177734, 0.6661540865898132, -0.6550412178039551, 0.16953641176223755, 0.53469318151474, -1.5644536018371582, 0.12370231747627258, 0.32055947184562683, -1.0335259437561035, 0.5517011880874634, -0.8280289769172668, 0.5615845322608948, 1.0647259950637817, -0.2794307768344879, 0.15294364094734192, 0.3690865635871887, -0.7064782977104187, -0.4982229471206665, -0.7317252159118652, 0.2604093551635742, 0.7113211750984192, 1.3601619005203247, -0.7880261540412903, 0.8780643343925476, -0.5427061319351196, -0.009807745926082134, 0.5209366679191589, 0.2785959243774414, -0.8886798024177551, -0.16347822546958923, 0.8216776847839355, 0.2569761872291565, -0.12315564602613449, 1.3240946531295776, -0.46443459391593933, 0.7752653956413269, -0.13267500698566437, -0.7415505051612854, -0.1682075411081314, 0.414010226726532, -1.1462032794952393, -0.35164350271224976, -0.797003448009491, -0.6553479433059692, 0.03100016340613365, -0.5281221270561218, -0.6573691368103027, 0.30630257725715637, 0.6566860675811768, -0.5102803111076355, 0.2214348316192627, 0.2970084547996521, -0.5481704473495483, -0.43709418177604675, 0.7727190256118774, -0.47851791977882385, 0.16756638884544373, 0.15359258651733398, -0.660905659198761, 0.40732207894325256, -0.8744989633560181, 0.023588092997670174, 0.1606137901544571, -0.12304449826478958, -0.2538200914859772, 0.6153250932693481, 0.8034124374389648, -0.12115959078073502, -0.5225114226341248, 1.4935259819030762, 1.2491228580474854, -0.10663717240095139, 0.3078490197658539, 0.06873442232608795, -0.27081942558288574, 0.37711772322654724, -0.44475460052490234, -0.8676738739013672, -0.367876261472702, 1.0018415451049805, -0.20371009409427643, -0.08116047829389572, -0.29030510783195496, 0.05126534029841423, -0.41510435938835144, 0.3043607473373413, -0.05724112316966057, -0.10949564725160599, -0.10761695355176926, 0.6145375370979309, 0.10368804633617401, -0.5826621055603027, -0.17236469686031342, 0.11674421280622482, 0.44277530908584595, 0.4139416515827179, 0.018705526366829872, -0.11299854516983032, 0.028990011662244797, 0.7463400363922119, 0.2299705147743225, -0.4016343653202057, 0.28993669152259827, -0.41236749291419983, -1.3489282131195068, -0.003883674740791321, -0.7062160968780518, -0.9122022390365601, 0.5996055603027344, -0.926272451877594, -0.5935683846473694, 0.6197908520698547, -0.023318592458963394, 0.5238885879516602, -0.6311811804771423, 0.1867179572582245, 1.0644103288650513, 0.06051301956176758, 1.5966756343841553, 0.08302832394838333, 0.6307662129402161, 0.7206422686576843, -0.07853754609823227, -0.4048343300819397, -0.8572415709495544, 0.0810447633266449, 0.05995189771056175, 0.04916638135910034, -0.35418736934661865, 0.12588471174240112, -0.09162283688783646, -0.7866196036338806, 0.5175307989120483, 0.559604287147522, 0.2019050121307373, 0.030816011130809784, -1.2185744047164917, 0.32723408937454224, 0.5332979559898376, 0.20379705727100372, -0.868879497051239, -0.17256397008895874, -0.7193610072135925, 0.17695900797843933, 0.20336955785751343, 0.9804989099502563, -0.2934819459915161, 0.6885631680488586, -0.095285564661026, 0.2733718454837799, -0.4362742006778717, -0.4069138765335083, 0.5374575853347778, -0.1653146892786026, 0.26206082105636597, -0.5011754631996155, 0.1918250024318695, -0.41812416911125183, -1.1028636693954468, -0.3362465798854828, 0.42498451471328735, 0.3095274865627289, -0.35795024037361145, -0.4864918887615204, -1.0523381233215332, -0.5996405482292175, 0.7823271155357361, 0.08434851467609406, -0.1015748605132103, 0.8237066864967346, -0.5629622340202332, -0.8102506399154663, 0.7843004465103149, 0.039746079593896866, 0.21244026720523834, 0.29883909225463867, 1.2656272649765015, 1.557538390159607, -0.19318769872188568, 0.2088930606842041, 0.0942218154668808, 0.6467500329017639, -0.7583659887313843, -0.009740293957293034, -0.3740827739238739, 0.8573700785636902, 0.547469973564148], [-0.10803024470806122, 0.3472050130367279, -1.3867559432983398, -1.0013949871063232, 1.597456455230713, -0.9298052191734314, -0.07315647602081299, 0.670966625213623, -0.02409428358078003, 1.162136197090149, -0.25997188687324524, -0.428402304649353, 1.1951543092727661, 0.27344009280204773, 0.7517148852348328, 0.2237693965435028, 1.0960416793823242, 0.045416008681058884, 0.8402508497238159, 0.032512959092855453, -1.4627599716186523, -0.25145280361175537, 0.33117493987083435, 0.32764098048210144, 0.8005227446556091, 0.6139127016067505, -1.2237861156463623, -0.6302927732467651, -1.1066983938217163, -0.8774165511131287, 1.8914517164230347, 0.31684213876724243, -0.797657310962677, -0.9355025291442871, -0.18468111753463745, 0.4271642863750458, 0.7029919028282166, 0.9825591444969177, -0.7912851572036743, 0.8743581175804138, 1.2341363430023193, 1.087899923324585, -0.1871500313282013, -1.7027710676193237, 1.2393203973770142, -0.16143344342708588, 0.987328052520752, -0.4130585789680481, -0.1285114288330078, -0.21157395839691162, 0.12782572209835052, -0.677768886089325, 0.8478555679321289, 0.2959447503089905, 0.6093969941139221, 0.4559969902038574, -0.17566904425621033, -0.8530757427215576, -0.20257999002933502, 0.43130412697792053, 0.7510742545127869, -0.18099752068519592, -1.038081169128418, 0.5232135653495789, -0.6781173348426819, 0.3314359188079834, -0.12061654776334763, 0.38847675919532776, 0.6336339116096497, -0.03308701515197754, 0.8279466032981873, -0.19248992204666138, -0.23073026537895203, 0.8539828062057495, -0.5214794874191284, 0.29605498909950256, 0.4560015797615051, 0.2997639775276184, 0.3916066884994507, 0.2062450796365738, 0.04434359446167946, -0.10835348814725876, 1.119847059249878, -0.004892975091934204, 0.021995991468429565, 0.40838557481765747, 0.6405155658721924, 0.06745569407939911, -0.1323028802871704, 1.5190749168395996, 1.1403635740280151, 0.31906571984291077, 0.0850621908903122, -0.31419190764427185, 0.7196909189224243, 0.934873640537262, 0.23313365876674652, -0.3400534689426422, -0.4114414155483246, -0.7424763441085815, -1.087171196937561, 0.09090027213096619, 0.30901846289634705, -0.02343606948852539, 0.6793044209480286, 0.8344632983207703, 1.0579661130905151, 0.35417455434799194, -0.4751330614089966, -0.9962804913520813, -1.2223002910614014, 0.1255398690700531, -0.580774188041687, -1.1209951639175415, 0.5541894435882568, -0.10253670811653137, 1.1018993854522705, -0.8175908327102661, -0.8393580913543701, 1.0135090351104736, -1.041237235069275, 0.30930832028388977, 0.6970286965370178, 0.8312110900878906, -0.21631433069705963, 0.19453319907188416, -0.20531730353832245, -0.49589356780052185, -0.3795388340950012, -0.9301047325134277, -0.4772548973560333, 0.31446051597595215, 0.508152425289154, 0.13378335535526276, -0.4649444818496704, -0.09066445380449295, -0.5127943158149719, -0.9644066095352173, 0.18074935674667358, -0.004287809133529663, 0.2758325934410095, -0.10123162716627121, -0.32641950249671936, -0.19916968047618866, 0.5300227403640747, 0.20608378946781158, -0.7564029097557068, -0.32194003462791443, -0.29341816902160645, -0.12263057380914688, -0.3718603253364563, 0.1592249572277069, 0.004845976829528809, 1.048187494277954, -0.4284549653530121, -0.6035504341125488, 0.1439710259437561, -0.2281244546175003, -0.15008284151554108, 1.418912410736084, 0.061906810849905014, -0.13941870629787445, -1.5027809143066406, 1.227439522743225, -0.1446765959262848, -0.24108053743839264, 0.835880696773529, -0.0783153623342514, 0.8295822739601135, 0.8171297907829285, -0.8301950693130493, -0.7563303709030151, -0.2328103929758072, 0.5695480704307556, 0.49576178193092346, -0.7093603610992432, 0.7952898144721985, -0.4276755750179291, -0.11777149140834808, -0.41711148619651794, 0.11977604776620865, -0.3495883345603943, 0.577532172203064, 0.1645776480436325, 0.31180521845817566, -0.9853636622428894, 0.2787514626979828, -0.47743678092956543, -0.9081305861473083, -0.08306695520877838, -1.1159409284591675, 0.3445168435573578, -0.6131823658943176, -0.7001240253448486, -0.566990077495575, -0.13600283861160278, 0.7037816643714905, -0.2077304720878601, -0.1053411066532135, -0.5840564966201782, -0.8611083030700684, -0.22133010625839233, -0.5301491022109985, 0.4884866774082184, -0.37121158838272095, 0.4952692687511444, 0.4311913847923279, 0.10725952684879303, -0.6107922792434692, 0.0817239060997963, 0.20438000559806824, -0.1393672078847885, -0.5135073661804199, 0.2583111822605133, -0.062386274337768555, -0.13647353649139404, 0.6852321028709412, -0.16389989852905273, -0.6137983202934265, 0.6341509819030762, 1.0939406156539917, 1.6805838346481323, -0.04644421488046646, -0.344537615776062, -0.17365853488445282, -0.5476399660110474, -0.09951228648424149, -0.782417893409729, 0.5139321088790894, -0.2100631445646286, -0.0710923820734024, -1.5859142541885376, 1.669706106185913, 1.4387277364730835, -1.5188862085342407, -0.8924114108085632, 0.08964221924543381, -0.018279075622558594, -0.19009041786193848, 1.1682825088500977, 0.3288600444793701, 0.1601848006248474, -0.12376569956541061, -0.6145402789115906, -0.6880741715431213, 0.9324814081192017, 1.469198226928711, -0.4112758934497833, 0.37340256571769714, 0.9598979949951172, 0.5274423956871033, -0.15003298223018646, 1.1312400102615356, -0.09333601593971252, -0.12068314105272293, -0.03840792924165726, 0.2465018481016159, -0.20960062742233276, 0.2974281311035156, 0.5298264622688293, 0.5835583209991455, -0.9906521439552307, -0.9484879970550537, 0.21777822077274323, 0.0254561435431242, -0.75403892993927, 0.1018078476190567, -0.22791935503482819, -0.24258260428905487, 0.5588608384132385, 0.21585221588611603, 0.7124587893486023, -0.2448360174894333, 0.15188264846801758, -0.34520140290260315, 0.284130722284317, -0.5874291062355042, -0.30000990629196167, -0.937060534954071, 0.36757171154022217, -0.45807528495788574, -0.20937035977840424, 0.46456268429756165, 0.4449232220649719, 0.6422581672668457, 0.39152792096138, -0.18159794807434082, 0.8298996090888977, 0.8346670866012573, -0.7169370651245117, 0.18017007410526276, 0.7596414089202881, 0.2598196566104889, 0.39794689416885376, 0.5770818591117859, 0.5851110816001892, 0.9602938890457153, -0.8371198177337646, -0.8645694255828857, -0.14600561559200287, 0.5043753385543823, 0.6762139797210693, 0.7445847392082214, 1.5692627429962158, 0.14670535922050476, 0.4047843813896179, -0.29955318570137024, -0.09197773039340973, 1.0923916101455688, -0.5498515963554382, -1.36883544921875, -0.6297406554222107, -0.8030728101730347, -0.1632879674434662, 0.5927854776382446, 0.7269213199615479, -0.32691100239753723, -0.4764820337295532, 0.14436523616313934, -0.5516148209571838, 0.6247249245643616, -0.3464924395084381, -0.42349350452423096, -0.30280688405036926, -0.02068115770816803, 1.09135103225708, -0.7689036130905151, -0.5663332343101501, 0.25942811369895935, -0.5830487012863159, 0.42803776264190674, -0.13617528975009918, 1.901279330253601, -0.3088757395744324, -1.134390950202942, -0.5900744795799255, 0.007220372557640076, 0.8615641593933105, 0.1216689720749855, 0.2357373684644699, -0.018059812486171722, 0.009683946147561073, -0.4080376625061035, -0.7963724732398987, 0.660847544670105, -0.7014608383178711, -0.16184931993484497, -0.10381872951984406, -0.01162794791162014, -0.4838868975639343, -1.1347792148590088, -0.1396559476852417, -0.09749042987823486, -0.4805760085582733, 0.3536263704299927, 0.6989927887916565, -0.16909857094287872, 1.1401946544647217, 0.18073225021362305, -0.4693087339401245, -0.3614281415939331, -0.6893006563186646, -0.6359832286834717, -0.5466911196708679, 1.3625342845916748, 0.7433173060417175, 0.6102838516235352, 0.48529496788978577, 0.34583529829978943, 0.19923223555088043, -0.5845617055892944, -0.3508816957473755, 0.6784693002700806, -0.006585713475942612, -0.1406848132610321, -1.2645795345306396, -0.45277974009513855, -0.11556418240070343, -0.06510362029075623, 0.27387356758117676, 0.16908438503742218, 0.020812075585126877, -0.5640627145767212, 0.022693052887916565, 1.2461168766021729, 0.500819206237793, 0.2285609096288681, -0.4283369779586792, -0.33665144443511963, -0.1810532808303833, -0.34758260846138, 0.573769211769104, -0.5749596357345581, 0.16750460863113403, 0.38593217730522156, -0.02518557570874691, 0.041769180446863174, 0.8056637644767761, -0.2945050299167633, 0.3334181606769562, -1.4116766452789307, -1.1895209550857544, -0.16609348356723785, 0.8111449480056763, 0.019099289551377296, -0.34159716963768005, -0.17293289303779602, -0.4130823612213135, -0.10700157284736633, 0.22056472301483154, -0.16766734421253204, -0.29756227135658264, 0.5098986625671387, -0.23096773028373718, 0.10106872022151947, 1.4043045043945312, 0.4767838418483734, -0.31594058871269226, -0.18595068156719208, 0.3989467918872833, 0.8094147443771362, -1.0115687847137451, -0.2544604539871216, -0.31360602378845215, 0.8565862774848938, 0.23601314425468445, 0.3279257118701935, 0.7347729206085205, 0.6132856607437134, -0.6900837421417236, 0.8119152784347534, 0.6085273027420044, 0.36015966534614563, 0.48074325919151306, -0.20505790412425995, 0.18329574167728424, -0.5554497838020325, -0.11281408369541168, -0.4467746317386627, -0.6314408779144287, -0.23607119917869568, -0.26331520080566406, -1.0279309749603271, -0.25221943855285645, 0.5086572170257568, 0.8471421599388123, -0.08767980337142944, -0.32045501470565796, -0.9631993770599365, 0.5875962972640991, 0.4680434763431549, -0.5377574563026428, 0.2504006028175354, 0.7213531732559204, 1.5051029920578003, -0.45662081241607666, 0.12625201046466827, -0.44876301288604736, 0.07496130466461182, -0.18367940187454224, 0.5839053988456726, 0.360278457403183, -1.048757553100586, 0.351622611284256, -0.5274584293365479, -0.28545212745666504, 0.13164283335208893, 0.7956319451332092, 1.0031068325042725, 0.466185986995697, -0.5337311625480652, 0.13855229318141937, -0.5219939351081848, -0.8297187089920044, -0.7594203352928162, 0.10916180163621902, 0.10970363765954971, 0.33899372816085815, 0.004117108881473541, 1.5897804498672485, -0.6602464318275452, -0.42971935868263245, 0.2793000042438507, -1.254390001296997, 0.23390929400920868, -0.30011221766471863, 0.7180382013320923, -0.12662529945373535, -0.5441002249717712, 0.24227750301361084, -0.4176989197731018, 0.4496128261089325, 0.1916390210390091, 0.4658207893371582, -0.1689179390668869, -0.24575510621070862, 0.5418820977210999, 0.8739117383956909, -0.16664887964725494, -0.027964450418949127, 0.5665596723556519, 1.1837794780731201, -0.09069569408893585, -0.10395780950784683, 0.19623081386089325, 0.17178572714328766, 0.4461663067340851, 0.04133104532957077, -0.8000134825706482, -0.031742535531520844, -0.6163975596427917, -0.8058049082756042, 0.17490467429161072, 0.717471182346344, 0.7233355641365051, -0.4856531023979187, 0.632508397102356, 0.5897984504699707, -0.6401344537734985, 0.2410484105348587, 0.3017038404941559, -0.04607916623353958, 0.11550198495388031, -0.33801504969596863, -1.3354641199111938, 1.4978643655776978, -0.06191682070493698, -0.982734203338623, 0.5058057308197021, 0.30719244480133057, -0.6410292387008667, -0.043716058135032654, -0.8053435683250427, -0.442647248506546, 1.2412723302841187, -0.8722198009490967, -0.9928833842277527, 0.04996838793158531, -0.4664388597011566, 0.585377037525177, -0.7189899682998657, -0.7318633198738098, 0.10542716830968857, 0.6384883522987366, -1.7885401248931885, 0.052639249712228775, -0.09192822873592377, 0.19713804125785828, -0.29576823115348816, 0.2595024108886719, -0.6278185844421387, -0.4125734865665436, -0.4372769892215729, -0.4459678530693054, 0.5474146604537964, -1.0708118677139282, 0.8697524666786194, -0.20798033475875854, 0.023504897952079773, -0.5528010725975037, 0.7056105732917786, -0.26030027866363525, 0.5171338319778442, 0.6855929493904114, -1.3402472734451294, -0.0017471984028816223, 0.3290405869483948, -1.1069139242172241, 0.24133458733558655, 0.511512815952301, 0.2915850579738617, -2.298755645751953, -1.3598226308822632, -0.7677887082099915, 0.4114227890968323, 0.10521525889635086, -0.1108708381652832, 0.08725932985544205, -1.1668559312820435, -1.1268017292022705, -0.5264861583709717, -0.8325028419494629, 0.12818565964698792, 0.8102801442146301, -0.2851441502571106, -0.16373063623905182, -1.1708650588989258, 0.0057720765471458435, -0.0043027363717556, -0.5300033092498779, -0.27697303891181946, -0.8213955760002136, 0.9634449481964111, -0.27715325355529785, 0.9984115958213806, 0.25654736161231995, 0.9573509693145752, -0.18832166492938995, -1.783003330230713, 0.3052951693534851, -0.5018310546875, -0.16634772717952728, 0.36969688534736633, -1.5886564254760742, 0.6805827021598816, -0.35975757241249084, -0.8461042046546936, -0.47136980295181274, 0.5099180340766907, 0.10350655019283295, -0.30822500586509705, 0.1516025960445404, 0.0456978976726532, -0.276780366897583, 0.9917379021644592, 0.05157153308391571, 0.8071220517158508, 0.07118123024702072, 1.0369011163711548, -0.44194626808166504, 0.4902377426624298, -1.2149174213409424, 0.1666260063648224, -1.13372802734375, -0.732029378414154, -0.17003370821475983, -1.233503818511963, -0.1690937578678131, -0.39434051513671875, 0.5694332718849182, -0.21675308048725128, -0.03621402382850647, -0.5672090649604797, -1.2369126081466675, -0.38411441445350647, 0.13190169632434845, -0.3846810460090637, 0.3536974787712097, -0.14243756234645844, 0.042104944586753845, -0.36129042506217957, -0.9234910607337952, -0.3988179862499237, 0.39144983887672424, -0.34933996200561523, -0.7392917275428772, 1.0006052255630493, 0.5835909247398376, 0.2329438328742981, -0.5307384729385376, 0.765368640422821, 1.348490595817566, 0.43578729033470154, -0.09257323294878006, -0.10438999533653259, 0.47601422667503357, 0.6774281859397888, 0.03192742168903351, 0.4607701897621155, -0.14827267825603485, 0.8311569094657898, -0.4158247709274292, -0.7263569831848145, -0.6198006868362427, -0.9136744737625122, 0.48752471804618835, 0.3523443639278412, 0.168767511844635, -0.4492863714694977, 0.23201411962509155, 0.918898344039917, 0.4935806393623352, 0.4994943141937256, -0.03224553167819977, 0.33522164821624756, -0.10162080079317093, 0.338957816362381, 0.4597085416316986, 0.6562201380729675, -0.3718439042568207, 0.32924535870552063, 0.24204391241073608, 0.28452107310295105, -0.3704371154308319, -0.05397750437259674, -1.4487426280975342, -0.07088515907526016, -1.0959362983703613, 0.18680298328399658, 0.44731706380844116, -1.1950945854187012, -0.6476463079452515, -0.7034520506858826, -0.21060946583747864, 0.3325422704219818, 0.37415555119514465, -0.4448671042919159, 0.804550290107727, -0.10209913551807404, 0.36941659450531006, 0.08681356906890869, 0.5478684306144714, -0.15338967740535736, -0.17251597344875336, -0.0783483162522316, -1.170065999031067, 0.4873584508895874, -0.12334025651216507, 0.5293481945991516, -0.7621291279792786, -0.3377223312854767, -0.23052777349948883, -0.7775793671607971, 1.43929123878479, 1.7442326545715332, 0.45273178815841675, -0.5062747597694397, 0.23287178575992584, -0.07881148159503937, 0.8158915042877197, 1.6476668119430542, -0.4998853802680969, -0.3804246783256531, -1.17522394657135, 0.2981271743774414, -0.9635002017021179, 0.32361164689064026, -0.03217312693595886, 1.3228858709335327, -0.056430649012327194, 0.8136886954307556, -0.09308073669672012, -0.7304412722587585, -0.3456195592880249, -0.25690367817878723, 0.7528963088989258, -1.4077025651931763, -0.43597012758255005, 0.5651123523712158, -0.6947013735771179, 0.8877063393592834, -0.23391039669513702, 0.6159376502037048, 0.20393827557563782, -0.10710039734840393, -0.6595228910446167, -1.300212025642395, -0.6338443756103516, 0.37607112526893616, 0.1107223704457283, 0.6898693442344666, -0.9123657941818237, -0.48099485039711, 0.13577139377593994, -0.2159823179244995, 0.09535093605518341, 0.32347390055656433, 1.0419667959213257, 1.0428240299224854, 1.0116685628890991, 0.151570662856102, -0.9761862754821777, 1.0560622215270996, -0.0707591325044632, -0.13335853815078735, 0.06970356404781342, -0.5406243801116943, 0.5455614924430847]], node_map={'5aca51fd-22c4-45c3-b7b3-50ed488de038': Node(page_content='How to Do Great Work\\n\\nJuly 2023\\n\\nIf you collected lists of techniques for doing great work in a lot of different fields, what would the intersection look like? I decided to find out by making it.\\n\\nPartly my goal was to create a guide that could be used by someone working in any field. But I was also curious about the shape of the intersection. And one thing this exercise shows is that it does have a definite shape; it\\'s not just a point labelled \"work hard.\"\\n\\nThe following recipe assumes you\\'re very ambitious.\\n\\nThe first step is to decide what to work on. The work you choose needs to have three qualities: it has to be something you have a natural aptitude for, that you have a deep interest in, and that offers scope to do great work.\\n\\nIn practice you don\\'t have to worry much about the third criterion. Ambitious people are if anything already too conservative about it. So all you need to do is find something you have an aptitude for and great interest in. [1]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5aca51fd-22c4-45c3-b7b3-50ed488de038'), 'ea8d692d-2d93-41a6-b814-721f8a0eba80': Node(page_content='That sounds straightforward, but it\\'s often quite difficult. When you\\'re young you don\\'t know what you\\'re good at or what different kinds of work are like. Some kinds of work you end up doing may not even exist yet. So while some people know what they want to do at 14, most have to figure it out.\\n\\nThe way to figure out what to work on is by working. If you\\'re not sure what to work on, guess. But pick something and get going. You\\'ll probably guess wrong some of the time, but that\\'s fine. It\\'s good to know about multiple things; some of the biggest discoveries come from noticing connections between different fields.\\n\\nDevelop a habit of working on your own projects. Don\\'t let \"work\" mean something other people tell you to do. If you do manage to do great work one day, it will probably be on a project of your own. It may be within some bigger project, but you\\'ll be driving your part of it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ea8d692d-2d93-41a6-b814-721f8a0eba80', wins=1), 'defa86f2-201a-493b-9e51-4c52b6d22f82': Node(page_content=\"What should your projects be? Whatever seems to you excitingly ambitious. As you grow older and your taste in projects evolves, exciting and important will converge. At 7 it may seem excitingly ambitious to build huge things out of Lego, then at 14 to teach yourself calculus, till at 21 you're starting to explore unanswered questions in physics. But always preserve excitingness.\\n\\nThere's a kind of excited curiosity that's both the engine and the rudder of great work. It will not only drive you, but if you let it have its way, will also show you what to work on.\\n\\nWhat are you excessively curious about — curious to a degree that would bore most other people? That's what you're looking for.\\n\\nOnce you've found something you're excessively interested in, the next step is to learn enough about it to get you to one of the frontiers of knowledge. Knowledge expands fractally, and from a distance its edges look smooth, but once you learn enough to get close to one, they turn out to be full of gaps.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='defa86f2-201a-493b-9e51-4c52b6d22f82'), '7a41dd22-0f90-4920-9659-427308ab5374': Node(page_content=\"The next step is to notice them. This takes some skill, because your brain wants to ignore such gaps in order to make a simpler model of the world. Many discoveries have come from asking questions about things that everyone else took for granted. [2]\\n\\nIf the answers seem strange, so much the better. Great work often has a tincture of strangeness. You see this from painting to math. It would be affected to try to manufacture it, but if it appears, embrace it.\\n\\nBoldly chase outlier ideas, even if other people aren't interested in them — in fact, especially if they aren't. If you're excited about some possibility that everyone else ignores, and you have enough expertise to say precisely what they're all overlooking, that's as good a bet as you'll find. [3]\\n\\nFour steps: choose a field, learn enough to get to the frontier, notice gaps, explore promising ones. This is how practically everyone who's done great work has done it, from painters to physicists.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7a41dd22-0f90-4920-9659-427308ab5374'), 'fbe6561c-75ae-48bf-8f1e-285cae90085e': Node(page_content=\"Steps two and four will require hard work. It may not be possible to prove that you have to work hard to do great things, but the empirical evidence is on the scale of the evidence for mortality. That's why it's essential to work on something you're deeply interested in. Interest will drive you to work harder than mere diligence ever could.\\n\\nThe three most powerful motives are curiosity, delight, and the desire to do something impressive. Sometimes they converge, and that combination is the most powerful of all.\\n\\nThe big prize is to discover a new fractal bud. You notice a crack in the surface of knowledge, pry it open, and there's a whole world inside.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='fbe6561c-75ae-48bf-8f1e-285cae90085e'), 'e1a13047-9806-4639-a2a6-9404cfd2b86b': Node(page_content=\"Let's talk a little more about the complicated business of figuring out what to work on. The main reason it's hard is that you can't tell what most kinds of work are like except by doing them. Which means the four steps overlap: you may have to work at something for years before you know how much you like it or how good you are at it. And in the meantime you're not doing, and thus not learning about, most other kinds of work. So in the worst case you choose late based on very incomplete information. [4]\\n\\nThe nature of ambition exacerbates this problem. Ambition comes in two forms, one that precedes interest in the subject and one that grows out of it. Most people who do great work have a mix, and the more you have of the former, the harder it will be to decide what to do.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e1a13047-9806-4639-a2a6-9404cfd2b86b'), 'cd2f5b64-32e8-42f0-ba14-4f22a0d37803': Node(page_content=\"The educational systems in most countries pretend it's easy. They expect you to commit to a field long before you could know what it's really like. And as a result an ambitious person on an optimal trajectory will often read to the system as an instance of breakage.\\n\\nIt would be better if they at least admitted it — if they admitted that the system not only can't do much to help you figure out what to work on, but is designed on the assumption that you'll somehow magically guess as a teenager. They don't tell you, but I will: when it comes to figuring out what to work on, you're on your own. Some people get lucky and do guess correctly, but the rest will find themselves scrambling diagonally across tracks laid down on the assumption that everyone does.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd2f5b64-32e8-42f0-ba14-4f22a0d37803'), 'ed92cc5f-6350-4ac8-9097-605342ed58f1': Node(page_content=\"What should you do if you're young and ambitious but don't know what to work on? What you should not do is drift along passively, assuming the problem will solve itself. You need to take action. But there is no systematic procedure you can follow. When you read biographies of people who've done great work, it's remarkable how much luck is involved. They discover what to work on as a result of a chance meeting, or by reading a book they happen to pick up. So you need to make yourself a big target for luck, and the way to do that is to be curious. Try lots of things, meet lots of people, read lots of books, ask lots of questions. [5]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ed92cc5f-6350-4ac8-9097-605342ed58f1', wins=1), '9dbdc198-e1f6-446b-9b95-bbd6be77492e': Node(page_content=\"When in doubt, optimize for interestingness. Fields change as you learn more about them. What mathematicians do, for example, is very different from what you do in high school math classes. So you need to give different types of work a chance to show you what they're like. But a field should become increasingly interesting as you learn more about it. If it doesn't, it's probably not for you.\\n\\nDon't worry if you find you're interested in different things than other people. The stranger your tastes in interestingness, the better. Strange tastes are often strong ones, and a strong taste for work means you'll be productive. And you're more likely to find new things if you're looking where few have looked before.\\n\\nOne sign that you're suited for some kind of work is when you like even the parts that other people find tedious or frightening.\\n\\nBut fields aren't people; you don't owe them any loyalty. If in the course of working on one thing you discover another that's more exciting, don't be afraid to switch.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dbdc198-e1f6-446b-9b95-bbd6be77492e'), 'ebd76502-a324-4fe9-86db-58b4f1184052': Node(page_content=\"If you're making something for people, make sure it's something they actually want. The best way to do this is to make something you yourself want. Write the story you want to read; build the tool you want to use. Since your friends probably have similar interests, this will also get you your initial audience.\\n\\nThis should follow from the excitingness rule. Obviously the most exciting story to write will be the one you want to read. The reason I mention this case explicitly is that so many people get it wrong. Instead of making what they want, they try to make what some imaginary, more sophisticated audience wants. And once you go down that route, you're lost. [6]\\n\\nThere are a lot of forces that will lead you astray when you're trying to figure out what to work on. Pretentiousness, fashion, fear, money, politics, other people's wishes, eminent frauds. But if you stick to what you find genuinely interesting, you'll be proof against all of them. If you're interested, you're not astray.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebd76502-a324-4fe9-86db-58b4f1184052'), 'bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa': Node(page_content=\"Following your interests may sound like a rather passive strategy, but in practice it usually means following them past all sorts of obstacles. You usually have to risk rejection and failure. So it does take a good deal of boldness.\\n\\nBut while you need boldness, you don't usually need much planning. In most cases the recipe for doing great work is simply: work hard on excitingly ambitious projects, and something good will come of it. Instead of making a plan and then executing it, you just try to preserve certain invariants.\\n\\nThe trouble with planning is that it only works for achievements you can describe in advance. You can win a gold medal or get rich by deciding to as a child and then tenaciously pursuing that goal, but you can't discover natural selection that way.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa'), '2f6da706-f47d-4336-b3f6-78ff254eae9c': Node(page_content='I think for most people who want to do great work, the right strategy is not to plan too much. At each stage do whatever seems most interesting and gives you the best options for the future. I call this approach \"staying upwind.\" This is how most people who\\'ve done great work seem to have done it.\\n\\nEven when you\\'ve found something exciting to work on, working on it is not always straightforward. There will be times when some new idea makes you leap out of bed in the morning and get straight to work. But there will also be plenty of times when things aren\\'t like that.\\n\\nYou don\\'t just put out your sail and get blown forward by inspiration. There are headwinds and currents and hidden shoals. So there\\'s a technique to working, just as there is to sailing.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2f6da706-f47d-4336-b3f6-78ff254eae9c'), '29ad26ae-8a90-4634-aff2-b4f662e421e0': Node(page_content=\"For example, while you must work hard, it's possible to work too hard, and if you do that you'll find you get diminishing returns: fatigue will make you stupid, and eventually even damage your health. The point at which work yields diminishing returns depends on the type. Some of the hardest types you might only be able to do for four or five hours a day.\\n\\nIdeally those hours will be contiguous. To the extent you can, try to arrange your life so you have big blocks of time to work in. You'll shy away from hard tasks if you know you might be interrupted.\\n\\nIt will probably be harder to start working than to keep working. You'll often have to trick yourself to get over that initial threshold. Don't worry about this; it's the nature of work, not a flaw in your character. Work has a sort of activation energy, both per day and per project. And since this threshold is fake in the sense that it's higher than the energy required to keep going, it's ok to tell yourself a lie of corresponding magnitude to get over it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='29ad26ae-8a90-4634-aff2-b4f662e421e0'), 'cd668cf0-3881-44b4-ad84-628203f14f72': Node(page_content='It\\'s usually a mistake to lie to yourself if you want to do great work, but this is one of the rare cases where it isn\\'t. When I\\'m reluctant to start work in the morning, I often trick myself by saying \"I\\'ll just read over what I\\'ve got so far.\" Five minutes later I\\'ve found something that seems mistaken or incomplete, and I\\'m off.\\n\\nSimilar techniques work for starting new projects. It\\'s ok to lie to yourself about how much work a project will entail, for example. Lots of great things began with someone saying \"How hard could it be?\"\\n\\nThis is one case where the young have an advantage. They\\'re more optimistic, and even though one of the sources of their optimism is ignorance, in this case ignorance can sometimes beat knowledge.\\n\\nTry to finish what you start, though, even if it turns out to be more work than you expected. Finishing things is not just an exercise in tidiness or self-discipline. In many projects a lot of the best work happens in what was meant to be the final stage.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd668cf0-3881-44b4-ad84-628203f14f72'), '25f94528-87d2-4c1a-9f75-3670e66aefd6': Node(page_content=\"Another permissible lie is to exaggerate the importance of what you're working on, at least in your own mind. If that helps you discover something new, it may turn out not to have been a lie after all. [7]\\n\\nSince there are two senses of starting work — per day and per project — there are also two forms of procrastination. Per-project procrastination is far the more dangerous. You put off starting that ambitious project from year to year because the time isn't quite right. When you're procrastinating in units of years, you can get a lot not done. [8]\\n\\nOne reason per-project procrastination is so dangerous is that it usually camouflages itself as work. You're not just sitting around doing nothing; you're working industriously on something else. So per-project procrastination doesn't set off the alarms that per-day procrastination does. You're too busy to notice it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='25f94528-87d2-4c1a-9f75-3670e66aefd6'), '7fae8eb9-3a0f-4651-9d30-3973508310f4': Node(page_content=\"The way to beat it is to stop occasionally and ask yourself: Am I working on what I most want to work on? When you're young it's ok if the answer is sometimes no, but this gets increasingly dangerous as you get older. [9]\\n\\nGreat work usually entails spending what would seem to most people an unreasonable amount of time on a problem. You can't think of this time as a cost, or it will seem too high. You have to find the work sufficiently engaging as it's happening.\\n\\nThere may be some jobs where you have to work diligently for years at things you hate before you get to the good part, but this is not how great work happens. Great work happens by focusing consistently on something you're genuinely interested in. When you pause to take stock, you're surprised how far you've come.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7fae8eb9-3a0f-4651-9d30-3973508310f4'), '1f84089c-1ae3-4652-9f00-ba02164c24d3': Node(page_content=\"The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='1f84089c-1ae3-4652-9f00-ba02164c24d3', wins=1), '857bbce1-c4c8-4095-b9ac-c988d50addfc': Node(page_content=\"Something that grows exponentially can become so valuable that it's worth making an extraordinary effort to get it started. But since we underrate exponential growth early on, this too is mostly done unconsciously: people push through the initial, unrewarding phase of learning something new because they know from experience that learning new things always takes an initial push, or they grow their audience one fan at a time because they have nothing better to do. If people consciously realized they could invest in exponential growth, many more would do it.\\n\\nWork doesn't just happen when you're trying to. There's a kind of undirected thinking you do when walking or taking a shower or lying in bed that can be very powerful. By letting your mind wander a little, you'll often solve problems you were unable to solve by frontal attack.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='857bbce1-c4c8-4095-b9ac-c988d50addfc'), 'f41b7677-9e6c-46e2-92fd-993606e5835e': Node(page_content=\"You have to be working hard in the normal way to benefit from this phenomenon, though. You can't just walk around daydreaming. The daydreaming has to be interleaved with deliberate work that feeds it questions. [10]\\n\\nEveryone knows to avoid distractions at work, but it's also important to avoid them in the other half of the cycle. When you let your mind wander, it wanders to whatever you care about most at that moment. So avoid the kind of distraction that pushes your work out of the top spot, or you'll waste this valuable type of thinking on the distraction instead. (Exception: Don't avoid love.)\\n\\nConsciously cultivate your taste in the work done in your field. Until you know which is the best and what makes it so, you don't know what you're aiming for.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f41b7677-9e6c-46e2-92fd-993606e5835e'), '4cb188bc-4106-4204-a6c7-ea3752f34543': Node(page_content=\"And that is what you're aiming for, because if you don't try to be the best, you won't even be good. This observation has been made by so many people in so many different fields that it might be worth thinking about why it's true. It could be because ambition is a phenomenon where almost all the error is in one direction — where almost all the shells that miss the target miss by falling short. Or it could be because ambition to be the best is a qualitatively different thing from ambition to be good. Or maybe being good is simply too vague a standard. Probably all three are true. [11]\\n\\nFortunately there's a kind of economy of scale here. Though it might seem like you'd be taking on a heavy burden by trying to be the best, in practice you often end up net ahead. It's exciting, and also strangely liberating. It simplifies things. In some ways it's easier to try to be the best than to try merely to be good.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cb188bc-4106-4204-a6c7-ea3752f34543'), 'b2c1b809-e821-452c-a352-4b82293e0d98': Node(page_content=\"One way to aim high is to try to make something that people will care about in a hundred years. Not because their opinions matter more than your contemporaries', but because something that still seems good in a hundred years is more likely to be genuinely good.\\n\\nDon't try to work in a distinctive style. Just try to do the best job you can; you won't be able to help doing it in a distinctive way.\\n\\nStyle is doing things in a distinctive way without trying to. Trying to is affectation.\\n\\nAffectation is in effect to pretend that someone other than you is doing the work. You adopt an impressive but fake persona, and while you're pleased with the impressiveness, the fakeness is what shows in the work. [12]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b2c1b809-e821-452c-a352-4b82293e0d98'), 'a49d877b-69b4-4171-880a-9931fd094a4d': Node(page_content='The temptation to be someone else is greatest for the young. They often feel like nobodies. But you never need to worry about that problem, because it\\'s self-solving if you work on sufficiently ambitious projects. If you succeed at an ambitious project, you\\'re not a nobody; you\\'re the person who did it. So just do the work and your identity will take care of itself.\\n\\n\"Avoid affectation\" is a useful rule so far as it goes, but how would you express this idea positively? How would you say what to be, instead of what not to be? The best answer is earnest. If you\\'re earnest you avoid not just affectation but a whole set of similar vices.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='a49d877b-69b4-4171-880a-9931fd094a4d'), '88e2775e-93a9-47b0-a512-2fb4080c590b': Node(page_content=\"The core of being earnest is being intellectually honest. We're taught as children to be honest as an unselfish virtue — as a kind of sacrifice. But in fact it's a source of power too. To see new ideas, you need an exceptionally sharp eye for the truth. You're trying to see more truth than others have seen so far. And how can you have a sharp eye for the truth if you're intellectually dishonest?\\n\\nOne way to avoid intellectual dishonesty is to maintain a slight positive pressure in the opposite direction. Be aggressively willing to admit that you're mistaken. Once you've admitted you were mistaken about something, you're free. Till then you have to carry it. [13]\\n\\nAnother more subtle component of earnestness is informality. Informality is much more important than its grammatically negative name implies. It's not merely the absence of something. It means focusing on what matters instead of what doesn't.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88e2775e-93a9-47b0-a512-2fb4080c590b', wins=2), '6546e3fd-326b-413e-a345-374e27163847': Node(page_content='What formality and affectation have in common is that as well as doing the work, you\\'re trying to seem a certain way as you\\'re doing it. But any energy that goes into how you seem comes out of being good. That\\'s one reason nerds have an advantage in doing great work: they expend little effort on seeming anything. In fact that\\'s basically the definition of a nerd.\\n\\nNerds have a kind of innocent boldness that\\'s exactly what you need in doing great work. It\\'s not learned; it\\'s preserved from childhood. So hold onto it. Be the one who puts things out there rather than the one who sits back and offers sophisticated-sounding criticisms of them. \"It\\'s easy to criticize\" is true in the most literal sense, and the route to great work is never easy.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6546e3fd-326b-413e-a345-374e27163847'), '531a5c72-e191-4563-863a-a797751b1fc6': Node(page_content=\"There may be some jobs where it's an advantage to be cynical and pessimistic, but if you want to do great work it's an advantage to be optimistic, even though that means you'll risk looking like a fool sometimes. There's an old tradition of doing the opposite. The Old Testament says it's better to keep quiet lest you look like a fool. But that's advice for seeming smart. If you actually want to discover new things, it's better to take the risk of telling people your ideas.\\n\\nSome people are naturally earnest, and with others it takes a conscious effort. Either kind of earnestness will suffice. But I doubt it would be possible to do great work without being earnest. It's so hard to do even if you are. You don't have enough margin for error to accommodate the distortions introduced by being affected, intellectually dishonest, orthodox, fashionable, or cool. [14]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='531a5c72-e191-4563-863a-a797751b1fc6', wins=1), 'c333306a-d7e5-4c78-b4ce-bebcee166ce5': Node(page_content=\"Great work is consistent not only with who did it, but with itself. It's usually all of a piece. So if you face a decision in the middle of working on something, ask which choice is more consistent.\\n\\nYou may have to throw things away and redo them. You won't necessarily have to, but you have to be willing to. And that can take some effort; when there's something you need to redo, status quo bias and laziness will combine to keep you in denial about it. To beat this ask: If I'd already made the change, would I want to revert to what I have now?\\n\\nHave the confidence to cut. Don't keep something that doesn't fit just because you're proud of it, or because it cost you a lot of effort.\\n\\nIndeed, in some kinds of work it's good to strip whatever you're doing to its essence. The result will be more concentrated; you'll understand it better; and you won't be able to lie to yourself about whether there's anything real there.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c333306a-d7e5-4c78-b4ce-bebcee166ce5'), 'c75308b1-0b08-4e09-a009-df856bef3945': Node(page_content='Mathematical elegance may sound like a mere metaphor, drawn from the arts. That\\'s what I thought when I first heard the term \"elegant\" applied to a proof. But now I suspect it\\'s conceptually prior — that the main ingredient in artistic elegance is mathematical elegance. At any rate it\\'s a useful standard well beyond math.\\n\\nElegance can be a long-term bet, though. Laborious solutions will often have more prestige in the short term. They cost a lot of effort and they\\'re hard to understand, both of which impress people, at least temporarily.\\n\\nWhereas some of the very best work will seem like it took comparatively little effort, because it was in a sense already there. It didn\\'t have to be built, just seen. It\\'s a very good sign when it\\'s hard to say whether you\\'re creating something or discovering it.\\n\\nWhen you\\'re doing work that could be seen as either creation or discovery, err on the side of discovery. Try thinking of yourself as a mere conduit through which the ideas take their natural shape.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c75308b1-0b08-4e09-a009-df856bef3945', wins=1), '4f2c5ade-5e17-4002-a1a4-2187f5d88171': Node(page_content=\"(Strangely enough, one exception is the problem of choosing a problem to work on. This is usually seen as search, but in the best case it's more like creating something. In the best case you create the field in the process of exploring it.)\\n\\nSimilarly, if you're trying to build a powerful tool, make it gratuitously unrestrictive. A powerful tool almost by definition will be used in ways you didn't expect, so err on the side of eliminating restrictions, even if you don't know what the benefit will be.\\n\\nGreat work will often be tool-like in the sense of being something others build on. So it's a good sign if you're creating ideas that others could use, or exposing questions that others could answer. The best ideas have implications in many different areas.\\n\\nIf you express your ideas in the most general form, they'll be truer than you intended.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4f2c5ade-5e17-4002-a1a4-2187f5d88171'), '599933be-8cc7-47b3-9079-771faeffc324': Node(page_content='True by itself is not enough, of course. Great ideas have to be true and new. And it takes a certain amount of ability to see new ideas even once you\\'ve learned enough to get to one of the frontiers of knowledge.\\n\\nIn English we give this ability names like originality, creativity, and imagination. And it seems reasonable to give it a separate name, because it does seem to some extent a separate skill. It\\'s possible to have a great deal of ability in other respects — to have a great deal of what\\'s often called \"technical ability\" — and yet not have much of this.\\n\\nI\\'ve never liked the term \"creative process.\" It seems misleading. Originality isn\\'t a process, but a habit of mind. Original thinkers throw off new ideas about whatever they focus on, like an angle grinder throwing off sparks. They can\\'t help it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='599933be-8cc7-47b3-9079-771faeffc324'), 'df268d9c-bb83-4274-adec-131a05765453': Node(page_content=\"If the thing they're focused on is something they don't understand very well, these new ideas might not be good. One of the most original thinkers I know decided to focus on dating after he got divorced. He knew roughly as much about dating as the average 15 year old, and the results were spectacularly colorful. But to see originality separated from expertise like that made its nature all the more clear.\\n\\nI don't know if it's possible to cultivate originality, but there are definitely ways to make the most of however much you have. For example, you're much more likely to have original ideas when you're working on something. Original ideas don't come from trying to have original ideas. They come from trying to build or understand something slightly too difficult. [15]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='df268d9c-bb83-4274-adec-131a05765453'), '7390fd94-b307-468e-9888-4ba2fc15eb38': Node(page_content=\"Talking or writing about the things you're interested in is a good way to generate new ideas. When you try to put ideas into words, a missing idea creates a sort of vacuum that draws it out of you. Indeed, there's a kind of thinking that can only be done by writing.\\n\\nChanging your context can help. If you visit a new place, you'll often find you have new ideas there. The journey itself often dislodges them. But you may not have to go far to get this benefit. Sometimes it's enough just to go for a walk. [16]\\n\\nIt also helps to travel in topic space. You'll have more new ideas if you explore lots of different topics, partly because it gives the angle grinder more surface area to work on, and partly because analogies are an especially fruitful source of new ideas.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7390fd94-b307-468e-9888-4ba2fc15eb38'), '9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b': Node(page_content=\"Don't divide your attention evenly between many topics though, or you'll spread yourself too thin. You want to distribute it according to something more like a power law. [17] Be professionally curious about a few topics and idly curious about many more.\\n\\nCuriosity and originality are closely related. Curiosity feeds originality by giving it new things to work on. But the relationship is closer than that. Curiosity is itself a kind of originality; it's roughly to questions what originality is to answers. And since questions at their best are a big component of answers, curiosity at its best is a creative force.\\n\\nHaving new ideas is a strange game, because it usually consists of seeing things that were right under your nose. Once you've seen a new idea, it tends to seem obvious. Why did no one think of this before?\\n\\nWhen an idea seems simultaneously novel and obvious, it's probably a good one.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b'), '6f83f951-f81a-4afc-9dbc-91e43bbaea88': Node(page_content=\"Seeing something obvious sounds easy. And yet empirically having new ideas is hard. What's the source of this apparent contradiction? It's that seeing the new idea usually requires you to change the way you look at the world. We see the world through models that both help and constrain us. When you fix a broken model, new ideas become obvious. But noticing and fixing a broken model is hard. That's how new ideas can be both obvious and yet hard to discover: they're easy to see after you do something hard.\\n\\nOne way to discover broken models is to be stricter than other people. Broken models of the world leave a trail of clues where they bash against reality. Most people don't want to see these clues. It would be an understatement to say that they're attached to their current model; it's what they think in; so they'll tend to ignore the trail of clues left by its breakage, however conspicuous it may seem in retrospect.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6f83f951-f81a-4afc-9dbc-91e43bbaea88', wins=1), 'c9a8c206-a7da-456c-82a6-635ab33aa7b3': Node(page_content=\"To find new ideas you have to seize on signs of breakage instead of looking away. That's what Einstein did. He was able to see the wild implications of Maxwell's equations not so much because he was looking for new ideas as because he was stricter.\\n\\nThe other thing you need is a willingness to break rules. Paradoxical as it sounds, if you want to fix your model of the world, it helps to be the sort of person who's comfortable breaking rules. From the point of view of the old model, which everyone including you initially shares, the new model usually breaks at least implicit rules.\\n\\nFew understand the degree of rule-breaking required, because new ideas seem much more conservative once they succeed. They seem perfectly reasonable once you're using the new model of the world they brought with them. But they didn't at the time; it took the greater part of a century for the heliocentric model to be generally accepted, even among astronomers, because it felt so wrong.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c9a8c206-a7da-456c-82a6-635ab33aa7b3'), 'f5be2dd9-c85c-418c-a716-eb0b78880cae': Node(page_content=\"Indeed, if you think about it, a good new idea has to seem bad to most people, or someone would have already explored it. So what you're looking for is ideas that seem crazy, but the right kind of crazy. How do you recognize these? You can't with certainty. Often ideas that seem bad are bad. But ideas that are the right kind of crazy tend to be exciting; they're rich in implications; whereas ideas that are merely bad tend to be depressing.\\n\\nThere are two ways to be comfortable breaking rules: to enjoy breaking them, and to be indifferent to them. I call these two cases being aggressively and passively independent-minded.\\n\\nThe aggressively independent-minded are the naughty ones. Rules don't merely fail to stop them; breaking rules gives them additional energy. For this sort of person, delight at the sheer audacity of a project sometimes supplies enough activation energy to get it started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f5be2dd9-c85c-418c-a716-eb0b78880cae'), 'e2362524-ba22-4fb7-8c77-d289a352850b': Node(page_content=\"The other way to break rules is not to care about them, or perhaps even to know they exist. This is why novices and outsiders often make new discoveries; their ignorance of a field's assumptions acts as a source of temporary passive independent-mindedness. Aspies also seem to have a kind of immunity to conventional beliefs. Several I know say that this helps them to have new ideas.\\n\\nStrictness plus rule-breaking sounds like a strange combination. In popular culture they're opposed. But popular culture has a broken model in this respect. It implicitly assumes that issues are trivial ones, and in trivial matters strictness and rule-breaking are opposed. But in questions that really matter, only rule-breakers can be truly strict.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2362524-ba22-4fb7-8c77-d289a352850b'), '018ff54f-2f81-408b-8b62-20443ab66da9': Node(page_content=\"An overlooked idea often doesn't lose till the semifinals. You do see it, subconsciously, but then another part of your subconscious shoots it down because it would be too weird, too risky, too much work, too controversial. This suggests an exciting possibility: if you could turn off such filters, you could see more new ideas.\\n\\nOne way to do that is to ask what would be good ideas for someone else to explore. Then your subconscious won't shoot them down to protect you.\\n\\nYou could also discover overlooked ideas by working in the other direction: by starting from what's obscuring them. Every cherished but mistaken principle is surrounded by a dead zone of valuable ideas that are unexplored because they contradict it.\\n\\nReligions are collections of cherished but mistaken principles. So anything that can be described either literally or metaphorically as a religion will have valuable unexplored ideas in its shadow. Copernicus and Darwin both made discoveries of this type. [18]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='018ff54f-2f81-408b-8b62-20443ab66da9'), '88ff37b8-75c7-48aa-9441-f8cba80464b1': Node(page_content=\"What are people in your field religious about, in the sense of being too attached to some principle that might not be as self-evident as they think? What becomes possible if you discard it?\\n\\nPeople show much more originality in solving problems than in deciding which problems to solve. Even the smartest can be surprisingly conservative when deciding what to work on. People who'd never dream of being fashionable in any other way get sucked into working on fashionable problems.\\n\\nOne reason people are more conservative when choosing problems than solutions is that problems are bigger bets. A problem could occupy you for years, while exploring a solution might only take days. But even so I think most people are too conservative. They're not merely responding to risk, but to fashion as well. Unfashionable problems are undervalued.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88ff37b8-75c7-48aa-9441-f8cba80464b1'), '963e48ca-37ea-4002-b0b2-78fa521f3597': Node(page_content=\"One of the most interesting kinds of unfashionable problem is the problem that people think has been fully explored, but hasn't. Great work often takes something that already exists and shows its latent potential. Durer and Watt both did this. So if you're interested in a field that others think is tapped out, don't let their skepticism deter you. People are often wrong about this.\\n\\nWorking on an unfashionable problem can be very pleasing. There's no hype or hurry. Opportunists and critics are both occupied elsewhere. The existing work often has an old-school solidity. And there's a satisfying sense of economy in cultivating ideas that would otherwise be wasted.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='963e48ca-37ea-4002-b0b2-78fa521f3597'), '263b1659-4c96-4db0-a5b9-6e766bc7a928': Node(page_content='But the most common type of overlooked problem is not explicitly unfashionable in the sense of being out of fashion. It just doesn\\'t seem to matter as much as it actually does. How do you find these? By being self-indulgent — by letting your curiosity have its way, and tuning out, at least temporarily, the little voice in your head that says you should only be working on \"important\" problems.\\n\\nYou do need to work on important problems, but almost everyone is too conservative about what counts as one. And if there\\'s an important but overlooked problem in your neighborhood, it\\'s probably already on your subconscious radar screen. So try asking yourself: if you were going to take a break from \"serious\" work to work on something just because it would be really interesting, what would you do? The answer is probably more important than it seems.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='263b1659-4c96-4db0-a5b9-6e766bc7a928', wins=2), 'f3a439f9-a726-4007-90d3-d7e4ac34c811': Node(page_content=\"Originality in choosing problems seems to matter even more than originality in solving them. That's what distinguishes the people who discover whole new fields. So what might seem to be merely the initial step — deciding what to work on — is in a sense the key to the whole game.\\n\\nFew grasp this. One of the biggest misconceptions about new ideas is about the ratio of question to answer in their composition. People think big ideas are answers, but often the real insight was in the question.\\n\\nPart of the reason we underrate questions is the way they're used in schools. In schools they tend to exist only briefly before being answered, like unstable particles. But a really good question can be much more than that. A really good question is a partial discovery. How do new species arise? Is the force that makes objects fall to earth the same as the one that keeps planets in their orbits? By even asking such questions you were already in excitingly novel territory.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f3a439f9-a726-4007-90d3-d7e4ac34c811'), 'ac0c284a-93cc-4f20-8f95-644471bc59e2': Node(page_content=\"Unanswered questions can be uncomfortable things to carry around with you. But the more you're carrying, the greater the chance of noticing a solution — or perhaps even more excitingly, noticing that two unanswered questions are the same.\\n\\nSometimes you carry a question for a long time. Great work often comes from returning to a question you first noticed years before — in your childhood, even — and couldn't stop thinking about. People talk a lot about the importance of keeping your youthful dreams alive, but it's just as important to keep your youthful questions alive. [19]\\n\\nThis is one of the places where actual expertise differs most from the popular picture of it. In the popular picture, experts are certain. But actually the more puzzled you are, the better, so long as (a) the things you're puzzled about matter, and (b) no one else understands them either.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ac0c284a-93cc-4f20-8f95-644471bc59e2'), '43d899d8-1f03-4594-89b0-c8d98a5b6feb': Node(page_content=\"Think about what's happening at the moment just before a new idea is discovered. Often someone with sufficient expertise is puzzled about something. Which means that originality consists partly of puzzlement — of confusion! You have to be comfortable enough with the world being full of puzzles that you're willing to see them, but not so comfortable that you don't want to solve them. [20]\\n\\nIt's a great thing to be rich in unanswered questions. And this is one of those situations where the rich get richer, because the best way to acquire new questions is to try answering existing ones. Questions don't just lead to answers, but also to more questions.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='43d899d8-1f03-4594-89b0-c8d98a5b6feb'), '36d31bd1-f966-4b1b-97de-447c6e1a6413': Node(page_content=\"The best questions grow in the answering. You notice a thread protruding from the current paradigm and try pulling on it, and it just gets longer and longer. So don't require a question to be obviously big before you try answering it. You can rarely predict that. It's hard enough even to notice the thread, let alone to predict how much will unravel if you pull on it.\\n\\nIt's better to be promiscuously curious — to pull a little bit on a lot of threads, and see what happens. Big things start small. The initial versions of big things were often just experiments, or side projects, or talks, which then grew into something bigger. So start lots of small things.\\n\\nBeing prolific is underrated. The more different things you try, the greater the chance of discovering something new. Understand, though, that trying lots of things will mean trying lots of things that don't work. You can't have a lot of good ideas without also having a lot of bad ones. [21]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='36d31bd1-f966-4b1b-97de-447c6e1a6413'), '2351f0d2-96fe-4a21-845f-11bf4e69dbd6': Node(page_content=\"Though it sounds more responsible to begin by studying everything that's been done before, you'll learn faster and have more fun by trying stuff. And you'll understand previous work better when you do look at it. So err on the side of starting. Which is easier when starting means starting small; those two ideas fit together like two puzzle pieces.\\n\\nHow do you get from starting small to doing something great? By making successive versions. Great things are almost always made in successive versions. You start with something small and evolve it, and the final version is both cleverer and more ambitious than anything you could have planned.\\n\\nIt's particularly useful to make successive versions when you're making something for people — to get an initial version in front of them quickly, and then evolve it based on their response.\\n\\nBegin by trying the simplest thing that could possibly work. Surprisingly often, it does. If it doesn't, this will at least get you started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2351f0d2-96fe-4a21-845f-11bf4e69dbd6'), '55306b2a-343d-4e44-8b24-25e471975cd3': Node(page_content='Don\\'t try to cram too much new stuff into any one version. There are names for doing this with the first version (taking too long to ship) and the second (the second system effect), but these are both merely instances of a more general principle.\\n\\nAn early version of a new project will sometimes be dismissed as a toy. It\\'s a good sign when people do this. That means it has everything a new idea needs except scale, and that tends to follow. [22]\\n\\nThe alternative to starting with something small and evolving it is to plan in advance what you\\'re going to do. And planning does usually seem the more responsible choice. It sounds more organized to say \"we\\'re going to do x and then y and then z\" than \"we\\'re going to try x and see what happens.\" And it is more organized; it just doesn\\'t work as well.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='55306b2a-343d-4e44-8b24-25e471975cd3'), '8776ddf1-1e65-458c-9cc2-63a7fe40f800': Node(page_content=\"Planning per se isn't good. It's sometimes necessary, but it's a necessary evil — a response to unforgiving conditions. It's something you have to do because you're working with inflexible media, or because you need to coordinate the efforts of a lot of people. If you keep projects small and use flexible media, you don't have to plan as much, and your designs can evolve instead.\\n\\nTake as much risk as you can afford. In an efficient market, risk is proportionate to reward, so don't look for certainty, but for a bet with high expected value. If you're not failing occasionally, you're probably being too conservative.\\n\\nThough conservatism is usually associated with the old, it's the young who tend to make this mistake. Inexperience makes them fear risk, but it's when you're young that you can afford the most.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8776ddf1-1e65-458c-9cc2-63a7fe40f800'), 'c325c260-d37e-4bb0-a8b8-7d2633f1c55e': Node(page_content=\"Even a project that fails can be valuable. In the process of working on it, you'll have crossed territory few others have seen, and encountered questions few others have asked. And there's probably no better source of questions than the ones you encounter in trying to do something slightly too hard.\\n\\nUse the advantages of youth when you have them, and the advantages of age once you have those. The advantages of youth are energy, time, optimism, and freedom. The advantages of age are knowledge, efficiency, money, and power. With effort you can acquire some of the latter when young and keep some of the former when old.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c325c260-d37e-4bb0-a8b8-7d2633f1c55e'), '9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62': Node(page_content='The old also have the advantage of knowing which advantages they have. The young often have them without realizing it. The biggest is probably time. The young have no idea how rich they are in time. The best way to turn this time to advantage is to use it in slightly frivolous ways: to learn about something you don\\'t need to know about, just out of curiosity, or to try building something just because it would be cool, or to become freakishly good at something.\\n\\nThat \"slightly\" is an important qualification. Spend time lavishly when you\\'re young, but don\\'t simply waste it. There\\'s a big difference between doing something you worry might be a waste of time and doing something you know for sure will be. The former is at least a bet, and possibly a better one than you think. [23]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62'), '8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7': Node(page_content=\"The most subtle advantage of youth, or more precisely of inexperience, is that you're seeing everything with fresh eyes. When your brain embraces an idea for the first time, sometimes the two don't fit together perfectly. Usually the problem is with your brain, but occasionally it's with the idea. A piece of it sticks out awkwardly and jabs you when you think about it. People who are used to the idea have learned to ignore it, but you have the opportunity not to. [24]\\n\\nSo when you're learning about something for the first time, pay attention to things that seem wrong or missing. You'll be tempted to ignore them, since there's a 99% chance the problem is with you. And you may have to set aside your misgivings temporarily to keep progressing. But don't forget about them. When you've gotten further into the subject, come back and check if they're still there. If they're still viable in the light of your present knowledge, they probably represent an undiscovered idea.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7'), 'ebcb18af-82cb-4367-bb8f-60de302902d8': Node(page_content=\"One of the most valuable kinds of knowledge you get from experience is to know what you don't have to worry about. The young know all the things that could matter, but not their relative importance. So they worry equally about everything, when they should worry much more about a few things and hardly at all about the rest.\\n\\nBut what you don't know is only half the problem with inexperience. The other half is what you do know that ain't so. You arrive at adulthood with your head full of nonsense — bad habits you've acquired and false things you've been taught — and you won't be able to do great work till you clear away at least the nonsense in the way of whatever type of work you want to do.\\n\\nMuch of the nonsense left in your head is left there by schools. We're so used to schools that we unconsciously treat going to school as identical with learning, but in fact schools have all sorts of strange qualities that warp our ideas about learning and thinking.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebcb18af-82cb-4367-bb8f-60de302902d8'), '16440cdc-9b76-475c-bd3a-8e43dae9a434': Node(page_content=\"For example, schools induce passivity. Since you were a small child, there was an authority at the front of the class telling all of you what you had to learn and then measuring whether you did. But neither classes nor tests are intrinsic to learning; they're just artifacts of the way schools are usually designed.\\n\\nThe sooner you overcome this passivity, the better. If you're still in school, try thinking of your education as your project, and your teachers as working for you rather than vice versa. That may seem a stretch, but it's not merely some weird thought experiment. It's the truth, economically, and in the best case it's the truth intellectually as well. The best teachers don't want to be your bosses. They'd prefer it if you pushed ahead, using them as a source of advice, rather than being pulled by them through the material.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='16440cdc-9b76-475c-bd3a-8e43dae9a434'), '017c0f04-9f7c-4c8f-b6e9-23539e87f9a1': Node(page_content='Schools also give you a misleading impression of what work is like. In school they tell you what the problems are, and they\\'re almost always soluble using no more than you\\'ve been taught so far. In real life you have to figure out what the problems are, and you often don\\'t know if they\\'re soluble at all.\\n\\nBut perhaps the worst thing schools do to you is train you to win by hacking the test. You can\\'t do great work by doing that. You can\\'t trick God. So stop looking for that kind of shortcut. The way to beat the system is to focus on problems and solutions that others have overlooked, not to skimp on the work itself.\\n\\nDon\\'t think of yourself as dependent on some gatekeeper giving you a \"big break.\" Even if this were true, the best way to get it would be to focus on doing good work rather than chasing influential people.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c0f04-9f7c-4c8f-b6e9-23539e87f9a1'), 'c8acb19e-fb92-4e15-a633-895f474f5fd1': Node(page_content=\"And don't take rejection by committees to heart. The qualities that impress admissions officers and prize committees are quite different from those required to do great work. The decisions of selection committees are only meaningful to the extent that they're part of a feedback loop, and very few are.\\n\\nPeople new to a field will often copy existing work. There's nothing inherently bad about that. There's no better way to learn how something works than by trying to reproduce it. Nor does copying necessarily make your work unoriginal. Originality is the presence of new ideas, not the absence of old ones.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c8acb19e-fb92-4e15-a633-895f474f5fd1'), '5358b733-dcf2-4681-99ff-dd89b89c6718': Node(page_content='There\\'s a good way to copy and a bad way. If you\\'re going to copy something, do it openly instead of furtively, or worse still, unconsciously. This is what\\'s meant by the famously misattributed phrase \"Great artists steal.\" The really dangerous kind of copying, the kind that gives copying a bad name, is the kind that\\'s done without realizing it, because you\\'re nothing more than a train running on tracks laid down by someone else. But at the other extreme, copying can be a sign of superiority rather than subordination. [25]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5358b733-dcf2-4681-99ff-dd89b89c6718', wins=1), 'f087a707-515e-4c49-9772-187a7075ed75': Node(page_content=\"In many fields it's almost inevitable that your early work will be in some sense based on other people's. Projects rarely arise in a vacuum. They're usually a reaction to previous work. When you're first starting out, you don't have any previous work; if you're going to react to something, it has to be someone else's. Once you're established, you can react to your own. But while the former gets called derivative and the latter doesn't, structurally the two cases are more similar than they seem.\\n\\nOddly enough, the very novelty of the most novel ideas sometimes makes them seem at first to be more derivative than they are. New discoveries often have to be conceived initially as variations of existing things, even by their discoverers, because there isn't yet the conceptual vocabulary to express them.\\n\\nThere are definitely some dangers to copying, though. One is that you'll tend to copy old things — things that were in their day at the frontier of knowledge, but no longer are.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f087a707-515e-4c49-9772-187a7075ed75'), 'daf67766-a44c-4c3b-bd77-dc6d1045d490': Node(page_content=\"And when you do copy something, don't copy every feature of it. Some will make you ridiculous if you do. Don't copy the manner of an eminent 50 year old professor if you're 18, for example, or the idiom of a Renaissance poem hundreds of years later.\\n\\nSome of the features of things you admire are flaws they succeeded despite. Indeed, the features that are easiest to imitate are the most likely to be the flaws.\\n\\nThis is particularly true for behavior. Some talented people are jerks, and this sometimes makes it seem to the inexperienced that being a jerk is part of being talented. It isn't; being talented is merely how they get away with it.\\n\\nOne of the most powerful kinds of copying is to copy something from one field into another. History is so full of chance discoveries of this type that it's probably worth giving chance a hand by deliberately learning about other kinds of work. You can take ideas from quite distant fields if you let them be metaphors.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='daf67766-a44c-4c3b-bd77-dc6d1045d490'), '18f9beba-e410-4473-97ad-959d232cd009': Node(page_content=\"Negative examples can be as inspiring as positive ones. In fact you can sometimes learn more from things done badly than from things done well; sometimes it only becomes clear what's needed when it's missing.\\n\\nIf a lot of the best people in your field are collected in one place, it's usually a good idea to visit for a while. It will increase your ambition, and also, by showing you that these people are human, increase your self-confidence. [26]\\n\\nIf you're earnest you'll probably get a warmer welcome than you might expect. Most people who are very good at something are happy to talk about it with anyone who's genuinely interested. If they're really good at their work, then they probably have a hobbyist's interest in it, and hobbyists always want to talk about their hobbies.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='18f9beba-e410-4473-97ad-959d232cd009'), 'e4ed843d-1771-424a-91fc-5b74bcd2bc37': Node(page_content=\"It may take some effort to find the people who are really good, though. Doing great work has such prestige that in some places, particularly universities, there's a polite fiction that everyone is engaged in it. And that is far from true. People within universities can't say so openly, but the quality of the work being done in different departments varies immensely. Some departments have people doing great work; others have in the past; others never have.\\n\\nSeek out the best colleagues. There are a lot of projects that can't be done alone, and even if you're working on one that can be, it's good to have other people to encourage you and to bounce ideas off.\\n\\nColleagues don't just affect your work, though; they also affect you. So work with people you want to become like, because you will.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e4ed843d-1771-424a-91fc-5b74bcd2bc37'), '6c16f93b-75ea-4884-8959-b8d243716257': Node(page_content=\"Quality is more important than quantity in colleagues. It's better to have one or two great ones than a building full of pretty good ones. In fact it's not merely better, but necessary, judging from history: the degree to which great work happens in clusters suggests that one's colleagues often make the difference between doing great work and not.\\n\\nHow do you know when you have sufficiently good colleagues? In my experience, when you do, you know. Which means if you're unsure, you probably don't. But it may be possible to give a more concrete answer than that. Here's an attempt: sufficiently good colleagues offer surprising insights. They can see and do things that you can't. So if you have a handful of colleagues good enough to keep you on your toes in this sense, you're probably over the threshold.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6c16f93b-75ea-4884-8959-b8d243716257'), '41972435-555e-4d47-977a-b91de1f27a90': Node(page_content=\"Most of us can benefit from collaborating with colleagues, but some projects require people on a larger scale, and starting one of those is not for everyone. If you want to run a project like that, you'll have to become a manager, and managing well takes aptitude and interest like any other kind of work. If you don't have them, there is no middle path: you must either force yourself to learn management as a second language, or avoid such projects. [27]\\n\\nHusband your morale. It's the basis of everything when you're working on ambitious projects. You have to nurture and protect it like a living organism.\\n\\nMorale starts with your view of life. You're more likely to do great work if you're an optimist, and more likely to if you think of yourself as lucky than if you think of yourself as a victim.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='41972435-555e-4d47-977a-b91de1f27a90'), 'e2821136-b037-4332-bbbd-de2fcbeae316': Node(page_content=\"Indeed, work can to some extent protect you from your problems. If you choose work that's pure, its very difficulties will serve as a refuge from the difficulties of everyday life. If this is escapism, it's a very productive form of it, and one that has been used by some of the greatest minds in history.\\n\\nMorale compounds via work: high morale helps you do good work, which increases your morale and helps you do even better work. But this cycle also operates in the other direction: if you're not doing good work, that can demoralize you and make it even harder to. Since it matters so much for this cycle to be running in the right direction, it can be a good idea to switch to easier work when you're stuck, just so you start to get something done.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2821136-b037-4332-bbbd-de2fcbeae316', wins=1), '4593e897-c389-4639-98bd-7c159e1b3eae': Node(page_content='One of the biggest mistakes ambitious people make is to allow setbacks to destroy their morale all at once, like a balloon bursting. You can inoculate yourself against this by explicitly considering setbacks a part of your process. Solving hard problems always involves some backtracking.\\n\\nDoing great work is a depth-first search whose root node is the desire to. So \"If at first you don\\'t succeed, try, try again\" isn\\'t quite right. It should be: If at first you don\\'t succeed, either try again, or backtrack and then try again.\\n\\n\"Never give up\" is also not quite right. Obviously there are times when it\\'s the right choice to eject. A more precise version would be: Never let setbacks panic you into backtracking more than you need to. Corollary: Never abandon the root node.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4593e897-c389-4639-98bd-7c159e1b3eae'), 'b00c903d-199c-47b5-9884-f47a81649533': Node(page_content=\"It's not necessarily a bad sign if work is a struggle, any more than it's a bad sign to be out of breath while running. It depends how fast you're running. So learn to distinguish good pain from bad. Good pain is a sign of effort; bad pain is a sign of damage.\\n\\nAn audience is a critical component of morale. If you're a scholar, your audience may be your peers; in the arts, it may be an audience in the traditional sense. Either way it doesn't need to be big. The value of an audience doesn't grow anything like linearly with its size. Which is bad news if you're famous, but good news if you're just starting out, because it means a small but dedicated audience can be enough to sustain you. If a handful of people genuinely love what you're doing, that's enough.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b00c903d-199c-47b5-9884-f47a81649533'), '53911edb-1d5b-42d8-8f83-00572631b56a': Node(page_content=\"To the extent you can, avoid letting intermediaries come between you and your audience. In some types of work this is inevitable, but it's so liberating to escape it that you might be better off switching to an adjacent type if that will let you go direct. [28]\\n\\nThe people you spend time with will also have a big effect on your morale. You'll find there are some who increase your energy and others who decrease it, and the effect someone has is not always what you'd expect. Seek out the people who increase your energy and avoid those who decrease it. Though of course if there's someone you need to take care of, that takes precedence.\\n\\nDon't marry someone who doesn't understand that you need to work, or sees your work as competition for your attention. If you're ambitious, you need to work; it's almost like a medical condition; so someone who won't let you work either doesn't understand you, or does and doesn't care.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='53911edb-1d5b-42d8-8f83-00572631b56a', wins=1), '4cc70f37-da0e-44f9-a413-70a2f96e884a': Node(page_content=\"Ultimately morale is physical. You think with your body, so it's important to take care of it. That means exercising regularly, eating and sleeping well, and avoiding the more dangerous kinds of drugs. Running and walking are particularly good forms of exercise because they're good for thinking. [29]\\n\\nPeople who do great work are not necessarily happier than everyone else, but they're happier than they'd be if they didn't. In fact, if you're smart and ambitious, it's dangerous not to be productive. People who are smart and ambitious but don't achieve much tend to become bitter.\\n\\nIt's ok to want to impress other people, but choose the right people. The opinion of people you respect is signal. Fame, which is the opinion of a much larger group you might or might not respect, just adds noise.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cc70f37-da0e-44f9-a413-70a2f96e884a'), '017c6cc7-ee83-4bdb-a16f-fb64224418df': Node(page_content='The prestige of a type of work is at best a trailing indicator and sometimes completely mistaken. If you do anything well enough, you\\'ll make it prestigious. So the question to ask about a type of work is not how much prestige it has, but how well it could be done.\\n\\nCompetition can be an effective motivator, but don\\'t let it choose the problem for you; don\\'t let yourself get drawn into chasing something just because others are. In fact, don\\'t let competitors make you do anything much more specific than work harder.\\n\\nCuriosity is the best guide. Your curiosity never lies, and it knows more than you do about what\\'s worth paying attention to.\\n\\nNotice how often that word has come up. If you asked an oracle the secret to doing great work and the oracle replied with a single word, my bet would be on \"curiosity.\"\\n\\nThat doesn\\'t translate directly to advice. It\\'s not enough just to be curious, and you can\\'t command curiosity anyway. But you can nurture it and let it drive you.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c6cc7-ee83-4bdb-a16f-fb64224418df'), '518b39aa-59f8-4cb7-9c23-4ac7197f8250': Node(page_content=\"Curiosity is the key to all four steps in doing great work: it will choose the field for you, get you to the frontier, cause you to notice the gaps in it, and drive you to explore them. The whole process is a kind of dance with curiosity.\\n\\nBelieve it or not, I tried to make this essay as short as I could. But its length at least means it acts as a filter. If you made it this far, you must be interested in doing great work. And if so you're already further along than you might realize, because the set of people willing to want to is small.\\n\\nThe factors in doing great work are factors in the literal, mathematical sense, and they are: ability, interest, effort, and luck. Luck by definition you can't do anything about, so we can ignore that. And we can assume effort, if you do in fact want to do great work. So the problem boils down to ability and interest. Can you find a kind of work where your ability and interest will combine to yield an explosion of new ideas?\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='518b39aa-59f8-4cb7-9c23-4ac7197f8250', wins=1), '4bd8c91f-16e5-4aab-a361-b2e98eee6b10': Node(page_content=\"Here there are grounds for optimism. There are so many different ways to do great work, and even more that are still undiscovered. Out of all those different types of work, the one you're most suited for is probably a pretty close match. Probably a comically close match. It's just a question of finding it, and how far into it your ability and interest can take you. And you can only answer that by trying.\\n\\nMany more people could try to do great work than do. What holds them back is a combination of modesty and fear. It seems presumptuous to try to be Newton or Shakespeare. It also seems hard; surely if you tried something like that, you'd fail. Presumably the calculation is rarely explicit. Few people consciously decide not to try to do great work. But that's what's going on subconsciously; they shy away from the question.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4bd8c91f-16e5-4aab-a361-b2e98eee6b10'), '5098c334-acd7-4051-8409-88ae99b130c4': Node(page_content=\"So I'm going to pull a sneaky trick on you. Do you want to do great work, or not? Now you have to decide consciously. Sorry about that. I wouldn't have done it to a general audience. But we already know you're interested.\\n\\nDon't worry about being presumptuous. You don't have to tell anyone. And if it's too hard and you fail, so what? Lots of people have worse problems than that. In fact you'll be lucky if it's the worst problem you have.\\n\\nYes, you'll have to work hard. But again, lots of people have to work hard. And if you're working on something you find very interesting, which you necessarily will if you're on the right path, the work will probably feel less burdensome than a lot of your peers'.\\n\\nThe discoveries are out there, waiting to be made. Why not by you?\\n\\nNotes\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5098c334-acd7-4051-8409-88ae99b130c4'), '85fcc3b5-ead2-41ce-bd52-c45b5555894f': Node(page_content='Notes\\n\\n[1] I don\\'t think you could give a precise definition of what counts as great work. Doing great work means doing something important so well that you expand people\\'s ideas of what\\'s possible. But there\\'s no threshold for importance. It\\'s a matter of degree, and often hard to judge at the time anyway. So I\\'d rather people focused on developing their interests rather than worrying about whether they\\'re important or not. Just try to do something amazing, and leave it to future generations to say if you succeeded.\\n\\n[2] A lot of standup comedy is based on noticing anomalies in everyday life. \"Did you ever notice...?\" New ideas come from doing this about nontrivial things. Which may help explain why people\\'s reaction to a new idea is often the first half of laughing: Ha!\\n\\n[3] That second qualifier is critical. If you\\'re excited about something most authorities discount, but you can\\'t give a more precise explanation than \"they don\\'t get it,\" then you\\'re starting to drift into the territory of cranks.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='85fcc3b5-ead2-41ce-bd52-c45b5555894f'), '2e5f7714-e0a8-4be5-ab6f-433a316b1c41': Node(page_content=\"[4] Finding something to work on is not simply a matter of finding a match between the current version of you and a list of known problems. You'll often have to coevolve with the problem. That's why it can sometimes be so hard to figure out what to work on. The search space is huge. It's the cartesian product of all possible types of work, both known and yet to be discovered, and all possible future versions of you.\\n\\nThere's no way you could search this whole space, so you have to rely on heuristics to generate promising paths through it and hope the best matches will be clustered. Which they will not always be; different types of work have been collected together as much by accidents of history as by the intrinsic similarities between them.\\n\\n[5] There are many reasons curious people are more likely to do great work, but one of the more subtle is that, by casting a wide net, they're more likely to find the right thing to work on in the first place.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2e5f7714-e0a8-4be5-ab6f-433a316b1c41'), 'f43e912a-048c-44f0-8a64-9b58b1fa4f58': Node(page_content=\"[6] It can also be dangerous to make things for an audience you feel is less sophisticated than you, if that causes you to talk down to them. You can make a lot of money doing that, if you do it in a sufficiently cynical way, but it's not the route to great work. Not that anyone using this m.o. would care.\\n\\n[7] This idea I learned from Hardy's A Mathematician's Apology, which I recommend to anyone ambitious to do great work, in any field.\\n\\n[8] Just as we overestimate what we can do in a day and underestimate what we can do over several years, we overestimate the damage done by procrastinating for a day and underestimate the damage done by procrastinating for several years.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f43e912a-048c-44f0-8a64-9b58b1fa4f58'), 'af0eafcf-c1b7-46cd-b1b2-223f4aed0984': Node(page_content=\"[9] You can't usually get paid for doing exactly what you want, especially early on. There are two options: get paid for doing work close to what you want and hope to push it closer, or get paid for doing something else entirely and do your own projects on the side. Both can work, but both have drawbacks: in the first approach your work is compromised by default, and in the second you have to fight to get time to do it.\\n\\n[10] If you set your life up right, it will deliver the focus-relax cycle automatically. The perfect setup is an office you work in and that you walk to and from.\\n\\n[11] There may be some very unworldly people who do great work without consciously trying to. If you want to expand this rule to cover that case, it becomes: Don't try to be anything except the best.\\n\\n[12] This gets more complicated in work like acting, where the goal is to adopt a fake persona. But even here it's possible to be affected. Perhaps the rule in such fields should be to avoid unintentional affectation.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='af0eafcf-c1b7-46cd-b1b2-223f4aed0984'), '6afc67d5-0fd7-48a8-829f-201370a6be57': Node(page_content='[13] It\\'s safe to have beliefs that you treat as unquestionable if and only if they\\'re also unfalsifiable. For example, it\\'s safe to have the principle that everyone should be treated equally under the law, because a sentence with a \"should\" in it isn\\'t really a statement about the world and is therefore hard to disprove. And if there\\'s no evidence that could disprove one of your principles, there can\\'t be any facts you\\'d need to ignore in order to preserve it.\\n\\n[14] Affectation is easier to cure than intellectual dishonesty. Affectation is often a shortcoming of the young that burns off in time, while intellectual dishonesty is more of a character flaw.\\n\\n[15] Obviously you don\\'t have to be working at the exact moment you have the idea, but you\\'ll probably have been working fairly recently.\\n\\n[16] Some say psychoactive drugs have a similar effect. I\\'m skeptical, but also almost totally ignorant of their effects.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6afc67d5-0fd7-48a8-829f-201370a6be57'), '875a91c1-a9d8-4c9b-a094-4e865ec91c81': Node(page_content=\"[17] For example you might give the nth most important topic (m-1)/m^n of your attention, for some m > 1. You couldn't allocate your attention so precisely, of course, but this at least gives an idea of a reasonable distribution.\\n\\n[18] The principles defining a religion have to be mistaken. Otherwise anyone might adopt them, and there would be nothing to distinguish the adherents of the religion from everyone else.\\n\\n[19] It might be a good exercise to try writing down a list of questions you wondered about in your youth. You might find you're now in a position to do something about some of them.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='875a91c1-a9d8-4c9b-a094-4e865ec91c81'), '9dc1d1d4-e75c-4e42-9567-9d7f2e048319': Node(page_content='[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they\\'re generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling\\'s \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you\\'re wasting time is to ask if you\\'re producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don\\'t.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dc1d1d4-e75c-4e42-9567-9d7f2e048319', wins=1), 'e2cbfecc-dc00-438a-ab59-b82bfd683a65': Node(page_content=\"[24] Another related advantage is that if you haven't said anything publicly yet, you won't be biased toward evidence that supports your earlier conclusions. With sufficient integrity you could achieve eternal youth in this respect, but few manage to. For most people, having previously published opinions has an effect similar to ideology, just in quantity 1.\\n\\n[25] In the early 1630s Daniel Mytens made a painting of Henrietta Maria handing a laurel wreath to Charles I. Van Dyck then painted his own version to show how much better he was.\\n\\n[26] I'm being deliberately vague about what a place is. As of this writing, being in the same physical place has advantages that are hard to duplicate, but that could change.\\n\\n[27] This is false when the work the other people have to do is very constrained, as with SETI@home or Bitcoin. It may be possible to expand the area in which it's false by defining similarly restricted protocols with more freedom of action in the nodes.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2cbfecc-dc00-438a-ab59-b82bfd683a65'), 'd64ee58e-fa36-495b-8ef7-df70c6375e80': Node(page_content='[28] Corollary: Building something that enables people to go around intermediaries and engage directly with their audience is probably a good idea.\\n\\n[29] It may be helpful always to walk or run the same route, because that frees attention for thinking. It feels that way to me, and there is some historical evidence for it.\\n\\nThanks to Trevor Blackwell, Daniel Gackle, Pam Graham, Tom Howard, Patrick Hsu, Steve Huffman, Jessica Livingston, Henry Lloyd-Baker, Bob Metcalfe, Ben Miller, Robert Morris, Michael Nielsen, Courtenay Pipkin, Joris Poort, Mieke Roos, Rajat Suri, Harj Taggar, Garry Tan, and my younger son for suggestions and for reading drafts.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='d64ee58e-fa36-495b-8ef7-df70c6375e80'), '8941624d-30a5-4c1f-936b-72b3c0e8feb1': Node(page_content='What I Worked On\\n\\nFebruary 2021\\n\\nBefore college the two main things I worked on, outside of school, were writing and programming. I didn\\'t write essays. I wrote what beginning writers were supposed to write then, and probably still are: short stories. My stories were awful. They had hardly any plot, just characters with strong feelings, which I imagined made them deep.\\n\\nThe first programs I tried writing were on the IBM 1401 that our school district used for what was then called \"data processing.\" This was in 9th grade, so I was 13 or 14. The school district\\'s 1401 happened to be in the basement of our junior high school, and my friend Rich Draves and I got permission to use it. It was like a mini Bond villain\\'s lair down there, with all these alien-looking machines — CPU, disk drives, printer, card reader — sitting up on a raised floor under bright fluorescent lights.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8941624d-30a5-4c1f-936b-72b3c0e8feb1', wins=1), '2ddb6920-17bc-405e-9cbe-5b2852d92feb': Node(page_content='The language we used was an early version of Fortran. You had to type programs on punch cards, then stack them in the card reader and press a button to load the program into memory and run it. The result would ordinarily be to print something on the spectacularly loud printer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2ddb6920-17bc-405e-9cbe-5b2852d92feb'), '2cae8c4f-333e-4615-8808-6e9ab6f79097': Node(page_content=\"I was puzzled by the 1401. I couldn't figure out what to do with it. And in retrospect there's not much I could have done with it. The only form of input to programs was data stored on punched cards, and I didn't have any data stored on punched cards. The only other option was to do things that didn't rely on any input, like calculate approximations of pi, but I didn't know enough math to do anything interesting of that type. So I'm not surprised I can't remember any programs I wrote, because they can't have done much. My clearest memory is of the moment I learned it was possible for programs not to terminate, when one of mine didn't. On a machine without time-sharing, this was a social as well as a technical error, as the data center manager's expression made clear.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2cae8c4f-333e-4615-8808-6e9ab6f79097', wins=1), 'd0f65811-4213-4ff8-bf54-07ee86007f73': Node(page_content='With microcomputers, everything changed. Now you could have a computer sitting right in front of you, on a desk, that could respond to your keystrokes as it was running instead of just churning through a stack of punch cards and then stopping. [1]\\n\\nThe first of my friends to get a microcomputer built it himself. It was sold as a kit by Heathkit. I remember vividly how impressed and envious I felt watching him sitting in front of it, typing programs right into the computer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d0f65811-4213-4ff8-bf54-07ee86007f73'), '0cc36135-748a-47b8-9a05-cf6d0a8ea13b': Node(page_content=\"Computers were expensive in those days and it took me years of nagging before I convinced my father to buy one, a TRS-80, in about 1980. The gold standard then was the Apple II, but a TRS-80 was good enough. This was when I really started programming. I wrote simple games, a program to predict how high my model rockets would fly, and a word processor that my father used to write at least one book. There was only room in memory for about 2 pages of text, so he'd write 2 pages at a time and then print them out, but it was a lot better than a typewriter.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0cc36135-748a-47b8-9a05-cf6d0a8ea13b', wins=1), '8ced309b-74f2-4240-917b-e28b30dc433b': Node(page_content=\"Though I liked programming, I didn't plan to study it in college. In college I was going to study philosophy, which sounded much more powerful. It seemed, to my naive high school self, to be the study of the ultimate truths, compared to which the things studied in other fields would be mere domain knowledge. What I discovered when I got to college was that the other fields took up so much of the space of ideas that there wasn't much left for these supposed ultimate truths. All that seemed left for philosophy were edge cases that people in other fields felt could safely be ignored.\\n\\nI couldn't have put this into words when I was 18. All I knew at the time was that I kept taking philosophy courses and they kept being boring. So I decided to switch to AI.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8ced309b-74f2-4240-917b-e28b30dc433b'), '01436d32-d282-4de9-9b73-7faec7d1b772': Node(page_content=\"AI was in the air in the mid 1980s, but there were two things especially that made me want to work on it: a novel by Heinlein called The Moon is a Harsh Mistress, which featured an intelligent computer called Mike, and a PBS documentary that showed Terry Winograd using SHRDLU. I haven't tried rereading The Moon is a Harsh Mistress, so I don't know how well it has aged, but when I read it I was drawn entirely into its world. It seemed only a matter of time before we'd have Mike, and when I saw Winograd using SHRDLU, it seemed like that time would be a few years at most. All you had to do was teach SHRDLU more words.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01436d32-d282-4de9-9b73-7faec7d1b772'), 'c7dd7bbf-08ac-408f-b975-8274b58b91ca': Node(page_content=\"There weren't any classes in AI at Cornell then, not even graduate classes, so I started trying to teach myself. Which meant learning Lisp, since in those days Lisp was regarded as the language of AI. The commonly used programming languages then were pretty primitive, and programmers' ideas correspondingly so. The default language at Cornell was a Pascal-like language called PL/I, and the situation was similar elsewhere. Learning Lisp expanded my concept of a program so fast that it was years before I started to have a sense of where the new limits were. This was more like it; this was what I had expected college to do. It wasn't happening in a class, like it was supposed to, but that was ok. For the next couple years I was on a roll. I knew what I was going to do.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c7dd7bbf-08ac-408f-b975-8274b58b91ca'), 'd7d640a0-9b5e-4e18-a7fe-7655b8ae5979': Node(page_content='For my undergraduate thesis, I reverse-engineered SHRDLU. My God did I love working on that program. It was a pleasing bit of code, but what made it even more exciting was my belief — hard to imagine now, but not unique in 1985 — that it was already climbing the lower slopes of intelligence.\\n\\nI had gotten into a program at Cornell that didn\\'t make you choose a major. You could take whatever classes you liked, and choose whatever you liked to put on your degree. I of course chose \"Artificial Intelligence.\" When I got the actual physical diploma, I was dismayed to find that the quotes had been included, which made them read as scare-quotes. At the time this bothered me, but now it seems amusingly accurate, for reasons I was about to discover.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d7d640a0-9b5e-4e18-a7fe-7655b8ae5979'), '90c72e6c-8c79-4feb-86ae-f8f685cf5e7c': Node(page_content='I applied to 3 grad schools: MIT and Yale, which were renowned for AI at the time, and Harvard, which I\\'d visited because Rich Draves went there, and was also home to Bill Woods, who\\'d invented the type of parser I used in my SHRDLU clone. Only Harvard accepted me, so that was where I went.\\n\\nI don\\'t remember the moment it happened, or if there even was a specific moment, but during the first year of grad school I realized that AI, as practiced at the time, was a hoax. By which I mean the sort of AI in which a program that\\'s told \"the dog is sitting on the chair\" translates this into some formal representation and adds it to the list of things it knows.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='90c72e6c-8c79-4feb-86ae-f8f685cf5e7c'), 'd5b018a6-f262-4758-b059-4da34cd51a58': Node(page_content=\"What these programs really showed was that there's a subset of natural language that's a formal language. But a very proper subset. It was clear that there was an unbridgeable gap between what they could do and actually understanding natural language. It was not, in fact, simply a matter of teaching SHRDLU more words. That whole way of doing AI, with explicit data structures representing concepts, was not going to work. Its brokenness did, as so often happens, generate a lot of opportunities to write papers about various band-aids that could be applied to it, but it was never going to get us Mike.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d5b018a6-f262-4758-b059-4da34cd51a58'), 'd52b4a20-0c6f-455d-9362-e99f3f87f0b4': Node(page_content=\"So I looked around to see what I could salvage from the wreckage of my plans, and there was Lisp. I knew from experience that Lisp was interesting for its own sake and not just for its association with AI, even though that was the main reason people cared about it at the time. So I decided to focus on Lisp. In fact, I decided to write a book about Lisp hacking. It's scary to think how little I knew about Lisp hacking when I started writing that book. But there's nothing like writing a book about something to help you learn it. The book, On Lisp, wasn't published till 1993, but I wrote much of it in grad school.\\n\\nComputer Science is an uneasy alliance between two halves, theory and systems. The theory people prove things, and the systems people build things. I wanted to build things. I had plenty of respect for theory — indeed, a sneaking suspicion that it was the more admirable of the two halves — but building things seemed so much more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d52b4a20-0c6f-455d-9362-e99f3f87f0b4'), 'a7e3201d-8d1c-4f50-87cc-0674b17ce7c8': Node(page_content=\"The problem with systems work, though, was that it didn't last. Any program you wrote today, no matter how good, would be obsolete in a couple decades at best. People might mention your software in footnotes, but no one would actually use it. And indeed, it would seem very feeble work. Only people with a sense of the history of the field would even realize that, in its time, it had been good.\\n\\nThere were some surplus Xerox Dandelions floating around the computer lab at one point. Anyone who wanted one to play around with could have one. I was briefly tempted, but they were so slow by present standards; what was the point? No one else wanted one either, so off they went. That was what happened to systems work.\\n\\nI wanted not just to build things, but to build things that would last.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a7e3201d-8d1c-4f50-87cc-0674b17ce7c8'), '88ce0eef-afcd-4066-b99a-ab84ade3eb18': Node(page_content=\"In this dissatisfied state I went in 1988 to visit Rich Draves at CMU, where he was in grad school. One day I went to visit the Carnegie Institute, where I'd spent a lot of time as a kid. While looking at a painting there I realized something that might seem obvious, but was a big surprise to me. There, right on the wall, was something you could make that would last. Paintings didn't become obsolete. Some of the best ones were hundreds of years old.\\n\\nAnd moreover this was something you could make a living doing. Not as easily as you could by writing software, of course, but I thought if you were really industrious and lived really cheaply, it had to be possible to make enough to survive. And as an artist you could be truly independent. You wouldn't have a boss, or even need to get research funding.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='88ce0eef-afcd-4066-b99a-ab84ade3eb18'), '9f8eaf30-eedb-4747-97bb-c5c699392270': Node(page_content=\"I had always liked looking at paintings. Could I make them? I had no idea. I'd never imagined it was even possible. I knew intellectually that people made art — that it didn't just appear spontaneously — but it was as if the people who made it were a different species. They either lived long ago or were mysterious geniuses doing strange things in profiles in Life magazine. The idea of actually being able to make art, to put that verb before that noun, seemed almost miraculous.\\n\\nThat fall I started taking art classes at Harvard. Grad students could take classes in any department, and my advisor, Tom Cheatham, was very easy going. If he even knew about the strange classes I was taking, he never said anything.\\n\\nSo now I was in a PhD program in computer science, yet planning to be an artist, yet also genuinely in love with Lisp hacking and working away at On Lisp. In other words, like many a grad student, I was working energetically on multiple projects that were not my thesis.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f8eaf30-eedb-4747-97bb-c5c699392270'), 'c14d29a3-c37e-4821-ae34-c407c6676ee1': Node(page_content='I didn\\'t see a way out of this situation. I didn\\'t want to drop out of grad school, but how else was I going to get out? I remember when my friend Robert Morris got kicked out of Cornell for writing the internet worm of 1988, I was envious that he\\'d found such a spectacular way to get out of grad school.\\n\\nThen one day in April 1990 a crack appeared in the wall. I ran into professor Cheatham and he asked if I was far enough along to graduate that June. I didn\\'t have a word of my dissertation written, but in what must have been the quickest bit of thinking in my life, I decided to take a shot at writing one in the 5 weeks or so that remained before the deadline, reusing parts of On Lisp where I could, and I was able to respond, with no perceptible delay \"Yes, I think so. I\\'ll give you something to read in a few days.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c14d29a3-c37e-4821-ae34-c407c6676ee1'), '48b6ee95-ea42-4980-9ad5-1dd6a2062500': Node(page_content=\"I picked applications of continuations as the topic. In retrospect I should have written about macros and embedded languages. There's a whole world there that's barely been explored. But all I wanted was to get out of grad school, and my rapidly written dissertation sufficed, just barely.\\n\\nMeanwhile I was applying to art schools. I applied to two: RISD in the US, and the Accademia di Belli Arti in Florence, which, because it was the oldest art school, I imagined would be good. RISD accepted me, and I never heard back from the Accademia, so off to Providence I went.\\n\\nI'd applied for the BFA program at RISD, which meant in effect that I had to go to college again. This was not as strange as it sounds, because I was only 25, and art schools are full of people of different ages. RISD counted me as a transfer sophomore and said I had to do the foundation that summer. The foundation means the classes that everyone has to take in fundamental subjects like drawing, color, and design.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='48b6ee95-ea42-4980-9ad5-1dd6a2062500'), '92b5cdd8-6d6d-4d9c-9510-48a3096427b8': Node(page_content=\"Toward the end of the summer I got a big surprise: a letter from the Accademia, which had been delayed because they'd sent it to Cambridge England instead of Cambridge Massachusetts, inviting me to take the entrance exam in Florence that fall. This was now only weeks away. My nice landlady let me leave my stuff in her attic. I had some money saved from consulting work I'd done in grad school; there was probably enough to last a year if I lived cheaply. Now all I had to do was learn Italian.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='92b5cdd8-6d6d-4d9c-9510-48a3096427b8'), '01fdd3e3-243a-4e82-9c18-5d7492d029c1': Node(page_content=\"Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01fdd3e3-243a-4e82-9c18-5d7492d029c1', wins=1), '0f488de3-2fec-444b-9cd1-58ffd491a687': Node(page_content=\"I'm only up to age 25 and already there are such conspicuous patterns. Here I was, yet again about to attend some august institution in the hopes of learning about some prestigious subject, and yet again about to be disappointed. The students and faculty in the painting department at the Accademia were the nicest people you could imagine, but they had long since arrived at an arrangement whereby the students wouldn't require the faculty to teach anything, and in return the faculty wouldn't require the students to learn anything. And at the same time all involved would adhere outwardly to the conventions of a 19th century atelier. We actually had one of those little stoves, fed with kindling, that you see in 19th century studio paintings, and a nude model sitting as close to it as possible without getting burned. Except hardly anyone else painted her besides me. The rest of the students spent their time chatting or occasionally trying to imitate things they'd seen in American art magazines.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f488de3-2fec-444b-9cd1-58ffd491a687'), 'e8486722-e708-4b69-a5ef-1469253415c8': Node(page_content=\"Our model turned out to live just down the street from me. She made a living from a combination of modelling and making fakes for a local antique dealer. She'd copy an obscure old painting out of a book, and then he'd take the copy and maltreat it to make it look old. [3]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e8486722-e708-4b69-a5ef-1469253415c8'), 'c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee': Node(page_content=\"While I was a student at the Accademia I started painting still lives in my bedroom at night. These paintings were tiny, because the room was, and because I painted them on leftover scraps of canvas, which was all I could afford at the time. Painting still lives is different from painting people, because the subject, as its name suggests, can't move. People can't sit for more than about 15 minutes at a time, and when they do they don't sit very still. So the traditional m.o. for painting people is to know how to paint a generic person, which you then modify to match the specific person you're painting. Whereas a still life you can, if you want, copy pixel by pixel from what you're seeing. You don't want to stop there, of course, or you get merely photographic accuracy, and what makes a still life interesting is that it's been through a head. You want to emphasize the visual cues that tell you, for example, that the reason the color changes suddenly at a certain point is that it's the edge of an object. By\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee', wins=1), '00ad760e-6fbb-43ca-a51c-519425b2aaff': Node(page_content='of an object. By subtly emphasizing such things you can make paintings that are more realistic than photographs not just in some metaphorical sense, but in the strict information-theoretic sense. [4]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='00ad760e-6fbb-43ca-a51c-519425b2aaff'), 'f7f0e91c-4312-46dc-b4d1-ff380e0f7227': Node(page_content='I liked painting still lives because I was curious about what I was seeing. In everyday life, we aren\\'t consciously aware of much we\\'re seeing. Most visual perception is handled by low-level processes that merely tell your brain \"that\\'s a water droplet\" without telling you details like where the lightest and darkest points are, or \"that\\'s a bush\" without telling you the shape and position of every leaf. This is a feature of brains, not a bug. In everyday life it would be distracting to notice every leaf on every bush. But when you have to paint something, you have to look more closely, and when you do there\\'s a lot to see. You can still be noticing new things after days of trying to paint something people usually take for granted, just as you can after days of trying to write an essay about something people usually take for granted.\\n\\nThis is not the only way to paint. I\\'m not 100% sure it\\'s even a good way to paint. But it seemed a good enough bet to be worth trying.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f7f0e91c-4312-46dc-b4d1-ff380e0f7227'), '395264d3-3625-46d0-8636-110e597f48b7': Node(page_content=\"Our teacher, professor Ulivi, was a nice guy. He could see I worked hard, and gave me a good grade, which he wrote down in a sort of passport each student had. But the Accademia wasn't teaching me anything except Italian, and my money was running out, so at the end of the first year I went back to the US.\\n\\nI wanted to go back to RISD, but I was now broke and RISD was very expensive, so I decided to get a job for a year and then return to RISD the next fall. I got one at a company called Interleaf, which made software for creating documents. You mean like Microsoft Word? Exactly. That was how I learned that low end software tends to eat high end software. But Interleaf still had a few years to live yet. [5]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='395264d3-3625-46d0-8636-110e597f48b7'), '32082230-290a-46db-a914-19f705defd46': Node(page_content=\"Interleaf had done something pretty bold. Inspired by Emacs, they'd added a scripting language, and even made the scripting language a dialect of Lisp. Now they wanted a Lisp hacker to write things in it. This was the closest thing I've had to a normal job, and I hereby apologize to my boss and coworkers, because I was a bad employee. Their Lisp was the thinnest icing on a giant C cake, and since I didn't know C and didn't want to learn it, I never understood most of the software. Plus I was terribly irresponsible. This was back when a programming job meant showing up every day during certain working hours. That seemed unnatural to me, and on this point the rest of the world is coming around to my way of thinking, but at the time it caused a lot of friction. Toward the end of the year I spent much of my time surreptitiously working on On Lisp, which I had by this time gotten a contract to publish.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='32082230-290a-46db-a914-19f705defd46'), 'b102bff3-51da-44e2-9679-ed6445de3808': Node(page_content='The good part was that I got paid huge amounts of money, especially by art student standards. In Florence, after paying my part of the rent, my budget for everything else had been $7 a day. Now I was getting paid more than 4 times that every hour, even when I was just sitting in a meeting. By living cheaply I not only managed to save enough to go back to RISD, but also paid off my college loans.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='b102bff3-51da-44e2-9679-ed6445de3808'), '17ed5227-f4f7-4c2b-a28e-4265a141653e': Node(page_content=\"I learned some useful things at Interleaf, though they were mostly about what not to do. I learned that it's better for technology companies to be run by product people than sales people (though sales is a real skill and people who are good at it are really good at it), that it leads to bugs when code is edited by too many people, that cheap office space is no bargain if it's depressing, that planned meetings are inferior to corridor conversations, that big, bureaucratic customers are a dangerous source of money, and that there's not much overlap between conventional office hours and the optimal time for hacking, or conventional offices and the optimal place for it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='17ed5227-f4f7-4c2b-a28e-4265a141653e'), '03c17beb-1dbd-4c5a-9445-4d4f0c57379f': Node(page_content='But the most important thing I learned, and which I used in both Viaweb and Y Combinator, is that the low end eats the high end: that it\\'s good to be the \"entry level\" option, even though that will be less prestigious, because if you\\'re not, someone else will be, and will squash you against the ceiling. Which in turn means that prestige is a danger sign.\\n\\nWhen I left to go back to RISD the next fall, I arranged to do freelance work for the group that did projects for customers, and this was how I survived for the next several years. When I came back to visit for a project later on, someone told me about a new thing called HTML, which was, as he described it, a derivative of SGML. Markup language enthusiasts were an occupational hazard at Interleaf and I ignored him, but this HTML thing later became a big part of my life.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='03c17beb-1dbd-4c5a-9445-4d4f0c57379f'), 'ad27e028-f220-4b7e-a914-a2c67860e511': Node(page_content='In the fall of 1992 I moved back to Providence to continue at RISD. The foundation had merely been intro stuff, and the Accademia had been a (very civilized) joke. Now I was going to see what real art school was like. But alas it was more like the Accademia than not. Better organized, certainly, and a lot more expensive, but it was now becoming clear that art school did not bear the same relationship to art that medical school bore to medicine. At least not the painting department. The textile department, which my next door neighbor belonged to, seemed to be pretty rigorous. No doubt illustration and architecture were too. But painting was post-rigorous. Painting students were supposed to express themselves, which to the more worldly ones meant to try to cook up some sort of distinctive signature style.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad27e028-f220-4b7e-a914-a2c67860e511'), 'd996dddb-ee2a-4347-b6ff-0adf7c382d19': Node(page_content='A signature style is the visual equivalent of what in show business is known as a \"schtick\": something that immediately identifies the work as yours and no one else\\'s. For example, when you see a painting that looks like a certain kind of cartoon, you know it\\'s by Roy Lichtenstein. So if you see a big painting of this type hanging in the apartment of a hedge fund manager, you know he paid millions of dollars for it. That\\'s not always why artists have a signature style, but it\\'s usually why buyers pay a lot for such work. [6]\\n\\nThere were plenty of earnest students too: kids who \"could draw\" in high school, and now had come to what was supposed to be the best art school in the country, to learn to draw even better. They tended to be confused and demoralized by what they found at RISD, but they kept going, because painting was what they did. I was not one of the kids who could draw in high school, but at RISD I was definitely closer to their tribe than the tribe of signature style seekers.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d996dddb-ee2a-4347-b6ff-0adf7c382d19'), 'e6849fc6-388f-4476-905f-c07b44d846ff': Node(page_content=\"I learned a lot in the color class I took at RISD, but otherwise I was basically teaching myself to paint, and I could do that for free. So in 1993 I dropped out. I hung around Providence for a bit, and then my college friend Nancy Parmet did me a big favor. A rent-controlled apartment in a building her mother owned in New York was becoming vacant. Did I want it? It wasn't much more than my current place, and New York was supposed to be where the artists were. So yes, I wanted it! [7]\\n\\nAsterix comics begin by zooming in on a tiny corner of Roman Gaul that turns out not to be controlled by the Romans. You can do something similar on a map of New York City: if you zoom in on the Upper East Side, there's a tiny corner that's not rich, or at least wasn't in 1993. It's called Yorkville, and that was my new home. Now I was a New York artist — in the strictly technical sense of making paintings and living in New York.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6849fc6-388f-4476-905f-c07b44d846ff'), 'dd3809f5-9bbd-440d-b993-2b25e729584d': Node(page_content=\"I was nervous about money, because I could sense that Interleaf was on the way down. Freelance Lisp hacking work was very rare, and I didn't want to have to program in another language, which in those days would have meant C++ if I was lucky. So with my unerring nose for financial opportunity, I decided to write another book on Lisp. This would be a popular book, the sort of book that could be used as a textbook. I imagined myself living frugally off the royalties and spending all my time painting. (The painting on the cover of this book, ANSI Common Lisp, is one that I painted around this time.)\\n\\nThe best thing about New York for me was the presence of Idelle and Julian Weber. Idelle Weber was a painter, one of the early photorealists, and I'd taken her painting class at Harvard. I've never known a teacher more beloved by her students. Large numbers of former students kept in touch with her, including me. After I moved to New York I became her de facto studio assistant.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='dd3809f5-9bbd-440d-b993-2b25e729584d'), '6097a0d7-807d-4820-9ecd-7e8e373cc23d': Node(page_content=\"She liked to paint on big, square canvases, 4 to 5 feet on a side. One day in late 1994 as I was stretching one of these monsters there was something on the radio about a famous fund manager. He wasn't that much older than me, and was super rich. The thought suddenly occurred to me: why don't I become rich? Then I'll be able to work on whatever I want.\\n\\nMeanwhile I'd been hearing more and more about this new thing called the World Wide Web. Robert Morris showed it to me when I visited him in Cambridge, where he was now in grad school at Harvard. It seemed to me that the web would be a big deal. I'd seen what graphical user interfaces had done for the popularity of microcomputers. It seemed like the web would do the same for the internet.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6097a0d7-807d-4820-9ecd-7e8e373cc23d'), '8821373c-c593-4754-bce4-07fdf2b9bed1': Node(page_content=\"If I wanted to get rich, here was the next train leaving the station. I was right about that part. What I got wrong was the idea. I decided we should start a company to put art galleries online. I can't honestly say, after reading so many Y Combinator applications, that this was the worst startup idea ever, but it was up there. Art galleries didn't want to be online, and still don't, not the fancy ones. That's not how they sell. I wrote some software to generate web sites for galleries, and Robert wrote some to resize images and set up an http server to serve the pages. Then we tried to sign up galleries. To call this a difficult sale would be an understatement. It was difficult to give away. A few galleries let us make sites for them for free, but none paid us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8821373c-c593-4754-bce4-07fdf2b9bed1'), '5190c08b-1add-44df-a89c-71da5b21a81f': Node(page_content='Then some online stores started to appear, and I realized that except for the order buttons they were identical to the sites we\\'d been generating for galleries. This impressive-sounding thing called an \"internet storefront\" was something we already knew how to build.\\n\\nSo in the summer of 1995, after I submitted the camera-ready copy of ANSI Common Lisp to the publishers, we started trying to write software to build online stores. At first this was going to be normal desktop software, which in those days meant Windows software. That was an alarming prospect, because neither of us knew how to write Windows software or wanted to learn. We lived in the Unix world. But we decided we\\'d at least try writing a prototype store builder on Unix. Robert wrote a shopping cart, and I wrote a new site generator for stores — in Lisp, of course.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5190c08b-1add-44df-a89c-71da5b21a81f'), '0c153247-5ff8-48f7-bd31-5139f0fc7302': Node(page_content=\"We were working out of Robert's apartment in Cambridge. His roommate was away for big chunks of time, during which I got to sleep in his room. For some reason there was no bed frame or sheets, just a mattress on the floor. One morning as I was lying on this mattress I had an idea that made me sit up like a capital L. What if we ran the software on the server, and let users control it by clicking on links? Then we'd never have to write anything to run on users' computers. We could generate the sites on the same server we'd serve them from. Users wouldn't need anything more than a browser.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0c153247-5ff8-48f7-bd31-5139f0fc7302'), '4ed7e80d-dc07-49eb-8d99-cb33fb56d042': Node(page_content=\"This kind of software, known as a web app, is common now, but at the time it wasn't clear that it was even possible. To find out, we decided to try making a version of our store builder that you could control through the browser. A couple days later, on August 12, we had one that worked. The UI was horrible, but it proved you could build a whole store through the browser, without any client software or typing anything into the command line on the server.\\n\\nNow we felt like we were really onto something. I had visions of a whole new generation of software working this way. You wouldn't need versions, or ports, or any of that crap. At Interleaf there had been a whole group called Release Engineering that seemed to be at least as big as the group that actually wrote the software. Now you could just update the software right on the server.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='4ed7e80d-dc07-49eb-8d99-cb33fb56d042'), '1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e': Node(page_content=\"We started a new company we called Viaweb, after the fact that our software worked via the web, and we got $10,000 in seed funding from Idelle's husband Julian. In return for that and doing the initial legal work and giving us business advice, we gave him 10% of the company. Ten years later this deal became the model for Y Combinator's. We knew founders needed something like this, because we'd needed it ourselves.\\n\\nAt this stage I had a negative net worth, because the thousand dollars or so I had in the bank was more than counterbalanced by what I owed the government in taxes. (Had I diligently set aside the proper proportion of the money I'd made consulting for Interleaf? No, I had not.) So although Robert had his graduate student stipend, I needed that seed funding to live on.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e', wins=1), '1f39257d-0248-4959-b47d-f2447a171058': Node(page_content=\"We originally hoped to launch in September, but we got more ambitious about the software as we worked on it. Eventually we managed to build a WYSIWYG site builder, in the sense that as you were creating pages, they looked exactly like the static ones that would be generated later, except that instead of leading to static pages, the links all referred to closures stored in a hash table on the server.\\n\\nIt helped to have studied art, because the main goal of an online store builder is to make users look legit, and the key to looking legit is high production values. If you get page layouts and fonts and colors right, you can make a guy running a store out of his bedroom look more legit than a big company.\\n\\n(If you're curious why my site looks so old-fashioned, it's because it's still made with this software. It may look clunky today, but in 1996 it was the last word in slick.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1f39257d-0248-4959-b47d-f2447a171058'), 'a5d7623b-6552-4ca9-a712-8cb0986696fe': Node(page_content='In September, Robert rebelled. \"We\\'ve been working on this for a month,\" he said, \"and it\\'s still not done.\" This is funny in retrospect, because he would still be working on it almost 3 years later. But I decided it might be prudent to recruit more programmers, and I asked Robert who else in grad school with him was really good. He recommended Trevor Blackwell, which surprised me at first, because at that point I knew Trevor mainly for his plan to reduce everything in his life to a stack of notecards, which he carried around with him. But Rtm was right, as usual. Trevor turned out to be a frighteningly effective hacker.\\n\\nIt was a lot of fun working with Robert and Trevor. They\\'re the two most independent-minded people I know, and in completely different ways. If you could see inside Rtm\\'s brain it would look like a colonial New England church, and if you could see inside Trevor\\'s it would look like the worst excesses of Austrian Rococo.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a5d7623b-6552-4ca9-a712-8cb0986696fe'), '6e31fe4b-e85c-4ad7-a092-be367364b972': Node(page_content=\"We opened for business, with 6 stores, in January 1996. It was just as well we waited a few months, because although we worried we were late, we were actually almost fatally early. There was a lot of talk in the press then about ecommerce, but not many people actually wanted online stores. [8]\\n\\nThere were three main parts to the software: the editor, which people used to build sites and which I wrote, the shopping cart, which Robert wrote, and the manager, which kept track of orders and statistics, and which Trevor wrote. In its time, the editor was one of the best general-purpose site builders. I kept the code tight and didn't have to integrate with any other software except Robert's and Trevor's, so it was quite fun to work on. If all I'd had to do was work on this software, the next 3 years would have been the easiest of my life. Unfortunately I had to do a lot more, all of it stuff I was worse at than programming, and the next 3 years were instead the most stressful.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6e31fe4b-e85c-4ad7-a092-be367364b972', wins=1), '7a732a06-6878-41be-9947-1c07a23ea4a7': Node(page_content=\"There were a lot of startups making ecommerce software in the second half of the 90s. We were determined to be the Microsoft Word, not the Interleaf. Which meant being easy to use and inexpensive. It was lucky for us that we were poor, because that caused us to make Viaweb even more inexpensive than we realized. We charged $100 a month for a small store and $300 a month for a big one. This low price was a big attraction, and a constant thorn in the sides of competitors, but it wasn't because of some clever insight that we set the price low. We had no idea what businesses paid for things. $300 a month seemed like a lot of money to us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7a732a06-6878-41be-9947-1c07a23ea4a7'), '9f865fd1-57c6-4f67-ac9d-4f0d17bd751b': Node(page_content='We did a lot of things right by accident like that. For example, we did what\\'s now called \"doing things that don\\'t scale,\" although at the time we would have described it as \"being so lame that we\\'re driven to the most desperate measures to get users.\" The most common of which was building stores for them. This seemed particularly humiliating, since the whole raison d\\'etre of our software was that people could use it to make their own stores. But anything to get users.\\n\\nWe learned a lot more about retail than we wanted to know. For example, that if you could only have a small image of a man\\'s shirt (and all images were small then by present standards), it was better to have a closeup of the collar than a picture of the whole shirt. The reason I remember learning this was that it meant I had to rescan about 30 images of men\\'s shirts. My first set of scans were so beautiful too.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f865fd1-57c6-4f67-ac9d-4f0d17bd751b'), '0df392b3-eb59-4359-b340-6e211caa3aae': Node(page_content='Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we\\'d have so many users that I couldn\\'t scan their images for them, but in the meantime there was nothing more important to do.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0df392b3-eb59-4359-b340-6e211caa3aae', wins=1), 'd57da0e4-fee3-4442-aa88-7c461dc9c4b4': Node(page_content=\"Another thing I didn't get at the time is that growth rate is the ultimate test of a startup. Our growth rate was fine. We had about 70 stores at the end of 1996 and about 500 at the end of 1997. I mistakenly thought the thing that mattered was the absolute number of users. And that is the thing that matters in the sense that that's how much money you're making, and if you're not making enough, you might go out of business. But in the long term the growth rate takes care of the absolute number. If we'd been a startup I was advising at Y Combinator, I would have said: Stop being so stressed out, because you're doing fine. You're growing 7x a year. Just don't hire too many more people and you'll soon be profitable, and then you'll control your own destiny.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d57da0e4-fee3-4442-aa88-7c461dc9c4b4', wins=1), '9bc68607-b275-4e2e-877a-8b9f23e349c2': Node(page_content=\"Alas I hired lots more people, partly because our investors wanted me to, and partly because that's what startups did during the Internet Bubble. A company with just a handful of employees would have seemed amateurish. So we didn't reach breakeven until about when Yahoo bought us in the summer of 1998. Which in turn meant we were at the mercy of investors for the entire life of the company. And since both we and our investors were noobs at startups, the result was a mess even by startup standards.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9bc68607-b275-4e2e-877a-8b9f23e349c2'), '5d19d396-aa70-4bf0-992e-069c632de8ad': Node(page_content=\"It was a huge relief when Yahoo bought us. In principle our Viaweb stock was valuable. It was a share in a business that was profitable and growing rapidly. But it didn't feel very valuable to me; I had no idea how to value a business, but I was all too keenly aware of the near-death experiences we seemed to have every few months. Nor had I changed my grad student lifestyle significantly since we started. So when Yahoo bought us it felt like going from rags to riches. Since we were going to California, I bought a car, a yellow 1998 VW GTI. I remember thinking that its leather seats alone were by far the most luxurious thing I owned.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5d19d396-aa70-4bf0-992e-069c632de8ad'), '56272a9f-8b83-4b82-a1a2-598765c2b068': Node(page_content=\"The next year, from the summer of 1998 to the summer of 1999, must have been the least productive of my life. I didn't realize it at the time, but I was worn out from the effort and stress of running Viaweb. For a while after I got to California I tried to continue my usual m.o. of programming till 3 in the morning, but fatigue combined with Yahoo's prematurely aged culture and grim cube farm in Santa Clara gradually dragged me down. After a few months it felt disconcertingly like working at Interleaf.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='56272a9f-8b83-4b82-a1a2-598765c2b068'), 'fd511710-4a0b-4af9-834f-8c2d984a6dd0': Node(page_content=\"Yahoo had given us a lot of options when they bought us. At the time I thought Yahoo was so overvalued that they'd never be worth anything, but to my astonishment the stock went up 5x in the next year. I hung on till the first chunk of options vested, then in the summer of 1999 I left. It had been so long since I'd painted anything that I'd half forgotten why I was doing this. My brain had been entirely full of software and men's shirts for 4 years. But I had done this to get rich so I could paint, I reminded myself, and now I was rich, so I should go paint.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='fd511710-4a0b-4af9-834f-8c2d984a6dd0'), 'e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8': Node(page_content='When I said I was leaving, my boss at Yahoo had a long conversation with me about my plans. I told him all about the kinds of pictures I wanted to paint. At the time I was touched that he took such an interest in me. Now I realize it was because he thought I was lying. My options at that point were worth about $2 million a month. If I was leaving that kind of money on the table, it could only be to go and start some new startup, and if I did, I might take people with me. This was the height of the Internet Bubble, and Yahoo was ground zero of it. My boss was at that moment a billionaire. Leaving then to start a new startup must have seemed to him an insanely, and yet also plausibly, ambitious plan.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8'), '07e153a7-98c9-45f5-9873-0415175e5887': Node(page_content=\"But I really was quitting to paint, and I started immediately. There was no time to lose. I'd already burned 4 years getting rich. Now when I talk to founders who are leaving after selling their companies, my advice is always the same: take a vacation. That's what I should have done, just gone off somewhere and done nothing for a month or two, but the idea never occurred to me.\\n\\nSo I tried to paint, but I just didn't seem to have any energy or ambition. Part of the problem was that I didn't know many people in California. I'd compounded this problem by buying a house up in the Santa Cruz Mountains, with a beautiful view but miles from anywhere. I stuck it out for a few more months, then in desperation I went back to New York, where unless you understand about rent control you'll be surprised to hear I still had my apartment, sealed up like a tomb of my old life. Idelle was in New York at least, and there were other people trying to paint there, even though I didn't know any of them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='07e153a7-98c9-45f5-9873-0415175e5887'), 'e6f53cbc-6f54-4287-ad99-52473f5e3cfa': Node(page_content=\"When I got back to New York I resumed my old life, except now I was rich. It was as weird as it sounds. I resumed all my old patterns, except now there were doors where there hadn't been. Now when I was tired of walking, all I had to do was raise my hand, and (unless it was raining) a taxi would stop to pick me up. Now when I walked past charming little restaurants I could go in and order lunch. It was exciting for a while. Painting started to go better. I experimented with a new kind of still life where I'd paint one painting in the old way, then photograph it and print it, blown up, on canvas, and then use that as the underpainting for a second still life, painted from the same objects (which hopefully hadn't rotted yet).\\n\\nMeanwhile I looked for an apartment to buy. Now I could actually choose what neighborhood to live in. Where, I asked myself and various real estate agents, is the Cambridge of New York? Aided by occasional visits to actual Cambridge, I gradually realized there wasn't one. Huh.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6f53cbc-6f54-4287-ad99-52473f5e3cfa'), '209c154b-eaa4-4d0c-9ee3-9de983548416': Node(page_content='Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='209c154b-eaa4-4d0c-9ee3-9de983548416', wins=1), '725c5f11-2423-4e18-bc97-752009c281de': Node(page_content=\"I got so excited about this idea that I couldn't think about anything else. It seemed obvious that this was the future. I didn't particularly want to start another company, but it was clear that this idea would have to be embodied as one, so I decided to move to Cambridge and start it. I hoped to lure Robert into working on it with me, but there I ran into a hitch. Robert was now a postdoc at MIT, and though he'd made a lot of money the last time I'd lured him into working on one of my schemes, it had also been a huge time sink. So while he agreed that it sounded like a plausible idea, he firmly refused to work on it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='725c5f11-2423-4e18-bc97-752009c281de'), '9b17eb54-1f33-4904-bc1a-b18254f2f85a': Node(page_content='Hmph. Well, I\\'d do it myself then. I recruited Dan Giffin, who had worked for Viaweb, and two undergrads who wanted summer jobs, and we got to work trying to build what it\\'s now clear is about twenty companies and several open source projects worth of software. The language for defining applications would of course be a dialect of Lisp. But I wasn\\'t so naive as to assume I could spring an overt Lisp on a general audience; we\\'d hide the parentheses, like Dylan did.\\n\\nBy then there was a name for the kind of company Viaweb was, an \"application service provider,\" or ASP. This name didn\\'t last long before it was replaced by \"software as a service,\" but it was current for long enough that I named this new company after it: it was going to be called Aspra.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9b17eb54-1f33-4904-bc1a-b18254f2f85a', wins=1), '1185a7b9-b8da-441e-89b1-12b8a81c2502': Node(page_content=\"I started working on the application builder, Dan worked on network infrastructure, and the two undergrads worked on the first two services (images and phone calls). But about halfway through the summer I realized I really didn't want to run a company — especially not a big one, which it was looking like this would have to be. I'd only started Viaweb because I needed the money. Now that I didn't need money anymore, why was I doing this? If this vision had to be realized as a company, then screw the vision. I'd build a subset that could be done as an open source project.\\n\\nMuch to my surprise, the time I spent working on this stuff was not wasted after all. After we started Y Combinator, I would often encounter startups working on parts of this new architecture, and it was very useful to have spent so much time thinking about it and even trying to write some of it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1185a7b9-b8da-441e-89b1-12b8a81c2502', wins=1), '33017a92-fecc-4bf1-ae08-cc414c62cbf7': Node(page_content=\"The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='33017a92-fecc-4bf1-ae08-cc414c62cbf7'), 'a746d02f-1466-434d-addd-04b936502bec': Node(page_content=\"Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a746d02f-1466-434d-addd-04b936502bec', wins=1), 'ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881': Node(page_content=\"In the print era, the channel for publishing essays had been vanishingly small. Except for a few officially anointed thinkers who went to the right parties in New York, the only people allowed to publish essays were specialists writing about their specialties. There were so many essays that had never been written, because there had been no way to publish them. Now they could be, and I was going to write them. [12]\\n\\nI've worked on several different things, but to the extent there was a turning point where I figured out what to work on, it was when I started publishing essays online. From then on I knew that whatever else I did, I'd always write essays too.\\n\\nI knew that online essays would be a marginal medium at first. Socially they'd seem more like rants posted by nutjobs on their GeoCities sites than the genteel and beautifully typeset compositions published in The New Yorker. But by this point I knew enough to find that encouraging instead of discouraging.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881', wins=1), '836f9505-8112-4300-a484-655731655443': Node(page_content=\"One of the most conspicuous patterns I've noticed in my life is how well it has worked, for me at least, to work on things that weren't prestigious. Still life has always been the least prestigious form of painting. Viaweb and Y Combinator both seemed lame when we started them. I still get the glassy eye from strangers when they ask what I'm writing, and I explain that it's an essay I'm going to publish on my web site. Even Lisp, though prestigious intellectually in something like the way Latin is, also seems about as hip.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='836f9505-8112-4300-a484-655731655443', wins=1), 'ad36fb50-0350-45a4-925e-29f0980a9cba': Node(page_content=\"It's not that unprestigious types of work are good per se. But when you find yourself drawn to some kind of work despite its current lack of prestige, it's a sign both that there's something real to be discovered there, and that you have the right kind of motives. Impure motives are a big danger for the ambitious. If anything is going to lead you astray, it will be the desire to impress people. So while working on things that aren't prestigious doesn't guarantee you're on the right track, it at least guarantees you're not on the most common type of wrong one.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad36fb50-0350-45a4-925e-29f0980a9cba', wins=2), '271b9209-34c1-4eb9-a7d4-5c8cb047c3a7': Node(page_content=\"Over the next several years I wrote lots of essays about all kinds of different topics. O'Reilly reprinted a collection of them as a book, called Hackers & Painters after one of the essays in it. I also worked on spam filters, and did some more painting. I used to have dinners for a group of friends every thursday night, which taught me how to cook for groups. And I bought another building in Cambridge, a former candy factory (and later, twas said, porn studio), to use as an office.\\n\\nOne night in October 2003 there was a big party at my house. It was a clever idea of my friend Maria Daniels, who was one of the thursday diners. Three separate hosts would all invite their friends to one party. So for every guest, two thirds of the other guests would be people they didn't know but would probably like. One of the guests was someone I didn't know but would turn out to like a lot: a woman called Jessica Livingston. A couple days later I asked her out.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='271b9209-34c1-4eb9-a7d4-5c8cb047c3a7'), '7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc': Node(page_content='Jessica was in charge of marketing at a Boston investment bank. This bank thought it understood startups, but over the next year, as she met friends of mine from the startup world, she was surprised how different reality was. And how colorful their stories were. So she decided to compile a book of interviews with startup founders.\\n\\nWhen the bank had financial problems and she had to fire half her staff, she started looking for a new job. In early 2005 she interviewed for a marketing job at a Boston VC firm. It took them weeks to make up their minds, and during this time I started telling her about all the things that needed to be fixed about venture capital. They should make a larger number of smaller investments instead of a handful of giant ones, they should be funding younger, more technical founders instead of MBAs, they should let the founders remain as CEO, and so on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc'), 'ce520b00-c87c-4bfe-a179-0fa11c9d5273': Node(page_content=\"One of my tricks for writing essays had always been to give talks. The prospect of having to stand up in front of a group of people and tell them something that won't waste their time is a great spur to the imagination. When the Harvard Computer Society, the undergrad computer club, asked me to give a talk, I decided I would tell them how to start a startup. Maybe they'd be able to avoid the worst of the mistakes we'd made.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce520b00-c87c-4bfe-a179-0fa11c9d5273', wins=1), 'e9a82e89-0d8f-480b-9f26-1acfffaab9a1': Node(page_content='So I gave this talk, in the course of which I told them that the best sources of seed funding were successful startup founders, because then they\\'d be sources of advice too. Whereupon it seemed they were all looking expectantly at me. Horrified at the prospect of having my inbox flooded by business plans (if I\\'d only known), I blurted out \"But not me!\" and went on with the talk. But afterward it occurred to me that I should really stop procrastinating about angel investing. I\\'d been meaning to since Yahoo bought us, and now it was 7 years later and I still hadn\\'t done one angel investment.\\n\\nMeanwhile I had been scheming with Robert and Trevor about projects we could work on together. I missed working with them, and it seemed like there had to be something we could collaborate on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e9a82e89-0d8f-480b-9f26-1acfffaab9a1'), '073bc744-8e07-42e7-8595-39496927fe88': Node(page_content=\"As Jessica and I were walking home from dinner on March 11, at the corner of Garden and Walker streets, these three threads converged. Screw the VCs who were taking so long to make up their minds. We'd start our own investment firm and actually implement the ideas we'd been talking about. I'd fund it, and Jessica could quit her job and work for it, and we'd get Robert and Trevor as partners too. [13]\\n\\nOnce again, ignorance worked in our favor. We had no idea how to be angel investors, and in Boston in 2005 there were no Ron Conways to learn from. So we just made what seemed like the obvious choices, and some of the things we did turned out to be novel.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='073bc744-8e07-42e7-8595-39496927fe88'), '7ffe9bfd-9225-407c-9048-5ae1b0f25fc6': Node(page_content=\"There are multiple components to Y Combinator, and we didn't figure them all out at once. The part we got first was to be an angel firm. In those days, those two words didn't go together. There were VC firms, which were organized companies with people whose job it was to make investments, but they only did big, million dollar investments. And there were angels, who did smaller investments, but these were individuals who were usually focused on other things and made investments on the side. And neither of them helped founders enough in the beginning. We knew how helpless founders were in some respects, because we remembered how helpless we'd been. For example, one thing Julian had done for us that seemed to us like magic was to get us set up as a company. We were fine writing fairly difficult software, but actually getting incorporated, with bylaws and stock and all that stuff, how on earth did you do that? Our plan was not only to make seed investments, but to do for startups everything Julian had done for\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7ffe9bfd-9225-407c-9048-5ae1b0f25fc6'), '83ef6c3c-2575-48c1-bf79-8376e2afe2e1': Node(page_content='Julian had done for us.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='83ef6c3c-2575-48c1-bf79-8376e2afe2e1'), 'f4142432-6daa-4c6b-ad89-00e3712c373c': Node(page_content='YC was not organized as a fund. It was cheap enough to run that we funded it with our own money. That went right by 99% of readers, but professional investors are thinking \"Wow, that means they got all the returns.\" But once again, this was not due to any particular insight on our part. We didn\\'t know how VC firms were organized. It never occurred to us to try to raise a fund, and if it had, we wouldn\\'t have known where to start. [14]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f4142432-6daa-4c6b-ad89-00e3712c373c', wins=1), 'a4c983c2-a43c-49f6-9ca0-db73867728a9': Node(page_content=\"The most distinctive thing about YC is the batch model: to fund a bunch of startups all at once, twice a year, and then to spend three months focusing intensively on trying to help them. That part we discovered by accident, not merely implicitly but explicitly due to our ignorance about investing. We needed to get experience as investors. What better way, we thought, than to fund a whole bunch of startups at once? We knew undergrads got temporary jobs at tech companies during the summer. Why not organize a summer program where they'd start startups instead? We wouldn't feel guilty for being in a sense fake investors, because they would in a similar sense be fake founders. So while we probably wouldn't make much money out of it, we'd at least get to practice being investors on them, and they for their part would probably have a more interesting summer than they would working at Microsoft.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4c983c2-a43c-49f6-9ca0-db73867728a9', wins=1), '0198787d-a061-45f0-92d5-e45f6e7ae912': Node(page_content='We\\'d use the building I owned in Cambridge as our headquarters. We\\'d all have dinner there once a week — on tuesdays, since I was already cooking for the thursday diners on thursdays — and after dinner we\\'d bring in experts on startups to give talks.\\n\\nWe knew undergrads were deciding then about summer jobs, so in a matter of days we cooked up something we called the Summer Founders Program, and I posted an announcement on my site, inviting undergrads to apply. I had never imagined that writing essays would be a way to get \"deal flow,\" as investors call it, but it turned out to be the perfect source. [15] We got 225 applications for the Summer Founders Program, and we were surprised to find that a lot of them were from people who\\'d already graduated, or were about to that spring. Already this SFP thing was starting to feel more serious than we\\'d intended.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0198787d-a061-45f0-92d5-e45f6e7ae912'), '745dd18f-832f-4d1e-b688-319f7c617464': Node(page_content=\"We invited about 20 of the 225 groups to interview in person, and from those we picked 8 to fund. They were an impressive group. That first batch included reddit, Justin Kan and Emmett Shear, who went on to found Twitch, Aaron Swartz, who had already helped write the RSS spec and would a few years later become a martyr for open access, and Sam Altman, who would later become the second president of YC. I don't think it was entirely luck that the first batch was so good. You had to be pretty bold to sign up for a weird thing like the Summer Founders Program instead of a summer job at a legit place like Microsoft or Goldman Sachs.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='745dd18f-832f-4d1e-b688-319f7c617464'), 'bf8387d0-b094-4f59-8c13-ca1014ea67ac': Node(page_content='The deal for startups was based on a combination of the deal we did with Julian ($10k for 10%) and what Robert said MIT grad students got for the summer ($6k). We invested $6k per founder, which in the typical two-founder case was $12k, in return for 6%. That had to be fair, because it was twice as good as the deal we ourselves had taken. Plus that first summer, which was really hot, Jessica brought the founders free air conditioners. [16]\\n\\nFairly quickly I realized that we had stumbled upon the way to scale startup funding. Funding startups in batches was more convenient for us, because it meant we could do things for a lot of startups at once, but being part of a batch was better for the startups too. It solved one of the biggest problems faced by founders: the isolation. Now you not only had colleagues, but colleagues who understood the problems you were facing and could tell you how they were solving them.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='bf8387d0-b094-4f59-8c13-ca1014ea67ac'), '526ba90a-5223-4530-a966-baea4886bdc1': Node(page_content='As YC grew, we started to notice other advantages of scale. The alumni became a tight community, dedicated to helping one another, and especially the current batch, whose shoes they remembered being in. We also noticed that the startups were becoming one another\\'s customers. We used to refer jokingly to the \"YC GDP,\" but as YC grows this becomes less and less of a joke. Now lots of startups get their initial set of customers almost entirely from among their batchmates.\\n\\nI had not originally intended YC to be a full-time job. I was going to do three things: hack, write essays, and work on YC. As YC grew, and I grew more excited about it, it started to take up a lot more than a third of my attention. But for the first few years I was still able to work on other things.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='526ba90a-5223-4530-a966-baea4886bdc1', wins=1), 'aa1dfbc4-133a-4f2d-99fe-c0ebce320d09': Node(page_content=\"In the summer of 2006, Robert and I started working on a new version of Arc. This one was reasonably fast, because it was compiled into Scheme. To test this new Arc, I wrote Hacker News in it. It was originally meant to be a news aggregator for startup founders and was called Startup News, but after a few months I got tired of reading about nothing but startups. Plus it wasn't startup founders we wanted to reach. It was future startup founders. So I changed the name to Hacker News and the topic to whatever engaged one's intellectual curiosity.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='aa1dfbc4-133a-4f2d-99fe-c0ebce320d09'), 'c8505964-4597-440a-9044-033cf10ca40e': Node(page_content=\"HN was no doubt good for YC, but it was also by far the biggest source of stress for me. If all I'd had to do was select and help founders, life would have been so easy. And that implies that HN was a mistake. Surely the biggest source of stress in one's work should at least be something close to the core of the work. Whereas I was like someone who was in pain while running a marathon not from the exertion of running, but because I had a blister from an ill-fitting shoe. When I was dealing with some urgent problem during YC, there was about a 60% chance it had to do with HN, and a 40% chance it had do with everything else combined. [17]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c8505964-4597-440a-9044-033cf10ca40e'), '251faa7a-72ec-4bd9-ad69-1af024efbbc4': Node(page_content=\"As well as HN, I wrote all of YC's internal software in Arc. But while I continued to work a good deal in Arc, I gradually stopped working on Arc, partly because I didn't have time to, and partly because it was a lot less attractive to mess around with the language now that we had all this infrastructure depending on it. So now my three projects were reduced to two: writing essays and working on YC.\\n\\nYC was different from other kinds of work I've done. Instead of deciding for myself what to work on, the problems came to me. Every 6 months there was a new batch of startups, and their problems, whatever they were, became our problems. It was very engaging work, because their problems were quite varied, and the good founders were very effective. If you were trying to learn the most you could about startups in the shortest possible time, you couldn't have picked a better way to do it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='251faa7a-72ec-4bd9-ad69-1af024efbbc4'), '454a991d-29ac-4982-a8e5-72a02f0ef5a2': Node(page_content='There were parts of the job I didn\\'t like. Disputes between cofounders, figuring out when people were lying to us, fighting with people who maltreated the startups, and so on. But I worked hard even at the parts I didn\\'t like. I was haunted by something Kevin Hale once said about companies: \"No one works harder than the boss.\" He meant it both descriptively and prescriptively, and it was the second part that scared me. I wanted YC to be good, so if how hard I worked set the upper bound on how hard everyone else worked, I\\'d better work very hard.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='454a991d-29ac-4982-a8e5-72a02f0ef5a2'), 'edd1ff8d-62c3-4e10-95c6-6ef7b27a4531': Node(page_content='One day in 2010, when he was visiting California for interviews, Robert Morris did something astonishing: he offered me unsolicited advice. I can only remember him doing that once before. One day at Viaweb, when I was bent over double from a kidney stone, he suggested that it would be a good idea for him to take me to the hospital. That was what it took for Rtm to offer unsolicited advice. So I remember his exact words very clearly. \"You know,\" he said, \"you should make sure Y Combinator isn\\'t the last cool thing you do.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edd1ff8d-62c3-4e10-95c6-6ef7b27a4531'), '71c27b46-b79b-48ef-ad7e-3a0400ece844': Node(page_content=\"At the time I didn't understand what he meant, but gradually it dawned on me that he was saying I should quit. This seemed strange advice, because YC was doing great. But if there was one thing rarer than Rtm offering advice, it was Rtm being wrong. So this set me thinking. It was true that on my current trajectory, YC would be the last thing I did, because it was only taking up more of my attention. It had already eaten Arc, and was in the process of eating essays too. Either YC was my life's work or I'd have to leave eventually. And it wasn't, so I would.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='71c27b46-b79b-48ef-ad7e-3a0400ece844'), '949a121e-1e69-45a4-98cd-e7f7c47c8bf9': Node(page_content=\"In the summer of 2012 my mother had a stroke, and the cause turned out to be a blood clot caused by colon cancer. The stroke destroyed her balance, and she was put in a nursing home, but she really wanted to get out of it and back to her house, and my sister and I were determined to help her do it. I used to fly up to Oregon to visit her regularly, and I had a lot of time to think on those flights. On one of them I realized I was ready to hand YC over to someone else.\\n\\nI asked Jessica if she wanted to be president, but she didn't, so we decided we'd try to recruit Sam Altman. We talked to Robert and Trevor and we agreed to make it a complete changing of the guard. Up till that point YC had been controlled by the original LLC we four had started. But we wanted YC to last for a long time, and to do that it couldn't be controlled by the founders. So if Sam said yes, we'd let him reorganize YC. Robert and I would retire, and Jessica and Trevor would become ordinary partners.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='949a121e-1e69-45a4-98cd-e7f7c47c8bf9'), 'ee41cd68-792e-4ebf-aa6c-672740604a7e': Node(page_content=\"When we asked Sam if he wanted to be president of YC, initially he said no. He wanted to start a startup to make nuclear reactors. But I kept at it, and in October 2013 he finally agreed. We decided he'd take over starting with the winter 2014 batch. For the rest of 2013 I left running YC more and more to Sam, partly so he could learn the job, and partly because I was focused on my mother, whose cancer had returned.\\n\\nShe died on January 15, 2014. We knew this was coming, but it was still hard when it did.\\n\\nI kept working on YC till March, to help get that batch of startups through Demo Day, then I checked out pretty completely. (I still talk to alumni and to new startups working on things I'm interested in, but that only takes a few hours a week.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ee41cd68-792e-4ebf-aa6c-672740604a7e'), '70bcf8a8-1e2c-4cbd-a93f-ade0c453e437': Node(page_content=\"What should I do next? Rtm's advice hadn't included anything about that. I wanted to do something completely different, so I decided I'd paint. I wanted to see how good I could get if I really focused on it. So the day after I stopped working on YC, I started painting. I was rusty and it took a while to get back into shape, but it was at least completely engaging. [18]\\n\\nI spent most of the rest of 2014 painting. I'd never been able to work so uninterruptedly before, and I got to be better than I had been. Not good enough, but better. Then in November, right in the middle of a painting, I ran out of steam. Up till that point I'd always been curious to see how the painting I was working on would turn out, but suddenly finishing this one seemed like a chore. So I stopped working on it and cleaned my brushes and haven't painted since. So far anyway.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='70bcf8a8-1e2c-4cbd-a93f-ade0c453e437'), 'de347d59-7d93-4174-b095-30666d86c163': Node(page_content=\"I realize that sounds rather wimpy. But attention is a zero sum game. If you can choose what to work on, and you choose a project that's not the best one (or at least a good one) for you, then it's getting in the way of another project that is. And at 50 there was some opportunity cost to screwing around.\\n\\nI started writing essays again, and wrote a bunch of new ones over the next few months. I even wrote a couple that weren't about startups. Then in March 2015 I started working on Lisp again.\\n\\nThe distinctive thing about Lisp is that its core is a language defined by writing an interpreter in itself. It wasn't originally intended as a programming language in the ordinary sense. It was meant to be a formal model of computation, an alternative to the Turing machine. If you want to write an interpreter for a language in itself, what's the minimum set of predefined operators you need? The Lisp that John McCarthy invented, or more accurately discovered, is an answer to that question. [19]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='de347d59-7d93-4174-b095-30666d86c163'), 'd8717b54-2764-42ab-a7b9-7dc8f36ee9b4': Node(page_content=\"McCarthy didn't realize this Lisp could even be used to program computers till his grad student Steve Russell suggested it. Russell translated McCarthy's interpreter into IBM 704 machine language, and from that point Lisp started also to be a programming language in the ordinary sense. But its origins as a model of computation gave it a power and elegance that other languages couldn't match. It was this that attracted me in college, though I didn't understand why at the time.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d8717b54-2764-42ab-a7b9-7dc8f36ee9b4'), 'ab5cf714-67cb-4e35-a7a5-cef31b3093c2': Node(page_content=\"McCarthy's 1960 Lisp did nothing more than interpret Lisp expressions. It was missing a lot of things you'd want in a programming language. So these had to be added, and when they were, they weren't defined using McCarthy's original axiomatic approach. That wouldn't have been feasible at the time. McCarthy tested his interpreter by hand-simulating the execution of programs. But it was already getting close to the limit of interpreters you could test that way — indeed, there was a bug in it that McCarthy had overlooked. To test a more complicated interpreter, you'd have had to run it, and computers then weren't powerful enough.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ab5cf714-67cb-4e35-a7a5-cef31b3093c2'), 'ccc691c6-2730-445f-a301-3e6d29614239': Node(page_content=\"Now they are, though. Now you could continue using McCarthy's axiomatic approach till you'd defined a complete programming language. And as long as every change you made to McCarthy's Lisp was a discoveredness-preserving transformation, you could, in principle, end up with a complete language that had this quality. Harder to do than to talk about, of course, but if it was possible in principle, why not try? So I decided to take a shot at it. It took 4 years, from March 26, 2015 to October 12, 2019. It was fortunate that I had a precisely defined goal, or it would have been hard to keep at it for so long.\\n\\nI wrote this new Lisp, called Bel, in itself in Arc. That may sound like a contradiction, but it's an indication of the sort of trickery I had to engage in to make this work. By means of an egregious collection of hacks I managed to make something close enough to an interpreter written in itself that could actually run. Not fast, but fast enough to test.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ccc691c6-2730-445f-a301-3e6d29614239'), '6c6c1376-f7e2-4435-84ea-1324fd16912e': Node(page_content='I had to ban myself from writing essays during most of this time, or I\\'d never have finished. In late 2015 I spent 3 months writing essays, and when I went back to working on Bel I could barely understand the code. Not so much because it was badly written as because the problem is so convoluted. When you\\'re working on an interpreter written in itself, it\\'s hard to keep track of what\\'s happening at what level, and errors can be practically encrypted by the time you get them.\\n\\nSo I said no more essays till Bel was done. But I told few people about Bel while I was working on it. So for years it must have seemed that I was doing nothing, when in fact I was working harder than I\\'d ever worked on anything. Occasionally after wrestling for hours with some gruesome bug I\\'d check Twitter or HN and see someone asking \"Does Paul Graham still code?\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6c6c1376-f7e2-4435-84ea-1324fd16912e'), '0f927fda-431c-4163-9b61-6b3c9eff403b': Node(page_content=\"Working on Bel was hard but satisfying. I worked on it so intensively that at any given time I had a decent chunk of the code in my head and could write more there. I remember taking the boys to the coast on a sunny day in 2015 and figuring out how to deal with some problem involving continuations while I watched them play in the tide pools. It felt like I was doing life right. I remember that because I was slightly dismayed at how novel it felt. The good news is that I had more moments like this over the next few years.\\n\\nIn the summer of 2016 we moved to England. We wanted our kids to see what it was like living in another country, and since I was a British citizen by birth, that seemed the obvious choice. We only meant to stay for a year, but we liked it so much that we still live there. So most of Bel was written in England.\\n\\nIn the fall of 2019, Bel was finally finished. Like McCarthy's original Lisp, it's a spec rather than an implementation, although like McCarthy's Lisp it's a spec expressed as code.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f927fda-431c-4163-9b61-6b3c9eff403b'), '6af9ede9-1b89-44db-a81f-20ce45d1802a': Node(page_content=\"Now that I could write essays again, I wrote a bunch about topics I'd had stacked up. I kept writing essays through 2020, but I also started to think about other things I could work on. How should I choose what to do? Well, how had I chosen what to work on in the past? I wrote an essay for myself to answer that question, and I was surprised how long and messy the answer turned out to be. If this surprised me, who'd lived it, then I thought perhaps it would be interesting to other people, and encouraging to those with similarly messy lives. So I wrote a more detailed version for others to read, and this is the last sentence of it.\\n\\nNotes\\n\\n[1] My experience skipped a step in the evolution of computers: time-sharing machines with interactive OSes. I went straight from batch processing to microcomputers, which made microcomputers seem all the more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6af9ede9-1b89-44db-a81f-20ce45d1802a'), '67d6eed8-0267-4500-a3b2-8c7ed2ac83a6': Node(page_content=\"[2] Italian words for abstract concepts can nearly always be predicted from their English cognates (except for occasional traps like polluzione). It's the everyday words that differ. So if you string together a lot of abstract concepts with a few simple verbs, you can make a little Italian go a long way.\\n\\n[3] I lived at Piazza San Felice 4, so my walk to the Accademia went straight down the spine of old Florence: past the Pitti, across the bridge, past Orsanmichele, between the Duomo and the Baptistery, and then up Via Ricasoli to Piazza San Marco. I saw Florence at street level in every possible condition, from empty dark winter evenings to sweltering summer days when the streets were packed with tourists.\\n\\n[4] You can of course paint people like still lives if you want to, and they're willing. That sort of portrait is arguably the apex of still life painting, though the long sitting does tend to produce pained expressions in the sitters.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='67d6eed8-0267-4500-a3b2-8c7ed2ac83a6'), 'edacd5b2-60d6-434b-ac59-273dd42896e8': Node(page_content=\"[5] Interleaf was one of many companies that had smart people and built impressive technology, and yet got crushed by Moore's Law. In the 1990s the exponential growth in the power of commodity (i.e. Intel) processors rolled up high-end, special-purpose hardware and software companies like a bulldozer.\\n\\n[6] The signature style seekers at RISD weren't specifically mercenary. In the art world, money and coolness are tightly coupled. Anything expensive comes to be seen as cool, and anything seen as cool will soon become equally expensive.\\n\\n[7] Technically the apartment wasn't rent-controlled but rent-stabilized, but this is a refinement only New Yorkers would know or care about. The point is that it was really cheap, less than half market price.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edacd5b2-60d6-434b-ac59-273dd42896e8'), '46a2d3c9-dcd7-4d1d-a520-af1518532c01': Node(page_content=\"[8] Most software you can launch as soon as it's done. But when the software is an online store builder and you're hosting the stores, if you don't have any users yet, that fact will be painfully obvious. So before we could launch publicly we had to launch privately, in the sense of recruiting an initial set of users and making sure they had decent-looking stores.\\n\\n[9] We'd had a code editor in Viaweb for users to define their own page styles. They didn't know it, but they were editing Lisp expressions underneath. But this wasn't an app editor, because the code ran when the merchants' sites were generated, not when shoppers visited them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='46a2d3c9-dcd7-4d1d-a520-af1518532c01'), 'a4bd607d-62be-4ee7-a34d-3bd5305da820': Node(page_content=\"[10] This was the first instance of what is now a familiar experience, and so was what happened next, when I read the comments and found they were full of angry people. How could I claim that Lisp was better than other languages? Weren't they all Turing complete? People who see the responses to essays I write sometimes tell me how sorry they feel for me, but I'm not exaggerating when I reply that it has always been like this, since the very beginning. It comes with the territory. An essay must tell readers things they don't already know, and some people dislike being told such things.\\n\\n[11] People put plenty of stuff on the internet in the 90s of course, but putting something online is not the same as publishing it online. Publishing online means you treat the online version as the (or at least a) primary version.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4bd607d-62be-4ee7-a34d-3bd5305da820', wins=1), '6d435c9f-7f32-4be9-931b-854ce5d29546': Node(page_content=\"[12] There is a general lesson here that our experience with Y Combinator also teaches: Customs continue to constrain you long after the restrictions that caused them have disappeared. Customary VC practice had once, like the customs about publishing essays, been based on real constraints. Startups had once been much more expensive to start, and proportionally rare. Now they could be cheap and common, but the VCs' customs still reflected the old world, just as customs about writing essays still reflected the constraints of the print era.\\n\\nWhich in turn implies that people who are independent-minded (i.e. less influenced by custom) will have an advantage in fields affected by rapid change (where customs are more likely to be obsolete).\\n\\nHere's an interesting point, though: you can't always predict which fields will be affected by rapid change. Obviously software and venture capital will be, but who would have predicted that essay writing would be?\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6d435c9f-7f32-4be9-931b-854ce5d29546', wins=1), '522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e': Node(page_content=\"[13] Y Combinator was not the original name. At first we were called Cambridge Seed. But we didn't want a regional name, in case someone copied us in Silicon Valley, so we renamed ourselves after one of the coolest tricks in the lambda calculus, the Y combinator.\\n\\nI picked orange as our color partly because it's the warmest, and partly because no VC used it. In 2005 all the VCs used staid colors like maroon, navy blue, and forest green, because they were trying to appeal to LPs, not founders. The YC logo itself is an inside joke: the Viaweb logo had been a white V on a red circle, so I made the YC logo a white Y on an orange square.\\n\\n[14] YC did become a fund for a couple years starting in 2009, because it was getting so big I could no longer afford to fund it personally. But after Heroku got bought we had enough money to go back to being self-funded.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e', wins=1), '27b2bd1d-8de5-4424-ba1f-323592eaf441': Node(page_content='[15] I\\'ve never liked the term \"deal flow,\" because it implies that the number of new startups at any given time is fixed. This is not only false, but it\\'s the purpose of YC to falsify it, by causing startups to be founded that would not otherwise have existed.\\n\\n[16] She reports that they were all different shapes and sizes, because there was a run on air conditioners and she had to get whatever she could, but that they were all heavier than she could carry now.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='27b2bd1d-8de5-4424-ba1f-323592eaf441'), 'edabe432-0c59-4ba5-aa37-d5cddb072669': Node(page_content=\"[17] Another problem with HN was a bizarre edge case that occurs when you both write essays and run a forum. When you run a forum, you're assumed to see if not every conversation, at least every conversation involving you. And when you write essays, people post highly imaginative misinterpretations of them on forums. Individually these two phenomena are tedious but bearable, but the combination is disastrous. You actually have to respond to the misinterpretations, because the assumption that you're present in the conversation means that not responding to any sufficiently upvoted misinterpretation reads as a tacit admission that it's correct. But that in turn encourages more; anyone who wants to pick a fight with you senses that now is their chance.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edabe432-0c59-4ba5-aa37-d5cddb072669'), 'e508308d-e2bf-46db-a3c4-c98d86a7d9d4': Node(page_content=\"[18] The worst thing about leaving YC was not working with Jessica anymore. We'd been working on YC almost the whole time we'd known each other, and we'd neither tried nor wanted to separate it from our personal lives, so leaving was like pulling up a deeply rooted tree.\\n\\n[19] One way to get more precise about the concept of invented vs discovered is to talk about space aliens. Any sufficiently advanced alien civilization would certainly know about the Pythagorean theorem, for example. I believe, though with less certainty, that they would also know about the Lisp in McCarthy's 1960 paper.\\n\\nBut if so there's no reason to suppose that this is the limit of the language that might be known to them. Presumably aliens need numbers and errors and I/O too. So it seems likely there exists at least one path out of McCarthy's Lisp along which discoveredness is preserved.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e508308d-e2bf-46db-a3c4-c98d86a7d9d4'), 'cf0b9256-68dd-4e82-86f0-7a7464e0d0fe': Node(page_content='Thanks to Trevor Blackwell, John Collison, Patrick Collison, Daniel Gackle, Ralph Hazell, Jessica Livingston, Robert Morris, and Harj Taggar for reading drafts of this.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='cf0b9256-68dd-4e82-86f0-7a7464e0d0fe')}, run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), node_filter=NodeFilter(llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), threshold=1.5, context_scoring_prompt=Prompt(name='score_context', instruction='\\n Given a context, perform the following task and output the answer in VALID JSON format: Assess the provided context and assign a numerical score of 1 (Low), 2 (Medium), or 3 (High) for each of the following criteria in your JSON response:\\n\\nclarity: Evaluate the precision and understandability of the information presented. High scores (3) are reserved for contexts that are both precise in their information and easy to understand. Low scores (1) are for contexts where the information is vague or hard to comprehend.\\ndepth: Determine the level of detailed examination and the inclusion of innovative insights within the context. A high score indicates a comprehensive and insightful analysis, while a low score suggests a superficial treatment of the topic.\\nstructure: Assess how well the content is organized and whether it flows logically. High scores are awarded to contexts that demonstrate coherent organization and logical progression, whereas low scores indicate a lack of structure or clarity in progression.\\nrelevance: Judge the pertinence of the content to the main topic, awarding high scores to contexts tightly focused on the subject without unnecessary digressions, and low scores to those that are cluttered with irrelevant information.\\nStructure your JSON output to reflect these criteria as keys with their corresponding scores as values\\n ', output_format_instruction='The output should be a well-formatted JSON instance that conforms to the JSON schema below.\\n\\nAs an example, for the schema {\"properties\": {\"foo\": {\"title\": \"Foo\", \"description\": \"a list of strings\", \"type\": \"array\", \"items\": {\"type\": \"string\"}}}, \"required\": [\"foo\"]}\\nthe object {\"foo\": [\"bar\", \"baz\"]} is a well-formatted instance of the schema. The object {\"properties\": {\"foo\": [\"bar\", \"baz\"]}} is not well-formatted.\\n\\nHere is the output JSON schema:\\n```\\n{\"type\": \"object\", \"properties\": {\"clarity\": {\"title\": \"Clarity\", \"type\": \"integer\"}, \"depth\": {\"title\": \"Depth\", \"type\": \"integer\"}, \"structure\": {\"title\": \"Structure\", \"type\": \"integer\"}, \"relevance\": {\"title\": \"Relevance\", \"type\": \"integer\"}}, \"required\": [\"clarity\", \"depth\", \"structure\", \"relevance\"]}\\n```\\n\\nDo not return any preamble or explanations, return only a pure JSON string surrounded by triple backticks (```).', examples=[{'context': 'The Pythagorean theorem is a fundamental principle in geometry. It states that in a right-angled triangle, the square of the length of the hypotenuse (the side opposite the right angle) is equal to the sum of the squares of the lengths of the other two sides. This can be written as a^2 + b^2 = c^2 where c represents the length of the hypotenuse, and a and b represent the lengths of the other two sides.', 'output': {'clarity': 3, 'depth': 1, 'structure': 3, 'relevance': 3}}, {'context': 'Albert Einstein (14 March 1879 - 18 April 1955) was a German-born theoretical physicist who is widely held to be one of the greatest and most influential scientists of all time.', 'output': {'clarity': 3, 'depth': 2, 'structure': 3, 'relevance': 3}}, {'context': \"I love chocolate. It's really tasty. Oh, and by the way, the earth orbits the sun, not the other way around. Also, my favorite color is blue.\", 'output': {'clarity': 2, 'depth': 1, 'structure': 1, 'relevance': 1}}], input_keys=['context'], output_key='output', output_type='json', language='english')), question_filter=QuestionFilter(llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), filter_question_prompt=Prompt(name='filter_question', instruction='\\nAsses the given question for clarity and answerability given enough domain knowledge, consider the following criteria:\\n1.Independence: Can the question be understood and answered without needing additional context or access to external references not provided within the question itself? Questions should be self-contained, meaning they do not rely on specific documents, tables, or prior knowledge not shared within the question.\\n2.Clear Intent: Is it clear what type of answer or information the question seeks? The question should convey its purpose without ambiguity, allowing for a direct and relevant response.\\nBased on these criteria, assign a verdict of \"1\" if a question is specific, independent, and has a clear intent, making it understandable and answerable based on the details provided. Assign \"0\" if it fails to meet one or more of these criteria due to vagueness, reliance on external references, or ambiguity in intent.\\nProvide feedback and a verdict in JSON format, including suggestions for improvement if the question is deemed unclear. Highlight aspects of the question that contribute to its clarity or lack thereof, and offer advice on how it could be reframed or detailed for better understanding and answerability.\\n', output_format_instruction='The output should be a well-formatted JSON instance that conforms to the JSON schema below.\\n\\nAs an example, for the schema {\"properties\": {\"foo\": {\"title\": \"Foo\", \"description\": \"a list of strings\", \"type\": \"array\", \"items\": {\"type\": \"string\"}}}, \"required\": [\"foo\"]}\\nthe object {\"foo\": [\"bar\", \"baz\"]} is a well-formatted instance of the schema. The object {\"properties\": {\"foo\": [\"bar\", \"baz\"]}} is not well-formatted.\\n\\nHere is the output JSON schema:\\n```\\n{\"type\": \"object\", \"properties\": {\"feedback\": {\"title\": \"Feedback\", \"type\": \"string\"}, \"verdict\": {\"title\": \"Verdict\", \"type\": \"integer\"}}, \"required\": [\"feedback\", \"verdict\"]}\\n```\\n\\nDo not return any preamble or explanations, return only a pure JSON string surrounded by triple backticks (```).', examples=[{'question': 'What is the discovery about space?', 'output': {'feedback': \"The question is too vague and broad, asking for a 'discovery about space' without specifying any particular aspect, time frame, or context of interest. This could refer to a wide range of topics, from the discovery of new celestial bodies to advancements in space travel technology. To improve clarity and answerability, the question could specify the type of discovery (e.g., astronomical, technological), the time frame (e.g., recent, historical), or the context (e.g., within a specific research study or space mission).\", 'verdict': 0}}, {'question': \"How does ALMA-13B-R perform compared to other translation models in the WMT'23 study, based on the results in context1 and context2?\", 'output': {'feedback': \"This question asks for a comparison of the ALMA-13B-R model's performance against other translation models within the WMT'23 study, specifically referring to results in 'context1' and 'context2'. While it clearly specifies the model of interest (ALMA-13B-R) and the study (WMT'23), it assumes access to and understanding of 'context1' and 'context2' without explaining what these contexts entail. This makes the question unclear for those not familiar with the WMT'23 study or these specific contexts. To improve clarity and answerability for a broader audience, the question could benefit from defining or describing 'context1' and 'context2' or explaining the criteria used for comparison in these contexts.\", 'verdict': 0}}, {'question': 'How do KIWI-XXL and XCOMET compare to the gold standard references in Table 1 in terms of evaluation scores, translation model performance, and success rate in surpassing the references?', 'output': {'feedback': \"The question requests a comparison between KIWI-XXL and XCOMET models and gold standard references in 'Table 1', focusing on evaluation scores, translation model performance, and success rates in surpassing the references. It specifies the models and criteria for comparison, making the intent clear. However, the question assumes access to 'Table 1' without providing its content or context, making it unclear for those without direct access to the source material. To be clearer and more answerable for a general audience, the question could include a brief description of the content or key findings of 'Table 1', or alternatively, frame the question in a way that does not rely on specific, unpublished documents.\", 'verdict': 0}}, {'question': 'What is the configuration of UL2 training objective in OpenMoE and why is it a better choice for pre-training?', 'output': {'feedback': 'The question asks for the configuration of the UL2 training objective within the OpenMoE framework and the rationale behind its suitability for pre-training. It is clear in specifying the topic of interest (UL2 training objective, OpenMoE) and seeks detailed information on both the configuration and the reasons for its effectiveness in pre-training. However, the question might be challenging for those unfamiliar with the specific terminology or the context of OpenMoE and UL2. For broader clarity and answerability, it would be helpful if the question included a brief explanation or context about OpenMoE and the UL2 training objective, or clarified the aspects of pre-training effectiveness it refers to (e.g., efficiency, accuracy, generalization).', 'verdict': 1}}, {'question': 'What is the detailed configuration of the UL2 training objective in OpenMoE, based on the provided context?', 'output': {'feedback': \"The question seeks detailed information on the UL2 training objective's configuration within the OpenMoE framework, mentioning 'the provided context' without actually including or describing this context within the query. This makes the question unclear for those who do not have access to the unspecified context. For the question to be clear and answerable, it needs to either include the relevant context directly within the question or be framed in a way that does not require external information. Detailing the specific aspects of the configuration of interest (e.g., loss functions, data augmentation techniques) could also help clarify the query.\", 'verdict': 0}}], input_keys=['question'], output_key='output', output_type='json', language='english')), question_answer_prompt=Prompt(name='answer_formulate', instruction=\"Answer the question using the information from the given context. Output verdict as '1' if answer is present '-1' if answer is not present in the context.\", output_format_instruction='', examples=[{'context': 'Climate change is significantly influenced by human activities, notably the emission of greenhouse gases from burning fossil fuels. The increased greenhouse gas concentration in the atmosphere traps more heat, leading to global warming and changes in weather patterns.', 'question': 'How do human activities contribute to climate change?', 'answer': {'answer': 'Human activities contribute to climate change primarily through the emission of greenhouse gases from burning fossil fuels. These emissions increase the concentration of greenhouse gases in the atmosphere, which traps more heat and leads to global warming and altered weather patterns.', 'verdict': '1'}}, {'context': 'The concept of artificial intelligence (AI) has evolved over time, but it fundamentally refers to machines designed to mimic human cognitive functions. AI can learn, reason, perceive, and, in some instances, react like humans, making it pivotal in fields ranging from healthcare to autonomous vehicles.', 'question': 'What are the key capabilities of artificial intelligence?', 'answer': {'answer': 'Artificial intelligence is designed to mimic human cognitive functions, with key capabilities including learning, reasoning, perception, and reacting to the environment in a manner similar to humans. These capabilities make AI pivotal in various fields, including healthcare and autonomous driving.', 'verdict': '1'}}, {'context': 'The novel \"Pride and Prejudice\" by Jane Austen revolves around the character Elizabeth Bennet and her family. The story is set in the 19th century in rural England and deals with issues of marriage, morality, and misconceptions.', 'question': \"What year was 'Pride and Prejudice' published?\", 'answer': {'answer': 'The answer to given question is not present in context', 'verdict': '-1'}}], input_keys=['context', 'question'], output_key='answer', output_type='json', language='english'), find_relevant_context_prompt=Prompt(name='find_relevant_context', instruction='Given a question and set of contexts, find the most relevant contexts to answer the question.', output_format_instruction='', examples=[{'question': 'What is the capital of France?', 'contexts': ['1. France is a country in Western Europe. It has several cities, including Paris, Lyon, and Marseille. Paris is not only known for its cultural landmarks like the Eiffel Tower and the Louvre Museum but also as the administrative center.', '2. The capital of France is Paris. It is also the most populous city in France, with a population of over 2 million people. Paris is known for its cultural landmarks like the Eiffel Tower and the Louvre Museum.', '3. Paris is the capital of France. It is also the most populous city in France, with a population of over 2 million people. Paris is known for its cultural landmarks like the Eiffel Tower and the Louvre Museum.'], 'output': {'relevant_contexts': [1, 2]}}, {'question': 'How does caffeine affect the body and what are its common sources?', 'contexts': ['1. Caffeine is a central nervous system stimulant. It can temporarily ward off drowsiness and restore alertness. It primarily affects the brain, where it alters the function of neurotransmitters.', '2. Regular physical activity is essential for maintaining good health. It can help control weight, combat health conditions, boost energy, and promote better sleep.', '3. Common sources of caffeine include coffee, tea, cola, and energy drinks. These beverages are consumed worldwide and are known for providing a quick boost of energy.'], 'output': {'relevant_contexts': [1, 2]}}], input_keys=['question', 'contexts'], output_key='output', output_type='json', language='english'), rewrite_invalid_question_prompt=Prompt(name='rewrite_question', instruction='Given a context, question and feedback, rewrite the question to improve its clarity and answerability based on the feedback provided.', output_format_instruction='', examples=[{'context': \"The Eiffel Tower was constructed using iron and was originally intended as a temporary exhibit for the 1889 World's Fair held in Paris. Despite its initial temporary purpose, the Eiffel Tower quickly became a symbol of Parisian ingenuity and an iconic landmark of the city, attracting millions of visitors each year. The tower's design, created by Gustave Eiffel, was initially met with criticism from some French artists and intellectuals, but it has since been celebrated as a masterpiece of structural engineering and architectural design.\", 'question': 'Who created the design for the Tower?', 'feedback': \"The question asks about the creator of the design for 'the Tower', but it does not specify which tower it refers to. There are many towers worldwide, and without specifying the exact tower, the question is unclear and unanswerable. To improve the question, it should include the name or a clear description of the specific tower in question.\", 'output': 'Who created the design for the Eiffel Tower?'}, {'context': \"'Exploring Zero-Shot Learning in Neural Networks' was published by Smith and Lee in 2021, focusing on the application of zero-shot learning techniques in artificial intelligence.\", 'question': 'What datasets were used for the zero-shot evaluations in this study?', 'feedback': \"The question asks about the datasets used for zero-shot evaluations in 'this study', without specifying or providing any details about the study in question. This makes the question unclear for those who do not have access to or knowledge of the specific study. To improve clarity and answerability, the question should specify the study it refers to, or provide enough context about the study for the question to be understood and answered independently.\", 'output': 'What datasets were used for the zero-shot evaluations Exploring Zero-Shot Learning in Neural Networks paper?'}], input_keys=['context', 'question', 'feedback'], output_key='output', output_type='str', language='english'), max_tries=5, is_async=True, seed_question_prompt=Prompt(name='seed_question', instruction='Generate a question that can be fully answered from given context. The question should be formed using topic', output_format_instruction='', examples=[{'context': 'Photosynthesis in plants involves converting light energy into chemical energy, using chlorophyll and other pigments to absorb light. This process is crucial for plant growth and the production of oxygen.', 'keyphrase': 'Photosynthesis', 'question': 'What is the role of photosynthesis in plant growth?'}, {'context': 'The Industrial Revolution, starting in the 18th century, marked a major turning point in history as it led to the development of factories and urbanization.', 'keyphrase': 'Industrial Revolution', 'question': 'How did the Industrial Revolution mark a major turning point in history?'}, {'context': 'The process of evaporation plays a crucial role in the water cycle, converting water from liquid to vapor and allowing it to rise into the atmosphere.', 'keyphrase': 'Evaporation', 'question': 'Why is evaporation important in the water cycle?'}], input_keys=['context', 'keyphrase'], output_key='question', output_type='str', language='english'))\n", "max retries exceeded for SimpleEvolution(generator_llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), docstore=InMemoryDocumentStore(splitter=, nodes=[Node(page_content='How to Do Great Work\\n\\nJuly 2023\\n\\nIf you collected lists of techniques for doing great work in a lot of different fields, what would the intersection look like? I decided to find out by making it.\\n\\nPartly my goal was to create a guide that could be used by someone working in any field. But I was also curious about the shape of the intersection. And one thing this exercise shows is that it does have a definite shape; it\\'s not just a point labelled \"work hard.\"\\n\\nThe following recipe assumes you\\'re very ambitious.\\n\\nThe first step is to decide what to work on. The work you choose needs to have three qualities: it has to be something you have a natural aptitude for, that you have a deep interest in, and that offers scope to do great work.\\n\\nIn practice you don\\'t have to worry much about the third criterion. Ambitious people are if anything already too conservative about it. So all you need to do is find something you have an aptitude for and great interest in. [1]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5aca51fd-22c4-45c3-b7b3-50ed488de038'), Node(page_content='That sounds straightforward, but it\\'s often quite difficult. When you\\'re young you don\\'t know what you\\'re good at or what different kinds of work are like. Some kinds of work you end up doing may not even exist yet. So while some people know what they want to do at 14, most have to figure it out.\\n\\nThe way to figure out what to work on is by working. If you\\'re not sure what to work on, guess. But pick something and get going. You\\'ll probably guess wrong some of the time, but that\\'s fine. It\\'s good to know about multiple things; some of the biggest discoveries come from noticing connections between different fields.\\n\\nDevelop a habit of working on your own projects. Don\\'t let \"work\" mean something other people tell you to do. If you do manage to do great work one day, it will probably be on a project of your own. It may be within some bigger project, but you\\'ll be driving your part of it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ea8d692d-2d93-41a6-b814-721f8a0eba80', wins=1), Node(page_content=\"What should your projects be? Whatever seems to you excitingly ambitious. As you grow older and your taste in projects evolves, exciting and important will converge. At 7 it may seem excitingly ambitious to build huge things out of Lego, then at 14 to teach yourself calculus, till at 21 you're starting to explore unanswered questions in physics. But always preserve excitingness.\\n\\nThere's a kind of excited curiosity that's both the engine and the rudder of great work. It will not only drive you, but if you let it have its way, will also show you what to work on.\\n\\nWhat are you excessively curious about — curious to a degree that would bore most other people? That's what you're looking for.\\n\\nOnce you've found something you're excessively interested in, the next step is to learn enough about it to get you to one of the frontiers of knowledge. Knowledge expands fractally, and from a distance its edges look smooth, but once you learn enough to get close to one, they turn out to be full of gaps.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='defa86f2-201a-493b-9e51-4c52b6d22f82'), Node(page_content=\"The next step is to notice them. This takes some skill, because your brain wants to ignore such gaps in order to make a simpler model of the world. Many discoveries have come from asking questions about things that everyone else took for granted. [2]\\n\\nIf the answers seem strange, so much the better. Great work often has a tincture of strangeness. You see this from painting to math. It would be affected to try to manufacture it, but if it appears, embrace it.\\n\\nBoldly chase outlier ideas, even if other people aren't interested in them — in fact, especially if they aren't. If you're excited about some possibility that everyone else ignores, and you have enough expertise to say precisely what they're all overlooking, that's as good a bet as you'll find. [3]\\n\\nFour steps: choose a field, learn enough to get to the frontier, notice gaps, explore promising ones. This is how practically everyone who's done great work has done it, from painters to physicists.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7a41dd22-0f90-4920-9659-427308ab5374'), Node(page_content=\"Steps two and four will require hard work. It may not be possible to prove that you have to work hard to do great things, but the empirical evidence is on the scale of the evidence for mortality. That's why it's essential to work on something you're deeply interested in. Interest will drive you to work harder than mere diligence ever could.\\n\\nThe three most powerful motives are curiosity, delight, and the desire to do something impressive. Sometimes they converge, and that combination is the most powerful of all.\\n\\nThe big prize is to discover a new fractal bud. You notice a crack in the surface of knowledge, pry it open, and there's a whole world inside.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='fbe6561c-75ae-48bf-8f1e-285cae90085e'), Node(page_content=\"Let's talk a little more about the complicated business of figuring out what to work on. The main reason it's hard is that you can't tell what most kinds of work are like except by doing them. Which means the four steps overlap: you may have to work at something for years before you know how much you like it or how good you are at it. And in the meantime you're not doing, and thus not learning about, most other kinds of work. So in the worst case you choose late based on very incomplete information. [4]\\n\\nThe nature of ambition exacerbates this problem. Ambition comes in two forms, one that precedes interest in the subject and one that grows out of it. Most people who do great work have a mix, and the more you have of the former, the harder it will be to decide what to do.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e1a13047-9806-4639-a2a6-9404cfd2b86b'), Node(page_content=\"The educational systems in most countries pretend it's easy. They expect you to commit to a field long before you could know what it's really like. And as a result an ambitious person on an optimal trajectory will often read to the system as an instance of breakage.\\n\\nIt would be better if they at least admitted it — if they admitted that the system not only can't do much to help you figure out what to work on, but is designed on the assumption that you'll somehow magically guess as a teenager. They don't tell you, but I will: when it comes to figuring out what to work on, you're on your own. Some people get lucky and do guess correctly, but the rest will find themselves scrambling diagonally across tracks laid down on the assumption that everyone does.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd2f5b64-32e8-42f0-ba14-4f22a0d37803'), Node(page_content=\"What should you do if you're young and ambitious but don't know what to work on? What you should not do is drift along passively, assuming the problem will solve itself. You need to take action. But there is no systematic procedure you can follow. When you read biographies of people who've done great work, it's remarkable how much luck is involved. They discover what to work on as a result of a chance meeting, or by reading a book they happen to pick up. So you need to make yourself a big target for luck, and the way to do that is to be curious. Try lots of things, meet lots of people, read lots of books, ask lots of questions. [5]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ed92cc5f-6350-4ac8-9097-605342ed58f1', wins=1), Node(page_content=\"When in doubt, optimize for interestingness. Fields change as you learn more about them. What mathematicians do, for example, is very different from what you do in high school math classes. So you need to give different types of work a chance to show you what they're like. But a field should become increasingly interesting as you learn more about it. If it doesn't, it's probably not for you.\\n\\nDon't worry if you find you're interested in different things than other people. The stranger your tastes in interestingness, the better. Strange tastes are often strong ones, and a strong taste for work means you'll be productive. And you're more likely to find new things if you're looking where few have looked before.\\n\\nOne sign that you're suited for some kind of work is when you like even the parts that other people find tedious or frightening.\\n\\nBut fields aren't people; you don't owe them any loyalty. If in the course of working on one thing you discover another that's more exciting, don't be afraid to switch.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dbdc198-e1f6-446b-9b95-bbd6be77492e'), Node(page_content=\"If you're making something for people, make sure it's something they actually want. The best way to do this is to make something you yourself want. Write the story you want to read; build the tool you want to use. Since your friends probably have similar interests, this will also get you your initial audience.\\n\\nThis should follow from the excitingness rule. Obviously the most exciting story to write will be the one you want to read. The reason I mention this case explicitly is that so many people get it wrong. Instead of making what they want, they try to make what some imaginary, more sophisticated audience wants. And once you go down that route, you're lost. [6]\\n\\nThere are a lot of forces that will lead you astray when you're trying to figure out what to work on. Pretentiousness, fashion, fear, money, politics, other people's wishes, eminent frauds. But if you stick to what you find genuinely interesting, you'll be proof against all of them. If you're interested, you're not astray.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebd76502-a324-4fe9-86db-58b4f1184052'), Node(page_content=\"Following your interests may sound like a rather passive strategy, but in practice it usually means following them past all sorts of obstacles. You usually have to risk rejection and failure. So it does take a good deal of boldness.\\n\\nBut while you need boldness, you don't usually need much planning. In most cases the recipe for doing great work is simply: work hard on excitingly ambitious projects, and something good will come of it. Instead of making a plan and then executing it, you just try to preserve certain invariants.\\n\\nThe trouble with planning is that it only works for achievements you can describe in advance. You can win a gold medal or get rich by deciding to as a child and then tenaciously pursuing that goal, but you can't discover natural selection that way.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa'), Node(page_content='I think for most people who want to do great work, the right strategy is not to plan too much. At each stage do whatever seems most interesting and gives you the best options for the future. I call this approach \"staying upwind.\" This is how most people who\\'ve done great work seem to have done it.\\n\\nEven when you\\'ve found something exciting to work on, working on it is not always straightforward. There will be times when some new idea makes you leap out of bed in the morning and get straight to work. But there will also be plenty of times when things aren\\'t like that.\\n\\nYou don\\'t just put out your sail and get blown forward by inspiration. There are headwinds and currents and hidden shoals. So there\\'s a technique to working, just as there is to sailing.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2f6da706-f47d-4336-b3f6-78ff254eae9c'), Node(page_content=\"For example, while you must work hard, it's possible to work too hard, and if you do that you'll find you get diminishing returns: fatigue will make you stupid, and eventually even damage your health. The point at which work yields diminishing returns depends on the type. Some of the hardest types you might only be able to do for four or five hours a day.\\n\\nIdeally those hours will be contiguous. To the extent you can, try to arrange your life so you have big blocks of time to work in. You'll shy away from hard tasks if you know you might be interrupted.\\n\\nIt will probably be harder to start working than to keep working. You'll often have to trick yourself to get over that initial threshold. Don't worry about this; it's the nature of work, not a flaw in your character. Work has a sort of activation energy, both per day and per project. And since this threshold is fake in the sense that it's higher than the energy required to keep going, it's ok to tell yourself a lie of corresponding magnitude to get over it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='29ad26ae-8a90-4634-aff2-b4f662e421e0'), Node(page_content='It\\'s usually a mistake to lie to yourself if you want to do great work, but this is one of the rare cases where it isn\\'t. When I\\'m reluctant to start work in the morning, I often trick myself by saying \"I\\'ll just read over what I\\'ve got so far.\" Five minutes later I\\'ve found something that seems mistaken or incomplete, and I\\'m off.\\n\\nSimilar techniques work for starting new projects. It\\'s ok to lie to yourself about how much work a project will entail, for example. Lots of great things began with someone saying \"How hard could it be?\"\\n\\nThis is one case where the young have an advantage. They\\'re more optimistic, and even though one of the sources of their optimism is ignorance, in this case ignorance can sometimes beat knowledge.\\n\\nTry to finish what you start, though, even if it turns out to be more work than you expected. Finishing things is not just an exercise in tidiness or self-discipline. In many projects a lot of the best work happens in what was meant to be the final stage.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd668cf0-3881-44b4-ad84-628203f14f72'), Node(page_content=\"Another permissible lie is to exaggerate the importance of what you're working on, at least in your own mind. If that helps you discover something new, it may turn out not to have been a lie after all. [7]\\n\\nSince there are two senses of starting work — per day and per project — there are also two forms of procrastination. Per-project procrastination is far the more dangerous. You put off starting that ambitious project from year to year because the time isn't quite right. When you're procrastinating in units of years, you can get a lot not done. [8]\\n\\nOne reason per-project procrastination is so dangerous is that it usually camouflages itself as work. You're not just sitting around doing nothing; you're working industriously on something else. So per-project procrastination doesn't set off the alarms that per-day procrastination does. You're too busy to notice it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='25f94528-87d2-4c1a-9f75-3670e66aefd6'), Node(page_content=\"The way to beat it is to stop occasionally and ask yourself: Am I working on what I most want to work on? When you're young it's ok if the answer is sometimes no, but this gets increasingly dangerous as you get older. [9]\\n\\nGreat work usually entails spending what would seem to most people an unreasonable amount of time on a problem. You can't think of this time as a cost, or it will seem too high. You have to find the work sufficiently engaging as it's happening.\\n\\nThere may be some jobs where you have to work diligently for years at things you hate before you get to the good part, but this is not how great work happens. Great work happens by focusing consistently on something you're genuinely interested in. When you pause to take stock, you're surprised how far you've come.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7fae8eb9-3a0f-4651-9d30-3973508310f4'), Node(page_content=\"The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='1f84089c-1ae3-4652-9f00-ba02164c24d3', wins=1), Node(page_content=\"Something that grows exponentially can become so valuable that it's worth making an extraordinary effort to get it started. But since we underrate exponential growth early on, this too is mostly done unconsciously: people push through the initial, unrewarding phase of learning something new because they know from experience that learning new things always takes an initial push, or they grow their audience one fan at a time because they have nothing better to do. If people consciously realized they could invest in exponential growth, many more would do it.\\n\\nWork doesn't just happen when you're trying to. There's a kind of undirected thinking you do when walking or taking a shower or lying in bed that can be very powerful. By letting your mind wander a little, you'll often solve problems you were unable to solve by frontal attack.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='857bbce1-c4c8-4095-b9ac-c988d50addfc'), Node(page_content=\"You have to be working hard in the normal way to benefit from this phenomenon, though. You can't just walk around daydreaming. The daydreaming has to be interleaved with deliberate work that feeds it questions. [10]\\n\\nEveryone knows to avoid distractions at work, but it's also important to avoid them in the other half of the cycle. When you let your mind wander, it wanders to whatever you care about most at that moment. So avoid the kind of distraction that pushes your work out of the top spot, or you'll waste this valuable type of thinking on the distraction instead. (Exception: Don't avoid love.)\\n\\nConsciously cultivate your taste in the work done in your field. Until you know which is the best and what makes it so, you don't know what you're aiming for.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f41b7677-9e6c-46e2-92fd-993606e5835e'), Node(page_content=\"And that is what you're aiming for, because if you don't try to be the best, you won't even be good. This observation has been made by so many people in so many different fields that it might be worth thinking about why it's true. It could be because ambition is a phenomenon where almost all the error is in one direction — where almost all the shells that miss the target miss by falling short. Or it could be because ambition to be the best is a qualitatively different thing from ambition to be good. Or maybe being good is simply too vague a standard. Probably all three are true. [11]\\n\\nFortunately there's a kind of economy of scale here. Though it might seem like you'd be taking on a heavy burden by trying to be the best, in practice you often end up net ahead. It's exciting, and also strangely liberating. It simplifies things. In some ways it's easier to try to be the best than to try merely to be good.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cb188bc-4106-4204-a6c7-ea3752f34543', wins=1), Node(page_content=\"One way to aim high is to try to make something that people will care about in a hundred years. Not because their opinions matter more than your contemporaries', but because something that still seems good in a hundred years is more likely to be genuinely good.\\n\\nDon't try to work in a distinctive style. Just try to do the best job you can; you won't be able to help doing it in a distinctive way.\\n\\nStyle is doing things in a distinctive way without trying to. Trying to is affectation.\\n\\nAffectation is in effect to pretend that someone other than you is doing the work. You adopt an impressive but fake persona, and while you're pleased with the impressiveness, the fakeness is what shows in the work. [12]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b2c1b809-e821-452c-a352-4b82293e0d98'), Node(page_content='The temptation to be someone else is greatest for the young. They often feel like nobodies. But you never need to worry about that problem, because it\\'s self-solving if you work on sufficiently ambitious projects. If you succeed at an ambitious project, you\\'re not a nobody; you\\'re the person who did it. So just do the work and your identity will take care of itself.\\n\\n\"Avoid affectation\" is a useful rule so far as it goes, but how would you express this idea positively? How would you say what to be, instead of what not to be? The best answer is earnest. If you\\'re earnest you avoid not just affectation but a whole set of similar vices.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='a49d877b-69b4-4171-880a-9931fd094a4d'), Node(page_content=\"The core of being earnest is being intellectually honest. We're taught as children to be honest as an unselfish virtue — as a kind of sacrifice. But in fact it's a source of power too. To see new ideas, you need an exceptionally sharp eye for the truth. You're trying to see more truth than others have seen so far. And how can you have a sharp eye for the truth if you're intellectually dishonest?\\n\\nOne way to avoid intellectual dishonesty is to maintain a slight positive pressure in the opposite direction. Be aggressively willing to admit that you're mistaken. Once you've admitted you were mistaken about something, you're free. Till then you have to carry it. [13]\\n\\nAnother more subtle component of earnestness is informality. Informality is much more important than its grammatically negative name implies. It's not merely the absence of something. It means focusing on what matters instead of what doesn't.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88e2775e-93a9-47b0-a512-2fb4080c590b', wins=2), Node(page_content='What formality and affectation have in common is that as well as doing the work, you\\'re trying to seem a certain way as you\\'re doing it. But any energy that goes into how you seem comes out of being good. That\\'s one reason nerds have an advantage in doing great work: they expend little effort on seeming anything. In fact that\\'s basically the definition of a nerd.\\n\\nNerds have a kind of innocent boldness that\\'s exactly what you need in doing great work. It\\'s not learned; it\\'s preserved from childhood. So hold onto it. Be the one who puts things out there rather than the one who sits back and offers sophisticated-sounding criticisms of them. \"It\\'s easy to criticize\" is true in the most literal sense, and the route to great work is never easy.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6546e3fd-326b-413e-a345-374e27163847'), Node(page_content=\"There may be some jobs where it's an advantage to be cynical and pessimistic, but if you want to do great work it's an advantage to be optimistic, even though that means you'll risk looking like a fool sometimes. There's an old tradition of doing the opposite. The Old Testament says it's better to keep quiet lest you look like a fool. But that's advice for seeming smart. If you actually want to discover new things, it's better to take the risk of telling people your ideas.\\n\\nSome people are naturally earnest, and with others it takes a conscious effort. Either kind of earnestness will suffice. But I doubt it would be possible to do great work without being earnest. It's so hard to do even if you are. You don't have enough margin for error to accommodate the distortions introduced by being affected, intellectually dishonest, orthodox, fashionable, or cool. [14]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='531a5c72-e191-4563-863a-a797751b1fc6', wins=2), Node(page_content=\"Great work is consistent not only with who did it, but with itself. It's usually all of a piece. So if you face a decision in the middle of working on something, ask which choice is more consistent.\\n\\nYou may have to throw things away and redo them. You won't necessarily have to, but you have to be willing to. And that can take some effort; when there's something you need to redo, status quo bias and laziness will combine to keep you in denial about it. To beat this ask: If I'd already made the change, would I want to revert to what I have now?\\n\\nHave the confidence to cut. Don't keep something that doesn't fit just because you're proud of it, or because it cost you a lot of effort.\\n\\nIndeed, in some kinds of work it's good to strip whatever you're doing to its essence. The result will be more concentrated; you'll understand it better; and you won't be able to lie to yourself about whether there's anything real there.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c333306a-d7e5-4c78-b4ce-bebcee166ce5'), Node(page_content='Mathematical elegance may sound like a mere metaphor, drawn from the arts. That\\'s what I thought when I first heard the term \"elegant\" applied to a proof. But now I suspect it\\'s conceptually prior — that the main ingredient in artistic elegance is mathematical elegance. At any rate it\\'s a useful standard well beyond math.\\n\\nElegance can be a long-term bet, though. Laborious solutions will often have more prestige in the short term. They cost a lot of effort and they\\'re hard to understand, both of which impress people, at least temporarily.\\n\\nWhereas some of the very best work will seem like it took comparatively little effort, because it was in a sense already there. It didn\\'t have to be built, just seen. It\\'s a very good sign when it\\'s hard to say whether you\\'re creating something or discovering it.\\n\\nWhen you\\'re doing work that could be seen as either creation or discovery, err on the side of discovery. Try thinking of yourself as a mere conduit through which the ideas take their natural shape.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c75308b1-0b08-4e09-a009-df856bef3945', wins=1), Node(page_content=\"(Strangely enough, one exception is the problem of choosing a problem to work on. This is usually seen as search, but in the best case it's more like creating something. In the best case you create the field in the process of exploring it.)\\n\\nSimilarly, if you're trying to build a powerful tool, make it gratuitously unrestrictive. A powerful tool almost by definition will be used in ways you didn't expect, so err on the side of eliminating restrictions, even if you don't know what the benefit will be.\\n\\nGreat work will often be tool-like in the sense of being something others build on. So it's a good sign if you're creating ideas that others could use, or exposing questions that others could answer. The best ideas have implications in many different areas.\\n\\nIf you express your ideas in the most general form, they'll be truer than you intended.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4f2c5ade-5e17-4002-a1a4-2187f5d88171'), Node(page_content='True by itself is not enough, of course. Great ideas have to be true and new. And it takes a certain amount of ability to see new ideas even once you\\'ve learned enough to get to one of the frontiers of knowledge.\\n\\nIn English we give this ability names like originality, creativity, and imagination. And it seems reasonable to give it a separate name, because it does seem to some extent a separate skill. It\\'s possible to have a great deal of ability in other respects — to have a great deal of what\\'s often called \"technical ability\" — and yet not have much of this.\\n\\nI\\'ve never liked the term \"creative process.\" It seems misleading. Originality isn\\'t a process, but a habit of mind. Original thinkers throw off new ideas about whatever they focus on, like an angle grinder throwing off sparks. They can\\'t help it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='599933be-8cc7-47b3-9079-771faeffc324'), Node(page_content=\"If the thing they're focused on is something they don't understand very well, these new ideas might not be good. One of the most original thinkers I know decided to focus on dating after he got divorced. He knew roughly as much about dating as the average 15 year old, and the results were spectacularly colorful. But to see originality separated from expertise like that made its nature all the more clear.\\n\\nI don't know if it's possible to cultivate originality, but there are definitely ways to make the most of however much you have. For example, you're much more likely to have original ideas when you're working on something. Original ideas don't come from trying to have original ideas. They come from trying to build or understand something slightly too difficult. [15]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='df268d9c-bb83-4274-adec-131a05765453'), Node(page_content=\"Talking or writing about the things you're interested in is a good way to generate new ideas. When you try to put ideas into words, a missing idea creates a sort of vacuum that draws it out of you. Indeed, there's a kind of thinking that can only be done by writing.\\n\\nChanging your context can help. If you visit a new place, you'll often find you have new ideas there. The journey itself often dislodges them. But you may not have to go far to get this benefit. Sometimes it's enough just to go for a walk. [16]\\n\\nIt also helps to travel in topic space. You'll have more new ideas if you explore lots of different topics, partly because it gives the angle grinder more surface area to work on, and partly because analogies are an especially fruitful source of new ideas.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7390fd94-b307-468e-9888-4ba2fc15eb38'), Node(page_content=\"Don't divide your attention evenly between many topics though, or you'll spread yourself too thin. You want to distribute it according to something more like a power law. [17] Be professionally curious about a few topics and idly curious about many more.\\n\\nCuriosity and originality are closely related. Curiosity feeds originality by giving it new things to work on. But the relationship is closer than that. Curiosity is itself a kind of originality; it's roughly to questions what originality is to answers. And since questions at their best are a big component of answers, curiosity at its best is a creative force.\\n\\nHaving new ideas is a strange game, because it usually consists of seeing things that were right under your nose. Once you've seen a new idea, it tends to seem obvious. Why did no one think of this before?\\n\\nWhen an idea seems simultaneously novel and obvious, it's probably a good one.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b'), Node(page_content=\"Seeing something obvious sounds easy. And yet empirically having new ideas is hard. What's the source of this apparent contradiction? It's that seeing the new idea usually requires you to change the way you look at the world. We see the world through models that both help and constrain us. When you fix a broken model, new ideas become obvious. But noticing and fixing a broken model is hard. That's how new ideas can be both obvious and yet hard to discover: they're easy to see after you do something hard.\\n\\nOne way to discover broken models is to be stricter than other people. Broken models of the world leave a trail of clues where they bash against reality. Most people don't want to see these clues. It would be an understatement to say that they're attached to their current model; it's what they think in; so they'll tend to ignore the trail of clues left by its breakage, however conspicuous it may seem in retrospect.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6f83f951-f81a-4afc-9dbc-91e43bbaea88', wins=1), Node(page_content=\"To find new ideas you have to seize on signs of breakage instead of looking away. That's what Einstein did. He was able to see the wild implications of Maxwell's equations not so much because he was looking for new ideas as because he was stricter.\\n\\nThe other thing you need is a willingness to break rules. Paradoxical as it sounds, if you want to fix your model of the world, it helps to be the sort of person who's comfortable breaking rules. From the point of view of the old model, which everyone including you initially shares, the new model usually breaks at least implicit rules.\\n\\nFew understand the degree of rule-breaking required, because new ideas seem much more conservative once they succeed. They seem perfectly reasonable once you're using the new model of the world they brought with them. But they didn't at the time; it took the greater part of a century for the heliocentric model to be generally accepted, even among astronomers, because it felt so wrong.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c9a8c206-a7da-456c-82a6-635ab33aa7b3'), Node(page_content=\"Indeed, if you think about it, a good new idea has to seem bad to most people, or someone would have already explored it. So what you're looking for is ideas that seem crazy, but the right kind of crazy. How do you recognize these? You can't with certainty. Often ideas that seem bad are bad. But ideas that are the right kind of crazy tend to be exciting; they're rich in implications; whereas ideas that are merely bad tend to be depressing.\\n\\nThere are two ways to be comfortable breaking rules: to enjoy breaking them, and to be indifferent to them. I call these two cases being aggressively and passively independent-minded.\\n\\nThe aggressively independent-minded are the naughty ones. Rules don't merely fail to stop them; breaking rules gives them additional energy. For this sort of person, delight at the sheer audacity of a project sometimes supplies enough activation energy to get it started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f5be2dd9-c85c-418c-a716-eb0b78880cae'), Node(page_content=\"The other way to break rules is not to care about them, or perhaps even to know they exist. This is why novices and outsiders often make new discoveries; their ignorance of a field's assumptions acts as a source of temporary passive independent-mindedness. Aspies also seem to have a kind of immunity to conventional beliefs. Several I know say that this helps them to have new ideas.\\n\\nStrictness plus rule-breaking sounds like a strange combination. In popular culture they're opposed. But popular culture has a broken model in this respect. It implicitly assumes that issues are trivial ones, and in trivial matters strictness and rule-breaking are opposed. But in questions that really matter, only rule-breakers can be truly strict.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2362524-ba22-4fb7-8c77-d289a352850b'), Node(page_content=\"An overlooked idea often doesn't lose till the semifinals. You do see it, subconsciously, but then another part of your subconscious shoots it down because it would be too weird, too risky, too much work, too controversial. This suggests an exciting possibility: if you could turn off such filters, you could see more new ideas.\\n\\nOne way to do that is to ask what would be good ideas for someone else to explore. Then your subconscious won't shoot them down to protect you.\\n\\nYou could also discover overlooked ideas by working in the other direction: by starting from what's obscuring them. Every cherished but mistaken principle is surrounded by a dead zone of valuable ideas that are unexplored because they contradict it.\\n\\nReligions are collections of cherished but mistaken principles. So anything that can be described either literally or metaphorically as a religion will have valuable unexplored ideas in its shadow. Copernicus and Darwin both made discoveries of this type. [18]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='018ff54f-2f81-408b-8b62-20443ab66da9'), Node(page_content=\"What are people in your field religious about, in the sense of being too attached to some principle that might not be as self-evident as they think? What becomes possible if you discard it?\\n\\nPeople show much more originality in solving problems than in deciding which problems to solve. Even the smartest can be surprisingly conservative when deciding what to work on. People who'd never dream of being fashionable in any other way get sucked into working on fashionable problems.\\n\\nOne reason people are more conservative when choosing problems than solutions is that problems are bigger bets. A problem could occupy you for years, while exploring a solution might only take days. But even so I think most people are too conservative. They're not merely responding to risk, but to fashion as well. Unfashionable problems are undervalued.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88ff37b8-75c7-48aa-9441-f8cba80464b1'), Node(page_content=\"One of the most interesting kinds of unfashionable problem is the problem that people think has been fully explored, but hasn't. Great work often takes something that already exists and shows its latent potential. Durer and Watt both did this. So if you're interested in a field that others think is tapped out, don't let their skepticism deter you. People are often wrong about this.\\n\\nWorking on an unfashionable problem can be very pleasing. There's no hype or hurry. Opportunists and critics are both occupied elsewhere. The existing work often has an old-school solidity. And there's a satisfying sense of economy in cultivating ideas that would otherwise be wasted.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='963e48ca-37ea-4002-b0b2-78fa521f3597'), Node(page_content='But the most common type of overlooked problem is not explicitly unfashionable in the sense of being out of fashion. It just doesn\\'t seem to matter as much as it actually does. How do you find these? By being self-indulgent — by letting your curiosity have its way, and tuning out, at least temporarily, the little voice in your head that says you should only be working on \"important\" problems.\\n\\nYou do need to work on important problems, but almost everyone is too conservative about what counts as one. And if there\\'s an important but overlooked problem in your neighborhood, it\\'s probably already on your subconscious radar screen. So try asking yourself: if you were going to take a break from \"serious\" work to work on something just because it would be really interesting, what would you do? The answer is probably more important than it seems.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='263b1659-4c96-4db0-a5b9-6e766bc7a928', wins=2), Node(page_content=\"Originality in choosing problems seems to matter even more than originality in solving them. That's what distinguishes the people who discover whole new fields. So what might seem to be merely the initial step — deciding what to work on — is in a sense the key to the whole game.\\n\\nFew grasp this. One of the biggest misconceptions about new ideas is about the ratio of question to answer in their composition. People think big ideas are answers, but often the real insight was in the question.\\n\\nPart of the reason we underrate questions is the way they're used in schools. In schools they tend to exist only briefly before being answered, like unstable particles. But a really good question can be much more than that. A really good question is a partial discovery. How do new species arise? Is the force that makes objects fall to earth the same as the one that keeps planets in their orbits? By even asking such questions you were already in excitingly novel territory.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f3a439f9-a726-4007-90d3-d7e4ac34c811'), Node(page_content=\"Unanswered questions can be uncomfortable things to carry around with you. But the more you're carrying, the greater the chance of noticing a solution — or perhaps even more excitingly, noticing that two unanswered questions are the same.\\n\\nSometimes you carry a question for a long time. Great work often comes from returning to a question you first noticed years before — in your childhood, even — and couldn't stop thinking about. People talk a lot about the importance of keeping your youthful dreams alive, but it's just as important to keep your youthful questions alive. [19]\\n\\nThis is one of the places where actual expertise differs most from the popular picture of it. In the popular picture, experts are certain. But actually the more puzzled you are, the better, so long as (a) the things you're puzzled about matter, and (b) no one else understands them either.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ac0c284a-93cc-4f20-8f95-644471bc59e2'), Node(page_content=\"Think about what's happening at the moment just before a new idea is discovered. Often someone with sufficient expertise is puzzled about something. Which means that originality consists partly of puzzlement — of confusion! You have to be comfortable enough with the world being full of puzzles that you're willing to see them, but not so comfortable that you don't want to solve them. [20]\\n\\nIt's a great thing to be rich in unanswered questions. And this is one of those situations where the rich get richer, because the best way to acquire new questions is to try answering existing ones. Questions don't just lead to answers, but also to more questions.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='43d899d8-1f03-4594-89b0-c8d98a5b6feb'), Node(page_content=\"The best questions grow in the answering. You notice a thread protruding from the current paradigm and try pulling on it, and it just gets longer and longer. So don't require a question to be obviously big before you try answering it. You can rarely predict that. It's hard enough even to notice the thread, let alone to predict how much will unravel if you pull on it.\\n\\nIt's better to be promiscuously curious — to pull a little bit on a lot of threads, and see what happens. Big things start small. The initial versions of big things were often just experiments, or side projects, or talks, which then grew into something bigger. So start lots of small things.\\n\\nBeing prolific is underrated. The more different things you try, the greater the chance of discovering something new. Understand, though, that trying lots of things will mean trying lots of things that don't work. You can't have a lot of good ideas without also having a lot of bad ones. [21]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='36d31bd1-f966-4b1b-97de-447c6e1a6413'), Node(page_content=\"Though it sounds more responsible to begin by studying everything that's been done before, you'll learn faster and have more fun by trying stuff. And you'll understand previous work better when you do look at it. So err on the side of starting. Which is easier when starting means starting small; those two ideas fit together like two puzzle pieces.\\n\\nHow do you get from starting small to doing something great? By making successive versions. Great things are almost always made in successive versions. You start with something small and evolve it, and the final version is both cleverer and more ambitious than anything you could have planned.\\n\\nIt's particularly useful to make successive versions when you're making something for people — to get an initial version in front of them quickly, and then evolve it based on their response.\\n\\nBegin by trying the simplest thing that could possibly work. Surprisingly often, it does. If it doesn't, this will at least get you started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2351f0d2-96fe-4a21-845f-11bf4e69dbd6'), Node(page_content='Don\\'t try to cram too much new stuff into any one version. There are names for doing this with the first version (taking too long to ship) and the second (the second system effect), but these are both merely instances of a more general principle.\\n\\nAn early version of a new project will sometimes be dismissed as a toy. It\\'s a good sign when people do this. That means it has everything a new idea needs except scale, and that tends to follow. [22]\\n\\nThe alternative to starting with something small and evolving it is to plan in advance what you\\'re going to do. And planning does usually seem the more responsible choice. It sounds more organized to say \"we\\'re going to do x and then y and then z\" than \"we\\'re going to try x and see what happens.\" And it is more organized; it just doesn\\'t work as well.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='55306b2a-343d-4e44-8b24-25e471975cd3'), Node(page_content=\"Planning per se isn't good. It's sometimes necessary, but it's a necessary evil — a response to unforgiving conditions. It's something you have to do because you're working with inflexible media, or because you need to coordinate the efforts of a lot of people. If you keep projects small and use flexible media, you don't have to plan as much, and your designs can evolve instead.\\n\\nTake as much risk as you can afford. In an efficient market, risk is proportionate to reward, so don't look for certainty, but for a bet with high expected value. If you're not failing occasionally, you're probably being too conservative.\\n\\nThough conservatism is usually associated with the old, it's the young who tend to make this mistake. Inexperience makes them fear risk, but it's when you're young that you can afford the most.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8776ddf1-1e65-458c-9cc2-63a7fe40f800'), Node(page_content=\"Even a project that fails can be valuable. In the process of working on it, you'll have crossed territory few others have seen, and encountered questions few others have asked. And there's probably no better source of questions than the ones you encounter in trying to do something slightly too hard.\\n\\nUse the advantages of youth when you have them, and the advantages of age once you have those. The advantages of youth are energy, time, optimism, and freedom. The advantages of age are knowledge, efficiency, money, and power. With effort you can acquire some of the latter when young and keep some of the former when old.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c325c260-d37e-4bb0-a8b8-7d2633f1c55e'), Node(page_content='The old also have the advantage of knowing which advantages they have. The young often have them without realizing it. The biggest is probably time. The young have no idea how rich they are in time. The best way to turn this time to advantage is to use it in slightly frivolous ways: to learn about something you don\\'t need to know about, just out of curiosity, or to try building something just because it would be cool, or to become freakishly good at something.\\n\\nThat \"slightly\" is an important qualification. Spend time lavishly when you\\'re young, but don\\'t simply waste it. There\\'s a big difference between doing something you worry might be a waste of time and doing something you know for sure will be. The former is at least a bet, and possibly a better one than you think. [23]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62'), Node(page_content=\"The most subtle advantage of youth, or more precisely of inexperience, is that you're seeing everything with fresh eyes. When your brain embraces an idea for the first time, sometimes the two don't fit together perfectly. Usually the problem is with your brain, but occasionally it's with the idea. A piece of it sticks out awkwardly and jabs you when you think about it. People who are used to the idea have learned to ignore it, but you have the opportunity not to. [24]\\n\\nSo when you're learning about something for the first time, pay attention to things that seem wrong or missing. You'll be tempted to ignore them, since there's a 99% chance the problem is with you. And you may have to set aside your misgivings temporarily to keep progressing. But don't forget about them. When you've gotten further into the subject, come back and check if they're still there. If they're still viable in the light of your present knowledge, they probably represent an undiscovered idea.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7'), Node(page_content=\"One of the most valuable kinds of knowledge you get from experience is to know what you don't have to worry about. The young know all the things that could matter, but not their relative importance. So they worry equally about everything, when they should worry much more about a few things and hardly at all about the rest.\\n\\nBut what you don't know is only half the problem with inexperience. The other half is what you do know that ain't so. You arrive at adulthood with your head full of nonsense — bad habits you've acquired and false things you've been taught — and you won't be able to do great work till you clear away at least the nonsense in the way of whatever type of work you want to do.\\n\\nMuch of the nonsense left in your head is left there by schools. We're so used to schools that we unconsciously treat going to school as identical with learning, but in fact schools have all sorts of strange qualities that warp our ideas about learning and thinking.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebcb18af-82cb-4367-bb8f-60de302902d8'), Node(page_content=\"For example, schools induce passivity. Since you were a small child, there was an authority at the front of the class telling all of you what you had to learn and then measuring whether you did. But neither classes nor tests are intrinsic to learning; they're just artifacts of the way schools are usually designed.\\n\\nThe sooner you overcome this passivity, the better. If you're still in school, try thinking of your education as your project, and your teachers as working for you rather than vice versa. That may seem a stretch, but it's not merely some weird thought experiment. It's the truth, economically, and in the best case it's the truth intellectually as well. The best teachers don't want to be your bosses. They'd prefer it if you pushed ahead, using them as a source of advice, rather than being pulled by them through the material.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='16440cdc-9b76-475c-bd3a-8e43dae9a434'), Node(page_content='Schools also give you a misleading impression of what work is like. In school they tell you what the problems are, and they\\'re almost always soluble using no more than you\\'ve been taught so far. In real life you have to figure out what the problems are, and you often don\\'t know if they\\'re soluble at all.\\n\\nBut perhaps the worst thing schools do to you is train you to win by hacking the test. You can\\'t do great work by doing that. You can\\'t trick God. So stop looking for that kind of shortcut. The way to beat the system is to focus on problems and solutions that others have overlooked, not to skimp on the work itself.\\n\\nDon\\'t think of yourself as dependent on some gatekeeper giving you a \"big break.\" Even if this were true, the best way to get it would be to focus on doing good work rather than chasing influential people.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c0f04-9f7c-4c8f-b6e9-23539e87f9a1'), Node(page_content=\"And don't take rejection by committees to heart. The qualities that impress admissions officers and prize committees are quite different from those required to do great work. The decisions of selection committees are only meaningful to the extent that they're part of a feedback loop, and very few are.\\n\\nPeople new to a field will often copy existing work. There's nothing inherently bad about that. There's no better way to learn how something works than by trying to reproduce it. Nor does copying necessarily make your work unoriginal. Originality is the presence of new ideas, not the absence of old ones.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c8acb19e-fb92-4e15-a633-895f474f5fd1'), Node(page_content='There\\'s a good way to copy and a bad way. If you\\'re going to copy something, do it openly instead of furtively, or worse still, unconsciously. This is what\\'s meant by the famously misattributed phrase \"Great artists steal.\" The really dangerous kind of copying, the kind that gives copying a bad name, is the kind that\\'s done without realizing it, because you\\'re nothing more than a train running on tracks laid down by someone else. But at the other extreme, copying can be a sign of superiority rather than subordination. [25]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5358b733-dcf2-4681-99ff-dd89b89c6718', wins=1), Node(page_content=\"In many fields it's almost inevitable that your early work will be in some sense based on other people's. Projects rarely arise in a vacuum. They're usually a reaction to previous work. When you're first starting out, you don't have any previous work; if you're going to react to something, it has to be someone else's. Once you're established, you can react to your own. But while the former gets called derivative and the latter doesn't, structurally the two cases are more similar than they seem.\\n\\nOddly enough, the very novelty of the most novel ideas sometimes makes them seem at first to be more derivative than they are. New discoveries often have to be conceived initially as variations of existing things, even by their discoverers, because there isn't yet the conceptual vocabulary to express them.\\n\\nThere are definitely some dangers to copying, though. One is that you'll tend to copy old things — things that were in their day at the frontier of knowledge, but no longer are.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f087a707-515e-4c49-9772-187a7075ed75'), Node(page_content=\"And when you do copy something, don't copy every feature of it. Some will make you ridiculous if you do. Don't copy the manner of an eminent 50 year old professor if you're 18, for example, or the idiom of a Renaissance poem hundreds of years later.\\n\\nSome of the features of things you admire are flaws they succeeded despite. Indeed, the features that are easiest to imitate are the most likely to be the flaws.\\n\\nThis is particularly true for behavior. Some talented people are jerks, and this sometimes makes it seem to the inexperienced that being a jerk is part of being talented. It isn't; being talented is merely how they get away with it.\\n\\nOne of the most powerful kinds of copying is to copy something from one field into another. History is so full of chance discoveries of this type that it's probably worth giving chance a hand by deliberately learning about other kinds of work. You can take ideas from quite distant fields if you let them be metaphors.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='daf67766-a44c-4c3b-bd77-dc6d1045d490'), Node(page_content=\"Negative examples can be as inspiring as positive ones. In fact you can sometimes learn more from things done badly than from things done well; sometimes it only becomes clear what's needed when it's missing.\\n\\nIf a lot of the best people in your field are collected in one place, it's usually a good idea to visit for a while. It will increase your ambition, and also, by showing you that these people are human, increase your self-confidence. [26]\\n\\nIf you're earnest you'll probably get a warmer welcome than you might expect. Most people who are very good at something are happy to talk about it with anyone who's genuinely interested. If they're really good at their work, then they probably have a hobbyist's interest in it, and hobbyists always want to talk about their hobbies.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='18f9beba-e410-4473-97ad-959d232cd009'), Node(page_content=\"It may take some effort to find the people who are really good, though. Doing great work has such prestige that in some places, particularly universities, there's a polite fiction that everyone is engaged in it. And that is far from true. People within universities can't say so openly, but the quality of the work being done in different departments varies immensely. Some departments have people doing great work; others have in the past; others never have.\\n\\nSeek out the best colleagues. There are a lot of projects that can't be done alone, and even if you're working on one that can be, it's good to have other people to encourage you and to bounce ideas off.\\n\\nColleagues don't just affect your work, though; they also affect you. So work with people you want to become like, because you will.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e4ed843d-1771-424a-91fc-5b74bcd2bc37'), Node(page_content=\"Quality is more important than quantity in colleagues. It's better to have one or two great ones than a building full of pretty good ones. In fact it's not merely better, but necessary, judging from history: the degree to which great work happens in clusters suggests that one's colleagues often make the difference between doing great work and not.\\n\\nHow do you know when you have sufficiently good colleagues? In my experience, when you do, you know. Which means if you're unsure, you probably don't. But it may be possible to give a more concrete answer than that. Here's an attempt: sufficiently good colleagues offer surprising insights. They can see and do things that you can't. So if you have a handful of colleagues good enough to keep you on your toes in this sense, you're probably over the threshold.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6c16f93b-75ea-4884-8959-b8d243716257'), Node(page_content=\"Most of us can benefit from collaborating with colleagues, but some projects require people on a larger scale, and starting one of those is not for everyone. If you want to run a project like that, you'll have to become a manager, and managing well takes aptitude and interest like any other kind of work. If you don't have them, there is no middle path: you must either force yourself to learn management as a second language, or avoid such projects. [27]\\n\\nHusband your morale. It's the basis of everything when you're working on ambitious projects. You have to nurture and protect it like a living organism.\\n\\nMorale starts with your view of life. You're more likely to do great work if you're an optimist, and more likely to if you think of yourself as lucky than if you think of yourself as a victim.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='41972435-555e-4d47-977a-b91de1f27a90'), Node(page_content=\"Indeed, work can to some extent protect you from your problems. If you choose work that's pure, its very difficulties will serve as a refuge from the difficulties of everyday life. If this is escapism, it's a very productive form of it, and one that has been used by some of the greatest minds in history.\\n\\nMorale compounds via work: high morale helps you do good work, which increases your morale and helps you do even better work. But this cycle also operates in the other direction: if you're not doing good work, that can demoralize you and make it even harder to. Since it matters so much for this cycle to be running in the right direction, it can be a good idea to switch to easier work when you're stuck, just so you start to get something done.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2821136-b037-4332-bbbd-de2fcbeae316', wins=1), Node(page_content='One of the biggest mistakes ambitious people make is to allow setbacks to destroy their morale all at once, like a balloon bursting. You can inoculate yourself against this by explicitly considering setbacks a part of your process. Solving hard problems always involves some backtracking.\\n\\nDoing great work is a depth-first search whose root node is the desire to. So \"If at first you don\\'t succeed, try, try again\" isn\\'t quite right. It should be: If at first you don\\'t succeed, either try again, or backtrack and then try again.\\n\\n\"Never give up\" is also not quite right. Obviously there are times when it\\'s the right choice to eject. A more precise version would be: Never let setbacks panic you into backtracking more than you need to. Corollary: Never abandon the root node.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4593e897-c389-4639-98bd-7c159e1b3eae'), Node(page_content=\"It's not necessarily a bad sign if work is a struggle, any more than it's a bad sign to be out of breath while running. It depends how fast you're running. So learn to distinguish good pain from bad. Good pain is a sign of effort; bad pain is a sign of damage.\\n\\nAn audience is a critical component of morale. If you're a scholar, your audience may be your peers; in the arts, it may be an audience in the traditional sense. Either way it doesn't need to be big. The value of an audience doesn't grow anything like linearly with its size. Which is bad news if you're famous, but good news if you're just starting out, because it means a small but dedicated audience can be enough to sustain you. If a handful of people genuinely love what you're doing, that's enough.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b00c903d-199c-47b5-9884-f47a81649533'), Node(page_content=\"To the extent you can, avoid letting intermediaries come between you and your audience. In some types of work this is inevitable, but it's so liberating to escape it that you might be better off switching to an adjacent type if that will let you go direct. [28]\\n\\nThe people you spend time with will also have a big effect on your morale. You'll find there are some who increase your energy and others who decrease it, and the effect someone has is not always what you'd expect. Seek out the people who increase your energy and avoid those who decrease it. Though of course if there's someone you need to take care of, that takes precedence.\\n\\nDon't marry someone who doesn't understand that you need to work, or sees your work as competition for your attention. If you're ambitious, you need to work; it's almost like a medical condition; so someone who won't let you work either doesn't understand you, or does and doesn't care.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='53911edb-1d5b-42d8-8f83-00572631b56a', wins=1), Node(page_content=\"Ultimately morale is physical. You think with your body, so it's important to take care of it. That means exercising regularly, eating and sleeping well, and avoiding the more dangerous kinds of drugs. Running and walking are particularly good forms of exercise because they're good for thinking. [29]\\n\\nPeople who do great work are not necessarily happier than everyone else, but they're happier than they'd be if they didn't. In fact, if you're smart and ambitious, it's dangerous not to be productive. People who are smart and ambitious but don't achieve much tend to become bitter.\\n\\nIt's ok to want to impress other people, but choose the right people. The opinion of people you respect is signal. Fame, which is the opinion of a much larger group you might or might not respect, just adds noise.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cc70f37-da0e-44f9-a413-70a2f96e884a'), Node(page_content='The prestige of a type of work is at best a trailing indicator and sometimes completely mistaken. If you do anything well enough, you\\'ll make it prestigious. So the question to ask about a type of work is not how much prestige it has, but how well it could be done.\\n\\nCompetition can be an effective motivator, but don\\'t let it choose the problem for you; don\\'t let yourself get drawn into chasing something just because others are. In fact, don\\'t let competitors make you do anything much more specific than work harder.\\n\\nCuriosity is the best guide. Your curiosity never lies, and it knows more than you do about what\\'s worth paying attention to.\\n\\nNotice how often that word has come up. If you asked an oracle the secret to doing great work and the oracle replied with a single word, my bet would be on \"curiosity.\"\\n\\nThat doesn\\'t translate directly to advice. It\\'s not enough just to be curious, and you can\\'t command curiosity anyway. But you can nurture it and let it drive you.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c6cc7-ee83-4bdb-a16f-fb64224418df'), Node(page_content=\"Curiosity is the key to all four steps in doing great work: it will choose the field for you, get you to the frontier, cause you to notice the gaps in it, and drive you to explore them. The whole process is a kind of dance with curiosity.\\n\\nBelieve it or not, I tried to make this essay as short as I could. But its length at least means it acts as a filter. If you made it this far, you must be interested in doing great work. And if so you're already further along than you might realize, because the set of people willing to want to is small.\\n\\nThe factors in doing great work are factors in the literal, mathematical sense, and they are: ability, interest, effort, and luck. Luck by definition you can't do anything about, so we can ignore that. And we can assume effort, if you do in fact want to do great work. So the problem boils down to ability and interest. Can you find a kind of work where your ability and interest will combine to yield an explosion of new ideas?\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='518b39aa-59f8-4cb7-9c23-4ac7197f8250', wins=1), Node(page_content=\"Here there are grounds for optimism. There are so many different ways to do great work, and even more that are still undiscovered. Out of all those different types of work, the one you're most suited for is probably a pretty close match. Probably a comically close match. It's just a question of finding it, and how far into it your ability and interest can take you. And you can only answer that by trying.\\n\\nMany more people could try to do great work than do. What holds them back is a combination of modesty and fear. It seems presumptuous to try to be Newton or Shakespeare. It also seems hard; surely if you tried something like that, you'd fail. Presumably the calculation is rarely explicit. Few people consciously decide not to try to do great work. But that's what's going on subconsciously; they shy away from the question.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4bd8c91f-16e5-4aab-a361-b2e98eee6b10'), Node(page_content=\"So I'm going to pull a sneaky trick on you. Do you want to do great work, or not? Now you have to decide consciously. Sorry about that. I wouldn't have done it to a general audience. But we already know you're interested.\\n\\nDon't worry about being presumptuous. You don't have to tell anyone. And if it's too hard and you fail, so what? Lots of people have worse problems than that. In fact you'll be lucky if it's the worst problem you have.\\n\\nYes, you'll have to work hard. But again, lots of people have to work hard. And if you're working on something you find very interesting, which you necessarily will if you're on the right path, the work will probably feel less burdensome than a lot of your peers'.\\n\\nThe discoveries are out there, waiting to be made. Why not by you?\\n\\nNotes\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5098c334-acd7-4051-8409-88ae99b130c4'), Node(page_content='Notes\\n\\n[1] I don\\'t think you could give a precise definition of what counts as great work. Doing great work means doing something important so well that you expand people\\'s ideas of what\\'s possible. But there\\'s no threshold for importance. It\\'s a matter of degree, and often hard to judge at the time anyway. So I\\'d rather people focused on developing their interests rather than worrying about whether they\\'re important or not. Just try to do something amazing, and leave it to future generations to say if you succeeded.\\n\\n[2] A lot of standup comedy is based on noticing anomalies in everyday life. \"Did you ever notice...?\" New ideas come from doing this about nontrivial things. Which may help explain why people\\'s reaction to a new idea is often the first half of laughing: Ha!\\n\\n[3] That second qualifier is critical. If you\\'re excited about something most authorities discount, but you can\\'t give a more precise explanation than \"they don\\'t get it,\" then you\\'re starting to drift into the territory of cranks.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='85fcc3b5-ead2-41ce-bd52-c45b5555894f'), Node(page_content=\"[4] Finding something to work on is not simply a matter of finding a match between the current version of you and a list of known problems. You'll often have to coevolve with the problem. That's why it can sometimes be so hard to figure out what to work on. The search space is huge. It's the cartesian product of all possible types of work, both known and yet to be discovered, and all possible future versions of you.\\n\\nThere's no way you could search this whole space, so you have to rely on heuristics to generate promising paths through it and hope the best matches will be clustered. Which they will not always be; different types of work have been collected together as much by accidents of history as by the intrinsic similarities between them.\\n\\n[5] There are many reasons curious people are more likely to do great work, but one of the more subtle is that, by casting a wide net, they're more likely to find the right thing to work on in the first place.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2e5f7714-e0a8-4be5-ab6f-433a316b1c41'), Node(page_content=\"[6] It can also be dangerous to make things for an audience you feel is less sophisticated than you, if that causes you to talk down to them. You can make a lot of money doing that, if you do it in a sufficiently cynical way, but it's not the route to great work. Not that anyone using this m.o. would care.\\n\\n[7] This idea I learned from Hardy's A Mathematician's Apology, which I recommend to anyone ambitious to do great work, in any field.\\n\\n[8] Just as we overestimate what we can do in a day and underestimate what we can do over several years, we overestimate the damage done by procrastinating for a day and underestimate the damage done by procrastinating for several years.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f43e912a-048c-44f0-8a64-9b58b1fa4f58'), Node(page_content=\"[9] You can't usually get paid for doing exactly what you want, especially early on. There are two options: get paid for doing work close to what you want and hope to push it closer, or get paid for doing something else entirely and do your own projects on the side. Both can work, but both have drawbacks: in the first approach your work is compromised by default, and in the second you have to fight to get time to do it.\\n\\n[10] If you set your life up right, it will deliver the focus-relax cycle automatically. The perfect setup is an office you work in and that you walk to and from.\\n\\n[11] There may be some very unworldly people who do great work without consciously trying to. If you want to expand this rule to cover that case, it becomes: Don't try to be anything except the best.\\n\\n[12] This gets more complicated in work like acting, where the goal is to adopt a fake persona. But even here it's possible to be affected. Perhaps the rule in such fields should be to avoid unintentional affectation.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='af0eafcf-c1b7-46cd-b1b2-223f4aed0984'), Node(page_content='[13] It\\'s safe to have beliefs that you treat as unquestionable if and only if they\\'re also unfalsifiable. For example, it\\'s safe to have the principle that everyone should be treated equally under the law, because a sentence with a \"should\" in it isn\\'t really a statement about the world and is therefore hard to disprove. And if there\\'s no evidence that could disprove one of your principles, there can\\'t be any facts you\\'d need to ignore in order to preserve it.\\n\\n[14] Affectation is easier to cure than intellectual dishonesty. Affectation is often a shortcoming of the young that burns off in time, while intellectual dishonesty is more of a character flaw.\\n\\n[15] Obviously you don\\'t have to be working at the exact moment you have the idea, but you\\'ll probably have been working fairly recently.\\n\\n[16] Some say psychoactive drugs have a similar effect. I\\'m skeptical, but also almost totally ignorant of their effects.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6afc67d5-0fd7-48a8-829f-201370a6be57'), Node(page_content=\"[17] For example you might give the nth most important topic (m-1)/m^n of your attention, for some m > 1. You couldn't allocate your attention so precisely, of course, but this at least gives an idea of a reasonable distribution.\\n\\n[18] The principles defining a religion have to be mistaken. Otherwise anyone might adopt them, and there would be nothing to distinguish the adherents of the religion from everyone else.\\n\\n[19] It might be a good exercise to try writing down a list of questions you wondered about in your youth. You might find you're now in a position to do something about some of them.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='875a91c1-a9d8-4c9b-a094-4e865ec91c81'), Node(page_content='[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they\\'re generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling\\'s \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you\\'re wasting time is to ask if you\\'re producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don\\'t.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dc1d1d4-e75c-4e42-9567-9d7f2e048319', wins=1), Node(page_content=\"[24] Another related advantage is that if you haven't said anything publicly yet, you won't be biased toward evidence that supports your earlier conclusions. With sufficient integrity you could achieve eternal youth in this respect, but few manage to. For most people, having previously published opinions has an effect similar to ideology, just in quantity 1.\\n\\n[25] In the early 1630s Daniel Mytens made a painting of Henrietta Maria handing a laurel wreath to Charles I. Van Dyck then painted his own version to show how much better he was.\\n\\n[26] I'm being deliberately vague about what a place is. As of this writing, being in the same physical place has advantages that are hard to duplicate, but that could change.\\n\\n[27] This is false when the work the other people have to do is very constrained, as with SETI@home or Bitcoin. It may be possible to expand the area in which it's false by defining similarly restricted protocols with more freedom of action in the nodes.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2cbfecc-dc00-438a-ab59-b82bfd683a65'), Node(page_content='[28] Corollary: Building something that enables people to go around intermediaries and engage directly with their audience is probably a good idea.\\n\\n[29] It may be helpful always to walk or run the same route, because that frees attention for thinking. It feels that way to me, and there is some historical evidence for it.\\n\\nThanks to Trevor Blackwell, Daniel Gackle, Pam Graham, Tom Howard, Patrick Hsu, Steve Huffman, Jessica Livingston, Henry Lloyd-Baker, Bob Metcalfe, Ben Miller, Robert Morris, Michael Nielsen, Courtenay Pipkin, Joris Poort, Mieke Roos, Rajat Suri, Harj Taggar, Garry Tan, and my younger son for suggestions and for reading drafts.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='d64ee58e-fa36-495b-8ef7-df70c6375e80'), Node(page_content='What I Worked On\\n\\nFebruary 2021\\n\\nBefore college the two main things I worked on, outside of school, were writing and programming. I didn\\'t write essays. I wrote what beginning writers were supposed to write then, and probably still are: short stories. My stories were awful. They had hardly any plot, just characters with strong feelings, which I imagined made them deep.\\n\\nThe first programs I tried writing were on the IBM 1401 that our school district used for what was then called \"data processing.\" This was in 9th grade, so I was 13 or 14. The school district\\'s 1401 happened to be in the basement of our junior high school, and my friend Rich Draves and I got permission to use it. It was like a mini Bond villain\\'s lair down there, with all these alien-looking machines — CPU, disk drives, printer, card reader — sitting up on a raised floor under bright fluorescent lights.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8941624d-30a5-4c1f-936b-72b3c0e8feb1', wins=1), Node(page_content='The language we used was an early version of Fortran. You had to type programs on punch cards, then stack them in the card reader and press a button to load the program into memory and run it. The result would ordinarily be to print something on the spectacularly loud printer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2ddb6920-17bc-405e-9cbe-5b2852d92feb'), Node(page_content=\"I was puzzled by the 1401. I couldn't figure out what to do with it. And in retrospect there's not much I could have done with it. The only form of input to programs was data stored on punched cards, and I didn't have any data stored on punched cards. The only other option was to do things that didn't rely on any input, like calculate approximations of pi, but I didn't know enough math to do anything interesting of that type. So I'm not surprised I can't remember any programs I wrote, because they can't have done much. My clearest memory is of the moment I learned it was possible for programs not to terminate, when one of mine didn't. On a machine without time-sharing, this was a social as well as a technical error, as the data center manager's expression made clear.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2cae8c4f-333e-4615-8808-6e9ab6f79097', wins=1), Node(page_content='With microcomputers, everything changed. Now you could have a computer sitting right in front of you, on a desk, that could respond to your keystrokes as it was running instead of just churning through a stack of punch cards and then stopping. [1]\\n\\nThe first of my friends to get a microcomputer built it himself. It was sold as a kit by Heathkit. I remember vividly how impressed and envious I felt watching him sitting in front of it, typing programs right into the computer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d0f65811-4213-4ff8-bf54-07ee86007f73'), Node(page_content=\"Computers were expensive in those days and it took me years of nagging before I convinced my father to buy one, a TRS-80, in about 1980. The gold standard then was the Apple II, but a TRS-80 was good enough. This was when I really started programming. I wrote simple games, a program to predict how high my model rockets would fly, and a word processor that my father used to write at least one book. There was only room in memory for about 2 pages of text, so he'd write 2 pages at a time and then print them out, but it was a lot better than a typewriter.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0cc36135-748a-47b8-9a05-cf6d0a8ea13b', wins=1), Node(page_content=\"Though I liked programming, I didn't plan to study it in college. In college I was going to study philosophy, which sounded much more powerful. It seemed, to my naive high school self, to be the study of the ultimate truths, compared to which the things studied in other fields would be mere domain knowledge. What I discovered when I got to college was that the other fields took up so much of the space of ideas that there wasn't much left for these supposed ultimate truths. All that seemed left for philosophy were edge cases that people in other fields felt could safely be ignored.\\n\\nI couldn't have put this into words when I was 18. All I knew at the time was that I kept taking philosophy courses and they kept being boring. So I decided to switch to AI.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8ced309b-74f2-4240-917b-e28b30dc433b'), Node(page_content=\"AI was in the air in the mid 1980s, but there were two things especially that made me want to work on it: a novel by Heinlein called The Moon is a Harsh Mistress, which featured an intelligent computer called Mike, and a PBS documentary that showed Terry Winograd using SHRDLU. I haven't tried rereading The Moon is a Harsh Mistress, so I don't know how well it has aged, but when I read it I was drawn entirely into its world. It seemed only a matter of time before we'd have Mike, and when I saw Winograd using SHRDLU, it seemed like that time would be a few years at most. All you had to do was teach SHRDLU more words.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01436d32-d282-4de9-9b73-7faec7d1b772'), Node(page_content=\"There weren't any classes in AI at Cornell then, not even graduate classes, so I started trying to teach myself. Which meant learning Lisp, since in those days Lisp was regarded as the language of AI. The commonly used programming languages then were pretty primitive, and programmers' ideas correspondingly so. The default language at Cornell was a Pascal-like language called PL/I, and the situation was similar elsewhere. Learning Lisp expanded my concept of a program so fast that it was years before I started to have a sense of where the new limits were. This was more like it; this was what I had expected college to do. It wasn't happening in a class, like it was supposed to, but that was ok. For the next couple years I was on a roll. I knew what I was going to do.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c7dd7bbf-08ac-408f-b975-8274b58b91ca'), Node(page_content='For my undergraduate thesis, I reverse-engineered SHRDLU. My God did I love working on that program. It was a pleasing bit of code, but what made it even more exciting was my belief — hard to imagine now, but not unique in 1985 — that it was already climbing the lower slopes of intelligence.\\n\\nI had gotten into a program at Cornell that didn\\'t make you choose a major. You could take whatever classes you liked, and choose whatever you liked to put on your degree. I of course chose \"Artificial Intelligence.\" When I got the actual physical diploma, I was dismayed to find that the quotes had been included, which made them read as scare-quotes. At the time this bothered me, but now it seems amusingly accurate, for reasons I was about to discover.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d7d640a0-9b5e-4e18-a7fe-7655b8ae5979'), Node(page_content='I applied to 3 grad schools: MIT and Yale, which were renowned for AI at the time, and Harvard, which I\\'d visited because Rich Draves went there, and was also home to Bill Woods, who\\'d invented the type of parser I used in my SHRDLU clone. Only Harvard accepted me, so that was where I went.\\n\\nI don\\'t remember the moment it happened, or if there even was a specific moment, but during the first year of grad school I realized that AI, as practiced at the time, was a hoax. By which I mean the sort of AI in which a program that\\'s told \"the dog is sitting on the chair\" translates this into some formal representation and adds it to the list of things it knows.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='90c72e6c-8c79-4feb-86ae-f8f685cf5e7c'), Node(page_content=\"What these programs really showed was that there's a subset of natural language that's a formal language. But a very proper subset. It was clear that there was an unbridgeable gap between what they could do and actually understanding natural language. It was not, in fact, simply a matter of teaching SHRDLU more words. That whole way of doing AI, with explicit data structures representing concepts, was not going to work. Its brokenness did, as so often happens, generate a lot of opportunities to write papers about various band-aids that could be applied to it, but it was never going to get us Mike.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d5b018a6-f262-4758-b059-4da34cd51a58'), Node(page_content=\"So I looked around to see what I could salvage from the wreckage of my plans, and there was Lisp. I knew from experience that Lisp was interesting for its own sake and not just for its association with AI, even though that was the main reason people cared about it at the time. So I decided to focus on Lisp. In fact, I decided to write a book about Lisp hacking. It's scary to think how little I knew about Lisp hacking when I started writing that book. But there's nothing like writing a book about something to help you learn it. The book, On Lisp, wasn't published till 1993, but I wrote much of it in grad school.\\n\\nComputer Science is an uneasy alliance between two halves, theory and systems. The theory people prove things, and the systems people build things. I wanted to build things. I had plenty of respect for theory — indeed, a sneaking suspicion that it was the more admirable of the two halves — but building things seemed so much more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d52b4a20-0c6f-455d-9362-e99f3f87f0b4'), Node(page_content=\"The problem with systems work, though, was that it didn't last. Any program you wrote today, no matter how good, would be obsolete in a couple decades at best. People might mention your software in footnotes, but no one would actually use it. And indeed, it would seem very feeble work. Only people with a sense of the history of the field would even realize that, in its time, it had been good.\\n\\nThere were some surplus Xerox Dandelions floating around the computer lab at one point. Anyone who wanted one to play around with could have one. I was briefly tempted, but they were so slow by present standards; what was the point? No one else wanted one either, so off they went. That was what happened to systems work.\\n\\nI wanted not just to build things, but to build things that would last.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a7e3201d-8d1c-4f50-87cc-0674b17ce7c8'), Node(page_content=\"In this dissatisfied state I went in 1988 to visit Rich Draves at CMU, where he was in grad school. One day I went to visit the Carnegie Institute, where I'd spent a lot of time as a kid. While looking at a painting there I realized something that might seem obvious, but was a big surprise to me. There, right on the wall, was something you could make that would last. Paintings didn't become obsolete. Some of the best ones were hundreds of years old.\\n\\nAnd moreover this was something you could make a living doing. Not as easily as you could by writing software, of course, but I thought if you were really industrious and lived really cheaply, it had to be possible to make enough to survive. And as an artist you could be truly independent. You wouldn't have a boss, or even need to get research funding.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='88ce0eef-afcd-4066-b99a-ab84ade3eb18'), Node(page_content=\"I had always liked looking at paintings. Could I make them? I had no idea. I'd never imagined it was even possible. I knew intellectually that people made art — that it didn't just appear spontaneously — but it was as if the people who made it were a different species. They either lived long ago or were mysterious geniuses doing strange things in profiles in Life magazine. The idea of actually being able to make art, to put that verb before that noun, seemed almost miraculous.\\n\\nThat fall I started taking art classes at Harvard. Grad students could take classes in any department, and my advisor, Tom Cheatham, was very easy going. If he even knew about the strange classes I was taking, he never said anything.\\n\\nSo now I was in a PhD program in computer science, yet planning to be an artist, yet also genuinely in love with Lisp hacking and working away at On Lisp. In other words, like many a grad student, I was working energetically on multiple projects that were not my thesis.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f8eaf30-eedb-4747-97bb-c5c699392270'), Node(page_content='I didn\\'t see a way out of this situation. I didn\\'t want to drop out of grad school, but how else was I going to get out? I remember when my friend Robert Morris got kicked out of Cornell for writing the internet worm of 1988, I was envious that he\\'d found such a spectacular way to get out of grad school.\\n\\nThen one day in April 1990 a crack appeared in the wall. I ran into professor Cheatham and he asked if I was far enough along to graduate that June. I didn\\'t have a word of my dissertation written, but in what must have been the quickest bit of thinking in my life, I decided to take a shot at writing one in the 5 weeks or so that remained before the deadline, reusing parts of On Lisp where I could, and I was able to respond, with no perceptible delay \"Yes, I think so. I\\'ll give you something to read in a few days.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c14d29a3-c37e-4821-ae34-c407c6676ee1'), Node(page_content=\"I picked applications of continuations as the topic. In retrospect I should have written about macros and embedded languages. There's a whole world there that's barely been explored. But all I wanted was to get out of grad school, and my rapidly written dissertation sufficed, just barely.\\n\\nMeanwhile I was applying to art schools. I applied to two: RISD in the US, and the Accademia di Belli Arti in Florence, which, because it was the oldest art school, I imagined would be good. RISD accepted me, and I never heard back from the Accademia, so off to Providence I went.\\n\\nI'd applied for the BFA program at RISD, which meant in effect that I had to go to college again. This was not as strange as it sounds, because I was only 25, and art schools are full of people of different ages. RISD counted me as a transfer sophomore and said I had to do the foundation that summer. The foundation means the classes that everyone has to take in fundamental subjects like drawing, color, and design.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='48b6ee95-ea42-4980-9ad5-1dd6a2062500'), Node(page_content=\"Toward the end of the summer I got a big surprise: a letter from the Accademia, which had been delayed because they'd sent it to Cambridge England instead of Cambridge Massachusetts, inviting me to take the entrance exam in Florence that fall. This was now only weeks away. My nice landlady let me leave my stuff in her attic. I had some money saved from consulting work I'd done in grad school; there was probably enough to last a year if I lived cheaply. Now all I had to do was learn Italian.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='92b5cdd8-6d6d-4d9c-9510-48a3096427b8'), Node(page_content=\"Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01fdd3e3-243a-4e82-9c18-5d7492d029c1', wins=1), Node(page_content=\"I'm only up to age 25 and already there are such conspicuous patterns. Here I was, yet again about to attend some august institution in the hopes of learning about some prestigious subject, and yet again about to be disappointed. The students and faculty in the painting department at the Accademia were the nicest people you could imagine, but they had long since arrived at an arrangement whereby the students wouldn't require the faculty to teach anything, and in return the faculty wouldn't require the students to learn anything. And at the same time all involved would adhere outwardly to the conventions of a 19th century atelier. We actually had one of those little stoves, fed with kindling, that you see in 19th century studio paintings, and a nude model sitting as close to it as possible without getting burned. Except hardly anyone else painted her besides me. The rest of the students spent their time chatting or occasionally trying to imitate things they'd seen in American art magazines.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f488de3-2fec-444b-9cd1-58ffd491a687'), Node(page_content=\"Our model turned out to live just down the street from me. She made a living from a combination of modelling and making fakes for a local antique dealer. She'd copy an obscure old painting out of a book, and then he'd take the copy and maltreat it to make it look old. [3]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e8486722-e708-4b69-a5ef-1469253415c8'), Node(page_content=\"While I was a student at the Accademia I started painting still lives in my bedroom at night. These paintings were tiny, because the room was, and because I painted them on leftover scraps of canvas, which was all I could afford at the time. Painting still lives is different from painting people, because the subject, as its name suggests, can't move. People can't sit for more than about 15 minutes at a time, and when they do they don't sit very still. So the traditional m.o. for painting people is to know how to paint a generic person, which you then modify to match the specific person you're painting. Whereas a still life you can, if you want, copy pixel by pixel from what you're seeing. You don't want to stop there, of course, or you get merely photographic accuracy, and what makes a still life interesting is that it's been through a head. You want to emphasize the visual cues that tell you, for example, that the reason the color changes suddenly at a certain point is that it's the edge of an object. By\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee', wins=1), Node(page_content='of an object. By subtly emphasizing such things you can make paintings that are more realistic than photographs not just in some metaphorical sense, but in the strict information-theoretic sense. [4]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='00ad760e-6fbb-43ca-a51c-519425b2aaff'), Node(page_content='I liked painting still lives because I was curious about what I was seeing. In everyday life, we aren\\'t consciously aware of much we\\'re seeing. Most visual perception is handled by low-level processes that merely tell your brain \"that\\'s a water droplet\" without telling you details like where the lightest and darkest points are, or \"that\\'s a bush\" without telling you the shape and position of every leaf. This is a feature of brains, not a bug. In everyday life it would be distracting to notice every leaf on every bush. But when you have to paint something, you have to look more closely, and when you do there\\'s a lot to see. You can still be noticing new things after days of trying to paint something people usually take for granted, just as you can after days of trying to write an essay about something people usually take for granted.\\n\\nThis is not the only way to paint. I\\'m not 100% sure it\\'s even a good way to paint. But it seemed a good enough bet to be worth trying.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f7f0e91c-4312-46dc-b4d1-ff380e0f7227'), Node(page_content=\"Our teacher, professor Ulivi, was a nice guy. He could see I worked hard, and gave me a good grade, which he wrote down in a sort of passport each student had. But the Accademia wasn't teaching me anything except Italian, and my money was running out, so at the end of the first year I went back to the US.\\n\\nI wanted to go back to RISD, but I was now broke and RISD was very expensive, so I decided to get a job for a year and then return to RISD the next fall. I got one at a company called Interleaf, which made software for creating documents. You mean like Microsoft Word? Exactly. That was how I learned that low end software tends to eat high end software. But Interleaf still had a few years to live yet. [5]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='395264d3-3625-46d0-8636-110e597f48b7'), Node(page_content=\"Interleaf had done something pretty bold. Inspired by Emacs, they'd added a scripting language, and even made the scripting language a dialect of Lisp. Now they wanted a Lisp hacker to write things in it. This was the closest thing I've had to a normal job, and I hereby apologize to my boss and coworkers, because I was a bad employee. Their Lisp was the thinnest icing on a giant C cake, and since I didn't know C and didn't want to learn it, I never understood most of the software. Plus I was terribly irresponsible. This was back when a programming job meant showing up every day during certain working hours. That seemed unnatural to me, and on this point the rest of the world is coming around to my way of thinking, but at the time it caused a lot of friction. Toward the end of the year I spent much of my time surreptitiously working on On Lisp, which I had by this time gotten a contract to publish.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='32082230-290a-46db-a914-19f705defd46'), Node(page_content='The good part was that I got paid huge amounts of money, especially by art student standards. In Florence, after paying my part of the rent, my budget for everything else had been $7 a day. Now I was getting paid more than 4 times that every hour, even when I was just sitting in a meeting. By living cheaply I not only managed to save enough to go back to RISD, but also paid off my college loans.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='b102bff3-51da-44e2-9679-ed6445de3808'), Node(page_content=\"I learned some useful things at Interleaf, though they were mostly about what not to do. I learned that it's better for technology companies to be run by product people than sales people (though sales is a real skill and people who are good at it are really good at it), that it leads to bugs when code is edited by too many people, that cheap office space is no bargain if it's depressing, that planned meetings are inferior to corridor conversations, that big, bureaucratic customers are a dangerous source of money, and that there's not much overlap between conventional office hours and the optimal time for hacking, or conventional offices and the optimal place for it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='17ed5227-f4f7-4c2b-a28e-4265a141653e'), Node(page_content='But the most important thing I learned, and which I used in both Viaweb and Y Combinator, is that the low end eats the high end: that it\\'s good to be the \"entry level\" option, even though that will be less prestigious, because if you\\'re not, someone else will be, and will squash you against the ceiling. Which in turn means that prestige is a danger sign.\\n\\nWhen I left to go back to RISD the next fall, I arranged to do freelance work for the group that did projects for customers, and this was how I survived for the next several years. When I came back to visit for a project later on, someone told me about a new thing called HTML, which was, as he described it, a derivative of SGML. Markup language enthusiasts were an occupational hazard at Interleaf and I ignored him, but this HTML thing later became a big part of my life.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='03c17beb-1dbd-4c5a-9445-4d4f0c57379f'), Node(page_content='In the fall of 1992 I moved back to Providence to continue at RISD. The foundation had merely been intro stuff, and the Accademia had been a (very civilized) joke. Now I was going to see what real art school was like. But alas it was more like the Accademia than not. Better organized, certainly, and a lot more expensive, but it was now becoming clear that art school did not bear the same relationship to art that medical school bore to medicine. At least not the painting department. The textile department, which my next door neighbor belonged to, seemed to be pretty rigorous. No doubt illustration and architecture were too. But painting was post-rigorous. Painting students were supposed to express themselves, which to the more worldly ones meant to try to cook up some sort of distinctive signature style.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad27e028-f220-4b7e-a914-a2c67860e511'), Node(page_content='A signature style is the visual equivalent of what in show business is known as a \"schtick\": something that immediately identifies the work as yours and no one else\\'s. For example, when you see a painting that looks like a certain kind of cartoon, you know it\\'s by Roy Lichtenstein. So if you see a big painting of this type hanging in the apartment of a hedge fund manager, you know he paid millions of dollars for it. That\\'s not always why artists have a signature style, but it\\'s usually why buyers pay a lot for such work. [6]\\n\\nThere were plenty of earnest students too: kids who \"could draw\" in high school, and now had come to what was supposed to be the best art school in the country, to learn to draw even better. They tended to be confused and demoralized by what they found at RISD, but they kept going, because painting was what they did. I was not one of the kids who could draw in high school, but at RISD I was definitely closer to their tribe than the tribe of signature style seekers.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d996dddb-ee2a-4347-b6ff-0adf7c382d19'), Node(page_content=\"I learned a lot in the color class I took at RISD, but otherwise I was basically teaching myself to paint, and I could do that for free. So in 1993 I dropped out. I hung around Providence for a bit, and then my college friend Nancy Parmet did me a big favor. A rent-controlled apartment in a building her mother owned in New York was becoming vacant. Did I want it? It wasn't much more than my current place, and New York was supposed to be where the artists were. So yes, I wanted it! [7]\\n\\nAsterix comics begin by zooming in on a tiny corner of Roman Gaul that turns out not to be controlled by the Romans. You can do something similar on a map of New York City: if you zoom in on the Upper East Side, there's a tiny corner that's not rich, or at least wasn't in 1993. It's called Yorkville, and that was my new home. Now I was a New York artist — in the strictly technical sense of making paintings and living in New York.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6849fc6-388f-4476-905f-c07b44d846ff'), Node(page_content=\"I was nervous about money, because I could sense that Interleaf was on the way down. Freelance Lisp hacking work was very rare, and I didn't want to have to program in another language, which in those days would have meant C++ if I was lucky. So with my unerring nose for financial opportunity, I decided to write another book on Lisp. This would be a popular book, the sort of book that could be used as a textbook. I imagined myself living frugally off the royalties and spending all my time painting. (The painting on the cover of this book, ANSI Common Lisp, is one that I painted around this time.)\\n\\nThe best thing about New York for me was the presence of Idelle and Julian Weber. Idelle Weber was a painter, one of the early photorealists, and I'd taken her painting class at Harvard. I've never known a teacher more beloved by her students. Large numbers of former students kept in touch with her, including me. After I moved to New York I became her de facto studio assistant.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='dd3809f5-9bbd-440d-b993-2b25e729584d'), Node(page_content=\"She liked to paint on big, square canvases, 4 to 5 feet on a side. One day in late 1994 as I was stretching one of these monsters there was something on the radio about a famous fund manager. He wasn't that much older than me, and was super rich. The thought suddenly occurred to me: why don't I become rich? Then I'll be able to work on whatever I want.\\n\\nMeanwhile I'd been hearing more and more about this new thing called the World Wide Web. Robert Morris showed it to me when I visited him in Cambridge, where he was now in grad school at Harvard. It seemed to me that the web would be a big deal. I'd seen what graphical user interfaces had done for the popularity of microcomputers. It seemed like the web would do the same for the internet.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6097a0d7-807d-4820-9ecd-7e8e373cc23d'), Node(page_content=\"If I wanted to get rich, here was the next train leaving the station. I was right about that part. What I got wrong was the idea. I decided we should start a company to put art galleries online. I can't honestly say, after reading so many Y Combinator applications, that this was the worst startup idea ever, but it was up there. Art galleries didn't want to be online, and still don't, not the fancy ones. That's not how they sell. I wrote some software to generate web sites for galleries, and Robert wrote some to resize images and set up an http server to serve the pages. Then we tried to sign up galleries. To call this a difficult sale would be an understatement. It was difficult to give away. A few galleries let us make sites for them for free, but none paid us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8821373c-c593-4754-bce4-07fdf2b9bed1'), Node(page_content='Then some online stores started to appear, and I realized that except for the order buttons they were identical to the sites we\\'d been generating for galleries. This impressive-sounding thing called an \"internet storefront\" was something we already knew how to build.\\n\\nSo in the summer of 1995, after I submitted the camera-ready copy of ANSI Common Lisp to the publishers, we started trying to write software to build online stores. At first this was going to be normal desktop software, which in those days meant Windows software. That was an alarming prospect, because neither of us knew how to write Windows software or wanted to learn. We lived in the Unix world. But we decided we\\'d at least try writing a prototype store builder on Unix. Robert wrote a shopping cart, and I wrote a new site generator for stores — in Lisp, of course.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5190c08b-1add-44df-a89c-71da5b21a81f'), Node(page_content=\"We were working out of Robert's apartment in Cambridge. His roommate was away for big chunks of time, during which I got to sleep in his room. For some reason there was no bed frame or sheets, just a mattress on the floor. One morning as I was lying on this mattress I had an idea that made me sit up like a capital L. What if we ran the software on the server, and let users control it by clicking on links? Then we'd never have to write anything to run on users' computers. We could generate the sites on the same server we'd serve them from. Users wouldn't need anything more than a browser.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0c153247-5ff8-48f7-bd31-5139f0fc7302'), Node(page_content=\"This kind of software, known as a web app, is common now, but at the time it wasn't clear that it was even possible. To find out, we decided to try making a version of our store builder that you could control through the browser. A couple days later, on August 12, we had one that worked. The UI was horrible, but it proved you could build a whole store through the browser, without any client software or typing anything into the command line on the server.\\n\\nNow we felt like we were really onto something. I had visions of a whole new generation of software working this way. You wouldn't need versions, or ports, or any of that crap. At Interleaf there had been a whole group called Release Engineering that seemed to be at least as big as the group that actually wrote the software. Now you could just update the software right on the server.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='4ed7e80d-dc07-49eb-8d99-cb33fb56d042'), Node(page_content=\"We started a new company we called Viaweb, after the fact that our software worked via the web, and we got $10,000 in seed funding from Idelle's husband Julian. In return for that and doing the initial legal work and giving us business advice, we gave him 10% of the company. Ten years later this deal became the model for Y Combinator's. We knew founders needed something like this, because we'd needed it ourselves.\\n\\nAt this stage I had a negative net worth, because the thousand dollars or so I had in the bank was more than counterbalanced by what I owed the government in taxes. (Had I diligently set aside the proper proportion of the money I'd made consulting for Interleaf? No, I had not.) So although Robert had his graduate student stipend, I needed that seed funding to live on.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e', wins=1), Node(page_content=\"We originally hoped to launch in September, but we got more ambitious about the software as we worked on it. Eventually we managed to build a WYSIWYG site builder, in the sense that as you were creating pages, they looked exactly like the static ones that would be generated later, except that instead of leading to static pages, the links all referred to closures stored in a hash table on the server.\\n\\nIt helped to have studied art, because the main goal of an online store builder is to make users look legit, and the key to looking legit is high production values. If you get page layouts and fonts and colors right, you can make a guy running a store out of his bedroom look more legit than a big company.\\n\\n(If you're curious why my site looks so old-fashioned, it's because it's still made with this software. It may look clunky today, but in 1996 it was the last word in slick.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1f39257d-0248-4959-b47d-f2447a171058'), Node(page_content='In September, Robert rebelled. \"We\\'ve been working on this for a month,\" he said, \"and it\\'s still not done.\" This is funny in retrospect, because he would still be working on it almost 3 years later. But I decided it might be prudent to recruit more programmers, and I asked Robert who else in grad school with him was really good. He recommended Trevor Blackwell, which surprised me at first, because at that point I knew Trevor mainly for his plan to reduce everything in his life to a stack of notecards, which he carried around with him. But Rtm was right, as usual. Trevor turned out to be a frighteningly effective hacker.\\n\\nIt was a lot of fun working with Robert and Trevor. They\\'re the two most independent-minded people I know, and in completely different ways. If you could see inside Rtm\\'s brain it would look like a colonial New England church, and if you could see inside Trevor\\'s it would look like the worst excesses of Austrian Rococo.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a5d7623b-6552-4ca9-a712-8cb0986696fe'), Node(page_content=\"We opened for business, with 6 stores, in January 1996. It was just as well we waited a few months, because although we worried we were late, we were actually almost fatally early. There was a lot of talk in the press then about ecommerce, but not many people actually wanted online stores. [8]\\n\\nThere were three main parts to the software: the editor, which people used to build sites and which I wrote, the shopping cart, which Robert wrote, and the manager, which kept track of orders and statistics, and which Trevor wrote. In its time, the editor was one of the best general-purpose site builders. I kept the code tight and didn't have to integrate with any other software except Robert's and Trevor's, so it was quite fun to work on. If all I'd had to do was work on this software, the next 3 years would have been the easiest of my life. Unfortunately I had to do a lot more, all of it stuff I was worse at than programming, and the next 3 years were instead the most stressful.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6e31fe4b-e85c-4ad7-a092-be367364b972', wins=1), Node(page_content=\"There were a lot of startups making ecommerce software in the second half of the 90s. We were determined to be the Microsoft Word, not the Interleaf. Which meant being easy to use and inexpensive. It was lucky for us that we were poor, because that caused us to make Viaweb even more inexpensive than we realized. We charged $100 a month for a small store and $300 a month for a big one. This low price was a big attraction, and a constant thorn in the sides of competitors, but it wasn't because of some clever insight that we set the price low. We had no idea what businesses paid for things. $300 a month seemed like a lot of money to us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7a732a06-6878-41be-9947-1c07a23ea4a7'), Node(page_content='We did a lot of things right by accident like that. For example, we did what\\'s now called \"doing things that don\\'t scale,\" although at the time we would have described it as \"being so lame that we\\'re driven to the most desperate measures to get users.\" The most common of which was building stores for them. This seemed particularly humiliating, since the whole raison d\\'etre of our software was that people could use it to make their own stores. But anything to get users.\\n\\nWe learned a lot more about retail than we wanted to know. For example, that if you could only have a small image of a man\\'s shirt (and all images were small then by present standards), it was better to have a closeup of the collar than a picture of the whole shirt. The reason I remember learning this was that it meant I had to rescan about 30 images of men\\'s shirts. My first set of scans were so beautiful too.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f865fd1-57c6-4f67-ac9d-4f0d17bd751b'), Node(page_content='Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we\\'d have so many users that I couldn\\'t scan their images for them, but in the meantime there was nothing more important to do.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0df392b3-eb59-4359-b340-6e211caa3aae', wins=1), Node(page_content=\"Another thing I didn't get at the time is that growth rate is the ultimate test of a startup. Our growth rate was fine. We had about 70 stores at the end of 1996 and about 500 at the end of 1997. I mistakenly thought the thing that mattered was the absolute number of users. And that is the thing that matters in the sense that that's how much money you're making, and if you're not making enough, you might go out of business. But in the long term the growth rate takes care of the absolute number. If we'd been a startup I was advising at Y Combinator, I would have said: Stop being so stressed out, because you're doing fine. You're growing 7x a year. Just don't hire too many more people and you'll soon be profitable, and then you'll control your own destiny.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d57da0e4-fee3-4442-aa88-7c461dc9c4b4', wins=1), Node(page_content=\"Alas I hired lots more people, partly because our investors wanted me to, and partly because that's what startups did during the Internet Bubble. A company with just a handful of employees would have seemed amateurish. So we didn't reach breakeven until about when Yahoo bought us in the summer of 1998. Which in turn meant we were at the mercy of investors for the entire life of the company. And since both we and our investors were noobs at startups, the result was a mess even by startup standards.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9bc68607-b275-4e2e-877a-8b9f23e349c2'), Node(page_content=\"It was a huge relief when Yahoo bought us. In principle our Viaweb stock was valuable. It was a share in a business that was profitable and growing rapidly. But it didn't feel very valuable to me; I had no idea how to value a business, but I was all too keenly aware of the near-death experiences we seemed to have every few months. Nor had I changed my grad student lifestyle significantly since we started. So when Yahoo bought us it felt like going from rags to riches. Since we were going to California, I bought a car, a yellow 1998 VW GTI. I remember thinking that its leather seats alone were by far the most luxurious thing I owned.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5d19d396-aa70-4bf0-992e-069c632de8ad'), Node(page_content=\"The next year, from the summer of 1998 to the summer of 1999, must have been the least productive of my life. I didn't realize it at the time, but I was worn out from the effort and stress of running Viaweb. For a while after I got to California I tried to continue my usual m.o. of programming till 3 in the morning, but fatigue combined with Yahoo's prematurely aged culture and grim cube farm in Santa Clara gradually dragged me down. After a few months it felt disconcertingly like working at Interleaf.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='56272a9f-8b83-4b82-a1a2-598765c2b068'), Node(page_content=\"Yahoo had given us a lot of options when they bought us. At the time I thought Yahoo was so overvalued that they'd never be worth anything, but to my astonishment the stock went up 5x in the next year. I hung on till the first chunk of options vested, then in the summer of 1999 I left. It had been so long since I'd painted anything that I'd half forgotten why I was doing this. My brain had been entirely full of software and men's shirts for 4 years. But I had done this to get rich so I could paint, I reminded myself, and now I was rich, so I should go paint.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='fd511710-4a0b-4af9-834f-8c2d984a6dd0'), Node(page_content='When I said I was leaving, my boss at Yahoo had a long conversation with me about my plans. I told him all about the kinds of pictures I wanted to paint. At the time I was touched that he took such an interest in me. Now I realize it was because he thought I was lying. My options at that point were worth about $2 million a month. If I was leaving that kind of money on the table, it could only be to go and start some new startup, and if I did, I might take people with me. This was the height of the Internet Bubble, and Yahoo was ground zero of it. My boss was at that moment a billionaire. Leaving then to start a new startup must have seemed to him an insanely, and yet also plausibly, ambitious plan.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8'), Node(page_content=\"But I really was quitting to paint, and I started immediately. There was no time to lose. I'd already burned 4 years getting rich. Now when I talk to founders who are leaving after selling their companies, my advice is always the same: take a vacation. That's what I should have done, just gone off somewhere and done nothing for a month or two, but the idea never occurred to me.\\n\\nSo I tried to paint, but I just didn't seem to have any energy or ambition. Part of the problem was that I didn't know many people in California. I'd compounded this problem by buying a house up in the Santa Cruz Mountains, with a beautiful view but miles from anywhere. I stuck it out for a few more months, then in desperation I went back to New York, where unless you understand about rent control you'll be surprised to hear I still had my apartment, sealed up like a tomb of my old life. Idelle was in New York at least, and there were other people trying to paint there, even though I didn't know any of them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='07e153a7-98c9-45f5-9873-0415175e5887'), Node(page_content=\"When I got back to New York I resumed my old life, except now I was rich. It was as weird as it sounds. I resumed all my old patterns, except now there were doors where there hadn't been. Now when I was tired of walking, all I had to do was raise my hand, and (unless it was raining) a taxi would stop to pick me up. Now when I walked past charming little restaurants I could go in and order lunch. It was exciting for a while. Painting started to go better. I experimented with a new kind of still life where I'd paint one painting in the old way, then photograph it and print it, blown up, on canvas, and then use that as the underpainting for a second still life, painted from the same objects (which hopefully hadn't rotted yet).\\n\\nMeanwhile I looked for an apartment to buy. Now I could actually choose what neighborhood to live in. Where, I asked myself and various real estate agents, is the Cambridge of New York? Aided by occasional visits to actual Cambridge, I gradually realized there wasn't one. Huh.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6f53cbc-6f54-4287-ad99-52473f5e3cfa'), Node(page_content='Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='209c154b-eaa4-4d0c-9ee3-9de983548416', wins=1), Node(page_content=\"I got so excited about this idea that I couldn't think about anything else. It seemed obvious that this was the future. I didn't particularly want to start another company, but it was clear that this idea would have to be embodied as one, so I decided to move to Cambridge and start it. I hoped to lure Robert into working on it with me, but there I ran into a hitch. Robert was now a postdoc at MIT, and though he'd made a lot of money the last time I'd lured him into working on one of my schemes, it had also been a huge time sink. So while he agreed that it sounded like a plausible idea, he firmly refused to work on it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='725c5f11-2423-4e18-bc97-752009c281de'), Node(page_content='Hmph. Well, I\\'d do it myself then. I recruited Dan Giffin, who had worked for Viaweb, and two undergrads who wanted summer jobs, and we got to work trying to build what it\\'s now clear is about twenty companies and several open source projects worth of software. The language for defining applications would of course be a dialect of Lisp. But I wasn\\'t so naive as to assume I could spring an overt Lisp on a general audience; we\\'d hide the parentheses, like Dylan did.\\n\\nBy then there was a name for the kind of company Viaweb was, an \"application service provider,\" or ASP. This name didn\\'t last long before it was replaced by \"software as a service,\" but it was current for long enough that I named this new company after it: it was going to be called Aspra.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9b17eb54-1f33-4904-bc1a-b18254f2f85a', wins=1), Node(page_content=\"I started working on the application builder, Dan worked on network infrastructure, and the two undergrads worked on the first two services (images and phone calls). But about halfway through the summer I realized I really didn't want to run a company — especially not a big one, which it was looking like this would have to be. I'd only started Viaweb because I needed the money. Now that I didn't need money anymore, why was I doing this? If this vision had to be realized as a company, then screw the vision. I'd build a subset that could be done as an open source project.\\n\\nMuch to my surprise, the time I spent working on this stuff was not wasted after all. After we started Y Combinator, I would often encounter startups working on parts of this new architecture, and it was very useful to have spent so much time thinking about it and even trying to write some of it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1185a7b9-b8da-441e-89b1-12b8a81c2502', wins=1), Node(page_content=\"The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='33017a92-fecc-4bf1-ae08-cc414c62cbf7'), Node(page_content=\"Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a746d02f-1466-434d-addd-04b936502bec', wins=1), Node(page_content=\"In the print era, the channel for publishing essays had been vanishingly small. Except for a few officially anointed thinkers who went to the right parties in New York, the only people allowed to publish essays were specialists writing about their specialties. There were so many essays that had never been written, because there had been no way to publish them. Now they could be, and I was going to write them. [12]\\n\\nI've worked on several different things, but to the extent there was a turning point where I figured out what to work on, it was when I started publishing essays online. From then on I knew that whatever else I did, I'd always write essays too.\\n\\nI knew that online essays would be a marginal medium at first. Socially they'd seem more like rants posted by nutjobs on their GeoCities sites than the genteel and beautifully typeset compositions published in The New Yorker. But by this point I knew enough to find that encouraging instead of discouraging.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881', wins=1), Node(page_content=\"One of the most conspicuous patterns I've noticed in my life is how well it has worked, for me at least, to work on things that weren't prestigious. Still life has always been the least prestigious form of painting. Viaweb and Y Combinator both seemed lame when we started them. I still get the glassy eye from strangers when they ask what I'm writing, and I explain that it's an essay I'm going to publish on my web site. Even Lisp, though prestigious intellectually in something like the way Latin is, also seems about as hip.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='836f9505-8112-4300-a484-655731655443', wins=1), Node(page_content=\"It's not that unprestigious types of work are good per se. But when you find yourself drawn to some kind of work despite its current lack of prestige, it's a sign both that there's something real to be discovered there, and that you have the right kind of motives. Impure motives are a big danger for the ambitious. If anything is going to lead you astray, it will be the desire to impress people. So while working on things that aren't prestigious doesn't guarantee you're on the right track, it at least guarantees you're not on the most common type of wrong one.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad36fb50-0350-45a4-925e-29f0980a9cba', wins=2), Node(page_content=\"Over the next several years I wrote lots of essays about all kinds of different topics. O'Reilly reprinted a collection of them as a book, called Hackers & Painters after one of the essays in it. I also worked on spam filters, and did some more painting. I used to have dinners for a group of friends every thursday night, which taught me how to cook for groups. And I bought another building in Cambridge, a former candy factory (and later, twas said, porn studio), to use as an office.\\n\\nOne night in October 2003 there was a big party at my house. It was a clever idea of my friend Maria Daniels, who was one of the thursday diners. Three separate hosts would all invite their friends to one party. So for every guest, two thirds of the other guests would be people they didn't know but would probably like. One of the guests was someone I didn't know but would turn out to like a lot: a woman called Jessica Livingston. A couple days later I asked her out.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='271b9209-34c1-4eb9-a7d4-5c8cb047c3a7'), Node(page_content='Jessica was in charge of marketing at a Boston investment bank. This bank thought it understood startups, but over the next year, as she met friends of mine from the startup world, she was surprised how different reality was. And how colorful their stories were. So she decided to compile a book of interviews with startup founders.\\n\\nWhen the bank had financial problems and she had to fire half her staff, she started looking for a new job. In early 2005 she interviewed for a marketing job at a Boston VC firm. It took them weeks to make up their minds, and during this time I started telling her about all the things that needed to be fixed about venture capital. They should make a larger number of smaller investments instead of a handful of giant ones, they should be funding younger, more technical founders instead of MBAs, they should let the founders remain as CEO, and so on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc'), Node(page_content=\"One of my tricks for writing essays had always been to give talks. The prospect of having to stand up in front of a group of people and tell them something that won't waste their time is a great spur to the imagination. When the Harvard Computer Society, the undergrad computer club, asked me to give a talk, I decided I would tell them how to start a startup. Maybe they'd be able to avoid the worst of the mistakes we'd made.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce520b00-c87c-4bfe-a179-0fa11c9d5273', wins=1), Node(page_content='So I gave this talk, in the course of which I told them that the best sources of seed funding were successful startup founders, because then they\\'d be sources of advice too. Whereupon it seemed they were all looking expectantly at me. Horrified at the prospect of having my inbox flooded by business plans (if I\\'d only known), I blurted out \"But not me!\" and went on with the talk. But afterward it occurred to me that I should really stop procrastinating about angel investing. I\\'d been meaning to since Yahoo bought us, and now it was 7 years later and I still hadn\\'t done one angel investment.\\n\\nMeanwhile I had been scheming with Robert and Trevor about projects we could work on together. I missed working with them, and it seemed like there had to be something we could collaborate on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e9a82e89-0d8f-480b-9f26-1acfffaab9a1'), Node(page_content=\"As Jessica and I were walking home from dinner on March 11, at the corner of Garden and Walker streets, these three threads converged. Screw the VCs who were taking so long to make up their minds. We'd start our own investment firm and actually implement the ideas we'd been talking about. I'd fund it, and Jessica could quit her job and work for it, and we'd get Robert and Trevor as partners too. [13]\\n\\nOnce again, ignorance worked in our favor. We had no idea how to be angel investors, and in Boston in 2005 there were no Ron Conways to learn from. So we just made what seemed like the obvious choices, and some of the things we did turned out to be novel.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='073bc744-8e07-42e7-8595-39496927fe88'), Node(page_content=\"There are multiple components to Y Combinator, and we didn't figure them all out at once. The part we got first was to be an angel firm. In those days, those two words didn't go together. There were VC firms, which were organized companies with people whose job it was to make investments, but they only did big, million dollar investments. And there were angels, who did smaller investments, but these were individuals who were usually focused on other things and made investments on the side. And neither of them helped founders enough in the beginning. We knew how helpless founders were in some respects, because we remembered how helpless we'd been. For example, one thing Julian had done for us that seemed to us like magic was to get us set up as a company. We were fine writing fairly difficult software, but actually getting incorporated, with bylaws and stock and all that stuff, how on earth did you do that? Our plan was not only to make seed investments, but to do for startups everything Julian had done for\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7ffe9bfd-9225-407c-9048-5ae1b0f25fc6'), Node(page_content='Julian had done for us.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='83ef6c3c-2575-48c1-bf79-8376e2afe2e1'), Node(page_content='YC was not organized as a fund. It was cheap enough to run that we funded it with our own money. That went right by 99% of readers, but professional investors are thinking \"Wow, that means they got all the returns.\" But once again, this was not due to any particular insight on our part. We didn\\'t know how VC firms were organized. It never occurred to us to try to raise a fund, and if it had, we wouldn\\'t have known where to start. [14]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f4142432-6daa-4c6b-ad89-00e3712c373c', wins=1), Node(page_content=\"The most distinctive thing about YC is the batch model: to fund a bunch of startups all at once, twice a year, and then to spend three months focusing intensively on trying to help them. That part we discovered by accident, not merely implicitly but explicitly due to our ignorance about investing. We needed to get experience as investors. What better way, we thought, than to fund a whole bunch of startups at once? We knew undergrads got temporary jobs at tech companies during the summer. Why not organize a summer program where they'd start startups instead? We wouldn't feel guilty for being in a sense fake investors, because they would in a similar sense be fake founders. So while we probably wouldn't make much money out of it, we'd at least get to practice being investors on them, and they for their part would probably have a more interesting summer than they would working at Microsoft.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4c983c2-a43c-49f6-9ca0-db73867728a9', wins=1), Node(page_content='We\\'d use the building I owned in Cambridge as our headquarters. We\\'d all have dinner there once a week — on tuesdays, since I was already cooking for the thursday diners on thursdays — and after dinner we\\'d bring in experts on startups to give talks.\\n\\nWe knew undergrads were deciding then about summer jobs, so in a matter of days we cooked up something we called the Summer Founders Program, and I posted an announcement on my site, inviting undergrads to apply. I had never imagined that writing essays would be a way to get \"deal flow,\" as investors call it, but it turned out to be the perfect source. [15] We got 225 applications for the Summer Founders Program, and we were surprised to find that a lot of them were from people who\\'d already graduated, or were about to that spring. Already this SFP thing was starting to feel more serious than we\\'d intended.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0198787d-a061-45f0-92d5-e45f6e7ae912'), Node(page_content=\"We invited about 20 of the 225 groups to interview in person, and from those we picked 8 to fund. They were an impressive group. That first batch included reddit, Justin Kan and Emmett Shear, who went on to found Twitch, Aaron Swartz, who had already helped write the RSS spec and would a few years later become a martyr for open access, and Sam Altman, who would later become the second president of YC. I don't think it was entirely luck that the first batch was so good. You had to be pretty bold to sign up for a weird thing like the Summer Founders Program instead of a summer job at a legit place like Microsoft or Goldman Sachs.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='745dd18f-832f-4d1e-b688-319f7c617464'), Node(page_content='The deal for startups was based on a combination of the deal we did with Julian ($10k for 10%) and what Robert said MIT grad students got for the summer ($6k). We invested $6k per founder, which in the typical two-founder case was $12k, in return for 6%. That had to be fair, because it was twice as good as the deal we ourselves had taken. Plus that first summer, which was really hot, Jessica brought the founders free air conditioners. [16]\\n\\nFairly quickly I realized that we had stumbled upon the way to scale startup funding. Funding startups in batches was more convenient for us, because it meant we could do things for a lot of startups at once, but being part of a batch was better for the startups too. It solved one of the biggest problems faced by founders: the isolation. Now you not only had colleagues, but colleagues who understood the problems you were facing and could tell you how they were solving them.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='bf8387d0-b094-4f59-8c13-ca1014ea67ac'), Node(page_content='As YC grew, we started to notice other advantages of scale. The alumni became a tight community, dedicated to helping one another, and especially the current batch, whose shoes they remembered being in. We also noticed that the startups were becoming one another\\'s customers. We used to refer jokingly to the \"YC GDP,\" but as YC grows this becomes less and less of a joke. Now lots of startups get their initial set of customers almost entirely from among their batchmates.\\n\\nI had not originally intended YC to be a full-time job. I was going to do three things: hack, write essays, and work on YC. As YC grew, and I grew more excited about it, it started to take up a lot more than a third of my attention. But for the first few years I was still able to work on other things.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='526ba90a-5223-4530-a966-baea4886bdc1', wins=1), Node(page_content=\"In the summer of 2006, Robert and I started working on a new version of Arc. This one was reasonably fast, because it was compiled into Scheme. To test this new Arc, I wrote Hacker News in it. It was originally meant to be a news aggregator for startup founders and was called Startup News, but after a few months I got tired of reading about nothing but startups. Plus it wasn't startup founders we wanted to reach. It was future startup founders. So I changed the name to Hacker News and the topic to whatever engaged one's intellectual curiosity.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='aa1dfbc4-133a-4f2d-99fe-c0ebce320d09'), Node(page_content=\"HN was no doubt good for YC, but it was also by far the biggest source of stress for me. If all I'd had to do was select and help founders, life would have been so easy. And that implies that HN was a mistake. Surely the biggest source of stress in one's work should at least be something close to the core of the work. Whereas I was like someone who was in pain while running a marathon not from the exertion of running, but because I had a blister from an ill-fitting shoe. When I was dealing with some urgent problem during YC, there was about a 60% chance it had to do with HN, and a 40% chance it had do with everything else combined. [17]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c8505964-4597-440a-9044-033cf10ca40e'), Node(page_content=\"As well as HN, I wrote all of YC's internal software in Arc. But while I continued to work a good deal in Arc, I gradually stopped working on Arc, partly because I didn't have time to, and partly because it was a lot less attractive to mess around with the language now that we had all this infrastructure depending on it. So now my three projects were reduced to two: writing essays and working on YC.\\n\\nYC was different from other kinds of work I've done. Instead of deciding for myself what to work on, the problems came to me. Every 6 months there was a new batch of startups, and their problems, whatever they were, became our problems. It was very engaging work, because their problems were quite varied, and the good founders were very effective. If you were trying to learn the most you could about startups in the shortest possible time, you couldn't have picked a better way to do it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='251faa7a-72ec-4bd9-ad69-1af024efbbc4'), Node(page_content='There were parts of the job I didn\\'t like. Disputes between cofounders, figuring out when people were lying to us, fighting with people who maltreated the startups, and so on. But I worked hard even at the parts I didn\\'t like. I was haunted by something Kevin Hale once said about companies: \"No one works harder than the boss.\" He meant it both descriptively and prescriptively, and it was the second part that scared me. I wanted YC to be good, so if how hard I worked set the upper bound on how hard everyone else worked, I\\'d better work very hard.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='454a991d-29ac-4982-a8e5-72a02f0ef5a2'), Node(page_content='One day in 2010, when he was visiting California for interviews, Robert Morris did something astonishing: he offered me unsolicited advice. I can only remember him doing that once before. One day at Viaweb, when I was bent over double from a kidney stone, he suggested that it would be a good idea for him to take me to the hospital. That was what it took for Rtm to offer unsolicited advice. So I remember his exact words very clearly. \"You know,\" he said, \"you should make sure Y Combinator isn\\'t the last cool thing you do.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edd1ff8d-62c3-4e10-95c6-6ef7b27a4531'), Node(page_content=\"At the time I didn't understand what he meant, but gradually it dawned on me that he was saying I should quit. This seemed strange advice, because YC was doing great. But if there was one thing rarer than Rtm offering advice, it was Rtm being wrong. So this set me thinking. It was true that on my current trajectory, YC would be the last thing I did, because it was only taking up more of my attention. It had already eaten Arc, and was in the process of eating essays too. Either YC was my life's work or I'd have to leave eventually. And it wasn't, so I would.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='71c27b46-b79b-48ef-ad7e-3a0400ece844'), Node(page_content=\"In the summer of 2012 my mother had a stroke, and the cause turned out to be a blood clot caused by colon cancer. The stroke destroyed her balance, and she was put in a nursing home, but she really wanted to get out of it and back to her house, and my sister and I were determined to help her do it. I used to fly up to Oregon to visit her regularly, and I had a lot of time to think on those flights. On one of them I realized I was ready to hand YC over to someone else.\\n\\nI asked Jessica if she wanted to be president, but she didn't, so we decided we'd try to recruit Sam Altman. We talked to Robert and Trevor and we agreed to make it a complete changing of the guard. Up till that point YC had been controlled by the original LLC we four had started. But we wanted YC to last for a long time, and to do that it couldn't be controlled by the founders. So if Sam said yes, we'd let him reorganize YC. Robert and I would retire, and Jessica and Trevor would become ordinary partners.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='949a121e-1e69-45a4-98cd-e7f7c47c8bf9'), Node(page_content=\"When we asked Sam if he wanted to be president of YC, initially he said no. He wanted to start a startup to make nuclear reactors. But I kept at it, and in October 2013 he finally agreed. We decided he'd take over starting with the winter 2014 batch. For the rest of 2013 I left running YC more and more to Sam, partly so he could learn the job, and partly because I was focused on my mother, whose cancer had returned.\\n\\nShe died on January 15, 2014. We knew this was coming, but it was still hard when it did.\\n\\nI kept working on YC till March, to help get that batch of startups through Demo Day, then I checked out pretty completely. (I still talk to alumni and to new startups working on things I'm interested in, but that only takes a few hours a week.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ee41cd68-792e-4ebf-aa6c-672740604a7e'), Node(page_content=\"What should I do next? Rtm's advice hadn't included anything about that. I wanted to do something completely different, so I decided I'd paint. I wanted to see how good I could get if I really focused on it. So the day after I stopped working on YC, I started painting. I was rusty and it took a while to get back into shape, but it was at least completely engaging. [18]\\n\\nI spent most of the rest of 2014 painting. I'd never been able to work so uninterruptedly before, and I got to be better than I had been. Not good enough, but better. Then in November, right in the middle of a painting, I ran out of steam. Up till that point I'd always been curious to see how the painting I was working on would turn out, but suddenly finishing this one seemed like a chore. So I stopped working on it and cleaned my brushes and haven't painted since. So far anyway.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='70bcf8a8-1e2c-4cbd-a93f-ade0c453e437'), Node(page_content=\"I realize that sounds rather wimpy. But attention is a zero sum game. If you can choose what to work on, and you choose a project that's not the best one (or at least a good one) for you, then it's getting in the way of another project that is. And at 50 there was some opportunity cost to screwing around.\\n\\nI started writing essays again, and wrote a bunch of new ones over the next few months. I even wrote a couple that weren't about startups. Then in March 2015 I started working on Lisp again.\\n\\nThe distinctive thing about Lisp is that its core is a language defined by writing an interpreter in itself. It wasn't originally intended as a programming language in the ordinary sense. It was meant to be a formal model of computation, an alternative to the Turing machine. If you want to write an interpreter for a language in itself, what's the minimum set of predefined operators you need? The Lisp that John McCarthy invented, or more accurately discovered, is an answer to that question. [19]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='de347d59-7d93-4174-b095-30666d86c163'), Node(page_content=\"McCarthy didn't realize this Lisp could even be used to program computers till his grad student Steve Russell suggested it. Russell translated McCarthy's interpreter into IBM 704 machine language, and from that point Lisp started also to be a programming language in the ordinary sense. But its origins as a model of computation gave it a power and elegance that other languages couldn't match. It was this that attracted me in college, though I didn't understand why at the time.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d8717b54-2764-42ab-a7b9-7dc8f36ee9b4'), Node(page_content=\"McCarthy's 1960 Lisp did nothing more than interpret Lisp expressions. It was missing a lot of things you'd want in a programming language. So these had to be added, and when they were, they weren't defined using McCarthy's original axiomatic approach. That wouldn't have been feasible at the time. McCarthy tested his interpreter by hand-simulating the execution of programs. But it was already getting close to the limit of interpreters you could test that way — indeed, there was a bug in it that McCarthy had overlooked. To test a more complicated interpreter, you'd have had to run it, and computers then weren't powerful enough.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ab5cf714-67cb-4e35-a7a5-cef31b3093c2'), Node(page_content=\"Now they are, though. Now you could continue using McCarthy's axiomatic approach till you'd defined a complete programming language. And as long as every change you made to McCarthy's Lisp was a discoveredness-preserving transformation, you could, in principle, end up with a complete language that had this quality. Harder to do than to talk about, of course, but if it was possible in principle, why not try? So I decided to take a shot at it. It took 4 years, from March 26, 2015 to October 12, 2019. It was fortunate that I had a precisely defined goal, or it would have been hard to keep at it for so long.\\n\\nI wrote this new Lisp, called Bel, in itself in Arc. That may sound like a contradiction, but it's an indication of the sort of trickery I had to engage in to make this work. By means of an egregious collection of hacks I managed to make something close enough to an interpreter written in itself that could actually run. Not fast, but fast enough to test.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ccc691c6-2730-445f-a301-3e6d29614239'), Node(page_content='I had to ban myself from writing essays during most of this time, or I\\'d never have finished. In late 2015 I spent 3 months writing essays, and when I went back to working on Bel I could barely understand the code. Not so much because it was badly written as because the problem is so convoluted. When you\\'re working on an interpreter written in itself, it\\'s hard to keep track of what\\'s happening at what level, and errors can be practically encrypted by the time you get them.\\n\\nSo I said no more essays till Bel was done. But I told few people about Bel while I was working on it. So for years it must have seemed that I was doing nothing, when in fact I was working harder than I\\'d ever worked on anything. Occasionally after wrestling for hours with some gruesome bug I\\'d check Twitter or HN and see someone asking \"Does Paul Graham still code?\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6c6c1376-f7e2-4435-84ea-1324fd16912e'), Node(page_content=\"Working on Bel was hard but satisfying. I worked on it so intensively that at any given time I had a decent chunk of the code in my head and could write more there. I remember taking the boys to the coast on a sunny day in 2015 and figuring out how to deal with some problem involving continuations while I watched them play in the tide pools. It felt like I was doing life right. I remember that because I was slightly dismayed at how novel it felt. The good news is that I had more moments like this over the next few years.\\n\\nIn the summer of 2016 we moved to England. We wanted our kids to see what it was like living in another country, and since I was a British citizen by birth, that seemed the obvious choice. We only meant to stay for a year, but we liked it so much that we still live there. So most of Bel was written in England.\\n\\nIn the fall of 2019, Bel was finally finished. Like McCarthy's original Lisp, it's a spec rather than an implementation, although like McCarthy's Lisp it's a spec expressed as code.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f927fda-431c-4163-9b61-6b3c9eff403b'), Node(page_content=\"Now that I could write essays again, I wrote a bunch about topics I'd had stacked up. I kept writing essays through 2020, but I also started to think about other things I could work on. How should I choose what to do? Well, how had I chosen what to work on in the past? I wrote an essay for myself to answer that question, and I was surprised how long and messy the answer turned out to be. If this surprised me, who'd lived it, then I thought perhaps it would be interesting to other people, and encouraging to those with similarly messy lives. So I wrote a more detailed version for others to read, and this is the last sentence of it.\\n\\nNotes\\n\\n[1] My experience skipped a step in the evolution of computers: time-sharing machines with interactive OSes. I went straight from batch processing to microcomputers, which made microcomputers seem all the more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6af9ede9-1b89-44db-a81f-20ce45d1802a'), Node(page_content=\"[2] Italian words for abstract concepts can nearly always be predicted from their English cognates (except for occasional traps like polluzione). It's the everyday words that differ. So if you string together a lot of abstract concepts with a few simple verbs, you can make a little Italian go a long way.\\n\\n[3] I lived at Piazza San Felice 4, so my walk to the Accademia went straight down the spine of old Florence: past the Pitti, across the bridge, past Orsanmichele, between the Duomo and the Baptistery, and then up Via Ricasoli to Piazza San Marco. I saw Florence at street level in every possible condition, from empty dark winter evenings to sweltering summer days when the streets were packed with tourists.\\n\\n[4] You can of course paint people like still lives if you want to, and they're willing. That sort of portrait is arguably the apex of still life painting, though the long sitting does tend to produce pained expressions in the sitters.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='67d6eed8-0267-4500-a3b2-8c7ed2ac83a6'), Node(page_content=\"[5] Interleaf was one of many companies that had smart people and built impressive technology, and yet got crushed by Moore's Law. In the 1990s the exponential growth in the power of commodity (i.e. Intel) processors rolled up high-end, special-purpose hardware and software companies like a bulldozer.\\n\\n[6] The signature style seekers at RISD weren't specifically mercenary. In the art world, money and coolness are tightly coupled. Anything expensive comes to be seen as cool, and anything seen as cool will soon become equally expensive.\\n\\n[7] Technically the apartment wasn't rent-controlled but rent-stabilized, but this is a refinement only New Yorkers would know or care about. The point is that it was really cheap, less than half market price.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edacd5b2-60d6-434b-ac59-273dd42896e8'), Node(page_content=\"[8] Most software you can launch as soon as it's done. But when the software is an online store builder and you're hosting the stores, if you don't have any users yet, that fact will be painfully obvious. So before we could launch publicly we had to launch privately, in the sense of recruiting an initial set of users and making sure they had decent-looking stores.\\n\\n[9] We'd had a code editor in Viaweb for users to define their own page styles. They didn't know it, but they were editing Lisp expressions underneath. But this wasn't an app editor, because the code ran when the merchants' sites were generated, not when shoppers visited them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='46a2d3c9-dcd7-4d1d-a520-af1518532c01'), Node(page_content=\"[10] This was the first instance of what is now a familiar experience, and so was what happened next, when I read the comments and found they were full of angry people. How could I claim that Lisp was better than other languages? Weren't they all Turing complete? People who see the responses to essays I write sometimes tell me how sorry they feel for me, but I'm not exaggerating when I reply that it has always been like this, since the very beginning. It comes with the territory. An essay must tell readers things they don't already know, and some people dislike being told such things.\\n\\n[11] People put plenty of stuff on the internet in the 90s of course, but putting something online is not the same as publishing it online. Publishing online means you treat the online version as the (or at least a) primary version.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4bd607d-62be-4ee7-a34d-3bd5305da820', wins=1), Node(page_content=\"[12] There is a general lesson here that our experience with Y Combinator also teaches: Customs continue to constrain you long after the restrictions that caused them have disappeared. Customary VC practice had once, like the customs about publishing essays, been based on real constraints. Startups had once been much more expensive to start, and proportionally rare. Now they could be cheap and common, but the VCs' customs still reflected the old world, just as customs about writing essays still reflected the constraints of the print era.\\n\\nWhich in turn implies that people who are independent-minded (i.e. less influenced by custom) will have an advantage in fields affected by rapid change (where customs are more likely to be obsolete).\\n\\nHere's an interesting point, though: you can't always predict which fields will be affected by rapid change. Obviously software and venture capital will be, but who would have predicted that essay writing would be?\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6d435c9f-7f32-4be9-931b-854ce5d29546', wins=1), Node(page_content=\"[13] Y Combinator was not the original name. At first we were called Cambridge Seed. But we didn't want a regional name, in case someone copied us in Silicon Valley, so we renamed ourselves after one of the coolest tricks in the lambda calculus, the Y combinator.\\n\\nI picked orange as our color partly because it's the warmest, and partly because no VC used it. In 2005 all the VCs used staid colors like maroon, navy blue, and forest green, because they were trying to appeal to LPs, not founders. The YC logo itself is an inside joke: the Viaweb logo had been a white V on a red circle, so I made the YC logo a white Y on an orange square.\\n\\n[14] YC did become a fund for a couple years starting in 2009, because it was getting so big I could no longer afford to fund it personally. But after Heroku got bought we had enough money to go back to being self-funded.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e', wins=1), Node(page_content='[15] I\\'ve never liked the term \"deal flow,\" because it implies that the number of new startups at any given time is fixed. This is not only false, but it\\'s the purpose of YC to falsify it, by causing startups to be founded that would not otherwise have existed.\\n\\n[16] She reports that they were all different shapes and sizes, because there was a run on air conditioners and she had to get whatever she could, but that they were all heavier than she could carry now.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='27b2bd1d-8de5-4424-ba1f-323592eaf441'), Node(page_content=\"[17] Another problem with HN was a bizarre edge case that occurs when you both write essays and run a forum. When you run a forum, you're assumed to see if not every conversation, at least every conversation involving you. And when you write essays, people post highly imaginative misinterpretations of them on forums. Individually these two phenomena are tedious but bearable, but the combination is disastrous. You actually have to respond to the misinterpretations, because the assumption that you're present in the conversation means that not responding to any sufficiently upvoted misinterpretation reads as a tacit admission that it's correct. But that in turn encourages more; anyone who wants to pick a fight with you senses that now is their chance.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edabe432-0c59-4ba5-aa37-d5cddb072669'), Node(page_content=\"[18] The worst thing about leaving YC was not working with Jessica anymore. We'd been working on YC almost the whole time we'd known each other, and we'd neither tried nor wanted to separate it from our personal lives, so leaving was like pulling up a deeply rooted tree.\\n\\n[19] One way to get more precise about the concept of invented vs discovered is to talk about space aliens. Any sufficiently advanced alien civilization would certainly know about the Pythagorean theorem, for example. I believe, though with less certainty, that they would also know about the Lisp in McCarthy's 1960 paper.\\n\\nBut if so there's no reason to suppose that this is the limit of the language that might be known to them. Presumably aliens need numbers and errors and I/O too. So it seems likely there exists at least one path out of McCarthy's Lisp along which discoveredness is preserved.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e508308d-e2bf-46db-a3c4-c98d86a7d9d4'), Node(page_content='Thanks to Trevor Blackwell, John Collison, Patrick Collison, Daniel Gackle, Ralph Hazell, Jessica Livingston, Robert Morris, and Harj Taggar for reading drafts of this.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='cf0b9256-68dd-4e82-86f0-7a7464e0d0fe')], node_embeddings_list=[[-0.4864840507507324, 1.4953278303146362, -2.483095169067383, -0.13090671598911285, 0.5388283133506775, 0.03263700380921364, 1.6049073934555054, 0.36927375197410583, 0.376899778842926, -0.32016417384147644, 0.07661844789981842, -0.5045113563537598, 0.9932118654251099, 0.46091392636299133, 0.7749782800674438, 0.9791772365570068, 0.8240299224853516, -0.8413733839988708, 0.6601390242576599, 1.3214250802993774, -0.0014541863929480314, -0.4771997928619385, 0.07429936528205872, 0.03984106332063675, -0.09612180292606354, -0.12854205071926117, -1.0106065273284912, -0.13552778959274292, -1.2062469720840454, -1.2566789388656616, 0.09926658868789673, -0.5969429612159729, 0.0797877088189125, -0.5030465722084045, -0.863521158695221, 0.22742527723312378, 1.751513957977295, 1.4107850790023804, 0.6539307832717896, -0.049645375460386276, 1.7124297618865967, -0.6065614223480225, -0.09038663655519485, -1.2873902320861816, 0.6141224503517151, -0.7533595561981201, 1.3934601545333862, -0.8361425399780273, 0.12231005728244781, -0.02527104876935482, -0.8479353785514832, -0.388369083404541, 0.9572935104370117, 0.6533073782920837, 0.3450480103492737, 0.10119814425706863, 0.5645934343338013, 0.3290162682533264, 0.7490019202232361, -0.8425675630569458, 0.8562667965888977, 0.2986101508140564, -0.16312725841999054, 0.956280529499054, 0.18660210072994232, -0.7380489706993103, 0.19443431496620178, -0.042870186269283295, -0.9188985228538513, -0.32503587007522583, 0.37486231327056885, -0.12768426537513733, 0.10120801627635956, 0.5478570461273193, -1.463741660118103, 0.7016229033470154, 0.8774287104606628, 0.6986828446388245, 0.242282435297966, 0.918313205242157, -0.18654917180538177, -0.5197450518608093, 0.6731451153755188, -0.34729307889938354, 0.5859284996986389, -0.20247028768062592, 0.5007225871086121, -0.4599517583847046, -0.6350828409194946, 1.3337548971176147, 0.6650770306587219, 0.27963149547576904, 0.745192289352417, 0.1925511658191681, -0.706494152545929, -0.456095814704895, 0.3918251693248749, 0.5511340498924255, -0.8179551959037781, -0.5342932343482971, -1.003893494606018, -0.8676432967185974, 0.4654110372066498, 0.14215533435344696, -0.26477742195129395, 1.1163444519042969, 0.9311187267303467, -0.2409319430589676, -0.7403976917266846, -0.14410300552845, -0.11927824467420578, 0.24945108592510223, -0.831882119178772, -1.1742546558380127, -0.6094582676887512, 1.3488527536392212, 1.680446982383728, -0.43459680676460266, 1.1821043491363525, 1.0273462533950806, 0.4146674871444702, -0.9667333364486694, -0.2677384614944458, 0.8891524076461792, 0.4087006151676178, 0.14999008178710938, -0.7848932147026062, -1.168020248413086, 0.04931287094950676, -0.007302671205252409, 0.3466438353061676, 0.08718530088663101, -0.25867927074432373, 0.6377221345901489, -1.0164848566055298, 0.940284013748169, -0.4555308520793915, -0.4656195640563965, 0.10037780553102493, -0.4937652349472046, 0.41780993342399597, -0.38811758160591125, -0.299204021692276, -0.3402453064918518, 0.21063047647476196, -0.37330830097198486, 0.1334509402513504, -0.8741703629493713, -0.6385286450386047, 0.08279707282781601, -1.0080052614212036, 0.27800291776657104, 0.6665276885032654, 0.19590061902999878, -0.03686940297484398, -0.06524474173784256, 0.35422196984291077, 0.45578640699386597, 0.49152231216430664, 0.3231486976146698, 1.0174719095230103, -0.21855074167251587, -0.9000975489616394, 0.6486086249351501, 0.7941189408302307, -0.7382852435112, 0.3381063640117645, 0.49302586913108826, 0.5660306215286255, 1.0242059230804443, -0.22204113006591797, -0.8297144770622253, -0.26603496074676514, 0.15612533688545227, -0.13804891705513, -0.5354702472686768, 1.7772196531295776, -0.41576120257377625, -1.4959434270858765, -0.9221198558807373, 0.8635861277580261, -0.5337693095207214, 0.5428102016448975, -0.12925800681114197, -0.006798029411584139, -0.6638987064361572, 0.7628021240234375, 0.1651991903781891, -0.8000989556312561, -0.5578874945640564, -0.28020697832107544, 0.04170459136366844, -0.5740565061569214, 0.10696211457252502, -0.7794063091278076, -0.07896891236305237, 0.2929765582084656, -1.9465612173080444, -0.4136141538619995, -0.17718680202960968, -0.5294054746627808, -0.18766257166862488, -0.5769191980361938, 0.9238768815994263, -0.5683004260063171, 1.148861289024353, -0.9523991346359253, 0.9919272661209106, -0.5582164525985718, 0.5712845921516418, 0.6332875490188599, 0.03987528011202812, -0.6593706011772156, 0.8304091095924377, -0.29218727350234985, -1.5043035745620728, -0.06861027330160141, 0.604152500629425, -0.8428583741188049, 0.02139166370034218, 0.11010527610778809, -0.0374000184237957, 0.3474631607532501, 0.134092777967453, 0.24004912376403809, 0.06575784832239151, -0.6132557988166809, -0.449791818857193, -1.0398544073104858, 0.06678025424480438, -0.5211718082427979, -0.7613722681999207, 0.6515987515449524, -0.1048809140920639, -0.7440483570098877, -0.14736463129520416, 0.12449736148118973, 1.358614444732666, 0.3712126910686493, 1.3060123920440674, 0.32902052998542786, 0.4818570613861084, 0.16507375240325928, -0.403365820646286, -0.2599639594554901, 1.0439560413360596, 0.5630043148994446, -0.03142046555876732, 0.23179379105567932, 1.161116361618042, 1.357587456703186, -0.27601414918899536, 0.9227680563926697, 0.07535906136035919, -0.1400170624256134, -0.7634768486022949, -0.9875643253326416, 0.49662089347839355, -0.3044302761554718, 1.8602900505065918, 0.6348282098770142, -1.1338945627212524, 0.258952260017395, 0.05048736184835434, -0.41620317101478577, -0.46701309084892273, -0.6092929244041443, -0.8003408908843994, -0.4618443250656128, -0.21072936058044434, -0.6562128663063049, 0.37345728278160095, -0.1380358338356018, 0.44051072001457214, -0.7580539584159851, -1.3042107820510864, -0.6466823220252991, 0.057890791445970535, -0.25264856219291687, 1.4553565979003906, 0.495835542678833, -1.2061182260513306, -0.36699068546295166, 0.3047058582305908, 0.6620574593544006, 0.610964834690094, -0.009077725000679493, 0.6451467871665955, 0.35781168937683105, -1.033898115158081, 0.05771877244114876, 0.09978344291448593, -0.01823464408516884, -0.11920860409736633, -0.34799909591674805, 0.6403312087059021, 1.4997375011444092, -1.1170541048049927, -0.43419477343559265, -0.6393699049949646, 0.5955172181129456, 1.83098566532135, 0.44622448086738586, 0.7924044728279114, 0.07948658615350723, -0.21424907445907593, -0.03365898132324219, -0.7351117134094238, -1.1587777137756348, -0.14470358192920685, -0.8133431077003479, -1.1081510782241821, -0.6399529576301575, -0.5836365222930908, -0.04823201149702072, 0.3113213777542114, -0.38585320115089417, -0.02064032480120659, 1.514155626296997, -0.20877645909786224, -0.4331432282924652, -0.6479352712631226, 0.5128329992294312, -0.5013390183448792, 0.1703261137008667, 1.700183391571045, -0.7974804639816284, -0.6085972189903259, 0.16185623407363892, 0.4215621054172516, -0.1978544294834137, 1.1134042739868164, 0.05850605666637421, -1.341753363609314, -0.9876771569252014, 0.2342088371515274, 1.4850772619247437, -0.29661092162132263, 0.48468950390815735, -0.22470246255397797, 0.7247509956359863, 0.6032288074493408, -0.5868939161300659, -1.0654345750808716, 1.4457513093948364, -0.3439600169658661, -0.4960450232028961, -0.17079654335975647, 0.5452933311462402, 0.42754805088043213, -0.3220060169696808, -0.9048166871070862, -0.4495933949947357, -0.7373155951499939, 0.10886538028717041, 0.5721672177314758, -0.22332359850406647, 1.2284318208694458, -0.4999241232872009, -0.19005508720874786, 0.7815330624580383, 0.8681657314300537, -0.3793509900569916, -0.8809196352958679, 0.3760776221752167, 0.7392125129699707, 1.3769245147705078, -0.17826591432094574, 0.17852512001991272, 0.9797710180282593, 0.6399626731872559, -0.1204434409737587, 0.46684926748275757, 1.1811004877090454, -0.38026729226112366, 0.6723397970199585, -1.269701600074768, 0.016828233376145363, -0.013311827555298805, -0.7737100124359131, -0.2618798315525055, 0.9120712876319885, -0.6972975134849548, -0.867381751537323, 0.6442795991897583, 0.23807421326637268, -0.019191332161426544, -0.12437578290700912, 0.28963401913642883, 0.4819529056549072, -0.156572625041008, -0.12950283288955688, -0.3729536235332489, -0.03210362792015076, 0.01254374347627163, -1.102274775505066, -0.08934585750102997, 0.18384571373462677, -0.08077319711446762, 1.3221306800842285, -0.621619462966919, 0.12974736094474792, -1.1539034843444824, -0.13277393579483032, 0.5453199744224548, -0.7359796166419983, 0.3887213468551636, 0.03783005475997925, 0.1337936967611313, 0.3154546022415161, 0.11973193287849426, 2.170264482498169, -0.08577362447977066, -0.10385073721408844, 0.4783230721950531, -0.021054813638329506, -0.2103542685508728, -0.9993698596954346, -0.39852601289749146, 0.07840584218502045, -0.311281681060791, -0.12490491569042206, 0.5241817235946655, -0.09970910102128983, 1.703011393547058, 1.1719911098480225, 0.5574577450752258, 0.11698168516159058, 0.06578563153743744, -0.6458771228790283, -0.2881545424461365, 0.5147825479507446, -0.6344001293182373, -0.6870360374450684, -0.401914119720459, 0.18223480880260468, -0.7134068012237549, 0.38949429988861084, 0.683576226234436, 0.40536344051361084, -0.006641748361289501, 0.3234425485134125, 0.2646399736404419, 0.8518924713134766, 1.0499662160873413, 1.4853832721710205, 0.19854964315891266, -0.9766244292259216, -0.5216121077537537, 0.14666278660297394, -0.5127107501029968, 0.15583264827728271, 0.42920199036598206, 1.196698546409607, 1.034114956855774, -1.3651326894760132, -0.07042748481035233, 0.2790479063987732, 0.6284422278404236, 0.5966250896453857, 1.1302331686019897, -0.9467818737030029, -0.052118606865406036, 0.4411720931529999, 0.5663307905197144, -0.17442145943641663, -0.24892474710941315, 0.3761994242668152, -0.6440271735191345, 0.8194637894630432, -0.8886706233024597, 0.452502965927124, -0.7640030980110168, -0.8166048526763916, 0.13193413615226746, -0.8551043272018433, -0.16186925768852234, 0.48991820216178894, 0.7327815890312195, 1.2326518297195435, -0.2560814321041107, -0.861160933971405, 0.09156633168458939, -0.9370567202568054, 0.6710080504417419, -0.5694254040718079, -0.6655397415161133, -0.8271812200546265, -0.39884480834007263, -0.4058659076690674, 0.1791781485080719, -0.43065014481544495, -0.28494206070899963, -0.7286369204521179, -1.3619372844696045, 0.6563009023666382, 1.2224546670913696, 1.7455487251281738, 1.1589974164962769, -0.44041937589645386, 0.41388386487960815, 0.0012405912857502699, -1.3806440830230713, -0.09402249753475189, 0.8506878614425659, -0.02931027300655842, 0.3702852725982666, -1.4281792640686035, -0.4547490179538727, 0.06478706747293472, 0.007101014256477356, -0.5073710083961487, 1.0537631511688232, 0.699770987033844, 1.1404316425323486, -0.21720319986343384, -0.7101011872291565, 0.7401707768440247, -0.7416391968727112, 0.7974838018417358, 0.7599862813949585, -0.032167382538318634, -1.4077223539352417, -0.7132616639137268, -1.3464022874832153, 0.3726373314857483, -0.4093955159187317, -0.7578126788139343, 0.9836755990982056, 0.6008113622665405, 0.8755245804786682, 0.5445013642311096, -1.207647442817688, 0.26085853576660156, 0.06888733804225922, -0.3390505611896515, -0.8218275308609009, 0.02165374904870987, 0.3732382357120514, -0.14445346593856812, 0.23948442935943604, 0.39477118849754333, 0.040843892842531204, -0.6245413422584534, -0.16595597565174103, 0.04144813120365143, 0.31525734066963196, 0.5413529276847839, 0.05178333818912506, -0.7409623861312866, -0.051476411521434784, -0.5970669388771057, -0.450377494096756, -0.4719521999359131, 1.1608638763427734, 0.05060403794050217, -0.7776395678520203, -0.22644439339637756, 0.20142270624637604, -0.9119824171066284, 0.20337475836277008, -0.6210832595825195, 0.633095920085907, 0.7724893093109131, 0.09968167543411255, -0.5874606370925903, -0.29977351427078247, 0.03867649659514427, 0.04668499156832695, 0.4471057057380676, 0.31716665625572205, -1.7476564645767212, 0.00022490054834634066, 0.17692694067955017, -0.686568558216095, -0.6285669803619385, -0.05823054909706116, 0.13873380422592163, -1.1641279458999634, -0.6990417838096619, -0.3869599401950836, 0.8934739828109741, 0.9007747173309326, -0.9428307414054871, 0.4952140748500824, 1.3800077438354492, -1.618570327758789, 0.7026103138923645, -0.5327660441398621, -1.6226803064346313, -0.32584404945373535, -0.7362183928489685, 0.5861504673957825, -0.5209220051765442, 0.45349442958831787, -0.3442174196243286, 1.155558705329895, -1.4392129182815552, -1.7026771306991577, -1.2527408599853516, -0.3043428659439087, 1.5757249593734741, 0.5375774502754211, -0.3168468475341797, 1.6441760063171387, 1.422086477279663, -0.3701988160610199, -0.8100652098655701, 0.21271643042564392, -1.0588411092758179, -0.018628206104040146, 0.5888960957527161, 0.42660462856292725, 0.6234060525894165, 0.8501317501068115, 0.3700736463069916, 1.5171966552734375, -0.2632322609424591, 1.4128687381744385, -0.9273568391799927, -0.8189752101898193, 0.5682811737060547, 0.6821929216384888, -1.4808132648468018, -1.3075262308120728, -0.3991391062736511, -0.5632664561271667, -0.33524152636528015, -0.09572520107030869, 0.26891690492630005, -0.2835579514503479, -0.11138652265071869, -0.8638671636581421, 0.8083613514900208, -0.9339322447776794, 0.1427474319934845, -0.0031674527563154697, -0.3786966800689697, -0.03400310128927231, 1.0078201293945312, -0.28335508704185486, -2.029181480407715, -0.1163470670580864, 0.19117650389671326, 0.5940204858779907, -1.0862820148468018, 0.17665429413318634, 0.2528420686721802, 0.27239465713500977, -0.17994074523448944, 2.1409494876861572, 0.8216951489448547, -0.6055282354354858, -0.26278671622276306, 0.23389559984207153, -0.41914528608322144, 0.2729293406009674, -0.9524579644203186, -0.8105363845825195, -0.7522731423377991, 1.013993740081787, 0.2345469444990158, 0.5389344692230225, -0.25316640734672546, 0.39761894941329956, -0.2399633824825287, 0.011293256655335426, 1.5864683389663696, -1.0937626361846924, -0.36979544162750244, 0.5917309522628784, 0.08077359199523926, -0.6819072961807251, 0.27771416306495667, 0.5732125639915466, 0.61294025182724, -1.2371845245361328, 0.7193108797073364, 0.4108108580112457, -0.9333896636962891, 0.6148304343223572, 0.43206506967544556, -0.5029415488243103, -0.17245350778102875, -0.45186108350753784, -1.7772626876831055, -0.2665807008743286, -0.1840539425611496, -0.426052451133728, 1.034081220626831, -1.0003129243850708, -0.3953058421611786, 0.7386963367462158, -0.7327293157577515, -0.13644543290138245, -0.6374603509902954, 0.2577351927757263, -0.15362760424613953, -0.4327804148197174, 1.2466089725494385, 0.28286808729171753, 1.3237837553024292, 0.07075303047895432, 0.21751610934734344, -1.5321215391159058, -0.1418807953596115, -0.45741209387779236, -0.30032992362976074, -0.2629093825817108, 0.054488275200128555, 1.1303176879882812, -0.04624050855636597, -0.8897368907928467, -0.23950664699077606, 0.13743874430656433, 0.9924253225326538, 0.12109889835119247, -0.6786760091781616, 0.48097091913223267, 0.49176719784736633, 0.15034602582454681, 0.09690239280462265, -0.4726406931877136, -0.646044909954071, -0.39116230607032776, -0.5770983695983887, 0.11890588700771332, -0.25356990098953247, 0.7826312780380249, 0.43924763798713684, -0.21402406692504883, -0.3667421340942383, -1.2852896451950073, 0.8288066387176514, -0.47107937932014465, -0.7125102281570435, 0.02994934283196926, -0.31071484088897705, -0.09900836646556854, -0.20278987288475037, 0.5238033533096313, 0.4074316620826721, -0.36703482270240784, -0.05883868783712387, -1.2347214221954346, -0.6211671233177185, -0.2126273214817047, 0.2643027901649475, 1.0639921426773071, -0.019644614309072495, -0.195327490568161, 0.04137634485960007, -0.9405891299247742, 0.07086382806301117, 0.17125330865383148, 0.43744030594825745, 0.6838149428367615, 1.2986122369766235, 2.0996789932250977, 0.5884167551994324, 0.20228005945682526, -0.4811590909957886, 0.7988602519035339, -0.532646894454956, -0.35231730341911316, -0.7695010304450989, -0.7009415030479431, -0.39163246750831604], [-0.2762235105037689, 1.0435179471969604, -2.147933006286621, 0.17702092230319977, 0.4676657021045685, -0.17406833171844482, 1.0754215717315674, -0.1986594945192337, 0.03638250008225441, -0.5488455891609192, -1.0492887496948242, -0.21867531538009644, 0.6868480443954468, 0.5931729078292847, -0.06991837173700333, 0.2988024353981018, 0.8736750483512878, -0.5168519616127014, 0.5584871768951416, 1.122403860092163, 0.44882744550704956, -0.8136898279190063, 0.3054348826408386, 0.07413244247436523, -0.16741672158241272, 0.02150951512157917, -1.4033187627792358, -0.6280221343040466, -0.7395836710929871, -0.937179684638977, 0.5416960716247559, -1.2958731651306152, 0.286794513463974, 0.020528770983219147, -0.9370978474617004, -1.0245035886764526, 1.222577452659607, 1.1457678079605103, 0.9215420484542847, 0.315981924533844, 1.560907006263733, -0.22851651906967163, 0.06862188130617142, -1.3104591369628906, -0.11360728740692139, -0.37366148829460144, 0.8356195688247681, -1.1418182849884033, 0.26620572805404663, 0.06606942415237427, 0.12958109378814697, -0.5726176500320435, 0.4822477102279663, 1.177152156829834, 0.9044185280799866, -0.37794968485832214, 0.3986935317516327, 0.2430546134710312, 0.7013170719146729, -0.11224061250686646, 1.5856280326843262, 0.4902336299419403, -0.7472681403160095, 1.5452443361282349, -0.17273958027362823, -0.45807763934135437, -0.15327085554599762, -0.17386522889137268, 0.3580778241157532, 0.19921933114528656, 0.7662603855133057, 0.22445276379585266, -0.1263090968132019, 0.7572992444038391, -1.3925268650054932, 0.5292388200759888, 0.5424891114234924, 0.6076132655143738, 0.43336737155914307, 0.9932827949523926, 0.39540916681289673, 0.03523635491728783, 0.3637565076351166, -0.32457202672958374, 0.03027627058327198, -0.23367834091186523, 0.1011764332652092, 0.1691635698080063, -0.2564716637134552, 1.917168140411377, 0.7053709626197815, -0.15163420140743256, -0.24908021092414856, -0.1941699981689453, -0.3549090027809143, -0.6743176579475403, 0.6422973275184631, 0.48472678661346436, -0.8488268852233887, -0.8885774612426758, -0.7712924480438232, -0.5819073915481567, -0.3925069570541382, -0.26628240942955017, 0.36407244205474854, 1.2617264986038208, -0.26471081376075745, -0.8662840723991394, -0.28924259543418884, 0.07268410921096802, -0.8701607584953308, -0.02933628298342228, -0.8742074370384216, -0.5897912383079529, -0.6483034491539001, 1.1810640096664429, 0.8855341076850891, -0.5284353494644165, 0.8733596205711365, 0.5858824253082275, -0.36969897150993347, -0.6537447571754456, -0.693209171295166, 0.6939261555671692, 0.5696896910667419, 0.992433488368988, -0.4603581428527832, -0.8321208357810974, 0.35519489645957947, -0.09910981357097626, 0.46007177233695984, 0.028178295120596886, -0.3780938386917114, 1.1898322105407715, -0.7141819596290588, 1.233057975769043, -0.7085003852844238, -0.5793725848197937, -0.09041060507297516, 0.47430935502052307, 0.7506034970283508, -0.16685596108436584, -0.6031367778778076, -0.7475606799125671, 0.5222858190536499, -0.45633402466773987, -0.38295653462409973, -0.4645574986934662, -0.7880285382270813, 0.37265247106552124, -1.022291898727417, 0.6139141917228699, 0.3619597554206848, 0.6345071792602539, 0.406679630279541, -0.03402864187955856, 0.04392712935805321, 0.03396403044462204, 0.9067963361740112, 0.4219152331352234, 0.5078160166740417, -0.0367269404232502, -0.7368472218513489, 1.2974371910095215, 0.4119081497192383, -0.3024914562702179, -0.38621053099632263, 1.373828411102295, 0.18685749173164368, 0.9678274989128113, -0.9153609275817871, 0.34008151292800903, -0.7315624356269836, 0.35045602917671204, 0.5127485394477844, -0.2073451578617096, 1.0623242855072021, -0.30001118779182434, -1.1843314170837402, -0.7621354460716248, 0.8719851970672607, -0.5297222137451172, -0.3276306092739105, -0.5053360462188721, 0.10218438506126404, -0.09255043417215347, 0.4837804138660431, -0.5009375810623169, -1.2976456880569458, -0.5108283758163452, -0.44907528162002563, -0.3826083838939667, -0.521337628364563, 0.3665682077407837, -0.09790810197591782, -0.6941621899604797, 0.014517505653202534, -1.0349246263504028, -0.28082016110420227, 0.1376040279865265, -0.5323244333267212, -0.27229830622673035, -0.6817211508750916, 0.5964270234107971, -0.32075512409210205, 1.7278969287872314, -1.213127851486206, 0.754491925239563, -0.5594972968101501, 0.04744010046124458, 1.3652361631393433, -0.39029932022094727, -0.9625536799430847, 0.787190854549408, 0.29716041684150696, -1.638767123222351, 0.017138736322522163, 0.2549121379852295, -0.46535465121269226, 0.26275238394737244, 0.020476682111620903, 0.6726825833320618, 0.790407121181488, 0.2706238329410553, 0.3091830313205719, 0.21481910347938538, -0.986110270023346, -0.07905810326337814, -0.3572339117527008, 0.5393883585929871, -0.12977546453475952, -0.7793175578117371, 1.1137893199920654, 0.7425740361213684, -0.9360461831092834, -0.07774105668067932, -0.0503075011074543, -0.3017916977405548, -0.052580732852220535, 1.6790940761566162, 0.5552127957344055, 0.1764427274465561, 0.27044010162353516, -0.7549957036972046, -0.7949334383010864, 0.4919065833091736, 1.3662703037261963, -0.407819002866745, 0.43830862641334534, 1.6993573904037476, 1.1992107629776, 0.1377868503332138, 0.1215856522321701, 0.4438161253929138, -0.05240321159362793, -0.5634496212005615, -0.7863461971282959, 0.34546276926994324, -1.0506172180175781, 1.0068838596343994, 0.6986384391784668, -0.735052764415741, -0.8421558141708374, 0.1438516080379486, -0.1515084207057953, -0.578880250453949, -0.8708451986312866, -0.38435158133506775, -0.3300357460975647, -0.04915918782353401, 0.1723911166191101, -0.022562328726053238, -0.029402798041701317, 0.21788261830806732, -0.9054563045501709, -0.7481980323791504, -0.23460374772548676, 0.6905785799026489, -0.15270397067070007, 1.288449764251709, -0.5917378067970276, -1.5346674919128418, -0.2819984555244446, 0.061902642250061035, 0.8594236969947815, 0.2729814052581787, -0.6170285940170288, -0.11593996733427048, 0.32282623648643494, -0.34302404522895813, 0.6633561253547668, 0.04462987929582596, 0.4348137676715851, 0.017683817073702812, 0.025532543659210205, 0.8104696273803711, 0.9549503922462463, -0.7910693883895874, -1.4875832796096802, -0.05836310237646103, 0.1759985089302063, 1.0051599740982056, 0.6051481366157532, 0.6548299193382263, 0.20201575756072998, -0.6423584222793579, -0.8680848479270935, -0.10372292995452881, -0.7151662707328796, -0.6489991545677185, -0.8457215428352356, -0.715534508228302, -0.23710547387599945, -0.1068524494767189, -0.03278028592467308, 1.0171564817428589, 0.06959261745214462, 0.6896021962165833, 1.3978790044784546, -0.5672703981399536, -0.6061393618583679, -0.1300804615020752, 0.3184666335582733, -1.1271706819534302, 0.5954163074493408, 1.3206405639648438, -1.5060230493545532, -0.6460133194923401, -0.4422643780708313, 0.03681860864162445, -0.5730381608009338, 0.2123924046754837, -0.3311940133571625, -1.1054514646530151, -0.8132855892181396, -0.1899007111787796, 1.001909852027893, -0.5232822895050049, 0.3192318379878998, -0.5945964455604553, 0.2968616485595703, 0.8749769926071167, -0.17431806027889252, -0.42200618982315063, 0.4689674973487854, -0.7449824810028076, -0.769957423210144, -0.5218564867973328, 0.25933778285980225, 1.5799952745437622, -0.45882710814476013, -0.5617051720619202, -0.7480464577674866, 0.4190049469470978, -0.21595542132854462, 0.3527986705303192, -0.2863916754722595, 0.7623932957649231, -0.0027284277603030205, -0.1729700118303299, 0.8004288077354431, -0.11178229004144669, -0.18529869616031647, -1.2415571212768555, 0.3869352638721466, 0.49797555804252625, 0.9276190996170044, -0.18568868935108185, 0.755973756313324, 0.32934603095054626, 0.16104422509670258, 0.2121131867170334, 0.5857518911361694, 1.1674331426620483, -0.03676112741231918, -0.36383670568466187, -0.5896072387695312, -0.6619505286216736, -0.018521619960665703, -0.6746865510940552, 0.13586625456809998, 0.2822858393192291, -0.9299793243408203, -0.6642640829086304, 0.7846919298171997, 0.6515389680862427, -0.03240605816245079, -0.08476271480321884, 0.12402061372995377, 0.8537225127220154, -0.16936571896076202, -0.29546573758125305, -0.2760045826435089, 0.3766329288482666, 0.6409080028533936, -1.5674262046813965, 0.28945937752723694, 0.255682110786438, 0.2669807970523834, 0.5434024930000305, -0.8712978363037109, 0.11624662578105927, -0.4316636025905609, 0.3645147979259491, 0.7678184509277344, 0.029643375426530838, 0.17946885526180267, -0.04125203564763069, 0.1556069254875183, -0.2757226526737213, -0.0009713852778077126, 1.2906922101974487, -0.34439000487327576, 0.10170125216245651, -0.16375622153282166, -0.14707794785499573, -0.6718043088912964, -0.1478005349636078, -0.45539596676826477, 0.48428118228912354, -0.18099655210971832, 0.7917231321334839, 0.40884625911712646, -0.22421365976333618, 0.9982113838195801, -0.004923101980239153, 0.7484694123268127, 0.9320806264877319, 0.27514851093292236, -1.432821273803711, -0.4181910753250122, 0.15149396657943726, -0.25633588433265686, -1.2022221088409424, -0.7795764207839966, 0.18536770343780518, 0.31146496534347534, 0.1936621516942978, 0.027174359187483788, 0.6568194031715393, 0.4829258918762207, 0.060606949031353, 0.03578454256057739, 0.6012817025184631, 0.9215062260627747, 1.0010809898376465, 0.4110986888408661, -0.143641859292984, -1.1087698936462402, 0.875560998916626, -1.2190407514572144, 0.09938657283782959, 0.46377718448638916, -0.07816727459430695, 0.9879717230796814, -1.2367697954177856, -0.3341219425201416, 0.625045657157898, -0.03579201176762581, 0.4767037630081177, 0.6615999341011047, -0.48928430676460266, 0.36733463406562805, 0.5950943827629089, -0.2960995137691498, -0.5438185930252075, 0.3246203064918518, -0.15124687552452087, 0.040042806416749954, 0.743457019329071, -0.9852390289306641, 0.9047005772590637, -0.9020677804946899, -0.4366312623023987, -0.5283105373382568, -0.46307000517845154, 0.42792338132858276, 0.17534495890140533, -0.08231165260076523, 1.2524513006210327, -0.05874139443039894, -1.0363754034042358, -0.05980587378144264, -0.5312548875808716, 0.5199055075645447, -0.42625850439071655, -0.5723546147346497, -0.14504240453243256, -0.5885515213012695, 0.2698417901992798, 0.9218564033508301, -0.6785215735435486, -0.1781175434589386, -0.24496671557426453, -1.6866037845611572, 0.013640522956848145, 0.27014878392219543, 1.1194919347763062, 0.6333684325218201, -0.4151111841201782, 0.4590245187282562, 0.6538079380989075, -1.1724302768707275, 0.1351732462644577, 0.3366554379463196, -0.4300615191459656, -0.42835062742233276, -1.287503957748413, -0.5059044361114502, 1.0661108493804932, 0.807515025138855, -0.13012942671775818, 0.2980881929397583, 1.0550698041915894, 1.4484394788742065, -0.26129716634750366, -0.13152047991752625, 0.7205493450164795, -0.35648924112319946, 0.23053069412708282, 0.6570132970809937, -0.008349809795618057, -0.3678499758243561, -0.7074211835861206, -1.8485291004180908, 0.7129113078117371, -0.519183337688446, -0.6190979480743408, 1.1408069133758545, 0.6176238059997559, 0.7867937684059143, 0.20219603180885315, -0.5444259643554688, 0.2820621132850647, 0.12122189998626709, 0.1360563039779663, -1.5216646194458008, 0.27906641364097595, 0.506258487701416, -0.4165571331977844, 0.15797750651836395, -0.10242167115211487, -0.1912005990743637, -0.6846937537193298, -0.2155650109052658, 0.48054346442222595, 0.35689398646354675, 0.28129222989082336, 0.48466014862060547, -0.3540821075439453, 0.3330104947090149, -0.5787815451622009, -0.9055835008621216, 0.2824101448059082, 0.6702770590782166, 0.5127533674240112, -0.622739851474762, -0.19960016012191772, -0.012654340825974941, -0.03917400911450386, -0.16835783421993256, -0.7701234817504883, 1.013226866722107, 0.23178087174892426, -0.2112000584602356, -0.3894290030002594, -0.5127435922622681, -0.31206586956977844, -0.5716086030006409, 0.36741235852241516, 0.3718002438545227, -1.5295112133026123, 0.013336212374269962, 0.36746373772621155, -0.8094426989555359, -0.2686251401901245, -0.10070651024580002, 0.5963056087493896, -0.9319296479225159, -0.5529571175575256, -0.7326639294624329, 0.6081287264823914, 0.737280547618866, -0.4040399491786957, 0.6978673934936523, 0.7727034687995911, -1.409510612487793, 0.44052091240882874, 0.30862048268318176, -0.8307693004608154, 0.08769655972719193, -1.272884726524353, 0.754736602306366, -0.16507290303707123, 0.23800736665725708, -0.061387017369270325, 1.6221545934677124, -1.3637794256210327, -0.5103985071182251, -0.98374342918396, 0.10340876877307892, 1.1313689947128296, 1.0435782670974731, -0.19796739518642426, 1.0952953100204468, 0.7303349375724792, -1.017189860343933, -0.028401857241988182, -0.10565095394849777, -0.6615384221076965, 0.4383907616138458, 0.4558967351913452, 0.3688057065010071, 0.4640614986419678, 1.494846224784851, 0.1931179016828537, 0.6166942119598389, 0.4229682683944702, 1.3507643938064575, -1.2228933572769165, -0.32641321420669556, 0.24100039899349213, 0.5139521956443787, -0.7440794706344604, -1.1815953254699707, -0.1045801118016243, -0.7589271664619446, -0.7573317885398865, 0.3972143232822418, 0.27664873003959656, -0.608190655708313, -0.29785048961639404, -0.040723297744989395, 0.5170796513557434, -0.4233982264995575, 0.36507776379585266, 0.36523979902267456, -0.20566248893737793, -0.39831969141960144, 0.62625652551651, -0.4921216666698456, -1.837116003036499, 0.40285688638687134, 0.6305745840072632, 0.48441725969314575, -0.6745423078536987, 0.36442285776138306, 0.49986422061920166, 0.1225128173828125, -0.5913260579109192, 1.4407618045806885, 1.3125909566879272, -0.9261640906333923, 0.07208440452814102, 0.5946183800697327, 0.29107168316841125, 0.08718232810497284, -0.7867512106895447, -1.043257474899292, -0.8161843419075012, 0.7998484373092651, 0.5085076689720154, 0.13694727420806885, -0.4299597442150116, 0.18988071382045746, 0.10666681826114655, 0.17549192905426025, 1.0603926181793213, -1.1690526008605957, -0.5264047384262085, 0.45648589730262756, 0.17067596316337585, 0.2044835090637207, 0.8313398361206055, 0.3921031951904297, 0.8484909534454346, -0.6007767915725708, 0.07813427597284317, 1.0489864349365234, -0.8333816528320312, 0.14057795703411102, 0.022272519767284393, -0.8520503044128418, 0.3815549910068512, -0.15956465899944305, -1.6466693878173828, 0.1313883513212204, -0.6255310773849487, -0.96354740858078, 0.2688208222389221, -1.1019372940063477, -0.7384890913963318, 0.4322347342967987, -0.11941927671432495, 0.036213867366313934, -0.6296105980873108, 0.4298686683177948, 0.006603708956390619, 0.2927655875682831, 1.2613826990127563, -0.4415152370929718, 0.8011163473129272, -0.3162899613380432, -0.3427336812019348, -1.7419034242630005, 0.4552565813064575, -0.07053724676370621, 0.3840051591396332, -0.6466817855834961, -0.08200104534626007, -0.16534258425235748, -0.20568497478961945, -0.49233341217041016, 0.4930437505245209, -0.38738712668418884, 0.3392791450023651, 0.6558170914649963, -0.319947749376297, -0.9171062111854553, 0.3178272247314453, 0.7039527893066406, -0.15048128366470337, -0.7037985324859619, -0.37274256348609924, -0.3240579068660736, -0.06992074847221375, 0.9478099346160889, 0.048167407512664795, 1.0039992332458496, 0.16811442375183105, -0.40129774808883667, -0.31423085927963257, -0.9295132160186768, 0.5617550611495972, -0.9760094285011292, 0.5315940380096436, -0.6186608076095581, -0.39129725098609924, -0.21295146644115448, -0.6033167839050293, 0.6972644329071045, 0.8647212386131287, -0.09541777521371841, 0.07909313589334488, -0.9700567722320557, -0.8174899220466614, -0.4017753601074219, 0.04471824690699577, 1.1843539476394653, 0.3203049302101135, -0.03442711755633354, -0.038286514580249786, -0.88640958070755, 0.27989116311073303, -0.028285518288612366, -0.3017543852329254, -0.0950838252902031, 0.9656713604927063, 1.7933372259140015, 0.48112210631370544, 0.42965537309646606, 0.07469786703586578, 0.5968982577323914, -0.24530011415481567, -0.2842484414577484, -0.4399813115596771, -0.8960545659065247, 0.3499375879764557], [0.10801251232624054, 1.7401522397994995, -2.004685163497925, -0.013756264932453632, 0.46990564465522766, -0.09817343950271606, 1.0337167978286743, -0.7275130748748779, 0.06275860220193863, -0.9594452381134033, -0.041161082684993744, 0.002737252041697502, 1.0470868349075317, 0.9073339104652405, 0.06230712682008743, 0.2721346616744995, 0.6164716482162476, -0.5832828879356384, 0.4377419948577881, 0.6583498120307922, -0.05294511839747429, -0.7676753401756287, 0.3792605400085449, 0.6497117280960083, -0.5750406384468079, 0.11493223160505295, -1.1959681510925293, -0.355874627828598, -0.42068973183631897, -0.28657102584838867, 0.617831826210022, -0.5199248194694519, -0.09212622046470642, 0.796649158000946, -0.9034935832023621, -0.9956817030906677, 1.2648956775665283, 1.1272697448730469, 0.5215920805931091, 0.9303048253059387, 1.961841344833374, -0.13033883273601532, -0.26226767897605896, -1.2785544395446777, 0.20684336125850677, -0.03878951817750931, 0.9396726489067078, -1.1952977180480957, 1.079596757888794, -0.2160481959581375, 0.16004779934883118, -0.371097594499588, 0.2386314570903778, 1.130516529083252, 1.0556528568267822, 0.24282494187355042, 0.23902598023414612, -0.38138964772224426, 1.1875102519989014, -0.30475884675979614, 1.088246464729309, -0.4114841818809509, 0.04692479968070984, 1.03854238986969, -0.01849622093141079, -0.7731118202209473, -0.18290138244628906, -0.054048653692007065, 0.3973965048789978, -0.31569191813468933, 0.8083475828170776, -0.40772777795791626, -0.5355914235115051, 0.607290506362915, -1.4212182760238647, 0.43492385745048523, 0.9969441890716553, 0.7605239152908325, 0.011025622487068176, 0.6093167066574097, -0.02329808659851551, -0.2535631060600281, 0.7433437705039978, -0.48467499017715454, -0.2570962607860565, -0.32314810156822205, -0.11344855278730392, 0.2023288607597351, -0.33540791273117065, 1.5074325799942017, 0.8763335943222046, -0.16716663539409637, 0.3543393909931183, -0.33623939752578735, 0.11790471524000168, -0.1457562893629074, 1.1417365074157715, 0.02808462455868721, -0.5720534920692444, -0.7655102014541626, -0.792769193649292, -0.49629002809524536, 0.36323001980781555, -0.17114640772342682, 0.20714043080806732, 1.512047290802002, 0.0009512528777122498, -0.40133482217788696, -0.29975777864456177, -0.25598809123039246, -0.6401874423027039, -0.3543626070022583, -1.1671040058135986, -1.1768426895141602, -0.6768673658370972, 0.9605981707572937, 0.785286545753479, -0.17791502177715302, 0.5244778990745544, 0.9009268283843994, 0.01819670759141445, -0.5757376551628113, -0.12253886461257935, 0.3224334716796875, 0.387971967458725, 0.384628027677536, -0.1739397495985031, -0.6393897533416748, -0.2890353500843048, 0.26819658279418945, 0.8214815855026245, -0.10562773793935776, -0.6168711185455322, 0.8173802495002747, -0.28828299045562744, 1.228018879890442, -0.8340940475463867, -0.04660706967115402, 0.3593929409980774, -0.03898192197084427, 0.5136744976043701, -0.8579070568084717, -0.7633877396583557, -0.49234798550605774, -0.2947230637073517, -0.17913416028022766, 0.11236213147640228, -0.16316808760166168, -0.7053623795509338, -0.2889974117279053, -1.0708112716674805, 0.4124296307563782, 0.7504978775978088, 0.11623312532901764, 0.11777595430612564, -0.4069848358631134, -0.11274606734514236, -0.036096516996622086, 0.47387465834617615, 0.21128080785274506, 0.38859453797340393, 0.2780325412750244, -1.11577308177948, 1.531077265739441, -0.014412112534046173, -0.2923133969306946, -0.07846318185329437, 0.7512256503105164, 0.17025789618492126, 1.0332809686660767, -0.8297569751739502, -0.31964603066444397, -0.37630075216293335, 0.2468092441558838, 0.7946517467498779, -0.902556836605072, 1.7031571865081787, -0.8692577481269836, -0.6985952258110046, -1.4133952856063843, 0.6264949440956116, -0.7505237460136414, 0.37732893228530884, -0.10295719653367996, -0.10911288857460022, -0.5864593982696533, 0.2353944480419159, -0.7103467583656311, -0.8502374887466431, 0.3109040856361389, -0.24498458206653595, -0.4034404754638672, -0.8538030982017517, 0.07205609232187271, -0.2909931540489197, -0.7112600207328796, 0.6529890894889832, -0.7724153995513916, -1.2493230104446411, -0.10407561808824539, 0.11412355303764343, -0.45475736260414124, -0.7403374910354614, 0.3752003312110901, -0.5344462394714355, 1.3770086765289307, -1.3175843954086304, 0.8744733929634094, -0.4042850434780121, 0.3822861611843109, 0.9417547583580017, -0.19853194057941437, -0.32560184597969055, 0.8140034079551697, -0.22872687876224518, -1.341357946395874, 0.8273959159851074, 0.2700549364089966, -0.5059314966201782, 0.4126582741737366, 0.6338122487068176, 0.10626190155744553, 0.18265976011753082, 0.05084032565355301, 0.6049526929855347, -0.2111956626176834, -0.3948642909526825, -0.8485051393508911, -0.30226826667785645, 0.6413218379020691, -0.5846388339996338, -1.177329421043396, 1.1982091665267944, 0.7965415120124817, -0.5674648284912109, 0.39337870478630066, -0.11471656709909439, 0.2070888727903366, 0.21035675704479218, 0.6619669795036316, 0.6380754113197327, 0.6249905824661255, 0.09116952121257782, -0.7682010531425476, -0.8708110451698303, -0.2560720443725586, 0.4169076979160309, 0.41615456342697144, 0.3269367516040802, 0.8974785804748535, 1.0648773908615112, 0.10369407385587692, 0.1445799022912979, 0.987510085105896, 0.38433486223220825, -0.7161148190498352, -0.8677762150764465, 0.4417758584022522, -0.8190637826919556, 0.6375711560249329, 1.039402961730957, -0.7823986411094666, -0.49345189332962036, -0.3289353549480438, 0.07798880338668823, -0.3394383192062378, -1.0905482769012451, -0.8244019746780396, -0.5032138228416443, -0.008694642223417759, 0.007830934599041939, 0.8861221671104431, -0.15216746926307678, 0.5764645934104919, -0.33377012610435486, -0.14516404271125793, -0.2683849334716797, 0.5561696290969849, 0.025772955268621445, 0.9186933636665344, -0.5569642186164856, -1.2386317253112793, -0.5361276865005493, 0.5771404504776001, 0.35496577620506287, 0.02576231025159359, 0.052800845354795456, 0.35074323415756226, 0.29581794142723083, -0.6537510752677917, 0.2731890380382538, -0.16892191767692566, 0.06690704077482224, -0.04349164664745331, 0.011032402515411377, 0.5366957187652588, 0.23649117350578308, -0.6834043860435486, -0.8222976326942444, -0.007139451336115599, 0.35363543033599854, 0.5184109807014465, 0.1928253173828125, 0.6825733780860901, -0.3045707643032074, -0.10357116162776947, -0.6443458199501038, -0.06737066060304642, -1.137366533279419, -0.012035202234983444, -1.1167898178100586, -1.1685371398925781, -0.019353477284312248, 0.09815815091133118, -0.25492480397224426, 0.7408860921859741, -0.48711898922920227, 0.9044485092163086, 0.8972805142402649, -0.8493083715438843, -0.6182687878608704, -0.3122641146183014, 0.07758362591266632, -1.0421996116638184, 0.5607411861419678, 1.1039438247680664, -0.42242130637168884, -0.7920158505439758, -0.041192006319761276, 0.23801745474338531, 0.30481860041618347, -0.47042980790138245, -0.4561900794506073, -1.4186221361160278, -0.737011730670929, 0.23527905344963074, 1.098156452178955, -0.2905939817428589, 0.4218972623348236, -0.5900270938873291, 0.7805193662643433, 1.0995358228683472, 0.031505733728408813, -0.9009912014007568, 0.2454940229654312, -0.5770244598388672, -0.5268307328224182, -0.1506161093711853, 1.351220726966858, 0.6452804207801819, -0.7073574662208557, -0.2869483530521393, -0.21308736503124237, -0.11972580850124359, -0.44463226199150085, 0.46407562494277954, -0.1309611052274704, 0.48656198382377625, -0.5893849730491638, -0.3361823558807373, 0.15127301216125488, -0.12886810302734375, -0.3050435781478882, -1.7562625408172607, 0.11956152319908142, -0.08256423473358154, 1.0796821117401123, 0.2602229416370392, 0.3797282576560974, 0.02091595157980919, 0.2722172439098358, 0.28837350010871887, -0.22750426828861237, 1.3126158714294434, 0.24354209005832672, 0.24104365706443787, -0.8451530337333679, -0.6258048415184021, -0.13075995445251465, -1.0786837339401245, 0.027880549430847168, 0.2605611979961395, -0.6628673076629639, -0.3449086844921112, 0.9223315119743347, 0.32291293144226074, -0.3343217372894287, -0.13160528242588043, 0.3409169316291809, 0.025871388614177704, 0.06577689945697784, -0.09256428480148315, -0.4311670660972595, -0.4276534616947174, -0.10644099116325378, -1.6818304061889648, -0.22990165650844574, 0.3223208785057068, 0.2132495939731598, 0.7453029751777649, -1.2918957471847534, 0.3808995187282562, -0.7912184000015259, 0.5450199246406555, 0.7460896968841553, 0.01996104046702385, 0.6355336904525757, -0.09285186231136322, 0.05010610073804855, -0.24443523585796356, 0.13749198615550995, 1.3882039785385132, -0.44234102964401245, -0.16063635051250458, -0.33362969756126404, -0.20869790017604828, -0.24662631750106812, -0.8572916984558105, -0.3187721073627472, 0.038675080984830856, -0.3701474964618683, -0.20343232154846191, 0.3282511532306671, 0.09861112385988235, 1.1134803295135498, 0.3710140883922577, 0.5801358819007874, -0.2816110849380493, -0.634441614151001, -0.44802114367485046, -0.09773337095975876, -0.022662481293082237, -0.24158433079719543, 0.03419005498290062, -0.4585174322128296, 0.3439682126045227, 0.28189417719841003, 0.5950731635093689, 0.7359358668327332, 0.9311003684997559, 0.40898844599723816, 0.2680285573005676, -0.3138572573661804, 0.24801446497440338, 0.45715054869651794, 1.2755014896392822, 0.005973958410322666, 0.016802119091153145, -0.9432833790779114, 1.1459347009658813, -1.535841941833496, -0.0013031763955950737, 0.25520938634872437, 0.22471995651721954, 1.636498212814331, -1.7709736824035645, -0.6002069115638733, 0.27009040117263794, 0.5187397599220276, 0.058323848992586136, 0.21238034963607788, -0.6634615659713745, -0.30559858679771423, 0.721740186214447, 0.12489597499370575, -0.049410950392484665, 0.43211573362350464, -0.7939012050628662, -0.37689757347106934, 0.6266393661499023, -0.6827001571655273, 0.327294260263443, -0.394898384809494, 0.10623566061258316, -0.5883302688598633, -0.2110442966222763, 0.3156891167163849, 0.3466353416442871, -0.1988985389471054, 0.2973625957965851, -0.9410373568534851, -0.9579915404319763, 0.030708782374858856, -0.5836580991744995, 0.5566057562828064, -0.5715861916542053, 0.13908806443214417, -0.6285477876663208, -0.9823972582817078, -0.029419776052236557, 0.9172491431236267, -0.44280990958213806, -0.46748629212379456, 0.03266741707921028, -1.3130459785461426, -0.30391383171081543, 0.49524497985839844, 1.2200661897659302, 1.0066163539886475, -0.36572200059890747, 1.182149887084961, 0.6659702658653259, -1.3205769062042236, 0.006272770464420319, 0.3695535659790039, -0.4000898599624634, -0.6173727512359619, -1.392958402633667, -1.1210384368896484, 0.22945457696914673, 0.03151427581906319, 0.09704206138849258, 0.618180513381958, 0.9033966660499573, 1.3970578908920288, -0.022139428183436394, -0.8767309784889221, 1.3358255624771118, -0.41851356625556946, 0.6863635778427124, 0.948106586933136, -0.7170662879943848, -0.5349456071853638, -0.4348243474960327, -1.2362866401672363, 1.4556320905685425, -0.08008792251348495, -0.6863674521446228, 1.2079120874404907, 0.44913753867149353, 0.25276291370391846, 0.2440376579761505, -0.7053561806678772, 0.023744763806462288, 0.16696318984031677, 0.5823046565055847, -1.1198527812957764, 0.13075894117355347, 0.8936587572097778, 0.07643261551856995, 0.03480914607644081, 0.35109543800354004, -0.17440146207809448, 0.021161291748285294, 0.6180580258369446, -0.29909607768058777, 0.5905869603157043, 1.0578397512435913, 1.1830121278762817, -0.9151061773300171, 0.44486042857170105, -0.6839634776115417, -0.4599032700061798, 0.05466612055897713, 0.4701465368270874, 0.1403607726097107, -0.21517124772071838, 0.24372999370098114, -0.4117335379123688, -0.6898625493049622, -0.5081716179847717, -1.0494604110717773, 0.6559800505638123, 0.16188335418701172, -0.45316964387893677, 0.010348235256969929, -0.06762449443340302, -0.6298923492431641, 0.11395513266324997, 0.3974166214466095, 0.4552866816520691, -1.4533677101135254, 0.2518029808998108, 0.4275006949901581, -0.3116087019443512, 0.04663268104195595, 0.002955838805064559, 0.05312925949692726, -1.0363030433654785, -0.9954673647880554, -1.049862265586853, 0.40802326798439026, 0.7952602505683899, -0.38218164443969727, 0.10834471881389618, 0.9291192293167114, -1.31931471824646, 0.15606819093227386, 0.035494960844516754, -1.110870361328125, 0.06836442649364471, -1.3262085914611816, 0.9970922470092773, -0.01894642785191536, 0.38345175981521606, 0.09538228064775467, 1.2597792148590088, -0.8955082297325134, -0.729472815990448, -1.0431795120239258, 0.03536071255803108, 1.0215129852294922, 1.274376630783081, -0.5197412371635437, 0.884963870048523, 0.0902925655245781, -0.3064115345478058, -0.5738537907600403, -0.20084501802921295, -0.5982933640480042, 0.42901936173439026, 0.12001208961009979, 0.2739903926849365, 0.30975890159606934, 0.6353069543838501, 0.6312077045440674, 1.0753393173217773, -0.023620540276169777, 1.320803165435791, -1.1154483556747437, -0.11627896875143051, 0.43464216589927673, 0.39162319898605347, -1.2366714477539062, -1.1019419431686401, -0.16668638586997986, -0.5098460912704468, -0.5198227167129517, 0.269309937953949, 0.6133402585983276, -0.5925387740135193, 0.02746567130088806, -0.3722062110900879, 0.4054059386253357, -0.13296225666999817, 0.08089376240968704, -0.31518790125846863, -0.02888556197285652, -0.2027217298746109, 0.4293847978115082, 0.14140260219573975, -1.6945128440856934, -0.12096085399389267, 0.6072260141372681, 0.3002909719944, -0.8209370970726013, 0.5617448091506958, 0.45964619517326355, 0.5385533571243286, -0.5153942704200745, 1.6742804050445557, 0.9171797633171082, -0.5163480043411255, -0.1009453758597374, 0.49926355481147766, 0.09723276644945145, 0.5463661551475525, -1.3209342956542969, 0.4617544710636139, -0.9750621914863586, 0.8820978403091431, 0.6482841372489929, 0.4992206394672394, -0.3331625759601593, 0.4376950263977051, -0.3864971101284027, 0.3330962061882019, 0.568320095539093, -1.2264131307601929, -0.2757630944252014, 0.8823752403259277, 0.4439452588558197, -0.5393132567405701, 0.18164031207561493, 0.41483303904533386, 0.5316603779792786, -0.5040627121925354, 0.04802648723125458, 1.0137578248977661, -0.6151056885719299, 0.5535139441490173, 0.11976093798875809, -0.6868206262588501, 0.2605084180831909, -0.5458053350448608, -0.8469961285591125, -0.43180879950523376, -0.7393752932548523, -1.5558979511260986, 0.4943247139453888, -1.1138986349105835, -0.8502416610717773, 0.4136356711387634, -0.27209874987602234, -0.12560568749904633, -0.03488307073712349, 0.11678367853164673, -0.25203123688697815, -0.32788437604904175, 0.7118555307388306, -0.5496906042098999, 1.200585126876831, 0.2631281018257141, 0.024570157751441002, -0.9931600093841553, 0.11211524158716202, 1.0037070512771606, -0.2403661012649536, -0.2147376984357834, 0.6082332730293274, -0.0022877678275108337, 0.13183265924453735, 0.23164524137973785, 0.039705466479063034, -0.054880138486623764, 0.7428910136222839, 0.7404381632804871, -0.3402714729309082, 0.0028741154819726944, 0.08290069550275803, 0.3493387699127197, -0.18852366507053375, -0.2506430149078369, -0.693641722202301, -0.1162959560751915, -0.42433908581733704, 0.05701172724366188, -0.5838339924812317, 0.46727070212364197, 0.42421942949295044, -0.736735463142395, 0.03290907293558121, -0.795698881149292, 0.5687485337257385, -0.7042875289916992, 0.8362991213798523, 0.2916830778121948, 0.12072327733039856, 0.05686409771442413, -0.5818049907684326, 0.5294286608695984, 0.6459257006645203, 0.03884623199701309, 0.14437063038349152, -0.782994270324707, -0.8032065629959106, -0.5650615692138672, 0.5371084809303284, 1.6286554336547852, 0.28220224380493164, 0.20231737196445465, 0.3451188802719116, -0.5822598934173584, 0.383114755153656, -0.0554957278072834, 0.07330925017595291, 0.3262375593185425, 1.4966890811920166, 1.8064745664596558, 0.5958225131034851, 0.6060192584991455, 0.2368721216917038, 0.548785388469696, -0.6195372939109802, -0.8588204383850098, -0.5887480974197388, -0.3174104392528534, -0.0767427384853363], [0.2624015212059021, 1.478757619857788, -2.4849510192871094, -0.3478687107563019, 1.043252944946289, 0.8166347146034241, 1.3748162984848022, 0.05148276314139366, 0.6020443439483643, -0.46565842628479004, 0.0519840307533741, -0.1789296567440033, 0.718146026134491, 1.1136423349380493, -0.10148387402296066, 0.8411595225334167, 0.7561543583869934, -0.9999678730964661, 0.8331830501556396, 0.7293510437011719, -0.3187803030014038, -0.008703858591616154, 0.30912813544273376, 0.13834969699382782, -0.6564419865608215, -0.08616037666797638, -1.3353486061096191, -0.32994967699050903, -0.1576271653175354, -1.3836101293563843, 1.066054105758667, -0.5544627904891968, -0.4900217354297638, -0.24361561238765717, -0.7317301034927368, -0.5431115627288818, 1.6287397146224976, 1.308882474899292, 0.8404388427734375, 1.0196775197982788, 1.5892982482910156, -0.16608360409736633, -0.05397574603557587, -1.5804626941680908, 0.12278886884450912, -0.45654740929603577, 0.6548374891281128, -1.08904230594635, 0.6682493090629578, -0.550342857837677, 0.36558082699775696, 0.44251829385757446, 0.8014483451843262, 0.8619442582130432, 0.17619486153125763, 0.5399944186210632, -0.048969198018312454, -0.17937082052230835, 2.0705766677856445, -0.6231793761253357, 1.1514588594436646, 0.16530002653598785, 0.10013396292924881, 0.24468675255775452, 0.33505427837371826, 0.029211068525910378, -0.7622979283332825, 0.9677170515060425, 0.3689159154891968, -1.1224136352539062, 0.5476427674293518, 0.28843414783477783, 0.06386956572532654, 0.7236948609352112, -1.8876762390136719, 0.8281145095825195, 0.5627033114433289, 1.043967604637146, 0.13995444774627686, 0.849648654460907, -0.38961854577064514, -0.19371679425239563, 0.8960064649581909, -0.19408728182315826, 0.6995401978492737, -0.41886165738105774, 0.3931300938129425, -0.771913468837738, -0.4092974066734314, 1.3020496368408203, 0.03943462669849396, -0.09989827871322632, 0.37519586086273193, -0.448026567697525, 0.13841426372528076, -0.41087499260902405, 0.5429008603096008, 0.008024636656045914, -0.9044497013092041, -1.0733882188796997, -0.9620575308799744, -0.843664824962616, -0.5152467489242554, -0.29681187868118286, -0.7091808319091797, 1.5514250993728638, 0.319512277841568, 0.37527748942375183, 0.19737392663955688, 0.30594614148139954, -0.7138950824737549, -0.4859659969806671, -0.487746000289917, -0.9115239381790161, -0.8098945021629333, 0.44589248299598694, 1.040587306022644, -0.401591956615448, 0.75066077709198, 1.2183631658554077, -0.5162286758422852, 0.46717071533203125, -0.3324207365512848, 0.5446309447288513, 0.2709965705871582, 0.65218186378479, -0.7129713296890259, -0.8893372416496277, 0.5049474835395813, -0.1405859887599945, 0.7702723145484924, 0.1059018224477768, -0.3238271176815033, 0.9899681210517883, -0.7852070331573486, 0.924942672252655, -0.043105050921440125, -0.27982082962989807, 0.32816800475120544, -0.2752861976623535, 0.11282496154308319, -0.25346052646636963, -0.5545422434806824, -0.5159963965415955, -0.02264379896223545, -1.1150853633880615, -0.08845128864049911, -0.11211808770895004, -0.7848736643791199, -0.03278520330786705, -0.5588028430938721, 0.6323474049568176, 0.6354861855506897, 0.8185372948646545, 0.5147333741188049, -0.34586429595947266, 0.3499945402145386, 0.14142154157161713, 0.5281873941421509, 0.1156000867486, 0.470119446516037, -0.1318068504333496, -0.9280646443367004, 1.1468929052352905, 0.042547378689050674, -0.5052033066749573, 0.9580056667327881, 0.48998603224754333, 0.3767263889312744, 0.674286961555481, -1.0010074377059937, 0.07227948307991028, -0.6469976902008057, 0.21925824880599976, -0.26446011662483215, -0.23892736434936523, 0.787628173828125, -1.514567494392395, -1.3394633531570435, -0.5245693325996399, 0.6887292861938477, -0.8274527788162231, 0.35356074571609497, 0.4743536114692688, 0.7488804459571838, -0.5430992841720581, 0.3391479551792145, 0.05589867755770683, -0.6011093854904175, -0.8797019720077515, -0.41957953572273254, -0.5728978514671326, -0.8890525102615356, 0.04113377258181572, -0.04897518828511238, -0.47351208329200745, 0.2826786935329437, -1.3771278858184814, -0.6952084898948669, -0.40771743655204773, -0.4475068151950836, -0.5709606409072876, -1.1429575681686401, 0.872765839099884, -0.3192250728607178, 0.8634790778160095, -1.055463433265686, 1.0756175518035889, -0.7020883560180664, -0.03565725311636925, 0.4080994129180908, -0.0948449969291687, 0.06660331785678864, 0.6086380481719971, -0.7858341932296753, -1.2567836046218872, 1.0164008140563965, -0.0015497393906116486, -0.28163111209869385, 0.39672866463661194, 0.2737213373184204, 0.4585283696651459, 0.05062964931130409, -0.07019808888435364, 0.4521341919898987, 0.18854759633541107, -1.2088500261306763, -0.8597833514213562, -0.5546852350234985, 0.25594794750213623, -0.5893504619598389, -0.7092527151107788, 0.8212499618530273, 0.14181070029735565, -0.2058515101671219, 0.15085969865322113, -0.5040002465248108, -0.3079420328140259, 0.6390330195426941, 1.2936152219772339, 0.27955362200737, 0.4609842896461487, -0.31908687949180603, 0.10924877971410751, -0.1705697625875473, 0.6726192831993103, 0.7081126570701599, -0.11808700114488602, 0.08477992564439774, 1.444206953048706, 0.834803581237793, 0.29696762561798096, 0.4177016019821167, 0.05097868666052818, -0.3547806739807129, -0.6036457419395447, -1.042223334312439, 0.6233624815940857, -0.18610981106758118, 1.201638102531433, 0.5498614311218262, -0.6532349586486816, 0.11215724796056747, -0.11009734123945236, -0.4689174294471741, -0.4869863986968994, -0.810358464717865, 0.2156832069158554, -0.40469831228256226, -0.19602803885936737, 0.012266958132386208, 0.5294481515884399, -0.27372249960899353, 0.49235227704048157, -0.8539975881576538, -0.07805421948432922, 0.02234080620110035, 0.46101638674736023, 0.23854520916938782, 0.8905319571495056, -0.5038647055625916, -1.1299684047698975, -0.4345601499080658, -0.281109482049942, 0.9681785702705383, -0.05611153319478035, 0.4387713074684143, -0.403389573097229, 0.31162673234939575, -0.48775389790534973, 0.27014732360839844, -0.010148432105779648, -0.02742084674537182, 0.45489779114723206, -0.6194477081298828, 0.3055984377861023, 1.424221158027649, -0.5769718885421753, -0.7579941749572754, -0.5111896395683289, 0.824682891368866, 0.895017147064209, 1.2308685779571533, 1.4416857957839966, 0.3577919006347656, 0.12836073338985443, -0.2030058652162552, -0.44081494212150574, -0.8184372186660767, -0.7991872429847717, -0.5078191757202148, -0.6762086153030396, -0.37806978821754456, -0.06338418275117874, 0.14669662714004517, 0.6616639494895935, -0.1269146353006363, 0.8908211588859558, 1.542635440826416, -0.2066839188337326, -0.8120040893554688, 0.2221103310585022, -0.1496739536523819, -1.0251048803329468, 0.5724160671234131, 0.7044910192489624, -1.022097110748291, -0.8514164686203003, -0.656618595123291, 0.06214884668588638, 0.6756892204284668, 0.10004988312721252, -0.30732882022857666, -1.1848045587539673, -0.9576493501663208, -0.4601729214191437, 1.1796609163284302, -0.20242874324321747, 0.0791732668876648, -0.811670184135437, 0.07148965448141098, 0.15801948308944702, -0.7398173809051514, -0.8123195767402649, 0.7488853335380554, -0.7628440856933594, -0.38228097558021545, 0.2112068384885788, 0.25813010334968567, -0.15257516503334045, -0.6153128147125244, -0.14316925406455994, 0.13699625432491302, -0.07161487638950348, -0.2165609449148178, 0.7302780151367188, 0.13510718941688538, 1.077891230583191, 0.20974351465702057, -0.5175093412399292, 1.1168718338012695, -0.15983113646507263, -0.1535727083683014, -1.2018568515777588, 0.33737656474113464, -0.09076416492462158, 1.5068105459213257, 0.11303569376468658, 0.9752611517906189, 0.2808680534362793, 0.2745416760444641, 0.13526737689971924, 0.3585244417190552, 1.4154791831970215, 0.3229539394378662, -0.548845648765564, -0.34975412487983704, 0.005903742276132107, -0.005199737381190062, -0.7417136430740356, -0.7784575819969177, 0.38512396812438965, -0.43923717737197876, -1.271399736404419, 0.9204506874084473, 0.36010998487472534, -0.5579041838645935, -0.7065880298614502, -0.19038650393486023, 0.8326646089553833, 0.022538527846336365, 0.17455706000328064, -0.8377483487129211, 0.3479725122451782, -0.1850261688232422, -1.4240025281906128, 0.06573644280433655, 0.7894104719161987, 0.08159443736076355, 0.5071418881416321, -1.0388679504394531, 0.22272305190563202, -0.10918329656124115, 0.6941282153129578, 0.32049527764320374, -0.5549417734146118, 0.17449960112571716, 0.07603368908166885, 0.5532093644142151, 0.12868660688400269, 0.23960816860198975, 1.5379014015197754, -0.02558302879333496, -0.06141955405473709, 0.5762155055999756, -0.13075514137744904, -0.0031811995431780815, -0.5605348348617554, -0.6525914072990417, -0.0013317442499101162, -0.04918481037020683, 0.31172654032707214, -0.07259504497051239, -0.6218045949935913, 1.494405746459961, 1.3380173444747925, 0.40031424164772034, 0.7493155598640442, -0.3464108407497406, -0.4895746111869812, 0.34534889459609985, 0.6723459959030151, -0.0318727008998394, -0.9032614231109619, -0.3327111601829529, 0.030449645593762398, -0.4134844243526459, 0.5031440854072571, 0.09358684718608856, 0.8588635921478271, 0.15310679376125336, 0.38500139117240906, -0.34839004278182983, 0.03229888156056404, 0.6341962218284607, 1.7246989011764526, -0.05989157781004906, -0.13558828830718994, -0.7307185530662537, 0.7970162630081177, -1.3367395401000977, -0.2544417083263397, 0.5190500617027283, 0.7090532183647156, 1.2749872207641602, -1.9146728515625, -0.7873866558074951, 0.3929021656513214, 0.3968425393104553, 0.6621072888374329, 0.3840138018131256, 0.12471947073936462, -0.19467857480049133, 0.49765151739120483, 0.5520491003990173, -0.2880251407623291, -0.253378689289093, 0.07637662440538406, -0.08675935864448547, -0.12954504787921906, -0.7790033221244812, 0.7258589863777161, -0.519189178943634, -0.2740902006626129, -0.8343279361724854, -0.32784178853034973, 0.18866494297981262, 0.7330381274223328, 0.28151631355285645, 1.177242398262024, -0.07632016390562057, -0.4079296290874481, 0.601882815361023, -0.5507228374481201, 0.3021993041038513, 0.06080891191959381, -0.7437050342559814, -0.455559104681015, -1.1417838335037231, -0.19828657805919647, 0.4555739760398865, -0.8919369578361511, 0.07347877323627472, -0.43353062868118286, -1.4097758531570435, 0.004637557547539473, 0.9251989722251892, 1.156551718711853, 0.9232827425003052, 0.2176039218902588, 0.186819925904274, 0.9178867340087891, -0.842926561832428, -0.11287675052881241, 0.1718108206987381, -0.14195869863033295, 0.09658334404230118, -1.7123476266860962, -0.4114535450935364, 0.3179496228694916, 0.11964063346385956, -0.3033916652202606, 0.2901507318019867, 1.1561264991760254, 1.0083332061767578, -0.14297108352184296, -0.580247163772583, 0.28890660405158997, -0.9925051331520081, 0.1397813856601715, 0.5132163763046265, -0.7966015934944153, -0.0999758318066597, -0.4853486716747284, -0.9773833155632019, 0.7350562810897827, -0.7436516284942627, -0.7808681130409241, 1.1829878091812134, -0.08733881264925003, 0.2799917161464691, 0.4213060736656189, -0.3354288637638092, 0.3018556535243988, 0.6963522434234619, -0.276234894990921, -0.9527466297149658, 0.10575124621391296, 0.5261749625205994, 0.49660754203796387, -0.05304047837853432, 0.7627595067024231, 0.5634832382202148, -0.28247642517089844, 0.22735081613063812, -0.009191320277750492, 0.6713594794273376, 0.9824463725090027, 0.6881142258644104, -0.8824561238288879, -0.19361896812915802, -0.7750246524810791, -0.879105806350708, 0.12318813800811768, 0.37964314222335815, -0.3498540222644806, -1.1669528484344482, -0.5222716927528381, -0.40528419613838196, -0.031277988106012344, 0.14455293118953705, -0.7082638740539551, 0.8129667639732361, 0.014895768836140633, -0.13244351744651794, 0.034440502524375916, -0.4902280867099762, -0.18021342158317566, 0.055744484066963196, -0.01838049665093422, 0.34267616271972656, -1.6444225311279297, -0.19834646582603455, 0.05604953318834305, -0.5203763842582703, 0.11412648111581802, 0.33228057622909546, 0.5249267816543579, -1.4267339706420898, -1.3222347497940063, -1.0348318815231323, 0.1716352254152298, 0.7071461081504822, -1.464162826538086, 0.1250821053981781, 1.6059556007385254, -1.9071565866470337, -0.33553948998451233, 0.4710334539413452, -1.4549973011016846, -0.18928441405296326, -1.604570984840393, 1.1021896600723267, -0.18877866864204407, 0.19570624828338623, -0.5113556981086731, 1.4349619150161743, -0.9874256253242493, -1.6347509622573853, -0.4798542857170105, -0.13557526469230652, 0.5465113520622253, 1.0988726615905762, -0.6374061107635498, 1.138185977935791, 0.65234375, -0.4379740059375763, -0.8048437833786011, 0.30853116512298584, -0.9512988924980164, 0.6991510987281799, 0.2931666672229767, 0.1159379780292511, 0.19047145545482635, 1.2239283323287964, -0.3952083885669708, 0.9401617646217346, 0.19939498603343964, 1.1688776016235352, -1.1620045900344849, -0.1556577980518341, -0.1308588683605194, 0.47757020592689514, -1.3290661573410034, -0.21819891035556793, -0.6731084585189819, -0.6344332695007324, -1.249241828918457, 0.690073549747467, 0.5188474655151367, -1.0487686395645142, -0.1652234047651291, -0.11560361832380295, 0.447224885225296, -0.3570307195186615, 0.0783017948269844, -0.14669835567474365, -0.08075596392154694, 0.29100722074508667, 0.4492504596710205, -0.1945137232542038, -1.7481226921081543, 0.2535116970539093, 0.26583898067474365, 0.6029338240623474, -0.6094457507133484, 0.8043069839477539, 0.6658835411071777, -0.38022056221961975, -0.6025951504707336, 1.7169848680496216, 0.8446548581123352, -0.3196799159049988, -0.22220748662948608, 0.17401356995105743, 0.39259371161460876, 0.6761637926101685, -0.44305482506752014, 0.4683360159397125, -0.8297353386878967, 0.772311806678772, 0.39460307359695435, 0.3208118677139282, -0.6426733136177063, -0.02278665080666542, -0.5331943035125732, 0.3274219036102295, 0.04595963656902313, -0.955920934677124, 0.13010366261005402, 0.9787425994873047, 0.20758050680160522, -0.6988789439201355, 0.7844803929328918, 0.5968615412712097, -0.10753010213375092, -0.0830683708190918, 0.62876296043396, 0.44874587655067444, -1.1596921682357788, 0.4372084140777588, 0.638005793094635, -0.15090565383434296, -0.2666245698928833, -0.8264731168746948, -0.8080670833587646, -0.016283484175801277, -0.18941710889339447, -0.9537336826324463, 0.48750460147857666, -0.9268849492073059, -0.8438416123390198, 0.6442979574203491, -0.302682101726532, -0.19134852290153503, -0.20073439180850983, 0.5658091306686401, -0.4339909255504608, 0.4971258044242859, 0.9435189962387085, -0.6871581077575684, 0.5872192978858948, 0.34914880990982056, -0.38513118028640747, -1.0468546152114868, -0.45968103408813477, -0.31249284744262695, 0.36859437823295593, -0.3926648199558258, 0.260883629322052, 0.6392585635185242, 0.10460298508405685, -0.6328880190849304, 0.23876963555812836, 0.12305634468793869, 0.15584653615951538, -0.43483954668045044, -0.15759970247745514, 0.3791789710521698, 0.35733333230018616, 0.6197731494903564, -0.04080818593502045, -1.2194416522979736, -0.4086208641529083, 0.3368340730667114, -0.36427047848701477, 0.2983398139476776, -0.11842961609363556, 1.0452642440795898, 0.01580449938774109, 0.08224038034677505, -0.23825882375240326, -0.8899075388908386, -0.23957347869873047, -0.3986341953277588, 0.4456826448440552, -0.06360075622797012, -0.5032121539115906, 0.008643228560686111, -1.1531285047531128, 0.33130916953086853, -0.24838887155056, 0.14796172082424164, -0.2026737928390503, -0.9385685324668884, -1.0307823419570923, -0.28809601068496704, 0.35795655846595764, 0.9331397414207458, 0.24334529042243958, 0.13753753900527954, -0.3800719976425171, -0.7074911594390869, 0.5862389802932739, 0.08566340059041977, -0.09532129019498825, 0.2986864745616913, 1.1780906915664673, 1.7674169540405273, 0.2937249541282654, 0.4372052252292633, -0.0651395320892334, 0.40185144543647766, 0.3766496479511261, -0.3758625090122223, -0.42873767018318176, -0.2439148724079132, 0.3065917491912842], [-0.22785523533821106, 2.2373828887939453, -2.2456398010253906, 0.4039178192615509, 1.0387638807296753, -0.11745643615722656, 1.0879347324371338, -0.061171337962150574, -0.21780507266521454, -0.15630672872066498, -0.47304943203926086, -0.38628050684928894, 0.35573649406433105, 0.6189746856689453, 0.04966402053833008, 0.7730790972709656, 0.8258230686187744, -0.41605350375175476, 1.0061343908309937, 1.3454910516738892, 0.1671840101480484, -0.42834052443504333, 0.10946690291166306, 0.20513346791267395, -0.8351485729217529, 0.3865463137626648, -0.7504324316978455, -0.6073112487792969, -0.6499089598655701, -1.12537682056427, 0.9982943534851074, -0.6764819622039795, 0.37343183159828186, 0.06117478758096695, -0.7907814383506775, -0.5771318674087524, 1.6982972621917725, 1.694701075553894, 0.37593355774879456, 0.4299807548522949, 1.2656840085983276, -0.47502750158309937, 0.06333303451538086, -1.613202691078186, -0.45652511715888977, -0.05063660815358162, 0.9907670021057129, -0.7896416187286377, 0.11879066377878189, -0.3696594834327698, 0.33121055364608765, -0.31715908646583557, 1.1016967296600342, 0.5559731125831604, 0.4234812557697296, 0.3370603621006012, 0.4151964783668518, -0.32297733426094055, 0.7522987127304077, -0.37494972348213196, 1.323598861694336, -0.3735935389995575, -0.3726560175418854, 0.3168726861476898, 0.5787918567657471, -0.7958365678787231, 0.9602218270301819, 0.06519154459238052, -0.19409680366516113, -0.08878346532583237, 0.3467271029949188, 0.09259974956512451, -0.6883520483970642, -0.1808028221130371, -1.4201687574386597, 0.12185791879892349, 1.1777855157852173, 1.0398036241531372, 0.19258713722229004, 0.7513161301612854, -0.3234427273273468, -0.10868306457996368, 0.9617471694946289, -0.05418969318270683, 0.346606582403183, -0.22006560862064362, -0.031655699014663696, -0.48713770508766174, -0.2068920135498047, 1.6697067022323608, 0.1238255575299263, 0.25098344683647156, 0.4620455205440521, -0.36308005452156067, -0.022850699722766876, -0.6870232820510864, 0.22523684799671173, 0.1846543252468109, -0.5707270503044128, -0.21202591061592102, -1.1479065418243408, -1.418201208114624, 0.52789306640625, -0.28137555718421936, -0.06044241040945053, 1.2523077726364136, 0.5107556581497192, 0.03099033422768116, -0.6808274388313293, 0.012660758569836617, -0.44523385167121887, 0.327173113822937, -0.7778862118721008, -1.2376118898391724, -0.2320006638765335, 0.78693687915802, 1.2697993516921997, 0.17065081000328064, 0.0079941526055336, 0.8590127825737, 0.30191272497177124, -0.20837071537971497, -0.23785966634750366, 1.3643471002578735, -0.2902359366416931, 0.26249760389328003, -0.7015889883041382, -0.31122463941574097, -0.0499800406396389, 0.056275609880685806, 0.5543016791343689, 0.6328334808349609, -0.23826216161251068, 0.8704175353050232, -0.49474313855171204, 0.8045950531959534, -0.8202505111694336, -0.040825482457876205, -0.36539867520332336, -0.3312375843524933, 0.2515961229801178, -0.5990952253341675, -0.5639703869819641, 0.027106909081339836, -0.783245861530304, -0.4375079572200775, 0.2244163304567337, -0.09656219929456711, -0.7461557984352112, 0.029319074004888535, -1.1512269973754883, 0.26073595881462097, 0.7936707735061646, -0.1108248233795166, 0.5877388715744019, 0.02898314595222473, 0.4267706573009491, 0.19675005972385406, 0.173061341047287, 0.6443688869476318, 0.8950648903846741, -0.08364826440811157, -1.2384164333343506, 0.9267991185188293, 0.5905659794807434, -0.005758625455200672, 0.7864751815795898, 0.6371635794639587, 0.4106811285018921, 0.7701586484909058, -0.6394748091697693, -0.8000850677490234, -0.5670034289360046, 0.6700995564460754, 0.22765451669692993, 0.04039822891354561, 0.657564640045166, -0.3825187087059021, -1.7282981872558594, -1.2009201049804688, 0.8305754661560059, -0.6803281307220459, 0.04719000309705734, 0.6090233325958252, 0.23843327164649963, -0.4381226897239685, 0.45305389165878296, -0.1429382562637329, -0.29509857296943665, -0.20584693551063538, -0.8415999412536621, -0.09151758253574371, -0.24340040981769562, 0.3680608868598938, -0.13700321316719055, -0.47340208292007446, 0.39216476678848267, -1.4327318668365479, -0.7093251347541809, -0.2233094573020935, 0.20894896984100342, -0.5785483121871948, -0.693469226360321, 0.17641426622867584, -0.6479983925819397, 1.1649354696273804, -1.6401363611221313, 1.0612270832061768, -0.719397246837616, 0.6104215383529663, 0.3585023283958435, 0.18409806489944458, -0.4097810983657837, 0.8869937658309937, -0.003151940181851387, -1.9291714429855347, 0.2914007604122162, 0.41503047943115234, -0.4114908277988434, 0.4555265009403229, 0.14920751750469208, 0.35501906275749207, 0.10180817544460297, -0.09668587893247604, 0.4678270220756531, 0.13471975922584534, -0.5889852643013, -1.2965023517608643, -0.5481626987457275, 0.07369954138994217, -0.3475653827190399, -1.2513482570648193, 1.3173245191574097, 0.209189772605896, -0.8095027804374695, 0.47465750575065613, -0.23481255769729614, 0.25462159514427185, 0.21581405401229858, 1.524114966392517, 0.3839344382286072, -0.22387300431728363, 0.34418973326683044, -0.6807446479797363, -0.5712338089942932, 0.738266110420227, 0.3405890166759491, 0.0004492737352848053, 0.005168125033378601, 1.2309365272521973, 1.2280027866363525, -0.4383864998817444, 0.15749689936637878, 0.22917580604553223, -0.11135576665401459, -0.8419535756111145, -0.7102165222167969, 0.11398406326770782, -0.7441355586051941, 1.7042020559310913, 1.2807896137237549, -0.8806345462799072, -0.2472328096628189, 0.12979747354984283, -0.4990723729133606, -0.18466344475746155, -0.9382440447807312, -0.7368553280830383, -0.468222051858902, 0.4400516450405121, -0.3618190586566925, 0.5173205137252808, -0.3201025724411011, 0.17253142595291138, -0.561395525932312, -0.561120867729187, -0.028090575709939003, 0.08333232998847961, -0.032432787120342255, 0.6592358350753784, -0.07771491259336472, -1.6923094987869263, -0.25250402092933655, 0.3384104073047638, 0.40801510214805603, -0.051035404205322266, 0.19047430157661438, -0.10251335054636002, 0.18840017914772034, -0.12188772857189178, 0.18307951092720032, -0.07939623296260834, -0.13656778633594513, -0.06420347094535828, -0.4572482705116272, 0.751613199710846, 0.7964110970497131, -1.4375678300857544, -0.10237818211317062, -0.21322119235992432, 0.6144965291023254, 1.4580918550491333, 0.4532800018787384, 1.2205331325531006, -0.1574595868587494, 0.1318710744380951, -0.41426992416381836, -0.8730002045631409, -1.5337077379226685, -0.25328513979911804, -0.6585462093353271, -0.9961957931518555, 0.11334224790334702, 0.3800256550312042, 0.2329310029745102, 0.09445065259933472, -0.6522655487060547, 0.5999457836151123, 1.2106988430023193, -0.25038468837738037, -0.7876133322715759, -0.2670644223690033, -0.5368695259094238, -0.9697149991989136, 0.6671193838119507, 1.25532066822052, -1.4191025495529175, -0.6917511224746704, 0.28731489181518555, 0.33742162585258484, 1.1755023002624512, 0.3711440861225128, 0.2203143686056137, -1.0666007995605469, -0.9707087278366089, -0.13176363706588745, 0.9916465282440186, -0.47089672088623047, -0.4248453676700592, -0.3691237270832062, 0.5684471130371094, 0.3692469596862793, -0.7938137650489807, -0.31105339527130127, 0.834223747253418, -0.42786967754364014, -0.8009086847305298, 0.2896675169467926, 0.6664333343505859, -0.06061217561364174, -0.6309053897857666, -0.7034061551094055, -0.8021005392074585, -0.35134798288345337, -0.059238821268081665, 0.3877880275249481, 0.22573091089725494, 0.6255958080291748, -0.32770997285842896, -0.29150140285491943, 0.643143355846405, 0.2102525681257248, -0.16475924849510193, -1.1775397062301636, 0.40160512924194336, 0.44887495040893555, 0.8748040199279785, 0.22998543083667755, 0.3831334412097931, 0.5868667960166931, 0.3024653494358063, 0.013214340433478355, 0.6185821294784546, 1.3439040184020996, 1.0275715589523315, 0.37387004494667053, -0.40235358476638794, -0.33980000019073486, -0.4987275004386902, -0.23505094647407532, -0.048826664686203, 0.38468384742736816, -0.4338268041610718, -0.6301988363265991, 0.7159565091133118, 0.2809445261955261, -0.7637959718704224, -0.1553489714860916, 0.22177529335021973, 0.6448743343353271, -0.1816481500864029, -0.20270395278930664, -0.660963237285614, -0.3120761811733246, -0.25419753789901733, -1.2251139879226685, -0.27979186177253723, 0.3992200791835785, -0.07934024930000305, 0.9750484228134155, -0.8373006582260132, 0.5144224166870117, -1.1992701292037964, 0.8619219064712524, 0.5308647155761719, -0.1908080279827118, 0.16122180223464966, 0.0034679267555475235, 0.32791686058044434, 0.4081834554672241, 0.3463399410247803, 1.001857876777649, 0.12229528278112411, 0.2771366238594055, 0.48293814063072205, -0.5336170196533203, -0.15507951378822327, -1.344577670097351, -0.5770959854125977, 0.12171752005815506, -0.6862106919288635, -0.35818105936050415, 0.3081471621990204, -0.2167980968952179, 0.6121984720230103, 0.8398903608322144, 0.1955101490020752, 0.7753261923789978, -0.10122480243444443, -0.41777852177619934, -0.33269309997558594, 0.13795585930347443, -0.22062155604362488, -0.21612298488616943, 0.2788400948047638, 0.780462384223938, -0.08182253688573837, 0.6348367929458618, 0.2780235707759857, 0.6660827398300171, 0.14638078212738037, 0.608199417591095, -0.09329154342412949, 0.43260204792022705, 1.0097886323928833, 1.4630616903305054, -0.004486028105020523, -0.5588210225105286, -0.8541399836540222, 0.5827996730804443, -1.4147005081176758, 0.27169710397720337, 0.2775648236274719, 0.7650831937789917, 1.5924240350723267, -1.4296770095825195, 0.024846158921718597, 0.8151515126228333, 0.5080351233482361, 0.7830361127853394, 0.45957353711128235, -0.6802054643630981, -0.23567259311676025, 0.5539263486862183, 0.4990188777446747, -0.201370969414711, 0.031061163172125816, 0.11705554276704788, -0.3592835068702698, 0.676120400428772, -0.8242924809455872, 0.1832466572523117, -0.39754432439804077, -0.35605213046073914, -0.3017062842845917, -0.869106113910675, 0.3011229634284973, 0.5058380961418152, 0.7926794290542603, 0.8871760368347168, -0.008831813931465149, -1.2816401720046997, -0.04390927031636238, -0.7897673845291138, 0.262423574924469, -0.5269729495048523, -1.1324187517166138, -0.9064223766326904, -0.975821316242218, -0.3381868600845337, 0.07346390187740326, -0.1823660433292389, -0.3484361171722412, -0.7252933979034424, -1.053511619567871, 0.5903090238571167, 1.1240233182907104, 1.0815178155899048, 1.2436503171920776, -0.08844584971666336, 1.2112510204315186, -0.07083891332149506, -0.9564362168312073, -0.21427389979362488, 0.4003485143184662, -0.0661611258983612, 0.058248016983270645, -1.3436353206634521, -0.6340950131416321, 0.4714076817035675, 0.3050670027732849, -0.3202850818634033, 1.1198039054870605, 1.2631739377975464, 1.030511498451233, -0.03188025578856468, -0.40522706508636475, 0.5286447405815125, -0.2601882815361023, 0.4125155508518219, 0.7643907070159912, -0.09843427687883377, -0.1317296326160431, -0.6893662810325623, -1.2082099914550781, 1.0282814502716064, -0.38580945134162903, 0.08351331949234009, 0.9014619588851929, -0.18340040743350983, 0.752819836139679, 0.18440182507038116, -0.572883129119873, 0.4942838251590729, 0.21766670048236847, -0.855937659740448, -0.8478487730026245, -0.259954035282135, 0.3068452775478363, -0.02540876530110836, -0.08002474159002304, -0.12645210325717926, 0.09135639667510986, 0.33650660514831543, -0.1317652016878128, -0.16257542371749878, 0.3609243929386139, 0.5876141786575317, 0.3676932454109192, -0.8410636186599731, -0.3502233326435089, -0.7978652715682983, -0.49398908019065857, -0.0011064107529819012, 0.5370075702667236, 0.43492192029953003, -0.6158583760261536, -0.030067339539527893, -0.608780026435852, -0.5227062106132507, -0.20613296329975128, -0.11372826993465424, 0.725375771522522, 0.5665811896324158, 0.21150177717208862, -0.6520248651504517, -0.667655885219574, -0.1759267896413803, 0.00135841965675354, 0.13258874416351318, 0.596627414226532, -0.9785099029541016, -0.19970624148845673, 0.26574668288230896, -0.349173903465271, 0.18168634176254272, -0.11250142008066177, 0.4113949239253998, -0.7173133492469788, -0.9050090312957764, -0.7571355104446411, -0.05439654737710953, 0.6891889572143555, -0.5716102719306946, 0.7194176316261292, 0.5658722519874573, -1.7777851819992065, 0.40875443816185, -0.4140724241733551, -1.8564372062683105, 0.20718428492546082, -1.2322415113449097, 0.8898681998252869, 0.014213060960173607, -0.14009533822536469, -0.05138031020760536, 1.0494617223739624, -1.4758667945861816, -0.9621855020523071, -0.9361824989318848, -0.418047159910202, 1.1094287633895874, 0.850042998790741, -0.3838527798652649, 1.376530408859253, 0.39087605476379395, -0.12416452914476395, -0.7102813720703125, 0.3994019627571106, -0.3975943624973297, 0.53331458568573, 0.3883848488330841, 0.1137750893831253, 0.3804532289505005, 0.7829322814941406, 0.17566461861133575, 1.0241636037826538, 0.040135834366083145, 1.437720775604248, -1.0993973016738892, -0.49947401881217957, 0.3249814808368683, 0.8260900378227234, -1.3328232765197754, -1.2086108922958374, -0.4666571319103241, -0.681257963180542, -0.6169041991233826, -0.09526293724775314, 0.5952696800231934, -0.18727031350135803, -0.33590078353881836, -0.32517746090888977, 0.7967218160629272, -0.9823150038719177, 0.16991585493087769, 0.5272596478462219, -0.3392471373081207, -0.5543686151504517, 0.16436506807804108, -0.2265574038028717, -1.5293238162994385, 0.286716490983963, -0.3584386110305786, 0.15837813913822174, -0.7491689324378967, 0.5346406698226929, 0.39795994758605957, 0.3394485116004944, -0.047064971178770065, 1.3778786659240723, 0.5624397993087769, -0.3553043305873871, -0.3246922194957733, -0.03311822563409805, -0.39619356393814087, -0.361591637134552, -0.8569578528404236, -0.4018113315105438, -0.8431091904640198, 1.2672182321548462, 0.07544556260108948, 0.08424710482358932, -0.5047550797462463, 0.42975592613220215, -0.6449558138847351, 0.18752285838127136, 0.4737573564052582, -0.8028111457824707, -0.1956975758075714, 1.209696650505066, 0.5173267722129822, -0.7870743274688721, 0.24643678963184357, 0.29795947670936584, 0.49633538722991943, -0.5833953022956848, 0.15127168595790863, 1.0107226371765137, -0.5652956366539001, -0.12134787440299988, -0.17238961160182953, -0.4170668125152588, -0.10677313804626465, -0.34982946515083313, -1.5665847063064575, -0.24645264446735382, -0.5636792182922363, -0.5325038433074951, 1.1282145977020264, -1.253427505493164, -0.37121883034706116, 0.3741675913333893, -0.04232078418135643, 0.26854291558265686, 0.1369909644126892, -0.10202227532863617, -0.3672889471054077, 0.340505450963974, 1.0550708770751953, -0.29288455843925476, 1.0701528787612915, 0.2617706060409546, 0.26335248351097107, -0.7948395609855652, -0.1477934718132019, -0.17801421880722046, 0.028010301291942596, -0.1461229771375656, 0.1400335282087326, 0.6812500357627869, 0.16310171782970428, -0.6949052810668945, -0.016715796664357185, -0.22329162061214447, 0.41105377674102783, -0.48476114869117737, 0.022644754499197006, 0.5008945465087891, 0.4706219732761383, 0.4112304449081421, -0.25457388162612915, -0.8354753255844116, -0.6752229332923889, -0.5314415693283081, -0.7362421154975891, 0.06391126662492752, -0.5500633120536804, 1.151565670967102, 0.2927199900150299, -0.413712739944458, -0.49549710750579834, -0.5633295178413391, 0.6058862805366516, -0.005080765578895807, 0.04150596633553505, -0.24057906866073608, 0.3801710307598114, 0.15292701125144958, -0.7512966990470886, 0.5423058271408081, 0.6582276821136475, -0.39334720373153687, 0.18535862863063812, -1.2157025337219238, -0.8664947748184204, -0.4907052218914032, 0.6293572783470154, 2.192929983139038, 0.7340728044509888, 0.021966028958559036, -0.19479504227638245, -0.8613547682762146, -0.4868135452270508, 0.17566965520381927, 0.7177695035934448, -0.17515714466571808, 1.5901761054992676, 2.3413054943084717, 0.40558990836143494, 0.40250280499458313, -0.04108231142163277, 0.5087684988975525, -0.7433497905731201, -0.34147557616233826, -0.9038982391357422, -0.10477621853351593, 0.42237383127212524], [-0.17672094702720642, 1.621644377708435, -2.274167060852051, 0.4035872519016266, 0.384313702583313, 0.4594663381576538, 1.4124928712844849, -0.4941955804824829, -0.4209184944629669, -0.30006319284439087, -0.7752721309661865, 0.04752945154905319, 0.7782857418060303, 0.19357255101203918, 0.7556052207946777, 1.0532811880111694, 0.9120571613311768, -0.5455566048622131, 0.7457415461540222, 1.0691030025482178, 0.02881619520485401, -0.2779920697212219, 0.2840351164340973, -0.14054080843925476, -0.6868820786476135, 0.10131917148828506, -1.4494373798370361, -1.0033546686172485, -0.635256826877594, -0.8047274947166443, 0.3527170419692993, -0.1812538504600525, 0.2250131517648697, 0.04734416678547859, -1.1464118957519531, -0.7365709543228149, 1.8949440717697144, 0.9517704248428345, 0.6520074605941772, 0.6554428339004517, 1.0794038772583008, -0.9507446885108948, 0.45174655318260193, -1.245727777481079, 0.7819578647613525, -0.19849224388599396, 0.8180361390113831, -0.6016074419021606, 0.4932107627391815, -0.725473165512085, 0.3994295597076416, -0.2100500613451004, 0.15582218766212463, 0.8113975524902344, 0.6298880577087402, 0.03170875087380409, 0.40494152903556824, 0.3293026089668274, 0.4678110182285309, -0.6314868927001953, 1.2135289907455444, -0.13608084619045258, -0.1261187046766281, 1.5204734802246094, 0.2078344076871872, -0.7189492583274841, 0.32267627120018005, 0.5933084487915039, 0.2993795871734619, -0.4071042835712433, 0.7255382537841797, 0.4722817838191986, -0.4519162178039551, 0.9087212085723877, -1.5260109901428223, 0.7315530180931091, 0.9958367347717285, 0.6104435324668884, 0.14101985096931458, 0.6987362504005432, 0.07204294949769974, -0.23342975974082947, 0.7984232902526855, 0.09455779194831848, -0.07481686025857925, 0.2679775655269623, 0.8630573749542236, -0.2942022681236267, -0.06266313791275024, 1.410448670387268, 0.5876668095588684, 0.6340188384056091, 0.5578529238700867, -0.5865656137466431, -0.44935712218284607, -0.38140642642974854, 0.5229847431182861, 0.42069122195243835, -1.3778409957885742, -0.813398540019989, -0.9012076258659363, -0.7917594909667969, -0.04102421551942825, -0.1412895768880844, 0.5602254867553711, 1.2617332935333252, 0.45408278703689575, 0.06672004610300064, -0.5973274111747742, 0.21495206654071808, -0.6430007815361023, 0.07338336110115051, -1.0570656061172485, -0.7134658098220825, -1.0913310050964355, 1.0581395626068115, 0.7509440183639526, -0.259839802980423, 0.3944483995437622, 0.8185912370681763, -0.448466956615448, -0.649453341960907, 0.225660040974617, 0.8203412890434265, 0.7478656768798828, 0.49789103865623474, -0.6451820731163025, -0.7548779249191284, 0.15579931437969208, 0.4905361831188202, 0.497760146856308, -0.21501874923706055, 0.1404886096715927, 1.0141605138778687, -1.076125144958496, 1.4987527132034302, -0.9201064109802246, -0.9069100618362427, -0.5336041450500488, 0.29911887645721436, 1.0022563934326172, 0.024627361446619034, -0.035226114094257355, -0.48040324449539185, 0.010248793289065361, -0.4656359851360321, -0.07753001153469086, -0.27715134620666504, -0.9584395885467529, 0.24474453926086426, -0.9040161967277527, 0.9041545391082764, 0.10487519204616547, 0.7347759008407593, 0.36988893151283264, -0.0722104087471962, 0.2115197777748108, 0.4713189899921417, 0.44279736280441284, -0.06927560269832611, 0.9622827768325806, -0.0030493754893541336, -1.164194107055664, 1.0652683973312378, 0.4324782192707062, -0.3484989106655121, -0.15353259444236755, 0.9549651145935059, 0.07385013997554779, 0.5795741677284241, -0.1706533133983612, -0.1339409053325653, -0.8706281185150146, 0.5690674781799316, 0.3351391851902008, -0.06584782153367996, 1.8708980083465576, -0.5023415684700012, -1.745489239692688, -1.2192944288253784, 0.42906418442726135, -0.7910353541374207, -0.22541138529777527, 0.16147840023040771, 0.03593318164348602, -0.8949916958808899, 0.7601486444473267, -0.5107277035713196, -0.5069928765296936, -1.080614686012268, -0.21723297238349915, -0.3500916659832001, -0.7601171731948853, 0.10623271018266678, -0.21275442838668823, -0.7723716497421265, 0.4460251033306122, -1.570190668106079, -0.41208693385124207, -0.17766010761260986, -0.23852145671844482, -0.5799693465232849, -0.8290969729423523, 0.8330252766609192, -0.011396314948797226, 1.115666151046753, -0.9006977081298828, 1.118242859840393, -0.6287444233894348, 0.03168186545372009, 1.1937310695648193, 0.2561441957950592, -0.9192126393318176, 1.1953223943710327, 0.13194260001182556, -1.7445112466812134, 0.8767375349998474, 0.7096145749092102, -0.14244908094406128, 0.3661361634731293, 0.15978915989398956, 0.12623360753059387, 0.2714722752571106, -0.05696553364396095, 0.014565303921699524, -0.48992353677749634, -0.6549461483955383, -0.7589261531829834, -0.6192569732666016, 0.4925718605518341, -0.7835414409637451, -1.4424089193344116, 1.3022106885910034, 0.6132326126098633, -0.9971462488174438, 0.003561088815331459, 0.09761645644903183, 0.20759153366088867, 0.3705812692642212, 1.5896081924438477, 0.2919814884662628, 0.24466830492019653, -0.4638054370880127, -0.6112381815910339, -0.2687491476535797, 0.23822227120399475, 1.265608787536621, 0.4333534240722656, 0.27850988507270813, 1.2821680307388306, 1.062999963760376, 0.1538589894771576, 0.5637555122375488, -0.10873405635356903, -0.43637919425964355, -0.6752830147743225, -1.112574577331543, 0.530585527420044, -0.535300612449646, 1.3609321117401123, 0.7543901801109314, -0.5647104382514954, 0.2071121335029602, 0.12215876579284668, -0.09686890989542007, -0.22251062095165253, -0.7451666593551636, -0.13548371195793152, 0.06599050760269165, -0.2967747449874878, -0.4123019874095917, 0.7306304574012756, -0.5947848558425903, 0.2592189908027649, -0.6760563254356384, -0.5667694211006165, -1.3332529067993164, 0.43069350719451904, -0.17397016286849976, 1.022047519683838, 0.05600109323859215, -1.3636418581008911, -0.7355663776397705, -0.05567963793873787, 0.668621301651001, 0.23113077878952026, 0.3388499617576599, 0.13149189949035645, 0.5873106122016907, -0.5563694834709167, 0.5114798545837402, -0.21615596115589142, -0.23426276445388794, -0.20943768322467804, 0.04221830144524574, 0.4361480176448822, 0.9592086672782898, -0.5326777696609497, -0.8887330293655396, -0.08838757872581482, 0.32800209522247314, 1.3151488304138184, 0.5986949801445007, 0.44583994150161743, 0.3506544828414917, -0.8531807661056519, -0.7096635699272156, -0.439167320728302, -1.1625043153762817, -0.7016194462776184, -1.0009536743164062, -1.0856831073760986, -0.10598666220903397, 0.05614222586154938, -0.02632240392267704, 0.6418297290802002, -0.29575926065444946, 0.6719126105308533, 1.9306538105010986, -0.12414267659187317, -0.4533098340034485, 0.04339456930756569, -0.3611205816268921, -0.9146994948387146, 0.1548391729593277, 1.2869495153427124, -1.1850471496582031, -0.9243360757827759, -0.059701696038246155, 0.6508095860481262, 0.24179749190807343, -0.2238229215145111, -0.20008130371570587, -1.4263900518417358, -0.3742203712463379, -0.21475890278816223, 1.615312099456787, -0.45433640480041504, -0.3824353516101837, -0.20793265104293823, 0.6053348183631897, 1.0818042755126953, -0.4613765776157379, -0.6795815825462341, 0.8983929753303528, -0.5074393153190613, -0.6674280762672424, 0.25895383954048157, 0.43235570192337036, 0.7507489323616028, -0.7326796650886536, -0.5059598684310913, -0.39870622754096985, 0.18819914758205414, -0.0422525629401207, 0.5057674646377563, -0.21507062017917633, 1.295356273651123, -0.3898327052593231, -0.17342303693294525, 0.6133860945701599, -0.5604179501533508, 0.21746811270713806, -1.0939052104949951, 0.3259452283382416, 0.33903366327285767, 1.1190154552459717, 0.07106717675924301, 0.3625059425830841, 0.23847438395023346, 0.6711313128471375, -0.18836797773838043, 0.36385205388069153, 1.2080860137939453, 0.43435442447662354, 0.07555446028709412, -0.8043442964553833, -0.32252129912376404, 0.048852983862161636, -0.3669002652168274, 0.11053802073001862, 0.9038928747177124, -1.149665355682373, -1.0418907403945923, 0.760492205619812, 0.5037440061569214, -0.3152388632297516, -0.377229243516922, -0.414554625749588, 0.7111827731132507, -0.28892549872398376, 0.19771568477153778, -0.970137357711792, -0.04645948112010956, 0.04300058260560036, -1.3380776643753052, 0.12231703847646713, 0.6618890166282654, 0.45942530035972595, 0.25327593088150024, -1.0110735893249512, 0.4014015197753906, -0.7621094584465027, 0.4506908059120178, 0.7297048568725586, 0.5493136048316956, 0.18752454221248627, 0.0738459974527359, -0.254395455121994, -0.02400893345475197, 0.0610659122467041, 1.813439965248108, -0.49400466680526733, 0.3960399031639099, 0.38737285137176514, -0.37298867106437683, -0.6456005573272705, -0.6203044652938843, -0.3779016435146332, -0.05838238447904587, -0.05698086693882942, 0.10105618089437485, 0.4577978551387787, -0.8269091844558716, 1.660125732421875, 0.4971850514411926, 0.6336691379547119, 0.8483002185821533, -0.07691136747598648, -0.8489494919776917, -0.3246220648288727, 0.4684239327907562, 0.036262672394514084, -0.7522971630096436, -0.5840819478034973, 0.08409802615642548, -0.020554518327116966, 0.2873615324497223, 0.3511892557144165, 1.3022618293762207, 0.5006539821624756, 0.7309169769287109, -0.052676159888505936, 0.5853807330131531, 0.9384487867355347, 0.6134957075119019, 0.2801113426685333, -0.25894567370414734, -0.9930904507637024, 0.863281786441803, -0.811209499835968, -0.46123746037483215, 0.2808692157268524, -0.2279597520828247, 1.4238858222961426, -1.2751785516738892, -0.6291172504425049, 0.6251279711723328, 0.4948138892650604, 0.3362131714820862, 0.7858352065086365, -0.5932830572128296, -0.5526740550994873, 0.8109477162361145, 0.2870769202709198, -0.39765334129333496, -0.053268127143383026, 0.33694908022880554, -0.5447695851325989, 0.3768480122089386, -0.6943851709365845, 0.2891412079334259, -0.8161470890045166, 0.6001183986663818, -0.5557524561882019, -0.6833103895187378, -0.3063233494758606, 0.39231258630752563, 0.654050886631012, 1.2657290697097778, -0.24361105263233185, -1.2479197978973389, 0.34734734892845154, -0.7009727358818054, 0.29866963624954224, -1.065300464630127, -0.2938941419124603, -0.8728664517402649, -0.09849037975072861, 0.10683559626340866, 0.7607333660125732, -0.29042765498161316, -0.4300994575023651, -0.5604560375213623, -1.5680922269821167, 0.5784745812416077, 0.6087546944618225, 1.5022138357162476, 0.4784398078918457, 0.1765984743833542, 0.7247817516326904, 0.5773820281028748, -0.7570422887802124, -0.2432907521724701, 0.47681763768196106, -0.18023110926151276, 0.295930415391922, -1.4919335842132568, -0.03836807608604431, 0.5759286284446716, 0.18645797669887543, -0.3262290060520172, 0.7410531640052795, 1.0195975303649902, 1.1009430885314941, -0.4120155870914459, -0.24971537292003632, 0.5524557828903198, -0.07171134650707245, 0.1402348130941391, 0.36255353689193726, 0.2765149474143982, -0.8585891723632812, -0.4612407386302948, -0.8981433510780334, 0.6773684024810791, 0.26108822226524353, -0.598041296005249, 0.5827190279960632, 0.1612267643213272, 1.5498688220977783, 0.7372630834579468, -0.03460770845413208, 0.6936190724372864, -0.14372645318508148, -0.36772772669792175, -1.0830944776535034, 0.5902937054634094, -0.14672839641571045, 0.1791212260723114, -0.4269416630268097, 0.3725645840167999, -0.22534531354904175, -0.06028739735484123, -0.23603187501430511, 0.3950091302394867, 0.3910825848579407, 0.9062830805778503, 0.6192708611488342, -0.5611864328384399, 0.1360102742910385, -0.9019784927368164, -0.6523467898368835, -0.31108152866363525, 0.012072283774614334, -0.07599187642335892, -0.33983808755874634, 0.3206765949726105, -0.2982216477394104, -0.9587849974632263, 0.19878335297107697, -0.7118752002716064, 0.7035545110702515, 0.2456919252872467, 0.27063533663749695, -0.016169890761375427, -0.2248014658689499, 0.10115034133195877, -0.2126585990190506, 0.6063427329063416, 0.11813722550868988, -1.218124270439148, -0.14309270679950714, 0.3369000256061554, -0.8286210894584656, -0.21056243777275085, -0.2000841349363327, 0.09848268330097198, -0.8457618355751038, -0.9775633811950684, -0.5999213457107544, 0.39645177125930786, 0.6285902857780457, -0.6467127203941345, 0.4145409166812897, 0.9095190167427063, -1.3968205451965332, 0.2969128489494324, -0.16292904317378998, -0.9054487943649292, -0.18177221715450287, -0.7828019857406616, 1.1237536668777466, 0.07354189455509186, 0.11642570793628693, 0.42301324009895325, 0.9758509397506714, -1.7529877424240112, -1.3993269205093384, -0.9197384715080261, 0.13245373964309692, 1.0678025484085083, 0.6514393091201782, -0.4037073254585266, 0.864725649356842, 1.1428323984146118, -0.6345378160476685, -0.28981420397758484, -0.18779145181179047, -1.0034691095352173, 0.5082188844680786, 0.6355360150337219, 0.1632813811302185, 0.4454038441181183, 1.1446596384048462, -0.0784306526184082, 0.7492548823356628, 0.19844353199005127, 1.2192716598510742, -1.2009333372116089, -0.4096483290195465, 0.2747323215007782, 0.6617680191993713, -1.2617946863174438, -1.0070991516113281, -0.6135569214820862, -0.6263745427131653, -0.5498185753822327, 0.2798953354358673, 0.508453905582428, -0.8183160424232483, -0.756921112537384, -1.1447710990905762, 0.36157557368278503, -0.5895327925682068, -0.2303004413843155, -0.24611704051494598, -0.4852203130722046, -0.5534419417381287, 0.5230114459991455, 0.05006246268749237, -2.046889066696167, 0.11317754536867142, -0.11490461230278015, 0.3078150749206543, -0.9126355051994324, 0.47834235429763794, 0.020322300493717194, 0.3208328187465668, -0.4337858557701111, 1.1763752698898315, 0.8633029460906982, -0.30897384881973267, -0.4137845039367676, 0.09050966799259186, 0.415031760931015, 0.18720079958438873, -1.1262657642364502, -0.6818907260894775, -1.1898150444030762, 0.9454784393310547, 0.5725075006484985, -0.04057908430695534, 0.31797724962234497, 0.2903331518173218, -0.2786630392074585, 0.7966693043708801, 0.8681538105010986, -1.2792531251907349, -0.4065851867198944, 0.574900209903717, 0.39759352803230286, -0.6269723176956177, 0.2140411138534546, 0.5357787013053894, 0.6853694915771484, -0.9596107602119446, 0.28282907605171204, 0.5029609799385071, -0.6981082558631897, -0.048038091510534286, 0.33587977290153503, -0.2798900306224823, 0.11938376724720001, -0.38726314902305603, -1.3705730438232422, -0.17890416085720062, -0.18538247048854828, -0.4953806698322296, 0.5297460556030273, -1.5113966464996338, -0.7555738091468811, 0.7259737253189087, -0.2754901647567749, -0.3599949777126312, -0.3780193626880646, 0.4376867115497589, -0.30926257371902466, -0.17068341374397278, 1.1211299896240234, -0.15019868314266205, 1.0933077335357666, 0.12372332066297531, 0.16023454070091248, -1.4398189783096313, -0.8530095815658569, 0.34197723865509033, 0.8183348178863525, -0.2898850739002228, 0.41416051983833313, -0.06291097402572632, -0.5211632251739502, -1.015488624572754, -0.2013387531042099, 0.0028494475409388542, 0.09674163162708282, 0.05892609432339668, -0.4833894968032837, -0.42172348499298096, 0.3724115788936615, 1.025126338005066, -0.7568652629852295, -1.0816134214401245, -0.9806352257728577, -0.030974017456173897, -0.43847113847732544, 0.43270066380500793, -0.6580321192741394, 1.1325007677078247, 0.43991512060165405, -0.03159681707620621, -0.44413477182388306, -0.6769497990608215, 1.1363445520401, -0.46175578236579895, 0.1922561079263687, 0.08510585129261017, -0.1566716432571411, 0.13914740085601807, -0.8373937010765076, -0.16212362051010132, 0.36205536127090454, 0.1247391626238823, -0.11481288075447083, -0.9666321873664856, -0.9213067293167114, -0.3844809830188751, 0.43658894300460815, 1.12208890914917, 0.3153340518474579, -0.023747775703668594, -0.007308878004550934, -0.9531449675559998, 0.3328474164009094, -0.39151695370674133, -0.11357565224170685, 0.0841764286160469, 1.7333825826644897, 2.1333484649658203, 0.831139862537384, 0.4526994526386261, -0.629386842250824, 0.3331376314163208, -0.6586752533912659, -0.175201416015625, -0.35302209854125977, -0.568543016910553, -0.2309112399816513], [-0.6581152677536011, 1.6396565437316895, -2.0918335914611816, 0.21144556999206543, 1.988892674446106, 0.8692334294319153, 1.7479602098464966, 0.007288071326911449, 0.7443130612373352, -0.6643525958061218, -0.8148419857025146, 0.0009867050684988499, 0.23365418612957, 0.6420363783836365, 0.17292553186416626, 0.2910539209842682, 0.44178301095962524, -0.11875453591346741, 0.6033714413642883, 1.0447782278060913, 0.5562571883201599, -0.09175687283277512, -0.002002950757741928, 0.8667835593223572, -0.043135955929756165, 0.27421313524246216, -1.3533529043197632, -0.4085557162761688, -1.148576021194458, -1.077439546585083, 1.2231637239456177, -0.8302479386329651, 0.3157443106174469, -0.18784290552139282, -1.9789751768112183, -0.4917010962963104, 0.9419385194778442, 0.7265887260437012, 0.35737115144729614, 0.3456543982028961, 1.526041865348816, -0.05362454429268837, -0.2858382761478424, -1.7358548641204834, -0.8027259111404419, 0.4575214684009552, 1.07957923412323, -0.970197856426239, 0.01466461829841137, -0.053149253129959106, 0.3152987062931061, -0.6516901850700378, 1.1984084844589233, 1.1165733337402344, 0.908905029296875, -0.31695011258125305, 0.6134877800941467, 0.04814188554883003, 0.18932677805423737, -0.6376225352287292, 1.31403648853302, 0.2269701212644577, -1.3410485982894897, 0.2230507880449295, -0.3338388204574585, 0.39297008514404297, -0.031457725912332535, 0.5866495370864868, 0.37174224853515625, 0.09879516810178757, 0.982003927230835, 0.610760509967804, -0.8074008226394653, -0.017712360247969627, -1.0464398860931396, -0.26738014817237854, 0.41705241799354553, 0.5839055776596069, 0.7924792766571045, 1.2276469469070435, -0.35434356331825256, 0.24041114747524261, -0.046741221100091934, 0.15855644643306732, 0.2120853215456009, 0.5975332856178284, 0.3614216446876526, -0.6894967555999756, -0.7201101183891296, 1.727138638496399, 0.26971662044525146, -0.01373034343123436, 0.6476876139640808, -0.5264800190925598, -0.16968683898448944, -0.7948935627937317, 0.03327731788158417, -0.25332218408584595, -0.46048256754875183, -0.9129361510276794, -0.5677998661994934, -0.9182329773902893, 0.0036889472976326942, -0.29568052291870117, 0.31468307971954346, 1.221415638923645, 0.08505845814943314, -0.4512940049171448, -0.1066618338227272, -0.4705670177936554, -0.0197521410882473, 0.8978608846664429, -0.8004733324050903, -0.544815719127655, -0.24225062131881714, 0.872047483921051, 0.6640069484710693, -0.11565695703029633, 0.7196035981178284, 0.012874136678874493, -0.2921285927295685, 0.18882186710834503, -0.8144233822822571, 0.9922434687614441, 0.5660260915756226, 0.6803079843521118, -0.39412474632263184, -0.5032685399055481, 0.915925920009613, -0.18606993556022644, 0.7875991463661194, 0.036083489656448364, 0.042570073157548904, 0.9560336470603943, -0.4758816659450531, 1.514431357383728, -0.20694942772388458, -0.6872221827507019, -0.12378933280706406, -0.07290240377187729, -0.027457384392619133, 0.2292357087135315, -0.23877397179603577, -1.078084111213684, 0.48669853806495667, -0.6522760987281799, 0.5626681447029114, 0.48015767335891724, -0.34652575850486755, -0.015156403183937073, -1.134990930557251, 0.5096065998077393, 0.07355474680662155, 0.9275142550468445, 0.4105859100818634, 0.18579019606113434, 1.19817316532135, 0.3920058012008667, 0.6262179017066956, 0.48459577560424805, 0.9465669989585876, 0.10777980089187622, -1.4264730215072632, 1.2354944944381714, -0.1781725138425827, -0.14001084864139557, 0.7918780446052551, 0.7553600072860718, -0.10740560293197632, 0.8709064722061157, -0.4516354501247406, -0.7891861200332642, -0.6671082973480225, 0.7474825382232666, 0.08423222601413727, -0.0808676928281784, 1.279272437095642, -0.5557361841201782, -1.5509603023529053, -0.7259911894798279, 1.097446322441101, -0.4807933270931244, 0.7506093978881836, -0.12738710641860962, 0.9357742667198181, -0.6485020518302917, -0.20274317264556885, -0.2957143783569336, -0.10169155150651932, -0.7800664305686951, -0.8847349882125854, -0.5479387640953064, -1.1233819723129272, -0.28002315759658813, -0.12967030704021454, -0.6134681105613708, 0.384316086769104, -0.9378303289413452, -0.6014409065246582, 0.5301374793052673, 0.2474128156900406, -0.34644097089767456, -0.8024130463600159, -0.39129534363746643, -0.5358843207359314, 0.3044261932373047, -1.0719411373138428, 1.0461825132369995, -1.00257408618927, 0.4438139498233795, 1.0608363151550293, 0.13487029075622559, -1.1454194784164429, 1.1915688514709473, 0.3782971203327179, -1.6498253345489502, 0.7013893723487854, 0.25823473930358887, 0.015639981254935265, -0.23266510665416718, 0.1887558400630951, 0.14287212491035461, 0.5157338380813599, 0.22496266663074493, 0.505422830581665, -0.04491134732961655, -1.2849950790405273, -1.1077110767364502, -0.6498677730560303, 0.41077202558517456, 0.09820220619440079, -1.334010362625122, 0.8311668038368225, 0.6471247673034668, -0.8897184133529663, 0.12615251541137695, -0.21325771510601044, -0.13713116943836212, 0.7203191518783569, 1.3846596479415894, 0.07539670914411545, 0.9236953854560852, 0.42353588342666626, -0.3835046589374542, -0.34953996539115906, 0.11125072091817856, 1.476477861404419, -0.26900938153266907, 0.15365146100521088, 1.0636173486709595, 0.57392418384552, 0.14467507600784302, -0.2551376521587372, -0.4032003879547119, -0.3683132827281952, -0.990772545337677, -0.6292861104011536, -0.3688407838344574, -0.25829049944877625, 1.898073434829712, 0.7074134349822998, -0.5515446662902832, -0.8386452794075012, 0.20120809972286224, -0.330753356218338, -0.3209131062030792, -0.5170084238052368, -0.6074069142341614, 0.04345569387078285, -0.002529754303395748, 0.01077295746654272, 0.2421169877052307, 0.18091124296188354, 0.747439444065094, -0.3129713833332062, -0.7956451177597046, -0.801705539226532, -0.030621889978647232, 0.1532469093799591, 0.7134752869606018, -0.15084101259708405, -0.9073165655136108, 0.05995254963636398, -0.040614936500787735, 1.4766643047332764, -0.5490111112594604, 0.21282552182674408, 0.04521356523036957, 0.9452296495437622, 0.09237750619649887, 0.4234088063240051, 0.43172532320022583, -0.09129589796066284, 0.2833346724510193, 0.19148853421211243, 0.634295642375946, 0.6983973979949951, -1.187738299369812, -1.231213092803955, -0.11421467363834381, 0.2751219868659973, 1.6655490398406982, 0.6458724737167358, 0.8969991207122803, -0.21200738847255707, -0.16705168783664703, -0.7400158643722534, -0.3845461308956146, -0.4828025698661804, -0.5653649568557739, -1.0880398750305176, -0.7179571390151978, -0.0609130784869194, -0.3315350413322449, 0.5396719574928284, 0.11340634524822235, -0.7334431409835815, 1.0302125215530396, 0.6367818713188171, -0.4976157546043396, -0.964978039264679, -0.30024921894073486, -0.30188775062561035, -0.9579609036445618, 0.5057946443557739, 1.3898637294769287, -1.4518625736236572, -1.2591711282730103, -0.2072848081588745, -0.037904705852270126, 1.1325910091400146, -0.06904638558626175, 0.3085000216960907, -1.1013015508651733, -0.5281079411506653, -0.5554431676864624, 1.1294457912445068, -0.0839659720659256, -0.8122780919075012, -1.3915657997131348, 0.18951639533042908, 0.7086938619613647, -0.6247121095657349, 0.2966194450855255, 0.8214610815048218, -0.5829710960388184, -0.41960862278938293, -0.6356569528579712, 0.13567228615283966, 1.0104910135269165, -0.6808119416236877, -0.40949463844299316, -0.5662455558776855, -0.49295544624328613, -0.5681283473968506, 0.8570418357849121, 0.6466465592384338, 0.7528921961784363, 0.6941189169883728, -0.38182318210601807, 1.626700758934021, -0.6815651655197144, 0.2882443070411682, -1.3664920330047607, 0.39740461111068726, 0.6911579966545105, 1.1379272937774658, -0.28814342617988586, 0.41881823539733887, 0.041022107005119324, -0.3532048165798187, 0.009773443453013897, 0.3824272155761719, 1.0041112899780273, 0.47531431913375854, -0.6530548930168152, 0.28856533765792847, -0.27501481771469116, -0.9197410941123962, -1.1796811819076538, -0.4639698266983032, 0.669352650642395, -0.6607048511505127, -0.4538109302520752, 1.6408473253250122, 0.622808039188385, 0.009979795664548874, -0.3493759036064148, -0.3318824768066406, 1.345896601676941, 0.20054635405540466, -0.5010256171226501, -0.16708339750766754, 0.380031943321228, 0.05158940330147743, -0.7321094274520874, -0.5368868112564087, -0.19873039424419403, 0.6729457974433899, 0.8990111947059631, -1.0907222032546997, -0.17310269176959991, -0.25513318181037903, 0.6299825310707092, 0.35570093989372253, 0.02495594508945942, -0.22520489990711212, -0.20054301619529724, 0.07024449110031128, 0.02091214619576931, 0.5397087931632996, 1.0816036462783813, -0.08383605629205704, -0.4250226318836212, 0.09748802334070206, 0.3893337845802307, 0.1302809715270996, -0.06272342056035995, -0.4915623962879181, 0.092011958360672, -0.9751074314117432, -0.2649708390235901, -0.15330065786838531, -0.3852986991405487, 1.212648630142212, 0.10145675390958786, 0.41055747866630554, 1.1496647596359253, 0.5221176147460938, -1.3051589727401733, 0.11340637505054474, 0.004885035566985607, -0.4315088987350464, -0.7101557850837708, 0.21523422002792358, 0.26444101333618164, -0.032384879887104034, 0.15977998077869415, 0.32174357771873474, 0.9128842353820801, -0.38956350088119507, 0.6578835248947144, 0.2694575786590576, 0.5917918682098389, 0.9446987509727478, 0.9907920956611633, 0.6985624432563782, -0.2569906711578369, -1.1338565349578857, 0.6751337051391602, -1.0385656356811523, 0.20308510959148407, 0.8081520795822144, 0.3800327181816101, 0.8402061462402344, -2.5167124271392822, -1.0465526580810547, 0.2023410052061081, 0.12040463835000992, 0.39183178544044495, 0.8657310009002686, -0.39043110609054565, -0.5415728092193604, 0.19034601747989655, -0.07418972998857498, -0.43121641874313354, 0.45442333817481995, -0.15435287356376648, -0.17240199446678162, 0.28777337074279785, -0.6267033219337463, 0.2057761251926422, -0.6123049855232239, -0.5363758206367493, 0.13426774740219116, -0.22765617072582245, 0.023654330521821976, 0.7745926380157471, 0.7321226596832275, 0.6808139681816101, -1.2068984508514404, -1.1506491899490356, 0.6981436610221863, -0.2230987399816513, -0.1076788380742073, 0.007249295711517334, -0.4409750699996948, -0.6454651355743408, -0.5244570970535278, -0.7496327757835388, 0.9617720246315002, -0.26270872354507446, -0.9568430185317993, -0.6293336749076843, -1.403826117515564, -0.7274718284606934, 0.3307349383831024, 1.1179611682891846, 1.4143266677856445, 0.5182601809501648, 0.23173105716705322, -0.12761026620864868, -0.932005763053894, 0.21672481298446655, 0.42410770058631897, 0.10393192619085312, -0.3816944658756256, -0.9535780549049377, -0.6067425012588501, 0.7222273945808411, 1.112208604812622, -0.23356148600578308, 0.6685919761657715, 1.3128118515014648, 0.9919762015342712, -0.3573344647884369, -1.4228472709655762, 0.7491172552108765, -0.11735163629055023, 0.40030452609062195, 0.7705652117729187, -0.3132505714893341, -0.5013763904571533, 0.21995648741722107, -1.631919503211975, 0.706847608089447, -0.5675978064537048, -1.146405577659607, 0.7148941159248352, 0.28319644927978516, 0.7690178155899048, 0.8350341320037842, -0.8492114543914795, 0.3049406111240387, 0.5664389729499817, -0.5158408284187317, -0.6322757005691528, 0.4975210428237915, 0.2641817033290863, 0.4927695393562317, -0.2157207727432251, 0.6818507313728333, 0.13822327554225922, -1.2769142389297485, 0.04507329314947128, 0.5643845200538635, 0.1408894956111908, 0.6996368765830994, 0.6571593880653381, -1.1718829870224, 0.39087724685668945, -0.60269695520401, -0.42654964327812195, -0.6420485973358154, 0.16514547169208527, 0.9191845655441284, -0.15798072516918182, 0.12386025488376617, -0.4065704047679901, -0.7121105790138245, -0.7174025774002075, -0.8157095909118652, 0.43816670775413513, 0.5793955326080322, -0.6873641610145569, 0.02234232984483242, -0.8435823321342468, -0.4181007444858551, -0.634009599685669, -0.3518305718898773, 0.3161231279373169, -1.3110215663909912, -0.42548874020576477, 0.1963663399219513, -0.545257031917572, -0.6561908721923828, -0.2969011068344116, 0.43229421973228455, -0.4727764129638672, -1.1313577890396118, -1.021220088005066, 0.6602450609207153, 0.7088720202445984, -0.8553982973098755, 0.5135540962219238, 0.090912826359272, -1.7144170999526978, 0.11504613608121872, -0.5746828317642212, -1.0062119960784912, -0.03330615535378456, -1.024814486503601, 0.9582509398460388, -0.21479836106300354, -0.004597063641995192, -0.07655398547649384, 1.455157995223999, -1.4572057723999023, -0.9930209517478943, -0.944467306137085, -0.019029885530471802, 1.1680593490600586, 0.5338999032974243, -0.6168878078460693, 1.7325602769851685, 0.3274848759174347, -1.0771112442016602, -0.5103893876075745, 0.5814847946166992, -1.0276274681091309, 0.38284817337989807, 0.4684281051158905, 0.6862058639526367, 0.5805323719978333, 1.606066107749939, 0.10107779502868652, 0.5140860080718994, 0.15267519652843475, 0.30327144265174866, -0.5604091286659241, -0.8523921966552734, -0.4066084027290344, 0.6738668084144592, -1.4037044048309326, -0.867386519908905, -0.2009590119123459, -0.1287134289741516, -1.1773762702941895, 0.5444958806037903, 0.43523845076560974, -0.9748692512512207, 0.4151756167411804, 0.5346125364303589, 0.3019174039363861, -0.15331634879112244, 1.1079885959625244, 0.7701334953308105, -1.2048759460449219, -0.16088242828845978, -0.14449657499790192, -0.2821897268295288, -0.9922645092010498, 0.170105442404747, -0.11981365829706192, 0.24211017787456512, -0.025116760283708572, 0.16097526252269745, 0.6778253316879272, -0.5662406086921692, -0.5006389021873474, 1.4298062324523926, 0.8695401549339294, -0.5552879571914673, -0.35635238885879517, 0.8462905287742615, -0.10818566381931305, 0.8644427061080933, 0.0522179938852787, 0.5161607265472412, -0.3394297659397125, 0.7696083188056946, 0.3404395878314972, 0.07135429978370667, -0.34423479437828064, 0.16552422940731049, -0.6872947216033936, 0.5744602084159851, 0.2137278914451599, -0.8396568894386292, -0.6430959701538086, 1.2607755661010742, 0.13866645097732544, 0.00965836551040411, 0.40581220388412476, 0.37013810873031616, 0.5122069716453552, -0.08073817193508148, 0.4329625070095062, 0.6509307026863098, -1.1614587306976318, 0.07907421886920929, -0.23275204002857208, 0.11419246345758438, 0.28231361508369446, 0.02779802680015564, -1.9185917377471924, 0.7027381658554077, -0.8600049614906311, -0.55577152967453, 0.7679347991943359, -0.7801126837730408, -0.6932699084281921, -0.03110515885055065, 0.14121192693710327, 0.25118324160575867, 0.03290870785713196, -0.5970875024795532, -0.19157004356384277, 0.7183504104614258, 0.13556469976902008, -0.8479203581809998, 1.3544224500656128, -0.35772058367729187, -0.05882987752556801, -0.5068572163581848, -0.24334834516048431, -0.16549701988697052, 0.8450995683670044, -0.127470925450325, -0.38415008783340454, 0.9920724630355835, -0.3463003635406494, -0.80471271276474, 0.20748279988765717, -0.14100483059883118, 0.20388759672641754, -0.3104933798313141, -0.29032304883003235, -0.28514546155929565, 0.3649105131626129, 0.5975886583328247, -0.7322986721992493, -0.37438684701919556, -0.49564212560653687, 0.20674599707126617, -0.5265288949012756, 0.7640729546546936, -0.5595723986625671, 1.1949005126953125, -0.03643948584794998, -0.6021814942359924, -0.3427211046218872, -0.06800267100334167, 0.5456691384315491, 0.07258205860853195, 0.5696225762367249, -0.28956639766693115, -0.22331811487674713, -1.1343809366226196, -0.7791057229042053, 0.04974576085805893, 0.9079607129096985, 0.02514035440981388, -0.3339470624923706, -0.8469246029853821, -0.4850563704967499, -0.812861442565918, -0.15560492873191833, 0.753617525100708, 0.2555370628833771, 0.12512587010860443, 0.0892556831240654, -0.6474204659461975, 0.5251177549362183, -0.10454187542200089, 0.45586398243904114, 0.4096349775791168, 1.0810012817382812, 1.3183454275131226, 0.20346562564373016, 0.09976989030838013, -0.4208381175994873, 0.9278064370155334, -0.7007107734680176, -0.2463027536869049, -0.8064283132553101, -0.3816251754760742, 0.10385258495807648], [-0.27454328536987305, 1.425248146057129, -2.473788022994995, 0.18851768970489502, 0.747577428817749, 0.24007061123847961, 1.9964004755020142, -0.6006693243980408, 0.5000813007354736, -0.4443661570549011, -0.8832708597183228, -0.2886675298213959, 0.4508390724658966, 0.5978891849517822, 0.1739782840013504, 1.035631537437439, 0.5739539265632629, -0.7612840533256531, 0.10249457508325577, 1.0397311449050903, 0.38166627287864685, -0.8832384347915649, -0.1657762974500656, 0.9842340350151062, -0.48326271772384644, -0.0017935093492269516, -1.3307781219482422, -0.42761433124542236, -0.9005762338638306, -0.8043467998504639, 0.5658870935440063, -0.9161427617073059, 0.13711169362068176, 0.2258627712726593, -1.2307945489883423, -0.013796673156321049, 2.2469382286071777, 0.629023015499115, 1.312562108039856, 0.12630338966846466, 1.4421058893203735, -0.25249141454696655, 0.532541811466217, -1.6288481950759888, 0.42093899846076965, -0.4086221158504486, 1.607401967048645, -0.5808631777763367, 0.5682916641235352, -0.41656479239463806, -0.09461664408445358, -0.6416246294975281, 0.4859810769557953, 0.2939690351486206, 1.066848635673523, 0.4546400010585785, 0.864008903503418, -0.18475943803787231, 0.36261993646621704, -0.5559713840484619, 1.5450283288955688, -0.4326685667037964, -0.452117919921875, 0.7016952633857727, 0.04077203944325447, -0.3652760982513428, 0.0018812473863363266, 0.41167527437210083, -0.23031693696975708, 0.05330197885632515, 1.1890476942062378, 0.1916859745979309, -0.1379489302635193, 0.4557284414768219, -0.9527162909507751, 0.48207512497901917, 0.2994747459888458, 1.16520094871521, 0.4341644048690796, 0.4805445671081543, -0.1838318556547165, -0.2311563342809677, 1.317625641822815, -0.19113211333751678, -0.41630613803863525, -0.14840221405029297, 0.8415820598602295, -0.09493211656808853, -0.44754865765571594, 0.6623340845108032, 0.6861459612846375, 0.45643705129623413, 0.737109899520874, -0.11122877150774002, 0.045752547681331635, -0.3706904351711273, 0.42969512939453125, 0.10708053410053253, -0.7015456557273865, -1.1579780578613281, -0.4994562566280365, -0.7754604816436768, -0.15890353918075562, -0.3537745773792267, 0.3184329867362976, 1.4330556392669678, 0.245415598154068, 0.36686187982559204, -0.2800128161907196, -0.06078847125172615, -0.6196436285972595, 0.34080180525779724, -0.8927160501480103, -2.128944158554077, -0.9649144411087036, 0.9117366671562195, 1.0711191892623901, 0.6920451521873474, 0.6496323347091675, 0.5355376601219177, -0.636315107345581, 0.09535837173461914, 0.4079660177230835, 0.7294147610664368, 0.5938639640808105, 0.5923471450805664, -0.5392408967018127, -0.8402851223945618, 0.40718185901641846, 0.24776223301887512, 0.8975234031677246, -0.2778395712375641, -0.2765229642391205, 1.2921383380889893, -0.6354930400848389, 0.9262838959693909, -0.5607758164405823, -0.5787657499313354, -0.2511771619319916, -0.11594871431589127, 0.6489545702934265, -0.44700491428375244, 0.020072804763913155, -0.022362466901540756, 0.024602385237812996, -0.2867301404476166, -0.09466928243637085, -0.2905648350715637, -0.6631776094436646, -0.39743974804878235, -1.1704050302505493, 0.5172235369682312, 0.028794893994927406, 0.3533609211444855, 0.5477669835090637, -0.1806195229291916, 0.27119189500808716, 0.04471024125814438, 1.0191235542297363, -0.47458338737487793, 0.3317815363407135, -0.09445103257894516, -1.275453805923462, 0.9032799005508423, -0.46362489461898804, -0.07540750503540039, 0.30942925810813904, 1.3545984029769897, 0.1952441781759262, 0.8842577934265137, -0.6429494023323059, -0.5701197385787964, -0.550195038318634, 0.38712072372436523, 0.2998899519443512, -0.6003699898719788, 1.3275424242019653, -0.23364095389842987, -1.7680678367614746, -1.4452210664749146, 0.5515474677085876, -1.0133411884307861, 0.35576096177101135, -0.1424977034330368, 0.23622502386569977, -0.29681020975112915, 0.8142991662025452, -0.2904830873012543, -0.26558464765548706, -0.28266632556915283, 0.04429549723863602, -0.633459746837616, -0.5848469138145447, -0.22546742856502533, -0.028946325182914734, 0.12918037176132202, 0.8433138728141785, -1.1651191711425781, -0.8881934881210327, -0.3118138909339905, -0.5239109396934509, -0.29025518894195557, -0.619945764541626, 0.42429089546203613, -0.05795690789818764, 0.5367283225059509, -0.8440421223640442, 1.0844193696975708, -0.39964327216148376, 0.5358250737190247, 1.325459599494934, -0.2618407607078552, -0.8514742851257324, 0.6486230492591858, -0.33718204498291016, -1.3047142028808594, 0.2569555640220642, 0.13472643494606018, -0.3715941309928894, 0.25885486602783203, -0.0640893280506134, 0.392205148935318, 0.0783151239156723, -0.1859387904405594, 0.5042192339897156, -0.046528566628694534, -0.22482632100582123, -1.1861050128936768, -0.6245672106742859, 0.5606610178947449, -1.175590991973877, -1.176238775253296, 0.8610309958457947, 0.6593891382217407, -0.43399399518966675, -0.12367048859596252, -0.14137764275074005, 0.5419302582740784, 0.14935114979743958, 1.7682645320892334, 0.3828936815261841, 0.9676015973091125, 0.27608945965766907, -0.11882670968770981, 0.1908598095178604, 0.5390812754631042, 0.7329879999160767, 0.315986692905426, -0.38663890957832336, 1.07125723361969, 1.4591532945632935, 0.6792522072792053, 0.41146233677864075, 0.03535105660557747, -0.22893552482128143, -0.8155779242515564, -1.2413264513015747, 0.5441871285438538, -0.15195664763450623, 1.370805263519287, 0.44565701484680176, -0.49772465229034424, -0.49018827080726624, 0.5197749137878418, 0.13809582591056824, -0.06819126009941101, -0.6898052096366882, -0.6618720889091492, -0.6810809969902039, -0.1800168752670288, -0.29350194334983826, 0.3319132626056671, 0.3576008379459381, 0.7791083455085754, -0.45399370789527893, -0.6296060681343079, -0.5494325160980225, 0.38567182421684265, 0.039976853877305984, 1.0458025932312012, 0.10345398634672165, -1.6282073259353638, 0.17492012679576874, 0.30707064270973206, 0.7746044397354126, -0.1964452564716339, 0.06732071936130524, -0.32496029138565063, 0.6858394145965576, -0.6354727149009705, 0.24709928035736084, -0.2734098732471466, -0.6493735313415527, 0.43783286213874817, 0.02084643766283989, 0.6984687447547913, 1.0356274843215942, -1.0462663173675537, -1.3430275917053223, 0.3282996714115143, 0.4254671037197113, 1.3282039165496826, 0.32040369510650635, 1.7226717472076416, -0.6618586778640747, -0.05256873741745949, -0.5222612619400024, -0.9737938046455383, -1.2628543376922607, -1.1423736810684204, -0.532518208026886, -0.9129317402839661, -0.5410722494125366, -0.3700718283653259, -0.2625488042831421, 0.8624935150146484, -0.4825930893421173, 0.1791190356016159, 1.838229775428772, -0.20559807121753693, -0.6624566912651062, 0.049977824091911316, -0.15025272965431213, -0.14236664772033691, 0.34510836005210876, 1.7092748880386353, -1.18328058719635, -0.4910675287246704, -0.2124335616827011, 0.16030941903591156, 0.2740347385406494, 0.5415363311767578, -0.09337466955184937, -1.3960171937942505, -1.0935815572738647, -0.38786566257476807, 1.2191587686538696, -0.011452202685177326, -0.23762251436710358, -0.5315608978271484, 0.10712356865406036, 0.8472549319267273, -0.8234347105026245, -0.3229411542415619, 0.9074970483779907, -0.2811811566352844, -0.5718308687210083, -0.14113451540470123, 0.3820496201515198, 0.2560393214225769, -1.3925957679748535, -0.7763330340385437, -0.7643254995346069, -0.46983519196510315, -0.2671373188495636, 0.787003755569458, -0.19155898690223694, 1.2505412101745605, -0.4803999066352844, -0.45357996225357056, 0.5479021668434143, 0.12716221809387207, -0.3700968623161316, -0.4207545518875122, 0.4365848898887634, 0.7015870809555054, 1.3090624809265137, -0.5151556730270386, 0.5560107231140137, 0.7855034470558167, -0.014665277674794197, -0.03623589128255844, 0.6379216313362122, 1.0049247741699219, -0.39462727308273315, -0.012431547045707703, -0.25556233525276184, -0.6096992492675781, 0.009861811995506287, -0.6254783868789673, 0.07841984182596207, 0.2656395733356476, -1.151702880859375, -0.5849944353103638, 1.1201571226119995, 0.16904519498348236, -0.19762152433395386, -0.5721360445022583, 0.7407260537147522, 0.9445149898529053, 0.08363979309797287, 0.2680281400680542, -0.6335284113883972, -0.16180039942264557, 0.2474054992198944, -1.506066918373108, -0.01728067360818386, 0.6143786907196045, 0.12791720032691956, 0.9730930924415588, -0.811971127986908, 0.10831339657306671, -1.0749422311782837, 0.9767677783966064, 0.695914626121521, 0.019915126264095306, 0.3035047650337219, -0.09276293218135834, -0.04307720437645912, -0.2413501888513565, 0.49949735403060913, 1.9311468601226807, 0.023499445989727974, -0.33397409319877625, -0.0706402063369751, -0.2147853523492813, -0.3961041271686554, -0.5973381400108337, -0.2090451717376709, 0.3810751438140869, -0.5566296577453613, -0.2096259891986847, 0.3041226863861084, -0.1453997939825058, 1.1134778261184692, 0.2142602503299713, 0.3835349678993225, 0.13281862437725067, 0.33409151434898376, -1.108399748802185, 0.04780171439051628, 0.6216959953308105, -0.08466114848852158, -1.1490384340286255, -0.3861519694328308, 0.4135529398918152, 0.47161105275154114, 0.13914088904857635, 0.3456834554672241, 0.8803189396858215, 0.7073302268981934, 0.43794262409210205, -0.18146871030330658, 1.0409377813339233, 0.5917208194732666, 1.2670918703079224, 0.030098911374807358, -0.24668213725090027, -0.33401793241500854, 0.2506087124347687, -1.5602327585220337, 0.27943727374076843, 0.6051269173622131, -0.23101404309272766, 1.2293899059295654, -2.108853578567505, -1.167397141456604, 0.07508737593889236, 0.37854307889938354, 0.26508980989456177, 0.8187055587768555, -0.6412606835365295, 0.3356730341911316, 0.638616681098938, 0.01065896824002266, -0.5354845523834229, 0.12249456346035004, -0.38179776072502136, 0.10716325789690018, 0.22443924844264984, -0.9926148056983948, 0.48401984572410583, -0.2992400825023651, -0.1682147979736328, -0.41218042373657227, -0.7823048830032349, -0.00534213799983263, 0.503109872341156, -0.06421828269958496, 1.7314485311508179, -0.41604670882225037, -0.8105464577674866, -0.1391807645559311, -0.7543358206748962, 0.450236052274704, -0.7111301422119141, 0.12284629791975021, -0.9224792122840881, 0.2471843808889389, -0.002190595492720604, 0.29387956857681274, -0.06320270895957947, -0.22502046823501587, -0.4731811285018921, -1.2668333053588867, 0.09471014887094498, 1.0348786115646362, 1.3644509315490723, 0.5335782766342163, -0.1240929439663887, 0.9941956400871277, 0.3287806510925293, -0.887189507484436, -0.29699015617370605, 0.09107483178377151, -0.24298587441444397, 0.26169368624687195, -1.29612398147583, 0.040930453687906265, -0.23294474184513092, 0.02242649719119072, -0.10189793258905411, 0.7885066270828247, 1.210290551185608, 0.8537927269935608, 0.06712044030427933, -0.5454643368721008, 1.1694236993789673, -0.3014961779117584, 1.0431874990463257, 0.7981936931610107, -0.43874114751815796, -1.3224811553955078, -0.591907262802124, -1.1454987525939941, 0.20491871237754822, -0.2284993976354599, -0.4833020269870758, 1.1447694301605225, 0.2738354206085205, 0.7837026715278625, 0.05704944208264351, -0.37322527170181274, 0.6304904222488403, -0.20568184554576874, 0.01750589907169342, -1.1618742942810059, 0.3608757555484772, 0.10114121437072754, -0.1612694263458252, 0.23633208870887756, 0.5783504843711853, 0.02735128253698349, -0.2978568971157074, -0.1199134811758995, 0.7575226426124573, -0.023732688277959824, 0.9751861095428467, 0.5821990966796875, -0.5248481035232544, 0.3577549457550049, -0.5746115446090698, -0.7693359851837158, 0.06743663549423218, 0.27994468808174133, 0.2002672702074051, -0.22657456994056702, -0.2006121724843979, -0.26709964871406555, -0.26992830634117126, 0.16878212988376617, -0.676616370677948, 0.5425662994384766, 0.1629818081855774, 0.3710450530052185, -0.27034592628479004, -0.1551169604063034, 0.18562845885753632, -0.2379283607006073, 0.33685943484306335, 0.4753641188144684, -1.188109278678894, 0.01703527569770813, 0.5705560445785522, -0.7935360074043274, -0.4318634271621704, -0.12977062165737152, 0.5051866769790649, -1.0627940893173218, -1.3307684659957886, -1.055600881576538, 0.547513484954834, 0.6038030982017517, -0.5246458649635315, 0.6753920912742615, 0.550494909286499, -1.220957636833191, 0.35867229104042053, 0.4694640636444092, -1.2689796686172485, -0.3209938108921051, -0.5236920714378357, 0.2792767584323883, -0.0032407157123088837, 0.2821144461631775, 0.21042056381702423, 1.0185285806655884, -1.8295326232910156, -1.937091588973999, -1.124551773071289, -0.617756724357605, 0.5919860005378723, 0.6422494053840637, -0.9717826247215271, 0.6299955248832703, 0.488127201795578, -0.45444223284721375, -0.9874730110168457, 0.20733879506587982, -0.49238258600234985, 0.1683253049850464, -0.5012680888175964, 0.7376731634140015, 0.19269080460071564, 0.7078273892402649, 0.3121352791786194, 0.9203892350196838, 0.2501837909221649, 0.9574254751205444, -1.2000864744186401, -0.25715044140815735, 0.2650505304336548, 0.39985644817352295, -1.868503451347351, -1.0173779726028442, -0.6048519611358643, -0.5168826580047607, -1.0382161140441895, 0.029716383665800095, 0.5943052172660828, -1.3019477128982544, 0.04907919093966484, -0.7655948996543884, 0.5205225944519043, -0.4835059642791748, 0.44918668270111084, -0.0961957797408104, -0.05138147622346878, -0.2779037654399872, -0.037953078746795654, -0.2438279688358307, -1.5727367401123047, -0.15489034354686737, 0.24585068225860596, 0.6600902676582336, -1.1509792804718018, 0.6861390471458435, 0.3580750823020935, 0.44752123951911926, -0.5917017459869385, 1.5869972705841064, 0.36278849840164185, -0.3876418173313141, -0.0009035961702466011, 0.48610278964042664, -0.004454853944480419, 0.9031898379325867, -0.8302504420280457, -0.047643423080444336, -0.7187725305557251, 0.4340156316757202, 0.3022669851779938, 0.29095515608787537, -0.2562728524208069, 0.17871008813381195, -0.17333468794822693, 0.3706655204296112, 0.638883650302887, -0.7741885781288147, -0.4974518418312073, 0.5916680097579956, 0.034728050231933594, -0.587908148765564, 0.20187370479106903, 0.45588988065719604, 0.1724061220884323, -0.7009902000427246, 0.8209311366081238, 0.028700904920697212, -0.8280840516090393, 0.5015048384666443, -0.3075910806655884, -0.5460540652275085, -0.338985800743103, 0.13245336711406708, -0.8982371687889099, -0.043968964368104935, -0.5201408863067627, -0.30953919887542725, 0.8737525939941406, -1.619057536125183, -0.7480952739715576, 0.5955162644386292, -0.5788583755493164, -0.4483410716056824, -0.05225008726119995, 0.2435772567987442, 0.3996870517730713, -0.15963150560855865, 0.7775701284408569, -0.5481452345848083, 1.519425392150879, -0.12976707518100739, -0.2176464945077896, -1.599205493927002, -0.38047999143600464, 0.4803895652294159, 0.020843110978603363, -0.3111215829849243, 0.11030600219964981, 0.18438920378684998, -0.5659557580947876, -0.630122721195221, 0.032110318541526794, 0.6605083346366882, 0.5604189038276672, 0.19880782067775726, -0.018161065876483917, 0.32863855361938477, 0.46263840794563293, 1.1899651288986206, -0.6630096435546875, -0.6593703031539917, -0.7752782702445984, -0.09416479617357254, -0.4791030287742615, 0.538923442363739, 0.45019155740737915, 0.7449751496315002, 0.2455090582370758, -0.18384557962417603, -0.5544754266738892, -1.0295262336730957, -0.429593563079834, -0.1302286833524704, 0.21445733308792114, 0.22149860858917236, -0.3111080825328827, 0.021465929225087166, -0.861899733543396, -0.14638489484786987, 0.5300970077514648, -0.07304376363754272, 0.37914490699768066, -0.9697610139846802, -0.4197864830493927, -0.22127065062522888, 0.2581969201564789, 1.2375156879425049, -0.0552690327167511, 0.4665910005569458, 0.03661464899778366, -0.9676557779312134, 0.7278875112533569, -0.004708103835582733, -0.08895399421453476, 0.36869871616363525, 1.1615257263183594, 2.283677339553833, 0.8413439989089966, 0.12064892053604126, -0.3865496516227722, 0.07218039035797119, -0.4303421676158905, -0.13036197423934937, -0.2688993513584137, -0.11474040150642395, -0.3926011621952057], [-0.10231316089630127, 1.542541742324829, -2.5506792068481445, 0.013770210556685925, 1.2372721433639526, 0.5622664093971252, 1.1710025072097778, -0.9833927154541016, 0.1498948037624359, -0.3079138994216919, -0.3785657584667206, 0.4632406234741211, 0.6828749179840088, 0.4239039719104767, -0.45974239706993103, 0.7621223330497742, 0.764174222946167, -0.4301944375038147, 0.8106884360313416, 0.5587571859359741, -0.38365012407302856, 0.18004631996154785, 0.792761504650116, -0.05460880696773529, -0.8478711247444153, 0.36871448159217834, -1.2890188694000244, -0.3753182590007782, -0.3124174475669861, -0.9001851081848145, -0.05127725377678871, -0.22348536550998688, -0.010182750411331654, 0.5973308086395264, -1.102583885192871, -0.7767161726951599, 1.0224993228912354, 1.5099375247955322, 0.7008718848228455, 1.1153331995010376, 1.5115242004394531, 0.08390673995018005, 0.2979271709918976, -1.6554392576217651, 0.723034679889679, -0.010783819481730461, 1.0885413885116577, -0.5856197476387024, 0.7545608878135681, -0.3287335932254791, 0.07870077341794968, -0.5825939178466797, 0.3568214476108551, 1.0353864431381226, 0.938971757888794, -0.2800944149494171, 0.44765397906303406, 0.43912073969841003, 1.0784560441970825, -0.8654992580413818, 1.0047310590744019, -0.127078577876091, -0.2456158697605133, 0.838921070098877, -0.11633844673633575, -0.013134530745446682, -0.2689526081085205, 0.19662906229496002, -0.3315935730934143, -0.2791432738304138, 0.3744652271270752, 0.31373801827430725, -0.9511387944221497, 0.8101162314414978, -1.186665654182434, 0.6297048926353455, 0.7611989378929138, 0.28999945521354675, 0.2186119109392166, 0.25517287850379944, -0.11349886655807495, 0.08669935911893845, 0.5192532539367676, 0.035532526671886444, 0.5262278318405151, 0.11843375116586685, 0.6235029697418213, -0.7701300382614136, -0.4527175724506378, 1.4729357957839966, 0.1048300713300705, 0.05931166559457779, 0.7939170002937317, -0.41254153847694397, -0.8020449280738831, -0.4894216060638428, 0.6362111568450928, -0.11138636618852615, -1.1058419942855835, -1.09734308719635, -0.45135369896888733, -0.6384994983673096, 0.259846031665802, 0.36946073174476624, 0.04388076066970825, 1.076377034187317, -0.1404271274805069, 0.0741674154996872, -0.3683939278125763, 0.05495676025748253, -0.020158806815743446, 0.6962958574295044, -1.1231826543807983, -1.2435716390609741, -0.426788866519928, 1.2117348909378052, 1.0080504417419434, -0.6785250902175903, 0.6132621765136719, 1.0413048267364502, -0.2725670635700226, -0.27276936173439026, -0.22333978116512299, 0.6949103474617004, 0.4352472424507141, 0.651987612247467, -0.4928848147392273, -0.6242700815200806, 0.18361616134643555, -0.2150023877620697, 0.5492573976516724, -0.2766513526439667, -0.3070913851261139, 1.100867748260498, -1.0243871212005615, 1.3780319690704346, -0.465109258890152, -0.3676786720752716, 0.10224078595638275, -0.24221384525299072, 0.8622627258300781, -0.37735283374786377, -0.2501908540725708, -0.658111035823822, -0.06965436041355133, -0.12603361904621124, -0.21702317893505096, -0.22171999514102936, -0.4089087247848511, 0.3007877469062805, -0.8146853446960449, 1.0381641387939453, 0.36342111229896545, 0.572378933429718, 0.13966664671897888, -0.3910057842731476, 0.31160110235214233, 0.4819345474243164, 1.0633087158203125, -0.286376953125, 1.0811105966567993, -0.16222122311592102, -0.9859532713890076, 0.945068895816803, 0.6298798322677612, -0.16987749934196472, 0.18016240000724792, 0.8748063445091248, -0.07519809901714325, 0.7374365925788879, -0.9230512976646423, -0.24188455939292908, -0.1223180964589119, 0.055103760212659836, 0.5046265721321106, -0.7511190176010132, 1.0255671739578247, -0.7083187103271484, -0.9875540137290955, -1.2366834878921509, 0.12454628944396973, -0.7122258543968201, 0.25384119153022766, -0.20629337430000305, 0.9651548266410828, -0.5340790152549744, 0.038932204246520996, -0.10718107968568802, -1.1991050243377686, -0.8907564878463745, -0.6217089891433716, -0.7304518222808838, -1.1152387857437134, 0.21884861588478088, -0.6517482995986938, -0.5078680515289307, 0.24859540164470673, -0.9185852408409119, -0.6684621572494507, -0.4868849217891693, -0.48254844546318054, -0.2011757344007492, -1.175481915473938, 0.5747261643409729, -0.6006377339363098, 1.1641041040420532, -1.072034239768982, 0.9367864727973938, -0.6275250315666199, -0.14257913827896118, 1.0604329109191895, -0.022112812846899033, -0.30105921626091003, 0.8900443911552429, -0.12390142679214478, -1.169551968574524, 0.7359105348587036, 0.3674589991569519, -0.5237475037574768, 0.6366515159606934, 0.8875514268875122, -0.17835716903209686, 0.37832990288734436, 0.05626624450087547, 0.33793261647224426, -0.31086742877960205, -0.5590149164199829, -0.500451385974884, -0.6186354756355286, 0.15344814956188202, -0.323744535446167, -1.2546131610870361, 1.1128665208816528, 0.2933349311351776, -0.9001065492630005, 0.009009882807731628, 0.29597607254981995, -0.06082524359226227, 0.8123360276222229, 0.91533362865448, 0.301168829202652, 0.708925724029541, -0.46245452761650085, -0.24760958552360535, -0.7188349962234497, -0.04996161162853241, 1.2519092559814453, -0.039388809353113174, 0.21923215687274933, 1.5847285985946655, 1.2612569332122803, -0.13160733878612518, 0.10082478076219559, 0.7669843435287476, -0.1704980880022049, -0.893307626247406, -0.8012451529502869, 0.09899440407752991, -0.2967660427093506, 1.1355485916137695, 1.0471404790878296, -1.1951130628585815, 0.0756956934928894, 0.06576573848724365, 0.23449182510375977, -0.23210817575454712, -0.8790729641914368, 0.4227767884731293, -0.2950938045978546, 0.37890490889549255, -0.11291307955980301, 0.5149054527282715, -0.15805242955684662, 1.0213947296142578, -0.6982010006904602, -0.3518829047679901, -0.6107677221298218, 0.9321362376213074, 0.18050290644168854, 0.4681689441204071, 0.14338427782058716, -1.604533314704895, -1.031211018562317, 0.1114993467926979, 0.9869373440742493, 0.3990553617477417, 0.18813714385032654, -0.21920625865459442, 0.025228600949048996, -0.11942527443170547, 0.2552604377269745, -0.17545486986637115, 0.29564592242240906, -0.1384926289319992, 0.16741999983787537, 0.12490396201610565, 1.1198104619979858, -0.6858652830123901, -0.8614170551300049, 0.13930542767047882, 0.19448663294315338, 1.525374412536621, 0.7330523729324341, 1.1587047576904297, 0.06768381595611572, -0.07266384363174438, -0.8443458676338196, -0.9565651416778564, -0.6795392036437988, -0.4303591847419739, -1.3113727569580078, -0.8221682906150818, -0.1656128615140915, -0.55936199426651, -0.09720733016729355, 0.6690772771835327, -0.5879802703857422, 0.9274789690971375, 1.5463922023773193, -0.7789992690086365, -0.6651318669319153, -0.05892867222428322, 0.4395228624343872, -0.9051902294158936, 0.8236761689186096, 1.84831964969635, -1.0919811725616455, -0.5457037687301636, -0.6144863367080688, -0.16474387049674988, 0.4446415901184082, -0.020250754430890083, -0.41060671210289, -1.8632646799087524, -1.1042113304138184, -0.21932528913021088, 1.7312614917755127, -0.18162395060062408, 0.03912055119872093, -0.7200474739074707, 0.6599632501602173, 0.4607388377189636, -0.7686264514923096, -1.0631790161132812, 0.19647951424121857, 0.044099994003772736, -0.36838632822036743, -0.34212827682495117, 0.6643418073654175, 0.7577449679374695, -0.5689123868942261, -0.9387974739074707, -0.20941196382045746, 0.32425016164779663, -0.44323062896728516, -0.1592494547367096, 0.5313073396682739, 0.5729627013206482, -0.4962719976902008, -0.15714192390441895, 0.09878645092248917, -0.8122641444206238, -0.014000770635902882, -1.3217641115188599, 0.1454285830259323, 0.32762351632118225, 1.1397291421890259, 0.21541288495063782, 0.27942073345184326, 0.16170242428779602, 0.0653095617890358, -0.21413572132587433, 0.3824671506881714, 1.4677616357803345, 0.0968833640217781, -0.20568901300430298, -0.4631725549697876, -0.45684221386909485, -0.37969258427619934, -1.070909857749939, -0.4569498598575592, 0.7219296097755432, -0.5487783551216125, -0.8021495342254639, 0.7812312841415405, 0.5312719345092773, -0.352776437997818, 0.022265251725912094, 0.16864950954914093, 1.36404287815094, -0.5969666838645935, 0.12551578879356384, -0.7331348657608032, -0.0887996107339859, -0.06338667869567871, -1.3067954778671265, -0.01719859056174755, 0.5497382879257202, 0.6907269954681396, 0.4764687716960907, -1.0307122468948364, -0.2841529846191406, -0.5874122381210327, 0.12901939451694489, 0.20666776597499847, -0.08399499207735062, 0.06683816760778427, -0.2527499198913574, -0.38235077261924744, -0.2763349115848541, -0.04451845958828926, 0.8099690675735474, -0.7226864695549011, -0.16078747808933258, -0.421735018491745, -0.013569526374340057, -0.5876710414886475, -0.21350660920143127, -0.35397741198539734, -0.22176241874694824, 0.10328330844640732, 0.15161888301372528, 0.17505960166454315, -0.22549806535243988, 1.3397938013076782, 0.16507376730442047, 0.5567508339881897, 0.6023733019828796, -0.1666577309370041, -1.033624291419983, 0.32829979062080383, 0.688874363899231, -0.40866225957870483, -0.5758578777313232, -0.5424262285232544, 0.3932817876338959, -0.453635573387146, 0.4818716049194336, 0.35679197311401367, 0.9649537801742554, 0.31783828139305115, -0.0311411265283823, -0.5730422735214233, -0.2233525663614273, 0.30160167813301086, 1.0901328325271606, -0.2754804790019989, -0.09268797934055328, -1.2909021377563477, 0.3277031481266022, -1.1064784526824951, 0.21449647843837738, 0.9402879476547241, 0.17463965713977814, 1.5316561460494995, -1.9385480880737305, -0.530474066734314, 0.5879806280136108, 0.18471533060073853, 0.544795572757721, 0.33414652943611145, -0.4558317959308624, -0.404636412858963, 0.5872147679328918, -0.0040379236452281475, 0.07860153913497925, 0.13993483781814575, -0.17041023075580597, -0.3180626332759857, 0.3715268671512604, -0.444863885641098, 0.8071303963661194, -0.4712575376033783, -0.236494243144989, 0.18375618755817413, -0.36825937032699585, 0.37709417939186096, 0.48847898840904236, 0.15499845147132874, 0.23617017269134521, -0.7237904667854309, -0.6926307082176208, 0.7848001718521118, -0.0032785525545477867, 0.3889795243740082, -0.5996139645576477, -0.06568867713212967, -0.05742857977747917, -0.38202378153800964, -0.3360244631767273, 0.5791136622428894, -0.2892870604991913, -0.23548899590969086, -0.5113545060157776, -1.5420078039169312, 0.02063687890768051, 0.5218178629875183, 1.131056547164917, 0.491170734167099, -0.46287938952445984, 0.3044077455997467, 0.49470627307891846, -1.3692916631698608, 0.25185850262641907, -0.3278457820415497, -0.42320147156715393, -0.1937026083469391, -1.4921913146972656, -0.16021472215652466, 0.021147506311535835, 0.6954541206359863, -0.01055359560996294, 0.6064412593841553, 1.3094336986541748, 1.7628625631332397, -0.5567868947982788, -0.6697114109992981, 0.7414041757583618, -0.37405872344970703, -0.04736978933215141, 0.5947000980377197, -0.5397692322731018, -0.4372890591621399, -0.6372461318969727, -1.2026474475860596, 1.2542550563812256, -0.8802140355110168, -0.9853997826576233, 1.1265109777450562, 0.2109367549419403, 0.7281823754310608, 0.9126255512237549, -0.49580323696136475, 0.5049984455108643, 0.3734165132045746, -0.7737831473350525, -1.2983771562576294, 1.0880351066589355, 0.035630300641059875, 0.39841461181640625, -0.5003156065940857, 0.3175101578235626, 0.22790409624576569, -0.6711214184761047, 0.29877883195877075, 0.09810654819011688, 0.24119725823402405, 0.7790305018424988, 0.8906238675117493, -0.3474443256855011, 0.17594687640666962, -0.3380889892578125, -0.17808935046195984, -0.03397656977176666, 0.5956985354423523, -0.4026908278465271, -0.1748562753200531, -0.17582154273986816, -0.14316070079803467, -0.24385017156600952, -0.5544984936714172, -0.3557758629322052, 0.6142158508300781, 0.3305511176586151, 0.2797183692455292, -0.26503708958625793, -0.38660910725593567, -0.5863239169120789, -0.020095383748412132, -0.014618908055126667, 0.2307777851819992, -1.3416123390197754, 0.13984133303165436, 0.43040338158607483, -0.5588451623916626, -0.272504061460495, -0.6167787313461304, -0.11988294869661331, -1.3602426052093506, -0.945042073726654, -0.8792372345924377, -0.020984122529625893, 0.6616271734237671, -1.5229853391647339, 0.32758721709251404, 0.9598925113677979, -1.3961480855941772, 0.07414960116147995, 0.4627076983451843, -1.607606291770935, -0.2701992392539978, -1.2757964134216309, 1.5566531419754028, -0.030643846839666367, -0.03216054290533066, 0.18140672147274017, 0.6325477957725525, -0.9557703733444214, -1.357481598854065, -0.6582772731781006, 0.23560455441474915, 0.8833414316177368, 0.9673000574111938, -0.4287685751914978, 1.246781826019287, 1.0405534505844116, -0.8495060801506042, -0.6080679297447205, 0.15687815845012665, -1.0468999147415161, 0.5808387994766235, 0.22291123867034912, 0.1998300999403, 0.20388686656951904, 1.1699297428131104, 0.31060725450515747, 1.2345633506774902, 0.24783524870872498, 0.9884822368621826, -0.9889090657234192, -0.6905050873756409, -0.1682056039571762, 0.5721977949142456, -1.4590911865234375, -1.344221591949463, -0.17662836611270905, -0.8422954082489014, -0.8720694780349731, 0.6875048875808716, 0.468600869178772, -0.29717808961868286, 0.4505036771297455, -0.3565726578235626, 0.5957347750663757, -0.5679238438606262, 0.36896440386772156, -0.16046357154846191, -0.4259026050567627, -0.314787358045578, 0.23775869607925415, -0.13212712109088898, -1.0563921928405762, 0.22726784646511078, -0.21258646249771118, 0.43681198358535767, -0.3643760681152344, 0.9410406947135925, 1.0715736150741577, 0.5488640666007996, -0.26743853092193604, 1.3162517547607422, 1.3982576131820679, -0.03836870566010475, -0.1872359663248062, 0.814820408821106, 0.509753942489624, 0.768521785736084, -0.7204880714416504, -0.12821219861507416, -1.011518955230713, 0.7026308178901672, 0.5050060153007507, 0.24486373364925385, -0.05056528002023697, 0.0544915497303009, -0.12523813545703888, 0.17313963174819946, 0.5205854177474976, -1.1925253868103027, 0.12609200179576874, 0.983284592628479, 0.051209427416324615, -0.11633514612913132, 0.09831403940916061, 0.7051864266395569, 0.22666507959365845, -0.5739220380783081, 0.5311790108680725, 0.968930721282959, -0.9394833445549011, 0.4768018424510956, 0.041474226862192154, -0.19579121470451355, 0.193698912858963, -0.5787867903709412, -1.0476593971252441, -0.11306217312812805, -0.5519726872444153, -0.7485575079917908, 0.6102635860443115, -0.9818041324615479, -1.2752563953399658, 0.016918767243623734, -0.08363431692123413, -0.49797818064689636, -0.07990339398384094, 0.0737743228673935, 0.1138148233294487, 0.9072331786155701, 0.8419924974441528, -0.3928593099117279, 1.3123260736465454, 0.2579287886619568, -0.20670375227928162, -0.840013861656189, -0.510047972202301, 0.3029838800430298, -0.5252906084060669, -0.17613661289215088, 0.6152767539024353, 0.2730642855167389, 0.4264106750488281, -0.10901393741369247, 0.20321249961853027, -0.02613331377506256, 0.3865772783756256, 0.3827623426914215, -0.35024744272232056, -0.07350252568721771, 0.24549318850040436, 0.48904454708099365, -0.22958187758922577, -0.3687293231487274, -0.35881054401397705, 0.29008811712265015, -0.5874639749526978, 0.33941149711608887, -0.626034677028656, 1.1880614757537842, 0.4938359260559082, -0.3051072359085083, -0.6594597697257996, -0.653170645236969, 0.5531207323074341, -0.5670992732048035, 0.9048628211021423, -0.20669645071029663, -0.019692618399858475, -0.3180420994758606, -1.0417417287826538, 0.7642834186553955, 0.5779191255569458, -0.12159989774227142, -0.0037934044376015663, -1.2632064819335938, -0.41582420468330383, -0.46182867884635925, 0.717191219329834, 0.9226292967796326, 0.15292513370513916, 0.12685425579547882, -0.2537633776664734, -1.3269237279891968, 0.5053715109825134, -0.3277422785758972, 0.4282628893852234, 0.28540122509002686, 1.5336966514587402, 1.6879991292953491, 0.5692395567893982, 0.5159778594970703, -0.12402727454900742, 0.7566080093383789, -0.16173724830150604, -0.6294638514518738, -0.45296141505241394, -0.402966171503067, 0.7261004447937012], [-0.5504437685012817, 1.6988457441329956, -2.4347567558288574, -0.09955545514822006, 0.9236358404159546, 0.34286391735076904, 1.1964350938796997, -0.3242260217666626, -0.22195957601070404, -0.7027676701545715, -0.1476317197084427, 0.3379792273044586, 0.2751501500606537, 1.1706074476242065, 0.9123806357383728, 0.897379457950592, 0.9562603831291199, -0.13769812881946564, 0.5283569693565369, 1.6610535383224487, -0.9517268538475037, -0.9164197444915771, -0.10789318382740021, -0.08491668105125427, -0.7345659732818604, -0.11060842871665955, -1.8143551349639893, -0.5817765593528748, -0.9156638979911804, -0.9867561459541321, 0.21527370810508728, -0.295510858297348, -0.49505600333213806, 0.260782927274704, -1.3040486574172974, -0.47153759002685547, 0.3287571370601654, 0.42163917422294617, 0.1567041575908661, 1.0629537105560303, 1.7504345178604126, 0.18072117865085602, -0.4136602580547333, -1.3577938079833984, 0.07841046899557114, -0.6107240319252014, 1.6713573932647705, -0.5535105466842651, -0.17470411956310272, -1.0064283609390259, 0.6623156666755676, -0.9049625396728516, 0.3650875687599182, 0.3475257158279419, 0.8119980096817017, 0.1426817625761032, -0.10406515002250671, -0.037887219339609146, 0.7338320016860962, -0.39071157574653625, 0.27867403626441956, 0.8095948100090027, -0.3059232831001282, 1.36448335647583, -0.34816473722457886, 0.07969595491886139, -0.8839495778083801, 1.078170657157898, -0.15081210434436798, -0.700598418712616, 1.1580523252487183, -0.3947907090187073, -0.2040833681821823, -0.271232932806015, -1.40916907787323, 0.10330571234226227, 0.18250393867492676, 0.3929603397846222, 0.7761706709861755, 0.22314518690109253, 0.06158037111163139, -0.02229228802025318, 0.914658784866333, -0.7737895250320435, 0.0020392099395394325, -0.2217862755060196, 0.8373197913169861, -0.46396276354789734, -0.6739827990531921, 1.217921495437622, 0.8514751195907593, -0.33418914675712585, 1.0842992067337036, -0.9585481286048889, -0.21167123317718506, -0.9172548055648804, -0.2629491984844208, -0.3602893352508545, -0.46294209361076355, -0.7801081538200378, -0.3576008677482605, -0.636303186416626, 0.1705806702375412, -0.4616509974002838, -0.6844292283058167, 0.9141449928283691, 0.43281108140945435, 0.07235179841518402, -0.021181747317314148, -0.028456728905439377, -0.2196047306060791, -0.03056037798523903, -1.2211273908615112, -1.1706455945968628, -0.7161030173301697, 0.806367039680481, 1.2175956964492798, 0.3830437958240509, 0.5981156229972839, 0.7160210013389587, -0.16160069406032562, -0.11418352276086807, -0.004570509307086468, 0.14294150471687317, 0.5889280438423157, 0.07568424940109253, -0.5264231562614441, -0.23634928464889526, 0.033398646861314774, -0.31840839982032776, -0.4152161478996277, -0.28199535608291626, -0.2729857563972473, 0.5328395962715149, -0.5872698426246643, 1.8781616687774658, 0.1683129221200943, -0.5240161418914795, -0.13347628712654114, -0.08621957153081894, 0.6018090844154358, -0.2921738922595978, 0.18594543635845184, -1.2398982048034668, -0.4967271089553833, -0.25572243332862854, -0.10160931944847107, -0.01303035020828247, -0.5416425466537476, 0.3281210958957672, -0.6687162518501282, 0.37599658966064453, 0.7230812907218933, 1.0529108047485352, 0.02942262962460518, -0.5032589435577393, 0.7480480074882507, 0.06699782609939575, 0.8083342909812927, -0.31616246700286865, 0.5590718984603882, -0.5019392371177673, -1.3005530834197998, 0.8017234802246094, 0.32404330372810364, -0.11592186242341995, 0.41480860114097595, 1.6034148931503296, -0.27851295471191406, 0.8374485373497009, -0.7128769159317017, 0.45527133345603943, -1.5822551250457764, 0.5227130055427551, 0.02374323643743992, -0.9671816825866699, 1.3527302742004395, -0.48090028762817383, -1.3786026239395142, -0.7508375644683838, 0.9525460600852966, -0.7960389852523804, -0.007741612382233143, -0.5131558179855347, 0.628607451915741, -0.351875364780426, 0.3109595775604248, -0.5331376194953918, 0.36444079875946045, -0.4015820026397705, -0.7770418524742126, -0.5665847063064575, -0.7373068332672119, 0.11921676993370056, -0.28282877802848816, -0.46478942036628723, 0.8873735070228577, -1.1105695962905884, -0.28044161200523376, 0.25529512763023376, 0.26033368706703186, -0.05829012393951416, -0.36041539907455444, 0.424457848072052, -0.4702688753604889, 0.47449058294296265, -0.5737406015396118, 0.3714025020599365, -0.748053789138794, -0.4163599908351898, 0.8529875874519348, 0.01703258790075779, -0.7336828708648682, 0.7715087532997131, -0.1740194857120514, -0.7774103283882141, 0.8174789547920227, 0.16705870628356934, -0.7474225759506226, -0.020482895895838737, 0.22257238626480103, 0.06401965022087097, -0.4049835503101349, -0.032326262444257736, 0.38679584860801697, -0.28900834918022156, -0.9286813735961914, -0.6057255864143372, -0.804553747177124, 0.41732102632522583, -1.2400627136230469, -1.2616387605667114, 0.31008732318878174, 0.6540287137031555, -0.4803992211818695, -0.1919018030166626, 0.1650664061307907, 0.3053862750530243, 0.9207254648208618, 0.5569131374359131, -0.1323503702878952, 0.40029585361480713, -0.4189484119415283, 0.27404317259788513, -0.5544177889823914, 0.3322477340698242, 0.40416035056114197, -0.6472058892250061, -0.09809400886297226, 1.2337186336517334, 0.9730891585350037, 0.5310215950012207, 0.7901497483253479, -0.36719053983688354, -0.04480467736721039, -0.8736417293548584, -0.7380337119102478, 0.2337130457162857, -0.25961488485336304, 1.584839105606079, 0.3398831784725189, -0.4510171115398407, -0.28286290168762207, -0.43357518315315247, -0.3472122251987457, -0.3451229929924011, -0.446447491645813, -0.6038488149642944, -0.5792033076286316, 0.012421153485774994, -0.9225979447364807, 0.27119752764701843, 0.2006719559431076, 0.22139237821102142, -0.16029150784015656, -0.3298788368701935, 0.09792481362819672, 0.21172770857810974, 0.17854885756969452, 1.2759450674057007, -0.38528263568878174, -1.3291338682174683, -0.3350982367992401, -0.46447402238845825, 0.48898327350616455, -0.48686710000038147, -0.14161449670791626, 0.20840580761432648, 0.697212815284729, -1.1400986909866333, 0.09326688200235367, -0.10611899942159653, -0.37185850739479065, -0.19046345353126526, 0.2987547516822815, 0.740350067615509, 0.6847918033599854, -0.42270374298095703, -0.4507676064968109, -0.0948338508605957, 0.202593594789505, 1.0718934535980225, 0.8611963987350464, 1.2582298517227173, -0.48036855459213257, 0.25559869408607483, 0.3058697283267975, 0.17619436979293823, -0.2571813464164734, -0.995954155921936, -0.7107735276222229, -0.7075791358947754, -0.4871407449245453, 0.034369051456451416, 0.6050713658332825, 1.3959531784057617, -0.3638356029987335, 1.2651845216751099, 0.7017500996589661, -0.8636437654495239, -1.3522135019302368, 0.15514080226421356, 0.44812825322151184, -0.0015246113762259483, 0.457279235124588, 1.2386459112167358, -0.2111176699399948, -0.7755663990974426, -0.010411020368337631, -0.8901336193084717, 0.6124408841133118, 0.20402821898460388, -0.22150753438472748, -1.5317378044128418, -0.5747197270393372, -0.3692266643047333, 1.7573490142822266, 0.3921319842338562, -0.3625742197036743, -0.14614172279834747, 0.022888433188199997, 0.5708303451538086, 0.12190134078264236, -0.585429310798645, 0.6022192239761353, 0.008900880813598633, -0.6567378044128418, 0.08792215585708618, 0.8175268173217773, 0.5620852112770081, -0.7445506453514099, -0.895983874797821, -0.32014572620391846, -0.34423545002937317, -0.9321059584617615, 0.24509869515895844, 0.16872327029705048, 0.7525082230567932, -0.7413657903671265, -0.3797591030597687, 0.7762516736984253, 0.09277883917093277, 0.23473377525806427, -1.4716757535934448, 0.33485162258148193, 0.47322750091552734, 1.2131224870681763, 0.19083328545093536, 0.1315062791109085, 0.636528730392456, 0.1435973346233368, -0.12811757624149323, 0.5326734781265259, 0.01566297747194767, 0.04217839986085892, -0.20871730148792267, -0.3666320741176605, 0.3200606405735016, -0.07722119987010956, -0.44894540309906006, 0.16593687236309052, 0.7762595415115356, -1.1411840915679932, -0.5408492684364319, 0.6880658864974976, 0.5477315187454224, -0.5844806432723999, -0.7499300241470337, 0.7050067782402039, 0.46284881234169006, -1.114670753479004, 0.32452264428138733, -0.5909906625747681, -0.1840941607952118, 0.3131815195083618, -1.4361908435821533, -0.2429606169462204, -0.1328931450843811, 0.4138181209564209, 0.7469090223312378, -1.2263190746307373, -0.3168322443962097, 0.0016717934049665928, 0.28508588671684265, 0.9916803240776062, 0.16140389442443848, 0.6927906274795532, 0.29383185505867004, -0.2733875811100006, -0.38089999556541443, 0.14049378037452698, 1.7634669542312622, 0.1856893002986908, -0.04622581601142883, 0.28107109665870667, 0.49240803718566895, -0.2742401957511902, -0.06437642872333527, 0.08267434686422348, -0.22822542488574982, -0.5071195960044861, 0.190407395362854, -0.09172419458627701, 0.18111003935337067, 1.3471488952636719, 0.23998531699180603, 0.4507794678211212, 0.3142945170402527, -0.5730406641960144, -0.7904426455497742, 0.15963563323020935, 0.23615524172782898, -0.4156394898891449, -0.8682800531387329, 0.05225125700235367, 0.20516633987426758, 0.44922956824302673, 0.603977620601654, 0.4823031723499298, 1.869663953781128, 0.11646996438503265, -0.21538382768630981, -0.0170203298330307, 0.34672632813453674, 0.9566695094108582, 1.2901005744934082, 0.41261985898017883, -0.03609290346503258, -1.1297932863235474, 0.8507664203643799, -0.500283420085907, 0.009566066786646843, 0.7507582306861877, 0.10096427798271179, 1.0199041366577148, -0.9118465185165405, -0.4770265221595764, 0.5063832998275757, -0.007537243887782097, -0.07822060585021973, 0.17997244000434875, -0.4053542912006378, -0.2759513854980469, 0.23146240413188934, 0.12871888279914856, 0.45255374908447266, 0.8782485127449036, -0.6151639819145203, 0.45780959725379944, 0.16609813272953033, -0.5438476800918579, 0.5198086500167847, -0.529620349407196, 0.6460844874382019, -0.27046361565589905, -0.22240778803825378, 0.03580596297979355, 0.7994433045387268, 0.015012710355222225, 1.5441277027130127, -0.4387739598751068, -0.7679281234741211, 0.39429739117622375, -0.4565463066101074, 0.49148446321487427, -0.7147799730300903, 0.3334307372570038, 0.16059240698814392, -0.0837029367685318, -0.22624339163303375, -0.26316338777542114, -0.8718962669372559, -0.9581984877586365, -0.7628484964370728, -0.7899670600891113, 0.33991119265556335, 0.9752700328826904, 1.206581473350525, 1.0247141122817993, 0.5960108041763306, 0.7144023776054382, 0.6207512617111206, -0.7080824971199036, -0.5608307123184204, -0.14724406599998474, -0.7662475109100342, 0.30566754937171936, -1.3151988983154297, -0.301540732383728, 0.679844081401825, 0.8192260265350342, -0.013321724720299244, 0.6369622349739075, 0.8421425819396973, 1.2717005014419556, -0.5058252811431885, -0.9130959510803223, 0.6090035438537598, -0.42022502422332764, 0.7784875631332397, 0.6034804582595825, -0.8740461468696594, -0.4821685254573822, -1.1314469575881958, -1.4184004068374634, 1.1445306539535522, 0.020984752103686333, -0.2161659300327301, 1.195000171661377, 0.668705940246582, -0.5336891412734985, 0.7485933899879456, -0.08602040261030197, 0.30007311701774597, 0.2849707305431366, -0.15334369242191315, -0.4138699173927307, 0.5529584288597107, 0.2746056616306305, 0.7050802111625671, -0.11680078506469727, 0.9495900869369507, -0.6123939156532288, -0.0511857308447361, 0.5849425196647644, 0.18850725889205933, 0.366794228553772, 1.3086202144622803, 0.728536069393158, -0.24457786977291107, 0.5363046526908875, -0.06781528890132904, -0.4582426846027374, -0.19637930393218994, 0.5344889760017395, -0.0740995705127716, -0.4929695725440979, -0.1376267820596695, 0.2886516749858856, -0.438800573348999, -0.23662438988685608, -0.8525302410125732, 0.558769166469574, 0.2904717028141022, 0.3264968991279602, 0.2828105688095093, -0.1729932576417923, -0.30374157428741455, -0.1727915108203888, 0.10709346830844879, 0.6321166753768921, -1.201332926750183, 0.10589326173067093, 0.20087899267673492, -0.5744897127151489, -0.11646297574043274, 0.4078391194343567, -0.5085281133651733, -0.945101797580719, -0.757643461227417, -0.8608863949775696, 0.1747441589832306, 0.4770706593990326, -0.7518993020057678, 0.8373271822929382, 0.2008899301290512, -1.5325531959533691, -0.0364542230963707, 0.1619102656841278, -1.2164652347564697, -0.6155609488487244, -1.323028564453125, 0.966626763343811, 0.6047762632369995, 0.402078777551651, -0.29514986276626587, 0.8271195888519287, -1.5960347652435303, -1.3415566682815552, -1.2116798162460327, -0.03814031928777695, 0.9474483132362366, 0.4258292019367218, -0.5363762974739075, 1.1480724811553955, -0.03082229383289814, -0.4549078345298767, -0.5774925351142883, 0.4462273418903351, -0.5761388540267944, 0.4799702763557434, -0.11946440488100052, 0.6181394457817078, -0.3621458411216736, 1.3071480989456177, 0.19965499639511108, 1.6381449699401855, 0.19250988960266113, 1.2445061206817627, -0.6907202005386353, 0.3157598376274109, -0.7905004620552063, 0.695820152759552, -1.2361822128295898, -0.3872195780277252, -0.055356938391923904, -1.0293117761611938, -0.7479600310325623, 0.5135972499847412, 0.7178340554237366, -0.9256037473678589, -0.6092715859413147, -0.9981293082237244, 0.5777417421340942, -0.8129792809486389, 0.29986900091171265, -0.5376174449920654, -0.4906492233276367, -0.035214588046073914, -0.05671007186174393, -0.23636631667613983, -0.8970663547515869, 0.1286071538925171, 0.7354360222816467, 0.03674684464931488, -0.5733070373535156, 0.9759699106216431, 1.020867109298706, 0.586301326751709, -1.3409051895141602, 1.466450572013855, 0.9388426542282104, -0.14439062774181366, -0.19991447031497955, 0.2899887263774872, 0.24870966374874115, 0.3832384943962097, -0.49500542879104614, -0.30376026034355164, -0.3763745427131653, 0.7558353543281555, -0.030981458723545074, 0.16042596101760864, -0.10441979020833969, 0.036605849862098694, -0.3224185109138489, -0.19108568131923676, 0.9434860944747925, -0.8989689350128174, 0.12261945754289627, 1.2693437337875366, -0.006271610036492348, -0.3464325964450836, -0.3026454746723175, 0.4701710343360901, -0.14513376355171204, -0.41036754846572876, 1.0700443983078003, 0.9217126965522766, -1.1109453439712524, 0.22074764966964722, 0.19524599611759186, 0.030648328363895416, 0.135538250207901, -0.2614927291870117, -1.4409860372543335, -0.5100566744804382, -0.20875991880893707, -1.1907442808151245, 0.5528069138526917, -1.241154670715332, -0.5978883504867554, 0.15648230910301208, 0.2952360510826111, -0.15484073758125305, -0.08348984271287918, 0.2064276933670044, -0.33008724451065063, -0.04120873287320137, 0.4939925968647003, -0.24721656739711761, 0.9556857347488403, 0.047906018793582916, 0.22730380296707153, -0.6024202108383179, -0.4273228943347931, 0.3663718104362488, 0.3721833825111389, -0.03347228094935417, -0.2300073802471161, 0.7444348335266113, -0.11378500610589981, -1.0071905851364136, 0.1524752527475357, 0.5805057287216187, 0.8348162174224854, -0.7125467658042908, -0.5287206768989563, 0.01111016608774662, 0.3026379346847534, 0.8490278720855713, -0.033945824950933456, -0.5035400986671448, -0.7923649549484253, 0.32146283984184265, -1.1829739809036255, 0.7913932800292969, -0.30255740880966187, 0.2532350718975067, 0.7935570478439331, -0.584807813167572, 0.153462752699852, 0.01788582094013691, 0.21010136604309082, -0.07162296772003174, 0.10756196081638336, 0.3868451416492462, -0.17841389775276184, 0.18389278650283813, -0.8639879822731018, 0.7157042622566223, 0.5731704235076904, -0.3295125365257263, -0.1996798813343048, -0.7642883062362671, -0.7882051467895508, -0.6414603590965271, 0.23672063648700714, 0.3828791677951813, 0.057707011699676514, 0.2574450969696045, 0.026418685913085938, -0.6606862545013428, 0.00016190065070986748, 0.4206637740135193, -0.6119818687438965, 0.3743831217288971, 1.4700182676315308, 1.0845836400985718, 0.19785867631435394, 0.4998818337917328, -0.6077418923377991, 0.23938484489917755, -0.259286105632782, -0.3503479063510895, 0.1384253054857254, -0.17287683486938477, 0.23879434168338776], [-0.26269057393074036, 2.0114192962646484, -2.2336983680725098, 0.4929974377155304, 0.6928521990776062, 0.3636435866355896, 1.491621494293213, -0.5336926579475403, 0.4684593081474304, -0.6953877210617065, -0.5014642477035522, -0.6642090082168579, 0.9079687595367432, 0.9542452692985535, 0.43884792923927307, 0.8040472865104675, 0.8979049921035767, -0.6204701066017151, 0.6565388441085815, 0.9153786897659302, -0.04164694622159004, -0.43873006105422974, 0.23863442242145538, 0.5939335823059082, -0.4104519188404083, 0.363055944442749, -0.703499436378479, -0.9149930477142334, -1.2014180421829224, -1.362367868423462, 0.5098375082015991, -0.32799679040908813, 0.2617669105529785, 0.107327900826931, -1.160182237625122, -0.016792774200439453, 1.2377567291259766, 1.011857032775879, 0.54903244972229, -0.2792036235332489, 1.9158673286437988, -0.4021987318992615, 0.003141420427709818, -1.7142643928527832, 0.34084951877593994, -0.19737836718559265, 1.2263822555541992, -1.2867348194122314, 0.11037658900022507, -0.5939464569091797, 0.5458009243011475, -0.2548089921474457, 0.6962236166000366, 0.6242616176605225, 0.7642725110054016, -0.19377441704273224, 0.2564209997653961, 0.1234837993979454, 0.5186502933502197, -0.1948477327823639, 1.3379642963409424, -0.16702833771705627, -0.16639673709869385, 0.526890218257904, 0.528293251991272, -0.6074504256248474, -0.2604891359806061, 0.2683236598968506, -0.4072893559932709, 0.23851189017295837, 0.6705740094184875, 0.16182848811149597, -0.8496447205543518, -0.17836865782737732, -1.4012296199798584, 0.6680701971054077, 0.5436201095581055, 0.7200532555580139, 0.414384663105011, 0.6665703058242798, -0.7430622577667236, -0.5872821807861328, 0.7042810916900635, -0.181522399187088, 0.4720442295074463, -0.12632428109645844, 0.023060154169797897, -0.29092341661453247, -0.5276744365692139, 1.511279821395874, 0.3041727542877197, 0.3873533308506012, 0.7182657122612, -0.2967642545700073, -0.16927766799926758, -0.01007022149860859, 0.11829552054405212, -0.5794825553894043, -0.7536958456039429, -0.8282163143157959, -0.059288427233695984, -0.7268345952033997, 0.4687325954437256, 0.5678189396858215, -0.21822497248649597, 0.791469931602478, 0.5359109044075012, -0.2423679232597351, -0.8424282073974609, -0.22770872712135315, -0.2877729535102844, 0.29914653301239014, -0.9612720012664795, -1.5803552865982056, -0.6913624405860901, 1.095920205116272, 1.5164291858673096, -0.024105418473482132, 0.6817717552185059, 0.6143604516983032, -0.33906981348991394, -0.3932625651359558, 0.35416027903556824, 0.47609376907348633, 0.5570744276046753, 0.8954012393951416, -0.9800295233726501, -1.1690316200256348, 0.6085212230682373, 0.0840839296579361, 0.7517768740653992, 0.16701993346214294, -0.5617154836654663, 0.9189208745956421, -0.7236605882644653, 1.152702808380127, -0.7122853398323059, -0.4367685317993164, 0.16812396049499512, -0.561413049697876, 0.4990890622138977, -0.5374579429626465, -0.37514275312423706, -0.7236433625221252, -0.04498446732759476, -0.7692813873291016, 0.4493982195854187, -0.2609812915325165, -0.7759830951690674, 0.20168116688728333, -1.243154764175415, 0.03669073432683945, 0.5598572492599487, 0.8554090261459351, 0.4597587585449219, 0.010767445899546146, 0.542873203754425, 0.45654749870300293, 0.3651176691055298, 0.25362104177474976, 1.1331787109375, -0.03313804417848587, -0.9156506061553955, 0.782070517539978, 0.22695326805114746, -0.02498757839202881, 1.160386323928833, 0.979955792427063, -0.11647126823663712, 1.0946993827819824, 0.0822807103395462, -0.5901702642440796, -0.31976190209388733, 1.134545922279358, 0.456643283367157, -0.9332370758056641, 1.412773847579956, -0.39645814895629883, -2.1313581466674805, -1.348833680152893, 0.8572283387184143, -0.35299593210220337, 0.08373171836137772, 0.020030293613672256, -0.05336323380470276, -0.9692203998565674, 0.5827077627182007, 0.2571190595626831, -0.922582745552063, -0.7166142463684082, -0.23030471801757812, 0.027305006980895996, -1.023283839225769, 0.021501077339053154, -0.376489520072937, -0.6680989265441895, 0.3850119113922119, -1.4471001625061035, -0.7181569337844849, 0.45343393087387085, -0.07897671312093735, -0.37234580516815186, -0.5979475378990173, 0.27567827701568604, -0.41234371066093445, 1.0653630495071411, -1.5178043842315674, 0.9889734983444214, -0.3510042428970337, 0.562024712562561, 0.8564882278442383, -0.07798640429973602, -1.1416232585906982, 0.5673927068710327, 0.13341644406318665, -1.712676763534546, 0.6617212295532227, 0.5069401860237122, -0.5126201510429382, 0.03879540041089058, -0.33995527029037476, -0.2381402552127838, -0.20595629513263702, 0.4376299977302551, 0.5732395648956299, 0.2999749183654785, -0.6179823279380798, -0.7602820992469788, -0.5855077505111694, 0.09390889108181, -0.5471364259719849, -1.0863393545150757, 0.6762786507606506, 0.5127570629119873, -0.6575967073440552, 0.11385641992092133, 0.2628142237663269, 0.9297724366188049, 0.23842522501945496, 1.6646445989608765, 0.24326887726783752, 0.4703977704048157, 0.38419467210769653, -0.21149605512619019, -0.7294315099716187, 0.9872545003890991, 0.6088828444480896, 0.12560918927192688, 0.08354247361421585, 1.544917106628418, 0.9481974244117737, -0.15398208796977997, 0.5374734997749329, -0.30019059777259827, 0.03424731642007828, -0.5352964997291565, -0.9765655994415283, 0.033719491213560104, -0.7397266626358032, 1.8434094190597534, 0.9310778975486755, -1.2165923118591309, -0.23742039501667023, -0.0973464623093605, -0.19457823038101196, 0.07834912836551666, -0.3944268822669983, -0.5132687091827393, -0.352963924407959, 0.44035351276397705, -0.13941314816474915, 0.3098851442337036, -0.0067077623680233955, 0.7887827157974243, -0.8618192672729492, -0.9172731637954712, -0.5157670974731445, 0.03567681089043617, 0.19271983206272125, 1.2079596519470215, 0.38298654556274414, -1.5997685194015503, -0.4073837399482727, 0.3194635510444641, 1.0650583505630493, 0.17898809909820557, 0.2806265652179718, 0.36520206928253174, 0.19696828722953796, -0.30562102794647217, 0.12868425250053406, 0.3082641363143921, 0.13601332902908325, 0.4948658049106598, -0.3599897027015686, 0.6268380880355835, 0.7479705810546875, -1.9244191646575928, -0.5736370086669922, 0.05416953191161156, 0.5655966997146606, 1.8464305400848389, 0.7616503238677979, 1.050661563873291, -0.17166171967983246, -0.013963605277240276, -0.6606816649436951, -0.7489047646522522, -1.28086519241333, -0.6414490938186646, -0.7100054025650024, -0.8051431775093079, -0.11534818261861801, 0.3308711647987366, -0.1252979040145874, 0.29994073510169983, -0.366788387298584, 0.4449195861816406, 1.807259440422058, -0.2906961441040039, -0.6291738152503967, -0.3849119246006012, -0.32694947719573975, -0.6559039354324341, 0.5653226971626282, 1.2212014198303223, -1.1476718187332153, -0.6899683475494385, 0.6188065409660339, 0.09340991079807281, 0.4588963985443115, 0.5139611959457397, -0.09632362425327301, -1.2984614372253418, -1.1991820335388184, 0.02246735990047455, 1.543149471282959, -0.11128281056880951, -0.4544670581817627, -0.6735665798187256, 0.2882290780544281, 0.06685100495815277, -0.4539496600627899, -0.28703802824020386, 0.6430302262306213, -0.9718316793441772, -0.24039748311042786, -0.48293426632881165, 0.2983151376247406, 0.4081823229789734, -0.8059329986572266, -0.6595480442047119, -0.6585550308227539, -0.5005329847335815, -0.36671361327171326, 0.665229320526123, 0.0683252140879631, 1.6246418952941895, -0.2122282087802887, 0.19425857067108154, 0.9030159711837769, 0.7064982652664185, -0.3999911844730377, -0.7417800426483154, 0.448916494846344, 0.7999135851860046, 0.7578120231628418, -0.09655455499887466, 0.29192453622817993, 0.5272811651229858, 0.5097281336784363, 0.22246187925338745, 0.5474591851234436, 1.4145066738128662, 0.30490177869796753, 0.15792900323867798, -1.1957672834396362, -0.09061700105667114, -0.20761840045452118, -0.9072245359420776, 0.3103591799736023, 0.7179979681968689, -0.41357529163360596, -0.5353257656097412, 1.187492847442627, 0.1025998443365097, -0.5551974177360535, -0.10467939078807831, 0.014925525523722172, 1.093205213546753, 0.10820549726486206, -0.030265217646956444, -0.28525441884994507, -0.08461356163024902, 0.31014344096183777, -1.19462251663208, -0.22996553778648376, 0.09453420341014862, 0.3955349326133728, 1.0817584991455078, -0.45719271898269653, 0.07088581472635269, -1.0951324701309204, -0.00497552752494812, 0.5417134761810303, -0.3889732360839844, 0.35304439067840576, -0.08185270428657532, -0.41778379678726196, -0.11441948264837265, 0.5820696949958801, 1.3497884273529053, -0.5046313405036926, -0.31583866477012634, -0.06516920775175095, -0.3127886652946472, -0.2433624267578125, -0.7980043888092041, -0.5441420078277588, 0.23852887749671936, -0.8647211194038391, -0.14836350083351135, -0.04748857766389847, -0.5078795552253723, 1.4456119537353516, 0.41131722927093506, 0.3820263147354126, 0.05804537981748581, -0.25519609451293945, -0.6375430226325989, 0.06576407700777054, 0.26777973771095276, -0.10134708881378174, -0.42008620500564575, -0.37401172518730164, 0.5327736139297485, -0.4030492901802063, 0.42235565185546875, 0.4336407780647278, 0.6585126519203186, -0.15215378999710083, 0.3402481973171234, 0.05102530121803284, 0.6321139931678772, 1.1357605457305908, 0.9784810543060303, 0.6010862588882446, -0.25714921951293945, -0.29162442684173584, 0.4238853454589844, -0.940781831741333, 0.3523573577404022, 0.9756699800491333, 0.5146024823188782, 0.8901586532592773, -1.4842360019683838, -0.8927700519561768, 0.7749748229980469, 0.505622386932373, 0.6231623291969299, 1.0429720878601074, -0.44319793581962585, 0.5473634004592896, 0.43196922540664673, 0.1984228491783142, 0.03968214616179466, 0.1667291522026062, -0.07857357710599899, -0.5052698254585266, 0.7268751263618469, -1.138807773590088, 0.49565669894218445, -0.6466060876846313, -0.682146430015564, -0.4496658444404602, -0.9018077850341797, 0.06151410937309265, 0.44083887338638306, 0.6514855623245239, 0.911104679107666, -0.5127918720245361, -0.8086066842079163, -0.20865553617477417, -0.5726895928382874, 0.474854439496994, -0.6245242357254028, -0.12042311578989029, -1.1166762113571167, -0.1970173418521881, -0.5050241947174072, 0.565375566482544, -0.3600369095802307, -0.8022246360778809, -0.6725780963897705, -1.3095595836639404, -0.04646521434187889, 1.0824575424194336, 1.5022475719451904, 0.6873831748962402, -0.24990767240524292, 0.37346935272216797, -0.2734885811805725, -1.189269781112671, 0.142356276512146, 0.7872583866119385, 0.21416157484054565, -0.037625752389431, -1.027363657951355, -0.43616968393325806, -0.002361040562391281, 0.004517490044236183, -0.23113776743412018, 0.9400039911270142, 0.7231108546257019, 0.8489489555358887, -0.3742603063583374, -0.678591787815094, -0.06410536170005798, -0.5805956125259399, 0.7174372673034668, 0.7786324620246887, -0.852377712726593, -0.5462737083435059, -0.6342540383338928, -0.8559633493423462, 0.8455460071563721, -0.8122730255126953, -0.8621054887771606, 1.0793702602386475, 0.26369673013687134, 0.13317489624023438, 0.43068528175354004, -0.8127452731132507, 0.6316298842430115, 0.016963263973593712, -0.25353896617889404, -1.3015968799591064, 0.09746788442134857, 0.43248414993286133, -0.14706745743751526, -0.4206162095069885, 0.3716297149658203, -0.1017417311668396, 0.05605969950556755, -0.4918431043624878, 0.3191552460193634, 0.5933464765548706, 0.9977996349334717, -0.004427550360560417, -0.6514534950256348, 0.2421913892030716, -0.6656690239906311, -0.8186299800872803, -0.06654669344425201, 0.6612812876701355, 0.22170360386371613, -0.8193974494934082, -0.07570675760507584, -0.20454207062721252, -0.4672602415084839, -0.30332744121551514, -0.43303075432777405, 0.5719465017318726, 0.4846835434436798, 0.561267077922821, -0.25568825006484985, -0.1257420927286148, -0.4288538992404938, -0.763357400894165, 0.2044440507888794, 0.5988982915878296, -1.3184314966201782, -0.26289260387420654, 0.4825974106788635, -0.744732677936554, -1.0398002862930298, -0.025688057765364647, 0.10788464546203613, -1.4252009391784668, -0.9772909283638, -1.2436251640319824, 0.7232221364974976, 0.427232563495636, -0.9106371402740479, 0.6702471971511841, 0.5538550615310669, -1.5415964126586914, 0.4775247573852539, -0.5404620170593262, -1.4360486268997192, 0.17468306422233582, -0.8880102634429932, 0.6353490352630615, -0.3064448833465576, -0.3013104200363159, 0.010254180058836937, 0.999243974685669, -1.4851853847503662, -1.279937982559204, -0.9238395094871521, -0.4377080798149109, 1.5659878253936768, 0.46344733238220215, -0.6017889380455017, 1.669480800628662, 0.9765470623970032, -0.4136342406272888, -0.07313628494739532, 0.33301445841789246, -0.6679912209510803, -0.09925080090761185, 0.5788660049438477, 0.6094176769256592, 0.6274701356887817, 1.1108403205871582, 0.31605714559555054, 0.9744268655776978, 0.167551651597023, 1.088139295578003, -0.8186361789703369, -0.7822808027267456, 0.4050236642360687, 0.9482909440994263, -0.7633578777313232, -0.4900081157684326, -0.6162055730819702, -0.5087133646011353, -1.1487654447555542, -0.2494555413722992, 0.6232054233551025, -0.5316593050956726, 0.5059218406677246, -0.46667641401290894, 0.811269998550415, -0.6045956015586853, 0.4088911712169647, 0.35318055748939514, -0.15030185878276825, -0.4096721410751343, 0.22459127008914948, -0.32819753885269165, -1.590163230895996, 0.47039973735809326, 0.3027569651603699, -0.29890328645706177, -0.18418382108211517, 0.07116229832172394, 0.3494841158390045, 0.30574703216552734, -0.42006707191467285, 1.959320068359375, 0.6042090058326721, -0.6981472373008728, -0.1137780100107193, 0.40550678968429565, -0.10263322293758392, 0.4044750928878784, -0.3431853652000427, -0.3488963842391968, -0.7827485799789429, 0.9006261229515076, 0.2958064675331116, 0.17868191003799438, -0.3764718174934387, 0.5081087350845337, -0.5308345556259155, 0.2790171205997467, 1.3510868549346924, -0.9979552030563354, -0.25343579053878784, 1.4925488233566284, 0.11515539884567261, -0.6519705057144165, 0.4761820435523987, 0.40391770005226135, -0.1075267642736435, -0.7067677974700928, 0.33249062299728394, 0.7960066795349121, -0.8441070318222046, 0.5632385015487671, -0.4890797436237335, -0.4522758722305298, 0.06478658318519592, -0.6285920739173889, -1.513300895690918, -0.02899783104658127, -0.2703174352645874, -0.8868210911750793, 1.011546015739441, -1.2070021629333496, -0.40099868178367615, 0.7622008323669434, -0.15376709401607513, -0.03395049646496773, -0.162305548787117, -0.050955332815647125, 0.027334697544574738, -0.19035673141479492, 1.1491109132766724, -0.38267815113067627, 1.4485032558441162, -0.021464388817548752, -0.023627422749996185, -1.134710431098938, -0.1095079705119133, 0.2388937920331955, -0.05797616019845009, -0.3349906802177429, 0.10004738718271255, 1.0610406398773193, -0.08137556910514832, -0.6003401279449463, 0.19261473417282104, -0.15207186341285706, 0.39023858308792114, 0.10568058490753174, -0.14575359225273132, 0.5054386854171753, 0.7049840092658997, 0.5127711296081543, -0.6231209635734558, -0.4235053062438965, -0.6322464346885681, 0.3018656373023987, -0.5205928087234497, -0.058527104556560516, 0.08264818787574768, 0.9780523777008057, 0.503089189529419, -0.24727141857147217, -0.8233237266540527, -1.032639741897583, 0.4773940443992615, 0.19891777634620667, -0.18938995897769928, -0.36934906244277954, -0.08274690806865692, -0.5103470683097839, -0.7747089862823486, 0.05011153966188431, 0.47865891456604004, -0.2244039922952652, 0.5621212720870972, -1.1973400115966797, -0.8326431512832642, -0.4847605526447296, 0.41086632013320923, 1.4962728023529053, 0.6089668869972229, 0.30829280614852905, 0.39090055227279663, -1.3175266981124878, -0.12171228229999542, 0.07084901630878448, 0.8511179089546204, 0.3987749516963959, 1.3806633949279785, 2.122384786605835, 0.29429003596305847, 0.07181181758642197, -0.2171260118484497, 0.48199158906936646, -0.6847634315490723, -0.3570733070373535, -0.6663975715637207, -0.5373631715774536, -0.7365257740020752], [0.16929972171783447, 1.4101616144180298, -3.0822412967681885, -0.3959779143333435, 0.3171832859516144, 0.4027473032474518, 1.1384221315383911, -1.129006266593933, 0.10062458366155624, -0.970025360584259, -0.11561718583106995, -0.21165087819099426, 0.3884228765964508, 1.2441200017929077, 0.7955259680747986, 0.9754440784454346, 1.107479453086853, -0.6606162786483765, 0.45860496163368225, 0.21131333708763123, 0.08712107688188553, -0.8118746280670166, 0.5310503244400024, 0.7717674970626831, -0.6558167338371277, -0.29048678278923035, -0.9122682213783264, -0.37997502088546753, -1.2976000308990479, -1.5631163120269775, 0.6094422936439514, -0.6751211285591125, -0.5918026566505432, -0.9823375940322876, -1.5797522068023682, -0.786465048789978, 0.8719318509101868, 0.5876774787902832, 0.4215773344039917, -0.09860426187515259, 1.19271981716156, -0.51641845703125, 0.19555895030498505, -1.1168158054351807, 0.8702453374862671, -0.7299513816833496, 1.76693856716156, -1.1473180055618286, -0.2873325049877167, -0.4113541543483734, 0.3810955882072449, -0.5424908995628357, 0.2243167757987976, 0.30924543738365173, 0.5441774725914001, -0.3165150582790375, 1.1570676565170288, 0.5833053588867188, 0.33819580078125, -0.3861781656742096, 1.3117581605911255, -0.40788090229034424, 0.2664754390716553, 0.874168336391449, -0.0937063992023468, -0.584723949432373, -0.34747952222824097, 0.22970591485500336, -0.05410327389836311, -0.08111545443534851, 1.2916240692138672, -0.32804960012435913, -0.3910471200942993, -0.25868117809295654, -1.8146042823791504, 0.7787150740623474, 0.9474179148674011, 0.3403931260108948, -0.18741676211357117, 0.5077787041664124, 0.21403953433036804, -0.7118709087371826, -0.2062217742204666, -0.4002017080783844, 0.8269836902618408, 0.4009975790977478, 1.091957688331604, -0.3989965617656708, -1.1852951049804688, 1.2334119081497192, 0.32665756344795227, -0.5833746790885925, 1.0540999174118042, -0.39210015535354614, -0.0711640864610672, -0.4292597472667694, 0.1164344772696495, -0.254478394985199, -0.911028265953064, -1.0211910009384155, -0.6210671067237854, -0.9725121855735779, 0.051263172179460526, -0.0667872279882431, 0.38428178429603577, 1.1864739656448364, 0.7891483902931213, -0.5658130645751953, -0.5436538457870483, -0.4670662581920624, -0.30728498101234436, 0.40750303864479065, -0.5917841792106628, -0.8023138046264648, -0.828959584236145, 1.5297750234603882, 1.8529456853866577, -0.4558458626270294, 0.6939961314201355, 1.5220916271209717, -0.47900885343551636, -0.6383665204048157, -0.40283605456352234, 0.85679692029953, 0.9896119832992554, 1.046937346458435, -0.9882315993309021, -0.6583964824676514, 0.561352550983429, -0.18184687197208405, 0.7386539578437805, -0.07988999783992767, -0.4461783170700073, 1.098158359527588, -1.0249496698379517, 0.6498847007751465, -0.12462998181581497, 0.04135879874229431, 0.8857417106628418, 0.36782342195510864, 0.15522170066833496, -0.8186819553375244, -0.3256031274795532, -0.6230951547622681, 0.16083136200904846, 0.34408146142959595, -0.07264763861894608, -0.04757281020283699, -0.5721502304077148, -0.11791862547397614, -0.5346806049346924, 0.5083780288696289, 0.4152297377586365, 1.065128207206726, 0.2239614576101303, -0.20107485353946686, 0.009750776924192905, 0.1592094451189041, 0.8649749159812927, 0.20751558244228363, 1.445747971534729, -0.08872710168361664, -0.4488685429096222, 0.5498854517936707, 0.5133881568908691, -0.44514986872673035, 0.136947900056839, 0.7387660145759583, 0.18465514481067657, 0.6556522250175476, -0.8208406567573547, -0.6932047009468079, -0.5415316820144653, 0.15434181690216064, 0.4768821895122528, -0.33837562799453735, 1.7054173946380615, -0.7487560510635376, -1.8281599283218384, -1.1038204431533813, 0.20021022856235504, -0.1362723708152771, 0.681069552898407, 0.07219855487346649, 0.08846043050289154, -0.4865931272506714, 0.2130812406539917, -0.41146257519721985, -0.9079980254173279, -0.6377514600753784, -0.3148641586303711, -0.3235219120979309, -0.5631729960441589, 0.32384607195854187, -0.6701923608779907, -0.6870296001434326, 1.0925631523132324, -1.307889461517334, -0.37786582112312317, 0.1843688189983368, -0.12690649926662445, 0.1499357670545578, -0.7035434246063232, 0.21932241320610046, -0.43963921070098877, 1.504140019416809, -0.3098110258579254, 0.9571660757064819, -0.2879191040992737, -0.25334852933883667, 0.8341786861419678, 0.6144946813583374, -0.9816992282867432, 0.02289498783648014, 0.13834019005298615, -1.837928056716919, 0.6068100929260254, 0.9312645196914673, -0.5648164749145508, -0.14049988985061646, 0.22898131608963013, 0.559136152267456, 0.3361155092716217, 0.00940363947302103, 0.32658445835113525, -0.3386511206626892, -1.1617541313171387, -0.5683713555335999, -0.20941102504730225, -0.1452711671590805, -0.33935147523880005, -0.5186963081359863, 0.21963709592819214, 0.34055793285369873, -0.4765728712081909, 0.06003076955676079, 0.6460596323013306, 1.1063547134399414, 0.3918803632259369, 1.0367244482040405, 0.6856208443641663, -0.11611419171094894, -0.333476722240448, -0.6229157447814941, -0.5523785352706909, 1.6271579265594482, 1.0836553573608398, 0.03980432078242302, 0.14159469306468964, 1.5744788646697998, 1.8852440118789673, -0.33981695771217346, 0.47607240080833435, -0.1388060450553894, -0.23627698421478271, -0.23980584740638733, -1.1310296058654785, 0.558284342288971, -0.8522430658340454, 1.2022182941436768, 0.804244875907898, -0.9002599716186523, 0.07095666974782944, -0.4169601500034332, 0.5827407836914062, -0.36292240023612976, -0.6861838698387146, 0.4208104610443115, -0.04718296229839325, -0.25131452083587646, -0.153213769197464, 0.06551478803157806, -0.0008138539269566536, 0.6574157476425171, -1.0505810976028442, -1.008886456489563, -0.5461398363113403, 0.43294423818588257, -0.020019829273223877, 1.6883264780044556, -0.17108634114265442, -2.167924165725708, -0.36756131052970886, 0.4198002219200134, 0.8358104228973389, 0.38608527183532715, -0.45997557044029236, 0.80601567029953, 0.20249372720718384, -0.9426900744438171, 0.7835072875022888, 0.2857104539871216, 0.16208331286907196, -0.014790000393986702, -0.025771310552954674, 0.27321064472198486, 1.263859748840332, -0.5077283978462219, -0.575555145740509, -0.43432071805000305, 0.04598259925842285, 1.466101884841919, 0.15053729712963104, 1.1585001945495605, -0.08399134129285812, 0.5016459822654724, -0.07221788167953491, -0.38202622532844543, -0.23683632910251617, -0.8738523125648499, -0.6999766230583191, -0.274402379989624, -0.2190876007080078, 0.014157038182020187, -0.43547943234443665, 1.0497618913650513, 0.09604883193969727, 0.3857101798057556, 1.2286652326583862, 0.1516154557466507, -0.855198085308075, 0.19103631377220154, 0.02021515928208828, -0.6590859889984131, 0.42060908675193787, 0.9010944962501526, -1.2333927154541016, -0.43038469552993774, -0.27389079332351685, 0.3933463394641876, 0.14693264663219452, 0.14109653234481812, 0.5720295906066895, -1.0380254983901978, -0.500953197479248, 0.07434285432100296, 1.7084065675735474, -0.18150685727596283, -0.10825556516647339, -0.1606757789850235, 0.8327076435089111, 0.027736375108361244, -0.5381829142570496, -0.8332752585411072, 0.7823852300643921, -0.3577013909816742, 0.17113010585308075, 0.3354690968990326, 0.3959420621395111, 0.9481950402259827, -0.6659355759620667, -0.27667298913002014, -0.7181344628334045, -0.15112680196762085, -0.22940295934677124, 0.4792536795139313, 0.03968040645122528, 1.1097912788391113, 0.24017761647701263, 0.4988463521003723, 0.48184657096862793, 0.9285743236541748, -0.11547920107841492, -1.1862002611160278, 0.6341949105262756, 0.4194563031196594, 1.5052001476287842, 0.31221169233322144, 0.15331856906414032, 0.7995601296424866, 0.30328473448753357, -0.1423197239637375, -0.10437901318073273, 0.9136380553245544, 0.04669030383229256, -0.03588982671499252, -0.25842612981796265, -0.018218034878373146, 0.5565174221992493, -0.6987921595573425, 0.5087830424308777, 0.43891069293022156, -1.1582564115524292, -0.27022817730903625, 1.245129942893982, 0.46002593636512756, -0.7024285793304443, -0.42351478338241577, 0.5597983598709106, -0.11717800050973892, -0.24914364516735077, 0.2502003312110901, 0.07273554056882858, 0.1401969939470291, 0.4993569254875183, -0.9552090167999268, -0.1143757700920105, 1.098607063293457, -0.1551102101802826, 0.6955353021621704, -0.7675998210906982, -0.02156871370971203, -1.3795193433761597, 0.423726350069046, 0.36215415596961975, -0.507342517375946, 0.6384831666946411, -0.30910035967826843, -0.36528778076171875, -0.25248053669929504, 0.6545921564102173, 1.356984257698059, -0.5933350324630737, -0.11423857510089874, -0.2889280617237091, -0.33195871114730835, -0.22108852863311768, -0.306016206741333, -0.7221257090568542, 0.3982258141040802, -0.8052533268928528, 0.7648022174835205, 0.21107079088687897, -0.049360062927007675, 0.8268499374389648, 0.3373260796070099, 0.5894221067428589, 0.049157194793224335, 0.2373746931552887, -1.399300217628479, 0.30608534812927246, 0.3590940535068512, -0.5129749774932861, -0.7213110327720642, -0.22311550378799438, 0.31649303436279297, -0.1098281666636467, 0.12227089703083038, 0.8654654026031494, 0.8863031268119812, 0.11438194662332535, 0.1420644223690033, -0.545226514339447, 0.8578542470932007, 1.473433256149292, 1.4843316078186035, 1.3599532842636108, -0.5810451507568359, 0.003036783542484045, 0.3217774033546448, -1.26633620262146, -0.2634502351284027, 0.6004208922386169, 0.807145893573761, 1.348612666130066, -1.8215254545211792, -0.6712039113044739, 0.4735735356807709, 0.5988741517066956, 0.2757609486579895, 1.0827550888061523, -0.20688007771968842, -0.2048252522945404, 0.16865520179271698, -0.0014264564961194992, 0.4319404661655426, 0.12328983098268509, -0.49170053005218506, -0.5000820159912109, 0.8181315660476685, -1.023725986480713, 1.0906426906585693, -1.0011295080184937, -0.49789077043533325, -0.03891478851437569, -0.6906682252883911, 0.591384768486023, 0.9757914543151855, 0.49339014291763306, 1.4457751512527466, -0.019768906757235527, -0.9828906655311584, -0.46058669686317444, -1.095821738243103, 0.7211762070655823, -0.4938296675682068, 0.1049651950597763, -0.824246883392334, -0.3279697895050049, -0.46296387910842896, 0.5869256258010864, -0.48608070611953735, -0.6780022382736206, 0.0736382007598877, -1.4828810691833496, 0.4438602328300476, 0.4891706705093384, 0.6300000548362732, 0.1350964456796646, -0.796352744102478, 0.21109560132026672, 0.07022249698638916, -1.0667511224746704, -0.07503850013017654, 0.6316882967948914, 0.016515957191586494, 0.17798149585723877, -1.232384443283081, -0.807341992855072, 0.605688214302063, -0.06389254331588745, -0.24887917935848236, 0.03127853944897652, 0.8835394978523254, 1.6083565950393677, -0.8408352136611938, -0.27684882283210754, -0.01878528669476509, -0.29396966099739075, 0.8019323348999023, -0.0073944199830293655, -0.028099622577428818, -1.352612853050232, -0.8491153717041016, -1.6040881872177124, 0.7764459252357483, -0.6391651034355164, -0.5986232757568359, 1.0665044784545898, 0.5501449704170227, 0.6873553395271301, 0.7745851874351501, -0.42687246203422546, 0.27630674839019775, 0.5459844470024109, -1.170095682144165, -0.8005552291870117, 0.30599287152290344, 0.8337897658348083, 0.2515328824520111, -0.36244261264801025, 1.004014492034912, 0.3451218605041504, -0.08814848959445953, -0.35095831751823425, 0.39917683601379395, -0.24512577056884766, 0.4539095461368561, 0.11341513693332672, 0.030038509517908096, -0.11396002024412155, -0.7175747752189636, -0.7626832723617554, 0.23830486834049225, 0.3928702175617218, 0.14485570788383484, -0.2965206503868103, -0.6639001369476318, -0.2353346198797226, -0.21839550137519836, 0.18666352331638336, -0.3990607261657715, 1.27420175075531, 0.8274683356285095, -0.02382243238389492, -0.16388177871704102, -0.3784768283367157, 0.28814300894737244, -0.42257779836654663, 0.21776391565799713, 0.09730749577283859, -2.152337074279785, 0.014469554647803307, 0.559123158454895, -1.2912198305130005, -0.8723791241645813, -0.24290211498737335, 0.04961560294032097, -1.4999951124191284, -0.9457247853279114, -0.8455987572669983, 0.4596710503101349, 1.0518056154251099, -0.745298445224762, -0.0996503159403801, 0.8879314064979553, -1.0479782819747925, 0.1228090450167656, -0.33726802468299866, -0.4013060927391052, -0.12364931404590607, -0.7430512309074402, 0.3759456276893616, 0.6880264282226562, 0.31624966859817505, -0.004075328819453716, 0.9964417815208435, -1.828176498413086, -1.0124846696853638, -1.0178145170211792, -0.6787549257278442, 0.9384507536888123, 0.8715365529060364, -1.1996163129806519, 0.9920644760131836, 1.2372958660125732, 0.007589858025312424, -0.14194656908512115, 0.3278225362300873, 0.02962728962302208, 0.5200198888778687, -0.1068175882101059, 0.6224192976951599, 0.2772268056869507, 0.6302675008773804, 0.24816009402275085, 1.2238889932632446, 0.6655367612838745, 0.9645123481750488, -0.5779192447662354, -0.5211672782897949, 0.07323861867189407, 1.1498188972473145, -1.473427653312683, -0.49523860216140747, -0.207221120595932, -1.2483936548233032, -1.1848325729370117, -0.31296205520629883, 0.3888109028339386, -0.47048139572143555, -0.016078099608421326, -1.1709089279174805, 0.7868117094039917, -0.8862394094467163, 0.12222666293382645, -0.06136227771639824, -0.05431602895259857, 0.3848222494125366, 1.1114439964294434, -0.9397552013397217, -0.8430331349372864, 0.1748633235692978, -0.25192663073539734, -0.3946431577205658, -1.1464331150054932, 0.16342796385288239, -0.17855700850486755, 0.07399271428585052, -0.6890990138053894, 1.7410866022109985, 0.6029654145240784, -0.29266631603240967, 0.14110079407691956, 0.3234487473964691, 0.4454096257686615, 0.27824243903160095, -0.6791248321533203, -0.9890503287315369, -0.678091824054718, 1.6865664720535278, 0.6413828730583191, 0.7091473937034607, 0.17398323118686676, -0.1957857757806778, -0.07509731501340866, 0.13959690928459167, 1.0246057510375977, -1.883447289466858, -0.22508738934993744, 0.6872912645339966, 0.11201488971710205, -0.20026259124279022, 0.31544506549835205, 0.5895508527755737, 0.37791943550109863, -0.48625072836875916, 0.752541720867157, 0.3717937171459198, -0.8306861519813538, 1.2316107749938965, -0.08526117354631424, -0.28524813055992126, -0.28817853331565857, -0.1696341335773468, -0.9341937303543091, -0.12414462864398956, -0.2186303287744522, -0.7730350494384766, 0.3666325509548187, -1.384461760520935, 0.26834338903427124, 0.5454273819923401, -0.8840712904930115, -0.12584124505519867, -0.11289827525615692, 1.1145379543304443, -0.031465958803892136, -0.4937208592891693, 0.5905942916870117, 0.09629732370376587, 1.2449297904968262, 0.3210165798664093, 0.15043754875659943, -1.6953856945037842, -0.2573888897895813, -0.02974294312298298, -0.7122797966003418, -0.13562829792499542, -0.37498632073402405, 0.3546619713306427, -0.2843400835990906, -0.8351455330848694, 0.6032931208610535, -0.14287599921226501, -0.1862923502922058, 0.09234710782766342, -0.8068573474884033, -0.2461022436618805, 1.19815194606781, 0.6329699158668518, 0.18228018283843994, -0.5850820541381836, -0.8364099860191345, 0.812301754951477, -0.7765295505523682, 0.44738635420799255, -0.47775155305862427, 0.6441017985343933, -0.40743425488471985, -0.05928266793489456, -0.5972024202346802, -0.9506908655166626, 0.338937371969223, -0.735546350479126, -0.1327277272939682, 0.01696551777422428, -0.34953489899635315, -0.15978200733661652, -1.3249653577804565, 0.47850877046585083, 0.6941253542900085, -0.07010604441165924, -0.21010762453079224, -1.0846644639968872, -0.8630236387252808, -0.04159722849726677, -0.17960357666015625, 0.0476071760058403, 0.3982005715370178, 0.3850715160369873, 0.10139204561710358, -1.0156716108322144, 0.03942758962512016, 0.4062829613685608, -0.0024155848659574986, 0.33640339970588684, 0.9053518772125244, 1.414316177368164, 0.6837261319160461, 0.18389669060707092, -0.45035117864608765, -0.013592347502708435, -0.8553619980812073, -0.18809325993061066, -0.6290979981422424, -0.3913171589374542, -0.22772128880023956], [0.5282629132270813, 1.6232267618179321, -2.8511526584625244, -0.1685606986284256, 0.5842646360397339, -0.03017278201878071, 0.9437267184257507, -0.13223887979984283, 0.15241269767284393, -0.27334100008010864, -0.8732209205627441, -0.06864295154809952, -0.42386868596076965, 0.12076998502016068, 0.7348502278327942, 0.5215221047401428, 0.8771207332611084, -0.7366580963134766, 0.34650182723999023, 0.5196231603622437, -0.15973010659217834, -0.04995044693350792, 0.3016519844532013, -0.20240335166454315, -0.4907805621623993, 0.9147211909294128, -0.8931825757026672, -0.1492389291524887, -0.18548917770385742, -1.361373782157898, 1.0211137533187866, -0.7030619382858276, 0.23840248584747314, -0.7158133387565613, -1.6537432670593262, -0.05980653315782547, 1.2262660264968872, 1.2223715782165527, 0.7218245267868042, 0.5329490900039673, 0.6273571848869324, -0.6017782688140869, 0.5821639895439148, -1.3426768779754639, -0.33701035380363464, 0.43110087513923645, 0.7352538108825684, 0.40950244665145874, -0.34647026658058167, -0.3394204080104828, 0.8051391839981079, -1.0086721181869507, 0.06543061137199402, 0.6451385021209717, 1.5031908750534058, -0.9225350618362427, -0.057535722851753235, -0.37174537777900696, 0.3042508065700531, -0.9560897946357727, 1.438683032989502, 0.5178950428962708, -0.4876239001750946, 0.7859818339347839, 0.24882830679416656, -0.5515839457511902, 0.45297807455062866, 0.5356830954551697, 0.11878112703561783, -0.5120239853858948, 0.4152301847934723, 0.3676033914089203, -0.8251270651817322, 0.14226971566677094, -0.6083292365074158, 0.5440050363540649, 0.46671295166015625, 0.9287704825401306, 0.7160620093345642, 0.9518672227859497, -0.12606702744960785, -0.19569048285484314, 0.6850468516349792, -0.11308244615793228, 0.9026884436607361, 0.07609743624925613, 0.8419991731643677, -0.5519885420799255, -0.013645418919622898, 2.042081117630005, 0.25890785455703735, -0.059522807598114014, 0.6742025017738342, -0.20634731650352478, -0.47209882736206055, -0.6211192011833191, 0.4528493583202362, 0.3093309998512268, -1.3676661252975464, -0.3371962010860443, -0.772699773311615, -1.3122822046279907, 0.3741820156574249, -0.6659296154975891, -0.37091878056526184, 0.8316687941551208, -0.16761276125907898, -0.22406423091888428, -0.4074912965297699, -0.22379744052886963, -0.06292359530925751, 0.7253360152244568, -0.7497643232345581, -1.5245648622512817, -0.2479410469532013, 0.7254437804222107, 1.4707913398742676, -0.34042617678642273, 0.062090251594781876, 0.5747948288917542, -0.2288903146982193, -0.4319941997528076, -0.4783633053302765, 1.2663216590881348, 0.19842518866062164, 0.4115808606147766, -0.7126296758651733, 0.25749120116233826, 0.571013331413269, -0.3198258578777313, 0.21264095604419708, 0.2699510455131531, -0.6987191438674927, 0.8312110304832458, -0.8269022703170776, 1.2322319746017456, -0.30349865555763245, -0.248849019408226, -0.5448383092880249, 0.14261308312416077, 0.5732617378234863, -0.13124430179595947, -0.09973060339689255, -0.26371392607688904, -0.6154563426971436, -0.27908438444137573, -0.19934885203838348, -0.5592212080955505, -0.5199173092842102, 0.6530314087867737, -0.7246450185775757, 0.7126919031143188, -0.12428274750709534, 0.23973233997821808, 0.7702597379684448, -0.4149557054042816, -0.11539050936698914, 0.324923574924469, 0.2874956727027893, 0.736910879611969, 0.7568473219871521, -0.2934744358062744, -0.9689946174621582, 0.40740352869033813, 0.6449424624443054, -0.4343240559101105, -0.4460417330265045, 1.533677577972412, 0.002925530541688204, 0.8422108292579651, -0.3969722092151642, -0.7580869197845459, -0.22423461079597473, -0.4042585790157318, -0.210385262966156, 0.48527979850769043, 1.373586893081665, -0.7673208713531494, -1.440949559211731, -1.1111549139022827, 0.5004854202270508, -0.1548081934452057, 0.46663767099380493, -0.06209971755743027, 0.38121530413627625, -0.5986777544021606, 0.7193583250045776, -0.41199880838394165, -0.41626811027526855, -0.3314880132675171, -0.6498023271560669, -0.1542624682188034, -0.16504333913326263, 0.35184216499328613, -0.46118471026420593, -0.873323380947113, 0.9788697957992554, -0.9519496560096741, -0.07444626837968826, -0.7915846109390259, 0.031711943447589874, -0.4664197266101837, -0.4137677252292633, 0.38251861929893494, -0.6020734906196594, 0.911523699760437, -0.8685393929481506, 0.7963494658470154, -0.7014105319976807, -0.5468330979347229, 0.8350479602813721, 0.1354185938835144, -0.38229891657829285, 0.23770597577095032, 0.21665365993976593, -1.2661327123641968, -0.06114200875163078, 0.5232771635055542, -0.5537495613098145, 0.5341600179672241, 0.5339253544807434, 0.18155667185783386, 0.8683897256851196, -0.0025402086321264505, 0.4118506908416748, -0.521475613117218, -0.8466241359710693, -0.4068705439567566, -0.36419349908828735, -0.4008499085903168, -0.07049200683832169, -0.8396075963973999, 0.8921579122543335, 0.18861974775791168, -0.7644494771957397, 0.2787136137485504, -0.5857254266738892, 0.5080357789993286, -0.048950809985399246, 0.8444715142250061, 0.6375975608825684, 0.5445282459259033, -0.28837910294532776, -0.2812599837779999, -1.056612253189087, 0.6658169031143188, -0.11254191398620605, -1.012096881866455, 0.3662482798099518, 0.8065603375434875, 0.5015037059783936, -0.22449390590190887, 0.4708613455295563, -0.05741839110851288, -0.06459805369377136, -0.4083150327205658, -0.8306195139884949, -0.07615025341510773, -0.6741278767585754, 1.5616382360458374, 0.6966391205787659, -0.2985006868839264, 0.2036903202533722, 0.3411486744880676, -0.5321729183197021, -0.4452359080314636, -0.3741142451763153, -0.2152635157108307, -0.7684791684150696, -0.15258939564228058, -0.06000099703669548, 0.43668332695961, 0.1054985523223877, 0.7599144577980042, -0.26881712675094604, -0.9055840373039246, 0.17899321019649506, -0.220280259847641, 0.11390602588653564, 0.36566299200057983, -0.3518903851509094, -1.3638770580291748, -0.3436795473098755, 0.4253186583518982, 0.6316262483596802, -0.2046075463294983, -0.05874112248420715, -0.20085509121418, 0.4371323585510254, 0.012377124279737473, 0.20632487535476685, 0.15133801102638245, -0.2889293432235718, 0.8813958168029785, -0.39581114053726196, 0.29670417308807373, 1.4073495864868164, -0.34860628843307495, -0.698214590549469, -0.5094029307365417, 0.4070991277694702, 1.2665891647338867, 0.14619077742099762, 1.1975141763687134, 0.2476244419813156, 0.1427074670791626, -0.35039037466049194, -0.2650146782398224, -1.2159385681152344, -0.25366005301475525, -1.1856082677841187, -0.9988745450973511, 0.3740127682685852, 0.5875067114830017, 0.0008813384920358658, 0.851545512676239, -0.311345636844635, 0.18487992882728577, 1.3277643918991089, -0.6396785378456116, 0.07995540648698807, -0.18176032602787018, 0.06394737213850021, -0.5603997707366943, -0.010502945631742477, 1.0732313394546509, -1.2775886058807373, -0.25553515553474426, -0.5634902715682983, 0.5399630069732666, 0.9559435844421387, -0.07742604613304138, 0.36509114503860474, -1.6514285802841187, -0.9834167957305908, 0.13505740463733673, 0.6182674169540405, 0.25636816024780273, -0.05807334929704666, -0.27917927503585815, 0.41798555850982666, 0.9629608988761902, -0.47368282079696655, -0.5820030570030212, 0.6760753393173218, -0.28742659091949463, -1.1399847269058228, 0.21314886212348938, 0.43732258677482605, 0.3082354962825775, -0.6142244935035706, -0.7687952518463135, -0.6687250137329102, -0.38545092940330505, 0.2084779292345047, 0.16425380110740662, 0.10045839101076126, 1.1414276361465454, -0.03349582850933075, -0.2980635464191437, 0.8547637462615967, 0.3029005825519562, 0.4548579454421997, -1.2557398080825806, 0.2592044770717621, 0.656879186630249, 1.0500404834747314, 0.39929258823394775, 0.4802609384059906, 0.07960773259401321, 0.5037857294082642, -0.7492687106132507, 0.633728563785553, 1.461267113685608, 0.278312623500824, 0.24156232178211212, -0.5778475403785706, -0.39980652928352356, -0.08148077875375748, 0.11692992597818375, -0.4219822585582733, 0.1840590536594391, -0.647505521774292, -0.6878513097763062, 1.1760838031768799, 0.34367868304252625, 0.07022538781166077, -0.3758651912212372, 0.3466182053089142, 0.9238764047622681, -0.35809335112571716, -0.22909200191497803, -0.41606688499450684, -0.07666719704866409, 0.6676979064941406, -1.025256633758545, -0.1540081948041916, 0.3885449469089508, 0.12487111240625381, 0.42260295152664185, -0.4439740777015686, 0.6781728863716125, -0.34642642736434937, 0.6110095381736755, 0.6192811727523804, -0.4231191575527191, -0.056416574865579605, 0.45416438579559326, -0.15690448880195618, -0.39772310853004456, -0.1831478625535965, 0.1704087257385254, -1.0923773050308228, -0.205749049782753, 0.7196674346923828, 0.0861923024058342, 0.015926387161016464, 0.1289701610803604, -0.30978643894195557, 0.3919442892074585, -0.5018953680992126, 0.404379665851593, -0.1834843009710312, -0.6223249435424805, 0.5989074110984802, 0.3426710069179535, 0.0658775344491005, 0.6076812148094177, -0.23041602969169617, -1.125138759613037, 0.5311988592147827, 0.3324602544307709, -0.19288723170757294, -0.5042257308959961, 0.12238489836454391, 0.6977643966674805, -0.19686970114707947, 0.5894811749458313, 0.07527667284011841, 0.7983503937721252, 0.25999027490615845, -0.060638878494501114, 0.5864912271499634, 0.9213356971740723, 0.47007128596305847, 1.383198618888855, -0.4471982419490814, -1.309687614440918, -0.3529498279094696, 0.12073035538196564, -0.9860404133796692, 0.4493895471096039, 0.7942984104156494, -0.32921892404556274, 1.8512024879455566, -1.6923191547393799, 0.10211130976676941, 0.9234803915023804, 0.36384716629981995, 0.48269033432006836, 0.3857229948043823, -0.6841370463371277, 0.008817414753139019, 0.5389615297317505, -0.13664188981056213, -0.3400774300098419, 0.2812061309814453, 0.729200541973114, -0.2893422842025757, 0.6782357692718506, -0.9771151542663574, 0.5523521304130554, -0.49076855182647705, -0.38730674982070923, 0.3901885151863098, -0.7017860412597656, -0.31376275420188904, 0.9081708788871765, 0.16131290793418884, 1.484609603881836, 0.4330753684043884, -0.9297013282775879, -0.10924152284860611, -0.7833751440048218, 0.142558753490448, 0.0336630754172802, -0.5344159603118896, -0.7729257345199585, 0.22657836973667145, 0.3992893397808075, 0.8532532453536987, 0.16890034079551697, -0.1453808844089508, -0.0758950337767601, -0.7565610408782959, 1.116017460823059, 0.913547158241272, 0.8835686445236206, -0.20570741593837738, -0.4447692632675171, -0.01863809861242771, 0.6852023005485535, -0.6595548391342163, -0.9392226338386536, -0.07668501883745193, -0.3653327226638794, -0.07838544249534607, -0.7504892945289612, -0.5326364636421204, 0.3269282281398773, 0.17394863069057465, 0.07822252064943314, 0.502050518989563, 1.1592403650283813, 1.4785254001617432, -0.4682069718837738, -0.3844435214996338, 0.4004110097885132, -0.43993502855300903, -0.040680304169654846, 0.4374649226665497, -0.566335141658783, 0.3540346622467041, -0.6450782418251038, -1.5660245418548584, 0.4233303666114807, -0.13555674254894257, -0.8068929314613342, 0.9128360748291016, 0.5979050993919373, 1.5476773977279663, 0.4015450179576874, -1.047390103340149, -0.04646507650613785, -0.16216549277305603, -0.12918463349342346, -0.5503699779510498, 0.7439938187599182, -0.23863539099693298, 0.8728013038635254, -0.0625731348991394, -0.5293327569961548, 0.1959470510482788, 0.5477011203765869, -0.479904443025589, -0.34719526767730713, 0.03944535553455353, 0.26744115352630615, -0.14578138291835785, -0.6574145555496216, 0.45881426334381104, -0.21795685589313507, -0.3430945873260498, -0.28041499853134155, 1.0455645322799683, -0.24988003075122833, 0.5995488166809082, 0.4516233205795288, -0.7607564926147461, -0.29605403542518616, -0.3465270698070526, 0.27167370915412903, 0.6883445382118225, 0.20355045795440674, 0.8010972738265991, -1.131006121635437, -0.5259138941764832, -0.32468974590301514, -0.003408293705433607, 0.5736336708068848, 1.1401431560516357, -0.7933183908462524, 0.5995977520942688, 0.31582772731781006, -1.1569355726242065, -0.28330692648887634, -0.10481670498847961, -0.14432187378406525, -1.1424707174301147, -0.46599915623664856, -0.8848447203636169, 0.12224536389112473, 0.5575668215751648, -0.2614862620830536, 0.7469624876976013, 0.6238872408866882, -1.3494302034378052, 0.19377176463603973, 0.24099135398864746, -1.2126654386520386, 0.036441005766391754, -0.9675673842430115, 0.4766846001148224, 0.4010196626186371, 0.055978529155254364, -0.3933889865875244, 0.18965478241443634, -1.7103346586227417, -0.9442280530929565, -1.1688958406448364, -0.09941194206476212, 0.6582918167114258, 0.39920011162757874, -0.9849667549133301, 1.349670171737671, 0.4181320369243622, -0.48878979682922363, 0.03398580849170685, -0.1670379787683487, -0.22084061801433563, 0.9906129837036133, 0.17158257961273193, 0.11060687899589539, 0.3911585509777069, 0.4443073272705078, -0.20000961422920227, 0.8914147615432739, 0.6908685564994812, 1.2373297214508057, -0.4561700224876404, -0.18386077880859375, 0.5088130235671997, 1.1770622730255127, -0.8544993996620178, -0.7058643102645874, -0.5994321703910828, -0.5341870784759521, -0.6251339912414551, 0.12000110745429993, 1.113840937614441, -0.38299646973609924, 0.040130868554115295, -0.7295875549316406, 0.9594566822052002, -0.4340982735157013, 0.09760113060474396, -0.2231166511774063, -0.26311036944389343, -0.40513938665390015, 0.24630679190158844, -0.15586106479167938, -1.7174389362335205, 0.2829558253288269, -0.20436856150627136, -0.1930062472820282, -0.5950860977172852, 0.6549185514450073, 0.3046253025531769, 0.7043965458869934, -0.3808496296405792, 1.4637342691421509, 0.7033870816230774, -0.4898015558719635, -0.294930100440979, -0.09097958356142044, 0.05273183062672615, -0.19840854406356812, -0.6729416251182556, -0.9546105861663818, -1.075169324874878, 1.600809931755066, 0.3232937455177307, -0.17247943580150604, -0.592583954334259, 0.2530187666416168, 0.16053706407546997, 0.35640135407447815, -0.014135732315480709, -1.5348094701766968, -0.9296132922172546, 0.8332113027572632, 0.3490377962589264, -0.12617437541484833, -0.07109982520341873, 0.49490851163864136, 0.663955807685852, -0.11033948510885239, 0.36658987402915955, 0.46376359462738037, -0.6093508005142212, -0.18113143742084503, -0.04424704611301422, -0.27164334058761597, -0.07493767142295837, 0.017780238762497902, -0.565884530544281, 0.2609569728374481, -0.16964565217494965, -0.25563183426856995, 0.9157506823539734, -0.9832145571708679, 0.2456086128950119, -0.02453056536614895, -0.1556132733821869, 0.31339213252067566, -0.36211538314819336, 0.7462096214294434, 0.22949697077274323, 0.583916187286377, 0.4924665093421936, -0.11482715606689453, 1.2313393354415894, -0.09468292444944382, 0.4698166251182556, -1.2927016019821167, 0.4201149344444275, -0.03975125029683113, -0.13005274534225464, -0.1530470997095108, 0.23797017335891724, 1.0086311101913452, 0.0032948097214102745, -0.06489043682813644, 0.27918073534965515, -0.06263265758752823, 0.1499708890914917, -0.16790322959423065, -0.8574004173278809, 0.5576984286308289, 0.48796162009239197, 1.0227421522140503, -0.357403963804245, -1.271079659461975, -0.6028629541397095, 0.3980792164802551, -0.6611301302909851, 0.7213061451911926, -0.5830022692680359, 1.1871662139892578, -0.0379893034696579, 0.0004154574126005173, -0.6836216449737549, 0.0506233312189579, 0.018925268203020096, -0.004851434845477343, -0.12462779134511948, -0.9691595435142517, 0.7246516942977905, -0.8750758171081543, -0.8686232566833496, -0.7465183734893799, 0.07559032738208771, -0.5183427929878235, -0.3734823763370514, -0.9082202315330505, -0.8697099089622498, -0.642543375492096, -0.09972009807825089, 0.7379918098449707, -0.13851124048233032, -0.2077605128288269, -0.9553146958351135, -0.6718056797981262, -0.292205810546875, -0.03828881308436394, -0.11871056258678436, -0.525571346282959, 0.8031128644943237, 1.892031192779541, 0.5415928363800049, 0.19909320771694183, -0.7125316858291626, 0.5363519191741943, -1.0637565851211548, 0.01567050628364086, -0.5987042784690857, -0.5080622434616089, -0.19254004955291748], [0.6358144283294678, 1.2439895868301392, -2.5517003536224365, -0.3331723213195801, 0.3549256920814514, 0.29693663120269775, 0.8737603425979614, -0.5344955921173096, -0.37961599230766296, -0.24281610548496246, -0.6464278101921082, -0.7490995526313782, 0.27598342299461365, 1.0957391262054443, 0.7511743307113647, 0.8195441961288452, 1.514665126800537, -0.7715020775794983, 0.3179202973842621, 1.0617215633392334, 0.19058506190776825, -0.7346155643463135, 0.15770898759365082, 0.08205154538154602, -0.17927438020706177, 0.6027950644493103, -1.7761355638504028, -0.766471803188324, -0.6055748462677002, -0.9127917885780334, 1.0336599349975586, -0.7803210616111755, -0.2765287458896637, -0.2647882103919983, -1.1875592470169067, -0.17892134189605713, 1.5901776552200317, 0.3681119680404663, 0.779373049736023, -0.07451581954956055, 1.3674952983856201, -0.11094674468040466, -0.07763492316007614, -1.0111606121063232, -0.21174739301204681, -0.34597519040107727, 0.3088412582874298, -0.2368272989988327, 0.2316695749759674, -0.5218692421913147, 0.8469379544258118, -0.4203417897224426, 0.05886581167578697, 1.1834107637405396, 1.4559152126312256, -0.40067702531814575, 0.14233751595020294, -0.07935411483049393, 0.7635942697525024, -0.760449230670929, 1.2606754302978516, -0.05157012492418289, -0.14501778781414032, 1.1607006788253784, -0.2890964448451996, -0.5123867988586426, -0.10851284116506577, 0.6276516318321228, 0.3665522038936615, 0.14285695552825928, 0.8273539543151855, 0.7267860770225525, -0.16848261654376984, 0.5788809061050415, -0.7258867621421814, 0.3990717828273773, 0.5787389874458313, 1.038668155670166, -0.05004119873046875, 0.8305784463882446, -0.19364893436431885, 0.1369723528623581, 0.10974591225385666, -0.2753390967845917, 0.4324730336666107, -0.010172867216169834, 0.5847464799880981, -0.570787250995636, -0.6701101064682007, 1.9993741512298584, 0.14786042273044586, -0.28137296438217163, 0.2711644470691681, -0.36387133598327637, -0.4790099859237671, -0.4458273947238922, 0.2515234053134918, 0.5441283583641052, -1.077621579170227, -0.44485941529273987, -0.42841389775276184, -0.4433414041996002, -0.23803254961967468, -0.5207685828208923, -0.12318312376737595, 0.9081166386604309, 0.561543345451355, -0.41255828738212585, -0.4468938708305359, -0.29744845628738403, -0.392494797706604, 0.5136638879776001, -0.9675231575965881, -1.0170284509658813, -0.6094841361045837, 1.14211106300354, 1.639076590538025, -0.7636558413505554, 0.7089719176292419, 0.5944957733154297, -0.5834812521934509, -0.7432635426521301, -0.5982111096382141, -0.11198652535676956, 1.0486308336257935, 0.7448509931564331, -0.7140852808952332, -0.4970702826976776, 0.40958619117736816, -0.35793712735176086, 0.3539491891860962, 0.302890419960022, -0.6765826344490051, 0.9314281940460205, -0.766031801700592, 1.3351529836654663, -0.1867162585258484, -0.5443379282951355, 0.23853056132793427, 0.2594095468521118, 0.23265400528907776, 0.07449551671743393, -0.36034172773361206, -0.16618433594703674, 0.20816640555858612, -0.4936138391494751, -0.020505232736468315, -0.37387815117836, -0.8776880502700806, 0.5373461842536926, -0.7674164772033691, 0.28741273283958435, 0.6122225522994995, 1.139527678489685, 0.30767759680747986, 0.05832713842391968, -0.12838852405548096, 0.06387072056531906, 0.7261581420898438, -0.12639856338500977, 0.4871602952480316, 0.36101070046424866, -0.8708975315093994, 0.5426876544952393, 0.37303459644317627, -0.5923373103141785, -0.4872087836265564, 1.2100318670272827, -0.04114712029695511, 0.3382180333137512, -0.25855639576911926, -0.36031490564346313, -0.5137773752212524, 0.20452551543712616, 0.5499405264854431, -0.8250439763069153, 1.3117601871490479, -0.26130226254463196, -1.1101233959197998, -0.8862547278404236, 0.7011932134628296, 0.17195439338684082, 0.5604786276817322, -0.048114113509655, -0.010256553068757057, -0.7228820323944092, 0.4484715163707733, -0.4296245574951172, -0.8856084942817688, -0.5203465819358826, -0.18760070204734802, -0.20435908436775208, -0.400210976600647, 0.6762340664863586, -0.9448055028915405, -0.9827843904495239, 0.42120853066444397, -0.7856794595718384, -0.0009163473732769489, 0.2522353529930115, 0.07784799486398697, -0.586465060710907, -0.9864205718040466, 0.39301928877830505, -0.5394814610481262, 1.459145188331604, -1.4756700992584229, 0.7350525259971619, -0.7799158096313477, -0.4219863712787628, 0.9617011547088623, 0.22251209616661072, -0.6150119304656982, 0.6201176047325134, 0.45003706216812134, -1.087813138961792, 0.2103847861289978, 0.7321033477783203, -0.4851878583431244, -0.028211086988449097, -0.11354697495698929, -0.0554836243391037, 0.9511890411376953, -0.3702549338340759, 0.5095800161361694, -0.19375737011432648, -0.6260300278663635, -0.4500471353530884, -0.903954803943634, -0.2985292077064514, -0.4134468734264374, -0.9503284692764282, 0.7193939685821533, 0.2657243609428406, -0.4085308015346527, -0.08230599761009216, -0.5819078087806702, 0.4831694960594177, 0.40678849816322327, 1.5653263330459595, 0.3516695499420166, 0.574353039264679, -0.35093310475349426, -0.22778409719467163, -0.8281764388084412, 0.4275149405002594, 0.4911552965641022, -0.44162803888320923, 0.38186073303222656, 0.7418912649154663, 1.2390819787979126, 0.26821741461753845, 0.530493438243866, 0.014204222708940506, 0.026094159111380577, -0.2589748203754425, -0.9763257503509521, 0.27427834272384644, -0.2769296169281006, 1.2676825523376465, 0.5758411288261414, -1.1943140029907227, -0.1316298544406891, 0.09987253695726395, -0.07772906869649887, -0.5085663199424744, -0.5768461227416992, -0.46321386098861694, -0.4014051556587219, 0.1135491281747818, 0.21908223628997803, 0.36479178071022034, -0.09993298351764679, 0.479617178440094, -0.4790586233139038, -1.0544984340667725, -0.5062369704246521, 0.5682671666145325, -0.19074007868766785, 1.2487744092941284, -0.5375664830207825, -1.4296592473983765, -0.40020751953125, 0.3771010935306549, 0.5973208546638489, -0.2567860186100006, -0.7968371510505676, 0.11069739609956741, -0.10136362165212631, -0.25449520349502563, 0.5075969696044922, 0.3968101739883423, 0.5995320677757263, 0.05160330608487129, 0.09539823234081268, 0.4817815124988556, 0.9150925278663635, -0.8212217688560486, -0.8739755153656006, -0.6575671434402466, 0.297446608543396, 1.0190706253051758, 0.36078283190727234, 0.8715600967407227, 0.49050185084342957, 0.3534814119338989, -0.09964101761579514, 0.49610933661460876, -1.0659503936767578, -0.7965732216835022, -0.7937098145484924, -1.3224115371704102, -0.2389668971300125, -0.32517415285110474, 0.2552519142627716, 0.650496244430542, -0.07272391766309738, 0.11135361343622208, 1.534313440322876, -0.4701348543167114, -0.6972801089286804, 0.10937788337469101, -0.017112670466303825, -0.6944504976272583, 0.4863497316837311, 1.2129989862442017, -1.1471649408340454, -0.4868408739566803, -0.3116022050380707, 0.21453386545181274, -0.01157393865287304, 0.15434256196022034, -0.08267606794834137, -1.1573127508163452, -0.025639090687036514, -0.41946521401405334, 1.2613097429275513, -0.1153738796710968, -0.43451380729675293, -0.2442512810230255, 0.1904660016298294, 1.1428120136260986, 0.11201369762420654, -0.0910283774137497, 0.604637861251831, -0.8298274278640747, -0.36515524983406067, -0.001454292330890894, 0.6983041763305664, 0.30537039041519165, -0.6903519034385681, -0.38481366634368896, -0.44550174474716187, 0.15679886937141418, -0.41776925325393677, 1.0166772603988647, -0.03972269967198372, 0.9172707200050354, 0.730566143989563, -0.04042527824640274, 1.3552414178848267, -0.04180275276303291, 0.1789996325969696, -1.5463923215866089, 0.0440177321434021, 0.6074672937393188, 1.289053201675415, 0.4022291600704193, 0.4073910415172577, 0.3652211129665375, 0.2859830856323242, 0.25873199105262756, 0.34642836451530457, 1.4635009765625, -0.3324078321456909, -0.2640073597431183, -0.8345947861671448, -0.17312756180763245, 0.49283576011657715, -0.5038012862205505, 0.10571122169494629, 0.40734076499938965, -0.9205392003059387, -0.6124093532562256, 1.0202897787094116, 0.5651392936706543, -0.190519317984581, -0.30073410272598267, 0.5197485089302063, 0.6410068273544312, -0.32656189799308777, 0.3523159325122833, -0.3382169008255005, -0.019628500565886497, 0.7419619560241699, -0.9116501808166504, -0.11660368740558624, 0.3985241651535034, 0.25039899349212646, 0.2215544879436493, -1.1005477905273438, 0.6351248025894165, -0.6967925429344177, 0.4886408746242523, 0.6457164883613586, -0.41566532850265503, -0.26233622431755066, -0.19324378669261932, -0.3678933382034302, -0.4117855727672577, -0.11451300978660583, 1.1361122131347656, -0.8388757705688477, -0.003810744732618332, 0.16889502108097076, -0.4287286102771759, -0.03302459791302681, -0.5681619644165039, 0.10420253127813339, 0.018733320757746696, -0.3061307966709137, 0.28949257731437683, -0.12010101228952408, -0.28582999110221863, 0.9874975681304932, 0.38689878582954407, 0.41887134313583374, 0.33644190430641174, -0.06173355132341385, -1.2321646213531494, 0.26433050632476807, 0.3327901363372803, 0.29385489225387573, -0.5466154217720032, -0.3218599259853363, 0.18971215188503265, 0.2431110292673111, 0.32123681902885437, -0.18137751519680023, 0.5773425698280334, 0.42270809412002563, 0.08299166709184647, -0.005475040525197983, 0.5442029237747192, 0.7967174053192139, 1.0974897146224976, 0.31037604808807373, -0.5107350945472717, -0.6920328140258789, 0.7599009275436401, -1.1053725481033325, 0.3677870035171509, 0.6243224143981934, 0.3077906370162964, 1.452190637588501, -1.414576768875122, -0.3339058458805084, 1.1383452415466309, -0.02856897935271263, 0.1723535805940628, 0.9221097826957703, -0.29484930634498596, 0.19147072732448578, 0.7251675128936768, -0.04227123409509659, -0.3312089443206787, 0.28484925627708435, -0.2568439245223999, 0.1247042566537857, 0.707419216632843, -0.8706649541854858, 1.0892256498336792, -0.9065878391265869, 0.10057529807090759, 0.37098589539527893, -0.595517635345459, 0.0033118044957518578, 0.9668292999267578, 0.23405961692333221, 2.0897200107574463, -0.044692233204841614, -1.0099889039993286, -0.33169856667518616, -1.05536949634552, 0.1105763167142868, -0.40325650572776794, -0.07456421852111816, -1.0089918375015259, -0.10340932011604309, -0.17330974340438843, 1.236624836921692, -0.17315317690372467, -0.3295123279094696, -0.23740200698375702, -1.3204163312911987, 0.8375997543334961, 0.5611581802368164, 0.8501497507095337, 0.08309689909219742, 0.2600792348384857, -0.22276929020881653, 0.6457537412643433, -0.803598165512085, -0.4168379306793213, 0.4536695182323456, 0.10178090631961823, -0.4045838713645935, -0.9817925095558167, -0.7376807332038879, 0.48425719141960144, 0.6174507141113281, 0.2804722785949707, -0.13721057772636414, 1.2959504127502441, 1.4206558465957642, -0.4971480369567871, -0.36437830328941345, 0.2375422716140747, -0.43931180238723755, 0.3604864776134491, 0.06438001245260239, 0.014769896864891052, -0.4667840898036957, -0.2578728199005127, -1.8778860569000244, 0.7254621982574463, 0.04039423167705536, -0.647962749004364, 0.9022120833396912, 0.5083907842636108, 0.8983566164970398, 0.343403697013855, -0.17335934937000275, 0.2680499851703644, -0.3805578351020813, 0.28289666771888733, -1.0661827325820923, 0.44932445883750916, 0.37774139642715454, 0.22929534316062927, -0.03427205607295036, 0.5294992327690125, -0.02796429954469204, 0.2571409046649933, -0.25353607535362244, 0.312057226896286, 0.3098283112049103, 0.2899710536003113, 0.36159849166870117, -0.9084604382514954, 0.30210891366004944, 0.20306162536144257, -1.2015718221664429, -0.3122355043888092, 0.06207922473549843, 0.20694346725940704, -0.10975635051727295, -0.17580220103263855, -0.6764608025550842, -0.2112409621477127, -0.15833128988742828, -0.3303886651992798, 1.1021825075149536, -0.1783955693244934, -0.060295332223176956, -0.119082510471344, -0.26175767183303833, -0.1990475058555603, -0.7852910161018372, 0.2575516104698181, 0.42806681990623474, -1.3749271631240845, 0.4464503526687622, 0.044432323426008224, -1.307815670967102, -0.08908350020647049, 0.06941116601228714, -0.22991852462291718, -0.887955367565155, -1.3770097494125366, -0.5461810827255249, 0.2413392812013626, 0.5913599729537964, 0.18548917770385742, 0.9698053598403931, 0.6039881110191345, -1.0282772779464722, 0.2513272762298584, 0.08431645482778549, -0.39323073625564575, -0.5659304261207581, -1.3987494707107544, 0.9688037633895874, 0.16237930953502655, 0.33771812915802, 0.053981952369213104, 0.46548962593078613, -1.7569442987442017, -1.079461693763733, -0.7865216135978699, -0.6738104820251465, 0.8282499313354492, 1.0810184478759766, -1.0311949253082275, 0.9775528311729431, 0.4882471263408661, -0.10501887649297714, 0.4616177976131439, 0.1364404857158661, -0.35298681259155273, 0.667799174785614, 0.5086526870727539, 0.1935177743434906, 0.33970293402671814, 0.7667389512062073, 0.14807632565498352, 1.1171622276306152, 0.49725115299224854, 0.9919506907463074, -0.8068721294403076, 0.0367405079305172, 0.12000873684883118, 0.888752818107605, -0.759666919708252, -0.5284726023674011, -0.2629527747631073, -0.7574398517608643, -0.6381853818893433, 0.07703474164009094, 0.8887221217155457, -0.7279006242752075, -0.3858165144920349, -0.9338157773017883, -0.009210814721882343, -0.44232213497161865, 0.16825395822525024, -0.021302901208400726, -0.3699137270450592, -0.029482970014214516, -0.016064990311861038, 0.13102921843528748, -1.6792227029800415, 0.5432923436164856, 0.2594987750053406, -0.2290014922618866, -0.48774588108062744, 0.04015057906508446, 0.35022470355033875, 0.34959736466407776, -0.921046793460846, 1.2992233037948608, 1.166338562965393, -0.3496823012828827, -0.23683665692806244, 0.17138850688934326, 0.19379019737243652, 0.7091178894042969, -0.6571555733680725, -0.7051215767860413, -0.8479861617088318, 1.521591067314148, 0.5752334594726562, 0.4290917217731476, -0.10900019854307175, 0.3590586185455322, -0.1948472559452057, 0.5129032731056213, 1.0497218370437622, -1.845421314239502, -0.48032549023628235, 0.892267107963562, 0.5477249026298523, -0.4100226163864136, 0.666359007358551, 0.8484897017478943, 0.37598469853401184, -0.4356555640697479, 0.5315659642219543, 0.8000906109809875, -1.07918381690979, 0.1722540557384491, 0.07195910066366196, -0.5453694462776184, 0.01713947020471096, -0.10452780872583389, -1.2628161907196045, 0.263040155172348, -0.24586473405361176, -1.2590500116348267, -0.04637924209237099, -1.1447136402130127, -0.273425817489624, 0.3943072259426117, -0.11115789413452148, -0.4059869349002838, -0.30351555347442627, 1.0854320526123047, -0.42286795377731323, 0.09063706547021866, 0.15780837833881378, -0.15056924521923065, 1.021140694618225, -0.4239732325077057, 0.1713642179965973, -1.6741896867752075, -0.041530758142471313, 0.48344138264656067, 0.331180214881897, -0.33085307478904724, 0.03912918642163277, 0.4545123279094696, -0.24725428223609924, -0.5471403002738953, -0.16926723718643188, -0.3238980770111084, -0.3628655970096588, -0.5787107348442078, -0.8156455755233765, 0.10060302168130875, -0.1225171834230423, 0.708730936050415, -0.16518259048461914, -0.9924581050872803, -0.12102866917848587, 0.4795481562614441, -0.4622722864151001, 1.0159865617752075, -0.5144180655479431, 0.4417477548122406, -0.027138765901327133, 0.02364754118025303, -0.14622259140014648, -0.16675874590873718, 0.3006170690059662, -0.03296886384487152, 0.30412158370018005, -0.3398270010948181, -0.1329679936170578, -0.44603997468948364, -1.0634087324142456, 0.07806043326854706, 0.21886536478996277, -0.32974711060523987, 0.06151226907968521, -0.9421772360801697, -0.9721459746360779, -0.5306875109672546, -0.18040968477725983, 0.5190033912658691, 0.1668255776166916, -0.31894734501838684, -0.14098721742630005, -1.0151668787002563, 0.6395937204360962, 0.1170126423239708, -0.15748964250087738, -0.22580507397651672, 1.3275666236877441, 1.7592430114746094, 0.671608567237854, 0.18354961276054382, -0.2499343603849411, 0.169184148311615, -1.0514997243881226, -0.5035713315010071, -0.6103329062461853, -0.3973672688007355, -0.19403167068958282], [0.8913699984550476, 1.7378484010696411, -2.3055267333984375, -0.7541120648384094, 0.7060104012489319, -0.18602517247200012, 1.349100112915039, -0.3970383107662201, -0.19346076250076294, -0.9383531212806702, -1.0003197193145752, -0.5026552081108093, 0.06803261488676071, 0.9337188601493835, 0.35512575507164, 0.5987035036087036, 1.2695376873016357, -0.1213163360953331, 0.13716639578342438, 0.521019697189331, 0.41854166984558105, -0.8378854990005493, 0.3463168144226074, 0.0784609392285347, 0.3153357207775116, 0.7909010052680969, -1.1547534465789795, -1.160088300704956, -0.9897585511207581, -0.7046907544136047, 1.1862223148345947, -0.6353041529655457, 0.09226186573505402, -0.6439980864524841, -1.2046138048171997, -1.5900847911834717, 1.425357699394226, 1.2139792442321777, 0.41745302081108093, 0.06838709115982056, 1.259320855140686, -0.7885478138923645, 0.2379438430070877, -1.6946916580200195, -0.9954556822776794, -0.22412286698818207, 0.6607784032821655, 0.09358394891023636, -0.3460289239883423, -0.8611909747123718, 0.8874953389167786, -0.5452931523323059, 0.6305255889892578, 1.1227517127990723, 0.9605259895324707, -0.9680730700492859, 0.016344327479600906, -0.6218119263648987, 0.18086479604244232, -0.0644194632768631, 1.386039137840271, 0.699296236038208, -0.55142742395401, 1.2531068325042725, 0.006143223028630018, -0.8580607175827026, 0.06615771353244781, 0.49365323781967163, 0.04904348403215408, 0.7438593506813049, -0.013345584273338318, 0.549801766872406, -0.19253499805927277, 0.3089815676212311, -1.1130740642547607, 0.17248770594596863, 0.8490884900093079, 0.9302887320518494, 0.334812730550766, 0.7701945304870605, 0.2658489942550659, 0.37084612250328064, 0.6266513466835022, -0.051463428884744644, 0.7371729612350464, -0.36589315533638, 0.40387916564941406, -0.15942052006721497, -0.42133307456970215, 1.466940999031067, 0.12377532571554184, -0.5160478353500366, 0.7088815569877625, 0.24750731885433197, -0.6860157251358032, -0.5758151412010193, 0.15425923466682434, 0.028941692784428596, -1.0712807178497314, 0.01770324632525444, -0.8709589242935181, -0.7615352272987366, -0.13367155194282532, 0.26384881138801575, -0.627188503742218, 1.2637583017349243, 0.5649892687797546, -0.3831440806388855, -0.3059323728084564, -0.1583789885044098, -0.10487698018550873, 0.7274715900421143, -1.4900693893432617, -1.002395749092102, -0.021867146715521812, 1.1120753288269043, 1.5394816398620605, -0.7578985095024109, 0.5367583632469177, 0.3543476462364197, -0.9895948171615601, -0.9907037615776062, -0.3796980679035187, 0.6172290444374084, 0.26886487007141113, 0.5298639535903931, -0.44655755162239075, -0.19901424646377563, 0.3387387990951538, -0.08768688142299652, 0.7983332276344299, 0.12428003549575806, -0.8580807447433472, 0.7475330829620361, -0.7621252536773682, 1.350935459136963, -0.5147169828414917, -0.8801290988922119, -0.15768858790397644, 0.28197216987609863, -0.06491564959287643, 0.26481199264526367, -0.5231205224990845, -0.7678371667861938, -0.1496831327676773, -0.27804815769195557, 0.0853482112288475, -0.19042731821537018, -0.765383780002594, 0.1743556410074234, -0.9437412619590759, 0.14255446195602417, 0.3790622353553772, 0.9246425628662109, 0.585536003112793, -0.5746858716011047, -0.562934160232544, -0.2944452166557312, 0.14676779508590698, 0.41513699293136597, 0.7196233868598938, -0.04341062903404236, -1.393489122390747, 1.2009319067001343, 0.20192310214042664, -0.9092013835906982, -0.001955387182533741, 1.3909872770309448, -0.5585278868675232, 0.41788366436958313, 0.2480548471212387, -0.984287440776825, -0.4718625545501709, 0.06032513082027435, 0.47324150800704956, -0.3380677402019501, 0.6499307751655579, -0.36874204874038696, -0.9705155491828918, -0.7886980772018433, 0.7174561619758606, -0.16492217779159546, 0.17580468952655792, 0.016223039478063583, -0.09588003903627396, -1.1651145219802856, 0.08745771646499634, -0.8092997670173645, -0.658206045627594, -0.2555049955844879, -1.0298823118209839, 0.04038205370306969, -0.17227108776569366, 0.41253623366355896, -0.6047770977020264, -1.1143232583999634, 0.27675798535346985, -0.9469994902610779, -0.1039169654250145, 0.10512898862361908, -0.07511366158723831, -0.36428359150886536, -1.3384984731674194, 0.10717035830020905, -0.12035264819860458, 0.7193917036056519, -1.2921006679534912, 0.770207405090332, -0.5927860140800476, -0.7457613945007324, 1.1666733026504517, 0.20144742727279663, -0.3599279522895813, 0.7405065298080444, 0.3251052796840668, -1.6449607610702515, -0.021220285445451736, 0.7790067791938782, -0.7014991044998169, -0.009496885351836681, 0.1659967303276062, -0.023958006873726845, 1.672978162765503, 0.4672296941280365, 0.7683281302452087, -0.2766222059726715, -0.3826819956302643, -0.4068097770214081, -0.7920375466346741, -0.32338204979896545, -0.1747092306613922, -1.2151618003845215, 0.2117040902376175, -0.08543073385953903, -0.9432520270347595, 0.4488680362701416, 0.18774265050888062, 0.20980463922023773, 0.3746863603591919, 0.7229803204536438, 0.2591606080532074, 0.7067131400108337, -0.7224551439285278, -0.211997389793396, -0.7352244853973389, -0.15666133165359497, 0.48957905173301697, -0.22642746567726135, 0.4867461919784546, 0.9981966614723206, 0.8530920743942261, -0.11704712361097336, -0.08540478348731995, -0.3690020442008972, 0.37538477778434753, -0.39769038558006287, -0.7631992101669312, -0.3635822534561157, -0.3860630989074707, 1.6274988651275635, 0.7882596254348755, -0.994354784488678, 0.4607807993888855, 0.0675194188952446, -0.13828182220458984, -0.15421690046787262, -0.8422175049781799, -0.35031065344810486, 0.2647970914840698, -0.14271238446235657, -0.10023718327283859, 0.20058561861515045, 0.21787302196025848, 0.5442959666252136, -0.46912336349487305, -0.7701863050460815, -0.41458311676979065, -0.029848521575331688, -0.37950050830841064, 1.065511703491211, 0.005510070361196995, -1.418949007987976, -0.6818097829818726, 0.2589391767978668, 0.525071382522583, -0.05481255427002907, -0.6109985709190369, 0.23502376675605774, 0.030100692063570023, -0.446687251329422, 0.568718433380127, 0.14085742831230164, -0.1580393761396408, 0.879850447177887, -0.11470922827720642, 0.49073144793510437, 0.8503913283348083, -0.5714831948280334, -0.48212140798568726, -0.6049574613571167, 1.208038091659546, 1.5614302158355713, 0.6399955153465271, 1.7863223552703857, 0.7146025896072388, -0.26957762241363525, -0.2798800468444824, -0.5066392421722412, -0.8197265863418579, -0.8857371211051941, -1.009718656539917, -0.6148656606674194, 0.5084603428840637, 0.7224730253219604, 0.5232752561569214, 0.5063661932945251, -0.14741374552249908, 0.5918586254119873, 1.271007776260376, 0.07666820287704468, -0.6240354180335999, 0.3978300988674164, -0.4943723678588867, -0.916944146156311, 0.3630312979221344, 0.9370750188827515, -1.2931941747665405, -0.43602287769317627, 0.4019140303134918, 0.02266061305999756, 0.4164589047431946, -0.5130179524421692, 0.5501143336296082, -1.5663458108901978, -1.0152854919433594, -0.453948438167572, 1.3870396614074707, -0.0017915188800543547, -0.5200271606445312, -0.031218716874718666, 0.4169663190841675, 0.8709995746612549, 0.6530522704124451, -0.5395250916481018, 0.9154775142669678, -1.238786220550537, -0.5276440978050232, -0.11407288163900375, 0.6811766028404236, 0.3741912841796875, -0.4606873393058777, -0.6544368863105774, -0.6518288254737854, -0.32595276832580566, 0.2770649790763855, 0.5684312582015991, -0.12743906676769257, 1.2408217191696167, 0.7427777051925659, -0.24235382676124573, 0.570228099822998, 0.2989856004714966, -0.23141752183437347, -1.3488614559173584, 0.4971219003200531, 0.32026419043540955, 1.091836929321289, 0.8897293210029602, -0.028963664546608925, -0.029059674590826035, -0.286973774433136, -0.019175661727786064, 0.25105541944503784, 1.1947767734527588, 0.48251092433929443, 0.06105252355337143, -0.7863543629646301, -0.47333192825317383, 0.17573761940002441, 0.04827194660902023, -0.3319362699985504, 0.7733578085899353, -0.6714543104171753, -0.7641770839691162, 0.7061965465545654, 0.08724724501371384, -0.17841275036334991, 0.04387335479259491, -0.10219649970531464, 0.39153626561164856, -0.6789893507957458, 0.012913629412651062, -0.4890577495098114, -0.18973146378993988, 0.48123642802238464, -0.5089981555938721, -0.4468183219432831, 0.5153235793113708, 0.6450312733650208, 0.7410792112350464, -0.8563901782035828, 0.46278852224349976, -0.6632112264633179, 0.9162367582321167, 0.13706155121326447, -0.2572477459907532, 0.151563361287117, 0.4799099862575531, -0.7289667725563049, 0.33890435099601746, 0.27274462580680847, 1.0833582878112793, -0.7489359974861145, 0.8753601908683777, 0.47205135226249695, -0.3732970952987671, 0.19513723254203796, 0.38592422008514404, -0.22993424534797668, 0.638239324092865, -0.1689947247505188, -0.03923961892724037, -0.08836168050765991, -0.1804850995540619, 0.6139649748802185, 0.7033701539039612, 0.24136534333229065, 0.9770304560661316, -0.22303688526153564, -1.4843803644180298, 0.3830033540725708, 0.6748286485671997, -0.007895240560173988, -0.5845018625259399, -0.2759828269481659, -0.019358772784471512, 0.06554754078388214, 0.9689454436302185, 0.152427539229393, 0.7965729236602783, 0.24335481226444244, -0.18341736495494843, 0.10324081778526306, 0.7247920632362366, 0.7057753801345825, 0.5546377897262573, -0.09807553887367249, -1.447099208831787, -0.7722687125205994, 0.5206040740013123, -0.3987002670764923, 0.5525725483894348, 0.29887092113494873, 0.2004896104335785, 1.2148003578186035, -1.2629188299179077, 0.46234142780303955, 0.6680520176887512, 0.1246630921959877, 0.647970974445343, 0.7730740308761597, -0.07374142110347748, -0.3341886103153229, 0.4832248091697693, 0.3595735728740692, -0.4307704567909241, -0.49425265192985535, -0.2763773202896118, -0.3648250102996826, 0.6396977305412292, -0.5738548636436462, 0.024096062406897545, -1.0017273426055908, -0.5295014977455139, 0.3205699026584625, -0.4379885196685791, 0.49707603454589844, 0.8117730617523193, 0.4155644476413727, 1.5972630977630615, 0.1601366251707077, -0.8872804641723633, -0.455457866191864, -0.6657041311264038, 0.9311821460723877, -0.833957314491272, -0.1756879836320877, -1.101116418838501, -0.5356668829917908, -0.16222819685935974, 0.8516557216644287, -0.4209659993648529, -0.2844267189502716, -0.3502655327320099, -0.8380461931228638, 0.7013880610466003, 0.910142183303833, 0.8962969183921814, 0.6758405566215515, 0.37478727102279663, -0.15352463722229004, 0.4273649752140045, -0.11495356261730194, -0.5398867130279541, 0.11622034013271332, -0.38275837898254395, -0.11494371294975281, -0.6652233600616455, -0.7232229113578796, 0.7358915209770203, 0.734248161315918, 0.44778844714164734, 0.3506163954734802, 0.36921122670173645, 1.0420838594436646, -0.2090648114681244, -0.39135172963142395, 0.03469313681125641, -0.5725078582763672, 0.8322287797927856, 0.32118743658065796, -0.11406350135803223, -0.2975514829158783, -0.10094214230775833, -1.4575694799423218, 0.3257657587528229, -0.3731728792190552, -1.1780362129211426, 0.9346336126327515, 0.6396148800849915, 0.2699906826019287, 0.5805137753486633, -0.24534165859222412, 0.19132304191589355, -0.09748221188783646, -0.44325023889541626, -0.9793424606323242, 0.46499326825141907, 0.4813758432865143, -0.31984853744506836, -0.41467994451522827, -0.1384110450744629, 0.3561270534992218, -0.07052313536405563, -0.46171072125434875, -0.23569989204406738, 0.5621100664138794, 0.6822329759597778, -0.44531142711639404, -0.7301889657974243, 0.6909453868865967, 0.19543172419071198, -0.04522079601883888, -0.18666468560695648, 0.730877161026001, 0.5635621547698975, 0.43798333406448364, 0.17517594993114471, -0.8503175377845764, -0.26739874482154846, -0.05868593975901604, -0.354198157787323, 0.945786714553833, 0.3974517583847046, 0.06533879041671753, -0.7832220196723938, -0.6287528276443481, 0.09607543051242828, -0.7076398134231567, 0.5834692120552063, 1.0171993970870972, -1.2232600450515747, 0.16562993824481964, 0.07649075984954834, -0.6907128095626831, 0.10264845937490463, -0.3498172163963318, -0.49741432070732117, -0.790151059627533, -0.985318660736084, -0.15569010376930237, 0.2799031436443329, 0.20468086004257202, -0.05573740974068642, 0.982772707939148, 0.7529550194740295, -1.0165101289749146, 0.1350286900997162, -0.011571228504180908, -0.8786577582359314, -0.1600421816110611, -1.1013938188552856, 0.8211843371391296, -0.3747549057006836, 0.6133813261985779, -0.36288437247276306, 1.0755324363708496, -1.5283653736114502, -0.7744671106338501, -1.156713604927063, 0.3762564957141876, 0.42208433151245117, 1.1567919254302979, -1.2947221994400024, 1.19792902469635, 0.45085465908050537, -0.5577513575553894, 0.191306471824646, -0.48145291209220886, -0.25323620438575745, 0.6512122750282288, 0.44371920824050903, 0.6928382515907288, 0.19187140464782715, 0.8160338997840881, 0.153778538107872, 0.9664729833602905, 0.30886322259902954, 1.3457996845245361, -0.9307011961936951, 0.01501499954611063, 0.4465496838092804, 0.9524150490760803, -0.6175209879875183, -0.5420951247215271, 0.06445128470659256, -0.429208368062973, -0.9230215549468994, 0.3623304069042206, 1.1738455295562744, -0.7216712832450867, 0.4074177145957947, -0.35842737555503845, 0.3399367332458496, -0.9489379525184631, 1.118515968322754, 0.0476544052362442, -0.4069465696811676, -0.29367971420288086, -0.12596012651920319, -0.4390687048435211, -1.434456467628479, 0.05808534845709801, 0.45259028673171997, -0.5523822903633118, -0.9484094381332397, 0.2994271516799927, 0.3228543698787689, 0.6134087443351746, -0.6458325982093811, 0.9082740545272827, 0.4861936867237091, -0.7724004983901978, -0.12557215988636017, 0.2474605292081833, 0.16382093727588654, 0.3031148314476013, -0.5293582081794739, -0.7161017656326294, -1.679877519607544, 1.172871470451355, 0.3982206881046295, 0.1957545280456543, -0.6716163754463196, 0.19442418217658997, -0.39079806208610535, 0.329924076795578, 1.3480204343795776, -1.145321011543274, -0.7236579060554504, 0.9114865660667419, 0.5104880928993225, -0.4622671604156494, 0.35176244378089905, 1.0680603981018066, 0.6065831184387207, -0.08658374100923538, 0.11145805567502975, 0.6107749342918396, -0.5968903303146362, 0.904288113117218, 0.20267491042613983, 0.25723156332969666, 0.030290931463241577, -0.3797614872455597, -1.6485092639923096, 0.14509359002113342, -0.611045777797699, -0.5335115194320679, 0.383465051651001, -1.140418291091919, -0.11191031336784363, 0.40748509764671326, 0.11749330163002014, 0.2003621608018875, -0.03812215104699135, 0.4484793245792389, -0.8003684282302856, 0.7141209244728088, 0.5841391086578369, 0.11170599609613419, 0.7590853571891785, -0.16503967344760895, -0.150737926363945, -1.4913231134414673, -0.1570160686969757, 0.45480579137802124, 0.5125664472579956, -0.4771724045276642, -0.1818920224905014, 0.8693300485610962, -0.4127328097820282, -0.08059894293546677, -0.19141831994056702, -0.9977365732192993, 0.16519273817539215, -0.6178665161132812, -0.8593533039093018, 0.49434125423431396, 0.14681139588356018, 1.0043948888778687, -0.6085758805274963, -1.3166842460632324, -1.0785294771194458, 0.7590958476066589, -0.42448845505714417, 1.1226938962936401, -0.25897687673568726, 1.0703709125518799, -0.04388560727238655, -0.047876276075839996, -0.29559728503227234, -0.2909562587738037, 0.6286367177963257, -0.12176871299743652, 0.2774636149406433, -0.019595906138420105, 0.26632386445999146, -0.34321868419647217, -0.6976439356803894, -0.026247022673487663, 0.11628513038158417, -0.4845993220806122, 0.03222104534506798, -0.6234474182128906, -0.9774419069290161, -0.8928912281990051, -0.17129185795783997, 1.3077657222747803, 0.34707605838775635, 0.12906785309314728, 0.034975823014974594, -1.3373180627822876, -0.01795428805053234, 0.40020260214805603, -0.886678159236908, -0.06633341312408447, 1.489339828491211, 1.3989914655685425, 0.44462835788726807, 0.2264980673789978, -0.11256567388772964, 0.8555609583854675, -0.731156587600708, 0.26789072155952454, -1.1883536577224731, -0.05011110380291939, -0.43024730682373047], [0.38617831468582153, 1.48563551902771, -2.437533378601074, -0.34590286016464233, 0.9808434844017029, 0.023377761244773865, 1.846603274345398, -0.6154314279556274, 0.4199925363063812, -0.5051085948944092, -0.5181677341461182, -0.8254944086074829, 0.04138365015387535, 0.7055740356445312, 0.19605578482151031, 0.5286830067634583, 1.384753704071045, -0.3806757926940918, 0.47467514872550964, 1.456534504890442, 0.5167080760002136, -0.49539750814437866, 0.05900140851736069, -0.16595377027988434, -0.1793506145477295, 0.0916009321808815, -1.2120301723480225, -0.8817811012268066, -0.9173277616500854, -0.46324706077575684, 0.5964342951774597, -0.9386832118034363, -0.2667962908744812, -0.348084956407547, -1.4167814254760742, -0.39364492893218994, 1.5788192749023438, 1.115721344947815, 0.5798823237419128, -0.20157518982887268, 1.8822492361068726, -0.5234207510948181, 0.5643120408058167, -1.537546157836914, 0.12043315172195435, -0.537926971912384, 0.5583755373954773, -0.789177656173706, -0.03140610456466675, -0.34554073214530945, 0.5040091872215271, -0.9666668176651001, 0.492995947599411, 0.8796382546424866, 0.8633916974067688, -0.26175639033317566, 0.5101714730262756, 0.20454426109790802, 0.2295796275138855, -0.9012109637260437, 1.304155707359314, 0.27137503027915955, -0.2093910425901413, 1.1527858972549438, -0.07590873539447784, -0.4523542821407318, -0.08253451436758041, 0.2304966151714325, -1.174681305885315, 0.5065271258354187, 0.1148173063993454, -0.04172405228018761, -0.6156381964683533, 0.24551023542881012, -1.0614315271377563, 0.835575520992279, 0.47929033637046814, 0.49084916710853577, 0.7339455485343933, 0.8197098970413208, -0.7185752987861633, -0.6087784767150879, 0.1748037189245224, -0.7014462947845459, 0.01059647835791111, 0.24460414052009583, 0.7010740637779236, -0.6089053153991699, -0.7510234117507935, 1.9173486232757568, 0.35121163725852966, 0.11448303610086441, 0.2811397910118103, 0.019602790474891663, -0.4523455798625946, -0.941430926322937, 0.9341944456100464, 0.18776829540729523, -1.2250508069992065, -0.30399850010871887, -1.3655320405960083, -0.9765754342079163, 0.05191933363676071, -0.026754140853881836, -0.10770289599895477, 1.0508031845092773, 0.617986261844635, -0.7553985118865967, -0.5639901161193848, -0.07351063936948776, -0.4633345305919647, -0.10372402518987656, -0.6691278219223022, -0.9907609820365906, -0.1168130561709404, 1.8779805898666382, 1.299603819847107, -0.2049073427915573, 0.2663704752922058, 0.7771225571632385, -0.19439885020256042, -0.5796508193016052, -0.5455191731452942, 0.6276376843452454, 0.4439205527305603, 0.3730281591415405, -0.5722305178642273, -0.30946752429008484, -0.27612796425819397, 0.30700060725212097, 0.7041693329811096, 0.3296336233615875, -0.18538540601730347, 1.009043574333191, -1.094872236251831, 1.4692668914794922, -0.9242660999298096, -0.2553626298904419, -0.4031372666358948, 0.00522086676210165, 0.6928163766860962, -0.0850568413734436, -0.4364303946495056, 0.06856989115476608, 0.4313875138759613, -0.6315233707427979, -0.0542399100959301, -0.23184122145175934, -0.7976127862930298, 0.4278038442134857, -1.130829930305481, 0.5452008843421936, 0.534246027469635, 0.6211087703704834, 0.34575173258781433, -0.22919844090938568, 0.06761251389980316, 0.2727018892765045, 0.4744742214679718, 0.08249235153198242, 1.1252833604812622, -0.18154677748680115, -0.9082026481628418, 1.182396411895752, 0.34078559279441833, 0.15411068499088287, -0.28605207800865173, 1.034732699394226, 0.4773235619068146, 1.0426284074783325, -0.43711167573928833, -0.7553830146789551, -0.10090954601764679, 0.22115816175937653, 0.2431911826133728, -0.46128368377685547, 1.2029961347579956, 0.010775575414299965, -1.6923508644104004, -0.9306754469871521, 0.46078842878341675, -0.6860076189041138, 0.3976761996746063, -0.19344420731067657, 0.7066640257835388, -0.4257509410381317, 0.8798708915710449, -0.3373226523399353, -0.4159725606441498, -0.5014632344245911, -0.9884420037269592, -0.25105154514312744, -0.4868205487728119, 0.35105255246162415, -0.4408798813819885, -0.8093105554580688, 0.48663654923439026, -1.3914296627044678, -0.2845930755138397, -0.15101191401481628, -0.49303120374679565, -0.2784130275249481, -0.9648770093917847, 0.4609927833080292, -0.6375251412391663, 1.0787817239761353, -1.3841910362243652, 1.0995121002197266, -0.38145703077316284, 0.14750880002975464, 1.0965808629989624, 0.10487987846136093, -0.6855744123458862, 0.8633438348770142, -0.3472152352333069, -1.2198371887207031, -0.025164218619465828, 0.37472182512283325, -0.4936450719833374, 0.37301456928253174, 0.1725267916917801, 0.15640409290790558, 0.7230570912361145, 0.19411465525627136, 0.6412382125854492, -0.3496626317501068, -0.9781731963157654, -0.5920968055725098, -0.8986081480979919, 0.5821306109428406, -0.3988072872161865, -0.5335614085197449, 0.37856051325798035, -0.06920439004898071, -1.072512149810791, -1.7210841178894043e-05, -0.2950846254825592, 0.6941792964935303, 0.383868545293808, 1.3803482055664062, 0.9501574039459229, 0.09652295708656311, 0.05214676633477211, -0.6310020685195923, -0.8417701125144958, 0.9662083983421326, 0.8436211943626404, -0.2053397297859192, -0.24061600863933563, 0.8130329251289368, 1.4425125122070312, -0.14762037992477417, 0.3771393895149231, 0.40115025639533997, -0.28423574566841125, -1.089234471321106, -0.4098004996776581, 0.6646834015846252, -0.4222484529018402, 1.382560133934021, 0.8585498332977295, -0.5633418560028076, -0.4261057674884796, -0.21950657665729523, -0.5822968482971191, -0.24201828241348267, -1.006330132484436, -0.3751603662967682, -0.29312169551849365, -0.030725345015525818, 0.11673489958047867, 0.4570985734462738, 0.2785445749759674, 0.5146393179893494, -0.07683751732110977, -0.9064144492149353, -0.3506612777709961, 0.2918896973133087, 0.1722971647977829, 1.015601396560669, -0.026907160878181458, -1.6975904703140259, -0.0009888315107673407, 0.13004599511623383, 0.7746536135673523, 0.4295509159564972, -0.3994118869304657, 0.1325792819261551, 0.04263812676072121, -0.24484284222126007, 0.4382924437522888, 0.1766224503517151, -0.13253453373908997, 0.20354413986206055, -0.6296511292457581, 0.8346594572067261, 1.145371913909912, -1.167689323425293, -0.7496680021286011, -0.3734170198440552, 0.2602887749671936, 1.6039748191833496, 0.5239627361297607, 0.9435205459594727, 0.2685442566871643, -0.3520587980747223, -0.3043820559978485, -0.032022424042224884, -1.1010643243789673, -0.6249038577079773, -0.3252545893192291, -1.0561001300811768, -0.2242731899023056, -0.24672900140285492, 0.0694139152765274, 0.6030623316764832, -0.38073259592056274, 0.4390539526939392, 1.5146043300628662, -0.3958836495876312, -0.34644678235054016, 0.2504054307937622, 0.17365646362304688, -0.6997710466384888, 0.05707278102636337, 1.1505955457687378, -1.022451400756836, -0.7154358625411987, -0.31516557931900024, 0.5829870104789734, 0.5297279357910156, -0.11757608503103256, 0.5640925168991089, -1.859628677368164, -0.670680582523346, -0.3659370541572571, 1.3258405923843384, -0.5094713568687439, -0.15764164924621582, -0.3392273485660553, 0.13957074284553528, 0.9199427962303162, -0.3672716021537781, -0.5455644726753235, 0.8690212368965149, -0.48903268575668335, -0.7219529747962952, -0.1322767436504364, 0.5144235491752625, 0.7715868949890137, -0.3848249316215515, -0.4596341550350189, -0.7316585183143616, -0.5766631960868835, -0.3073839843273163, 0.46572479605674744, -0.2220887541770935, 0.5466582775115967, 0.17346477508544922, 0.3548968434333801, 0.6714382171630859, 0.6843281388282776, -0.4059765040874481, -0.9524338245391846, 0.07794854044914246, 0.8307563662528992, 1.1566035747528076, 0.2149200737476349, 0.3550342619419098, 0.7045952677726746, 0.10568004101514816, 1.112725019454956, 0.5534102320671082, 1.154318928718567, -0.28573355078697205, -0.22042635083198547, -0.7687734961509705, -0.25582191348075867, 0.05277499556541443, -0.14063064754009247, -0.18879255652427673, 0.16034245491027832, -0.9535959959030151, -0.9015564322471619, 0.9581417441368103, 0.7575202584266663, -0.23474520444869995, -0.5107262134552002, 0.5079891085624695, 0.1755456179380417, -0.08699148148298264, 0.38874751329421997, -0.5309665203094482, -0.05642811954021454, -0.015923356637358665, -1.2148417234420776, -0.35372889041900635, 0.686254620552063, 0.6928856372833252, 0.8094851970672607, -0.5614439845085144, 0.7820767760276794, -1.0673694610595703, 0.5867405533790588, 0.6364836096763611, -0.503552258014679, 0.25023382902145386, -0.05401746556162834, -0.5698136687278748, -0.17637062072753906, -0.1087222769856453, 0.9849066138267517, -0.9322993755340576, -0.09557217359542847, 0.2853280007839203, -0.4586007297039032, -0.22228780388832092, -0.5139912366867065, -0.298705518245697, 0.2616112530231476, -0.3347112834453583, 0.5358377695083618, 0.29094699025154114, -0.26927071809768677, 1.5329515933990479, 0.4226081371307373, 0.012576214969158173, 0.7094882726669312, 0.7338969707489014, -1.2693860530853271, 0.09777689725160599, 0.220565527677536, -0.1889936923980713, -0.885262131690979, -0.21361544728279114, 0.48004350066185, -0.6600780487060547, 0.5961093306541443, 0.21815374493598938, 0.48200738430023193, 0.31496796011924744, 0.13068798184394836, 0.3163221478462219, 0.8033883571624756, 1.1085835695266724, 0.9121147394180298, 0.14035092294216156, -0.8080419898033142, -0.3973745107650757, 0.13049061596393585, -1.4077552556991577, 0.3625073730945587, 0.7753920555114746, 0.3599702715873718, 1.3112843036651611, -1.4674456119537354, -0.5032567381858826, 0.5726309418678284, 0.29668113589286804, 0.8224745988845825, 0.9562662839889526, -0.6366238594055176, 0.15565472841262817, 0.5693874359130859, 0.07234436273574829, -0.6319422125816345, 0.4052915871143341, -0.20090055465698242, -0.7365095615386963, 0.2569323480129242, -0.9470497369766235, 0.5945621132850647, -0.025632474571466446, -0.6239302158355713, -0.14592081308364868, -0.9482000470161438, 0.16389359533786774, 0.31878483295440674, 0.5038381814956665, 2.026522397994995, -0.528113842010498, -0.9736077785491943, -0.007701309397816658, -1.0096204280853271, 0.25777485966682434, -0.5906752347946167, -0.43192389607429504, -0.729729413986206, 0.08311256021261215, -0.440502792596817, 0.8347567915916443, -0.22384367883205414, -0.5428155064582825, -0.5505965352058411, -1.196987509727478, 0.3520931303501129, 1.5522935390472412, 1.2244997024536133, 0.3169459104537964, -0.251657098531723, 0.45997175574302673, 0.28723177313804626, -0.8396236300468445, -0.35922059416770935, 0.23015232384204865, 0.13260596990585327, -0.00546632707118988, -1.1659839153289795, -0.7092186212539673, 0.5900591015815735, 0.40099769830703735, -0.16675949096679688, 0.9217649102210999, 1.3044192790985107, 0.9183385968208313, -0.4236249625682831, -0.3818928301334381, 0.38567695021629333, -0.6199917793273926, 0.4509182870388031, 0.8333762288093567, 0.022208325564861298, -1.1452006101608276, -0.6633715033531189, -0.9436110854148865, 0.5263415575027466, -0.23912300169467926, -0.9099996089935303, 1.466617465019226, 0.19942152500152588, 1.0638147592544556, 0.05837385728955269, -0.4470594823360443, 0.41922464966773987, -0.04147526994347572, 0.0033373553305864334, -1.144217610359192, 0.46715807914733887, 0.03347208723425865, -0.28328147530555725, -0.16584423184394836, 0.3510565161705017, 0.2628248929977417, 0.13969938457012177, 0.22179217636585236, 0.17067986726760864, 0.3970376253128052, -0.0683380737900734, -0.08143221586942673, -0.7843679189682007, 0.4212404191493988, -0.6411397457122803, -0.6207751035690308, 0.44619107246398926, 0.49316340684890747, 0.6638614535331726, -0.15958906710147858, -0.4260590970516205, -0.3960783779621124, -0.4363689720630646, -0.26089996099472046, 0.03443211689591408, 0.5612810850143433, 0.09753178805112839, 0.31714364886283875, -0.6410512924194336, -0.8868372440338135, -0.32851359248161316, -0.36098065972328186, 0.3814801573753357, 0.4893004298210144, -0.7761828899383545, 0.8267933130264282, 0.3757534921169281, -1.346042275428772, 0.34510043263435364, -0.5482414364814758, 0.28328055143356323, -0.94826740026474, -0.8232879042625427, -0.6421098113059998, 0.319399356842041, 0.40683430433273315, -0.5500730276107788, 1.2106685638427734, 0.851676344871521, -1.072363257408142, 0.4286487400531769, 0.056321822106838226, -0.6675920486450195, -0.15703117847442627, -0.8666642904281616, 0.6553717255592346, -0.03264366462826729, 0.6371857523918152, -0.5150893330574036, 1.7708638906478882, -1.5657718181610107, -1.1351090669631958, -1.1012966632843018, -0.48129716515541077, 1.348645567893982, 0.6740400791168213, -0.5417579412460327, 1.55141019821167, 0.4332934319972992, -0.37092724442481995, -0.19848394393920898, -0.19809603691101074, -0.4486660063266754, 0.11214735358953476, 0.4157518148422241, 0.755413293838501, 0.265652596950531, 0.8400713205337524, 0.15031707286834717, 0.8551929593086243, 0.3536970019340515, 1.1520421504974365, -0.7377668619155884, -0.4962274134159088, 0.67662513256073, 1.141656517982483, -0.8883094787597656, -1.3509119749069214, 0.07962431013584137, -0.5855759382247925, -0.7504224181175232, 0.010997457429766655, 0.5261212587356567, -0.27747124433517456, 0.29550373554229736, -0.5349626541137695, 0.39041557908058167, -0.5538346767425537, 0.2834344506263733, 0.3787389397621155, -0.5692672729492188, -0.9326086640357971, 0.4352043569087982, 0.019813179969787598, -2.0400590896606445, -0.19476871192455292, 0.2217884063720703, 0.2748597264289856, -0.9631636142730713, 0.723273754119873, 0.26465022563934326, 0.24796591699123383, -0.928719162940979, 1.831276774406433, 0.648521363735199, -0.6013936996459961, -0.09895090758800507, 0.4770621657371521, 0.3238699734210968, -0.028314605355262756, -1.0844281911849976, -0.610683023929596, -0.5302436947822571, 1.0866484642028809, 0.6686657071113586, 0.5781750679016113, -0.11200615763664246, 0.056450147181749344, 0.14151129126548767, -0.050536610186100006, 0.8884975910186768, -1.0295586585998535, -0.10073478519916534, 0.802046537399292, 0.25991296768188477, 0.09336449950933456, 0.11426091194152832, 0.8044854998588562, 0.5356305837631226, -1.1193467378616333, 0.21267719566822052, 0.22531747817993164, -0.7165660262107849, 0.7224134206771851, 0.22229596972465515, -0.38044148683547974, 0.13116604089736938, -0.3000544309616089, -1.106665849685669, 0.19378933310508728, -0.6328067779541016, -0.8087222576141357, 0.49216559529304504, -0.9703896045684814, -0.6124650835990906, 0.26234447956085205, 0.07306740432977676, 0.13408440351486206, -0.6823686361312866, 0.842372715473175, -0.1427888125181198, 0.09220343083143234, 1.0900667905807495, -0.008123229257762432, 1.6002135276794434, -0.49128836393356323, 0.3426190912723541, -1.6138867139816284, 0.27150505781173706, 0.35380280017852783, 0.24619849026203156, -0.22762037813663483, -0.20138025283813477, 0.4722098112106323, -0.051791712641716, -0.5892987251281738, -0.378377765417099, 0.1150154247879982, 0.12297994643449783, -0.030373353511095047, -1.2987785339355469, -0.08718402683734894, 0.26320067048072815, 0.9234421849250793, -0.020569531247019768, -0.6684070229530334, -0.9155912399291992, 0.23569168150424957, -0.6831536889076233, 0.6396180391311646, -0.6399670243263245, 0.41012704372406006, 0.6320397853851318, -0.4942606985569, -0.7826765179634094, -0.595834493637085, 0.9819990992546082, 0.18983829021453857, 0.1381787359714508, -0.4508000612258911, -0.12865839898586273, -0.08821304142475128, -0.915049135684967, 0.5985240936279297, 0.5098671913146973, -0.5325279831886292, 0.4960523247718811, -1.5376607179641724, -0.5186719298362732, -0.6442906856536865, -0.12966659665107727, 0.940662682056427, -0.1260342001914978, -0.155926913022995, 0.14745785295963287, -1.0728716850280762, 0.24088382720947266, 0.5831632018089294, -0.6602495312690735, 0.20057417452335358, 1.5183035135269165, 2.2311904430389404, 0.4484383165836334, -0.1595427244901657, -0.57815021276474, 0.29628780484199524, -0.8730894327163696, -0.1721130758523941, -0.8406224846839905, -0.7067888379096985, -0.4219820201396942], [0.7998701333999634, 1.7986658811569214, -2.743407726287842, -0.24230735003948212, 0.9534332752227783, 0.24091725051403046, 1.7064011096954346, -0.3409430682659149, 0.05650847777724266, -0.25539323687553406, 0.1227121502161026, 0.06601251661777496, 1.7660269737243652, 0.9851018786430359, 0.25398603081703186, 0.566478967666626, -0.02257576957345009, -0.7657016515731812, 0.3503440022468567, 0.8212364315986633, 0.510863721370697, 0.051796335726976395, 0.38390710949897766, 0.036433953791856766, -0.3446310758590698, 1.0381295680999756, -1.6083498001098633, -0.9339393377304077, -0.7395435571670532, -1.0210754871368408, 1.17326021194458, 0.20619851350784302, -0.5570310354232788, 0.3140009343624115, -1.6404377222061157, -0.0017782773356884718, 1.6318349838256836, 0.44743478298187256, 0.65504390001297, 0.5105332136154175, 1.6541506052017212, -0.20376260578632355, 0.42711949348449707, -0.4106318950653076, 0.004043250344693661, 0.020591462031006813, 0.5837726593017578, -0.14590799808502197, 0.2125484049320221, -0.282539039850235, 0.211678147315979, -0.5968566536903381, 0.10885286331176758, 1.2681818008422852, 0.9104905724525452, 0.48258736729621887, -0.04141993820667267, -0.4261474609375, 0.6592069268226624, -1.011250376701355, 1.3551536798477173, 0.2725311815738678, -0.10481879115104675, 0.8608505725860596, 0.3570690453052521, -0.5751456618309021, 0.4860825836658478, 0.40973031520843506, -0.024246834218502045, -0.1700390875339508, 0.5473964214324951, -0.049094002693891525, -1.1821694374084473, 0.03818976506590843, -0.8408995866775513, 0.5394043922424316, 0.5230528116226196, 0.5906153917312622, 0.34985798597335815, 1.0817251205444336, -0.1167793869972229, 0.2095521092414856, 0.056544117629528046, -0.29499372839927673, 0.7007165551185608, 0.2942960858345032, -0.021724870428442955, -0.8813791871070862, -1.0913962125778198, 1.601536750793457, 0.7676013112068176, -0.05828769877552986, 0.4191523790359497, -0.547633707523346, -0.8346008658409119, -1.374326229095459, -0.0028020236641168594, -0.6715551018714905, -0.9248345494270325, -0.7779697775840759, -0.9293174147605896, -0.20806784927845, 0.2491936832666397, -0.12681140005588531, 0.15695936977863312, 1.3780434131622314, -0.17387820780277252, -0.3876855671405792, -0.4529622197151184, -0.07170937210321426, -0.5099340677261353, -0.21956028044223785, -0.9177122712135315, -1.2478257417678833, -0.5004096031188965, 0.991168200969696, 1.2060612440109253, -0.1290816068649292, 0.39464330673217773, 0.5445940494537354, -0.6042179465293884, -0.16939744353294373, -0.35758382081985474, -0.08743877708911896, 0.31065282225608826, 0.8172101378440857, -0.4389847218990326, -0.27537962794303894, 0.14972834289073944, -0.2159125804901123, 0.8320485353469849, 0.18148474395275116, -0.7559400796890259, 0.9467660188674927, -0.2174631953239441, 1.6809169054031372, -0.8788813352584839, -0.1794176697731018, 0.054116811603307724, 0.23792825639247894, 0.3887081444263458, -0.10241900384426117, 0.0952918529510498, 0.3117222785949707, -0.41873398423194885, 0.33542895317077637, 0.33983030915260315, -0.6028457283973694, -0.2340831309556961, 0.056948527693748474, -1.0213828086853027, 0.38680732250213623, -0.07120159268379211, 0.5099081993103027, 0.31437572836875916, 0.1656261682510376, 0.5225070714950562, -0.16450950503349304, 0.6792722344398499, 0.43173953890800476, 0.40787893533706665, 0.044791195541620255, -0.8754953742027283, 0.9365984201431274, 0.10737583041191101, -0.4999462366104126, 0.43434467911720276, 0.3894805610179901, -0.8592984080314636, 0.7943141460418701, -0.6147679090499878, -0.634635865688324, -0.3060877025127411, 0.020869864150881767, -0.3995265066623688, -0.1768311709165573, 1.9239413738250732, -0.6791166067123413, -1.0762625932693481, -1.8532230854034424, 0.6517337560653687, -0.599609911441803, 0.2868506610393524, 0.44777044653892517, 1.0882118940353394, -0.5714032649993896, 0.2170082926750183, 0.23312881588935852, -0.6643626093864441, -0.9263960719108582, -0.8288955092430115, -0.6793582439422607, -0.4509597420692444, 0.8791781067848206, -0.6444188952445984, -0.6276821494102478, 1.3118326663970947, -1.8221243619918823, -0.07634539902210236, -0.2306782752275467, 0.020239681005477905, -0.18368835747241974, -1.1775377988815308, 0.14111900329589844, -0.2262841910123825, 1.0462316274642944, -0.8387264609336853, 0.6273966431617737, -0.7820100784301758, -0.02981686405837536, 1.3951977491378784, 0.00447919312864542, -0.8035318851470947, 0.8087434768676758, -0.03326813504099846, -1.8942389488220215, 0.3053043782711029, 0.42697224020957947, -0.3184052109718323, -0.012813802808523178, 0.0846644714474678, -0.23498088121414185, -0.31169164180755615, 0.7121758460998535, 0.7557374238967896, -0.3880349397659302, -0.15967978537082672, -0.8491629958152771, -0.8016102313995361, 0.46068474650382996, -1.1300511360168457, -0.8204930424690247, 0.5002448558807373, -0.13748204708099365, -0.6386234760284424, 0.10507150739431381, 0.015206604264676571, 0.47253626585006714, 0.3879885673522949, 1.2676148414611816, 0.5348492860794067, 0.18326200544834137, -0.6622141003608704, -0.14961937069892883, -0.5545752048492432, -0.43527671694755554, 1.1646960973739624, -0.3242834210395813, -0.5406484007835388, 1.5234116315841675, 1.0980184078216553, 0.041977740824222565, 0.90468829870224, 0.14430952072143555, 0.5173866748809814, -0.6639602184295654, -0.4668736755847931, 0.1394481062889099, -0.2695522606372833, 0.8163546323776245, 1.0183833837509155, -0.8304077386856079, -0.09107028692960739, -0.3567734956741333, -0.6724267601966858, -0.7281071543693542, -0.610942542552948, -0.37584900856018066, -0.4410459101200104, 0.02061467431485653, 0.0022417083382606506, 0.3614308834075928, -0.9819027781486511, 0.6852307319641113, -0.727279007434845, -0.3244680166244507, -0.2518666684627533, 0.059133853763341904, 0.5239742398262024, 0.23752209544181824, 0.002585143782198429, -1.1881579160690308, -0.8039926290512085, 0.29315993189811707, 1.1887434720993042, 0.44502460956573486, 0.01493292860686779, 0.46272093057632446, 0.3114403784275055, -0.09598114341497421, 0.33449625968933105, -0.0063146683387458324, -0.12876367568969727, -0.07508879899978638, 0.08862382173538208, 0.8824001550674438, 1.0886837244033813, -0.6285104751586914, -0.7987892031669617, -0.5319778323173523, 0.5243653059005737, 1.0351027250289917, 1.1582437753677368, 1.0864508152008057, -0.12994173169136047, 0.35908228158950806, -0.5837275385856628, -0.030158277601003647, -0.3936030864715576, -0.6935646533966064, -0.3151787519454956, -0.5202456116676331, -0.3025958836078644, -0.04802614450454712, 0.11393860727548599, 0.1736019104719162, -0.2651349604129791, 0.6317731142044067, 1.395131230354309, -0.3639748692512512, -0.8321073651313782, -0.7451940178871155, -0.12751281261444092, -0.7007027268409729, 0.22795559465885162, 0.4805009961128235, -0.7272565960884094, -0.5925469994544983, -0.049493346363306046, 0.534436047077179, 0.968885600566864, -0.32832300662994385, 0.30274271965026855, -1.5537117719650269, -0.20824246108531952, -0.2723073661327362, 0.9001396894454956, -0.004229946993291378, -0.008318296633660793, -0.1566706895828247, -0.4386684000492096, 1.0625087022781372, 0.15017732977867126, -0.7930523753166199, 0.5018211007118225, -0.07756620645523071, -0.9429003000259399, -0.2686273455619812, 0.27889591455459595, 1.0236083269119263, -0.47061705589294434, -0.305306613445282, -0.16423623263835907, -0.1372995227575302, -0.016755491495132446, 0.5459805130958557, -0.0987541526556015, 0.8317604660987854, -0.059271179139614105, -0.7908069491386414, 0.5163245797157288, 0.12327511608600616, -0.10672162473201752, -0.76873779296875, 0.31156736612319946, 0.8257635235786438, 0.940621554851532, 0.6307348012924194, 0.6934441328048706, 0.7546018958091736, -0.23294535279273987, -0.5857431888580322, 0.7330621480941772, 1.020749807357788, 0.4024950861930847, -0.04893902689218521, -0.1633274108171463, 0.42146655917167664, -0.15269729495048523, -0.531572699546814, 0.16779182851314545, 0.23634107410907745, -0.24696044623851776, -0.718756914138794, 0.4645726680755615, 0.6130914688110352, -0.16917315125465393, -0.6508974432945251, 0.21582461893558502, 0.7630685567855835, 0.05347045511007309, 0.0674886479973793, -0.4242912232875824, -0.03875931724905968, -0.38090601563453674, -1.1500097513198853, 0.27184465527534485, 0.8997752070426941, -0.2759530544281006, 0.9013567566871643, -0.5948525071144104, -0.3224104046821594, -0.6321043372154236, 0.41758525371551514, 0.5415975451469421, -0.18818168342113495, 0.5912284255027771, 0.08834318816661835, -0.1969461739063263, -0.27969294786453247, 0.26449525356292725, 1.0352028608322144, -0.7396438717842102, -0.2301207184791565, 0.5037351846694946, 0.03782273083925247, 0.4013119339942932, -0.8775623440742493, -0.6951342821121216, -0.030570680275559425, -0.6461881399154663, 0.3403726816177368, -0.002258762251585722, 0.2084498554468155, 0.8480995893478394, 0.8716696500778198, -0.1414971798658371, 0.5047438144683838, -0.6499055027961731, -0.7164623141288757, 0.15128189325332642, 0.652756929397583, -0.17777694761753082, -0.3455227017402649, -0.7014653086662292, 0.28220391273498535, 0.2953612804412842, 1.1793255805969238, 0.08004332333803177, 1.1348503828048706, 1.0043857097625732, -0.26450982689857483, -0.5260048508644104, 0.5699000954627991, 1.5856760740280151, 1.5191630125045776, 0.25073373317718506, -0.5179501175880432, -0.6384169459342957, 0.7019636631011963, -0.5445066690444946, 0.6783753037452698, 1.2213002443313599, -0.27851295471191406, 1.610228180885315, -1.3369264602661133, -0.30510029196739197, 0.9806814789772034, 0.9302427768707275, 0.8766884207725525, 0.01875940151512623, 0.1674046665430069, -0.2943591773509979, 0.34071311354637146, 0.26332616806030273, -0.2681907117366791, 0.33835068345069885, 0.014780059456825256, -0.37031129002571106, 0.6985533237457275, -1.318082571029663, 0.4798167943954468, -0.7292213439941406, -0.0741933062672615, -0.30734071135520935, -0.5704063773155212, 0.03930249810218811, 0.5740531086921692, 0.1760101467370987, 1.0568443536758423, -0.10343775898218155, -1.7966673374176025, -0.027310334146022797, -0.7854881882667542, 0.14061489701271057, -0.03476559370756149, -0.4904209077358246, -0.6667832136154175, -0.5490939021110535, -0.39256078004837036, 0.31637895107269287, -0.07655581831932068, 0.15543723106384277, -0.29856353998184204, -1.7185924053192139, -0.5616719126701355, 0.9666920304298401, 1.282284140586853, 0.7368438839912415, 0.018383368849754333, -0.34706154465675354, 0.38032248616218567, -1.1114643812179565, -0.4323577284812927, 0.449867844581604, -0.02890353463590145, 0.30097517371177673, -1.1292787790298462, -0.6220539212226868, 0.6912280321121216, 0.042534880340099335, 0.19847986102104187, 0.9689904451370239, 1.0191305875778198, 1.31111478805542, -0.7340764403343201, -0.9018258452415466, 0.12806732952594757, -0.6311502456665039, 0.44823944568634033, 0.792314887046814, -0.558223307132721, -0.4440614581108093, -0.845036506652832, -1.1580349206924438, 1.0418341159820557, -0.5651825666427612, -1.1418452262878418, 1.1898013353347778, 0.8037095069885254, 0.47418928146362305, 0.42193880677223206, -0.884714663028717, -0.09911049902439117, 0.7203643321990967, 0.09571518003940582, -0.7880941033363342, 0.3064960241317749, 0.6401360630989075, 0.010837347246706486, -0.3704812824726105, 0.1518685519695282, -0.30040594935417175, -0.26249685883522034, 0.5355527997016907, 0.3355221748352051, -0.04833042249083519, 0.9467447400093079, 0.9115912914276123, -0.8137122988700867, 0.12408645451068878, -0.6744290590286255, -0.06819991767406464, -0.37935319542884827, 0.19306160509586334, -0.03159530460834503, 0.23123297095298767, -0.1236853152513504, -0.5583124160766602, -0.5096368193626404, -0.5287874341011047, -0.05493750795722008, 1.5192580223083496, -0.29662463068962097, 0.3959203064441681, -0.7188582420349121, -0.21614040434360504, -0.22380192577838898, -0.09749098122119904, 0.5124212503433228, 1.1715309619903564, -1.4696823358535767, 0.2520197927951813, 0.5490394234657288, -0.6999961137771606, 0.19280318915843964, -0.2763189375400543, -0.15849743783473969, -1.4333668947219849, -1.3426519632339478, -0.4592670202255249, -0.01014222577214241, 0.9061001539230347, -0.28998011350631714, 0.5767534971237183, -0.07574362307786942, -1.836490511894226, 0.7812434434890747, 0.45082396268844604, -1.3732796907424927, -0.5368853211402893, -1.664038896560669, 0.7151618003845215, -0.9243975281715393, -0.6031238436698914, 0.02352367714047432, 0.9574592113494873, -1.5541036128997803, -0.8855659365653992, -1.2618412971496582, 0.060907330363988876, 1.6114776134490967, 1.5571725368499756, -1.813278079032898, 1.3928160667419434, 0.07779978215694427, -0.8093145489692688, -0.11113256216049194, 0.8734574317932129, -1.0101747512817383, -0.24959801137447357, 0.43612995743751526, 0.24417001008987427, -0.1437021791934967, 0.9480010271072388, -0.2512684464454651, 1.3789770603179932, 0.3688226044178009, 1.0474077463150024, -0.9583378434181213, -0.5369808673858643, -0.09803435951471329, 1.1813302040100098, -1.1646639108657837, -0.4390714764595032, -0.2590496838092804, -0.7953241467475891, -1.2816765308380127, 0.31859341263771057, -0.24509499967098236, -1.1637004613876343, 0.49416303634643555, -0.8825221657752991, 0.8265672922134399, -0.5753212571144104, 0.34758836030960083, -0.4444618225097656, -0.27434900403022766, -0.30906006693840027, 0.18801170587539673, -0.054111238569021225, -1.1308852434158325, -0.2266910821199417, 0.43459561467170715, -0.31432363390922546, -0.6469797492027283, 0.5277359485626221, 0.869256854057312, -0.2892254889011383, -0.9280980229377747, 1.2603981494903564, 1.1448843479156494, 0.42058199644088745, -0.4669809639453888, 0.480953186750412, 0.191341370344162, 0.5040805339813232, -0.5418692231178284, -0.3933199942111969, -0.2896936535835266, 0.5350598096847534, 0.3515099883079529, 0.6278715133666992, -0.12975916266441345, 0.22878700494766235, -0.5182243585586548, 0.7885328531265259, 0.4398966431617737, -0.6108158230781555, -0.44805875420570374, 1.1564476490020752, 0.4802716374397278, 0.21777507662773132, -0.0822344645857811, 0.8373404145240784, 0.5005601644515991, -0.48884955048561096, 0.14580410718917847, 0.4537462890148163, -0.7703120112419128, 0.7000391483306885, 0.2704766094684601, 0.6137365698814392, 0.010862989351153374, -0.5444737076759338, -0.9562037587165833, -0.9113837480545044, -0.30367904901504517, -0.7003291845321655, 0.23422406613826752, -1.3096604347229004, -0.7034512758255005, -0.029788436368107796, 0.04003360867500305, 0.26324543356895447, 0.4984726905822754, -0.3516036868095398, -0.35833314061164856, -0.41728076338768005, 0.8728955388069153, -0.30609917640686035, 0.32849249243736267, -0.13762593269348145, -0.5803995728492737, -0.3893751800060272, -0.20771630108356476, -0.11844310164451599, 0.3178749680519104, -0.5327504277229309, -0.6886278390884399, 0.07858913391828537, -0.5327871441841125, -1.0835903882980347, -0.14931242167949677, 0.35516664385795593, 0.2389475256204605, -0.1237703338265419, -1.4278604984283447, 0.5384157299995422, 1.1796013116836548, -0.36544016003608704, -0.6369223594665527, -0.7735869884490967, -1.089131474494934, 0.7681206464767456, -0.3420078754425049, 0.7301173806190491, -0.884426474571228, 0.5834882855415344, 0.9790217280387878, -0.6502793431282043, -0.08259985595941544, -0.511810839176178, 0.8302934169769287, -0.13625216484069824, 0.6118712425231934, 0.018010681495070457, 0.6619779467582703, -0.6160621643066406, -1.1361007690429688, -0.1694633811712265, 0.5526328086853027, -0.0252202358096838, 0.625722348690033, -1.196022391319275, -0.9785856604576111, -0.0706099420785904, 0.746983528137207, 0.45547178387641907, 0.11621531844139099, -0.20700013637542725, -0.3245905339717865, -1.0166895389556885, -0.1292269378900528, 0.06612692773342133, -0.07393155992031097, 0.04441018030047417, 1.706327199935913, 1.6128101348876953, 0.17363721132278442, -0.2644115090370178, -0.2499338835477829, 0.8011996150016785, -1.2361934185028076, -0.09528457373380661, -0.45639681816101074, -0.1946360319852829, 0.4231894910335541], [0.17974981665611267, 2.5534701347351074, -2.851006507873535, 0.22735512256622314, 1.4354698657989502, 0.6204962730407715, 1.16908597946167, -0.1265755593776703, 0.40156787633895874, -0.6621720194816589, -0.30006924271583557, 0.25640979409217834, 1.09389066696167, 1.0969064235687256, 0.37333908677101135, 0.57274329662323, 0.3967881202697754, -0.8560584783554077, 0.3776210844516754, 0.7194836139678955, 0.32699108123779297, -0.31736642122268677, 0.3141865134239197, 0.1334676891565323, -0.6987326741218567, 0.5786443948745728, -0.9320130944252014, -0.47155946493148804, -0.5391885638237, -0.9937498569488525, 2.08219575881958, -0.6048064827919006, -0.3038909137248993, 0.5064741373062134, -1.9676673412322998, -0.6760667562484741, 1.4369235038757324, 0.4088168144226074, 0.6115415692329407, 0.389845609664917, 1.2942965030670166, -0.26454469561576843, 0.6428079009056091, -0.8779078125953674, -0.33837252855300903, 0.3685864806175232, 0.970349133014679, -0.6273768544197083, 0.3515613079071045, -0.6802532076835632, 0.5876399278640747, -0.15680527687072754, 0.3116009831428528, 1.3037492036819458, 0.919120192527771, 0.003486890345811844, 1.082369089126587, -0.34924083948135376, 0.15192903578281403, -0.290316641330719, 1.1151564121246338, -0.28776830434799194, 0.44957131147384644, 0.10694772005081177, 0.3177274465560913, -0.26969295740127563, 0.21227680146694183, 0.36721643805503845, 0.5644056797027588, 0.17406779527664185, 0.6374768018722534, -0.17508795857429504, -0.9958392381668091, -0.11505824327468872, -0.7740058302879333, 0.7240562438964844, 0.8064152002334595, 0.5958976149559021, 0.1860874891281128, 0.7908660769462585, -0.7362762093544006, -0.02845907211303711, 0.2558225095272064, -0.4142008125782013, 0.7941757440567017, 0.5459257364273071, 0.16844013333320618, -1.3063970804214478, -0.6965376138687134, 1.6308636665344238, 0.8806555271148682, -0.035687122493982315, 0.022178124636411667, -0.3332268297672272, -0.6049376130104065, -1.2992008924484253, 0.25516119599342346, -0.5713396668434143, -0.704277515411377, -0.5883870720863342, -0.767937421798706, -0.13803938031196594, 0.24351748824119568, 0.009110960178077221, 0.19982050359249115, 1.2901129722595215, 0.3544773757457733, -0.4095563590526581, -0.7268736362457275, 0.3791574239730835, -0.07302187383174896, 0.1902206987142563, -0.6807429790496826, -1.3845360279083252, -0.8241376876831055, 0.8006969690322876, 1.277933120727539, 0.3651743531227112, 0.7990747690200806, 0.6458405256271362, -0.4935935139656067, 0.012351732701063156, -0.33754414319992065, 0.37467944622039795, 0.6393247842788696, 0.9482293128967285, -0.4624934792518616, -0.4290986657142639, 0.34407979249954224, -0.18651938438415527, 0.3354337811470032, -0.243070587515831, -0.050154224038124084, 0.7067902088165283, -0.35498911142349243, 1.3761351108551025, -0.913455069065094, -0.3627973794937134, 0.07776510715484619, 0.19184686243534088, 0.21599248051643372, -0.17695637047290802, -0.0768592357635498, 0.17871764302253723, -0.154770627617836, -0.04307524859905243, 0.6815119385719299, -0.3684563636779785, -0.7481963038444519, 0.04661843925714493, -1.6659538745880127, 0.6209321618080139, -0.475151002407074, 0.7693681120872498, 0.7039677500724792, -0.3033785820007324, 0.5479076504707336, 0.018217414617538452, 0.6911925077438354, 0.14996376633644104, 0.3034631609916687, 0.40556883811950684, -1.1360723972320557, 0.7371852397918701, 0.549399733543396, -0.609866201877594, 0.9123971462249756, 0.39082804322242737, -0.3820594549179077, 0.5019269585609436, -1.0577785968780518, -0.6947075724601746, -0.41465944051742554, 0.2904190421104431, 0.07234865427017212, 0.17788824439048767, 1.5462175607681274, -0.642681360244751, -1.1843185424804688, -1.722034215927124, 0.45204371213912964, -0.48201191425323486, 0.004722909070551395, 0.5575405359268188, 1.0901196002960205, -0.266666442155838, 0.21553421020507812, 0.20773287117481232, -0.5996850728988647, -0.938417911529541, -0.7798843383789062, -0.21240635216236115, -0.9848135709762573, 0.3810957074165344, -0.6116982102394104, -0.1995571106672287, 0.887675404548645, -1.0174953937530518, -0.12844061851501465, -0.09484279900789261, -0.013437099754810333, -0.39654430747032166, -1.0691313743591309, -0.1408335566520691, -0.3384582996368408, 0.7735369801521301, -1.1124814748764038, 1.0123242139816284, -0.4589318633079529, 0.1369665116071701, 1.440381407737732, -0.16621635854244232, -1.0721001625061035, 0.5162116885185242, -0.4353528320789337, -2.0063846111297607, 0.6351503729820251, 0.3110451102256775, -0.5368891954421997, 0.32011428475379944, 0.07265239953994751, 0.394641637802124, -0.17991821467876434, 0.4000172019004822, 0.6995142698287964, -1.1124019622802734, -0.4835076928138733, -1.5705556869506836, -0.32717087864875793, 0.4858001172542572, -0.7027531266212463, -0.904679536819458, 0.9002336263656616, 0.2556419372558594, -0.7727574110031128, 0.009861531667411327, -0.13168743252754211, 0.20060622692108154, 0.38133758306503296, 1.523794174194336, 0.6236032843589783, 0.411010205745697, -0.6971442103385925, -0.1506061553955078, -0.6322988271713257, -0.01799406111240387, 0.7767104506492615, -0.40295663475990295, -0.42777207493782043, 1.2277042865753174, 0.8805761337280273, -0.2227630615234375, 0.56756192445755, -0.5775939226150513, 0.13673527538776398, -1.0236330032348633, -0.48456740379333496, 0.06410621851682663, -0.49046769738197327, 1.1747212409973145, 0.9740167856216431, -1.3663303852081299, -0.17033331096172333, -0.056160688400268555, 0.1550883650779724, -0.1745034158229828, -0.5360596179962158, -0.2897063195705414, -0.20515750348567963, 0.037127092480659485, -0.009978408925235271, 0.13625475764274597, -0.8665109872817993, 0.32587766647338867, -0.8034510612487793, -0.39468246698379517, -0.05412705987691879, 0.19442424178123474, 0.3233051300048828, 0.25360533595085144, -0.5228216052055359, -1.2124886512756348, -0.9334815740585327, 0.21169865131378174, 1.3291839361190796, 0.16266706585884094, 0.5409641265869141, 0.49008095264434814, 0.07490108907222748, -0.22724448144435883, 0.4388541579246521, 0.19392089545726776, -0.22884684801101685, -0.036188118159770966, -0.030968721956014633, 0.8070081472396851, 1.0932718515396118, -1.1517629623413086, -0.7406632900238037, -0.12698397040367126, 1.268007516860962, 0.6870458722114563, 1.0682446956634521, 0.7739114165306091, -0.2118278592824936, 0.13986194133758545, -0.2613373398780823, -0.45606544613838196, -0.5659922957420349, -0.9338297843933105, -0.2065344601869583, -0.12631581723690033, -1.0087567567825317, 0.302217960357666, -0.0023386646062135696, -0.1588059812784195, -0.1647404432296753, 0.35083574056625366, 1.6371409893035889, -0.39042022824287415, -1.0949510335922241, -0.7486640214920044, -0.45744431018829346, -0.8335117101669312, 0.5133793950080872, 0.6051830053329468, -0.7925251126289368, -0.4975038766860962, 0.5117895603179932, 0.23185884952545166, 0.6221411824226379, -0.38702476024627686, 0.5295413732528687, -1.4645216464996338, -0.8952542543411255, -0.646754264831543, 1.351905107498169, 0.6361063718795776, -0.32019904255867004, -0.6950266361236572, -0.12759289145469666, 0.5281959772109985, -0.1809263825416565, -0.330338716506958, 0.6801515817642212, -0.2192922979593277, -0.7907797694206238, -0.20966380834579468, 0.20791344344615936, 0.7043471932411194, -0.9060957431793213, -0.14909793436527252, -0.13563144207000732, 0.0953855887055397, -0.0339345708489418, 0.7683698534965515, 0.9374675750732422, 0.4416942596435547, -0.12299371510744095, -0.9060351252555847, 0.12061136215925217, -0.34960466623306274, -0.19247287511825562, -1.1748135089874268, 0.4621712565422058, 0.9614266157150269, 0.7398189306259155, 0.6234707236289978, 0.3502840995788574, 0.9849671721458435, -0.034586772322654724, -0.7110838890075684, 0.3503277897834778, 1.0839059352874756, 0.4377134442329407, 0.07290304452180862, -0.07326430082321167, 0.38030993938446045, 0.23590952157974243, -0.7186129093170166, 0.10500170290470123, 0.3554441034793854, -0.2531367540359497, -0.3977547883987427, 0.529933750629425, 0.41390693187713623, -0.49982544779777527, -0.5865429639816284, 0.06116248667240143, 1.1233552694320679, 0.505878210067749, 0.39717650413513184, -0.256592333316803, -0.5686262845993042, -0.3543265461921692, -0.842917263507843, -0.3435564637184143, 0.1858540177345276, 0.2991461753845215, 0.9093098044395447, -0.8710035681724548, -0.57784104347229, -0.9432927370071411, 0.7256687879562378, 0.5498594045639038, 0.09484114497900009, 0.7213202714920044, 0.10389313101768494, 0.005205690860748291, -0.03179537504911423, 0.5723568797111511, 1.121157169342041, -0.38273733854293823, -0.27614307403564453, 0.19845019280910492, 0.10273483395576477, -0.13605238497257233, -0.8188373446464539, -0.26181328296661377, 0.0409327931702137, -0.7008458375930786, -0.5882760286331177, 0.1445550173521042, 0.18458081781864166, 0.9244149923324585, 0.8114888668060303, 0.2045111060142517, 0.6765648126602173, -0.7115538716316223, -1.0044808387756348, -0.085394948720932, 0.799527108669281, -0.2499440610408783, -0.2509169578552246, -0.5060081481933594, 0.5092150568962097, 0.3256814777851105, 0.7446578741073608, -0.029990628361701965, 0.8386159539222717, 0.7520661354064941, 0.1260930299758911, -0.6898794174194336, 0.9329427480697632, 1.1856626272201538, 1.434457540512085, 0.8918392658233643, -0.43255484104156494, -0.6036460399627686, 0.8503372669219971, -0.6618221402168274, 0.6781842708587646, 1.0479811429977417, 0.21634116768836975, 1.8114413022994995, -1.1796079874038696, -0.7886968851089478, 1.0957088470458984, 0.48854684829711914, 0.44916313886642456, 0.12374268472194672, 0.14452676475048065, -0.5608556270599365, 0.39770716428756714, 0.5521559715270996, 0.07978930324316025, 0.3129703998565674, -0.16179291903972626, -0.01023537665605545, 0.5011795163154602, -0.6782413721084595, 0.3963696360588074, -0.9238763451576233, 0.014102326706051826, -0.317817747592926, -0.4601931869983673, 0.2566886246204376, 0.587407648563385, 0.2742268443107605, 0.6200272440910339, -0.47798699140548706, -1.3663843870162964, 0.11436563730239868, -1.3541784286499023, 0.2930338382720947, -0.6091064214706421, -0.862113356590271, -0.26864656805992126, -0.3979630470275879, -0.4653463363647461, 0.38815128803253174, 0.06296680122613907, -0.4158381223678589, -0.06423325836658478, -1.116389513015747, -0.3204697370529175, 0.7400600910186768, 1.3287267684936523, 0.5566631555557251, 0.0011472105979919434, 0.17446401715278625, 0.5990592241287231, -1.1955697536468506, -0.09795752912759781, 0.09260288625955582, 0.014204081147909164, 0.23828953504562378, -0.8731385469436646, -0.7053835391998291, 0.4664626717567444, 0.4375291168689728, -0.07464128732681274, 0.8046377897262573, 0.8907897472381592, 0.9952405095100403, -0.6319879293441772, -0.5338212847709656, -0.46738070249557495, -0.294735848903656, 0.5660625100135803, 0.75400710105896, -0.41574275493621826, -0.40298593044281006, -0.36284103989601135, -1.579253911972046, 1.3207283020019531, 0.07132658362388611, -0.5361096262931824, 0.25424033403396606, 0.639507532119751, 0.813937246799469, -0.039214130491018295, -0.5711205005645752, 0.032859332859516144, 0.1962365061044693, 0.009653091430664062, -0.48463380336761475, 0.4228029251098633, 0.06935203075408936, -0.22761133313179016, -0.3141506314277649, 0.06089191511273384, -0.30895155668258667, -0.3181213140487671, 0.07343453168869019, 0.7882051467895508, -0.20932075381278992, 0.7398816347122192, 0.1470911204814911, -0.9071078300476074, 0.3634299635887146, -0.669520914554596, -0.1504705846309662, -0.10402828454971313, 0.4981324374675751, -0.002465873956680298, 0.001566283404827118, -0.35400545597076416, -0.6508017778396606, -0.43077629804611206, -0.6340051889419556, -0.02812967263162136, 1.098335862159729, -0.3660375475883484, 0.516755998134613, -0.364753782749176, 0.1565297693014145, -0.22717435657978058, -0.3560670018196106, 0.5515310764312744, 0.6041451692581177, -1.2351932525634766, -0.24963097274303436, 0.2982006072998047, -0.3998405933380127, -0.0656772032380104, -0.1906828135251999, 0.5706397891044617, -1.7232294082641602, -1.019230604171753, -0.9578360319137573, -0.5816156268119812, 1.067613124847412, -0.5538185238838196, 0.7016558647155762, -0.026102788746356964, -1.8312348127365112, 0.6930679082870483, 0.19297334551811218, -1.87245774269104, -0.23251643776893616, -1.578683614730835, 0.6519376039505005, -1.1909756660461426, -0.3787844181060791, -0.03165781497955322, 1.6267989873886108, -2.2710423469543457, -1.2272326946258545, -1.0015987157821655, -0.3702026903629303, 1.2925219535827637, 0.6409088373184204, -1.3247581720352173, 0.9307369589805603, 0.3915548622608185, -0.5670374035835266, -0.34319087862968445, 0.7911659479141235, -0.9892697334289551, 0.06730320304632187, 0.09758178889751434, 0.49718594551086426, -0.2611885964870453, 0.7907532453536987, -0.29422175884246826, 0.954952597618103, -0.05966119095683098, 0.7798082828521729, -0.2833411693572998, -0.6022292971611023, 0.5049647688865662, 1.193284034729004, -1.0296491384506226, -0.6529865264892578, -0.762786865234375, -0.71329665184021, -1.514709711074829, 0.1911599487066269, 0.46169036626815796, -0.9196491837501526, 0.15179996192455292, -0.7203023433685303, 0.8031977415084839, -0.7593886852264404, -0.14559906721115112, 0.058722712099552155, -0.0920485258102417, 0.10495930165052414, -0.2430325150489807, 0.20998790860176086, -1.4322195053100586, -0.10459505766630173, 0.3254375457763672, 0.19190937280654907, -0.22851379215717316, 0.6497186422348022, 1.179704189300537, -0.18114179372787476, -0.7134701013565063, 1.2021763324737549, 0.9781484603881836, 0.10817025601863861, -0.6100382208824158, 0.28672656416893005, -0.0026000365614891052, 0.7567758560180664, -0.7063002586364746, -0.11892584711313248, -0.7170623540878296, 0.4407230019569397, 0.41073039174079895, 0.03622063621878624, -0.18977269530296326, -0.35768041014671326, -0.571304202079773, 0.9207248687744141, 0.45483070611953735, -0.4944891631603241, -0.24812251329421997, 1.1989468336105347, 0.4446774125099182, -0.20802776515483856, -0.32057082653045654, 0.33558040857315063, 0.33685576915740967, 0.06848248839378357, 0.26493531465530396, 0.5862247347831726, -0.8180976510047913, 0.6521322727203369, -0.04466647654771805, 0.36725735664367676, -0.022317707538604736, -0.6721487045288086, -1.324756383895874, -0.3633052110671997, -0.349892795085907, -0.6944955587387085, 0.662889838218689, -1.4344991445541382, -0.6161419749259949, 0.1915120929479599, 0.3544226288795471, -0.08403241634368896, 0.07946383208036423, -0.23646539449691772, -0.3166840672492981, -0.03435099869966507, 1.091662883758545, -0.5979149341583252, 0.922730565071106, 0.4792167842388153, -0.5341132879257202, -0.5390572547912598, -0.3895307183265686, 0.2701474130153656, 0.34879451990127563, -0.3786279559135437, -0.5293091535568237, 0.32475435733795166, -0.4823301434516907, -0.7453258037567139, 0.3165399432182312, 0.09145832806825638, 0.11743272095918655, 0.1877763420343399, -0.7016794681549072, 1.0900694131851196, 1.5747853517532349, 0.27847936749458313, -0.7673514485359192, -0.9211968183517456, -0.8903771638870239, 0.19556117057800293, -0.3140108585357666, 0.6147931814193726, -0.4735533595085144, 1.2631809711456299, 0.507520854473114, -0.2480871081352234, -0.7993546724319458, -0.3019847273826599, 0.32219043374061584, 0.3176671862602234, 0.6123141646385193, -0.17151571810245514, 0.4692060649394989, -0.49901294708251953, -1.2800289392471313, 0.007545972242951393, 0.3223324418067932, 0.09356074035167694, 0.5194991230964661, -0.681820273399353, -0.710350513458252, -0.3176020383834839, 0.5368899703025818, 1.003478765487671, 0.4959506690502167, 0.19128219783306122, -0.37163037061691284, -1.076294183731079, -0.03150862455368042, 0.02590293437242508, 0.1919039487838745, -0.06960636377334595, 1.8786954879760742, 1.5211155414581299, 0.8216391801834106, 0.06628676503896713, -0.10361133515834808, 0.6849864721298218, -0.7286837697029114, -0.3217996060848236, -0.9412881731987, -0.3654676079750061, 0.35077667236328125], [0.03597282990813255, 1.5644361972808838, -2.0824456214904785, -0.03580111637711525, 0.20133887231349945, -0.21522587537765503, 2.089434862136841, -0.7032407522201538, 0.5316605567932129, -1.1843500137329102, -0.29676008224487305, -0.17795027792453766, 0.2684856653213501, 0.7945030331611633, 0.21366137266159058, 1.744667649269104, 0.8099814057350159, -0.43747347593307495, 0.23402221500873566, 0.4795045256614685, -0.5183221101760864, 0.09353013336658478, 0.36673274636268616, -0.16308799386024475, -0.1449020653963089, 1.0807263851165771, -1.0496599674224854, -0.2955073416233063, -0.8706651329994202, -0.8583686947822571, 0.5879886150360107, -0.4381639063358307, -0.2931012511253357, -0.2974391281604767, -1.649061918258667, -0.4961056411266327, 1.1778959035873413, 1.044690489768982, 0.18413281440734863, 0.6307650804519653, 1.8801848888397217, -0.5053853988647461, 0.503487229347229, -1.853340983390808, 0.07517287135124207, -0.07614007592201233, 1.189509630203247, -0.9539983868598938, -0.3248988091945648, -0.08027001470327377, 0.8176323175430298, -0.2918647229671478, 0.7034425735473633, 0.7583647966384888, 1.3866554498672485, -0.7135798931121826, 1.1345716714859009, -0.17323331534862518, 0.6380676031112671, -0.9045591354370117, 1.883923053741455, 0.07465219497680664, -0.3921775221824646, 1.281251072883606, -0.22495923936367035, -1.0433460474014282, -0.3729100525379181, 0.2180260419845581, -0.6308855414390564, 0.18709836900234222, -0.09488595277070999, 0.14288724958896637, -0.4589729607105255, 1.0340344905853271, -1.4259779453277588, 0.43050631880760193, 1.0695728063583374, 0.5302525758743286, 0.652101457118988, 0.5727896690368652, -0.2688598930835724, -0.18354757130146027, 0.34201177954673767, -1.0790413618087769, 0.384029358625412, 0.7255169749259949, 0.5972636342048645, -1.1452580690383911, -0.27219104766845703, 1.5758510828018188, 0.5846494436264038, -0.5349611639976501, 0.4695851504802704, -0.2058248072862625, 0.1793651580810547, -0.1864718794822693, 0.8345175981521606, -0.22347111999988556, -0.766941249370575, -0.3590952157974243, -0.76882404088974, -0.37878555059432983, 0.1528298258781433, -0.16484597325325012, -0.0027850684709846973, 0.9285728335380554, 0.2519669830799103, -0.19484733045101166, 0.08544925600290298, 0.09454533457756042, -0.18134064972400665, 0.29443004727363586, -0.6863011717796326, -1.320900797843933, -0.6176305413246155, 0.9384986758232117, 1.3372544050216675, -0.004716992378234863, 1.002545952796936, 0.9215106964111328, -1.007228970527649, -0.22543534636497498, 0.009836461395025253, 0.7217788100242615, 0.5960741639137268, 0.48678654432296753, -1.1593719720840454, -0.9219552278518677, -0.013788387179374695, -0.19078652560710907, 0.8392856121063232, -0.10481622070074081, -0.28738296031951904, 1.5144085884094238, -1.6440997123718262, 1.3541877269744873, -0.2773972451686859, -0.19230785965919495, 0.09694628417491913, -0.2747212052345276, 0.6597422361373901, -0.06148982420563698, -0.8359341621398926, -0.4694620966911316, -0.4341123104095459, -0.39481261372566223, -0.034521762281656265, -0.4751073718070984, -0.9640884399414062, 0.38562875986099243, -0.7091708183288574, 0.6090498566627502, 0.2153610736131668, 0.36772066354751587, 0.9042027592658997, -0.6545352935791016, -0.18680799007415771, 0.4787535071372986, 0.7783039808273315, 0.21992957592010498, 1.5463008880615234, 0.030858103185892105, -1.1065138578414917, 0.7285277247428894, 0.861504077911377, -0.11777996271848679, 0.4558829367160797, 0.9221218824386597, 0.14838047325611115, 0.42004746198654175, -0.5372975468635559, -1.0374269485473633, -0.7643002271652222, 0.10051801800727844, 0.1589181125164032, 0.0057635121047496796, 1.3096823692321777, -0.7434956431388855, -1.3406225442886353, -1.040404200553894, 0.6529053449630737, -0.3510589003562927, -0.09337866306304932, 0.1912999451160431, 0.3151428997516632, -0.931771457195282, 0.4826696813106537, -0.10486999899148941, -0.7240336537361145, -0.22169534862041473, -0.19586169719696045, -0.2266773134469986, -0.15056417882442474, -0.3341440260410309, -1.1630481481552124, -0.6570578813552856, 0.26654741168022156, -1.258212924003601, -0.19824086129665375, 0.071462482213974, -0.5084933042526245, -0.10809635370969772, -1.3602180480957031, 0.5445874333381653, -0.6404201984405518, 1.0207107067108154, -0.7640066742897034, 0.8503262400627136, -0.785700798034668, -0.5347713232040405, 0.9274687767028809, 0.12375866621732712, -0.741804301738739, 0.7111219167709351, -0.03202446177601814, -1.4387257099151611, -0.10930902510881424, 0.02482772432267666, -0.6429131031036377, 0.6976845860481262, 0.031772613525390625, 0.35988521575927734, 0.5538610219955444, 0.1512642204761505, 0.11761178821325302, -0.07520417124032974, -0.6455870866775513, -0.6963742971420288, -0.21618212759494781, 0.06413459032773972, -0.45358946919441223, -1.2939187288284302, 0.784644603729248, 0.6721291542053223, -1.0467299222946167, 0.26041141152381897, -0.1356612741947174, 0.9973035454750061, 0.0656658411026001, 0.9365142583847046, 1.2000434398651123, 0.8046106100082397, -0.31348106265068054, -0.5682368278503418, -1.044626235961914, 0.7656755447387695, 0.8257191777229309, -0.16921141743659973, -0.13337211310863495, 0.6418788433074951, 1.5459157228469849, -0.1659352332353592, 0.6350354552268982, 0.07758048176765442, 0.0476442351937294, -1.2155218124389648, -1.120450496673584, 0.18442374467849731, -0.26320043206214905, 1.3681427240371704, 0.5776615142822266, -0.9779420495033264, 0.4397066533565521, 0.19098712503910065, -0.24681304395198822, -0.01885678991675377, -0.7999303340911865, 0.21183952689170837, 0.07981083542108536, -0.3882617652416229, 0.11454268544912338, 0.01848486065864563, -0.2557518184185028, 0.6076902151107788, -0.30715176463127136, -0.8541407585144043, -0.6180291175842285, 0.27775755524635315, -0.06457935273647308, 1.1458839178085327, 0.2011856734752655, -2.014038324356079, 0.06048790365457535, -0.3835294246673584, 0.9057693481445312, 0.025572100654244423, -0.47746509313583374, 0.29009515047073364, 0.5941057205200195, -0.5257839560508728, 0.29977017641067505, 0.09805899858474731, -0.3592507839202881, 0.5677393078804016, -0.04024358466267586, 0.0902840718626976, 1.5208063125610352, -0.4991898834705353, -1.0009020566940308, 0.44320547580718994, 1.0807522535324097, 1.9836527109146118, 0.7850472331047058, 1.6052089929580688, -0.27470266819000244, 0.28124353289604187, -0.5243617296218872, -0.19083240628242493, -1.2062827348709106, -0.6326372027397156, -0.6786976456642151, -0.7906637787818909, -0.06269046664237976, 0.12243509292602539, 0.396179735660553, 1.1242057085037231, -0.3016754388809204, 0.029209300875663757, 1.2349494695663452, 0.11292381584644318, 0.0743257999420166, 0.5384932160377502, 0.08762622624635696, -0.826423704624176, -0.2312086522579193, 1.1848053932189941, -1.0023609399795532, -0.6294550895690918, 0.11273904889822006, 0.09365824609994888, 0.7669008374214172, 0.1413564682006836, 0.12597918510437012, -2.017881155014038, -0.7934243083000183, 0.19571447372436523, 1.6704355478286743, -0.2796561121940613, -0.09427908807992935, -0.33441853523254395, 0.7436700463294983, 0.6275312900543213, -0.20894204080104828, -1.4100862741470337, 0.9049285054206848, -0.22909387946128845, -1.0209511518478394, 0.12160646170377731, 0.5030229091644287, 0.8126904368400574, -0.5054435729980469, -0.6762477159500122, -0.531435489654541, -0.6390476226806641, 0.1386222094297409, 0.5875226259231567, -0.20406575500965118, 0.9004214406013489, 0.09008544683456421, -0.06078866124153137, 0.5428285002708435, 0.0884125754237175, -0.45020854473114014, -1.2251574993133545, 0.5115000009536743, 0.00040138140320777893, 1.2486037015914917, 0.5751742124557495, 0.2474854588508606, 0.24810104072093964, 0.24279743432998657, 0.3748719394207001, -0.009109941311180592, 1.240208387374878, 0.1701703667640686, 0.9098321795463562, -0.3880736529827118, -0.012846441008150578, -0.001602410338819027, -0.30230000615119934, -0.48345446586608887, 0.8524736166000366, -1.4529372453689575, -0.628515362739563, 1.149442434310913, 0.5057438611984253, -0.14902600646018982, -0.2732001841068268, 0.4711735248565674, 1.005873203277588, 0.21500656008720398, -0.4281306266784668, -0.6563535928726196, -0.8927717804908752, 0.13677039742469788, -1.1787121295928955, 0.23789335787296295, 1.001785397529602, 0.21505850553512573, 0.818473219871521, -0.32958388328552246, 0.14507396519184113, -1.0632269382476807, 0.4794621467590332, 0.8941329121589661, -0.5013859272003174, 0.3664328455924988, 0.49239662289619446, -0.08292687684297562, -0.004970367066562176, 0.6259562969207764, 1.0101242065429688, -0.9236982464790344, 0.25330790877342224, 0.708269476890564, -0.7265477776527405, -0.3986387252807617, -0.2604030966758728, -0.8820714354515076, 0.14503556489944458, -0.3437040448188782, 0.014375997707247734, -0.17618194222450256, -0.31396758556365967, 1.2565350532531738, 0.3180087208747864, 0.21474991738796234, 0.05156407132744789, -0.5548840165138245, -0.38814085721969604, 0.36630889773368835, 0.07047316431999207, -0.29838618636131287, -1.0488381385803223, -1.0461294651031494, 0.49732810258865356, -0.3433097004890442, 0.8216984868049622, -0.1531381607055664, 0.2701999843120575, -0.10244593024253845, 0.12643565237522125, 0.2837885916233063, 0.8524888753890991, 0.2963797450065613, 1.1968400478363037, 0.06966284662485123, -0.6984184384346008, -0.4426904022693634, 0.3290267884731293, -0.9097811579704285, 0.8838645219802856, 0.14777790009975433, 0.3471551835536957, 1.2975544929504395, -1.3045406341552734, 0.04473976045846939, 0.5470048189163208, 0.5526426434516907, 0.7986351847648621, 1.0849977731704712, -0.5943892598152161, -0.2608155608177185, 0.48883816599845886, -0.21209773421287537, 0.4331410825252533, 0.03441349044442177, 0.06462486833333969, -0.5580511689186096, 0.22896495461463928, -0.9098548889160156, 0.33063364028930664, -0.28987735509872437, -0.7836727499961853, -0.24443571269512177, -1.0188345909118652, -0.31855687499046326, 0.5606188178062439, 0.20363183319568634, 1.901313304901123, -0.15629981458187103, -0.8025803565979004, 0.09516313672065735, -0.6820786595344543, 0.8614878058433533, -0.7820156216621399, -0.5006053447723389, -0.9072892665863037, -0.24248389899730682, -0.12488451600074768, 0.3607187867164612, -0.8633164763450623, -0.6870905160903931, -0.187530979514122, -0.8505861759185791, 0.3326111137866974, 0.7679113149642944, 1.1146504878997803, 0.1188831478357315, -0.7892550826072693, 0.4782158434391022, -0.09680107235908508, -0.3687998354434967, -0.4902189373970032, 0.31540733575820923, -0.09653395414352417, 0.027371609583497047, -1.3581441640853882, -0.6698557734489441, 0.45032986998558044, 0.4439442753791809, -0.11688753217458725, 1.0588780641555786, 1.1066886186599731, 1.128345012664795, -0.4726390540599823, -0.2935134768486023, 0.2997700870037079, -0.37913650274276733, -0.010498509742319584, 0.22246986627578735, -0.23568663001060486, -0.30369576811790466, -0.65101557970047, -1.2139613628387451, 0.3501245379447937, -0.13607755303382874, -0.6508437991142273, 0.8178021907806396, 0.630646824836731, 0.6258779764175415, 0.41229134798049927, -0.7453706860542297, 0.43504101037979126, 0.14497312903404236, -0.9513497948646545, -0.7263599634170532, 0.5735490918159485, 0.35578054189682007, 0.4562699496746063, -0.014323852956295013, 0.2571091055870056, 0.045473791658878326, 0.05861912667751312, -0.6758546233177185, 0.5087673664093018, 0.24744541943073273, 0.7965136766433716, -0.3161652386188507, -0.5305554270744324, 0.19865307211875916, -0.35582828521728516, 0.00671660341322422, 0.28947094082832336, 1.105675220489502, -0.3188314735889435, 0.18195201456546783, -0.6074918508529663, -0.5405337810516357, -0.5098872780799866, -0.7464559078216553, -0.2700824439525604, 0.655707836151123, 0.37800487875938416, 0.5407971143722534, -0.7847204208374023, -0.17093800008296967, 0.44201794266700745, 0.0025813353713601828, 0.4422759413719177, 0.05913843214511871, -0.8979513049125671, -0.1816282868385315, 0.5970066785812378, -0.5230851173400879, 0.07116769254207611, -0.12845194339752197, -0.2525347173213959, -1.4354795217514038, -1.0901433229446411, -0.9473419785499573, 0.17579278349876404, 0.7457313537597656, -1.0737930536270142, 0.9549959897994995, 0.6352105736732483, -1.3601919412612915, 0.511660635471344, 0.19984975457191467, -1.4506099224090576, -0.32044968008995056, -1.5438412427902222, 0.7922843098640442, 0.24119062721729279, 0.5423014760017395, -0.2854093015193939, 0.8710741400718689, -1.2450240850448608, -0.8822925090789795, -0.7065232992172241, -0.19602513313293457, 0.581928551197052, 0.6760416626930237, -0.9035550355911255, 1.03835928440094, 0.9554638266563416, -0.7540158033370972, -0.47256550192832947, -0.3788639008998871, -0.5227175951004028, 0.5193644762039185, -0.14307783544063568, 0.9662619829177856, 0.5620966553688049, 0.5024125576019287, 0.5031545162200928, 1.0076960325241089, 0.34273993968963623, 1.12770676612854, -0.8516929745674133, -0.4136107861995697, 0.34275534749031067, 1.2398920059204102, -0.7722883820533752, -0.8893226385116577, -0.183841735124588, -0.6657826900482178, -1.2981244325637817, 0.43800804018974304, 1.2354848384857178, -0.2526127099990845, 0.20984585583209991, -1.0597411394119263, 0.4912897050380707, -1.3317725658416748, 0.308033287525177, -0.5043310523033142, -0.4062120020389557, -0.40606579184532166, 0.21640704572200775, -0.3220703601837158, -0.8856378197669983, 0.033751390874385834, 0.44071558117866516, -0.09674011915922165, -0.7415403723716736, 0.8746040463447571, 0.4023773670196533, 0.7615509629249573, -0.5078614354133606, 1.620158076286316, 0.9373247027397156, -0.2577134668827057, 0.2560836970806122, -0.09437523037195206, 0.026009781286120415, 0.2482946217060089, -0.7217459082603455, -0.5342651009559631, -1.46317458152771, 1.1500238180160522, 0.21211855113506317, 0.13023853302001953, -0.6567361950874329, 0.18341709673404694, -0.24571551382541656, 0.3677620589733124, 0.6925351619720459, -1.2312015295028687, -0.46492666006088257, 0.5482768416404724, 0.23405785858631134, -0.2553585469722748, 0.06007261574268341, 0.3181609511375427, 0.2762075662612915, -0.49062466621398926, 0.12314864248037338, 0.505989670753479, -1.019543170928955, 0.4393720328807831, 0.07097465544939041, -0.2121477872133255, -0.10136638581752777, -0.5092065334320068, -1.2730967998504639, 0.30066704750061035, -0.5075381398200989, -1.0624765157699585, 0.6795816421508789, -1.3687069416046143, 0.02639917843043804, 0.2912401854991913, -0.2622995674610138, -0.24978917837142944, -0.05831038951873779, 0.7824112176895142, 0.11720867455005646, 0.08144082874059677, 1.1405680179595947, -0.4040023386478424, 1.3822177648544312, 0.41031941771507263, 0.17142631113529205, -1.178123950958252, -0.4648509919643402, 0.14896972477436066, -0.4204350709915161, 0.04580559581518173, -0.061751872301101685, 0.42669060826301575, -0.4390307068824768, -0.07376378029584885, -0.1482015997171402, 0.5834776759147644, 0.09960795193910599, 0.006418648175895214, -0.4986060559749603, 0.6338694095611572, 1.1360608339309692, 0.5766484141349792, 0.002327151596546173, -0.8205289840698242, -0.5595187544822693, 0.48649725317955017, -0.5794574618339539, 0.6698092818260193, -0.03783934935927391, 1.0770983695983887, -0.15715496242046356, -0.2785811424255371, -0.7517103552818298, -0.7667440176010132, -0.026251930743455887, 0.17806780338287354, 0.2785325348377228, -0.35089072585105896, -0.22984519600868225, -0.05394182354211807, -0.6428567171096802, 0.06858891993761063, -0.13412977755069733, -0.2016046643257141, -0.18689186871051788, -1.4008280038833618, -1.0295593738555908, -0.16020093858242035, -0.45215779542922974, 1.0773627758026123, 0.32318171858787537, 0.12513409554958344, -0.4554589092731476, -1.4445507526397705, -0.23196718096733093, 0.35417863726615906, -1.1248522996902466, 0.30388081073760986, 1.2342803478240967, 1.778123140335083, 0.8306286931037903, 0.1067931205034256, -0.5312548875808716, 0.5459620356559753, -0.23253460228443146, 0.1791975051164627, -0.5452834963798523, -0.1751798540353775, -0.16183939576148987], [-0.28775379061698914, 1.6365820169448853, -2.1061136722564697, 0.7371761798858643, 0.9194611310958862, 0.8419415950775146, 1.0671097040176392, -0.12865743041038513, -0.11451692879199982, -0.086463563144207, -0.024720316752791405, -0.037626542150974274, 0.9201013445854187, 0.6065061688423157, 1.11990487575531, 0.38320595026016235, 0.6795989274978638, -0.3431828022003174, 1.006448745727539, 1.1356624364852905, -0.4649266004562378, -1.1410754919052124, -0.3882480263710022, -0.7822344899177551, -0.22849346697330475, 0.6622926592826843, -1.7200731039047241, -0.5203911662101746, -1.637873888015747, -0.8892760276794434, 0.69507896900177, -0.01758766546845436, 0.21451421082019806, -0.438551664352417, -1.0478330850601196, 0.05781317502260208, 1.5462855100631714, 1.7923051118850708, 1.4557989835739136, -0.03973126783967018, 1.586472988128662, -0.39215147495269775, 0.2819829285144806, -0.8966035842895508, -0.3311801552772522, -0.6477994918823242, 1.0531784296035767, -0.042704831808805466, 0.4467218518257141, -0.9331889748573303, 0.13733071088790894, -1.2943278551101685, 0.6093951463699341, 0.32033148407936096, 1.689271092414856, -0.32638469338417053, 0.36723411083221436, 0.42820367217063904, -0.3299791216850281, -1.2903071641921997, 0.8453119397163391, -0.41246816515922546, -0.17684952914714813, 1.1632272005081177, 0.17471164464950562, -0.3723805248737335, -0.13872338831424713, 0.5208297371864319, -0.2480056881904602, -0.16942882537841797, 1.0556221008300781, -0.176923468708992, -0.8757433295249939, 0.6903428435325623, -1.3763279914855957, -0.11920007318258286, 0.12157398462295532, 0.5209108591079712, 0.4159240424633026, 0.11255602538585663, 0.33391982316970825, -0.9074199795722961, 0.22381970286369324, 0.005948746111243963, -0.17143699526786804, 0.21910807490348816, 0.7132577896118164, 0.11594682931900024, -0.4142921268939972, 1.4754472970962524, 0.7849063277244568, 0.1655370593070984, 0.6046944260597229, 0.10122280567884445, -1.2489405870437622, -0.5300172567367554, 0.4541449546813965, -0.01968921720981598, -1.1560999155044556, 0.14802061021327972, 0.01504054106771946, 0.09772699326276779, 0.48201972246170044, 0.847717821598053, 0.005657228175550699, 0.8065346479415894, 0.9068278670310974, 0.4548003673553467, -0.2822626233100891, -0.5576552748680115, 0.014772315509617329, 0.45011889934539795, -0.9976243376731873, -1.046709418296814, -1.4791427850723267, 1.2014834880828857, 1.3462145328521729, 0.23933114111423492, 0.4374561309814453, 0.8944715857505798, -0.15311464667320251, -0.5567761063575745, 0.17647133767604828, 0.7641564607620239, 0.7446303367614746, 0.38802778720855713, -0.8990898132324219, -0.9652231335639954, 0.32308119535446167, 0.5720903873443604, 0.3921965956687927, -0.6334148645401001, -0.2429257035255432, 0.8286266326904297, -0.962444007396698, 1.745849370956421, -0.4317333996295929, -0.896203339099884, -0.3254488706588745, -0.6598726511001587, 0.46273350715637207, 0.11364723742008209, -0.17928466200828552, -0.3070181608200073, 0.01793801039457321, -0.7160071134567261, 0.6099675893783569, 0.18565630912780762, -1.032045602798462, 0.5703482031822205, -0.653180718421936, 0.42083966732025146, 0.3443361520767212, 0.6179835796356201, -0.23642325401306152, -0.3070738613605499, 0.8044977784156799, 0.3286440074443817, 0.35166066884994507, 0.1825183928012848, 0.9655631184577942, -0.1575777381658554, -0.5956442356109619, 0.4411914646625519, 0.18644459545612335, -0.7210705280303955, 0.16127893328666687, 1.113607406616211, 0.5717892050743103, 1.4583112001419067, -0.10755650699138641, -0.33921849727630615, -0.39050984382629395, 0.6999205946922302, 0.8471238017082214, -0.6839771866798401, 1.1384010314941406, -0.07433577626943588, -2.331056594848633, -1.1500732898712158, 0.26393750309944153, -0.2962988615036011, 0.40441179275512695, -0.3244074881076813, 0.42424866557121277, -0.9705125689506531, 0.3355753719806671, -0.1525021344423294, -0.32077139616012573, -0.8586128950119019, -0.07832533121109009, -0.3723646402359009, -0.4190608561038971, -0.1951415240764618, -0.37854909896850586, -0.30033859610557556, 0.520839512348175, -2.069235324859619, -0.3834022283554077, 0.410176545381546, 0.0047107720747590065, -0.2031143456697464, -1.1152722835540771, 0.5403915047645569, -0.12453431636095047, 1.2034401893615723, -1.3196855783462524, 1.23009192943573, -0.7224399447441101, 0.5704479217529297, 1.0303094387054443, 0.1482231467962265, -0.8886518478393555, 0.5763124823570251, 0.1076352670788765, -0.9835926294326782, 0.15992462635040283, 0.10164306312799454, 0.005796365439891815, 0.36032596230506897, -0.3381231427192688, -0.3422246277332306, 0.2603762149810791, 0.20972608029842377, 0.27118945121765137, -0.4051935076713562, -0.6629860997200012, -0.4979388117790222, -1.1912226676940918, 0.18176046013832092, -0.8553500771522522, -1.1619017124176025, 0.7450481653213501, 0.4352187216281891, -1.1768112182617188, 0.5740596055984497, 0.3377394676208496, 0.5246608257293701, 0.18758128583431244, 1.6099215745925903, -0.2821958661079407, 0.4516471028327942, -0.27871543169021606, 0.354194700717926, -0.4482853412628174, 0.3412328362464905, 0.8639428019523621, -0.21634092926979065, -0.11514730751514435, 1.2343618869781494, 1.0131404399871826, 0.37018176913261414, 0.6493145227432251, -0.10073404014110565, -0.050213564187288284, -0.9182757139205933, -0.6065819263458252, 0.7377575635910034, -0.01613980531692505, 2.0284035205841064, 0.9039748311042786, -0.7122235894203186, 0.1436597853899002, -0.10231460630893707, 0.042689207941293716, -0.0618545301258564, -0.8075048327445984, -1.1417465209960938, -0.22313977777957916, 0.31616446375846863, -0.6104639768600464, 1.1087762117385864, -0.46616318821907043, 0.25680777430534363, -0.3033551275730133, -0.6492854356765747, -1.1976522207260132, 0.9336404800415039, 0.060092225670814514, 0.7487271428108215, -0.4496314227581024, -1.1820704936981201, -0.35859620571136475, -0.29301267862319946, 0.7726864218711853, 0.3231784403324127, 0.7335788011550903, -0.15344780683517456, 0.5243748426437378, -0.21760421991348267, 0.22336460649967194, -0.5228245258331299, 0.42544010281562805, -0.06732968986034393, 0.14302317798137665, 0.43929028511047363, 1.2828731536865234, -0.8929614424705505, -0.48302364349365234, -0.4191450774669647, 0.344432532787323, 1.9484686851501465, 0.12836593389511108, 0.4100046157836914, -0.16688595712184906, 0.35507673025131226, -0.03573915362358093, -0.09345307946205139, -1.2569695711135864, -0.8993554711341858, -0.7906755208969116, -0.12975886464118958, -0.6341806650161743, 0.10275829583406448, 0.027085628360509872, 0.13538195192813873, -0.6199333667755127, 0.7068692445755005, 1.414279580116272, 0.20364247262477875, -0.8105369210243225, -0.49672067165374756, -0.2060426026582718, -0.5651489496231079, 1.0278568267822266, 1.0272393226623535, -1.0923614501953125, -0.46435946226119995, 0.22084346413612366, -0.5952425599098206, 0.6655948162078857, 0.1428019255399704, 0.11052722483873367, -0.8388282656669617, -0.8876752853393555, -0.32765263319015503, 1.096105933189392, -0.11212573945522308, -0.5244642496109009, -0.2884644567966461, 0.37220144271850586, 0.5528163313865662, -0.44347694516181946, -0.547463059425354, 1.2326539754867554, -0.22885142266750336, -0.830841064453125, -0.024798035621643066, 0.8715574741363525, 0.6214520931243896, -0.46963104605674744, -0.635514497756958, -0.37847900390625, -0.3268243670463562, -1.0618374347686768, 0.3482787013053894, -0.07210315763950348, 1.0412232875823975, -0.0263057854026556, 0.1758493334054947, 0.7887506484985352, 0.05949108675122261, 0.3318978548049927, -1.421579360961914, 0.18502779304981232, 0.8889727592468262, 0.8805332183837891, -0.13271287083625793, 0.10244195908308029, 0.4056605398654938, 0.47385281324386597, -0.05271149054169655, 0.14251205325126648, 0.18307748436927795, 0.413893461227417, 0.4306374788284302, -0.4733974039554596, 0.23427079617977142, -0.09856561571359634, -0.625995397567749, 0.6708315014839172, 0.5770532488822937, -0.8122356534004211, 0.09468715637922287, 0.30356502532958984, -0.02988762967288494, -0.7106636762619019, -0.6553558111190796, -0.31829512119293213, 1.210325837135315, -0.6164993047714233, 0.2613564729690552, -0.16634929180145264, 0.12033119797706604, 0.1808518022298813, -1.1400187015533447, -0.16241641342639923, 0.09921189397573471, 0.7709927558898926, 0.9987260699272156, -0.7292863726615906, 0.2829790413379669, -0.7263444066047668, 0.42099735140800476, 0.12361130118370056, -0.2873140275478363, 0.08559375256299973, 0.6015241742134094, -0.30731359124183655, 0.086632139980793, 0.5196290016174316, 1.46147620677948, -0.5903193354606628, -0.006669769063591957, 0.16570018231868744, 0.2081492394208908, -0.9060525894165039, -0.13230817019939423, -0.3835490942001343, -0.12099528312683105, -0.4018656015396118, -0.25314319133758545, 0.3633551597595215, -0.37389180064201355, 1.7788163423538208, 1.3118054866790771, 0.3077641427516937, 0.3511882722377777, 0.4801163971424103, -1.1818164587020874, -0.3030959367752075, 0.33144569396972656, 0.22415918111801147, -0.594392716884613, -0.585536777973175, 0.1570807248353958, -0.13399076461791992, 0.7877799868583679, 0.5324079394340515, 0.7613143920898438, 0.5983237028121948, 0.2821881175041199, 0.12177804857492447, 1.128106713294983, 1.422425389289856, 0.24470195174217224, 0.6367777585983276, 0.11984241753816605, -1.0618911981582642, 0.04150725528597832, -0.3400457203388214, -0.18791450560092926, 1.1350513696670532, 0.5054102540016174, 1.2921233177185059, -2.138878583908081, -0.21374447643756866, 0.9190651178359985, 0.8320674300193787, 0.12987004220485687, 0.9830609560012817, -0.6298448443412781, -0.1798957884311676, 0.7557693123817444, 0.16340042650699615, 0.1987893432378769, -0.31098058819770813, -0.07249755412340164, -0.6657128930091858, 0.22293350100517273, -0.516989529132843, 0.8582946062088013, -0.9023743271827698, 0.0819660872220993, 0.08396807312965393, -1.621987223625183, -0.4122365415096283, -0.06272969394922256, 0.40963849425315857, 1.0701262950897217, -0.8395653367042542, -0.6814038753509521, -0.03317109867930412, -0.612181544303894, 0.25403547286987305, -0.21847018599510193, -0.05043353885412216, -0.5336998701095581, 0.26006218791007996, -0.5837659239768982, 0.7887845039367676, -0.5320619940757751, -0.5889376997947693, -1.2400034666061401, -1.1787748336791992, 0.3219371736049652, 0.9590534567832947, 0.984691858291626, 0.8289424180984497, 0.07350995391607285, -0.4389995336532593, -0.0388774499297142, -0.871235191822052, -0.43552446365356445, 0.2769036889076233, 0.32657045125961304, 0.9757012724876404, -0.9037570357322693, -0.6302939057350159, -0.011155284009873867, 0.6367171406745911, -0.18780624866485596, 0.7393816709518433, 1.4095953702926636, 1.623499870300293, -0.6059987545013428, -0.2149832397699356, 0.5317087173461914, 0.2987510561943054, 0.11064261943101883, 0.7525129318237305, 0.10522276163101196, -1.1317869424819946, -0.9389976263046265, -1.0957274436950684, 0.7733033895492554, 0.14954040944576263, -0.936642050743103, 0.7861090898513794, -0.3101820945739746, 0.6172553300857544, 0.5128659009933472, -0.37539657950401306, 0.5499218702316284, -0.2599748969078064, 0.02972843125462532, -0.824999213218689, 0.9794179201126099, -0.11231569945812225, 0.020592430606484413, 0.082712322473526, 0.6073463559150696, 0.13570141792297363, -0.1961592137813568, -0.13174548745155334, 1.1364786624908447, -0.6964209675788879, 0.42994585633277893, 0.7441651821136475, -1.0098443031311035, -0.06430473178625107, -0.26805180311203003, -0.5079792141914368, 0.054737359285354614, 0.8535948991775513, 0.0772470086812973, -0.48607638478279114, 0.2343485802412033, -0.6315668225288391, -1.1378000974655151, -0.21857866644859314, -0.6947318315505981, -0.18324419856071472, 0.5227506160736084, 0.06289117783308029, 0.6698912978172302, -0.1699509620666504, 0.04452985152602196, -0.8039484024047852, -0.3150775134563446, -0.31147778034210205, -1.0976471900939941, -0.05519946292042732, 0.2528591752052307, -1.3296072483062744, -0.5492103099822998, -0.4828537404537201, -0.11999896168708801, -0.29366394877433777, -1.7986441850662231, -1.1459625959396362, -0.10948217660188675, 0.6920411586761475, -1.1129506826400757, 0.8525949120521545, -0.08464115113019943, -1.3784867525100708, 0.08986793458461761, -0.26070651412010193, -1.196905493736267, 0.11931219696998596, -0.4813616871833801, 0.7866464853286743, -0.6897967457771301, 0.269707590341568, -1.0907299518585205, 0.72662353515625, -2.2369203567504883, -1.909042239189148, -1.1653032302856445, 0.4960334300994873, 1.2149524688720703, 0.5425902605056763, -0.6133431196212769, 1.12376070022583, 0.7535567879676819, 0.06619279831647873, -0.4386567175388336, 0.4686932861804962, -0.3347887098789215, -0.04806727543473244, 0.8017273545265198, 0.5189047455787659, 0.7372758984565735, 0.7537882328033447, -0.10577528923749924, 1.3326267004013062, 0.24570617079734802, 0.6692363619804382, -0.7529191374778748, -0.21733959019184113, 0.25231459736824036, 0.8619715571403503, -0.61154705286026, -1.5114651918411255, -0.1305103600025177, -0.11881799250841141, -0.4237377941608429, -0.39450502395629883, 0.23079174757003784, -0.6486577987670898, -0.14864321053028107, -0.8058608174324036, 0.07257883995771408, -0.5765514969825745, 0.38471168279647827, -0.22959508001804352, -0.7293609380722046, -0.5637949109077454, 0.29975786805152893, 0.045081451535224915, -1.3485020399093628, 0.14916598796844482, -0.37126898765563965, 0.02179133892059326, -0.028487784788012505, -0.033755138516426086, 0.9473444223403931, 0.46504485607147217, -0.698722779750824, 1.3735487461090088, 0.6145844459533691, -0.604766845703125, 0.2789565622806549, 0.11377792060375214, -0.4853416085243225, 0.4632648825645447, -0.6312204599380493, 0.0734073594212532, -1.2908399105072021, 0.7069618701934814, 0.4219745695590973, -0.09916868060827255, 0.8323653936386108, -0.05182560160756111, -0.888620913028717, 1.0365842580795288, 0.5489115118980408, -0.8203865885734558, -0.31745848059654236, 1.600164771080017, -0.1178940162062645, -0.8638229370117188, -0.22044160962104797, -0.3061547875404358, 0.11958315968513489, -0.946910560131073, 1.099827527999878, 0.505864679813385, -0.7579770088195801, 0.6233853101730347, 0.3372243344783783, 0.09803654253482819, -0.040611766278743744, -0.3649115264415741, -1.5001647472381592, 0.06981221586465836, -0.7696580290794373, -0.954485297203064, -0.10131275653839111, -1.89443039894104, -0.9603428840637207, 0.8078324198722839, -0.06930292397737503, -0.6666055917739868, -0.14827416837215424, -0.10840008407831192, 0.6583273410797119, -0.3261374533176422, 0.6134731769561768, -0.35715875029563904, 1.1646547317504883, -0.499545693397522, 0.4700932204723358, -0.8133773803710938, -0.35163453221321106, 0.2254873663187027, 0.4187299311161041, -0.22422127425670624, -0.17941002547740936, 0.44487616419792175, -0.5905160903930664, -1.219107985496521, 0.10705038160085678, 0.7831684947013855, -0.23849965631961823, 0.04529417306184769, -0.8900520205497742, -0.1479269415140152, 0.31713712215423584, 1.339459776878357, -0.06634404510259628, -0.23138532042503357, -0.7576087713241577, 0.1812390834093094, -0.7715078592300415, 0.6819149851799011, -0.6830770373344421, 0.5974650979042053, 0.4234198033809662, -1.1607588529586792, -0.4871685206890106, -0.6554819941520691, 0.727375328540802, -0.36718618869781494, -0.21476656198501587, 0.8349728584289551, 0.17360959947109222, 0.14727860689163208, -1.0440986156463623, 0.027035217732191086, 0.30292800068855286, 0.2230033427476883, 0.047093119472265244, -1.2808741331100464, -0.2500225007534027, -0.5794899463653564, 0.5768272876739502, 0.938632071018219, 0.8965821862220764, 0.3940795660018921, 0.36976495385169983, -1.4596000909805298, 0.8012756109237671, 0.0397217683494091, 0.23458391427993774, 0.22353798151016235, 1.409896731376648, 1.8104791641235352, 0.8729486465454102, 0.07312421500682831, -0.7570836544036865, 0.728749692440033, -0.9738569259643555, -0.280661016702652, -0.13656778633594513, -0.9463114142417908, -0.7714447379112244], [-0.37081530690193176, 1.7691588401794434, -2.9353299140930176, -0.6081176400184631, 0.001981433480978012, 0.25810670852661133, 1.6382832527160645, 0.5919187664985657, 0.11418531835079193, -0.4647561013698578, -0.6640365123748779, 0.43519556522369385, 0.43038973212242126, 1.4916678667068481, 1.2496082782745361, 0.01226949691772461, 0.3697751462459564, -0.5722693800926208, 0.6826551556587219, 1.9142701625823975, -0.6345639228820801, -1.4390732049942017, -0.2439032793045044, 0.05548612400889397, -0.04029552638530731, 0.05392327159643173, -1.4989447593688965, -0.5688801407814026, -1.2387925386428833, -1.9082391262054443, 0.7503457069396973, -0.6899264454841614, -0.11714176833629608, 0.1937842220067978, -0.9246042966842651, -0.6233881711959839, 1.1924593448638916, 0.9721937775611877, 0.7495318055152893, -0.032811373472213745, 2.2740867137908936, -0.1583244800567627, 0.3451155126094818, -1.059995412826538, 0.16554462909698486, 0.09758143126964569, 0.9337689876556396, -0.9746219515800476, -0.502978503704071, -0.199894979596138, -0.010057075880467892, -1.161598801612854, 0.8680908679962158, 0.28059592843055725, 1.176857829093933, -0.28768131136894226, 0.8181624412536621, 0.6906242370605469, 0.43403053283691406, -0.6150317788124084, 0.47690993547439575, 0.5401620864868164, -0.419623464345932, 1.7452472448349, -0.24554060399532318, -0.7498436570167542, -0.473113089799881, 0.591343343257904, 0.09799621999263763, -0.23902194201946259, 0.3378444015979767, -0.25141581892967224, -0.16147594153881073, 0.14198525249958038, -1.1325018405914307, 0.167199969291687, -0.11004988104104996, -0.08143730461597443, 0.513103187084198, 0.45706063508987427, -0.3469935953617096, -0.1699221134185791, 0.7086388468742371, -0.247345969080925, 0.9545711874961853, 0.33998870849609375, 0.5131994485855103, 0.5801197290420532, -0.45794588327407837, 1.745200514793396, 0.5986310243606567, -0.4129120111465454, 0.2484852820634842, -0.11099722236394882, -0.7594183683395386, -0.8259685635566711, -0.3500683307647705, -0.5695300102233887, -0.45336830615997314, -0.5993584394454956, -0.5300028920173645, -0.30890944600105286, -0.22260791063308716, -0.3953348994255066, -0.883544385433197, 1.184219479560852, -0.06761724501848221, 0.038193922489881516, -0.6438242793083191, -0.6233416199684143, -0.40371742844581604, 0.4700855314731598, -1.2631241083145142, -0.5379543900489807, -0.9882264137268066, 1.4829753637313843, 1.1897975206375122, 0.15902526676654816, 0.05629076436161995, 0.5457465052604675, -0.22564782202243805, -0.9053683280944824, 0.2598061263561249, 0.8654447197914124, 0.3530058264732361, -0.05838755890727043, -0.7555152773857117, -1.0185470581054688, 0.4300502836704254, -0.1324416995048523, 0.11728379875421524, -0.2274775356054306, -0.1262710988521576, 0.7153869271278381, -0.6921207308769226, 1.3102198839187622, -0.34622836112976074, -1.3939350843429565, -0.5687101483345032, -0.1322157084941864, 0.5450040102005005, -0.9594866037368774, -0.8104197382926941, -0.45981350541114807, -0.24895036220550537, -0.9287713766098022, 0.9507396221160889, -0.36363258957862854, -0.9317713975906372, 0.3456166982650757, -0.4328966438770294, 0.1436806619167328, 0.7080725431442261, 0.8028989434242249, 0.18503394722938538, -0.6099935173988342, 0.02255503460764885, -0.23059676587581635, 0.2069750428199768, 0.17056721448898315, 1.0619463920593262, 0.051736291497945786, -0.3724040687084198, 0.7271413803100586, 0.725068986415863, -0.6238527894020081, 0.4077354669570923, 1.2427473068237305, -0.4529391825199127, 0.45229265093803406, 0.403473436832428, 0.05264701694250107, -0.6199114918708801, 0.7618309855461121, 0.48858311772346497, -1.3693885803222656, 0.9525048136711121, -1.0560489892959595, -1.1537736654281616, -1.3000799417495728, 0.4318903088569641, -0.9052721261978149, 0.11325307935476303, -0.5483019351959229, 0.6182363033294678, -0.41350963711738586, 0.9192529320716858, -0.8377445936203003, -0.3305874764919281, -0.3745618462562561, -0.14396442472934723, -0.1151285320520401, -0.4985138475894928, 0.10685015469789505, -0.16859525442123413, -0.0017148926854133606, 0.7170659303665161, -1.3251982927322388, -0.3506147563457489, 0.5819145441055298, 0.2706322968006134, -0.44074907898902893, -1.0303682088851929, 0.7573756575584412, -0.9360969066619873, 0.830637514591217, -0.6062952280044556, 0.8511916995048523, -1.1184773445129395, 0.11488541215658188, 1.098757266998291, -0.28503599762916565, -0.7107465863227844, 0.2687748074531555, 0.3174165189266205, -0.8342331051826477, -0.17369145154953003, 0.006423003971576691, -0.42720574140548706, 0.6140437722206116, -0.08255083113908768, 0.3681100606918335, 0.4111212193965912, 0.5278588533401489, 0.46162185072898865, -0.30849677324295044, -0.5212018489837646, -0.04584473744034767, -0.5213871002197266, 0.5560283660888672, -0.558419406414032, -1.578478455543518, 0.04360279440879822, 0.4682764410972595, -1.241310954093933, 0.0689673200249672, 0.5613552927970886, 0.33736029267311096, 0.230056494474411, 0.8661445379257202, 0.913662850856781, 1.106268048286438, -0.18239903450012207, -0.8005877733230591, -0.41803961992263794, 0.906190812587738, 0.8312483429908752, -0.2154916226863861, 0.0005999244749546051, 1.3158804178237915, 0.8481705784797668, 0.18663010001182556, 0.42085495591163635, -0.3089746832847595, 0.18880359828472137, -1.0145987272262573, -0.42963907122612, 0.9465025067329407, -0.43249690532684326, 2.2516682147979736, 1.2381314039230347, -1.4664239883422852, -0.3148774206638336, 0.319027841091156, -0.7667285799980164, -0.3374207615852356, -0.6532233357429504, -0.13612540066242218, -0.4254230558872223, 0.11627772450447083, 0.0310836024582386, 0.6625509262084961, -0.3842278718948364, 0.5506724119186401, -0.2893943786621094, -0.5655182003974915, -0.2563108503818512, 0.9001717567443848, -0.16096128523349762, 1.5348318815231323, 0.09231889247894287, -2.095343828201294, 0.0033695874735713005, 0.1893099993467331, 0.45442095398902893, 0.3629399240016937, 0.17001543939113617, -0.0807299017906189, 0.3332856297492981, -0.6378160119056702, 0.2824586033821106, -0.263348251581192, -0.29664137959480286, -0.20339082181453705, -0.2661018371582031, 0.5554718971252441, 0.8517674803733826, -0.16234412789344788, -0.4541010558605194, -0.327351838350296, 0.41252633929252625, 1.084180474281311, 0.8144843578338623, 1.0308642387390137, -0.12260103970766068, -0.32989510893821716, 0.2847435176372528, -1.1448034048080444, -0.4347638487815857, -0.9785125255584717, -1.3306509256362915, -1.0469977855682373, 0.15753833949565887, 0.020037904381752014, 0.18613436818122864, 0.7496630549430847, -0.1882636845111847, 1.0392881631851196, 0.8054189682006836, -0.0697418600320816, -0.3292310833930969, -0.3302677869796753, 0.4017353653907776, 0.19869787991046906, 0.3806149363517761, 1.0982029438018799, -1.0202754735946655, -0.7721350193023682, -0.7568647861480713, -0.28972893953323364, 0.4022205173969269, 0.48868319392204285, -0.08591678738594055, -1.6056143045425415, -0.2551361918449402, 0.5297535061836243, 1.0668166875839233, -0.14022064208984375, 0.007834481075406075, -0.3320310711860657, 0.6777034401893616, 0.43596959114074707, 0.34361857175827026, -0.7270129323005676, 1.4952112436294556, -0.4403669834136963, -0.3263344466686249, 0.010905064642429352, 0.05869925394654274, 1.373576045036316, -0.501533567905426, -0.3169991374015808, -0.41808730363845825, -0.7521241307258606, -0.5401511192321777, 0.7135800123214722, -0.013361876830458641, 1.131570816040039, 0.2399616688489914, 0.1594352275133133, 1.3557718992233276, 0.3782382309436798, -0.19715960323810577, -2.0828301906585693, 0.8106377720832825, 1.2656373977661133, 0.9240629076957703, 0.16541272401809692, 0.5820589065551758, 0.5612357258796692, 0.3734363317489624, -0.04890890419483185, 0.07252602279186249, 0.48138415813446045, -0.37514758110046387, 0.24944430589675903, -0.31203532218933105, 0.10703291743993759, -0.07125525921583176, -0.22467324137687683, -0.20009776949882507, 0.5119684338569641, -1.5193488597869873, -0.6255496144294739, 0.5202793478965759, 0.11208949238061905, -0.8180305361747742, -0.12506969273090363, 0.4691663682460785, 0.3948214054107666, -0.3183309733867645, 0.8130155801773071, -0.18346327543258667, 0.17402273416519165, -0.304281085729599, -1.892533302307129, 0.14214633405208588, -0.005530667491257191, -0.48331665992736816, 0.5784686207771301, -0.7181364297866821, -0.26157665252685547, -0.11416763812303543, 0.9334515929222107, 0.27598893642425537, -0.378689169883728, 0.4258510172367096, -0.0803346186876297, 0.5043810606002808, -0.4872654378414154, 0.150221049785614, 0.9178441762924194, -0.2700008749961853, 0.13863568007946014, 0.5494892597198486, 0.21689416468143463, 0.02773435041308403, 0.37418287992477417, -0.20314523577690125, 0.38370510935783386, -0.5408257246017456, 0.28629645705223083, 0.38213011622428894, 0.2286403328180313, 1.387453556060791, 0.14014601707458496, 0.3284280598163605, 0.5575615167617798, -0.2694619297981262, -1.8156688213348389, 0.36228376626968384, 0.2522474229335785, 0.3922395706176758, -0.9603133201599121, -0.06032317876815796, 0.6168875694274902, -0.025430861860513687, 0.7067226767539978, 0.17768995463848114, 0.8789620399475098, 0.28491121530532837, -1.0217920541763306, -0.04072954133152962, 1.2650785446166992, 0.9436925649642944, 1.4833046197891235, -0.32288435101509094, -0.8424920439720154, -1.12115478515625, 0.2673787474632263, -0.9486635327339172, -0.1301218718290329, 0.5124531388282776, 0.01429081428796053, 1.1261675357818604, -1.5394489765167236, -0.05744033306837082, 0.8117567300796509, -0.047464095056056976, 0.46152475476264954, 0.1934479922056198, 0.3287763297557831, -0.3526234030723572, 0.4299449026584625, -0.26979491114616394, 0.03833211958408356, 0.28473812341690063, -0.2439790517091751, -0.022588610649108887, 1.063872218132019, -0.8806912899017334, 0.2039964646100998, -0.17884038388729095, -0.4462180435657501, -0.10987786203622818, -0.8813746571540833, 0.5666110515594482, -0.43409281969070435, 0.5146914720535278, 1.8938897848129272, -0.016096465289592743, -1.0972511768341064, 0.25104478001594543, -1.1496297121047974, 1.0258692502975464, -0.524582028388977, -0.26849064230918884, -0.3173534870147705, 0.1323150396347046, -0.8052237033843994, 0.5443627834320068, -1.2114416360855103, -0.2216307818889618, -0.7490965723991394, -1.0673047304153442, 0.7686409950256348, 0.52157062292099, 1.2526692152023315, 0.8289296627044678, -0.021042760461568832, 0.04326285049319267, 0.5109070539474487, -0.4017782211303711, -0.6166050434112549, 0.08745496720075607, -0.31315550208091736, 0.7020887136459351, -1.2494291067123413, -0.25645554065704346, 0.4218091070652008, 0.38493022322654724, 0.5748347640037537, 1.3013070821762085, 1.1429671049118042, 2.1892309188842773, -0.6287941336631775, -0.39852115511894226, -0.15812461078166962, -0.6868590712547302, 0.780049741268158, 0.8032482266426086, -0.9318267703056335, -1.0271252393722534, -0.9182759523391724, -0.9622198939323425, 0.6938914060592651, -0.6439119577407837, -0.7091494202613831, 1.748382806777954, 0.5691695213317871, 0.33460843563079834, 0.569008469581604, -0.7962943315505981, 0.3791573643684387, -0.27175140380859375, -0.1067805364727974, -1.1753085851669312, 0.7403972744941711, 0.23102617263793945, 0.3349076807498932, 0.3239513337612152, 0.6271689534187317, -0.3136979639530182, -0.12737111747264862, 0.7889791131019592, 0.40342918038368225, 0.8180778622627258, 0.31351086497306824, 0.28382909297943115, -0.5906009674072266, -0.28668013215065, -0.8727368116378784, -0.30233004689216614, -0.3086502254009247, 0.9069324135780334, -0.3802492022514343, -0.894178032875061, -0.5839646458625793, -0.3629089295864105, -0.36927422881126404, 0.23165464401245117, -0.8513492941856384, 1.0207035541534424, -0.42170608043670654, -0.31478700041770935, -0.03946319967508316, -0.48786646127700806, -0.2522737383842468, -0.045329347252845764, -0.1525050699710846, -0.01892789453268051, -1.775591254234314, 0.10564927011728287, -0.07733899354934692, -1.138338565826416, 0.2208409160375595, 0.07935107499361038, -0.0944683700799942, -1.2489311695098877, -0.5542457699775696, -0.9515981674194336, 0.328921914100647, 0.8130122423171997, -0.6728956699371338, 1.127216100692749, 0.5816655158996582, -1.1743429899215698, 0.3110850155353546, -0.5352941155433655, -0.5194490551948547, -0.8331954479217529, -1.469322681427002, 0.9193122386932373, -0.6796011328697205, 0.6918540596961975, -0.12591128051280975, 0.8404159545898438, -1.1005362272262573, -0.7123515009880066, -0.7018448710441589, -0.09121452271938324, 0.772009015083313, 0.4381406307220459, -0.6858547329902649, 1.5845873355865479, 0.9832070469856262, -0.3350878953933716, 0.05701546370983124, 0.6662681698799133, -0.44446516036987305, 0.19889670610427856, 0.09269337356090546, 0.7977603077888489, 0.4968157112598419, 1.128279447555542, 0.021978341042995453, 1.2923388481140137, 0.5822916626930237, 0.5324717164039612, -0.32297903299331665, 0.4016832709312439, -0.09663555026054382, 0.9467164874076843, -0.5339424014091492, -0.5570205450057983, -0.05472754314541817, -0.7038038969039917, -0.679445743560791, -0.04416337609291077, 0.2747398912906647, -1.4781253337860107, -0.020261920988559723, -1.0761016607284546, 0.9862310290336609, -1.167135238647461, 0.6606630086898804, -0.5336005091667175, -0.3052003085613251, -0.35345369577407837, 0.43118804693222046, -0.1417551338672638, -0.8909218907356262, 0.24630068242549896, 0.5147097706794739, 0.16085223853588104, -1.0680404901504517, 0.38909274339675903, 1.500409483909607, 0.45449069142341614, -1.0500946044921875, 1.868550419807434, 0.6687649488449097, -0.24207580089569092, 0.18548236787319183, -0.14323033392429352, 0.6805738806724548, 0.6547496914863586, -1.1154836416244507, 0.0815105214715004, -1.2727419137954712, 0.927192747592926, -0.44413650035858154, -0.08779215067625046, -0.8355165719985962, -0.062418319284915924, -0.16830025613307953, 0.2917476296424866, 0.9613510966300964, -0.5189769268035889, -0.24937430024147034, 0.9486685991287231, 0.014689730480313301, -0.03641735389828682, -0.002837616950273514, 0.9689722657203674, -0.07564598321914673, -0.8061964511871338, 0.6951403021812439, 0.26176345348358154, -0.8199928402900696, 0.7274096608161926, 0.9046626687049866, -0.08346530795097351, 0.03270302712917328, -0.5309700965881348, -1.46121084690094, 0.23520369827747345, -0.7091416716575623, -0.6909871697425842, 0.544823408126831, -0.7714313268661499, -0.4040580093860626, 0.4927985966205597, 0.8390418887138367, -0.6287755370140076, -0.02127969264984131, -0.06894755363464355, -0.8122812509536743, -1.0316212177276611, 1.5356411933898926, -0.21110183000564575, 2.1473708152770996, 0.02329602837562561, 0.6900224089622498, -1.0667668581008911, -0.09938263893127441, -0.22978027164936066, 0.44295763969421387, 0.2459067702293396, 0.05153419077396393, 0.5293300747871399, -0.862177848815918, -0.19826139509677887, 0.08531950414180756, 0.25657472014427185, 0.44313791394233704, -0.052993275225162506, -1.2197387218475342, 0.2139759063720703, 0.6406848430633545, 0.31226804852485657, -0.20491711795330048, -0.7084100246429443, -1.1197715997695923, 0.7033692598342896, -0.3463691473007202, 0.3891754448413849, -0.08657031506299973, 0.3410405218601227, 0.060446787625551224, -0.49012428522109985, -0.16351428627967834, -0.6999216675758362, 0.41292548179626465, -0.4149501919746399, 0.4880247116088867, 0.2677432894706726, 0.3010753095149994, 0.017056070268154144, -0.4301202893257141, 0.11733588576316833, 0.03047635592520237, -0.5295091271400452, -0.09649114310741425, -1.109056830406189, -0.8401820063591003, -0.5610905289649963, 0.7390492558479309, -0.09593625366687775, 0.4195305109024048, -0.028452176600694656, 0.3508226275444031, -1.4580739736557007, -0.10267338901758194, 0.3092375695705414, -0.37826046347618103, 0.45524561405181885, 1.171463966369629, 1.6652836799621582, 0.3891347348690033, -0.1386769562959671, -0.45325586199760437, 0.7406321167945862, -0.397672563791275, -0.14659109711647034, -0.23375527560710907, -0.9624246954917908, -0.4473665952682495], [-0.2660030424594879, 0.5169986486434937, -1.8136500120162964, -1.0038013458251953, 0.5608078837394714, 0.1942720115184784, 1.022495985031128, 0.5085186958312988, 0.05441991984844208, 0.1840435415506363, -1.0973360538482666, 0.7236887812614441, 0.17701466381549835, 1.1531811952590942, 0.6564359664916992, 1.7719097137451172, 0.7319284081459045, -0.6692825555801392, 0.37713247537612915, 1.67587411403656, -0.27590253949165344, -0.44871649146080017, -0.07661380618810654, 0.8380119204521179, -0.026637397706508636, -0.2766604721546173, -1.0285100936889648, -0.5955503582954407, -1.4550487995147705, -1.1423449516296387, 0.42948824167251587, -0.03547989949584007, 0.829985499382019, 0.9654435515403748, -1.1198780536651611, 0.2557434141635895, 0.7054511904716492, 1.8115181922912598, 0.9627755880355835, 0.5866503119468689, 1.5640161037445068, 0.07596027851104736, 0.10484420508146286, -1.5292348861694336, -0.6695379018783569, -0.7317020893096924, 0.8674051761627197, -1.189716100692749, 0.6841955184936523, -0.25840356945991516, 0.5653988122940063, -1.2755368947982788, 0.1522783637046814, 0.49315330386161804, 1.7534908056259155, -1.1049270629882812, 0.797166645526886, 0.4195269048213959, -0.18894073367118835, -0.5425865650177002, 0.5735137462615967, 0.007533084601163864, -0.6857747435569763, 1.6534727811813354, 0.6419671177864075, -0.44492802023887634, -0.4266597032546997, 0.4560074508190155, -0.1751197725534439, 0.115043506026268, 0.8331315517425537, 0.4476078748703003, -0.7438600063323975, 0.5857361555099487, -1.1612452268600464, -0.11235588043928146, 0.5132369995117188, 0.25812986493110657, 1.284895658493042, -0.1902584731578827, -0.3588119447231293, -0.29613763093948364, 0.8763607144355774, -0.6288920640945435, 0.43442538380622864, 0.3537796437740326, 0.6634334921836853, -0.6951018571853638, -0.651534378528595, 0.6887964010238647, 0.8459024429321289, 0.04331060126423836, 0.23578768968582153, -1.0495564937591553, 0.14476057887077332, -0.5666710138320923, 0.12867073714733124, 0.39043012261390686, -0.9674418568611145, -0.604841947555542, -0.5394454598426819, -0.09978511929512024, -0.37498438358306885, -0.06425587832927704, -0.6873173117637634, 0.9929776191711426, 0.2504105865955353, 0.5585203170776367, 0.05011073499917984, -0.29961344599723816, 0.3129650950431824, 0.6083093285560608, -0.3333019018173218, -1.2350765466690063, -0.10873060673475266, 0.9730703234672546, 0.8434517979621887, -0.45889759063720703, 0.7609685063362122, 0.5804144144058228, 0.25604334473609924, 0.3533269762992859, -0.00978370662778616, 1.0292960405349731, 0.6869054436683655, 0.44213032722473145, -0.9118576049804688, -0.3283618092536926, 0.10971226543188095, -0.29727277159690857, 0.12259510904550552, -0.45934465527534485, 0.06388090550899506, 0.6124584674835205, -0.6532242894172668, 0.960788369178772, -0.2444951832294464, -0.9862377047538757, -0.09119624644517899, -0.27487310767173767, 0.8613286018371582, 0.22954365611076355, -0.9771079421043396, -0.7082914113998413, -0.9658006429672241, -0.9802242517471313, 0.1586235612630844, -0.47102415561676025, -0.22433528304100037, 0.7402671575546265, -0.8320215940475464, -0.035433441400527954, 0.7802154421806335, 0.7360290884971619, 0.34135574102401733, 0.024252399802207947, 0.24540501832962036, -0.04470013827085495, 0.3032285273075104, -0.059539347887039185, 0.683230996131897, -0.09278559684753418, -0.8955672979354858, 0.7594965696334839, 0.1488935649394989, -0.39145398139953613, 0.23089063167572021, 1.1733769178390503, -0.19809919595718384, 0.8369134068489075, 0.28617948293685913, -0.4264407753944397, -0.9959376454353333, 0.8629820346832275, 0.485679030418396, -0.69648677110672, 0.8450661897659302, -0.47367432713508606, -1.320346713066101, -0.8820706009864807, 0.6659635305404663, -0.7672532200813293, 0.5895887017250061, 0.08889247477054596, 0.06746311485767365, -0.8174536824226379, 0.5353104472160339, -0.08691110461950302, -0.5627652406692505, -0.4529780447483063, -0.5814895629882812, -0.6730977296829224, -0.7857767343521118, -0.13282150030136108, -0.7414737939834595, -0.45764490962028503, 0.3682016432285309, -0.8242930173873901, -0.6048378348350525, -0.0005927905440330505, 0.05532967299222946, -0.336373895406723, -0.42005762457847595, 0.810782253742218, -0.5646077394485474, 0.8439634442329407, -0.957263708114624, 0.22518645226955414, -0.3704580068588257, -0.3756183385848999, 1.430661678314209, -0.31598085165023804, -0.6421663165092468, 0.007162046153098345, -0.39765214920043945, -0.9805271625518799, 0.26034045219421387, 0.28859031200408936, -0.7781209945678711, 0.2115372121334076, -0.378513365983963, -0.19663240015506744, 0.32414954900741577, 0.09074217081069946, 0.12163568288087845, -0.12837542593479156, -0.14615516364574432, -0.45529472827911377, -1.0845167636871338, -0.1023375540971756, -0.8168536424636841, -0.8302849531173706, 0.9642910361289978, 0.3021230101585388, -1.1024396419525146, 0.6839702129364014, -0.5160762071609497, 1.0653139352798462, -0.25344282388687134, 1.3861238956451416, 0.7423017024993896, 1.0865107774734497, 0.26640579104423523, -0.025282062590122223, -0.8957992196083069, 0.1940344125032425, 0.7302687168121338, -0.4679216742515564, 0.13007445633411407, 0.6130484938621521, 0.984534740447998, -0.07890234142541885, -0.2848742604255676, -1.0968008041381836, 0.3840453624725342, -0.6995187401771545, -0.8460994958877563, 0.5356665253639221, -0.35176733136177063, 2.050513505935669, 0.5467084646224976, -1.5183727741241455, -0.007027474232017994, 0.3879404067993164, -0.4923149347305298, -0.34078413248062134, -0.671237051486969, -0.7474463582038879, 0.21848087012767792, 0.494197279214859, -0.0909605324268341, 0.9093632698059082, -0.8550547957420349, 0.7471249103546143, -0.15379995107650757, -0.3116343915462494, 0.025811780244112015, 0.205037921667099, -0.20518581569194794, 2.041862964630127, -0.025087282061576843, -1.1888318061828613, 0.49998074769973755, -0.10572139173746109, 0.6148669123649597, 0.04816734418272972, 0.23863941431045532, 0.2787930965423584, 0.4348314702510834, -0.33000773191452026, 0.4473828971385956, -0.07679535448551178, -0.4007018506526947, 0.3457326889038086, 0.18551458418369293, 0.45184263586997986, 0.8646541237831116, -0.5746065974235535, -0.90299391746521, 0.4830213487148285, 0.8243387937545776, 1.2249417304992676, 0.20529183745384216, 0.7433717250823975, -0.16438859701156616, 0.10944323986768723, -0.8223639726638794, -0.5943968296051025, -0.4636046290397644, -0.9239126443862915, -0.7476054430007935, -0.9783945083618164, 0.03781671077013016, 1.038750410079956, 0.29081031680107117, 0.798467755317688, -0.37203070521354675, 0.0024178382009267807, 1.421875, -0.7422256469726562, -0.5417179465293884, 0.09662657231092453, 0.24093014001846313, 0.5056753158569336, 0.6731916069984436, 0.31222569942474365, -0.9499028921127319, -0.29336023330688477, 0.054742634296417236, -0.09860608726739883, 0.3768514394760132, -0.027846748009324074, -0.29772016406059265, -1.8644553422927856, -1.0622583627700806, 0.18908093869686127, 1.0729795694351196, -0.4057575464248657, -0.6875746250152588, 0.5290939211845398, 0.2839353680610657, 0.054734013974666595, 0.3521696627140045, -0.8841450214385986, 0.5038936138153076, -0.8070884346961975, -1.2532758712768555, -0.09072494506835938, 0.597923994064331, 0.8450713753700256, -0.652712881565094, -1.1169846057891846, -0.32539302110671997, -0.6701648235321045, -0.9939460158348083, -0.5446760058403015, 0.0595407634973526, 0.9077613353729248, -0.4205209016799927, 0.002023502951487899, 1.2969688177108765, -0.4022303521633148, 0.010763236321508884, -1.3832484483718872, 1.0916520357131958, 0.1613970845937729, 0.884037971496582, 0.3290785551071167, -0.20245973765850067, 1.1349138021469116, 0.17945550382137299, -0.1840572953224182, 0.22834588587284088, 1.0970531702041626, -0.2607683837413788, -0.5955701470375061, -0.5751575231552124, 0.26698794960975647, -0.19525332748889923, -0.601103663444519, -0.4701377749443054, 0.4537096321582794, -1.239226222038269, -0.4115374982357025, 1.3551980257034302, 0.2502557039260864, -0.28939276933670044, 0.44960319995880127, 1.042801856994629, 0.3198886513710022, -0.2873341739177704, 0.21114106476306915, -0.4483819603919983, 0.042567621916532516, 0.15394793450832367, -0.8529157638549805, -0.07990585267543793, -0.41622915863990784, 0.12238562852144241, 0.6783363819122314, -1.2434977293014526, 0.0758325457572937, -0.021826311945915222, 1.2241215705871582, 0.47377076745033264, -0.5696666240692139, 0.5282676815986633, -0.09552206844091415, 0.2017926722764969, -0.1328052580356598, -0.7340127825737, 1.4790879487991333, -0.005425311625003815, -0.24506957828998566, -0.1858472377061844, -0.306361585855484, 0.698554277420044, -0.1810096949338913, -0.38497963547706604, 0.4921751022338867, -0.6292313933372498, -0.0013118656352162361, 0.10496804118156433, 0.23260311782360077, 0.831822395324707, 0.1338927298784256, 0.7948625087738037, 0.6300117373466492, -0.3366665244102478, -0.1529378741979599, -0.6128740310668945, 0.34998819231987, -0.07877881824970245, -0.857017993927002, -0.12622860074043274, 0.6679669618606567, 0.15174297988414764, 0.5020031332969666, 0.290660560131073, 1.3660706281661987, -0.13739651441574097, -0.0681794062256813, 0.5276390910148621, 1.0652714967727661, 0.37003928422927856, 1.0865564346313477, 0.1375129520893097, -1.137876033782959, -0.19607970118522644, 0.8276941180229187, -0.8488451838493347, 0.19161319732666016, 0.48324957489967346, 0.40129169821739197, 1.2353899478912354, -1.6439481973648071, -0.8529923558235168, 0.5564520359039307, 0.1397036463022232, 0.30796265602111816, 1.252285122871399, -0.015215311199426651, 0.17492356896400452, 0.30397364497184753, -0.10783708840608597, -0.2221374213695526, 0.7730727791786194, 0.33129093050956726, 0.30972376465797424, 0.918064296245575, -1.056854009628296, 0.7648187279701233, -0.7780184745788574, -0.07111728936433792, 0.4252933859825134, -0.5615943670272827, -0.015571804717183113, 0.38278719782829285, 0.25980138778686523, 1.432533621788025, -1.0787845849990845, -0.7948650121688843, 0.6474558711051941, -1.173663854598999, -0.08582963049411774, -0.6255320906639099, -0.47731998562812805, -0.35821568965911865, -0.18874666094779968, -0.18386481702327728, -0.21098899841308594, -0.7013658285140991, -0.5794859528541565, -0.5783801078796387, -0.8341494798660278, 0.4905470609664917, 0.9033621549606323, 1.557504653930664, -0.5128047466278076, 0.020236505195498466, 0.08586982637643814, 0.40350136160850525, -0.6841021776199341, -0.056676723062992096, -0.048331305384635925, 0.2276788353919983, -0.2240411937236786, -1.2641980648040771, -0.549662709236145, 0.37700554728507996, 0.09134622663259506, -0.510248064994812, 0.472611665725708, 0.4378078579902649, 0.8641008734703064, -0.11845582723617554, -0.8568677306175232, 0.6557433009147644, -0.3525933027267456, 0.4589587152004242, 0.9429015517234802, -1.3133796453475952, -0.820937991142273, -0.9118828773498535, -1.1986134052276611, 0.6358237862586975, 0.2915484607219696, -0.5342434048652649, 1.212548851966858, 0.554545521736145, 0.44492360949516296, 0.9371321797370911, -1.2059110403060913, 0.25814077258110046, -0.3646490275859833, -0.40830716490745544, -1.7655376195907593, 1.1263190507888794, 0.5608116984367371, 0.2087230533361435, -0.23224611580371857, 0.12409548461437225, -0.44300442934036255, 0.009766551665961742, -0.9943661689758301, 1.0522723197937012, 0.5533103346824646, 0.9049335718154907, -0.3342013955116272, -0.28531238436698914, -0.3362971842288971, -0.9306595325469971, -0.566498875617981, -0.2545432448387146, 1.3641475439071655, 0.03505729138851166, 0.09698875993490219, -0.3611033856868744, -0.08568232506513596, -0.5907272696495056, -0.6570875644683838, -0.4926285147666931, 0.22012700140476227, 0.3570074737071991, -0.24591076374053955, -0.22930000722408295, 0.46976858377456665, -0.007749849930405617, -0.10044009983539581, 0.36459872126579285, 0.08283005654811859, -1.3421896696090698, 0.3521723747253418, -0.03557388484477997, -1.0908669233322144, -0.4488500654697418, -0.31637752056121826, -0.4114476144313812, -0.9875587821006775, -0.4985702335834503, -1.9448813199996948, 0.9933617115020752, 0.8078666925430298, -0.8552855849266052, 0.9756001234054565, 0.3077164888381958, -1.261850118637085, -0.2973635494709015, -0.10910478979349136, -0.7623297572135925, -0.4942493140697479, -1.0477334260940552, 0.17804266512393951, 0.628944993019104, 0.33574333786964417, -0.20501063764095306, 0.2520366609096527, -1.49660325050354, -0.5097548961639404, -0.596141517162323, -0.566223680973053, 0.6869027614593506, 0.36709678173065186, -0.4404151737689972, 1.1483423709869385, 0.6906683444976807, 0.3261885643005371, 0.06560970097780228, -0.1426423043012619, -0.7011374235153198, 0.7915517687797546, 0.6593140363693237, 0.37225010991096497, -0.016806185245513916, 0.9354159832000732, 0.1225380152463913, 0.8095089197158813, 0.8311992883682251, 0.6478132605552673, -0.1015373170375824, -0.3088197708129883, -0.2417403757572174, 1.4759935140609741, -0.6492127776145935, -0.6769955158233643, -0.6079485416412354, -1.1063350439071655, -0.9829199314117432, -0.7277279496192932, 1.3978954553604126, -0.7840586304664612, -0.433801531791687, -0.7174078226089478, 0.45024484395980835, -0.9117026925086975, 1.5069347620010376, 0.42270904779434204, -0.46049070358276367, 0.36368927359580994, 0.10839834809303284, -0.3419187366962433, -0.6232585310935974, 0.8760153651237488, 0.4132315218448639, -0.2885448932647705, 0.07893963158130646, 0.0847376212477684, 0.5349367260932922, 0.37441280484199524, -0.44239410758018494, 1.9393810033798218, 0.6915857195854187, 0.16518759727478027, 0.048298828303813934, 0.5511053204536438, 0.37437379360198975, 0.6886245608329773, -0.5605112314224243, -0.5003998279571533, -0.6370638012886047, 0.842428982257843, -0.5561941862106323, 0.2525319755077362, -0.8442595601081848, -0.15291006863117218, -0.4154745638370514, 0.670355498790741, 1.0982030630111694, -1.0810259580612183, -0.07439775764942169, 0.9094720482826233, -0.6049157381057739, -0.004835896193981171, -0.15093056857585907, 0.6624516248703003, -0.33018046617507935, -0.06227347254753113, 1.3304853439331055, 0.7366217970848083, -0.8972615003585815, 0.3846006989479065, 0.355051726102829, 0.13787049055099487, -0.17468926310539246, -0.18652625381946564, -0.9231517314910889, 0.0987493023276329, 0.1484174132347107, -1.1701918840408325, 0.6232871413230896, -1.1085678339004517, -0.7962214946746826, -0.0172492116689682, -0.3725554645061493, -0.5067257881164551, -0.4474713206291199, -0.45645079016685486, -0.1585882008075714, -0.38138508796691895, 0.47272980213165283, -0.3426523506641388, 1.309013843536377, -0.13349425792694092, -0.04473094269633293, -1.0696022510528564, -0.12817886471748352, 0.19989606738090515, 0.3723512887954712, -0.16259025037288666, -0.2852625846862793, 0.9035022258758545, 0.09148666262626648, -0.8927236199378967, -0.3036516308784485, -0.31685662269592285, -0.20859138667583466, -0.3644644021987915, -0.21399931609630585, 0.040949299931526184, 1.0490729808807373, 1.0980297327041626, 0.7048647403717041, -1.0412667989730835, -0.6872120499610901, -0.2252800166606903, -0.6994669437408447, 0.9125115871429443, 0.2758055329322815, 0.5657142400741577, 0.21786940097808838, -0.17589835822582245, -0.021680396050214767, -0.0484115406870842, 0.439240425825119, 0.045431531965732574, 0.4922029972076416, 0.5574375987052917, -0.041467733681201935, 0.09444049745798111, -0.5813080668449402, 0.6313037276268005, -0.25007107853889465, 0.06375593692064285, 0.06287574768066406, -0.7779520750045776, -0.5919661521911621, -0.39512741565704346, 0.29663902521133423, 1.0553981065750122, 0.8942986726760864, -0.05579163879156113, 0.18685197830200195, -1.2381762266159058, 0.5211899876594543, -0.0621173195540905, -0.4139135777950287, -0.22526969015598297, 0.5373762249946594, 1.0197316408157349, 0.27434495091438293, 0.05566622316837311, -0.20141837000846863, -0.11351125687360764, -0.3842257559299469, -0.45510271191596985, -0.9752432107925415, -0.3530494272708893, -0.1903584599494934], [0.38498058915138245, 0.8477745056152344, -2.666747570037842, -1.0466417074203491, 1.4858349561691284, -0.033301543444395065, 1.1331743001937866, 0.31832143664360046, 0.8321809768676758, 0.7950726747512817, -0.3919226825237274, -0.4064694941043854, -0.04676933214068413, 1.2741339206695557, 0.8611035943031311, 0.5624397993087769, 0.6215924620628357, -1.135305643081665, 0.8163381814956665, 1.2048332691192627, -0.06614615023136139, 0.002717326395213604, -1.314380168914795, 0.026980450376868248, 0.5425735712051392, 0.8075462579727173, -1.409798502922058, -0.01440754160284996, -0.5769913196563721, -0.6686378121376038, 0.4579665958881378, -1.3322086334228516, 0.35320520401000977, 1.3997730016708374, -1.8003722429275513, -0.33905747532844543, 1.3243192434310913, 1.540400743484497, 0.539577066898346, -0.07804188877344131, 2.014233112335205, 0.5690619349479675, -0.4449789524078369, -0.872448742389679, -0.42534130811691284, 0.13271795213222504, -0.4175681471824646, -0.6662288308143616, 0.4038139879703522, -0.5768283009529114, 0.561273455619812, -1.0363050699234009, 0.6950674057006836, 0.695608377456665, 0.8563533425331116, -0.3506969213485718, 0.4950273633003235, 0.9398349523544312, 0.3573967218399048, -0.37010157108306885, 0.6214407682418823, -0.5485000014305115, -0.44059374928474426, 1.0653165578842163, 0.018726233392953873, 0.20647187530994415, -0.7716876864433289, 0.5366835594177246, 0.24198421835899353, -0.42544880509376526, 0.7319338917732239, -0.4805328845977783, -0.3930802345275879, 0.5638512372970581, -0.8270836472511292, 0.1414014995098114, 0.9013266563415527, 0.6474785208702087, 0.6427106857299805, 0.026391008868813515, -0.6726537346839905, 0.29117780923843384, 1.6072461605072021, -0.4106771945953369, 0.30594879388809204, 0.1640116423368454, 0.16482079029083252, -0.752274215221405, 0.26441898941993713, 1.446046233177185, 0.900784969329834, 0.6787002682685852, 0.09594863653182983, -0.2749066650867462, 0.12629838287830353, -0.35985326766967773, -0.28635814785957336, -0.3769606351852417, -1.2633404731750488, -0.4452941119670868, -1.0878316164016724, -0.654829740524292, -0.03613905608654022, 0.24737873673439026, -0.4904705286026001, 1.3565765619277954, 0.04021672531962395, 0.41445329785346985, -0.33869293332099915, -0.33213356137275696, -0.5886976718902588, 0.7815259099006653, -0.5596820116043091, -0.4340052902698517, -0.05379364639520645, 1.239163875579834, 0.5275267362594604, -0.8085996508598328, 0.2782582640647888, 1.1962366104125977, 0.29583740234375, -0.206883504986763, -0.10238099843263626, 1.158823847770691, 0.9389784336090088, 0.3706047534942627, 0.003012001048773527, -0.6727284789085388, -0.14210422337055206, -0.39387452602386475, -0.34196093678474426, -0.6181981563568115, 0.37423470616340637, 0.11152727156877518, -1.035496473312378, 0.9174805879592896, -0.15287038683891296, -0.937551736831665, 0.2329913228750229, 0.06176231801509857, 0.4577995240688324, 0.01895475573837757, -0.05987715348601341, -0.947616696357727, 0.0077034058049321175, -0.49680861830711365, 0.12514573335647583, -0.33628636598587036, -0.10650258511304855, 0.6415460109710693, -1.0027258396148682, -0.4580971300601959, 1.3619297742843628, 1.036683440208435, -0.29940053820610046, -0.4863617718219757, 0.16005061566829681, -0.4893445372581482, 0.8091374635696411, 0.6871536374092102, 0.5683306455612183, 0.49720174074172974, -1.2515419721603394, 1.756652593612671, 0.1529219150543213, -0.01932533085346222, 0.1258205771446228, 0.946608304977417, -0.26015281677246094, 0.630099356174469, -0.5104109644889832, -0.45146000385284424, -0.25583982467651367, 0.7489207983016968, 0.8284514546394348, -0.4596976339817047, 0.7635964751243591, -0.6110326647758484, -0.612028181552887, -0.6548120975494385, 0.7047761082649231, 0.21507614850997925, 0.5055899024009705, 0.08021658658981323, 0.3488549590110779, -0.752956211566925, 0.4567036032676697, -0.9974684119224548, 0.012873650528490543, -0.1491738259792328, -1.1117236614227295, 0.0689406469464302, -1.5519039630889893, 0.28823432326316833, 0.09309056401252747, -0.4143848717212677, 0.42072126269340515, -1.333075761795044, -0.6401029825210571, 0.8887134790420532, 0.029129520058631897, -0.5681784152984619, -0.09374640136957169, 0.020838294178247452, -0.7791480422019958, 0.5002221465110779, -1.1484705209732056, 0.5656701326370239, -0.5429680943489075, 0.11137790232896805, 1.6250807046890259, -0.27030402421951294, -0.2643046975135803, -0.04834888130426407, 0.2339010089635849, -0.5128438472747803, 0.5883771181106567, 0.29100292921066284, -0.5344502925872803, 0.4391407370567322, -0.18554194271564484, 0.3070002794265747, 0.3581698536872864, -0.5187311172485352, -0.12164914608001709, -0.4473121762275696, -0.015582219697535038, -0.7620205879211426, -1.009142279624939, -0.3161066770553589, -1.4440858364105225, -1.745220422744751, 0.4378563463687897, 0.3394742012023926, -0.9074970483779907, 0.05130744352936745, -0.002075136173516512, 0.5509770512580872, 0.044477708637714386, 1.2045642137527466, 0.45653173327445984, 1.9134622812271118, -0.31698426604270935, -0.19422666728496552, -1.5908825397491455, 0.5914236307144165, 0.75603848695755, -0.5570054054260254, 0.1667238026857376, 0.45835739374160767, 0.9734030961990356, 0.1557488888502121, 0.1367952525615692, -0.560998797416687, -0.06441657245159149, -0.6311628222465515, -0.4359641671180725, 0.5155434012413025, -0.18203367292881012, 1.7221182584762573, 1.1949034929275513, -1.976070761680603, -0.2298361212015152, 0.12755313515663147, -0.528249979019165, 0.23879827558994293, -0.7045286893844604, -0.3894185721874237, -0.04392264410853386, 0.5846378207206726, 0.1868770569562912, 0.8431611061096191, -0.7772135138511658, 0.5280781388282776, -0.21493187546730042, -0.1633104681968689, -0.5097192525863647, -0.3207561671733856, -0.6067590713500977, 1.5015404224395752, -0.6487501859664917, -0.477642685174942, -0.09769310802221298, 0.01583024114370346, 0.0658835619688034, -0.08165346831083298, 0.05379103124141693, 0.8262473940849304, 0.3427714705467224, -0.031463924795389175, 0.6438851952552795, 0.06900563091039658, -0.2657114863395691, 0.6616650819778442, 0.15131452679634094, 0.9556049108505249, 1.1079479455947876, -0.46715953946113586, -0.18905656039714813, -0.5840219855308533, 0.8038531541824341, 0.41578784584999084, 0.6266187429428101, 0.7510857582092285, -0.08928626775741577, -0.40729132294654846, 0.37886252999305725, -1.4781385660171509, -0.0976317748427391, -0.9221776127815247, -1.264265775680542, -0.8521767854690552, 0.2843579053878784, 0.3562301695346832, 0.05668516457080841, 0.1395595371723175, -0.6287189722061157, 0.6017053723335266, 1.3173983097076416, -0.22336208820343018, -0.3813343346118927, 0.16419030725955963, -0.7504013180732727, -0.4063856303691864, 0.028547346591949463, 0.16738317906856537, -0.6245307922363281, 0.25337889790534973, -0.22436705231666565, -0.4893178939819336, 0.8479005098342896, 0.045720793306827545, 0.030945362523198128, -0.840014636516571, -0.9374721050262451, 0.6798499226570129, 0.6655757427215576, 0.2399919331073761, -0.625616729259491, -0.173199862241745, 1.3662731647491455, 0.5144771337509155, 0.6141737103462219, -0.5271021723747253, 1.3306752443313599, -0.7626994252204895, -1.2695680856704712, -0.9720796346664429, 0.688654363155365, 1.1496331691741943, -0.44785064458847046, -0.1530718356370926, -0.08318722993135452, -1.0587354898452759, -0.5830208659172058, -0.27749815583229065, 0.5692156553268433, 0.9600686430931091, 0.16599313914775848, -0.8289068341255188, 1.2944648265838623, -0.26661327481269836, 0.31500446796417236, -1.5084306001663208, 0.3373676538467407, 0.5648759603500366, 0.5486988425254822, -0.23209211230278015, 0.07671026885509491, 1.2219829559326172, 0.07987920194864273, -0.3986019790172577, -0.11383794993162155, 1.3938878774642944, -0.5683620572090149, -0.9938187003135681, -0.43124523758888245, 0.2786344289779663, 0.39316701889038086, -0.21943911910057068, 0.1220955103635788, 0.2929856777191162, -0.5114671587944031, 0.4600071609020233, 1.0787094831466675, 0.0676959753036499, -0.6076127290725708, -0.4020741581916809, 0.141413614153862, 0.046756286174058914, 0.06238477677106857, 1.0245850086212158, -0.8506225943565369, -0.4117370843887329, 0.6537638902664185, -1.3895478248596191, -0.2763325870037079, 0.1332133710384369, -0.5310049057006836, 0.30906468629837036, -0.8674600720405579, 0.2151193469762802, 0.4003315269947052, 1.1897510290145874, -0.3931611478328705, 0.12893816828727722, 0.46773096919059753, 0.09645520150661469, 1.0579142570495605, -0.0024588368833065033, 0.2111215889453888, 1.2458852529525757, -0.6237940788269043, -0.1849859207868576, -0.10002187639474869, 0.17556659877300262, 0.3762950301170349, -0.8946007490158081, -0.015231595374643803, -0.6637422442436218, 0.04898015037178993, -0.5638264417648315, -0.1730721890926361, -0.42514747381210327, 0.4626710116863251, 0.9378321170806885, 0.3567921817302704, 0.6600643992424011, -0.7616814970970154, -0.6970614790916443, 0.756880521774292, 0.1919613778591156, -0.13311384618282318, -0.1947345733642578, -0.1920345276594162, 0.4970778822898865, 0.615959107875824, 0.18442027270793915, 0.18579451739788055, 1.1608760356903076, -0.46675530076026917, -0.6955916285514832, -0.2592131793498993, -0.020802229642868042, 0.8065929412841797, 0.7550696134567261, 0.052313245832920074, -0.47461745142936707, -0.8669780492782593, 0.25938767194747925, -0.39685913920402527, -0.09688066691160202, 1.1316263675689697, 0.8343411684036255, 0.9576730132102966, -1.8049495220184326, -1.0579116344451904, 0.8374481797218323, -0.09158290922641754, 0.1976572424173355, 0.5095705986022949, 0.4676801860332489, 0.2112036645412445, 0.47163158655166626, 0.03414858877658844, -0.13751479983329773, -0.19737884402275085, -0.19997917115688324, 0.10136505216360092, 0.8648913502693176, -0.10919174551963806, 1.1222882270812988, -0.5496350526809692, 0.061993323266506195, 0.23095834255218506, -0.4275583326816559, -0.27428558468818665, 0.38802120089530945, -0.1149977594614029, 1.147668480873108, -0.7864685654640198, -0.6474774479866028, 0.04418906942009926, -0.2472507655620575, -0.40636274218559265, 0.44590604305267334, -0.24437926709651947, -0.3696185052394867, -0.036550264805555344, -0.6057697534561157, 0.5439329147338867, -0.23188024759292603, -0.23180854320526123, -0.8358711004257202, -1.1419841051101685, 0.4440889060497284, 0.388576477766037, 0.7687505483627319, 0.11226716637611389, 0.6024997234344482, 0.4232965409755707, -0.013233326375484467, -0.19678351283073425, 0.4747426509857178, -0.584284245967865, -0.32260411977767944, -0.02382604219019413, -1.4989804029464722, -0.9684926867485046, 0.41122522950172424, 0.46255242824554443, -0.11529728025197983, 0.5222962498664856, 0.8826437592506409, 1.4039521217346191, 0.43998757004737854, -0.49755367636680603, 0.3609521687030792, -0.1063951775431633, 1.0277308225631714, 0.6247286796569824, -0.0013817483559250832, -0.6065016388893127, -1.3225598335266113, -1.2167024612426758, 0.5892977714538574, -0.022891227155923843, -1.6579091548919678, 0.906780481338501, 0.5805593729019165, 0.07643453776836395, 1.0948004722595215, -0.02496509626507759, 0.4580199718475342, -0.1192966029047966, -0.3933354914188385, -1.1508327722549438, 0.6189714074134827, -0.06148475781083107, 0.5477012991905212, -0.09409483522176743, 0.8672662377357483, -0.011301608756184578, 0.7172553539276123, 0.8480778336524963, 0.6409918665885925, 1.2110192775726318, -0.4860716164112091, 0.6942254900932312, -0.2172834277153015, -0.14035579562187195, -0.7523976564407349, -1.4485565423965454, -1.3934612274169922, 0.3187068700790405, -0.6715885996818542, -0.6783575415611267, -0.32586392760276794, -0.6429780125617981, -0.6994114518165588, -0.5611933469772339, 0.6367633938789368, 0.8742473721504211, 0.027186697348952293, -0.4594593346118927, -0.9622414112091064, -0.18852578103542328, -0.46713852882385254, -0.5298980474472046, -0.553763747215271, 0.5977160930633545, -1.5507227182388306, 0.366132527589798, -0.026884673163294792, -0.4108620584011078, 0.3915334939956665, -1.0689165592193604, -0.0028864878695458174, -0.8016063570976257, -1.3420982360839844, -1.3236966133117676, 0.08927152305841446, 1.4913673400878906, 0.017986087128520012, 0.8919916152954102, 0.6901822686195374, -1.2628158330917358, 0.06362500786781311, -0.2662183940410614, -1.2671921253204346, 0.09823229908943176, -1.048008680343628, 0.3708512783050537, -0.5476408004760742, 0.15502852201461792, -0.1656743288040161, 0.6048164963722229, -1.4225990772247314, -0.6892884373664856, -0.3305858075618744, -0.40367037057876587, 0.7081342935562134, 0.9785377383232117, -1.2371429204940796, 1.607354998588562, 0.7219067215919495, 0.6978744864463806, -0.3485722541809082, 0.19336803257465363, -0.7396193146705627, 0.8492804169654846, -0.2639103829860687, -0.3121875822544098, 1.0370168685913086, 0.5818876624107361, 0.050287727266550064, 0.6491165161132812, 0.2602594196796417, -0.4716170132160187, -0.4483836591243744, -0.09774965792894363, -0.7656734585762024, 1.024421215057373, -0.6415332555770874, -0.8243322372436523, -0.5360927581787109, -0.4183410108089447, -1.016819715499878, -0.5015531778335571, 0.6384271383285522, -0.585050106048584, -0.7935870289802551, -0.08430919796228409, -0.04880937188863754, 0.2950870394706726, 1.0051020383834839, 0.2205069214105606, -0.1838306486606598, -0.0633690282702446, 0.07066496461629868, 0.7882154583930969, -0.6831448078155518, 0.7801647782325745, 0.7849733233451843, -0.3422906994819641, -0.3333795964717865, 0.020701471716165543, 1.5831646919250488, 0.45700693130493164, -0.06547871232032776, 1.588207721710205, 0.7846248745918274, 0.10059963911771774, -0.2029774934053421, 0.2693018913269043, 0.4753198027610779, 0.6899654865264893, -0.5050898790359497, 0.65876704454422, -0.742737352848053, 1.1372660398483276, 0.34064340591430664, -0.6226291060447693, -1.1520583629608154, -0.6672013401985168, -0.6842959523200989, 0.25324195623397827, 0.43919914960861206, -1.700846791267395, 0.1498289704322815, 0.722693681716919, -0.33856725692749023, 0.03960245102643967, -0.4972297251224518, 1.6874550580978394, -0.32024306058883667, -0.06243233010172844, 0.5936113595962524, -0.107950858771801, -0.4421713650226593, 0.7639362812042236, 0.4342431128025055, 0.44106221199035645, -0.6021807789802551, -0.3642055094242096, -1.1473809480667114, -0.33062708377838135, -0.08709259331226349, -0.9738045334815979, 0.20664265751838684, -0.7216300964355469, -1.3893052339553833, 0.7346757650375366, 0.43674206733703613, -0.22974391281604767, -0.21057243645191193, -0.4065712094306946, -0.41568607091903687, -0.4416252672672272, 0.1448468118906021, -0.6100507378578186, 1.0688704252243042, -0.3067609965801239, 0.244066521525383, -1.271080732345581, -0.6380565166473389, 0.3445875644683838, 0.20159341394901276, 0.15193502604961395, -0.24694034457206726, 0.15890197455883026, -0.8485349416732788, -1.0306779146194458, -0.007156726438552141, 0.9102832078933716, -0.5001605749130249, -0.1091175451874733, -1.6997581720352173, -0.08920435607433319, 0.4417203366756439, 1.3609989881515503, -0.6346187591552734, -0.9297557473182678, -0.761080801486969, 0.3046077489852905, -0.9275761842727661, 0.7366471290588379, -0.1902359277009964, 0.881888747215271, 0.7895835041999817, -0.5653547644615173, -0.08195801824331284, 0.637723445892334, 0.37796249985694885, -0.36207619309425354, 0.8783352971076965, 0.48520734906196594, 0.23169668018817902, -0.6608421802520752, -0.480467826128006, 0.24771662056446075, -1.175126552581787, 0.16194261610507965, -0.07032115012407303, -0.2659519910812378, -0.6247453093528748, -0.8217701315879822, 0.9506067037582397, 0.7306979298591614, -0.13958029448986053, -0.3967551589012146, 0.9516667127609253, -1.1308720111846924, 0.4770546555519104, -0.38712364435195923, -0.0675068125128746, 0.21122555434703827, 0.36152565479278564, 1.6269785165786743, 0.30341681838035583, -0.04437847062945366, 0.19139106571674347, 0.42033687233924866, -0.03867499157786369, -0.19593122601509094, -1.0271962881088257, -0.3850017189979553, -0.49361738562583923], [-0.4039975702762604, 1.567246437072754, -2.454486131668091, -0.5325807929039001, 0.5764238238334656, 0.4017532467842102, 0.7741941213607788, -0.14197401702404022, -0.3552495241165161, -0.08753342926502228, -0.9303935766220093, 0.0029481202363967896, -0.33598634600639343, 1.6173219680786133, 0.747900664806366, 0.9200094938278198, 0.4641093313694, -0.8951345086097717, 1.56911301612854, 0.8908112049102783, 0.017243029549717903, -0.8655163049697876, 0.2086361199617386, -0.4424656927585602, 0.22916279733181, -0.3552764356136322, -1.362306833267212, -0.730455219745636, -1.0361543893814087, -1.4208428859710693, 0.9504685401916504, -0.41520199179649353, -0.21087898313999176, 0.08418735861778259, -1.5045535564422607, -0.12229745090007782, 1.9611575603485107, 1.2454845905303955, 0.9031251072883606, 0.21070532500743866, 0.9971327781677246, -0.18461330235004425, -0.10014206916093826, -0.7597801685333252, 0.23168182373046875, 0.050428688526153564, 0.23529836535453796, -0.825527548789978, -0.6680246591567993, -0.47272032499313354, 0.33397823572158813, -1.42233145236969, 0.46014389395713806, 0.6379274129867554, 1.6140719652175903, -0.728411078453064, 0.2463342249393463, 0.6997942328453064, 0.6183819770812988, -0.45303571224212646, 0.7877586483955383, 0.09241613745689392, -0.7315456867218018, 0.9259798526763916, -0.28557145595550537, -0.15705068409442902, 0.32439982891082764, 0.40022844076156616, -0.10038051009178162, 0.15369433164596558, -0.13378863036632538, 0.2358972430229187, -0.5133141279220581, 0.43185171484947205, -0.9522096514701843, 0.024854427203536034, 0.3325309157371521, 0.8098448514938354, 0.3053109645843506, 0.44465211033821106, -0.08012189716100693, -0.19430828094482422, 0.011382689699530602, -0.07142001390457153, 1.3355447053909302, 0.19816572964191437, 0.9501034021377563, -0.5408794283866882, -0.9778209328651428, 1.8918840885162354, 0.7143443822860718, 0.3704602122306824, 0.14957928657531738, -0.2125500589609146, 0.10295538604259491, -0.6137621402740479, 0.07757971435785294, -0.8248592615127563, -0.8144166469573975, -0.9405831098556519, -0.5653049945831299, -0.9285401105880737, -0.1658596247434616, -0.29611051082611084, -0.19261297583580017, 1.6039694547653198, 0.14626441895961761, -0.01772366836667061, -0.552929162979126, -0.08225864917039871, -0.07851818203926086, 0.4251571297645569, -0.5013488531112671, -0.3876660466194153, -0.6602245569229126, 1.0347275733947754, 1.6329545974731445, -0.4698294401168823, 0.0498335100710392, 1.5440582036972046, -0.4259217381477356, -0.41471850872039795, -1.2052381038665771, 0.5323293209075928, 0.022712405771017075, 0.5142934322357178, -0.37762895226478577, -0.26475468277931213, 0.03945711627602577, -0.048219989985227585, 0.2513516843318939, -0.28202709555625916, -0.10242238640785217, 0.3809608817100525, -0.8448432087898254, 1.7354048490524292, 0.040460534393787384, -0.7328086495399475, 0.14013373851776123, -0.4383299648761749, 0.38260677456855774, 0.23408930003643036, -0.8558709621429443, -0.8754010796546936, 0.08414161950349808, -0.8716900944709778, 0.2501450181007385, -0.1641089767217636, -0.711392879486084, 0.4123947024345398, -0.6817701458930969, 0.19573554396629333, 0.17040643095970154, 0.013058941811323166, 0.38589322566986084, 0.43256306648254395, 0.3869653046131134, -0.034955598413944244, 0.36550453305244446, 0.39804768562316895, 0.4770476222038269, -0.16131888329982758, -0.8248659372329712, 0.8762059807777405, 0.30886679887771606, 0.05846641957759857, 0.5298073887825012, 0.4716569185256958, 0.4755428433418274, 0.5564373135566711, -0.25946909189224243, 0.058958977460861206, -0.7897709012031555, 0.29668956995010376, 0.2087996006011963, -1.0234540700912476, 1.4751344919204712, -0.3473563492298126, -1.0735329389572144, -1.3485556840896606, -0.594321608543396, -0.16601209342479706, 0.565222978591919, 0.18457773327827454, 0.5408768653869629, -0.9528020620346069, 0.2861503064632416, -0.034295909106731415, -0.48740753531455994, -1.075920820236206, -0.7676175832748413, -0.07219544053077698, -0.6208111643791199, 0.2802962362766266, -0.4215170443058014, -1.3346527814865112, 0.5365539789199829, -1.0874031782150269, -0.22191457450389862, -0.524188756942749, -0.4956459105014801, -0.6620922684669495, -0.38381722569465637, 0.5058380961418152, -0.6951536536216736, 0.9563895463943481, -0.35257309675216675, 0.8019141554832458, -1.0650408267974854, -0.04747883975505829, 1.132233738899231, 0.5013578534126282, -0.77092045545578, 0.6629058122634888, 0.6155647039413452, -1.754852056503296, 0.11093633621931076, -0.17049291729927063, -0.5374531149864197, 0.07160115242004395, 0.23707105219364166, -0.2723887860774994, 0.33096590638160706, 0.3650367259979248, 0.48103007674217224, -0.03736283257603645, -0.8080278635025024, -0.08132879436016083, -0.7636566758155823, -0.0567723885178566, -0.9651663899421692, -0.2889307141304016, 0.9113168120384216, 0.17769229412078857, -1.0399328470230103, 0.11844993382692337, 0.5672493577003479, 0.9541136622428894, 0.5937155485153198, 1.5589210987091064, 0.5430312752723694, 1.297218680381775, -0.3647877871990204, -0.35009947419166565, -0.9628210663795471, 0.2020605355501175, 0.26502227783203125, -0.8060773611068726, -0.10853633284568787, 0.8863605260848999, 1.133660912513733, 0.16687354445457458, -0.21369428932666779, -0.8489271402359009, -0.12384507060050964, -0.4675901532173157, -0.28123167157173157, -0.0930938720703125, 0.03809366375207901, 1.3274437189102173, 0.24032604694366455, -1.6340638399124146, -0.2616470754146576, -0.06077263504266739, 0.027282148599624634, -0.05800097435712814, -1.0677059888839722, -0.02965952828526497, -0.37190067768096924, 0.11418486386537552, 0.44543418288230896, 0.6858100295066833, -0.514374315738678, 0.265575110912323, -0.3443578779697418, -1.3437672853469849, -0.5254268050193787, 1.0245872735977173, -0.07892392575740814, 1.180762529373169, -0.3695715665817261, -1.1273137331008911, -0.5608668923377991, -0.4284776747226715, 1.3601948022842407, 0.9892288446426392, 0.4077052175998688, 0.3767029643058777, 0.27268776297569275, -0.39005303382873535, 0.11620977520942688, -0.022231247276067734, -0.6558383107185364, -0.3584860563278198, -0.18912214040756226, 0.5720157027244568, 1.351871371269226, -0.8508009314537048, -0.4921340346336365, -0.14960886538028717, -0.14047300815582275, 1.3507925271987915, 0.478259414434433, 1.3430159091949463, -0.10775198042392731, 0.30185773968696594, -0.1572149097919464, 0.007214600220322609, -0.8879612684249878, -0.7336682677268982, -0.9259184002876282, -0.4815343916416168, 0.16235876083374023, 0.41120776534080505, 0.58030104637146, 0.3918047547340393, -0.2571081221103668, -0.2395165115594864, 1.109815001487732, 0.33196327090263367, -0.6456356048583984, 0.15872278809547424, 0.07809879630804062, -0.44679224491119385, -0.16345377266407013, 0.5375540852546692, -0.7812602519989014, -0.5322491526603699, -0.3647499978542328, 0.27057355642318726, 0.8485561013221741, -0.3201504051685333, 0.026914376765489578, -1.0431052446365356, -1.0354970693588257, -0.033055420964956284, 1.4310106039047241, 0.01465071551501751, 0.12357978522777557, -0.41067445278167725, 0.36449337005615234, 1.1424480676651, -0.6694301962852478, 0.14788781106472015, 0.4836737811565399, -0.058514710515737534, -0.9616433382034302, -0.3316357433795929, -0.16178172826766968, 0.4642423391342163, -0.4052486717700958, -0.07525541633367538, -0.13578926026821136, -0.7767823338508606, -0.7350539565086365, 0.6452937722206116, -0.1728658676147461, 1.1274386644363403, 0.13500671088695526, -0.1322687864303589, 1.4387929439544678, 0.5294972658157349, 0.5208969116210938, -1.254626989364624, 0.3430858850479126, 0.26400792598724365, 0.7085919976234436, 1.127393364906311, -0.1874728798866272, 0.9043378233909607, 0.48870915174484253, -0.054510097950696945, 0.15439455211162567, 1.2792612314224243, -0.3513813316822052, -0.09666134417057037, -1.1600996255874634, 0.5694308876991272, -0.18490839004516602, -1.2596819400787354, -0.46692025661468506, -0.03846561536192894, -0.9548551440238953, -1.2396724224090576, 1.0850461721420288, 0.03554524853825569, -0.1611175835132599, -0.27477365732192993, 0.6332583427429199, 0.724865198135376, -0.6727511286735535, 0.7172505259513855, -0.7203074097633362, 0.2442987710237503, 0.586006760597229, -0.7819197773933411, 0.28628626465797424, 0.14947904646396637, 0.04129519686102867, 1.1416200399398804, -0.9459152221679688, 0.20694434642791748, 0.23553010821342468, 0.42579320073127747, -0.01754683442413807, -0.24629448354244232, 0.37335026264190674, 0.13206711411476135, -0.2820214629173279, -0.6960124373435974, 0.16349220275878906, 0.6585639715194702, -0.22128458321094513, 0.4003664553165436, 0.40863561630249023, -0.06850827485322952, -0.42491650581359863, -0.6664323210716248, -0.5046391487121582, 0.27483227849006653, -0.3756282329559326, -0.012315968051552773, 0.515313446521759, 0.34181344509124756, 1.2640315294265747, 0.9764572978019714, 0.5228299498558044, 0.8418210744857788, -0.248914897441864, -1.2240043878555298, 0.5824313759803772, 0.2336786538362503, -0.2866970896720886, -0.16156324744224548, 0.3149951994419098, 0.3847567141056061, -0.645534336566925, 0.5506976842880249, 0.40096113085746765, 1.4034453630447388, -0.003375008702278137, 0.04335856810212135, -0.2786387801170349, 0.3842129707336426, 0.6950293779373169, 1.3586347103118896, 0.5633189678192139, -0.2536986470222473, -1.285900354385376, 0.7140961289405823, -1.1041148900985718, 0.041824761778116226, 0.5470398664474487, -0.03526601940393448, 1.4073195457458496, -1.2305330038070679, -0.3095359206199646, 0.26829293370246887, 0.6061891913414001, 0.11233169585466385, 0.2136332243680954, 0.04938485100865364, -0.5476744174957275, 0.3461918532848358, -0.024585027247667313, -0.3442721962928772, -0.34680941700935364, 0.5226778984069824, -0.40611034631729126, 0.7618846893310547, -0.23675484955310822, 0.7724860906600952, -0.6086682677268982, 0.11969837546348572, 0.476201593875885, -0.4870820641517639, 0.11639101058244705, 0.36080026626586914, 0.5020052790641785, 1.8524823188781738, -0.2466898262500763, -0.9044588804244995, 0.16496048867702484, -0.5189434289932251, 0.21099461615085602, -0.2502317726612091, -0.5686947703361511, -0.21708214282989502, -0.39827263355255127, -0.15437966585159302, 0.5276404023170471, 0.14584973454475403, -0.6518329977989197, -0.318987637758255, -1.7239928245544434, 0.09201716631650925, 0.8116918206214905, 1.0519570112228394, 1.0218157768249512, -0.023713624104857445, -0.6829685568809509, 0.31295230984687805, -0.861161470413208, 0.09104073792695999, 0.11844158172607422, -0.13736893236637115, -0.03521313890814781, -1.327728271484375, -0.6674505472183228, 0.9066374897956848, -0.10811369121074677, 0.5661900639533997, 1.0631568431854248, 1.8952594995498657, 1.1382008790969849, -0.41283610463142395, -0.6496155858039856, -0.17172065377235413, -0.6078734397888184, 1.0476537942886353, 1.2059553861618042, 0.3851783871650696, -0.8828200101852417, -0.531592607498169, -1.3995320796966553, 1.185154676437378, 0.05966871976852417, -1.5045808553695679, 0.739669680595398, 0.46880999207496643, 0.7458485960960388, 0.5144268274307251, -0.7926559448242188, 0.8684523105621338, 0.2922024130821228, -0.67107754945755, -1.0329662561416626, 0.5559304356575012, -0.13739052414894104, 0.515920102596283, -0.24987530708312988, 0.643001139163971, 0.3570767343044281, -0.12528148293495178, 0.2682400941848755, 0.40099456906318665, 0.44871318340301514, 0.8048309683799744, -0.07766012102365494, -1.5389714241027832, -0.035143159329891205, -0.7359646558761597, -0.09518631547689438, -0.1726517677307129, 0.7702917456626892, 0.029391175135970116, -0.20077575743198395, -0.8201618790626526, -0.4217565357685089, -0.7241798639297485, -0.0445694662630558, -0.3614499270915985, 1.164170265197754, 0.17311088740825653, -0.4910274147987366, -0.6118150353431702, -0.5163955092430115, -0.013072491623461246, -0.7647776007652283, 0.6215550899505615, 0.18364061415195465, -1.3444983959197998, 0.3681757152080536, 0.2590543031692505, -1.3962959051132202, -0.3218008875846863, -0.692467987537384, 0.4244857430458069, -1.4580979347229004, -1.1846081018447876, -0.40584880113601685, -0.19751764833927155, 0.6692866086959839, -0.6189976930618286, 0.3799407184123993, 0.43729227781295776, -1.3895344734191895, 0.32004761695861816, 0.10841149091720581, -0.36068466305732727, -0.3525806963443756, -1.1340219974517822, 0.5488413572311401, 0.06633763760328293, 0.2665778398513794, -0.27936363220214844, 0.13206133246421814, -1.453223466873169, -0.7343607544898987, -0.7581297755241394, -0.6787225604057312, 0.8203120231628418, 0.479677677154541, -0.9319786429405212, 1.4909268617630005, 0.802114725112915, -0.7575095891952515, 0.2651524245738983, -0.3805404603481293, -0.4601183235645294, -0.2019815742969513, 1.234565258026123, 0.794358491897583, -0.06775301694869995, 1.214990258216858, 0.6300133466720581, 0.8639834523200989, 0.6839208602905273, 1.0464754104614258, -0.6587956547737122, -0.5413029193878174, 0.05363094434142113, 0.6871927976608276, -0.8675839900970459, -0.49811020493507385, -0.4837811291217804, -0.7094342708587646, -0.8167668581008911, 0.11392885446548462, 0.30740177631378174, -0.6177374124526978, 0.6386317014694214, -0.4921976625919342, 1.0242197513580322, -1.2415666580200195, 0.07212020456790924, -0.41477638483047485, -0.7631187438964844, 0.4149789810180664, 0.3981505334377289, 0.5161483287811279, -1.5587645769119263, 0.510187566280365, 0.3262835443019867, -0.3127075135707855, -0.3227311372756958, 0.17868541181087494, 0.8026725053787231, 0.08412285149097443, -0.5939019322395325, 1.4135234355926514, 1.162975549697876, 0.4477703273296356, -0.31307923793792725, 0.2841331660747528, -0.036438390612602234, 0.6525664925575256, -0.16646254062652588, -0.26767411828041077, -0.6154961585998535, 1.599366545677185, 0.10970529168844223, 0.8558030128479004, -0.3473285734653473, 0.2609885632991791, -0.37685132026672363, 0.11157603561878204, 0.877159595489502, -0.6937670707702637, -0.7878459095954895, 1.0469093322753906, -0.5374360084533691, 0.08155490458011627, 0.6568354964256287, 0.5501248240470886, 0.315615177154541, -0.8397009968757629, 0.14829102158546448, 0.73785799741745, -0.6646761298179626, 0.7061139941215515, 0.2796149253845215, -0.2632487118244171, -0.5424882769584656, -0.1443479359149933, -0.5777239203453064, 0.04692975431680679, 0.01610640250146389, -0.6826488375663757, 0.7018227577209473, -0.8798500299453735, -0.8219815492630005, 0.18613694608211517, -0.28000572323799133, -0.7381503582000732, -0.25370684266090393, 0.6438646912574768, -0.17403395473957062, 0.06516223400831223, 0.5488022565841675, 0.17517930269241333, 1.0099555253982544, -0.4278407096862793, 0.20799893140792847, -1.4298772811889648, 0.2900615632534027, 0.4497114419937134, 0.7258549928665161, -0.10819076001644135, 0.21986213326454163, 1.2448430061340332, -0.8256425261497498, -0.8037031292915344, 0.6489945650100708, -0.22675564885139465, 0.4332936704158783, 0.21146170794963837, -0.7471565008163452, 0.10970499366521835, 0.6061800718307495, 1.1520099639892578, -0.13080672919750214, -0.28591683506965637, -0.6437861323356628, 0.3598332405090332, -0.4684072732925415, 0.3129107356071472, -0.3610188961029053, 1.1858800649642944, 0.8586834669113159, -0.5954038500785828, -0.5590359568595886, -0.2659120261669159, 0.45832714438438416, -0.5654654502868652, 0.1180390864610672, -0.16326002776622772, 0.36897698044776917, -0.40472865104675293, -0.5164494514465332, 0.2460404485464096, -0.0729692131280899, -0.4786686897277832, 0.2076711505651474, -1.309252381324768, -0.7410976886749268, -0.5002172589302063, 0.2825775742530823, -0.1691828966140747, 0.1332462877035141, -0.1994689702987671, -0.1710391640663147, -0.9459012150764465, -0.66248619556427, -0.037155598402023315, -0.14749455451965332, -0.02970055863261223, 0.9347957968711853, 1.46122407913208, 0.6748156547546387, -0.23951251804828644, -0.5496573448181152, 0.9322878122329712, -1.1339020729064941, -0.490321546792984, -0.1823890507221222, -0.6758778095245361, -0.34642666578292847], [-0.294297456741333, 0.9849588871002197, -2.4829342365264893, -0.35062623023986816, 1.2614811658859253, 0.32577645778656006, 1.340859293937683, -0.010169191285967827, 0.4539296627044678, 0.022292256355285645, -0.30646955966949463, -0.4606895446777344, -0.05950310081243515, 1.270057201385498, 1.1390721797943115, 0.5391178727149963, 1.1112853288650513, -0.6219075918197632, 0.5893509984016418, 0.6903173327445984, -0.6112375259399414, -0.6391729712486267, -0.022335929796099663, 0.40376564860343933, 0.036744337528944016, 0.5672711133956909, -1.8369044065475464, 0.014313464052975178, -1.0729660987854004, -0.9552651047706604, 0.3360471725463867, -1.1511493921279907, -0.06834288686513901, 1.0962802171707153, -1.5811002254486084, 0.031734999269247055, 1.957174301147461, 0.8091030716896057, 1.157585859298706, 0.30605900287628174, 2.0114455223083496, -0.003364583943039179, -0.5345317721366882, -1.146445870399475, -0.34996965527534485, -0.3411642611026764, 0.4957444369792938, -0.6816248893737793, 0.40048134326934814, -1.2264341115951538, 0.4859485924243927, -1.279980182647705, 0.8593239188194275, 0.7290857434272766, 1.67877995967865, -0.7767730355262756, 0.2857377529144287, 0.33195412158966064, 0.6528258919715881, -0.45701688528060913, 0.6526766419410706, -0.1940673589706421, -0.08654502034187317, 0.6933984160423279, 0.06944729387760162, -0.05775342881679535, -0.1834525316953659, 0.29254472255706787, 0.09422563016414642, -0.27999427914619446, 1.0313868522644043, 0.35851889848709106, -0.8044200539588928, 0.7612705230712891, -1.3842946290969849, 0.3977181613445282, 0.4886569678783417, 0.6645155549049377, 0.41459423303604126, 0.08128035068511963, -0.2486003041267395, -0.37433570623397827, 0.7721210718154907, -0.10716038197278976, -0.07090055197477341, 0.05329081416130066, 0.5567120313644409, -0.37482860684394836, -0.4430778920650482, 1.278422474861145, 0.49194252490997314, -0.15286986529827118, 0.034965574741363525, -0.15750712156295776, -0.5718221068382263, -0.33653077483177185, 0.003519628196954727, -0.5720184445381165, -1.1692434549331665, -0.287375807762146, -0.051065851002931595, -0.6588159203529358, -0.469814270734787, 0.15820001065731049, -1.1649837493896484, 1.1154847145080566, 0.23261012136936188, -0.6340736150741577, -0.26056402921676636, -0.19634641706943512, -0.3946586549282074, 0.5314737558364868, -0.7989981770515442, -0.843295693397522, -1.0019395351409912, 1.112951397895813, 0.8082189559936523, 0.08277805894613266, 0.5412709712982178, 1.0100234746932983, 0.32864999771118164, 0.05681268498301506, 0.010749970562756062, 0.7345442175865173, 0.52118980884552, 0.5181697607040405, -0.6838564276695251, -0.7558575868606567, 0.3054923117160797, -0.654350757598877, 0.7417227625846863, -0.692611813545227, 0.03770720586180687, 0.11886462569236755, -0.6677979826927185, 1.4412262439727783, 0.08678670972585678, -0.8582194447517395, 0.3796501159667969, -0.6127179861068726, 1.2155394554138184, -0.02924969419836998, -0.07955145090818405, -1.0542758703231812, -0.005696096923202276, -1.1712886095046997, 0.028824878856539726, -0.3706335723400116, -0.6578758358955383, 0.12732148170471191, -1.4962050914764404, 0.1986396461725235, 1.1990330219268799, 0.709351122379303, 0.5073480010032654, -0.015971677377820015, 0.040015242993831635, -0.05274417623877525, 0.7046456933021545, 0.03220728039741516, 0.5938267111778259, 0.281513512134552, -0.967643678188324, 0.7800909876823425, 0.11034785956144333, 0.1347183734178543, 0.20503848791122437, 1.3799721002578735, -0.2629888355731964, 0.5587570667266846, 0.0007447856478393078, 0.07203620672225952, 0.05041872337460518, 0.6921157240867615, 0.43999356031417847, -1.1059561967849731, 0.8096775412559509, -0.848170816898346, -1.3687057495117188, -1.1398831605911255, 0.3182772696018219, -0.2440148890018463, 0.33630144596099854, 0.18294717371463776, 0.3088099956512451, -0.7211920619010925, 0.5858455300331116, -0.6836537718772888, -0.41887032985687256, -0.6808134913444519, -0.14300522208213806, -0.07497849315404892, -1.0872621536254883, 0.00832337699830532, 0.2032497525215149, -0.6291077136993408, 0.4465736150741577, -1.0358242988586426, -0.1805913746356964, 1.1095941066741943, -0.21227560937404633, -0.21420538425445557, 0.17195236682891846, 0.5976065993309021, -0.6251026391983032, 0.7118856906890869, -0.4235232174396515, 0.8818439245223999, -0.4978562891483307, -0.18958905339241028, 1.0575860738754272, -0.4115425944328308, -0.2778879404067993, 0.06927180290222168, 0.5643416047096252, -1.162723422050476, 0.4379170536994934, 0.47338250279426575, -0.44152411818504333, 0.10834793746471405, -0.01438521221280098, 0.31606802344322205, 0.5037183165550232, -0.2096351534128189, 0.48317617177963257, 0.0677647590637207, -0.5572630167007446, -0.3076072037220001, -0.4600396156311035, -0.36600327491760254, -1.2508363723754883, -0.7361400127410889, 0.5867645144462585, 0.8608503341674805, -1.2786777019500732, 0.09974811226129532, 0.426354318857193, 0.641211986541748, 0.2535374164581299, 1.0854425430297852, 0.33857834339141846, 1.5361266136169434, -0.41111475229263306, -0.35870835185050964, -1.0090947151184082, 1.243775725364685, 0.807427704334259, -0.9826040863990784, 0.24371230602264404, 0.7409947514533997, 0.7598940134048462, 0.08578101545572281, 0.446550577878952, -0.5180661082267761, -0.36467376351356506, -0.30676281452178955, -1.394495964050293, 0.1676512062549591, 0.13599161803722382, 1.921829342842102, 1.2259734869003296, -1.5526167154312134, -0.266715943813324, 0.05379871651530266, 0.21806158125400543, -0.4141782820224762, -0.6530058979988098, -0.32654884457588196, 0.20521794259548187, 0.40974223613739014, 0.18734009563922882, 0.7607566714286804, -0.8190310597419739, 0.5651307702064514, -0.5032110214233398, -0.27753978967666626, -0.48091697692871094, 0.28209972381591797, -0.42410364747047424, 1.3617377281188965, -0.5408918261528015, -1.2790883779525757, 0.24854817986488342, 0.09232733398675919, 0.43811318278312683, 0.03417529910802841, -0.35757318139076233, 0.2075733244419098, 0.2539278566837311, -0.5426950454711914, 0.3257889747619629, 0.37861600518226624, 0.43242761492729187, 0.13578641414642334, 0.2718867361545563, 0.6765018701553345, 0.832183837890625, -0.5445266366004944, -0.6144790649414062, -0.42482462525367737, 0.3875982463359833, 1.4837777614593506, 0.11525435000658035, 1.0575026273727417, 0.7140464186668396, -0.12336879223585129, 0.10140789300203323, -0.6215750575065613, -0.38744306564331055, -1.1458619832992554, -0.8581308126449585, -0.8983962535858154, 0.208890900015831, 0.011652063578367233, 0.008127579465508461, 0.14120110869407654, -0.3363781273365021, 0.38906601071357727, 1.5752089023590088, -0.23328334093093872, -0.5041293501853943, 0.11726244539022446, -0.9643484950065613, -0.7473412156105042, 0.38894692063331604, 1.1114099025726318, -1.0013525485992432, -0.25292330980300903, -0.014621978625655174, -0.37123748660087585, 0.48242896795272827, -0.3130612373352051, -0.2858305275440216, -0.9149788022041321, -0.3421505391597748, 0.5180373787879944, 1.1914409399032593, -0.059424735605716705, -0.3009405732154846, -0.4010140597820282, 0.2185618132352829, 0.5564079880714417, -0.21476882696151733, -0.6475265026092529, 1.3530287742614746, -0.8882684111595154, -0.7969688177108765, -0.358165979385376, 0.5838065147399902, 0.6334252953529358, -0.5681118965148926, -0.4608999490737915, -0.30657047033309937, -0.705007791519165, -0.4647473990917206, -0.14665254950523376, 0.06151456758379936, 1.5235332250595093, 0.080681212246418, 0.3444789946079254, 1.292126178741455, -0.19369402527809143, 0.1226814016699791, -1.7483323812484741, 0.5359993577003479, 0.8820922374725342, 0.8264431357383728, -0.056913841515779495, -0.16390225291252136, 0.3883691132068634, 0.3870411217212677, 0.324941486120224, 0.2649611234664917, 1.1195954084396362, -0.5044069290161133, 0.06657465547323227, -0.5433419346809387, 0.5773540139198303, -0.24211625754833221, -0.7925764918327332, 0.45644205808639526, -0.13149183988571167, -0.946688175201416, -0.36276593804359436, 1.1661540269851685, -0.4192174971103668, -0.01212373748421669, -0.6501342058181763, 0.2656014561653137, 0.8512361645698547, -0.8638709187507629, 0.8601223230361938, -0.43659108877182007, -0.07080432772636414, 0.3122963309288025, -1.1496670246124268, 0.06930308043956757, -0.07057192176580429, -0.4216388463973999, 0.5850290060043335, -0.6754624843597412, 0.5144742727279663, 0.40636956691741943, 1.0328540802001953, 0.045147303491830826, -0.785398542881012, 0.4894663393497467, -0.04451780021190643, 0.22321942448616028, -0.15566571056842804, 0.6457779407501221, 0.921263575553894, -0.6515629887580872, 0.08333070576190948, -0.348125159740448, -0.09171368181705475, -0.09852451086044312, -0.5057462453842163, 0.2654823660850525, 0.10868332535028458, -0.37852558493614197, -0.12666796147823334, -0.1337822824716568, -0.18688957393169403, 1.1941111087799072, 0.3760424256324768, 0.21984437108039856, 0.22302812337875366, -0.22353853285312653, -1.1239542961120605, 0.6503067016601562, 0.18730077147483826, 0.05306687206029892, -0.8435320258140564, 0.2798854410648346, 0.3260034918785095, -0.11193385720252991, 0.2708168923854828, -0.10050348192453384, 0.8159232139587402, -0.5234367847442627, -0.680482804775238, -0.29223984479904175, 0.41958096623420715, 0.7229635715484619, 1.0879924297332764, 0.1807544231414795, -0.465326189994812, -0.9011367559432983, 0.5644262433052063, -1.2322642803192139, -0.08532629907131195, 1.3602302074432373, 0.6863709688186646, 1.5947662591934204, -1.5751111507415771, -0.9180880188941956, 0.574115514755249, -0.055583782494068146, 0.38550886511802673, 0.8004748225212097, 0.009224208071827888, -0.02673451416194439, 0.2990119457244873, -0.19221371412277222, -0.1304648220539093, -0.6501814126968384, 0.2142970710992813, 0.05112231522798538, 0.7971874475479126, -0.8962085247039795, 0.849563717842102, -0.6886099576950073, 0.06147921830415726, 0.08371727168560028, -0.47633492946624756, 0.013942766934633255, 0.5146242380142212, -0.2144792526960373, 1.903415322303772, -0.8693971037864685, -0.9472066164016724, 0.16989430785179138, -1.0218989849090576, 0.5870518088340759, 0.3546561896800995, -0.49619337916374207, -0.2676297724246979, 0.14957775175571442, -0.5666429400444031, 1.02489173412323, -0.6898539066314697, -0.5849893093109131, -1.2127848863601685, -1.4451854228973389, 0.9738461971282959, 0.9096874594688416, 1.0077296495437622, -0.22537174820899963, 0.03820088878273964, 0.13025391101837158, -0.08228164166212082, -0.29023271799087524, 0.423575222492218, -0.13565801084041595, -0.2270747870206833, 0.09925075620412827, -1.9476937055587769, -0.25265663862228394, 0.19101901352405548, 0.2390020191669464, 0.012512763030827045, 0.7266431450843811, 0.8195861577987671, 1.4550570249557495, 0.09571398049592972, -0.30964425206184387, 0.0943063497543335, -0.7041123509407043, 0.5463906526565552, 0.856090784072876, -0.3038899004459381, -0.7617571949958801, -0.2707825005054474, -0.8039973378181458, 0.3740907907485962, -0.3646966218948364, -1.4660612344741821, 1.0388156175613403, 0.22693851590156555, 0.6903011798858643, 0.0548708550632, -0.3549013137817383, 0.6623106598854065, 0.17172963917255402, -0.26916924118995667, -1.2306557893753052, 0.7869227528572083, 0.43661361932754517, 0.2897043228149414, 0.4080413281917572, 0.9256974458694458, -0.0732736811041832, 0.3533158302307129, 0.3655758798122406, 0.7627233862876892, 0.6244168877601624, 0.313075453042984, 0.3876994848251343, -0.4741816818714142, 0.24821633100509644, -0.08068184554576874, -1.4023172855377197, -0.5491117835044861, 0.500394344329834, -0.1441572606563568, -0.9142904281616211, -0.7153770327568054, -0.26053276658058167, -0.3274611830711365, -0.5280057787895203, -0.303016722202301, 0.8256589770317078, 0.022441616281867027, -0.38779217004776, 0.015396837145090103, -0.390908420085907, 0.21827588975429535, -0.33591121435165405, 0.41844773292541504, 0.8474816679954529, -2.096083641052246, -0.2281646728515625, -0.00809661764651537, -1.0608603954315186, -0.7409272789955139, -0.7073086500167847, 0.5627982020378113, -0.8126484751701355, -1.3231780529022217, -1.0069375038146973, -0.4237821698188782, 1.1222596168518066, -0.434542179107666, 1.1520304679870605, 0.6385204792022705, -1.7981914281845093, 0.6249082684516907, -0.3629106283187866, -1.1686615943908691, -0.4256244897842407, -1.086061954498291, 0.37490326166152954, -0.3185631036758423, 0.11847055703401566, -0.5364798903465271, 0.672408401966095, -1.9681025743484497, -1.2371457815170288, -1.0294474363327026, -0.39334240555763245, 0.6621471643447876, 0.6150094866752625, -0.699198842048645, 2.213083267211914, 0.3635847568511963, 0.03689894452691078, 0.51919025182724, 0.4505397379398346, -0.19790449738502502, 0.19036409258842468, -0.05005311220884323, 0.9854609966278076, 0.8376280665397644, 0.5936527848243713, 0.302194207906723, 0.9720754027366638, 0.3642639219760895, -0.260974258184433, -0.5202882289886475, -0.2645062208175659, -0.12308533489704132, 1.0067505836486816, -0.47209006547927856, -0.8243107795715332, -0.4099988639354706, 0.197118878364563, -1.2200393676757812, -0.29320472478866577, 0.26190197467803955, -0.5074003338813782, 0.22311994433403015, -0.23383967578411102, 0.12803760170936584, -0.46403056383132935, 0.783579409122467, 0.08380821347236633, -0.17978709936141968, -0.44670674204826355, 0.7097876667976379, 0.11974149197340012, -1.125821828842163, 0.41411536931991577, 0.49385055899620056, -0.2858787775039673, -0.435291588306427, -0.25365403294563293, 1.0354466438293457, 0.242187038064003, -0.31683284044265747, 1.3419044017791748, 0.39558809995651245, 0.026815146207809448, -0.1930892914533615, 0.594946563243866, 0.6155312657356262, 0.7459695339202881, 0.02748921513557434, 0.14824801683425903, -0.9520297646522522, 1.3178194761276245, -0.05967262387275696, 0.3985149562358856, -0.567038893699646, 0.19630679488182068, -0.7724217772483826, 0.550002932548523, 0.7246047258377075, -1.883915662765503, -0.28574109077453613, 0.9838868975639343, -0.04134387895464897, -0.22357122600078583, -0.15857218205928802, 1.4656673669815063, -0.6783026456832886, -0.2727908790111542, 0.5131208896636963, 0.01670638471841812, -0.833112359046936, 0.5311478972434998, 0.3021025061607361, 0.03947567939758301, -0.41755884885787964, -0.47329598665237427, -1.2935523986816406, 0.06680058687925339, -0.28392133116722107, -0.32199564576148987, 0.8985700011253357, -0.754708468914032, -1.157322645187378, 0.3085322678089142, 0.4902791976928711, -1.04570472240448, 0.415479451417923, -0.2558830976486206, -0.13294164836406708, -0.3814654052257538, 0.5428376197814941, -1.0232514142990112, 1.2385926246643066, 0.25488343834877014, 0.478882372379303, -0.7464762330055237, -0.3585323691368103, 0.2655653655529022, 0.3005198538303375, 0.08439383655786514, -0.4417092204093933, 1.4086132049560547, -0.3107270300388336, -1.0150545835494995, 0.43514445424079895, 0.14545349776744843, -0.26906463503837585, 0.41448974609375, -1.0630682706832886, 0.0024972744286060333, 0.40691304206848145, 1.1610480546951294, -0.502266526222229, -1.0862034559249878, -0.9459079504013062, -0.1128949373960495, -0.5569848418235779, 0.8059195280075073, 0.0885547325015068, 0.3906518220901489, -0.04563690721988678, -0.3571245074272156, -0.04053832218050957, 0.08333522826433182, 0.25686508417129517, -0.043954815715551376, 0.5142253041267395, 0.624173104763031, -0.27651020884513855, -0.2516382038593292, -0.5830267667770386, 0.004406759515404701, -0.5939382910728455, 0.02211647294461727, 0.21315138041973114, -0.4615631699562073, -0.9036324620246887, -0.7770985960960388, 0.8610363602638245, 0.5282672047615051, -0.06500931829214096, -0.16598257422447205, 0.601161777973175, -0.7464743852615356, 0.7074688076972961, -0.13892638683319092, 0.18787281215190887, 0.4548701345920563, 0.23814068734645844, 1.333891749382019, 0.8501226305961609, 0.4345804750919342, -0.6333063244819641, 0.2256319224834442, -0.7353410720825195, -0.3133803606033325, -0.4921853244304657, -0.38040077686309814, -0.43821388483047485], [0.380515456199646, 0.8804630637168884, -1.4909257888793945, -0.6855615973472595, 0.9061470627784729, -0.7268432974815369, 1.2823817729949951, 0.21898317337036133, 0.2627768814563751, -0.2525000274181366, -1.1043661832809448, -0.21538974344730377, 0.5861181616783142, 0.7929779887199402, 0.502707302570343, 0.9689315557479858, 0.9376448392868042, -0.8000574707984924, 1.054359793663025, 1.4539192914962769, 0.35133615136146545, -0.4979341924190521, -0.0013332185335457325, -0.18221430480480194, -0.23708690702915192, -0.45113417506217957, -0.7293152213096619, -0.19685649871826172, -0.9820813536643982, -1.0188915729522705, 1.0389575958251953, -0.5845215320587158, 0.2930868864059448, -0.5682390332221985, -1.3696377277374268, -0.2220178246498108, 1.828224539756775, 0.8636540174484253, 0.7139690518379211, 0.10388868302106857, 1.810598611831665, -0.17397554218769073, -0.5505977272987366, -2.340137004852295, 0.4043519198894501, -0.10110463947057724, 1.620195746421814, -1.2682005167007446, 0.14595988392829895, -0.6567569375038147, 0.22148169577121735, -0.44075214862823486, -0.010679122060537338, 1.0661025047302246, 0.7114951014518738, -1.0142728090286255, 1.153212547302246, 0.38948750495910645, 0.6360083222389221, -0.8896535038948059, 0.27577340602874756, -0.07662127166986465, -0.7466456890106201, 1.175345540046692, -0.6793477535247803, -0.370024710893631, 0.4205104112625122, 0.46266865730285645, -0.22402392327785492, 0.038834989070892334, 0.2243669033050537, 0.9807053804397583, -0.2892197072505951, 0.8385677933692932, -1.5426074266433716, 0.3242179751396179, 0.6891577839851379, 0.6984122395515442, 0.5239061713218689, 0.558983325958252, -0.8169179558753967, -0.12844742834568024, 0.4177889823913574, 0.28155630826950073, 0.19998124241828918, 0.5990858674049377, 1.0669690370559692, -0.5544193387031555, -0.1349601447582245, 1.9012364149093628, 0.35734620690345764, -0.31525397300720215, 0.7896724343299866, 0.08556165546178818, -0.36465537548065186, -0.505314290523529, 0.6121199131011963, 0.10121165961027145, -1.19119131565094, -0.2673873007297516, -0.6668723225593567, -0.9460668563842773, -0.0007552066817879677, -0.0841992124915123, -0.06960447877645493, 1.2058618068695068, 0.6953808665275574, -0.34107038378715515, -0.7915000319480896, -0.06913016736507416, -0.19290447235107422, -0.18011866509914398, -0.33414366841316223, -0.4546630382537842, -0.5267885327339172, 0.5305677652359009, 1.6493406295776367, -0.869827151298523, 0.27036532759666443, 0.7425394058227539, -0.1404602825641632, -0.7384419441223145, -0.06280124187469482, 0.32236871123313904, 0.3593987226486206, -0.32623758912086487, -1.1682515144348145, -0.2516798973083496, 0.7485212087631226, 0.010609176009893417, 0.3623979389667511, 0.1464129090309143, -0.034834131598472595, 1.097908854484558, -0.7403415441513062, 0.8699283599853516, -0.2796073257923126, -0.7846060395240784, -0.26970601081848145, -0.6058712005615234, 0.6073203086853027, 0.0013697431422770023, -0.4059005081653595, -0.018668660894036293, 0.1448889672756195, -0.5691009163856506, 0.3855118751525879, -0.10874725878238678, -0.8647156953811646, 0.3301503658294678, -0.6121878623962402, -0.3887997567653656, 0.0713413879275322, 0.16158710420131683, 0.5900927186012268, -0.23168794810771942, 0.4801318943500519, 0.18833917379379272, 0.3329924941062927, 0.3231028616428375, 0.5452026724815369, -0.35682782530784607, -0.8622092604637146, 0.6241135597229004, 0.6633266806602478, -0.5281600952148438, 0.06118909269571304, 0.9574565291404724, 0.4730546772480011, 0.6407048106193542, -0.02396230213344097, -0.4106181859970093, -0.32198652625083923, 0.49778440594673157, 0.3420783281326294, -0.18301276862621307, 1.2500168085098267, -0.7153200507164001, -1.0957117080688477, -0.9634302854537964, 0.9227604866027832, 0.5852691531181335, 0.8322737812995911, -0.1464492231607437, 0.5185145735740662, -0.3831997513771057, 0.6353046298027039, -0.013508561998605728, -0.4222088158130646, -0.5947442650794983, -0.3205353617668152, -0.24232681095600128, -0.42575013637542725, 0.4284968376159668, -0.3998948037624359, -0.8261156678199768, 0.5683667063713074, -1.1815776824951172, -1.1405763626098633, -0.18585845828056335, -0.24012848734855652, -0.3439912796020508, -0.38472771644592285, 0.521886944770813, -0.43908968567848206, 0.5807127356529236, -1.0579438209533691, 0.30181798338890076, -1.1726102828979492, -0.0839628204703331, 1.2295342683792114, 0.33507728576660156, -0.5610499978065491, 0.30615147948265076, -0.24707244336605072, -0.9782696962356567, 0.7350807785987854, 1.1426507234573364, -0.44268056750297546, 0.09705371409654617, -0.3358612358570099, 0.12507212162017822, 0.8843255043029785, 0.3870847225189209, 0.8814881443977356, -0.5246861577033997, -0.3227291405200958, -1.2732045650482178, -0.7827884554862976, -0.3084464967250824, 0.06648648530244827, -0.8350538015365601, 0.4869662821292877, 0.1055218055844307, -0.7360489368438721, 0.4449334740638733, -0.08869795501232147, 0.8745348453521729, 0.46119824051856995, 1.0279731750488281, 0.5121182203292847, 0.6251653432846069, -0.008415904827415943, -0.33679598569869995, -0.39728716015815735, 0.5832586884498596, 0.993827223777771, -0.491152286529541, 1.0124990940093994, 1.2139900922775269, 0.9752500653266907, -0.3843807578086853, 0.2985367476940155, -0.6568841338157654, -0.27916619181632996, -1.0253945589065552, -0.1877128630876541, 0.5564565658569336, -0.3529767394065857, 1.9145365953445435, 0.10897457599639893, -1.0663623809814453, -0.3109776973724365, 0.7690114974975586, -0.5470817685127258, -0.6306325197219849, -0.8592293858528137, -0.9052028059959412, -0.012885666452348232, 0.19559191167354584, 0.11656305193901062, 0.33720386028289795, -0.00418481370434165, 0.9084384441375732, -0.2804130017757416, -0.8068053722381592, -0.8207371234893799, -0.5410204529762268, -0.3339082896709442, 1.2243402004241943, 0.22421300411224365, -0.6776334643363953, -0.7124641537666321, 0.5848150849342346, 0.29638180136680603, 0.38150742650032043, -0.7163451910018921, -0.1955324113368988, -0.05124673992395401, 0.5580536723136902, -0.17403288185596466, 0.27072590589523315, -0.3838023245334625, -0.2496391385793686, 0.07920364290475845, 0.46341267228126526, 1.218241810798645, -0.9877119064331055, -1.1007274389266968, -0.07891333848237991, -0.08397480845451355, 1.6293941736221313, 0.37559717893600464, 1.0169485807418823, 0.7747072577476501, 0.14352552592754364, -0.5358700156211853, -0.17308825254440308, -0.7152697443962097, -0.46817710995674133, -0.3110097050666809, -0.6445677876472473, -0.06455469876527786, -0.06762337684631348, -0.3678143322467804, 0.09005807340145111, -0.11847279220819473, 0.014550640247762203, 0.8147478699684143, -0.3264904320240021, -0.45383980870246887, 0.15668520331382751, 0.053137823939323425, -0.9461759924888611, 0.27675795555114746, 1.169603705406189, -0.7974447011947632, -0.5182260870933533, 0.1561117321252823, 0.32179075479507446, -0.09441564232110977, 0.2986644208431244, 0.5698422193527222, -1.3831018209457397, -0.9465277791023254, -0.45971086621284485, 1.4294030666351318, -0.5291990041732788, 0.4961625337600708, 0.19985730946063995, -0.09663521498441696, 0.7932934761047363, 0.4320952594280243, -0.4880329966545105, 1.0107359886169434, 0.0920543298125267, -0.24329113960266113, -0.41172415018081665, 0.4526417851448059, 0.606206476688385, -0.26000142097473145, -0.26160237193107605, -0.33627477288246155, -0.6361537575721741, 0.20060399174690247, 0.17523443698883057, -0.2838890254497528, 0.939533531665802, 0.15049636363983154, 0.4345155954360962, 1.2349021434783936, -0.7701282501220703, 0.5982180237770081, -1.4709185361862183, 0.6453903913497925, 0.8395342826843262, 1.3864845037460327, -0.011748791672289371, -0.06423340737819672, 0.42093583941459656, 0.26443782448768616, -0.31291311979293823, -0.06800166517496109, 1.3633674383163452, -0.17536306381225586, 0.8445192575454712, -0.41747304797172546, 0.2562689781188965, 0.3817981779575348, -0.8054807186126709, 0.4828464984893799, 0.32449963688850403, -1.3870880603790283, -1.0882009267807007, 0.7623897194862366, 0.11332903802394867, -0.19427365064620972, -0.3356446921825409, -0.1729428470134735, 0.7293646335601807, 0.09503158181905746, 0.0398421473801136, -0.7988200187683105, -0.3145158290863037, 0.10507123172283173, -0.5993289351463318, -0.3213527500629425, -0.22124381363391876, 0.09124349802732468, 0.6250158548355103, -1.114362359046936, 0.3836635947227478, -0.6768244504928589, 0.26747316122055054, 0.4519061744213104, -1.0416250228881836, 0.27780681848526, -0.6481860280036926, -0.021282827481627464, -0.06357023119926453, -0.5949326753616333, 1.1796358823776245, -0.24407628178596497, -0.26227614283561707, -0.2120063155889511, -0.01277270819991827, -0.1208273321390152, -0.6291250586509705, -0.2079911231994629, -0.12660180032253265, -0.6410158276557922, 0.010513583198189735, 0.3330850899219513, 0.4793277084827423, 1.9251688718795776, 0.05010282248258591, 0.2544618546962738, -0.1428215503692627, 0.3376884460449219, -1.3067963123321533, 0.29155436158180237, 0.2890368402004242, 0.40345874428749084, -0.07342074811458588, -0.24257011711597443, 0.30945390462875366, -0.4294366240501404, 0.15785279870033264, -0.7935309410095215, 0.2719648778438568, -0.32791948318481445, 0.10370580852031708, 0.26346078515052795, 0.5525121092796326, 1.0425935983657837, 0.47702136635780334, -0.2015419453382492, -0.691848635673523, -0.7813102006912231, -0.15673498809337616, -1.0384663343429565, 0.6745771169662476, 0.8027405142784119, 0.14303939044475555, 1.45142662525177, -1.4439972639083862, -0.44035524129867554, 0.4207761585712433, 0.4754331409931183, 0.4793415665626526, 0.8878300189971924, -0.07416758686304092, 0.6468927264213562, 0.8814554214477539, 0.3243592381477356, -0.4149910807609558, 0.16816464066505432, 0.8173760771751404, -0.11745614558458328, 0.4950670897960663, -0.6254593729972839, 0.3322930634021759, -1.1486597061157227, 0.28271108865737915, 0.19735582172870636, -0.23713542520999908, 0.2130281627178192, 0.3350238800048828, 0.9529521465301514, 1.4990915060043335, -0.8236428499221802, -0.8511589765548706, 0.5840552449226379, -0.9817056655883789, -0.054718952625989914, -1.0795010328292847, -0.43009814620018005, -0.7449175715446472, -0.6532590985298157, -0.32353565096855164, 0.6102994084358215, -0.26191776990890503, 0.12904921174049377, -0.5604975819587708, -0.6968564987182617, 0.856582522392273, 0.45664918422698975, 1.3425110578536987, 0.6427993178367615, 0.3436552882194519, 0.2949742078781128, 1.0623104572296143, -0.7546831369400024, -0.24014966189861298, 0.19517642259597778, 0.004160200245678425, -0.417176216840744, -0.656920850276947, -1.0542649030685425, 0.42655158042907715, 0.752954363822937, -0.31986016035079956, -0.18901130557060242, 1.0564343929290771, 1.1290156841278076, -0.5084846019744873, -0.29130348563194275, 0.28874167799949646, -0.6897023320198059, 0.14555616676807404, -0.12736818194389343, -0.2547672390937805, -0.32517534494400024, -0.5586408972740173, -0.9736126661300659, 1.0599088668823242, 0.21176068484783173, -0.6232684254646301, 0.5288231372833252, 0.10362985730171204, 1.1036792993545532, 0.7774884700775146, -0.7943432927131653, 0.6767989993095398, -0.41107168793678284, -0.0712549090385437, -0.9401594996452332, 0.4457865357398987, -0.2342931479215622, 0.15965934097766876, -0.03236541897058487, 0.13908639550209045, 0.6062063574790955, -0.045884065330028534, -0.1813979297876358, 0.14268898963928223, 0.9427304863929749, 0.3307819962501526, -0.2715981900691986, -0.3622024357318878, 0.06637313216924667, -0.5412538647651672, -0.7742016911506653, -0.9612538814544678, 1.0783880949020386, 0.2844058871269226, 0.025058791041374207, -0.40080526471138, 0.368123859167099, -1.0514799356460571, -0.4336882531642914, -0.8126972913742065, 0.4282751977443695, -0.79441899061203, 0.08440425992012024, -0.7950516939163208, -0.15237665176391602, -0.5641865134239197, -0.34908974170684814, 0.5007704496383667, 0.3170030415058136, -1.7322074174880981, 0.4517403841018677, 0.11776524037122726, -0.6082342267036438, -0.2900397777557373, -0.6543685793876648, 0.1107943058013916, -1.3670426607131958, -0.9732155799865723, -1.3689405918121338, 0.09624088555574417, 0.7370638251304626, -0.5470309853553772, 0.6268671154975891, 1.2096343040466309, -1.11283278465271, 0.5687495470046997, -0.5508925914764404, -0.7967149019241333, -0.22969818115234375, -0.6286446452140808, 0.852053165435791, 0.3979422152042389, 0.6688953638076782, -0.007479977793991566, 0.762019693851471, -1.034530758857727, -0.9425898790359497, -0.7108405828475952, -0.7912149429321289, 1.232108235359192, 0.8550269603729248, -0.6128141283988953, 1.8068584203720093, 0.8022470474243164, -0.3943129777908325, -0.1758069097995758, 0.16587455570697784, -1.265580415725708, 0.4651687443256378, 0.6143988370895386, 0.13684237003326416, 0.4038436710834503, 1.297255039215088, 0.4725302457809448, 0.4025717079639435, 0.512048602104187, 0.763553261756897, 0.1437598615884781, -0.2201586812734604, -0.15290409326553345, 0.38759511709213257, -0.9897051453590393, -0.729276716709137, 0.1391787976026535, -0.5387192964553833, -1.0969864130020142, 0.5278986096382141, 0.372945636510849, -0.7993736267089844, 0.157024547457695, -0.796604335308075, 0.7295801639556885, -0.737803041934967, 0.717494785785675, 0.15721778571605682, -0.40380388498306274, -0.3222275376319885, 0.6991022229194641, 0.12866665422916412, -1.706404209136963, 0.46125537157058716, -0.025702357292175293, -0.6242182850837708, -0.015784963965415955, 0.5879354476928711, -0.2723785638809204, 0.36959192156791687, -0.6058239340782166, 1.1473171710968018, 1.730825662612915, -0.6526924967765808, -0.4145863950252533, 0.4341963231563568, 0.4252454340457916, 0.3611930310726166, -0.06805938482284546, -0.6874803304672241, -1.026660442352295, 1.2459497451782227, 0.4818025529384613, 0.2424306571483612, -0.6674546599388123, 0.010486011393368244, 0.036629870533943176, 0.27340421080589294, 1.235921859741211, -1.1624847650527954, -0.373965322971344, 0.8974652886390686, 0.21238337457180023, 0.18683011829853058, 0.863360583782196, 1.0079559087753296, 0.299417108297348, -0.5423943400382996, 0.15514689683914185, 0.9038910269737244, -0.6228816509246826, 0.5174164175987244, 0.4764711260795593, 0.023560473695397377, -0.0846969410777092, -0.949072003364563, -1.3680810928344727, 0.027259964495897293, -0.09300407767295837, -0.5861075520515442, 0.35085752606391907, -1.3860527276992798, -0.42122820019721985, 0.20628497004508972, 0.12633836269378662, -0.5107364058494568, -0.9291707873344421, 0.044725947082042694, -0.5594902634620667, 0.1427750438451767, 0.6296548843383789, -0.007627992425113916, 1.1292445659637451, -0.4531199336051941, -0.33722248673439026, -1.4888266324996948, -0.5820279121398926, 0.1420775055885315, 0.17508697509765625, -0.4429945945739746, 0.062009476125240326, 0.834658145904541, -0.03644571080803871, -0.472348153591156, -0.06414664536714554, -0.2567155659198761, -0.09425817430019379, -0.3805507719516754, -0.9785142540931702, 0.12304040789604187, 0.35453346371650696, 0.2157105952501297, 0.18181227147579193, -0.8870770335197449, -1.2922558784484863, 0.2929213345050812, -0.34977513551712036, 0.01307774893939495, -0.5650293231010437, 0.5785147547721863, 0.6212148070335388, -0.053207483142614365, -0.28636232018470764, -0.6859336495399475, 0.435686320066452, 0.3359244763851166, 0.26862961053848267, 0.14893804490566254, -0.046275749802589417, -0.5079648494720459, -1.185544490814209, 0.3566269278526306, -0.39490294456481934, -0.6293763518333435, 0.228080153465271, -1.495822548866272, -0.7986130118370056, -0.8882039785385132, 0.014116769656538963, 0.9018784761428833, -0.06460661441087723, -0.09510685503482819, -0.2892525792121887, -1.1246072053909302, 0.4533941149711609, 0.2452293187379837, -0.03403860330581665, 0.5063837766647339, 1.4682809114456177, 1.7461470365524292, 0.8350427746772766, 0.19246292114257812, -0.13674624264240265, 0.3460860848426819, -0.4961531460285187, -0.325196772813797, -0.9871131777763367, 0.15585869550704956, -0.40213626623153687], [0.6463314890861511, 2.217033863067627, -1.9859415292739868, -0.8176897764205933, 0.8060814738273621, 0.1432967633008957, 2.0467770099639893, -0.03600826486945152, 0.3088098466396332, 0.2834240794181824, -0.5967426300048828, -0.3326491415500641, 1.704366683959961, 1.1165496110916138, 0.2297755628824234, 0.5368732810020447, 0.7432666420936584, -0.15761835873126984, 1.7061123847961426, 1.266566276550293, -0.6787086129188538, -0.20638218522071838, -0.3044768273830414, 0.13159514963626862, 0.1985756754875183, 0.44229552149772644, -0.8708475828170776, -0.07677987962961197, -1.0285520553588867, -1.229278802871704, 0.5060560703277588, -0.7436637878417969, 0.35495415329933167, 0.2435232400894165, -0.8678478598594666, -0.34761419892311096, 1.6437677145004272, 1.7919447422027588, 1.129785418510437, 0.32698938250541687, 2.466961145401001, 0.1861858367919922, -0.19483253359794617, -1.0848863124847412, 0.45992955565452576, 1.073733925819397, 0.07313542813062668, -1.6277852058410645, 0.2179228663444519, -0.09478945285081863, 0.3802812993526459, -0.17953671514987946, 1.226615071296692, 0.9613892436027527, 0.6265912652015686, 0.6035524606704712, 1.0501114130020142, 0.8942671418190002, 1.237517237663269, 0.45843595266342163, 0.5846251845359802, 0.2566106617450714, 0.2535499930381775, 0.30404582619667053, 0.7757208347320557, -0.49613383412361145, 0.4726012647151947, 0.05451377481222153, 0.293274462223053, -0.044943612068891525, 0.12178964167833328, -0.28162336349487305, -0.5971421599388123, 0.47316259145736694, -1.4078806638717651, 0.6970593929290771, 1.0756813287734985, 0.9960713386535645, 0.11286008358001709, 0.23660925030708313, -1.0638138055801392, -0.16980883479118347, 0.3992581069469452, -0.3818866014480591, 0.5558611154556274, -0.2806702256202698, 0.1448182314634323, -0.29741954803466797, -0.7296959757804871, 2.2687900066375732, 0.20745787024497986, -0.16552069783210754, -0.20736010372638702, -0.1234801709651947, -0.24552439153194427, -0.3353898525238037, 0.064927838742733, -0.2618619501590729, -0.9144207835197449, -0.4662512540817261, -0.4420839846134186, -0.31961292028427124, 0.07942222058773041, 0.6882199048995972, 0.18864946067333221, 2.1417574882507324, -0.026336882263422012, -0.13240104913711548, -1.497281789779663, -0.2437809258699417, -0.4808898866176605, -0.26208460330963135, -1.0660439729690552, -0.6731483340263367, -0.7221249341964722, 0.6743668913841248, 1.3331880569458008, -0.13372120261192322, -0.014708630740642548, 1.1166611909866333, -0.45739543437957764, -0.13213318586349487, 0.30545657873153687, 0.034869011491537094, 0.5476132035255432, 0.7756628394126892, -0.6168256998062134, -0.09308545291423798, 0.38129329681396484, -0.12274198234081268, 0.6607900857925415, 0.21133574843406677, 0.14719276130199432, 0.4941917955875397, -0.7286136150360107, 0.8751069903373718, -0.06262173503637314, -0.676918089389801, -0.06732091307640076, -0.6190927028656006, 0.1686353236436844, -1.0453755855560303, -0.9027175903320312, -0.9237833023071289, -0.356152206659317, -0.9177513122558594, 0.814233124256134, 0.09549464285373688, -0.521445095539093, 0.29452234506607056, -0.6016185283660889, -0.06829048693180084, -0.06276160478591919, 0.25779709219932556, 0.1554265171289444, -0.09090617299079895, 0.5752056241035461, 0.7717650532722473, 0.753940224647522, 0.5608004927635193, 0.38833168148994446, 0.329290509223938, -0.8262737393379211, -0.11822310090065002, -0.2382439225912094, -0.37630775570869446, 0.6876444816589355, -0.10352355986833572, 0.07243753969669342, 0.799547553062439, -0.5661849975585938, -0.34628981351852417, -0.16331689059734344, 0.77735435962677, 0.4399683177471161, -1.0162278413772583, 1.6659643650054932, -0.5927095413208008, -1.1586556434631348, -1.8158483505249023, -0.06059974804520607, -0.4050838053226471, 0.44067713618278503, -0.1315373182296753, 0.03229500353336334, -0.804429829120636, -0.1285933405160904, -0.05138123407959938, -0.4459565281867981, -0.7494386434555054, -0.5848419070243835, 0.3603503406047821, -1.8247826099395752, 0.5744513869285583, -0.24428382515907288, -0.6672115325927734, 0.7235956192016602, -0.7775393128395081, -1.6008366346359253, 0.632860004901886, 0.4525028169155121, -0.16047652065753937, -0.8395864963531494, 0.5478984713554382, -0.6621560454368591, 1.0985876321792603, -1.1848607063293457, 0.5598607063293457, -0.6381790637969971, 0.24412588775157928, 0.6260877251625061, 0.9449611306190491, -0.5170143246650696, 0.7884307503700256, 0.1546315997838974, -0.9928730130195618, 0.24625420570373535, 0.061031829565763474, -0.2155001163482666, 0.2823575735092163, 0.19468113780021667, -0.40525543689727783, 0.2570341229438782, 0.4931272566318512, 0.3742339015007019, 0.11057081073522568, -1.1689672470092773, -0.271377295255661, -0.8052434325218201, -0.12042688578367233, -0.601125180721283, -1.200927972793579, 1.0380345582962036, 0.8484737277030945, -0.839139461517334, 1.0032784938812256, -0.21813753247261047, -0.15360873937606812, 0.5017044544219971, 1.2728040218353271, 0.5716321468353271, -0.015748921781778336, -0.38700851798057556, -0.9083914160728455, -0.580584704875946, 0.46064674854278564, 0.5163466930389404, -0.4190610349178314, 0.8905637264251709, 1.1212167739868164, 0.6458556056022644, -0.3932957947254181, 0.13458389043807983, 0.2305212765932083, 0.16878214478492737, -1.2335708141326904, -0.3400450646877289, -0.20226150751113892, -0.06876112520694733, 1.8642133474349976, 0.6509633660316467, -1.7395864725112915, -0.22159022092819214, -0.5100565552711487, -0.20082315802574158, -0.44005778431892395, -0.7066136002540588, -0.503054678440094, 0.1454107165336609, 0.8182635307312012, -0.008511872962117195, 0.48372605443000793, -0.6621459126472473, 0.2573443651199341, -0.6828444600105286, -0.36615321040153503, -0.30109158158302307, 0.1340627670288086, -0.241446390748024, 1.1526457071304321, 0.6827200651168823, -1.3034453392028809, -1.2397664785385132, -0.05005471408367157, 0.6549842953681946, 0.5785756707191467, -0.3864629566669464, 1.1216105222702026, 0.4470759928226471, 0.03778820484876633, 0.6332193613052368, 0.596998929977417, -0.18368354439735413, -0.4362822473049164, -0.7511812448501587, 1.021031141281128, 0.6720985770225525, -1.7194703817367554, -0.47715112566947937, -0.6021714806556702, 0.5470523238182068, 1.6248024702072144, 0.9447598457336426, 0.6848503947257996, -0.21505597233772278, 0.42972350120544434, -0.48238101601600647, -0.15394073724746704, -0.4648478925228119, -0.5898407697677612, 0.30542248487472534, -0.6148120760917664, -0.24196399748325348, 0.117125004529953, -0.3090571165084839, 0.10054240375757217, -0.43936899304389954, 0.3887973427772522, 1.1210694313049316, -0.4214249551296234, -0.9190340042114258, -0.9596695303916931, 0.11099953949451447, -1.6177698373794556, 0.7261480689048767, 0.33456388115882874, -0.7093393206596375, -0.3602796494960785, 0.12339404970407486, -0.4532383680343628, 1.0824036598205566, -0.13558568060398102, 0.12245312333106995, -0.6623136401176453, -1.0126051902770996, -0.06393910199403763, 1.0852603912353516, 0.02700675278902054, 0.03901980072259903, -0.5233587622642517, 0.5678070783615112, 0.5167310833930969, 0.11896359920501709, -0.7175685167312622, 0.7237058877944946, -0.08873584866523743, -0.7045019865036011, -0.34841838479042053, 0.27270832657814026, 0.3916851282119751, -0.1572946459054947, -0.06996288150548935, 0.40070173144340515, -0.40387266874313354, -0.039145294576883316, 0.5931557416915894, 0.40859538316726685, 0.7484725117683411, 0.08354688435792923, -0.13115759193897247, 1.0985316038131714, 0.2415717989206314, 0.2504545748233795, -1.868651270866394, 0.9924039244651794, 0.8310431838035583, 0.10767021030187607, 0.757088303565979, -0.31673845648765564, 0.26177892088890076, 0.016235314309597015, -0.2130182832479477, -0.2936716079711914, 1.0609238147735596, 0.19879774749279022, 0.2559848427772522, -0.5425148010253906, 0.2552800178527832, -0.043569013476371765, -0.5972480177879333, 0.014562204480171204, 0.7872418761253357, -0.7768417000770569, -0.59972083568573, 0.5281020402908325, 0.6639194488525391, -0.7561144232749939, -0.7868679165840149, 0.4703467786312103, 0.454534113407135, 1.0250616073608398, 0.21543702483177185, -0.18067598342895508, -0.24449659883975983, -0.48285624384880066, -1.1783932447433472, -0.8626779913902283, 0.23471952974796295, -0.3608139455318451, 0.8430357575416565, -1.2309625148773193, -0.7108620405197144, -0.8301861882209778, -0.23631367087364197, 0.17127902805805206, 0.05893121659755707, 0.2817160487174988, -0.36000093817710876, 0.47506287693977356, -0.2953501343727112, 0.1864432692527771, 0.7424114942550659, 0.30117589235305786, -0.23107144236564636, -0.10864199697971344, 0.3944902718067169, -0.4908546805381775, -1.1061880588531494, -0.42229005694389343, 0.045183561742305756, -0.4087408185005188, 0.4363477826118469, -0.35837045311927795, -0.052891191095113754, 1.288167953491211, 0.9907382130622864, 0.4440658986568451, 0.8650945425033569, -0.6745599508285522, -0.21271875500679016, 0.3691418170928955, 0.6729266047477722, -0.1711277812719345, -0.2836666405200958, -0.31279176473617554, 0.6415077447891235, -0.37355443835258484, 0.7815470099449158, 0.3278253674507141, 1.1394346952438354, 0.2684757113456726, 0.13906338810920715, 0.244298055768013, 0.06638690829277039, 0.6500811576843262, 1.2748961448669434, 0.10011375695466995, -0.3679466247558594, -1.164178729057312, 0.8933787941932678, -1.009009838104248, 0.15666474401950836, 0.8847855925559998, 0.5075422525405884, 0.48941099643707275, -1.7044190168380737, -0.8095146417617798, 1.1034772396087646, 0.6624854207038879, 0.966373085975647, 0.5417951345443726, 0.5596033334732056, -0.9665563106536865, 0.3094058334827423, 0.6618585586547852, -0.22156426310539246, 0.4965750277042389, 0.13722649216651917, -0.6817378997802734, 0.6191042065620422, -0.3574286699295044, 0.5435844659805298, -0.7026324272155762, -0.4687332808971405, -0.3491796553134918, -1.105125069618225, 0.04446062818169594, 0.37529730796813965, -0.12143371254205704, 0.6056402921676636, -0.8761627078056335, -0.7470559477806091, 0.46278366446495056, -0.24469560384750366, 0.12282456457614899, 0.20930486917495728, -0.5739787220954895, -1.1989829540252686, -1.2387027740478516, -0.6431583166122437, 0.9990772008895874, -1.0371171236038208, -0.08042097091674805, -0.22879736125469208, -1.2625707387924194, -0.23140749335289001, 0.2844516634941101, 0.9807982444763184, 1.2365617752075195, 0.23250362277030945, 0.5897045135498047, 0.13663247227668762, -0.7470679879188538, 0.4325753152370453, 0.9413686990737915, -0.18042650818824768, -0.551015317440033, -1.800924301147461, -0.3551774322986603, 0.9953967332839966, 0.49371206760406494, -0.5375394225120544, 0.5245325565338135, 1.3226126432418823, 1.4217760562896729, 0.04048401489853859, -0.9882636070251465, 0.17182782292366028, -0.7251960039138794, -0.04103038087487221, 0.9357579350471497, -0.4030340313911438, -1.0485578775405884, -0.5748511552810669, -0.6548388004302979, 1.5627117156982422, -0.009392746724188328, -1.6595138311386108, 0.856390118598938, 0.8917071223258972, 0.017647290602326393, 0.8516604900360107, -1.1831207275390625, -0.031415536999702454, 0.20909656584262848, -0.4564570486545563, -1.2539441585540771, -0.23897022008895874, 0.2686026096343994, 0.8155367970466614, -0.23586808145046234, 0.30455929040908813, 0.24588948488235474, 0.740100085735321, 0.933753252029419, 0.2008397877216339, 0.1429673433303833, 0.7381823062896729, 1.0414724349975586, -1.128177285194397, -0.008953837677836418, -1.0853757858276367, -0.3692270517349243, -0.3001747727394104, 0.9439622759819031, 0.3815084397792816, -0.9423444867134094, -0.15140952169895172, -0.44149935245513916, -0.2170800268650055, -0.09654160588979721, 0.35368797183036804, 0.8195263147354126, 0.061877232044935226, -0.5530726313591003, 0.037726499140262604, -0.06361953169107437, -0.4644519090652466, -0.1351979821920395, -0.1916673481464386, 0.574018657207489, -1.2713842391967773, -0.36292558908462524, 0.3932623863220215, -0.11107853800058365, 0.15056072175502777, -1.263227939605713, -0.686356246471405, -1.5352368354797363, -1.4008805751800537, -1.013907551765442, -0.11253616213798523, 0.8739627599716187, -0.4627775549888611, 0.3319421410560608, 0.41509106755256653, -1.9169350862503052, 0.4908704161643982, -0.1254025250673294, -1.6762933731079102, -0.06915536522865295, -1.07826566696167, 0.9314826726913452, -0.2710459232330322, 0.10596346110105515, -0.2658955454826355, 0.847135603427887, -1.2168883085250854, -0.8796564340591431, -0.6278655529022217, -0.0544106587767601, 0.857149064540863, 1.0482587814331055, -0.8008912205696106, 1.5990229845046997, 0.59039705991745, -0.1803482472896576, -0.22434104979038239, -0.052649207413196564, -0.7959849238395691, 0.17856289446353912, 0.8464606404304504, -0.37453028559684753, 0.6721672415733337, 0.4283737540245056, 0.18171414732933044, 0.8224841952323914, -0.31511786580085754, 0.15771454572677612, -0.9977979063987732, -0.7377743721008301, -0.13355191051959991, 0.14140769839286804, -1.344067096710205, -0.42971113324165344, -0.25185465812683105, -0.5995156764984131, -0.2940041124820709, 0.4428596496582031, 0.6902731657028198, -0.7317230701446533, 0.14338289201259613, -0.18510869145393372, 0.1693216860294342, -0.5878351926803589, 0.06985463947057724, -0.0704444870352745, -0.25889289379119873, 0.525638997554779, 0.38954058289527893, -0.19230397045612335, -1.0344003438949585, 1.1649433374404907, 0.3592066764831543, -0.18216708302497864, -1.238384485244751, 0.35061895847320557, 1.0082550048828125, -0.6258347630500793, -0.3242955505847931, 1.445150375366211, 1.2838953733444214, -0.24087008833885193, -0.41072744131088257, 0.46798789501190186, -0.6222303509712219, 0.44950228929519653, -0.44202670454978943, 0.2051253318786621, -1.0598137378692627, 1.0662342309951782, 0.7725053429603577, 0.47198033332824707, -0.9145038723945618, -0.2684936821460724, -0.9847790598869324, 0.10958503931760788, 0.40840965509414673, -1.2036606073379517, -0.1391471028327942, 1.6168004274368286, -0.0802844986319542, 0.019691279157996178, 0.11022749543190002, 0.6161277890205383, 0.42207205295562744, -0.5191524624824524, -0.1310022473335266, 0.769042432308197, -0.176613911986351, 0.926643431186676, 0.2580007314682007, -0.18411779403686523, -0.0474766343832016, -1.1397470235824585, -0.9586920738220215, -0.3458692133426666, -0.4513362646102905, -1.2274380922317505, 0.9817428588867188, -1.0553486347198486, -0.27006351947784424, 0.32405000925064087, -0.1572224199771881, 0.05501244217157364, -0.3187451958656311, -0.23517219722270966, -0.11839045584201813, -0.07158688455820084, 0.477676123380661, -0.5314221382141113, 1.1059088706970215, 0.9849990606307983, -0.16324257850646973, -0.7313565611839294, -0.4292270839214325, 0.42243728041648865, 0.24659182131290436, -0.20713922381401062, 0.32596057653427124, 0.9435040354728699, 0.1226930245757103, -0.7291116714477539, 0.10548391938209534, 0.32198286056518555, 0.2980825901031494, -0.05201631039381027, -1.3878673315048218, -0.5103015303611755, 0.6772058606147766, 0.066433846950531, -0.19040492177009583, 0.128299281001091, -1.1137304306030273, 0.24700525403022766, 0.3209737539291382, 0.6161863207817078, -0.762077271938324, -0.1826244443655014, 0.717457115650177, -0.2773754298686981, 0.2710660994052887, -0.6472508907318115, 0.6680856347084045, -1.1680668592453003, 0.4962693154811859, -0.08364148437976837, 0.1216108500957489, -0.3954448401927948, -0.859531044960022, 0.49166545271873474, -1.0904077291488647, -0.3611580729484558, 0.29466062784194946, -0.7154354453086853, -0.8879500031471252, -0.946110188961029, 0.4124904274940491, 0.7763676643371582, 0.07902983576059341, 0.33195269107818604, 0.05252554640173912, -1.6396851539611816, -0.16571645438671112, 0.7552091479301453, -0.230988010764122, 0.8935613036155701, 1.0741219520568848, 1.6486124992370605, 0.6511510610580444, 0.11750242114067078, -0.48044073581695557, 0.3805791437625885, -0.4249834716320038, -0.7117263674736023, -1.1272122859954834, -0.38590872287750244, -0.7347943186759949], [0.7535638213157654, 1.9117498397827148, -1.6695785522460938, -0.63681560754776, 1.0812509059906006, -0.5016387104988098, 0.9615110754966736, -0.091621533036232, -0.461860716342926, -0.5832445621490479, 0.21216246485710144, -0.3810831308364868, 0.7782860398292542, 0.8551731705665588, 0.26162776350975037, 1.053710699081421, 0.9853198528289795, -0.9402648210525513, 0.7066128253936768, 0.734872579574585, 0.2644524872303009, -0.7691105008125305, 0.5166924595832825, 0.04677795246243477, -0.1565219759941101, -0.0018105348572134972, -0.778416633605957, -0.5468343496322632, -0.5179755687713623, -0.6405246257781982, 0.2895210087299347, -0.6931818723678589, -0.2617810070514679, 0.1290433555841446, -2.10400128364563, -0.7653036117553711, 0.9845274686813354, 1.3088467121124268, -0.13807129859924316, 0.21939833462238312, 1.3047131299972534, -0.07297404855489731, -0.08923261612653732, -1.3795520067214966, 0.2019791603088379, -0.6278102993965149, 1.4392621517181396, -0.6869413256645203, 0.3550947606563568, -0.762820303440094, 0.6400864720344543, -0.5329416990280151, 0.37758785486221313, 0.2256946712732315, 1.0332454442977905, 0.362307071685791, 0.5747786164283752, 0.09257857501506805, 1.0094624757766724, -1.053580403327942, 0.48278629779815674, 0.6327385902404785, -0.5225409269332886, 0.8583354353904724, -0.0007934896275401115, 0.5348697304725647, -0.28222882747650146, 0.1791837513446808, 0.17530180513858795, 0.03306994214653969, 0.8507807850837708, -0.0013055512681603432, 0.1337636262178421, 0.2947595715522766, -1.2108715772628784, 0.5806492567062378, 0.49518728256225586, 0.9122148752212524, 0.19478775560855865, 0.5855432748794556, 0.2113782912492752, -0.33171969652175903, 0.5607782006263733, -0.7849369645118713, 0.4903273284435272, 0.20872117578983307, 0.7338047623634338, -0.5462627410888672, 0.08401001989841461, 1.714412808418274, 0.22780083119869232, 0.010716388002038002, 0.49991971254348755, 0.06827285140752792, -0.7593399286270142, -0.5763429403305054, 0.8159151673316956, -0.16974380612373352, -0.9363662600517273, -0.7740476727485657, -0.4868435859680176, -0.4305419325828552, -0.48724380135536194, 0.2789436876773834, -0.420498251914978, 1.1198170185089111, 0.40797585248947144, 0.0649193599820137, -0.7030882239341736, 0.38031119108200073, -0.5252141952514648, -0.5558071732521057, -0.7697855830192566, -0.8371348977088928, -0.7081188559532166, 0.7726935744285583, 1.6570355892181396, -0.33998528122901917, 0.7729536294937134, 1.0913087129592896, -0.2728719711303711, 0.09392036497592926, -0.25252628326416016, 0.041106536984443665, 0.7120424509048462, 1.0585911273956299, -0.7936335802078247, -0.9221293926239014, 0.027014559134840965, -0.5742104053497314, -0.3446612060070038, -0.159025639295578, -0.4114490747451782, 0.7647839784622192, -0.22347135841846466, 0.7739152908325195, -0.5087864398956299, -0.46332335472106934, 0.5673921704292297, -0.1555006355047226, 0.5098618865013123, -0.00291277258656919, -0.5801079869270325, 0.0894533097743988, 0.2820790708065033, -0.04781423136591911, -0.10214045643806458, -0.4016677439212799, -0.6098678112030029, 0.31679201126098633, -0.9637584090232849, 0.4620279371738434, -0.17343178391456604, 0.7043792605400085, 0.34652769565582275, 0.2306821644306183, 0.16648371517658234, 0.48757341504096985, 0.5839377641677856, -0.36949509382247925, 0.799917995929718, 0.20228832960128784, -1.0012459754943848, 0.5253630876541138, -0.05385981500148773, -0.9039281010627747, 0.5751678347587585, 1.0034316778182983, 0.4800838530063629, 0.2634213864803314, -0.8528563976287842, -0.48636671900749207, -0.39854538440704346, 0.3074810802936554, 0.27258265018463135, -0.49020126461982727, 2.068108320236206, -0.7153941988945007, -0.8875502943992615, -0.8872898817062378, 0.21487484872341156, -0.8867482542991638, 0.30650565028190613, -0.34446534514427185, 0.32042261958122253, -0.5077788233757019, 0.4841030538082123, -0.46541792154312134, -0.6648093461990356, -0.34787213802337646, -0.2908247709274292, -0.15411825478076935, -0.6971225142478943, 0.9233537316322327, -0.9733275175094604, -0.6541680693626404, 0.6052546501159668, -1.2559318542480469, -0.2526837885379791, -0.24301770329475403, -0.7162014245986938, 0.05701020732522011, -0.9559584856033325, 0.7527267336845398, -0.19838207960128784, 0.8687087297439575, -0.9252411723136902, 0.9889011383056641, -0.237166628241539, -0.5310733914375305, 1.3766839504241943, -0.19416776299476624, -0.0779314860701561, 0.7069308757781982, -0.3112272620201111, -0.8537226915359497, 0.5564134120941162, 0.1901538372039795, -0.530671238899231, 0.6134459972381592, 0.30639272928237915, 0.12440348416566849, -0.4128260314464569, 0.3667096495628357, 0.004510114900767803, -0.3966793417930603, -1.1549806594848633, -0.5352473855018616, -1.0287659168243408, -0.05172056332230568, -0.1576703041791916, -1.3835278749465942, 0.8565059900283813, 0.10457388311624527, -0.15814052522182465, 0.10294963419437408, -0.5384092330932617, 0.10971696674823761, 0.6904995441436768, 1.3938385248184204, 0.47258496284484863, 0.16118647158145905, -0.455969899892807, 0.12686321139335632, -1.0244606733322144, 0.5707628726959229, 0.682338535785675, -0.2556244134902954, 0.16030187904834747, 1.5786644220352173, 0.869488537311554, 0.15846841037273407, 0.493533194065094, -0.4720028340816498, -0.06247125193476677, -0.8018210530281067, -0.6380189657211304, 0.38388803601264954, -0.48796460032463074, 0.7516100406646729, -0.04656428098678589, -0.7633256316184998, -0.3073592185974121, -0.008227270096540451, -0.5235620141029358, -0.2833225131034851, -0.16599905490875244, -0.653556764125824, -0.6576089262962341, 0.24689881503582, -0.505079984664917, 0.5099807381629944, 0.47106099128723145, 0.4358310401439667, -0.7793297171592712, -0.28117674589157104, -0.33664214611053467, 0.6723239421844482, -0.21359287202358246, 0.5066220164299011, 0.017376577481627464, -1.7715038061141968, -0.7385351657867432, 0.6225942969322205, 0.9378416538238525, -0.09960315376520157, -0.6016668081283569, 0.019133679568767548, 0.35359880328178406, -0.6898414492607117, 0.045811958611011505, 0.1523696482181549, -0.13814085721969604, -0.03949180990457535, -0.29403865337371826, 0.43977007269859314, 0.596062421798706, -0.7447607517242432, 0.12296821922063828, -0.6657362580299377, 0.5777091383934021, 1.2529090642929077, 0.5012194514274597, 1.218967318534851, 0.08297336846590042, -0.028187543153762817, -0.26488804817199707, -0.6235183477401733, -0.5641897320747375, -0.49088677763938904, -1.257942795753479, -0.5769439935684204, -0.09217863529920578, -0.4869633615016937, -0.6980041265487671, 0.9229900240898132, 0.1970800757408142, 0.23365822434425354, 1.2288153171539307, -0.8838627338409424, -0.6510854959487915, -0.5004246830940247, 0.4031071960926056, -0.8054494261741638, 0.3905586004257202, 1.303396224975586, -0.8836987614631653, -0.281470388174057, 0.08495815843343735, -0.22901910543441772, -0.13699333369731903, 0.7520512342453003, -0.22277535498142242, -0.9901431798934937, -0.9497789144515991, -0.5222926735877991, 1.6405450105667114, -0.48675215244293213, 0.244264155626297, -0.37512558698654175, 0.7507225275039673, -0.05945957079529762, -0.04401259124279022, -0.6010438799858093, 0.33132946491241455, -0.15017728507518768, -0.860112726688385, 0.16184432804584503, 0.5881518721580505, 0.7753109931945801, -0.4585076570510864, 0.023073852062225342, -0.4215788245201111, -0.07882490754127502, -0.0345420204102993, 0.3356077969074249, 0.19226087629795074, 1.084675908088684, -0.5889919996261597, -0.3983779549598694, 0.5955767631530762, 0.01647571101784706, -0.04907279089093208, -1.354291319847107, 0.27254098653793335, 0.9117833375930786, 1.4179835319519043, -0.15263092517852783, -0.2309899628162384, -0.01786552183330059, 0.34311869740486145, 0.09776079654693604, 0.39875033497810364, 1.234438180923462, 0.08050059527158737, -0.3871787488460541, -0.578345775604248, 0.21795110404491425, 0.08401303738355637, -0.6791945695877075, 0.0626227930188179, 0.28843802213668823, -0.7350505590438843, -0.46389734745025635, 0.701327383518219, 0.3999786972999573, -0.36033734679222107, -0.4548895061016083, 0.3847426176071167, 0.32106107473373413, -0.28996074199676514, 0.4040450155735016, -0.876906156539917, 0.188741996884346, -0.06831616163253784, -0.5361198782920837, -0.4212976396083832, 0.13377004861831665, 0.5097289085388184, 0.7142461538314819, -1.0886367559432983, -0.46898776292800903, -0.5359156131744385, 0.596531093120575, 0.4435517191886902, -1.0737265348434448, 0.6623729467391968, -0.13071367144584656, -0.3904396593570709, -0.43182238936424255, 0.20173116028308868, 1.1334257125854492, -0.8153356909751892, -0.46401047706604004, 0.21129947900772095, -0.4494021534919739, -0.06617662310600281, -0.5075027346611023, -0.13293449580669403, 0.08831220120191574, -0.26350486278533936, 0.03281271457672119, 0.04207871854305267, 0.03913242369890213, 1.3061705827713013, 0.6223005652427673, 0.659832775592804, 0.5220588445663452, 0.3366571068763733, -1.1101562976837158, -0.10338606685400009, 0.7786939144134521, -0.2164076417684555, -1.0290133953094482, -0.011912651360034943, 0.3453280031681061, -0.29058974981307983, 0.207534059882164, 0.18814533948898315, 0.5229686498641968, 0.39125677943229675, -0.18104495108127594, 0.001776757650077343, 0.12413008511066437, 0.5725439190864563, 1.448377013206482, 0.5122185945510864, -0.5652239918708801, -1.1568408012390137, 0.2009659856557846, -0.9031093120574951, 0.32416343688964844, 0.6321048736572266, 0.3940335214138031, 1.4180086851119995, -1.1020193099975586, -0.5876950025558472, 0.4530557096004486, 0.7210266590118408, 0.11367104202508926, 0.5112661123275757, -0.6174802184104919, -0.6625370383262634, 1.1699070930480957, 0.8873853087425232, 0.15386328101158142, -0.17614932358264923, 0.15294869244098663, 0.018017485737800598, 0.5156971216201782, -0.7156246304512024, 0.9184337258338928, -0.11291014403104782, -0.3212163746356964, 0.06287313252687454, 0.1180395632982254, 0.36984947323799133, 0.4448559284210205, 0.4230399429798126, 1.449851632118225, -0.6859295964241028, -0.7441350817680359, 0.12712246179580688, -0.7266960144042969, 0.6656122207641602, -0.26601505279541016, -0.19410298764705658, -0.09911781549453735, -0.9316328763961792, -0.45878368616104126, 0.3051290512084961, -0.23345647752285004, -0.2676098346710205, -0.31043148040771484, -0.922606348991394, 0.0011541559360921383, 0.3602994680404663, 0.9645581841468811, 0.293317586183548, -0.1592669039964676, 0.8051292300224304, 0.5513259172439575, -0.8585522174835205, 0.30810192227363586, 0.3071098327636719, -0.19913707673549652, 0.04032045602798462, -1.3502839803695679, -0.4614638686180115, -0.027755143120884895, 0.5674855709075928, 0.07486680895090103, 0.4007592499256134, 0.9469889998435974, 1.227467656135559, -0.12027261406183243, -0.18756745755672455, 0.7881416082382202, -0.6832625865936279, 0.2938081920146942, 0.7856616973876953, -0.5176202058792114, -0.0958779975771904, -1.1213593482971191, -1.469735860824585, 1.0148223638534546, -0.2906418740749359, -0.6683081984519958, 0.9821029901504517, 0.5686379075050354, 0.183048814535141, 0.7816236019134521, -0.24922271072864532, 0.37600383162498474, 0.6964736580848694, -0.7130527496337891, -1.2123641967773438, 0.14491403102874756, 0.3760713040828705, 0.12574748694896698, 0.1175563707947731, 0.27581000328063965, 0.5135581493377686, -0.9877010583877563, 0.24590612947940826, 0.1637285053730011, 0.018844572827219963, 0.9368706345558167, 0.6303209066390991, -0.7758406400680542, 0.2799413502216339, -0.4345111548900604, -0.9799968600273132, -0.2696574926376343, 0.7200864553451538, -0.29990795254707336, -0.13703759014606476, -0.8497818112373352, 0.09550422430038452, -0.09874864667654037, 0.28900521993637085, -0.6379825472831726, 0.9421029090881348, 0.6231908798217773, 0.0048542506992816925, -0.17981241643428802, -0.06309769302606583, -0.4146697521209717, -0.25740939378738403, 0.5428737998008728, 0.2026429921388626, -0.9317506551742554, 0.43833494186401367, 0.20553629100322723, 0.10808364301919937, -0.002782699652016163, -0.13171261548995972, 0.4808514416217804, -1.3637902736663818, -0.9223806858062744, -0.43685171008110046, 0.7182719707489014, 1.3227394819259644, -0.7772480845451355, 0.22131074965000153, 0.7162004113197327, -1.4855564832687378, 0.1002935990691185, 0.2525774836540222, -1.4121803045272827, 0.08528806269168854, -0.9392976760864258, 1.1326531171798706, 0.11466526985168457, 0.5116981267929077, -0.26071155071258545, 0.9033222198486328, -1.555173397064209, -1.3879470825195312, -0.4647885859012604, -0.031743183732032776, 0.8586589097976685, 0.9642615914344788, -0.3955176770687103, 0.7597141265869141, 0.6009649038314819, -0.2052137702703476, -0.3382401466369629, 0.3424065113067627, -0.6029096841812134, 0.3367588520050049, 0.3813924491405487, 0.7042654752731323, -0.022528184577822685, 1.0909782648086548, 0.05787046626210213, 1.1331883668899536, 0.05494026094675064, 1.1740188598632812, -0.6824368834495544, 0.19387204945087433, 0.18170040845870972, 0.39267122745513916, -1.4697223901748657, -1.0226151943206787, -0.38389718532562256, -1.2792630195617676, -0.5932184457778931, 0.6498018503189087, 0.8276950716972351, -0.5168827772140503, -0.12722915410995483, -0.44607144594192505, 0.26794376969337463, -1.2127774953842163, 0.17839600145816803, -0.07160890847444534, 0.2352837324142456, 0.37816014885902405, 0.21294309198856354, -0.18611189723014832, -1.3228319883346558, -0.5573621988296509, 0.3433396518230438, 0.1929270327091217, -0.5663954019546509, 1.0672553777694702, 0.5235937833786011, 0.19965305924415588, -0.5598524212837219, 1.4329150915145874, 1.1024398803710938, -0.5308791995048523, -0.4718465209007263, 0.6876365542411804, 0.3637597858905792, 0.5274492502212524, -0.9828736186027527, -0.8471313714981079, -0.31109899282455444, 1.022303581237793, 0.21639679372310638, 0.22047115862369537, -0.41772156953811646, -0.1631782054901123, 0.2840471863746643, -0.06755571067333221, 0.8288448452949524, -0.6925379037857056, 0.13588517904281616, 1.1015554666519165, 0.06094367802143097, -0.4049447178840637, 0.5533140897750854, 0.6359117031097412, -0.23940400779247284, -0.533444881439209, 0.9281613230705261, 0.3869423270225525, -1.2250869274139404, -0.041538089513778687, 0.22355681657791138, -0.5559988021850586, 0.0018913624808192253, -0.41020047664642334, -1.9455320835113525, -0.1135346069931984, -0.40163713693618774, -1.5292253494262695, -0.025592368096113205, -1.3483076095581055, -0.6889318227767944, 0.923907995223999, -0.5769832134246826, -0.8116152882575989, -0.18391577899456024, 0.4030109643936157, 0.39844247698783875, 0.6193679571151733, 0.8134317994117737, -0.5847507119178772, 0.7682149410247803, 0.3365603983402252, 0.06151743605732918, -0.9144759178161621, -0.28020158410072327, 0.3754218816757202, 0.2509397566318512, -0.49464887380599976, -0.4727519452571869, 0.20773357152938843, 0.21513624489307404, -0.48728764057159424, -0.019815918058156967, -0.40039169788360596, 0.9913003444671631, 0.22109360992908478, 0.3070097863674164, -0.01643386483192444, 0.5002360939979553, 0.7279480695724487, -0.11534847319126129, -0.8062735795974731, -0.7495446801185608, 0.21615147590637207, -0.8478332757949829, 1.0802834033966064, -0.30030882358551025, 0.5260644555091858, 0.5324903130531311, 0.006968694739043713, -0.801292896270752, -0.9057397842407227, 0.3630606532096863, -0.4440251290798187, 0.22634950280189514, -0.2608267068862915, -0.08625400811433792, -0.04956753924489021, -0.7022660374641418, 0.5107126832008362, -0.1535748392343521, -0.7373414039611816, 0.09316281974315643, -1.135910987854004, -0.9069554209709167, -0.7063965797424316, 0.28038373589515686, 1.1553188562393188, 0.3689801096916199, -0.07165682315826416, -0.22921122610569, -1.0891262292861938, -0.042200203984975815, -0.0214866790920496, 0.005715488456189632, 0.055847734212875366, 0.7679404020309448, 1.737564206123352, 0.6953933238983154, 0.19066771864891052, -0.1706135869026184, 0.3886670768260956, -0.21603283286094666, 0.23775379359722137, -0.4968268871307373, -0.11673882603645325, 0.12133656442165375], [0.5640549063682556, 1.1389379501342773, -2.1276042461395264, -0.28609490394592285, 0.7042540311813354, 0.23937225341796875, 0.5447288751602173, 0.09483520686626434, 0.42095813155174255, -0.8950446844100952, -0.008732324466109276, -0.5013962388038635, 1.0367152690887451, 0.7014316320419312, 0.19651001691818237, -0.41618046164512634, 0.07972367107868195, -0.8252811431884766, 0.6594791412353516, 1.4509246349334717, -0.3174809217453003, -0.552151620388031, 0.36655548214912415, 1.059190034866333, -0.03023596853017807, -0.2660433351993561, -1.7543827295303345, -0.80734783411026, -0.7430166602134705, -0.7991920113563538, 0.8646371960639954, -1.3013826608657837, -0.10522414743900299, -0.0029858851339668036, -1.217947006225586, -0.6771913766860962, 1.4195139408111572, 0.3255036175251007, 0.5712358355522156, 0.3084537386894226, 1.1064162254333496, 0.191915363073349, 0.25786247849464417, -1.9242390394210815, 0.7085512280464172, 0.4018876254558563, 0.758240282535553, -0.9586529731750488, 0.09346305578947067, -0.8701497912406921, 0.6644817590713501, -0.7916948795318604, 0.36764487624168396, 0.3617798089981079, 1.7145906686782837, 1.0079848766326904, 0.34938350319862366, 0.5057464241981506, 0.925902247428894, -0.5326868891716003, 0.2717078626155853, 0.3038228452205658, -0.013899065554141998, 0.9121122360229492, 0.506791889667511, -0.052658166736364365, -0.09774459153413773, 1.1686418056488037, 0.5851137638092041, -0.07696890830993652, 0.9304167032241821, -0.4123225212097168, -1.1554771661758423, 1.2113507986068726, -0.9578521251678467, 0.3066241443157196, 0.21491149067878723, 0.40567946434020996, -0.16047273576259613, 0.499931275844574, -0.5562044978141785, -0.46374523639678955, 0.7558009624481201, -0.17138902842998505, 0.9520137906074524, 0.3714205324649811, 0.1772167980670929, -0.26998502016067505, -0.5239136219024658, 1.824265718460083, 0.0630275085568428, 0.22267776727676392, 0.09070952236652374, 0.15772339701652527, -0.13527047634124756, -0.32180336117744446, 0.272391676902771, -0.2999175190925598, -0.5947311520576477, -0.6407411694526672, -0.7660523653030396, -0.5015101432800293, -0.20456819236278534, -1.0835437774658203, 0.4269205629825592, 0.8121801614761353, 0.20323042571544647, -0.18410080671310425, -0.6007434725761414, 0.26475846767425537, -0.11662949621677399, -0.2486260086297989, -0.770673394203186, -1.247866153717041, -0.7814152836799622, 0.24124029278755188, 1.0325977802276611, -0.502795398235321, 0.6971182823181152, 0.3995457887649536, -0.7366854548454285, -0.1467750519514084, 0.338117390871048, 0.29540738463401794, 0.24180342257022858, 0.8180651068687439, 0.09279235452413559, -1.3499428033828735, 0.1820620894432068, -0.5610482692718506, 0.34406334161758423, -0.21862702071666718, 0.5977519154548645, 0.49722304940223694, -0.21133637428283691, 0.5127721428871155, 0.30500510334968567, -1.1743110418319702, 0.42973563075065613, 0.07409746199846268, 0.6788187026977539, -0.10534662008285522, -0.1787770688533783, -0.13104432821273804, -0.4652719795703888, -0.8380548357963562, 0.6150928139686584, 0.100380539894104, -0.6336897611618042, 0.2637259364128113, -0.4294903576374054, -0.09048934280872345, 0.19764617085456848, 0.7781780958175659, -0.015885546803474426, -0.07215406000614166, -0.058031339198350906, 0.6794940233230591, 0.3630271255970001, -0.0789409950375557, 1.1073837280273438, 0.20208221673965454, -0.07987336069345474, 0.8793171048164368, -0.40881261229515076, -0.3564496338367462, -0.22789904475212097, 0.3721354901790619, 0.21808680891990662, -0.06715597212314606, -0.5798251032829285, -0.36359256505966187, -0.5322594046592712, 0.8480453491210938, 0.7369809150695801, -0.6908475756645203, 1.8069837093353271, -1.1968982219696045, -1.2166571617126465, -1.2070304155349731, -0.2979305684566498, -0.6063947081565857, 0.29027923941612244, -0.1715508997440338, 0.7358249425888062, -0.2719154357910156, 0.34528395533561707, -0.02139504998922348, -0.5195942521095276, -0.9975832104682922, -0.1446697860956192, 0.5454510450363159, -1.0687214136123657, 0.3338444232940674, -0.5732674598693848, -1.2536462545394897, 0.13876639306545258, -0.573771595954895, -0.5286414623260498, -0.3325536549091339, -0.32258033752441406, 0.1674504429101944, -1.1719298362731934, -0.0643853172659874, -0.28626760840415955, 1.1143090724945068, -1.2757166624069214, 1.1547236442565918, -0.7624929547309875, 0.33137357234954834, 1.5357167720794678, -0.10492290556430817, -1.1684726476669312, 1.059543251991272, -0.22308462858200073, -1.749906063079834, 0.615737795829773, 0.5285334587097168, -0.5810425877571106, 0.23764827847480774, 0.3992873430252075, 0.379120409488678, -0.09261268377304077, -0.23319083452224731, 0.3123742341995239, -0.7636294960975647, -0.45575740933418274, -0.9711589217185974, -0.6669912338256836, 0.4635580778121948, -0.4792138934135437, -1.5333235263824463, 1.0751148462295532, 0.2711871564388275, -1.1987022161483765, 0.6232507228851318, 0.09339794516563416, 0.47966548800468445, 0.26687127351760864, 1.3949511051177979, 0.3269234597682953, 0.23022010922431946, 0.1892411708831787, -0.31038111448287964, -1.1727752685546875, 0.2469344139099121, 1.0998913049697876, -0.5578466653823853, 0.4605313241481781, 0.5895100235939026, 0.7419750690460205, -0.12839893996715546, 0.2832680344581604, -0.0169671680778265, 0.00803949125111103, -0.16067682206630707, -0.3284073770046234, 1.1142407655715942, -0.5807023048400879, 1.1518288850784302, 0.3034060001373291, -0.8183757662773132, -0.5154639482498169, -0.19926586747169495, 0.5990626811981201, -0.7439359426498413, -1.3956574201583862, -0.11370494216680527, 0.16552172601222992, 0.08968523144721985, -0.5472049713134766, 0.9712827801704407, -0.420946329832077, 0.7110676765441895, -0.6768267750740051, -0.4614501893520355, -0.4448243975639343, 0.3382222652435303, -0.14983788132667542, 1.2447229623794556, -0.22927486896514893, -0.9612022042274475, -0.860357403755188, -0.1635691523551941, 0.21914927661418915, 0.17780669033527374, 0.26030048727989197, 0.22534526884555817, -0.3938039541244507, -0.10431239753961563, -0.09946396946907043, 0.030660925433039665, 0.026269514113664627, -0.6409268975257874, -0.043085962533950806, 1.134766936302185, 1.2793755531311035, -1.1140832901000977, -1.3334851264953613, -0.20412388443946838, 0.7968428730964661, 1.1119087934494019, 1.2181681394577026, 1.562622308731079, 0.19995343685150146, 0.7827876210212708, -0.30084487795829773, 0.23283426463603973, 0.0395902581512928, -0.7458412051200867, -0.5524143576622009, -0.45169612765312195, -0.22844403982162476, -0.028919382020831108, -0.407141774892807, 0.9319432377815247, 0.19927403330802917, 0.5459940433502197, 1.261197805404663, 0.42044058442115784, -1.2463055849075317, -0.3552084267139435, -0.34525129199028015, -0.64422607421875, 0.2865912914276123, 0.7260857820510864, -0.7092703580856323, -0.5000350475311279, -0.6307355165481567, 0.016390454024076462, 0.8992164134979248, 0.33433645963668823, -0.24537643790245056, -1.0835314989089966, -0.9816073179244995, -0.3640778660774231, 0.4072050154209137, -0.7207036018371582, 0.823469877243042, -0.2541351020336151, 0.9177435040473938, 0.3615871071815491, 0.23928125202655792, -0.6245490312576294, 1.0741578340530396, 0.1779487282037735, -0.8816838264465332, 0.5498883724212646, 0.43431907892227173, 1.2272131443023682, -0.44579359889030457, 0.1391201615333557, -0.32340362668037415, 0.18800145387649536, -0.5213172435760498, 0.6888860464096069, -0.07691295444965363, 1.0518490076065063, -0.16740986704826355, 0.2412949502468109, 0.9820985198020935, -0.5748986601829529, 0.03451740741729736, -1.5884352922439575, 0.7799105048179626, 0.3771542012691498, 0.7303506135940552, 0.09238190203905106, -0.39330023527145386, 0.18656672537326813, -0.6762600541114807, -0.13868685066699982, 0.21363139152526855, 0.8019233345985413, 0.5359527468681335, -0.07263558357954025, -0.07000011950731277, 0.5295908451080322, -1.1458337306976318, -0.6651559472084045, -0.14307084679603577, -0.40451768040657043, -1.451661467552185, -0.6165189743041992, 0.6976678967475891, 0.3353031575679779, -0.588448703289032, -0.48546189069747925, 0.3275916576385498, 0.8626909255981445, 0.49362069368362427, 0.11726102977991104, -0.9491744637489319, -0.46072089672088623, -0.010239135473966599, -0.9553648829460144, -0.1873084008693695, 0.06658229231834412, 0.20638807117938995, 0.10805513709783554, -1.0612612962722778, -0.3462061285972595, -0.17694169282913208, 0.5270137190818787, 0.9108430743217468, -0.05549505725502968, 0.7369107007980347, -0.14136618375778198, 0.10547958314418793, -0.12849007546901703, 0.31869369745254517, 1.702864646911621, -0.7293291091918945, 0.2697809338569641, 0.10905184596776962, -0.4496775269508362, 0.13807646930217743, -0.6462560296058655, -0.20804502069950104, 0.8397461771965027, -0.046752382069826126, 0.30469372868537903, 0.1588706225156784, 0.5170449614524841, 1.6687101125717163, 0.5459677577018738, 0.08221578598022461, 0.6517168879508972, -0.2097797393798828, -1.3502774238586426, 0.24123820662498474, -0.238305002450943, 0.052020907402038574, -0.6403497457504272, 0.11292216926813126, 0.20520111918449402, -0.0855523943901062, 0.707481861114502, 0.8054742813110352, 1.565783977508545, 0.5245651602745056, 0.20588940382003784, -0.15609440207481384, 0.25496572256088257, 1.061790943145752, 1.3934121131896973, 0.6758409738540649, -0.21542921662330627, -1.2788290977478027, 0.9644216895103455, -0.37416166067123413, 0.44345226883888245, 0.7485635876655579, -0.030895447358489037, 1.3874949216842651, -1.2276884317398071, -0.8997879028320312, 0.5298644304275513, -0.1680229753255844, 0.3184354603290558, 0.6190379858016968, 0.32501259446144104, -0.8012784123420715, 0.8898330330848694, 0.33825692534446716, 0.2638460397720337, 0.19745735824108124, 0.028104785829782486, -0.49510443210601807, 0.3437515199184418, 0.18220199644565582, 0.5057740807533264, -0.5735883712768555, 1.1307705640792847, -0.6944475173950195, -0.3854181170463562, 0.5745425224304199, 0.1708909571170807, 0.021698346361517906, 1.232267141342163, -0.4329889118671417, -1.3895694017410278, -0.13856150209903717, -0.6236681938171387, 0.6721748113632202, -0.28257980942726135, -0.2495448738336563, -0.19761395454406738, -1.2857089042663574, -0.3112446069717407, 0.9475558996200562, 0.705146312713623, -0.7027922868728638, -0.35876601934432983, -0.5430841445922852, 0.08700808137655258, -0.06918947398662567, 0.2994900345802307, -0.4473317265510559, 0.7672997117042542, -0.01083772350102663, -0.29423603415489197, -1.042965054512024, -0.0130357276648283, 0.656170666217804, -0.5229264497756958, 0.3957027196884155, -1.2273427248001099, -0.698582649230957, 0.2630215585231781, 0.05057171732187271, 0.0579543262720108, 0.4276205003261566, 0.9894260764122009, 1.2518631219863892, -0.2744380831718445, 0.07263319194316864, -0.32112953066825867, -0.9306186437606812, 0.3148508071899414, 0.6176234483718872, -0.7817451357841492, -0.6917173266410828, -0.8424502611160278, -1.724799633026123, 0.8048966526985168, 0.14703626930713654, -0.71266770362854, 1.3564051389694214, 0.736945629119873, 0.7612602114677429, 0.4876667261123657, -0.2460104376077652, 0.4784672260284424, -0.09891901165246964, -0.5030978918075562, -1.7615172863006592, -0.01653481088578701, -0.03781250864267349, -0.47746914625167847, -0.3335821330547333, 0.873856782913208, -0.08937584608793259, -0.2434173822402954, 0.02102820575237274, 0.8753812909126282, 0.046080563217401505, 0.7223654389381409, 0.17991890013217926, -0.561008632183075, 0.25585949420928955, -1.281783938407898, -0.6316245794296265, -0.5609804391860962, 0.3367159962654114, 0.31344062089920044, -1.1463874578475952, -0.040137842297554016, -0.1163197010755539, -0.40742188692092896, 0.29363012313842773, 0.1644590049982071, 0.8685909509658813, 0.19751591980457306, -0.32713180780410767, 0.20211422443389893, -0.3252732753753662, -0.29839950799942017, -0.8264963030815125, 0.11110077053308487, 0.5476585626602173, -1.4433510303497314, -0.5613096356391907, -0.032321490347385406, -0.62651127576828, -0.3641144931316376, -0.23676855862140656, 1.1235853433609009, -1.7058076858520508, -0.9049308896064758, -1.0159904956817627, -0.1289254128932953, 0.9957767724990845, -0.4705648720264435, 0.033419232815504074, -0.04550132527947426, -1.5073744058609009, 0.49957817792892456, -0.32205522060394287, -0.6588181853294373, -0.35998329520225525, -0.9648492336273193, 0.5360491871833801, -0.2456725686788559, 0.6258057951927185, -0.20433060824871063, 0.2734263837337494, -1.4868781566619873, -0.4018639624118805, -0.844677209854126, -0.26238158345222473, 1.1360870599746704, 0.44842010736465454, -0.830324649810791, 0.9056949019432068, 0.5451023578643799, -0.5235938429832458, 0.10178583115339279, 0.004403119441121817, 0.16920967400074005, -0.05905511975288391, 0.10172394663095474, 0.8704068064689636, -0.12687309086322784, 0.6473485827445984, 0.279020756483078, 0.3073939383029938, 0.5770611763000488, 0.6854516267776489, -0.35213884711265564, -0.13528946042060852, -0.4563407301902771, 0.944629430770874, -0.05572178587317467, -0.43032506108283997, -0.2714194357395172, -1.2743408679962158, -0.1665402054786682, 0.5651741027832031, 0.5895186066627502, -0.9368277192115784, -0.6154527068138123, -1.1898235082626343, 0.4374379813671112, -0.9082769155502319, 0.6246434450149536, 0.16620732843875885, -0.27100369334220886, 0.2331567108631134, -0.6952164769172668, -0.35147330164909363, -0.9720520377159119, 0.6611205339431763, 0.1713031530380249, -0.14268095791339874, -0.5461145043373108, 0.7415618896484375, -0.06875332444906235, -0.2664482295513153, -0.8703768849372864, 1.4000375270843506, 1.2995493412017822, -0.04342708736658096, 0.2998966872692108, 0.6360589265823364, -0.18005172908306122, 0.7969442009925842, -0.15212538838386536, -0.1999533325433731, -1.1870530843734741, 0.7014533877372742, 0.1495954543352127, 0.33061307668685913, 0.15610237419605255, 0.23976221680641174, -0.15381751954555511, 0.9255397915840149, 0.4536910951137543, -0.5888123512268066, 0.21890389919281006, 1.5239335298538208, 0.16455088555812836, 0.37122732400894165, 0.3184797763824463, 0.3254076838493347, 0.17844636738300323, -0.3269520103931427, 0.5291001796722412, 0.7693418860435486, -0.6364296674728394, 0.15673606097698212, -0.4471232295036316, -0.05905071273446083, -0.09068302810192108, -0.42788857221603394, -0.7468878626823425, 0.2463064044713974, -0.35005009174346924, -0.5932300090789795, -0.2190558761358261, -1.0374261140823364, -0.6604681015014648, 1.2800627946853638, -0.03453837335109711, 0.05753348022699356, -0.1751432716846466, 0.7924416661262512, -0.23230570554733276, -0.04516051337122917, 0.43631359934806824, 0.5308893322944641, 0.6182438135147095, 0.033591996878385544, 0.2512131929397583, -0.6637240052223206, -0.6457126140594482, 0.9832062721252441, -0.4323331117630005, -0.3703102469444275, 0.018931254744529724, 0.0022266125306487083, 0.3323742747306824, -0.7233185768127441, 0.565779447555542, -0.8147261142730713, -0.04963071644306183, -0.112190380692482, -1.0287188291549683, -0.37513795495033264, 0.7691766619682312, 1.1319133043289185, -0.24159568548202515, -0.8341712951660156, -0.747597336769104, 0.5960729122161865, -0.4027591645717621, 1.0302419662475586, 0.02464800328016281, 0.39537420868873596, 0.1974422186613083, -0.40038830041885376, 0.10312217473983765, -0.5862013101577759, 0.09848096966743469, -0.8452849388122559, 0.2744300067424774, -0.28719186782836914, -0.11056805402040482, 0.03991828113794327, -0.5174254179000854, 0.6071034073829651, -0.2748623192310333, 0.5112064480781555, 0.4026111960411072, -0.8034508228302002, -1.7991091012954712, -0.7518576979637146, 1.0551486015319824, 0.6638131737709045, 0.3379274606704712, -0.037424664944410324, 0.4193214178085327, -1.6702888011932373, -0.1961909830570221, 0.6873430013656616, 0.4814033508300781, -0.3711467981338501, 1.6159858703613281, 2.178252935409546, 0.3183189630508423, 0.3826313018798828, -0.044810548424720764, 0.7177100777626038, -1.2938569784164429, -1.1915323734283447, -0.4543825387954712, -0.03690146282315254, 0.5000806450843811], [0.5258632302284241, 1.1797676086425781, -1.8954617977142334, -0.20279604196548462, 0.5846714973449707, 0.7930235266685486, 0.7613068222999573, -0.32283586263656616, 0.5422583818435669, -1.0024559497833252, -0.5694453120231628, 0.15516401827335358, 0.043933477252721786, 0.5544344186782837, 0.09844835102558136, 0.49582818150520325, 0.44066882133483887, -0.981569230556488, 0.25941595435142517, 1.887636423110962, -0.033591195940971375, -0.7292613983154297, 0.27255451679229736, 0.5378667116165161, -0.19787754118442535, 0.025327876210212708, -1.689652442932129, -0.5507392883300781, -1.37882399559021, -0.28261542320251465, 1.1104516983032227, -1.3556758165359497, -0.6590588092803955, 0.28876227140426636, -1.5593128204345703, -0.2093406617641449, 1.6428735256195068, 0.2772756516933441, 0.9828801155090332, 0.29313763976097107, 2.102295160293579, 0.043463084846735, 0.2790156900882721, -1.798531174659729, 0.07938718795776367, 0.13375066220760345, 0.9619128704071045, -0.7215420007705688, 0.07560330629348755, -0.781715989112854, 0.10547878593206406, -0.5768729448318481, 1.4883164167404175, 0.5393966436386108, 1.85098397731781, 0.41876253485679626, 0.30896317958831787, 0.7496609687805176, 0.7335941791534424, -0.4514384865760803, 0.2829569876194, 0.05267520248889923, -0.6707361340522766, 1.3926587104797363, 0.26610618829727173, -0.26074346899986267, -0.04059337452054024, 0.8573951125144958, 0.2885522246360779, -0.27347326278686523, 0.9614622592926025, 0.09466255456209183, -0.9582549333572388, 0.36985015869140625, -1.3675694465637207, 0.7985801696777344, 0.3116655945777893, 0.9043565988540649, 0.06242075562477112, 0.20714472234249115, -0.1782890409231186, -0.2999371886253357, 0.6427500247955322, -0.3808724284172058, 0.352582722902298, -0.17427054047584534, 1.25246000289917, -0.4431810975074768, -0.09658131003379822, 1.196813941001892, 0.7725694179534912, 0.4650694727897644, -0.10032029449939728, -0.4993332028388977, -0.35511070489883423, -0.9104455709457397, 0.1796751171350479, -1.0358734130859375, -0.5605553388595581, -0.8350523710250854, -0.6391699314117432, -0.6715978384017944, -0.39128488302230835, -0.13677674531936646, 0.0058260951191186905, 1.2010424137115479, -0.056943874806165695, 0.5417172312736511, -0.5889672636985779, 0.4479035437107086, -0.31844520568847656, 0.44842636585235596, -1.0220117568969727, -1.3768610954284668, -1.244816780090332, 0.45746245980262756, 1.1524746417999268, -0.18939179182052612, 0.5278292298316956, 0.792593777179718, -0.6245083808898926, -0.07304771989583969, -0.4398820102214813, 0.0990012139081955, 0.7600480914115906, 0.6757206916809082, 0.15397298336029053, -1.0693806409835815, 0.9449202418327332, 0.03555652126669884, 0.37102827429771423, -0.474181592464447, 0.4216976761817932, 0.410970002412796, -0.6735045313835144, 0.7626746892929077, 0.564663827419281, -0.5300775766372681, -0.0379561111330986, 0.238589346408844, 0.8659197092056274, 0.006303738337010145, 0.10344202816486359, -0.7991798520088196, -0.41851842403411865, -0.6058555245399475, 0.6343303918838501, -0.3954184651374817, -0.6638665795326233, 0.28133484721183777, -0.7326763272285461, 0.2658167779445648, 0.09723199158906937, 0.48763179779052734, 0.46048927307128906, -0.08354906737804413, -0.3351120352745056, 0.20332756638526917, 0.2601644694805145, -0.4563559293746948, 0.4019661545753479, -0.10030820965766907, -0.4519898295402527, 0.9020575284957886, 0.5186232328414917, -0.09233000874519348, -0.04156133905053139, 0.508283257484436, -0.3433170020580292, 0.5635212063789368, -0.4852736294269562, -0.07720508426427841, -0.5477713346481323, 0.7878802418708801, 0.8166005611419678, -0.21353092789649963, 1.6906611919403076, -1.1296966075897217, -0.38054531812667847, -0.9763355255126953, -0.013354100286960602, -0.20353123545646667, 0.26594194769859314, -0.02541152387857437, 0.5384976863861084, -0.742713212966919, 0.6790944337844849, 0.08231118321418762, -0.725896954536438, -0.778377890586853, -0.39829063415527344, 0.11287370324134827, -1.4639296531677246, 0.35496675968170166, -0.16429713368415833, -1.0113085508346558, 0.4947710633277893, -0.17200148105621338, -0.39536339044570923, 0.10973075777292252, -0.46911585330963135, -0.3219768702983856, -0.30266815423965454, 0.3437604308128357, -0.1165708675980568, 0.41673704981803894, -0.8248962163925171, 0.6165279746055603, -0.562088668346405, 0.033230602741241455, 1.3853524923324585, 0.06293415278196335, -0.8134732246398926, 0.879584789276123, -0.15078850090503693, -1.9722174406051636, 0.39320772886276245, 0.24324773252010345, -0.5028321743011475, -0.05199447274208069, 0.44563910365104675, 0.9139267206192017, 0.30257219076156616, 0.2578010559082031, 0.7582540512084961, -0.5243353247642517, -0.4348679482936859, -0.6972733736038208, -0.8499345779418945, 0.2182648926973343, -0.4289475381374359, -1.047629714012146, 1.3140498399734497, 0.3781466782093048, -0.7332754135131836, -0.20329271256923676, 0.26128602027893066, -0.2621519863605499, -0.24382628500461578, 0.8392142653465271, 0.3128061890602112, 0.9348173141479492, -0.09278374910354614, -0.17826582491397858, -0.5615416765213013, 0.4059678912162781, 1.7012450695037842, -0.3655305504798889, 0.04929683357477188, 0.8777757883071899, 1.256471037864685, 0.12592343986034393, 0.20188263058662415, -0.023752450942993164, -0.40930506587028503, -0.8240026235580444, -1.092099905014038, 0.4895473122596741, -0.5200703144073486, 0.8023331165313721, 0.48325347900390625, -0.9464108347892761, -0.687434196472168, 0.24640244245529175, 0.549197793006897, -0.39259904623031616, -1.0516927242279053, -1.1102468967437744, -0.04047323018312454, 0.11329828202724457, -0.34390926361083984, 0.8204828500747681, -0.13280001282691956, 0.7462015151977539, -0.3991566300392151, -0.5533972978591919, -0.7606266140937805, 0.8653806447982788, -0.2996324300765991, 0.8890119791030884, -0.10673370212316513, -0.8957263231277466, -0.6829695701599121, -0.03166613727807999, 0.695118248462677, 0.23740500211715698, -0.10376804322004318, -0.3563973307609558, -0.0357220433652401, -0.4333670139312744, 0.1705125868320465, 0.06318799406290054, -0.1379951387643814, 0.15372306108474731, 0.6557937860488892, 0.5649990439414978, 1.357537865638733, -1.0952658653259277, -1.3588142395019531, -0.0850084200501442, 0.7911524772644043, 1.1080375909805298, 1.0818095207214355, 1.0916366577148438, -0.35205814242362976, -0.5219570398330688, -0.2424488067626953, -1.1402195692062378, -0.1492598056793213, -0.9213943481445312, -0.39349985122680664, -1.3232848644256592, -0.44458943605422974, -0.24013406038284302, -0.4281501770019531, 1.3734991550445557, 0.3099727928638458, 0.4044957756996155, 1.370311975479126, 0.38588014245033264, -1.2236316204071045, -0.6582884788513184, -0.19058628380298615, -0.8502135276794434, 0.4590931534767151, 1.1040546894073486, -1.433539867401123, -0.8760901689529419, -0.7306081652641296, 0.14244578778743744, 1.0757737159729004, 0.16671201586723328, -0.3430446684360504, -0.8597505688667297, -0.6922675967216492, -0.03207722306251526, 0.4373131990432739, 0.2539646625518799, 0.28571659326553345, -0.7297573685646057, 0.05402761697769165, 0.9093712568283081, 0.2840036451816559, -1.0307108163833618, 0.8797140121459961, -0.002699524164199829, -0.8580693602561951, -0.2545345723628998, 0.03766978532075882, 0.8068615794181824, -0.5129057168960571, -0.3039535880088806, -0.4214017689228058, -0.44213032722473145, -1.2515217065811157, 0.640505313873291, -0.36527353525161743, 0.975848913192749, -0.25383150577545166, 0.2779221832752228, 0.9788950681686401, -0.5808491706848145, -0.023431502282619476, -1.1793791055679321, 0.6679298877716064, 1.336423397064209, 0.5685094594955444, -0.5106172561645508, -0.08393219858407974, 1.0486396551132202, -0.6491580605506897, 0.21081851422786713, 0.6649914979934692, 1.0443835258483887, 0.35215920209884644, -0.06314554065465927, -0.07313553243875504, 0.17127351462841034, -0.28224262595176697, -0.9531462788581848, 0.4539901614189148, -0.5855610370635986, -1.6663463115692139, -0.9436658620834351, 1.1686437129974365, 0.31851106882095337, -0.12512746453285217, -0.8916422724723816, 0.18592612445354462, 0.8953322172164917, 0.010640215128660202, 0.8400835990905762, -0.8956087827682495, -0.17448759078979492, 0.2038612961769104, -0.7992246150970459, -1.0371562242507935, 0.4719986319541931, 0.12986385822296143, 0.6025600433349609, -0.6586219072341919, 0.09979315102100372, -0.3085489571094513, 0.7101190090179443, 0.8052381277084351, -0.04359372705221176, 0.5036664605140686, -0.029554050415754318, 0.008896454237401485, -0.6397498250007629, 0.42613911628723145, 1.8818870782852173, -0.33566588163375854, -0.006453223526477814, -0.4515444040298462, -0.3774089217185974, -0.15257528424263, 0.043758489191532135, -0.11754539608955383, -0.013049422763288021, -0.6188610792160034, -0.04007893055677414, 0.48041123151779175, 0.25070565938949585, 1.9686431884765625, 0.36432284116744995, 0.5669530630111694, 0.4184878468513489, -0.3776991069316864, -0.9234009981155396, -0.0987279862165451, 0.08660208433866501, -0.31287848949432373, -1.4896323680877686, -0.18607407808303833, 0.37462082505226135, 0.6360616087913513, 0.4092850089073181, 0.06305604428052902, 0.9573222994804382, -0.16263236105442047, -0.040086157619953156, -0.278652548789978, 0.6462686061859131, 0.8368521928787231, 1.0501513481140137, 0.4439437985420227, -0.9803990125656128, -0.6062799096107483, 0.8692620992660522, 0.10923196375370026, 0.3900992274284363, 0.7216216921806335, -0.09285667538642883, 0.5862029790878296, -2.1661837100982666, -0.8553035855293274, 0.03756321221590042, -0.01319928839802742, 0.6905713081359863, 0.15103361010551453, -0.3930100202560425, -0.7197095155715942, 0.4164871871471405, -0.3866264820098877, 0.009959869086742401, 0.8580410480499268, 0.24445505440235138, 0.11891372501850128, 0.48264870047569275, 0.06845768541097641, -0.05218120664358139, -0.7678247690200806, 0.544030487537384, -0.8386354446411133, -0.03066171333193779, 0.5610957145690918, -0.27602896094322205, -0.05548649653792381, 1.0730342864990234, -0.04384908080101013, -0.9174609184265137, 0.4915114641189575, -0.403134822845459, 0.5471709370613098, -0.20917882025241852, -0.9570545554161072, -0.17790168523788452, -0.10095246136188507, 0.045245639979839325, 0.49196189641952515, 0.07288578152656555, -0.5112155079841614, -1.275585651397705, -0.977878212928772, 0.3239629566669464, 1.0734515190124512, 1.2177205085754395, -0.41150951385498047, 0.5450605750083923, -0.21180149912834167, 1.1718826293945312, -0.7515227794647217, -0.318092942237854, -0.03480099141597748, -0.3431265950202942, 0.16249369084835052, -1.5999631881713867, -0.6508898735046387, 0.15287606418132782, 0.6488772630691528, 0.47012293338775635, 0.3776452839374542, 0.6866762638092041, 0.8312356472015381, -0.2534978985786438, -0.22516097128391266, 0.7782695293426514, -0.8750864267349243, 0.08724963665008545, 0.8609414100646973, -0.31370997428894043, -0.8155431747436523, -0.5568459033966064, -1.485923409461975, 0.995163083076477, -0.4737277328968048, -1.6026334762573242, 0.9083026647567749, 0.3223283290863037, 0.33891773223876953, 0.3620975613594055, -0.20469681918621063, 0.3041910231113434, -0.030368167906999588, -0.5969842672348022, -1.8991671800613403, 0.5888111591339111, 0.07057859748601913, -0.717979907989502, -0.09786292165517807, 1.1155428886413574, -0.3581668734550476, -0.4304344654083252, -0.355582058429718, 0.9462807178497314, 0.24415206909179688, 1.1232423782348633, 0.6441361904144287, -0.9188955426216125, 0.151129350066185, -1.0613677501678467, -0.7757796049118042, -0.3597713112831116, 0.7813172936439514, 0.11156738549470901, -0.4937247633934021, -0.4773281216621399, -0.30199700593948364, -0.5710226893424988, 0.03147822245955467, -0.26152873039245605, 1.2449424266815186, 0.4141782522201538, 0.08560070395469666, 0.46271395683288574, -0.03184249997138977, -0.7317608594894409, -0.6494009494781494, -0.15990105271339417, 0.7266854047775269, -1.2308077812194824, -0.1737106442451477, 0.13071441650390625, -0.8480136394500732, -0.3983079791069031, -0.8133889436721802, 0.6987190246582031, -1.3021445274353027, -0.8932301998138428, -0.7546367645263672, 0.003818245604634285, 1.4753971099853516, -0.2122322916984558, 0.6968417167663574, 0.37717992067337036, -1.6047487258911133, 0.8158921003341675, -0.3842020630836487, -1.0813778638839722, -0.11137033998966217, -0.8744145631790161, 0.23753774166107178, 0.13556896150112152, 0.6544238328933716, -0.04135698825120926, 1.4905787706375122, -1.8587874174118042, -0.9007517099380493, -0.9441027641296387, -0.24396400153636932, 0.9722293615341187, 0.7631608247756958, -0.9314415454864502, 1.403490662574768, 0.6124762296676636, -0.4154563248157501, 0.18272826075553894, 0.2006281614303589, -0.5804903507232666, -0.08667203038930893, -0.02322062849998474, 0.6074211597442627, 0.44791534543037415, 1.2310813665390015, 0.7523483037948608, 0.6190113425254822, 0.15615099668502808, 0.15530166029930115, 0.19566386938095093, -0.3221924304962158, -0.08878667652606964, 0.7102275490760803, -0.6343337893486023, -0.6590478420257568, -0.3550434708595276, -0.4574182629585266, -0.901344895362854, 0.7847247123718262, 0.7156475186347961, -1.2228007316589355, -0.045980699360370636, -0.9290323257446289, 0.21501848101615906, -0.7595945596694946, 0.7113049626350403, -0.24159622192382812, 0.7933288216590881, 0.15258751809597015, -0.42978137731552124, 0.5925967693328857, -1.0073370933532715, -0.28691738843917847, 0.5734651684761047, -0.040806885808706284, -0.45883601903915405, 0.512488842010498, 0.47857317328453064, 0.31855201721191406, -1.150072455406189, 1.5261645317077637, 1.380035638809204, -0.09426994621753693, 0.7483645081520081, 0.8045800924301147, -0.14136023819446564, 0.5256736874580383, -0.2658019959926605, -0.33940666913986206, -0.304176390171051, -0.06714016199111938, 0.9903637170791626, 0.7330495715141296, -0.7498666048049927, 0.09072305262088776, -0.36047834157943726, 1.0848990678787231, 1.0642706155776978, -0.6598135232925415, -0.16099384427070618, 0.670750617980957, -0.6074486970901489, 0.28569507598876953, 0.1987873613834381, 0.6051336526870728, 0.3755161762237549, -0.4161669909954071, 0.4457824230194092, 0.2077331393957138, -0.644412636756897, 0.968241274356842, 0.24595829844474792, 0.544776439666748, -0.06144434213638306, -0.33230212330818176, -1.0353655815124512, 0.43321549892425537, -0.9766801595687866, -0.7204427719116211, 0.8687200546264648, -1.8477685451507568, -1.1120378971099854, 0.6267890930175781, 0.5401425957679749, -0.994408130645752, -0.4649863541126251, 0.6498884558677673, -0.1137705072760582, 0.1504022479057312, 1.0487022399902344, -0.18057772517204285, 1.1081181764602661, 0.6400598883628845, -0.05060093104839325, -0.5378751754760742, -0.7475904822349548, 0.23012098670005798, -0.1796731948852539, -0.5093657374382019, 0.20891112089157104, 0.1175280436873436, -0.28726473450660706, -0.5145165324211121, 0.43148064613342285, -0.2543734312057495, -0.03349435329437256, 0.03942296653985977, -1.3528488874435425, -0.43725186586380005, 0.19301098585128784, 0.6741296648979187, -0.6517406702041626, -0.586808443069458, -1.1417121887207031, 0.707994818687439, -0.39386460185050964, 1.5359508991241455, 0.6427711248397827, 0.27056893706321716, 0.12605777382850647, -0.33216971158981323, -0.5302470922470093, -0.6883605718612671, 0.34189462661743164, -0.3145742118358612, 0.932629406452179, 0.21749413013458252, -0.19593755900859833, 0.29518643021583557, -1.2176368236541748, 1.0400023460388184, 0.15257158875465393, -0.24504664540290833, 0.03016090765595436, -0.8915032148361206, -1.2858576774597168, -0.830207109451294, 0.8615857362747192, 1.1013189554214478, 0.35542625188827515, 0.18423809111118317, -0.09903024137020111, -1.3338723182678223, -0.2019055187702179, 0.4360138773918152, 0.12858620285987854, -0.3511219322681427, 1.1756978034973145, 1.5151833295822144, -0.005260765552520752, 0.6898185014724731, -0.09015871584415436, 0.4074516296386719, -1.015485405921936, -0.20388926565647125, 0.2651783227920532, -0.10671534389257431, 0.14043910801410675], [-0.05834423750638962, 1.4030567407608032, -2.1457343101501465, -0.8305323719978333, 1.1332224607467651, -0.11222120374441147, 1.3141006231307983, -0.1624993532896042, 0.1373901069164276, -0.8220735788345337, 0.3131319582462311, -0.14783696830272675, 1.0983092784881592, 0.9908750057220459, 0.17807240784168243, 0.6449163556098938, 0.0972948968410492, -0.9162625670433044, 0.3212772309780121, 1.1492458581924438, 0.031024876981973648, -0.43453922867774963, -0.38937416672706604, 0.08763787895441055, -0.7058014869689941, 0.35716450214385986, -0.930901288986206, -0.12646721303462982, -1.6695878505706787, 0.045231182128190994, 1.0999441146850586, -2.0699479579925537, -0.6766623854637146, 0.37089136242866516, -2.249892234802246, -0.9705498814582825, 1.4916234016418457, 0.42410412430763245, -0.21991093456745148, -0.38877230882644653, 2.1969711780548096, -0.10935699194669724, 0.024740464985370636, -1.2356797456741333, 0.9379743933677673, -0.44691991806030273, 1.3496992588043213, -1.2873486280441284, -0.26932623982429504, -0.5141963958740234, 0.00018590129911899567, -0.33523988723754883, 0.6014680862426758, 0.6782354116439819, 1.1381702423095703, 0.24024204909801483, 1.1241352558135986, 0.11517783999443054, 1.0091100931167603, 0.2960878610610962, 0.5170935988426208, 0.426037460565567, -0.32116350531578064, 1.059327244758606, 0.5061865448951721, 0.5854440331459045, -0.9289119243621826, 0.7973567247390747, -0.5394164323806763, -0.9423935413360596, 1.3676868677139282, -0.32172760367393494, -0.5277689695358276, 0.1074669137597084, -1.149283528327942, 0.304473876953125, 0.7140419483184814, 0.49689528346061707, 0.40541043877601624, 0.27609676122665405, -0.6433628797531128, 0.15319649875164032, 1.26754629611969, -0.5642939209938049, 0.8113132119178772, 0.012103043496608734, 0.7710831165313721, -0.09062431007623672, -0.6599618792533875, 1.284255862236023, 0.21160565316677094, 0.3788922429084778, 0.512221097946167, -0.06132009997963905, -0.1781361997127533, -0.6159057021141052, 0.2926461100578308, -0.5170584321022034, -0.5822202563285828, -0.7979786992073059, -1.3117011785507202, -0.7744312286376953, 0.20234549045562744, -0.03492413088679314, 0.28178104758262634, 1.4168318510055542, -0.1632688194513321, -0.32785844802856445, -0.2894395887851715, 0.7571595907211304, -0.2220185548067093, -0.22132565081119537, -1.0019534826278687, -0.7290068864822388, -0.715481698513031, 1.0300626754760742, 1.613893747329712, -0.6407291889190674, 1.6873656511306763, 0.8002904653549194, -0.5891845226287842, 0.4602260887622833, 0.1488226056098938, -0.08466009050607681, 0.39335885643959045, 0.2930377125740051, -0.21317178010940552, -1.3011178970336914, 0.6430854797363281, -0.16019977629184723, 0.094886913895607, -0.6723697781562805, 0.014865310862660408, 1.3880882263183594, -0.36155515909194946, 1.078591227531433, 0.24957112967967987, -0.877975583076477, -0.3358475863933563, 0.08385276049375534, 0.7065910696983337, -0.4629890024662018, 0.2908177077770233, -0.8470995426177979, -0.1585901379585266, -0.2182924449443817, 0.3466528058052063, -0.8108577728271484, -0.3509202301502228, -0.36851832270622253, -0.49082475900650024, 0.16074751317501068, 0.6865488290786743, 0.6642578840255737, 0.5884276032447815, -0.7635766863822937, 0.11809737235307693, 0.08497173339128494, 0.9192211031913757, -0.0909971222281456, 0.4302833378314972, 0.06701967865228653, -0.43609774112701416, 0.7867843508720398, 0.07719682157039642, -0.3381330668926239, 0.34285545349121094, 1.0749242305755615, -0.24976450204849243, 0.39211639761924744, -0.9890090823173523, -0.011457645334303379, -0.6575134992599487, 0.4305553436279297, 0.5108442902565002, 0.12127707898616791, 2.121689796447754, -0.7070866227149963, -1.0168455839157104, -1.2333821058273315, 0.47941479086875916, -0.03047681599855423, -0.18355591595172882, -0.005387253127992153, 0.6109301447868347, -0.31352871656417847, 0.3523927628993988, -0.5803269743919373, -0.41925984621047974, -0.9537280201911926, -0.7167562246322632, -0.6545226573944092, -0.8042619228363037, -0.02206185832619667, -0.8617234826087952, -0.44429153203964233, 1.489059329032898, -1.5399041175842285, -0.6066287755966187, -0.06720584630966187, -0.3336693346500397, -0.129484161734581, -0.8272806406021118, -0.0611434280872345, -0.050709351897239685, 0.3657403588294983, -1.0503588914871216, 0.5959338545799255, -0.39191824197769165, -0.019412992522120476, 1.5099595785140991, 0.25892722606658936, -0.2396882176399231, 1.2366057634353638, -0.26282796263694763, -0.8299426436424255, 0.5441864132881165, 0.11827827990055084, -0.17472878098487854, 0.334724485874176, 0.7278569936752319, 0.24002279341220856, -0.11588605493307114, -0.1229260116815567, 0.773807168006897, -0.44129878282546997, -0.2838439345359802, -0.6720488667488098, -1.0831443071365356, 0.7081880569458008, -1.1119719743728638, -1.268519639968872, 0.8320491909980774, 0.3446333408355713, -0.33089977502822876, -0.3985756039619446, 0.6783385872840881, 0.4716985821723938, 0.12091153115034103, 0.8500562906265259, 0.47790205478668213, 0.7146545648574829, 0.04343098774552345, -0.08623559772968292, -0.6676040291786194, 0.46446436643600464, 1.4160128831863403, -0.1586659997701645, 0.15233662724494934, 1.320583462715149, 1.0059524774551392, 0.045041441917419434, 0.09731442481279373, -0.13604667782783508, 0.17968280613422394, -0.4107387959957123, -0.7832683324813843, 0.5116569995880127, -0.672582745552063, 0.9912118315696716, 0.7970370650291443, -1.2740199565887451, -0.40816086530685425, -0.3300524353981018, -0.20453855395317078, -0.4384605586528778, -1.116870403289795, -0.860141932964325, -0.31764575839042664, -0.22596094012260437, -0.4244413375854492, 0.29363223910331726, -0.24801860749721527, 0.38196247816085815, -0.6837800741195679, -0.5764856338500977, 0.44929325580596924, 0.5623871684074402, 0.3536224663257599, 1.1793488264083862, -0.0631752461194992, -1.142204999923706, -0.8192005157470703, -0.06815944612026215, 0.6383647918701172, 0.6612981557846069, 0.3130282461643219, 0.5194222331047058, 0.06062314659357071, -0.46012675762176514, 0.0018834518268704414, 0.36117589473724365, -0.12986846268177032, 0.08767874538898468, 0.3751484453678131, 0.586418628692627, 1.334716796875, -1.0815025568008423, -0.36210963129997253, -0.36859583854675293, 0.7045658230781555, 1.23141610622406, 1.3596857786178589, 1.1254909038543701, -0.3660799562931061, 0.11266622692346573, 0.05657259002327919, -1.1495873928070068, -0.22013434767723083, -0.5697259902954102, -0.6421744227409363, -0.24290135502815247, 0.15344475209712982, 0.1943584680557251, -0.2876872718334198, 1.157762885093689, 0.05697783827781677, 1.3052703142166138, 0.925112247467041, 0.13288645446300507, 0.0006813607178628445, 0.260343998670578, 0.6357606649398804, -0.6188869476318359, 0.2600763440132141, 1.0804989337921143, -0.9120773077011108, -0.32321372628211975, 0.012362552806735039, 0.29983648657798767, 0.5933666825294495, 0.5347391366958618, -0.3715500831604004, -1.3417129516601562, -0.9645387530326843, -0.0072553567588329315, 0.7222158908843994, 0.04211811721324921, 0.5735383629798889, -0.605318009853363, -0.06769352406263351, 1.0762951374053955, 0.5634754300117493, -0.8777288198471069, 0.664462149143219, 0.1981414407491684, -0.9744243621826172, 0.09138587862253189, 0.06942103803157806, 0.40372705459594727, -0.7475096583366394, 0.2372308373451233, -0.3722492754459381, -0.32365602254867554, -0.991221010684967, -0.17962174117565155, 0.15075933933258057, 0.37666022777557373, -0.5193056464195251, 0.16514849662780762, 0.6365184187889099, -0.08730949461460114, -0.1442890614271164, -1.3963733911514282, 0.7916886806488037, 0.6163349747657776, 0.6727033853530884, -0.3700330853462219, -0.1265229731798172, 0.3056710362434387, 0.4924427270889282, -0.21709567308425903, 0.06313426792621613, 0.8360872268676758, 0.10162894427776337, -0.3715173006057739, 0.06839447468519211, 0.10101928561925888, -0.40320003032684326, -0.8964757919311523, 0.19455228745937347, 0.15982048213481903, -0.992107093334198, -0.49359944462776184, 1.0252611637115479, 0.06091751903295517, -0.4935014843940735, -0.2897123694419861, 0.1292378306388855, 0.8732553720474243, -0.6404986381530762, 0.58675217628479, -0.8443677425384521, -0.4125153124332428, -0.2885490953922272, -1.0047380924224854, -0.6481664776802063, 0.6530287861824036, -0.3393518924713135, 0.8340125679969788, -0.9321423172950745, -0.1581386774778366, -0.09062442183494568, 0.8225732445716858, 0.21487803757190704, -0.47887539863586426, 0.9217212796211243, 0.3161510229110718, 0.3309164345264435, -0.2058899700641632, 0.4603140950202942, 1.7064812183380127, -0.07857101410627365, -0.7934995293617249, 0.0656944215297699, -0.17428617179393768, 0.21880567073822021, -0.6587491631507874, 0.024413179606199265, 0.4178715646266937, -0.47594118118286133, 0.23819449543952942, 0.06811252981424332, 0.6773688197135925, 1.5710439682006836, 0.6361687183380127, 0.5231505036354065, 0.4991726279258728, -0.62855064868927, -0.5059042572975159, -0.5152631998062134, -0.12051694095134735, -0.11313451826572418, -0.41942501068115234, -0.24361808598041534, 0.2712748348712921, -0.17230086028575897, 0.34862932562828064, 0.2609691619873047, 0.6706796288490295, 0.3716506063938141, -0.1828039437532425, 0.011254319921135902, -0.09421572834253311, 0.8243091106414795, 1.2825604677200317, 0.34377521276474, -0.8468063473701477, -0.4504986107349396, 0.4320845901966095, -0.98753821849823, 0.8566030263900757, 0.9136514067649841, 0.04427992179989815, 1.5135198831558228, -1.9505548477172852, -1.1565897464752197, 0.00041672028601169586, 0.3371349275112152, 0.8065714836120605, 0.22604554891586304, 0.2253936529159546, -0.702822208404541, 0.2637961804866791, 0.11341986805200577, -0.09883271157741547, 0.36889055371284485, -0.43723759055137634, 0.41749003529548645, 0.010573871433734894, -0.42505842447280884, 0.261709064245224, -0.5838168859481812, 0.11066187918186188, 0.038744885474443436, -0.11616725474596024, 0.46293339133262634, 0.6432498693466187, -0.43668586015701294, 0.7900601625442505, -0.6628398895263672, -0.87064129114151, 0.2937523424625397, -0.6292975544929504, 0.37185558676719666, -0.8766478300094604, -0.6953306198120117, -0.3265678286552429, -0.8268474340438843, -0.5358776450157166, 0.3442508280277252, -0.44073936343193054, -0.5451263785362244, -0.7267209887504578, -1.063417673110962, 0.2366528958082199, 0.873683512210846, 1.5573972463607788, -0.01099545881152153, 0.03109915740787983, 1.0179566144943237, 0.5955169796943665, -0.6362314224243164, 0.055809199810028076, 0.580733060836792, -1.1709673404693604, 0.06502240151166916, -1.5494829416275024, -0.760846734046936, 0.9916037321090698, 0.8754846453666687, 0.26218655705451965, 0.01652141846716404, 1.041133165359497, 1.3495126962661743, -0.07622333616018295, -0.36537712812423706, 0.5102626085281372, -0.2593425512313843, 0.9998127818107605, 1.0751103162765503, -0.8937580585479736, -0.5675251483917236, -0.8560096621513367, -1.5142155885696411, 1.6048153638839722, -0.6440255045890808, -1.284563660621643, 1.2201309204101562, 0.3057892322540283, -0.12884092330932617, 0.4399486482143402, 0.31141459941864014, 0.5207465291023254, 0.42566362023353577, -1.2446608543395996, -1.5370631217956543, 0.5960298180580139, 0.22914104163646698, -0.2512657344341278, -0.547931969165802, 0.04155660793185234, -0.5609361529350281, -0.27197304368019104, 0.601101815700531, 0.5339197516441345, 0.4664752185344696, 0.5390278697013855, 0.1266191303730011, -0.24432234466075897, 0.14608651399612427, -1.127828598022461, -0.6115006804466248, -1.1487984657287598, 0.007552495226264, -0.5895237326622009, -0.37011513113975525, -0.6015673875808716, 0.3052741587162018, -0.5798833966255188, -0.2970638871192932, -0.13588733971118927, 0.5401036739349365, 1.1285920143127441, -0.14161694049835205, 0.06422529369592667, 0.10150767862796783, -0.36762601137161255, -0.7842603921890259, -0.3562934994697571, 0.6863501071929932, -1.252402663230896, -0.08741462975740433, 0.07163776457309723, -0.7354849576950073, -0.7956127524375916, 0.15864290297031403, 0.6926437020301819, -1.6807256937026978, -0.7261330485343933, -1.4656989574432373, 0.6750658750534058, 0.9014858603477478, -0.6904168128967285, 0.45395341515541077, 0.18860572576522827, -1.392558217048645, 0.540350615978241, -0.08946097642183304, -1.4413073062896729, -0.9033600091934204, -0.9383701682090759, 0.7609230875968933, -0.5649523735046387, 0.15173768997192383, -0.2429835945367813, 0.7245241403579712, -1.0697530508041382, -1.2703063488006592, -0.6941919326782227, -0.1429549604654312, 1.1360658407211304, 0.7320075631141663, -1.0762417316436768, 0.7489074468612671, 1.15702223777771, -1.11351478099823, -0.8582149744033813, 0.7085060477256775, -0.9060386419296265, 0.27224424481391907, 0.14607731997966766, 1.4077057838439941, 0.4890011250972748, 1.5001652240753174, 0.36630675196647644, 1.0479767322540283, -0.38680407404899597, 0.7174150943756104, -0.5557788610458374, -0.16295507550239563, -0.30835625529289246, 0.44428959488868713, -0.8116782307624817, -0.7589665055274963, 0.349793404340744, -1.2752856016159058, -0.6784266233444214, 0.7806355357170105, 0.7090484499931335, -0.8046033978462219, -0.31211766600608826, -0.9985114932060242, 1.3723480701446533, -0.955328106880188, -0.1849684864282608, 0.38981056213378906, -0.13823896646499634, 0.09213877469301224, -0.7978468537330627, -0.4384614825248718, -1.4158929586410522, 0.11139362305402756, 0.2648802399635315, 0.5297899842262268, -1.264713168144226, 0.9176837801933289, 0.5640580058097839, 0.12446438521146774, -0.7221413850784302, 1.5245912075042725, 1.1420587301254272, -0.32166534662246704, 0.45282867550849915, 0.21957805752754211, 0.024532116949558258, 0.45040953159332275, -0.6458300948143005, -0.9188965559005737, -0.5027326941490173, -0.24311299622058868, 0.44532665610313416, -0.30303704738616943, -0.38675737380981445, -0.2966441810131073, 0.421381413936615, 0.9584967494010925, 1.15960693359375, -0.7355602383613586, 0.24342040717601776, 0.6916313171386719, -0.060797546058893204, -0.3688749372959137, 0.17837844789028168, 0.16762876510620117, 0.3303970396518707, -0.06593859195709229, 0.38085639476776123, 0.6087844967842102, -0.8593494296073914, 1.1644760370254517, 0.2194589227437973, 0.23945200443267822, 0.05561889335513115, -0.44488662481307983, -1.4219211339950562, -0.17366157472133636, -0.434167742729187, -0.959738552570343, 0.24543383717536926, -0.7375503778457642, -1.361695647239685, 0.7385725975036621, 0.18356703221797943, -0.5837218165397644, -0.23116302490234375, 0.3293578028678894, -0.027669234201312065, -0.3162339925765991, 0.7893120646476746, -0.668340265750885, 0.6872183680534363, 0.40073737502098083, -0.007154381833970547, -0.5211486220359802, -0.43814966082572937, 0.5299412608146667, -0.06843844056129456, -0.5951473712921143, -0.30168581008911133, 0.27308064699172974, 0.22404350340366364, -0.5831318497657776, 0.7212226986885071, -0.5959638953208923, 1.107351303100586, 0.30442580580711365, -0.9606050848960876, -0.18661010265350342, 0.9468112587928772, 0.08612821251153946, -0.4212106168270111, -1.0319249629974365, -1.122180461883545, 0.17823833227157593, -0.8814833760261536, 1.0426229238510132, 0.2296162247657776, 0.18405455350875854, 0.567863404750824, -0.37457066774368286, -0.1217082068324089, -0.9207580089569092, 0.3592713177204132, -0.27573591470718384, 0.6522560119628906, 0.0911698043346405, -0.49486953020095825, 0.7036281824111938, -0.657214879989624, 1.0889567136764526, 0.23117861151695251, 0.4493604898452759, 0.1337502896785736, -1.013007402420044, -1.0368527173995972, -0.3032594919204712, 0.7207503914833069, 1.5506458282470703, 0.3629917800426483, 0.06346691399812698, -0.11131203919649124, -1.3755329847335815, -0.31659969687461853, -0.13639743626117706, 0.13196450471878052, -0.7150377035140991, 1.474674105644226, 1.3831121921539307, 0.28773045539855957, 0.734345555305481, 0.41819900274276733, 0.9523268938064575, -0.8569992780685425, 0.06455563753843307, -0.8029426336288452, -0.2032599002122879, 0.465002179145813], [0.7649298906326294, 1.788999080657959, -2.9184887409210205, -0.29270318150520325, 1.4225475788116455, -0.019727982580661774, 1.5280002355575562, -0.31656765937805176, 0.11142715066671371, -0.3208579421043396, 0.6104017496109009, 0.10164498537778854, 0.9967535138130188, 0.8666127324104309, 0.23003143072128296, -0.21471178531646729, 0.45504119992256165, -1.120374083518982, 0.8327619433403015, 1.453359603881836, 0.10470795631408691, -0.5876526832580566, -0.00021814648061990738, 0.21623894572257996, -0.467591792345047, 0.021141771227121353, -1.3035541772842407, -0.24179355800151825, -0.25947296619415283, -0.7598205208778381, 0.8289885520935059, -1.0382084846496582, -0.024228297173976898, 0.9438295960426331, -1.5284804105758667, -0.8537464141845703, 1.549301266670227, 0.7119269371032715, -0.4846794605255127, 0.5323778986930847, 1.8884179592132568, 0.5151450037956238, -0.030796419829130173, -1.5906007289886475, 0.3960539698600769, 0.21823689341545105, 0.7641481161117554, -0.9826048612594604, 0.8137243986129761, -1.1041977405548096, 0.33667507767677307, -0.16436251997947693, 0.5907425284385681, 1.0936872959136963, 1.1929556131362915, 0.6356899738311768, 0.5508998036384583, 0.39521628618240356, 1.1322163343429565, 0.00966356135904789, 0.7894511818885803, -0.1302233636379242, 0.002291870303452015, 0.9295752048492432, 0.3133940100669861, -0.4046248197555542, 0.29114413261413574, 0.5267692804336548, 0.21642687916755676, -0.29590654373168945, 0.34721383452415466, -0.5035958886146545, -0.6085746884346008, 0.03136730566620827, -0.7240525484085083, 1.2151559591293335, 0.3467015326023102, 0.7225939035415649, 0.03515222296118736, 0.189880833029747, -0.3297433853149414, -0.4506710171699524, 0.8086110949516296, -0.10608666390180588, 0.7502685785293579, -0.25432831048965454, 0.05132744461297989, -1.1461734771728516, -0.38922563195228577, 1.6686382293701172, 1.0030415058135986, -0.1269913762807846, 0.8841969966888428, -0.32036229968070984, -0.26119107007980347, -1.032043695449829, 0.5566743016242981, -0.578216016292572, -0.6133445501327515, -0.7162150144577026, -1.1684619188308716, -0.7030330896377563, -0.2826452851295471, 0.24206319451332092, -0.4100399613380432, 1.3748438358306885, -0.13889075815677643, 0.436625212430954, -0.34193333983421326, 0.2856484055519104, -0.6055759787559509, 0.2194850742816925, -0.81331866979599, -0.9185255169868469, -0.8113951683044434, 1.1197887659072876, 1.5448887348175049, -0.22637853026390076, 1.0258562564849854, 0.8994266986846924, -0.5605856776237488, -0.04043186455965042, 0.503770112991333, 0.5643640756607056, 0.1998181939125061, 0.4923709034919739, -0.3505515158176422, -0.9440873265266418, 0.23466065526008606, 0.05077213793992996, 0.19604864716529846, -0.6622889041900635, -0.1811933070421219, 0.43213310837745667, -0.4300004243850708, 0.9877240657806396, -0.31814953684806824, -0.41991108655929565, 0.31034815311431885, 0.03756630793213844, 0.5332611799240112, -0.2449045330286026, -0.7045125961303711, -0.33526137471199036, -0.1693837195634842, -0.3906237781047821, 0.43415313959121704, -0.6928786039352417, -0.6759509444236755, -0.042212266474962234, -1.125152349472046, 0.2576671540737152, 0.3343682289123535, 0.7058567404747009, 0.11312741786241531, -0.3016602694988251, 0.04108665883541107, -0.031236516311764717, 0.3900945782661438, -0.40417858958244324, 0.2245340347290039, -0.23076780140399933, -0.8710676431655884, 1.2353527545928955, -0.0888594463467598, 0.04133593663573265, -0.3366617262363434, 0.11532671749591827, -0.02123914659023285, 0.17652860283851624, -1.0353779792785645, -0.1527732014656067, -0.29276782274246216, 0.6239067912101746, 0.8244901299476624, -0.3366610109806061, 1.7143875360488892, -1.0795564651489258, -0.8307463526725769, -1.8679885864257812, -0.03950582817196846, -0.2245413362979889, 0.11392446607351303, 0.07732724398374557, 0.3839776813983917, -0.28358009457588196, 0.6887021660804749, -0.7651524543762207, -0.036302439868450165, -1.063186764717102, -0.24204085767269135, 0.14443933963775635, -1.2773891687393188, 0.4047932028770447, -0.2874520719051361, -0.62602299451828, 1.1777719259262085, -1.1669716835021973, -0.7358514070510864, -0.6322435736656189, -0.8563474416732788, -0.7730780243873596, -0.7567923665046692, -0.0060807522386312485, -0.4871760904788971, 1.3371868133544922, -1.327787160873413, 1.2293238639831543, -0.3337048292160034, 0.263489305973053, 1.3397216796875, -0.39137202501296997, -0.3587400019168854, 0.9985786080360413, -0.3386635184288025, -1.199121117591858, 0.8093082308769226, 0.035260193049907684, -0.4421186149120331, 0.3131648004055023, 0.10862575471401215, 0.6746772527694702, 0.055717602372169495, 0.3859238028526306, 0.2990764379501343, -0.25865283608436584, -0.377187579870224, -1.1756160259246826, -0.8321683406829834, 0.2305673211812973, -1.1930547952651978, -1.745420217514038, 0.6375439763069153, 0.4805426597595215, -0.830462634563446, -0.026735031977295876, 0.40326979756355286, -0.04018343985080719, 0.3144369423389435, 0.7335614562034607, 0.48281511664390564, 0.7157934308052063, 0.23249344527721405, 0.02305808663368225, -1.3051387071609497, 0.05008307844400406, 1.0197049379348755, -0.3971095383167267, 0.2962726652622223, 1.0931050777435303, 0.8727594017982483, 0.15173235535621643, 0.3611645996570587, 0.10926032066345215, 0.006641260348260403, -1.3061902523040771, -0.8632863759994507, 1.4478081464767456, -0.7440841197967529, 1.0324201583862305, 0.8889323472976685, -1.174421787261963, -0.283749520778656, -0.5854042768478394, -0.05828229710459709, -0.524387776851654, -1.452239751815796, -0.708890438079834, -0.11442901194095612, -0.024664105847477913, 0.19158780574798584, 0.8602243065834045, 0.023687118664383888, 1.0735604763031006, -0.7845498323440552, -0.6511418223381042, -0.4247363805770874, 0.8102670907974243, 0.003507235087454319, 0.260116308927536, -0.22926990687847137, -1.0533331632614136, -0.9838526844978333, -0.0993284061551094, 0.5333366990089417, 0.4282545745372772, -0.08004535734653473, -0.33808761835098267, -0.2068188339471817, -0.7732143998146057, 0.34350526332855225, 0.19881221652030945, -0.2255180925130844, 0.2663724422454834, 0.1875341832637787, 0.8632108569145203, 0.8158404231071472, -0.7670581936836243, -0.608058750629425, -0.037760455161333084, 0.7488715648651123, 0.9433628916740417, 1.0758306980133057, 1.5779849290847778, -0.32605257630348206, 0.2422824203968048, -0.13560591638088226, -0.9833459854125977, -0.3227517902851105, -0.12640787661075592, -1.0849740505218506, -0.9175344109535217, -0.6105300784111023, -0.33185896277427673, -0.7365942001342773, 0.45236191153526306, -0.16744442284107208, 1.1037787199020386, 0.8492027521133423, -0.13178575038909912, -0.46434974670410156, -0.5485309362411499, 0.08596500754356384, -1.1447337865829468, 0.4602298140525818, 0.5893610715866089, -1.3032585382461548, -0.4042223393917084, -0.3787943720817566, -0.5798195004463196, 0.6258765459060669, 0.1810530573129654, -0.6387770175933838, -1.8998093605041504, -0.5830729007720947, -0.18440209329128265, 1.2510621547698975, 0.2963007092475891, 0.31201374530792236, -0.22729529440402985, 0.3313511312007904, 0.06456106901168823, -0.1811196655035019, -1.100935935974121, 0.5309063196182251, -0.4992883801460266, -0.623367428779602, 0.081583671271801, 0.8010326027870178, 0.550737202167511, 0.037955962121486664, -0.10106052458286285, -0.048228248953819275, -0.017388178035616875, -0.5865399837493896, 0.4783990681171417, 0.21272045373916626, 0.42812225222587585, -0.2985179126262665, -0.04198160022497177, 0.8619091510772705, -0.5501019358634949, -0.2247740477323532, -1.0931150913238525, 0.939469039440155, 0.36097243428230286, 0.6837334632873535, 0.22657828032970428, 0.22783242166042328, 0.44026899337768555, -0.6083042621612549, 0.4789629876613617, 0.050749052315950394, 1.460376262664795, 0.5001176595687866, -0.004104627296328545, -0.5171351432800293, 0.2702009975910187, -0.5048893094062805, -0.2613030970096588, 0.2599029541015625, 0.22028273344039917, -0.5697465538978577, -0.7688761353492737, 1.6022204160690308, 0.6906254887580872, -0.3845072388648987, -0.6911123394966125, -0.03232968598604202, 0.9705158472061157, -0.2291860580444336, 0.8642997741699219, -0.9029573202133179, -0.33162346482276917, 0.0634697824716568, -0.8660050630569458, 0.08635620772838593, 0.4579622447490692, 0.09870874881744385, 0.3650095462799072, -0.8677773475646973, 0.11398164927959442, -0.40730929374694824, 0.8879374861717224, 0.5868328809738159, 0.21641170978546143, 0.8159895539283752, -0.18793001770973206, 0.7820659875869751, -0.29969194531440735, 0.6090469360351562, 2.075723886489868, -0.7064242362976074, -0.25094693899154663, 0.14464670419692993, -0.2441866248846054, -0.3792911767959595, -0.8182306885719299, -0.7307117581367493, 0.35434550046920776, -0.15125125646591187, -0.32453685998916626, 0.20077991485595703, -0.058057449758052826, 1.5220133066177368, 0.534385085105896, 0.5265719294548035, 0.2759665548801422, -0.5078922510147095, -1.3723456859588623, 0.32370421290397644, 0.11455870419740677, 0.19879035651683807, -0.3820223808288574, -0.3977872133255005, -0.29354625940322876, -0.08950025588274002, 0.7597594261169434, 0.7744836807250977, 0.9506756663322449, 0.2532402276992798, 0.030346784740686417, -0.6022735834121704, 0.01683870330452919, 0.5559051036834717, 1.4833264350891113, 0.16561122238636017, -0.14284126460552216, -0.7698420882225037, 0.9950348138809204, -0.6108720302581787, 0.2249009758234024, 0.9762764573097229, 0.13444575667381287, 1.0320898294448853, -2.269914150238037, -0.7117684483528137, 0.40676939487457275, 0.31669747829437256, 0.4008035361766815, 0.021691767498850822, -0.19365578889846802, -0.7496290802955627, 0.7600564956665039, 0.8411781787872314, -0.049773648381233215, 0.2603763937950134, 0.13120806217193604, 0.5405662059783936, 0.40685662627220154, -0.7032308578491211, 0.5766550302505493, -0.6531403064727783, -0.09421301633119583, -0.27045923471450806, -0.6029985547065735, 0.8200799226760864, 0.03031783364713192, -0.25702357292175293, 0.4631614685058594, 0.07294027507305145, -0.5830540657043457, 0.26043587923049927, -0.39671590924263, 0.7877953052520752, -0.08420762419700623, -0.018989982083439827, -0.21594829857349396, -0.8229214549064636, -0.6843816041946411, 0.49208346009254456, -0.3942487835884094, 0.07587895542383194, -0.6587816476821899, -1.21317458152771, 0.11107510328292847, 1.182601809501648, 1.2074514627456665, 0.3274010121822357, 0.48503318428993225, 1.012398600578308, 0.8759448528289795, -0.9899570941925049, 0.1674586981534958, 0.009997253306210041, -0.4813814163208008, -0.31349265575408936, -1.8619085550308228, -1.027815818786621, 0.07076497375965118, 0.3194473385810852, 0.37598514556884766, -0.21928220987319946, 1.1681057214736938, 1.3821872472763062, -0.12997518479824066, -0.11965181678533554, 0.41240453720092773, -0.9089982509613037, 0.6711562871932983, 0.9118812680244446, -0.7013615369796753, -0.6408010125160217, -0.7238319516181946, -1.3130849599838257, 0.9198159575462341, -0.7453495860099792, -0.6224978566169739, 0.7960767149925232, -0.29457780718803406, -0.05270287021994591, 0.7733380794525146, -0.15312758088111877, 0.5765426754951477, 0.18820726871490479, 0.460396409034729, -1.2803139686584473, 0.532440721988678, 0.42477548122406006, 0.019623223692178726, -0.26537010073661804, 0.410888671875, 0.37746432423591614, -0.2674833834171295, 1.0386117696762085, 0.32499900460243225, 0.4768456220626831, 0.3865624666213989, 0.7548834085464478, -0.528952956199646, 0.5719911456108093, -1.1751399040222168, -0.3987760841846466, 0.012847216799855232, 0.47900480031967163, -0.37691953778266907, -0.34993472695350647, -0.32410019636154175, -0.6485702395439148, -0.6574475765228271, -0.2650514841079712, -0.10481692850589752, 1.2815850973129272, 0.5859438180923462, 0.22029860317707062, 0.14860230684280396, -0.657098650932312, -0.7113957405090332, -0.5144134759902954, -0.035175904631614685, 0.719661295413971, -0.6904153227806091, 0.12061644345521927, -0.15523932874202728, -0.25153809785842896, 0.06154574826359749, -0.5576533079147339, 0.36956101655960083, -1.6880918741226196, -1.3125101327896118, -0.3171151876449585, 0.22512038052082062, 1.2361078262329102, -0.6463137269020081, 0.95747309923172, 0.897474467754364, -1.1297311782836914, -0.0037705316208302975, -0.1306229680776596, -1.405391812324524, -0.2897810935974121, -1.1941112279891968, 1.026729941368103, -0.27070340514183044, 0.216609925031662, 0.3451943099498749, 1.51168692111969, -1.6169171333312988, -0.5984278321266174, -1.0247989892959595, -0.44979819655418396, 0.8114793300628662, 1.2099698781967163, -1.1241719722747803, 1.3682693243026733, 0.7188302874565125, -0.3093923330307007, -1.0641435384750366, 0.07463899999856949, -0.5108160376548767, -0.1446484625339508, -0.2512814998626709, 1.0432040691375732, -0.6081655621528625, 1.0512865781784058, 0.009651381522417068, 0.929128885269165, 0.3800163269042969, 0.933326244354248, -0.25593963265419006, -0.3588600158691406, -0.034279465675354004, 0.8140554428100586, -0.8968501091003418, -0.6277955174446106, 0.13175490498542786, -1.239479422569275, -0.894950270652771, 0.5051103830337524, 0.7479070425033569, -0.7496216297149658, -0.000650208443403244, -0.936077892780304, 0.49262988567352295, -0.9852553009986877, 0.45406389236450195, -0.16732048988342285, 0.3738120198249817, 0.22529864311218262, -0.34382903575897217, -0.11423343420028687, -1.2194912433624268, 0.03410853073000908, 0.8089070320129395, 0.08062795549631119, -1.1039282083511353, 0.9223492741584778, 0.7828563451766968, 0.43006712198257446, -0.13609789311885834, 0.9571931958198547, 1.1141078472137451, -0.29280537366867065, 0.02294270135462284, 0.4880044460296631, 0.24064232409000397, 0.7998490929603577, -1.202858328819275, -0.3173322081565857, -0.7360274195671082, -0.23600554466247559, 0.579958975315094, 0.07902868092060089, -0.4739755392074585, -0.17855314910411835, -0.6174530982971191, 0.9631153345108032, 0.6526080369949341, -0.7611971497535706, -0.2846704423427582, 1.2197093963623047, -0.4676941931247711, 0.1801675707101822, 0.13477826118469238, 0.4590255916118622, -0.05847710371017456, -0.2983446419239044, 0.6570658087730408, 0.5962428450584412, -0.47230878472328186, 0.5786316990852356, 0.34093236923217773, 0.32961806654930115, -0.08915849030017853, -1.0186647176742554, -1.4437885284423828, -0.4112415313720703, -0.7324104309082031, -0.8384053111076355, 0.15228936076164246, -1.0576351881027222, -1.5742892026901245, 0.6837036609649658, -0.07611217349767685, 0.046257536858320236, -0.11878127604722977, 0.6725884079933167, -0.31561875343322754, -0.4671546220779419, 1.190469741821289, -0.09657624363899231, 1.0279052257537842, 0.6279085278511047, -0.19304785132408142, -0.7429148554801941, -0.594127893447876, 1.04942786693573, -0.4390895664691925, -0.7284371256828308, -0.235964834690094, -0.17446596920490265, -0.36776039004325867, -0.5546767711639404, 0.3561515212059021, 0.20030325651168823, -0.0015277992933988571, 0.1282835453748703, -1.1230182647705078, 0.3170824348926544, 0.17998939752578735, 0.4504164159297943, -0.60648512840271, -0.7378005981445312, -0.7623894214630127, -0.008800026029348373, -0.807974100112915, 1.156101942062378, -0.09960633516311646, 0.598181426525116, 0.6201891899108887, -0.8421068787574768, -0.3956187665462494, -0.9390915632247925, 0.4583984911441803, -0.7200387120246887, 1.1083587408065796, 0.2112545669078827, -0.3280015289783478, 0.32232773303985596, -0.4394013583660126, 0.2976283133029938, -0.09398115426301956, 0.10046706348657608, 0.242203027009964, -1.0439541339874268, -0.9188016057014465, -0.742251455783844, 0.9838067293167114, 1.4404637813568115, -0.02915259450674057, 0.13176871836185455, 0.13340993225574493, -1.2863736152648926, 0.29271337389945984, 1.2055543661117554, 0.200711190700531, -0.22501863539218903, 1.6028951406478882, 1.965933084487915, 0.5996918082237244, 0.7524111866950989, 0.15390019118785858, 0.49131375551223755, -0.6934048533439636, -0.4128924608230591, -0.853878915309906, 0.11510711908340454, -0.07294754683971405], [0.06204887852072716, 1.5870583057403564, -2.197740077972412, -0.815377414226532, 1.787556767463684, 0.5712597370147705, 1.3746463060379028, 0.0833883211016655, 0.3262857496738434, 0.03570793941617012, -0.16422316431999207, -0.1986987292766571, 0.7123410701751709, 1.557588815689087, -0.22595860064029694, 0.32370826601982117, 0.34453284740448, -0.5159624814987183, 0.5455778241157532, 0.7386167645454407, 0.2922239601612091, -0.2003261148929596, -0.18809300661087036, 0.24058525264263153, -0.8959566950798035, 0.39835524559020996, -1.1701083183288574, -0.17712272703647614, -0.3723895847797394, -0.49709779024124146, 1.6569548845291138, -0.9837402105331421, -0.08954859524965286, -0.5508435368537903, -1.211328148841858, -0.7961907982826233, 2.0705323219299316, 1.6596791744232178, 0.774434506893158, 0.4541272222995758, 1.6636091470718384, 0.34000566601753235, -0.5862997174263, -1.4295635223388672, -0.42517584562301636, 0.0005143336020410061, 1.0325570106506348, -0.76048344373703, 0.15905538201332092, -0.7691909670829773, 0.35255274176597595, -0.2479877769947052, 1.3425781726837158, 0.615329384803772, 0.8678987622261047, 0.11988801509141922, 0.5690689086914062, 0.07347499579191208, 0.9339346289634705, -1.0124101638793945, 0.43483322858810425, 0.43527430295944214, 0.4597046673297882, 0.8874797224998474, -0.28107744455337524, 0.04604392498731613, -0.3762058615684509, 0.6308879256248474, 0.03371210768818855, -1.0710219144821167, 0.6832874417304993, 0.8466656804084778, -0.8563187122344971, 0.1740349382162094, -1.2703591585159302, 0.2584584653377533, 0.9879387617111206, 0.7018166780471802, -0.003941149916499853, 0.48092517256736755, 0.23685339093208313, 0.07534027099609375, 0.3236187994480133, -0.38027623295783997, 0.6266953349113464, 0.22675517201423645, -0.09513083845376968, -0.27814170718193054, -0.5512647032737732, 1.5078504085540771, 0.20215821266174316, -0.5258254408836365, 0.4122827351093292, -0.7838091254234314, -0.48146331310272217, -0.5746022462844849, -0.02592511475086212, -0.17106811702251434, -1.029325008392334, 0.02347715012729168, -0.7839526534080505, -0.6144102215766907, -0.1453535258769989, 0.19533631205558777, 0.2289370894432068, 1.1965142488479614, 0.24065643548965454, -0.08970421552658081, -0.6539661288261414, -0.20837359130382538, -0.5886841416358948, -0.0981956273317337, -0.406461626291275, -0.45535019040107727, -0.40618836879730225, -0.07360796630382538, 1.391653299331665, -0.6264008283615112, 0.9840452671051025, 0.7389591932296753, -0.6470722556114197, 0.2508963942527771, -0.7383183836936951, 0.5276336073875427, 0.974664568901062, -0.020846327766776085, -0.478349506855011, -0.44745293259620667, 0.7244747281074524, -0.4766346216201782, 0.8985998034477234, 0.561377763748169, 0.15460462868213654, 1.3951767683029175, -0.11189347505569458, 1.4042446613311768, 0.1037742868065834, -0.5226854681968689, -0.07646173238754272, -0.2500935196876526, 0.3644305467605591, 0.34439414739608765, -0.16273219883441925, -0.3321015238761902, 0.09236102551221848, -0.9132096767425537, 0.11289766430854797, -0.11907025426626205, -0.7319155335426331, 0.4535539746284485, -0.5895378589630127, 0.3621942102909088, 0.3159366846084595, 0.27808690071105957, 0.007532465737313032, -0.159019336104393, 1.1274299621582031, 1.0042818784713745, 0.25823232531547546, -0.14291702210903168, 0.505852460861206, 0.27881014347076416, -0.8280451893806458, 0.44352221488952637, 0.13734377920627594, -0.8271170854568481, 0.5196580290794373, 0.3567308187484741, 0.30166128277778625, 0.550436794757843, -0.9004128575325012, -0.14962950348854065, -0.36278367042541504, 0.6600422263145447, 0.6441190838813782, 0.3554975688457489, 1.5701090097427368, -1.4421749114990234, -1.5898082256317139, -0.8030487895011902, 0.7981928586959839, -0.33588624000549316, 0.5211395621299744, -0.2770162522792816, 0.6563820242881775, -0.43088677525520325, -0.24326901137828827, -0.06974251568317413, -0.23739077150821686, -1.2992284297943115, -0.5343078970909119, -0.14865772426128387, -0.7694333791732788, 0.7770494222640991, -0.0935342088341713, -0.8966630101203918, 0.44983866810798645, -0.8569076657295227, -0.4871008098125458, 0.17251139879226685, -0.19445635378360748, -0.12491864711046219, -0.457915335893631, 0.35610806941986084, -0.4954206049442291, 0.7354978919029236, -1.0449302196502686, 0.6862406730651855, -0.9932369589805603, 0.2263426035642624, 0.39382752776145935, 0.22205320000648499, 0.16975615918636322, 0.5178519487380981, -0.18174000084400177, -1.2247568368911743, 0.937509298324585, 0.8535733819007874, -0.43294602632522583, -0.14123855531215668, 0.5483008623123169, -0.08978033065795898, 0.6541629433631897, 0.13937868177890778, 1.0111829042434692, -0.29060056805610657, -1.0617619752883911, -0.8834639191627502, -0.46885257959365845, -0.02899288572371006, -0.26281607151031494, -1.3211122751235962, 0.9754411578178406, 1.0495649576187134, -0.6507487297058105, -0.22815540432929993, -0.2642522156238556, 0.06865733116865158, 0.1497565358877182, 0.956375777721405, 0.3996836245059967, 0.8657018542289734, -0.8889930248260498, -0.09339144825935364, -0.521271288394928, 0.1107935979962349, 0.7937599420547485, -0.7046820521354675, 0.581644594669342, 1.6205196380615234, 0.5545176863670349, 0.48280206322669983, 0.11948936432600021, -0.060140460729599, 0.6728676557540894, -1.0062984228134155, -0.3996104300022125, 0.32634252309799194, -0.3325912654399872, 1.0509059429168701, 0.40656155347824097, -0.8964855074882507, -0.46500545740127563, 0.4385124146938324, -0.07973970472812653, -0.6882026791572571, -0.39123615622520447, -0.583853006362915, -0.39276397228240967, -0.6185535788536072, -0.4914673864841461, 0.5687764286994934, -0.0104399798437953, 0.30942246317863464, 0.030717922374606133, -0.04632445052266121, -0.2156866043806076, -0.46679815649986267, -0.48884496092796326, 0.3249758780002594, -0.6094968914985657, -0.41376322507858276, -0.8234266042709351, -0.001466425135731697, 0.7679235339164734, 0.023325102403759956, -0.6402032971382141, -0.06487990915775299, 0.14820018410682678, 0.129316046833992, -0.18084150552749634, 0.45309364795684814, -0.4753357470035553, -0.5320566892623901, -0.5220423936843872, 0.3183477818965912, 0.9465246796607971, -0.3447416424751282, -0.962287187576294, -0.6249778270721436, 1.108217477798462, 1.4572621583938599, 0.6886483430862427, 1.8692243099212646, -0.37850168347358704, 0.19180573523044586, 0.0644165575504303, -0.22867947816848755, -0.26150527596473694, -0.4347996115684509, -0.6920140981674194, -0.006473305635154247, -0.20247168838977814, -0.2946324050426483, 0.13650570809841156, 0.608345627784729, -0.9197483062744141, 0.7480505108833313, 0.8894835114479065, -0.11755120009183884, -1.0621525049209595, 0.009773535653948784, -0.3945102393627167, -1.1168006658554077, 0.752185046672821, 0.6582348942756653, -0.7672545909881592, -0.8689171671867371, -0.40245941281318665, -0.7326241135597229, 1.1128515005111694, -0.08468522131443024, 0.15625359117984772, -0.9075300097465515, -0.7263091802597046, -0.04182606190443039, 0.7231494784355164, 0.42050614953041077, 0.18795229494571686, -0.9479635953903198, 0.052986029535532, 0.7383019924163818, -0.386752724647522, -0.7632211446762085, 0.7095959186553955, -0.6022753715515137, -1.0745245218276978, -0.16595521569252014, 0.705316960811615, 0.17541687190532684, -0.7530069351196289, 0.4345390200614929, -0.49686577916145325, -0.9425789713859558, -0.9108945727348328, 0.1950511336326599, 0.6130893230438232, 0.1710738092660904, 0.4608457088470459, -0.34655946493148804, 1.5476670265197754, -0.24423380196094513, 0.28260722756385803, -1.7867189645767212, 0.7961452007293701, 0.27412623167037964, 1.3497868776321411, -0.13799400627613068, 0.605147123336792, -0.3051154911518097, 0.13304363191127777, -0.11740391701459885, -0.02681855298578739, 1.0002446174621582, 0.09792715311050415, 0.21001265943050385, -0.10012707114219666, 0.07501644641160965, -0.10765640437602997, -0.749387264251709, -0.025609249249100685, 0.10241317003965378, -0.7141037583351135, -0.6300808191299438, 0.7136898636817932, 0.19698311388492584, -0.05368522182106972, -0.8394415974617004, -0.47037431597709656, 1.5364110469818115, 0.48089757561683655, 0.6487493515014648, -0.6756353974342346, 0.1634785681962967, -0.09505820274353027, -0.8030924201011658, -1.004244327545166, 0.2126605063676834, -0.468701034784317, 0.03944066911935806, -0.656295895576477, 0.06646137684583664, -0.6581440567970276, 0.32619723677635193, 0.4409022629261017, -0.34045571088790894, 0.17227385938167572, -0.27933722734451294, 0.5308183431625366, 0.028022730723023415, -0.1246139258146286, 1.2358328104019165, -0.28534573316574097, -0.8326671123504639, -0.2511610686779022, 0.04365971311926842, 0.3252578377723694, -0.48831912875175476, -0.25742265582084656, 0.1598876565694809, -0.7256737351417542, 0.05340591445565224, -0.14039146900177002, -0.07283851504325867, 0.6054096221923828, 0.6857656240463257, 0.31838807463645935, 1.099504828453064, -0.24669653177261353, -1.343522310256958, 0.05601642653346062, 0.06564506143331528, -0.45997706055641174, -0.5886663198471069, 0.22022180259227753, 0.5537390112876892, -0.027166126295924187, 0.5712268352508545, -0.08586238324642181, 0.6617331504821777, 0.12579859793186188, 0.1987229585647583, 0.21065454185009003, -0.14738206565380096, 0.7452875375747681, 1.384469747543335, 0.3597528636455536, 0.22024060785770416, -1.285284161567688, 0.07004119455814362, -1.6260225772857666, 0.39775681495666504, 1.2608317136764526, 0.33750006556510925, 1.5414917469024658, -2.166081428527832, -0.6168950200080872, 0.5424873232841492, -0.019624285399913788, 0.942021369934082, 0.7209579944610596, 0.02523627132177353, -0.37599581480026245, 0.5378032326698303, -0.06851731985807419, -0.1821594387292862, -0.06175495684146881, 0.10192815959453583, 0.05869830399751663, 0.24941381812095642, -0.906801164150238, 1.0529192686080933, -0.6524569392204285, -0.006933500990271568, -0.5831260681152344, 0.14530199766159058, 0.2499600052833557, 0.5040023922920227, 0.3071182370185852, 1.2203552722930908, -0.15642906725406647, -0.7787206768989563, 0.640599250793457, -0.6869986653327942, -0.004355519078671932, 0.37365207076072693, -0.6298232674598694, -0.3120027482509613, -1.0472612380981445, -0.5576255917549133, 0.9261888861656189, -0.20733845233917236, -0.4341375231742859, -0.6541250348091125, -1.1960827112197876, -0.013785925693809986, 0.9097804427146912, 1.3356497287750244, 0.27632835507392883, 0.7621346712112427, 0.42081451416015625, 0.3034282326698303, -0.0886441171169281, 0.029349002987146378, 0.7156895995140076, 0.533129096031189, -0.6642573475837708, -1.7362865209579468, -0.38232889771461487, 0.4877472221851349, 0.9739557504653931, -0.21050965785980225, -0.32157137989997864, 1.3680931329727173, 1.1160660982131958, -0.5152722001075745, -0.9339266419410706, 0.060349348932504654, -0.4549083709716797, -0.3339710533618927, -0.03717472404241562, -0.26997146010398865, 0.21471743285655975, -0.9644228219985962, -1.1670606136322021, 0.8714813590049744, -0.07733067870140076, -1.257709264755249, 0.5602302551269531, 0.04552784189581871, 0.4305706024169922, 0.9520360827445984, -0.38123995065689087, 0.47388505935668945, 0.43041783571243286, -0.6302927732467651, -0.5268321633338928, 0.29322367906570435, -0.10649753361940384, 0.5792675614356995, -0.3081035017967224, 0.7926540970802307, 0.3106362521648407, -0.8108478784561157, 0.5654343962669373, -0.10899920761585236, 0.9250665307044983, 1.1556521654129028, 0.4742942750453949, -0.909605860710144, 0.3010466694831848, -0.688258707523346, -0.9934941530227661, -0.23318630456924438, 0.7569024562835693, 0.481847882270813, -0.7598573565483093, -0.8403050303459167, -1.1059519052505493, -0.30429404973983765, -0.3145449459552765, -0.050614550709724426, 1.1710028648376465, -0.14420989155769348, 0.01723511703312397, 0.2204388678073883, -0.9499789476394653, -0.09149115532636642, -0.11800152063369751, -0.2848324775695801, 0.7051540613174438, -1.7423492670059204, 0.27394306659698486, 0.22324076294898987, -0.9163771867752075, 0.11853030323982239, -0.4228760600090027, 0.1323932260274887, -1.2287585735321045, -1.195296287536621, -1.4172279834747314, -0.44465944170951843, 1.0780465602874756, -0.2883869409561157, 0.6343216896057129, 0.5045567750930786, -1.820508360862732, -0.02652411349117756, 0.5287811160087585, -0.8893095254898071, 0.012805703096091747, -1.2291440963745117, 1.0950441360473633, -0.7106657028198242, 0.3221604824066162, -0.25627946853637695, 1.348434567451477, -1.2781028747558594, -1.3663467168807983, -0.8321942090988159, -0.4437393248081207, 0.6963427662849426, 0.6712966561317444, -0.719488799571991, 1.6721069812774658, 0.30987846851348877, -0.7310181260108948, -0.164558544754982, 0.4259483516216278, -0.8332686424255371, 0.7345494627952576, 0.6123800277709961, 0.1984986662864685, 0.24427473545074463, 1.4760823249816895, 0.1581614762544632, 0.6615937948226929, 0.10936097800731659, -0.08429154008626938, -0.6566863656044006, -0.5167722105979919, -0.35216236114501953, 0.5431832075119019, -1.1111305952072144, -0.4590502679347992, -0.124606654047966, -1.0589027404785156, -1.2508050203323364, 0.7770743370056152, 0.6759531497955322, -0.8429432511329651, -0.3215523064136505, 0.13035903871059418, 0.46183761954307556, -0.23197056353092194, 0.4222649037837982, 0.13767486810684204, 0.21037504076957703, 0.058990538120269775, 0.23111291229724884, 0.061741903424263, -1.5755095481872559, 0.5652080774307251, 0.170313760638237, -0.3496706783771515, -0.570359468460083, 0.7364986538887024, 1.015071153640747, -0.5587148666381836, -0.6784982085227966, 1.1496975421905518, 1.2814997434616089, 0.09231019020080566, -0.28178489208221436, 0.3858371078968048, 0.1505327820777893, 0.2329632043838501, -0.42644912004470825, 0.008756287395954132, -0.7568266987800598, 0.6594511866569519, 1.0051039457321167, -0.46443432569503784, -0.582373857498169, 0.17600701749324799, -0.9186302423477173, 0.44086378812789917, -0.05952445790171623, -0.7383261322975159, 0.24310851097106934, 1.0580650568008423, -0.39179837703704834, -0.8062569499015808, 0.16208021342754364, 0.24718120694160461, 0.3090549409389496, 0.08806972950696945, 0.39665284752845764, 0.8874596357345581, -0.9623028635978699, 1.1098177433013916, 0.6110259294509888, 0.2768884003162384, 0.3870771825313568, -0.8862575888633728, -0.9334453344345093, 0.21042580902576447, -0.5376614928245544, -1.4715325832366943, 0.32711878418922424, -1.221156358718872, -0.7625246047973633, 0.728792130947113, 0.004282377660274506, -0.6230817437171936, 0.2509250342845917, -0.08445841073989868, -0.20222586393356323, 0.6771011352539062, 0.13125406205654144, -0.8041852116584778, 0.7980987429618835, 0.3380488157272339, -0.10474103689193726, -1.3167129755020142, -0.4905721843242645, 0.4117940366268158, -0.024858852848410606, 0.04251778870820999, 0.050970740616321564, 0.28216949105262756, 0.06925870478153229, -1.081913709640503, 0.5049138069152832, -0.3391529619693756, 0.042411964386701584, -0.3183448016643524, 0.04279042035341263, 0.34928348660469055, 0.33285778760910034, 0.13877949118614197, -0.050036605447530746, -0.859413206577301, -0.6333263516426086, 0.41736477613449097, -0.05709018558263779, 1.2501614093780518, 0.09076634049415588, 0.4664826989173889, 0.5777735710144043, -0.5318470001220703, 0.03752706199884415, -0.21968898177146912, 0.18416941165924072, 0.1008542850613594, 0.7244275808334351, 0.009672826156020164, -0.4533982276916504, -0.29925477504730225, -1.3295783996582031, 0.2299225777387619, 0.08546492457389832, 0.007780059706419706, 0.031828511506319046, -0.9471961855888367, -0.7966296672821045, -0.6388148665428162, 0.6870354413986206, 0.656091034412384, 0.35857924818992615, 0.34986191987991333, -0.33258289098739624, -0.8392834067344666, -0.26944178342819214, -0.3931373059749603, 0.1516517996788025, -0.2576594054698944, 0.9613135457038879, 1.297977089881897, 0.2463158220052719, 0.7020904421806335, -0.15577605366706848, 0.6745094060897827, -0.5391032695770264, 0.08953182399272919, -0.7989265322685242, 0.41226017475128174, 0.44150301814079285], [-0.010241042822599411, 2.1648643016815186, -1.885530948638916, -0.42769137024879456, 1.346191167831421, 0.6056143045425415, 1.0538843870162964, 0.11919913440942764, 0.3910144567489624, -0.0662146657705307, 0.15360993146896362, -0.3389971852302551, 0.36938953399658203, 1.4806588888168335, 0.6382160186767578, 0.19623060524463654, 0.9016548991203308, -0.4901956021785736, 0.6603131890296936, 0.6951541900634766, -0.15311309695243835, -0.7828516364097595, -0.09769643843173981, -0.038208507001399994, -0.3905363380908966, 0.7340908646583557, -0.5217078924179077, -0.5856107473373413, -0.913671612739563, -1.1382116079330444, 1.7456573247909546, -0.5212833881378174, 0.4573914408683777, -0.32038626074790955, -0.6572132706642151, -0.9199526906013489, 1.5029864311218262, 1.1847567558288574, 0.7749277353286743, 0.1898954063653946, 1.5586538314819336, 0.24499525129795074, -0.32941934466362, -1.378240704536438, 0.8911489248275757, 0.015323124825954437, 1.3694785833358765, -1.2175098657608032, 0.006256274878978729, -0.6316511034965515, 0.5815264582633972, -0.43516427278518677, 0.9993395805358887, 0.1114826574921608, 0.9292066693305969, 0.05562353506684303, 0.12109687924385071, -0.01646345853805542, 1.0063613653182983, -1.0989595651626587, 0.4105852246284485, 0.08256137371063232, 0.6801915168762207, 0.2761284410953522, 0.161187544465065, 0.20464304089546204, -0.10752283036708832, 0.49029189348220825, -0.2868117392063141, -1.0573512315750122, 0.9274579882621765, -0.002363576553761959, -0.7344765663146973, -0.1766527146100998, -0.8018492460250854, 0.12357000261545181, 0.6387993097305298, 0.43036797642707825, 0.418678879737854, 0.41350892186164856, -0.628558337688446, 0.04146683216094971, 0.8925182819366455, -0.7438221573829651, 0.7534863352775574, 0.15598411858081818, 0.24533793330192566, -0.4478723406791687, -0.37116187810897827, 1.3117631673812866, 0.3332065939903259, -0.747901439666748, 0.3416909873485565, -0.7293687462806702, 0.3034079074859619, -0.7154933214187622, 0.04034269228577614, -0.33495816588401794, -0.8845378160476685, 0.0012044096365571022, -1.0804505348205566, -0.8745190501213074, 0.20568802952766418, 0.24902689456939697, -0.06554558128118515, 1.3160985708236694, 0.45492225885391235, 0.15752477943897247, -0.3490527868270874, -0.43088001012802124, -0.7215352654457092, 0.12749949097633362, -0.3366679549217224, -1.2956831455230713, -0.9753193855285645, 0.09063008427619934, 1.0806035995483398, 0.06087864190340042, 0.43480977416038513, 0.9789334535598755, -0.5617266297340393, 0.3573119044303894, -0.457105427980423, 0.9553398489952087, 0.46986058354377747, 0.5267769694328308, -0.3168569803237915, -0.7139930725097656, 0.5353124737739563, -0.019324244931340218, 0.2615100145339966, 0.5654380321502686, -0.30640146136283875, 1.4000080823898315, -0.8471556901931763, 1.1610136032104492, 0.6065255999565125, -0.7673601508140564, -0.1752629280090332, -0.8962333798408508, 0.5419901609420776, -0.3954899311065674, -0.04314534366130829, -0.33165475726127625, -0.12945771217346191, -0.9020587205886841, 0.6699749827384949, -0.4286389648914337, -0.7408718466758728, 0.27140265703201294, -0.9977108240127563, 0.620700478553772, -0.0432107113301754, 0.8606759309768677, -0.25056445598602295, -0.3587226867675781, 0.9323186278343201, 0.9285523891448975, 0.3673802614212036, -0.5322988629341125, 0.7373254299163818, -0.1467653214931488, -1.283445119857788, 0.5767792463302612, -0.31320035457611084, -0.2778857350349426, 0.2899284362792969, 0.5375611782073975, 0.04255770891904831, 0.9457060098648071, -1.0951861143112183, -0.6609740853309631, -0.19927598536014557, 0.5238093733787537, 0.584186851978302, 0.26165926456451416, 1.0406461954116821, -1.1962183713912964, -1.806290864944458, -0.5292739868164062, 0.5259855389595032, -0.6223422288894653, 0.34119969606399536, 0.01022525504231453, 0.7614277601242065, -0.26200565695762634, 0.5047796964645386, -0.2997918426990509, -0.249374121427536, -1.3813828229904175, -0.5747740864753723, -0.3914102017879486, -0.8295801281929016, 0.03607943654060364, 0.0597207210958004, -0.8382307887077332, 0.44981685280799866, -0.9248909950256348, -0.9170467257499695, 0.3682403266429901, -0.11839042603969574, 0.09245698899030685, -0.49379825592041016, 0.2809184491634369, -0.5083650350570679, 0.14057737588882446, -1.2614673376083374, 1.0773805379867554, -0.17345094680786133, 0.3639886677265167, 1.2475453615188599, 0.2573327422142029, -0.31623125076293945, 0.371815025806427, -1.061187982559204, -1.6497284173965454, 1.119310736656189, 0.4357907176017761, 0.2164679318666458, 0.650973379611969, 0.11818414181470871, 0.28791457414627075, 0.29048487544059753, -0.03697161749005318, 1.3048230409622192, -0.5468220114707947, -0.7879031896591187, -0.9940065145492554, -0.5562469959259033, 0.022734470665454865, -0.4947757124900818, -1.2167340517044067, 0.3602477014064789, 0.9805267453193665, -0.40303629636764526, 0.20957282185554504, -0.07198142260313034, -0.4324989914894104, 0.741487443447113, 0.5849097371101379, 0.2146264612674713, 0.9195685386657715, -0.7625578045845032, -0.43886932730674744, -0.35806143283843994, 0.1291569173336029, 0.9169811606407166, -0.7001651525497437, 0.165569007396698, 1.2192260026931763, 1.3539798259735107, -0.2564195394515991, -0.2864397168159485, 0.05221430957317352, -0.06178918480873108, -0.6524977684020996, -0.8791611194610596, 0.6819795370101929, -1.3070099353790283, 1.2785561084747314, 1.059221625328064, -1.0022319555282593, -0.3463587164878845, 0.2050173431634903, 0.0737590342760086, -0.5810118913650513, -0.7554621696472168, -0.24305087327957153, -0.04140903055667877, -0.12526564300060272, -0.2253609150648117, 0.7924027442932129, -0.10986404120922089, 0.9508999586105347, -0.10757742822170258, -0.06776552647352219, -0.8045316338539124, 0.0017716484144330025, 0.11599977314472198, 0.16307125985622406, -0.4002949893474579, -1.1566455364227295, -0.34451788663864136, -0.5269665122032166, 0.8155995607376099, 0.06936714053153992, 0.08109275996685028, 0.619463324546814, 0.3574277460575104, -0.09643879532814026, -0.25650349259376526, 0.477969229221344, -0.4196161925792694, -0.05509636178612709, -0.049317315220832825, 0.6210408806800842, 0.7929782867431641, -0.37808945775032043, -1.310280680656433, -0.2338486760854721, 0.7775014042854309, 0.8435903191566467, 0.42461588978767395, 1.3799536228179932, -0.6397777795791626, 0.013053679838776588, -0.050108619034290314, -0.14595064520835876, -0.2784361243247986, -0.3358851671218872, -0.1432095170021057, 0.011507975868880749, -0.4126478135585785, -0.39574581384658813, -0.26558464765548706, 1.084854006767273, -0.7097408771514893, 0.7115057706832886, 1.3534355163574219, -0.6101531982421875, -1.0790419578552246, 0.05965595692396164, -0.27727481722831726, -0.9681450128555298, 0.9978765845298767, 1.4008299112319946, -0.6439828276634216, -0.5693287253379822, -0.5133212208747864, -0.30821719765663147, 0.94910728931427, -0.40935271978378296, 0.3693016767501831, -0.964195966720581, -1.3464564085006714, -0.2859914302825928, 1.4454976320266724, 0.10225088149309158, 0.3321070075035095, -0.8071457147598267, -0.023036114871501923, 0.3046703338623047, 0.0004374687559902668, -0.37030673027038574, 0.6535813808441162, -0.4582774043083191, -0.5303844809532166, 0.1404470056295395, 0.5108899474143982, 0.4412868320941925, -0.470981627702713, -0.003151481505483389, -0.6698517799377441, -0.6826525330543518, -0.4793725609779358, 0.20008543133735657, 0.7485759854316711, 0.8823208212852478, 0.0210411436855793, -0.24797175824642181, 0.8324645161628723, 0.08146624267101288, -0.09990785270929337, -1.216064691543579, 0.7157909274101257, 0.8479332327842712, 0.847640335559845, 0.4678637385368347, 0.05760285258293152, -0.10027620941400528, -0.19229628145694733, -0.1972808539867401, 0.43541067838668823, 1.285901665687561, 0.7109403014183044, -0.5232700109481812, 0.5479177236557007, -0.06356948614120483, -0.22949938476085663, -0.47955870628356934, -0.008355812169611454, 0.34376442432403564, -0.7529590129852295, -0.5382990837097168, 1.2834631204605103, 0.12354647368192673, -0.32531386613845825, -0.8672890067100525, -0.6496151089668274, 1.1958544254302979, 0.6014546155929565, 0.25894415378570557, -0.12511363625526428, -0.24250410497188568, 0.2689589560031891, -0.8660176396369934, -0.7755043506622314, -0.265164315700531, -0.18407420814037323, 0.3157229721546173, -0.7806168794631958, 0.22064907848834991, -0.023904770612716675, 0.10672497004270554, 0.2691591680049896, -0.44886210560798645, 0.34954380989074707, -0.11454589664936066, 0.6099256873130798, 0.2142450362443924, 0.18877013027668, 1.1389061212539673, -0.60589599609375, -0.9784428477287292, 0.44704410433769226, -0.49243590235710144, 0.6186320185661316, -0.20367157459259033, -0.2220856100320816, 0.0768023282289505, -0.9905876517295837, -0.5735195279121399, -0.3351632058620453, -0.24740801751613617, 0.8446462154388428, 0.30840936303138733, 0.27248382568359375, 0.8440709710121155, -0.19018417596817017, -1.1728236675262451, 0.11959149688482285, -0.06522155553102493, -0.9237686991691589, -0.5621722936630249, -0.13273657858371735, 0.4323887825012207, -0.0943157747387886, 0.6610805988311768, 0.04358968138694763, 0.6101170778274536, 0.7152684330940247, -0.06711477786302567, 0.5109115242958069, 0.1847936362028122, 0.8546997308731079, 1.5909626483917236, 0.8576664924621582, -0.42619189620018005, -0.8955608606338501, 0.3432874083518982, -1.0200819969177246, 0.1949719786643982, 1.0770422220230103, 0.8707848787307739, 1.2557692527770996, -2.1213276386260986, -0.9737521409988403, 0.9909877777099609, 0.5839393734931946, 0.5880975127220154, 0.7325149178504944, -0.2187129408121109, -0.2569912374019623, 0.48559436202049255, 0.4598686397075653, -0.22528450191020966, -0.019519435241818428, 0.24892553687095642, -0.002052293624728918, 0.7234804034233093, -0.8353765606880188, 0.35783734917640686, -0.482072651386261, -0.17922154068946838, -0.8213653564453125, -0.30628731846809387, 0.3825196921825409, 0.2935350835323334, -0.0030659488402307034, 0.8259138464927673, -0.04159644618630409, -0.2382979691028595, 0.8892302513122559, -0.3257610499858856, 0.053362924605607986, 0.12671412527561188, 0.04292414337396622, -0.46074697375297546, -0.3640432059764862, -0.598425030708313, 0.13095121085643768, -0.16676685214042664, 0.09007681906223297, -0.4435211718082428, -1.1948440074920654, 0.023735662922263145, 0.8864195942878723, 0.453927606344223, 0.6317101716995239, 0.585223913192749, 0.40043047070503235, 0.4497324824333191, -0.1332543045282364, -0.035623177886009216, -0.297026127576828, 0.12329705059528351, -0.5069330930709839, -1.1548641920089722, -0.4963911175727844, -0.06871708482503891, 0.6932647824287415, -0.14609546959400177, 0.9302216172218323, 1.7819355726242065, 1.3298403024673462, -0.4663100242614746, -0.7451553344726562, 0.20500759780406952, -0.3209274709224701, -0.2711438536643982, 0.1014007180929184, -1.0223439931869507, 0.07466888427734375, -0.6735241413116455, -1.2074360847473145, 0.7021784782409668, -0.37553754448890686, -0.9228765964508057, 1.0525144338607788, -0.5086893439292908, 0.37744858860969543, 0.412460058927536, -0.4316389858722687, 0.6113175749778748, 0.7133157849311829, -1.076120376586914, -1.5258101224899292, 0.3887230455875397, 0.19426578283309937, 0.08616003394126892, -0.36958742141723633, 0.7609179615974426, 0.4764404892921448, -0.6424394845962524, 0.09379518032073975, 0.5046672224998474, -0.03663124144077301, 1.3556891679763794, 0.4477311074733734, -0.5106301307678223, 0.0104618389159441, -0.8942934274673462, -0.4428752362728119, 0.07704158127307892, 1.1338309049606323, 0.6184190511703491, -0.7428670525550842, -0.4667816162109375, -0.8943222761154175, -0.18563365936279297, -0.38611891865730286, -0.5520734786987305, 1.103026032447815, 0.17968440055847168, -0.18668919801712036, -0.1702636182308197, -0.5139814019203186, -0.5282554030418396, -0.14582209289073944, -0.23877082765102386, 0.9363887906074524, -1.1315562725067139, 0.05357997119426727, 0.48050180077552795, -0.7234634757041931, -0.025678725913167, -0.7247380018234253, 0.294669508934021, -1.3928256034851074, -0.7927213311195374, -1.3595833778381348, -0.2524119019508362, 0.8108716607093811, -1.0045602321624756, 0.29533255100250244, 0.13240234553813934, -1.5067061185836792, 0.5241653919219971, -0.05553128942847252, -1.749267339706421, 0.29728081822395325, -1.6399004459381104, 0.8097351789474487, -0.6563054323196411, 0.06114763766527176, 0.31559881567955017, 1.3348523378372192, -1.5499831438064575, -1.497882604598999, -0.9824731945991516, -0.25653016567230225, 0.6363863945007324, 0.7751397490501404, -1.0542010068893433, 1.7265859842300415, 0.334404319524765, -0.7917991280555725, -0.7822538018226624, 0.37479865550994873, -0.6207281947135925, 0.6055964231491089, 0.2530538737773895, 0.19579605758190155, 0.3523935079574585, 1.0252057313919067, 0.5360538363456726, 1.0462126731872559, 0.6255881190299988, -0.2093019336462021, -1.0072482824325562, 0.059516455978155136, -0.2743149697780609, 1.079171061515808, -1.4686917066574097, -0.7335643768310547, -0.5620849132537842, -0.5841325521469116, -1.0320169925689697, 0.7645288109779358, 0.7652186155319214, -0.7197645902633667, -0.311434805393219, -0.560365617275238, 0.6898224353790283, -0.3712717890739441, 0.2696257531642914, 0.0333118736743927, -0.25877639651298523, -0.04502008110284805, -0.17248648405075073, 0.0041731419041752815, -1.2613056898117065, 0.32091087102890015, -0.04452626407146454, -0.497140109539032, -0.24859486520290375, 0.5609650015830994, 0.723142683506012, -0.15970690548419952, -0.42113369703292847, 1.4695169925689697, 0.7544674277305603, -0.14019404351711273, 0.14801909029483795, 0.0965636596083641, -0.029916951432824135, 0.15821339190006256, -0.43581917881965637, 0.1422732025384903, -0.9961733222007751, 0.9679501056671143, 0.7551299333572388, -0.3885158598423004, -0.5742767453193665, -0.06364145874977112, -0.4593406021595001, 0.11337582767009735, 0.3051522374153137, -0.3901746869087219, -0.25408878922462463, 1.0732115507125854, 0.2946484684944153, -0.9737816452980042, 0.29765188694000244, 0.37700530886650085, -0.17821848392486572, -0.014810379594564438, 0.20185399055480957, 0.8594721555709839, -0.6186212301254272, 0.6404746770858765, 0.3757788836956024, 0.22513911128044128, 0.15823966264724731, -0.9698092341423035, -0.9562111496925354, 0.367721825838089, -0.6372638940811157, -0.7240803241729736, 1.193615198135376, -1.4889615774154663, -0.015334947034716606, 0.7985379099845886, -0.3682367503643036, -0.5424162149429321, -0.2849528193473816, -0.10035810619592667, 0.14518706500530243, 0.5679328441619873, 0.17096027731895447, -0.9187518358230591, 0.38351836800575256, 0.4757140278816223, -0.4672176241874695, -0.974706768989563, -0.28680217266082764, 0.13684974610805511, -0.5988157987594604, 0.08946724236011505, 0.32954299449920654, 0.662493884563446, 0.03626420348882675, -0.6169511079788208, 0.42080527544021606, 0.2729733884334564, 0.1303439736366272, -0.3707922399044037, 0.2638606131076813, 0.9510224461555481, 0.01882096752524376, 0.23051409423351288, -0.4468991756439209, -0.7677760720252991, -0.9356119632720947, 0.7586807012557983, -0.20000393688678741, 1.130018711090088, -0.10949954390525818, 0.5619486570358276, 0.15564636886119843, -0.4043050706386566, -0.5779027938842773, -0.6892538070678711, -0.03316526114940643, -0.6853761672973633, 1.18490731716156, -0.3940516710281372, -0.23291058838367462, -0.5927060842514038, -1.648816704750061, -0.09580463916063309, 0.032451122999191284, -0.1694774627685547, 0.4009031653404236, -1.0305944681167603, -0.6372278332710266, -0.5690318942070007, 0.6554935574531555, 1.062955617904663, 0.23602677881717682, 0.6259353160858154, 0.024497022852301598, -0.5341220498085022, -0.5276628136634827, 0.07046031206846237, 0.14721226692199707, 0.07993240654468536, 0.7731141448020935, 1.2839277982711792, 0.5142195224761963, 0.7401002049446106, -0.15243427455425262, 1.418492317199707, -0.4176160395145416, 0.1533522605895996, -0.717837393283844, 0.4072059690952301, 0.5702582597732544], [0.6734238266944885, 1.98456609249115, -2.105088710784912, 0.02627733163535595, 0.7864373326301575, -0.18845777213573456, 0.10759613662958145, -0.1689382642507553, 0.06318876892328262, -0.40709805488586426, -0.0402202233672142, 0.020737838000059128, 0.360910028219223, 1.0913516283035278, 0.017849484458565712, 0.835405707359314, 1.0308421850204468, -0.03505899757146835, 0.4587889015674591, 0.6439321041107178, 0.20253562927246094, -0.4115542471408844, 0.09261026233434677, -0.060590241104364395, -0.17069107294082642, 0.446982741355896, -1.076821208000183, -1.0915876626968384, -0.5078416466712952, -0.5702903270721436, 0.12010014802217484, -0.6720472574234009, 0.43354716897010803, 0.054129716008901596, -1.5823200941085815, -0.4055756628513336, 1.332391381263733, 0.7750107049942017, 0.5197969079017639, 0.5421979427337646, 1.04084312915802, 0.5385473966598511, 0.08755612373352051, -1.5908963680267334, -0.691619336605072, -0.5259299278259277, 1.4453034400939941, -0.42067354917526245, -0.005421179812401533, -0.33518511056900024, 0.43434691429138184, -0.7516856789588928, 1.210654854774475, 0.3569592237472534, 1.596254825592041, -0.6096628904342651, 0.374778151512146, 0.4592129588127136, -0.27456796169281006, -1.0128120183944702, 0.31776949763298035, -0.16076311469078064, 0.43616795539855957, 0.5774361491203308, 0.5172737836837769, 0.28222256898880005, -0.7144342660903931, 0.14911623299121857, 0.294430136680603, -0.3428594768047333, 1.5309531688690186, -0.45327773690223694, -0.6355299949645996, -0.04697195440530777, -1.077982783317566, 0.3689897656440735, 1.2221732139587402, 0.30395886301994324, 0.23762325942516327, 0.37211549282073975, 0.19065620005130768, -0.6671051383018494, 0.4722108244895935, -0.9135525226593018, 0.3381267488002777, 0.07140712440013885, 0.5225375294685364, -0.24210849404335022, -0.39677321910858154, 1.1275699138641357, 0.478994756937027, -0.389589786529541, 0.49747928977012634, -0.7293199300765991, -0.04459473863244057, -0.6406561136245728, 0.30407091975212097, -0.5088417530059814, -0.552364706993103, -0.4440821707248688, -0.3406323194503784, -0.4609284996986389, 0.12152974307537079, 0.28752195835113525, -0.6391642689704895, 1.0010331869125366, 0.3802298307418823, -0.23381775617599487, -0.3101469576358795, -0.39713966846466064, 0.08938563615083694, 0.41047024726867676, -0.3928040862083435, -1.588606834411621, 0.27740663290023804, 0.3943069279193878, 1.2454473972320557, -0.10509151965379715, 1.509179949760437, 1.2045812606811523, -0.02793939784169197, 0.022732868790626526, -0.3125690817832947, 0.8165558576583862, 0.4661901593208313, 0.08526137471199036, -0.035066213458776474, -0.7945680618286133, -0.249867781996727, -0.4281476140022278, 0.38870638608932495, -0.09648410975933075, 0.520203173160553, 0.6949729323387146, -0.5977796912193298, 1.46950101852417, 0.3837663531303406, -0.21372191607952118, 0.12273656576871872, -0.13961580395698547, 0.7315773367881775, 0.037520457059144974, -0.40536558628082275, -0.3236599862575531, -0.5200411677360535, -0.14578895270824432, 0.15473806858062744, -0.32331857085227966, -0.30047664046287537, 0.3852477967739105, -1.228986382484436, 0.2451895922422409, 0.08150027692317963, 0.4592020809650421, -0.2431563436985016, -0.5948007702827454, 0.5709871053695679, 0.7561560869216919, 0.294580340385437, -0.15083397924900055, 0.8139529228210449, 0.36296263337135315, -1.3785425424575806, 0.6899673342704773, 0.12759947776794434, -0.779933512210846, -0.1293305903673172, 0.5942903757095337, 0.18436257541179657, 0.77214515209198, -0.8195888996124268, -0.7576078176498413, -0.46970540285110474, 0.7413891553878784, 0.583705723285675, -0.5029780864715576, 1.4141123294830322, -1.0154223442077637, -1.233917236328125, -1.5768977403640747, 0.1879875361919403, -0.35608601570129395, 0.6227708458900452, -0.48480725288391113, 0.641487181186676, -0.4436318874359131, 0.8591602444648743, -0.41358473896980286, -0.9468666315078735, -0.9945549368858337, -0.492597371339798, 0.1511019617319107, -0.832722544670105, 0.5838871598243713, -0.4197116792201996, -1.060285210609436, -0.08994795382022858, -0.4241727888584137, -0.2316218763589859, -0.013086526654660702, 0.1477239578962326, -0.4045233726501465, -0.1756475865840912, 0.6337323784828186, -0.6607706546783447, 1.1129761934280396, -1.4036287069320679, 1.091103196144104, -0.6190611720085144, 0.04056345671415329, 0.695784866809845, 0.3613589107990265, -0.5114551186561584, 0.5282694697380066, -0.33928054571151733, -2.0909554958343506, 0.8887837529182434, 0.4456656575202942, -0.5668789148330688, -0.6252984404563904, 0.9012052416801453, 0.3800174593925476, -0.1045963317155838, -0.2418919801712036, 0.8564649224281311, -0.5493904948234558, -0.8640244007110596, -0.8071702122688293, -0.8837645053863525, -0.41026294231414795, -0.6618671417236328, -1.3574448823928833, 0.9816027879714966, 0.6665382385253906, -1.0383416414260864, 0.33692800998687744, 0.1415434628725052, 0.37768176198005676, 0.4395761489868164, 0.38902905583381653, 0.4312833845615387, 1.1151752471923828, -0.12036190927028656, 0.09348464012145996, -1.1930408477783203, 0.12335231155157089, 0.4277174174785614, -0.5801202654838562, 0.023144278675317764, 1.213301420211792, 1.46924889087677, 0.2213403433561325, -0.3254212737083435, 0.43043041229248047, 0.21019655466079712, -0.45485493540763855, -1.059509515762329, 0.2738349437713623, -0.7985036969184875, 1.094712495803833, 1.2367678880691528, -0.6484484076499939, -0.2759707272052765, 0.08830918371677399, 0.4238005578517914, -0.7061861753463745, -0.1871953010559082, -0.6498650908470154, -0.06777424365282059, 0.09327845275402069, -0.5957967638969421, 0.6468486785888672, 0.3311924338340759, 0.6957545876502991, 0.19400088489055634, 0.4806693494319916, -0.3815883994102478, 0.3181656002998352, -0.19338925182819366, 0.5003584623336792, -0.13446591794490814, -0.5572854280471802, -0.4028538763523102, 0.07071293145418167, 0.50803142786026, 0.3583028316497803, 0.28974688053131104, 0.28446853160858154, -0.4141836166381836, -0.6992663741111755, -0.001028131227940321, 0.10613293945789337, 0.24438630044460297, 0.17381778359413147, -0.04515039920806885, 0.1551763266324997, 0.32994896173477173, -0.8917825818061829, -0.5806114673614502, -0.2099420577287674, 0.46303778886795044, 1.834251880645752, 0.12586656212806702, 1.4799224138259888, -0.2946902811527252, 0.38533517718315125, -0.05355094373226166, 0.2295766919851303, -0.25142422318458557, -0.7979847192764282, -0.8278404474258423, 0.01123141311109066, 0.10185428708791733, 0.024766717106103897, -0.447172075510025, 0.6937376856803894, -0.9447520971298218, 0.46841293573379517, 1.3204129934310913, -0.9712421298027039, -1.1646442413330078, -0.293296217918396, -0.38082727789878845, -0.3353484272956848, 0.7740873098373413, 1.0495051145553589, -1.1983575820922852, -0.5113059282302856, -0.3893626928329468, -0.2971123158931732, 0.5778690576553345, 0.09950660169124603, 0.01768200658261776, -1.0129687786102295, -1.0244596004486084, -0.21131904423236847, 1.0995639562606812, 0.6045166254043579, 0.1855197250843048, -0.06160774827003479, 0.6025100350379944, 0.18819861114025116, 0.5116570591926575, -1.005568027496338, 0.17360185086727142, -0.1333380490541458, -1.0246167182922363, -0.37722477316856384, 0.8125084042549133, 0.7483343482017517, -0.5263426899909973, -0.4864702522754669, -0.5181681513786316, -0.41615232825279236, -0.2697339951992035, 0.09710335731506348, -0.2719643712043762, 0.7953689098358154, -0.818878710269928, -0.04822523891925812, -0.07925659418106079, 0.562636137008667, -0.06725089251995087, -1.937929391860962, 0.4343372583389282, 0.19422121345996857, 0.853879988193512, 0.1815330535173416, -0.29542315006256104, -0.34206342697143555, 0.10893318802118301, 0.15377278625965118, 0.434149831533432, 1.0988988876342773, -0.2241905927658081, 0.5140694379806519, -0.5381775498390198, -0.17154528200626373, -0.07862995564937592, -0.792465090751648, -0.03726665675640106, 0.24345049262046814, -0.7980942726135254, 0.11006977409124374, 0.9553665518760681, 0.34450608491897583, -0.3576997220516205, -0.020622264593839645, -0.0383896566927433, 0.58942049741745, -0.011604983359575272, 0.5199022889137268, 0.14300622045993805, 0.15933334827423096, 0.5734740495681763, -0.6871728301048279, -0.5379945039749146, -0.5213073492050171, 0.22648216784000397, 0.9858189225196838, -0.6298792362213135, 0.01121682021766901, -0.6634151339530945, 0.4113937020301819, -0.08148830384016037, -0.23869198560714722, 0.1638549566268921, -0.5056843161582947, 0.2502956688404083, -0.40010082721710205, 0.06080788001418114, 0.6308783292770386, -1.0097674131393433, -0.24310633540153503, 0.09580107778310776, -0.5686954855918884, 0.5758578181266785, 0.04417555406689644, 0.2269294410943985, 0.13521713018417358, -0.523302435874939, -0.9886568784713745, -0.10087732970714569, -0.35420286655426025, 0.7768678069114685, -0.2277059406042099, 0.49254459142684937, 0.49322041869163513, -0.3720221519470215, -0.9693977236747742, 0.5423212051391602, 0.15523800253868103, -0.38366788625717163, -0.5642015933990479, 0.33944907784461975, 0.6787614226341248, -0.1770787537097931, 0.6183505058288574, 0.5520281195640564, 1.4480149745941162, 0.32858529686927795, 0.11477464437484741, 0.010981951840221882, 0.7089415788650513, 0.7450876832008362, 0.9915114045143127, 0.8427344560623169, -0.4418572783470154, -0.7286754250526428, 0.342085599899292, -0.7850889563560486, 0.5593699216842651, 0.6092196106910706, 0.5599913001060486, 1.1540285348892212, -1.585166335105896, -0.7570436000823975, 0.7207658886909485, 0.12886878848075867, 0.12644246220588684, 0.7988370060920715, -0.7187033295631409, -0.8264862895011902, 0.4599446952342987, -0.4280923306941986, 0.6107802391052246, 0.3090340495109558, -0.3600858449935913, -0.2443055659532547, 1.0468907356262207, -0.5448569059371948, 0.7684410214424133, -0.7276172637939453, 0.12145231664180756, 0.4931650757789612, -0.5840567946434021, 0.45710697770118713, 0.2278028130531311, -0.1375303715467453, 1.021575689315796, -0.7797048687934875, -0.8084766864776611, 0.38150864839553833, -1.050585150718689, 0.014176882803440094, -0.30662989616394043, 0.3466531038284302, -0.44105157256126404, -0.24305300414562225, -0.5032693147659302, -0.18445493280887604, -0.03529224544763565, -0.5795403718948364, -0.2990807294845581, -0.7950919270515442, -0.0716036856174469, 1.00691556930542, 1.289340615272522, -0.3147689998149872, 0.48445606231689453, 0.4705292284488678, 0.08579334616661072, -0.4150550961494446, 0.00405290350317955, -0.1390341967344284, -0.15019656717777252, -0.16612133383750916, -1.6568363904953003, -0.8176797032356262, -0.48039475083351135, 0.7162132859230042, 0.154234379529953, 0.4483904242515564, 0.8329046368598938, 0.8861434459686279, -0.33514168858528137, -0.8069452047348022, 0.5985665321350098, -0.41171592473983765, 0.27303388714790344, 0.44165757298469543, -0.998685896396637, -0.5818746089935303, -1.1863861083984375, -1.2407647371292114, 0.6253607869148254, -0.41229012608528137, -0.8699366450309753, 0.6219950914382935, 0.3192541301250458, -0.479692280292511, 0.7457072138786316, -0.5898057818412781, 0.7794348001480103, -0.14009545743465424, -0.5138435363769531, -1.4062830209732056, 0.3972495198249817, 0.09614083915948868, 0.3625640273094177, 0.1824081689119339, 0.725400984287262, 0.2241344302892685, -0.41897186636924744, -0.3528168499469757, 0.14054575562477112, 0.46643778681755066, 0.8128892779350281, -0.10380158573389053, -0.39279815554618835, 0.0009296722710132599, -0.47304049134254456, -0.6242931485176086, 0.030867312103509903, 1.0591005086898804, 0.15875957906246185, -0.4501722753047943, -0.009431746788322926, -0.5297269225120544, -0.2829072177410126, -0.4993434548377991, -0.4503815770149231, 0.6913925409317017, 1.0919188261032104, -0.5012297034263611, 0.459990918636322, -0.29432716965675354, -0.3816838264465332, -0.5042616128921509, 0.6559320688247681, 0.9262708425521851, -0.903986930847168, 0.3671676516532898, 0.1419152170419693, -0.7640137672424316, -0.4554145634174347, -0.5059142112731934, 0.2709277868270874, -0.7236226797103882, -0.8436727523803711, -1.1375688314437866, 0.4999244213104248, 1.0962992906570435, -0.6539763808250427, 0.6417015790939331, 0.12417823076248169, -1.147244930267334, 0.4341735541820526, -0.6742525696754456, -1.842491626739502, 0.5002925395965576, -1.314946174621582, 0.7337889671325684, -0.20500394701957703, 1.015745997428894, -0.4378499686717987, 1.5362578630447388, -2.0936570167541504, -1.7787578105926514, -1.2460360527038574, 0.06300058215856552, 0.8615137338638306, 0.34479719400405884, -0.4114643335342407, 1.0224210023880005, 0.04432431235909462, 0.11503087729215622, -0.22206272184848785, -0.3467716872692108, -0.4970429539680481, 0.39261046051979065, 0.6864289045333862, 0.6799143552780151, -0.10864060372114182, 0.5974313020706177, 0.4567897319793701, 0.9913081526756287, 0.31655386090278625, 0.7879747152328491, -0.42827627062797546, -0.33240923285484314, 0.15418297052383423, 0.9251081943511963, -0.6802759766578674, -0.6770353317260742, -0.25082919001579285, -0.6079650521278381, -0.8497382402420044, 0.21158337593078613, 0.6488760113716125, -0.9075374007225037, -0.5661208629608154, -0.5675837397575378, 0.19225968420505524, -1.1615839004516602, 0.4198000729084015, -0.7186654210090637, 0.43156853318214417, 0.7635360360145569, -0.28592759370803833, 0.26412832736968994, -0.5995623469352722, -0.14545243978500366, 0.6421065926551819, -0.29679831862449646, -0.5789757370948792, 1.01702082157135, 0.2513315975666046, 0.7968092560768127, -0.4995809495449066, 1.2685211896896362, 0.6093214154243469, -0.07727456092834473, 0.18313226103782654, -0.046551235020160675, 0.30963391065597534, 0.5012816786766052, -0.7312294244766235, -0.22051113843917847, -0.8205028772354126, 1.0748435258865356, 0.41716888546943665, -0.2250726968050003, -0.07706252485513687, 0.37989911437034607, -0.48920419812202454, 0.3428021967411041, 1.3149693012237549, -0.5533936619758606, -0.3951272666454315, 1.2746309041976929, 0.15814107656478882, -0.8903118968009949, 0.4452475607395172, 0.42504361271858215, 0.041505906730890274, 0.4312869906425476, 0.5619747042655945, 0.8654760122299194, -1.0385245084762573, 0.8412553668022156, -0.23324410617351532, 0.17062930762767792, 0.22248512506484985, -0.6623019576072693, -1.0256096124649048, 0.5052738785743713, -0.7062199115753174, -1.3068808317184448, 0.4561821222305298, -1.2537496089935303, -0.4520341455936432, 1.08985435962677, 0.04173281788825989, -0.860485851764679, 0.0076552219688892365, -0.10237318277359009, 0.21886394917964935, 0.11783698201179504, 0.4404812157154083, -0.3288162648677826, 1.004108190536499, 0.5201194286346436, 0.11478356271982193, -1.0659435987472534, -0.029179314151406288, 0.5856293439865112, -0.3311977982521057, 0.04787929728627205, -0.4379962384700775, 0.3600674569606781, 0.14134113490581512, -0.4134010970592499, 0.19885963201522827, -0.27340462803840637, 0.7525490522384644, 0.5072845220565796, -0.19970671832561493, 0.5194352269172668, 1.0495051145553589, 0.5483649969100952, -0.23383142054080963, -0.8017608523368835, -0.9285402894020081, 0.8024858236312866, -0.35323792695999146, 0.9488596320152283, 0.23793268203735352, 0.8369626998901367, 0.43390020728111267, -0.713815450668335, -0.4851430654525757, -0.2561603784561157, 0.6167307496070862, 0.2956751883029938, 0.4171808063983917, 0.5230752825737, -0.036773666739463806, -0.055322401225566864, -0.756004810333252, 0.5089231729507446, 0.8321793675422668, -0.07032047212123871, -0.20891474187374115, -1.0417160987854004, -0.512908935546875, -1.1549439430236816, 0.8365541696548462, 0.8985011577606201, -0.19905395805835724, 0.4084811210632324, -0.08961787819862366, -1.0517657995224, -0.09912106394767761, -0.23568998277187347, 0.22474870085716248, -0.3777795135974884, 1.3639806509017944, 1.3481314182281494, 0.5622035264968872, 0.7735907435417175, -0.5688654780387878, 0.2688462734222412, -1.0626981258392334, -0.026196330785751343, -0.8513465523719788, -0.09565550833940506, -0.20725658535957336], [0.64341139793396, 1.570115327835083, -2.3799538612365723, -0.20766355097293854, 1.294832706451416, 0.3770662546157837, 1.895882248878479, -0.4497687816619873, 0.8106083869934082, -0.43860843777656555, -0.08846757560968399, -0.5425769090652466, -0.11808886379003525, 1.2326531410217285, 0.3333527743816376, 0.30989205837249756, 0.41617491841316223, -0.4036792814731598, 0.9150791764259338, 0.544759213924408, 0.0428340919315815, 0.15808439254760742, -0.030563991516828537, -0.08599084615707397, -0.15375222265720367, 0.39716511964797974, -0.40240374207496643, -0.9258700013160706, -1.1635596752166748, -1.0998413562774658, 0.563607394695282, -0.6598276495933533, 0.3704122006893158, -0.1546253263950348, -0.9439429640769958, -0.6721351742744446, 1.5952661037445068, 1.1592134237289429, -0.2906032204627991, 0.6754084229469299, 2.26023006439209, 0.5520356297492981, -0.09498022496700287, -1.5657063722610474, -0.1848682314157486, -0.501666247844696, 1.0940794944763184, -0.9447306394577026, -0.21771414577960968, -0.7343745231628418, 0.6988270878791809, -1.4091023206710815, 0.9788952469825745, 1.0327709913253784, 1.069847583770752, -0.42958077788352966, 0.6352008581161499, 0.5887093544006348, -0.08928465843200684, -0.5323191285133362, 0.6704968810081482, -0.672578752040863, -0.6303380727767944, 0.6333426833152771, -0.14509733021259308, 0.3065429925918579, -0.22597146034240723, 0.28994232416152954, 0.23435179889202118, -0.13033165037631989, 0.971039891242981, 0.08946263790130615, -0.37100526690483093, -0.3887863755226135, -0.9852781891822815, -0.025176892057061195, 0.38491687178611755, 0.5959635376930237, 0.3990517258644104, 0.3656938672065735, -0.5855558514595032, -0.05568584427237511, 0.8035316467285156, 0.2013394981622696, 0.3430441617965698, 0.19394540786743164, 0.23277536034584045, -0.9583917260169983, 0.02428482100367546, 1.8534228801727295, 0.8360955715179443, -1.0281955003738403, 0.4284622371196747, -1.3584930896759033, 0.4500448703765869, -0.3433689773082733, 0.3352554440498352, -0.6475440263748169, -0.37571021914482117, -0.48965612053871155, -0.5674890279769897, -0.8347620368003845, 0.2314804643392563, 0.6193720698356628, -0.2345198541879654, 0.9630982279777527, 0.21502141654491425, 0.4381822347640991, -0.8180912137031555, -0.4374167323112488, -0.1488141119480133, 1.387342095375061, -0.5049489736557007, -0.9381967186927795, -0.24473436176776886, 0.632373571395874, 1.4519315958023071, -0.22516244649887085, 0.8847128748893738, 0.6828731894493103, -1.0860438346862793, 0.3787602484226227, -0.13326534628868103, 1.1402226686477661, 0.5706298351287842, 0.2901248633861542, -0.11401631683111191, -0.1088109090924263, 0.7013629078865051, -0.26044467091560364, -0.253277450799942, -0.21231433749198914, -0.04890318959951401, 0.698821485042572, -1.035901427268982, 0.8199664354324341, 0.29992273449897766, -0.5544363856315613, -0.08563581854104996, -0.8318625092506409, 0.6543670296669006, 0.8541682958602905, -0.41747868061065674, -0.4843110144138336, 0.13648462295532227, -0.10755252838134766, 0.7315843105316162, -0.17029596865177155, -0.33406075835227966, 0.11084713786840439, -0.7644896507263184, 0.135148286819458, -0.11755838245153427, 0.8518868684768677, -0.3623327910900116, 0.4628693163394928, 0.6945244073867798, 0.2759771943092346, 0.5703003406524658, 0.29204970598220825, 0.7296308279037476, 0.601745069026947, -1.60890531539917, 0.7969928979873657, 0.41741570830345154, -0.1578567624092102, -0.025101976469159126, 0.9907873272895813, -0.5596681833267212, 0.9559909701347351, -0.8596972823143005, -0.44601160287857056, -0.5541794300079346, 0.8505552411079407, 0.5075049996376038, -0.05957465618848801, 1.556729793548584, -0.9571190476417542, -1.236610770225525, -1.4160327911376953, 0.23872312903404236, -0.2390955537557602, 0.7793104648590088, -0.402624249458313, 1.0989269018173218, -0.4453539252281189, 0.5302866697311401, -0.7763224244117737, -0.47356313467025757, -0.6982179880142212, -1.7384722232818604, 0.11467564851045609, -0.9892275333404541, 0.1632724404335022, -0.6213954091072083, -1.3032549619674683, 0.15439976751804352, -0.6589235067367554, -0.8456733226776123, -0.12613166868686676, -0.7272357940673828, -0.4035152494907379, -0.6006746292114258, -0.31693196296691895, -0.5470706820487976, 0.46204349398612976, -1.5919421911239624, 0.9401187300682068, -0.5306540727615356, -0.2619374692440033, 1.165071725845337, 0.037979625165462494, -0.5997238159179688, 0.9831306338310242, -0.20786091685295105, -1.942940354347229, 0.8318004012107849, 0.3665217161178589, 0.002054535783827305, 0.039468128234148026, 0.3114215135574341, 0.2922791838645935, 0.29339784383773804, -0.06697140634059906, 0.7890557050704956, -0.8966383337974548, -0.5807870626449585, -0.7837967276573181, -0.2733236253261566, -0.19353355467319489, -0.7144401669502258, -1.7830497026443481, 0.45258286595344543, 0.8854519724845886, -1.166649341583252, 0.22203916311264038, -0.11631809175014496, 0.13806301355361938, 0.9116194248199463, 0.16948623955249786, 0.10826696455478668, 1.2850592136383057, -0.07417996972799301, 0.11393444240093231, -0.7269124984741211, 0.43084168434143066, 0.841117799282074, -0.8760697841644287, 0.3894989490509033, 1.5577127933502197, 1.221795678138733, 0.033815838396549225, 0.3491949439048767, -0.15446922183036804, -0.17002707719802856, -1.481092095375061, -0.2781606912612915, 0.06096870079636574, -0.2639804184436798, 1.352034330368042, 1.3058173656463623, -1.114467978477478, -0.11464449763298035, -0.5130842328071594, 0.2484373152256012, -0.4910653829574585, -0.4837383031845093, 0.11995182186365128, 0.28010931611061096, 0.41924992203712463, -0.11456158757209778, 0.1269705593585968, -0.07992954552173615, 1.440900206565857, -0.3253876566886902, 0.6375315189361572, -0.6764269471168518, 0.12189915776252747, 0.04797247052192688, 0.39821550250053406, 0.20498710870742798, -0.7310382127761841, -0.40346869826316833, -0.25759345293045044, 1.0735012292861938, 0.1677628755569458, -0.004059943836182356, -0.099611796438694, 0.01673368364572525, -0.09020847827196121, 0.5272623300552368, 0.5357227325439453, -0.6365352272987366, 0.5361196398735046, 0.4051108956336975, 0.3627333641052246, 0.48470616340637207, -0.9247918128967285, -1.066579818725586, -0.03904607146978378, 0.38177743554115295, 1.3266639709472656, 0.8360105156898499, 2.066239595413208, -0.4926638603210449, -0.055092014372348785, 0.08728604018688202, -0.5888412594795227, 0.15193773806095123, -0.43292421102523804, -0.7833814024925232, -0.2868906557559967, -0.2825011909008026, 0.0819924995303154, -0.10085134208202362, 0.25734543800354004, -0.9087819457054138, 1.2313144207000732, 0.8698419332504272, -0.8068905472755432, -1.011374831199646, 0.22304727137088776, -0.1600121706724167, -0.22020624577999115, 0.7246760725975037, 0.5632186532020569, -1.2478028535842896, -0.3241916298866272, 0.05961981788277626, -0.2636469304561615, 1.2858258485794067, -0.036036133766174316, 0.7740305662155151, -1.5499730110168457, -0.791161060333252, -0.2756786346435547, 1.7882447242736816, 0.13474738597869873, -0.2732248306274414, -1.1676859855651855, 0.43026840686798096, -0.2289159893989563, -0.017018718644976616, -0.589332103729248, 0.9104899168014526, -0.17721745371818542, -0.92322838306427, -0.24310630559921265, 0.14978142082691193, 0.8329001069068909, -0.0686754658818245, 0.07498400658369064, -0.38262441754341125, -0.9972319006919861, -0.39089956879615784, 0.2897622585296631, 0.5639921426773071, 0.501050591468811, 0.06298313289880753, -0.7193618416786194, 1.1758642196655273, 0.026279989629983902, 0.041797950863838196, -1.4917542934417725, 0.766016960144043, 0.5415835976600647, 1.02644944190979, 0.17776739597320557, 0.12015141546726227, 0.057278845459222794, 0.13975980877876282, 0.09646786749362946, 0.05413876846432686, 0.8469012975692749, 0.6555770039558411, 0.21198707818984985, -0.1109849140048027, 0.26581868529319763, -0.29706430435180664, -0.7082566618919373, -0.03971129283308983, 0.4174981415271759, -0.16262437403202057, -0.652651309967041, 1.1578893661499023, 0.5965207815170288, -0.09913629293441772, -0.19600793719291687, -0.8387560844421387, 0.9748626351356506, 0.5473563075065613, 0.31856539845466614, -0.3130817711353302, 0.14395855367183685, 0.5050578117370605, -1.2985098361968994, -1.1948680877685547, -0.07371237874031067, -0.06381309032440186, 1.0508919954299927, -0.7087392807006836, -0.3570118546485901, -0.459884911775589, 0.12343651801347733, 0.2681947946548462, 0.35049182176589966, 0.3839808702468872, -0.11355414986610413, 0.5395309329032898, 0.49029502272605896, 0.2750152051448822, 0.8186760544776917, -1.1945127248764038, -0.23410959541797638, 0.08896201103925705, -0.036659907549619675, 0.3702850043773651, 0.07587169855833054, -0.4427487254142761, -0.6881034970283508, -1.1380174160003662, -0.681529700756073, -0.46081802248954773, -0.16372275352478027, 0.6073569059371948, 0.053462106734514236, 0.6109517216682434, 0.9844642877578735, -0.17425592243671417, -1.0598456859588623, 0.16896870732307434, 0.3867478668689728, -0.15421515703201294, -0.5543391108512878, 0.2679412364959717, 0.3001592755317688, -0.16599290072917938, 0.6518869400024414, 0.21470879018306732, 0.26101574301719666, -0.4928547441959381, 0.0032675843685865402, -0.20754162967205048, 0.5480153560638428, 0.36161330342292786, 1.2308690547943115, 1.0329921245574951, -0.39942485094070435, -0.7343346476554871, 0.34271883964538574, -1.0352730751037598, 0.1821257472038269, 0.7233229875564575, 0.154851496219635, 1.2657513618469238, -2.3131308555603027, -0.31101077795028687, 0.7105907201766968, 0.5811262726783752, 0.3070676624774933, 0.9796205759048462, -0.6214229464530945, -0.43708154559135437, 0.3001025915145874, -0.009408208541572094, 0.12798725068569183, 0.31573641300201416, 0.8232522010803223, -0.4934806823730469, 1.4401919841766357, -0.481979101896286, 0.5123002529144287, -0.7971675992012024, -0.5558621883392334, 0.2464754283428192, -0.3430304527282715, 0.3791757822036743, 0.6993764042854309, -0.45195239782333374, 0.6956620216369629, -0.32160335779190063, -0.5903260111808777, 0.6609339118003845, 0.06376725435256958, 0.08986793458461761, 0.1985013633966446, -0.2638345956802368, -0.40296095609664917, -0.7074083685874939, -0.7875151634216309, 0.292581707239151, -0.15059636533260345, -0.785499632358551, -0.19623281061649323, -1.1917853355407715, -0.28617429733276367, 1.2810734510421753, 1.2721561193466187, 0.20454439520835876, 0.4552127718925476, 0.5660194158554077, -0.05390060320496559, 0.01604606583714485, 0.41963934898376465, 0.05449764057993889, 0.4761029779911041, -0.29266926646232605, -1.7860993146896362, -0.6882767677307129, 0.17179086804389954, 0.9544302225112915, 0.1394777148962021, 0.7736148834228516, 1.3297439813613892, 1.3067539930343628, -0.13300779461860657, -0.8727728128433228, 0.5022556781768799, -0.428089439868927, 0.5439766049385071, 0.29181236028671265, -0.8228946924209595, -0.6624089479446411, -0.37941867113113403, -1.3115613460540771, -0.02506292425096035, -0.36305466294288635, -0.992130696773529, 0.5158865451812744, 0.18550662696361542, 0.011038318276405334, 0.7626363039016724, -0.5750333666801453, 0.4722149670124054, 0.20010288059711456, -1.0335556268692017, -1.1149959564208984, 0.5306062698364258, -0.24266766011714935, 0.8372036814689636, -0.8977805376052856, 0.6483702063560486, 0.324191153049469, -1.015734076499939, -0.13746358454227448, 0.3506641089916229, 1.0000793933868408, 0.5330843925476074, 0.2580786645412445, -0.3487539291381836, 0.32373908162117004, -0.5705750584602356, -0.9663158655166626, -0.6185030341148376, 0.8808305263519287, 0.29278600215911865, -0.6844604015350342, -0.009617868810892105, -0.5177854299545288, -0.4556201994419098, -0.5717213153839111, -0.27886009216308594, 0.482713907957077, 0.6321762800216675, -0.22946101427078247, -0.48359179496765137, -1.0434001684188843, -0.7676223516464233, -0.5642738342285156, -0.3104087710380554, 0.5567014217376709, -0.924872636795044, 0.18492642045021057, -0.13797754049301147, -1.0663585662841797, -0.0024744123220443726, -0.9725465178489685, 0.03691338375210762, -0.8242080211639404, -1.3487449884414673, -1.1823643445968628, 0.343816339969635, 0.9171589016914368, -1.2700529098510742, 1.0240001678466797, 0.23709791898727417, -1.1405755281448364, 0.4627934396266937, -0.4389668107032776, -1.5094190835952759, 0.16196538507938385, -1.635749340057373, 0.88900226354599, -0.3941853940486908, 0.7058009505271912, -0.0010381662286818027, 1.3731948137283325, -1.780730128288269, -0.7970592975616455, -0.8187347054481506, -0.11314325034618378, 0.8562906384468079, 0.678339958190918, -1.0445976257324219, 1.3783437013626099, 0.2783856987953186, -0.658521294593811, -0.5914177894592285, 0.09897775202989578, -0.6265415549278259, 0.18223899602890015, 0.33805254101753235, 0.635074257850647, 0.6186344623565674, 1.0328311920166016, -0.12031060457229614, 0.3384491205215454, 0.4484918713569641, -0.27785083651542664, -0.42439207434654236, -0.8513897657394409, -0.19189319014549255, 0.7523350715637207, -0.89447420835495, -0.17815515398979187, 0.05047640949487686, -0.9419651627540588, -1.3093727827072144, 0.5535127520561218, 0.997610330581665, -0.49827998876571655, 0.05834636092185974, -0.26772692799568176, 0.08871057629585266, -1.0760490894317627, 0.49583226442337036, -0.13159045577049255, -0.15093271434307098, -0.11707637459039688, -0.4200766682624817, 0.02747003547847271, -0.6604821085929871, 0.8565707206726074, 0.6092949509620667, -0.29367774724960327, -0.04268190264701843, 0.5555823445320129, 1.1577662229537964, 0.6561897397041321, -0.4945929944515228, 1.670647144317627, 1.2451694011688232, 0.12310352921485901, -0.017300600185990334, 0.9903951287269592, 0.043375127017498016, 0.9060891270637512, -0.6573111414909363, -0.28533393144607544, -0.47312724590301514, 0.47391942143440247, 0.301725834608078, -0.444497287273407, -0.4417150616645813, -0.20053403079509735, -0.4530530571937561, -0.12424960732460022, 0.568475604057312, -0.6244812607765198, -0.4157848060131073, 1.1906366348266602, -0.08320043236017227, -0.02424922026693821, 0.029999667778611183, 0.9980994462966919, -0.15730340778827667, -0.29316481947898865, 0.6386746764183044, 0.4095878303050995, -0.8651493787765503, 0.8734078407287598, 0.16049297153949738, 0.3154229521751404, -0.10802851617336273, -0.29256346821784973, -1.4584108591079712, 0.4565146565437317, -0.9079480171203613, -0.9035115242004395, 1.0714329481124878, -1.201509952545166, -0.8025083541870117, 0.4856034815311432, -0.12955647706985474, -0.5682606101036072, -0.5321288108825684, 0.08949725329875946, -0.05404660105705261, 0.2030395269393921, 0.5944226384162903, -0.6260056495666504, 0.9676778316497803, 0.13228261470794678, -0.10555455833673477, -0.17240886390209198, -0.5209750533103943, 0.9369432926177979, -0.5742694735527039, 0.3267407715320587, -0.35659855604171753, 0.37282073497772217, -0.24707360565662384, -0.9734219908714294, 0.15996184945106506, 0.20137269794940948, -0.20304806530475616, -0.21066312491893768, -0.3728933036327362, 0.5967699289321899, 0.19951121509075165, 0.34146398305892944, -0.8045132756233215, -0.5497006773948669, -0.6531245708465576, 0.29540854692459106, -0.5699556469917297, 1.1135841608047485, -0.5836142301559448, 1.1397318840026855, 0.16113115847110748, -0.5685351490974426, -0.45565250515937805, -0.3628218173980713, 0.17164576053619385, -0.3791961073875427, 1.0054529905319214, 0.4699237644672394, 0.12175624072551727, -0.5340004563331604, -1.0461636781692505, 0.49926239252090454, 0.4800092577934265, -0.20450779795646667, 0.268026202917099, -1.1860960721969604, -0.6419281959533691, -0.5393535494804382, 0.7195501327514648, 0.32628530263900757, -0.15933701395988464, -0.18629290163516998, 0.017247062176465988, -0.8425599932670593, 0.0849766805768013, 0.2404729276895523, 0.10283095389604568, 0.262391597032547, 0.9962970018386841, 1.707682490348816, 0.250308632850647, 0.08822053670883179, -0.16618764400482178, 0.9990584254264832, -0.4297357499599457, 0.10298764705657959, -0.7922431230545044, 0.05492985248565674, -0.1337910145521164], [0.03415742143988609, 1.7334480285644531, -1.9799940586090088, -1.1685237884521484, 1.395931601524353, 0.19966767728328705, 1.0289133787155151, -0.11009088158607483, 0.1986171454191208, -0.446150541305542, -0.049903083592653275, -0.21488697826862335, 1.1106592416763306, 1.3855317831039429, -0.0305120050907135, 0.3217240273952484, 0.5336903929710388, 0.06338631361722946, 0.6668434143066406, 0.8335056304931641, -0.6792657375335693, -0.44922035932540894, 0.09439938515424728, 0.5058587193489075, -0.4957827627658844, 0.5511695146560669, -0.8946033716201782, -0.5054042339324951, -1.3769947290420532, -0.12974373996257782, 1.3133355379104614, -1.5151126384735107, -0.19475236535072327, 0.25977712869644165, -1.2517898082733154, -0.5810561180114746, 1.380081057548523, 0.18051636219024658, 0.3671732246875763, 0.21706411242485046, 1.647964358329773, 0.4386036992073059, -0.14553016424179077, -1.7963716983795166, 0.1199524998664856, 0.3291529715061188, 0.9537290334701538, -1.0498770475387573, 0.47756659984588623, -0.8862125873565674, 0.9642132520675659, 0.13827060163021088, 2.0055665969848633, 0.655284583568573, 0.6990712285041809, 0.14931242167949677, 0.9179575443267822, 0.26008978486061096, 0.7855579257011414, -0.22212837636470795, 1.2872675657272339, 0.4160647690296173, -0.19372905790805817, 0.5318934321403503, 0.16265250742435455, -0.1222682073712349, -0.7009243965148926, 0.4120591878890991, 0.19221465289592743, -0.36388662457466125, 0.9670823216438293, 0.21777766942977905, -0.9966732859611511, 0.14458611607551575, -1.1829222440719604, 0.5655443668365479, 1.1229575872421265, 0.7213889360427856, 0.01871398650109768, 0.7361350059509277, -0.5539096593856812, -0.15083637833595276, 0.8125697374343872, -0.43176406621932983, 0.19372493028640747, 0.4990503787994385, 0.3761744797229767, -0.679690957069397, -0.5346507430076599, 1.0967864990234375, 0.1407819241285324, -0.21350543200969696, 0.6772711873054504, -0.32918745279312134, 0.3914961516857147, -0.4314715266227722, 0.7998514771461487, -1.1336498260498047, -0.8860716819763184, -0.44146308302879333, -0.9511108994483948, -0.7184846997261047, 0.35910478234291077, -0.06139635667204857, 0.22318623960018158, 1.14906907081604, 0.30494239926338196, -0.07895947247743607, -0.48377007246017456, 0.4566732347011566, -0.3361426293849945, -0.44798004627227783, -0.8607734441757202, -0.9200814366340637, -0.12358454614877701, 0.1666170209646225, 1.4530787467956543, 0.2359359860420227, 1.1493850946426392, 0.7098715305328369, -0.5780335664749146, 0.7476620078086853, 0.22115398943424225, 0.6871505379676819, 0.7092978954315186, 0.8039474487304688, -0.27599450945854187, -1.0953348875045776, 0.6524115800857544, -0.8966850638389587, 0.43657147884368896, -0.43432390689849854, 0.2553199827671051, 1.0390212535858154, -0.6389173269271851, 0.6956237554550171, 0.4303245544433594, -0.6358108520507812, 0.009701847098767757, 0.37482360005378723, 0.10822486877441406, -0.6099177598953247, -0.2313316911458969, -0.37899500131607056, 0.6872001886367798, -0.7211748361587524, 0.6459826231002808, -0.510354220867157, -0.8854093551635742, -0.4448501765727997, -0.7759844660758972, 0.6911142468452454, 0.444286584854126, 0.9645032286643982, 0.4487100839614868, -0.4216158092021942, 0.2626444399356842, 0.17869329452514648, 0.3547215163707733, 0.036728642880916595, 0.8236657977104187, 0.2580763101577759, -0.526233434677124, 0.9449905753135681, -0.007571886293590069, 0.0019253294449299574, 1.0537785291671753, 0.2271183729171753, -0.18075236678123474, 0.9090803861618042, -0.5705404281616211, -0.4388093650341034, -0.5895918607711792, 0.577724814414978, 0.41047200560569763, 0.1034160628914833, 1.3746001720428467, -1.2177692651748657, -1.3644837141036987, -0.8079995512962341, 0.5895416736602783, -0.21614153683185577, 0.38463732600212097, 0.22526098787784576, 1.0799815654754639, -0.8584200143814087, 0.47622787952423096, 0.06072114408016205, -0.8411048650741577, -1.0762524604797363, -0.4097662568092346, -0.37287867069244385, -0.7797958254814148, 0.07673468440771103, -0.23392172157764435, -0.56235271692276, 0.4008461534976959, -0.8544020056724548, -0.7309345602989197, 0.43007346987724304, -0.3841441869735718, -0.14227831363677979, -0.5944385528564453, 0.4494234323501587, -0.5705199837684631, 0.4546012878417969, -1.5211796760559082, 1.2993844747543335, -0.7496945261955261, -0.07760431617498398, 0.9999907612800598, 0.0077355182729661465, -0.4617611765861511, 0.6109358668327332, -0.8044702410697937, -1.017378807067871, 0.6688162684440613, 0.24329252541065216, -0.4070567190647125, 0.35658812522888184, 0.4826072156429291, 0.5779634714126587, 0.10198204964399338, 0.27065590023994446, 0.8501660823822021, -0.13188529014587402, -1.3996373414993286, -1.2821334600448608, -0.6951904892921448, 0.19467154145240784, -0.272449791431427, -1.0074455738067627, 0.9785897135734558, 0.5096851587295532, -1.2629557847976685, 0.2719125747680664, 0.5105331540107727, -0.1197512149810791, 0.4767060875892639, 0.704275906085968, 0.13263775408267975, 0.8977181315422058, -0.10080656409263611, 0.09664496034383774, -0.9794387817382812, 0.3309182822704315, 0.4923034906387329, -0.5296226739883423, 0.4470023810863495, 0.8578778505325317, 0.5390238761901855, 0.537630558013916, 0.06577829271554947, -0.23163379728794098, -0.005764790344983339, -0.9213749170303345, -0.6102089881896973, 0.41008561849594116, -0.6297637224197388, 0.9136307239532471, 0.8468473553657532, -1.3704936504364014, -0.5119035840034485, 0.07902127504348755, 0.43257787823677063, -0.5028973817825317, -0.8527795076370239, -0.45955032110214233, -0.1770625114440918, -0.3611309826374054, -0.028076136484742165, 0.6626242995262146, -0.1870766431093216, 0.4827907085418701, -0.04497770965099335, 0.05853637680411339, -0.059287458658218384, 0.11305735260248184, 0.366995632648468, 0.6079416871070862, -0.49162018299102783, -0.5910335779190063, -0.3080071210861206, -0.34619736671447754, 0.8045089840888977, 0.24413762986660004, -0.5488672256469727, 0.6630406975746155, 0.11720733344554901, -0.8564557433128357, 0.3690645098686218, 0.43067535758018494, 0.04344749450683594, 0.513870358467102, 0.27220848202705383, -0.01727904938161373, 1.0397685766220093, -1.2795233726501465, -1.01981520652771, -0.44748029112815857, 1.1636583805084229, 1.2613242864608765, 0.7481783032417297, 1.3358386754989624, -0.529545247554779, -0.045909103006124496, -0.138161301612854, -0.5639477968215942, -0.3187635838985443, -0.3181152045726776, -0.5653911232948303, -0.3549869656562805, -0.23078329861164093, 0.20003128051757812, 0.20045430958271027, 0.778279721736908, -0.1333507001399994, 0.5484133958816528, 1.0005613565444946, -0.4000333249568939, -0.7849438786506653, -0.14063666760921478, 0.09080548584461212, -0.24312031269073486, 0.9625166654586792, 0.8784067034721375, -1.6848084926605225, -0.25487303733825684, -0.06903278827667236, -0.11576655507087708, 0.41132110357284546, 0.352102130651474, 0.13272541761398315, -1.1060541868209839, -1.4046623706817627, -0.10193236172199249, 0.7355469465255737, 0.680045485496521, -0.12317163497209549, -0.9387986063957214, 0.5341102480888367, 0.5950049161911011, 0.4160023629665375, -1.116257905960083, 0.8708517551422119, -0.24035261571407318, -0.8385961055755615, -0.4300338625907898, 0.4907485246658325, 0.1754629760980606, -0.8103151321411133, -0.03811601921916008, -0.0850834771990776, -0.498752623796463, -0.21284781396389008, 0.5845053195953369, 0.3278428316116333, 0.6378841400146484, 0.5227402448654175, 0.25662925839424133, 0.7869310975074768, -0.029167290776968002, -0.42557626962661743, -1.7970725297927856, 1.1553136110305786, 0.29714280366897583, 0.7848827838897705, -0.32488664984703064, -0.013573420234024525, -0.10876158624887466, 0.24491405487060547, 0.19188281893730164, 0.10457026958465576, 1.2114697694778442, 0.39065200090408325, -0.3741593658924103, -0.3609384000301361, 0.11151781678199768, 0.009405188262462616, -0.8966290950775146, -0.06994659453630447, 0.07014282047748566, -0.5558176040649414, -0.4141494333744049, 1.1544344425201416, 0.02698015794157982, -0.5235650539398193, -0.34097209572792053, -0.0071661584079265594, 1.0422121286392212, 0.24331769347190857, 0.6254961490631104, -0.4282304644584656, -0.41901102662086487, -0.6039671301841736, -1.4047266244888306, -0.8626607060432434, -0.12104359269142151, 0.03219960629940033, 0.47831353545188904, -0.7918252348899841, -0.18249818682670593, -0.3026866316795349, 0.44710248708724976, 0.04851240664720535, -0.2041645050048828, 0.6114306449890137, -0.1857120841741562, 0.46139615774154663, 0.02754388377070427, 0.3886643350124359, 1.6166772842407227, -0.3150966167449951, -0.4040070176124573, -0.16409434378147125, -0.03148798272013664, 0.341047465801239, -0.6837354302406311, 0.3362218737602234, 0.232265442609787, -0.7936685085296631, -0.8422203660011292, -0.6819696426391602, 0.15144822001457214, 1.43013334274292, 0.4066871106624603, 0.2920514941215515, 0.16443774104118347, -0.47574615478515625, -1.3516377210617065, 0.03981916233897209, 0.09306053072214127, -0.3742313086986542, -0.597144603729248, 0.29521453380584717, 0.37123605608940125, -0.08913151919841766, 0.7446158528327942, 0.013975168578326702, 1.0344358682632446, 0.18933351337909698, -0.35675981640815735, -0.03429656848311424, 0.36915507912635803, 0.7202798128128052, 2.3207006454467773, 0.7450007796287537, -0.7355366349220276, -0.7955295443534851, 0.9183914661407471, -0.8058028221130371, 0.13575133681297302, 0.5707839727401733, 0.3451191484928131, 1.2702900171279907, -1.9079500436782837, -1.3989354372024536, 0.5316556692123413, 0.40333494544029236, 0.7152993083000183, 0.6379308104515076, -0.2013482302427292, -0.8211362361907959, 0.5473736524581909, 0.5772196650505066, 0.2941170334815979, 0.010804190300405025, -0.13307426869869232, 0.4420557916164398, 0.21734605729579926, -0.5097896456718445, 0.33437737822532654, -0.24945279955863953, -0.23822364211082458, -0.03184674307703972, -0.17922019958496094, 0.5121146440505981, 0.3115372359752655, -0.2238835096359253, 1.1903672218322754, -1.0884029865264893, -0.3010968565940857, 0.12819893658161163, -0.6812649965286255, 0.3039640486240387, -0.6893632411956787, -0.6594224572181702, -0.18027940392494202, -0.9804227352142334, -0.482356458902359, 0.13212920725345612, -0.8273394703865051, -0.5034433007240295, -0.6699502468109131, -0.4734022915363312, -0.11630527675151825, 0.6423763036727905, 1.4794197082519531, 0.35421431064605713, 0.6830573081970215, 0.777426540851593, 0.06924954801797867, -0.6724012494087219, 0.242100790143013, 0.8081682920455933, -0.2636494040489197, -0.0642714574933052, -1.3106056451797485, -0.7304772734642029, 0.516628086566925, 0.30748099088668823, 0.08643615990877151, 0.26206010580062866, 1.2756426334381104, 1.0251641273498535, 0.07170513272285461, -0.5341665744781494, 0.07517847418785095, -1.0385304689407349, 0.24590161442756653, 0.4317795932292938, -0.707737147808075, -0.3372374176979065, -0.5366159081459045, -1.4552689790725708, 0.8468238711357117, -0.4320921003818512, -0.8799867033958435, 0.8278507590293884, -0.34044742584228516, -0.05580886825919151, -0.027090713381767273, -0.3384077250957489, 0.6600168943405151, 0.18286758661270142, -0.5518956780433655, -1.385360598564148, 0.3377041220664978, 0.29227349162101746, 0.18020635843276978, -0.022613057866692543, 0.3049810528755188, 0.7092686295509338, -0.43337273597717285, -0.3077583909034729, 0.12867343425750732, 0.4785797894001007, 0.9843782782554626, -0.4437822699546814, -0.5576605796813965, 0.006378148682415485, -1.0618510246276855, -0.595262885093689, -0.06001288816332817, 0.029377838596701622, -0.24821223318576813, -0.4822903275489807, -0.1758250892162323, -0.5170972347259521, -0.12267951667308807, -0.31751877069473267, -0.11210598051548004, 1.0187958478927612, 0.4153558909893036, -0.7898771166801453, 0.10567692667245865, -0.2752780020236969, -0.7769407629966736, -0.5185586214065552, -0.40180325508117676, 0.8854281902313232, -1.0400413274765015, -0.41598621010780334, 0.06026490777730942, -0.18805748224258423, 0.03433358296751976, -0.3476107120513916, 0.4406100809574127, -1.3871036767959595, -1.59507155418396, -0.9404652714729309, 0.2575265169143677, 1.1289142370224, -1.2478885650634766, 0.6209105253219604, 0.6544348001480103, -1.7720956802368164, 0.2104388326406479, 0.08331736922264099, -1.0955394506454468, 0.3027385175228119, -1.262057900428772, 0.44029250741004944, -0.6910341382026672, 0.34550487995147705, -0.8290786743164062, 1.6756452322006226, -1.329634666442871, -1.5132980346679688, -0.8329538702964783, 0.23317685723304749, 0.23955097794532776, 0.904935359954834, -0.3236527442932129, 1.071104645729065, 0.6441947817802429, -0.6639665961265564, -0.6577615737915039, 0.47331926226615906, -0.703499436378479, 0.4007827043533325, 0.15465085208415985, 0.658881425857544, 0.041813068091869354, 0.7695144414901733, -0.5441446900367737, 0.5774179100990295, -0.3789968490600586, 0.11806227266788483, -0.08404051512479782, -0.47203195095062256, -0.09892837703227997, 0.7385664582252502, -0.8535171151161194, -0.46472516655921936, 0.1939416229724884, -0.7119271159172058, -1.4829089641571045, 0.9643808603286743, 0.940613329410553, -1.0347449779510498, -0.6129740476608276, 0.0054040467366576195, 0.15649324655532837, -0.9159114956855774, 0.5395856499671936, -0.28964483737945557, 0.2091449499130249, 0.18842415511608124, -0.30322694778442383, -0.421539843082428, -0.5360214710235596, 0.09770329296588898, 0.7548836469650269, 0.1970256268978119, -0.33412960171699524, 1.2191247940063477, 0.09017933905124664, 0.01055048406124115, -0.9579993486404419, 1.0060763359069824, 0.743845522403717, 0.08495037257671356, -0.005997165106236935, 0.06939494609832764, 0.3512006402015686, 0.8589085340499878, -0.6952931880950928, 0.371837854385376, -1.0889525413513184, 0.22625049948692322, 0.7763397693634033, -0.30277132987976074, -0.6579011082649231, -0.5132361650466919, -0.4962421655654907, 1.0589812994003296, 0.1824735850095749, -0.5707535743713379, 0.22600245475769043, 1.0705931186676025, 0.11533469706773758, -0.29138249158859253, 0.12025072425603867, 0.24235519766807556, -0.04121798276901245, 0.02565292827785015, -0.12848950922489166, 0.645168125629425, -0.6650627851486206, 0.36106815934181213, -0.09931507706642151, 0.26488766074180603, -0.2343471497297287, -0.8665980696678162, -1.2170344591140747, 0.27851495146751404, -0.9117846488952637, -1.138424038887024, 0.7500053644180298, -1.3882728815078735, -0.7929147481918335, 0.7020565867424011, -0.1370769888162613, -0.1157894879579544, -0.1488790214061737, -0.3365374207496643, -0.4631408452987671, 0.16981269419193268, 0.915507435798645, -0.6295821666717529, 1.007845401763916, 0.8215022087097168, 0.2875814437866211, -0.8455143570899963, -0.5685102939605713, 0.5827562212944031, 0.2580145299434662, -0.12590545415878296, -0.13364915549755096, 0.5929115414619446, -0.14375776052474976, -0.23531818389892578, 0.8137637972831726, -0.05068175867199898, 0.3675772249698639, -0.09467465430498123, -0.607789158821106, 0.5365492105484009, 0.6508463025093079, 0.3115353584289551, -0.7329890727996826, -1.2571684122085571, -1.1407780647277832, 0.5241327881813049, -0.3518679738044739, 0.7317033410072327, 0.2420216202735901, 1.1740925312042236, 0.10115151107311249, -0.30626335740089417, 0.05394405871629715, -0.8546609878540039, 0.06324919313192368, 0.03577083349227905, 0.8919398188591003, -0.48580998182296753, -0.02086859568953514, -0.2054206281900406, -0.9044468998908997, 0.4392491281032562, -0.0927312895655632, 0.457115113735199, -0.04091225937008858, -0.7902714014053345, -0.5803123712539673, -0.824342668056488, 0.46207043528556824, 1.7866723537445068, 0.3558836877346039, 0.27800485491752625, -0.19154776632785797, -1.0008008480072021, 0.31008824706077576, 0.2756316065788269, 0.4581854045391083, -0.18339720368385315, 0.7008524537086487, 1.0261950492858887, 0.19008170068264008, 0.7382199764251709, -0.41133546829223633, 0.4183002710342407, -0.40801557898521423, -0.23271270096302032, -0.47974464297294617, -0.05334112420678139, 0.21871834993362427], [0.41859233379364014, 1.9564801454544067, -2.356013536453247, -0.35427144169807434, 1.3553684949874878, 0.6586287617683411, 1.5047565698623657, -0.5197713971138, 0.7165552377700806, -0.2405809760093689, -0.1076102927327156, -0.7758241891860962, 0.27524808049201965, 1.400147557258606, 0.37667524814605713, 0.914047122001648, 0.7107900977134705, -0.18024270236492157, 0.8665611147880554, 1.1464332342147827, -0.18828698992729187, -0.32989010214805603, 0.057242922484874725, 0.17610864341259003, 0.3446492850780487, 0.8986542820930481, -0.40630778670310974, 0.3581670820713043, -0.8308984637260437, -0.7937400937080383, 0.17391328513622284, -0.07800880074501038, 0.16902200877666473, -0.3068075478076935, -1.1525466442108154, -0.8480618596076965, 1.9619638919830322, 0.937961220741272, 1.2989779710769653, 0.5737985372543335, 1.8460379838943481, -0.05101531744003296, 0.16922907531261444, -2.621666669845581, 0.2439166009426117, -0.22013744711875916, 0.628327488899231, -0.573144793510437, 0.5094385743141174, -0.3773147463798523, 0.9987568855285645, -0.5728431344032288, 1.0943584442138672, 0.540929913520813, 0.6596775650978088, -0.6406901478767395, 0.3188207149505615, 1.0960170030593872, 0.12152557075023651, -0.043320924043655396, 1.0511541366577148, 0.39464041590690613, -1.0372412204742432, 0.7481093406677246, -0.006951538845896721, -0.3447369337081909, 0.1592434048652649, 0.23160099983215332, 0.1717020720243454, -0.017886849120259285, 0.296039879322052, -0.5827378630638123, -0.3644658923149109, 0.06770764291286469, -0.8175718188285828, 0.39592593908309937, 0.8907937407493591, 1.0704323053359985, 0.33095693588256836, -0.15547338128089905, -0.3179163932800293, -0.20676273107528687, 0.49046406149864197, -0.20405273139476776, 0.46559450030326843, 0.7297629714012146, 0.7899459600448608, -0.35176438093185425, 0.2241184115409851, 1.3723475933074951, 0.8089106678962708, -0.2510131001472473, 0.5991971492767334, -0.21480907499790192, -0.250101238489151, -0.24610377848148346, 0.012885002419352531, -1.0623043775558472, -0.6779595613479614, -1.0533827543258667, -0.4307260811328888, -0.6411612033843994, -0.19010750949382782, 0.009510302916169167, -0.30484646558761597, 1.1789031028747559, 0.6342036724090576, 0.40144845843315125, -1.1337151527404785, 0.13017217814922333, -0.5030678510665894, 0.7968072295188904, -1.0773835182189941, -0.7134830355644226, -0.2335311472415924, 0.8403811454772949, 1.3181761503219604, -0.5543027520179749, 0.5819255113601685, 0.6181225776672363, -0.7811219692230225, 0.4115593731403351, -0.31653544306755066, 1.151572823524475, 0.8806987404823303, 0.763727068901062, -0.6388235688209534, -0.22404851019382477, 0.5170351266860962, 0.47180333733558655, -0.083842433989048, -0.7241384983062744, 0.0751766487956047, -0.17930705845355988, -0.6219104528427124, 1.3795301914215088, 0.00037564942613244057, -0.07322637736797333, 0.10309009253978729, -0.24811439216136932, 0.2872162163257599, -0.17759932577610016, -0.3429928719997406, -1.0596657991409302, 0.17870576679706573, -0.7131246328353882, 0.562129020690918, 0.18365749716758728, -0.5695406198501587, -0.11233774572610855, -1.4814571142196655, 0.8563281297683716, -0.358877569437027, 0.8577160835266113, 0.16529260575771332, 0.11236198991537094, 0.7026668190956116, 1.0582354068756104, 0.22033308446407318, -0.2024279683828354, 1.0011391639709473, -0.0729823037981987, -1.053565263748169, 0.8551155924797058, 0.3472033143043518, 0.026726311072707176, 0.8515254855155945, 0.6177075505256653, -0.41206058859825134, 1.0287305116653442, -0.8808794617652893, -0.7520983219146729, -0.6184867024421692, 0.6679604053497314, 1.2462979555130005, -0.9994481801986694, 1.5929913520812988, -0.7280726432800293, -0.7671019434928894, -1.6169525384902954, -0.08356087654829025, -0.011194592341780663, 0.9665279388427734, 0.01852094940841198, 1.0029628276824951, 0.024656057357788086, 0.7649442553520203, 0.05635199323296547, -0.3925635814666748, -0.9033961892127991, -0.6281908750534058, 0.44712334871292114, -1.1276237964630127, -0.19031843543052673, -0.2911069989204407, -1.1818876266479492, 0.4454405903816223, -0.7537552714347839, -0.8093227744102478, 0.2469158172607422, 0.024975750595331192, -0.6132460236549377, 0.10614029318094254, 0.8079543709754944, -0.8122594356536865, 0.3704902231693268, -1.3265647888183594, 0.7007449865341187, -0.35071051120758057, -0.2657291293144226, 0.9066363573074341, 0.197956845164299, -0.9959626197814941, 0.8414736390113831, 0.10025687515735626, -1.8820154666900635, 0.5182672142982483, 0.7639356851577759, -0.10133978724479675, 0.7447744011878967, 0.13922014832496643, -0.194532573223114, 0.5929774045944214, -0.04275834187865257, 0.7358137965202332, 0.1013033390045166, -1.5623691082000732, -0.9884749054908752, -0.10376647114753723, -0.3209475874900818, -0.26032838225364685, -1.0528470277786255, 0.9301160573959351, 0.7608629465103149, -1.13222074508667, 0.3402220606803894, 0.182060107588768, 0.149706169962883, 0.5900683403015137, 0.876614511013031, -0.28555870056152344, 1.137567400932312, -0.02421453408896923, 0.016283972188830376, -0.32736217975616455, 0.6496109366416931, 0.5841776132583618, -0.5580625534057617, -0.0030350368469953537, 1.0458356142044067, 1.2889626026153564, -0.10849804431200027, -0.0668095126748085, -0.37073904275894165, -0.0385703481733799, -1.155343770980835, -0.4623715579509735, -0.04802561551332474, 0.02145993337035179, 0.9089944958686829, 0.3151695132255554, -1.4154211282730103, 0.01191683765500784, 0.008633514866232872, 0.2678024470806122, 0.16264650225639343, -0.4146097004413605, -0.4111505150794983, -0.1993435174226761, 0.30724212527275085, 0.05911087244749069, 0.16657572984695435, -0.06230529397726059, 0.5471819639205933, -0.157894104719162, -0.7438116073608398, -0.9271214008331299, 0.013782620429992676, -0.24448499083518982, 0.8246548175811768, 0.5551515817642212, -1.1696860790252686, -0.32920897006988525, 0.1622808575630188, 0.8608046770095825, 0.6279216408729553, 0.10084139555692673, 0.7279794812202454, 0.1827200949192047, -0.2990398406982422, 0.9664241075515747, 0.7478869557380676, -0.2189239263534546, 0.1324673891067505, 0.22546043992042542, 0.3160777986049652, 0.9855666160583496, -1.4334369897842407, -0.6220727562904358, -0.14451701939105988, 0.4101840555667877, 1.2412794828414917, 1.0748519897460938, 0.9129382371902466, 0.0006776377558708191, -0.028473306447267532, 0.288083553314209, -0.9134028553962708, -0.3316405415534973, -0.7942031025886536, -0.5020414590835571, -0.3089936375617981, -0.6960024833679199, 0.3703644871711731, -0.12946780025959015, 0.17661598324775696, -0.12185588479042053, 0.5673843026161194, 1.5891389846801758, -0.8404045701026917, -1.0696548223495483, -0.19029678404331207, -0.1342155784368515, -0.8983986973762512, 0.7652752995491028, 1.4210493564605713, -1.6285663843154907, -0.13531048595905304, 0.5942860841751099, -0.7805489897727966, 0.9877657294273376, 0.16591890156269073, 0.2368330955505371, -0.6324003338813782, -1.0956963300704956, -0.46033158898353577, 2.116142988204956, 0.3086380958557129, 0.4371764063835144, -0.7932494282722473, 0.22341756522655487, -0.07190150767564774, -0.12229222804307938, -0.6430347561836243, 0.7105873823165894, -0.4266364276409149, -0.7962705492973328, -0.23778477311134338, 0.28468677401542664, 0.7030684947967529, -0.6822708249092102, -0.0790913999080658, -0.17963378131389618, 0.0625123381614685, 0.0366213284432888, 0.2622029781341553, 0.5620805621147156, 0.8781625628471375, -0.14659512042999268, 0.41165173053741455, 0.8864473700523376, -0.6806914806365967, 0.18587622046470642, -1.2749696969985962, 0.7289316058158875, 0.8503367900848389, 1.3156111240386963, 0.07480534166097641, -0.36835935711860657, -0.20323596894741058, 0.3421415686607361, -0.3647429645061493, 0.2317759096622467, 1.3208273649215698, 0.14325059950351715, 0.6053876280784607, -0.4500662684440613, -0.5166512727737427, 0.07274137437343597, -1.4762991666793823, -0.27256065607070923, 0.10870111733675003, -0.7247096300125122, -0.48209407925605774, 0.8439256548881531, -0.09214689582586288, -0.32608839869499207, -1.2285183668136597, -0.3658757209777832, 0.5201767086982727, 0.21333177387714386, -0.28622421622276306, -0.09617367386817932, 0.0705728530883789, 0.4162611961364746, -0.3929198384284973, -0.8636947870254517, -0.1403602957725525, 0.16490401327610016, 0.6941238045692444, -0.748900294303894, -0.6601961255073547, -0.5795566439628601, 0.44351810216903687, 0.4017145037651062, 0.06333741545677185, 0.3453013598918915, -0.6797975897789001, -0.2987706661224365, -0.31403616070747375, 0.05893855169415474, 1.3287872076034546, -0.6937127709388733, -0.2981456518173218, 0.40802958607673645, 0.04663674160838127, 0.5774327516555786, -0.5422605276107788, 0.3616841435432434, 0.03371860831975937, -0.5099676847457886, -0.19368764758110046, -0.6501607894897461, 0.16011841595172882, 1.3703618049621582, 0.5820488333702087, -0.039320558309555054, 0.5362800359725952, -0.3654828667640686, -1.3454967737197876, 0.3055587112903595, 0.35681354999542236, -0.575718104839325, -0.29079490900039673, 0.8154043555259705, 0.26881304383277893, -0.14874356985092163, -0.10224604606628418, -0.508133590221405, 0.8698720335960388, -0.24826695024967194, 0.18260519206523895, -0.1372537612915039, 0.43354424834251404, 0.22076287865638733, 1.0174566507339478, 0.9068028926849365, -0.9391087293624878, -1.1620774269104004, 0.20896115899085999, -0.7961083650588989, 0.3744187355041504, 0.8320257067680359, 0.3616398870944977, 1.0594465732574463, -1.5232164859771729, -0.9879397749900818, 0.16096176207065582, 0.12539327144622803, 0.82559734582901, 0.676574170589447, -0.6910673975944519, -0.7879905104637146, 0.08073966950178146, -0.08755791932344437, -0.06359340995550156, 0.36851802468299866, 0.3358919024467468, -0.10246606916189194, 0.5066074728965759, -0.9917138814926147, 0.3862382471561432, -0.2073945701122284, -0.309671014547348, -0.2632501423358917, -0.15829350054264069, 0.6047171950340271, 0.724132776260376, 0.40003445744514465, 1.7109146118164062, -1.0737653970718384, -0.7185673117637634, 0.16976402699947357, -0.7080277800559998, -0.08797486126422882, -0.5667889714241028, -0.8095342516899109, -0.16374877095222473, -0.3942543566226959, -0.6698552370071411, 0.881659984588623, -0.9186072945594788, -0.5452669858932495, -0.23960155248641968, -1.0485233068466187, 0.5052751898765564, 1.157447338104248, 1.4162424802780151, 0.554251492023468, 0.16995802521705627, 0.7769246101379395, -0.06510618329048157, -0.7520589232444763, 0.7915365099906921, -0.043109651654958725, 0.18536235392093658, -0.18620198965072632, -1.2787624597549438, -0.5090522766113281, 0.2094583362340927, 0.5217241644859314, 0.4006807208061218, 1.519712209701538, 1.1973423957824707, 0.3660804331302643, -0.2498936802148819, -0.8616556525230408, 0.0905376523733139, -0.7275328636169434, 0.4178333282470703, 0.27262943983078003, -0.36476069688796997, -0.31032487750053406, 0.008057000115513802, -0.782768726348877, 0.07594241946935654, -0.4691585898399353, -1.4118868112564087, 1.0440982580184937, -0.06954535096883774, 0.45185884833335876, 0.7732391357421875, -0.45251622796058655, 0.18884605169296265, -0.036624860018491745, -1.090673565864563, -1.205601453781128, 1.058562159538269, 0.3536613881587982, 0.37037351727485657, -0.3201519250869751, 0.5216547846794128, 0.49793902039527893, -0.2808299958705902, 0.033399492502212524, 0.40121692419052124, -0.1713523417711258, 0.5205663442611694, -0.13165470957756042, -0.7397119402885437, 0.4147411584854126, -0.44710132479667664, -0.5775741338729858, -0.14954774081707, 0.9394530653953552, -0.11583861708641052, -0.6554795503616333, -0.39670512080192566, -0.5103477835655212, -0.006226172670722008, -0.7092977166175842, -0.3825792670249939, 0.5958938598632812, 0.018705975264310837, -0.6383472084999084, 0.028827248141169548, 0.042483020573854446, -0.5210777521133423, -1.2413944005966187, 0.11680828034877777, 0.3997820019721985, -1.43035888671875, 0.46793463826179504, 0.2936672866344452, -0.5853136777877808, 0.2126464694738388, -0.8773190975189209, 0.37420862913131714, -1.8826137781143188, -1.6172600984573364, -1.1002978086471558, -0.019694378599524498, 0.7271712422370911, -0.29764115810394287, 0.7955940961837769, 0.714303195476532, -0.8131667971611023, -0.5628316402435303, -0.6719266176223755, -1.1169458627700806, -0.40406274795532227, -0.7215739488601685, 0.6941518187522888, -0.40757694840431213, 0.3477558195590973, -0.3009045720100403, 1.366440773010254, -1.5391911268234253, -1.793342113494873, -0.9819908142089844, -0.1047217845916748, 0.6168574094772339, 0.42381224036216736, -0.6541627049446106, 1.1140533685684204, 0.27844133973121643, -0.38693466782569885, 0.2193719893693924, 0.17463232576847076, -0.5707341432571411, 0.6018064022064209, 0.42014962434768677, 0.6945086717605591, 0.5069830417633057, 1.178056240081787, 0.03740439563989639, 0.5163565874099731, 0.48043349385261536, 0.10774971544742584, -0.6296392679214478, -0.2234991192817688, 0.04668080806732178, 0.5596134662628174, -1.1400165557861328, -0.4356829524040222, 0.16728565096855164, -0.8792318105697632, -0.5830622911453247, 0.8350939750671387, 1.3510551452636719, -0.5374854803085327, 0.08629489690065384, 0.07145223766565323, 0.17808428406715393, -1.270047903060913, 0.2051985263824463, -1.1120661497116089, -0.26489174365997314, -0.483833909034729, 0.18013030290603638, 0.5924134254455566, -1.5927551984786987, 0.11916755884885788, 0.45644262433052063, 0.04822013899683952, 0.9164525270462036, 0.7104161977767944, 0.7992008924484253, 0.05533018708229065, -0.5085734128952026, 1.853896141052246, 1.4962369203567505, -0.31621602177619934, -0.4442935287952423, 0.8614079356193542, -0.3953893482685089, 0.29644644260406494, -0.8378669619560242, -0.30682626366615295, -0.9814543724060059, 0.5750320553779602, 0.5719563364982605, -0.2676647901535034, -0.24723218381404877, -0.24191759526729584, 0.02556755393743515, -0.19625157117843628, 0.9056281447410583, -1.206527829170227, -0.24039854109287262, 0.49362245202064514, -0.10295655578374863, -0.3622519373893738, 0.27252382040023804, 0.9065815210342407, 0.5450108647346497, -0.7317206859588623, 0.30020657181739807, 0.7970907092094421, -0.9853953123092651, 1.1000335216522217, -0.47865161299705505, 0.2584764063358307, -0.3127698600292206, -0.5959730744361877, -1.046298861503601, 0.46280452609062195, -0.2136480212211609, -0.5940815210342407, 0.7417053580284119, -1.3931430578231812, -0.7951269745826721, 0.29579633474349976, -0.2621093988418579, -0.7065600156784058, -0.6584225296974182, -0.28435030579566956, -0.2985799312591553, 0.4790995419025421, 0.05292585492134094, -0.37755435705184937, 0.7532499432563782, 0.7388548851013184, 0.004144606646150351, -1.1033467054367065, -0.8245709538459778, 0.5799753665924072, -0.575943648815155, 0.06537948548793793, 0.6728289723396301, 1.7321372032165527, -0.3170776963233948, -1.0689609050750732, 0.5130501389503479, 0.39523255825042725, 0.07666067779064178, -0.021023843437433243, -0.8089483976364136, -0.6093312501907349, -0.3123171627521515, 1.0339782238006592, -1.3638575077056885, -1.0113050937652588, -0.705467939376831, 0.33274605870246887, -0.5784135460853577, 0.6215270757675171, -0.6536281704902649, 0.9160667061805725, 0.0973244458436966, -0.6540391445159912, -0.6347795724868774, -0.06184068322181702, 0.49358999729156494, -0.1251714676618576, 0.905681848526001, -0.06359059363603592, -0.49106860160827637, -0.8882789015769958, -1.0871011018753052, 0.32645657658576965, -0.27665162086486816, 0.19591380655765533, 0.2904876172542572, -0.9856472015380859, -0.16397331655025482, -1.2107537984848022, 0.4458441138267517, 1.0931278467178345, 0.3840581476688385, -0.07275976240634918, 0.22300894558429718, -1.2157281637191772, -0.37779924273490906, 0.14312173426151276, 0.2564050555229187, 0.5976402759552002, 0.41717565059661865, 1.4901866912841797, 0.7738776803016663, -0.11421036720275879, -0.8903694152832031, 0.12946192920207977, -0.4735865294933319, -0.20512238144874573, -0.7399477362632751, -0.45527368783950806, -0.25808030366897583], [0.2219424545764923, 1.9485046863555908, -2.245952606201172, -1.007666826248169, 1.1094610691070557, 0.2764046788215637, 0.9308558702468872, 0.22762979567050934, -0.10605742037296295, -0.3485185205936432, 0.25812917947769165, -0.0673447772860527, 0.9536536931991577, 0.9490875005722046, -0.5380074977874756, 0.776709258556366, 0.7869172692298889, -0.6693395376205444, 0.722302258014679, 1.61184823513031, 0.03626355528831482, -0.18002605438232422, 0.05174904689192772, -0.18991565704345703, -0.5192949175834656, 0.05850082263350487, -1.128975510597229, -1.1396037340164185, -0.9176783561706543, -0.9903120994567871, 1.02409827709198, -0.7868971228599548, -0.23518650233745575, 0.08751624077558517, -0.7589714527130127, -0.3052597641944885, 1.745934247970581, 1.010834813117981, 0.8932992219924927, -0.02014286443591118, 1.519810676574707, -0.3369411826133728, 0.19622845947742462, -1.2795664072036743, 0.5464909672737122, 0.1401604861021042, 0.41820576786994934, -0.3580508828163147, -0.24245871603488922, -0.9566723704338074, 1.428667426109314, 0.039260730147361755, 1.375649333000183, 1.2031705379486084, 0.368507444858551, -0.0017967303283512592, 0.34654414653778076, 0.4937438368797302, 0.7547193169593811, -0.09875824302434921, 0.031230201944708824, 0.2625797390937805, 0.18151040375232697, 0.5680009126663208, 0.1527854949235916, -0.5410609841346741, 0.6750897765159607, 0.4239884912967682, 0.1786099374294281, -0.6085377931594849, -0.36905378103256226, 0.47090843319892883, -0.5832985043525696, 0.46895334124565125, -1.706220269203186, 0.5938918590545654, 0.7960811853408813, 0.9118368625640869, -0.08183765411376953, 0.25006747245788574, -1.2032109498977661, 0.42808017134666443, 0.5229387879371643, 0.04481377452611923, 1.2761493921279907, -0.1429472416639328, 0.5204747915267944, -0.1485888659954071, -0.48650670051574707, 1.6826497316360474, 0.15938912332057953, 0.2974405288696289, -0.0521811842918396, -1.1873377561569214, -0.27778512239456177, -0.2835429012775421, 0.04285690560936928, -0.6681943535804749, -1.198606014251709, -0.8287588357925415, -0.37221670150756836, -0.7686914205551147, -0.04420030117034912, -0.05887787789106369, -0.08228342980146408, 2.0498669147491455, 0.2779352366924286, 0.5127529501914978, -1.1618887186050415, -0.21378546953201294, -0.34642282128334045, -0.10031305253505707, -0.8182240724563599, -0.6655097007751465, -0.21402738988399506, 0.23309063911437988, 1.42441987991333, -0.020755184814333916, 0.263440877199173, 0.71876460313797, -0.10833030939102173, -0.06754028052091599, 0.09778938442468643, 0.4331091344356537, 0.8418026566505432, 0.44166550040245056, -0.30112943053245544, -0.15105727314949036, 0.8379020094871521, -0.23111583292484283, -0.13527537882328033, -0.4423469603061676, 0.10780629515647888, 0.4269992411136627, -0.5966119170188904, 1.4809291362762451, -0.005247945431619883, 0.08957096934318542, -0.5275466442108154, -0.0022358614951372147, 0.18228480219841003, -0.640346348285675, -0.7388288378715515, -0.39598360657691956, 0.04837624356150627, -0.2865369915962219, 0.7478600740432739, -0.10743527859449387, -0.6883798837661743, 0.1764390468597412, -1.1390796899795532, 0.48759642243385315, 0.4402841627597809, 0.4723999500274658, 0.07374977320432663, -0.39339181780815125, 0.546000063419342, -0.0776575356721878, 0.28526169061660767, -0.38700294494628906, 0.9285258650779724, -0.14066335558891296, -1.346579909324646, 0.5223984122276306, 0.6702019572257996, -0.2816998064517975, 0.21605977416038513, 0.29988378286361694, 0.5526328682899475, 1.3304346799850464, -0.7562598586082458, -0.12399033457040787, -0.3142521381378174, 1.1787662506103516, 0.4424019455909729, -1.0819694995880127, 1.5204061269760132, -0.8809692859649658, -1.2600048780441284, -1.2655435800552368, -0.14432603120803833, -0.4164383113384247, 0.28010138869285583, -0.08116627484560013, 0.9407278895378113, -0.22228801250457764, 0.2417769879102707, -0.687279224395752, -0.501401960849762, -0.6883858442306519, -1.1625783443450928, -0.0804864764213562, -0.8904430866241455, 0.4561057388782501, -0.3466918468475342, -0.28881534934043884, 1.468929648399353, -0.910923182964325, -0.35224100947380066, -0.32821062207221985, 0.3624129593372345, -0.11407889425754547, -0.7875970005989075, 0.6652436852455139, -0.49996069073677063, 0.6786607503890991, -1.5227768421173096, 1.5262902975082397, -0.17444032430648804, 0.04952102154493332, 0.7064604163169861, 0.012623920105397701, -0.33187463879585266, 0.6723778247833252, -0.4207543432712555, -1.8117015361785889, 0.10180900245904922, 0.6341094374656677, -0.7100276350975037, -0.043469615280628204, 0.15627069771289825, 0.5608516931533813, 0.4033903479576111, 0.48898038268089294, 0.49188047647476196, -0.21299581229686737, -0.9584972262382507, -0.8556778430938721, -0.8797711730003357, 0.5527664422988892, -0.20119589567184448, -1.867554783821106, 0.3304002285003662, 0.5679107308387756, -0.8192451596260071, 0.27795472741127014, 0.03840218111872673, 0.39702096581459045, 0.6756560206413269, 1.6024184226989746, 0.23566970229148865, 0.36776289343833923, -0.7076936960220337, -0.12648707628250122, -0.6567769646644592, -0.08286955207586288, 0.8703124523162842, -0.7064455151557922, 0.7671306133270264, 1.5407936573028564, 0.24412600696086884, -0.3059062957763672, 0.408062607049942, 0.017746001482009888, -0.34919050335884094, -0.8651453256607056, -0.05208523944020271, 0.025255881249904633, -0.03445693850517273, 1.115053653717041, 0.6366250514984131, -0.8272659778594971, 0.3699222803115845, -0.3137165904045105, 0.13452918827533722, 0.042716603726148605, -0.6168230772018433, -0.07084035128355026, -0.49975860118865967, -0.46908342838287354, 0.24187706410884857, -0.05484464764595032, -0.2532440423965454, 0.4872727394104004, -0.13873708248138428, 0.05008137971162796, -0.5421649217605591, 0.10339447855949402, -0.1832023411989212, 0.6933233141899109, -0.24264301359653473, -1.5382558107376099, -0.6041397452354431, 0.5830317735671997, 0.3051726520061493, 0.6162744164466858, -0.40964028239250183, 0.33171531558036804, 0.060797251760959625, -0.07991039007902145, 0.24538813531398773, 0.2614850401878357, -0.27935218811035156, -0.00339469313621521, -0.9578942060470581, 0.8740473389625549, 1.1875927448272705, -1.4951962232589722, -0.660879909992218, -0.48507991433143616, 0.8260505795478821, 0.9922658801078796, 0.3895275592803955, 1.2474660873413086, 0.12013529986143112, 0.21270257234573364, 0.052125632762908936, -0.5117121338844299, -1.0891568660736084, -0.8236269950866699, -0.8079431653022766, -0.45321008563041687, -0.5730075240135193, -0.4741576910018921, -0.29933375120162964, 0.570879340171814, -0.19796426594257355, 0.3752345144748688, 1.6549251079559326, -0.18374423682689667, -1.0665053129196167, 0.03195774927735329, 0.11732307821512222, -1.0678921937942505, 0.6730120182037354, 0.6842135787010193, -0.22737890481948853, -0.5796210169792175, 0.3671872913837433, 0.6873863339424133, 0.7211669683456421, 0.15608534216880798, 0.0725162997841835, -1.7739373445510864, -0.9280814528465271, -0.5851432085037231, 1.2219691276550293, -0.08121569454669952, -0.05489661917090416, -0.250113308429718, 0.06604466587305069, 0.8621314167976379, 0.23394405841827393, -0.25638285279273987, 0.6681986451148987, 0.01624169759452343, -0.7410600781440735, -0.6468636393547058, 0.09745443612337112, 0.3714296221733093, -0.04248810559511185, 0.19953231513500214, 0.38122522830963135, 0.121697798371315, 0.09111035615205765, 0.7412069439888, 0.41129928827285767, 0.2482249140739441, -0.07193435728549957, 0.1885986030101776, 1.0462632179260254, -0.0022258199751377106, -0.05890004709362984, -1.2854183912277222, 0.9607869982719421, 0.2860838770866394, 0.994269073009491, -0.1077183336019516, -0.2100123018026352, -0.16345545649528503, 0.6848991513252258, 0.14710058271884918, -0.16133876144886017, 1.220285415649414, 0.02568439394235611, -0.36973482370376587, -0.23354516923427582, -0.3365788757801056, -0.1786031275987625, -0.20084266364574432, -0.08100713044404984, 0.18390537798404694, -1.3734409809112549, -1.3328336477279663, 0.4963124692440033, 0.21029618382453918, -0.7931250929832458, -0.8131171464920044, -0.28149405121803284, 0.7706913948059082, 0.15136949717998505, 0.7415717244148254, -0.4346485137939453, 0.7504109740257263, -0.22357283532619476, -1.0149646997451782, -0.23136834800243378, -0.138981893658638, 0.386679083108902, 0.45947906374931335, -0.7241154909133911, 0.07968834042549133, -0.5218262076377869, 0.3912983238697052, 0.6986158490180969, -0.540999174118042, 0.1564362496137619, -0.627589225769043, -0.2872789800167084, 0.36142319440841675, -0.19025547802448273, 1.0341850519180298, -0.047085508704185486, -0.17100396752357483, 0.17478936910629272, -0.16542230546474457, -0.36364108324050903, -0.8919656872749329, -0.1368361860513687, 0.2571381628513336, -0.8837701082229614, 0.3568083643913269, 0.1738874614238739, 0.3128417730331421, 1.967015266418457, 0.7296033501625061, 0.044214632362127304, 0.007546206936240196, -0.28341418504714966, -1.0836135149002075, 0.28509870171546936, 0.5222092270851135, -0.5633293390274048, -0.09459635615348816, 0.0373997688293457, 0.5319588780403137, -0.34218281507492065, 0.27314096689224243, 0.024731416255235672, 0.9864780306816101, 0.6224108338356018, -0.35860979557037354, 0.3077838122844696, 0.7332931756973267, 1.144854187965393, 1.3477133512496948, 0.7453836798667908, -1.018316388130188, -1.1609386205673218, 0.7703198790550232, -0.8126436471939087, -0.24715350568294525, 0.612754225730896, -0.029213042929768562, 0.8704379200935364, -1.5435433387756348, -0.5319311022758484, 1.4278826713562012, 0.20375922322273254, 0.38601019978523254, 0.358585387468338, 0.18713273108005524, -0.5309313535690308, 0.8152531385421753, 0.4455273747444153, -0.4079691469669342, 0.4312865734100342, 0.3925892114639282, -0.5779616236686707, 0.05578867346048355, -0.5027503371238708, 0.8540971875190735, -0.5499204993247986, 0.14435982704162598, -0.24213257431983948, -0.44239112734794617, 0.39704111218452454, 0.34389936923980713, -0.1405172049999237, 1.4039798974990845, -0.27772220969200134, -0.9734998941421509, 0.3679937422275543, -0.3888554275035858, 0.28838640451431274, -0.3865804672241211, -0.2682563066482544, -0.1658070683479309, -1.7307806015014648, -0.6778807044029236, 1.0292938947677612, -0.22631706297397614, -0.494422048330307, -0.253539502620697, -0.3457626402378082, -0.13735568523406982, 0.8303913474082947, 1.8590601682662964, 0.8836753368377686, 0.7678857445716858, 0.4190232455730438, 0.4259904623031616, -0.8298662304878235, -0.1959589272737503, 0.6784784197807312, 0.16611744463443756, -0.19348619878292084, -1.3000590801239014, -0.4495861530303955, 0.45364657044410706, 0.3940134644508362, -0.13891582190990448, 0.9884462356567383, 1.1014659404754639, 1.0400668382644653, -0.0814606323838234, -0.15852859616279602, 0.06109115108847618, -0.6261157989501953, 0.44565707445144653, 0.4539494514465332, -0.62858647108078, -0.5727785229682922, -0.776303231716156, -0.8851186633110046, 0.8995858430862427, -0.27570369839668274, -0.7957839965820312, -0.25722870230674744, 0.08610814064741135, 0.4460320472717285, 0.0833655446767807, -0.036875199526548386, 0.1762814074754715, 0.25504201650619507, -0.647951066493988, -1.1670480966567993, 0.06244033947587013, -0.1558995395898819, 0.3198939561843872, -0.8433205485343933, 0.5283116698265076, 1.2935073375701904, 0.1617438644170761, 0.19163596630096436, -0.014803527854382992, 0.3858414888381958, 0.677756130695343, 0.31415680050849915, -1.091539740562439, 0.531684398651123, -0.8594797849655151, -0.5341811180114746, -0.25043603777885437, 0.4217827022075653, -0.2516898214817047, -1.0910252332687378, -0.4199870228767395, 0.011005195789039135, -0.3259068429470062, 0.6704156398773193, -0.3070942759513855, 1.3262439966201782, 0.1473948210477829, -0.14440953731536865, 0.08446546643972397, -0.19047623872756958, -0.48186057806015015, -0.5853415131568909, -0.11170241981744766, -0.49240782856941223, -0.9521477818489075, 0.05707702413201332, -0.21891386806964874, -0.4951893389225006, -0.18596144020557404, -0.5164596438407898, 0.2826881408691406, -1.497707724571228, -1.2763041257858276, -1.1372311115264893, 0.4132683277130127, 1.2375129461288452, -0.9224740266799927, 0.4894968271255493, 0.43014001846313477, -1.3682646751403809, 0.05499469116330147, -0.06711218506097794, -0.9827180504798889, -0.18092823028564453, -0.924838662147522, 1.4780793190002441, -0.9014343619346619, 0.6556553244590759, 0.2980441451072693, 1.3454774618148804, -1.120638132095337, -1.842431902885437, -0.9029639959335327, -0.36962637305259705, 1.0488637685775757, 1.0595697164535522, -0.41333338618278503, 1.2000517845153809, 0.3599015176296234, -0.48564815521240234, -0.8370421528816223, -0.12402325123548508, -0.7591763138771057, 0.44860729575157166, 0.789513885974884, 0.16798092424869537, -0.38472020626068115, 1.2099775075912476, -0.5324991941452026, 0.9940276741981506, 0.031331971287727356, 0.6679506301879883, -0.9200452566146851, -0.49867162108421326, -0.2849622070789337, 0.2773045599460602, -0.9536186456680298, -1.1470097303390503, -0.10090498626232147, -0.8861194252967834, -1.0634578466415405, 1.2470704317092896, 1.1035629510879517, -0.5479912757873535, 0.1310001164674759, -0.6770874261856079, 0.3671620190143585, -0.8923549056053162, 0.7929168939590454, -0.9283008575439453, -0.0470409020781517, 0.4026390016078949, 0.06773342937231064, -0.09942418336868286, -1.2021887302398682, 0.20081593096256256, 0.4594348073005676, -0.5245171189308167, -0.3476109802722931, 0.9636313915252686, 0.8080378770828247, -0.7705492973327637, -0.28571921586990356, 1.1099170446395874, 0.8783771991729736, 0.21320894360542297, -0.705337643623352, 0.7901591062545776, 0.5861724615097046, 0.3129878044128418, -0.9307940602302551, -0.36018791794776917, -1.1209760904312134, 0.9177137613296509, 0.41355085372924805, 0.13973140716552734, -0.14094655215740204, -0.11885048449039459, -0.5923205018043518, 0.3694745898246765, 0.342490017414093, -0.5685296654701233, 0.021786432713270187, 1.628193974494934, -0.16507259011268616, -0.3246228098869324, 0.2918027341365814, 0.5067034959793091, 0.5825214385986328, -0.5712629556655884, 0.6723194718360901, 0.39855366945266724, -0.8360459804534912, 0.50290447473526, 0.6773145794868469, -0.03526173532009125, -0.07220043987035751, -0.16691230237483978, -1.0800882577896118, -0.33098188042640686, -0.02868313528597355, -0.19025729596614838, 0.6572365164756775, -0.9283124804496765, -0.8354736566543579, 1.0313005447387695, -0.37556618452072144, -0.19675278663635254, -0.5722238421440125, 0.009779762476682663, -0.8847149014472961, 0.37105870246887207, 0.6781578063964844, 0.18147726356983185, 1.6189844608306885, -0.14307865500450134, -0.16608552634716034, -1.5189443826675415, -0.47648128867149353, 0.7349095940589905, 0.20201356709003448, 0.22843116521835327, -0.2700583338737488, 1.1781704425811768, -0.3876841366291046, -1.2693678140640259, -0.14528900384902954, -0.5167185068130493, 0.14883796870708466, -0.572987973690033, -0.7897247076034546, -0.10140502452850342, 0.5660184621810913, 0.29235827922821045, -0.48797929286956787, -0.5625563263893127, -1.7147126197814941, 0.5320442318916321, -0.31151309609413147, 0.3729337453842163, -0.35652250051498413, 0.9696093201637268, -0.0668920949101448, -0.07653671503067017, -0.08064316213130951, -0.43285852670669556, 1.123918890953064, -0.5720177888870239, 0.7266137003898621, 0.12349144369363785, 0.43723466992378235, -0.43212392926216125, -0.7280764579772949, 0.37275636196136475, -0.38185712695121765, 0.43029531836509705, -0.16033531725406647, -1.0690382719039917, -0.31339526176452637, -1.309770107269287, 0.4128212630748749, 0.5913383960723877, 0.5064595341682434, -0.36832761764526367, 0.13710981607437134, -0.8765237331390381, -0.18461595475673676, 0.6345599293708801, -0.7691107392311096, 0.5831764936447144, 1.343164324760437, 1.502249002456665, 0.6881192326545715, 0.49273136258125305, -0.6696160435676575, 0.4615408182144165, -1.0049662590026855, 0.14923515915870667, -0.018035883083939552, -0.12130048125982285, -0.8436858057975769], [0.8588318824768066, 1.0719577074050903, -2.0251238346099854, -1.0220552682876587, 1.1646277904510498, 0.12213639914989471, 1.4130758047103882, 0.06611236929893494, 0.9158716201782227, -0.3448071777820587, -0.17520016431808472, -0.3821297883987427, 0.726627767086029, 0.8590417504310608, -0.07198189198970795, 0.7291536927223206, 0.6846271753311157, -0.9517124891281128, 0.5019204020500183, 0.5902108550071716, 0.38992246985435486, -0.23204723000526428, 0.5739514827728271, 0.3944345712661743, -0.6084487438201904, 0.7669993042945862, -0.8150810599327087, -0.5316598415374756, -0.6632155776023865, -0.10215741395950317, 0.6974100470542908, -1.2253828048706055, 0.2612220048904419, -0.24862140417099, -1.5401531457901, -0.3560502827167511, 1.9399590492248535, 1.0285067558288574, 0.7031362652778625, 0.3406246602535248, 1.729666829109192, 0.20370818674564362, -0.3599185645580292, -1.584710717201233, 0.24105161428451538, 0.06749449670314789, 0.33626633882522583, -0.1624317616224289, 0.4795183539390564, -1.130056619644165, 1.5810922384262085, -0.34812667965888977, 0.6842838525772095, 1.0093210935592651, 0.8135431408882141, -0.19195249676704407, 1.1801728010177612, -0.2373325526714325, 0.7142525315284729, -0.7618348002433777, 1.1906079053878784, -0.088904969394207, -0.7985698580741882, 1.26151704788208, -0.6431785821914673, -0.07249274104833603, -0.2455640286207199, -0.047071218490600586, -0.19868537783622742, -0.37415367364883423, 0.2944968044757843, 0.5231342911720276, -0.25887876749038696, 0.6207393407821655, -1.8717471361160278, 0.5694416165351868, 0.8103546500205994, 1.1597603559494019, -0.04166772961616516, 0.36431097984313965, -0.41039443016052246, -0.36796000599861145, 1.02031672000885, -0.5986936688423157, 0.37515050172805786, 0.2397618144750595, 0.9210869669914246, -0.5457926392555237, -0.1316242665052414, 1.0080902576446533, 0.5876140594482422, 0.04332964867353439, 0.07074723392724991, -0.6441951990127563, -0.24062305688858032, -0.42034152150154114, 0.6695768237113953, -0.19346663355827332, -1.2623250484466553, -0.26251283288002014, -0.5156214833259583, -0.7580682635307312, -0.4922489821910858, 0.3163069784641266, -0.30574721097946167, 1.3069884777069092, 0.2576638460159302, 0.2655509114265442, -0.5684645175933838, -0.3490019738674164, 0.1985219419002533, 0.3056921362876892, -0.5869193077087402, -0.8030363917350769, -0.739497184753418, 0.7230872511863708, 1.1682844161987305, -0.46241581439971924, 0.5349600315093994, 0.9796600341796875, -0.5583828687667847, 0.2119198590517044, 0.2787727415561676, 0.9307652115821838, 1.1265383958816528, 0.18141207098960876, -0.1720646172761917, 0.029733926057815552, 0.6274340748786926, 0.10977867990732193, 0.2521153390407562, -0.45787107944488525, 0.012913540005683899, 0.20017607510089874, -0.8059419989585876, 1.3537917137145996, 0.21820463240146637, -0.1555429846048355, 0.30521440505981445, 0.03472900390625, 0.8452278971672058, -0.1288466900587082, -0.5274577140808105, 0.10487629473209381, -0.46988916397094727, -0.3644162118434906, -0.1109343096613884, -0.33826306462287903, -1.0778250694274902, -0.3252844214439392, -1.5706652402877808, 0.19893062114715576, 0.031821757555007935, 0.10836251825094223, 0.11363396048545837, -0.13881225883960724, 0.23389926552772522, 0.07574817538261414, 0.2438134104013443, -0.5884215831756592, 0.5645676851272583, -0.0048178136348724365, -1.1902107000350952, 0.813519299030304, 0.0031006988137960434, -0.48890286684036255, 0.16509224474430084, 0.3543691039085388, 0.4278610348701477, 1.2319247722625732, -0.6191403269767761, -0.40229183435440063, 0.2822202444076538, 0.31157517433166504, 0.49727532267570496, -0.33293968439102173, 2.056816577911377, -1.303440809249878, -0.510711669921875, -0.5905082821846008, 0.4900359511375427, -0.5127477049827576, 0.0731523409485817, -0.266975075006485, 0.48262691497802734, -0.17339016497135162, 0.2680838108062744, -0.5329545736312866, -0.015995977446436882, -0.36247727274894714, -0.5134274959564209, 0.3869739770889282, -0.2887192964553833, 0.5359750390052795, -0.26482516527175903, -0.3473336100578308, 0.6103809475898743, -1.0938324928283691, -0.6551607847213745, -0.1713058352470398, -0.016392946243286133, -0.3007618486881256, -0.5898334980010986, 1.0526894330978394, -0.8422046899795532, 0.9377288222312927, -0.9135562181472778, 0.5783456563949585, -1.1254262924194336, -0.34864914417266846, 1.071101188659668, -0.558375358581543, -0.1177603155374527, 0.5344530940055847, -0.3268285393714905, -1.34169340133667, 0.18771518766880035, 0.96266770362854, -0.883945107460022, 0.5006462931632996, 0.5592195987701416, -0.18356147408485413, 0.7314007878303528, 0.5551068186759949, 0.6995137929916382, 0.22933131456375122, -1.0438752174377441, -0.835444450378418, -0.8249362111091614, 0.30055761337280273, -0.0965714156627655, -1.8586150407791138, 1.2401520013809204, 1.3151841163635254, -0.5742232203483582, 0.5282414555549622, -0.19194643199443817, 0.3104960024356842, 0.812086284160614, 0.9899424910545349, 0.26713547110557556, 0.7749127745628357, -0.3910108506679535, 0.4798433482646942, -0.6942225098609924, 0.2915780544281006, 0.5982215404510498, -0.30034583806991577, -0.161447674036026, 0.8813175559043884, 0.6070250868797302, -0.15805692970752716, 0.33280134201049805, -0.28853175044059753, 0.5871352553367615, -0.5940639972686768, -0.3350297212600708, 0.03664274886250496, -0.10723581165075302, 1.1752938032150269, 0.46660545468330383, -0.9381861686706543, 0.6438292860984802, 0.016739841550588608, 0.1816643625497818, -0.19064883887767792, -0.6363004446029663, -0.257347971200943, -0.640659749507904, -0.27051204442977905, -0.22000080347061157, -0.08929767459630966, 0.37252530455589294, 0.2223322093486786, -0.2869516909122467, -0.15471045672893524, -0.3464146852493286, -0.001181766390800476, -0.39169201254844666, 0.9474740624427795, -0.08976836502552032, -1.5581541061401367, -0.19581888616085052, 0.5349013805389404, 0.18718744814395905, 0.258587509393692, -0.33616429567337036, 0.6234713196754456, -0.04675016179680824, -0.09172050654888153, -0.12958180904388428, -0.13619881868362427, -0.5483307242393494, 0.20153971016407013, 0.34193867444992065, 0.3578732907772064, 0.7720755934715271, -0.37138575315475464, -0.8526932001113892, -0.34859782457351685, 1.2855738401412964, 1.0787309408187866, 0.6586858630180359, 1.378506064414978, 0.20387114584445953, -0.22067637741565704, 0.3939749598503113, -0.5427361726760864, -0.7944478988647461, -0.7566332221031189, -0.8270665407180786, -0.34321388602256775, -0.3094342052936554, 0.4761485755443573, -0.05125198885798454, 0.8922910094261169, -0.11619672924280167, 0.5875628590583801, 1.0759670734405518, -0.2023201733827591, -0.19791081547737122, 0.609900176525116, -0.1727408468723297, -0.6935747861862183, 0.24217629432678223, 0.19023609161376953, -0.829079806804657, -0.20323120057582855, 0.47646164894104004, 0.015011349692940712, 0.03778168186545372, 0.09975896030664444, -0.6444993615150452, -1.6725566387176514, -1.3804935216903687, -0.4448733627796173, 1.0273919105529785, 0.04905686154961586, 0.42590925097465515, -0.6866152882575989, 0.7780346274375916, 0.42364025115966797, 0.35919809341430664, -0.9748064875602722, 0.47630882263183594, -0.4569433033466339, -1.1051422357559204, -0.1345292329788208, 0.395327091217041, 0.6404218673706055, -0.20545107126235962, 0.3167746663093567, -0.3695406913757324, -0.32839372754096985, -0.05878908932209015, 0.4642305374145508, 0.5357310175895691, 0.5030724406242371, -0.13148994743824005, -0.3982159197330475, 0.7215049862861633, -0.5056158900260925, -0.3393506705760956, -1.6462411880493164, 0.906363844871521, 0.03770923987030983, 0.32693207263946533, -0.01837935671210289, -0.22086508572101593, 0.3547605574131012, 0.35136738419532776, 0.5026200413703918, 0.17513921856880188, 1.721121907234192, -0.2809222936630249, 0.2371589094400406, -0.41461580991744995, -0.10501326620578766, 0.20516690611839294, -0.7932171821594238, -0.24894988536834717, -0.009411133825778961, -1.133646845817566, -0.691892147064209, 1.425952434539795, -0.03685476630926132, -0.1819579303264618, -0.5998951196670532, -0.04884035885334015, 0.6441752910614014, 0.48958465456962585, 0.688271701335907, -0.6023455858230591, -0.12640391290187836, 0.27835944294929504, -0.2118242084980011, -0.15809261798858643, 0.05294468253850937, 0.2846011519432068, 0.5859981179237366, -0.8002840876579285, 0.02230820804834366, -0.64483243227005, 1.307326078414917, 0.18272732198238373, -0.38229599595069885, 0.15344387292861938, -0.8115668296813965, -0.1711987406015396, 0.17522487044334412, -0.28685876727104187, 0.44035428762435913, -0.6246872544288635, -0.5502816438674927, -0.5249782800674438, -0.13810138404369354, -0.10019678622484207, -0.3421293795108795, -0.35578519105911255, -0.056851062923669815, -0.5290843844413757, -0.10189054161310196, -0.4140397310256958, -0.08420296013355255, 0.7490975260734558, 0.8579192757606506, -0.00684964656829834, 0.5146265625953674, -0.3536683917045593, -1.0231642723083496, -0.009891491383314133, 0.5576176047325134, -0.26561689376831055, -0.5837342143058777, -0.21652698516845703, 0.1408603936433792, -0.25932860374450684, 0.27277812361717224, -0.4761374294757843, 0.6866739392280579, -0.3145446479320526, -0.2890351712703705, 0.1922566294670105, 1.339816689491272, 0.03930987790226936, 0.9792720079421997, 0.06997498869895935, -0.6517282724380493, -0.40305855870246887, 0.3096478283405304, -1.4419912099838257, 0.09197419881820679, 0.7068667411804199, 0.02283220738172531, 0.9654316902160645, -1.7656607627868652, -0.35070517659187317, 0.4037599563598633, -0.030214596539735794, 0.3319239020347595, 0.3820073902606964, -0.2972136437892914, -0.422534704208374, 0.9860090017318726, 0.3689587116241455, -0.6650641560554504, -0.13090285658836365, 0.19450095295906067, 0.10643154382705688, 0.05684264376759529, -0.5095613598823547, 1.383905053138733, -0.27176231145858765, 0.24290220439434052, 0.17203044891357422, -0.3814873695373535, 0.46158045530319214, 0.7759223580360413, -0.09386099874973297, 1.451780915260315, -0.9296383857727051, -0.8493688702583313, 0.2762361764907837, -0.5890810489654541, 0.19957296550273895, -0.3437731862068176, -0.3352104425430298, -0.5127277970314026, -0.7371044754981995, -0.2747076153755188, 1.1170806884765625, -0.12806600332260132, -0.017691753804683685, -0.047271259129047394, -0.5731841325759888, -0.11374122649431229, 0.8863969445228577, 1.4718284606933594, 0.14039751887321472, -0.2427273988723755, 0.7766781449317932, 1.2680436372756958, -0.7368313074111938, -0.19558438658714294, -0.3028883934020996, 0.05274440720677376, -0.5355951189994812, -1.5445610284805298, -0.7684516310691833, 0.2525262236595154, 0.6436886787414551, -0.17056283354759216, -0.253912091255188, 0.576489269733429, 0.8657644391059875, -0.18640068173408508, 0.06477785855531693, 0.4932681620121002, -0.7214034795761108, 0.40666812658309937, 0.2459626942873001, -0.17435799539089203, -0.6103155016899109, -0.8270050883293152, -0.9064547419548035, 0.18812650442123413, -0.5816874504089355, -1.1768202781677246, 0.0011078286916017532, -0.08536885678768158, 0.39140796661376953, -0.04979406297206879, -0.4657326936721802, 0.6856157183647156, 0.6431237459182739, 0.003650170750916004, -0.7170840501785278, 0.7142577171325684, 0.008767570368945599, 0.3469112515449524, -0.42109930515289307, 0.3620447516441345, 0.9058926105499268, -0.191959947347641, 0.2285149097442627, -0.5854737758636475, 0.5103054046630859, 0.7922422289848328, 0.4066230356693268, -1.1794558763504028, 0.034258004277944565, -0.1067483052611351, -0.5899131298065186, 0.17657896876335144, 0.10632001608610153, -0.4429784417152405, -0.12180624157190323, -0.15744026005268097, -0.45271188020706177, -0.8793914914131165, 0.29582613706588745, -0.4356166124343872, 0.8388339281082153, -0.012876570224761963, -0.4267703592777252, 0.041280679404735565, -0.21674618124961853, -0.24534650146961212, -0.3201735019683838, 0.08576040714979172, -0.1766931414604187, -1.0954270362854004, 0.6606294512748718, 0.07431303709745407, -0.4476173520088196, -0.013441860675811768, -1.0785852670669556, 0.7606942057609558, -1.4775969982147217, -1.3122098445892334, -1.057791829109192, 0.9066387414932251, 1.0718128681182861, -0.18816500902175903, 0.8238610029220581, 0.7885412573814392, -1.324571967124939, -0.023780282586812973, 0.18083499372005463, -0.9104081392288208, -0.4506538212299347, -0.49535495042800903, 0.4376503527164459, -0.24957901239395142, 0.6072718501091003, -0.521861732006073, 1.1768075227737427, -1.2691309452056885, -1.4393950700759888, -0.9613201022148132, -0.15589673817157745, 0.37276187539100647, 0.9793145656585693, -0.5035001039505005, 1.0323508977890015, 0.6625208258628845, -0.016992252320051193, -0.6164945363998413, -0.2993852496147156, -0.15439429879188538, 0.5078189373016357, 0.6636846661567688, 0.6090388298034668, 0.31445133686065674, 0.9551281929016113, -0.6572355031967163, 0.8222832679748535, 0.28915679454803467, 0.44106072187423706, -0.9128365516662598, -0.29698967933654785, 0.6264482736587524, 0.9714727997779846, -1.0744099617004395, -0.3779211938381195, -0.9813655018806458, -0.6196754574775696, -0.9995502233505249, 1.0204533338546753, 1.1801141500473022, -0.7283905744552612, 0.28973254561424255, -0.6551035642623901, -0.0726548582315445, -0.2103721797466278, 0.3796294033527374, -0.9586167335510254, 0.22884111106395721, -0.09707924723625183, -0.04348868876695633, -0.39670392870903015, -1.6829195022583008, 0.08863005042076111, 0.10715323686599731, -0.022541414946317673, -0.8283307552337646, 1.1707843542099, 0.8235913515090942, -0.13780730962753296, -0.2178277224302292, 2.2372491359710693, 1.7029623985290527, -0.013074973598122597, -1.0299750566482544, 0.7048029899597168, 0.3000122606754303, 0.1707310527563095, -1.091233491897583, 0.28669223189353943, -0.9394335746765137, 0.19288921356201172, 0.38690903782844543, -0.4267233610153198, -0.5082648396492004, 0.22141779959201813, -0.23584763705730438, 0.1321418136358261, 0.3205595910549164, -0.982404351234436, -0.03278924524784088, 0.7957881093025208, -0.3594902455806732, -0.4873311519622803, 0.4314613938331604, 1.5648165941238403, 0.06088164448738098, -0.3885612487792969, 0.16136641800403595, 0.06876087933778763, -0.8873611092567444, 1.3234679698944092, 0.3578563928604126, -0.06799840182065964, -0.2082430124282837, -0.867101788520813, -0.9204672574996948, -0.36607661843299866, -0.7475968599319458, -1.1925073862075806, -0.03221806883811951, -1.193254828453064, -0.4941411018371582, 1.05141019821167, -0.23029722273349762, -0.4922644793987274, -0.12465691566467285, 0.48183977603912354, -0.07609894871711731, 0.16666147112846375, 0.03981902077794075, -0.25876733660697937, 1.1542456150054932, 0.661457896232605, -0.5945484042167664, -1.5913565158843994, -0.8813382387161255, 0.16524383425712585, -0.6215692758560181, -0.10933215916156769, 0.5632648468017578, 0.5834481716156006, 0.06038415804505348, -0.30900079011917114, 0.046032823622226715, 0.3819390535354614, -0.49152979254722595, -0.054850023239851, -0.7715388536453247, 0.21494421362876892, 0.7312945127487183, 0.6820802092552185, -0.10115586966276169, -0.6242820620536804, -0.5861627459526062, 0.1893758326768875, 0.013310089707374573, 0.6263372898101807, -0.3988102078437805, 1.3411613702774048, -0.2168695032596588, 0.16579675674438477, -0.5413321852684021, -0.128316268324852, 0.4690462052822113, -0.19675490260124207, 0.7847834825515747, 0.3235207796096802, 0.23713725805282593, -0.8381333947181702, -0.8738950490951538, 0.3216455280780792, -0.6687549948692322, 0.35561132431030273, 0.10688559710979462, -0.8675569891929626, -0.5219964981079102, -0.5351666212081909, 0.4360825717449188, 0.8529530167579651, 0.3558865189552307, -0.6655393242835999, 0.17621783912181854, -0.8917481899261475, 0.4216930568218231, -0.05420718342065811, -0.1527712494134903, 0.3887079954147339, 0.49277225136756897, 1.2335540056228638, 0.45056629180908203, 0.6433104276657104, -0.8450483679771423, 0.12743453681468964, -0.07445034384727478, 0.042772673070430756, -0.531241238117218, 0.11435239017009735, -0.3511260449886322], [0.11446772515773773, 1.63265860080719, -2.0411860942840576, 0.031493350863456726, 1.8134243488311768, 0.49031469225883484, 1.3437947034835815, -0.5061196088790894, 0.34196990728378296, -1.0055789947509766, 0.3237752616405487, -0.5814164280891418, 0.854061484336853, 1.2221428155899048, -0.37289419770240784, -0.1150086522102356, 0.5343759059906006, -1.2644469738006592, 0.6838235855102539, 0.9979326725006104, 0.22726549208164215, -0.1893838793039322, 0.22548164427280426, 0.41950374841690063, -0.07350281625986099, 0.1907246857881546, -1.495455026626587, -0.687056303024292, -0.41669028997421265, -0.9145066142082214, 1.2954801321029663, -1.3584383726119995, 0.24393677711486816, 0.1768685281276703, -1.3157072067260742, -0.3686925172805786, 1.0655053853988647, 0.5522981882095337, -0.03714250400662422, 0.144415482878685, 1.5101628303527832, -0.48069533705711365, -0.03776850923895836, -1.7308045625686646, 0.3221139907836914, -0.08031290769577026, 0.6362156867980957, -1.313720464706421, 0.06686154007911682, -1.2364120483398438, 0.8163340091705322, -0.2600681781768799, 0.7197420001029968, 1.0877493619918823, 0.43178537487983704, 0.744070291519165, 0.1838008165359497, 0.0847567468881607, 1.5663528442382812, -0.2754487991333008, 0.5056770443916321, 0.006710566580295563, 0.22920215129852295, 0.3042010962963104, 0.02884850837290287, -0.3017546832561493, 0.45401978492736816, 0.8196654319763184, 0.13907645642757416, -0.027217447757720947, 0.5956951379776001, -0.047755759209394455, -0.5522996187210083, 0.2898346781730652, -1.2145076990127563, 0.20029084384441376, 0.964874804019928, 1.2054716348648071, -0.07875148952007294, 0.49747979640960693, -0.5735633373260498, -0.008556051179766655, 0.29669055342674255, -0.11199480295181274, 0.6884316205978394, 0.3057924211025238, -0.25190871953964233, -0.5252995491027832, -0.30370327830314636, 1.8266063928604126, 0.634698212146759, 0.1351061761379242, 0.6868492364883423, -0.8527026176452637, -0.3549535870552063, -0.4294489920139313, 0.29012593626976013, -0.854032576084137, -0.40768393874168396, -0.5340694785118103, -0.22426250576972961, -0.6542455554008484, -0.03695366531610489, 0.12729525566101074, 0.09655740857124329, 1.1188316345214844, -0.013775690458714962, 0.2541796565055847, -0.6942663192749023, 0.08084971457719803, -0.4651780128479004, 0.16156983375549316, -0.8298458456993103, -1.1345003843307495, -0.5583370327949524, 1.0027426481246948, 1.4403821229934692, -0.10911627858877182, 0.7567745447158813, 0.7961340546607971, -0.6378082633018494, 0.4095771908760071, -0.3180805444717407, 0.5648389458656311, 0.7348175048828125, 0.2497551441192627, -0.07990318536758423, -0.7626159191131592, 0.4309500753879547, -0.2223157435655594, -0.34446093440055847, -0.10573010891675949, -0.15960411727428436, 0.4325125515460968, -0.4665670394897461, 0.3880898058414459, -0.3260633945465088, -0.1370394080877304, 0.34303197264671326, -0.2910660207271576, 0.49640709161758423, -0.06481540203094482, -0.36201685667037964, 0.2376919537782669, 0.027425674721598625, -0.5876663327217102, 0.5408463478088379, 0.5930455923080444, -0.41171780228614807, 0.3281978368759155, -1.3335920572280884, -0.239765465259552, 0.7004368901252747, 0.20647810399532318, -0.12409854680299759, 0.17290471494197845, 0.28566959500312805, 0.4872925579547882, 0.41143491864204407, -0.19019868969917297, 0.7753404974937439, 0.09407471120357513, -0.9903281331062317, 0.8168940544128418, 0.5204144716262817, 0.3562823235988617, 0.7010427713394165, 0.03523767367005348, 0.13474680483341217, 0.7094715237617493, -0.9244902729988098, -0.6344186067581177, 0.3728138506412506, 0.6861147880554199, 0.6688384413719177, -0.4080185890197754, 2.126286745071411, -1.6858397722244263, -1.016348123550415, -0.982679009437561, 0.7358802556991577, -0.4268794655799866, 0.07518696039915085, 0.14599771797657013, 1.0042479038238525, -0.15040454268455505, 0.26621347665786743, -0.00014240900054574013, -0.40234988927841187, -1.1599152088165283, -1.342353105545044, 0.11158576607704163, -1.2907923460006714, 0.31653037667274475, -0.10745054483413696, -0.6287886500358582, 0.6036970615386963, -0.6617522835731506, -1.4024889469146729, 0.27090227603912354, -0.6137825846672058, -0.26520344614982605, -0.978808581829071, -0.14829319715499878, -0.16490858793258667, 1.0490641593933105, -1.304372787475586, 0.7421761155128479, -0.3731512129306793, 0.16452419757843018, 1.2207531929016113, -0.18430769443511963, -0.7416333556175232, 0.6674588322639465, -0.4892394542694092, -1.4885071516036987, 1.2435563802719116, 0.8140624165534973, -0.12831144034862518, 0.42089661955833435, 0.1916353851556778, 0.24261370301246643, -0.21019135415554047, 0.3373839259147644, 0.7713744640350342, -0.12246813625097275, -0.8330934047698975, -1.4211667776107788, -1.17068612575531, 0.25113946199417114, -0.5994123816490173, -1.105067253112793, 1.1237846612930298, 0.4413747489452362, -0.4835388660430908, 0.13388089835643768, -0.1307942122220993, -0.10206063836812973, 0.6111341714859009, 0.927824079990387, 0.5034804940223694, 0.33785292506217957, 0.13688525557518005, -0.20758508145809174, -0.12327796965837479, -0.09877090156078339, 0.6612262725830078, -0.5844650268554688, -0.0636526346206665, 1.1348977088928223, 0.6542518138885498, -0.44780465960502625, 0.04729935899376869, 0.0936715304851532, -0.30488115549087524, -1.2362316846847534, -0.3553178906440735, 0.18987762928009033, -0.7180060148239136, 1.1458734273910522, 0.6355894207954407, -0.5970994830131531, -0.6777869462966919, -0.3235119879245758, -0.8657785058021545, -0.691440224647522, -1.1108982563018799, -0.9183226823806763, -0.4850693345069885, -0.1990346759557724, -0.057582154870033264, -0.03545220568776131, -0.14343085885047913, 0.6020548343658447, -0.7858663201332092, -0.5748997926712036, -0.26481300592422485, 0.10236003994941711, 0.4018113911151886, 0.7018381953239441, -0.04626893624663353, -0.9260547161102295, -1.1984541416168213, 0.417275071144104, 1.1797807216644287, 0.32121947407722473, 0.10835380852222443, 0.21425631642341614, 0.1991460770368576, -0.03488462418317795, 0.26683181524276733, 0.16834433376789093, 0.4859170913696289, 0.4200142025947571, 0.0932111144065857, 0.49308860301971436, 1.030142903327942, -1.206809639930725, -0.8220608234405518, -0.7614068984985352, 1.1279606819152832, 0.9463540315628052, 1.089896321296692, 1.0824397802352905, -0.22173967957496643, 0.2937825918197632, -0.1296035498380661, -0.32308685779571533, -0.6749129295349121, -0.3621327579021454, -0.5609769225120544, -0.4250071048736572, -0.6845905184745789, -0.47810736298561096, -0.3148047924041748, 0.20326003432273865, -0.40947967767715454, 1.107614517211914, 1.2340950965881348, -0.6341788172721863, -1.4176781177520752, -0.7711868286132812, 0.04754703491926193, -1.2441976070404053, 0.6186754107475281, 0.7202721834182739, -0.9586371779441833, -0.5789233446121216, -0.019600246101617813, 0.012520821765065193, 0.9439801573753357, 0.2848254442214966, -0.48933470249176025, -1.3176764249801636, -0.6239752173423767, -0.32181233167648315, 1.141434669494629, 0.1424170285463333, 0.3556050658226013, -0.7794485092163086, -0.32108065485954285, 0.268099844455719, -0.13335277140140533, -0.7266116142272949, 0.44229093194007874, -0.24803996086120605, -0.4029207229614258, -0.4666357636451721, 0.20317977666854858, 0.5314826369285583, -0.5930960178375244, -0.01640941947698593, -0.23457327485084534, 0.17202366888523102, -0.2893085777759552, 0.9783207178115845, 0.2641619145870209, 0.3037118911743164, 0.19487923383712769, 0.14297491312026978, 0.8258881568908691, -0.46278974413871765, -0.2362128049135208, -1.124078631401062, 1.0085258483886719, 0.46362146735191345, 0.3315049111843109, -0.3390776813030243, 0.20103690028190613, 0.1221281960606575, -0.639591634273529, 0.5612014532089233, 0.49672967195510864, 1.520678162574768, 0.9731156826019287, -0.3989656865596771, -0.5311682820320129, 0.04635223001241684, -0.45731326937675476, -1.1897752285003662, -0.01971817947924137, 0.15202055871486664, -0.3727174401283264, -1.609989881515503, 1.2853126525878906, 0.8671234250068665, 0.12532873451709747, -0.6736254692077637, -0.17589354515075684, 1.5498671531677246, 0.37775564193725586, 0.205934539437294, -0.8005644083023071, 0.5666945576667786, -0.47071781754493713, -0.7362379431724548, -0.3806869089603424, -0.0059099383652210236, -0.0003462759777903557, 0.511184573173523, -1.1192846298217773, -0.029481712728738785, -0.5504505038261414, -0.3738972544670105, 0.7694682478904724, -0.48677507042884827, 0.31951674818992615, -0.6550431847572327, -0.19551508128643036, -0.16553884744644165, 0.5425372123718262, 1.6479547023773193, -1.1590442657470703, -0.3983924686908722, -0.293692409992218, -0.12011252343654633, -0.07184609025716782, -0.4960137605667114, -0.5194110870361328, 0.29620423913002014, -0.6629039645195007, 0.1763228327035904, -0.1520373821258545, 0.189182311296463, 1.6923489570617676, 0.04580913111567497, 0.20586726069450378, 0.5588030815124512, 0.06617842614650726, -0.9108847379684448, 0.14213207364082336, 0.019512172788381577, 0.3252200186252594, -0.009734252467751503, -0.20771469175815582, 0.4438144266605377, -0.38095417618751526, 0.5722604393959045, 0.39163199067115784, 0.7216596603393555, -0.25641047954559326, 0.641125500202179, -0.023699309676885605, 0.16669854521751404, 1.4150621891021729, 1.5428624153137207, 0.15461795032024384, -0.3907003104686737, -1.0261573791503906, 0.6493791341781616, -0.6675726175308228, 0.3136880695819855, 0.860328197479248, 0.26690763235092163, 0.6031944751739502, -1.7435206174850464, -0.6409996747970581, 0.6242554187774658, 0.0804014503955841, 1.297184944152832, 0.19083476066589355, -0.15749257802963257, -0.06435760110616684, 0.4843265414237976, 0.6358231902122498, -0.26414674520492554, 0.7522579431533813, 0.27723929286003113, -0.2749011516571045, 0.08831939101219177, -0.3469620943069458, 0.21880902349948883, -0.508817732334137, -0.0705493614077568, -0.06744157522916794, 0.0213988795876503, 0.8525698184967041, 0.6478012204170227, 0.5233592391014099, 0.41167640686035156, -0.38111189007759094, -0.8052688241004944, 0.02131865732371807, -0.32759419083595276, 0.08430690318346024, 0.07877404242753983, -1.0352171659469604, -0.3334902226924896, -1.3935900926589966, -0.8730053305625916, 0.17396701872348785, -0.8478536009788513, -0.6603281497955322, -0.5426884293556213, -0.7341434955596924, -0.2653772234916687, 0.9010605216026306, 1.0280333757400513, 0.37556999921798706, 0.3690427839756012, 0.5512044429779053, 0.13192234933376312, -0.8574618697166443, 0.2280653417110443, 0.30753421783447266, -0.14721424877643585, -0.4299719035625458, -1.3069002628326416, -0.7188036441802979, 0.2558039128780365, 0.4260801374912262, -0.2241630107164383, 0.6632714867591858, 1.3788318634033203, 1.270896553993225, -0.2495185136795044, -0.09487585723400116, 0.3839913308620453, -0.4211578667163849, 0.6936172246932983, 0.632631778717041, -0.6860462427139282, -0.1077507883310318, 0.30655336380004883, -1.0439294576644897, 1.1078274250030518, -0.19797591865062714, -1.0687764883041382, 0.22167891263961792, 0.2419148087501526, -0.04509814456105232, 0.5354444980621338, -0.4137958884239197, 0.3343101441860199, 0.23117586970329285, -0.11800722777843475, -1.130568265914917, -0.2641221284866333, 0.5697092413902283, 0.07798164337873459, -0.4695747494697571, 0.7414573431015015, 0.6164044737815857, -0.2126791775226593, 0.7383228540420532, 0.2840222418308258, 0.15694652497768402, 0.5144547820091248, 0.5021653771400452, -1.081882357597351, 0.041313089430332184, -0.49546533823013306, -0.7873474955558777, -0.2156401425600052, 0.08307992666959763, 0.3809097111225128, -0.9587209224700928, -0.526134192943573, -0.3247711658477783, -0.45841291546821594, -0.15519700944423676, -0.8657130599021912, 0.7448051571846008, 0.44624048471450806, 0.021491024643182755, 0.28678271174430847, -1.0354100465774536, -0.810796320438385, -0.1701941341161728, -0.7404114603996277, 0.726373016834259, -0.8673122525215149, 0.27075883746147156, -0.02802363783121109, 0.08345851302146912, -0.3954109251499176, -0.5591763854026794, 0.5740150213241577, -1.2855857610702515, -0.8324693441390991, -0.5731604695320129, 0.007877444848418236, 0.9213097095489502, -0.8256632685661316, 1.1107314825057983, 0.5467773079872131, -1.5559909343719482, 0.43564969301223755, -0.18329790234565735, -1.4267699718475342, -0.2781812250614166, -1.4049502611160278, 1.40092134475708, -0.5971283316612244, -0.00482454476878047, 0.13392852246761322, 1.6611145734786987, -0.8797390460968018, -1.1333626508712769, -0.37842661142349243, -0.358560711145401, 1.071660041809082, 1.1548385620117188, -0.4988894462585449, 1.2141122817993164, 0.08917441219091415, -0.3064649999141693, -0.4592247009277344, 0.21499688923358917, -0.5800039172172546, 0.38634616136550903, 0.2318653166294098, 0.06730826944112778, -0.17013375461101532, 1.0140633583068848, -0.1432199329137802, 0.7545623779296875, 0.009514624252915382, 1.080708622932434, -0.5211232304573059, -0.5340326428413391, 0.008818109519779682, 0.3119387626647949, -1.178428292274475, -0.5022624135017395, -0.2335921972990036, -0.9999534487724304, -0.7619879841804504, 0.6571395397186279, 1.097880244255066, -0.35105010867118835, 0.25702860951423645, -0.25584515929222107, 0.8213282823562622, -0.7458305954933167, 0.631214439868927, 0.531309962272644, -0.10752102732658386, 0.09431636333465576, -0.568928599357605, -0.05637391656637192, -1.4391533136367798, -0.15536460280418396, 0.5472769737243652, -0.17872996628284454, -0.24170881509780884, 0.7234249711036682, 0.3998924791812897, -0.4243932068347931, -0.5740950703620911, 1.651931643486023, 1.3276292085647583, -0.13922461867332458, -0.46948882937431335, 0.9453451633453369, 0.030317891389131546, 0.8744450807571411, -0.3757877051830292, 0.016763661056756973, -0.5592965483665466, 0.43582984805107117, 0.7699761986732483, 0.0336279422044754, -0.6546655297279358, 0.10469686985015869, -0.6339534521102905, 0.8982338905334473, 0.5922171473503113, -0.45421499013900757, -0.19007925689220428, 1.5000468492507935, -0.43298155069351196, -0.4242604076862335, 0.44633105397224426, 0.19927068054676056, 0.448905348777771, -0.19629596173763275, -0.03258476033806801, 1.251602292060852, -1.092937707901001, 0.4214901626110077, 0.6680797934532166, -0.12876176834106445, 0.3436548113822937, -0.7947117686271667, -1.57957124710083, -0.4925706386566162, -0.4079980254173279, -0.4462454617023468, 0.7647460699081421, -0.6615257859230042, -0.5812403559684753, 0.7168992161750793, 0.1806548535823822, -0.1826627105474472, -0.9516343474388123, 0.3637877106666565, -0.31133580207824707, 0.28283947706222534, 0.48500698804855347, -0.17569701373577118, 1.3068355321884155, 0.1851118803024292, -0.22043758630752563, -0.22406478226184845, -0.22280332446098328, 0.7057226896286011, 0.059098780155181885, -0.62946617603302, -0.4894404411315918, 0.777507483959198, 0.425958514213562, -0.5833439826965332, 0.671312153339386, -0.26086804270744324, 0.09443095326423645, -0.02890205755829811, -0.3137478828430176, 0.2906382381916046, 0.4919339418411255, 0.26234835386276245, -0.905741810798645, -0.5935152769088745, -0.970096230506897, 0.7583373785018921, -0.8173289895057678, 0.9240866303443909, -0.05109584331512451, 0.6680425405502319, 0.5392980575561523, -0.4643685221672058, -0.33830252289772034, -0.886146605014801, 0.5036368370056152, -0.35890674591064453, 0.3307921290397644, 0.13907557725906372, -0.2895243167877197, 0.22955924272537231, -0.7704201340675354, 0.42259326577186584, -0.23850584030151367, 0.516524612903595, 0.4859950840473175, -1.5653398036956787, -1.3630590438842773, -1.056212067604065, 1.1183074712753296, 1.1622318029403687, -0.24350138008594513, -0.246591717004776, 0.10332810133695602, -1.3588882684707642, 0.41027477383613586, 0.5334830284118652, 0.42754673957824707, 0.36657652258872986, 1.5635261535644531, 1.255340576171875, 0.10020219534635544, 0.47151443362236023, -0.24494697153568268, 0.7594771385192871, -1.1724969148635864, -0.05142250657081604, -0.7790200114250183, 0.45266640186309814, 0.016849011182785034], [0.08579034358263016, 0.9665300250053406, -2.1491470336914062, -0.5810498595237732, 1.3067703247070312, 0.539298951625824, 1.1702648401260376, -0.017355559393763542, 0.8249069452285767, -0.4825347661972046, -0.5966542363166809, -0.9854111671447754, 0.5771690607070923, 0.731289803981781, -0.5065193772315979, -0.2661239802837372, 1.1184078454971313, -0.8683478236198425, 0.8224180340766907, 0.271375447511673, -0.3293851912021637, -0.19057132303714752, -0.43109628558158875, 0.06661110371351242, -0.29216277599334717, -0.465059757232666, -1.2803205251693726, -0.3841879963874817, -1.1496864557266235, -0.5220039486885071, 1.1929651498794556, -0.948613703250885, 0.30670905113220215, 0.3062337636947632, -1.6410446166992188, -0.5600395798683167, 1.7316889762878418, 0.5783774256706238, 0.11701834946870804, 0.8721492886543274, 2.4797756671905518, 0.023067647591233253, 0.037936218082904816, -1.8381694555282593, -0.6488716006278992, 0.15645810961723328, 0.0642128512263298, -1.0515917539596558, 0.4902423918247223, -0.7940418124198914, 0.6500745415687561, -0.7134028673171997, 1.13283371925354, 1.6368635892868042, 0.7049881219863892, -0.2239999622106552, 0.4644470512866974, 0.4425335228443146, 0.865878701210022, 0.23888429999351501, 1.056510329246521, -0.5619534850120544, -0.29550111293792725, 0.7356494069099426, 0.015123276039958, -0.37358415126800537, -0.03890429437160492, 0.6389908790588379, -0.1256668120622635, -0.2969449460506439, 0.45405083894729614, -0.2067941427230835, -0.6223843097686768, 0.7631540894508362, -1.4947973489761353, 0.5088925957679749, 0.3017628490924835, 0.3704730272293091, 0.8604408502578735, 0.6049821376800537, -1.0351139307022095, 0.16303491592407227, 0.6401922106742859, -0.03798457607626915, -0.21029065549373627, 0.5821861624717712, -0.06799696385860443, -0.6592839360237122, 0.16316597163677216, 2.3369836807250977, 0.7004664540290833, 0.15755465626716614, 0.07894367724657059, -0.4429708421230316, -0.14053428173065186, 0.1690077930688858, 0.8590643405914307, -0.7331341505050659, -0.39420175552368164, -0.6681625247001648, -0.5514360666275024, -0.771726131439209, -0.1204596608877182, 0.4314013123512268, 0.06038577854633331, 0.9751138687133789, -0.07770611345767975, 0.20138953626155853, -0.19610577821731567, 0.10710005462169647, -1.108232855796814, -0.042906586080789566, -0.5377907156944275, -0.6975600719451904, -0.0970843955874443, 0.8153162002563477, 0.8345158696174622, 0.06401004642248154, 0.4783867299556732, 0.07016635686159134, 0.03446877747774124, 0.559786856174469, -0.1536828875541687, 0.6594626903533936, 0.30331873893737793, 0.5469632148742676, -0.9699798226356506, -1.0225714445114136, 0.3289145231246948, -0.22429867088794708, -0.0907701924443245, -0.11850001662969589, 0.2037273496389389, 1.225923776626587, -0.7129644155502319, 0.948981761932373, -0.640455961227417, -0.06082915887236595, -0.0834958478808403, -0.13282667100429535, 1.019860863685608, -0.2488284707069397, -0.2661289870738983, -0.19913971424102783, 0.6678711175918579, -0.694856584072113, 0.4695320725440979, 0.029842879623174667, -0.5512135028839111, -0.03802022337913513, -0.6561106443405151, 0.224402517080307, 0.3880283236503601, 0.1922176480293274, 0.22148174047470093, -0.019782787188887596, 0.09393949806690216, 0.05313533917069435, 0.41370972990989685, 0.4246908128261566, 0.4888468086719513, 0.4495764672756195, -0.5276788473129272, 1.1095024347305298, 0.739571750164032, 0.19918948411941528, 0.8443018794059753, 0.7247159481048584, 0.1330581158399582, 1.413939118385315, -0.27983176708221436, -0.9662197232246399, 0.41188547015190125, 0.34605738520622253, 0.6013336181640625, -0.6692747473716736, 1.844544529914856, -0.8732333779335022, -0.5090940594673157, -1.1684138774871826, 0.9133305549621582, 0.03141921013593674, 0.11190550774335861, -0.3284088373184204, 0.7074161767959595, -0.2972765862941742, -0.05524106323719025, -0.7415556907653809, 0.23194491863250732, -1.1243826150894165, -0.4994381070137024, -0.6284775137901306, -1.4504283666610718, -0.07128500938415527, -0.5892522931098938, -0.7426091432571411, 0.8131275773048401, -0.9544240832328796, -1.1601072549819946, 0.2933274805545807, -0.3384231925010681, -0.45560309290885925, -0.33326736092567444, 0.7152534127235413, -0.7276598811149597, 0.8681315183639526, -0.8870388865470886, 0.49713534116744995, -0.11452344059944153, -0.27711641788482666, 0.8278810381889343, -0.3062160909175873, -0.20228102803230286, 1.0633715391159058, -0.1904783695936203, -0.5757988691329956, 1.0109176635742188, 0.46705061197280884, -0.08081292361021042, 0.36254626512527466, -0.030711418017745018, 0.3459817171096802, 0.7705442905426025, 0.35953572392463684, 0.07590539008378983, -0.28996050357818604, -0.9433136582374573, -1.3290232419967651, -1.0051512718200684, 0.414584219455719, -0.540469765663147, -2.0575082302093506, 1.2242578268051147, 0.8175100684165955, -0.6199678182601929, -0.6275109648704529, -0.02118389680981636, 0.7150399684906006, 0.15427151322364807, 0.8287249207496643, 0.057367537170648575, 0.5189434289932251, 0.1416071355342865, -0.5583548545837402, -0.7357069849967957, 0.15110306441783905, 0.5445865392684937, -0.5474560856819153, 0.433172345161438, 0.5074397921562195, -0.05507723242044449, 0.3542350232601166, 0.7056486010551453, 0.18203632533550262, -0.2989438474178314, -0.9268969297409058, -0.36772680282592773, 0.6842559576034546, -0.21207216382026672, 1.3189027309417725, 1.1932108402252197, -0.9367966651916504, -0.709907054901123, 0.16757287085056305, -0.28303512930870056, -0.26441362500190735, -1.3030351400375366, -0.42257216572761536, 0.03667629510164261, 0.04067318141460419, -0.13231521844863892, 0.2871435582637787, -0.10008101910352707, 1.033485770225525, 0.019285596907138824, -0.040799565613269806, -0.617175281047821, 0.4059526026248932, 0.11194990575313568, 0.16940493881702423, 0.10008465498685837, -0.9902899265289307, -0.4117080271244049, 0.3133949637413025, 0.8167935609817505, 0.7899166345596313, -0.4536917507648468, 0.558122456073761, 0.39988842606544495, -0.12908323109149933, 0.4662003219127655, 1.001655101776123, -0.2686704099178314, 0.4555724859237671, -0.21180620789527893, 0.806713342666626, 0.9751613736152649, -1.2325108051300049, -1.0475107431411743, -0.9248031377792358, 0.5983667969703674, 1.0611605644226074, 0.9045275449752808, 1.4573036432266235, -0.023890655487775803, -0.7002729773521423, -0.7230091691017151, -0.5293029546737671, -0.8859498500823975, -0.241961270570755, -0.7350337505340576, -1.0046385526657104, -0.6778113842010498, -0.5091015100479126, -0.006288726348429918, 0.25173136591911316, -0.26435384154319763, 1.1620627641677856, 0.6465399265289307, 0.3721121549606323, -0.5289272665977478, 0.07085572928190231, 0.2760350704193115, -1.2972233295440674, 0.19850848615169525, 0.9621601700782776, -0.8490322232246399, -0.3915911614894867, -0.0206944327801466, -0.05029755085706711, 0.7479310631752014, -0.4954342544078827, 0.22523143887519836, -1.5504463911056519, -0.3395530879497528, 0.14728546142578125, 0.8379913568496704, 0.20261889696121216, -0.25890210270881653, -0.7734131217002869, 0.25274422764778137, 0.16320788860321045, -0.15544959902763367, -0.6108534932136536, 0.8814493417739868, -0.5494003295898438, -0.28337562084198, -0.541849672794342, 0.11537420749664307, 0.5434513092041016, -0.16416694223880768, 0.16318348050117493, -0.36997297406196594, -0.24775981903076172, -0.40208524465560913, 0.14940737187862396, 0.06345774978399277, -0.11518843472003937, 0.39234280586242676, 0.05576065927743912, 1.1913444995880127, -0.04052836820483208, -0.08387491106987, -1.583003044128418, 0.4829525649547577, 0.3812173008918762, 1.0229098796844482, -0.024857869371771812, 0.3209083080291748, 0.13207761943340302, -0.1499396115541458, 0.5431987047195435, -0.004297796171158552, 1.5271978378295898, 0.019870903342962265, -0.2818334698677063, -0.9566137194633484, -0.8414059281349182, 0.029222754761576653, -0.2561110854148865, 0.23607885837554932, -0.09373629093170166, -0.2983900010585785, -1.3037428855895996, 1.1062270402908325, 0.9160212874412537, -0.2996225655078888, -0.48621103167533875, -0.16980652511119843, 0.3861815631389618, 0.006133965216577053, 0.6798221468925476, -0.6391085386276245, -0.14499545097351074, -0.30498191714286804, -1.6186630725860596, -0.6558040380477905, -0.11153256893157959, -0.49870914220809937, 0.9340256452560425, -0.909915030002594, -0.2478075474500656, 0.017946757376194, 0.28239789605140686, 0.3326675295829773, 0.19682107865810394, 0.17520350217819214, -0.08614517748355865, -0.313426673412323, -0.03421998769044876, 0.5761994123458862, 1.6355831623077393, -0.6798723340034485, -0.7667638063430786, 0.19557270407676697, 0.432182252407074, -0.07802490144968033, -0.08680199086666107, -0.5527323484420776, -0.06654410064220428, -0.7296421527862549, -0.30530956387519836, 0.055185940116643906, -0.09890783578157425, 1.5691964626312256, 0.08806543052196503, 0.40318432450294495, 0.6025062799453735, -0.35836800932884216, -0.9352076053619385, 0.2780245244503021, 0.1298791468143463, 0.5308353900909424, -0.5385442972183228, -0.009949958883225918, 0.24028465151786804, -0.34685197472572327, 0.7596489787101746, 0.41108107566833496, 0.6496003866195679, -0.3878874182701111, -0.0410202220082283, 0.15045283734798431, 0.16666094958782196, 0.3946085572242737, 0.7453363537788391, 0.09701506048440933, -0.24802477657794952, -0.9415568709373474, 0.7439215779304504, -1.4417192935943604, 0.14902621507644653, 0.1960395723581314, -0.1499803513288498, 1.0808318853378296, -1.3561409711837769, -0.41367098689079285, -0.10566765815019608, -0.08732343465089798, 0.788237452507019, 0.5136120319366455, -0.12576763331890106, -0.234177827835083, 0.48379620909690857, 0.6477460861206055, -0.1832747459411621, 0.11879892647266388, 0.03791527450084686, 0.4043564796447754, 0.15090671181678772, -0.54929518699646, 0.36281058192253113, 0.206549733877182, -0.32093876600265503, -0.3443628251552582, 0.0591159351170063, 0.6520493626594543, 0.28832849860191345, -0.36156195402145386, 0.9337553977966309, -0.5891889333724976, -0.4507056772708893, 0.38721969723701477, -0.2650836110115051, -0.0022837112192064524, -0.46182548999786377, -0.915767252445221, 0.010557821951806545, -0.751991868019104, -0.45863020420074463, 0.7813800573348999, -0.8003413677215576, -1.1640764474868774, -0.969816267490387, -0.9860312938690186, -0.42484748363494873, 1.373435139656067, 1.66242516040802, 0.565116822719574, 0.3056650757789612, 0.9357622861862183, 0.34972718358039856, -0.10308437794446945, 0.030020155012607574, 0.2565879225730896, -0.22735685110092163, -0.13119706511497498, -1.505262851715088, -0.4366157352924347, 0.8523784875869751, 0.28795096278190613, -0.3761771619319916, -0.10271315276622772, 0.8995438814163208, 1.1279592514038086, 0.2659475803375244, -0.887478768825531, 0.7006884217262268, -0.7226125001907349, 1.1214643716812134, 0.793438196182251, 0.18337205052375793, 0.11015719175338745, -0.07125883549451828, -1.4055891036987305, 0.2874565124511719, -0.37280404567718506, -1.1272962093353271, 0.6728694438934326, 0.0381292961537838, 0.36541256308555603, 0.1912641078233719, -0.14616145193576813, 0.06022181734442711, 0.5754151344299316, -0.3603503704071045, -0.8106794953346252, -0.08280318975448608, 0.24331367015838623, 0.16118672490119934, -0.0030443286523222923, 0.2657414674758911, 0.4108760952949524, -0.13764667510986328, 0.8183148503303528, 0.3935535252094269, 0.9130957722663879, 0.42584776878356934, 0.3764379024505615, -1.1141407489776611, 0.7908082008361816, -0.7335763573646545, -0.6991745233535767, -0.313157320022583, -0.12686790525913239, -0.40155208110809326, -0.13305525481700897, -0.21826967597007751, -0.2708017826080322, -0.5398231744766235, -0.9507873058319092, -0.19543103873729706, 0.24970696866512299, -0.06683925539255142, -0.4504314959049225, -0.3079303801059723, -1.217219352722168, -0.9325832724571228, -0.4912789463996887, -0.11370068788528442, 0.4752946197986603, -1.203615427017212, 0.20803694427013397, -0.38923367857933044, 0.40552181005477905, 0.20115061104297638, -0.5444580316543579, 0.8939825892448425, -0.7063663601875305, -1.2374464273452759, -1.0743613243103027, 0.18976463377475739, 1.0639216899871826, -0.5527243614196777, 1.4056452512741089, 0.6462129950523376, -1.6688146591186523, -0.20223817229270935, 0.2606785297393799, -1.3789916038513184, 0.11683458089828491, -1.1816942691802979, 1.3976209163665771, -0.9192498922348022, 0.23217883706092834, -0.3470153212547302, 2.0894370079040527, -0.9829098582267761, -1.1935726404190063, -0.7195715308189392, -0.5495706796646118, 0.9715176820755005, 0.9287500381469727, -0.040153659880161285, 1.498038411140442, -0.03858085349202156, -0.5366474390029907, -0.4699857234954834, 0.050326548516750336, -0.9790663123130798, -0.08829193562269211, 0.06558133661746979, 0.40575674176216125, 0.5080094337463379, 0.7878233790397644, -1.1772688627243042, 0.23235011100769043, 0.686796247959137, 0.15862397849559784, -0.11594950407743454, -0.7612301111221313, 0.15384449064731598, 0.03999603912234306, -1.176060676574707, -0.8154285550117493, -0.1539807766675949, -0.7474815249443054, -0.6465857028961182, 0.7403934597969055, 1.0245338678359985, -0.7385284900665283, 0.35941869020462036, 0.4483843147754669, -0.11670734733343124, -0.4814324975013733, 0.6779251098632812, -0.049282755702733994, -0.25838133692741394, -0.7502081394195557, -0.06623277813196182, 0.09756886959075928, -1.153608798980713, -0.1246141716837883, 0.5175375938415527, 0.25165262818336487, -0.3174511194229126, 1.0788155794143677, 0.9622161984443665, 0.1524064987897873, -0.1665738970041275, 1.1763825416564941, 1.3103026151657104, -0.5981449484825134, -0.6992797255516052, 0.7585553526878357, 0.05480561405420303, 0.3965890109539032, -0.7105880975723267, 0.045450448989868164, -0.13672341406345367, 0.09355708956718445, 1.0319530963897705, -0.7939855456352234, -0.5892573595046997, -0.19567935168743134, -0.10999560356140137, 0.5300986170768738, 0.46107521653175354, -1.3009543418884277, -0.15763773024082184, 1.1320916414260864, 0.10935437679290771, -0.23052138090133667, -0.322421133518219, 1.047597050666809, 0.055780380964279175, -0.5646459460258484, 0.27553361654281616, 0.5238125920295715, -0.7168717980384827, 0.41630566120147705, 0.07878975570201874, 0.3354279696941376, 0.3420959413051605, -0.45928820967674255, -1.5837904214859009, 0.2205897867679596, -1.1038018465042114, -0.5286790132522583, 0.6599187254905701, -0.357033908367157, -1.2124242782592773, 0.6556174159049988, 0.5472791194915771, -0.12470560520887375, -0.3639748990535736, 0.26183027029037476, -0.5655839443206787, 0.23911212384700775, 0.7849092483520508, -0.7932956218719482, 1.2328795194625854, 0.300875186920166, 0.6208827495574951, -0.43676745891571045, -0.6609715223312378, 0.4710909128189087, 0.8112034797668457, -0.28605401515960693, -0.4748815894126892, 0.840053379535675, -0.17531119287014008, -0.41487041115760803, -0.28256529569625854, 0.020014062523841858, 0.1886512190103531, 0.10006475448608398, -1.2022037506103516, -0.7605516314506531, 0.18823032081127167, 1.0890082120895386, -0.581732451915741, -0.613975465297699, -0.9147800207138062, 0.20913246273994446, -0.4903333783149719, 0.7427486777305603, 0.2794678211212158, 0.7078784704208374, 0.09532617032527924, -0.392456591129303, 0.46699315309524536, -0.8035411238670349, -0.09764028340578079, -0.018165223300457, 0.5618883967399597, 0.11816231906414032, -0.04237627610564232, 0.02229084074497223, -0.6542379260063171, 0.5413920283317566, -0.011727026663720608, 0.3516818881034851, 0.4743744730949402, -1.1515800952911377, -0.8583217263221741, -0.859958827495575, 0.23120281100273132, 1.4552682638168335, -0.5511239171028137, -0.3129890263080597, 0.3813728988170624, -0.6229104399681091, 0.6935229301452637, 0.24168984591960907, 0.3873378336429596, 0.8714844584465027, 1.1309125423431396, 1.6056320667266846, -0.017517339438199997, -0.09435513615608215, -0.40776607394218445, 0.5301430225372314, -0.42301052808761597, -0.18987014889717102, -0.47771531343460083, 0.021184051409363747, 0.343891441822052], [0.7224237322807312, 1.8295392990112305, -2.0458004474639893, -0.22541342675685883, 1.3303943872451782, 0.16899999976158142, 1.3066356182098389, 0.04640882462263107, 0.42393064498901367, -0.5239149928092957, -0.7854247689247131, -0.18416592478752136, 0.2247047871351242, 0.9779449105262756, 0.12660349905490875, 0.5903921127319336, 0.80511873960495, -0.9343665838241577, 0.5197221040725708, 0.5368943214416504, 0.007130354642868042, -0.2153681069612503, 0.11225034296512604, 0.08009753376245499, -0.40193843841552734, -0.5555129051208496, -1.7931256294250488, -0.7435424327850342, -0.22737732529640198, -0.29309916496276855, 0.1988225281238556, -1.4885605573654175, 0.18428249657154083, 0.042986270040273666, -1.4244384765625, -1.2617875337600708, 1.8233017921447754, 0.5399016737937927, -0.03992054611444473, 0.056688569486141205, 2.188617467880249, 0.15627816319465637, 0.21863658726215363, -1.6437203884124756, 0.24210835993289948, 0.5751329064369202, 1.122635841369629, -0.46265098452568054, 0.0905478447675705, -1.2809423208236694, 0.4271858334541321, -0.8987820744514465, 1.149893045425415, 0.7401065230369568, 0.6205931901931763, 0.8269032835960388, 0.14033685624599457, 0.3555464744567871, 1.2729363441467285, -0.028895221650600433, 1.283310890197754, -0.3478463590145111, 0.9542673826217651, 0.6455002427101135, 0.2840852737426758, 0.03056051768362522, 0.002207278273999691, 0.9106682538986206, 0.6045058369636536, -0.6730978488922119, 0.5997231602668762, -0.24311545491218567, -0.7556298971176147, 0.8057223558425903, -1.1832867860794067, 0.4780714511871338, 0.2831076681613922, 0.6978167295455933, 0.14770303666591644, -0.09713238477706909, -0.604524552822113, -0.0932544469833374, 0.2097567468881607, -0.5273616909980774, -0.2127099186182022, -0.6441974639892578, 0.15636348724365234, -0.42298439145088196, 0.38269686698913574, 1.8840997219085693, 1.0150264501571655, -0.4813780188560486, 1.1333035230636597, -0.24494397640228271, -0.1540287733078003, -0.28557920455932617, 0.75833660364151, -0.2205381989479065, -0.7956053018569946, -0.48797768354415894, -0.5440462827682495, -0.6778969764709473, 0.04260933771729469, -0.2568533420562744, 0.7938668131828308, 1.3507080078125, -0.004867096897214651, 0.4108184576034546, -0.44801437854766846, 0.4723760783672333, -0.7963430285453796, -0.002440215554088354, -1.2080401182174683, -1.036882996559143, -1.611092209815979, 1.0478588342666626, 1.6180616617202759, 0.024416795000433922, 1.0873167514801025, 0.609916090965271, -0.5095402598381042, 0.4041464030742645, -0.050773583352565765, -0.21669834852218628, 0.49354681372642517, 0.36774805188179016, -0.7601550221443176, -0.5488681793212891, -0.10294640064239502, -0.5548052787780762, -0.06950655579566956, 0.6301178336143494, -0.22765614092350006, 1.0824214220046997, -0.7517502903938293, 0.8839454650878906, -0.32755738496780396, -0.0602736622095108, 0.23459170758724213, 0.12553590536117554, 0.6543365120887756, -0.6990876197814941, -0.45127856731414795, 0.5272378921508789, 0.09416954219341278, -1.6424047946929932, 0.7742940187454224, -0.19422996044158936, -0.9184854030609131, 0.042574524879455566, -0.37251076102256775, -0.18542519211769104, 0.15326596796512604, 0.06437307596206665, 0.20219717919826508, -0.18361690640449524, 0.5747413039207458, -0.28738629817962646, 0.5238422751426697, -0.06824342906475067, 0.7414047122001648, -0.19623158872127533, -0.7630608677864075, 0.19045136868953705, 0.48494434356689453, 0.23088091611862183, 0.4812777638435364, 0.35232627391815186, 0.21738089621067047, 0.7647445201873779, -0.7840246558189392, -0.7690842151641846, -0.3851514160633087, 0.5700180530548096, 0.7141746282577515, -0.41958609223365784, 1.7996597290039062, -1.2195470333099365, -0.051411982625722885, -1.10604727268219, 0.48506054282188416, 0.01683145761489868, 0.5576131343841553, 0.0018452275544404984, 0.6125305891036987, -0.25418421626091003, 0.04123358055949211, -0.5119054913520813, 0.03649432584643364, -0.8750604391098022, -0.5641624927520752, -0.38564327359199524, -0.6428540945053101, 0.14578886330127716, -0.07938958704471588, 0.07147113978862762, 0.9537602066993713, -0.7266855239868164, -1.1198762655258179, -0.5685085654258728, -0.9284958839416504, -0.3016011416912079, 0.05829811096191406, 0.6376924514770508, -0.041188787668943405, 1.5022367238998413, -0.7033901810646057, 1.0013984441757202, -0.8721113204956055, 0.05950112268328667, 1.4654510021209717, -0.5145449042320251, -0.2743833065032959, 1.1186082363128662, 0.00122052151709795, -0.6685394644737244, 0.7064040899276733, 0.521489679813385, 0.46032699942588806, 0.4221075177192688, 0.3605171740055084, -0.05725099518895149, 0.4707786738872528, 0.1604580581188202, 0.7591643333435059, -0.09592551738023758, -0.8397179841995239, -1.278408169746399, -1.2559218406677246, 0.6117169260978699, -0.6608179211616516, -2.703293561935425, 0.7936591506004333, 0.14338593184947968, -0.2227025032043457, 0.039388976991176605, -0.057761307805776596, 0.5388530492782593, -0.21483752131462097, 0.8623256683349609, 0.11915254592895508, 0.7406471967697144, -0.3540346920490265, 0.17943280935287476, 0.1603303700685501, -0.5882867574691772, 0.259494423866272, -0.4723283350467682, -0.14492936432361603, 0.6671037077903748, 0.8847458958625793, 0.0635683536529541, 0.863504946231842, 0.4160645306110382, -0.31583866477012634, -1.372761845588684, -0.4655385911464691, 1.4592863321304321, 0.09982459992170334, 0.7128459215164185, 0.8893234133720398, -0.3307865560054779, -0.3327869474887848, 0.18989188969135284, -0.40892094373703003, -0.34592360258102417, -1.2082279920578003, -1.0465251207351685, -0.6059190034866333, -0.3159150183200836, 0.05127446725964546, 0.43192437291145325, 0.5432096719741821, 1.0211089849472046, -0.06109033524990082, -0.9985631704330444, -0.48536792397499084, 1.2220335006713867, 0.432568222284317, 0.35914406180381775, -0.11554784327745438, -0.7886970639228821, -0.6205717325210571, 0.2280328869819641, 0.49449220299720764, -0.07534641027450562, -0.4743174910545349, 0.4604589343070984, 0.3540363907814026, -0.5177077054977417, 0.16467583179473877, 0.6170833706855774, 0.32465794682502747, -0.2600483298301697, -0.4238351583480835, 0.8432887196540833, 1.3477561473846436, -0.3268362879753113, -0.37825751304626465, -0.08393912762403488, 0.43627795577049255, 0.49991676211357117, 0.9480119347572327, 1.0815445184707642, -0.25028079748153687, -0.072530597448349, -0.3387680947780609, -0.12212498486042023, -0.6330716013908386, -0.5586845874786377, -1.0553922653198242, -0.051619019359350204, -0.7193134427070618, -0.29307082295417786, -0.27406740188598633, 0.3898855745792389, -0.16774038970470428, 0.6729554533958435, 0.8321244716644287, -0.40549373626708984, -1.0769482851028442, -0.05931483209133148, 0.33593326807022095, -2.1578123569488525, 0.44896960258483887, 0.6244033575057983, -0.5587481260299683, -0.8108129501342773, -1.1699296236038208, -0.36019325256347656, 0.6805173754692078, -0.23528358340263367, -0.19248908758163452, -1.1296766996383667, -0.2632794976234436, 0.12847578525543213, 1.140022873878479, -0.16717474162578583, 0.6036174297332764, -1.339642882347107, -0.14588670432567596, 0.4526980221271515, 0.397711843252182, -0.327911376953125, 0.17063724994659424, 0.16979430615901947, -0.7095388174057007, 0.497994989156723, 0.6093323230743408, -0.16861267387866974, -0.2512560486793518, 0.12422297149896622, -0.5478925704956055, -0.08548176288604736, -0.7701650857925415, 0.26896214485168457, -0.5170943737030029, 0.24114860594272614, -0.3428792655467987, 0.2218373566865921, 1.4506970643997192, -1.0880452394485474, -0.029040874913334846, -0.5704725384712219, 0.31788259744644165, 0.07910420000553131, 0.9506380558013916, 0.22404362261295319, 0.4673393666744232, 0.0196553822606802, 0.19098234176635742, 0.22750717401504517, -0.3225991129875183, 1.1073871850967407, 0.16878287494182587, 0.004682160448282957, -0.1875579059123993, -0.7983540296554565, -0.2181236296892166, -0.15909229218959808, 0.10932619124650955, 0.09058418869972229, -0.8011916279792786, -0.9837653636932373, 0.8126187324523926, 0.864758312702179, 0.09771603345870972, -1.0140124559402466, 0.03335946798324585, 1.5004252195358276, -0.24093729257583618, 1.3622606992721558, -0.33451560139656067, 0.013563527725636959, 0.3221281170845032, -1.5066157579421997, -0.46529054641723633, -0.42913109064102173, -1.410022258758545, 0.8249993324279785, -0.4205474853515625, 0.11604645848274231, -0.5755898356437683, 0.35679295659065247, 0.8398686647415161, 0.030303381383419037, 0.1785181760787964, -0.34004661440849304, 0.10176282376050949, -0.24817290902137756, 0.3996947407722473, 1.4400923252105713, -0.846132218837738, -0.5049555897712708, -0.1664356142282486, 0.316184937953949, 0.42834076285362244, -0.4637637734413147, -0.4856293499469757, -0.419043630361557, -0.37892574071884155, -0.334229975938797, 0.45458510518074036, 0.09797099977731705, 1.3120476007461548, -0.3303854763507843, 0.2733782231807709, -0.3014466166496277, -0.23884019255638123, -0.4028501808643341, 0.278840571641922, 0.15619896352291107, 0.3379664421081543, -0.49554356932640076, -0.3109266757965088, -0.17263811826705933, 0.15287970006465912, 0.1120247021317482, -0.01196835283190012, 0.6720857620239258, 0.5666801929473877, -0.0893113911151886, 0.4277249872684479, 0.07937084138393402, 0.2671416103839874, 1.0970638990402222, -0.5993790626525879, 0.09405313432216644, -0.3804624080657959, 0.39030721783638, -0.9673970937728882, 0.38148897886276245, 0.34815824031829834, -0.4423731565475464, 0.9009780883789062, -1.7030278444290161, -0.862316370010376, 0.8333242535591125, -0.24694235622882843, 0.3318508565425873, 0.30934447050094604, -0.2704271674156189, -0.40074124932289124, 1.17894446849823, 0.40333765745162964, -0.7091380953788757, -0.019785940647125244, -0.1446075439453125, 0.5960308313369751, -0.3301032781600952, -0.635991096496582, 0.8980413675308228, 0.12655465304851532, 0.3134346902370453, -0.04433532431721687, -0.6733026504516602, 0.5113201141357422, -0.08109914511442184, -0.13078966736793518, 1.0738667249679565, 0.07454691082239151, -0.2280173897743225, -0.028790825977921486, -0.40754687786102295, 0.46590837836265564, -0.21542806923389435, -0.3533945083618164, 0.0026004170067608356, -0.44329530000686646, -0.5188775062561035, 0.7990977764129639, -0.504246175289154, -0.34291762113571167, -0.3957669734954834, -0.5710426568984985, -0.10659565031528473, 0.13993743062019348, 0.5187124609947205, 0.5583760738372803, 0.3939077854156494, 1.0764802694320679, 0.703502893447876, -0.05501093715429306, -0.37905097007751465, 0.9021366238594055, -0.5858213901519775, -0.6918625235557556, -1.4601279497146606, -0.5835780501365662, 0.1856289505958557, -0.14544351398944855, -0.045699410140514374, -0.020396055653691292, 0.7028079032897949, 1.403887152671814, -0.44919049739837646, 0.17469516396522522, -0.04208222031593323, -1.0318865776062012, 0.8350499272346497, 0.032094597816467285, -0.5346053242683411, -0.2589409649372101, -0.8176278471946716, -1.0504475831985474, 0.7848440408706665, 0.4580225646495819, -0.679646372795105, 0.8806980848312378, -0.2830057144165039, 0.654689610004425, 0.16771546006202698, -0.010570725426077843, 0.08000342547893524, -0.2729051113128662, 0.7121840715408325, -0.8156740069389343, 0.025600140914320946, 0.5590283870697021, 0.11123589426279068, -0.018450025469064713, 0.3996872901916504, 0.05431549251079559, 0.1165669858455658, 0.7306562662124634, 0.4921020269393921, -0.0011516725644469261, 0.8205602765083313, 0.8594703078269958, -1.2916717529296875, -0.04335666075348854, 0.26463478803634644, -0.39905017614364624, -0.4411124289035797, 0.16705618798732758, -0.30972301959991455, -0.11341199278831482, -0.3391886353492737, -1.0080269575119019, -0.39365777373313904, -0.1334545612335205, 0.17461645603179932, 0.7870573997497559, 0.2749544382095337, -0.6276716589927673, 0.25560685992240906, -0.1359669417142868, -0.39745113253593445, -0.11465457826852798, -0.2219901978969574, 0.16899992525577545, -0.6817747354507446, 0.22410453855991364, -0.47958311438560486, 0.04405323043465614, -0.002013575518503785, -0.9461073875427246, 0.4497482180595398, -0.7582453489303589, -1.274625301361084, -0.8200101256370544, 0.3985516428947449, 1.2981194257736206, 0.2237219661474228, 1.4102718830108643, 0.8930872678756714, -1.0128505229949951, 0.04287881776690483, 0.48671653866767883, -1.4965225458145142, -0.17809179425239563, -1.0245023965835571, 0.9377931356430054, -1.1318237781524658, 0.5132545828819275, -0.558718204498291, 0.9903959631919861, -0.9163023829460144, -1.4053095579147339, -0.5275441408157349, -1.4076199531555176, 0.9039448499679565, 1.069538950920105, -0.6527093052864075, 0.6970885992050171, -0.17376480996608734, -0.47508031129837036, -0.6595808267593384, 0.18579928576946259, -0.5438677072525024, -0.06836157292127609, -0.3930032253265381, 0.8435852527618408, -0.0012593381106853485, 0.48037058115005493, -0.49626606702804565, 0.6888573169708252, 0.2121884822845459, 0.8454923033714294, 0.08539211750030518, 0.24534396827220917, -0.6326047778129578, -0.5022804737091064, -1.7285971641540527, -0.8287997245788574, -0.4595909118652344, -0.7134156823158264, -0.6055120229721069, 1.222651720046997, 0.6139397025108337, -0.6811115145683289, 0.31537294387817383, -0.4723716080188751, 0.10987625271081924, -0.9406066536903381, -0.4786314368247986, -0.3408494293689728, 0.3932364583015442, -0.4072321057319641, 0.013531656935811043, -0.11062880605459213, -1.4231462478637695, -0.16771265864372253, 0.9980468153953552, 0.31257835030555725, -0.2914575934410095, 0.5429317355155945, 1.0386309623718262, 0.7496126294136047, -1.0466301441192627, 1.3754233121871948, 1.0186372995376587, 0.12089838087558746, -0.3434337377548218, -0.33967387676239014, -0.3319041132926941, 0.7175233960151672, -0.6770259737968445, 0.08822164684534073, -0.3771328330039978, 0.405556857585907, 0.6250388622283936, -1.1426215171813965, -0.5455997586250305, -0.533940851688385, -0.00760198850184679, 0.6331084966659546, 0.25036928057670593, -0.7500683665275574, -0.5438640713691711, 1.0704282522201538, -0.07775604724884033, -1.110892653465271, -0.13602834939956665, 0.3838541805744171, 0.05032114312052727, -0.8412188291549683, 0.4982197880744934, 0.40612557530403137, -0.896084725856781, 0.8845333456993103, 0.5804699659347534, -0.15374641120433807, -0.16627418994903564, -0.26543375849723816, -0.4885227084159851, 0.13681793212890625, -0.04872477799654007, -0.2541466951370239, 0.6197739243507385, -0.7993480563163757, -0.302734375, 0.7747055292129517, 0.02327297441661358, -0.15831126272678375, 0.004389853682368994, 0.4495573043823242, -0.4777635335922241, 0.1622694432735443, -0.01409943401813507, -0.5696249604225159, 0.7369924783706665, 0.4450736939907074, -0.038209009915590286, -0.6041644215583801, -0.64401775598526, 0.9955146908760071, 0.17293235659599304, 0.04214852303266525, -0.7543458342552185, 0.8042081594467163, 0.2264648675918579, -0.5928992033004761, 0.16039682924747467, 0.9327892661094666, 0.4202900528907776, -0.32373327016830444, -0.48740434646606445, -0.6617145538330078, 0.6597296595573425, 0.44877108931541443, -0.712652325630188, -0.4437659680843353, -0.5974085330963135, -0.3932841122150421, -0.06132372096180916, 0.5613160133361816, 0.22559747099876404, -0.1333160698413849, 0.25999993085861206, -9.339209645986557e-05, 0.36854076385498047, -0.8480620384216309, 0.12203413248062134, 0.3461957275867462, 0.027517953887581825, 0.07530339062213898, -0.08587821573019028, 0.12235831469297409, -1.025701642036438, -0.04108309745788574, -0.6194392442703247, -0.1335086077451706, -0.08105269074440002, -0.9001086354255676, -1.4243175983428955, -0.4277871549129486, 0.8791224360466003, 0.9996047019958496, -0.3635751008987427, -0.28453415632247925, -0.16638612747192383, -0.5994595289230347, 0.5708795785903931, 0.6505879163742065, -0.03626352548599243, 0.6618660688400269, 1.3949131965637207, 1.9990267753601074, 0.22240813076496124, 0.46377283334732056, 0.18403030931949615, 0.5362515449523926, -0.9280419945716858, 0.566011905670166, -0.4404943883419037, 1.0578078031539917, 0.044388920068740845], [0.30203109979629517, 1.732083797454834, -1.864370584487915, 0.004346755333244801, 0.8828441500663757, -0.13674890995025635, 2.0133893489837646, -0.3206578195095062, 0.38509687781333923, -0.8156044483184814, 0.29146164655685425, -0.09538357704877853, 1.1313486099243164, 0.8323231935501099, 0.08860692381858826, -0.5808210968971252, 0.5907033681869507, -1.5175434350967407, 0.5687873959541321, 0.6454234719276428, 0.13852471113204956, -0.7439953088760376, -0.2678918242454529, -0.2638765573501587, -0.5747896432876587, 0.06732773035764694, -1.3797115087509155, -0.1463131457567215, -0.3658996820449829, -0.9751448035240173, 0.8959609866142273, -1.6655741930007935, -0.4622117280960083, -0.4569408893585205, -0.7557474374771118, -0.6362810730934143, 1.2375707626342773, 0.30745524168014526, 0.22121189534664154, 0.36986926198005676, 2.147611379623413, 0.12450147420167923, 0.11412855237722397, -1.7409743070602417, 0.6124315857887268, -0.3191415071487427, 0.9990980625152588, -0.8371857404708862, 0.905430257320404, -1.17601478099823, 0.28441107273101807, -0.4034336507320404, 0.5872105956077576, 1.425849199295044, 0.6121400594711304, 0.817794144153595, 0.19378980994224548, 0.5954394936561584, 0.9067147970199585, -0.07672504335641861, 0.6891658902168274, -0.5547826886177063, -0.22148597240447998, 0.5618467330932617, 0.0230375025421381, -0.4255230724811554, 0.36529263854026794, -0.012512960471212864, -0.14446794986724854, -0.25879961252212524, 0.35485541820526123, -0.28719714283943176, -0.21204476058483124, -0.27705907821655273, -1.3055651187896729, 1.2832996845245361, 0.4562603831291199, 0.6322289109230042, -0.16357797384262085, 0.5866581201553345, -1.0256844758987427, -0.47490549087524414, 0.589586079120636, -0.6272057294845581, 0.05572441220283508, 0.39413776993751526, -0.15538442134857178, -0.0038359835743904114, 0.0028717005625367165, 2.4292047023773193, 1.1385979652404785, 0.027561534196138382, 0.5718281269073486, 0.13934506475925446, -0.18290618062019348, -0.49327531456947327, 0.5012866258621216, -0.3109601140022278, -0.9362764954566956, 0.1316646784543991, -0.05636385828256607, -0.19384053349494934, -0.20088884234428406, -0.17237086594104767, -0.269050270318985, 1.4355603456497192, -0.3383353352546692, -0.044628482311964035, -0.03760942071676254, 0.4392460882663727, -0.7496887445449829, -0.23676708340644836, -0.9600573778152466, -1.5995796918869019, -0.6389593482017517, 0.8674674034118652, 1.9363720417022705, 0.18585166335105896, 0.6038022637367249, 0.7876138687133789, -0.08578736335039139, -0.23474432528018951, 0.15644754469394684, 0.4190254807472229, 0.03867124021053314, -0.006805183831602335, -0.5228613615036011, -0.7213423252105713, -0.210508331656456, 0.014958449639379978, 0.249365895986557, -0.3431830406188965, -0.3976897895336151, 0.2381342649459839, -0.10787110030651093, 1.0727876424789429, -0.8513760566711426, -0.30382898449897766, -0.2344709038734436, -0.05427198484539986, 0.5989503264427185, -0.7264909744262695, -0.502882182598114, 0.49726274609565735, -0.05588485300540924, -0.635511040687561, 0.24528135359287262, 0.40376996994018555, -0.76106196641922, -0.04540661349892616, -0.3406307101249695, 0.41395825147628784, 0.34600117802619934, -0.12883663177490234, -0.2832833230495453, 0.07237886637449265, 0.27417072653770447, 0.024395108222961426, 0.4921494126319885, 0.17357216775417328, -0.025036942213773727, -0.06225837767124176, -1.2360761165618896, 0.8529902696609497, 0.9381758570671082, -0.3039662539958954, 0.8677185773849487, 0.4968244433403015, -0.2698529362678528, 0.7155815362930298, -0.7457340359687805, -0.5805328488349915, 0.49360737204551697, 0.29718324542045593, 0.2986423373222351, 0.46768563985824585, 1.7876719236373901, -1.5027704238891602, -0.6563968062400818, -1.071243166923523, 0.6928065419197083, -0.5032787919044495, 0.20542404055595398, -0.43500691652297974, -0.01972934976220131, -0.41818028688430786, 0.44674625992774963, 0.0031672059558331966, -0.20837311446666718, -1.2076804637908936, -0.4214931130409241, -0.9120112657546997, -1.0877408981323242, 0.04684777185320854, -0.4839191436767578, -0.3871280550956726, 1.3998016119003296, -1.6442548036575317, -0.6906824707984924, -0.19083482027053833, -0.30645161867141724, -0.976811408996582, 0.07833350449800491, 0.44812148809432983, -0.2739633023738861, 1.4460493326187134, -1.235169768333435, 0.7150934934616089, -0.6239007115364075, -0.0862102285027504, 1.1045647859573364, -0.35267356038093567, -0.9498254656791687, 0.9709368348121643, -0.7089648246765137, -1.0624333620071411, 0.48004236817359924, 0.5281927585601807, -0.013322951272130013, 0.801723301410675, -0.09176839888095856, 0.00961852166801691, -0.03903520107269287, 0.16106092929840088, 0.7626338005065918, 0.25376203656196594, -0.5820277333259583, -1.395612120628357, -0.961879551410675, 0.7272025346755981, -0.9545619487762451, -1.2543659210205078, 0.7399831414222717, 0.0509784035384655, -0.5220096707344055, -0.07136736810207367, 0.07965605705976486, 0.5425503253936768, -0.2731514275074005, 1.0989996194839478, 0.7535675168037415, 0.07252354919910431, 0.3634148836135864, -0.4209451973438263, -0.3164435625076294, -0.14531567692756653, -0.3518478572368622, -0.43615061044692993, 0.3960191607475281, 1.3427726030349731, 0.8575579524040222, 0.255384236574173, 0.9148907661437988, 0.24582123756408691, -0.07015644758939743, -1.42576265335083, -0.03752606734633446, 0.7249060273170471, -0.8099137544631958, 1.3360847234725952, 1.1467164754867554, -0.4583239257335663, -0.4761115312576294, 0.13687428832054138, -0.32893553376197815, -0.5269083380699158, -1.3532154560089111, -0.8560007810592651, -0.7024442553520203, 0.6102410554885864, 0.5631133913993835, 0.5524582862854004, -0.25423604249954224, 0.5897006988525391, 0.2569078207015991, -0.6041383147239685, -0.2276737242937088, 0.5675647854804993, 0.8397865295410156, 0.7858039140701294, -0.32120728492736816, -0.8750871419906616, -0.878947913646698, 0.5616475343704224, 1.087168574333191, 0.5055260062217712, -0.1813323199748993, -0.45222318172454834, 0.43153372406959534, 0.3206634521484375, 0.25540128350257874, 0.7245166301727295, 0.2755805552005768, -0.02728159725666046, -0.16272445023059845, 0.7278682589530945, 0.4324455261230469, -1.6676177978515625, -1.1766633987426758, -0.6927623152732849, 0.5730416178703308, 0.9991704225540161, 0.9239087104797363, 0.9129180908203125, 0.1888824850320816, 0.505288302898407, -0.5903886556625366, -0.5011151432991028, -0.9056970477104187, -0.11722099035978317, -0.11103776097297668, -0.13970059156417847, -0.7480584979057312, -0.08238040655851364, -0.26670607924461365, 0.40993884205818176, 0.31406018137931824, 1.789512276649475, 0.9230123162269592, -0.30762821435928345, -0.26037803292274475, -0.4949699938297272, -0.41827285289764404, -1.0754646062850952, 0.5118840336799622, 0.8973748683929443, -0.597234308719635, -0.022516978904604912, 0.24299922585487366, 0.381142795085907, 0.6216894388198853, 0.4151054918766022, 0.4658832848072052, -1.1053071022033691, -0.7849603295326233, -0.20942647755146027, 1.0153577327728271, 0.04097723215818405, 0.37077564001083374, -0.551437258720398, -0.5359826683998108, 0.2421504706144333, -0.2015482634305954, -0.9005386829376221, 0.22314207255840302, 0.2057633250951767, -0.31641197204589844, -0.23675701022148132, 0.7739337086677551, -0.03250586614012718, -0.23330043256282806, -0.03521261736750603, -0.8169835209846497, 0.024772150442004204, -0.3698781132698059, 0.3345964550971985, -0.23172202706336975, 0.4084036350250244, 0.5042589902877808, -0.16251467168331146, 0.5630460381507874, -0.2983545660972595, -0.08090393245220184, -0.5884271860122681, 0.7422921061515808, 0.7261700630187988, 0.7839159369468689, 0.33646705746650696, -0.15316930413246155, 0.39867740869522095, -0.5599758625030518, 0.6437678933143616, 0.3898026943206787, 1.097497820854187, 0.22885344922542572, 0.39164999127388, -0.9343560934066772, -0.3495752215385437, 0.24211794137954712, -0.33789655566215515, 0.6521373391151428, 0.6049860715866089, -0.6792227029800415, -1.1950206756591797, 0.741210401058197, 0.11103571951389313, -0.20229969918727875, -0.621557354927063, -0.417831152677536, 0.7598319053649902, -0.21422292292118073, 0.1017901748418808, -0.412067711353302, -0.08068117499351501, 0.10912953317165375, -1.1257402896881104, -0.3358917832374573, 0.3036995232105255, -0.46607649326324463, 0.6037383079528809, -0.18610480427742004, 0.03168882802128792, -0.7383031249046326, 0.0896265059709549, 0.7585794925689697, -0.29968613386154175, -0.2835063338279724, 0.3595258891582489, -0.22429700195789337, -0.07499817758798599, 0.32231807708740234, 1.636929988861084, -0.8362871408462524, -0.8372224569320679, 0.05682617798447609, -0.39242058992385864, -0.38642483949661255, -0.8204950094223022, -0.6460384130477905, 0.22601830959320068, -0.5988333225250244, -0.09007695317268372, -0.15642379224300385, -0.1344747394323349, 1.2164201736450195, 0.011060405522584915, 0.5089064240455627, 0.3357236087322235, 0.0448627732694149, -1.1935343742370605, 0.13263820111751556, 0.48649272322654724, 0.7566967606544495, -0.3412334620952606, -0.14205580949783325, 0.27414804697036743, -0.6457751989364624, 1.1095114946365356, 0.010402207262814045, 0.17822043597698212, -0.0628068745136261, 0.054172057658433914, 0.2169361114501953, 1.0586237907409668, 1.378709316253662, 1.1532819271087646, 0.16506917774677277, 0.08880841732025146, -1.1622569561004639, 0.38333648443222046, -1.0220685005187988, 0.5223121047019958, 0.5539180040359497, -0.28183114528656006, 0.7559892535209656, -1.6276812553405762, -0.12723767757415771, 0.9093364477157593, 0.3332992494106293, 0.7685749530792236, 0.10340456664562225, -0.11653853952884674, 0.015656767413020134, 0.7803848385810852, 0.47101911902427673, -0.520171582698822, 0.6493537425994873, -0.30550628900527954, -0.07182057201862335, 0.4774496853351593, -1.3498432636260986, 0.2493630349636078, -0.5104730725288391, 0.26511046290397644, -0.8637666702270508, -0.3809765577316284, 0.17006976902484894, 0.08791066706180573, -0.061831340193748474, 0.7573462724685669, 0.0833408311009407, -0.6214846968650818, 0.08253014832735062, -0.45503726601600647, 0.23132029175758362, -0.04889872670173645, -0.35405227541923523, -0.5597969889640808, -0.5909998416900635, -0.0763867050409317, 0.16708116233348846, -0.8606957197189331, -0.048366520553827286, -0.5048062801361084, -1.168923258781433, 0.3426535725593567, 1.3030892610549927, 1.118729829788208, 0.3625643849372864, -0.30200299620628357, 0.48964008688926697, 0.5602572560310364, -1.0897678136825562, -0.27210721373558044, 0.10650318115949631, -0.18707765638828278, -0.037026338279247284, -1.2289719581604004, -0.0819484144449234, 0.4760591387748718, 0.3995768427848816, -0.06665143370628357, 0.1144065409898758, 0.590722918510437, 1.22907555103302, -0.39706185460090637, 0.13077223300933838, 0.49541139602661133, -0.5659520030021667, 0.9025853872299194, 0.45090118050575256, -0.6329284310340881, -0.3699745237827301, -0.5236948728561401, -1.021622657775879, 0.7332067489624023, -0.38618478178977966, -0.6521223187446594, 0.9514415860176086, -0.57248854637146, 0.5289373397827148, 0.2335694283246994, -0.5622166991233826, 0.5125428438186646, 0.23929667472839355, 1.3035515546798706, -0.6345164775848389, 0.3459074795246124, 0.5798631906509399, -0.15997308492660522, -0.1612435281276703, 0.3417491614818573, 0.08521468192338943, -0.060632750391960144, 0.9721086025238037, 0.19578152894973755, 1.2847338914871216, 0.686420738697052, 0.36274999380111694, -0.5551590323448181, 0.3480631411075592, -0.2980704605579376, -0.7286674380302429, -0.41832220554351807, -0.01882382109761238, 0.05291244015097618, -0.43583226203918457, -0.018825417384505272, -0.12162686884403229, -0.33579060435295105, -0.6599411964416504, -0.44088014960289, 0.3890407085418701, -0.3365112543106079, 0.27130430936813354, -0.7344678640365601, -0.7655655145645142, -1.1104588508605957, -0.27607104182243347, 0.3120732605457306, 0.9272593855857849, -0.41079482436180115, 0.28365811705589294, -0.15660475194454193, -0.2399742156267166, -0.3111891448497772, -0.7130649089813232, 0.580123245716095, -1.1195333003997803, -0.7694252729415894, -0.6806480288505554, 0.06255520135164261, 0.4734707474708557, -0.4903301000595093, 1.6463137865066528, 0.1420886516571045, -1.231147050857544, 0.6364583373069763, 0.3000139892101288, -1.0859073400497437, -0.43140241503715515, -1.294081211090088, 1.1431074142456055, -0.9419530630111694, -0.03506860509514809, -0.4790439009666443, 1.4501031637191772, -0.7876631021499634, -1.7085926532745361, -0.7838687896728516, -0.43702933192253113, 1.2147780656814575, 1.2122455835342407, -0.35034218430519104, 1.1214557886123657, 0.28261876106262207, -0.049175925552845, -0.7357747554779053, 0.46065396070480347, -0.25526997447013855, -0.15172557532787323, 0.14662212133407593, 0.49792617559432983, 0.06187134236097336, 1.0782760381698608, -0.41002988815307617, 0.7454817295074463, 0.4967081546783447, 1.3335438966751099, -0.28568705916404724, -0.08864668756723404, -0.41627493500709534, 0.21566994488239288, -1.386594295501709, -1.0110363960266113, 0.26690563559532166, -0.12951138615608215, -1.3272513151168823, 0.2128746509552002, 0.6378298997879028, -0.07320916652679443, 0.41418182849884033, -0.44829750061035156, 0.9618337154388428, -0.8002296686172485, 0.616207480430603, -0.08498293161392212, -0.3077273368835449, -0.4721403121948242, -0.0050684381276369095, 0.7711777091026306, -1.1680852174758911, -0.4244878888130188, 0.8363675475120544, -0.08061441779136658, -1.106155276298523, 0.25757646560668945, 0.827627420425415, 0.5143991112709045, -0.5425078868865967, 1.2565845251083374, 1.0275381803512573, -1.0122814178466797, -0.34609904885292053, 0.27647244930267334, 0.47413909435272217, 0.49517887830734253, -0.689828097820282, -0.40607669949531555, -0.43468689918518066, 0.7221671342849731, 0.7543533444404602, -0.04359053075313568, -0.7419277429580688, 0.07109779864549637, -0.39357706904411316, 0.658480703830719, 0.9643056392669678, -0.30926069617271423, -0.8610340356826782, 1.0209543704986572, 0.14058049023151398, -0.7969931364059448, 0.2258337289094925, 0.9886475205421448, -0.47444814443588257, -0.5418370962142944, 0.02365696430206299, 0.559300422668457, -0.28414386510849, 0.9914300441741943, 0.5960655808448792, 0.4137248992919922, 0.05544821172952652, -0.8461264967918396, -1.0921958684921265, -0.7973343133926392, -0.5769025683403015, -0.5634086728096008, 0.3094838559627533, -0.6694201827049255, -0.185855433344841, 0.6884834170341492, 0.333731472492218, 0.010992667637765408, -0.4185504913330078, 0.009270638227462769, -0.27175256609916687, -0.3624267280101776, 1.332814335823059, -0.5397108793258667, 1.2548454999923706, -0.13730700314044952, -0.17225413024425507, -0.1253913789987564, 0.3779022991657257, 0.03175890073180199, 0.32399702072143555, -0.3205259442329407, -1.0326780080795288, 0.29848605394363403, 0.16423766314983368, -0.9174571633338928, -0.16058039665222168, 0.7512354850769043, -0.2904280424118042, -0.24551323056221008, -0.6589924097061157, 0.018050920218229294, 0.5375207662582397, 0.32916271686553955, -0.6219419240951538, -0.7771847248077393, -0.6669154167175293, 0.4118102192878723, -0.5833995938301086, 0.5231728553771973, -0.0872127115726471, -0.03918446600437164, 0.316565603017807, -1.0546982288360596, -0.37847527861595154, -1.5055959224700928, 0.10564262419939041, -0.1975267380475998, 0.4000195860862732, 0.24391594529151917, 0.44143640995025635, -0.06573449075222015, -1.5861060619354248, 0.26392799615859985, -0.05249751731753349, 0.17193275690078735, 0.5167588591575623, -1.419873833656311, -0.2588326334953308, -0.8604240417480469, 0.7493600249290466, 1.0654032230377197, -0.573432445526123, -0.09316935390233994, 0.07927971333265305, -1.3963772058486938, 0.9374796748161316, 1.0752726793289185, 0.07475079596042633, 0.43741726875305176, 1.6073251962661743, 1.6609183549880981, -0.1831560581922531, 0.42721399664878845, -0.28979602456092834, 0.2770005166530609, -0.6740825176239014, 0.2959817051887512, -1.1990782022476196, -0.24079447984695435, -0.16156749427318573], [0.3386934995651245, 1.1733943223953247, -2.2018826007843018, -0.40188899636268616, 0.49030715227127075, -0.050496906042099, 1.4817920923233032, -0.05683612823486328, -0.5922566652297974, -0.7430782914161682, -0.4472900629043579, 0.161795973777771, 0.7275584936141968, 1.6061325073242188, 0.4174961447715759, 0.8099671006202698, 0.9930563569068909, -1.2115778923034668, 0.48831191658973694, 1.3141262531280518, 1.175187587738037, -0.2828359603881836, 0.08957497030496597, -0.7921100854873657, -0.5533705353736877, 0.20386090874671936, -1.493863582611084, -0.4848271608352661, -0.5578955411911011, -1.2183984518051147, 1.430481195449829, -1.0945119857788086, 0.060096051543951035, 0.238752081990242, -0.5979824662208557, -0.4894627630710602, 0.974502682685852, 0.33757492899894714, 0.4405132532119751, 0.413676917552948, 1.6193069219589233, -0.22872598469257355, 0.01704322174191475, -1.353206992149353, 0.4030289649963379, -0.32953110337257385, 1.3176994323730469, -0.7280900478363037, -0.21218840777873993, -0.9791789054870605, 0.3891710042953491, -0.11573589593172073, 0.5989707112312317, 1.164836049079895, 0.8086284399032593, 0.5964301228523254, 0.29501843452453613, 0.13705644011497498, 0.7281997799873352, -0.7717810869216919, 0.5441878437995911, 0.14059531688690186, -0.49126988649368286, 1.0344085693359375, 0.03911249339580536, -0.1003418117761612, 0.05177305266261101, 0.5914424061775208, 0.008967701345682144, 0.17837505042552948, 0.3547043204307556, 0.051860056817531586, -0.5325782299041748, 0.08936387300491333, -0.8675057888031006, -0.040197741240262985, 0.38013049960136414, 1.1471177339553833, 0.0722292959690094, 0.5991404056549072, -0.31978970766067505, -0.10849331319332123, 0.32581818103790283, -0.9887902140617371, 0.7039316892623901, -0.3720317482948303, 0.1664378046989441, 0.11319132149219513, -0.975321888923645, 2.168142318725586, 0.47121816873550415, 0.40126362442970276, 0.18507085740566254, -0.5839769244194031, -0.26612403988838196, -1.5900473594665527, 0.21152590215206146, 0.013676881790161133, -0.5749961137771606, -0.7642179727554321, -0.48240068554878235, -0.5232417583465576, 0.563873827457428, -0.6023284196853638, -0.22908858954906464, 1.7846143245697021, 0.6859645843505859, -0.27150508761405945, -0.6386957168579102, 0.11914674937725067, -0.4305521547794342, -0.5492822527885437, -0.6145421862602234, -0.6106101870536804, -0.969873309135437, 1.123635172843933, 1.5415726900100708, 0.2933133840560913, 0.34545519948005676, 0.6581252813339233, -1.028495192527771, -0.963861346244812, -0.3323286473751068, 0.24281594157218933, 0.8867055773735046, 0.2792627811431885, -1.1506298780441284, -0.7633658647537231, 0.8212578892707825, -0.11676641553640366, 0.39745283126831055, 0.19735990464687347, -0.46760204434394836, 0.8620367050170898, -0.1594141572713852, 1.8708064556121826, -0.07631222158670425, -0.5307655334472656, -0.017467275261878967, -0.3752974569797516, -0.22630958259105682, -0.6003185510635376, -0.09089194238185883, -0.31690317392349243, 0.6266334652900696, -0.44170576333999634, 0.23593075573444366, -0.5067426562309265, -0.8107756972312927, 0.5043770670890808, -0.5013179183006287, 0.18755270540714264, 0.27705591917037964, 1.4367386102676392, 0.43567195534706116, -0.24684037268161774, 0.6609499454498291, 0.029392927885055542, 0.6167590618133545, -0.6832798719406128, 0.4782050848007202, -0.5335212349891663, -1.0884360074996948, 0.537861168384552, 0.47774720191955566, 0.09681016206741333, 0.6148189902305603, 0.47051748633384705, -0.14682699739933014, 0.7276486754417419, -0.3438299298286438, -0.25058603286743164, -0.8766555786132812, 0.8978671431541443, -0.16087237000465393, 0.2547304630279541, 1.7574505805969238, -0.9277768731117249, -1.1592131853103638, -0.9431173205375671, 0.4002707004547119, -0.6966680884361267, -0.17656707763671875, 0.30726301670074463, 0.7374363541603088, -0.5477616786956787, 0.22344419360160828, -0.27716314792633057, -0.48272284865379333, -1.0350046157836914, -0.08700825273990631, -0.5467165112495422, -0.7218363881111145, 0.26911816000938416, -0.6029675006866455, -0.8398467302322388, 0.6234413981437683, -1.3218228816986084, -0.31837981939315796, -0.22736920416355133, -0.03694967180490494, -0.008694675751030445, -0.8838596343994141, 0.7461938261985779, -0.4599449932575226, 1.6543818712234497, -0.9015510082244873, 0.590430498123169, -0.9658079743385315, 0.567233145236969, 1.0936391353607178, -0.07535690069198608, -0.9025149941444397, 0.8329698443412781, -0.4063107967376709, -1.505113124847412, 0.6688224077224731, 0.2904512584209442, -0.20209921896457672, 0.5446761250495911, 0.09512333571910858, 0.32992419600486755, 0.19896414875984192, -0.447975218296051, 0.0921827107667923, 0.1271265596151352, -0.08579277247190475, -0.8476050496101379, -0.9288220405578613, 0.09809503704309464, -0.5307841897010803, -1.1561200618743896, 0.2816632390022278, -0.5302050709724426, -0.19380156695842743, -0.011399648152291775, -0.5597494840621948, 0.03674882650375366, -0.08823417872190475, 1.8483824729919434, 0.3188611567020416, 0.35567235946655273, 0.3726334273815155, 0.3599151372909546, -0.44814634323120117, -0.37204116582870483, 0.9852110147476196, -0.09186149388551712, 0.4825776517391205, 1.0736209154129028, 0.9004893898963928, -0.4413300156593323, 0.4757962226867676, -0.13977666199207306, -0.10785006731748581, -1.2300875186920166, 0.061066288501024246, 0.44135624170303345, -0.3224449157714844, 1.30340576171875, 0.7688091397285461, -0.7129107117652893, 0.007487759459763765, 0.08174637705087662, 0.2713829576969147, -0.5762665867805481, -0.13818885385990143, -0.7836279273033142, -0.31361299753189087, 0.26224392652511597, -0.34747758507728577, 0.4160197079181671, -0.29085925221443176, -0.01733209751546383, -0.5844959616661072, -0.016265109181404114, -0.17779110372066498, 0.6838403344154358, 0.09311869740486145, 1.1499584913253784, -0.5513824820518494, -2.0518205165863037, -0.7207797765731812, 0.02965092658996582, 1.3793084621429443, -0.22817394137382507, -0.06572697311639786, -0.45597535371780396, -0.026979615911841393, 0.062090031802654266, 0.2836914658546448, -0.08130012452602386, 0.6226274371147156, -0.1687694489955902, 0.014916256070137024, 0.6673892736434937, 0.8524196743965149, -0.7483234405517578, -0.8032379746437073, -0.5628727078437805, 0.4804065525531769, 0.9829562306404114, 0.7919706106185913, 0.6335016489028931, -0.22161222994327545, 0.375426322221756, -0.1602790355682373, -0.08120136708021164, -0.8851990103721619, -0.6757075786590576, 0.139820858836174, -0.9144079089164734, -1.0007284879684448, 0.2496456652879715, -0.3623260259628296, 0.457326740026474, -0.5096631646156311, 0.9211068749427795, 1.2761387825012207, -0.3435640335083008, -0.8040902614593506, -0.1431618183851242, -0.1299302577972412, -1.1153579950332642, 0.7614992260932922, 1.3304564952850342, -0.4848692715167999, -0.007919618859887123, 0.48357412219047546, 0.21056321263313293, 0.6351922154426575, 0.7359564900398254, -0.2910078763961792, -1.2970823049545288, -0.41302505135536194, -0.8186955451965332, 0.8277682662010193, -0.5050340294837952, 0.006565826013684273, -0.25864318013191223, 0.20560012757778168, 0.8891966342926025, -0.4106965661048889, -0.12018908560276031, 0.7432423830032349, -0.8004021644592285, -0.08283227682113647, -0.07789971679449081, -0.10866019129753113, 0.5878729224205017, -0.19828642904758453, -0.47092878818511963, -0.28533390164375305, 0.2171764075756073, -0.1503465175628662, 0.9199846982955933, -0.2598022222518921, 0.8284980654716492, 0.23806217312812805, -0.4256570041179657, 0.9263540506362915, -0.056872207671403885, -0.0371379554271698, -0.7406859397888184, 0.6467319130897522, 0.7726977467536926, 0.8949350714683533, 0.5576075315475464, 0.3460557758808136, 0.519414484500885, 0.25265398621559143, 0.14225374162197113, 0.17082075774669647, 0.6270233988761902, 0.1717483252286911, -0.1398003101348877, -0.4745202958583832, 0.010548972524702549, 0.34663721919059753, -0.4727174937725067, 0.477272629737854, 0.5458977818489075, -0.9158739447593689, -0.8213359117507935, 0.599557101726532, 0.5655355453491211, 0.0004736089613288641, -0.6488679647445679, 0.1719440221786499, 1.0388548374176025, 0.07329931855201721, 0.6961466670036316, -0.008975844830274582, -0.026360101997852325, 0.38967710733413696, 0.07093872874975204, -0.04780639708042145, 0.15407466888427734, 0.03348160535097122, 0.8601047992706299, -1.2180300951004028, -0.18182869255542755, -0.7925399541854858, 0.5604095458984375, 0.09014618396759033, -0.38611936569213867, 0.34695956110954285, 0.2283766120672226, -0.39443036913871765, 0.086814746260643, 0.4628778100013733, 1.3455466032028198, -0.8207204937934875, -0.31745645403862, -0.057153888046741486, -0.02049858495593071, 0.1880728155374527, -0.571708619594574, -0.4876617193222046, 0.37889859080314636, -0.8603056073188782, -0.19883084297180176, 0.11084412038326263, 0.20021983981132507, 1.4103690385818481, 0.5687711834907532, 0.19617965817451477, 0.5791023969650269, -0.21105283498764038, -1.4281684160232544, 0.17693521082401276, 0.6606403589248657, 0.6674507260322571, -0.13370294868946075, -0.6906518340110779, -0.07285695523023605, -0.16268762946128845, 0.20300742983818054, -0.40793249011039734, 0.14430205523967743, 0.8271179795265198, 0.02039572410285473, -0.8271310329437256, 0.8341664671897888, 1.049569845199585, 1.4826412200927734, 0.4212397634983063, -0.1993122398853302, -0.5756118893623352, 0.2900029420852661, -1.1519006490707397, 0.509280264377594, 0.9066978096961975, 0.3518759310245514, 1.305216670036316, -1.2127114534378052, -0.3014512360095978, 0.5498587489128113, 0.3104862570762634, 0.3003681004047394, 0.6733793616294861, 0.407344788312912, -0.050001539289951324, 1.0646976232528687, 0.10300123691558838, -0.6752936244010925, -0.022520044818520546, -0.11279382556676865, 0.08437585830688477, 0.6513634920120239, -1.0166822671890259, 0.5226106643676758, -0.9642539620399475, 0.3470337390899658, -0.4776982367038727, -0.7028475999832153, 0.14974059164524078, 0.3526255786418915, 0.5731439590454102, 1.2540398836135864, -0.31933629512786865, -1.3035283088684082, 0.2854832410812378, -0.7910289764404297, -0.16131126880645752, -0.40332889556884766, -0.011625564657151699, -0.6776787638664246, -0.6841599941253662, -0.09596752375364304, 0.5418822765350342, 0.20181536674499512, 0.18552426993846893, -0.3287583887577057, -1.131161093711853, 0.3368518352508545, 0.5784792304039001, 1.0696873664855957, 0.7474607825279236, 0.08499404788017273, 0.20852068066596985, 0.5874314904212952, -0.5318337678909302, -0.0008594999089837074, 0.3708387315273285, -0.5860657691955566, -0.1711118072271347, -1.361633062362671, -1.1959075927734375, 0.5579341650009155, 0.20383547246456146, 0.2444320023059845, 0.08703865110874176, 0.8735837340354919, 1.3187294006347656, -0.5684823393821716, -0.5157642960548401, 0.24203212559223175, -0.5282004475593567, 0.1911715716123581, 1.002106785774231, -0.509765625, -0.3252338767051697, -0.6453722715377808, -1.4305975437164307, 1.1124377250671387, -0.11975841969251633, -0.43263933062553406, 0.44316422939300537, 0.4242347776889801, 0.5688775181770325, 0.9684128761291504, -0.5553756952285767, 0.3764480948448181, -0.03497232496738434, 0.2719118297100067, -1.8078817129135132, 0.15849293768405914, 0.4894113838672638, 0.09292241185903549, -0.6283169388771057, 0.4445951581001282, 0.017509043216705322, -0.4087633788585663, 0.044510502368211746, -0.35914352536201477, 0.887589156627655, 1.3539807796478271, 0.4692647159099579, -0.6815687417984009, 0.4066309332847595, -0.4789638817310333, -0.6014671921730042, 0.05956599488854408, 0.5146140456199646, 0.9559245705604553, -0.2460322231054306, -0.11672503501176834, -0.3065800666809082, -0.5067967772483826, 0.10958632826805115, -0.5017414093017578, 1.3838798999786377, 0.1918203979730606, -0.17828184366226196, -0.27919405698776245, -0.014651878736913204, -0.639246940612793, -0.15524005889892578, 0.6916107535362244, 0.5420961380004883, -1.0782614946365356, 0.39306408166885376, 0.2395281344652176, -0.8028966784477234, -0.21491850912570953, -0.035423584282398224, -0.12464582920074463, -1.1585801839828491, -0.7701596021652222, -1.2728526592254639, 0.24949009716510773, 0.6118958592414856, -0.2749096155166626, -0.29377904534339905, 1.128692388534546, -1.768297553062439, 0.33803707361221313, 0.2817036211490631, -1.115239143371582, -0.5095372200012207, -1.193111777305603, 1.0556190013885498, -0.4818583130836487, 0.9355241656303406, 0.5889578461647034, 1.5324070453643799, -1.3865665197372437, -1.1520992517471313, -0.6522437334060669, -0.21007737517356873, 1.0360900163650513, 1.206563115119934, -0.7673304677009583, 0.49248477816581726, 0.9576671123504639, -0.3619198799133301, -0.4817294776439667, 0.6012435555458069, -0.8864187002182007, 0.4499577283859253, -0.19811663031578064, 0.5316792726516724, -0.02772192843258381, 0.8838456869125366, -0.18188031017780304, 1.3086045980453491, 0.22508522868156433, 1.6652486324310303, -0.7417767643928528, -0.8713052868843079, -0.0925152450799942, 0.4365674555301666, -1.3635895252227783, -0.9636940360069275, 0.24001021683216095, -0.1081455871462822, -0.8521863222122192, 0.27329930663108826, 0.4214639961719513, -0.5633363127708435, -0.7671195268630981, -1.2481147050857544, 0.6194326281547546, -0.757652223110199, 0.0555601641535759, -0.08377080410718918, -0.5470876097679138, -0.4819054901599884, 0.06775470077991486, 0.4392660856246948, -1.8783788681030273, -0.08163092285394669, 0.4269614517688751, 0.38309359550476074, -0.9312461614608765, 0.8860206007957458, 0.699512243270874, 0.33083775639533997, -0.7429352402687073, 1.1129181385040283, 1.1031171083450317, -0.4434748589992523, -0.5112346410751343, 0.023789772763848305, 0.36012816429138184, 0.8831425309181213, -0.648641049861908, -0.41379332542419434, -0.6880841255187988, 0.6399202942848206, 0.5698778629302979, 0.14792712032794952, -0.550096333026886, -0.1622716337442398, -0.4678267240524292, 0.6588197946548462, 1.0411370992660522, -0.7276505827903748, -0.6692066788673401, 1.0933730602264404, -0.19337809085845947, -0.45218899846076965, 0.2183178812265396, 0.960379421710968, 0.7001737356185913, -0.24086794257164001, 0.1994878053665161, 0.9480139017105103, -0.2997705042362213, 0.2953268587589264, -0.3585333228111267, -0.03120291605591774, -0.03848878666758537, -0.24346312880516052, -0.7828132510185242, -0.8827076554298401, -0.23120102286338806, -1.0458872318267822, -0.3023374080657959, -1.400740385055542, -1.1953529119491577, -0.20592227578163147, 0.04629021883010864, -0.6212794780731201, -0.34557026624679565, 0.34847626090049744, -0.6416305899620056, -0.389811635017395, 1.1880615949630737, -0.5345791578292847, 0.7536961436271667, -0.3549690842628479, -0.43895456194877625, -1.1577274799346924, 0.09869246184825897, -0.2680632174015045, 0.3263769745826721, -0.5017869472503662, -0.7905066013336182, -0.3244825601577759, -0.5756843686103821, -0.7761742472648621, 0.524747908115387, -0.8963369131088257, 0.0848555713891983, 0.0445244126021862, -0.6393629312515259, -0.15863320231437683, 1.162906289100647, 0.4343823492527008, 0.04860718920826912, -0.6454870700836182, -0.6003403663635254, 0.5620259046554565, -0.29815325140953064, 0.7506765723228455, -0.7749742269515991, 0.7026433348655701, 0.4659711718559265, -0.12615320086479187, -0.3565198481082916, -1.008961796760559, 0.7301778793334961, -0.0974586009979248, 0.29249778389930725, 0.27367404103279114, -0.4138003885746002, -0.3820096552371979, -1.1881331205368042, 0.576352596282959, 0.2238478660583496, -0.08421739935874939, 0.26522403955459595, -0.6589806079864502, -0.1408177763223648, -0.3371596336364746, 0.5483800172805786, 0.9472025632858276, -0.44578924775123596, 0.03875880688428879, -0.6334022283554077, -0.9535449147224426, -0.23486445844173431, 0.1977739781141281, -0.15466353297233582, 0.13754390180110931, 1.6687712669372559, 1.305503010749817, 0.6848632097244263, 0.009510054253041744, 0.09882766008377075, 0.8731308579444885, -0.8618261814117432, -0.41269055008888245, -0.9323133826255798, -0.46198537945747375, -0.04819043353199959], [0.223783940076828, 1.6408588886260986, -1.905994176864624, -0.5335535407066345, 0.3354435861110687, -0.14486221969127655, 1.1445494890213013, -0.8044408559799194, -0.6845272779464722, -0.7459452748298645, 0.31923285126686096, 0.10852780193090439, 0.8266927599906921, 1.24640691280365, 0.6768893599510193, 0.5585073828697205, 1.4914745092391968, -0.8625466227531433, 0.11394134908914566, 1.2514309883117676, 1.0751619338989258, -0.7665935158729553, 0.2638067901134491, -0.2661730945110321, -0.7745169997215271, 0.5343462228775024, -0.5480580925941467, -0.6266059875488281, -0.9043478965759277, -0.915236234664917, 1.89826238155365, -0.21895116567611694, 0.25950029492378235, -0.34805524349212646, -1.2521586418151855, -1.3560322523117065, 1.1022076606750488, -0.06072835996747017, 0.07686524838209152, -0.3688439130783081, 1.4533374309539795, 0.02362910844385624, 0.05290095508098602, -2.007230281829834, 0.29826393723487854, -0.353165864944458, 1.3433805704116821, -0.9127489328384399, 0.010672850534319878, -0.7725718021392822, 0.9161708354949951, -0.04499762877821922, -0.24192652106285095, 1.2146155834197998, 0.7842905521392822, -0.14950911700725555, 0.369145005941391, 0.7003597617149353, 0.8181735277175903, -0.49630919098854065, 0.648674726486206, 0.803087055683136, -0.06471002101898193, 1.2980828285217285, -0.03694216534495354, -0.20107722282409668, -0.3623233139514923, 0.14278407394886017, 0.07766816765069962, 0.027319155633449554, 0.39462193846702576, -0.17127294838428497, -0.08351444453001022, -0.300910621881485, -0.6643621325492859, 0.2985679507255554, 0.21644429862499237, 0.5857812762260437, 0.008635974489152431, 0.5757829546928406, -0.488014817237854, 0.06513116508722305, 1.070605754852295, -0.4867843687534332, 0.6483554840087891, -0.0399198904633522, 0.2469426393508911, 0.189395934343338, -0.6066616177558899, 1.5250887870788574, -0.4108180105686188, 0.27845075726509094, -0.05645902082324028, -0.2500813603401184, -0.3795274496078491, -0.2244473397731781, -0.10941662639379501, -0.0035919658839702606, -0.4568309187889099, -0.9264181852340698, -0.6819793581962585, -0.21363839507102966, -0.1182067021727562, -0.024201536551117897, -0.611262857913971, 1.5002778768539429, 0.007552579045295715, -0.1495586633682251, -0.6627317070960999, -0.06336827576160431, -0.6646906137466431, 0.34746167063713074, -0.1508462280035019, -0.5208930969238281, -0.7767089009284973, 0.3840465545654297, 1.993534803390503, -0.013252363540232182, 0.8377004265785217, 0.34244421124458313, -0.3007007837295532, -1.3301373720169067, 0.5275028944015503, -0.24277223646640778, 0.8214671015739441, 0.033802881836891174, -0.9054983258247375, -1.0225435495376587, 0.6488246321678162, -0.31172114610671997, 0.12347584962844849, -0.07865049690008163, -0.10308454930782318, 0.6675304174423218, -0.6962514519691467, 0.9069008231163025, -0.46237075328826904, -0.7668641805648804, -0.19451940059661865, -0.08961217105388641, 0.2679646611213684, -0.4150488078594208, -0.22265608608722687, -0.1734113246202469, 0.12137358635663986, -0.36923670768737793, 0.6568549871444702, -0.16874456405639648, -0.5875096321105957, 0.16309763491153717, -1.1587049961090088, -0.12937113642692566, -0.03662772849202156, 1.1069844961166382, 0.15279340744018555, -0.318055659532547, 0.5236577987670898, -0.01744796149432659, 0.6381212472915649, -0.21621201932430267, 0.834987223148346, -0.10771564394235611, -1.1331504583358765, 0.26446816325187683, 0.4338679015636444, -0.5443010926246643, 0.9247032403945923, 1.0930728912353516, -0.27652114629745483, 0.27546072006225586, -0.4176611602306366, -0.2160310447216034, -0.7379316687583923, 1.2567238807678223, 0.28442710638046265, -0.17741426825523376, 2.1626336574554443, -0.5771653652191162, -1.1546130180358887, -0.93159019947052, -0.1629507690668106, 0.1121116653084755, -0.6685222387313843, 0.5214457511901855, 0.08775240182876587, -0.12534189224243164, 0.6831420660018921, -0.0885048508644104, -0.46028822660446167, -1.0015150308609009, 0.1834515482187271, -0.3029935956001282, -0.853027880191803, 0.28118300437927246, -0.405160129070282, -0.5171830654144287, 0.8769360184669495, -0.6515947580337524, -0.7247826457023621, 0.04272015392780304, 0.14069753885269165, -0.23695452511310577, -0.5004808902740479, 0.3929521143436432, -0.13804945349693298, 0.7016765475273132, -1.3445932865142822, 0.9740779399871826, -0.7815777063369751, 0.14969277381896973, 1.1734973192214966, -0.4097329080104828, -0.3191621005535126, 0.7446912527084351, 0.12639933824539185, -1.8497494459152222, 0.6324004530906677, 1.0105130672454834, -0.7054038047790527, 0.3081630766391754, -0.03483384847640991, -0.04578619822859764, 0.9676409959793091, -0.35729172825813293, 0.6875982284545898, -0.21607118844985962, -0.09495922178030014, -0.9484056830406189, -0.8337029218673706, -0.05037379264831543, -0.23232950270175934, -1.0208834409713745, 0.09808981418609619, -0.32339930534362793, -0.5221835374832153, -0.3598470985889435, -0.8981361985206604, 0.012725895270705223, 0.7226893901824951, 1.657632827758789, 0.3212663233280182, 0.5177586674690247, 0.3407215178012848, -0.0895659402012825, -0.5090640187263489, -0.2708950638771057, 1.3272920846939087, -0.1286877691745758, -0.10234030336141586, 1.1389195919036865, 0.7158918380737305, -0.11076591908931732, -0.3153785467147827, -0.5452244877815247, 0.6514793038368225, -0.6360821723937988, -0.5207223296165466, 0.4787036180496216, -1.0339435338974, 0.686130940914154, 0.4809432625770569, -0.756280779838562, -0.020112793892621994, -0.04632362723350525, 0.028015587478876114, -0.7469008564949036, -0.9641525149345398, -0.9061402678489685, 0.02772165834903717, -0.03683178126811981, 0.012393328361213207, -0.052706316113471985, -0.9724348187446594, 0.319396436214447, -0.09912564605474472, 0.23159539699554443, 0.15713182091712952, 0.46563634276390076, 0.004030002746731043, 1.7052252292633057, -0.24753235280513763, -1.5839033126831055, -0.42172831296920776, 0.1462329477071762, 1.110241413116455, 0.13256697356700897, 0.0619254894554615, -0.21448929607868195, 0.02577359788119793, 0.10171553492546082, 0.2129727602005005, 0.7977482080459595, -0.11186390370130539, 0.01080282311886549, 0.14439427852630615, 0.6486626267433167, 0.6352195739746094, -0.9558141231536865, -0.7889522910118103, -0.6078100800514221, 0.9163474440574646, 1.3999511003494263, 1.4713000059127808, 0.5718491077423096, 0.34913143515586853, 0.6047583818435669, -0.5675092935562134, -0.38028639554977417, -0.7287707328796387, -0.8048379421234131, -0.03086516261100769, -0.7426269054412842, -0.7339859008789062, 0.08121156692504883, -0.4708646833896637, 1.0096232891082764, 0.35501551628112793, 0.6100495457649231, 1.3212882280349731, -0.16229012608528137, -0.6137396097183228, -0.05956991761922836, -0.31223857402801514, -0.8555968403816223, 0.7703280448913574, 1.433779001235962, -0.5490541458129883, 0.17274056375026703, -0.06353704631328583, 0.22820055484771729, 0.4702152609825134, 0.16733095049858093, 0.1151728630065918, -1.442823886871338, -0.5218971371650696, -0.9973374605178833, 1.064672589302063, -0.4132837653160095, 0.40510496497154236, -0.5088610053062439, 0.01525785494595766, 0.41894277930259705, 0.8759260177612305, -0.09415619820356369, 0.44024813175201416, -0.927563488483429, -0.006754178553819656, -0.32658490538597107, -0.12079863995313644, -0.04600182920694351, -0.243275985121727, -0.599514365196228, -0.41405847668647766, 0.17902594804763794, -0.558556079864502, 0.21400906145572662, 0.05862410366535187, 0.41716885566711426, 0.10154827684164047, -0.10155130177736282, 0.4083564281463623, 0.0975579023361206, -0.20682275295257568, -0.6960410475730896, 0.5856395959854126, 0.6602485179901123, 0.7437082529067993, 0.038005221635103226, -0.0009834812954068184, 0.37077796459198, -0.23642173409461975, 0.26640745997428894, -0.044586967676877975, 1.595202922821045, 0.9205173254013062, 0.06656615436077118, 0.6859173774719238, -0.38672733306884766, -0.06030171737074852, -0.5342773795127869, 0.6628255248069763, 0.396186500787735, -1.2863744497299194, -1.0149240493774414, 0.4768838882446289, -0.1361997127532959, -0.38959258794784546, -0.5699226260185242, -0.4463426470756531, 0.595023512840271, -0.06392110884189606, 0.08483313024044037, -0.15041692554950714, -0.15961650013923645, 0.5444642901420593, -0.5893785953521729, 0.5736632943153381, 0.2990514636039734, -0.06594420969486237, 0.6522898077964783, -0.9303545355796814, -0.3845054805278778, -0.45833343267440796, 0.1433417648077011, 0.7042527198791504, -0.4731151759624481, 0.31225526332855225, -0.48617345094680786, -0.7291596531867981, -0.06429092586040497, 0.500985324382782, 1.4012234210968018, -0.24531979858875275, -0.26893433928489685, 0.7207968831062317, -0.82327800989151, -0.18896086513996124, -0.4080217480659485, -0.6537728309631348, 0.41806089878082275, -0.6488392353057861, 0.08434482663869858, -0.1311204433441162, -0.11764498800039291, 0.7641821503639221, 0.22338414192199707, 0.790884256362915, 0.3788833022117615, -0.059499774128198624, -1.7304531335830688, 0.18827852606773376, 0.3871263861656189, 0.2732742130756378, -0.062069352716207504, -0.9236437082290649, 0.39237943291664124, -0.3022458255290985, 0.31398916244506836, -0.10979042202234268, 0.33432629704475403, 0.4636828601360321, -0.35611358284950256, -0.015777472406625748, 0.6988735795021057, 0.8572723269462585, 1.3934426307678223, 0.845054566860199, -0.6719116568565369, -0.7103091478347778, 0.5917989611625671, -0.4944198727607727, 0.9695942997932434, 1.3734245300292969, 0.3200845420360565, 0.9439675211906433, -0.9602206945419312, -0.6960617899894714, 0.6899664402008057, 0.054350268095731735, 0.19890201091766357, 0.7266004085540771, 0.1968769133090973, -0.617091178894043, 0.2200506627559662, -0.0733138844370842, -0.2023870050907135, -0.07175528258085251, -0.0342506468296051, -0.4457041323184967, 0.7997535467147827, -0.8344810009002686, -0.15245738625526428, -0.726373016834259, 0.2591429352760315, -0.38194963335990906, 0.25024327635765076, -0.0042205690406262875, 0.5348163843154907, 0.5886260867118835, 0.9692444801330566, -0.35987743735313416, -0.8189254999160767, 0.27484625577926636, -1.1987686157226562, 0.4632857143878937, -0.34132128953933716, -0.16823707520961761, -0.6613360643386841, -0.17447540163993835, 0.375728040933609, 0.5025748610496521, -0.17522548139095306, -0.23881566524505615, 0.23639097809791565, -0.7384471297264099, 0.38978311419487, 1.1901315450668335, 0.8762086033821106, 0.3372911810874939, -0.2801247537136078, 0.280798077583313, 0.9901503920555115, -0.41124215722084045, -0.3031935691833496, 0.5377979278564453, -0.47414517402648926, 0.10637335479259491, -1.196205496788025, -0.7165939807891846, 0.6381479501724243, 1.2766318321228027, 0.47605350613594055, 0.572499692440033, 0.7247911691665649, 1.047805905342102, -1.0325665473937988, 0.39195993542671204, 0.3468945026397705, -0.5013326406478882, 0.22456727921962738, 0.4254551827907562, -0.11228778213262558, -0.5117509961128235, -0.7943809628486633, -1.6275969743728638, 1.0768165588378906, -0.41304323077201843, -0.5383461713790894, 0.7421115636825562, 0.643166720867157, 0.5045324563980103, 0.8993109464645386, -0.7789871692657471, 0.574245274066925, -0.5283935070037842, -0.09310103207826614, -1.8017507791519165, 0.7231965065002441, 0.5302459001541138, -0.30597153306007385, -0.9027496576309204, 0.27650752663612366, -0.601108193397522, 0.09252671897411346, -0.36621177196502686, 0.22589020431041718, 0.4229293167591095, 0.7463818788528442, 0.2334180325269699, -0.4513606131076813, 0.641735851764679, -0.9678261876106262, 0.012489665299654007, -0.1639818698167801, 0.6798758506774902, 0.5097708702087402, -0.34734076261520386, -0.04786005988717079, 0.10584544390439987, 0.23042963445186615, 0.1584944725036621, 0.00027004117146134377, 0.8029073476791382, 0.15877558290958405, 0.6981062293052673, -0.0959501788020134, 0.08952075988054276, -0.1993112862110138, -0.44256237149238586, 0.3628601133823395, 0.7360738515853882, -1.0869455337524414, 0.36370396614074707, 0.4736228883266449, -0.8129611611366272, -0.6075481176376343, -0.34000536799430847, -0.1639537662267685, -0.7631270289421082, -0.3316745460033417, -1.0654842853546143, 0.5927563309669495, 0.15825213491916656, 0.29765671491622925, 0.5822883248329163, 0.5300413370132446, -1.0508172512054443, 0.03324419632554054, 0.0028959307819604874, -1.2853624820709229, -0.08314378559589386, -1.1320948600769043, 0.8896257877349854, -0.3201272487640381, 0.3462480306625366, 0.5722026228904724, 0.9945314526557922, -1.6036442518234253, -0.7171213030815125, -0.6718462109565735, -0.5785715579986572, 0.9945598840713501, 0.6708915829658508, -1.1770955324172974, 0.9528269171714783, 0.7758546471595764, -0.8301202058792114, 0.24852235615253448, 0.2614649832248688, -0.9470168948173523, 0.4380783438682556, -0.42715099453926086, 0.8292645812034607, 0.12897145748138428, 1.8492106199264526, -0.13616818189620972, 0.7378455400466919, 0.3580612242221832, 1.2764333486557007, -0.3954443633556366, 0.34818294644355774, -0.3438303768634796, 0.4902695417404175, -0.33752796053886414, -0.8777762055397034, 0.15383446216583252, -0.40441426634788513, -1.2455579042434692, 0.8050032258033752, 0.8508511781692505, -0.4348269999027252, -0.16193170845508575, -0.7413443326950073, 0.9684748649597168, -0.7348237037658691, -0.4137873649597168, -0.05714451149106026, -0.12365888804197311, -0.4561322331428528, -0.30482131242752075, 0.48174139857292175, -1.6327581405639648, -0.17593297362327576, 0.674983561038971, 0.21957190334796906, -0.8240710496902466, 0.3638427257537842, 0.7602611780166626, 0.7166702151298523, -0.7890433073043823, 1.3322995901107788, 1.0754733085632324, -0.7854852080345154, -0.7193329930305481, -0.23565898835659027, 0.26015278697013855, 0.3341006934642792, -0.7656455039978027, -0.8481525182723999, -0.6372551918029785, 0.6157156229019165, 0.30715620517730713, -0.08419864624738693, -0.5342027544975281, -0.5360484719276428, -0.25751549005508423, 0.2949735224246979, 1.4593229293823242, -1.0532292127609253, -0.824917733669281, 0.8362098336219788, -0.009928124956786633, -0.44773754477500916, 0.9781385660171509, 0.6849470734596252, 0.3493402302265167, 0.031228559091687202, -0.1788732409477234, 0.8753001093864441, -0.11312610656023026, 0.7416834831237793, -0.48964983224868774, 0.4716932773590088, 0.10949128866195679, -0.5156500935554504, -0.8618263006210327, -0.6595259308815002, -0.5948498249053955, -0.8718151450157166, 0.07526034861803055, -1.210679531097412, -0.617071807384491, 0.15653479099273682, 0.22110459208488464, -0.6379753351211548, 0.027265815064311028, 0.521936297416687, -0.7992683053016663, -0.5764564275741577, 0.9707263708114624, 0.09601818770170212, 0.6366147994995117, 0.15823401510715485, -0.08299019187688828, -0.9869465827941895, 0.09601815789937973, 0.6851204633712769, 0.02532597817480564, -0.3850075602531433, -0.5330888628959656, 0.0594525970518589, -0.19123543798923492, -0.33545467257499695, 0.422686368227005, -1.2252397537231445, 0.17735348641872406, 0.3909153342247009, -0.8445778489112854, -0.5029340386390686, 0.2592242956161499, -0.06059078872203827, 0.1497592180967331, -1.0698539018630981, -0.6546205878257751, 0.971233069896698, -0.5888224840164185, 1.236530065536499, -0.19351841509342194, 0.5007064938545227, 0.6793875694274902, -0.7375560402870178, -0.5494951009750366, -1.0877548456192017, 0.6195430159568787, 0.017159409821033478, 0.37663042545318604, -0.1294894963502884, 0.17619170248508453, -0.5591458678245544, -1.7987536191940308, 0.4111795425415039, 0.3088141977787018, -0.2411184161901474, 0.20516470074653625, -1.453272819519043, -0.35400569438934326, -0.8221051692962646, 0.3789095878601074, 1.2510323524475098, -0.013829371891915798, 0.13526734709739685, 0.14221426844596863, -1.5682138204574585, -0.19341351091861725, 0.3649194538593292, -0.3332909643650055, -0.21933671832084656, 1.1906185150146484, 0.6609102487564087, 0.39059674739837646, 0.3287186026573181, 0.12508682906627655, 0.5435371398925781, -0.8962352275848389, -0.05869095027446747, -0.4793241024017334, -0.30772584676742554, -0.19011342525482178], [-0.04780071973800659, 1.4449114799499512, -2.48852276802063, -0.24024119973182678, 0.5453075170516968, 0.6418695449829102, 1.0563198328018188, -0.32563015818595886, 0.1692618578672409, -0.24677737057209015, -0.37727969884872437, -0.47688478231430054, 0.37068477272987366, 0.6302029490470886, 0.3524976968765259, 0.780588686466217, 0.48452019691467285, 0.27359503507614136, 0.7370282411575317, 1.1857062578201294, -0.35698387026786804, -0.929571270942688, -0.23085403442382812, 0.41641750931739807, 0.018305517733097076, 0.5161450505256653, -0.5059200525283813, -0.494846373796463, -1.2253193855285645, -0.721591591835022, 0.8609461188316345, -0.38033053278923035, 0.20696578919887543, -0.5203683972358704, -1.181405782699585, -1.086002230644226, 1.5599563121795654, 0.6773366928100586, 0.3707354664802551, 0.11576010286808014, 1.8884204626083374, 0.41888102889060974, 0.33159515261650085, -2.009134531021118, 0.5337947010993958, 0.3258076608181, 0.8983165621757507, -0.649513840675354, 0.04359238222241402, -0.18487699329853058, 0.4008055329322815, -0.8227813243865967, 0.6638901233673096, 1.0892045497894287, 1.1043566465377808, -0.6392347812652588, 0.14130501449108124, 0.9067656397819519, 0.1602104753255844, -0.10759471356868744, 0.9712914824485779, 0.16740292310714722, -0.47761768102645874, 0.5240591168403625, 0.5119963884353638, -0.548711895942688, -0.10282756388187408, 0.5096548199653625, 0.31244099140167236, 0.5548965334892273, 0.8191315531730652, 0.0739598199725151, -0.8748077154159546, 0.13315729796886444, -1.6745625734329224, 0.5167438983917236, 0.5475961565971375, 0.9308159351348877, -0.011427955701947212, 0.6838118433952332, -1.0006040334701538, 0.06092052906751633, 0.7114572525024414, -0.9583011269569397, 0.48564770817756653, 0.3737116754055023, 0.45462357997894287, -0.46983057260513306, -0.015001263469457626, 1.7427328824996948, -0.04948178306221962, 0.1422514170408249, 0.5146074891090393, -0.09907939285039902, -0.07056281715631485, 0.023402607068419456, -0.512403130531311, -0.04669809713959694, -0.3677661418914795, -1.068647861480713, -0.6241647005081177, -0.7427720427513123, 0.678922176361084, -0.6135216951370239, -0.9374215006828308, 1.3079326152801514, 0.5798127055168152, -0.27818062901496887, -0.444956511259079, -0.049046460539102554, -0.7079986333847046, 0.24919474124908447, -0.6996816396713257, -1.376657247543335, 0.1406041532754898, 0.6580634713172913, 1.3035413026809692, -0.027110399678349495, 0.6206389665603638, 0.681372880935669, -0.5759826302528381, -0.4113524556159973, 0.22209948301315308, 0.40128111839294434, 0.7999842166900635, 0.8666185140609741, -0.8116123080253601, -0.8227653503417969, 0.5757294297218323, -0.14740310609340668, 0.45326849818229675, 0.24250823259353638, -0.09416995197534561, 0.618968665599823, -0.4320315718650818, 1.1329644918441772, -0.48273414373397827, -0.3153044581413269, -0.12663458287715912, 0.2776767313480377, 0.4688163697719574, -0.0846010148525238, -0.029225120320916176, -1.1955857276916504, 0.18632195889949799, -0.4690772593021393, 0.5996710658073425, -0.14598730206489563, -1.071081519126892, 0.17922528088092804, -1.5411558151245117, -0.16033834218978882, 0.08065146952867508, 1.3767584562301636, 0.793190598487854, 0.13757982850074768, 0.5045250654220581, 0.3909291923046112, 0.6134613752365112, 0.478429913520813, 0.8745729923248291, 0.5565826892852783, -1.040776252746582, 0.9946959614753723, 0.109957255423069, -0.3601752817630768, 0.6885559558868408, 0.9407901167869568, 0.06852113455533981, 0.987515926361084, -0.7385547757148743, -0.29948580265045166, -0.23421525955200195, 0.951013445854187, 0.8308868408203125, -1.0976530313491821, 1.2666432857513428, -0.7165492177009583, -1.3812811374664307, -1.366898536682129, 0.19914363324642181, 0.008436772972345352, 0.6668906211853027, 0.03303109481930733, 0.03878059983253479, -0.5393388271331787, 0.3471255600452423, -0.30145442485809326, -0.7827953696250916, -0.7774938941001892, -0.36164844036102295, -0.22902899980545044, -1.2039638757705688, -0.039469100534915924, -0.523993194103241, -1.0815606117248535, 0.8856101632118225, -0.9079304337501526, -0.42554280161857605, 0.03517330437898636, 0.23443038761615753, -0.6436140537261963, -0.4211033880710602, 0.657458484172821, -1.1186680793762207, 1.2688865661621094, -1.938042402267456, 0.9717721939086914, -0.3349750339984894, -0.09471794217824936, 1.0495301485061646, -0.2596096992492676, -0.6006448864936829, 0.449899286031723, 0.32510048151016235, -1.7736800909042358, 0.42266666889190674, 0.3412839472293854, -0.36836865544319153, 0.02036285772919655, 0.049442846328020096, -0.07717075943946838, 0.17415563762187958, 0.0001053917221724987, 0.5039657354354858, 0.268888920545578, -0.3052363693714142, -0.6281769871711731, 0.09478621929883957, -0.006750632077455521, -0.4095604717731476, -1.228446125984192, 0.4801352620124817, 0.9036014080047607, -1.132603645324707, 0.32426971197128296, 0.20211416482925415, 0.38514649868011475, 0.5551291704177856, 0.9400497078895569, 0.7561768293380737, 0.5907511711120605, 0.3103664815425873, -0.18599656224250793, -0.4157039523124695, 0.06707926094532013, 1.0266703367233276, -0.5207257270812988, 0.1682996153831482, 1.3554270267486572, 1.0372276306152344, -0.0037139474879950285, 0.45601797103881836, 0.13229620456695557, -0.1336708962917328, -0.2768797278404236, -0.6958818435668945, -0.041524846106767654, -0.515238344669342, 1.4162819385528564, 0.8099117875099182, -0.6626237630844116, -0.4639684557914734, -0.41748112440109253, -0.1132492870092392, 0.007323520258069038, -0.6325069069862366, -0.24449095129966736, -0.12579578161239624, 0.7278763055801392, 0.0998796671628952, 0.20844793319702148, -0.2722250521183014, 0.5285595059394836, -0.060524147003889084, -0.8434732556343079, -0.5120487213134766, -0.06204234063625336, -0.14485272765159607, 1.1893680095672607, 0.29675179719924927, -1.3137946128845215, -0.34302958846092224, 0.06007326766848564, 0.551848292350769, 0.5336223840713501, -0.09816018491983414, 0.4171411991119385, 0.39544349908828735, -0.33798110485076904, 0.2031572312116623, 0.3363315165042877, 0.37886083126068115, 0.1576884239912033, -0.05123875290155411, 0.2580535113811493, 0.6445117592811584, -1.0887070894241333, -0.8958901166915894, -0.5441226959228516, -0.1750410944223404, 1.5430071353912354, 1.3243319988250732, 0.8626894950866699, 0.24955953657627106, -0.19564591348171234, 0.035907141864299774, -0.423888236284256, -0.7179052233695984, -0.8926146626472473, -0.6067714691162109, -0.9510863423347473, -0.6016289591789246, 0.06217202916741371, -0.22186759114265442, 0.5789292454719543, -0.26785165071487427, 0.1725177764892578, 1.3986902236938477, -0.7363059520721436, -0.780694842338562, -0.2703699469566345, -0.38519638776779175, -0.7510941624641418, 0.4688020944595337, 1.153646469116211, -1.0717954635620117, -1.007300853729248, 0.12020984292030334, -0.16056102514266968, 0.7828655242919922, -0.26984599232673645, 0.37637805938720703, -0.7882121801376343, -0.9585683345794678, -0.8948668241500854, 1.3026840686798096, -0.05467098206281662, -0.010312147438526154, -0.3513057827949524, 0.25275030732154846, -0.2379101812839508, -0.038328710943460464, -0.5514739751815796, 0.17856426537036896, -0.9070250988006592, -0.16159464418888092, -0.07266727834939957, 0.8625086545944214, 0.4249863624572754, -0.8070025444030762, -0.7579049468040466, -0.23080995678901672, -0.0665174201130867, -0.3303894102573395, 0.6588264107704163, 0.33439022302627563, 0.6952638030052185, 0.09889762848615646, 0.5003912448883057, 0.47622352838516235, 0.08573652058839798, -0.3789823353290558, -1.4712156057357788, 0.537761390209198, 0.698843777179718, 1.087009072303772, 0.07351842522621155, 0.37742653489112854, 0.0949506014585495, 0.18596796691417694, 0.3433922529220581, -0.13927660882472992, 1.2503677606582642, 0.06608612835407257, 0.24802738428115845, -0.4124310612678528, -0.7548140287399292, 0.25440168380737305, -1.0170034170150757, 0.1063728779554367, 0.31250351667404175, -0.6145434379577637, -0.4335060119628906, 0.7173288464546204, 0.04988093674182892, -0.2825769782066345, -0.17505116760730743, 0.03833288326859474, 0.9689927101135254, -0.05056801810860634, -0.5200206637382507, -0.4448435604572296, -0.018658889457583427, 0.7165647149085999, -1.0160760879516602, 0.3375595510005951, 0.09423045068979263, 0.5429407358169556, 1.1908366680145264, -1.2182809114456177, -0.44005435705184937, -0.6789238452911377, 0.5706539750099182, 0.7845646142959595, 0.11332163214683533, 0.16833290457725525, -0.6250888109207153, -0.156764954328537, -0.15594612061977386, 0.32986634969711304, 1.281893253326416, -0.36225810647010803, -0.10747827589511871, 0.3076666295528412, -0.1388404220342636, 0.4732251763343811, -0.8312579393386841, -0.05287995934486389, 0.3633498251438141, -0.4596993029117584, 0.25015485286712646, -0.4087110459804535, -0.39188653230667114, 1.399200677871704, -0.08815574645996094, 0.6042773723602295, 0.44908562302589417, 0.30355438590049744, -1.2751752138137817, 0.5232493877410889, 0.26701077818870544, -0.6283194422721863, -0.5934841632843018, -0.12413755804300308, 0.30582618713378906, -0.21612851321697235, -0.2193305343389511, 0.38772550225257874, 0.568527340888977, -0.21054919064044952, -0.28045621514320374, 0.006936696823686361, -0.19827218353748322, 0.7489478588104248, 1.3767000436782837, 0.659168004989624, -0.026772523298859596, -1.1016030311584473, 0.7826988101005554, -0.6556567549705505, 0.22843684256076813, 1.0476001501083374, 0.10523281991481781, 1.1702007055282593, -1.9569272994995117, -0.5539891123771667, 0.7577295303344727, 0.04662846401333809, 0.5694559812545776, 1.2073895931243896, -0.012292305938899517, -0.38928285241127014, 0.02614358440041542, -0.28901633620262146, 0.1954609453678131, 0.3397359848022461, -0.1977022886276245, -0.37750568985939026, 0.7640625834465027, -1.0407999753952026, 0.2881017327308655, -0.5420737862586975, -0.630128800868988, -0.5813275575637817, 0.12107264995574951, 0.6267247796058655, 0.41931673884391785, 0.4348906874656677, 1.2040126323699951, -0.820716381072998, -1.1632912158966064, -0.19394442439079285, -0.4258970618247986, 0.17779426276683807, -0.4220205247402191, 0.021153531968593597, -0.6974260210990906, -0.38473939895629883, -0.4627033770084381, 0.6770769357681274, -0.11011083424091339, -0.6997424960136414, -0.20616871118545532, -1.3870142698287964, 0.22779032588005066, 0.9883263111114502, 0.8205428123474121, 0.3442278504371643, -0.05105453357100487, 0.9371681809425354, -0.39178311824798584, -1.1616013050079346, -0.5251193642616272, 0.4273648262023926, -0.09121782332658768, -0.4468841552734375, -0.6520084738731384, -0.5660505890846252, 0.44162803888320923, 0.824012279510498, -0.1782597303390503, 1.3520399332046509, 0.7137619853019714, 1.0330138206481934, -0.43048688769340515, -0.7342941164970398, 0.20025451481342316, -0.5189496874809265, 0.2618587911128998, 0.8776659369468689, -0.0719069242477417, -0.6642207503318787, -0.20408278703689575, -1.44556725025177, 0.7847534418106079, -0.6642476320266724, -0.5597555041313171, 1.166504144668579, 0.20567816495895386, 0.3865378797054291, 0.6589027643203735, -0.6864600777626038, -0.014741349965333939, -0.20273452997207642, -0.5309440493583679, -1.4917566776275635, 0.282513827085495, 0.4080170691013336, -0.016482632607221603, 0.15881633758544922, 0.7187361717224121, -0.3131750822067261, 0.006695159710943699, -0.09585423767566681, 0.6154642105102539, 0.26475223898887634, 0.7877443432807922, -0.04741087183356285, -0.3265654444694519, 0.6031289100646973, -0.9974648356437683, -0.2841741442680359, -0.017395954579114914, 0.8338727951049805, 0.5198042988777161, -0.42099204659461975, 0.519970178604126, -0.3912508487701416, -0.13961093127727509, -0.265937477350235, -0.36993932723999023, 0.5163513422012329, 0.47556227445602417, -0.28293630480766296, 0.38638317584991455, -0.07022227346897125, -0.5420290231704712, -0.8611977696418762, 0.35469892621040344, 0.4949403405189514, -1.3482496738433838, 0.21247448027133942, 0.072696253657341, -0.7779107093811035, -0.48074376583099365, -0.34344786405563354, -0.3930172324180603, -1.053555965423584, -1.0419232845306396, -1.3449833393096924, 0.48391982913017273, 0.44318336248397827, -0.32059767842292786, 0.4628051519393921, 0.10311343520879745, -1.3110681772232056, -0.4212195873260498, -0.3223429322242737, -1.3634140491485596, -0.21428361535072327, -0.8916627764701843, 0.9620095491409302, 0.12284770607948303, 0.25518321990966797, 0.0951678603887558, 1.0976760387420654, -1.2745440006256104, -1.131877064704895, -0.8233119249343872, -0.6077193021774292, 1.3241772651672363, 0.08225631713867188, -1.1359975337982178, 1.110416054725647, -0.017069954425096512, -0.5842103362083435, 0.18808238208293915, -0.06913696974515915, -0.6889646649360657, 0.3579918444156647, -0.12436562031507492, 0.6386227011680603, 0.7169853448867798, 1.0630483627319336, 0.8859694004058838, 0.44787347316741943, 0.48335757851600647, 0.9605033993721008, -0.8275061249732971, -0.1863480508327484, -0.11292798072099686, 0.9198493957519531, -0.9635565280914307, -0.6939764022827148, 0.1481652855873108, -0.644228458404541, -0.7123307585716248, 0.3154577612876892, 0.8330323100090027, -0.6800493597984314, 0.5222387313842773, -0.46934863924980164, 0.01035867165774107, -0.8402443528175354, 0.42495718598365784, -0.06534016877412796, -0.26394760608673096, -0.29532477259635925, 0.011879414319992065, 0.6321703791618347, -1.7643388509750366, -0.129612535238266, 0.4155299663543701, -0.030487684532999992, -0.13895124197006226, 0.7875940203666687, 0.510742723941803, 0.5338520407676697, -0.8368116617202759, 1.6739636659622192, 0.9467403292655945, -0.7127021551132202, -0.22356939315795898, 0.6039880514144897, 0.3156200647354126, 0.38800403475761414, -0.9986683130264282, -0.36929839849472046, -0.908827006816864, 0.8180010318756104, 0.2767963707447052, 0.5600759387016296, -0.15533268451690674, -0.05806832015514374, -0.7271915078163147, 0.12234611064195633, 1.2775710821151733, -1.646533727645874, -0.40195563435554504, 1.1508234739303589, 0.40634217858314514, -0.5668181777000427, 0.37303081154823303, 0.8210957050323486, 0.1485634744167328, 0.03154631704092026, 0.5330976843833923, 1.1207611560821533, -0.9788063764572144, 0.4727696180343628, -0.02421599067747593, -0.30941399931907654, -0.07012920081615448, -0.16392920911312103, -1.2304884195327759, 0.6741566061973572, -0.7661271095275879, -1.1767761707305908, 0.3912036716938019, -1.0104970932006836, -0.937064528465271, 0.22179235517978668, 0.5597909092903137, -0.3123033046722412, -0.4236257076263428, 0.389566570520401, 0.2816261351108551, -0.09331687539815903, 0.4738999307155609, -0.2507970929145813, 1.6065757274627686, 0.19453850388526917, 0.21882741153240204, -1.2254334688186646, -0.1981624811887741, 0.7212276458740234, -0.16020210087299347, -0.48678991198539734, 0.143271341919899, 1.321535348892212, -0.11219718307256699, -0.7430413365364075, 0.16570468246936798, -0.4803808331489563, 0.2532544434070587, 0.6090124249458313, -1.0144761800765991, -0.32820621132850647, 0.2621091306209564, 0.5615270137786865, -0.4496881365776062, -0.43721121549606323, -0.46738433837890625, 0.5252431035041809, -0.3137381374835968, 0.585030734539032, 0.21999429166316986, 0.5566052198410034, 0.45510485768318176, -1.1380852460861206, -0.5582427382469177, -0.7132656574249268, 0.7416984438896179, 0.1247972920536995, 0.46787527203559875, -0.4703051745891571, 0.22820083796977997, -0.6334269046783447, -0.6484746336936951, 0.7431168556213379, 0.5446447730064392, -0.10751239210367203, -0.06699660420417786, -1.3832322359085083, -0.2693568766117096, -1.0899958610534668, -0.0480683296918869, 0.8856534361839294, 0.5240957736968994, -0.10490130633115768, 0.4188830852508545, -0.6843716502189636, -0.07296699285507202, -0.10240355879068375, -0.08673716336488724, 0.14076127111911774, 1.1821180582046509, 2.174536943435669, 0.4273016154766083, -0.08009454607963562, -0.4883878827095032, 0.38755494356155396, -0.9596745371818542, 0.1289587765932083, -0.6490786075592041, -0.6120767593383789, -0.37134090065956116], [-0.32367557287216187, 1.4956251382827759, -1.9744670391082764, -0.10916285961866379, 0.4658931493759155, 0.5696658492088318, 0.9674419164657593, -0.44141146540641785, 0.5885269641876221, -0.1743760108947754, -0.5096872448921204, -0.6448789834976196, 0.3274520933628082, 1.128267526626587, 0.22847607731819153, 0.5064164996147156, 0.7776390910148621, -0.3092539310455322, 1.0015588998794556, 1.4072202444076538, 0.8625220656394958, -1.2702218294143677, -0.4522782266139984, 0.6026080250740051, -0.08080793917179108, 0.4288923442363739, -1.0244534015655518, -0.3912792503833771, -1.1657450199127197, -0.8500221371650696, 1.101385474205017, -0.9535390734672546, 0.9965792298316956, 0.430658757686615, -1.1348317861557007, -0.08533704280853271, 1.861992597579956, 1.004381775856018, 1.3318443298339844, -0.5384254455566406, 1.5743610858917236, 0.3565683364868164, 0.335305780172348, -0.895368754863739, 0.4688233435153961, -0.2927147150039673, 0.7335897088050842, -1.2417261600494385, 0.45889905095100403, -0.07379066199064255, 0.15783774852752686, -0.4656467139720917, 0.6446748375892639, 0.7359883189201355, 1.4451090097427368, -0.4558216333389282, 0.28628820180892944, 0.19929473102092743, 0.3325415849685669, 0.03816809132695198, 1.0979889631271362, 0.3369012475013733, -0.528884768486023, 0.7026985883712769, 0.9316255450248718, 0.2585000991821289, 0.06253719329833984, 0.24344699084758759, 0.09367164969444275, 0.22945716977119446, 0.6419296264648438, 0.13335034251213074, -0.8704688549041748, 0.07286656647920609, -1.087927222251892, 0.5443737506866455, 0.502977728843689, 1.0666401386260986, 0.3238469660282135, 0.6157094836235046, -0.38857969641685486, 0.7833632826805115, 0.5353232026100159, -0.6794417500495911, -0.03248242288827896, 0.5199165344238281, 0.38534119725227356, -0.19725315272808075, -0.8869768381118774, 2.131916046142578, 0.44336211681365967, 0.5296573638916016, 0.560486376285553, 0.18754231929779053, 0.01998000778257847, -0.10255136340856552, 0.760925829410553, 0.14156685769557953, -0.42456963658332825, 0.11074448376893997, -0.8087745904922485, -0.8110911250114441, 0.0030317604541778564, -0.1652732491493225, -0.0607810840010643, 1.015543818473816, 0.8432112336158752, -0.13225868344306946, -0.881946861743927, -0.1474812626838684, -1.4710975885391235, -0.0790351927280426, -0.7251912355422974, -0.8357533812522888, -0.24085181951522827, 0.3713361322879791, 0.8919978141784668, -0.5332220792770386, 0.3179461658000946, 0.41821056604385376, -0.47136184573173523, -0.0930325984954834, -0.5665152072906494, 0.6642389893531799, 0.6191562414169312, 1.0208660364151, -1.4294795989990234, -1.2194501161575317, 0.2537113428115845, 0.00718032568693161, 0.008514052256941795, 0.0622783824801445, -0.06964405626058578, 0.8592707514762878, -0.22985650599002838, 1.691541314125061, -0.9362895488739014, 0.010873932391405106, 0.1970670074224472, -0.06775426119565964, 0.951000452041626, -0.7639073133468628, -0.2957158088684082, -0.5548620820045471, -0.07995311170816422, -0.34582042694091797, -0.09327590465545654, 0.5190356969833374, -1.3156728744506836, 0.9636650085449219, -0.9972381591796875, 0.4714973568916321, 0.4409160614013672, 0.9869028925895691, 0.5914456844329834, -0.18008913099765778, 0.4151715040206909, -0.3673602342605591, 0.23499110341072083, 0.5011849403381348, 0.08565504103899002, 0.7055522203445435, -0.7509503960609436, 0.7149768471717834, 0.1434280276298523, -0.4948710799217224, 0.4237121045589447, 0.7910556793212891, -0.11899146437644958, 1.1708132028579712, -0.11842593550682068, -0.5682189464569092, -0.6163651943206787, 0.33471179008483887, 1.0823602676391602, -0.7361181378364563, 1.2023577690124512, -0.5924144983291626, -1.346420168876648, -1.2953367233276367, 0.20648150146007538, -0.617133378982544, -0.10878700762987137, 0.47709760069847107, 0.055897220969200134, -0.5892276763916016, 0.22111071646213531, -0.6007134914398193, -0.5135616660118103, -0.8083145022392273, -0.7070229649543762, -0.6883451342582703, -0.6196560263633728, 0.22533345222473145, -0.6782103776931763, -0.9053794741630554, 0.7489093542098999, -0.8862480521202087, -0.49942490458488464, -0.265983521938324, -0.7390801906585693, -0.8368266224861145, -0.7010427713394165, 0.11109035462141037, -0.6065064668655396, 0.9978436231613159, -1.6602189540863037, 0.7039588093757629, -0.09147986024618149, 0.4885711669921875, 1.4371215105056763, 0.4654565751552582, -0.37139037251472473, 0.339178204536438, 0.24754315614700317, -1.3068066835403442, -0.06896021962165833, 0.09812994301319122, 0.4598076343536377, 0.4593832790851593, -0.41219455003738403, 0.01643460802733898, 1.1478397846221924, 0.2605631351470947, 0.4312918484210968, -0.4256649315357208, -0.09114530682563782, -0.5229958891868591, -1.233282208442688, 0.5597747564315796, -0.8491626977920532, -1.1594616174697876, 1.0021562576293945, 0.6600193381309509, -0.5658580660820007, 0.5082545876502991, -0.015558043494820595, 0.9204654097557068, 0.24757513403892517, 1.4588427543640137, 0.5067978501319885, 0.39260900020599365, 0.1298690289258957, -0.5340234637260437, -0.7689504027366638, 0.745449423789978, 0.5416216254234314, -0.3425711691379547, -0.025646265596151352, 0.7525371313095093, 1.5037060976028442, 0.6955798268318176, 0.09808329492807388, 0.6399781703948975, -0.2214670032262802, -1.0391812324523926, -0.8247469663619995, 0.1855064034461975, -1.0914732217788696, 1.3318390846252441, 0.4090118110179901, -1.0662697553634644, -1.3039125204086304, -0.22090068459510803, 0.2527632713317871, 0.025226686149835587, -0.6260213851928711, -1.0057413578033447, -0.593780517578125, 0.03906561806797981, -0.5008999109268188, 0.33425506949424744, -0.47535568475723267, 0.9165000319480896, -0.16987067461013794, -0.8787513971328735, -0.19318248331546783, 0.61883944272995, -0.07753784954547882, 0.9548474550247192, 0.061282653361558914, -1.9004110097885132, -0.41804081201553345, 0.6128342151641846, 1.0343478918075562, 0.16402208805084229, 0.30542200803756714, 0.35014456510543823, 0.6197806000709534, 0.11884225904941559, -0.12716971337795258, 0.2904392182826996, 0.5783548951148987, -0.12114926427602768, 0.5112144947052002, 0.5417400002479553, 0.7411817312240601, -1.277944564819336, -1.030531406402588, -0.583619236946106, 0.3822464346885681, 1.764922857284546, 0.4689939320087433, 1.2107597589492798, -0.4335366189479828, -0.28484758734703064, -0.5107570290565491, -0.6430225372314453, -1.3349117040634155, -1.0198692083358765, -0.4483490586280823, -1.1730469465255737, -0.42495396733283997, -0.14339277148246765, -0.26585307717323303, 0.10828232765197754, -0.65129554271698, -0.09581306576728821, 1.1174039840698242, -0.7571277618408203, -0.6988934874534607, -0.3499908745288849, 0.295991450548172, -0.8052239418029785, 0.5018649697303772, 0.8110804557800293, -1.0301713943481445, -0.8471225500106812, 0.4082666337490082, 1.0679562091827393, 0.166042760014534, 0.06819602102041245, 0.09944837540388107, -1.069579005241394, -1.6686726808547974, -0.33129534125328064, 0.8520461320877075, 0.3874441087245941, -0.06479401141405106, -0.14316214621067047, 0.540101945400238, 0.533207893371582, -0.2598560154438019, 0.06117212027311325, 0.3194006085395813, -0.7696049213409424, -0.8222959637641907, -0.20213283598423004, 0.275243878364563, 0.3650932013988495, -0.7757343053817749, -0.3985053598880768, -0.7139220237731934, -0.4968910217285156, 0.314622163772583, 0.43558311462402344, 0.06729229539632797, 0.22818878293037415, -0.005573549307882786, 0.5623776316642761, 0.4286291301250458, 0.1972711980342865, 0.19405269622802734, -1.1714116334915161, 0.5749855041503906, 0.5498611927032471, 1.2010575532913208, 0.15435947477817535, 0.2835124731063843, -0.1037081703543663, 0.37874168157577515, 0.6013621687889099, -0.17020511627197266, 0.9875430464744568, -0.8913593292236328, -0.0985485389828682, -0.6495952606201172, -0.8131225109100342, 0.6880845427513123, -0.7444887161254883, 0.20035046339035034, -0.2447165995836258, -1.1488317251205444, -0.44867682456970215, 0.7467730045318604, 0.08143157511949539, -0.7003706097602844, -0.05948634818196297, 0.24733522534370422, 0.5738320350646973, -0.031079106032848358, 0.1797102689743042, -0.6791139841079712, 0.32734790444374084, -0.02150152064859867, -0.7413724064826965, -0.26626476645469666, -0.2750760018825531, -0.004936780780553818, 0.6449757218360901, -1.028645634651184, 0.8282738924026489, -0.9898528456687927, 0.5188798904418945, 0.2473926544189453, -0.47625449299812317, 0.019455600529909134, -0.27653491497039795, -0.10218163579702377, -0.30897635221481323, -0.42940783500671387, 1.387056589126587, 0.0454418919980526, -0.4228626787662506, 0.14542615413665771, -0.516144335269928, 0.2657078802585602, -0.947421133518219, 0.28477734327316284, 0.5115941762924194, -0.5618432760238647, -0.08576435595750809, -0.00734839029610157, -0.014887988567352295, 1.357040286064148, 0.22889479994773865, 0.46483179926872253, 0.7012513279914856, 0.6675369143486023, -0.7903061509132385, -0.25278565287590027, 0.5989140272140503, -0.12537306547164917, -1.1647443771362305, -0.3442292809486389, 0.46352434158325195, -0.3493458032608032, 0.09370069205760956, 0.07736802101135254, 0.5390288233757019, 0.8267472386360168, 0.06995870918035507, 0.23668713867664337, 0.44888007640838623, 0.45725950598716736, 1.2691644430160522, 0.4696802496910095, -0.5193207859992981, -0.6540495753288269, 0.3575949966907501, -1.3127256631851196, -0.1353350132703781, 1.1073081493377686, 0.06922940164804459, 1.1383512020111084, -1.8361396789550781, -0.9287346005439758, 0.41661858558654785, 1.134734869003296, 0.6065090298652649, 0.8230419158935547, -0.33219555020332336, 0.049869198352098465, 0.010097362101078033, 0.11176440119743347, -0.4122897684574127, 0.08544866740703583, 0.04715042561292648, -0.43808940052986145, 0.8352722525596619, -0.7120726108551025, 0.4739059805870056, -0.6960521936416626, -0.5480844378471375, -0.7166226506233215, -0.2557859718799591, 0.25538334250450134, 0.42263156175613403, 0.963606059551239, 1.5917400121688843, -1.2475541830062866, -0.95256108045578, 0.006846718490123749, -0.8701176643371582, -0.21891991794109344, -0.2769435942173004, -0.8235097527503967, -0.4863198697566986, -0.4772011935710907, -0.6999255418777466, 0.4545878469944, -0.25994178652763367, -0.3069852292537689, -0.663354754447937, -1.0713475942611694, 0.23521117866039276, 0.9140149354934692, 0.8082481622695923, 0.32853999733924866, 0.08455965667963028, 0.453046053647995, 0.1876763105392456, -0.7935534119606018, 0.21683280169963837, 0.8314127922058105, -0.0010655075311660767, 0.13221558928489685, -0.9504485130310059, -0.8595699071884155, 0.4895876348018646, -0.08147641271352768, -0.5495564937591553, 0.5499277114868164, 1.668487310409546, 1.3072469234466553, -0.3206758201122284, -0.6707075238227844, 0.5744227170944214, 0.0030412450432777405, 0.6345880627632141, 1.5937174558639526, 0.13015517592430115, 0.180909663438797, -0.19766011834144592, -1.4668744802474976, 0.7192792296409607, -0.6091943383216858, -0.33882272243499756, 1.0774890184402466, -0.2045612335205078, 0.7065176963806152, 0.27695807814598083, -0.3147781491279602, 0.5094406008720398, -0.19060885906219482, -0.04909399524331093, -1.7172019481658936, 0.3026179075241089, 0.5758471488952637, -0.19960781931877136, 0.40564262866973877, -0.3190062940120697, 0.16525138914585114, 0.16627709567546844, -0.01087743416428566, 0.38577771186828613, -0.09799675643444061, 0.6320804357528687, 0.2791161835193634, -0.6324554085731506, 0.8455808162689209, -0.7257494330406189, -0.20834386348724365, 0.06973284482955933, 0.5147117972373962, 0.7367081046104431, 0.07412607222795486, 0.07958044111728668, -0.656387209892273, -0.10512308776378632, -0.12031815201044083, -0.16910846531391144, 0.3611975610256195, 0.26182541251182556, 0.2864566743373871, 0.013658060692250729, -0.2483605146408081, -0.5149706602096558, -0.7625328302383423, 0.048627473413944244, 0.32158488035202026, -0.6152776479721069, 0.4591705799102783, 0.432455837726593, -0.43432947993278503, -0.9077098965644836, -0.22411386668682098, 0.3444506525993347, -1.3189808130264282, -1.3118603229522705, -1.585253357887268, 0.11282873153686523, 0.2985175549983978, -0.5928375720977783, 1.0349125862121582, 0.8199769258499146, -1.1782840490341187, -0.4660896956920624, -0.11086662858724594, -0.7005931735038757, 0.12676778435707092, -0.9094565510749817, 0.7750167846679688, -0.405620276927948, 0.056740060448646545, 0.4366927742958069, 1.0234378576278687, -1.3493624925613403, -1.4508998394012451, -1.4593558311462402, -0.8684606552124023, 1.2939869165420532, 1.4371286630630493, -0.4824727475643158, 1.323561191558838, 0.7575411200523376, -1.0024614334106445, -0.5401901006698608, 0.07147032022476196, -1.354429006576538, 0.14481014013290405, 0.44892939925193787, 0.34226056933403015, 0.3505999445915222, 0.8773180246353149, 0.6187853813171387, 0.30661603808403015, 0.3979608118534088, 0.5625551342964172, -0.6711690425872803, -0.7148498296737671, 0.006512897089123726, 1.1587624549865723, -1.3669781684875488, -1.0227391719818115, 0.10529989004135132, -1.1715482473373413, -0.2469838559627533, -0.10474289953708649, 0.4986596405506134, -0.5965245962142944, 0.7744195461273193, -0.3429756164550781, 0.5071191787719727, -0.9536019563674927, 0.832871675491333, 0.2532172203063965, -0.6117075681686401, -0.14937835931777954, 0.2549606263637543, 0.3831847310066223, -1.3166813850402832, 0.24507266283035278, 0.6208938956260681, -0.11481106281280518, -0.8437155485153198, 0.7557686567306519, 0.41818001866340637, 0.12047921121120453, -0.7605845332145691, 1.2283297777175903, 0.23318235576152802, -0.40575751662254333, -0.30343523621559143, 0.6593054533004761, -0.14735785126686096, 0.32035747170448303, -1.1815046072006226, 0.0715574398636818, -0.6242956519126892, 0.4311951994895935, -0.0235263891518116, 0.4077286124229431, 0.5292606353759766, -0.32979318499565125, -0.30428722500801086, 0.7187693119049072, 0.7143298983573914, -1.3625653982162476, 0.022489476948976517, 0.8428128361701965, 0.43577948212623596, -0.6592211723327637, 0.007940338924527168, 0.6678078174591064, 0.5233044028282166, -0.7758985161781311, -0.16862189769744873, 0.8584049940109253, -0.8004720211029053, 0.017479537054896355, 0.11333958059549332, -0.9035661816596985, -0.12674227356910706, 0.2517704963684082, -1.3688392639160156, 0.06238958239555359, -0.7229354977607727, -0.12154997140169144, 0.4985264539718628, -0.7181338667869568, -0.9547368288040161, 0.45033469796180725, 0.09360756725072861, 0.027290252968668938, -0.3985217809677124, 0.32462263107299805, 0.011072367429733276, 0.27018794417381287, 0.8860076069831848, -0.06287895143032074, 0.9002654552459717, 0.2316076159477234, 0.0800914540886879, -1.3785096406936646, 0.3654598295688629, 0.39949649572372437, 0.1305849552154541, -0.5630566477775574, -0.16057296097278595, 1.230103611946106, -0.20441487431526184, -0.46472328901290894, 0.04393124207854271, -0.15374502539634705, 0.4662737548351288, 0.6553093194961548, -0.21121856570243835, 0.036378584802150726, 0.43017473816871643, 0.7793532013893127, -0.7166167497634888, -0.3938788175582886, -1.1591767072677612, -0.6999900937080383, -0.4086032509803772, 0.691516637802124, -0.3388781249523163, 0.5498371124267578, 0.20490151643753052, -0.12315189838409424, -0.8725196719169617, -1.0046051740646362, 0.32423844933509827, -0.303398996591568, 0.8918642997741699, -0.3270428478717804, 0.7241486310958862, -1.0048141479492188, -0.5848613381385803, 0.31232887506484985, 0.2187877893447876, -0.005367844831198454, 0.3902353048324585, -0.902811586856842, -0.13357307016849518, -0.5679724812507629, 0.642339289188385, 1.9541614055633545, 0.2785508930683136, -0.4840880036354065, 0.38619372248649597, -1.4662747383117676, 0.13749557733535767, 0.14206397533416748, 0.348786860704422, 0.6533872485160828, 0.899563729763031, 1.5689808130264282, 0.692592978477478, 0.29089540243148804, 0.15581952035427094, -0.1330869048833847, -0.9928649067878723, -0.21103577315807343, -0.9459227919578552, -0.4454127252101898, -0.6383877396583557], [-0.66779625415802, 1.466428279876709, -2.473623275756836, -0.7163763642311096, 0.5780026912689209, 0.8596818447113037, 1.5623564720153809, -1.1469826698303223, 1.3360234498977661, -0.25216615200042725, -0.7450248003005981, -0.10228052735328674, 0.4118140935897827, 0.784013032913208, 0.5769762992858887, 0.09797906875610352, 0.4622395634651184, -0.6276650428771973, 0.7030085325241089, 1.2012939453125, -0.05014663562178612, -1.6747386455535889, -0.67880779504776, 1.1140966415405273, -0.9130373597145081, 0.017963223159313202, -0.851546585559845, 0.20844723284244537, -1.152552604675293, -0.48458313941955566, 0.9777645468711853, -0.835428774356842, 0.3591321110725403, 0.5873364210128784, -1.093095302581787, -0.8417372703552246, 1.5477426052093506, 0.6930631399154663, 0.9937337636947632, -0.6806766390800476, 1.83060622215271, 0.944358766078949, 1.0244632959365845, -1.1088488101959229, 0.7496278285980225, -0.06672839820384979, 1.284592628479004, -0.5228784084320068, -0.20491814613342285, -0.3518297076225281, -0.6392170190811157, -0.7634778022766113, 0.42853543162345886, 0.9852112531661987, 2.029064416885376, -0.23896504938602448, 0.6286330223083496, -0.028845565393567085, 0.5478798151016235, 0.0552411712706089, 1.3747215270996094, 0.14672183990478516, -0.38806745409965515, 1.3022146224975586, 0.4964568614959717, -0.023539744317531586, -0.3384307622909546, 0.4094006419181824, -0.09953860193490982, 0.10378514230251312, 0.7332692742347717, -0.425554096698761, -0.6551425457000732, -0.38780611753463745, -1.0664341449737549, 0.8497185707092285, -0.28844404220581055, 0.5216026306152344, -0.18844056129455566, -0.02678847312927246, -0.9911621809005737, 0.11183597147464752, 0.6941263675689697, -0.6337835192680359, 0.11651159077882767, 0.2609225809574127, 0.9997607469558716, -0.29473453760147095, 0.27065765857696533, 1.496870517730713, 0.12777245044708252, -0.020264897495508194, 0.7498364448547363, 0.17325395345687866, 0.2296803891658783, -0.23627352714538574, 0.24326586723327637, 0.36739107966423035, -0.17325358092784882, 0.10219091922044754, -0.6410292387008667, -0.7325649261474609, 0.19448815286159515, -0.1194128543138504, 0.09622058272361755, 1.2243356704711914, 0.06328275799751282, -0.24919870495796204, -0.8666797876358032, -0.6040714979171753, -0.5116852521896362, 0.6866747140884399, -0.9877806901931763, -1.3860379457473755, -0.7617284059524536, 1.1290416717529297, 0.40212202072143555, 0.8135378360748291, 0.9131261706352234, 0.14433898031711578, -0.7657248973846436, 0.6301443576812744, 0.33199459314346313, 0.6525587439537048, 0.2521269917488098, 0.8073084950447083, -1.0761066675186157, -0.42719706892967224, 0.36086249351501465, 0.2072123885154724, 0.1970377266407013, -0.4374654293060303, -0.022795800119638443, 0.6663200855255127, -0.5561825037002563, 1.377044677734375, -0.1260472983121872, -0.41731947660446167, -0.29899412393569946, 0.9471899271011353, 0.8420847654342651, -0.7887150049209595, -0.4564725160598755, -0.4130001664161682, -0.9272985458374023, -0.26180723309516907, 0.28240031003952026, 0.17928099632263184, -0.7441893815994263, 0.05015306547284126, -1.4384828805923462, 0.9113445281982422, 0.5764399766921997, 0.5372970104217529, 0.14237520098686218, -0.7432459592819214, 0.22346650063991547, -0.6050442457199097, 0.5499089956283569, 0.1860351413488388, 0.4533557593822479, 0.3552199602127075, -0.6236961483955383, 0.4950734078884125, 0.2494179904460907, 0.5122014284133911, 0.5907602310180664, 0.8871563673019409, -0.4857552647590637, 0.3099792003631592, -0.3597843050956726, -1.097723364830017, -1.0875321626663208, -0.0751541405916214, 0.7901515960693359, -0.7876083254814148, 0.8519693613052368, -0.5770999193191528, -1.4132130146026611, -0.7082281112670898, 0.19822096824645996, -0.5141773223876953, -0.06246728450059891, 0.2696168124675751, 0.6915346384048462, -0.5890437364578247, 0.4568566679954529, -0.6152578592300415, -0.4466504454612732, -0.625562310218811, -1.2521989345550537, -0.7721601128578186, -0.7397262454032898, -0.13341772556304932, -0.40623795986175537, -0.39903104305267334, 0.6686205863952637, -0.5473631024360657, -1.3256111145019531, 0.39674651622772217, -0.8477605581283569, -1.1882885694503784, -0.12538760900497437, 0.31230753660202026, -0.4932060241699219, 0.9927540421485901, -1.1407527923583984, 0.671029806137085, -0.6290278434753418, 0.5007150173187256, 1.7794824838638306, 0.293999046087265, -0.7882630825042725, 0.42894718050956726, 0.28707006573677063, -0.8617250919342041, -0.15374208986759186, 0.7255061864852905, 0.009762026369571686, 0.7717815041542053, -0.14723049104213715, -0.03240690752863884, 1.1103075742721558, -0.38162827491760254, 0.1673722118139267, -0.7370002865791321, -0.11825457215309143, -0.6360183954238892, -0.7790457010269165, 0.8624845743179321, -0.5207902193069458, -1.6639134883880615, 0.5641285181045532, 1.0790483951568604, -0.3337073028087616, 0.14132535457611084, 0.3907994329929352, 0.4409995377063751, 0.04479436203837395, 1.3680553436279297, 0.5242494344711304, 0.7979038953781128, 0.4131680428981781, -0.569736123085022, -0.3653041124343872, 0.6664966940879822, 0.9169589281082153, -0.2630779445171356, -0.5712668895721436, 0.5724053382873535, 1.0868052244186401, 0.6821948289871216, 0.2538156509399414, -0.11641718447208405, -0.18882465362548828, -0.8954699635505676, -0.977588415145874, 0.2775183320045471, -1.2643344402313232, 1.4050116539001465, 1.3053982257843018, -1.049560308456421, -0.4529210031032562, 0.018757354468107224, 0.6444059610366821, -0.11939865350723267, -1.1929714679718018, 0.08894072473049164, -0.721686601638794, 0.28068551421165466, -0.06278404593467712, -0.15641608834266663, -0.43896856904029846, 0.7796638607978821, -0.04580143094062805, -0.9376187324523926, -0.13811475038528442, 0.9311455488204956, 0.33336979150772095, 0.8022321462631226, -0.09474749118089676, -1.3221979141235352, -0.4897271990776062, 0.9542137384414673, 0.9933292269706726, 0.7291595339775085, 0.6105418801307678, 0.5612690448760986, 0.8052396774291992, 0.03231767565011978, 0.30433857440948486, 1.1168442964553833, 0.49067676067352295, 0.3454950749874115, 0.4386521875858307, -0.012131684459745884, 0.8459866642951965, -0.9427940845489502, -1.1927709579467773, -0.6513000726699829, 0.11742348968982697, 1.4746578931808472, 0.7125788927078247, 1.111897587776184, -0.3995770812034607, -0.0886775329709053, -0.04139026254415512, -1.2879374027252197, -0.6069075465202332, -1.5338008403778076, -0.6699970960617065, -0.5509722232818604, -0.6219290494918823, 0.0311080701649189, -0.4799441695213318, 0.5751080513000488, -1.1004687547683716, 0.1692611277103424, 1.0956568717956543, -0.29666197299957275, -0.3107473850250244, 0.05954547971487045, 0.07736224681138992, -0.5536625385284424, 0.18371543288230896, 0.6363871097564697, -1.0666813850402832, -1.218045949935913, -0.31808823347091675, 0.6384227275848389, 0.13499459624290466, -0.05430150777101517, 0.4315120577812195, -1.146178960800171, -1.1135210990905762, -0.37393033504486084, 0.5990439653396606, 0.33142828941345215, -0.5908933877944946, -1.0192523002624512, 0.3673946261405945, 0.3668447434902191, -0.17264461517333984, -0.1652301400899887, 0.6187471151351929, -0.3368317186832428, -0.9433462023735046, -0.7076496481895447, 0.991280734539032, 0.7497068643569946, -0.9748120307922363, -0.17182284593582153, -0.8490498065948486, -0.34343546628952026, -0.7005923986434937, 0.4768105149269104, -0.3536722660064697, 0.858721137046814, 0.6308069229125977, 0.07451348006725311, 0.5730563998222351, -0.2692677080631256, -0.2279714047908783, -1.7642462253570557, 0.08503679186105728, 1.1517804861068726, 0.5035422444343567, -0.018260899931192398, 0.8233175277709961, 0.5435835123062134, -0.1518624722957611, 0.458902508020401, 0.10078997910022736, 0.9904215335845947, -0.40616294741630554, 0.09930659830570221, 0.13520193099975586, -1.0054819583892822, 0.315424382686615, -0.8735649585723877, -0.12685798108577728, 0.5522365570068359, -1.2803494930267334, 0.05506100133061409, 0.9024239182472229, 0.31070154905319214, -0.33702290058135986, -0.3103194832801819, -0.05219563841819763, 0.8429470062255859, 0.04745333641767502, 0.7118667364120483, -0.616527259349823, 0.025024207308888435, -0.028798475861549377, -1.2992581129074097, 0.1862829029560089, -0.29177361726760864, -0.33357810974121094, 1.1683533191680908, -0.9295947551727295, 0.2972900867462158, -1.5699801445007324, 0.3781334161758423, 0.41373544931411743, 0.47004979848861694, 0.18351268768310547, -0.48818308115005493, -0.002622801810503006, -0.33808308839797974, 0.08303897827863693, 1.1167590618133545, 0.10886207967996597, -0.7313284277915955, 0.1265181601047516, 0.2535783648490906, -0.008026525378227234, -0.22574613988399506, 0.09178080409765244, 0.6484111547470093, -0.7569875717163086, -0.3169827461242676, -0.3153819739818573, -0.23211820423603058, 1.0372105836868286, -0.09495460987091064, 1.189395785331726, 1.007737398147583, 0.36398351192474365, -1.7017326354980469, 0.11356242746114731, 0.5199488401412964, -0.3113563060760498, -1.0826377868652344, -0.02410171926021576, 0.207854226231575, -0.5967763662338257, 0.40467679500579834, -0.35269343852996826, 0.7349250316619873, 0.4109618067741394, -0.32601407170295715, -0.1824963539838791, 0.24989445507526398, 0.845279335975647, 0.7531486749649048, -0.25769442319869995, -0.991718053817749, -0.5723023414611816, 0.5052703619003296, -1.354986310005188, 0.3773457705974579, 0.905022144317627, -0.2337179034948349, 1.2607183456420898, -2.1013102531433105, -1.6201558113098145, 0.2041245698928833, 0.5751357078552246, 0.5643775463104248, 0.3658396601676941, -0.31990134716033936, -0.10676012933254242, 0.09036478400230408, -0.29201772809028625, -0.22590306401252747, 0.14388322830200195, -0.6548656225204468, 0.2592998743057251, 0.807917594909668, -0.9389603137969971, 0.050938092172145844, 0.04773463308811188, -0.4475420117378235, -0.7590783834457397, -0.7878730297088623, 0.7346256971359253, 0.4389203190803528, 0.7312896251678467, 1.2488840818405151, -0.6433141827583313, -0.7029340863227844, 0.4730544090270996, -0.5090159177780151, 0.47467559576034546, -0.47646379470825195, -0.8451712727546692, -0.7938362956047058, -0.06012686342000961, -1.1834659576416016, 0.6042486429214478, -0.8788620233535767, 0.02370700240135193, -0.43523842096328735, -1.6740589141845703, -0.07850432395935059, 1.264250636100769, 0.5702364444732666, 0.4607836604118347, -0.3572998642921448, 0.4400746822357178, 0.8493756055831909, -0.6376947164535522, 0.010575419291853905, 0.027643254026770592, -0.1419578194618225, 0.7399729490280151, -1.3935697078704834, -0.5951196551322937, 0.4818279445171356, -0.14599934220314026, -0.19715647399425507, 0.6021921634674072, 1.335897445678711, 1.8086233139038086, -0.12956151366233826, -0.7382875084877014, 0.38937145471572876, 0.3890422582626343, 0.7107069492340088, 0.7149866819381714, -0.08880087733268738, -0.6085289716720581, -0.2440224289894104, -0.9655073881149292, 0.5019824504852295, -0.521557092666626, -0.5415818095207214, 1.1860923767089844, -0.40723586082458496, 0.877849817276001, 0.03669285774230957, -0.32708895206451416, 0.31085705757141113, -0.41014307737350464, 0.8864033222198486, -1.5674124956130981, 0.7385305166244507, 0.5778843760490417, -0.3617376983165741, 0.04179622232913971, -0.3668766915798187, -0.18311913311481476, -0.38290488719940186, 0.2867165803909302, 1.0544365644454956, -1.2276043891906738, 0.18536821007728577, 0.5779471397399902, -0.41290533542633057, 0.9749758839607239, -0.8277443051338196, -0.21152833104133606, -0.3119611144065857, 0.7540050745010376, 0.8720771074295044, 0.34786707162857056, 0.16258743405342102, -0.51732337474823, -0.33273738622665405, -0.0690658688545227, -0.28157004714012146, 0.509804368019104, 0.5795417428016663, 0.08081594109535217, 0.2522706985473633, 0.07805527746677399, -0.6612811088562012, -0.7216161489486694, -0.3090774714946747, -0.3370996117591858, -0.8550432920455933, 0.154556006193161, -0.14781217277050018, -0.7384634017944336, -0.7252282500267029, -0.19544169306755066, 0.5042917728424072, -1.1194722652435303, -0.9682430624961853, -1.0882810354232788, -0.11561088263988495, 0.4691859483718872, -0.5966061353683472, 1.154813528060913, 0.8215770721435547, -0.8276766538619995, 0.2643594741821289, -0.6772134304046631, -0.5162532925605774, -0.18192854523658752, -0.8303681015968323, 0.44830459356307983, -0.32883840799331665, 0.3461059331893921, -0.04817872494459152, 0.4584670066833496, -1.7094218730926514, -1.1450119018554688, -0.7507786750793457, -1.1112971305847168, 0.8564555048942566, 0.5174341201782227, -0.9976276755332947, 1.4675369262695312, 1.145033597946167, -0.5672250986099243, -0.4940865635871887, 0.7860617637634277, -1.4542162418365479, -0.38847702741622925, 0.2736087441444397, 0.8158752918243408, 0.8874438405036926, 0.8657509088516235, 0.9946974515914917, 0.7140723466873169, 0.38469964265823364, -0.014835212379693985, -0.529238760471344, -0.023833852261304855, 0.40733444690704346, 1.1555432081222534, -1.155447006225586, -0.1516837775707245, 0.26837486028671265, -0.7456594705581665, -1.0944185256958008, 0.4402354955673218, 0.7948178648948669, -0.771084725856781, 0.8129792213439941, -0.5537118315696716, 0.8894999623298645, -0.3274739980697632, 0.633736789226532, -0.16712462902069092, -0.01162879541516304, -0.20789995789527893, -0.14840465784072876, 0.48790454864501953, -0.6846679449081421, 0.48850753903388977, 0.6073611974716187, 0.41751930117607117, -1.4828133583068848, 0.4962994456291199, 0.7944141626358032, 0.5918810367584229, -1.0441274642944336, 1.9572336673736572, 0.9875501394271851, -0.020123014226555824, -0.06830427050590515, 0.3118765354156494, -0.714661717414856, 0.8407204151153564, -0.810705304145813, 0.6509759426116943, -1.3929359912872314, -0.08926346153020859, 0.7190914154052734, -0.4094175696372986, -0.3129809498786926, 0.047602780163288116, -0.5128254890441895, 0.23643702268600464, -0.007344815880060196, -1.2184717655181885, -0.6862727403640747, 0.8598236441612244, 0.058102041482925415, -0.4869982600212097, 0.47120702266693115, 0.3937671184539795, -0.0490233451128006, -0.7127472162246704, 0.09035497158765793, -0.15329158306121826, -0.7333644032478333, 0.20721599459648132, 0.7891616821289062, -0.3159976005554199, -0.0339713878929615, -0.2505388855934143, -0.9386190176010132, -0.3246046304702759, -1.2344937324523926, -0.6524726152420044, 0.4074532389640808, -0.5182779431343079, -0.5497271418571472, 0.5947182178497314, 0.5611007213592529, 0.1980554610490799, -0.35458219051361084, 0.6402867436408997, 0.2233368307352066, -0.21281544864177704, 0.5791125297546387, -0.984061062335968, 1.158189058303833, 0.31057512760162354, -0.11898893117904663, -0.8323707580566406, 0.546367347240448, 0.22967103123664856, 0.2792881727218628, -0.5291004180908203, -0.1017252579331398, 0.9548085927963257, -0.1431080400943756, 0.019173335283994675, 0.38813936710357666, 0.926281750202179, 0.02865215763449669, 0.06447792053222656, -0.5912116169929504, 0.21656107902526855, 0.5823687314987183, 1.2095520496368408, -0.37325915694236755, -0.7848214507102966, -0.8437412977218628, 0.2844945788383484, -0.2050340175628662, -0.33349159359931946, -0.11145766079425812, 0.5877496004104614, 0.03972615674138069, -0.5936481952667236, -0.8312743306159973, -1.0770012140274048, 0.7506214380264282, -0.023052439093589783, 0.8953595757484436, -0.19572225213050842, 0.7995092868804932, -0.458540141582489, -0.16953253746032715, 0.24240350723266602, 0.8495239019393921, 0.27892521023750305, 0.3841565251350403, -1.000880479812622, 0.10030940920114517, -0.5701937079429626, 0.8165591955184937, 1.3592627048492432, 0.028186410665512085, -0.3408563435077667, 0.33170169591903687, -1.7614020109176636, 0.37551349401474, 0.6141406297683716, 0.6761966347694397, 0.4964357614517212, 1.0091192722320557, 1.6835110187530518, 0.14446184039115906, 0.23470818996429443, 0.19917786121368408, 0.42881786823272705, -0.27261704206466675, -0.5058780908584595, -0.5203368067741394, 0.007899092510342598, -0.9193413257598877], [0.37126389145851135, 0.7837615013122559, -2.0880420207977295, -0.7588868737220764, 1.235088586807251, 0.6394997835159302, 1.4680477380752563, 0.1792016178369522, 0.04811519756913185, -0.46288856863975525, -0.25751790404319763, 0.16694504022598267, 0.10064936429262161, 1.059500813484192, 0.2701084017753601, 0.5792558193206787, 0.4116705060005188, -0.15788516402244568, 0.6431716680526733, 0.9866926074028015, -0.20852629840373993, -0.26683586835861206, -0.17162685096263885, 0.2758355736732483, -0.9677531123161316, 0.7685322761535645, -1.487020492553711, -0.47825098037719727, -1.2607125043869019, -0.49116912484169006, 1.595752239227295, -1.590610384941101, 0.31670939922332764, -0.032828863710165024, -1.3630343675613403, -0.6603176593780518, 0.9947633743286133, 0.7111157774925232, 0.21315784752368927, 0.11327557265758514, 1.369202733039856, 0.49630308151245117, 0.5359598398208618, -1.3155325651168823, 0.1844608336687088, 0.7356588840484619, 1.1463035345077515, -0.8312036991119385, 0.45054927468299866, -0.3461209833621979, 0.4968893826007843, -0.16559390723705292, 0.851677417755127, 0.8373664617538452, 1.8657217025756836, 0.6605831384658813, 0.762627363204956, 0.07996512949466705, 0.7985517382621765, -0.18302379548549652, 1.2248749732971191, 0.11167632788419724, -0.5765891075134277, 0.9425263404846191, 0.12604908645153046, -0.07382333278656006, -0.6158741116523743, 0.7873197197914124, -0.1798805594444275, 0.4102642238140106, 1.0609372854232788, 0.008445636369287968, -1.1476356983184814, 0.5229973196983337, -1.4489128589630127, 0.25160181522369385, 0.5521760582923889, 0.6486573815345764, 0.5585989356040955, 0.4688626229763031, -1.0042457580566406, -0.005600964650511742, 0.8917155861854553, -0.40273576974868774, 0.23360459506511688, 0.31421956419944763, 0.8795767426490784, -0.5779563188552856, -0.5254203081130981, 1.713843822479248, 0.5527029037475586, 0.33121147751808167, 0.19513735175132751, -0.5325117111206055, 0.3638715445995331, -0.4348384737968445, 0.10076826065778732, -0.19818338751792908, -0.5888631343841553, -0.6025227308273315, -0.9603238105773926, -0.6904994249343872, -0.11263029277324677, -0.5290282964706421, 0.14755211770534515, 1.3509122133255005, 0.17474476993083954, -0.20959804952144623, -0.01925492472946644, -0.3292739987373352, -1.0951220989227295, 0.43473681807518005, -0.1586010903120041, -1.0102291107177734, -0.8040294647216797, 0.7286302447319031, 1.3195332288742065, 0.1632343977689743, 1.1080615520477295, 0.22741976380348206, -0.7953951954841614, 0.7961412668228149, 0.5693334937095642, 0.9949020147323608, 1.0738977193832397, 0.26444801688194275, -0.7146570086479187, -1.2480463981628418, 0.593330979347229, -0.19280822575092316, 0.09552620351314545, -0.1646658331155777, 0.21416817605495453, 0.7165212631225586, -0.20174957811832428, 1.263795256614685, 0.5860029458999634, -0.5750846862792969, -0.13639552891254425, 0.6608325839042664, 0.6994683146476746, -0.5069286823272705, -0.04615626484155655, -0.8280550837516785, 0.010339395143091679, -0.7774460315704346, 0.5258895754814148, -0.5309541821479797, -0.8278527855873108, -0.10993457585573196, -0.9154518842697144, 0.4677765667438507, 0.46318519115448, 1.000357747077942, 0.05614568665623665, -0.36497098207473755, 0.5363768935203552, -0.35468220710754395, 1.3634532690048218, -0.02987096458673477, 0.4448096454143524, 0.8138163089752197, -0.6703888773918152, 0.8664292693138123, 0.16348017752170563, -0.5829866528511047, 0.1029365286231041, 0.8104737401008606, 0.39168283343315125, 0.7821223735809326, -0.1933576613664627, -0.6337884664535522, -0.2750796675682068, 0.37205415964126587, 0.2026793211698532, -0.1145460307598114, 1.502297043800354, -1.148855209350586, -0.9122157692909241, -0.6726477742195129, 0.2982650101184845, -0.48625844717025757, 0.018217675387859344, 0.15715470910072327, 0.7697468996047974, -0.5027431845664978, 0.1610376536846161, -0.0013555348850786686, -0.8703799247741699, -0.7386263608932495, -1.1441400051116943, -0.9739400148391724, -1.1030465364456177, 0.24291832745075226, -0.3932051360607147, -0.84852534532547, 0.7108449339866638, -0.5553702116012573, -0.46129918098449707, 0.19555599987506866, -0.13979093730449677, -0.3987445533275604, -0.46341055631637573, 0.404514342546463, -0.9094218611717224, 0.6950744986534119, -1.2263184785842896, 0.8591099977493286, -0.9570420384407043, 0.36826011538505554, 1.2294296026229858, 0.0665750801563263, -0.5163195133209229, 0.8203869462013245, -0.08385300636291504, -1.0334771871566772, 0.699844241142273, 0.5044094920158386, -0.22276528179645538, 0.27593857049942017, -0.18901848793029785, 0.4795989394187927, 0.2363101989030838, 0.028389349579811096, 0.05918004736304283, -0.48108986020088196, -0.3277285099029541, -1.1404242515563965, -0.5040777325630188, 0.30546119809150696, -0.7959675192832947, -1.3134218454360962, 1.3107082843780518, 0.6495463252067566, -0.789779543876648, 0.22077499330043793, 0.10508761554956436, 0.05771300569176674, -0.15920007228851318, 1.0304292440414429, 0.5552675724029541, 0.697299063205719, -0.04564935714006424, 0.2053457647562027, -1.022664189338684, 0.1293352097272873, 1.2087180614471436, -0.7002946138381958, -0.11644338071346283, 1.0644334554672241, 0.4015239477157593, 0.9190592765808105, 0.15440142154693604, 0.12267757207155228, 0.17925363779067993, -0.27222582697868347, -0.8998188972473145, -0.022267960011959076, -0.6255636215209961, 1.2961969375610352, 0.8988956809043884, -0.5301932692527771, -0.6603351831436157, 0.07633382827043533, -0.43799299001693726, -0.12557710707187653, -0.9342699646949768, -0.1892499178647995, -0.28184637427330017, -0.15694138407707214, -0.16584742069244385, 0.5860083699226379, 0.003186926944181323, 0.4293102025985718, 0.06386790424585342, -0.4255285859107971, -0.6828998327255249, 0.46882036328315735, -0.02156403474509716, 0.9938297271728516, -1.067525029182434, -1.2028499841690063, -0.5880053043365479, 0.21615248918533325, 1.222118854522705, 0.05374835431575775, 0.24448835849761963, 0.6660608649253845, 1.027146577835083, -0.15842777490615845, -0.09098254144191742, 1.1712063550949097, -0.07076731324195862, 0.24074803292751312, 0.27661508321762085, -0.07382220774888992, 1.1455752849578857, -0.8866199851036072, -1.4610393047332764, -0.8302465677261353, 0.7033702731132507, 1.360188603401184, 1.0261270999908447, 0.7394004464149475, -0.4913482964038849, -0.11752370744943619, -0.36506959795951843, -0.2950611412525177, -0.5064151883125305, -1.3092421293258667, -1.1046452522277832, -0.7214487195014954, -0.39546242356300354, -0.030075950548052788, -0.043833840638399124, 0.7541297674179077, -0.17520342767238617, 1.1670310497283936, 1.089394450187683, -0.4607575535774231, -0.2641187310218811, 0.1871170997619629, 0.10280314832925797, -0.64613938331604, 0.6181307435035706, 0.3878871500492096, -1.1958975791931152, -1.103858470916748, -0.5346891283988953, 0.38759171962738037, 0.7857164740562439, -0.2080487459897995, 0.18105341494083405, -1.0829285383224487, -0.8181836605072021, -0.5725480914115906, 0.43496909737586975, -0.6484829187393188, -0.00868045911192894, -0.7802608013153076, 0.6299617886543274, 0.6543054580688477, 0.20680750906467438, -0.5621485114097595, 0.6819249391555786, -0.24281856417655945, -0.9198704957962036, -0.06849287450313568, 0.44778746366500854, 0.5111603140830994, -0.5211231708526611, -0.1252596527338028, -0.09287356585264206, -0.6573967933654785, -0.4856627285480499, 0.48612597584724426, 0.4003094732761383, 0.5407381653785706, -0.058961931616067886, 0.10681300610303879, 0.7824077606201172, -0.2758081257343292, -0.2550637125968933, -1.2225114107131958, 0.44809916615486145, 0.22706806659698486, 0.5662025213241577, 0.33714181184768677, 0.473732054233551, 0.2378183901309967, -0.6159284114837646, 0.4753240942955017, -0.15945124626159668, 0.8430927395820618, -0.671436071395874, -0.4661659002304077, -0.057938236743211746, -0.30120086669921875, 0.046863406896591187, -0.7669684886932373, -0.3612707853317261, 0.1378912627696991, -1.0316158533096313, -0.3467460870742798, 0.7922822833061218, 0.7094976305961609, -0.498473197221756, -0.5164145827293396, -0.1275794506072998, 1.4253652095794678, -0.01078291330486536, 0.36340010166168213, -0.4474063217639923, -0.08053357899188995, 0.39625078439712524, -1.0711692571640015, -0.07635865360498428, 0.42052778601646423, -0.6968849897384644, 0.7428817749023438, -1.7758657932281494, 0.4612374007701874, -0.5084996223449707, 0.363979309797287, 0.19919753074645996, -0.024587005376815796, 0.4571266770362854, 0.12467038631439209, 0.12736426293849945, 0.1727534830570221, 0.10562735050916672, 1.5517973899841309, -0.6320797801017761, -0.6911035180091858, -0.26111993193626404, 0.10917109251022339, -0.15089505910873413, -0.6398153901100159, -0.1980615109205246, 0.34242069721221924, -0.2293481081724167, -0.38193535804748535, 0.029821308329701424, -0.48704949021339417, 1.5401854515075684, -0.008868497796356678, 0.6482992768287659, 0.8878554105758667, 0.27975767850875854, -0.4793838560581207, -0.16121715307235718, -0.08210653066635132, -0.04513199254870415, -0.9007839560508728, -0.5487270951271057, 0.48810604214668274, 0.18670415878295898, 0.38172489404678345, -0.32292112708091736, 0.772001326084137, 0.5760085582733154, 0.1230907067656517, -0.40204057097435, 0.23140670359134674, 0.5133352875709534, 1.1313186883926392, 0.5150042176246643, -0.19572865962982178, -0.3381222188472748, 0.7217987179756165, -1.0490645170211792, 0.3601731061935425, 0.9264348149299622, -0.39157891273498535, 1.638232707977295, -1.9428824186325073, -1.1593682765960693, 0.688587486743927, -0.013487596996128559, 0.494163453578949, 0.8696147203445435, 0.45416340231895447, -1.0971566438674927, 0.4631153345108032, -0.013432592153549194, -0.24890664219856262, 0.7552162408828735, -0.48662975430488586, 0.580401599407196, 0.39074763655662537, -0.7788780927658081, 0.4662535786628723, -0.266048401594162, -0.3846413791179657, -0.10676097869873047, -0.012154252268373966, 0.2730866074562073, 0.5868884921073914, -0.10138362646102905, 1.1172157526016235, -0.9415811896324158, -0.8370080590248108, 0.6413023471832275, -0.9473183155059814, -0.04832611232995987, -0.15467359125614166, -0.6485349535942078, -0.06204894557595253, -1.3430718183517456, -0.21236172318458557, 0.5433341860771179, -0.604543149471283, -0.8796687126159668, -0.3952445387840271, -1.3510264158248901, -0.1479892134666443, 1.4081803560256958, 0.9289931654930115, 0.15737831592559814, 0.03898801654577255, 0.19201558828353882, 0.5369185209274292, -0.4666757583618164, -0.23874109983444214, 0.17199711501598358, -0.09364590793848038, 0.27011361718177795, -1.4233142137527466, -0.73832768201828, 0.9515516757965088, 0.43310022354125977, -0.4140307903289795, 0.20771047472953796, 1.096967101097107, 0.6294011473655701, -0.5008636116981506, -0.68630051612854, 0.7675292491912842, -0.6173820495605469, -0.06266728788614273, 0.38710683584213257, -0.3170788884162903, -0.3465158939361572, -0.3820890486240387, -1.680869698524475, 0.9104282259941101, -0.29422497749328613, -0.5127888321876526, 1.409631609916687, 0.03774047642946243, 0.4306962788105011, 0.4662935733795166, 0.11695072799921036, 0.30591103434562683, -0.07313480973243713, -0.02645448036491871, -1.2278375625610352, 0.6136726140975952, 0.31187042593955994, 0.4304606020450592, -0.13666854798793793, 0.9010434746742249, -0.3706202507019043, -0.19755230844020844, -0.405109167098999, 0.7491549253463745, 0.16773074865341187, 0.5460847020149231, -0.13693514466285706, -1.1117541790008545, 0.45699143409729004, -0.9878929257392883, -0.20523466169834137, -0.0635092556476593, 0.2941643297672272, 0.6863297820091248, -0.20510461926460266, -0.3356385827064514, -0.523530125617981, -0.06897177547216415, 0.11060810834169388, -0.60885089635849, 0.7223570942878723, 0.533807098865509, 0.0588577538728714, -0.10193531960248947, -0.11228933185338974, -0.17838160693645477, 0.14700505137443542, 0.10754063725471497, 0.3274797797203064, -1.1347179412841797, 0.44465371966362, -0.35159793496131897, -0.5377413630485535, -0.10863450914621353, -0.334865540266037, 0.5212100744247437, -1.055786371231079, -1.3473355770111084, -1.1952106952667236, 0.8027698993682861, 0.7231080532073975, -0.6980106830596924, 0.554046630859375, 0.4468895494937897, -1.7898436784744263, -0.43469610810279846, 0.27021390199661255, -0.7107574343681335, 0.1606658697128296, -1.0589088201522827, 0.6734235882759094, -0.5144889950752258, 0.4543992877006531, -0.2702443301677704, 1.4987528324127197, -1.5829541683197021, -1.5158737897872925, -1.2047632932662964, -0.4390794336795807, 0.8184471130371094, 0.5883077383041382, -0.8285977244377136, 1.371700644493103, 0.6221399903297424, -0.7929818630218506, -0.532993733882904, -0.03777867183089256, -0.8371410369873047, 0.7470313906669617, 0.11759065836668015, 1.3062745332717896, 0.016925107687711716, 1.0001469850540161, -0.5195983648300171, 0.5404593348503113, 0.6662275791168213, 0.8064427971839905, -0.26640066504478455, 0.04157977178692818, 0.05923767760396004, 0.666826069355011, -0.9214720129966736, -0.3794407844543457, -0.10929951816797256, -0.6141029596328735, -1.0760493278503418, 0.734032928943634, 0.6030362844467163, -1.4450829029083252, 0.16858047246932983, -0.8466289043426514, 0.21950998902320862, -0.24534974992275238, 0.7631766200065613, 0.19931797683238983, -0.6778449416160583, -0.24097777903079987, -0.5452777147293091, 0.2337120622396469, -1.1505126953125, -0.2857121229171753, 0.34735625982284546, 0.2992924451828003, -0.9556368589401245, 0.7436067461967468, 0.6472596526145935, -0.0676969587802887, -1.4291832447052002, 1.5486211776733398, 1.2763817310333252, -0.011301005259156227, -0.427224338054657, 0.15274085104465485, 0.4285111725330353, 0.7573146224021912, -1.1816314458847046, 1.0397993326187134, -0.9158259034156799, 0.11372324079275131, 0.4356127381324768, -0.691055953502655, -1.0043143033981323, -0.26421016454696655, -1.00931715965271, 1.1223760843276978, -0.006009859032928944, -0.7259754538536072, -0.339509516954422, 0.8672857880592346, -0.003265539649873972, -0.4582866430282593, 0.20875787734985352, 0.7240942716598511, 0.10688062757253647, -0.18466047942638397, -0.0827069953083992, 0.765788733959198, -1.0190247297286987, 0.09210189431905746, 0.5019468069076538, -0.023701580241322517, 0.2540932595729828, -0.3953944444656372, -1.2246569395065308, 0.2980775535106659, -0.9662740230560303, -1.055336594581604, 0.34765610098838806, -0.6747982501983643, -1.3924530744552612, 0.8165743350982666, 0.2889444828033447, -0.5074744820594788, -0.22149495780467987, 0.7800756692886353, -0.22422684729099274, 0.24522413313388824, 0.0850445032119751, -0.3012438118457794, 0.36056220531463623, -0.03980916365981102, -0.2550833523273468, -0.6107678413391113, 0.2724355459213257, 0.22125451266765594, 0.029604393988847733, -0.4513702094554901, -0.196455180644989, 0.3941453993320465, -0.06226968765258789, -0.5007581114768982, 0.38451090455055237, 0.2199459969997406, 0.3902153968811035, 0.12200167775154114, -0.8759517669677734, -0.28093162178993225, 1.3983234167099, 0.7789929509162903, -0.14227207005023956, -0.6815221309661865, -0.2689324617385864, 0.21006765961647034, -0.610990047454834, 0.6535589694976807, 0.5813549757003784, 0.29080304503440857, -0.09040916711091995, -0.5673455595970154, -0.01888432912528515, -1.3181904554367065, -0.2388005405664444, 0.24408243596553802, 1.594740629196167, -0.0031498621683567762, 0.14600776135921478, 0.02451280690729618, -0.8076131939888, 0.32967081665992737, 0.41625991463661194, 0.37867605686187744, -0.15436090528964996, -1.2426459789276123, -0.6638695001602173, -0.31805774569511414, 0.2512746751308441, 1.4534170627593994, -0.13443219661712646, -0.07608607411384583, 0.2684510350227356, -1.058003544807434, 0.5223305225372314, -0.15161781013011932, 0.20134909451007843, -0.42878684401512146, 1.1257447004318237, 1.253887414932251, -0.07418952137231827, 0.5787588357925415, -0.17128169536590576, 1.0042062997817993, -0.48845645785331726, -0.28350475430488586, -0.40624764561653137, -0.5574509501457214, 0.17206445336341858], [-0.3325466513633728, 1.1475677490234375, -1.857102870941162, -0.10603530704975128, 1.1548213958740234, 1.0030806064605713, 0.7290997505187988, -0.1928452104330063, 0.9990417957305908, -0.561362087726593, -0.6647506356239319, 0.4353960156440735, 0.5952239036560059, 1.113531231880188, 0.11834748089313507, 0.3473484516143799, -0.16518376767635345, 0.2190011590719223, 0.8961648941040039, 0.8127540946006775, 0.4414004981517792, 0.21200232207775116, 0.36203667521476746, 0.46758201718330383, -0.6254160404205322, 0.7178063988685608, -1.254713773727417, -0.5394311547279358, -0.6504813432693481, -0.6517241597175598, 1.5257506370544434, -1.039556622505188, 0.3397528827190399, 0.3960466980934143, -1.1581602096557617, -0.23564577102661133, 0.9668089151382446, 0.7385161519050598, 0.7678337097167969, 0.32219573855400085, 1.6273547410964966, 0.08742201328277588, 0.02748572826385498, -1.5556319952011108, -0.7725619673728943, 0.45768460631370544, 0.5930878520011902, -0.8788565993309021, 0.09394339472055435, -0.36220496892929077, 0.2218918651342392, -1.1411023139953613, 0.4804348349571228, 1.4336048364639282, 1.1330254077911377, -0.04331769421696663, 1.0100468397140503, 0.24545007944107056, 0.20263932645320892, -0.6365178227424622, 1.3012347221374512, 0.00878587830811739, -1.1129341125488281, 1.3519766330718994, -0.20517657697200775, 0.05422469601035118, -0.2543560564517975, 0.23228950798511505, 0.11836415529251099, 0.5018129944801331, 0.9919214248657227, -0.2789636552333832, -0.991411030292511, 0.5467459559440613, -1.2324378490447998, 0.12732386589050293, 0.8139355182647705, 1.1240776777267456, 1.0938713550567627, 0.772696852684021, -0.5906627178192139, 0.44002750515937805, 0.3892833888530731, -0.1467302143573761, -0.2001507580280304, 0.8299294114112854, 0.3108998239040375, -0.5656330585479736, -0.32886675000190735, 2.082085609436035, 0.27655041217803955, 0.18156886100769043, 0.039682816714048386, -0.7236434817314148, -0.10680259019136429, -0.7762575745582581, 0.23292076587677002, 0.08662277460098267, -0.5677726864814758, -0.6656434535980225, -0.4377673864364624, -0.41319364309310913, 0.5930804014205933, -0.7098953723907471, 0.8902527689933777, 0.7929258942604065, 0.3870266079902649, 0.06553537398576736, -0.4179306626319885, -0.5883084535598755, -0.7183752059936523, 1.1290593147277832, -0.22426949441432953, -0.6063455939292908, -0.8627788424491882, 0.23425403237342834, 0.7843374013900757, -0.019688595086336136, 0.6475968956947327, -0.03672373667359352, -0.6886370778083801, 0.29458582401275635, -0.03967787325382233, 0.9899882078170776, 1.0568506717681885, 0.3598072826862335, -0.23229482769966125, -0.2827753722667694, 0.6081237196922302, 0.24533826112747192, 0.2428569346666336, -0.3786182105541229, 0.009220506995916367, 1.0439201593399048, -0.2885611355304718, 1.4221818447113037, 0.2114037573337555, -0.5058985352516174, -0.13690729439258575, 0.167189821600914, 0.6054229736328125, 0.11053558439016342, -0.28312721848487854, -0.5709908604621887, -0.23867465555667877, -0.44311168789863586, 0.2736858129501343, -0.6004495620727539, -0.8371387720108032, 0.008547456935048103, -0.6610527038574219, 0.18318451941013336, 0.004859474953263998, 0.9655944108963013, 0.27057480812072754, 0.19532880187034607, 0.4763464629650116, -0.11316367983818054, 1.0670950412750244, 0.14273063838481903, 0.4095790982246399, 0.321656197309494, -0.4613288938999176, 0.9735644459724426, 0.04911895841360092, -0.1719294637441635, 0.28569960594177246, 0.5078704357147217, -0.05494432523846626, 1.1396565437316895, -0.09199491888284683, -0.8574458956718445, -0.36218246817588806, 0.5306826233863831, 0.6979961395263672, -0.5512257218360901, 1.4165421724319458, -0.7949687838554382, -1.2518911361694336, -0.5027640461921692, 0.43036001920700073, -0.14291736483573914, 0.2744031250476837, -0.20042334496974945, 0.5915127396583557, -0.0013059494085609913, 0.015045738779008389, -0.2212415635585785, -0.6262454390525818, -0.6430484652519226, -0.6405141949653625, -0.7544960379600525, -0.8569340109825134, -0.08028934895992279, -0.28052884340286255, -0.9247092604637146, 0.01724628545343876, -0.3280923664569855, -0.41186875104904175, 0.05617525428533554, -0.019516728818416595, -0.5941856503486633, -0.6918426752090454, -0.25317516922950745, -0.1591372936964035, 0.7653193473815918, -1.1442781686782837, 0.5026365518569946, -1.0716966390609741, 0.3782176673412323, 1.3158814907073975, 0.361102432012558, -0.9315563440322876, 0.8037692904472351, 0.11609841138124466, -1.375111699104309, 0.6664828658103943, -0.04420781135559082, -0.37704747915267944, 0.17270639538764954, 0.06705782562494278, -0.15657855570316315, 0.33103683590888977, 0.26127949357032776, 0.6435391902923584, -0.05512254312634468, -0.5031291246414185, -1.2062121629714966, -0.5967741012573242, 0.24924622476100922, 0.07389120757579803, -1.5526371002197266, 1.0745850801467896, 0.7033619284629822, -0.8989676833152771, -0.4323361814022064, 0.15710791945457458, -0.003501547034829855, 0.46081194281578064, 1.4811197519302368, -0.05496244877576828, 1.5601341724395752, 0.0068191951140761375, -0.3600258529186249, -0.35624590516090393, 0.09487280249595642, 1.2018505334854126, -0.5930131673812866, -0.14409948885440826, 0.7311229705810547, 0.5959967374801636, 0.08117393404245377, -0.41544926166534424, 0.09383517503738403, 0.07990650832653046, -0.5224334001541138, -0.6485506296157837, -0.33492782711982727, -0.8408094644546509, 0.9744491577148438, 0.4599984586238861, -0.8775821924209595, -0.6670503616333008, 0.3268376886844635, 0.2887260913848877, -0.19909118115901947, -0.49185970425605774, -0.07975813001394272, 0.17713792622089386, -0.17149069905281067, 0.4058207869529724, 0.6499080657958984, -0.2717834413051605, 0.4714356064796448, -0.395679771900177, -0.5866969227790833, -1.1562718152999878, 0.2932629883289337, 0.07257398962974548, 1.345026969909668, -0.5472099184989929, -0.6303920149803162, -0.06164437532424927, 0.12557320296764374, 1.1643956899642944, -0.2519601881504059, 0.1802327185869217, 0.4186953902244568, 0.8929062485694885, 0.17642997205257416, 0.48488569259643555, 0.26763826608657837, -0.10751274228096008, 0.6542291045188904, 0.3292052447795868, 0.7043895125389099, 0.9878157377243042, -0.5110652446746826, -1.6295757293701172, -0.18947218358516693, 0.33097338676452637, 1.0092172622680664, 0.6278002858161926, 1.0296260118484497, -0.20895534753799438, -0.1163087859749794, -0.25639277696609497, -0.33910855650901794, -1.2025279998779297, -1.190161108970642, -0.7612593770027161, -0.2544683516025543, -0.5078026056289673, 0.22264687716960907, 0.378734290599823, 0.6451529264450073, -0.6533135771751404, 0.7161770462989807, 0.7631517052650452, -0.180576890707016, -0.7624399662017822, -0.22454006969928741, -0.23867842555046082, -0.26070457696914673, 0.2949915826320648, 0.546617329120636, -0.9384997487068176, -0.7810961008071899, -0.1505793333053589, 0.12864413857460022, 1.1631561517715454, -0.4115121066570282, -0.1786327213048935, -1.1058146953582764, -0.9808844327926636, -0.6174379587173462, 1.1278152465820312, -0.30303052067756653, -0.19783741235733032, -1.0359818935394287, 0.8282420635223389, 0.5589456558227539, 0.038187175989151, -0.35177186131477356, 0.3302757740020752, 0.07309674471616745, -0.9490754008293152, -0.4827618896961212, 0.06921695917844772, 0.8371896147727966, -0.3200910985469818, 0.03107970580458641, -0.2527849078178406, -0.01590052805840969, -0.33335527777671814, 0.7015760540962219, 0.4296865165233612, 0.6190409660339355, 0.17368312180042267, -0.1686149388551712, 0.563068151473999, -1.058817744255066, 0.41066882014274597, -1.4514293670654297, 0.9213657379150391, 0.11669795960187912, 0.6364160180091858, -0.10655197501182556, 0.44198036193847656, 0.0194130539894104, -0.5482118725776672, -0.09576737880706787, -0.14152641594409943, 0.8971978425979614, 0.22739186882972717, -0.4169307053089142, -0.2606017291545868, 0.3000720739364624, -0.5780636668205261, -1.338189721107483, -0.36205247044563293, 0.15712840855121613, -0.7627663612365723, -0.6494085192680359, 0.750041127204895, 0.755912721157074, -0.17761071026325226, -0.40337300300598145, -0.1729217916727066, 1.417736291885376, 0.7333737015724182, -0.5511229634284973, 0.20409652590751648, -0.44858840107917786, 0.16275249421596527, -1.266241192817688, -0.3245481550693512, 0.10353364050388336, 0.1038941815495491, 1.014715552330017, -1.323669195175171, 0.2783588767051697, -0.5697046518325806, 0.5911732316017151, 0.3868759870529175, 0.38546526432037354, 0.6074114441871643, -0.23284050822257996, 0.08443186432123184, -0.2246542125940323, 0.5568742156028748, 1.836203694343567, -0.31968650221824646, -0.23735590279102325, 0.1688322126865387, 0.23226234316825867, 0.033087681978940964, -0.3635334074497223, -0.05354037508368492, 0.08030161261558533, -0.651785671710968, 0.029589787125587463, -0.27482685446739197, -0.3538035452365875, 1.0297952890396118, 0.4436381757259369, 0.36512091755867004, 0.9217795729637146, -0.013959885574877262, -0.6342560052871704, -0.09185969829559326, -0.03173853084445, -0.14063851535320282, 0.22117607295513153, 0.09501217305660248, 0.09231124073266983, -0.1977582424879074, 0.18118348717689514, 0.005443125497549772, 0.5091070532798767, 0.24126841127872467, 0.22317557036876678, -0.25988513231277466, 1.0700786113739014, 0.41292616724967957, 0.6130008101463318, 0.3641800582408905, 0.11737468093633652, -1.0354644060134888, 0.594580888748169, -1.0474525690078735, 0.52193683385849, 0.6777603626251221, -0.3779717683792114, 1.0246754884719849, -1.7810243368148804, -0.9208478927612305, 0.3454059660434723, 0.23259001970291138, -0.20543621480464935, 0.8558028340339661, 0.33898141980171204, -0.5331677794456482, 0.5849872827529907, -0.24883747100830078, -0.14664475619792938, 0.13568249344825745, -0.37484994530677795, -0.03708566725254059, 1.083246111869812, -0.42329174280166626, 0.21714045107364655, -0.7259463667869568, -0.400686115026474, 0.3389376997947693, -0.6906411051750183, 0.05130116641521454, 0.4108511805534363, 0.11270630359649658, 0.6195064187049866, -1.4098435640335083, -1.1099934577941895, 0.8517580628395081, -0.17309129238128662, -0.6260930895805359, 0.033445414155721664, -0.7250292301177979, 0.03758765384554863, -0.4880400598049164, -0.9026317596435547, 0.423352986574173, -0.05402427911758423, -0.7145678997039795, -0.8374912738800049, -1.0224522352218628, -0.6079474091529846, 0.17614634335041046, 0.9259108304977417, 0.49474552273750305, -0.2078719288110733, 0.003598135896027088, 0.1303045153617859, -0.4668751657009125, -0.3517354428768158, 0.6577786207199097, 0.23376142978668213, -0.4250808656215668, -1.196700930595398, -1.1793066263198853, 0.8583403825759888, 0.5939056277275085, -0.18125180900096893, 0.6091514229774475, 1.1109824180603027, 1.2524566650390625, -0.6417746543884277, -0.8434239029884338, 0.45490092039108276, 0.0582079254090786, 0.9617360830307007, 0.5320205688476562, 0.04683953523635864, -0.30092984437942505, -0.5828888416290283, -1.6087816953659058, 1.019066333770752, 0.3373483717441559, -0.8914834856987, 0.6356449723243713, 0.40684974193573, 0.46879667043685913, 0.2650231122970581, -0.41965243220329285, -0.28024107217788696, 0.02431221678853035, -0.4015447199344635, -1.3007789850234985, 0.5729032158851624, 0.3877604901790619, 1.1342374086380005, -0.29196739196777344, 0.5360214114189148, -0.2895590662956238, -0.5157634615898132, -0.4187767207622528, 0.7705760598182678, -0.03436585143208504, 0.7013692259788513, 0.45198556780815125, -0.5768561959266663, 0.04221823439002037, -0.7253867387771606, -0.48007193207740784, -0.036980655044317245, 0.526636004447937, 0.43562373518943787, -0.05449918657541275, 0.14408855140209198, -1.02971613407135, -0.5754131078720093, -0.3620823919773102, -0.29252496361732483, 0.1498253345489502, 0.11780354380607605, -0.15897482633590698, 0.28557294607162476, -0.2996728718280792, 0.14506895840168, 0.05585823208093643, -0.5168740153312683, 0.08982304483652115, -1.3420073986053467, -0.3202942907810211, -0.19429269433021545, -0.5130681991577148, -0.28944775462150574, -0.3911519944667816, 0.5767024159431458, -0.5229462385177612, -1.3211175203323364, -1.0914311408996582, 0.6677314043045044, 0.8705406188964844, -0.6036314368247986, 0.9301276803016663, 0.42784348130226135, -1.2408671379089355, -0.1978015899658203, -0.00805596262216568, -0.6863577365875244, 0.16629968583583832, -0.6771942973136902, 0.2366245687007904, -0.11040891706943512, 0.5604029297828674, -0.12612828612327576, 1.201847791671753, -0.9702487587928772, -0.7657327055931091, -1.4081833362579346, -0.4441881477832794, 1.026803731918335, 0.5083571672439575, -0.7796548008918762, 1.2711372375488281, 0.5338091850280762, -0.2184993475675583, -0.5265316367149353, -0.5776867866516113, -0.5474275350570679, 0.16481584310531616, 0.3167167901992798, 0.31389692425727844, 0.818873405456543, 1.0652270317077637, -0.10852134972810745, 0.19742010533809662, 0.31121930480003357, 0.357587993144989, -0.2480965256690979, -1.2132186889648438, -0.07932671159505844, 0.8853384852409363, -1.1497188806533813, -0.6566147208213806, -0.2768709659576416, -0.16915716230869293, -1.4078656435012817, 0.36491823196411133, 0.6346323490142822, -1.1646544933319092, -0.1651926040649414, -0.036317966878414154, 0.29899752140045166, -0.18228918313980103, 0.8768267631530762, 0.26802513003349304, -0.8249809741973877, -0.16925941407680511, -0.20332223176956177, 0.5174137949943542, -1.045100450515747, 0.3670653998851776, 0.4747961759567261, -0.4276392459869385, -0.4570762515068054, 0.9719372391700745, 0.2921554148197174, -0.300051748752594, -0.31153520941734314, 2.026021957397461, 0.4596637487411499, -0.3535909354686737, -0.3835792541503906, 0.5546426177024841, -0.41655030846595764, 1.0727953910827637, -0.7568860650062561, 0.4106391370296478, -1.004655361175537, 1.012073040008545, 0.393335223197937, -0.5686022639274597, -0.02868635207414627, -0.1139340028166771, -0.48353147506713867, 0.6152141690254211, 0.09529617428779602, -0.9153634905815125, -0.577842116355896, 0.8680257797241211, 0.22371703386306763, -0.22030024230480194, 0.0018130983226001263, 0.15011611580848694, 0.6538481712341309, -0.4414406716823578, 0.1441131979227066, 0.5650719404220581, -0.8747514486312866, -0.23942427337169647, -0.006214940454810858, 0.14411064982414246, -0.18427257239818573, 0.1841364949941635, -1.331104040145874, 0.9944459199905396, -0.8080492615699768, -1.0275291204452515, 0.4711361825466156, -0.6304340958595276, -0.6746814846992493, 1.1595275402069092, -0.12130964547395706, -0.3880171775817871, -0.387033075094223, 0.3116850256919861, -0.15995711088180542, 0.9457730054855347, -0.5045591592788696, -0.40790989995002747, 0.8298075795173645, -0.8305208086967468, -0.37670478224754333, -0.3273133933544159, 0.01598411053419113, 0.4520534574985504, 0.21826253831386566, -0.23437625169754028, 0.542631983757019, 0.8605228662490845, -0.0031069107353687286, -0.6992157101631165, 0.3350341022014618, -0.06986626237630844, -0.39334800839424133, 0.7245811223983765, -0.5455222725868225, -0.21263088285923004, 0.6780257225036621, 0.7073168158531189, -0.5326212644577026, -0.5756305456161499, -0.469819039106369, -0.06343573331832886, -0.5033063292503357, 1.1205706596374512, -0.18453150987625122, 0.6890074014663696, -0.4970299005508423, -0.9269921183586121, -0.47502636909484863, -0.14461426436901093, 0.45951706171035767, 0.14628902077674866, 0.7873265743255615, 0.3275836408138275, 0.1378999501466751, -0.836320161819458, -1.1289160251617432, 0.6215503811836243, 0.37211692333221436, 0.37841883301734924, 0.0524335578083992, -0.9022608399391174, -0.606309175491333, -0.48982855677604675, 0.03319954127073288, 1.1159228086471558, -0.16657136380672455, -0.36685019731521606, 0.19449454545974731, -0.8604959845542908, 0.27650198340415955, -0.35005131363868713, -0.24371442198753357, 0.16748423874378204, 0.7674314975738525, 0.9381404519081116, -0.18584850430488586, -0.014493913389742374, -0.25521472096443176, 1.0965216159820557, -0.835873007774353, -0.5675379037857056, -0.7617911696434021, -0.6214938759803772, -0.22525525093078613], [-0.22595655918121338, 1.2779412269592285, -1.9489370584487915, -0.6965513825416565, 1.8436301946640015, 0.47301051020622253, 0.8120675683021545, -0.322091668844223, 0.34445828199386597, -0.2837282419204712, -0.222803995013237, 0.21456748247146606, 0.35755616426467896, 0.9958725571632385, 0.034346967935562134, 0.5714792609214783, 0.6725664734840393, 0.059331029653549194, 0.3566279411315918, 0.5472231507301331, 0.5739780068397522, -0.0965016633272171, 0.5827170014381409, 0.3921371102333069, 0.12345978617668152, 0.5249811410903931, -1.524301290512085, -0.5711864233016968, -0.6053889393806458, -1.1567442417144775, 1.3899511098861694, -0.9158862233161926, 1.0358539819717407, 0.5811600089073181, -1.8407410383224487, 0.24431705474853516, 1.3260550498962402, 0.37494197487831116, 0.23204709589481354, 0.049659986048936844, 1.7600897550582886, -0.07955619692802429, -0.3162144422531128, -1.6164188385009766, -0.17671504616737366, -0.5748178362846375, 0.08813750743865967, -0.9681640267372131, -0.15519556403160095, -0.19267427921295166, 0.4481337368488312, -0.7012147307395935, 0.4169607162475586, 1.142318844795227, 0.4183349609375, -0.4294484555721283, 1.0095186233520508, 0.3956908583641052, -0.1562352329492569, -0.7442753314971924, 1.1705938577651978, 0.38566944003105164, -1.1277217864990234, 0.9822776913642883, 0.10696608573198318, 0.591587483882904, -0.6617335677146912, 0.20469549298286438, 0.06129293143749237, 0.6507472991943359, 0.5426563620567322, 0.5660567879676819, -0.515022873878479, -0.18367573618888855, -0.580134391784668, 0.25794386863708496, 0.5295868515968323, 0.3037498891353607, 0.726799726486206, 0.32287493348121643, -0.4874515235424042, -0.07023744285106659, 0.7023493647575378, 0.15926408767700195, 1.0077478885650635, 0.3641965687274933, 0.1783609390258789, -0.9031981825828552, -0.9829789996147156, 1.992925763130188, 0.36771339178085327, 0.05871112272143364, 0.7806175351142883, -0.4133130609989166, -0.194059818983078, -0.8886716365814209, 0.5539349913597107, 0.07525607943534851, -0.6938267946243286, -0.6730806827545166, -0.28829604387283325, -0.5081658959388733, 0.9434158802032471, -0.7085352540016174, 0.4578841030597687, 0.5170304179191589, 0.7526606917381287, -0.047996923327445984, -0.3211504817008972, -0.6451578736305237, -0.48523473739624023, 0.5525407195091248, -0.9168575406074524, -0.5309910774230957, -0.5685689449310303, 0.6788490414619446, 0.9094899296760559, -0.6525518298149109, 0.6718311309814453, 0.6940147280693054, -0.8584951758384705, 0.22625315189361572, -0.3292534351348877, 0.8886838555335999, 1.0460418462753296, 0.9307523369789124, -0.5348079800605774, -0.2145390510559082, 0.5046659111976624, 0.03685034066438675, 0.35669633746147156, -0.27706870436668396, -0.5063984394073486, 1.2512279748916626, -0.8192771077156067, 1.29951012134552, -0.19211521744728088, -0.7619565725326538, 0.41908299922943115, -0.19769106805324554, 0.1872304528951645, -0.715790867805481, -0.48836085200309753, -0.3790190517902374, 0.34174829721450806, -0.21244388818740845, 0.15786872804164886, -0.5425338745117188, -0.20716214179992676, 0.42413246631622314, -0.8538134098052979, 0.39096522331237793, -0.03428007289767265, 1.0894206762313843, 0.14326483011245728, -0.5191704630851746, 0.5443108677864075, 0.4015450179576874, 0.781720757484436, 0.0033241109922528267, 1.241822361946106, -0.16426712274551392, -1.1394703388214111, 0.6077043414115906, -0.5173979997634888, -0.06551642715930939, 0.7277569770812988, 0.7990567684173584, 0.1887071132659912, 0.39392128586769104, -0.3510555922985077, -0.8336322903633118, -0.2822931408882141, 0.6806740760803223, -0.012062796391546726, -0.5054986476898193, 1.013756513595581, 0.03106326423585415, -0.9747933149337769, -1.2119789123535156, 1.0617790222167969, -0.37130504846572876, 0.643160343170166, -0.25541967153549194, 0.9763620495796204, 0.07426581531763077, 0.2173740118741989, 0.052576519548892975, -0.6431683301925659, -0.5512029528617859, -0.5425652265548706, -0.5403233766555786, -0.5245187878608704, 0.1579877883195877, -0.45700788497924805, -1.3516695499420166, -0.1323215663433075, -0.906880259513855, 0.0320960097014904, 0.20227494835853577, -0.21542710065841675, -0.8715160489082336, -0.3992233872413635, 0.036467526108026505, -0.37926793098449707, 0.4354170262813568, -0.7310134768486023, 0.4568483531475067, -0.8202637434005737, -0.12939168512821198, 1.0662950277328491, 0.07931375503540039, -1.1073741912841797, 0.6273832321166992, -0.5555804371833801, -1.4137204885482788, -0.10506866127252579, -0.40452492237091064, -0.8752299547195435, 0.9697396755218506, -0.30050885677337646, -0.04405777528882027, 0.5235917568206787, 0.1841270625591278, 0.1665652096271515, -0.7415754795074463, -1.1747990846633911, -1.2339377403259277, -0.45110422372817993, -0.5537204742431641, -0.3448706269264221, -1.0408343076705933, 0.6884670257568359, 0.8194428086280823, -0.6710988879203796, -0.07247138768434525, 0.2329411804676056, -0.15292099118232727, 0.19926424324512482, 1.432364583015442, 0.3978811204433441, 1.1852632761001587, 0.07255414128303528, -0.6089982390403748, -0.06339847296476364, 0.41880297660827637, 0.8418523073196411, -0.9431755542755127, 0.4714600443840027, 0.6099175214767456, 1.284621000289917, 0.07772302627563477, 0.035268113017082214, -0.5279501676559448, -0.24085722863674164, -0.777516782283783, -0.08801577240228653, -0.518619179725647, -0.1878836452960968, 1.0222707986831665, 1.3663581609725952, -0.865394115447998, -0.3310246765613556, 0.8035131096839905, -0.1963958889245987, -0.49410074949264526, -0.4013475179672241, -0.39992770552635193, -0.37600234150886536, -0.06644969433546066, -0.526653528213501, 0.5368887782096863, 0.018344927579164505, 0.4849753677845001, -0.758033037185669, -0.6550741195678711, -0.2419092059135437, -0.005352423992007971, -0.13972830772399902, 1.2593276500701904, 0.19947469234466553, -0.47385966777801514, 0.08204133808612823, -0.602443277835846, 1.4231163263320923, -0.2119375467300415, 0.18075360357761383, 0.5755013227462769, 1.1577823162078857, 0.4612928628921509, 0.6782435774803162, 0.06987923383712769, 0.7528986930847168, 0.10085894167423248, -0.10807215422391891, 0.6074055433273315, 1.062612771987915, -1.3733088970184326, -1.217868447303772, 0.24753768742084503, 0.2743728756904602, 1.340514898300171, 0.6183100342750549, 0.9311048984527588, 0.39737406373023987, -0.3284927010536194, -0.5712749361991882, 0.04719328135251999, -0.8103761672973633, -0.5256078839302063, -0.6800999641418457, -0.5514233112335205, -0.24744974076747894, -0.2535359561443329, 0.6136343479156494, 0.23121139407157898, -1.1478567123413086, 0.8790820837020874, 0.9029361009597778, -0.6957843899726868, -0.8979241251945496, 0.02116408199071884, -0.10713831335306168, -0.9627605676651001, 0.4254849851131439, 0.8331330418586731, -0.5952525734901428, -0.6577160358428955, -0.10999014973640442, 0.30997833609580994, 0.23619380593299866, -0.29515185952186584, 0.309915691614151, -1.2010949850082397, -0.615179181098938, -0.12820127606391907, 1.5892106294631958, -0.1964154839515686, 0.01366343256086111, -0.125041663646698, -0.10376165807247162, 0.2642083466053009, -0.5330393314361572, -0.19642843306064606, 0.6570220589637756, -0.04284188896417618, -0.38526076078414917, -0.4435061514377594, 0.27278536558151245, 0.45593973994255066, -0.40366947650909424, 0.1375027894973755, 0.5353409051895142, -0.7138432860374451, 0.1828780174255371, 0.07640057057142258, 0.8879135251045227, 0.5278322100639343, -0.13481108844280243, 0.06456203758716583, 0.8250723481178284, -0.6201847195625305, 0.005278955679386854, -1.8499164581298828, 0.28309720754623413, -0.06308773159980774, 0.6306140422821045, 0.2730157673358917, 0.6162664890289307, 0.2380581945180893, 0.0984446108341217, -0.04036129638552666, 0.6774498820304871, 1.3140393495559692, 0.585338294506073, -0.4554349184036255, -0.20309551060199738, 0.4171411097049713, -0.7710187435150146, -0.8092033863067627, -0.21848982572555542, 0.38953495025634766, -1.4678623676300049, -0.14548833668231964, 1.1260991096496582, 0.631764829158783, -0.28146040439605713, -0.07231216132640839, 0.5036835074424744, 0.7509294152259827, 0.5239298939704895, -0.2026490420103073, -0.06920953840017319, -0.38703590631484985, -0.116523876786232, -0.36268091201782227, -0.818070113658905, -0.31846189498901367, 0.8122453689575195, 0.3725210726261139, -1.1585955619812012, -0.14221693575382233, -0.34735405445098877, 0.9706500172615051, 0.3674100637435913, 0.29356497526168823, 0.27812638878822327, -0.31641992926597595, 0.35162824392318726, -0.540747344493866, 0.29205286502838135, 1.2359567880630493, -0.02925041876733303, -0.2749767303466797, -0.03761104866862297, -0.20279301702976227, -0.11431851238012314, 0.36092621088027954, 0.12036275863647461, 0.10865955054759979, -1.070815920829773, 0.24150848388671875, -0.45880454778671265, -0.39164063334465027, 1.4608433246612549, 0.43855977058410645, 0.4014991819858551, 0.6655574440956116, -0.14020325243473053, -0.8092259764671326, -0.42962557077407837, -0.18074621260166168, -0.4257499575614929, -0.5137085914611816, 0.36400336027145386, 0.09270727634429932, -0.5252851843833923, 0.6152267456054688, 0.03888682648539543, 0.883910059928894, 0.0474289171397686, 0.35142940282821655, -0.21897944808006287, 0.9099902510643005, -0.3400450646877289, 1.0800087451934814, 0.9146003723144531, -0.2124934047460556, -1.308201789855957, 0.3238376975059509, -0.9694327116012573, 0.5540136098861694, 0.5235454440116882, 0.5615001320838928, 0.9375287294387817, -1.6296265125274658, -0.9672606587409973, 0.6292071342468262, 0.24992212653160095, 0.11865424364805222, 0.8323076367378235, 0.07627157121896744, -0.10101090371608734, 0.12894408404827118, -0.06447641551494598, 0.08610088378190994, 0.2797829806804657, -0.49750855565071106, 0.3433656692504883, 0.9213401079177856, -0.2790036201477051, 0.673334538936615, -0.5164416432380676, -0.04310445487499237, 0.13853572309017181, -0.6497107744216919, 0.20151448249816895, 0.5882937908172607, 1.0577455759048462, 0.8624695539474487, -1.3226217031478882, -1.443953037261963, 0.4271963834762573, -0.8629028797149658, 0.033548131585121155, -0.37504419684410095, 0.2172609120607376, -0.5509904623031616, -0.18569816648960114, -0.7921990156173706, 0.4761110246181488, -0.12210594117641449, -0.6855215430259705, -0.5245049595832825, -1.1927927732467651, 0.18602636456489563, 0.22707916796207428, 0.9456110596656799, 1.016216516494751, -0.020271196961402893, 0.1311812847852707, -0.002594997175037861, -0.4851086735725403, 0.11763408780097961, -0.055471085011959076, -0.1006273403763771, -0.15231016278266907, -1.3447235822677612, -1.0485647916793823, 0.392806738615036, 0.6867882013320923, 0.13453155755996704, 0.7689313292503357, 1.8195037841796875, 1.0095553398132324, -0.7070261240005493, -1.127978801727295, 0.15355229377746582, -0.6242225766181946, 1.0796380043029785, 0.46744364500045776, -0.2574843764305115, -0.6461935639381409, -0.6683841347694397, -1.280394196510315, 1.1844063997268677, 0.05095455422997475, -0.601729691028595, 1.1402758359909058, 0.8728000521659851, 0.23524688184261322, 0.6537492871284485, -0.980196475982666, 0.29481351375579834, 0.007827003486454487, -0.6870471835136414, -0.85467928647995, 0.996791660785675, -0.03414811193943024, 0.7398531436920166, -0.4429262578487396, 0.2773236930370331, 0.16205227375030518, -0.4983513355255127, 0.004632583819329739, 0.32149556279182434, -0.37224575877189636, -0.3595159947872162, 0.79793381690979, -0.4861253798007965, 0.013501753099262714, -0.42226001620292664, -1.1524051427841187, -0.30053234100341797, 0.6487897634506226, -0.13328994810581207, -0.0637010782957077, -0.3610992431640625, -0.4192216098308563, -0.8224899768829346, 0.07861977070569992, -0.7462249398231506, 0.580396831035614, 1.045348048210144, -0.09371688216924667, 0.3275796175003052, -0.24547089636325836, 0.18916745483875275, -0.35719752311706543, 0.013927341438829899, 0.526138424873352, -1.875027060508728, 0.14872397482395172, -0.1678415834903717, -0.5876169800758362, -0.0038177729584276676, -0.4264862835407257, 0.18595154583454132, -0.26956361532211304, -0.7730713486671448, -0.4908865690231323, 0.2742672860622406, 0.4893854260444641, -1.344186782836914, 0.4747227132320404, -0.3340451121330261, -1.1512178182601929, 0.30540382862091064, -0.5173180103302002, -0.613666832447052, -0.17070291936397552, -1.522260308265686, 0.33132413029670715, 0.8040663599967957, 0.3824176788330078, 0.4430670440196991, 0.5613356232643127, -0.7779680490493774, -0.6557008624076843, -0.1618819683790207, -0.14698681235313416, 0.9443091154098511, 0.6136499643325806, -0.7096275091171265, 1.4173780679702759, 0.43183794617652893, -0.37073829770088196, -0.44799333810806274, -0.39379364252090454, -0.4196270704269409, 0.10649248212575912, 0.6264704465866089, 0.6875694394111633, 0.8569654226303101, 1.5151865482330322, 0.31485363841056824, 0.1397397518157959, -0.024307694286108017, -0.05603986978530884, -0.7159218192100525, -1.2309060096740723, -0.012051844038069248, 0.34925273060798645, -1.0297353267669678, -0.8549997806549072, 0.06484410911798477, -0.7324303984642029, -1.2496469020843506, 0.041256073862314224, 0.8571844696998596, -0.718558132648468, 0.41200098395347595, -0.28196340799331665, -0.06973542273044586, -0.7566879987716675, 0.5523564219474792, 0.5527762174606323, -1.0414271354675293, -0.2282659262418747, 0.002323627471923828, -0.21277651190757751, -0.8535375595092773, 0.5367462038993835, -0.10430468618869781, -0.6567147970199585, 0.035455767065286636, 0.638876736164093, 0.7431285381317139, -0.48632314801216125, -0.07990571111440659, 1.7357121706008911, 0.6675856113433838, -0.18887236714363098, 0.02151103876531124, 0.513539731502533, -0.3945537209510803, 1.1638619899749756, -0.7591844201087952, 0.4222017824649811, -0.08603880554437637, 1.2295844554901123, -0.3816591203212738, 0.15101401507854462, 0.08274641633033752, -0.10633821785449982, -0.5304303169250488, 0.3276776671409607, 1.0416315793991089, -0.2335122674703598, -0.6989109516143799, 1.5329235792160034, -0.3019338548183441, -0.024368366226553917, 0.019490236416459084, 0.39574816823005676, 0.338356614112854, -0.3431277573108673, 0.5492601990699768, 1.0107611417770386, -0.8894453644752502, -0.15529344975948334, -0.2860664129257202, 0.14569419622421265, 0.06521715968847275, -0.19825957715511322, -1.6706204414367676, 0.8420143723487854, -0.6428760290145874, -0.5384411215782166, 1.1076067686080933, -0.8678325414657593, -0.1362774670124054, 0.2377464324235916, -0.2877020835876465, -0.6305151581764221, -0.06780577450990677, 0.5887370109558105, -0.26699304580688477, 0.09801025688648224, -0.13410788774490356, -0.12001296877861023, 0.8173764944076538, -0.8623303771018982, -0.3074016869068146, -0.13214778900146484, 0.10296447575092316, 0.20029491186141968, -0.17748916149139404, -0.49160265922546387, -0.20424368977546692, 0.7878425121307373, 0.07256285846233368, -0.5611744523048401, 0.6845314502716064, 0.2889861464500427, -0.4155252277851105, -0.17958377301692963, -0.1527993232011795, 0.12135335803031921, 0.8762306571006775, 0.2174811065196991, -0.689723014831543, -1.0751421451568604, -0.19380836188793182, 0.08945711702108383, -0.78668612241745, 0.9020208120346069, -0.5814735889434814, 0.9977226853370667, 0.07522723823785782, -0.2210739254951477, -0.6803673505783081, -0.23902396857738495, 0.3737374246120453, 0.04510785639286041, 0.11102087050676346, 0.4059906303882599, 0.474224328994751, -0.38473987579345703, -0.7720974683761597, 0.3709556758403778, 0.05223485082387924, -0.22488243877887726, 0.0837751179933548, -1.0669453144073486, -0.6024824976921082, -0.7412813901901245, 0.13959093391895294, 0.563596248626709, -0.31459954380989075, -0.5837003588676453, 0.6417203545570374, -0.7813180088996887, 0.12600500881671906, -0.12428256869316101, 0.2964061200618744, 0.2396450787782669, 0.7445461750030518, 1.1974667310714722, 0.23309268057346344, -0.11653488874435425, 0.13665270805358887, 1.177641749382019, -1.1570459604263306, -0.7067332863807678, -1.308471441268921, -0.3477844297885895, -0.34138551354408264], [-0.06099976971745491, 1.8071625232696533, -2.38008713722229, -0.3645763397216797, 1.1057273149490356, 0.25927072763442993, 1.6681348085403442, -0.16132476925849915, 0.8448131084442139, -0.24937136471271515, -0.08301485329866409, 0.1734294593334198, 0.43422386050224304, 0.7591099739074707, 0.01405502948909998, 0.4252603352069855, 0.7986986637115479, -0.29020562767982483, 0.09810633212327957, 0.5936726927757263, 0.13398213684558868, -0.3865649700164795, 0.34493446350097656, 0.25339433550834656, 0.247818723320961, 0.464641273021698, -1.3890881538391113, -1.0001320838928223, -0.8327843546867371, -0.7296884059906006, 1.1066830158233643, -1.4407655000686646, 0.0063066063448786736, -0.24450449645519257, -1.8001614809036255, 0.08538281917572021, 1.3002238273620605, 0.6428529620170593, 0.5157271027565002, -0.16107191145420074, 1.461594581604004, -0.05541728436946869, -0.20253922045230865, -1.6575299501419067, -0.5324439406394958, -0.32665395736694336, 0.15123946964740753, -1.0699841976165771, -0.01916830614209175, -0.42263275384902954, 0.7361276149749756, -1.2358894348144531, 0.09904562681913376, 1.144286870956421, 0.5305277705192566, -0.1990668922662735, 0.627801239490509, 0.034656353294849396, 0.16157925128936768, -0.7322498559951782, 1.8504455089569092, 0.41441798210144043, -0.9269285202026367, 0.9726337790489197, -0.3532979488372803, -0.34593915939331055, 0.1707228571176529, 0.3601263463497162, -0.3152313530445099, 0.43323737382888794, 0.5077776908874512, 0.4882980287075043, -0.4710785448551178, 0.3605201244354248, -1.2873448133468628, -0.28546014428138733, 0.615019679069519, 0.44111502170562744, 0.29947859048843384, 0.6818416714668274, -0.4073375165462494, 0.416572630405426, 0.6925945281982422, -0.4736422002315521, 0.6583181023597717, 0.924233078956604, 0.16951531171798706, -0.3556601405143738, -0.4328489303588867, 1.5409998893737793, -0.0888296589255333, -0.33177539706230164, 0.8209807872772217, -0.48367899656295776, -0.4200015962123871, -0.4348847270011902, 0.6439067125320435, 0.19866019487380981, -0.9330636858940125, -0.9101177453994751, -0.2311214804649353, -1.1847496032714844, 0.21824301779270172, -0.763961136341095, 0.383076012134552, 0.8869774341583252, 0.6070278286933899, -0.07005159556865692, 0.03113897517323494, -0.09526923298835754, -0.410935640335083, 0.7088568806648254, -0.6925003528594971, -1.1435885429382324, -0.7164400815963745, 1.0622482299804688, 1.072615385055542, -0.6662515997886658, 0.44979608058929443, 0.3822827637195587, -0.5568995475769043, 0.03922460973262787, -0.4702896177768707, 1.0860100984573364, 1.1529037952423096, 0.4079586863517761, -0.4219156503677368, -0.2620958387851715, 0.50620037317276, -0.026546215638518333, -0.0280408076941967, -0.5561201572418213, -0.6426792740821838, 0.7011589407920837, -0.5020522475242615, 1.558467984199524, -0.41967734694480896, -0.6221092939376831, 0.0015289746224880219, 0.004843789152801037, 0.3366936147212982, -0.07608915120363235, -0.4594467282295227, -0.22734622657299042, 0.22810357809066772, -0.6691927313804626, 0.30539238452911377, -0.20785295963287354, -0.6044046878814697, 0.13294368982315063, -0.7937243580818176, 0.5675557851791382, -0.02638102136552334, 0.8199306130409241, 0.36001771688461304, 0.08467241376638412, 0.6579789519309998, 0.2055635005235672, 0.8813573122024536, 0.3433224558830261, 0.7693673372268677, -0.12512601912021637, -1.2107192277908325, 0.5118165016174316, -0.07885318994522095, -0.39531224966049194, 0.423643559217453, 0.9196921586990356, 0.10759498924016953, 0.7966693639755249, -0.6223583817481995, -0.710652768611908, -0.35729581117630005, 0.393820583820343, -0.1087532564997673, -0.39688628911972046, 1.347370982170105, -0.6576594114303589, -1.214424729347229, -0.7613710165023804, 0.41580405831336975, -0.40423583984375, 0.8311907052993774, 0.1506919115781784, 0.9773722290992737, 0.22087684273719788, 0.5449882745742798, 0.10093630850315094, -0.6705043315887451, -0.6620866060256958, -0.6066839694976807, -0.6965515613555908, -0.29785996675491333, -0.20440566539764404, -0.5911475419998169, -0.8634568452835083, 0.4676474332809448, -0.8223763704299927, -0.25449925661087036, 0.2034163922071457, -0.15123485028743744, 0.12718193233013153, -1.1637660264968872, 0.3046117126941681, -0.22820772230625153, 0.7414222359657288, -1.3550418615341187, 0.6674508452415466, -1.2568496465682983, -0.12551629543304443, 1.1789047718048096, 0.11920960992574692, -0.8259508013725281, 0.5782460570335388, -0.2090737372636795, -1.8144382238388062, 0.07806136459112167, 0.07934737950563431, -0.35714131593704224, 0.6580360531806946, -0.22905242443084717, 0.3000391125679016, 0.3871523439884186, -0.19354937970638275, 0.426969975233078, -0.11362016201019287, -1.6049929857254028, -0.8582926392555237, -0.40167829394340515, -0.19399206340312958, -0.631537139415741, -1.101523756980896, 0.23567354679107666, 0.4407513737678528, -0.9799870252609253, -0.13787348568439484, 0.15954828262329102, 0.13820132613182068, 0.39209720492362976, 1.7785494327545166, 0.4245089292526245, 1.186419129371643, -0.027848294004797935, -0.3135579228401184, 0.05784367024898529, 0.5230070948600769, 0.9923846125602722, -0.5247681736946106, -0.12934361398220062, 0.8117074966430664, 0.9786632061004639, 0.5903672575950623, -0.12278029322624207, -0.26538628339767456, -0.34421268105506897, -0.4859981834888458, -0.6698850393295288, -0.5071474313735962, -0.06209221109747887, 1.2229338884353638, 0.7635340690612793, -0.8720226287841797, -0.3394387364387512, 0.7659317255020142, 0.31775328516960144, -0.16923174262046814, -0.41305238008499146, 0.05638603866100311, -0.21749277412891388, 0.08099525421857834, -0.06791411340236664, 0.5262705087661743, 0.05513303354382515, 0.2978218197822571, -0.5492726564407349, -1.3116681575775146, -0.4394843280315399, 0.016679968684911728, 0.028261234983801842, 1.0579994916915894, -0.5816394090652466, -0.8248361349105835, 0.3321497142314911, -0.008826150558888912, 1.2622071504592896, -0.32130756974220276, 0.12966561317443848, 0.40025264024734497, 0.6189214587211609, -0.07245339453220367, 0.6504654288291931, -0.06843456625938416, 0.020722176879644394, 0.07821782678365707, -0.06185329705476761, 0.3226450979709625, 1.155397891998291, -1.0158830881118774, -0.9474358558654785, -0.18295884132385254, 0.43106719851493835, 1.5447912216186523, 0.5283923745155334, 1.2948933839797974, -0.3717286288738251, -0.12223905324935913, -0.05840180441737175, 0.07156665623188019, -1.0381211042404175, -0.7611672282218933, -0.9796032309532166, -0.49141159653663635, -0.07279857248067856, 0.007648988161236048, 0.5547603368759155, 0.40550512075424194, -0.7523466348648071, 0.8563926219940186, 1.3269850015640259, -0.16757097840309143, -0.4008191227912903, -0.3795200288295746, 0.057417772710323334, -0.4384842813014984, 0.15706244111061096, 0.7910407781600952, -0.9699881672859192, -0.6834568977355957, -0.14039596915245056, -0.1784338802099228, 0.6007630825042725, -0.1086869090795517, 0.25058257579803467, -1.5397623777389526, -0.910877525806427, -0.4745132029056549, 1.7078840732574463, -0.23328429460525513, 0.0034587327390909195, -0.9898312091827393, 0.5430673360824585, 0.8872007131576538, -0.6214398741722107, -0.12476144731044769, 0.7542571425437927, -0.2546130418777466, -0.8042805194854736, -0.5081521272659302, 0.5524117350578308, 0.34070679545402527, -0.39922982454299927, -0.08718989789485931, -0.25983959436416626, -0.5539100170135498, 0.06353229284286499, 0.33886072039604187, -0.02114957757294178, 0.7179400324821472, 0.35944297909736633, 0.15598534047603607, 0.7465764284133911, -0.7342774271965027, 0.1948850005865097, -1.4032784700393677, 0.41119125485420227, 0.610155463218689, 1.1530505418777466, 0.17722779512405396, 0.3002055883407593, 0.10125375539064407, -0.0765707939863205, -0.04138456657528877, 0.6172053217887878, 1.3644541501998901, 0.11680580675601959, 0.0275210402905941, -0.3322544991970062, -0.2909272015094757, -0.1552005261182785, -1.1008847951889038, -0.07024523615837097, 0.687166690826416, -0.9473248720169067, -0.2880031168460846, 1.4659194946289062, 0.5411182641983032, 0.15739202499389648, 0.045017603784799576, 0.07045041769742966, 1.8076965808868408, -0.08152281492948532, -0.34440580010414124, -0.2614716589450836, 0.3802860975265503, 0.1014004573225975, -0.8511334657669067, -0.08610164374113083, 0.4398544132709503, 0.3164534866809845, 0.6048666834831238, -0.9967700242996216, 0.21616539359092712, -0.5143807530403137, 0.7108929753303528, -0.05220894515514374, 0.18177476525306702, 0.40409162640571594, -0.12258685380220413, 0.14953696727752686, -0.06370554119348526, 0.18969203531742096, 0.7960035800933838, -0.4079766273498535, -0.3885915279388428, -0.08548344671726227, 0.09222947806119919, 0.027306994423270226, 0.2530030608177185, -0.1641511768102646, 0.13293394446372986, -0.4590909481048584, 0.03582022339105606, 0.3624661862850189, 0.34474411606788635, 1.073403239250183, 0.4036976397037506, 0.03371269255876541, 0.7961797714233398, 0.27684226632118225, -1.2835222482681274, 0.6024415493011475, -0.14648006856441498, -0.5550594925880432, -0.32696953415870667, 0.1364196389913559, 0.2854520380496979, -0.4762367010116577, -0.027878638356924057, 0.35314393043518066, 0.5316223502159119, 0.07303664088249207, 0.2589835822582245, -0.21821221709251404, 0.9000359773635864, 0.6225667595863342, 1.1674065589904785, 0.4036988317966461, 0.027736853808164597, -1.1816563606262207, 0.5139450430870056, -1.1953037977218628, 0.16957218945026398, 1.0040239095687866, 0.3080447018146515, 1.257705807685852, -1.7392991781234741, -1.0757989883422852, 0.6949875354766846, 0.2627947926521301, 0.5888198018074036, 1.3113633394241333, 0.05445590615272522, 0.09293049573898315, 0.5047319531440735, 0.05395937338471413, -0.277835488319397, 0.2277594804763794, 0.12959595024585724, -0.20701853930950165, 0.5957828760147095, -0.6688998341560364, 1.0390650033950806, -0.4491511285305023, -0.37854456901550293, 0.5394486784934998, -0.5849382281303406, -0.2640360891819, 0.9143646359443665, 0.47282570600509644, 1.8997349739074707, -0.5372304320335388, -1.3338466882705688, 0.19120003283023834, -0.5399781465530396, -0.013450286351144314, -0.06545280665159225, 0.20306280255317688, -0.43134450912475586, -0.1812467873096466, -0.49502837657928467, 1.0891985893249512, 0.11528264731168747, -0.7265637516975403, -0.5787773132324219, -1.4133163690567017, 0.28783100843429565, 0.6153256297111511, 0.880632758140564, 0.8901029229164124, -0.014969369396567345, 0.07997641712427139, 0.1392761766910553, -0.3421488404273987, 0.12144524604082108, 0.21706849336624146, 0.1513933539390564, -0.20768950879573822, -0.989217221736908, -0.870593786239624, 0.23233401775360107, 0.6596165299415588, -0.19588787853717804, 0.6152228116989136, 1.620670199394226, 0.9179284572601318, -0.8881153464317322, -0.6757100224494934, 0.5888055562973022, -0.5191960334777832, 0.49320387840270996, 0.27218955755233765, -0.1836310625076294, -0.6625979542732239, -0.41121289134025574, -1.5590336322784424, 0.6783555150032043, -0.0015968717634677887, -0.47923097014427185, 1.3759369850158691, 0.14347684383392334, 0.8626274466514587, 0.30284202098846436, -0.7550135850906372, 0.442118763923645, 0.19718097150325775, -0.6672735810279846, -0.6446095705032349, 0.6564325094223022, 0.1100628674030304, 0.659593939781189, -0.0617724247276783, 0.24959325790405273, 0.5195134282112122, -1.0348960161209106, -0.11135631799697876, 0.4041009247303009, 0.2808648347854614, -0.004713158123195171, 0.3258324861526489, -0.788665771484375, 0.24593181908130646, -0.3859628140926361, -1.1329926252365112, -0.0552087128162384, 0.3020760416984558, -0.12723715603351593, -0.28874775767326355, -0.4583820700645447, -0.8142774105072021, -0.6152423024177551, -0.5885181427001953, -0.3232092261314392, 0.9806975722312927, 0.5002226829528809, 0.012194965966045856, -0.3778274357318878, -0.3310527503490448, 0.2716697156429291, -0.40908366441726685, 0.20628108084201813, -0.017799627035856247, -1.3409264087677002, 0.3557148873806, 0.22096270322799683, -0.7935009598731995, -0.12952230870723724, -0.3811928927898407, 0.3559807538986206, -0.5106846690177917, -1.3072254657745361, -1.2682923078536987, 0.8121916651725769, 0.8543320298194885, -1.0176228284835815, 0.8532687425613403, -0.1353532373905182, -0.9716145396232605, 0.1346116065979004, 0.12526655197143555, -0.6717042922973633, 0.1290271133184433, -1.1835651397705078, 0.30556920170783997, 0.45804116129875183, 0.36712726950645447, -0.14205290377140045, 0.5322763919830322, -1.1772758960723877, -1.0274441242218018, -0.7687137722969055, 0.07500191777944565, 0.9072402715682983, 0.3849918842315674, -1.1074116230010986, 1.1398637294769287, 0.234058678150177, -0.6833219528198242, -0.3046509325504303, -0.09547185897827148, -0.13024267554283142, 0.6408987641334534, 0.47915858030319214, 0.46282219886779785, 0.7287683486938477, 1.3633629083633423, -0.16720904409885406, 0.5596032738685608, 0.3065445125102997, 0.6171678304672241, -0.9901647567749023, -0.6218242049217224, -0.17652355134487152, 0.7169935703277588, -1.3411457538604736, -0.619420051574707, 0.1789740025997162, -0.6200269460678101, -1.001362681388855, 0.31909048557281494, 0.33587852120399475, -0.6205260157585144, 0.40665683150291443, -0.11056117713451385, -0.022704804316163063, -0.5693193078041077, 0.6343526244163513, 0.17258156836032867, -1.162955403327942, -0.41438475251197815, 0.38391271233558655, -0.21607837080955505, -1.8594931364059448, 0.43875032663345337, -0.12045200914144516, -0.1972738355398178, -0.47363796830177307, 0.3666249215602875, 0.9863746762275696, 0.2174222469329834, -0.4825567901134491, 1.6123360395431519, 0.7067766785621643, -0.23922817409038544, -0.4818192422389984, 0.4732508361339569, 0.12845903635025024, 1.0691490173339844, -0.5934786796569824, 0.162693589925766, -0.7810952663421631, 0.9287869930267334, -0.09014591574668884, 0.02441857010126114, -0.010944844223558903, 0.23436827957630157, -0.3116280436515808, -0.27693694829940796, 0.3647858500480652, -0.717536211013794, -0.39393311738967896, 0.8427019715309143, 0.2184402048587799, 0.2209382802248001, 0.5356696248054504, 0.7448194026947021, 0.6897426247596741, -0.33491629362106323, 0.4909396469593048, 0.012790698558092117, -1.2782162427902222, 0.24508312344551086, 0.24378399550914764, -0.31119874119758606, 0.3443305194377899, -0.4067659378051758, -1.424562692642212, 0.15205088257789612, -0.9945436716079712, -0.49850741028785706, 0.8054915070533752, -0.9138521552085876, -0.33764293789863586, 0.14251092076301575, -0.3232909142971039, -0.1443631500005722, -0.3100452125072479, 0.54322749376297, -0.08802152425050735, 0.4599607288837433, -0.00285226758569479, -0.37280216813087463, 1.564488172531128, -0.594907283782959, -0.017384236678481102, -1.2534124851226807, -0.27349627017974854, 0.2886851131916046, 0.044414766132831573, -0.06934867799282074, 0.15236841142177582, 0.5593123435974121, -0.31891027092933655, -0.9162145853042603, -0.020133553072810173, 0.6869303584098816, -0.03357001394033432, 0.23013068735599518, -0.20976397395133972, 0.3056301176548004, 0.4815141260623932, 0.35360297560691833, -0.7225281596183777, -1.14723801612854, -0.6213460564613342, 0.4314677119255066, -0.7591536641120911, 1.276989459991455, -0.911078691482544, 0.8448777198791504, 0.011864409781992435, -0.15266746282577515, -0.4779989719390869, -0.0908307358622551, 0.3737172484397888, 0.03503400832414627, 0.3225123882293701, -0.09676308184862137, -0.15618032217025757, -1.0862852334976196, -0.9897305965423584, 0.264131635427475, -0.07583979517221451, -0.030555810779333115, 0.04827151075005531, -1.1140763759613037, -0.2502892315387726, -0.6441267728805542, 0.07360494881868362, 0.34833499789237976, 0.2707565128803253, -0.06369020789861679, 0.1586482673883438, -0.6747897863388062, 0.28752389550209045, -0.15662093460559845, -0.24116425216197968, 0.06242896243929863, 0.7101544737815857, 1.2047966718673706, 0.975259006023407, 0.06807437539100647, -0.5231768488883972, 1.1043267250061035, -0.9684447050094604, -0.3547656536102295, -1.193729043006897, -0.37328729033470154, -0.49715420603752136], [0.5273580551147461, 1.0406795740127563, -2.0393245220184326, -0.6210827231407166, 1.048258662223816, 0.9133928418159485, 1.0134943723678589, 0.28483283519744873, -0.3368496894836426, 0.10281109809875488, 0.02204003557562828, 0.3311593532562256, 1.1266645193099976, 0.7343383431434631, -0.2988099455833435, -0.1895623654127121, 0.8540633320808411, -1.2046316862106323, 0.3079063296318054, 1.18082857131958, -0.17409799993038177, -0.5722994804382324, 0.03597567230463028, 0.14956165850162506, 0.46617990732192993, 0.3479907810688019, -1.152482509613037, -0.951893150806427, -0.9749125838279724, -0.9984185695648193, 0.5596964359283447, -0.6983637809753418, 0.24210986495018005, -1.1797246932983398, -0.9431623220443726, 0.4315791428089142, 1.2985031604766846, 0.37885570526123047, 0.06415625661611557, 0.12849310040473938, 0.36516717076301575, 0.6564636826515198, 0.009753849357366562, -1.2782243490219116, 1.0498223304748535, 0.20290213823318481, 0.7079362869262695, -1.1277122497558594, 0.8663915991783142, -1.1518290042877197, 0.6331787705421448, -0.3629813492298126, 0.3150954246520996, 0.6318858861923218, 0.4910293519496918, -0.06903021782636642, 0.33594515919685364, 0.7047042846679688, 0.7806532382965088, -0.5023700594902039, 0.37477490305900574, 0.303793340921402, -0.9236665964126587, 0.8702731728553772, 0.17341701686382294, -0.027584660798311234, 0.15882699191570282, 0.7430279850959778, 0.2804107367992401, 0.4071477949619293, 0.14662037789821625, 0.2661011815071106, -0.47269219160079956, 0.11388393491506577, -0.9928960800170898, 0.3788906931877136, 0.1264251470565796, 0.20766764879226685, 0.21992544829845428, 0.6318017840385437, -0.9874266982078552, -0.13725009560585022, 0.7743039727210999, 1.0554487705230713, 1.5677207708358765, 0.3663325607776642, 0.07587752491235733, -0.3914939761161804, -0.10276339948177338, 2.447573661804199, 0.14768779277801514, 0.07777591794729233, 0.37596529722213745, -0.19956667721271515, -0.049200695008039474, -0.33339494466781616, 0.21507613360881805, -0.606296718120575, -1.0663154125213623, -0.6892074942588806, -0.6977667808532715, -0.8821820616722107, -0.6139845848083496, -0.14600299298763275, 0.34627389907836914, 0.782353401184082, 0.7939052581787109, 0.6122598052024841, -0.3578261137008667, -0.1447775512933731, -0.44410374760627747, 1.1880382299423218, -1.145147442817688, -1.0046205520629883, -0.8614951968193054, -0.07772410660982132, 1.8830602169036865, -0.5061795711517334, -0.2407282143831253, 1.1834489107131958, -0.4836774468421936, -0.3644131124019623, -0.3219844400882721, 0.4786970019340515, 0.5300338268280029, 0.44833216071128845, -0.47437992691993713, -0.47645482420921326, 0.4699445962905884, -0.4343489408493042, -0.23641180992126465, -0.5507137179374695, -0.046829886734485626, 0.5094687342643738, -0.59504634141922, 0.26367780566215515, -0.39535579085350037, -0.778394341468811, 0.07669311761856079, 0.14690399169921875, 0.44923973083496094, 0.1670687347650528, -0.4378972351551056, 0.1742585003376007, -0.12015180289745331, -1.0242449045181274, 1.0636067390441895, 0.09161630272865295, -0.5162659883499146, 0.3364443778991699, -0.4356636703014374, 0.43015217781066895, 0.30728620290756226, 0.41828086972236633, -0.1703610122203827, -0.012056689709424973, 0.18717166781425476, 0.27269378304481506, 0.1428607702255249, -0.1369461566209793, 1.398719310760498, -0.05941127985715866, -0.20242828130722046, 0.6260602474212646, -0.2751484215259552, -0.015645699575543404, -0.3907049000263214, 0.38322943449020386, 0.38595637679100037, 0.7510431408882141, -0.7372792363166809, 0.2118494212627411, 0.08709772676229477, 0.8090959787368774, -0.07666832953691483, -0.6757538914680481, 0.8310888409614563, -0.9342750906944275, -0.990207314491272, -1.3009202480316162, -0.2322920262813568, -0.049555253237485886, 0.0420985110104084, 0.01290400605648756, 0.7984441518783569, -0.195500910282135, 0.16927210986614227, 0.2909068167209625, -0.4367416501045227, -0.684631884098053, -0.34359824657440186, 0.5501259565353394, -0.7769625186920166, -0.39393213391304016, -1.0602186918258667, -0.2583499550819397, 0.2835733890533447, -0.5478690266609192, -0.47130584716796875, -0.19420960545539856, -0.21527326107025146, -0.3081441819667816, -0.4940277636051178, -0.2800639569759369, -0.5076428055763245, 0.689671516418457, -1.503857135772705, 0.978672444820404, -0.989643394947052, 0.2739768624305725, 1.4106656312942505, 0.5272762179374695, -0.928834080696106, 0.738158643245697, -0.07086244225502014, -1.2834330797195435, 0.42489302158355713, -0.12089990079402924, -0.08535517752170563, 0.6935587525367737, -0.0882473811507225, 1.0113611221313477, 0.0799538642168045, -0.24640440940856934, -0.05908442661166191, -0.8616956472396851, -0.8283770680427551, -1.545531988143921, -0.8523721098899841, 0.07926206290721893, -0.38945236802101135, -1.4720603227615356, 0.3184430003166199, -0.18953406810760498, -0.8490650653839111, 0.4376526176929474, 0.7369658350944519, 0.17496533691883087, 0.7737220525741577, 0.8120293617248535, 0.47762331366539, 1.010055661201477, -0.4760526716709137, -0.6308282613754272, -0.7618598937988281, -0.3235505521297455, 1.4996135234832764, -0.8373028635978699, 0.5383403897285461, 1.1392807960510254, 0.9506500959396362, 0.12671448290348053, 0.42012685537338257, 0.2705584764480591, -0.1819562017917633, -0.4031055271625519, -0.09200527518987656, 0.5349754095077515, -0.44232267141342163, 1.1552804708480835, 1.0662031173706055, -1.0221132040023804, -0.18692460656166077, -0.012067001312971115, -0.1541018933057785, -0.44015341997146606, -1.0461875200271606, -0.3205072581768036, -0.09850207716226578, 0.2756703794002533, -0.08767114579677582, 1.1502455472946167, -0.7867034673690796, 1.095314621925354, 0.35037484765052795, -0.39449241757392883, -0.9667989611625671, 0.04070976376533508, -0.571894109249115, 0.4582044780254364, -0.22878944873809814, -1.1324642896652222, -1.5321776866912842, -0.37226352095603943, 0.44423726201057434, 0.07846984267234802, 0.26820531487464905, 0.2279282659292221, 0.05555153265595436, 0.10295027494430542, -0.051123958081007004, 0.10796687006950378, -0.04953894764184952, -0.08428950607776642, 0.24996642768383026, 1.0058172941207886, 1.2659587860107422, -1.2582422494888306, -1.0584845542907715, 0.06619273126125336, 0.051796916872262955, 1.3039450645446777, 0.6616342663764954, 0.891907811164856, -0.1911425143480301, 0.29700395464897156, -0.6817337274551392, -0.04520028829574585, 0.12740594148635864, -0.030786851420998573, -0.9626878499984741, -0.7988529801368713, -0.2543533444404602, -0.9120346307754517, -0.20548561215400696, 0.5760217308998108, 0.29068008065223694, 0.556745707988739, 0.7420136332511902, 0.16645151376724243, -0.5021282434463501, -0.13781845569610596, -0.09910565614700317, -1.0138849020004272, 0.1254272758960724, 1.260713815689087, -0.9995653629302979, -0.07247630506753922, -0.7427293658256531, 0.09379149228334427, 0.7891265153884888, 0.7095010876655579, -0.09925702214241028, -0.9243350028991699, -0.5806472301483154, -0.5889573097229004, 0.8968207240104675, -0.054305583238601685, -0.040130969136953354, -0.02255186252295971, 0.6946438550949097, 0.332986980676651, -0.0966426357626915, -0.6153059601783752, 1.1202797889709473, -0.5573968887329102, 0.03626842424273491, -0.17439262568950653, -0.010351153090596199, 0.156034916639328, 0.025613943114876747, 0.16365988552570343, 0.08133374154567719, -0.11273690313100815, -0.051469188183546066, 0.44649577140808105, 0.15108054876327515, 0.8312198519706726, 0.2696424722671509, 0.3020012378692627, 1.4118626117706299, -0.5566467642784119, 0.17839087545871735, -1.3902262449264526, 0.9343831539154053, 0.5362716317176819, 0.6585457921028137, 0.1462632566690445, 0.009839366190135479, 0.5697746276855469, -0.10796035081148148, -0.12872888147830963, 0.15789689123630524, 1.4551717042922974, 0.4929845929145813, -0.34308767318725586, -0.4402974843978882, -0.05541055649518967, -0.7756641507148743, -0.7616708278656006, 0.2727604806423187, -0.30613672733306885, -1.599198579788208, -1.3096879720687866, 0.8701260685920715, 0.48376455903053284, -0.33712396025657654, -0.6253888607025146, -0.17197774350643158, 0.6892431974411011, -0.5407420992851257, 0.7641023993492126, -0.4883415699005127, 0.8335700035095215, 0.029969144612550735, -0.644149661064148, 0.050291165709495544, 0.24621601402759552, 0.2879319190979004, -0.09855201840400696, -1.1227878332138062, 0.10849587619304657, -0.13782662153244019, 0.26065582036972046, 0.646705687046051, 0.11032214760780334, 0.0612928681075573, -0.6562725901603699, -0.13507869839668274, 0.4846840798854828, -0.1593296378850937, 0.6228733062744141, -0.3644394874572754, -0.3280961215496063, 0.2043522745370865, -0.4442744851112366, -0.07085905969142914, 0.2481308877468109, 0.04394073784351349, 0.5306348204612732, -0.525041401386261, 0.4819125831127167, 0.2040972262620926, 0.4853580594062805, 1.439258098602295, -0.011961911804974079, 0.47833749651908875, 0.7553988099098206, 0.17042796313762665, -1.859005093574524, 0.5382673144340515, 0.238189697265625, -0.4708631932735443, -0.5714367032051086, 0.16446414589881897, 0.336692750453949, -0.09121643751859665, 0.7745377421379089, 0.3322591483592987, 0.8879495859146118, 0.4339405596256256, -0.9453702569007874, -0.5218712687492371, 0.42663758993148804, 0.8584765195846558, 1.4980649948120117, 0.5369789004325867, 0.3531392812728882, -1.3022830486297607, 1.1357933282852173, 0.20075811445713043, 0.3438504934310913, 1.4981920719146729, 0.2810613811016083, 0.6369330286979675, -1.4280897378921509, -0.4202114939689636, 0.010031325742602348, -0.2999984323978424, 0.051179926842451096, 0.29912081360816956, 0.4410305619239807, -0.5119374990463257, 0.9266402125358582, 0.18363772332668304, 0.5997341275215149, 0.2922394573688507, 0.4851085841655731, 0.21791420876979828, 0.4423283338546753, -0.18103322386741638, 0.7310546040534973, -0.5289968252182007, 0.14774732291698456, 0.251338392496109, -0.1497819572687149, 0.1053842082619667, -0.02409914694726467, 0.354917049407959, 1.6476086378097534, -0.4421008229255676, -1.590006709098816, 0.5056492686271667, -0.48758465051651, 0.2801174521446228, -0.5006116032600403, -0.1356503665447235, -0.047455839812755585, -0.9171245098114014, -0.18404914438724518, 0.44597160816192627, 0.18928077816963196, -0.36109182238578796, -0.39662039279937744, -0.9533873796463013, -0.12398064881563187, 0.3006695806980133, 1.2807272672653198, 0.4855470359325409, 0.6656662225723267, 0.39536163210868835, 0.5267125368118286, -0.9314812421798706, 0.18118761479854584, -0.2489103525876999, -0.4783972203731537, -0.11385679244995117, -1.2439595460891724, -0.46034684777259827, 0.5816340446472168, 0.2536124289035797, 0.19967299699783325, 1.0671498775482178, 1.5478044748306274, 1.0383036136627197, -0.6593126058578491, -0.41895967721939087, 0.2903669476509094, -0.7413075566291809, 0.07932651042938232, 0.7905406355857849, 0.0623195618391037, -0.915145754814148, -0.6240689754486084, -1.8679429292678833, 1.1216531991958618, -0.5136764645576477, -0.5136343836784363, 0.7995034456253052, 0.2581072747707367, 0.39684972167015076, 0.9887908697128296, -1.3393436670303345, 0.919789731502533, 0.10813894867897034, -0.9142113327980042, -1.3246850967407227, 0.32191747426986694, -0.2120261788368225, -0.8079146146774292, -0.41101837158203125, 0.5971104502677917, 0.12712006270885468, -0.22383278608322144, 0.6152178049087524, 1.0266245603561401, -0.13138362765312195, -0.4247967004776001, 0.7630462646484375, -1.1286460161209106, -0.12733334302902222, -0.39021989703178406, -0.3845977485179901, -0.017848782241344452, 0.576901376247406, 0.10247037559747696, -0.33646705746650696, -0.44014522433280945, 0.2734759747982025, -0.5819571018218994, 0.42437323927879333, 0.21898098289966583, 1.2010650634765625, 0.6672403216362, 0.45980480313301086, -0.27127647399902344, -0.2976182699203491, -0.9250611066818237, -0.8118749260902405, -0.3190537393093109, 0.02527020126581192, -1.2142881155014038, -0.5300242900848389, -0.716515839099884, -0.8282475471496582, -0.6668974161148071, -1.1008740663528442, 0.444322407245636, -0.8870800137519836, -1.1802785396575928, 0.33850517868995667, -0.09857242554426193, 0.8409829139709473, -0.9074873924255371, 0.5011600852012634, -0.5398542881011963, -0.7557721734046936, 0.21591410040855408, 0.39975741505622864, -0.7221817970275879, -0.3321702182292938, -1.3432759046554565, 1.1314564943313599, 0.16772741079330444, 0.1259225606918335, 0.2739819884300232, 0.7055710554122925, -1.0534473657608032, -0.6118203997612, -0.6066465377807617, -0.07834261655807495, 0.8170164823532104, 0.5242211222648621, -1.620747685432434, 1.3821079730987549, 0.9254899024963379, -0.779853880405426, -0.6523952484130859, 0.05336862429976463, -0.4719630479812622, 0.14426910877227783, 0.7492934465408325, 0.05218809098005295, 0.13007812201976776, 1.2497446537017822, 0.20087452232837677, 0.09806159883737564, 0.09139784425497055, 0.14388814568519592, -0.4433799088001251, -0.46457067131996155, -0.3555847108364105, 0.8145620822906494, -0.33568763732910156, -0.5255433320999146, 1.0052821636199951, -1.5613281726837158, -0.16342754662036896, 0.6978411674499512, 0.6281675696372986, -0.5738619565963745, -0.18702495098114014, -0.9797493815422058, 0.019341841340065002, -0.9977782964706421, 1.1299266815185547, -0.46642741560935974, 0.0012104436755180359, -0.543600857257843, -0.2554791569709778, 0.3972049653530121, -1.1132817268371582, 0.828027069568634, 0.12075560539960861, -0.2868139445781708, -0.44899919629096985, 0.7008990049362183, 1.0738455057144165, -0.3581717014312744, -0.6160074472427368, 0.9236976504325867, 0.7908180952072144, 0.14993679523468018, -0.4339423179626465, 0.7656041979789734, 0.3614061176776886, 0.8264254331588745, 0.2637617290019989, 0.30636993050575256, -0.7927821278572083, 0.3701598644256592, -0.3375297486782074, 0.49902573227882385, 0.24197819828987122, 0.21879427134990692, -0.5173425674438477, 0.9149284362792969, 0.3959670066833496, -0.44175654649734497, 0.01978371851146221, 1.5874921083450317, -0.4452265799045563, 0.473844051361084, 0.5542315244674683, 0.3725742995738983, -0.24208897352218628, -0.3881339728832245, 0.38119930028915405, 0.7018032670021057, -0.26427486538887024, -0.31433483958244324, -0.2767052948474884, 0.05012892186641693, -0.48915889859199524, -0.13818874955177307, -1.311055064201355, 0.16895423829555511, -0.8017078042030334, 0.6978767514228821, 0.3462584316730499, -1.0715633630752563, -0.947346031665802, 0.6870789527893066, -0.2769736349582672, -0.22178949415683746, -0.43418386578559875, 0.6695838570594788, 0.24345280230045319, -0.5033495426177979, 0.2930706739425659, 0.7215755581855774, 1.3058418035507202, -0.3946959972381592, -0.038358740508556366, -0.9258143305778503, -0.27844828367233276, 0.5100271701812744, -0.13916777074337006, -0.12999431788921356, 0.007796050049364567, 0.15480150282382965, -0.6377967596054077, -0.9850329160690308, 0.8066789507865906, 0.051430922001600266, -0.182096928358078, -0.3860812783241272, -0.683350145816803, 0.3437548577785492, -0.01085879746824503, 0.8782238364219666, -0.3101009130477905, -1.1876386404037476, -1.3711875677108765, 0.7008258104324341, -0.8145543336868286, 1.3005701303482056, -0.18367402255535126, 0.5196778774261475, -0.2640130817890167, -0.31785598397254944, -0.28465503454208374, -1.1951357126235962, 0.8001513481140137, -0.7963001132011414, 0.627846896648407, -0.17744825780391693, 0.5488536953926086, -0.754513144493103, -0.7361785173416138, 0.3543618619441986, 0.09927329421043396, -0.5358688831329346, 0.1875067800283432, -1.1855922937393188, -0.8801894783973694, -1.4404199123382568, 0.1482500284910202, 0.6794688105583191, -0.024961156770586967, 0.11596935987472534, 0.14164064824581146, -1.3977538347244263, -0.012289872393012047, 1.1008542776107788, -0.1045328676700592, 0.2980855703353882, 1.1454226970672607, 1.6633373498916626, 0.6246231198310852, 0.6479814052581787, -0.09066417068243027, 1.2468571662902832, -1.1163480281829834, -0.7157683372497559, -0.4133394956588745, -0.7253916263580322, -0.3849223852157593], [0.6137555837631226, 0.7519007921218872, -3.085517168045044, -0.8923887610435486, 0.44515618681907654, -0.14133751392364502, 1.3243048191070557, 0.8112092018127441, -0.230494886636734, 0.015134472399950027, -1.2360343933105469, -0.2389633059501648, 0.5761999487876892, 0.5164265036582947, 0.9185628294944763, 0.5569474697113037, 0.5486111044883728, -0.46040230989456177, 0.8203773498535156, 1.08887779712677, -0.4288899898529053, -0.5324398875236511, -0.696779191493988, -0.5752084255218506, 0.37246236205101013, -0.7739155292510986, -0.4937981367111206, -1.0659785270690918, -1.4196501970291138, -1.042264699935913, 0.9467769861221313, -0.5375919342041016, -0.5517259240150452, -0.6466172933578491, -1.9223511219024658, -0.15333841741085052, 1.7007896900177002, -0.10822740942239761, 0.44286462664604187, 0.9311770796775818, 1.780010461807251, 0.6340985894203186, 0.2212470918893814, -1.0807509422302246, 0.11765467375516891, 0.004038255661725998, 0.5015242695808411, -0.4303221106529236, 0.603760838508606, -0.6406105160713196, 0.6296647191047668, -0.9582434892654419, 0.7047815918922424, 0.8161646723747253, 1.6296496391296387, -0.4169352948665619, 0.833934485912323, -0.4258202612400055, 0.3199537396430969, -0.44645655155181885, 0.18006636202335358, 0.23290342092514038, 0.18990397453308105, 0.7336162328720093, 0.05997466295957565, -0.2602411210536957, 0.19281421601772308, 1.3141236305236816, 0.27350643277168274, -0.6392358541488647, 0.9789621829986572, 0.2477615773677826, -0.16225692629814148, -0.36525091528892517, -0.8311986923217773, -0.03477107733488083, 0.16585955023765564, 0.9145758748054504, 1.1210442781448364, 0.6529275178909302, -1.173912525177002, -0.4079287052154541, 1.005456805229187, 0.9919167757034302, 1.4481322765350342, -0.04080004245042801, -0.02302205190062523, 0.062123093754053116, -0.3643651604652405, 2.024799346923828, -0.035549335181713104, -0.5396957993507385, 0.8340845704078674, -0.29292356967926025, -0.3260372281074524, -0.6067975759506226, -0.18316912651062012, 0.039015501737594604, -0.9317772388458252, -0.9603559970855713, -0.6254909634590149, -1.4791083335876465, -0.017829176038503647, -0.16345420479774475, 0.20841239392757416, 1.1555895805358887, 0.8026842474937439, -0.057784538716077805, -0.4106881022453308, 0.350954532623291, 0.5957015752792358, 0.29488009214401245, -0.7731248140335083, -1.9063626527786255, -0.5458022952079773, 0.7693212628364563, 1.1667670011520386, 0.49799874424934387, -0.01029961183667183, 1.1353501081466675, -1.079817533493042, -0.5161950588226318, -0.36318448185920715, 0.441356360912323, 0.2125941514968872, -0.35129815340042114, -0.325783371925354, -0.33259856700897217, -0.04456860572099686, -0.17285332083702087, -0.3991347849369049, -0.860075056552887, 1.1535961627960205, 0.5282059907913208, -0.7052152752876282, 0.6364762187004089, 0.002609267830848694, -0.7672972083091736, -0.44620177149772644, -0.8183161616325378, 0.29755961894989014, 0.5062101483345032, 0.17312055826187134, -0.3788205087184906, -0.051909152418375015, -0.3842695653438568, 0.8645018339157104, -0.6512736678123474, -1.2666454315185547, -0.7551581263542175, -0.7105449438095093, 0.08797231316566467, -0.01927923783659935, 0.011481747031211853, 1.105676531791687, -0.18406659364700317, 0.5471881628036499, 0.0702693834900856, 0.3096374273300171, 0.40204185247421265, 0.1935807317495346, -0.23523765802383423, -0.2662929594516754, 0.9461574554443359, 0.11150357872247696, -0.9648164510726929, 0.158042773604393, 0.9197677969932556, 0.44200557470321655, 0.5318477749824524, -0.7175934314727783, -0.4075251519680023, -0.9684524536132812, 0.36243247985839844, -0.05937247723340988, -0.5775341987609863, 0.9773516654968262, -0.5510000586509705, -1.6073079109191895, -1.3444823026657104, 0.6536216735839844, -0.04437883198261261, 0.6409499049186707, 0.04766692593693733, 1.4529180526733398, -0.5451107621192932, 0.25633418560028076, -1.0857508182525635, 0.19837409257888794, -0.6073119044303894, -1.2751520872116089, 0.03637624904513359, -0.944726288318634, -0.013951564207673073, -0.48132213950157166, -0.9246206283569336, 0.023354528471827507, -0.446125864982605, -1.122341513633728, -0.21820181608200073, -0.2431660145521164, -0.5748521089553833, -0.6717507839202881, -0.6506548523902893, -0.5676047801971436, 0.3431716859340668, -1.891701579093933, 0.6700051426887512, -1.2914111614227295, 0.3888217806816101, 1.295419692993164, 0.5615702867507935, -1.1569591760635376, 0.6299221515655518, 0.028601177036762238, -0.7032505869865417, 0.24693889915943146, 0.37517663836479187, 0.07173759490251541, 0.14264890551567078, -0.06321821361780167, 0.7779925465583801, 1.1959130764007568, -0.7913059592247009, 0.47917041182518005, -0.40896499156951904, -0.64291912317276, -0.9640235900878906, -0.06391662359237671, -0.29262059926986694, -0.7667862176895142, -0.968262791633606, 0.7072142362594604, 0.22052916884422302, -1.7616221904754639, 0.4262392818927765, 0.15598522126674652, 0.8824857473373413, 0.3082772195339203, 1.1471967697143555, 0.1088302806019783, 0.9362853765487671, -0.007086597383022308, 0.10050374269485474, -0.960606575012207, 1.0295368432998657, 0.6855042576789856, -1.009680151939392, 0.8290345072746277, 1.0378457307815552, 0.89653080701828, 0.4138781428337097, 1.0027542114257812, -0.29372644424438477, 0.24812953174114227, -0.5930517315864563, -0.8046123385429382, 0.35417455434799194, 0.16743579506874084, 1.5090430974960327, 0.9087927937507629, -0.8774582147598267, 0.03412420302629471, -0.16100552678108215, 0.7964235544204712, -1.2238681316375732, -0.41585201025009155, 0.7964699864387512, 0.2659147381782532, 0.7304441332817078, -0.10757564008235931, 0.3746594190597534, -1.3164596557617188, 0.5802806615829468, -0.44913116097450256, 0.3728630840778351, -0.24353724718093872, -0.06778361648321152, -0.19372674822807312, 0.7722210884094238, -0.32642459869384766, -0.45618936419487, -0.9541372060775757, -0.8247677683830261, 0.9533100128173828, 0.4928600788116455, -0.5615536570549011, 0.6003189086914062, -0.14166153967380524, -0.1857118159532547, 0.7732096314430237, 0.9602195620536804, -0.05438605695962906, -0.10837988555431366, 0.06355714052915573, 0.9126002788543701, 1.5634069442749023, -0.5438442826271057, -0.6626307964324951, -0.49738579988479614, 0.529887855052948, 1.0621410608291626, 1.6811050176620483, 1.456358790397644, -0.16147775948047638, 0.4906335771083832, 0.7221666574478149, 0.2291824072599411, 0.13573132455348969, -0.5373339056968689, -0.2709425985813141, -1.0245347023010254, 0.14074786007404327, 0.11137810349464417, -0.11972180753946304, 0.6581189036369324, 0.012986298650503159, 0.09971688687801361, 0.8589166402816772, -0.23817826807498932, -0.7085700631141663, 0.05189472436904907, -0.6609699726104736, -0.3567800223827362, -0.22628909349441528, 1.3390166759490967, -1.5688403844833374, 0.28587937355041504, -0.1525830775499344, 0.03022567182779312, 0.3047731816768646, 0.17851859331130981, 0.11681141704320908, -0.811794102191925, -0.8002704381942749, 0.03062245063483715, 0.28092068433761597, -0.08827681839466095, -0.7981380820274353, -1.2026402950286865, 0.5492264032363892, 1.0076031684875488, 0.5627651214599609, -1.021551489830017, 1.5985462665557861, -0.3817538022994995, 0.3097233772277832, 0.37935304641723633, 0.787202000617981, 0.3728606402873993, -0.2686307728290558, -0.8374962210655212, 0.1919947862625122, -0.19706904888153076, -0.24512317776679993, 0.5148688554763794, -0.3590736985206604, 1.3182955980300903, 0.7050630450248718, 0.5262672305107117, 1.9084155559539795, -0.21826499700546265, 0.5748493075370789, -1.6104234457015991, 1.033545970916748, 0.7282259464263916, 0.5632609128952026, -0.48091545701026917, 0.17517149448394775, 0.3353889286518097, -0.004190564155578613, 0.31598833203315735, 0.31368592381477356, 0.9290838837623596, 0.18640030920505524, -0.40653109550476074, -0.6761861443519592, 0.1034383699297905, -0.19548942148685455, -0.45738303661346436, 0.08759529143571854, 0.6792367100715637, -0.639704167842865, -0.526186466217041, 1.6161261796951294, 0.2723381519317627, -0.7581980228424072, -0.848343551158905, 0.359848290681839, 0.5381685495376587, -0.019815752282738686, 0.405401349067688, -0.8474869728088379, 0.28020793199539185, 0.8936443328857422, -1.2895829677581787, -0.6953898072242737, 1.2250843048095703, 0.12402161955833435, 1.0685378313064575, -0.7633091807365417, 0.12472188472747803, 0.21394222974777222, 0.2809631824493408, 0.5202622413635254, -0.09904489666223526, 0.13973204791545868, 0.2557607889175415, 0.8435195088386536, 0.31853756308555603, 0.6332104802131653, 0.5367396473884583, -0.47306251525878906, 0.9150353074073792, 0.2511218786239624, 0.7821544408798218, 0.3798578083515167, 0.9396878480911255, 0.33533695340156555, -0.13886304199695587, -0.1686505228281021, -0.09871119260787964, 0.08564137667417526, 0.5776805877685547, 1.5347697734832764, 0.06165421009063721, 0.6673168540000916, 0.8146514892578125, 0.3159111440181732, -2.130793809890747, 0.6068639159202576, 0.5358750224113464, 0.5771549344062805, -0.535193145275116, -0.1302521675825119, 0.116673544049263, -0.5522583723068237, 0.2967461347579956, 0.3653009533882141, 0.5182945132255554, 0.5971647500991821, -0.4406271278858185, -0.3450952172279358, 1.5638843774795532, 1.443221926689148, 1.5228396654129028, 0.5832290649414062, -0.7874882221221924, -0.5779286026954651, 0.6498528122901917, 0.4127131998538971, 0.3636230528354645, 0.8114128112792969, 0.357317179441452, 1.9868789911270142, -1.2931814193725586, -0.5049484968185425, 0.3519541323184967, 0.3821871876716614, -0.02629201114177704, 1.2845255136489868, 0.9893245697021484, -0.19522681832313538, -0.03508695214986801, 0.20109936594963074, -0.21276138722896576, -0.1084824949502945, 0.05260851979255676, 0.24038785696029663, 0.8374240398406982, -0.334486186504364, 0.1384381651878357, -0.5740662217140198, 0.27676504850387573, 0.9098072648048401, -0.3485162556171417, -0.5120481848716736, 0.10039347410202026, -0.5135250687599182, 1.652379035949707, -0.4110286235809326, -0.9133970141410828, 0.4057788848876953, -1.457804799079895, -0.08692635595798492, -0.8424472212791443, -0.6433701515197754, -0.5194645524024963, -0.458371102809906, -0.6173822283744812, 0.4038417339324951, 0.29106375575065613, -0.18317103385925293, 0.36997541785240173, -1.3249716758728027, -0.33828502893447876, 0.7275314331054688, 1.2949713468551636, 0.2419610470533371, -0.007805760949850082, 0.12338851392269135, 0.7512742877006531, -0.5351036787033081, -0.21101228892803192, 0.5564424395561218, -0.7335344552993774, 0.34217554330825806, -0.5497037172317505, -0.9290910959243774, 0.770056962966919, -0.34459608793258667, 0.6253030300140381, 0.9375991225242615, 0.41344326734542847, 1.540159821510315, -0.20954683423042297, -0.5786795616149902, 0.1797836869955063, -0.16433031857013702, 0.11487266421318054, 0.34271275997161865, 0.25599581003189087, -1.5779297351837158, -0.33634743094444275, -1.548699975013733, 0.06730922311544418, -0.18823030591011047, -0.6850700378417969, 0.18766219913959503, 0.023545537143945694, 0.6881999969482422, 0.3424835205078125, -0.6369787454605103, 0.8297789096832275, 0.015808459371328354, -0.39631161093711853, -1.5851181745529175, 0.5802443027496338, -0.6389597058296204, 0.16823318600654602, -0.012825125828385353, 0.19833961129188538, -0.6704793572425842, -0.34562769532203674, -0.5421690344810486, -0.06958531588315964, -0.002952057868242264, -0.5720769762992859, -0.45161762833595276, -0.728639543056488, 0.07686962187290192, -0.0828675925731659, -0.2816040515899658, -0.5980881452560425, 1.075009822845459, -0.6283479928970337, -1.3149042129516602, 0.20020067691802979, -0.4218593239784241, -0.4067626893520355, 0.20122133195400238, 0.5914245247840881, 1.393805742263794, 0.5008126497268677, 0.23148874938488007, -0.24644456803798676, 0.03855651244521141, -0.2706948518753052, -0.2799428105354309, 0.18856336176395416, 0.017884423956274986, -0.930897057056427, -0.5380915999412537, 0.12768131494522095, -1.104020595550537, -0.2859039604663849, -0.8030456304550171, 0.47605979442596436, -1.370844841003418, -1.1224852800369263, -0.8195977807044983, -1.02626371383667, 0.48656168580055237, -1.2570924758911133, 0.025902800261974335, 0.293912410736084, -0.8387113213539124, 0.7766206860542297, 0.2835509181022644, -0.6116609573364258, -0.3749203085899353, -0.7560647130012512, 0.5769569277763367, -0.21525917947292328, 0.9837913513183594, -0.7833165526390076, 0.47959646582603455, -1.663197636604309, -0.8188785314559937, -0.9151913523674011, -0.17241300642490387, 0.9257416725158691, 0.051817573606967926, -1.638023018836975, 0.8094859719276428, 0.39454925060272217, -0.8844522833824158, 0.14073266088962555, 0.28056463599205017, -0.1953429877758026, -0.07418627291917801, 0.5931902527809143, 0.09604264050722122, -0.06022835522890091, 0.7605594992637634, -0.32655200362205505, 1.3304933309555054, 0.1397443264722824, -0.15963202714920044, -0.6323354244232178, -0.017444491386413574, -0.016405832022428513, 0.21844996511936188, -0.8669134378433228, -0.07737727463245392, 0.22246821224689484, -1.0973719358444214, -0.8119376301765442, 0.83554607629776, 0.5698853135108948, -0.6966286301612854, -0.012249946594238281, -1.6163603067398071, -0.062262021005153656, -1.3637981414794922, 0.845313310623169, -0.23240569233894348, -0.0312543660402298, -0.706599235534668, -0.5822058916091919, -0.13994304835796356, -1.1154476404190063, 0.3095196783542633, -0.464146226644516, -0.039569150656461716, -0.8020187020301819, 0.6846993565559387, 0.6966719627380371, 0.4933227002620697, -1.2015410661697388, 1.0119341611862183, 0.48462316393852234, -0.28420138359069824, -0.13179795444011688, 0.31307753920555115, 0.14917141199111938, 1.00625479221344, -0.2408156543970108, 0.22040049731731415, -1.1269088983535767, 0.5142114758491516, 0.10774458199739456, 0.07043179869651794, -0.7454774975776672, 0.019789688289165497, -0.5737648010253906, 0.04077787697315216, -0.11340691149234772, -0.6082912683486938, -0.5303312540054321, 0.9442712664604187, 0.6534094214439392, 0.6708123087882996, 0.5621612668037415, 0.4634755551815033, -0.05669688433408737, 0.21834196150302887, 0.42916882038116455, -0.41905859112739563, -0.6972714066505432, -0.18890231847763062, -0.029055459424853325, 0.04549681395292282, -0.37265580892562866, -0.5800121426582336, -1.568236231803894, -0.10074520111083984, -0.18319091200828552, -0.47918909788131714, 0.33818939328193665, -1.2268083095550537, -0.7795414924621582, 0.3045009970664978, 0.17731443047523499, 0.05960248410701752, -0.21190182864665985, 0.2213999330997467, -0.4324573576450348, -0.8751606941223145, 1.1012901067733765, -0.4156626760959625, 1.2710597515106201, -0.5660507082939148, -0.027225321158766747, -1.0486913919448853, -0.3074510991573334, 0.756819486618042, -0.01183149591088295, 0.34900081157684326, -0.6190225481987, 1.043513536453247, -0.7165951132774353, -0.4270704686641693, 0.1748790591955185, 0.6361249685287476, -0.2286045253276825, -0.012674890458583832, -1.5186800956726074, 0.4008466601371765, 0.7402967810630798, 1.310198426246643, 0.14123807847499847, -0.7853230834007263, -1.0245885848999023, 1.004133701324463, -0.6683319211006165, 1.164544939994812, 0.13512414693832397, 1.025101661682129, -0.05283796042203903, 0.034161973744630814, 0.43756070733070374, -0.29830989241600037, 0.7220309972763062, -0.06055761128664017, 0.12558875977993011, -0.11826790124177933, 0.3370797038078308, -0.5124017596244812, -1.0758506059646606, 0.14051532745361328, 0.29318395256996155, -0.7234866619110107, -0.2512933909893036, -0.8379497528076172, -0.874699592590332, -1.3994914293289185, -0.10821709781885147, 0.08751309663057327, 0.08557137846946716, 0.5252386927604675, -0.5979127287864685, -0.6454343795776367, 0.306979775428772, 0.5095404982566833, -0.13765114545822144, 0.7997346520423889, 1.5288467407226562, 2.189856767654419, 1.0447611808776855, -0.018643569201231003, -0.6673240065574646, 0.6009575128555298, -1.0974187850952148, -0.09529722481966019, -1.0696179866790771, -0.48424652218818665, -0.15930674970149994], [0.44745567440986633, 0.7895683646202087, -2.3856053352355957, -0.3847818672657013, 0.6169590353965759, 0.37094858288764954, 1.3161464929580688, 0.3212733864784241, -0.2759064733982086, -0.9061988592147827, -0.34008851647377014, -0.04187050834298134, 1.2286884784698486, 1.0115333795547485, 0.18282127380371094, 0.3949492871761322, 0.9406306147575378, -0.2567567229270935, 0.6217331886291504, 1.3910675048828125, -0.2864927053451538, -0.1618744432926178, -0.3509700298309326, -0.12555575370788574, -0.09918998181819916, -0.4941718280315399, -0.9700490832328796, -1.2085015773773193, -1.4002776145935059, -1.301567792892456, 1.5527106523513794, -0.25533050298690796, -0.208902508020401, 0.22215622663497925, -1.565529465675354, -0.6466208100318909, 1.4542542695999146, 0.4706586003303528, 0.6666998267173767, 1.0956060886383057, 1.5358198881149292, 0.6369975805282593, -0.06986042857170105, -1.6511379480361938, 0.4518961012363434, -0.04018827900290489, 0.6025293469429016, -0.9165927171707153, 0.6094744205474854, -0.35990574955940247, 0.7255319952964783, 0.6271828413009644, 0.49810218811035156, 1.1737898588180542, 0.9785192012786865, -0.4319726824760437, 0.2167731672525406, 0.3090120851993561, 1.1606577634811401, -0.9214679598808289, 0.5322215557098389, 0.36909595131874084, -0.3555041551589966, 1.0173389911651611, 0.33403798937797546, -0.8801670074462891, -0.1490555852651596, 0.675902247428894, 0.4079435169696808, -0.5743769407272339, 0.3695487976074219, 0.5732404589653015, -0.6163051128387451, 0.6036307215690613, -0.8650262355804443, 0.2815205156803131, 0.57743901014328, 0.5645031929016113, 0.3572368621826172, 0.24197585880756378, -0.8643074631690979, 0.47345274686813354, 0.6075023412704468, 0.43681633472442627, 1.5463128089904785, 0.01908055506646633, -0.021428974345326424, -0.027618790045380592, -0.7955710887908936, 2.2261486053466797, 0.7081964015960693, -0.4030865430831909, 0.3110458552837372, -0.8849356770515442, -0.4154544770717621, -0.6706447005271912, 0.2278417944908142, -0.7904741764068604, -0.8540372848510742, -1.091288685798645, -0.8775792121887207, -0.7659804821014404, 0.542965829372406, -0.2167428731918335, 0.24712346494197845, 1.2874995470046997, -0.08421392738819122, -0.2253226488828659, -1.021620512008667, -0.40563902258872986, -0.22927016019821167, 0.04389898106455803, -0.8645410537719727, -0.8990143537521362, -0.5471816658973694, 0.2574276924133301, 0.8632535338401794, -0.40872180461883545, 0.28504472970962524, 0.6887575387954712, -1.045442819595337, -0.07076668739318848, -0.9819319248199463, 0.5584755539894104, 0.696932315826416, 0.7486162185668945, -0.6563189029693604, -0.847842276096344, 0.9584255814552307, -0.24021677672863007, 0.14489610493183136, -0.05772806331515312, -0.4213835299015045, 0.8419563174247742, -0.480567991733551, 0.8517336249351501, -0.7719760537147522, -0.5265952944755554, -0.36073991656303406, -0.3793164789676666, 0.6463638544082642, -0.7163993120193481, -0.263934850692749, -0.3278804421424866, 0.07636746019124985, -0.3909517824649811, 0.813874363899231, -0.28505420684814453, -0.8841027617454529, 0.3283641040325165, -0.7819151878356934, -0.09325174242258072, 0.25669050216674805, 1.227370262145996, 0.5955363512039185, 0.07310324907302856, -0.01730063185095787, 0.25304728746414185, -0.18666347861289978, -0.10274700820446014, 0.49216344952583313, -0.6364854574203491, -0.3839672803878784, 1.4508548974990845, 0.5124759078025818, -0.7543391585350037, 0.3590506315231323, 1.0413641929626465, -0.16825352609157562, 0.5298284292221069, -0.4737299084663391, -0.38342908024787903, -0.48786842823028564, 0.6288824677467346, 0.6640970706939697, -0.2525162398815155, 1.3955460786819458, -1.021612286567688, -1.3400986194610596, -0.9753108024597168, 0.2164062112569809, -0.20709311962127686, -0.0013909060508012772, -0.20152173936367035, 1.2327330112457275, -0.3447748124599457, -0.024888502433896065, -0.15816660225391388, -0.756468653678894, -1.361599087715149, -0.6585016250610352, -0.6557935476303101, -1.389785647392273, -0.018916111439466476, -0.47157764434814453, -0.8657068610191345, 0.08833139389753342, -1.0049165487289429, -0.9450779557228088, 0.12317553907632828, -0.45285239815711975, 0.2051396369934082, -0.8973990678787231, 0.12374438345432281, -0.6443775296211243, 1.1121087074279785, -1.6931962966918945, 0.8421499133110046, -0.5814366936683655, 0.07376231998205185, 1.150907278060913, 0.09469221532344818, -0.6985892057418823, 0.6398329138755798, 0.09513657540082932, -1.0539705753326416, 0.8666225075721741, 0.4357970952987671, -0.050129085779190063, 0.2838175296783447, 0.015675680711865425, 0.7805410623550415, 0.8530701398849487, -0.045619897544384, 0.3231796622276306, -0.26955538988113403, -0.625106692314148, -0.7225289344787598, -0.7133727669715881, -0.024517947807908058, -0.4200223386287689, -0.9846822023391724, 0.46811074018478394, 0.2677592933177948, -0.5698061585426331, 0.1324123591184616, -0.2576664090156555, -0.24495714902877808, 0.20340684056282043, 1.1928484439849854, 0.1691102236509323, 0.2678322494029999, 0.06504148989915848, 0.08839154988527298, -0.793768584728241, 0.12355343252420425, 1.2519370317459106, -0.0666700154542923, 0.4446218013763428, 1.4053577184677124, 0.7359690070152283, -0.357118159532547, 0.14996784925460815, 0.30928757786750793, 0.3032982349395752, -0.6098242998123169, -0.7056832313537598, 0.09745234251022339, -0.851150631904602, 0.7839915156364441, 0.8323656916618347, -0.9995119571685791, -0.02199378050863743, 0.10142380744218826, 0.02346951700747013, -0.5411569476127625, -0.26537081599235535, -0.27450090646743774, 0.2699470818042755, 0.010715651325881481, -0.12590335309505463, -0.028103694319725037, -0.5860874652862549, 0.7165785431861877, -0.5049105882644653, -0.14805099368095398, -0.4052570164203644, 0.07647868245840073, -0.07161625474691391, 0.3517973721027374, -0.06418360024690628, -1.2704840898513794, -0.7515023946762085, 0.18973322212696075, 1.3387460708618164, -0.3616059720516205, -0.6974166631698608, 0.05992725118994713, 0.021730508655309677, 0.19856558740139008, 0.12956590950489044, 0.6778588891029358, 0.3427234888076782, -0.38377848267555237, -0.27892202138900757, 0.7960426211357117, 0.860353946685791, -0.8535250425338745, -1.2425674200057983, 0.19022104144096375, 0.9046048521995544, 1.4130921363830566, 1.3057279586791992, 1.5666639804840088, 0.8000216484069824, -0.13235436379909515, -0.6523059606552124, -0.2902086675167084, -0.6261438131332397, -0.5785420536994934, -0.8342382907867432, -1.337104082107544, -0.4411965608596802, -0.31961551308631897, -0.4221515953540802, 0.8113369345664978, -0.052798472344875336, 0.7051125764846802, 1.4399579763412476, -0.0682826042175293, -1.0752416849136353, -0.6810875535011292, -0.06964513659477234, -1.038954496383667, 0.629560649394989, 1.4038439989089966, -1.252024531364441, -0.39894068241119385, 0.30002468824386597, 0.16764985024929047, 0.3890794813632965, -0.17432568967342377, 0.013061055913567543, -1.7308558225631714, -0.8303915858268738, -0.3357717990875244, 0.9367193579673767, -0.069423608481884, -0.03220721334218979, -0.3632549047470093, 0.37585243582725525, 0.49397608637809753, 0.2027815580368042, -0.9872390627861023, 0.9466961026191711, -0.7230761647224426, 0.22497351467609406, 0.05809929594397545, 0.0837453082203865, 0.727901816368103, -0.26413196325302124, -0.4554002583026886, 0.08629713207483292, -0.018150486052036285, -0.2966136336326599, 0.6449525356292725, -0.3001134693622589, 0.999214231967926, 0.8184424638748169, 0.4958727955818176, 1.075730562210083, -0.48391130566596985, -0.010680710896849632, -1.2722779512405396, 0.9974543452262878, 0.9574353098869324, 0.9764098525047302, -0.1048145592212677, 0.19726689159870148, 0.14393401145935059, 0.32529011368751526, 0.5522518157958984, 0.4165226221084595, 1.314997673034668, 0.8259698748588562, -0.46102002263069153, -0.1868346929550171, -0.2609809339046478, -0.02887013927102089, -0.5653587579727173, -0.28723496198654175, 0.6776593327522278, -0.8381877541542053, -0.5110998749732971, 1.226859450340271, 1.110886812210083, -0.3227570354938507, -0.5433845520019531, -0.10504256188869476, 0.9492683410644531, -0.3587407171726227, 0.4183148741722107, -0.6891345977783203, 0.022281624376773834, 0.09907849133014679, -1.231770634651184, -0.44114693999290466, 0.928497314453125, 0.378601610660553, 0.6555681228637695, -1.1170940399169922, -0.21075540781021118, -0.4275726079940796, 0.027967683970928192, 0.5823768973350525, -0.6765127778053284, 0.17283539474010468, -0.13441890478134155, -0.232661172747612, 0.12452388554811478, 0.05569270998239517, 1.1206934452056885, -0.6717840433120728, -0.15488982200622559, 0.02517937868833542, -0.31546750664711, 0.27868416905403137, -0.06325090676546097, -0.7122349739074707, 0.4533594846725464, -0.7498204708099365, -0.12617573142051697, -0.2041981816291809, 0.2813878357410431, 1.7248419523239136, 0.4387012720108032, 0.7301599383354187, 0.4063860774040222, -0.5266931653022766, -1.1153956651687622, 0.5724074840545654, 0.5434752106666565, 0.134726881980896, -0.18400874733924866, -0.8256508111953735, 0.46054255962371826, -0.24843797087669373, 0.23960600793361664, 0.1412190943956375, 0.5898929238319397, 0.8094044923782349, -0.03514894098043442, -0.29717305302619934, 0.5407755970954895, 1.5577423572540283, 1.7723928689956665, 0.3776550889015198, -0.7169207334518433, -0.43796733021736145, 0.9222776293754578, -0.4185900390148163, 0.4986640214920044, 0.925320565700531, -0.009049497544765472, 1.5372546911239624, -1.669804573059082, -0.33691662549972534, 0.2173030525445938, -0.13588623702526093, 0.31615838408470154, 0.5909396409988403, 0.5721602439880371, -0.1528826504945755, 0.5352394580841064, -0.16892653703689575, -0.2516798675060272, 0.33196499943733215, 0.013812581077218056, -0.7343732118606567, 0.5457605719566345, -0.7857252359390259, 0.2583129107952118, -0.7564998269081116, -0.04130072519183159, 0.006932133808732033, 0.28927963972091675, 0.22758282721042633, 0.25147727131843567, -0.01583694852888584, 1.0642945766448975, -1.0341877937316895, -1.1466634273529053, 0.43673473596572876, -0.563689649105072, 0.32115039229393005, -0.7287563681602478, -0.20355170965194702, -0.4671141803264618, -0.8348724246025085, -0.2104278951883316, 1.0754516124725342, -0.2398245632648468, -0.20129279792308807, -0.062011152505874634, -1.3490538597106934, 0.22211489081382751, 0.46845901012420654, 1.5324116945266724, 0.23780912160873413, 0.6717751026153564, 0.656928300857544, 0.8300296068191528, -1.4045190811157227, -0.09193934500217438, 0.6721409559249878, 0.09894569963216782, 0.1250268518924713, -1.0084073543548584, -0.3831560015678406, 0.3308277726173401, 0.3960128724575043, 0.22363130748271942, 0.6087291836738586, 1.2569215297698975, 1.3764203786849976, -0.3379213213920593, -0.6331492066383362, 0.30310577154159546, -0.7456371188163757, -0.41283759474754333, 0.7097951769828796, -0.8605920672416687, -0.31344836950302124, -0.370697021484375, -1.5035799741744995, 1.057303786277771, -0.13715022802352905, -0.7150149345397949, 0.6435874700546265, 0.8038454055786133, 0.22945791482925415, 1.1214877367019653, -0.11556737124919891, 0.40144291520118713, 0.14871732890605927, -0.11704658716917038, -1.854753851890564, 0.44846251606941223, 0.28492823243141174, 0.21830037236213684, -0.6385908722877502, 0.28645092248916626, 0.28935539722442627, -0.6049822568893433, -0.40378180146217346, -0.09674261510372162, 1.446683406829834, 0.6684208512306213, 0.6997014880180359, -0.8716288805007935, 0.38978275656700134, -0.4705718755722046, -0.2579953968524933, -0.1286417841911316, 0.6356905102729797, 0.28512465953826904, -1.0492850542068481, -0.3852464556694031, -0.559991717338562, -0.3848205804824829, -0.0897642970085144, -0.23828551173210144, 1.2161072492599487, 0.010578255169093609, -0.2383173555135727, -0.07139480859041214, 0.05163285508751869, -0.7551121711730957, -0.3127729296684265, -0.1748536080121994, 0.6344815492630005, -1.7251349687576294, -0.217532217502594, -0.41755738854408264, -0.5388490557670593, -0.1993621438741684, 0.32632502913475037, 0.035527024418115616, -1.1948466300964355, -0.6613884568214417, -0.9742890000343323, -0.003982714843004942, 0.8006735444068909, -0.5688755512237549, 0.1664644479751587, 0.2885069251060486, -0.9953421950340271, 0.7595621347427368, -0.01484299823641777, -1.2191294431686401, -0.07371576130390167, -1.3305058479309082, 1.325472116470337, -0.14843077957630157, 0.050070054829120636, 0.3979826867580414, 1.472240686416626, -0.4798690378665924, -0.6867853403091431, -1.179760456085205, 0.07938645780086517, 0.7129076719284058, 1.5275688171386719, -1.1485531330108643, 1.2790437936782837, -0.02984762378036976, -1.236033320426941, 0.1483100950717926, -0.08609233051538467, -0.5102862119674683, 0.7191511988639832, 0.26039382815361023, 0.33350521326065063, 0.08724632114171982, 1.1189981698989868, 0.14036987721920013, 0.8334465622901917, 0.3979134261608124, 0.30457356572151184, -0.8716133236885071, -0.19554749131202698, -0.3498217463493347, 0.1762850284576416, -1.1716264486312866, -1.2092084884643555, 0.019430704414844513, -1.3996198177337646, -0.8477897047996521, 0.5338209271430969, 1.012027382850647, -0.4995881915092468, 0.09604935348033905, -0.41230276226997375, 0.4120922386646271, -0.5174111127853394, 0.7663399577140808, -0.22181940078735352, 0.1052628830075264, -0.2988934814929962, -0.514819324016571, 0.12297208607196808, -1.5594524145126343, 0.04516621306538582, -0.03571626543998718, -0.14149297773838043, -0.054313454777002335, 0.4816111624240875, 0.9556185603141785, -0.5584548711776733, -0.655511200428009, 1.2356330156326294, 1.2861028909683228, -0.2601057291030884, -0.05182648077607155, 0.6721389889717102, 0.5106637477874756, 0.6549884080886841, -0.4562760889530182, -0.395917683839798, -1.037889838218689, 0.10233258455991745, 0.18040631711483002, -0.1714003086090088, -0.6478090882301331, -0.23398903012275696, -0.17351166903972626, 0.8413573503494263, 0.4437876343727112, -0.596312940120697, -0.20493556559085846, 1.1231080293655396, -0.346597284078598, 0.3875238597393036, 0.8442685604095459, 0.19163642823696136, 0.5337146520614624, 0.43774205446243286, 0.1935672163963318, 0.7319902181625366, -0.30282703042030334, 0.2850312292575836, -0.01725667528808117, -0.23212210834026337, -0.18354429304599762, -0.8300791382789612, -1.4534000158309937, -0.21362042427062988, -0.687507688999176, -0.6550576686859131, 0.011861688457429409, -1.627935528755188, -0.7825822234153748, 0.1522912085056305, 0.07361356168985367, -0.2750847637653351, -0.6363455057144165, 0.45596617460250854, -0.398959755897522, -0.12867875397205353, 1.2183098793029785, -0.05479149892926216, 1.266156792640686, 0.10187360644340515, -0.30440205335617065, -0.9725854396820068, -0.41589710116386414, 0.8576419949531555, -0.18270771205425262, -0.18712086975574493, -0.03835085779428482, 0.41244134306907654, 0.03464210405945778, -0.585508406162262, 0.6063967943191528, -0.8975479602813721, 0.17062412202358246, 0.03679772466421127, -1.0828373432159424, -0.19894854724407196, 0.5569671392440796, 0.3159482181072235, -0.06289582699537277, -0.6173064112663269, -1.4206819534301758, 0.750408947467804, -0.5292587876319885, 1.1856646537780762, -0.4211250841617584, 1.1259503364562988, 0.30759963393211365, -0.3840608298778534, -0.1362687349319458, -1.0304325819015503, 0.6679820418357849, -0.06899171322584152, 1.0415862798690796, -0.30629512667655945, -0.15400199592113495, -0.08263197541236877, -1.3183493614196777, 0.3725321888923645, 0.4634271562099457, -0.23598748445510864, 0.0550045445561409, -1.3692514896392822, -0.7844628691673279, -0.5107002854347229, 0.30126890540122986, 1.044732928276062, -0.06714965403079987, 0.5638284087181091, -0.37968552112579346, -1.0738840103149414, 0.015525049529969692, 0.9012670516967773, -0.5397560596466064, -0.005771748721599579, 1.723327398300171, 1.6453880071640015, 0.918898344039917, 0.10114444047212601, -0.28269949555397034, 0.5208376049995422, -0.9087035655975342, -0.5218356847763062, -0.8010521531105042, -0.10880424082279205, 0.10823778063058853], [0.6169954538345337, 0.6181463599205017, -2.423950433731079, -0.512127697467804, 0.19256474077701569, 0.8015762567520142, 1.084558129310608, 0.3796696960926056, 0.3622520864009857, -0.10814505815505981, -0.3174974024295807, -0.06498351693153381, 1.1184831857681274, 0.7589912414550781, -0.14450538158416748, 0.15217919647693634, 0.8202192187309265, -0.5204944014549255, 0.907059907913208, 1.5489091873168945, -0.47682610154151917, -0.1324874460697174, -0.1462010145187378, -0.1825295388698578, -0.24637876451015472, -0.2517390251159668, -1.3514549732208252, -1.1342082023620605, -0.9397872090339661, -1.2971826791763306, 1.0290124416351318, -0.3516714572906494, -0.6545689105987549, -0.6244562864303589, -1.0156662464141846, 0.004417140036821365, 0.964079737663269, 0.10522594302892685, 1.2493324279785156, 1.0350701808929443, 1.0167521238327026, 0.9293422698974609, -0.18696124851703644, -0.7694052457809448, 0.2885994613170624, 0.016336314380168915, 0.6044479608535767, -0.9569305777549744, 0.43974271416664124, -0.10172948986291885, 0.6102915406227112, -0.7532490491867065, 0.5784654021263123, 0.1203698068857193, 1.6792991161346436, 0.09408334642648697, 0.7752785682678223, 0.14952124655246735, 0.9900172352790833, -1.2799218893051147, 0.7101528644561768, -0.0017866343259811401, -0.6023612022399902, 0.9868060350418091, -0.23323291540145874, -0.6125146150588989, -0.19320735335350037, 0.9458164572715759, 0.016250506043434143, -0.32730966806411743, 0.8565419912338257, 0.9641072154045105, -0.5702539682388306, 0.061275456100702286, -0.8009352684020996, 0.008144170045852661, 0.27519491314888, 0.9364171624183655, 0.7276204228401184, 0.6769046783447266, -0.21590960025787354, -0.43996039032936096, 0.6126716732978821, 0.3518451452255249, 1.8604907989501953, 0.172651469707489, -0.05350151285529137, 0.6510653495788574, -0.407356858253479, 2.1127312183380127, 0.08056151866912842, -0.12063298374414444, 0.7655996680259705, -0.5808144807815552, -0.4570072591304779, -0.555512547492981, 0.1005157083272934, 0.24140237271785736, -1.1846281290054321, -0.38155415654182434, -0.4482549726963043, -1.008381724357605, 0.5811914205551147, -0.04479704052209854, 0.22402648627758026, 1.1690824031829834, 0.9249114990234375, 0.29307568073272705, -0.5698214769363403, 0.22955071926116943, 0.1415202021598816, 0.4586283266544342, -0.542652428150177, -1.0423052310943604, -1.0110448598861694, 0.3671584725379944, 1.2304350137710571, 0.1445031315088272, 0.18644380569458008, 1.194321870803833, -0.9893888235092163, -0.489946573972702, -0.8671770691871643, 0.4076465368270874, 0.24284613132476807, 0.4273588955402374, -0.5114589333534241, -0.5532106161117554, 0.4022366404533386, -0.2622973620891571, -0.33395758271217346, -0.4654082953929901, 0.29507502913475037, 0.45336300134658813, -0.4601459503173828, 1.3481571674346924, -0.21491937339305878, -0.6661938428878784, 0.2723519206047058, -0.19177252054214478, 0.6617512702941895, 0.20145702362060547, 0.3480943441390991, -0.051392119377851486, -0.061367217451334, -0.3686070442199707, 0.09965331852436066, -0.5701273083686829, -0.7510063052177429, 0.28476548194885254, -0.33587226271629333, 0.05011620372533798, 0.2530798614025116, 0.3968381881713867, 0.5358571410179138, 0.17206959426403046, 0.2472691833972931, 0.6602901816368103, 0.5475465059280396, 0.43166255950927734, -0.029969917610287666, -0.3551749587059021, -0.18594317138195038, 0.6160387396812439, 0.06486387550830841, -0.6913262605667114, 0.1133367195725441, 0.6316210627555847, 0.4843045473098755, 0.6366013884544373, -0.7723598480224609, -0.05982983857393265, -0.41704273223876953, 0.43635308742523193, -0.01502055674791336, -0.6810336112976074, 1.1025404930114746, -1.2756098508834839, -1.139915108680725, -1.1065232753753662, -0.1257820874452591, -0.37193164229393005, -0.22482408583164215, -0.09075377136468887, 0.4891411066055298, -0.3695499300956726, -0.0687221884727478, -0.4646526575088501, -0.1512170135974884, -0.8308896422386169, -0.6709960103034973, 0.04947774112224579, -0.3676488995552063, 0.21592654287815094, -0.13102291524410248, -1.1002943515777588, 0.2867487967014313, -0.8629303574562073, -0.6794443726539612, 0.06521879136562347, -0.10317140817642212, -0.4909505546092987, -0.9582813382148743, 0.15636876225471497, -0.4690786302089691, 0.6898516416549683, -1.0606623888015747, 0.9313670992851257, -1.1521037817001343, -0.0872812271118164, 1.3817058801651, 0.6273855566978455, -0.7668370604515076, 0.6646617650985718, 0.07795809209346771, -0.967014729976654, 0.026211760938167572, 0.032489679753780365, -0.18575631082057953, 0.00039614224806427956, -0.09196615219116211, 0.6833178997039795, 0.6736064553260803, -0.31003904342651367, 0.2912035882472992, 0.17407749593257904, -0.6814061403274536, -0.5998526215553284, -0.7736945748329163, 0.24721530079841614, -0.16540321707725525, -1.221783995628357, 1.121620774269104, 0.06852716952562332, -0.49312305450439453, 0.5985128879547119, -0.30917075276374817, 0.07502063363790512, 0.24184559285640717, 1.0150386095046997, 0.034838639199733734, 0.8700774312019348, -0.6200398802757263, -0.309101402759552, -0.6273052096366882, 0.1821952611207962, 0.7800096273422241, -1.1836124658584595, 0.21828529238700867, 1.1769764423370361, 0.7390921711921692, 0.4780610203742981, 0.645917534828186, 0.011306260712444782, 0.126031294465065, -0.6417398452758789, -0.6823058128356934, 0.423225075006485, -0.09944858402013779, 0.6065576076507568, 0.26870197057724, -0.1304408609867096, -0.3604784905910492, -0.012835155241191387, 0.5820532441139221, -0.807309091091156, -0.8413701057434082, 0.011046133004128933, -0.1183042898774147, 0.48321595788002014, -0.13428449630737305, 0.7297518849372864, -0.5509092807769775, 0.4989407956600189, -0.6188223361968994, -0.1851375699043274, -0.7005322575569153, 0.3319488763809204, -0.46497219800949097, 0.5138437747955322, -0.4553108215332031, -1.0086092948913574, -0.3725116550922394, -0.09122272580862045, 0.8342265486717224, -0.27555856108665466, -0.47060427069664, 0.28031447529792786, -0.01840459741652012, -0.06946016848087311, -0.09687826037406921, 0.33562713861465454, -0.13649670779705048, -0.5564969778060913, 0.07460509240627289, 1.0484371185302734, 1.2918267250061035, -0.5026620030403137, -0.9697690010070801, -0.605474591255188, 0.4599357843399048, 0.8376199007034302, 0.710433840751648, 1.5094882249832153, 0.41160306334495544, 0.16363391280174255, -0.06829047948122025, -0.3303156793117523, -0.2282017171382904, -0.550160825252533, -0.696712851524353, -0.8690927624702454, -0.6421928405761719, 0.007891896180808544, -0.27449384331703186, 0.2877826690673828, 0.21717558801174164, -0.06294428557157516, 1.2408868074417114, 0.22703717648983002, -0.3298189043998718, -0.5671312212944031, -0.007468309719115496, -0.579193651676178, 0.18301573395729065, 1.3343713283538818, -1.4073002338409424, 0.15106776356697083, -0.2707189619541168, 0.14878004789352417, 0.4454239010810852, -0.06157781556248665, -0.4788059890270233, -1.004034399986267, -0.9686517715454102, -0.3917452394962311, 0.5093339681625366, 0.18307706713676453, -0.2553311884403229, -0.7727949023246765, 0.6621742248535156, 0.7563832402229309, 0.1364119052886963, -0.5726532936096191, 0.9539726376533508, -0.027415724471211433, -0.011152339167892933, 0.34164729714393616, 0.21144184470176697, 0.414252370595932, 0.04597504809498787, -0.6368314623832703, 0.10166829824447632, 0.059030793607234955, 0.28492000699043274, 0.7204258441925049, -0.3176144063472748, 1.2690935134887695, 0.3738316595554352, 0.10117508471012115, 1.3947328329086304, -0.2420675903558731, 0.5370482206344604, -1.2993276119232178, 0.6555514335632324, 0.2649098038673401, 0.726850152015686, -0.235775887966156, 0.43255823850631714, 0.5782465934753418, 0.0885339304804802, 0.2436361163854599, 0.42897769808769226, 0.8754528760910034, 0.28849655389785767, -0.16245365142822266, -0.5294297933578491, 0.3942234516143799, -0.1889503300189972, -0.8967881798744202, 0.09886473417282104, 0.27140191197395325, -0.7780991196632385, -0.05839697644114494, 0.9961825013160706, 0.13504734635353088, -0.23963770270347595, -0.27496394515037537, 0.2021113783121109, 0.47017189860343933, 0.12539760768413544, 0.48685306310653687, -0.37216904759407043, 0.1334330141544342, 0.43329286575317383, -1.1996334791183472, -0.445617139339447, 0.5379084944725037, 0.4381695091724396, 0.8780010938644409, -0.9284101724624634, 0.4220365583896637, 0.29951056838035583, 0.7117294073104858, -0.10982656478881836, -0.13886301219463348, 0.10856765508651733, -0.3359405994415283, 0.3187815546989441, -0.05040654167532921, 0.6319776177406311, 0.20771460235118866, -0.6393471956253052, -0.1263485997915268, -0.1916855424642563, 0.20430293679237366, -0.23760825395584106, 0.8050773739814758, 0.14133824408054352, -0.18068139255046844, -0.18577927350997925, 0.13623613119125366, -0.29114463925361633, 0.5044631361961365, 1.7419461011886597, 0.6218787431716919, 0.5912549495697021, 0.6431942582130432, 0.009687911719083786, -1.4165977239608765, 0.601931631565094, 0.526960551738739, 0.1047872006893158, -0.6069823503494263, 0.023557983338832855, -0.0923190489411354, -0.036887023597955704, 0.6670165657997131, 0.8201068639755249, 0.846584677696228, 0.9040601849555969, -0.5271167159080505, 0.12249957770109177, 0.9459061622619629, 0.8181647062301636, 1.881032943725586, 0.31601715087890625, -0.0020067617297172546, -1.0556745529174805, 0.40922337770462036, -0.33616188168525696, -0.1401950567960739, 0.7644931674003601, 0.24297122657299042, 1.7258045673370361, -1.4633426666259766, -0.4447808265686035, -0.04948728159070015, -0.004066338296979666, -0.03733173385262489, 1.1585533618927002, 0.04837808012962341, 0.23751533031463623, 0.28561902046203613, -0.2891883850097656, -0.30282846093177795, -0.0949067622423172, -0.07333767414093018, -0.4000687003135681, 0.6262377500534058, -0.766753077507019, 0.8246854543685913, -0.5325744152069092, 0.31250765919685364, 0.49945151805877686, -0.6905003786087036, -0.7647337317466736, 0.13081702589988708, 0.256693571805954, 1.3277572393417358, -0.6630527377128601, -1.1417006254196167, 0.4224565625190735, -0.838961660861969, -0.16829662024974823, -0.314208447933197, -0.5036544799804688, -0.10498751699924469, 0.13164764642715454, -0.3264792859554291, 0.9413423538208008, 0.15277999639511108, 0.08386094123125076, -0.33002638816833496, -1.298689842224121, -0.5213239192962646, 0.30900266766548157, 1.2244457006454468, 0.17369501292705536, 0.3581934869289398, -0.0659065768122673, 0.7971138954162598, -1.0502814054489136, -0.3288980722427368, 0.6252977848052979, -0.36591091752052307, 0.2880405783653259, -0.7881993651390076, -0.6823363900184631, 0.6933504939079285, -0.015286778099834919, 0.5955272912979126, 0.33751142024993896, 1.227708101272583, 1.579694151878357, -0.42208096385002136, -0.44647881388664246, 0.4998946487903595, -0.30884745717048645, -0.4712637662887573, 0.7612346410751343, 0.06508924067020416, -1.1227163076400757, 0.013735305517911911, -1.921440839767456, 0.6643257141113281, -0.24048098921775818, -1.1924763917922974, 0.1928473711013794, 0.23928263783454895, 0.6560695767402649, 0.7916224598884583, -0.5671406388282776, 0.3979158103466034, -0.3151823878288269, -0.41277503967285156, -1.8150265216827393, 0.3680059313774109, -0.06279813498258591, 0.31007838249206543, 0.1262713223695755, 0.33968183398246765, -0.016194244846701622, -0.38102486729621887, -0.10014214366674423, 0.4581979811191559, 0.25997239351272583, 0.1415090560913086, 0.6145721673965454, -1.0425565242767334, -0.030861584469676018, 0.08194765448570251, -0.5415339469909668, -0.5130375623703003, 0.49245181679725647, -0.39222022891044617, -0.9769465327262878, -0.4325910210609436, -0.79328852891922, -0.7178645133972168, 0.15859314799308777, 0.15972767770290375, 1.1296778917312622, -0.13097935914993286, -0.4545855224132538, 0.014336951076984406, -0.019491372630000114, -0.43317911028862, -0.1832953691482544, -0.05199812352657318, 0.40769654512405396, -1.5270140171051025, -0.46458926796913147, 0.32458385825157166, -1.0303459167480469, -0.48104187846183777, -0.3117780089378357, 0.23100140690803528, -1.3066598176956177, -1.5065840482711792, -0.30287912487983704, -0.604988157749176, 0.3987216353416443, -0.7367732524871826, -0.19973096251487732, 0.5435189604759216, -1.1154545545578003, 0.7420019507408142, 0.5403194427490234, -0.6245572566986084, -0.4130392372608185, -0.9773802757263184, 0.4434831142425537, -0.11201480776071548, 0.21862417459487915, -0.2606821656227112, 0.603624701499939, -1.1261428594589233, -1.6058306694030762, -1.479925513267517, -0.10744167864322662, 0.5289936661720276, 0.7987077832221985, -1.1832280158996582, 0.6123540997505188, 0.9228600859642029, -0.5133396983146667, 0.19291961193084717, 0.37632471323013306, -0.4429600238800049, -0.15697753429412842, 0.6455162167549133, -0.6956782937049866, 0.043880268931388855, 0.5570710897445679, -0.36674803495407104, 0.7006382942199707, 0.08503220230340958, -0.12222617864608765, -0.9705830812454224, -0.16292160749435425, -0.3705493211746216, 0.3920814096927643, -1.157170057296753, -1.0280667543411255, 0.1681670993566513, -1.104520320892334, -0.2567194998264313, 0.8275238275527954, 0.25960806012153625, -0.8163951635360718, -0.3616023659706116, -1.2897953987121582, 0.31986090540885925, -0.8233255743980408, 0.7898520827293396, -0.8424506783485413, 0.3920227587223053, -0.6595410108566284, -0.5389971137046814, 0.2595216929912567, -1.0551059246063232, 0.43809735774993896, 0.0548570491373539, -0.24909207224845886, -0.16194023191928864, 0.683561384677887, 1.1395480632781982, -0.22362089157104492, -0.7562344670295715, 0.8805635571479797, 0.8809462785720825, 0.12633143365383148, -0.5051504373550415, 0.22798138856887817, 0.40743184089660645, 0.963507354259491, -0.15830059349536896, 0.4161156415939331, -0.9942921996116638, 0.8851925134658813, 0.32129281759262085, 0.3184388279914856, -0.6419323086738586, 0.19646891951560974, -0.164502814412117, 0.6661630868911743, -0.29582861065864563, -0.9377210736274719, -0.06545814871788025, 0.9296150803565979, -0.07948985695838928, 0.2379111647605896, 0.1781214326620102, 0.32866060733795166, 0.026479516178369522, 0.3234967589378357, 0.3878564238548279, 0.35608386993408203, -0.7698392271995544, -0.4090883433818817, -0.42475879192352295, -0.07567144185304642, -0.2954031229019165, -0.24526381492614746, -1.1122697591781616, -0.19301767647266388, -0.4405632019042969, -0.24960361421108246, 0.07399995625019073, -1.1937453746795654, -0.8799337148666382, 0.35570284724235535, -0.18198268115520477, -0.27169153094291687, 0.07830911874771118, 0.2574862837791443, 0.019354747608304024, -0.0506904162466526, 0.8657294511795044, -0.413034588098526, 0.9796918630599976, 0.005869386717677116, -0.16943620145320892, -0.6087419986724854, -0.08320491015911102, 0.3673308789730072, 0.06340718269348145, -0.01829705201089382, -0.12147865444421768, 0.013010958209633827, -0.156866192817688, -0.4653729200363159, 0.041860971599817276, 0.4775106608867645, -0.14431075751781464, 0.09394923597574234, -0.9779990911483765, 0.517677366733551, 0.7078598737716675, 0.975213885307312, 0.17703384160995483, -0.3602268397808075, -0.8640458583831787, 0.48693057894706726, -0.44272851943969727, 1.2895588874816895, -0.4760175943374634, 0.6800909042358398, -0.17813409864902496, 0.25235462188720703, -0.1878037452697754, -0.2571321427822113, 0.8333662748336792, -0.4831241965293884, 0.41009414196014404, 0.13006427884101868, 0.324557363986969, -0.8267197012901306, -1.0288822650909424, 0.628164529800415, 0.6657151579856873, -0.6303404569625854, -0.11852759122848511, -0.975738525390625, -0.7297480702400208, -0.9421371221542358, 0.30020445585250854, 0.5894539952278137, 0.06615986675024033, 0.162858784198761, -0.5009790062904358, -0.7044520974159241, 0.391237735748291, -0.4054282009601593, -0.20274858176708221, 0.5814306139945984, 1.6271077394485474, 1.9355074167251587, 0.8769429922103882, -0.046606939285993576, -0.4529949426651001, 0.6685062050819397, -0.49540022015571594, -0.4014938175678253, -0.5124999284744263, -0.6193618774414062, 0.0033838171511888504], [-0.33665716648101807, 1.1898415088653564, -2.669403314590454, -0.1779913604259491, 1.099902868270874, 0.5068248510360718, 1.3082170486450195, -0.36693379282951355, 0.0673617273569107, -0.43766874074935913, 0.3288661539554596, 0.23637063801288605, 0.3573967218399048, 0.8594624400138855, 0.37856072187423706, 0.655535101890564, 0.648612380027771, -1.1108644008636475, 0.4618837833404541, 1.5539549589157104, -0.7279092073440552, -0.5525416135787964, -0.3544734716415405, -0.20348656177520752, -0.2943587005138397, 0.38027289509773254, -1.153315544128418, 0.04948650300502777, -1.1326184272766113, -0.9645891189575195, 0.45997390151023865, -0.6667526960372925, -0.350020170211792, 0.1565227061510086, -1.6215243339538574, 0.5631359815597534, 1.5368882417678833, 1.2588461637496948, 1.1762073040008545, -0.031144244596362114, 2.1531362533569336, 0.0005586221814155579, -0.28786683082580566, -1.3784992694854736, -0.24795815348625183, -0.7970082759857178, 0.923313319683075, -0.807884931564331, 0.46700963377952576, -0.5799403190612793, 0.30927127599716187, -0.879517674446106, 0.9331663846969604, 1.5319339036941528, 1.52890145778656, -0.5837463140487671, 0.0036812853068113327, 0.3215630054473877, 0.8938339948654175, -0.8864163756370544, 0.47205474972724915, -0.24271535873413086, -0.12038306891918182, 0.46691983938217163, 0.192540243268013, 0.2660438120365143, -0.29171621799468994, 0.560936450958252, 0.2315439134836197, -0.13316181302070618, 0.3190770745277405, 0.6787304878234863, -0.9872809648513794, 0.9404955506324768, -1.3410289287567139, 0.6489769220352173, 0.5527856349945068, 0.4854520559310913, -0.020923739299178123, 0.3721155524253845, -1.1177196502685547, -0.35217228531837463, 1.233132243156433, -0.6753174066543579, 0.572928786277771, -0.0684693455696106, 0.6155312061309814, -0.15442447364330292, -0.6960205435752869, 1.4691556692123413, 1.0600390434265137, 1.1428998708724976, 0.5577000379562378, -0.09606523811817169, -0.24839133024215698, -0.08816161006689072, 0.022343561053276062, -0.4960674047470093, -1.214747667312622, -0.6090019941329956, -0.007481701672077179, -0.9806763529777527, 0.5070085525512695, 0.12746039032936096, -0.4703157842159271, 1.3248592615127563, -0.1091914102435112, -0.0047910623252391815, -0.3201015889644623, 0.007990486919879913, -0.21414732933044434, 0.08329827338457108, -1.194701910018921, -0.9971311092376709, -0.5466763973236084, 1.0030221939086914, 1.1219136714935303, -0.921963095664978, 0.4054242968559265, 0.8239749073982239, 0.4533444046974182, -0.04478384554386139, -0.18523795902729034, 0.4875333607196808, 0.6709959506988525, 0.016726084053516388, -0.5807708501815796, -0.9383058547973633, 0.27365970611572266, -0.22226163744926453, 0.04515412822365761, -0.9064018726348877, -0.45526495575904846, 0.7104378938674927, -0.9250020980834961, 1.383962631225586, -0.41336119174957275, -0.665489137172699, 0.09838501363992691, -0.9555694460868835, 0.20502641797065735, -0.33638709783554077, 0.14579671621322632, -0.4787953197956085, -0.45809823274612427, -0.8687921166419983, 0.47398245334625244, 0.05119207128882408, -0.676116943359375, 0.3186943531036377, -0.9522736072540283, 0.11022167652845383, 0.7912341952323914, 0.36302483081817627, 0.33099326491355896, -0.4144260883331299, -0.16036200523376465, 0.13903532922267914, 0.6821410655975342, 0.3262958526611328, 1.0998541116714478, 0.13459447026252747, -1.0787022113800049, 0.2850542962551117, 0.6510794162750244, 0.05768386647105217, 0.22665831446647644, 0.4017255902290344, 0.2758966088294983, 1.29445481300354, -0.17535673081874847, -0.7920403480529785, -0.23127108812332153, 0.3519286513328552, 0.8004013299942017, -1.4637585878372192, 1.11057448387146, -0.10949408262968063, -1.79134202003479, -1.2316186428070068, 0.4433337450027466, -0.9345242977142334, 0.3714669346809387, -0.27694210410118103, 0.7202386260032654, -0.6264265775680542, 0.3640926480293274, -0.0367499440908432, -0.7064553499221802, -0.9806280136108398, -0.7735766172409058, -0.2851395010948181, -1.097156047821045, 0.135395810008049, -0.8835623264312744, -0.704389214515686, 0.4293534755706787, -0.9743363261222839, -0.6768444776535034, 0.3521835207939148, 0.27249693870544434, -0.28748461604118347, -0.39854225516319275, 0.36916583776474, -0.2679237723350525, 0.69136643409729, -1.1292297840118408, 0.4155234396457672, -1.1059010028839111, 0.09597937762737274, 0.5193523168563843, -0.128493994474411, -0.7238510847091675, 0.806336522102356, 0.3126673698425293, -1.0653386116027832, 0.5595940351486206, 0.5651901960372925, -0.1813708245754242, 0.18301883339881897, 0.20843729376792908, 0.23197641968727112, -0.1466244012117386, -0.36537593603134155, 0.7373675107955933, -0.2755429744720459, -0.39392000436782837, -1.25823974609375, -0.8177530765533447, 0.2620527148246765, -1.4071714878082275, -0.8602968454360962, 0.8198553323745728, 0.19931966066360474, -1.3230226039886475, 0.20271645486354828, 0.20905622839927673, 0.7298835515975952, 0.38785219192504883, 1.1090061664581299, 0.015347246080636978, 0.9782843589782715, -0.48611801862716675, 0.19469484686851501, -0.8341970443725586, -0.12776914238929749, 0.021203815937042236, -0.15392142534255981, 0.6876626014709473, 0.6857019662857056, 0.9879155158996582, 0.523138165473938, 0.33027803897857666, -0.2695412337779999, -0.09580522030591965, -0.743634819984436, -0.9756875038146973, 0.6558609008789062, 0.5546704530715942, 1.6092922687530518, 1.244211196899414, -1.1382887363433838, -0.3489014506340027, 0.08737049996852875, 0.014030897058546543, -0.13008520007133484, -0.965261697769165, -0.6907442808151245, -0.029771286994218826, 0.47681725025177, 0.06982415914535522, 0.5165396928787231, -0.7405821084976196, 0.38923096656799316, -0.5545262098312378, -0.31992965936660767, -0.35758936405181885, 0.9296452403068542, 0.23533326387405396, 0.7493892312049866, 0.07342101633548737, -1.0867817401885986, -0.3374902606010437, -0.2283416986465454, 0.44275596737861633, 0.3575090169906616, 0.7058396339416504, 0.32126957178115845, 0.570594310760498, -0.5096136331558228, 0.4568786025047302, 0.08504661917686462, 0.14761923253536224, -0.05153840035200119, 0.2023678719997406, 0.6269903182983398, 1.417919397354126, -1.1917715072631836, -0.5274581909179688, -0.6384671926498413, 0.2791985273361206, 1.333993673324585, 0.9810216426849365, 0.46684515476226807, -0.08314330875873566, -0.1030346155166626, -0.06451618671417236, -0.2510930299758911, -0.5348472595214844, -0.7866030931472778, -1.4243748188018799, -0.6501022577285767, 0.03270101919770241, -0.44466978311538696, 0.16998760402202606, 0.5195152759552002, -0.7481523752212524, 1.1875803470611572, 0.9532743096351624, -0.4841057062149048, -0.4955853223800659, 0.07299463450908661, -0.4519018530845642, -0.8535628914833069, 0.9310833215713501, 1.5763401985168457, -0.46139436960220337, 0.22004342079162598, 0.7008407115936279, 0.38417014479637146, 0.8205653429031372, -0.47232478857040405, 0.6302323341369629, -1.1569221019744873, -0.6797105073928833, -0.09611430764198303, 0.17191293835639954, -0.14709100127220154, -0.3798609972000122, 0.03933636471629143, 0.4690342843532562, 1.32081937789917, -0.33218756318092346, -0.45144838094711304, 0.9681678414344788, 0.49838417768478394, -0.7822741270065308, -0.18978653848171234, 0.672614336013794, 0.3229830861091614, -0.23699381947517395, -0.32931768894195557, 0.013562489300966263, -0.5572056770324707, -0.9618368148803711, -0.05459382385015488, 0.18678927421569824, 1.0332717895507812, -0.33594372868537903, 0.11430587619543076, 0.9512948989868164, 0.02935246005654335, 0.1258789598941803, -1.6873784065246582, 0.47524917125701904, 0.305486798286438, 1.1647677421569824, 0.38717955350875854, 0.11613982170820236, 0.16078411042690277, 0.7781387567520142, -0.03621750324964523, 0.640784740447998, 0.8403542041778564, -0.08289888501167297, 0.035608936101198196, -0.5243403315544128, 0.2971692979335785, -0.5041832327842712, -0.7005958557128906, 0.17606215178966522, -0.038316283375024796, -0.9645373225212097, -0.6196886301040649, 0.630489706993103, 0.21125632524490356, -0.10982640087604523, -0.018435951322317123, -0.14653465151786804, 0.586419403553009, -0.9555863738059998, 0.595781683921814, -0.5171827077865601, 0.4926498532295227, 0.3307231068611145, -1.262815237045288, -0.38837602734565735, -0.19619566202163696, 1.0107972621917725, 1.3119699954986572, -1.187428593635559, 0.31914904713630676, 0.13782541453838348, 0.6467831134796143, -0.1598428189754486, -0.7739081382751465, -0.23456674814224243, 0.3949398100376129, -0.13657335937023163, 0.36411434412002563, 0.32739055156707764, 1.0194475650787354, 0.001357072964310646, -0.2871938943862915, 0.2998773455619812, 0.21630620956420898, -0.47474023699760437, -0.9017860889434814, 0.3423551321029663, 0.1759520024061203, 0.10632382333278656, -0.2351217269897461, 0.8083049058914185, 0.22600005567073822, 2.0738401412963867, 0.566979706287384, 0.7682451009750366, 0.344773530960083, -0.3170296549797058, -0.8242877721786499, -0.2574670910835266, 0.2918516993522644, 0.0673433467745781, -0.7868392467498779, 0.08702222257852554, 0.8699764609336853, -0.41140955686569214, 0.9596914052963257, 0.7314316630363464, 0.9720693826675415, 0.2770710289478302, 0.290973961353302, 0.07772836089134216, 0.3622002899646759, 1.2574145793914795, 0.8203163146972656, 0.2924635410308838, -0.6352238655090332, -0.8891363739967346, 0.7330288887023926, -0.6955878138542175, 0.09469332545995712, 0.8705524206161499, 0.10459425300359726, 1.5214064121246338, -1.4979088306427002, -0.739672064781189, 0.7767030000686646, 0.3176576495170593, 0.22633659839630127, 0.6163779497146606, 0.3229759931564331, -0.04243946820497513, 0.22854822874069214, 0.26717624068260193, 0.09648352861404419, 0.09014885872602463, 0.08704829961061478, 0.12657782435417175, 0.4192253351211548, -0.4187116026878357, 0.3044333755970001, -1.0346357822418213, 0.13071030378341675, -0.19789932668209076, -0.7177135944366455, -0.058134451508522034, 0.16059517860412598, 0.27982065081596375, 1.4191645383834839, -0.1617269217967987, -0.8069910407066345, 0.1830962896347046, -1.4342031478881836, -0.17539313435554504, -0.708365797996521, -0.5452737808227539, -0.03203625977039337, -0.6665977239608765, -0.47192180156707764, 0.20423471927642822, -0.7266595363616943, -0.5769031643867493, -1.159308910369873, -1.9247463941574097, 0.09350530803203583, 0.612236499786377, 1.3257054090499878, 0.6324650049209595, -0.22883322834968567, -0.09595656394958496, -0.23794886469841003, -1.1684354543685913, -0.6264791488647461, 0.645414412021637, 0.0016769301146268845, 0.7042782306671143, -1.5124977827072144, -0.201135516166687, 0.3267916142940521, 0.33505192399024963, 0.04023576155304909, 0.4163855314254761, 1.2825403213500977, 0.7253292798995972, 0.034433845430612564, -0.6582642793655396, 0.8692241907119751, -0.5654793381690979, 0.9953036308288574, 1.0412979125976562, -0.43226340413093567, -0.5806629657745361, -1.265792727470398, -1.6781525611877441, 1.6056405305862427, -0.6680710315704346, -0.569012463092804, 1.4496889114379883, 0.027228958904743195, 0.9269911050796509, 0.38110092282295227, -0.43663156032562256, 0.5495518445968628, 0.13250361382961273, -0.40900325775146484, -0.8993582129478455, 0.7302285432815552, 0.23855219781398773, 0.3117055296897888, -0.1476394236087799, 0.5461634397506714, 0.315656453371048, -0.7303095459938049, 0.2898465096950531, 0.5392679572105408, 0.36682575941085815, 0.13720488548278809, 0.4522620737552643, -0.6320581436157227, 0.36504799127578735, -0.40788328647613525, -0.7594358921051025, -0.3238053321838379, 0.3860282003879547, -0.04819833114743233, -0.8549798727035522, 0.002002706751227379, 0.07024963200092316, -0.9994292259216309, -0.7636978626251221, -0.45668280124664307, 0.4629862904548645, 0.6204977631568909, -0.18720519542694092, 0.455337256193161, -0.3259403705596924, -0.6015511155128479, -0.6237567663192749, 0.15335756540298462, 0.39943182468414307, -1.4651094675064087, 0.49837034940719604, -0.3418777585029602, -0.017056457698345184, -0.5388978719711304, 0.03507198393344879, 0.3163996934890747, -0.4300963878631592, -1.536574363708496, -1.1035805940628052, -0.2204141914844513, 0.7952691912651062, -0.8724367618560791, 1.0554242134094238, -0.037498921155929565, -1.3704841136932373, 0.6690369844436646, -0.2294909656047821, -1.2445734739303589, -0.2902645170688629, -1.2284824848175049, 0.9355956315994263, -0.6815133094787598, 0.9114269018173218, -1.1871176958084106, 0.6830651760101318, -1.910978078842163, -1.399964690208435, -0.6987240314483643, 0.32752835750579834, 1.02095365524292, 0.5916835069656372, -0.2619273066520691, 1.3461048603057861, 0.1433366984128952, -0.47689199447631836, -0.4334391951560974, 1.1206670999526978, -0.582679271697998, 0.17712652683258057, 0.6985993385314941, 0.15456441044807434, 0.8114410638809204, 1.468146562576294, 0.12166192382574081, 1.056244969367981, -0.12854847311973572, 0.8297078609466553, -0.5322015881538391, -0.8450019359588623, -0.49688759446144104, 0.3856744170188904, -0.963426947593689, -1.018125057220459, 0.4947870373725891, -0.856026291847229, -0.5939822196960449, 0.2553229331970215, 0.1948012113571167, -0.6871310472488403, 0.4214584231376648, -0.9344967007637024, 0.49033868312835693, -1.4563539028167725, 0.30967196822166443, 0.3180631697177887, -0.5147714614868164, 0.14293240010738373, 0.18074584007263184, 0.28007882833480835, -1.0572550296783447, 0.03830663859844208, -0.07938124984502792, 0.15297016501426697, -0.44999247789382935, 0.6320367455482483, 0.7975980639457703, -0.11231998354196548, -0.3401755690574646, 1.5239183902740479, 0.34084635972976685, 0.2194969803094864, -0.03890468552708626, -0.03387145325541496, 0.04843372479081154, 0.9062348008155823, -0.31064730882644653, 0.03476331755518913, -0.4243822991847992, 0.45693719387054443, 0.3602572977542877, -0.6184442043304443, -0.3409464359283447, 0.271953821182251, -0.6197423338890076, 0.5214414596557617, 1.0989317893981934, -0.7512823939323425, 0.4688178300857544, 1.237949252128601, 0.005770988762378693, -0.9233018755912781, -0.030416913330554962, -0.041610755026340485, 0.15808874368667603, -0.04281926527619362, 0.6075693368911743, -0.02620645985007286, -0.671502947807312, 0.8290446996688843, 0.23315918445587158, 0.2487977147102356, -0.4493665099143982, -0.6391634345054626, -1.0734868049621582, -0.08204531669616699, -0.624077320098877, -0.3801986575126648, -0.03586236387491226, -1.3748085498809814, -0.8736851811408997, 0.625266432762146, -0.2507248818874359, -0.821709394454956, -0.302848219871521, -0.08583180606365204, 0.15597671270370483, -0.8977868556976318, 0.5252677202224731, -0.37437814474105835, 1.4943649768829346, -0.5224226117134094, 0.5009883642196655, -0.5495144724845886, -0.837185800075531, 0.3475857675075531, 0.007324423640966415, 0.1249961405992508, -0.6041128635406494, 0.842018723487854, -0.16444501280784607, -1.0932499170303345, 0.24394343793392181, 0.32918792963027954, 0.20557983219623566, -0.2697470784187317, -0.8164729475975037, 0.5914434194564819, 1.0032851696014404, 1.0767183303833008, -0.26094481348991394, -0.729267418384552, -0.9547756910324097, 0.21561096608638763, -0.5066214203834534, -0.20405380427837372, -0.1496242880821228, 0.7712264657020569, 0.6689096689224243, -0.6553847789764404, -0.12847906351089478, -0.644750714302063, 0.2800789475440979, 0.012013977393507957, 0.02515430748462677, 0.43246304988861084, 0.12292028218507767, 0.09404794126749039, -0.6869672536849976, 0.517485499382019, -0.050695717334747314, 0.5509754419326782, 0.46333909034729004, -1.010595679283142, -0.5198697447776794, -0.625787079334259, 0.5590546131134033, 0.609839677810669, 0.16117654740810394, 0.11798065155744553, 0.14563605189323425, -0.9987318515777588, 0.5652668476104736, -0.0965777337551117, 0.521390438079834, 0.2633535861968994, 1.5458183288574219, 1.4232003688812256, 0.18766050040721893, 0.4196382761001587, 0.018284745514392853, 0.3095884323120117, -0.7891354560852051, -0.964638352394104, -0.20298975706100464, -0.9614390134811401, -0.3998301029205322], [-0.42430561780929565, 1.1833375692367554, -2.195466995239258, -0.08735952526330948, 0.9904394149780273, 0.36652275919914246, 0.895491361618042, -0.3484276831150055, -0.4887683093547821, -0.011012822389602661, -0.2465776801109314, 0.1935303509235382, 0.015090463683009148, 0.7481530904769897, 0.2569211423397064, 0.6413141489028931, 1.1831660270690918, -0.3359358310699463, -0.20073175430297852, 0.8595643043518066, -0.6811164617538452, -0.8382053375244141, 0.5797301530838013, -0.00600458076223731, -0.1246517226099968, 0.6934462785720825, -1.2154631614685059, -0.3405270576477051, -0.8631942272186279, -1.3398172855377197, 1.0158929824829102, 0.11036507785320282, -0.11864741891622543, -0.45798754692077637, 0.0891033485531807, 0.062792107462883, 1.1384116411209106, 1.3035645484924316, 1.456313967704773, 1.1934049129486084, 1.3837177753448486, -0.2854783833026886, -0.00700155645608902, -1.4641737937927246, 0.28302568197250366, -0.3715716600418091, 0.755638837814331, -1.0979437828063965, 0.6061089634895325, 0.19565904140472412, -0.46043896675109863, -0.7903335690498352, 0.2554885149002075, 1.0364490747451782, 0.5082446336746216, -0.7706902623176575, -0.09610167890787125, 1.0374822616577148, 0.6103944182395935, -0.5894902348518372, 1.0296188592910767, 0.4947793483734131, -0.6791818141937256, 0.9458605051040649, 0.49673861265182495, -0.3387364447116852, 0.1496870219707489, 0.2235039919614792, -1.1780474185943604, 0.3381859064102173, -0.5909127593040466, 0.20629946887493134, -0.6140727996826172, 1.0321091413497925, -1.2721498012542725, 0.8702845573425293, 0.7325739860534668, 0.022614529356360435, 0.7055443525314331, 0.27596843242645264, 0.18773746490478516, 0.04624927043914795, 0.7034039497375488, -0.14008817076683044, 0.5111569762229919, -0.01630115509033203, -0.10567120462656021, 0.10557613521814346, -0.8570481538772583, 2.256864547729492, 0.5545321702957153, -0.09893566370010376, 0.2068183422088623, -0.3381357789039612, -0.6219905614852905, -0.8827640414237976, 0.3920290470123291, -0.24605776369571686, -1.198992133140564, -1.0260844230651855, -0.201456218957901, -0.6444965600967407, 0.7711462378501892, 0.373440146446228, -0.20798027515411377, 1.7514699697494507, 0.1282559633255005, -0.23387278616428375, 0.14372655749320984, 0.1518373340368271, -0.4071657061576843, 0.010334774851799011, -0.9165239334106445, -0.38213592767715454, -0.6243664026260376, 1.6063898801803589, 1.1017498970031738, -0.6841322779655457, 0.3080090880393982, 1.1325316429138184, -0.25236377120018005, -0.20039111375808716, -0.907783567905426, 0.3727976083755493, 0.4895060956478119, 0.634925365447998, -0.982553243637085, -0.6045399308204651, -0.301118403673172, -0.17815937101840973, 0.3673887252807617, -0.47025978565216064, -1.1730990409851074, 0.9801595211029053, -1.1127915382385254, 1.324864149093628, -0.5626028776168823, -0.7538999319076538, -0.027901187539100647, -0.018066853284835815, 0.21607756614685059, -0.22052109241485596, -0.9356245994567871, -0.4333495497703552, -0.05914244428277016, -0.8488717079162598, -0.07413601875305176, -0.1029273122549057, -0.9403908252716064, 1.15996253490448, -0.4138079285621643, 0.49016326665878296, -0.11054983735084534, 0.7570042610168457, -0.2960030436515808, -0.2713340222835541, 0.06852942705154419, 0.16342070698738098, 0.725450873374939, 0.4875722825527191, 1.3333427906036377, -0.5033118724822998, -0.6996220350265503, 0.42668649554252625, 0.8544092178344727, -0.4074275493621826, 0.9511477947235107, 0.8417251110076904, -0.06311997026205063, 1.333159327507019, -0.6106855869293213, -0.3502006530761719, -0.641768753528595, 0.7599472999572754, -0.30295610427856445, -0.4040917158126831, 0.38777217268943787, -1.3634562492370605e-06, -1.3302483558654785, -0.9668237566947937, 0.10413005948066711, -0.7029073238372803, 0.38514405488967896, -1.0664501190185547, 0.44616150856018066, -0.25112664699554443, 0.038171205669641495, 0.05868055671453476, -0.40689337253570557, -0.5696413516998291, -0.3876764178276062, -0.40997785329818726, -0.10834801197052002, -0.10674425214529037, -0.3541122078895569, -0.24224671721458435, 0.03782742843031883, -1.5875563621520996, -0.9377146363258362, 0.05933460593223572, -1.0581283569335938, -0.5308874845504761, -0.6294165849685669, 0.8091809153556824, -0.11732640117406845, 1.0207231044769287, -1.1555871963500977, 0.874840497970581, -0.9436283111572266, -0.0674925297498703, 0.6250286102294922, 0.24612295627593994, -0.9137070775032043, 1.1109957695007324, 0.4027171730995178, -1.1522228717803955, -0.09748557209968567, 0.0290142260491848, -0.3899335265159607, 0.5844498872756958, -0.33675435185432434, 0.10443182289600372, 0.4329637885093689, 0.2432878613471985, 0.23615561425685883, -0.3419334590435028, -0.7761543393135071, -0.3689675033092499, -1.0918235778808594, -0.07712913304567337, -0.6469867825508118, -0.9226428270339966, 0.5560171604156494, 0.03194276615977287, -1.2066209316253662, 0.4308922588825226, -0.13101597130298615, 0.2111765742301941, 0.22937999665737152, 1.5896129608154297, 0.6565638780593872, -0.03825107216835022, -0.3838595151901245, -0.4960830807685852, -0.43477916717529297, 0.6835610866546631, 0.6343655586242676, -0.5623940229415894, 0.7228517532348633, 1.4555637836456299, 1.6102728843688965, -0.5326065421104431, 0.4422065019607544, 0.12346201390028, -0.08284397423267365, -0.9261095523834229, -0.268717885017395, 0.24017712473869324, -0.40842193365097046, 1.3873169422149658, 0.7119286060333252, -1.5255179405212402, -0.07414200901985168, 0.4800112247467041, 0.2878335118293762, 0.1049642264842987, -0.5675252676010132, -0.06061045080423355, -0.2354689985513687, 0.44799795746803284, -0.014457110315561295, 1.001021146774292, -0.9023944139480591, 0.6621562838554382, -0.5237915515899658, 0.079282246530056, -0.292888879776001, 0.7059728503227234, -0.4827243685722351, 0.8781380653381348, 0.13448083400726318, -1.387353539466858, -0.8377645611763, 0.2011907547712326, 0.52467942237854, 0.3448772728443146, -0.1837463527917862, 0.3856339752674103, 1.0235365629196167, -0.5537260174751282, 0.6419241428375244, -0.3839852213859558, 0.33553192019462585, -0.47839999198913574, 0.07491417974233627, 0.7616885900497437, 1.8187615871429443, -1.3655929565429688, -1.4700266122817993, 0.3670666217803955, 0.33653706312179565, 1.904616117477417, 0.33192145824432373, 1.0407497882843018, -0.062290482223033905, 0.051971130073070526, -1.2618485689163208, -0.08195970207452774, -1.174891710281372, -0.27484428882598877, -0.6260868906974792, -0.5813232660293579, 0.04232229292392731, -0.38903898000717163, 0.687006950378418, 0.3414851427078247, 0.06724981218576431, 0.4740895628929138, 1.0526230335235596, -0.06032564863562584, -0.7315256595611572, 0.0903894305229187, 0.5645098090171814, -1.3786768913269043, 0.7793101072311401, 2.032371997833252, -0.7617164850234985, -0.9048006534576416, -0.15595927834510803, 0.06816472113132477, 0.08288457989692688, 0.19415226578712463, 0.8895256519317627, -1.4515800476074219, -0.5766205191612244, 0.14875905215740204, 1.5442099571228027, -0.2862434387207031, -0.2299588918685913, -0.3367573916912079, -0.038080599159002304, 0.41938385367393494, -0.3503349721431732, -0.7115198373794556, 0.6879431009292603, -0.7141560316085815, -0.4330306053161621, -0.28876861929893494, 0.4913201332092285, 1.02895188331604, -0.1763637661933899, -0.3325394093990326, -0.43007856607437134, -0.47102150321006775, -0.6876458525657654, -0.7369289994239807, -0.27472081780433655, 1.3758249282836914, -0.8107193112373352, 0.4584662914276123, 1.1451349258422852, -0.035367004573345184, -0.5794233083724976, -1.9067190885543823, 0.3710970878601074, 0.7087559700012207, 1.850305438041687, 0.6116095185279846, 0.7219244241714478, 0.25801146030426025, 0.7487248778343201, -0.05739571899175644, 0.24036654829978943, 1.1326290369033813, 0.4110287129878998, -0.670403003692627, -0.7868912220001221, -0.271492063999176, -0.4502875506877899, -0.6666887998580933, -0.6091746091842651, 0.49886250495910645, -0.6315670013427734, -1.2587705850601196, 1.0157712697982788, 0.9364544153213501, 0.09456943720579147, -0.33934861421585083, 0.6106716394424438, 0.18569064140319824, -0.9784277677536011, -0.26881861686706543, -0.3510898947715759, 0.14714501798152924, -0.1733127236366272, -2.015437126159668, -0.2786697745323181, 0.3462054431438446, 0.43478405475616455, 0.9707047939300537, -1.0811580419540405, -0.3906571567058563, -0.624342679977417, -0.2812122702598572, 0.25949573516845703, -1.5271790027618408, -0.14310257136821747, 0.22048208117485046, -0.4332444667816162, 0.5898149013519287, -0.18204331398010254, 1.2405413389205933, 0.41859298944473267, 0.1262533962726593, 0.3529634475708008, 0.3289440870285034, -0.8413049578666687, -0.22334058582782745, -1.0235366821289062, 0.4585607051849365, -0.1535496711730957, -0.07530191540718079, 0.09188102185726166, 0.5000743269920349, 1.5468478202819824, 1.0874682664871216, 1.1247105598449707, 0.5327137112617493, 0.32868853211402893, -0.6492970585823059, -0.14475654065608978, 0.4147574305534363, -0.4534399211406708, -0.6907660961151123, 0.22683896124362946, -0.04718070477247238, -0.2760658264160156, 0.7392799854278564, -0.4179367125034332, 0.9311199188232422, 0.31127727031707764, 0.0725097805261612, 0.010361762717366219, 0.67985999584198, 0.8879441022872925, 1.6178278923034668, 0.5191349983215332, -0.07786881923675537, -0.6970500946044922, 0.9485052824020386, -0.8850668668746948, -0.09820082038640976, 0.6826165914535522, 0.3766230344772339, 1.3384857177734375, -1.0893189907073975, -0.21126997470855713, 0.2566080391407013, 0.1677442491054535, 0.28834569454193115, 0.10433642566204071, 0.009750217199325562, 0.37570667266845703, 0.21039779484272003, 0.5058672428131104, -0.037478622049093246, 0.016871120780706406, -0.18774712085723877, -0.30011072754859924, -0.11918294429779053, -0.4213849902153015, 1.1850430965423584, -0.3949018120765686, 0.09663466364145279, 0.2421785295009613, -0.6725101470947266, 0.10379067063331604, 0.3035896420478821, 0.8562878370285034, 1.3613173961639404, 0.12449214607477188, -1.0445928573608398, 0.6088327169418335, -0.6569184064865112, 0.34743767976760864, -0.42634040117263794, -0.7591354250907898, 0.08216439187526703, -0.6374835968017578, -0.09123776853084564, 0.2081497609615326, -0.3047417998313904, -0.2066546380519867, -0.49670323729515076, -1.4170140027999878, 0.45357903838157654, 0.40019410848617554, 1.0302571058273315, 1.1955723762512207, 0.11705069243907928, 0.22806614637374878, 0.4722675085067749, -1.193537950515747, -0.5888155102729797, -0.08241880685091019, 0.22790414094924927, -0.01907455176115036, -0.83404541015625, 0.18537645041942596, 0.4538921117782593, 0.07003171741962433, -0.17661839723587036, 0.6812862157821655, 1.2527482509613037, 0.8870381116867065, -0.4236956834793091, -0.8285678625106812, 0.15808388590812683, -0.7762551307678223, 1.0132269859313965, 0.5422896146774292, -0.28823623061180115, -0.5884639024734497, -1.1054153442382812, -2.043488025665283, 1.201737642288208, -0.6915179491043091, -0.3343885540962219, 1.406162977218628, 0.515641450881958, 0.5422229170799255, 0.4535812735557556, -1.0089174509048462, 0.68921959400177, 0.39311519265174866, -1.1095010042190552, -1.3071765899658203, 0.3189733624458313, -0.10561871528625488, 0.5103206634521484, 0.2693851590156555, -0.3882785439491272, 0.38075926899909973, -0.7618991732597351, -0.23292876780033112, 0.3032597005367279, 0.3384782075881958, 0.3146821856498718, 0.6461002826690674, -0.2088429182767868, 0.24939090013504028, -0.4283831715583801, 0.19108784198760986, -0.30010178685188293, 1.1180095672607422, 0.032265570014715195, -0.014526985585689545, -0.546135663986206, -0.3500428795814514, -0.14119543135166168, -0.4742971658706665, -0.3871162533760071, 1.311095118522644, 0.16934435069561005, -0.34528031945228577, -0.4554474949836731, -0.2076491415500641, -0.5453819632530212, 0.2898314595222473, -0.1912202537059784, 0.04728225991129875, -1.8304487466812134, -0.20826120674610138, -0.43597158789634705, -0.29535987973213196, -0.3698936998844147, -0.28454864025115967, 0.22056806087493896, -0.7002118229866028, -1.244340419769287, -0.09237242490053177, 0.3306863009929657, 0.559134840965271, -0.9317737221717834, 1.0952470302581787, 0.41238322854042053, -0.8191007375717163, 0.6062806248664856, 0.719463050365448, -1.5289833545684814, 0.040045365691185, -1.3310297727584839, 1.1048181056976318, 0.2156212031841278, -0.05967137962579727, -0.7110421657562256, 0.8223413228988647, -1.0606318712234497, -1.078346848487854, -0.3062732219696045, 0.33365634083747864, 1.0067278146743774, 0.439696729183197, -0.09457069635391235, 1.2588584423065186, 0.3662620782852173, -0.6269579529762268, -0.38101616501808167, -0.015333814546465874, -0.3372713625431061, 0.17242266237735748, 1.0887221097946167, 0.06462359428405762, 0.6532213091850281, 1.603686809539795, 0.10741321742534637, 1.1234376430511475, -0.061019595712423325, 1.0259687900543213, -1.0149763822555542, -0.9443564414978027, -0.2055911421775818, 0.10706211626529694, -1.1833441257476807, -1.6258361339569092, 0.09898993372917175, -1.5539677143096924, -0.8593290448188782, 0.6456765532493591, 0.17940989136695862, 0.30346882343292236, 0.3844525218009949, 0.10918701440095901, 0.25227615237236023, -0.9417999982833862, 1.1101282835006714, 0.8793874979019165, -1.4227310419082642, -0.10646427422761917, 0.15975841879844666, -0.25594550371170044, -1.339940071105957, 0.786737322807312, -0.21294981241226196, 0.3283204436302185, -0.6483688354492188, 0.42847561836242676, 0.9336274266242981, -0.1522475779056549, -0.663437008857727, 1.1315298080444336, 0.5715322494506836, -0.33165597915649414, 0.2194845825433731, 0.38236474990844727, -0.3409079909324646, 0.6334140300750732, -0.2646600604057312, -0.6434909105300903, -0.22896167635917664, 0.7701607346534729, 0.01323017105460167, 0.6481894850730896, -0.47130852937698364, 0.38307106494903564, -0.11167973279953003, 0.36308205127716064, 1.045184850692749, -0.546755313873291, -0.033215876668691635, 1.3482117652893066, 0.2517472505569458, -0.041698113083839417, 0.42589399218559265, 0.6974309682846069, 0.7357556223869324, -0.5917104482650757, 0.6077675819396973, 0.6155821084976196, -0.35093897581100464, 0.30470937490463257, 0.15028856694698334, -0.3467271327972412, -0.2874927818775177, -0.7196800112724304, -0.6804438829421997, 0.017957324162125587, -0.5207970142364502, 0.4348886013031006, 0.8525981903076172, -1.6317987442016602, -0.9380795955657959, -0.36802202463150024, -0.32445991039276123, -0.20086213946342468, -0.3892856240272522, 0.03317822515964508, -0.2112087905406952, -0.3164866864681244, 0.9584181904792786, -0.11171678453683853, 0.6297770738601685, -0.4448956251144409, -0.16777442395687103, -0.513540506362915, 0.18485495448112488, -0.35364240407943726, 0.35466694831848145, 0.14930155873298645, 0.22433044016361237, 0.1540733128786087, -0.6421599388122559, -0.6554324626922607, -0.01302666962146759, 0.05891703814268112, 0.2928386330604553, -0.6020129919052124, -0.4610808789730072, 0.32508301734924316, 0.5931989550590515, 0.9959299564361572, -0.4230450689792633, -0.5403238534927368, -0.6752829551696777, -0.08693718910217285, -0.2518467903137207, 0.6841815114021301, -0.6610672473907471, 0.6483622789382935, 0.3034926652908325, -0.8175866603851318, 0.0344831757247448, -0.6126177310943604, 0.24209609627723694, -0.6166394352912903, -0.2708773910999298, 0.17172542214393616, -0.023512132465839386, -0.45130255818367004, -0.8864777088165283, 0.7090569734573364, 0.18859268724918365, -0.5269696712493896, 0.6173425912857056, -1.111191987991333, 0.11598417907953262, -0.636724591255188, -0.28603148460388184, 0.5999888777732849, 0.18303537368774414, -0.41315144300460815, 0.5528494119644165, -1.2621428966522217, 0.09800834208726883, 0.08789452910423279, -0.3089827597141266, 0.6255312561988831, 0.781814455986023, 1.3392279148101807, 0.07015371322631836, -0.12530454993247986, -0.37178558111190796, 0.43021658062934875, -0.3294173777103424, -0.022885825484991074, -0.52693110704422, -1.113884687423706, -0.42103490233421326], [0.18407392501831055, 1.26722252368927, -2.6662914752960205, -0.9767277240753174, 1.2160063982009888, 0.3692457377910614, 0.9858258366584778, -0.3725847005844116, -0.4212285876274109, -0.3853677213191986, -0.2273804247379303, -0.2615812122821808, -0.7339398264884949, 0.105415940284729, 0.5496028065681458, 0.599166750907898, 0.5340068936347961, -0.9845587611198425, 0.5865444540977478, 0.625200092792511, -0.6744412183761597, -0.029508717358112335, 0.050192199647426605, -0.30733299255371094, -0.1005953997373581, 1.338531255722046, -1.5654902458190918, -0.10718882828950882, -0.927474319934845, -1.3147542476654053, 1.2088366746902466, 0.09476157277822495, 0.3805773854255676, -0.7510393857955933, -0.8224166631698608, 0.2570919692516327, 1.537324070930481, 1.3686779737472534, 0.41538679599761963, 0.4940391182899475, 2.039337158203125, 0.053568802773952484, -0.23732051253318787, -2.048706293106079, 0.6129634976387024, 0.03157249465584755, 0.8813303112983704, -0.12572215497493744, 0.45698487758636475, -0.08950967341661453, -0.3373386561870575, -0.7420176863670349, -0.3801184296607971, 1.6998546123504639, 1.4967913627624512, -0.14848364889621735, 0.18523547053337097, 0.5047746300697327, 0.5341803431510925, -0.9237604737281799, 1.0513478517532349, -0.5071338415145874, -0.8280627727508545, 0.772148072719574, 0.3627175986766815, 0.21374402940273285, 0.3603516221046448, 0.8174236416816711, -0.39184901118278503, -0.30336642265319824, -0.5960049033164978, -0.18052972853183746, -0.3182758092880249, 1.0097894668579102, -1.5987255573272705, 1.1289286613464355, 0.1273149996995926, 1.0056037902832031, 0.543337345123291, 0.42875781655311584, -0.043320104479789734, 0.07728633284568787, 1.0851877927780151, 0.0037676626816391945, 0.27128803730010986, 0.5356507897377014, 0.6212236285209656, -0.5811701416969299, -0.11218279600143433, 2.4885590076446533, 0.5299993753433228, -0.07361334562301636, 0.3632984161376953, -0.011192655190825462, -0.14094389975070953, 0.03099650703370571, 0.4142625629901886, -0.8716403841972351, -1.4083325862884521, -0.6689812541007996, -0.1314084529876709, -0.004786693025380373, 0.49556484818458557, 0.049792829900979996, 0.05660117045044899, 1.5546835660934448, 0.10206285119056702, 0.20368535816669464, -0.30090928077697754, -0.03502732142806053, -0.2277863621711731, 0.04813322797417641, -0.21897798776626587, -0.6043850779533386, -0.5800132751464844, 1.0894896984100342, 1.4155224561691284, -0.6695379614830017, 0.3522253930568695, 1.1303869485855103, -0.6882761716842651, 0.27671006321907043, -0.46732887625694275, 0.4935161769390106, 0.7160640954971313, 0.9925897121429443, -0.5885071158409119, -0.14823317527770996, 0.3533453047275543, 0.4766576290130615, 0.30571600794792175, -0.42475253343582153, -0.6481295228004456, 0.3929237723350525, -1.4633522033691406, 1.882591724395752, -0.4107925295829773, 0.001378979068249464, 0.3619195520877838, 0.0742565393447876, 0.200395405292511, 0.11226129531860352, -0.19066956639289856, -0.4362572431564331, -0.10280030220746994, -0.8176473379135132, 0.05492813512682915, -0.34438955783843994, -0.5041549205780029, 0.9355728626251221, -0.714083731174469, 0.3444412648677826, -0.5530860424041748, 0.5843347907066345, -0.0025632299948483706, -0.3234732449054718, 0.23157605528831482, 0.4139557480812073, 0.7471538186073303, -0.14865829050540924, 0.5501981377601624, -0.6311013102531433, -1.6534897089004517, 0.21461300551891327, 1.2476904392242432, -0.007173243444412947, 0.4752694368362427, 0.59925776720047, -0.11597426980733871, 1.6688871383666992, -0.3172784149646759, -0.9687080979347229, -0.2209712713956833, -0.02369249239563942, 0.43125084042549133, 0.07313129305839539, 1.2276015281677246, -0.6046430468559265, -1.3178330659866333, -1.304828405380249, 0.07998073101043701, -0.024587033316493034, 0.6758034825325012, -0.6302006244659424, 0.47264498472213745, 0.24239349365234375, -0.07721635699272156, -0.8157661557197571, -0.07295747846364975, -0.3848377764225006, -0.6700282096862793, -0.5225957036018372, -0.17374999821186066, -0.16540494561195374, -0.12894757091999054, -0.5876173377037048, 0.2602294981479645, -1.5572173595428467, -0.7096119523048401, -0.1982937902212143, -0.5912799835205078, -0.8635318875312805, -0.19525665044784546, 0.7997401356697083, 0.010054444894194603, 1.259840726852417, -1.5208879709243774, 0.6030554175376892, -0.6167896389961243, -0.37718772888183594, 0.8669596314430237, 0.17872489988803864, -0.6701911687850952, 0.8379383087158203, 0.3203117251396179, -0.8936256766319275, 0.18545827269554138, 0.9350965619087219, -0.5339345932006836, 0.34825992584228516, -0.18240903317928314, -0.012908541597425938, 0.8083807826042175, 0.20271611213684082, 0.7695855498313904, -0.41357704997062683, -0.44271188974380493, -0.7378125786781311, -1.1876386404037476, -0.0022382885217666626, -1.3255549669265747, -1.3872042894363403, 0.25114965438842773, 0.20447152853012085, -1.4371682405471802, 0.145597442984581, -0.024674173444509506, -0.23927119374275208, 0.35490846633911133, 1.5492045879364014, 0.6854380369186401, 0.42641037702560425, -0.24193274974822998, -0.11784136295318604, -1.073848843574524, 0.9057081341743469, 0.49629077315330505, -0.9018567204475403, 0.4543108642101288, 1.009028434753418, 0.9502533674240112, -0.858817994594574, 0.7872588634490967, -0.7043554186820984, 0.10182654112577438, -0.45058679580688477, -0.03698255121707916, 1.0460612773895264, -0.06324601173400879, 1.6345163583755493, 0.97477787733078, -1.4881565570831299, 0.3738357126712799, 0.3645017147064209, -0.46624237298965454, -0.3886171579360962, -0.8336765170097351, 0.518496572971344, -0.08520632237195969, -0.276357501745224, 0.33699166774749756, 0.5997973680496216, -0.3559247553348541, 0.3327036201953888, -0.01287986058741808, 0.45889875292778015, -0.9410356879234314, 0.24709804356098175, 0.014533044770359993, 0.7262431979179382, 0.03606726974248886, -0.8738209009170532, -0.6208781003952026, -0.061120130121707916, 0.11030931770801544, 0.6621071100234985, 0.3844853639602661, 0.9614057540893555, 1.4182971715927124, 0.21275366842746735, 0.39126119017601013, -0.3794480562210083, 0.2715643644332886, -0.3269788324832916, 0.6021040081977844, 0.07182060927152634, 1.7994827032089233, -1.3674652576446533, -0.8069519400596619, -0.38820475339889526, -0.09550126641988754, 2.0159850120544434, 0.6364870071411133, 0.5330287218093872, 0.3659881353378296, 0.2621460258960724, -0.2343384474515915, -0.3468073308467865, -0.6783314347267151, -0.30866801738739014, -0.23511776328086853, -0.49037042260169983, 0.03478575497865677, -0.3280356228351593, -0.015585158951580524, 0.08522281795740128, -0.065209299325943, 0.6732789278030396, 0.42382919788360596, -0.1531641036272049, -0.47263821959495544, 0.16842229664325714, 0.08618257939815521, -1.8055639266967773, 0.3916727304458618, 1.1956897974014282, -0.7888323068618774, -0.7645707130432129, -0.22929862141609192, 0.29145434498786926, 0.08782954514026642, -0.5211758613586426, 0.5146973729133606, -1.1975053548812866, -0.794784426689148, -0.5316078066825867, 0.9730936288833618, -0.5969937443733215, 0.3785543143749237, -0.20960868895053864, -0.05180537700653076, 0.9008020162582397, 0.6104069948196411, -0.44692760705947876, 0.8964769244194031, 0.036976877599954605, -0.8223035931587219, 0.22153013944625854, 0.5943332314491272, 0.682759165763855, -0.13500840961933136, -0.16589947044849396, -0.39152562618255615, -0.2495800405740738, -0.6226873993873596, -0.26816728711128235, 0.3142395615577698, 1.0277379751205444, -0.39313462376594543, -0.12747900187969208, 1.4060378074645996, 0.014495160430669785, 0.31926119327545166, -1.8165571689605713, 0.4026702642440796, 0.5381888151168823, 1.5828882455825806, 0.9263046383857727, 0.4155120253562927, 0.303840696811676, 0.1939486414194107, -0.14326587319374084, -0.2776264548301697, 1.6474980115890503, 0.2504466474056244, -0.8286935687065125, -0.5415771007537842, -0.5441311001777649, -0.3476007282733917, -0.575055718421936, -0.5513842701911926, 0.1694037765264511, -1.0432490110397339, -1.5340023040771484, 1.2794506549835205, 0.5690409541130066, 0.0832652822136879, -0.8488197922706604, -0.7755690813064575, 0.5055524706840515, -0.7267130613327026, -0.29704567790031433, -1.1431560516357422, 0.35285696387290955, 0.23651978373527527, -1.155092716217041, -0.4715003967285156, 0.22618958353996277, 0.9795958995819092, 1.322520136833191, -1.4681679010391235, -0.612505316734314, -0.5501531362533569, 0.09495364129543304, 0.03810932859778404, -0.43824025988578796, 0.22152179479599, 0.7615780234336853, -0.4836289882659912, 0.8497808575630188, 0.08846618235111237, 1.0453312397003174, -0.11088388413190842, -0.32495349645614624, 0.22293762862682343, 0.4185529351234436, -0.4075019955635071, -0.5147519707679749, -0.5982611179351807, 0.713408350944519, -0.1152246817946434, -0.06335096806287766, 0.23305051028728485, 0.14233970642089844, 1.5143139362335205, 0.7136829495429993, 0.4439774751663208, 0.3928728699684143, 0.25032806396484375, -1.2570265531539917, 0.0316946804523468, 0.5191418528556824, -0.28643032908439636, -0.2415507733821869, -0.2271047979593277, -0.4160403907299042, -0.2732894718647003, 0.37491482496261597, -0.7628475427627563, 1.3653451204299927, 0.17854702472686768, 0.006182601675391197, 0.0422762893140316, 0.602648913860321, 1.1803349256515503, 1.1887733936309814, 0.41554713249206543, -0.5592280626296997, -0.7189472317695618, -0.1723961979150772, -0.26512226462364197, 0.14203068614006042, 0.3813348710536957, -0.30201879143714905, 1.025472640991211, -1.6961086988449097, 0.20027028024196625, 0.4771488606929779, 0.10338151454925537, 0.18013711273670197, -0.28659573197364807, 0.4104136824607849, -0.029469087719917297, 0.6675992608070374, 0.287507563829422, 0.07360652834177017, -0.13401377201080322, 0.06606787443161011, -0.2899218499660492, 0.176791250705719, -0.6263275742530823, 1.2516095638275146, -0.5256202816963196, -0.2640724182128906, 0.21184436976909637, -1.2793540954589844, 0.1830570101737976, 0.7071049213409424, 0.9706894159317017, 1.3488173484802246, 0.3894610106945038, -1.1485439538955688, 0.8479259014129639, -0.720034658908844, 0.03487560898065567, -0.5016496181488037, -0.26978757977485657, -0.12417759001255035, -0.3267323970794678, 0.1599278301000595, 0.7386837005615234, -0.3326091170310974, -0.1805192232131958, 0.06840314716100693, -1.5907083749771118, 0.27474674582481384, 0.5363746881484985, 0.5892223119735718, 0.8523790836334229, 0.04183525592088699, -0.12926717102527618, 1.041846752166748, -0.455009788274765, -0.74046790599823, 0.05571465194225311, 0.5783762335777283, -0.2961049973964691, -1.3299453258514404, -0.736954927444458, 0.1984335035085678, 0.09892227500677109, -0.2162148803472519, 0.04670379310846329, 1.527411937713623, 1.1782991886138916, -0.25874367356300354, -0.07710974663496017, -0.16900549829006195, -0.5961350202560425, 0.8955079317092896, 0.5123060941696167, 0.6437288522720337, -0.39715486764907837, -1.5194388628005981, -2.2110142707824707, 0.6774353981018066, -0.6063032150268555, -0.0416274294257164, 0.6715172529220581, 0.7867096066474915, 1.3861252069473267, 0.09485253691673279, -1.0426632165908813, 0.24770815670490265, 0.7325993180274963, -0.2751920223236084, -0.9327558875083923, 0.48080939054489136, -0.01690475083887577, 0.6184073686599731, -0.7316020727157593, -0.18713152408599854, -0.08576533943414688, 0.016074376180768013, 0.4528372585773468, 0.4719150960445404, -0.44106021523475647, 0.3157843053340912, 0.807640552520752, 0.10785640776157379, 0.5190345048904419, -0.6432368159294128, -0.08122310042381287, -0.8446717858314514, 1.0288712978363037, 0.10288204997777939, 0.00021517230197787285, 0.22486598789691925, -0.0782739520072937, -0.6648705005645752, -0.6630960702896118, -0.34836623072624207, 1.26152503490448, -0.2272249013185501, -0.5174317955970764, -0.39263850450515747, -0.9918623566627502, -0.002789356978610158, -0.5628305077552795, 0.2844170033931732, -0.4449618458747864, -1.423983097076416, -0.22380386292934418, -0.07023362070322037, -0.5452870726585388, -0.35389426350593567, -0.6436106562614441, 0.34376397728919983, -0.9064601063728333, -1.15791916847229, 0.26816898584365845, 0.3830767869949341, 1.1186459064483643, 0.0014967545866966248, 0.8004730343818665, 0.5652086138725281, -1.625528335571289, 0.6957109570503235, 0.4711550176143646, -1.2624257802963257, -0.03909055143594742, -0.6893270015716553, 1.1480343341827393, -0.47967392206192017, 0.0910593569278717, -0.30751359462738037, 0.7486482858657837, -1.5294437408447266, -1.8936247825622559, -0.8667386770248413, 0.22466669976711273, 0.9551282525062561, 0.6463049054145813, -0.7599438428878784, 1.0962135791778564, 0.26966410875320435, -0.8856765031814575, -0.7020295262336731, -0.8705567121505737, -0.15764999389648438, 0.13549090921878815, 0.8190945982933044, 0.41079750657081604, 0.8169179558753967, 1.1326736211776733, 0.09563697874546051, 1.521089792251587, 0.400686651468277, 0.5203474760055542, -0.5493903160095215, -0.4377179443836212, -0.3123520016670227, 0.58241206407547, -1.2151460647583008, -1.1611652374267578, -0.008483370766043663, -0.43730980157852173, -0.9957014918327332, 0.4857148826122284, 0.25207242369651794, 0.07644850760698318, 0.13042226433753967, -0.588222086429596, 0.05055269971489906, -0.7751383185386658, 0.2880709767341614, -0.16273732483386993, -1.4621917009353638, -0.005864813923835754, 0.08840711414813995, 0.13703452050685883, -1.226780891418457, 0.6140032410621643, -0.16465747356414795, -0.44205471873283386, -1.2306201457977295, 1.366086483001709, 0.9443626999855042, -0.0988292247056961, -0.1507977694272995, 1.3759655952453613, 1.0359761714935303, -0.07851165533065796, -0.12437006086111069, 0.30405178666114807, -0.8632463216781616, 0.8617518544197083, 0.12810593843460083, -0.6990877985954285, -0.37858232855796814, 1.3884174823760986, 0.17411933839321136, -0.07935058325529099, -0.20057375729084015, -0.6225668787956238, -0.39126038551330566, 0.3844643235206604, 0.3852897882461548, -1.432277798652649, -0.6545781493186951, 1.4629067182540894, 0.4856078028678894, -0.33772343397140503, 0.3860366642475128, 1.0542997121810913, 0.5643793344497681, -0.4136965274810791, -0.011758329346776009, 0.6602460145950317, -0.3121882677078247, 0.06483162939548492, -0.1977582424879074, -0.033814553171396255, -0.08324169367551804, -1.0069465637207031, -0.8877789974212646, 0.31699132919311523, -0.9317486882209778, -0.12474849820137024, 0.14946024119853973, -1.1424962282180786, -1.2186263799667358, 0.07316911965608597, -0.3914280831813812, -0.42504021525382996, -0.8501343131065369, 0.05916692689061165, 0.1850602924823761, -0.057472798973321915, 0.33907952904701233, -0.18923749029636383, 0.7983226776123047, -0.18786951899528503, -0.6245427131652832, -0.3299678564071655, 0.13731028139591217, -0.17194819450378418, 0.16693420708179474, 0.35173317790031433, -0.6571822762489319, 0.8065811395645142, -0.269024521112442, -0.9310128688812256, 0.013600151985883713, 0.4694589376449585, -0.38312044739723206, -0.6017136573791504, -0.9294744729995728, 0.986387312412262, 0.30511417984962463, 0.44228285551071167, -0.056701794266700745, -0.4877346456050873, -0.6290513277053833, 0.0063573699444532394, -0.48875975608825684, 0.9384445548057556, -0.7901186943054199, 0.8265995979309082, 0.4317134916782379, -0.8596047759056091, -0.11910657584667206, -0.91497802734375, 0.8474072217941284, -0.5013591647148132, 0.2001095414161682, 0.019795680418610573, 0.38840052485466003, -0.694359302520752, -0.8494324088096619, 0.09793411940336227, -0.4304869472980499, 0.01577785611152649, 0.3152461349964142, -1.2575725317001343, -0.18577542901039124, -0.13950838148593903, -0.5789920091629028, 0.5772686004638672, -0.1759052574634552, -0.7264401912689209, 0.12055414170026779, -0.9403243660926819, 0.5101596117019653, 0.7180111408233643, -0.3031894564628601, 0.5844985842704773, 0.8021329045295715, 1.5336613655090332, 0.4220931828022003, 0.15359747409820557, 0.07705745100975037, 1.2025679349899292, -0.8828316926956177, -0.029773255810141563, 0.24431265890598297, -0.6547764539718628, -0.9182389378547668], [-0.214458167552948, 1.6023919582366943, -2.3163299560546875, -0.022408418357372284, 0.6805170178413391, 0.2668628990650177, 0.4236588776111603, -0.709229588508606, -0.4082118272781372, -0.7189520597457886, -0.7315647602081299, -0.40487760305404663, 0.10849793255329132, 0.7036391496658325, 0.9447981715202332, 0.9379923343658447, 0.7639302015304565, -0.26141607761383057, 0.21346747875213623, 1.1721512079238892, -0.062323879450559616, -1.0811647176742554, 0.607068657875061, 0.18637816607952118, 0.18804559111595154, 0.7169891595840454, -0.9213835597038269, -0.2794378101825714, -0.948395311832428, -1.087233304977417, 0.9640920758247375, -0.573639452457428, 0.013240423984825611, -0.32527464628219604, -1.5888152122497559, -0.6217372417449951, 1.5428522825241089, 1.0316057205200195, 0.23548686504364014, -0.1575031876564026, 2.0355145931243896, -0.4454285502433777, -0.49023309350013733, -1.7500083446502686, 0.15932707488536835, -0.24125352501869202, 0.7653263211250305, -1.3134539127349854, 0.05411938205361366, 0.26138582825660706, 0.2730536162853241, -1.181597113609314, 0.5687310099601746, 1.3082704544067383, 0.9178944826126099, -0.8523768186569214, 0.450479120016098, -0.23321589827537537, 0.2634652554988861, -0.5274396538734436, 1.7415356636047363, -0.19784832000732422, -0.5655055046081543, 1.2744219303131104, -0.10863441228866577, -0.5143545866012573, 0.20478412508964539, -0.04471343383193016, -0.17457130551338196, 0.1734132617712021, 0.49539852142333984, -0.16583633422851562, -0.6852753758430481, 0.47455570101737976, -1.5463305711746216, 0.6890283823013306, 0.06664316356182098, 0.6645932793617249, 0.7597826719284058, 0.015942316502332687, -0.13127325475215912, 0.1254309117794037, 0.7983180284500122, -0.6794397234916687, -0.06994350999593735, -0.10681792348623276, 0.5400588512420654, -0.7663862705230713, -0.9013144373893738, 1.6612319946289062, 0.24578037858009338, 0.317783385515213, 0.2288922220468521, 0.5239481925964355, -0.4473055899143219, -0.7670931220054626, 0.015060923993587494, -0.8741272687911987, -0.89231276512146, -0.8625686764717102, -0.6458742618560791, -0.816999077796936, 0.6847726702690125, 0.17375385761260986, -0.8350041508674622, 1.723357081413269, 0.3382013142108917, -0.4375544786453247, -0.18709678947925568, 0.5676307678222656, -0.725700855255127, -0.0008362643420696259, -0.804593026638031, -0.4670897126197815, -0.7353962063789368, 1.4152144193649292, 1.464589238166809, -0.1708701103925705, 0.5590376853942871, 0.9496455192565918, -0.151020348072052, -0.34929731488227844, 0.5255171656608582, -0.14965234696865082, 0.6258295774459839, 0.612363338470459, -0.8508699536323547, -0.4685283303260803, 0.09216880798339844, -0.31807833909988403, 0.9589800238609314, -0.17935903370380402, -0.4412199854850769, 0.836958646774292, -0.9472161531448364, 0.8568581938743591, -1.3546823263168335, -0.2721173167228699, 0.10419277101755142, -0.016365133225917816, 0.4777185618877411, 0.04015811160206795, -0.5465526580810547, -0.7101262211799622, 0.4059050679206848, -0.5887954235076904, 0.4046250879764557, -0.12056650221347809, -0.9086756110191345, 0.49637630581855774, -1.0232003927230835, 0.5782759189605713, 0.34259939193725586, 0.9871704578399658, 0.2810082733631134, -0.5335910320281982, -0.6048600673675537, -0.1687033325433731, 0.33588531613349915, 0.5057017803192139, 0.8573260307312012, 0.006086019333451986, -0.9002801179885864, 0.8167726993560791, 1.1127631664276123, -0.23953619599342346, 0.3736266493797302, 0.9640586972236633, -0.016671398654580116, 0.6998053193092346, -0.19282735884189606, -0.8013048768043518, -0.47044265270233154, 0.6749029755592346, 0.6144047975540161, -0.8147475719451904, 1.1082464456558228, 0.15368573367595673, -1.534079670906067, -1.1076687574386597, 0.8691117167472839, -0.365302711725235, 0.9658544063568115, -0.02993685007095337, 0.004121741279959679, -0.6034969091415405, 0.5948448777198792, -0.37160810828208923, -0.48172762989997864, -0.4749771058559418, -0.4158470630645752, 0.017193786799907684, -0.9153167009353638, -0.08043082058429718, 0.08375052362680435, -1.0082404613494873, 0.10867700725793839, -1.610260248184204, -0.4385594129562378, -0.20818307995796204, 0.024326739832758904, -0.42400357127189636, -0.6928116679191589, 0.6055505275726318, -0.5945903658866882, 0.7573845386505127, -0.7316913604736328, 1.3571993112564087, -0.5001670122146606, -0.17527440190315247, 1.1620004177093506, -0.6073703765869141, -0.8215680718421936, 0.24737560749053955, 0.5309505462646484, -1.8627183437347412, 0.09893913567066193, 0.08564828336238861, -0.6263105273246765, -0.21075297892093658, -0.3695443272590637, -0.16223548352718353, 0.747689962387085, -0.09105444699525833, 0.2860965132713318, 0.05197853967547417, -0.11160317808389664, -1.1599838733673096, -0.45243188738822937, -0.590588390827179, -0.6338053941726685, -0.8967962265014648, 0.8536067605018616, 0.23531456291675568, -1.4559117555618286, 0.22161579132080078, 0.18324638903141022, 0.5707982778549194, -0.055053312331438065, 1.2875733375549316, 0.5737359523773193, 0.4198978543281555, 0.12399189174175262, -0.39939579367637634, -0.6719548106193542, 0.7110088467597961, 1.4145382642745972, -0.06637018918991089, 0.11861063539981842, 0.6742715835571289, 1.304243803024292, -0.06475325673818588, 0.47906652092933655, -0.2665683329105377, 0.018379703164100647, -0.9682241082191467, -1.1423115730285645, 0.3319985270500183, -0.1689576655626297, 1.8205556869506836, 1.146766185760498, -1.217538595199585, -0.4999197721481323, 0.1892872154712677, 0.1970321089029312, -0.23667187988758087, -0.8998652696609497, 0.01794574037194252, 0.2866578698158264, 0.03924974054098129, 0.22192798554897308, 0.9180819392204285, -0.6424174308776855, 0.36181220412254333, -0.848310112953186, -0.428713321685791, -0.5700399875640869, 0.8604204654693604, 0.1334482878446579, 1.221792221069336, -0.23706132173538208, -1.706619143486023, 0.11565858870744705, -0.37354257702827454, 0.5836390256881714, 0.40805745124816895, -0.2138402760028839, 0.6108909845352173, 0.4444293677806854, -0.6219260096549988, 0.6840679049491882, -0.12329856306314468, 0.14118407666683197, -0.22130142152309418, 0.25919875502586365, 0.3203895092010498, 1.0571544170379639, -0.8224678635597229, -0.636009693145752, 0.2193642258644104, -0.11120228469371796, 1.793290376663208, 0.2584839165210724, 0.6543390154838562, 0.034524619579315186, 0.2570251524448395, -0.2275884449481964, -0.44927650690078735, -1.022236943244934, -0.9167870283126831, -0.5601811408996582, -0.7882519960403442, 0.002123462036252022, 0.2775671184062958, 0.1375437080860138, 1.2250248193740845, -0.18900176882743835, 0.023843126371502876, 1.063506841659546, -0.6413708925247192, -1.0769059658050537, -0.34717562794685364, -0.032810624688863754, -0.9276183843612671, 0.48034578561782837, 1.595363736152649, -1.0279316902160645, 0.09849853068590164, -0.09970735758543015, -0.006952892057597637, 0.5928416848182678, -0.21812845766544342, 0.6581376791000366, -1.2019109725952148, -0.9289670586585999, 0.13211952149868011, 1.0461848974227905, -0.3574564754962921, 0.5503203868865967, -0.6108148694038391, 0.40354710817337036, 0.6329447031021118, 0.3134050965309143, -0.3208300769329071, 0.4027295410633087, -0.5869422554969788, -0.8895823955535889, -0.1325697898864746, 0.8762881755828857, 0.7334354519844055, -0.37178122997283936, -0.6877235174179077, -0.6893404722213745, -0.41603371500968933, -0.36348018050193787, -0.009636975824832916, 0.4186519384384155, 0.9592674970626831, -0.16690224409103394, 0.5998485088348389, 0.6745011210441589, 0.14563913643360138, 0.12781421840190887, -1.5626510381698608, 0.48668983578681946, 0.5622764825820923, 1.2646414041519165, 0.24814069271087646, 0.4639385938644409, 0.16972851753234863, 0.35838815569877625, -0.24234223365783691, -0.16819648444652557, 1.3696508407592773, -0.38284221291542053, -0.09529197216033936, -0.2699059545993805, -0.6858745217323303, 0.0885605663061142, -0.019723495468497276, 0.42182332277297974, 0.6572510004043579, -1.4980803728103638, -0.5180284976959229, 1.3907876014709473, 0.26446014642715454, -0.2739710509777069, -0.023327743634581566, 0.518750011920929, 0.39454010128974915, -0.904289960861206, -0.36582180857658386, -0.25575122237205505, 0.16279709339141846, 0.29790887236595154, -1.2404627799987793, -0.13819003105163574, 0.4117913246154785, 0.8590887784957886, 1.418839693069458, -0.941861093044281, 0.35338759422302246, -0.7604643106460571, 0.5468287467956543, 0.5007675886154175, -0.5161295533180237, 0.4755171537399292, 0.09958609938621521, -0.09875596314668655, 0.05650220438838005, 0.5509894490242004, 1.2756136655807495, 0.11007256805896759, 0.5276935696601868, 0.512361466884613, -0.6824713349342346, -0.5892695784568787, -0.26282045245170593, -0.5997940301895142, 0.476973295211792, -0.8228054642677307, -0.520149290561676, 0.20233894884586334, -0.45569443702697754, 2.0838420391082764, -0.004445967264473438, 0.5082413554191589, 0.27139484882354736, 0.0931156799197197, -0.9715332388877869, -0.13048182427883148, 0.4742114841938019, -0.055014755576848984, -0.7508614659309387, 0.020348994061350822, 0.310151070356369, -0.05089140683412552, 0.12631654739379883, 0.20215533673763275, 0.16139096021652222, 0.17415136098861694, -0.10712946206331253, 0.35835742950439453, 0.45345059037208557, 0.7109778523445129, 0.8514611124992371, 0.6216209530830383, -0.535453200340271, -0.6285437941551208, 0.9379546642303467, -0.1852954626083374, 0.3121238946914673, 0.3497254252433777, 0.350396066904068, 1.6106234788894653, -1.1048275232315063, -0.29849788546562195, 0.5085774064064026, 0.018802110105752945, 0.2213098406791687, 0.6940407156944275, 0.01954004541039467, -0.11567865312099457, 0.17576242983341217, -0.2384224683046341, -0.2099052518606186, 0.30689749121665955, 0.08250045031309128, 0.13020658493041992, 0.7148118019104004, -0.8380853533744812, 0.1320381462574005, -0.5459251999855042, -0.5621431469917297, -0.401917427778244, -0.5576456785202026, 0.38659220933914185, 0.03667394816875458, 0.6867321133613586, 1.0557595491409302, -0.13600601255893707, -1.0413684844970703, 0.09219444543123245, -0.5820779204368591, 0.8358058929443359, -0.48553186655044556, -0.37471264600753784, -1.066705584526062, 0.03361976891756058, -0.39863333106040955, 0.3658495843410492, -0.7450360655784607, -0.5900377035140991, -0.27664750814437866, -2.107037305831909, 0.5911149382591248, 0.3163679242134094, 0.7748993039131165, 1.0612990856170654, -0.18777580559253693, 0.4243987202644348, 0.11043023318052292, -0.8122137188911438, 0.0751066505908966, -0.05172669142484665, -0.4760104715824127, 0.08865004777908325, -0.7590525150299072, -0.8174104690551758, 0.433038592338562, 0.4139360785484314, 0.2009463906288147, 0.6508938074111938, 0.7298509478569031, 1.3642773628234863, -0.11480320990085602, 0.3571521043777466, 0.11631827801465988, -0.8934922218322754, 1.002546787261963, -0.017048103734850883, -0.9378289580345154, -0.5980266332626343, -1.2556308507919312, -1.891213059425354, 1.3679208755493164, -0.677074134349823, -0.3789326846599579, 1.290365219116211, 1.240983009338379, 0.41456300020217896, 0.37378981709480286, -0.26827383041381836, -0.11823303997516632, 0.04075881466269493, -0.37095174193382263, -1.0044405460357666, 0.8952752351760864, 0.7105801105499268, 0.065115787088871, 0.10738832503557205, 0.2770070731639862, -0.3284931480884552, 0.052798785269260406, -0.3302817940711975, 0.634554922580719, 0.3101732134819031, 0.5443923473358154, 0.18871867656707764, 0.5318794250488281, 0.3865388035774231, -1.251756191253662, -0.2883947193622589, 0.12328086793422699, 0.8093050718307495, 0.2887158691883087, 0.0011402405798435211, 0.44837847352027893, -0.4167439639568329, -0.4296369254589081, -0.35505586862564087, -0.22606465220451355, 1.0166065692901611, 0.7522838115692139, -0.3383970856666565, -0.33826494216918945, -0.6847789287567139, -0.17369383573532104, -0.6115924715995789, 0.9867737293243408, 0.35952308773994446, -1.6592403650283813, -0.3514886796474457, 0.36488792300224304, -0.6687493920326233, -0.8525770306587219, -0.36553505063056946, 0.0851227268576622, -0.9104387760162354, -0.9453501105308533, -0.23998840153217316, -0.0187758207321167, 0.668727695941925, -0.38480833172798157, 0.43238481879234314, 0.0030781636014580727, -1.2572486400604248, 0.7143097519874573, -0.6299455761909485, -0.6280961036682129, 0.184366375207901, -1.4804831743240356, 0.8905380964279175, 0.06264318525791168, 0.6102634072303772, -0.2144012451171875, 0.5994176864624023, -1.3439885377883911, -0.7596257925033569, -1.2835201025009155, -0.4071740508079529, 1.297107219696045, 0.6844449043273926, -0.7702517509460449, 1.8284947872161865, 1.1581342220306396, -0.09610707312822342, -0.07584283500909805, -0.003169408068060875, -0.4147770404815674, -0.2159518599510193, 0.4848024547100067, 0.784051239490509, 1.0993670225143433, 1.4719771146774292, 1.0360980033874512, 0.5574326515197754, 0.8168345093727112, 1.1851698160171509, -0.43906542658805847, -0.3970124423503876, -0.21709521114826202, 1.1156288385391235, -0.439408540725708, -1.082556962966919, -0.002179850824177265, -0.21646423637866974, -0.8701344132423401, -0.12613844871520996, 0.6023353338241577, -0.7863534688949585, 0.6755202412605286, -0.5788180232048035, -0.05942703038454056, -0.5392053723335266, 0.3206183910369873, 0.1500912457704544, -1.1885507106781006, 0.19658634066581726, -0.18295595049858093, -0.3261348009109497, -1.2280309200286865, 0.3963612914085388, 0.4930505156517029, -0.5236808061599731, -0.5474311709403992, 0.057205718010663986, -0.08618596196174622, 0.9097126722335815, -0.5671600699424744, 1.7656278610229492, 0.6823957562446594, -0.615250825881958, -0.16028030216693878, -0.3760603666305542, 0.07815254479646683, 0.6554535031318665, -0.9930103421211243, -0.886557936668396, -0.7940117120742798, 1.4734561443328857, 0.33032533526420593, 0.17610198259353638, -0.20365464687347412, -0.28522247076034546, -0.22959502041339874, 0.36947888135910034, 1.3150324821472168, -1.3539098501205444, -0.6268165707588196, 1.1363775730133057, 0.9991846084594727, -0.3695698380470276, 0.42565348744392395, 0.1968514770269394, 0.16005884110927582, -0.8967939019203186, 0.4513893723487854, 0.4988607168197632, -0.2853263318538666, 0.6856444478034973, 0.25700077414512634, 0.07643542438745499, -0.002676820382475853, -0.17546381056308746, -1.4746392965316772, 0.3897263705730438, -0.29895293712615967, -0.5215098261833191, 1.0529199838638306, -1.2281781435012817, -0.8080531358718872, 0.3329586982727051, 0.3629292845726013, -0.3178042769432068, -0.19882658123970032, 0.1046685129404068, 0.3754473328590393, -0.051444005221128464, 0.8839468955993652, -0.15720631182193756, 0.8962488174438477, -0.4366191625595093, 0.354633092880249, -0.9680405855178833, -0.10023675858974457, 0.44195571541786194, 0.21303488314151764, -0.1769307404756546, -0.19236794114112854, 0.5185940265655518, -0.7352603077888489, -0.5851075053215027, 0.2938774526119232, 0.10254815220832825, 0.2934623956680298, -0.3537593185901642, -0.47732120752334595, -0.08865119516849518, 0.48672541975975037, 0.774547278881073, -0.038898080587387085, -1.1477924585342407, -0.6387609243392944, 0.054759979248046875, -0.4516645669937134, 0.10136599093675613, 0.014975747093558311, 0.6086652278900146, 0.27765366435050964, -0.714415431022644, -0.9381113648414612, -1.0763882398605347, 0.7619743347167969, -0.2754770815372467, 0.1938450187444687, -0.4616323411464691, 0.7146665453910828, -0.1117100864648819, -0.8353360891342163, -0.03483729809522629, 0.16750846803188324, 0.12563395500183105, 0.13749168813228607, -1.0241645574569702, -0.1864420473575592, -0.8421050310134888, 0.4283037483692169, 0.37596800923347473, 0.5650202631950378, 0.1417195200920105, 0.32373180985450745, -1.3225314617156982, 0.37285536527633667, 0.27937549352645874, -0.20372167229652405, -0.32045111060142517, 1.5228383541107178, 1.5238476991653442, 0.12151069194078445, 0.16704735159873962, -0.3423405885696411, 0.363964319229126, -1.2085720300674438, 0.013572771102190018, -0.44320961833000183, -0.7483081817626953, -0.5631304979324341], [-0.659466028213501, 1.3118692636489868, -2.361422538757324, -0.3424220085144043, 1.0589426755905151, -0.34314846992492676, 1.316833257675171, -1.0703811645507812, 0.42604053020477295, -0.5915077924728394, -1.1888768672943115, -0.12117348611354828, -0.178470179438591, 0.37477076053619385, 0.8318994045257568, 1.5044350624084473, 1.0717294216156006, 0.2148643434047699, 0.6668258905410767, 0.9758388996124268, -0.05806201696395874, -0.12978194653987885, 0.554068922996521, -0.20885999500751495, 0.11570107936859131, 1.1221877336502075, -1.0975875854492188, -0.5464925765991211, -0.4474446773529053, -1.0449092388153076, 0.8618331551551819, -0.9315825700759888, -0.13281342387199402, -0.3058323264122009, -1.2301299571990967, -0.11863613873720169, 1.6778953075408936, 1.793594479560852, 1.1461751461029053, -0.15735316276550293, 1.3991506099700928, -0.7073791027069092, 0.11776956915855408, -1.487849235534668, 0.1857614815235138, -0.24201229214668274, 0.6332347393035889, -0.24310153722763062, -0.423357218503952, -0.07193803042173386, 0.11523838341236115, -1.0887253284454346, 0.21847233176231384, 0.9544481039047241, 1.159017562866211, -0.6910377144813538, 0.9987921714782715, -0.5017459988594055, -0.25375106930732727, -0.49071234464645386, 0.9761847257614136, 0.21177339553833008, -0.6236081123352051, 0.44844430685043335, -0.02576790750026703, -0.17062534391880035, 0.02120884321630001, 0.36345547437667847, -0.29597410559654236, 0.27460283041000366, 0.3556209206581116, -0.17155155539512634, -1.172118067741394, 0.4695923328399658, -1.4079978466033936, 0.6840803623199463, 0.8752607107162476, 0.4285186231136322, 0.8091222643852234, 0.0006868541240692139, 0.06859930604696274, -0.1145399883389473, 0.25472745299339294, -0.5485711693763733, 0.5009084939956665, 0.2778826355934143, 0.6412640810012817, -0.8886241912841797, -0.7863657474517822, 0.9516274333000183, 0.6051430702209473, -0.19318601489067078, 0.35132697224617004, 0.14023229479789734, -0.8909236788749695, -0.6545749306678772, 0.9654857516288757, -0.06300369650125504, -0.9068168997764587, -0.8071010112762451, -0.275430828332901, -1.4578485488891602, 0.6887704133987427, 0.12389728426933289, -0.028060652315616608, 1.37953782081604, 0.15517443418502808, -0.7443605065345764, -0.6135284900665283, -0.1951930671930313, -0.04274548590183258, 0.4770411550998688, -0.8710272312164307, -0.9384599924087524, -0.25012192130088806, 1.314589023590088, 1.9796817302703857, -0.858786404132843, 0.35953956842422485, 1.1154674291610718, -0.377788245677948, 0.22377443313598633, -0.32453757524490356, 0.7711580991744995, 0.8082300424575806, 0.6085622906684875, -0.008938213810324669, -0.33700743317604065, 0.3201885223388672, 0.05181301385164261, 0.7443445324897766, -0.07675602287054062, -0.552129864692688, 0.8149223327636719, -1.1978704929351807, 0.9179122447967529, -0.2561883330345154, -0.608839750289917, -0.04286210983991623, -0.1333709955215454, 1.036703109741211, -0.387395977973938, -0.2649265229701996, 0.13727043569087982, 0.243331179022789, -0.5766267776489258, -0.2140570729970932, -0.3263940215110779, -0.6349775791168213, 0.21416352689266205, -0.9871151447296143, 0.37814924120903015, -0.048789553344249725, 0.4495224356651306, 0.6760377883911133, -0.6566987037658691, 0.11369787156581879, 0.640709638595581, 0.9104783535003662, 0.5973494648933411, 1.0926554203033447, -0.339063435792923, -1.0146349668502808, 0.9270085692405701, 0.6749405264854431, -0.24763396382331848, 0.007345279678702354, 1.0376626253128052, 0.1748979687690735, 1.1446988582611084, -0.1665061116218567, -0.963476836681366, -0.5521147847175598, 0.2543953061103821, 0.15868818759918213, -0.5994206666946411, 1.279085636138916, 0.08687460422515869, -1.9201161861419678, -1.3518216609954834, 0.06409361213445663, -0.41461020708084106, 0.8799848556518555, 0.0633537769317627, 0.5946779251098633, -0.7677007913589478, 0.6655783653259277, 0.35849499702453613, -1.155481219291687, -0.8115463256835938, -0.6448870897293091, -0.5010130405426025, -0.8054744005203247, 0.2801426649093628, -0.7462694048881531, -1.5616146326065063, 0.18548624217510223, -1.2927175760269165, -0.39034950733184814, -0.30506592988967896, 0.10829389095306396, -0.26668423414230347, -0.41563352942466736, -0.04204322397708893, -0.48742955923080444, 1.0400478839874268, -1.3884055614471436, 1.3635294437408447, -0.6360436677932739, -0.23479974269866943, 1.2238452434539795, -0.1974467933177948, -0.5957676768302917, 0.684410810470581, -0.157134547829628, -1.3075296878814697, 0.34531259536743164, 0.64332115650177, -0.26376721262931824, -0.4209423065185547, -0.22117015719413757, 0.5365887880325317, 0.0564613901078701, 0.026377897709608078, 0.7190897464752197, -0.07761392742395401, -0.3105909824371338, -0.589002251625061, -0.44534897804260254, -0.5467039346694946, -0.4732053279876709, -0.4369485378265381, 0.4969390034675598, -0.006698428653180599, -1.1050896644592285, 0.2620707154273987, 0.2772204875946045, 0.6248214244842529, 0.6619491577148438, 1.3843915462493896, 0.6595808267593384, 0.4266712963581085, -0.05194421112537384, -0.6265925168991089, -0.43085479736328125, 1.0732810497283936, 0.8418556451797485, -0.45050787925720215, 0.5356097221374512, 1.2126773595809937, 1.1584322452545166, -0.624100923538208, -0.06475598365068436, -0.38171103596687317, -0.3063373863697052, -0.8530446887016296, -0.7995052933692932, 0.045585960149765015, -0.054407328367233276, 1.9656168222427368, 0.6257457733154297, -1.141117811203003, -0.3537651300430298, 0.8052716851234436, -0.035952575504779816, -0.11801128089427948, -0.35539746284484863, 0.644284725189209, 0.02475742995738983, 0.18654274940490723, 0.0028045158833265305, 0.546477735042572, -0.47735780477523804, 0.5417653322219849, -1.0577086210250854, -1.1903486251831055, -0.724082350730896, 0.4510326385498047, -0.47575172781944275, 0.5658420324325562, -0.10777684301137924, -0.9902733564376831, 0.10640937089920044, -0.02376250922679901, 0.4042484760284424, 0.14193104207515717, 0.06292837858200073, 0.09682843089103699, 0.8300892114639282, -0.33387985825538635, 0.8234219551086426, 0.09317750483751297, 0.33907708525657654, 0.28139859437942505, 0.329451322555542, 0.4419906735420227, 2.0877482891082764, -1.5774279832839966, -0.7407612800598145, 0.0486542209982872, 0.10502074658870697, 1.5594732761383057, 0.029459193348884583, 1.292925238609314, 0.060114216059446335, 0.5570611953735352, -0.5488123893737793, 0.10551290214061737, -0.8886488676071167, -0.7945812940597534, -1.3810689449310303, -0.32913708686828613, -0.3120831251144409, 0.004915386438369751, -0.02947617508471012, 0.5338859558105469, -0.3826322555541992, 0.4838833808898926, 1.5996510982513428, -0.6349897384643555, -0.5788672566413879, -0.4334389269351959, -0.4722236394882202, -0.4841628074645996, 0.1424563080072403, 1.3579394817352295, -0.7257997393608093, -0.5818523168563843, 0.11691045761108398, 0.15617036819458008, 0.658164381980896, 0.0727248340845108, 0.7407483458518982, -1.7876274585723877, -1.2824435234069824, -0.03533592075109482, 1.3817405700683594, -0.39123234152793884, -0.10968399047851562, -0.3116214871406555, 0.3105334937572479, 1.0859220027923584, -0.506658136844635, -0.6700670719146729, 0.7058967351913452, -0.42358410358428955, -1.3375649452209473, -0.4346441626548767, 0.1959194540977478, 0.8267309665679932, -0.5613940954208374, -0.3219956159591675, -0.5073836445808411, -0.1900986135005951, -0.08563929051160812, 0.041605349630117416, -0.5260477662086487, 1.0659633874893188, -0.3227103352546692, 0.36129453778266907, 0.4127626419067383, -0.3762474060058594, 0.5569181442260742, -0.8935710191726685, 0.36281293630599976, 0.6797606348991394, 1.0321472883224487, 0.4858297109603882, 0.2772214114665985, 0.11387548595666885, 0.873151421546936, 0.12899212539196014, -0.07449132949113846, 1.6361725330352783, -0.1142987310886383, -0.12794503569602966, -0.2943321466445923, 0.2182520180940628, -0.11883559077978134, -0.22374069690704346, 0.07649974524974823, 0.6417490243911743, -1.224664568901062, -0.17025429010391235, 1.027130126953125, 0.3366384208202362, 0.09063443541526794, 0.14893290400505066, -0.4056549668312073, 0.8659434914588928, -0.3436379134654999, -0.2557278573513031, -0.40902674198150635, -0.15098275244235992, 0.4436507225036621, -0.990546703338623, 0.04409974068403244, 0.677355170249939, 0.5438991785049438, 0.5590012073516846, -0.24606546759605408, 0.09050996601581573, -0.9463677406311035, 0.8448210954666138, 0.7277487516403198, -0.9870849847793579, 0.1321338713169098, -0.11717602610588074, -0.0972597748041153, -0.28506529331207275, 0.2751157581806183, 0.7095991373062134, -0.22159899771213531, 0.11271633207798004, 0.5066011548042297, -0.05451081320643425, -0.5040954947471619, -0.13025057315826416, -0.10518012940883636, 0.49806755781173706, -0.3252658247947693, -0.10871449112892151, 0.5004128217697144, -0.34434160590171814, 1.9209506511688232, 0.345140278339386, 0.3897528052330017, 0.7044907808303833, 0.21629583835601807, -0.7216979265213013, -0.28612515330314636, 0.47170180082321167, -0.3543028235435486, -1.0346293449401855, -0.3165908753871918, 0.3519221544265747, -0.528229832649231, 0.029338134452700615, -0.23047292232513428, 0.7172641754150391, 0.4216000437736511, -0.06033533066511154, -0.16008709371089935, 0.6943234801292419, 0.8357657194137573, 0.9468575119972229, 0.5242117643356323, -0.6145970225334167, -0.7955794930458069, -0.12483647465705872, -0.6913691759109497, 0.10201556980609894, 1.043020486831665, 0.27388083934783936, 1.5232291221618652, -1.364443063735962, -0.41930535435676575, 0.34386464953422546, 0.03130811080336571, 0.34104955196380615, 1.1887965202331543, -0.40955138206481934, 0.5868049263954163, 0.05914689600467682, -0.31890949606895447, -0.3225066065788269, 0.01927933655679226, 0.30382105708122253, -0.8246335983276367, 0.536341667175293, -0.6384291052818298, 0.9200643301010132, -1.2593297958374023, -0.7074155807495117, 0.15433013439178467, -1.5592551231384277, 0.14090080559253693, 0.24928739666938782, 0.6732520461082458, 1.209857702255249, 0.06950682401657104, -1.2454485893249512, -0.2241390496492386, -0.32090914249420166, 0.14152656495571136, -0.8188371658325195, -0.3811776041984558, -0.9209082126617432, -0.2889016270637512, -0.49869662523269653, 1.021578311920166, 0.1969393789768219, -0.6433351635932922, -0.24830830097198486, -1.034400224685669, 0.7480531334877014, 0.3263917565345764, 0.5852431654930115, 0.4219323992729187, -0.3873324692249298, 0.3479107916355133, -0.2252662181854248, -0.6311800479888916, 0.38917794823646545, 0.14914719760417938, -0.060155414044857025, -0.091086745262146, -0.8525251150131226, -0.2162623405456543, 0.4605918526649475, 0.44809508323669434, -0.3740427494049072, 0.698474645614624, 0.9965618848800659, 1.0952765941619873, -0.14429685473442078, -0.05293256789445877, -0.1684039831161499, -0.10198286175727844, 0.3980101943016052, 0.6551352739334106, -0.1450970619916916, -0.6114845275878906, -1.289011001586914, -1.591031789779663, 0.8382409811019897, -0.394141286611557, -1.0690958499908447, 1.3021749258041382, 0.724432647228241, 0.6929619908332825, 0.5147562026977539, -0.5396426320075989, 0.3779987692832947, 0.24197928607463837, -0.9658047556877136, -1.105525255203247, 0.9558937549591064, 0.04619942232966423, 0.8930016756057739, -0.1364527940750122, -0.7375591993331909, -0.0464915968477726, -0.2851685881614685, -0.7993375062942505, 0.4930185079574585, -0.07795314490795135, 0.5506854057312012, -0.09055586159229279, -0.09195751696825027, -0.032772552222013474, -0.07983183860778809, -0.959376335144043, 0.07789275050163269, 0.1869022697210312, 0.2745112478733063, 0.14295057952404022, -0.3884170949459076, -0.2872398793697357, -0.80804443359375, -0.09344904869794846, 0.17700061202049255, 0.6696878671646118, 1.083132266998291, 0.4700402021408081, -0.234205961227417, -0.14617113769054413, 0.39229246973991394, -0.3931344747543335, 1.0616064071655273, 0.923957347869873, -1.175499677658081, 0.06902144104242325, 0.7835302352905273, -0.9158658981323242, -1.0343449115753174, -0.17961496114730835, -0.08794526755809784, -1.2093520164489746, -0.8931723833084106, -1.2274985313415527, -0.11972800642251968, 0.5049089193344116, -0.9182277917861938, 0.1149594783782959, 0.5163050293922424, -1.719452142715454, 0.4190666675567627, -0.5263245105743408, -1.0776013135910034, 0.042836807668209076, -0.42643892765045166, 0.6073770523071289, 0.09558311849832535, 0.4776129722595215, -0.4461442530155182, 0.4751952886581421, -1.3077327013015747, -1.008641242980957, -0.7109318971633911, 0.14288541674613953, 0.7142214179039001, 0.5553325414657593, -0.49075159430503845, 1.6858192682266235, 0.9227900505065918, -0.5368524789810181, -0.5334288477897644, 0.2181897610425949, -0.300772488117218, 0.49682503938674927, 0.43314802646636963, 0.7581493854522705, 1.0039968490600586, 1.1604777574539185, 0.1619931161403656, 1.1319465637207031, 0.8253313899040222, 0.4456102252006531, -0.10243834555149078, -0.8847548365592957, 0.4642702341079712, 0.6511290073394775, -0.9279428720474243, -1.1528847217559814, -0.4463838040828705, -0.30155858397483826, -1.1669530868530273, 0.15805663168430328, 0.7846888303756714, -0.748450517654419, 0.21846207976341248, -0.521767258644104, 0.15749388933181763, -0.6742141246795654, -0.006496507674455643, 0.2063382863998413, -0.7203123569488525, 0.01158871315419674, 0.16570159792900085, -0.7498383522033691, -1.6148847341537476, 0.48900696635246277, 0.17379964888095856, -0.6315679550170898, -0.5222795009613037, 0.9825621843338013, 0.30493319034576416, 0.5201553106307983, -0.14857222139835358, 1.6948819160461426, 1.0677318572998047, -0.6044148802757263, 0.10763642191886902, 0.4211612343788147, 0.16438187658786774, 0.5962475538253784, 0.3376067280769348, -1.043424129486084, -1.037774920463562, 1.7916762828826904, 0.5881267189979553, 0.36675822734832764, -0.13464395701885223, -0.5360267162322998, -0.3881380259990692, 0.22581151127815247, 0.5265791416168213, -0.8795714378356934, -0.15331228077411652, 0.9302013516426086, 0.7090669870376587, 0.10774116218090057, -0.4546352028846741, 0.6119354963302612, 0.8545161485671997, -0.941999077796936, 0.3295627534389496, 0.568837583065033, -0.21880878508090973, 0.5663988590240479, -0.29344531893730164, -0.4275064468383789, -0.22293789684772491, -0.12364237010478973, -0.7627326250076294, -0.040339890867471695, 0.06804781407117844, -0.5802702903747559, 1.0977129936218262, -1.1693055629730225, -0.3102697432041168, -0.3778642416000366, -0.5057297348976135, -0.29153138399124146, -0.29264509677886963, 0.11750499904155731, -0.23025114834308624, 0.443330854177475, 0.7455415725708008, -0.24626855552196503, 1.0795342922210693, -0.7423908710479736, 0.06295949220657349, -1.2193211317062378, -0.31539154052734375, 0.15288791060447693, -0.20394489169120789, -0.21807655692100525, -0.2353084683418274, 0.5328908562660217, -0.3221409320831299, -0.8283452987670898, -0.015184387564659119, 0.025780893862247467, -0.06758485734462738, 0.014095939695835114, -0.652589738368988, 0.26568299531936646, 0.9682468771934509, 0.9906426668167114, -0.20063170790672302, -1.0548229217529297, -1.1934524774551392, -0.24302005767822266, -0.27747225761413574, 0.5385744571685791, -0.5089231133460999, 0.9992530941963196, 0.17770187556743622, -0.14006558060646057, -0.7535255551338196, 0.08757343888282776, 0.7814866304397583, 0.17564737796783447, 0.3388693630695343, -0.22881636023521423, 0.48886626958847046, -0.7028110027313232, -0.8256943225860596, 0.1386672705411911, -0.02823857218027115, -0.4187721610069275, -0.08599436283111572, -1.0709586143493652, -0.2026919722557068, -0.22492261230945587, -0.09688764810562134, 0.05642593652009964, -0.09776367247104645, 0.2361994832754135, -0.1754971742630005, -0.8114228248596191, -0.29297196865081787, 0.2371637374162674, -0.11594872176647186, -0.106477752327919, 1.186305046081543, 1.4534989595413208, 0.4736766815185547, 0.46031808853149414, -0.30330008268356323, 0.09100933372974396, -1.3427441120147705, -0.03561755269765854, -0.6804502606391907, -0.5101425647735596, -0.40753665566444397], [0.9694921970367432, 1.4963091611862183, -2.2376902103424072, 0.1164931207895279, 1.7342203855514526, -0.08442432433366776, 0.8497594594955444, -0.304292768239975, -0.30075234174728394, -0.21489585936069489, -0.5462342500686646, 0.4589781165122986, 0.1341947466135025, 0.988475501537323, 0.7824819684028625, 0.8269790410995483, 1.2746590375900269, -0.3022240102291107, 0.48143622279167175, 0.6498590707778931, 0.12365375459194183, 0.17471277713775635, 0.0818362906575203, 0.40807944536209106, -0.2971018850803375, 0.5910168886184692, -0.6603875756263733, -0.14390312135219574, -0.9874762892723083, -0.935444176197052, 2.0945308208465576, -0.4742562472820282, 0.21574316918849945, -0.10749160498380661, -2.642174482345581, 0.15930569171905518, 1.418265700340271, 0.6603295207023621, 0.4950393736362457, -0.1661738157272339, 1.8835686445236206, -0.7309343218803406, -0.17664887011051178, -1.8153222799301147, 0.4495614469051361, 0.03312351182103157, 0.9715867638587952, -0.10073009878396988, 0.15538053214550018, -0.769816517829895, 0.4024747610092163, -0.22952406108379364, 0.25893113017082214, -0.4474453628063202, 0.40214475989341736, -0.015334144234657288, 0.8509735465049744, 0.348847895860672, 0.3185822665691376, -0.060947708785533905, 0.6942174434661865, -0.20511570572853088, -0.42116671800613403, 0.5935854911804199, 0.15129026770591736, -0.3122333884239197, -0.29930970072746277, 0.8217241764068604, -0.11297179013490677, -0.049784500151872635, 0.9720065593719482, 0.17121708393096924, -1.1367030143737793, 0.07878279685974121, -0.9909798502922058, 0.5331838726997375, 0.07507096976041794, 0.5901410579681396, 0.34004127979278564, 0.29626402258872986, -1.0169098377227783, 0.050376735627651215, 0.7502356767654419, -0.07139310240745544, 0.3505868911743164, 0.6317496299743652, 0.34744831919670105, -0.53171706199646, -0.891044557094574, 1.1096141338348389, -0.28880205750465393, 0.09261379390954971, 0.6489489674568176, -0.12899282574653625, -0.2936720848083496, -0.4254896938800812, 0.08526210486888885, -0.5887907147407532, -0.15581588447093964, -0.9119956493377686, -0.917332112789154, -1.2745002508163452, -0.48426637053489685, -0.35807913541793823, -0.8687366843223572, 1.0403997898101807, 1.172066330909729, -0.3186114728450775, -0.1900540441274643, -0.24386091530323029, 0.05543249845504761, 0.8855409026145935, -0.4337335228919983, -1.3031483888626099, -0.4686211049556732, 1.205498218536377, 1.4625685214996338, -0.3210625648498535, 0.1998940408229828, 0.416352778673172, -0.18450139462947845, -0.3238978683948517, 0.01966877281665802, 0.4867013394832611, 0.7140620946884155, 0.5546817779541016, -1.1237319707870483, -0.4715130627155304, 0.8195294737815857, 0.49768194556236267, 0.21655049920082092, -0.1370183676481247, 0.13912196457386017, 0.9307949542999268, -0.5197324156761169, 0.8967581391334534, -0.5671010613441467, -0.6770514249801636, -0.22749781608581543, -0.1341308206319809, 0.2899651825428009, -0.8726025819778442, 0.5082289576530457, 0.18472987413406372, -0.059714142233133316, -0.5087934732437134, 0.9233160018920898, -0.07875631749629974, -0.8571442365646362, 0.3090364634990692, -1.154008150100708, -0.0251779668033123, -0.01834544911980629, 0.7842360138893127, 0.7647009491920471, -0.2703702449798584, 0.21333271265029907, 0.2591603398323059, 0.5550820231437683, 0.0032898224890232086, 1.1010388135910034, 0.11621671169996262, -1.791242241859436, 0.4393247961997986, 0.6187363862991333, -0.35863885283470154, 0.6448288559913635, 0.9421708583831787, 0.37669309973716736, 0.7095112204551697, -0.17117999494075775, -0.5191857814788818, -0.03355342149734497, 0.8345131278038025, 0.1951865702867508, -0.010823381133377552, 0.9771815538406372, 0.05844013765454292, -1.5097802877426147, -1.0898542404174805, 0.6315650939941406, 0.28986406326293945, 0.5472471714019775, 0.3545199930667877, 0.7127262949943542, -0.2897946238517761, 0.3930259346961975, 0.3189878761768341, -0.02384961023926735, -0.8109087944030762, -0.7587486505508423, -0.48981961607933044, -0.28639838099479675, 0.6884384155273438, -0.4400802552700043, -0.9898937940597534, 1.0380090475082397, -1.2543638944625854, -0.384631872177124, 0.31558412313461304, -0.056212153285741806, -0.46328791975975037, -0.43839502334594727, 0.23029451072216034, -1.1057406663894653, 0.4566139578819275, -1.4893447160720825, 0.7404146194458008, -0.7300578355789185, 0.4415353238582611, 1.0276055335998535, 0.2845977246761322, -0.9080948829650879, 0.6694574356079102, -0.4082517623901367, -1.9843839406967163, 0.6954687237739563, 1.0813226699829102, -0.04202890768647194, 0.1183103695511818, -0.756140947341919, -0.03680221363902092, 0.5185208320617676, -0.8046144247055054, 0.3521285355091095, -0.23132279515266418, -0.19938097894191742, -1.1345934867858887, -0.18751932680606842, -0.41358527541160583, -0.705786406993866, -1.4916647672653198, 0.2743701636791229, -0.2198890745639801, -0.229775071144104, -0.022190453484654427, 0.5054137706756592, 0.2658873200416565, 0.15707066655158997, 1.3950186967849731, 0.09057369083166122, 0.6793904900550842, -0.1856953501701355, 0.3475531339645386, -0.687496542930603, 0.6293758749961853, 0.8018778562545776, -0.5085354447364807, 0.2074069082736969, 0.9996453523635864, 1.0291736125946045, -0.14022472500801086, 0.4318637549877167, -0.0964881181716919, -0.21112236380577087, -0.7685856223106384, -0.9054116010665894, -0.040910057723522186, -0.44145718216896057, 1.326831340789795, 0.47581544518470764, -0.5042397975921631, -0.3506341874599457, -0.2804471552371979, -0.5891480445861816, -0.48566552996635437, -0.04081638157367706, -0.6665314435958862, -0.18209709227085114, 0.2918495535850525, -0.25391441583633423, 0.24713918566703796, 0.13675250113010406, 0.8885471820831299, -0.22577638924121857, -0.234258770942688, -0.4283880889415741, -0.02871611900627613, 0.08842910081148148, 0.6913012862205505, -0.19214284420013428, -1.3616045713424683, -0.08312048017978668, 0.13163135945796967, 0.37838754057884216, 0.19671835005283356, 0.7377402782440186, 0.5940343737602234, 0.31657224893569946, -0.02386554144322872, 0.028637267649173737, 0.17902803421020508, 0.4574443995952606, 0.5046937465667725, 0.6072877645492554, 0.14202050864696503, 0.8996895551681519, -1.365981101989746, -0.31649696826934814, -0.3841223418712616, 0.2918076515197754, 0.861594557762146, -0.06520446389913559, 0.8614239692687988, -0.07333814352750778, -0.022090459242463112, -0.19320736825466156, -0.7223027348518372, -0.5089795589447021, -0.9182756543159485, -0.8369735479354858, -0.596479058265686, -0.5446681380271912, -0.3587776720523834, -0.07411958277225494, 0.5922179818153381, -0.7699345946311951, 0.5343796610832214, 1.3532522916793823, -0.3404909074306488, -1.1345595121383667, -0.5290935039520264, -0.19577476382255554, -0.16766293346881866, 0.30807438492774963, 1.0489239692687988, -1.3682358264923096, -0.07176181674003601, -0.012602402828633785, 0.21684007346630096, 0.8600032329559326, 0.1336027830839157, 0.867466926574707, -1.3469202518463135, -0.9891531467437744, -0.6482135653495789, 1.3612521886825562, 0.15383175015449524, -0.19427967071533203, 0.06378775835037231, 0.21609486639499664, 0.5064519047737122, -0.21553707122802734, -0.32308557629585266, 1.4219293594360352, -0.3279038667678833, -0.20996908843517303, 0.1719459742307663, 0.31859156489372253, 0.04003792628645897, -0.6571553349494934, -1.0193032026290894, -0.32352250814437866, -0.27657008171081543, -0.23146548867225647, 0.587814211845398, 0.6739656329154968, 0.6651512980461121, -0.19058695435523987, 0.5256763100624084, 0.9991545677185059, -0.2126818746328354, -0.1654474288225174, -0.7513008713722229, -0.16717089712619781, 0.6647509336471558, 1.0288310050964355, 0.6075734496116638, 0.12012652307748795, 0.1013733446598053, 0.22874201834201813, 0.10460557043552399, 0.2151293307542801, 1.3091375827789307, -0.18128421902656555, -0.1368490308523178, -0.6972786784172058, -0.22262081503868103, 0.24773700535297394, 0.22798217833042145, 0.5215164422988892, 0.462165504693985, -0.7598106861114502, -0.42574959993362427, 1.311579942703247, 0.22040003538131714, -0.35184526443481445, -0.922077476978302, 0.0026645269244909286, 1.8196864128112793, -0.45143088698387146, 0.3381997048854828, -0.5053101181983948, -0.21178872883319855, 0.34245917201042175, -0.17379909753799438, -0.47659891843795776, 0.7339169979095459, -0.014045657590031624, 0.657414972782135, -1.1396794319152832, -0.10843764245510101, -0.8985656499862671, 0.6379510760307312, 0.5994965434074402, -0.2588011622428894, 0.6172046065330505, -0.5016988515853882, -0.4788847267627716, 0.38049933314323425, 0.7163614630699158, 1.077988624572754, -0.5909916162490845, -0.291048139333725, 0.2931344211101532, -0.25110331177711487, 0.440860778093338, -0.2885383367538452, -0.2739451229572296, -0.04197153449058533, -0.06226629018783569, -0.024695761501789093, -0.3260886073112488, -0.38612908124923706, 1.4045594930648804, -0.0650588646531105, -0.014644207432866096, 0.5056565403938293, 0.3967008590698242, -0.7089483737945557, -0.16293954849243164, 0.8175820112228394, -0.049222130328416824, -0.4810844361782074, -0.6672517657279968, 0.6293818950653076, -0.11457131803035736, 0.1115008145570755, -0.1279831826686859, 0.7829995155334473, -0.5556145906448364, 0.1350933015346527, -0.4479713439941406, 0.9828287363052368, 0.36420738697052, 0.8115209341049194, 1.0100781917572021, -0.8657622933387756, -0.2800198793411255, 0.21370449662208557, -1.0807143449783325, 0.9398004412651062, 0.9971710443496704, 0.682111382484436, 1.2111947536468506, -1.608500599861145, -0.7748593091964722, 1.064772605895996, 0.3850220739841461, 0.7501604557037354, 1.2842884063720703, 0.02595975622534752, 0.19690699875354767, 0.9010447263717651, -0.024141274392604828, -0.18986469507217407, 0.8593630790710449, -0.07241885364055634, 0.20668184757232666, 0.4320538341999054, -0.9620253443717957, 0.49007394909858704, -0.41353005170822144, -0.33416175842285156, -0.03757266700267792, -0.27515751123428345, 0.33564493060112, 0.8050447702407837, 0.8947901725769043, 1.1138770580291748, -0.6477824449539185, -1.4225467443466187, -0.4269701838493347, -0.9552009701728821, -0.43513569235801697, -0.30830150842666626, -0.017967846244573593, -1.2848179340362549, 0.12325581908226013, 0.18566443026065826, 0.8675296902656555, 0.09142059832811356, -0.29915714263916016, -0.9304279088973999, -0.9522941708564758, 0.5814311504364014, 1.0100650787353516, 1.2853306531906128, 0.3491310179233551, 0.12238258123397827, 0.2969993054866791, 0.0027592675760388374, -1.0412999391555786, -0.21660977602005005, -0.39492908120155334, -0.1523171216249466, 0.1291699856519699, -0.9831119775772095, -0.9774779081344604, -0.4984112083911896, 0.860296905040741, -0.15329548716545105, 0.7114279866218567, 1.3736979961395264, 0.7636390328407288, -0.4057597219944, -0.10505283623933792, 0.36108526587486267, -0.9818481206893921, 0.45641860365867615, 0.4065711796283722, -0.5871210694313049, -0.8720294833183289, -0.9639929533004761, -0.3927574157714844, 0.2956124246120453, 0.05092671513557434, -0.653533935546875, 0.25735220313072205, 0.391786128282547, 0.7683533430099487, 0.19701291620731354, -0.5960956811904907, 0.32977914810180664, 0.10744846612215042, -0.4357607066631317, -0.7098144888877869, 0.4830838739871979, -0.2573852837085724, -0.6731739044189453, -0.647378146648407, 0.4815009534358978, -0.046579357236623764, 0.22090624272823334, -0.7355096936225891, 0.33664295077323914, 0.4729909896850586, 0.8052650094032288, 0.0742909386754036, -0.7598552107810974, 0.498544305562973, -0.8675050139427185, -1.364933729171753, -0.21379658579826355, 0.379388689994812, 0.31503525376319885, 0.21250241994857788, -0.17642681300640106, -0.586397647857666, -0.6942511796951294, -0.6005695462226868, -0.5096710920333862, 0.8426196575164795, 0.6711787581443787, 0.4640762209892273, -0.6581398248672485, -0.9485208988189697, -0.09090612083673477, -0.266482412815094, -0.18768592178821564, 1.0496716499328613, -1.4119760990142822, 0.22502148151397705, 0.8394845724105835, -1.1185376644134521, 0.3323296308517456, -0.8064054250717163, -0.12029440701007843, -0.5635603070259094, -1.2187035083770752, -1.7938872575759888, -0.027546720579266548, 0.8828881978988647, -0.8189393877983093, 0.163814514875412, 0.01912539266049862, -1.657249927520752, 0.47754859924316406, -0.1844365894794464, -1.282439947128296, 0.11491844058036804, -0.9735323786735535, 0.8268882036209106, 0.30906030535697937, 0.40421968698501587, 0.3143497109413147, 0.8571146726608276, -1.5514508485794067, -1.8112913370132446, -0.8809507489204407, -0.3300629258155823, 1.6927112340927124, 0.8515353202819824, -1.1095596551895142, 1.6505290269851685, 0.7138333916664124, 0.2799223065376282, -0.42891767621040344, 0.17250493168830872, -0.7794404625892639, 0.7784586548805237, -0.006277596578001976, 0.779304027557373, 0.0924186259508133, 0.9298365712165833, 0.03261018171906471, 0.9676975011825562, 0.8101527690887451, 0.6508079767227173, -0.2406863123178482, -0.3205887973308563, 0.1982281506061554, 1.0162009000778198, -0.9503466486930847, -0.7155446410179138, 0.04534483328461647, -0.1105373278260231, -0.9720780849456787, -0.27599045634269714, 0.9321170449256897, -0.7852932214736938, 0.21546395123004913, -0.8190532326698303, -0.08810790628194809, -1.061889886856079, 0.2923523187637329, 0.441101610660553, -0.4215868413448334, -0.4193446934223175, 0.06745753437280655, -0.1718205064535141, -1.3498951196670532, -0.10733896493911743, -0.18776549398899078, -0.9081313610076904, -0.579257607460022, 0.29192671179771423, -0.19933803379535675, 0.46842655539512634, -0.8597084283828735, 1.8365142345428467, 0.9329462051391602, -0.4857083857059479, -0.49602454900741577, 0.3034965395927429, 0.06399271637201309, 0.22002634406089783, -0.008926758542656898, -0.2806243300437927, -0.4691363275051117, 0.960817813873291, 0.5526793003082275, -0.3655320703983307, -0.12325786799192429, 0.33859968185424805, -0.1912776678800583, 0.6756606698036194, 0.08256790786981583, -1.0527740716934204, -0.8903005123138428, 1.1420135498046875, -0.24076686799526215, -0.23779435455799103, -0.2044035643339157, 0.8688881397247314, 0.5164538621902466, 0.11675306409597397, 0.7410739660263062, 0.5575613379478455, -0.23126645386219025, 1.1233969926834106, -0.4364689290523529, 0.28522467613220215, -0.6423443555831909, -0.4679809510707855, -1.579526662826538, -0.23416824638843536, -0.053746480494737625, -1.3945934772491455, 0.47107869386672974, -1.5466707944869995, -0.11426407098770142, -0.04411150887608528, -0.31471386551856995, -0.3747807443141937, -0.25356242060661316, -0.09893587231636047, -0.39174753427505493, 0.009557751007378101, 0.707322359085083, -0.6505456566810608, 1.8780865669250488, 0.27385690808296204, 0.4589586853981018, -1.4893611669540405, -0.631040096282959, 0.020372826606035233, 0.25233790278434753, -0.22535307705402374, -0.5445088148117065, 0.3947119116783142, -0.37637344002723694, -0.6765846610069275, 0.811454176902771, 0.05655393749475479, -0.019875796511769295, -0.24960368871688843, -0.9574522376060486, 0.5287690162658691, 1.1900129318237305, 0.8554303050041199, -0.4628116190433502, -0.6131361126899719, -0.6697168350219727, 0.22492945194244385, -0.7614531517028809, 0.10059762746095657, -0.08492197841405869, 1.1404047012329102, 0.40728116035461426, -0.10826338827610016, -1.2006336450576782, -0.7215741872787476, 0.6557312607765198, 0.8660933375358582, 0.11092986911535263, -0.6150161623954773, 0.2200472503900528, -0.4131951630115509, -1.6152973175048828, -0.0955420583486557, -0.03166854754090309, -0.23335187137126923, 0.04048338159918785, -1.029517412185669, -0.2045360505580902, -0.33519577980041504, 0.18422307074069977, 1.247144103050232, 0.3069649934768677, 0.6516494750976562, -0.23541699349880219, -0.4183211028575897, 0.4620426595211029, 0.15681444108486176, 0.0744512602686882, -0.5424284934997559, 1.4075905084609985, 1.951968789100647, 0.44544678926467896, 0.055988967418670654, -0.3753860890865326, 0.40126273036003113, -1.239211916923523, 0.5891422629356384, -0.7471246719360352, -0.7557960748672485, -0.24260155856609344], [-0.27126455307006836, 1.4204055070877075, -2.7603707313537598, -0.36966609954833984, 0.5414079427719116, 0.03351988643407822, 1.692652940750122, 0.03581439331173897, -0.22874332964420319, 0.21712128818035126, -0.05097811669111252, 0.48426613211631775, 0.2174031138420105, 0.5981935858726501, 1.5388914346694946, -0.33359989523887634, 0.15311914682388306, -0.20723754167556763, 0.38429388403892517, 1.4741804599761963, -0.7704984545707703, 0.06913083046674728, -0.46214166283607483, -0.32232949137687683, -0.31556880474090576, 0.9643077254295349, -1.6776752471923828, -0.11883589625358582, -0.5521221160888672, -0.7024518251419067, 0.8199463486671448, -0.8020931482315063, -0.14043119549751282, -0.4513685405254364, -0.7012286186218262, 0.020664209499955177, 0.5495238304138184, 1.2859866619110107, 0.6303220391273499, 0.61555016040802, 2.3267695903778076, -0.9967770576477051, 0.06726692616939545, -1.5051751136779785, 0.11865076422691345, -0.5106910467147827, 0.41813188791275024, -0.29501011967658997, -0.002790156751871109, -0.2710152268409729, -0.41943955421447754, -1.7863657474517822, 0.3849347233772278, 0.8964595794677734, 1.0058112144470215, -0.22077339887619019, 0.4252074956893921, -0.2716616094112396, 0.012712767347693443, -0.1574619710445404, 0.6509988307952881, -0.23954465985298157, -0.47071418166160583, 0.0517975389957428, 0.47928789258003235, -0.24680151045322418, -0.22762365639209747, 0.16439567506313324, 0.40551644563674927, 0.33386534452438354, 0.2353050261735916, 0.3177803158760071, -0.8041877150535583, -0.06542894244194031, -1.483477234840393, 0.4837855398654938, 0.025836003944277763, 1.0758132934570312, -0.3753807842731476, 0.518731415271759, -0.40778258442878723, -0.7078405022621155, 1.32575261592865, -0.5520093441009521, 1.1831327676773071, -0.17704156041145325, -0.016124200075864792, -0.3602007329463959, 0.028276989236474037, 1.8050283193588257, 0.5672008395195007, 0.14143678545951843, 0.690170168876648, 0.43531787395477295, -0.056369658559560776, -0.2907167375087738, 0.08575654029846191, 0.5788667798042297, -0.9100755453109741, -0.9347471594810486, 0.2528732419013977, -0.6491098999977112, 0.34969258308410645, -0.21429158747196198, -0.5712910294532776, 0.9197987914085388, 0.10267935693264008, 0.028287487104535103, -0.24548043310642242, -0.3654136061668396, -0.2926460802555084, 0.2770884037017822, -0.44083172082901, -1.9569393396377563, -0.5688857436180115, 0.44806399941444397, 1.6847662925720215, -0.2536037266254425, -0.24053868651390076, 0.8318824768066406, 0.17300792038440704, -0.148685023188591, -0.09485914558172226, 0.44796890020370483, 0.6454876661300659, 0.4802975654602051, -0.8901417255401611, -0.07849922776222229, 0.28192800283432007, -0.19539833068847656, -0.5095685124397278, -0.35688698291778564, 0.15880484879016876, 0.6920173168182373, -0.5622599124908447, 1.795918583869934, -0.3595709502696991, -0.5178358554840088, -0.7759663462638855, 0.26543664932250977, 1.0183879137039185, 0.047449301928281784, -0.13118068873882294, -1.0461162328720093, -0.5209441184997559, -0.5706169605255127, 0.28753790259361267, -0.8707983493804932, -0.2741161286830902, 0.9894559979438782, -0.3113954961299896, 0.4797959625720978, -0.4353069067001343, 0.6757607460021973, 0.9097854495048523, -0.16856931149959564, 0.08594570308923721, 0.35504773259162903, 0.5997907519340515, 0.15501846373081207, 0.40545979142189026, 0.07538788765668869, -1.1955536603927612, 0.04935455694794655, 0.1710633933544159, -0.8562132120132446, 0.3616960644721985, 0.4709510803222656, 0.054893311113119125, 0.8718758821487427, -0.9126100540161133, -0.043774791061878204, -0.13846492767333984, 0.5903709530830383, -0.1716785430908203, -0.7806456089019775, 0.741488516330719, -0.31563061475753784, -0.797400176525116, -1.0365338325500488, 0.27671998739242554, -0.3424879312515259, 0.6107597947120667, -0.6533646583557129, 0.522609531879425, -0.9380077123641968, 0.6670300960540771, -0.415005087852478, -0.5538733601570129, -0.8956972360610962, -0.6721590757369995, -0.2782895267009735, -0.7442362308502197, 0.6529960036277771, -1.1617000102996826, -0.6777943968772888, 1.129896879196167, -1.0209929943084717, 0.002009933814406395, -0.21571916341781616, 0.7969874143600464, -0.6652524471282959, -0.2325042188167572, 0.3679841458797455, -0.2772694528102875, 1.6032063961029053, -0.9298760294914246, 0.5662550330162048, -0.8417209982872009, 0.1526896208524704, 1.1625198125839233, -0.47767403721809387, -0.3198876678943634, 0.8606266975402832, -0.43780848383903503, -1.2244023084640503, 0.06069481745362282, -0.08731678873300552, -0.12970784306526184, 0.18263213336467743, -0.1607947200536728, 0.20058715343475342, -0.05694277212023735, -0.11482272297143936, 0.46108174324035645, 0.283671110868454, -0.2492290884256363, -0.5042325258255005, -0.6175456047058105, -0.21794407069683075, -0.8297945857048035, -1.245564341545105, 0.8025570511817932, 0.4557262361049652, -1.3435674905776978, 0.45649272203445435, 0.9887036681175232, -0.24914363026618958, 0.4219983220100403, 0.6785964965820312, 0.5693473219871521, -0.09004176408052444, 0.42562252283096313, -0.08504383265972137, -0.5459009408950806, 0.017892936244606972, 0.09988132119178772, -0.7570430636405945, 0.316083163022995, 1.1627633571624756, 0.22069156169891357, -0.21309718489646912, 1.1699740886688232, 0.4255222976207733, 0.296448677778244, -0.6798222064971924, -0.3284243643283844, -0.07033555954694748, -0.21182632446289062, 1.7438055276870728, 0.7364798188209534, -0.7989477515220642, -0.06192167103290558, 0.017506234347820282, -0.4769977033138275, -0.147067129611969, -0.4197397828102112, 0.21065989136695862, -0.4244246780872345, 0.4738345146179199, 0.27708378434181213, 0.8733477592468262, -0.6105039119720459, 0.60333251953125, -0.0213046595454216, -0.45426517724990845, -0.1488744467496872, 0.4225967526435852, -0.0667470321059227, 0.4101427495479584, 0.00047632399946451187, -0.4024968445301056, -0.23264279961585999, 0.05961637943983078, 0.6727092266082764, 0.33681347966194153, 0.3838464319705963, 0.23625428974628448, 0.1363690197467804, -0.2730732262134552, 0.8361780047416687, 0.2660709321498871, 0.776251494884491, 0.6946286559104919, -0.029068723320961, 0.5656328201293945, 0.5289944410324097, -1.1228824853897095, -0.42975476384162903, 0.053147342056035995, 0.06342577189207077, 1.1447882652282715, 0.8521562814712524, 0.9264078736305237, -0.31515052914619446, 0.5470147132873535, -0.10229766368865967, -0.3664518892765045, -0.36560848355293274, -0.8477689027786255, -1.1408733129501343, -0.7154470086097717, -0.3315213918685913, -0.4215153157711029, -0.25712430477142334, 0.3895082175731659, -0.594157338142395, 0.9028972387313843, 0.8647986650466919, -0.08807799220085144, -0.4211714267730713, -0.7242050766944885, -0.3331477642059326, -1.0179535150527954, 0.41516831517219543, 0.4728906750679016, -0.7011956572532654, 0.18446224927902222, 0.27789780497550964, -0.3210132122039795, 0.2582368850708008, -0.27624037861824036, -0.016324343159794807, -0.8382138013839722, -0.4360851049423218, -0.27692073583602905, 1.5297493934631348, 0.13204948604106903, -0.8652481436729431, -0.1361900269985199, 0.3571113348007202, 0.6143853664398193, -0.14409036934375763, -1.0123958587646484, 0.5610866546630859, -0.5496764779090881, -0.5027148723602295, -0.07601764053106308, 0.8123314380645752, -0.35892799496650696, -0.5218298435211182, -0.747914731502533, -0.10581110417842865, -0.28066137433052063, -0.4786018431186676, -0.2420654594898224, 0.5250046253204346, 0.04618235304951668, -1.1720547676086426, -0.12303482741117477, 0.7510298490524292, -0.1376407891511917, -0.4825185537338257, -1.412491798400879, 0.8394222259521484, -0.15418867766857147, 0.8365978002548218, 0.49140486121177673, 0.6421894431114197, -0.02841970883309841, 0.5021249055862427, -0.3320807218551636, -0.13860945403575897, 1.2023006677627563, -0.05204376205801964, -0.5987045168876648, -0.9222835302352905, 0.01664857566356659, -0.6760254502296448, 0.06425673514604568, 0.18812155723571777, 0.6022211313247681, -0.5499002933502197, -0.5586665868759155, 0.627121090888977, -0.031169217079877853, 0.6681514978408813, -0.0926709845662117, -0.12762810289859772, 0.7786080837249756, -0.37584707140922546, -0.789384663105011, -0.3526287078857422, -0.023075861856341362, 0.11759160459041595, -1.5838099718093872, 0.5366274118423462, 0.05897674337029457, 0.930495023727417, 1.01810622215271, -0.6417051553726196, 0.35428622364997864, -0.11621145904064178, 0.5195083618164062, 0.6290633678436279, 0.08116994053125381, 0.24294275045394897, 0.44959187507629395, -0.18076889216899872, -0.4399684965610504, 0.09695112705230713, 1.2172842025756836, -0.4340626299381256, -0.27543404698371887, -0.3529658317565918, 0.7515922784805298, -0.2217165231704712, -0.2796873450279236, 0.08922267705202103, 0.7075269818305969, -0.44361910223960876, 0.5684765577316284, 0.18934597074985504, -0.346213698387146, 0.7762260437011719, 0.745755672454834, 0.5682329535484314, 0.4754563271999359, 0.06980326026678085, -0.39702659845352173, -0.12812180817127228, 0.06568611413240433, 0.1205650269985199, -0.3804091513156891, 0.07207480818033218, 1.1128534078598022, -0.7102223634719849, 0.1939305067062378, 0.33858388662338257, 0.6363641023635864, 0.49423256516456604, -0.6066510677337646, -0.283778578042984, 0.34522345662117004, 0.5210232734680176, 1.6609606742858887, 0.372791588306427, -0.45461589097976685, -1.7823692560195923, 0.1628509908914566, -0.7160527110099792, 0.047135595232248306, 1.3001892566680908, -0.3593718409538269, 1.2785028219223022, -1.307650089263916, 0.22199870645999908, 1.3301037549972534, 0.09425926208496094, 0.421454519033432, 1.1059832572937012, 0.3868049085140228, -0.6367665529251099, 0.3194023668766022, 0.3499726355075836, -0.2884792685508728, 0.15295836329460144, 0.19454464316368103, 0.09075167030096054, 0.8148500919342041, -0.9237508177757263, 0.7352838516235352, -0.8729771971702576, -0.3705766797065735, -0.6901242733001709, -0.26516276597976685, 0.4501054883003235, 0.2049088180065155, 0.36856263875961304, 0.6832677125930786, 0.5913445949554443, -1.2447212934494019, -0.04630863294005394, -0.4110715985298157, 0.16948367655277252, 0.02279573492705822, 0.7890438437461853, -0.16428743302822113, -0.48439592123031616, -0.30340349674224854, 0.18518538773059845, -0.3524016737937927, -0.6463712453842163, -0.4668451249599457, -1.0324530601501465, 0.27191752195358276, 0.3960629999637604, 1.0365239381790161, 0.7134268283843994, -0.5998398065567017, 0.7741789817810059, 0.11827684193849564, -0.9183720350265503, -0.5549936890602112, 0.059286631643772125, 0.2880789637565613, -0.20864379405975342, -1.4763327836990356, -0.11510305851697922, 0.9745237827301025, 0.319377064704895, 0.11508526653051376, 0.8811522126197815, 0.7181288599967957, 1.3590755462646484, -0.6296356320381165, -0.1394677460193634, 0.8564124703407288, -0.3093474507331848, 1.3504942655563354, 0.5070722103118896, -0.19764547049999237, 0.059893347322940826, -1.0650475025177002, -1.444607138633728, 0.6021900177001953, -0.4066622257232666, 0.12482031434774399, 0.4895642101764679, -0.12059850990772247, 0.611042857170105, 0.3063957989215851, -0.9195733070373535, -0.49776455760002136, -0.03146013990044594, -0.43931224942207336, -1.1820396184921265, 0.8209095597267151, -0.09206646680831909, 0.6165758967399597, -0.2977162301540375, -0.13888581097126007, -0.8989350199699402, 0.1265878826379776, 0.022636080160737038, 1.025710105895996, -0.6946129202842712, 0.4561437666416168, 0.2600007951259613, -0.0527879074215889, 0.49763503670692444, -0.24340789020061493, -1.048459768295288, 0.047011468559503555, 0.7070556879043579, 0.2768310308456421, -0.15746629238128662, 0.3016342222690582, 0.005043313838541508, -0.6100537776947021, -0.46570640802383423, 0.08599039167165756, 0.8005018830299377, 0.9001806378364563, 0.8507245182991028, 0.29207995533943176, -0.5411831140518188, -0.3823476731777191, 0.42451804876327515, 0.25075939297676086, 0.38520142436027527, -1.0615031719207764, 0.2607690393924713, 0.14193782210350037, -0.8448696136474609, -0.031806930899620056, -0.28781354427337646, -0.30844324827194214, -0.8342982530593872, -0.4939126670360565, -0.7160553336143494, 0.2367245852947235, 1.0245391130447388, -1.3166544437408447, 0.9821129441261292, -0.4398815929889679, -1.4628899097442627, 0.1582803577184677, 0.2398822009563446, -1.3651268482208252, 0.19186550378799438, -1.3754112720489502, 0.8676021099090576, -0.3930460512638092, -0.3207346796989441, -0.37814193964004517, 0.5945252180099487, -1.8638466596603394, -0.9755585789680481, -0.7708756923675537, 0.669083297252655, 1.3503437042236328, 0.7594147324562073, -1.3883472681045532, 1.434674620628357, 0.3779565393924713, 0.11288836598396301, -0.4413423538208008, 0.12475667893886566, -0.22781182825565338, 0.16037066280841827, 0.9723156690597534, 0.324931800365448, 0.6535016298294067, 1.2790610790252686, 0.1888750195503235, 0.8768635392189026, 0.013594633899629116, 0.59440016746521, -0.9314471483230591, -0.9278112053871155, -0.03318343684077263, 0.861765444278717, -0.9316214323043823, -0.47234994173049927, 0.30574190616607666, -0.4943076968193054, -0.9712410569190979, -0.04848531633615494, 0.37644147872924805, -0.37306854128837585, -0.1225656270980835, -1.0574506521224976, 0.6420949697494507, -0.8374655842781067, 0.6642728447914124, 0.3083961606025696, -0.8904512524604797, -0.6467820405960083, -0.12049861252307892, 0.1253897249698639, -1.3143340349197388, -0.06532050669193268, -0.028626691550016403, 0.027619579806923866, -0.4412342309951782, 0.5408290028572083, 1.5700711011886597, 0.8016554117202759, -0.5969220399856567, 1.542006254196167, 0.752296507358551, -0.15662986040115356, -0.2382466197013855, -0.2806839048862457, 0.5748267769813538, 0.3720749318599701, -0.1915232539176941, -0.2135384976863861, -0.29828837513923645, 1.408165454864502, 0.20670677721500397, -0.503291666507721, 0.11919137090444565, 0.24347037076950073, -0.893700897693634, 0.1967117041349411, 0.10577224940061569, -0.8563464879989624, 0.152522012591362, 1.780380368232727, 0.47618210315704346, -0.5013779997825623, -0.4463942050933838, 0.8119057416915894, 0.31148213148117065, 0.1351083666086197, 0.7727321982383728, 0.8948339819908142, -0.4451146423816681, 0.018981056287884712, 0.05489636957645416, 0.0640038475394249, 0.4362141191959381, -0.08778456598520279, -1.2392066717147827, -0.5215568542480469, -1.0184592008590698, -0.5166429877281189, 0.41215065121650696, -0.49672141671180725, -1.0207977294921875, 0.3354831337928772, 0.1471710056066513, -0.06930645555257797, -0.7972018718719482, 0.2841019332408905, 0.40230634808540344, -0.15274758636951447, 0.6903660297393799, -0.6875993609428406, 1.5580517053604126, -0.5996295809745789, 0.28477177023887634, -0.4840907156467438, 0.012800904922187328, 0.4819152057170868, -0.5452135801315308, -0.6739383935928345, -0.22940510511398315, 0.6878545880317688, -0.5415021777153015, -1.112756371498108, 0.39218559861183167, 0.2683112621307373, 0.059652648866176605, 0.00020960858091711998, -0.6262436509132385, 0.446638822555542, 0.37457898259162903, 0.7193835377693176, -0.5796803832054138, -0.26775121688842773, -0.5167453289031982, 0.25916406512260437, -0.6666073203086853, 0.8143843412399292, -0.4077480137348175, 0.35423582792282104, 0.5686460733413696, -0.8402832746505737, -0.03227962926030159, -0.4791136682033539, 0.2491896003484726, -0.6564251184463501, 0.3171997666358948, 0.29636821150779724, 0.526117205619812, -0.9023603200912476, -0.3669852614402771, -0.2485434114933014, 0.16665934026241302, -0.11067499220371246, 0.6892193555831909, -0.3030543327331543, 0.0553523413836956, 0.05646940693259239, -0.175713449716568, 0.30067694187164307, -0.26075488328933716, -0.24176020920276642, -0.51646488904953, -0.8164414167404175, -0.6566855907440186, -0.21253500878810883, 0.10517794638872147, -0.3643183708190918, 0.9144272208213806, 1.2625113725662231, -0.031270936131477356, 0.6138994693756104, -0.23353853821754456, 0.7937722206115723, -1.462949275970459, -0.2235020101070404, -0.5432735681533813, -0.8597092032432556, -0.6404229402542114], [-0.8019827008247375, 0.9743154644966125, -2.2075021266937256, -0.028578465804457664, 0.9990875124931335, 0.2641306519508362, 1.2024177312850952, -0.6109508872032166, 0.2760581374168396, -0.7076370716094971, -0.8062498569488525, 0.2986902892589569, -0.607317328453064, 0.5413205623626709, 0.9787155985832214, 0.8857557773590088, 0.9225494861602783, -0.589924693107605, 0.13310961425304413, 1.0708954334259033, -1.1182191371917725, -0.15512031316757202, 0.43735963106155396, -0.3449607789516449, -0.6615442037582397, 1.354965090751648, -0.6087889075279236, 0.2653282880783081, -0.9135334491729736, -1.4119267463684082, 0.4622279107570648, -0.22578561305999756, 0.2755205035209656, -0.15753701329231262, -1.7109572887420654, -0.14017263054847717, 1.4489061832427979, 1.087357759475708, 0.5184656977653503, 0.7351152300834656, 2.140727996826172, -0.8457217812538147, -0.05869869515299797, -2.273624897003174, 0.2857450842857361, -0.48869800567626953, 0.8951323628425598, -0.6511756777763367, -0.3082476854324341, -0.17298227548599243, 0.10471627116203308, -1.2533674240112305, 0.43408888578414917, 1.188018560409546, 1.1631414890289307, -0.8445369005203247, 0.4705062806606293, 0.4634610414505005, 0.17432639002799988, -0.37203341722488403, 1.2815951108932495, 0.06885372847318649, -0.7206107974052429, 0.9010832905769348, -0.16258394718170166, -0.8310947418212891, -0.16413195431232452, 0.06318922340869904, -0.17671555280685425, -0.3765411972999573, 0.1006968766450882, 0.6472324132919312, -0.995861291885376, 0.3341163396835327, -0.4921479821205139, 0.32036635279655457, 0.6288520097732544, 0.6717317700386047, 0.7077248692512512, -0.12771886587142944, -0.6396396160125732, -0.010351755656301975, 1.0747041702270508, -1.3487024307250977, 0.2297263741493225, 0.3435591757297516, 0.5082234144210815, -0.6817061305046082, -0.40442293882369995, 1.02720308303833, 0.3729609251022339, -0.008477002382278442, 0.6117235422134399, -0.10573485493659973, -0.11448953300714493, -0.39113450050354004, 0.38525861501693726, -0.9220936894416809, -0.48259401321411133, -1.1922502517700195, -0.37283238768577576, -0.7518835067749023, 1.141127109527588, 0.3258724808692932, -0.7645424604415894, 1.107706904411316, 0.08573387563228607, -0.3299536406993866, -0.24743425846099854, 0.38750869035720825, -0.02945059724152088, 0.10430101305246353, -0.6105360388755798, -1.5841889381408691, -0.9655799269676208, 0.40075284242630005, 1.2735415697097778, -0.2920615077018738, 0.5676789283752441, 0.6685730218887329, 0.1730315238237381, -0.017902661114931107, 0.09442701935768127, 0.8350534439086914, 0.6061978340148926, 0.30517852306365967, -0.9023731350898743, -0.2579834461212158, -0.1741713136434555, -0.1897912323474884, 0.47407999634742737, -0.5563366413116455, -0.29250338673591614, 1.6558055877685547, -1.3504835367202759, 1.0280488729476929, -0.5059735178947449, -0.8510023355484009, 0.17770671844482422, -0.15770359337329865, 1.0996826887130737, -0.25149938464164734, -0.12093982845544815, -1.0344502925872803, -0.31465381383895874, -0.4671645760536194, 0.4592282772064209, -0.45306551456451416, -0.771796703338623, 0.48622503876686096, -0.5317003130912781, 0.9179229140281677, -0.2723086178302765, 0.9246535301208496, 0.9868535399436951, -0.5328015685081482, 0.06285718083381653, 0.5418053269386292, 0.6106125712394714, -0.1029515489935875, 1.0571383237838745, -0.5429098606109619, -0.809411346912384, 0.19452890753746033, 0.9296225905418396, -0.07920002937316895, 0.5929285883903503, 1.1456302404403687, -0.24951446056365967, 1.227138876914978, -0.7163388133049011, -1.0012495517730713, -1.166683554649353, 0.10315848141908646, 0.3457266390323639, 0.010637743398547173, 1.086449384689331, -0.3372516930103302, -1.6693795919418335, -1.5268875360488892, 0.3417929708957672, -0.45155027508735657, 0.605817437171936, -0.6482391357421875, 0.8376612663269043, -0.7687758207321167, 0.19890187680721283, -0.43624749779701233, -0.09567652642726898, -1.3023474216461182, -1.050880789756775, -0.08045191317796707, -1.0419940948486328, 0.4528643488883972, -0.5055195689201355, -0.6218897700309753, 0.34446361660957336, -1.3187063932418823, -0.6512091755867004, -0.2238391935825348, -0.3487032353878021, -0.8353832960128784, -0.2954736053943634, 0.34984290599823, -0.12218590080738068, 1.113106608390808, -0.7421488165855408, 0.9631614089012146, -0.682835578918457, -0.706174373626709, 0.7131264805793762, -0.2681240439414978, -0.7320677042007446, 0.741270124912262, 0.28246939182281494, -1.585548996925354, 0.2417972832918167, 0.18124879896640778, -0.2293952852487564, 0.45424044132232666, 0.33700013160705566, 0.03164143115282059, 0.5235534906387329, 0.0654950812458992, 0.31050965189933777, -0.28586098551750183, -0.5830197930335999, -0.9550859332084656, -0.43471774458885193, -0.22305765748023987, -0.846778154373169, -1.0658328533172607, 0.5080899596214294, 0.5840310454368591, -1.344727635383606, -0.16269727051258087, -0.1397857815027237, 0.4029427468776703, -0.04484591633081436, 1.3040541410446167, 0.2492377907037735, 0.5178385972976685, -0.07754268497228622, -0.14157018065452576, -0.5143257975578308, 0.669270932674408, 0.2720627188682556, -0.05008350685238838, 0.2891063690185547, 0.45160073041915894, 0.7465627789497375, -0.12255477905273438, 0.44770440459251404, 0.18732589483261108, -0.186721533536911, -1.2487149238586426, -1.0635323524475098, -0.3417397439479828, -0.4489329159259796, 1.6690375804901123, 0.860916793346405, -0.9995710849761963, -0.11556706577539444, 0.037443626672029495, -0.3928033113479614, -0.44889014959335327, -0.27726462483406067, 0.5816503167152405, 0.2412804216146469, 0.02156645432114601, -0.14959576725959778, 0.9369211792945862, -1.0700242519378662, 0.8331969380378723, -0.5848195552825928, 0.09751537442207336, 0.06918856501579285, -0.05832681059837341, 0.1453053057193756, 1.0989047288894653, 1.0016039609909058, -1.3414486646652222, -0.4067192077636719, -0.11880069226026535, 1.1129885911941528, 0.18423190712928772, 0.26665419340133667, 0.1446211040019989, 0.9592989683151245, -1.104137659072876, 1.0190855264663696, 0.04270823672413826, 0.2660721242427826, 0.712179958820343, -0.006513659842312336, 0.5078089237213135, 1.1527047157287598, -0.7675036191940308, -0.8777860999107361, 0.34201180934906006, 0.33318328857421875, 1.9298638105392456, 1.1105015277862549, 0.8437707424163818, 0.21459552645683289, 0.16583463549613953, -0.7483751177787781, -0.7446078062057495, -0.9321795701980591, -0.6204695105552673, -1.1717183589935303, -0.5338450074195862, -0.27021366357803345, 0.03193146362900734, 0.4895222783088684, 0.7775918841362, -0.40604057908058167, 0.37521177530288696, 0.977807879447937, -0.27695825695991516, -0.30080702900886536, 0.28295254707336426, 0.29732656478881836, -0.8036602139472961, 0.5392928123474121, 1.7714929580688477, -0.9319128394126892, 0.252203106880188, -0.03541933000087738, 0.146175354719162, 0.4424915909767151, -0.47982728481292725, 0.957507848739624, -1.4140743017196655, -1.0181868076324463, 0.05959934741258621, 1.3358420133590698, -0.016421958804130554, -0.1320848912000656, -0.24678966403007507, 0.17020376026630402, 0.7112590670585632, 0.16359718143939972, -0.580790638923645, 0.9973020553588867, -0.16449280083179474, -0.9244052767753601, 0.3772658109664917, 0.26318368315696716, -0.026120830327272415, -0.30464494228363037, -1.0998413562774658, -0.15453875064849854, -0.21423405408859253, -0.49818235635757446, -0.3071652948856354, 0.6947267055511475, 0.6907126307487488, -0.4683656096458435, 0.013350787572562695, 0.6072819828987122, 0.17729708552360535, 0.4344325661659241, -1.1164638996124268, 0.7153119444847107, 0.8314102292060852, 1.572134256362915, 0.1862807273864746, 0.4672446548938751, 0.015209341421723366, 0.5532901883125305, -0.40796199440956116, -0.01962488703429699, 1.2236324548721313, 0.18245172500610352, 0.18636544048786163, -0.22296938300132751, -0.14394612610340118, 0.04838304966688156, -0.09594597667455673, -0.3711492419242859, 0.3862607479095459, -0.9196776747703552, -0.36270323395729065, 1.287343978881836, 0.5529049634933472, 0.4319341778755188, 0.07585279643535614, -0.2955819368362427, 0.7391226887702942, -0.6140038371086121, -0.6392098069190979, -0.42662283778190613, 0.12533046305179596, 0.2363526076078415, -1.2164148092269897, -0.47898632287979126, 0.26666754484176636, 1.3130385875701904, 1.1980416774749756, -0.47268426418304443, 0.06842553615570068, -0.5998653173446655, 0.24439691007137299, 0.5460701584815979, -0.32235875725746155, -0.01688789762556553, 0.8131734132766724, -0.2554316818714142, 0.05203985795378685, 0.04423893615603447, 1.1492754220962524, -0.2285158485174179, 0.41473388671875, 0.6917587518692017, 0.014836065471172333, -0.8312917351722717, -0.2471173107624054, -0.5670231580734253, 0.5790186524391174, -0.8046207427978516, 0.05533215031027794, 0.07681267708539963, -0.4531422257423401, 1.4293383359909058, 0.010042737238109112, 0.49345871806144714, 0.2375609427690506, -0.2911008596420288, -0.5111119747161865, 0.13041049242019653, 0.30379989743232727, -0.2132926732301712, -1.5306756496429443, -0.16714243590831757, 0.5379838943481445, -0.3282974660396576, 0.09475039690732956, -0.04856628552079201, 0.939685046672821, 0.07461889833211899, 0.033330753445625305, 0.2372380942106247, 0.4738108217716217, 0.6836277842521667, 1.3302345275878906, 0.5515140891075134, -0.5154459476470947, -0.7592255473136902, 0.7405930161476135, -0.6478022933006287, 0.3543834388256073, 0.2255915105342865, -0.13945965468883514, 1.7554720640182495, -1.503860354423523, 0.16301323473453522, 0.6215848326683044, 0.4427048861980438, 0.23921950161457062, 0.7027128338813782, -0.18228483200073242, -0.37078458070755005, -0.10763324052095413, 0.0744081512093544, 0.25413239002227783, 0.35957950353622437, 0.564611554145813, -0.25346025824546814, 0.23894020915031433, -1.3168877363204956, 0.25324225425720215, -0.5151736736297607, -0.7594373226165771, -0.6754105091094971, -0.7104495167732239, -0.004042758606374264, 0.22793026268482208, 0.48786476254463196, 1.2161586284637451, 0.31127285957336426, -0.6211538910865784, 0.34554529190063477, -0.39162322878837585, 0.6643675565719604, -0.6823351383209229, -0.3856814205646515, -0.22999362647533417, 0.0656554326415062, -0.03495023027062416, -0.054739370942115784, -0.5767207741737366, -0.6439195275306702, -0.636308491230011, -2.03709077835083, 0.9733012914657593, 0.9099656939506531, 0.667296826839447, 0.4903648793697357, -0.20340596139431, 0.7456239461898804, -0.26921963691711426, -0.8514253497123718, -0.5270469784736633, -0.5134000182151794, -0.20127859711647034, 0.31009748578071594, -1.4064053297042847, -0.12923043966293335, 0.2808014452457428, 0.39545097947120667, -0.10530965775251389, 0.8119879364967346, 1.0715564489364624, 1.1009563207626343, -0.3306947946548462, -0.14292556047439575, -0.146733358502388, -0.531035304069519, 0.4670233428478241, 0.3521570861339569, -0.6420719027519226, 0.2769503891468048, -0.454988032579422, -1.145504117012024, 1.0780457258224487, -0.4442288279533386, -0.5461680293083191, 1.1015301942825317, 0.6556354761123657, 0.5622009634971619, 0.7923576831817627, -1.0209966897964478, 0.1841762512922287, 0.12050668150186539, -0.9253551363945007, -1.1530277729034424, 1.2750059366226196, 0.0769883394241333, 0.5165188312530518, 0.06148192659020424, -0.01687551662325859, -0.19482053816318512, 0.31044700741767883, 0.08230364322662354, 0.6906914710998535, 0.028340518474578857, 0.6372569799423218, 0.2077210545539856, 0.43509194254875183, 0.5202748775482178, -0.5891191363334656, -0.44048041105270386, 0.15794363617897034, 1.3497345447540283, -0.0512659065425396, 0.33935773372650146, 0.2258719801902771, -0.4463346302509308, -0.17901571094989777, -0.9334701299667358, -0.021039459854364395, 0.42223772406578064, 0.6355031728744507, 0.6111672520637512, -0.6716721057891846, -1.1000337600708008, 0.09675414860248566, -0.6132067441940308, 0.6068689823150635, 0.6745946407318115, -1.1582971811294556, -0.017490610480308533, 0.5184943079948425, -0.7748467326164246, -0.2858332395553589, -0.6686301231384277, -0.3282543122768402, -1.0640114545822144, -0.7015103697776794, -0.9376943707466125, -0.1845022588968277, 0.5190024971961975, -1.0593430995941162, 1.0351216793060303, 0.4654653072357178, -1.617812156677246, 1.0016365051269531, -0.047026608139276505, -1.4802781343460083, 0.3195923864841461, -1.8990559577941895, 1.1424305438995361, 0.10390472412109375, 0.2388329803943634, 0.1468946635723114, 0.41918089985847473, -1.6168744564056396, -0.9508799910545349, -0.9692357778549194, 0.3448270559310913, 0.4860619902610779, 0.7193048596382141, -0.4272352457046509, 1.5116688013076782, 0.5560277104377747, -0.7502591609954834, -0.4045327305793762, -0.20252752304077148, -0.7632628679275513, 0.28436723351478577, 0.3157872259616852, 1.1176427602767944, 0.6222032904624939, 1.4692118167877197, 0.8651991486549377, 0.8409126400947571, 0.42453452944755554, 0.7339817881584167, -0.9463143348693848, -0.6495490670204163, -0.5047256350517273, 1.2564301490783691, -0.4111640453338623, -0.895751953125, 0.25170615315437317, -0.6608355641365051, -1.8008602857589722, 0.31392350792884827, 0.9546137452125549, -0.2053345888853073, 0.6829691529273987, -0.4815428853034973, 0.24824611842632294, -1.1611735820770264, 0.33518314361572266, 0.5811808705329895, -0.8082814812660217, -0.14067742228507996, 0.11932896077632904, -0.03226717934012413, -0.9767940044403076, 0.2387133240699768, 0.3268294334411621, -0.3132307231426239, -0.32348495721817017, 0.3407749831676483, 0.4086265563964844, 0.4506916105747223, 0.07949689030647278, 1.330276608467102, 0.6343831419944763, -0.7034854888916016, 0.5318670868873596, 0.2475198656320572, -0.205611452460289, 0.14801035821437836, -0.24300312995910645, -0.8696665167808533, -0.45165497064590454, 1.488570213317871, -0.10507810860872269, -0.32803410291671753, -0.14471600949764252, -0.2050849348306656, -0.3161359131336212, 0.34089890122413635, 0.41980981826782227, -0.9204694628715515, -0.544815719127655, 0.8297111392021179, 0.04657980427145958, -0.34615498781204224, -0.16347333788871765, 0.2004002183675766, 0.29141199588775635, -0.27174073457717896, 0.22816787660121918, 0.0332970954477787, -0.4055551290512085, 0.47067248821258545, 0.3551028370857239, 0.21417930722236633, 0.3179836869239807, -0.27788928151130676, -0.9454463720321655, 0.048752300441265106, -0.30562064051628113, -0.8669061064720154, 1.2886582612991333, -1.2745252847671509, -0.5359254479408264, 0.056770455092191696, 0.19769635796546936, -0.08188741654157639, -0.6904200911521912, -0.01967700943350792, 0.2231205254793167, 0.212629035115242, 1.05434250831604, -0.32150301337242126, 1.2965062856674194, 0.0915256142616272, 0.3595641851425171, -0.8363024592399597, -0.6194124817848206, -0.20769251883029938, -0.5257285833358765, 0.24816814064979553, -0.13311371207237244, 1.1385260820388794, -0.44570985436439514, -1.0867449045181274, 0.2737440764904022, 0.032067444175481796, 0.22966979444026947, 0.015483030118048191, -0.4107957184314728, 1.0697647333145142, 0.5857301354408264, 0.7466635704040527, -0.2622047960758209, -0.9297716021537781, -0.6114742755889893, 0.6694255471229553, -0.24610033631324768, 0.5522996783256531, 0.44477683305740356, 1.0034269094467163, 0.11686000227928162, -0.670767605304718, -0.9050326943397522, -0.7811062932014465, 0.17287372052669525, -0.23404568433761597, 0.17989806830883026, -0.20566734671592712, 0.4463947117328644, -0.4769253432750702, -1.0495810508728027, -0.004278769250959158, -0.044803086668252945, -0.1974366009235382, 0.5103561282157898, -1.2707370519638062, -0.38392141461372375, -0.290556937456131, -0.14754395186901093, 0.48812681436538696, 0.14568760991096497, -0.09268724173307419, 0.0648367777466774, -1.1418228149414062, 0.10900641977787018, -0.15877699851989746, -0.6400717496871948, -0.34160465002059937, 1.1621359586715698, 1.494280219078064, 0.11294209212064743, 0.2873084843158722, -0.4453684985637665, 0.02384364604949951, -0.5670598745346069, -0.24357599020004272, -0.3472077250480652, -0.28211846947669983, -0.731734037399292], [0.08484591543674469, 1.2842211723327637, -2.494459629058838, -0.2691342234611511, 0.9593008160591125, 1.2141339778900146, 0.7783145904541016, -0.5220248699188232, 0.021248307079076767, 0.07612653076648712, 0.11341968923807144, 0.02889540046453476, -0.18276584148406982, 0.5891174077987671, 0.950560986995697, 0.2973381280899048, 0.17736689746379852, -0.44735851883888245, 0.2789739966392517, 1.0250556468963623, -0.9275785684585571, -0.3783005475997925, -0.13244923949241638, -0.4177771806716919, 0.25006142258644104, 1.2028560638427734, -1.2439424991607666, -1.1726075410842896, -0.7825995683670044, -1.3455228805541992, 0.30218958854675293, -0.33016088604927063, -0.33578526973724365, -0.10138016939163208, -0.5414050817489624, 0.4768359065055847, 1.8972136974334717, 1.439081072807312, 1.006560206413269, 0.26607760787010193, 1.237649917602539, 0.018603308126330376, -0.13622966408729553, -1.2509666681289673, 0.21513113379478455, -0.3609869182109833, 0.48635441064834595, -0.7471303939819336, 0.12280309945344925, -0.30147650837898254, -0.7897576689720154, -1.4674725532531738, 0.14912067353725433, 0.8945763111114502, 1.1572859287261963, -0.5345830321311951, 0.16209076344966888, -0.30763956904411316, -0.29156693816185, -0.3836714029312134, 1.0281952619552612, -0.4035995602607727, -0.7464798092842102, 0.2952176630496979, 0.6352226734161377, 0.15556536614894867, 0.08958017826080322, 0.31905749440193176, -0.37885764241218567, 0.36830785870552063, 0.3299153745174408, -0.6709699630737305, -1.431721806526184, 0.7465857267379761, -0.8715623021125793, 0.5227574706077576, 0.3802630305290222, 0.948173463344574, 0.5879651308059692, 0.12010469287633896, -0.5345442891120911, -0.43689894676208496, 1.0310521125793457, -0.7578297853469849, -0.05990251898765564, -0.4426286518573761, 0.4421524107456207, -0.7587203979492188, -0.3422497510910034, 1.2903246879577637, 0.30167293548583984, 0.10481584072113037, 0.8616603016853333, 0.5148077607154846, -0.6045802235603333, -0.6153099536895752, 0.4887995719909668, -0.8593137860298157, -1.0721335411071777, -0.5278564095497131, 0.07008287310600281, -0.41787052154541016, 0.1614082157611847, 0.4405909776687622, 0.022701648995280266, 1.0441850423812866, 0.043701887130737305, 0.5362867712974548, -0.5965408682823181, -0.22052563726902008, -0.3956857919692993, -0.23935361206531525, 0.07067867368459702, -1.3077858686447144, -0.9550707340240479, 0.9531475305557251, 1.6880757808685303, -0.8053274154663086, 0.037095099687576294, 0.7856905460357666, 0.5234237313270569, -0.07968904823064804, -0.010853677988052368, 0.45691347122192383, 0.4161968231201172, 0.3029623329639435, -0.6710888147354126, -0.522325873374939, -0.3742397427558899, -0.2600652873516083, 0.47846654057502747, -0.36039066314697266, -0.3143256902694702, 0.8163131475448608, -0.889198362827301, 1.5522509813308716, -0.33268290758132935, -0.4798716604709625, -0.026347361505031586, -0.6993075013160706, 1.2472944259643555, 0.2083931714296341, -0.19966824352741241, -0.14993588626384735, 0.05247659608721733, -0.7543225288391113, 0.1615164875984192, -0.5139707326889038, -0.5009496212005615, 0.7166621685028076, -0.5781282782554626, 0.07365654408931732, -0.008614779449999332, -0.07920940965414047, 0.1406545788049698, -0.250074177980423, -0.205937460064888, 0.5536534786224365, 0.5546920895576477, 0.2572650611400604, 0.03255658224225044, 0.23352159559726715, -0.5762606263160706, 0.22087323665618896, 0.7335876226425171, 0.13124002516269684, 0.31530964374542236, 0.8650510907173157, 0.1321762204170227, 1.0427041053771973, -0.12891429662704468, -0.5666846036911011, -0.37188848853111267, 0.10302519053220749, 0.669076681137085, -1.4537129402160645, 0.37253960967063904, -0.061436258256435394, -1.7218440771102905, -1.085540771484375, -0.16367974877357483, -0.22219006717205048, 1.329970121383667, -0.4699634909629822, 0.387205570936203, -0.17010022699832916, 0.44901418685913086, -0.15654730796813965, -1.0566009283065796, -0.3704603612422943, 0.05431296303868294, -0.11836744844913483, -0.6715295910835266, 0.31395354866981506, -0.031010881066322327, -0.9897634983062744, 0.37346139550209045, -0.7773704528808594, -0.24147875607013702, -0.06883547455072403, -0.018254615366458893, -0.7155044078826904, -0.243900865316391, 0.18326707184314728, -0.10441986471414566, 0.7463312149047852, -1.0671236515045166, 1.2351502180099487, -0.6519340872764587, -0.6637689471244812, 0.8254866600036621, -0.40859875082969666, -0.5457264184951782, 0.8019570112228394, 0.32679957151412964, -1.5803440809249878, -0.06008388474583626, -0.22509433329105377, -0.164274200797081, 0.08724185824394226, -0.11131518334150314, -0.15670894086360931, -0.2886231243610382, -0.1577857881784439, 0.4002092778682709, -0.24654419720172882, -0.8691716194152832, -0.8106399774551392, -0.7940598130226135, -0.010969837196171284, -0.9972960948944092, -0.9095321297645569, 0.8797190189361572, -0.033016543835401535, -1.5135321617126465, 0.0628143697977066, 0.467866450548172, 0.5456992387771606, 0.6546130180358887, 1.60109281539917, -0.10298088192939758, 0.9211203455924988, -0.26928961277008057, -0.018937990069389343, -0.5994541049003601, 0.7200838327407837, 0.16406115889549255, -0.7953217625617981, 0.0410524383187294, 0.856556236743927, 0.7015681266784668, 0.1438131481409073, 0.5621694922447205, -0.16529616713523865, -0.08235413581132889, -0.7200087904930115, -1.0964714288711548, 0.06679932028055191, 0.649075448513031, 0.7247114181518555, 0.4289212226867676, -1.5534279346466064, -0.44845038652420044, 0.5655837059020996, -0.06889133155345917, 0.4022162854671478, -0.24805235862731934, 0.20642368495464325, 0.13530884683132172, 0.04154564067721367, 0.41486674547195435, 1.2693727016448975, -0.6874966621398926, 0.981046736240387, -0.8628870844841003, -0.47333410382270813, -0.49482136964797974, 0.8702101707458496, 0.01311141811311245, 0.4330698847770691, 0.4923170208930969, -0.8941515684127808, -0.20699895918369293, 0.5302190780639648, 0.6109899282455444, 0.009226332418620586, 0.7580736875534058, -0.23355048894882202, 0.9228174090385437, -0.7304187417030334, 0.9938952922821045, -0.3617190718650818, 0.02564634196460247, -0.17825642228126526, 0.3803556263446808, 0.7006912231445312, 1.513051152229309, -1.103951096534729, -0.4440615177154541, -0.39486491680145264, -0.16520267724990845, 1.237261176109314, 1.1847862005233765, 0.7878984212875366, -0.6555969715118408, 0.3608376979827881, -0.6661738753318787, -0.19457487761974335, -0.8436225056648254, -1.3875374794006348, -0.47864094376564026, -0.5062037110328674, -0.42451128363609314, 0.0011947827879339457, -0.1507614701986313, 0.21797019243240356, -0.3386210501194, 0.26633864641189575, 1.5834771394729614, -0.6266242265701294, -0.9112092852592468, -0.5452261567115784, -0.2791019678115845, -0.5521489977836609, 0.3930237293243408, 0.9919561743736267, -0.7924339175224304, 0.17746689915657043, -0.032334621995687485, -0.5201061367988586, 0.5455291271209717, 0.02580714412033558, 0.6439666748046875, -0.7115560173988342, -0.700295090675354, -0.20819193124771118, 1.1750164031982422, 0.14489276707172394, -0.27957892417907715, -0.2427854984998703, 0.39593204855918884, 0.14242613315582275, 0.06957735866308212, -0.7798209190368652, 1.0827209949493408, -0.05642165616154671, -0.8426474928855896, -0.263663649559021, 0.3842943012714386, 0.2230464071035385, 0.19883054494857788, -0.6790328025817871, -0.420188844203949, -0.5028152465820312, -0.45776277780532837, 0.16610831022262573, 0.22611364722251892, 1.1032618284225464, -0.39656317234039307, 0.05170450732111931, 0.5935680866241455, 0.07592660933732986, -0.007148976903408766, -0.6739994883537292, 0.39213594794273376, 0.4821990132331848, 1.1846998929977417, 0.340563029050827, 0.025738302618265152, 0.2629505395889282, 0.6476413607597351, 0.12189171463251114, 0.44596657156944275, 0.9195007681846619, -0.9282143712043762, 0.07256536185741425, -0.4303100109100342, 0.034165158867836, -0.805759072303772, -0.6814628839492798, -0.056913506239652634, 0.2700594365596771, -0.814401388168335, -0.35453715920448303, 0.7056794762611389, 0.4747234582901001, -0.497875452041626, -0.2903204560279846, -0.07505383342504501, 0.8176716566085815, -0.7393743991851807, -0.17013342678546906, -0.2977040708065033, 0.4476276934146881, 0.5161526203155518, -1.162629246711731, -0.1501840502023697, 0.27489733695983887, 0.5623542666435242, 1.2152187824249268, -1.115877628326416, 0.48488470911979675, -0.5980656743049622, 0.3901216983795166, 0.2331290990114212, -0.1362052708864212, 0.5018176436424255, 0.15961509943008423, 0.3189760744571686, 0.018314247950911522, 0.05712315812706947, 1.4311901330947876, 0.11690220981836319, 0.14035287499427795, -0.10669397562742233, 0.8914021253585815, -0.5219104886054993, -0.786168098449707, -0.37730324268341064, 0.39227989315986633, -0.632092297077179, -0.4606952965259552, 0.32780921459198, -0.07452789694070816, 1.1879183053970337, 0.784673273563385, 0.29396697878837585, 0.24579742550849915, -0.05354286730289459, -0.5389156341552734, 0.04935133084654808, 0.30007004737854004, -0.010990816168487072, -0.16603276133537292, -0.0659225583076477, 0.6433892846107483, -0.2522028386592865, 0.6890368461608887, 0.40833500027656555, 1.034483790397644, 0.23887406289577484, -0.06665133684873581, -0.2740463614463806, 0.6866297721862793, 0.9711664915084839, 1.5602811574935913, 0.28037697076797485, 0.12166925519704819, -1.1871223449707031, 0.3459859788417816, -0.3354529142379761, -0.27984315156936646, 0.42641547322273254, 0.0007972493767738342, 1.5519205331802368, -1.4436099529266357, -0.06609170138835907, 0.19420666992664337, 0.426372766494751, -0.007847925648093224, 0.8500118851661682, -0.5812446475028992, -0.009761905297636986, 0.24376994371414185, -0.2583059072494507, 0.11976943910121918, -0.1695394217967987, 0.4953271150588989, -0.006542072165757418, 0.899644672870636, -0.5956284403800964, 0.5989153981208801, -0.7064102292060852, -0.7776830196380615, -0.3503226339817047, -0.8314910531044006, -0.2551209330558777, 0.13207587599754333, 0.6712126135826111, 1.7050362825393677, 0.15192465484142303, -0.5661252737045288, -0.046907585114240646, -0.4371681809425354, 0.3734215497970581, -0.2933844029903412, -0.3698378801345825, -0.5460379719734192, -0.1483805924654007, -0.16807305812835693, 0.3549923896789551, -0.17826628684997559, -0.038002029061317444, -0.7022074460983276, -1.3568195104599, 0.0945175513625145, 0.541555643081665, 0.3482082784175873, 0.8169766068458557, -0.009113557636737823, 0.1104743555188179, 0.27979639172554016, -0.4709312319755554, 0.11178740113973618, 0.037421099841594696, 0.3980160355567932, 0.23010459542274475, -1.4839030504226685, -0.5529663562774658, 0.2730030417442322, -0.1448298990726471, -0.02675006352365017, 0.7810764908790588, 1.17344331741333, 0.5211297273635864, -0.43377721309661865, 0.05139917507767677, 0.157226100564003, -0.21263860166072845, 0.9126852750778198, 0.7221047282218933, -0.1824726015329361, -0.4442261755466461, -1.2360830307006836, -1.4802486896514893, 0.9627384543418884, -0.0503135584294796, -0.7547140121459961, 1.5778591632843018, 0.3826814293861389, 0.7041429281234741, 0.059035610407590866, -0.5454168319702148, 0.09911453723907471, -0.16825202107429504, -0.3171272873878479, -1.2789864540100098, 0.7871647477149963, 0.6732358336448669, 0.6803474426269531, 0.3232208788394928, -0.04241809993982315, -0.1417820155620575, 0.18872897326946259, 0.22673490643501282, 1.4284907579421997, -0.6459603309631348, 0.17955735325813293, 0.2099779099225998, -0.19693250954151154, 0.7140327095985413, -0.13310199975967407, -0.5079852938652039, 0.20753540098667145, 0.7829439043998718, 0.19649384915828705, -0.09520062059164047, 0.020465858280658722, -0.07354031503200531, -0.5629777908325195, -0.5730356574058533, -0.008313235826790333, 0.9729868769645691, 0.4762756824493408, 0.26434651017189026, 0.07747100293636322, -0.21043069660663605, -0.05286724865436554, -0.7495898604393005, 0.7623738646507263, 0.48087000846862793, -0.3983779847621918, 0.04682216793298721, 0.28018367290496826, -1.2079927921295166, -0.956291139125824, -0.4400613307952881, 0.3382505178451538, -0.8432482481002808, -1.6533350944519043, -0.7899289727210999, -0.18905717134475708, 0.4076089859008789, -0.8869134783744812, 0.5575443506240845, -0.3039718270301819, -1.2662150859832764, 0.17525705695152283, 0.3412703275680542, -0.7745327353477478, 0.25894466042518616, -0.7881542444229126, -0.07343726605176926, -0.582925021648407, 0.4494935870170593, -1.154579758644104, 0.7011473774909973, -1.5639370679855347, -1.209478497505188, -1.3315622806549072, 0.3009575605392456, 0.9644855260848999, 0.24853752553462982, -0.603799045085907, 1.5124434232711792, 0.4970555305480957, -0.3313324749469757, -0.5359607934951782, -0.07630682736635208, -0.028725825250148773, -0.049069248139858246, 0.5036378502845764, 0.5058780908584595, 0.7643629908561707, 0.9561337232589722, 0.02290951833128929, 1.0171328783035278, 0.6137397885322571, 0.4236975312232971, -0.40602901577949524, -0.5689487457275391, -0.22009781002998352, 1.0317974090576172, -0.3788023591041565, -0.22809530794620514, -0.005665362812578678, 0.20288333296775818, -0.8250561952590942, -0.39988139271736145, 0.3749147057533264, -0.9875345826148987, 0.5371367931365967, -0.21998843550682068, 0.23491516709327698, -0.4753800928592682, 0.29041752219200134, 0.19153590500354767, -0.5797234773635864, -0.08984237164258957, 0.4234268367290497, -0.22405946254730225, -1.3050442934036255, 0.2641696035861969, -0.068532295525074, -0.4825526773929596, -0.5252108573913574, 0.69163578748703, 1.0657672882080078, 0.6850220561027527, -0.31418755650520325, 1.4720808267593384, 0.2971321940422058, -0.10289453715085983, 0.48548629879951477, 0.06141261011362076, -0.5435647964477539, 0.8803815245628357, -0.23146329820156097, 0.27490660548210144, -0.5240135788917542, 1.1990222930908203, 0.04451162740588188, -0.3140391409397125, 0.23535549640655518, -0.4521178901195526, -0.586578369140625, 0.40201640129089355, 0.8359195590019226, -0.49010318517684937, 0.1099119484424591, 1.2552212476730347, 0.4591604173183441, -0.5713229179382324, -0.01857384853065014, 0.3559000790119171, 0.24861939251422882, -0.5482276082038879, 0.05959112569689751, 0.11492806673049927, -0.14746426045894623, 0.25786370038986206, 0.030681656673550606, 0.4766919016838074, 0.03862164914608002, -0.6765028238296509, -0.5003224015235901, 0.4769383370876312, -0.23033829033374786, -0.16030949354171753, 0.9297885894775391, -1.4735727310180664, -1.5149717330932617, -0.059455808252096176, -0.17277157306671143, -0.9472618103027344, 0.03652218356728554, 0.2705731987953186, 0.2766996920108795, -0.056037258356809616, 0.1315620094537735, -0.2042907029390335, 0.6589800119400024, -0.4798089563846588, 0.0008546656463295221, -0.8244852423667908, -0.04400472342967987, 0.4252419173717499, -0.12755712866783142, 0.11985479295253754, -0.05924917757511139, 0.9121265411376953, -0.6326045393943787, -1.0219203233718872, 0.12600135803222656, 0.48942136764526367, 0.2101403772830963, -0.10820960253477097, -0.33569401502609253, 0.47620218992233276, 0.2910959720611572, 1.1463223695755005, 0.08540832251310349, -0.78431636095047, -0.27181369066238403, 0.0510016530752182, -0.745074450969696, 0.39212432503700256, 0.1665053516626358, 0.969519853591919, 0.037735551595687866, -0.7022641897201538, -0.14481109380722046, -0.8308229446411133, 0.14256593585014343, 0.027490921318531036, 0.7139250636100769, 0.31132349371910095, 0.252475380897522, -0.5751078724861145, -0.8133230805397034, 0.5854179263114929, -0.11841470003128052, -0.09868607670068741, 0.6767048835754395, -1.1706165075302124, -0.29765743017196655, -0.6304798722267151, 0.5181435942649841, 0.1957024186849594, 0.11538869142532349, 0.33610260486602783, 0.38973450660705566, -1.2774853706359863, 0.15412206947803497, -0.1340494602918625, 0.34593451023101807, 0.29403698444366455, 0.9381818771362305, 1.4173431396484375, -0.3338657021522522, -0.14365838468074799, -1.0862294435501099, 0.5403627753257751, -1.0351552963256836, -0.7743296027183533, -0.2702978253364563, -0.5534835457801819, -0.5149996876716614], [-0.045734189450740814, 1.973210096359253, -2.3380050659179688, -0.06851980090141296, 1.685662031173706, -0.041059378534555435, 1.5846529006958008, -0.5424102544784546, 0.036545008420944214, -0.11784650385379791, -0.326547771692276, 0.2893584370613098, 0.8392630219459534, 0.5915980935096741, 0.16547255218029022, 0.3006511926651001, 0.8729923963546753, -1.226478934288025, 0.9843547344207764, 0.7456123232841492, -0.7301616072654724, -0.6060819625854492, 0.4407830834388733, 0.5941635966300964, -0.23886878788471222, -0.12158456444740295, -1.2482609748840332, -0.6641556024551392, -0.21449148654937744, -0.8953236937522888, 0.2564738690853119, -0.42820754647254944, 0.4211195409297943, 0.5750574469566345, -0.8722456097602844, -0.4749641716480255, 1.9054549932479858, 1.1758806705474854, -0.1162257269024849, 1.0901304483413696, 2.403409242630005, -0.5381776690483093, 0.18795941770076752, -1.514124870300293, 0.24797776341438293, -0.03260432183742523, 0.3240300416946411, -1.2681554555892944, 0.7778633236885071, -0.5276839733123779, 0.7789208292961121, -0.5657642483711243, 0.6909233331680298, 1.1614915132522583, 0.9492584466934204, 0.051768168807029724, 0.8594602346420288, 0.2567775845527649, 0.7446116209030151, -0.6257930397987366, 1.3984105587005615, -0.4763830602169037, -0.17802228033542633, 0.9214345216751099, -0.13330838084220886, -0.8805791735649109, 0.3383125960826874, 0.5500484108924866, -0.3383011519908905, 0.22297993302345276, 0.04555300995707512, 0.13251027464866638, -0.45758768916130066, 0.45040157437324524, -1.4395853281021118, 0.8904860615730286, 0.5265088081359863, 0.9305819869041443, 0.3634336590766907, 0.7156206965446472, -0.24419444799423218, -0.4839467406272888, 0.5914358496665955, -0.21502400934696198, 0.13599471747875214, 0.24532152712345123, 0.029018787667155266, -0.5601958632469177, -0.46035972237586975, 1.4975372552871704, 0.4588198661804199, -0.24354052543640137, 0.9131794571876526, -0.33358389139175415, 0.09038896858692169, 0.2230233997106552, 0.7642555236816406, -0.2322937250137329, -0.4131145477294922, -0.5828074216842651, -0.47789764404296875, -0.8108035922050476, 0.4408144950866699, -0.050387028604745865, -0.13594117760658264, 1.2531908750534058, 0.027261609211564064, 0.08377441763877869, -0.6098490357398987, 0.04115414246916771, 0.12414366006851196, 0.20483438670635223, -1.1331448554992676, -1.3431388139724731, -0.9655616879463196, 1.0638854503631592, 0.970472514629364, 0.17221233248710632, 0.29957833886146545, 0.5954526662826538, -0.46097517013549805, 0.0991169884800911, -0.15751607716083527, 0.9204590320587158, 0.5110408663749695, 1.0518465042114258, -0.8309271335601807, -0.5158624053001404, -0.5479875802993774, -0.34976866841316223, 0.41454920172691345, -0.504006564617157, -0.6505630016326904, 0.8341273665428162, -1.0822784900665283, 1.3611167669296265, -0.504782497882843, -0.22363314032554626, 0.44990748167037964, -0.7958789467811584, 0.47804269194602966, 0.004664265550673008, -0.29478153586387634, -0.3661898672580719, 0.17262104153633118, -0.5536617040634155, 0.23514039814472198, -0.2787959575653076, -0.40969255566596985, 0.24137364327907562, -1.2017130851745605, 0.590587317943573, 0.10646216571331024, 0.3028254210948944, 0.36427271366119385, 0.05128950625658035, 0.23287717998027802, 0.41738706827163696, 0.22964955866336823, 0.524294912815094, 1.0168019533157349, -0.3686748743057251, -0.6471880078315735, 0.585322916507721, 0.23333989083766937, -0.13741756975650787, 0.6377033591270447, 0.9084038734436035, 0.37233424186706543, 0.2888079881668091, -0.5539584755897522, -0.27333515882492065, -0.4937104880809784, 0.06276734918355942, 0.7847281098365784, -0.5581972002983093, 1.345738172531128, -0.7792993783950806, -1.4021658897399902, -1.5087707042694092, 0.27515918016433716, -0.6463898420333862, 0.5042845010757446, 0.0766114667057991, 0.45948275923728943, -0.6939687728881836, 0.16863521933555603, -0.7075966596603394, -0.5852858424186707, -0.8608314394950867, -0.39710909128189087, -0.6570900678634644, -0.4695205092430115, 0.2925868034362793, -0.5756613612174988, -0.6292785406112671, 0.7087513208389282, -1.5343059301376343, -1.0506255626678467, 0.05338482931256294, -0.4877200126647949, -0.6184313893318176, -1.0662884712219238, 0.4278026223182678, -0.5157854557037354, 1.6063166856765747, -1.2676533460617065, 0.8570241928100586, -0.8664314150810242, 0.3128094971179962, 0.4111945629119873, -0.6660261750221252, -0.576166033744812, 1.2107118368148804, -0.21288301050662994, -1.2003629207611084, 0.6465352773666382, 0.8089332580566406, -0.5532470941543579, 0.6005447506904602, -0.07096675038337708, 0.3481960594654083, -0.055689673870801926, 0.2823253273963928, -0.4155685305595398, -0.06458666175603867, -1.0559262037277222, -0.7254241704940796, -0.4566616415977478, 0.32219672203063965, -0.5754408240318298, -1.739046573638916, 0.6234659552574158, 0.24683400988578796, -0.6795750260353088, 0.23490260541439056, 0.4846254885196686, 0.40689143538475037, 0.16792747378349304, 1.2265113592147827, 0.3094407916069031, 0.3082352578639984, -0.4083559513092041, -0.2303587645292282, -0.5629536509513855, 0.35773685574531555, 0.011269938200712204, 0.7636618614196777, 0.42018213868141174, 0.9761382341384888, 0.8018383979797363, 0.03384187072515488, 0.43495944142341614, -0.3105071783065796, -0.05845092982053757, -0.8487693667411804, -0.663015604019165, 0.7039718627929688, -0.1832704097032547, 1.633729100227356, 0.9796969294548035, -1.2148762941360474, 0.16035035252571106, -0.21189206838607788, -0.00550941564142704, -0.611241340637207, -1.3431538343429565, -0.5282386541366577, -0.2621082365512848, 0.3561531603336334, 0.0293545201420784, 0.9925547242164612, -0.32966625690460205, 0.3954932391643524, -0.8246666193008423, -0.42498746514320374, -0.25575223565101624, 0.1992884874343872, 0.24969114363193512, 0.3646491765975952, 0.12551388144493103, -1.8398215770721436, -0.5863611102104187, 0.23399820923805237, 0.6333214640617371, 0.7280474901199341, -0.27735283970832825, -0.14392556250095367, 0.4441424608230591, -0.14735929667949677, 0.7334831953048706, -0.16102592647075653, 0.017855750396847725, 0.5093638896942139, -0.2769491672515869, 0.8218618631362915, 0.6595870852470398, -1.4680453538894653, -0.4629896283149719, -0.06990791857242584, 0.26471731066703796, 1.092903733253479, 0.6480296850204468, 0.8462307453155518, 0.2753435969352722, 0.27420637011528015, -0.4766184687614441, -0.4774094223976135, -0.789854109287262, -0.10990172624588013, -1.7634756565093994, -0.9796944260597229, -0.19344285130500793, -0.18010231852531433, 0.491892546415329, 0.2036972939968109, -0.6626198291778564, 0.5399550199508667, 0.6745878458023071, -0.1998380869626999, -0.44426316022872925, -0.21874022483825684, 0.05854742228984833, -0.5993684530258179, 0.2377021312713623, 1.3415662050247192, -1.3924415111541748, 0.12000877410173416, 0.24241386353969574, 0.0002499902620911598, 0.34842589497566223, 0.09825889021158218, 0.24289976060390472, -1.698722004890442, -0.6995736360549927, 0.22062404453754425, 1.8811646699905396, -0.29335537552833557, -0.45623350143432617, -0.4724636375904083, 0.17980161309242249, 0.5726551413536072, -0.6821096539497375, -0.5155072212219238, 0.4051741659641266, -0.22063393890857697, -0.7634550929069519, -0.31118056178092957, 0.6697339415550232, 0.22669263184070587, -0.048387136310338974, -0.36073970794677734, -0.27917781472206116, -0.054233960807323456, -0.047534894198179245, 0.5124882459640503, -0.20289379358291626, 0.9429647326469421, -0.554715096950531, -0.3546724021434784, 0.8553005456924438, 0.26060932874679565, 0.11844785511493683, -1.7489402294158936, 0.7651864290237427, 0.28931358456611633, 1.1421748399734497, 0.6702085137367249, 0.5558754801750183, 0.3225286602973938, 0.03478047251701355, 0.3176485598087311, 0.5114826560020447, 1.6849318742752075, -0.01832091063261032, 0.00579992588609457, -0.9859957695007324, -0.5470398664474487, -0.13036669790744781, -0.31742337346076965, -0.37337809801101685, 0.586658239364624, -0.7792908549308777, -0.6716765761375427, 1.2270139455795288, 0.6768746376037598, -0.5475813150405884, -0.3765771985054016, 0.2710857689380646, 0.355255663394928, -0.12018036097288132, 0.33219078183174133, -0.7379289865493774, 0.0740589126944542, -0.14595720171928406, -1.1366660594940186, -0.004747554659843445, 0.25338509678840637, 0.4836181402206421, 0.6690091490745544, -1.0074187517166138, -0.06492101401090622, -0.5330713391304016, 0.7036038041114807, 0.17825031280517578, -0.21761099994182587, -0.06549593806266785, 0.44540759921073914, -0.003376491367816925, -0.19630886614322662, 0.12484172731637955, 1.6103951930999756, -0.6867865324020386, 0.2899472713470459, -0.40386325120925903, 0.20243896543979645, -0.5778307318687439, -0.5620378255844116, -0.5188577771186829, 0.14657852053642273, -0.5425090789794922, 0.2857562005519867, 0.11814191937446594, -0.0817919597029686, 1.3904467821121216, 0.16558682918548584, 0.4864744544029236, 0.4661644697189331, -0.11072954535484314, -1.354198694229126, 0.45822805166244507, -0.46560734510421753, 0.42980197072029114, -0.6677753329277039, -0.19058847427368164, 0.23754478991031647, -0.6457752585411072, 0.4856581389904022, 0.4975243806838989, 0.6758514046669006, -0.1375041902065277, 0.44245582818984985, -0.3887556195259094, 0.18721209466457367, 0.5317484140396118, 1.2560057640075684, 0.1635703146457672, 0.12179884314537048, -1.2291191816329956, 0.9346114993095398, -1.7795825004577637, -0.414294958114624, 0.5630106925964355, -0.41235366463661194, 1.3569008111953735, -2.1519505977630615, -0.09933339804410934, 0.3741782009601593, 0.5664430260658264, 0.5423996448516846, 0.5792253017425537, -0.4759177267551422, 0.04000374302268028, 0.5619926452636719, 1.1700031757354736, -0.34778714179992676, 0.15321536362171173, 0.20986294746398926, 0.21669116616249084, -0.16895045340061188, -0.9845268726348877, 0.6638368368148804, -0.023127784952521324, -0.40635454654693604, -0.26313671469688416, -0.3457283675670624, 0.4872536063194275, 0.41318997740745544, 0.280741810798645, 0.7879106402397156, -0.012819281779229641, -0.3852841258049011, -0.020412571728229523, -0.6672632694244385, 0.5585972666740417, -0.9032011032104492, -0.026906555518507957, -0.48777082562446594, -0.6056460738182068, -0.41961172223091125, 0.5180896520614624, -0.24456378817558289, -0.7627548575401306, -0.6355171799659729, -1.735273838043213, 0.26063060760498047, 0.8151550889015198, 1.8106437921524048, 1.5446900129318237, 0.23387300968170166, 0.5662147402763367, 0.15150335431098938, -0.8873248100280762, -0.1195860505104065, 0.22713252902030945, -0.3177620470523834, -0.35188373923301697, -1.2886860370635986, -0.6486531496047974, -0.0994587242603302, 0.3344726264476776, -0.010940102860331535, 0.43063127994537354, 1.663573145866394, 1.976130485534668, -0.25897809863090515, -0.6124382615089417, 0.8152161240577698, -0.11548765748739243, 0.36986902356147766, 0.7949056029319763, -0.4793893098831177, -0.3592374622821808, -0.3950507938861847, -1.7048799991607666, 1.0527079105377197, -0.3736308217048645, -0.2270503044128418, 0.8357532024383545, -0.08456135541200638, 0.6929114460945129, 0.03772744908928871, -0.841755211353302, 0.2766263782978058, 0.3916795551776886, -0.2868190407752991, -1.065787672996521, 0.29610443115234375, -0.19408220052719116, 0.10171865671873093, -0.1934799998998642, -0.3567083775997162, 0.1715860664844513, -0.2627708315849304, 1.2952359914779663, 0.20671381056308746, 0.06903572380542755, 0.15908074378967285, 0.6146306395530701, -0.25306573510169983, 0.38120701909065247, -0.8049615025520325, -1.0188343524932861, 0.26946210861206055, 0.5030074715614319, -0.4769776165485382, -0.2921667993068695, -0.36545801162719727, -0.3146558701992035, -0.7350218892097473, -0.7004100680351257, -0.18053001165390015, 1.024645209312439, 0.8339474201202393, 0.013290109112858772, -0.19373279809951782, -0.7823624014854431, -0.519521176815033, -0.05400686711072922, 0.5767443776130676, 0.2235981673002243, -1.1706018447875977, -0.4622529149055481, 0.36235740780830383, 0.2223694622516632, -0.24995474517345428, -0.5532286167144775, -0.058706749230623245, -1.078879952430725, -1.155035138130188, -0.7828230857849121, 0.08322074264287949, 0.6427872180938721, -1.0443978309631348, 0.7106062173843384, 0.78847736120224, -1.6797987222671509, 0.5941751003265381, -0.23502559959888458, -1.5058653354644775, 0.14328508079051971, -1.4251093864440918, 0.9980307221412659, 0.3771229386329651, 0.281629741191864, 0.11966574937105179, 1.1221836805343628, -1.2563090324401855, -0.8802024126052856, -0.26511356234550476, -0.29847386479377747, 1.0094022750854492, 0.8145914077758789, -0.3826755881309509, 1.236751675605774, 0.4391394555568695, -0.43068379163742065, -0.11136742681264877, -0.0925409197807312, -0.35062119364738464, -0.17263634502887726, 0.3878048360347748, 0.1311388462781906, 0.17195913195610046, 0.6638215184211731, 0.16960904002189636, 1.4904934167861938, 0.07818584144115448, 1.076110601425171, -1.0131330490112305, -0.8268534541130066, 0.19690395891666412, 0.38299262523651123, -1.3980529308319092, -0.7343553900718689, 0.13646464049816132, -1.002663016319275, -1.1780885457992554, 0.4447392225265503, 1.09787917137146, -0.5632938742637634, 0.11744862794876099, -0.9100742340087891, 0.14347237348556519, -1.064422845840454, -0.23983313143253326, 0.48296523094177246, -0.40292009711265564, -0.15417826175689697, 0.4302445352077484, -0.03097270429134369, -1.3413422107696533, -0.002866368740797043, 0.430145263671875, 0.2022397518157959, -0.9101374745368958, 0.9078759551048279, 1.047063946723938, 0.33336707949638367, 0.18650254607200623, 1.3684191703796387, 1.2139897346496582, -1.022101640701294, -0.45374777913093567, 0.5078133344650269, 0.04650009050965309, 0.5686226487159729, -0.15920117497444153, -0.32222890853881836, -0.8709314465522766, 1.4033397436141968, 0.47100937366485596, 0.3174349069595337, -0.4058331549167633, 0.22973722219467163, -0.9239116311073303, -0.566663384437561, 0.6595230102539062, -1.2410237789154053, 0.05827406048774719, 1.4497631788253784, 0.11606458574533463, -0.13911530375480652, 0.09998282045125961, 0.7934895753860474, -0.11885309964418411, -0.7034622430801392, 0.2538853585720062, 0.7480217814445496, -0.8017931580543518, 0.028180761262774467, 0.07775384187698364, -0.48402372002601624, -0.12014385312795639, -0.37041568756103516, -1.6695212125778198, -0.5505558252334595, -0.8781078457832336, -0.5940456986427307, 0.70173180103302, -0.8918391466140747, -0.7853103876113892, 0.42491328716278076, -0.4651930034160614, -0.2214507907629013, -0.2931238114833832, -0.14116445183753967, 0.3046823740005493, -0.5522137880325317, 0.9504786133766174, -0.7414887547492981, 1.5426154136657715, 0.21760399639606476, 0.17927035689353943, -1.0676040649414062, -0.4683705270290375, 0.3575136959552765, 0.3725254237651825, -0.5897698402404785, 0.39164721965789795, 0.5246980786323547, -0.2665809094905853, -0.6262968182563782, 0.090811587870121, 0.15652836859226227, -0.05599895864725113, 0.014706460759043694, -0.22904445230960846, 0.2247874140739441, 0.3268503248691559, 0.5689198970794678, -0.3232397735118866, -0.1455388069152832, -0.9729812145233154, -0.09224381297826767, -0.38457098603248596, 0.2895243465900421, -0.7472512125968933, 0.7079050540924072, 0.5154409408569336, -0.3628707826137543, -0.26999035477638245, -0.8602198362350464, 0.7366702556610107, -0.5085654258728027, 0.5019956231117249, 0.32664328813552856, -0.06942842155694962, 0.006728963926434517, -0.28406354784965515, 0.39964690804481506, 0.3911455571651459, -0.20967650413513184, 0.40313413739204407, -0.5279560685157776, -0.7741779088973999, -0.3596075773239136, 0.5947409272193909, 0.8971771001815796, 0.3801921308040619, 0.2431173324584961, 0.23302730917930603, -1.0792652368545532, 0.33934855461120605, 0.5032815337181091, 0.11641974747180939, -0.28125569224357605, 1.3161213397979736, 1.7331730127334595, 0.5607159733772278, 0.3306567072868347, -0.21869036555290222, 0.43036994338035583, -0.33348003029823303, -0.411428302526474, -0.3424827456474304, -0.3188007175922394, -0.0853436067700386], [-0.21176759898662567, 1.7454040050506592, -1.852150797843933, 0.29408684372901917, 1.22693932056427, 0.12759685516357422, 1.5155844688415527, -0.07578189671039581, 0.07550767809152603, -0.46705496311187744, -0.27101266384124756, 0.24488167464733124, 1.3793160915374756, 0.5201197266578674, 0.44408515095710754, 0.9920907616615295, 1.3922209739685059, -0.38954803347587585, 1.607386589050293, 1.4998565912246704, -0.13187530636787415, 0.33721649646759033, 0.8696784973144531, 0.20375625789165497, -0.687353789806366, -0.12502995133399963, -1.699073076248169, -0.3225939869880676, -0.33147987723350525, -0.7287774085998535, 0.4758415222167969, -0.5812675356864929, -0.3338245451450348, 0.5534590482711792, -0.8075121641159058, -0.1683400720357895, 1.4596830606460571, 1.2613635063171387, 0.4419764578342438, 0.7115722298622131, 1.1783814430236816, -0.9791733622550964, -0.018245887011289597, -1.0421110391616821, 0.35454294085502625, -0.26361775398254395, 1.036054015159607, -0.9048001766204834, 0.4204670190811157, -0.4551146626472473, 0.018953006714582443, 0.25444167852401733, 0.26879286766052246, 0.935947835445404, 0.4340727627277374, 0.34602266550064087, 0.3420649766921997, -0.5517120361328125, 0.9209346771240234, -0.43394985795021057, 1.1231986284255981, 0.16402439773082733, -0.33854058384895325, 0.6392004489898682, 0.43799442052841187, -0.20858459174633026, 0.440226286649704, -0.19830618798732758, 0.004884717520326376, -0.1472068727016449, 0.09431096911430359, 0.2657352387905121, -0.791856050491333, 0.7725721001625061, -0.8848063945770264, 0.9864604473114014, 0.5711775422096252, 0.5801142454147339, 0.08622673898935318, 0.9925285577774048, 0.1860465258359909, -0.2718488574028015, -0.061794232577085495, 0.4298231303691864, 0.7503314018249512, -0.38666895031929016, -0.2582281529903412, -1.4919012784957886, -0.8678377866744995, 1.4291709661483765, 0.7218635678291321, 0.15532401204109192, 0.5970233678817749, -0.6734753251075745, -0.04557902365922928, -0.5569730401039124, 0.8487860560417175, -0.0042847576551139355, -0.7948206663131714, 0.0759221762418747, -0.8710539937019348, -0.7100210785865784, -0.11305411159992218, 0.44997793436050415, 0.06299695372581482, 0.9407045841217041, -0.4139460325241089, -0.149496391415596, -0.3916739523410797, 0.19439223408699036, 0.10885946452617645, 0.15367157757282257, -0.9485301375389099, -1.0763566493988037, -0.5220628976821899, 1.1066745519638062, 0.9342422485351562, 0.10267571359872818, 0.9185505509376526, 0.8500603437423706, -0.31041353940963745, 0.26085343956947327, -0.5230218768119812, 0.8901081085205078, -0.3882303535938263, 1.296872615814209, -0.11666740477085114, -0.3499637544155121, -0.01742987334728241, 0.30319127440452576, 0.5172442197799683, -0.06944133341312408, -0.4129539728164673, 0.11567545682191849, -0.07633137702941895, 1.387634038925171, -0.4546806514263153, -0.4229981005191803, -0.6142016649246216, -0.21313464641571045, 0.9636157751083374, 0.39327818155288696, -0.05577261000871658, -0.5441706776618958, -0.5259854793548584, -0.19526736438274384, -0.8101539015769958, -0.1442084014415741, -0.2987484931945801, -0.2813466191291809, -0.9103747010231018, 0.6103171706199646, 0.1709108054637909, 0.16881869733333588, -0.31540581583976746, -0.04159274324774742, 0.2991509735584259, 0.39404889941215515, 0.25282010436058044, 0.3564462959766388, 0.8017663955688477, -0.7044554352760315, -0.3002651333808899, 1.0498238801956177, 0.21299485862255096, 0.21392548084259033, 0.5369732975959778, 0.23861759901046753, -0.1831366866827011, 0.7608654499053955, -0.030269337818026543, -0.486979216337204, -0.2164812535047531, -0.14940312504768372, 0.4230706989765167, -0.6391968131065369, 2.032912254333496, 0.10801156610250473, -1.3627628087997437, -1.3454694747924805, 0.2604961693286896, -1.3588857650756836, -0.2571530044078827, -0.1600203812122345, 0.26443544030189514, -1.0379748344421387, 0.8610240817070007, 0.14031505584716797, -0.42186397314071655, -1.0551469326019287, -0.2133757621049881, -0.48643043637275696, -0.9940766096115112, 0.8209035396575928, -0.291778564453125, -0.5005166530609131, 0.3783555328845978, -1.4781091213226318, -0.6793060898780823, -0.33575868606567383, -0.9393048882484436, -0.23067888617515564, -0.7332815527915955, 0.4529508352279663, -0.46604546904563904, 1.233210563659668, -0.8500709533691406, 1.4672244787216187, -0.3203600347042084, -0.363349586725235, 0.7899227142333984, -0.2789306342601776, -0.8539838790893555, 1.3360923528671265, -0.6612362861633301, -0.9282099008560181, 0.6858365535736084, 0.05412726104259491, -0.6265299916267395, -0.09017381817102432, 0.23323555290699005, -0.33948007225990295, 0.07818753272294998, 0.7991294860839844, -0.3366338312625885, 0.13528069853782654, -1.1885833740234375, -0.9211830496788025, -0.08702174574136734, 0.38646289706230164, -0.5822211503982544, -0.3979334235191345, 1.3340672254562378, 0.20333364605903625, -1.2831830978393555, 0.6371306777000427, -0.04379561170935631, 0.08290570974349976, 0.3918248116970062, 0.663476824760437, -0.0515575110912323, 0.023845864459872246, -0.3204944431781769, -0.179074227809906, -0.8185980319976807, 0.03718999773263931, 0.17084121704101562, 0.44216182827949524, 0.18324171006679535, 1.4003949165344238, 1.0950018167495728, 0.04607843980193138, 0.3006572723388672, 0.45221543312072754, -0.36485421657562256, -0.63257896900177, -0.7478790283203125, 0.3184582591056824, -0.6901330351829529, 0.9504193663597107, 0.6411731839179993, -0.6869288682937622, 0.23492254316806793, -0.18848004937171936, -0.47666725516319275, 0.05887853354215622, -1.2885440587997437, -0.588628351688385, 0.14876031875610352, -0.07977951318025589, -0.10921787470579147, 0.12293082475662231, 0.015183242969214916, 0.04079587757587433, -0.7899220585823059, -0.8245051503181458, -0.48562130331993103, 0.21520984172821045, 0.48026832938194275, -0.002041194122284651, 0.14273427426815033, -1.3230947256088257, -0.06504672765731812, 0.23274128139019012, 0.7266622185707092, -0.015985937789082527, -0.417056679725647, 0.6454372406005859, 0.26178833842277527, -0.3976263105869293, -0.17102965712547302, 0.3234424889087677, -0.058705925941467285, -0.1949974000453949, 0.05410318076610565, 0.8581857085227966, 0.737423837184906, -1.1118124723434448, -0.70931077003479, 0.1474643349647522, 0.6728362441062927, 0.9158787727355957, 0.02882339619100094, 0.821856677532196, -0.4365769624710083, -0.05059439688920975, -0.39348524808883667, -0.1978507936000824, -1.1299039125442505, -0.5773555636405945, -0.7507055997848511, -0.20499730110168457, -0.48290887475013733, -0.06590932607650757, 0.04990091547369957, 0.264869749546051, -0.7893159985542297, 0.7365094423294067, 1.2772862911224365, -0.16612255573272705, -0.408256471157074, -0.06524872779846191, -0.323309063911438, -0.23090091347694397, 0.554058849811554, 0.5476204752922058, -1.1323535442352295, -0.8155184984207153, 0.046114057302474976, -0.008359587751328945, 0.12885776162147522, 0.15681609511375427, -0.801913857460022, -1.5979825258255005, -0.9259964823722839, 0.4885578751564026, 1.2722797393798828, -0.4640030562877655, -0.07346639037132263, -0.17583829164505005, 0.11073856055736542, 0.48386844992637634, -0.8653680682182312, -0.6156033277511597, -0.2521950304508209, -0.14579050242900848, -0.34181681275367737, 0.36482033133506775, 0.6841451525688171, 0.6878385543823242, -0.19436094164848328, -0.8782192468643188, -0.33988237380981445, -0.3822338283061981, -0.10955149680376053, 0.4737812876701355, 0.014035196043550968, 0.9665767550468445, -0.5202071666717529, -0.1011643186211586, 0.3579007387161255, -0.3657951056957245, 0.1484430879354477, -0.8697350025177002, 0.2899613082408905, 0.28676143288612366, 0.7677309513092041, 0.28193971514701843, -0.011951970867812634, 0.0930873230099678, 0.20795036852359772, 0.5113062262535095, 0.13586585223674774, 0.9857454895973206, 0.35193225741386414, 0.22911947965621948, -0.8985804915428162, 0.3015667796134949, -0.603926420211792, -0.3602803647518158, -0.33756595849990845, 0.9103890061378479, -0.2785329818725586, -0.9062267541885376, 1.0057514905929565, 0.41977450251579285, -0.3216454088687897, -0.4282192289829254, 0.42528554797172546, 0.7272981405258179, -0.495626300573349, 0.6519715785980225, -1.0209784507751465, -0.4161856472492218, 0.10427601635456085, -1.3779828548431396, -0.10695644468069077, 0.06200810894370079, 0.5862390398979187, 0.6456782221794128, -0.9023867249488831, 0.4209590256214142, -0.5233754515647888, 0.6921228170394897, 0.4545285403728485, -0.017399171367287636, 0.24582539498806, 0.42996498942375183, -0.0979369655251503, -0.27151280641555786, 0.4174875020980835, 1.0165544748306274, -0.12070740014314651, 0.4765758514404297, -0.29797735810279846, -0.006292036734521389, -0.455268532037735, -0.785252571105957, -0.6238805651664734, -0.2552248537540436, -0.10912349075078964, 0.143917515873909, 0.6237526535987854, 0.0414181724190712, 1.7054815292358398, 0.5164457559585571, 0.17446163296699524, 0.3570674657821655, -0.42937538027763367, -0.5127516984939575, -0.10068171471357346, 0.559554398059845, -0.19099090993404388, -0.35323476791381836, -0.08275828510522842, 0.49641260504722595, -0.558544397354126, 0.3617027997970581, 0.5288843512535095, 1.0786056518554688, 0.11851327866315842, 0.6489614844322205, -0.14637799561023712, 0.5367379188537598, 0.3631742000579834, 1.031378149986267, 0.1300470232963562, -0.3122554421424866, -0.572969913482666, 0.8439915776252747, -0.7020121812820435, -0.4440479278564453, 0.30067577958106995, -0.37052953243255615, 1.7377641201019287, -1.1800121068954468, -0.43220293521881104, -0.13598401844501495, 0.6277962923049927, 0.42061159014701843, 0.4471990168094635, -0.32227063179016113, -0.4070606231689453, 0.8749839663505554, 0.9226097464561462, -0.3702620565891266, 0.04311862215399742, -0.016732653602957726, -0.37851858139038086, 0.34016281366348267, -0.6892860531806946, 0.6366693377494812, -0.8129868507385254, -0.06581123918294907, -0.10436151921749115, -0.4777531027793884, -0.2336849719285965, 0.21618971228599548, -0.09581155329942703, 0.7953349351882935, -0.31151506304740906, -0.7090131640434265, -0.05275784805417061, -0.8844873309135437, 0.6114627122879028, -1.4112333059310913, -0.8053104281425476, -0.48239007592201233, -0.9050261378288269, -0.12474725395441055, 0.6853181719779968, -0.41023147106170654, -0.40745553374290466, -1.0226212739944458, -0.5400206446647644, 0.07164481282234192, 1.270911455154419, 1.501171350479126, 1.182599663734436, 0.1133953109383583, 0.5007099509239197, 0.19286492466926575, -0.659608006477356, 0.05600335821509361, 0.7084164023399353, 0.27437329292297363, 0.007540332153439522, -1.624307632446289, -0.6791809797286987, 0.22596223652362823, 0.30171096324920654, 0.2388300895690918, 0.0011689793318510056, 0.6388620138168335, 0.9132529497146606, 0.45484647154808044, -0.36143767833709717, 0.9431774020195007, -0.659213662147522, 0.4938371777534485, 0.6789241433143616, -0.90791916847229, -0.6341724395751953, -0.7061030864715576, -1.0857315063476562, 0.9116244316101074, -0.7574400305747986, -0.5540045499801636, 0.926234781742096, 0.6511874794960022, 0.8984230756759644, 0.5005866289138794, 0.22702012956142426, 0.6841138005256653, 0.3177858293056488, 0.08716464042663574, -0.8317591547966003, 0.13618525862693787, 0.01702294498682022, -0.0010867798700928688, -0.5779598355293274, -0.5344849228858948, 0.40140870213508606, -0.6543787717819214, 0.21556302905082703, 0.019324325025081635, 0.9174910187721252, 0.6104840040206909, 0.5568941831588745, -0.8400741815567017, -0.23556677997112274, -0.8385944962501526, -0.8593830466270447, -0.09199604392051697, -0.20859143137931824, -0.4287625551223755, -0.21688112616539001, -0.501596212387085, 0.27972838282585144, -1.0726195573806763, -0.2134731560945511, -0.07411254197359085, 0.6005789637565613, 0.5723702311515808, 0.16408899426460266, -0.6042078137397766, -0.2743440568447113, -0.38780781626701355, 0.046874962747097015, 0.06006839498877525, 0.45453235507011414, -1.074791431427002, -0.47223949432373047, 0.351606160402298, -0.3106226325035095, -0.17593146860599518, 0.12477938830852509, 0.34162652492523193, -1.5129536390304565, -0.689433217048645, -0.42655283212661743, 0.6992748379707336, 0.2769502103328705, -0.9672704339027405, 0.36548474431037903, 0.7240036129951477, -2.192854642868042, -0.11548007279634476, -0.3862415850162506, -1.3634968996047974, -0.4526209831237793, -0.9682694673538208, 0.6058087944984436, -0.09187526255846024, 0.00606515072286129, -0.30340322852134705, 0.8138567209243774, -1.202085256576538, -1.3704618215560913, -0.11690066754817963, 0.05362941324710846, 0.6518707275390625, 0.7088884711265564, 0.03942335769534111, 1.1671473979949951, 0.09038993716239929, -0.5935049653053284, -0.4851960241794586, 0.7007287740707397, -0.269808292388916, -0.07101670652627945, 0.7005348801612854, 0.959057092666626, -0.18178778886795044, 0.8880823254585266, -0.024668266996741295, 1.2640994787216187, 0.05847261846065521, 0.9563080072402954, -1.1266242265701294, -0.5093504190444946, 0.7220296859741211, 0.11945171654224396, -1.2932239770889282, -0.8994346261024475, -0.7690085172653198, -0.9793537259101868, -0.5736066699028015, -0.13696445524692535, 0.9008158445358276, -0.7402339577674866, 0.006859575863927603, -0.6119612455368042, 0.5283434391021729, -0.5841097831726074, -0.4164167642593384, 0.18148748576641083, -0.30230003595352173, 0.0775633156299591, 0.18117566406726837, -0.24505944550037384, -1.1340303421020508, -0.0792895033955574, 0.3498297333717346, 0.3626263737678528, -1.0167491436004639, 0.3340555727481842, 0.5791869163513184, 0.1917138397693634, -0.19329586625099182, 1.8324885368347168, 0.6412150859832764, 0.24406452476978302, -0.10232547670602798, 0.32990461587905884, 0.17421899735927582, 0.32466498017311096, -0.4797214865684509, -0.45652997493743896, -0.44222503900527954, 0.7169833779335022, 0.06682001054286957, 0.3022899627685547, -0.04616648331284523, -0.015465624630451202, 0.03640733286738396, 0.5113282799720764, 0.1739514172077179, -0.388346791267395, 0.08066325634717941, 0.9059361219406128, 0.2756218910217285, -0.19320307672023773, 0.2518850564956665, 0.14345283806324005, 0.3245471119880676, -1.1253130435943604, 0.6403112411499023, 1.1689482927322388, -0.4558141529560089, -0.02696739137172699, 0.2803467810153961, -0.37333935499191284, -0.032507508993148804, -0.7051538825035095, -1.6642634868621826, -0.051338791847229004, -0.5934545397758484, -0.8271725177764893, 0.8050884008407593, -1.1989084482192993, -0.17734627425670624, 0.41024383902549744, -0.15153475105762482, -0.5999923944473267, -0.1756274700164795, 0.39319154620170593, -0.39077579975128174, 0.15192051231861115, 1.7882524728775024, -0.557898223400116, 1.1661598682403564, 0.5242525935173035, -0.5709050297737122, -0.6298108696937561, -0.7600371241569519, 0.24318145215511322, 0.39843207597732544, -0.4376111626625061, 0.5112823247909546, 0.5821812748908997, 0.3480255901813507, -0.4732561707496643, 0.0170130655169487, 0.11382000148296356, 0.7185865044593811, -0.1720631867647171, 0.09550658613443375, 0.23798877000808716, 0.43951740860939026, 0.19218406081199646, -0.23700614273548126, -0.4837668538093567, -0.7984064221382141, -0.7682109475135803, -0.5803959965705872, 0.07438381016254425, -0.7986626029014587, 0.7706854343414307, 0.04619418829679489, -0.06785981357097626, -0.31210580468177795, -1.1158181428909302, 0.2169841080904007, -0.46020591259002686, -0.3040812611579895, 0.21226677298545837, -0.24572241306304932, 0.20680299401283264, -0.08782288432121277, 0.2112627774477005, 0.5872811079025269, -0.3116539716720581, 0.4487013518810272, -0.5105649828910828, -0.7698107361793518, -0.1233685091137886, 0.5572068095207214, 1.2255135774612427, 0.6443554162979126, 0.26668164134025574, 0.29413801431655884, -0.5124174952507019, -0.13491258025169373, -0.029093919321894646, 0.5795459151268005, 0.04784565418958664, 1.9031400680541992, 1.4253015518188477, -0.07360176742076874, 0.7177276611328125, -0.4836595356464386, 0.4036756157875061, -0.9216974377632141, -0.9389173984527588, -0.7754325270652771, -0.05239550396800041, 0.36183255910873413], [0.017132896929979324, 1.7569489479064941, -2.430774211883545, -0.0656902939081192, 0.5319631099700928, 0.9374734163284302, 1.5745136737823486, -0.5422489047050476, -0.25468361377716064, -0.22378379106521606, -0.4627592861652374, -0.5195468664169312, 0.4779376983642578, 0.6122925877571106, 0.09918542951345444, 0.9269033670425415, 1.5561224222183228, -0.5060100555419922, 0.6228805780410767, 1.332384705543518, -0.5208743214607239, -0.6112556457519531, -0.019964659586548805, -0.04307333007454872, -0.8920717239379883, 0.10049593448638916, -1.5829851627349854, -0.254422128200531, -0.8014503717422485, -0.8968876600265503, 0.6734462380409241, -0.4836244285106659, 0.1132056713104248, -0.117610402405262, -1.3719332218170166, -0.27725183963775635, 1.4663617610931396, 1.4480220079421997, 0.8269662261009216, 0.23430736362934113, 1.3480627536773682, -0.49398934841156006, -0.09696149080991745, -1.3745547533035278, 0.0977751761674881, -0.13495324552059174, 0.5036324858665466, -0.7011022567749023, 0.4796210825443268, -0.4381943345069885, 0.4229748547077179, -0.8933122158050537, 1.0427919626235962, 0.9814057350158691, 0.9429250359535217, 0.19798043370246887, 0.2949100732803345, -0.18583177030086517, 0.9372952580451965, -0.6340799927711487, 0.9509842395782471, -0.4799608290195465, -0.01798730529844761, 0.6815280914306641, 0.6454799175262451, -0.4179497957229614, -0.08028819411993027, 0.3506825864315033, 0.21475839614868164, -0.10572197288274765, 0.5837019085884094, -0.07242419570684433, -0.47307828068733215, 0.7278109192848206, -1.8517978191375732, 0.838746964931488, 0.43886396288871765, 0.7069138884544373, 0.11540450900793076, 0.4113767743110657, -0.20670554041862488, -0.32201695442199707, 0.07882294058799744, -0.14736470580101013, 0.3737356662750244, 0.2793503701686859, 0.491672158241272, -0.45634764432907104, -0.9533072710037231, 2.022388219833374, 0.45905616879463196, 0.22798044979572296, 0.7838608026504517, -0.35305866599082947, -0.41869187355041504, -0.32208701968193054, 0.3867711126804352, 0.37157124280929565, -1.1898053884506226, -0.8312129378318787, -0.27051082253456116, -0.19641421735286713, -0.20910944044589996, -0.5704487562179565, -0.2550680935382843, 1.0755232572555542, 0.5872238874435425, 0.12063495069742203, -0.6439166069030762, -0.2810792326927185, -0.31424203515052795, 0.42786458134651184, -0.7572592496871948, -1.317543625831604, -0.6860451698303223, 0.9300066232681274, 1.224992275238037, -0.12098819762468338, 0.574377715587616, 0.7764203548431396, 0.22489286959171295, 0.12190251052379608, -0.08208266645669937, 0.629899799823761, -0.2854796350002289, 0.6195276379585266, -1.2784030437469482, -0.39466914534568787, 0.4047856032848358, -0.3390343487262726, 0.7430307269096375, -0.0511423796415329, -0.39106741547584534, 0.5896660089492798, -0.9258206486701965, 1.5153380632400513, -0.7682002186775208, -0.2549498379230499, -0.44746991991996765, -0.7493818402290344, 0.40162280201911926, -0.3806309998035431, -0.31902411580085754, -0.31223201751708984, 0.2899617850780487, -0.6534043550491333, 0.15232370793819427, -0.14138878881931305, -0.6512755751609802, 0.1377263367176056, -0.33220404386520386, 0.32547712326049805, 0.9269766807556152, 0.3994559049606323, 0.11564694344997406, 0.25417405366897583, 0.74393630027771, 0.7772578597068787, 0.34446343779563904, 0.5443311333656311, 0.7078580856323242, -0.17119650542736053, -0.7575345039367676, 0.34956344962120056, 0.28193697333335876, -0.26470234990119934, 0.05686081200838089, 0.7636126279830933, 0.386584609746933, 0.8403499126434326, -0.4782201945781708, -0.968890905380249, 0.004992390051484108, 0.49356552958488464, 0.1982950121164322, -0.7759568691253662, 1.2599555253982544, -0.5852967500686646, -1.297910451889038, -1.3936797380447388, 0.4306425154209137, -0.1919059306383133, 0.8742629289627075, -0.13302446901798248, 0.34599629044532776, -1.0946356058120728, 0.8307697772979736, 0.06463727355003357, -0.47255071997642517, -1.122666358947754, -0.17132285237312317, -0.7737595438957214, -0.6738072633743286, 0.013627052307128906, -0.19102418422698975, -0.3520677089691162, 0.7365217208862305, -1.1406804323196411, -0.07964502274990082, 0.3434837758541107, -0.1587364822626114, 0.007491950877010822, -0.7279098033905029, 0.4179959297180176, -0.56000155210495, 1.2891007661819458, -1.0666996240615845, 0.8199928998947144, -0.6865054965019226, 0.24688807129859924, 0.717529296875, 0.050361111760139465, -0.637032687664032, 0.6010616421699524, 0.13433115184307098, -1.4712073802947998, 0.3437582850456238, 0.2837669551372528, -0.5619633197784424, 0.4097592234611511, 0.08159739524126053, 0.13249528408050537, 0.4334448575973511, 0.0315910242497921, 0.43217799067497253, 0.11998535692691803, -1.193301796913147, -0.5962308049201965, -0.2680327892303467, -0.03220071643590927, -0.47198233008384705, -1.164260745048523, 0.8772155046463013, 0.3731078803539276, -1.2410862445831299, 0.20511843264102936, 0.21345824003219604, 0.42532089352607727, 0.2030661702156067, 1.9143390655517578, 0.5253929495811462, 0.23411349952220917, -0.5280380845069885, 0.21073397994041443, -0.5565072298049927, 0.3423970341682434, 0.5839046835899353, -0.04102090746164322, 0.12225525081157684, 1.7297567129135132, 0.703455924987793, 0.23833408951759338, 0.07827790081501007, 0.1817629337310791, -0.30699196457862854, -0.15934820473194122, -1.0141583681106567, 0.1715111881494522, -0.5392959713935852, 1.4242682456970215, 0.9260365962982178, -0.7328407764434814, 0.09304317831993103, 0.43515321612358093, 0.16142255067825317, -0.14065787196159363, -0.7151001691818237, -0.2361561357975006, -0.21121333539485931, 0.36389556527137756, -0.11619123816490173, 0.7967256903648376, -0.01627190224826336, 0.3122193217277527, -0.3299989104270935, -0.8270018696784973, -0.4173222482204437, 0.5686570405960083, 0.2989251911640167, 0.6457608938217163, -0.3821546733379364, -0.9074252843856812, -0.010385314002633095, 0.4977599084377289, 1.1867810487747192, -0.06521648913621902, 0.05575818195939064, 0.06802717596292496, 0.11109724640846252, -0.23602692782878876, 0.6687124371528625, 0.09777497500181198, 0.2940819263458252, -0.3617285192012787, -0.14233744144439697, 0.9065000414848328, 0.8055985569953918, -1.1149981021881104, -0.6248729825019836, -0.08400030434131622, -0.126661017537117, 1.1104180812835693, 0.4557768702507019, 1.3275361061096191, 0.07671458274126053, 0.14827793836593628, -0.29575639963150024, -0.6627184152603149, -1.0449565649032593, -0.8788750767707825, -0.2845706045627594, -0.49375125765800476, -0.13376390933990479, -0.490947961807251, -0.1659066081047058, 0.5448029041290283, -0.15138505399227142, 0.639350950717926, 1.4024171829223633, -0.027056984603405, -0.9451762437820435, -0.33694273233413696, -0.00918816588819027, -0.8813992142677307, 0.6179975867271423, 1.1053720712661743, -0.984000563621521, -0.5504750609397888, -0.24997952580451965, -0.045816343277692795, 0.20035810768604279, 0.2522401511669159, 0.07804673910140991, -1.2714934349060059, -1.244351863861084, -0.4463479518890381, 1.0081799030303955, -0.24027155339717865, 0.18612349033355713, -0.822293221950531, 0.11850007623434067, 0.655430793762207, -0.6229621767997742, -0.6374332308769226, 0.6655622720718384, -0.14688345789909363, -0.8334985375404358, -0.11065958440303802, 0.9539806246757507, 0.3720172941684723, -0.2734247148036957, -0.6844374537467957, -0.14712142944335938, -0.3897022008895874, 0.07375229150056839, 0.5306228995323181, -0.45634719729423523, 1.2375847101211548, -0.7201590538024902, 0.29140499234199524, 0.7230010032653809, 0.1227259635925293, -0.03586384281516075, -1.760340929031372, 0.5538330078125, 0.4854517877101898, 1.1390626430511475, 0.1788094937801361, 0.31303638219833374, 0.1946427822113037, 0.0668206512928009, 0.17086850106716156, 0.25532829761505127, 1.4471092224121094, 0.2151942253112793, 0.24125000834465027, -0.7237616181373596, -0.3790730834007263, 0.14360938966274261, -0.5990282893180847, 0.010248059406876564, 0.827319324016571, -0.739514172077179, -0.7328634262084961, 1.0751757621765137, 0.4741308093070984, -0.6240909695625305, -0.3221971392631531, 0.1093888208270073, 0.3864601254463196, -0.29025182127952576, 0.2566743493080139, -0.7407736778259277, 0.21987788379192352, 0.18600672483444214, -1.436883807182312, -0.01773240603506565, 0.4741086959838867, 0.046652473509311676, 0.17852210998535156, -1.0264575481414795, 0.20604626834392548, -0.880550742149353, 0.5786106586456299, 0.5683877468109131, -0.7895752787590027, 0.07532284408807755, 0.10450639575719833, -0.3081131875514984, -0.24367529153823853, 0.07536505907773972, 1.3348501920700073, -0.2634458839893341, -0.12450671941041946, -0.4223625063896179, 0.2735476493835449, -0.5678325295448303, -0.9071984887123108, -0.31523042917251587, 0.32989540696144104, -0.42111557722091675, 0.057037413120269775, 0.2699583172798157, 0.11287137866020203, 1.368941068649292, 0.27678635716438293, 0.278382271528244, -0.051290325820446014, 0.06814631819725037, -1.25700843334198, 0.5996750593185425, 0.26601046323776245, 0.320438414812088, -0.4154609143733978, -0.10392297059297562, 0.740044355392456, -0.4571991264820099, 0.1383393406867981, 0.3758313059806824, 0.7675471901893616, 0.18833327293395996, 0.06464597582817078, -0.047067128121852875, 0.3996830880641937, 1.0922743082046509, 1.4202474355697632, 0.49911755323410034, -0.542047381401062, -0.8537009954452515, 0.6712677478790283, -0.7256267666816711, -0.7863814830780029, 0.7105740904808044, 0.32395225763320923, 1.403862714767456, -1.5797791481018066, -0.22262442111968994, 1.0949596166610718, 0.4289311170578003, 0.9105269908905029, 0.5268881916999817, -0.2967225909233093, -0.07136461138725281, 0.6400961875915527, 0.4792572855949402, 0.1341341733932495, 0.3147927522659302, -0.2585894763469696, -0.4778079092502594, 0.09672799706459045, -1.1995153427124023, 1.2808315753936768, -0.43483930826187134, 0.014775152318179607, -0.23508135974407196, -0.6106911301612854, -0.015441004186868668, 0.7544294595718384, 0.20957671105861664, 1.5453850030899048, -0.7137328386306763, -0.6405631899833679, 0.07361318916082382, -0.42958852648735046, 0.21422353386878967, -0.23410116136074066, -0.28437134623527527, -0.5531194806098938, -0.6428143382072449, -0.32278937101364136, 1.2371350526809692, -0.3466555178165436, -0.550739586353302, -1.120902180671692, -1.1623002290725708, 0.639529287815094, 0.9877740144729614, 1.4196640253067017, 0.6520272493362427, 0.016175750643014908, 0.24527262151241302, 0.6736499667167664, -1.0533338785171509, -0.26666519045829773, 0.2977798283100128, 0.20214639604091644, 0.05854948237538338, -0.9898889064788818, -0.06362899392843246, 0.515041172504425, 0.3612173795700073, -0.36910876631736755, 0.42961424589157104, 0.9249721169471741, 1.2319515943527222, -0.21077054738998413, -0.13307757675647736, 0.18559661507606506, -0.7530450820922852, -0.019924188032746315, 0.7675274014472961, -0.0940995067358017, -0.7033578753471375, -0.6260308027267456, -1.141030192375183, 0.9944878220558167, -0.003243391402065754, -0.7834214568138123, 0.9672824144363403, 0.05804022029042244, 0.7529647350311279, 0.17437833547592163, -0.2960168421268463, 0.23142343759536743, 0.19569650292396545, -0.10372275114059448, -1.1085902452468872, -0.2907989025115967, 0.4252842664718628, 0.056815702468156815, -0.19096538424491882, 0.609612762928009, 0.09463965147733688, -0.021803950890898705, 0.5483478307723999, 0.5593967437744141, 0.5354104042053223, 0.8603414297103882, 0.25792449712753296, -0.6315451264381409, 0.10481896996498108, -0.5238596200942993, -1.2216379642486572, 0.3966410160064697, 0.181648850440979, 0.05648419260978699, -0.6434867978096008, -0.4981532394886017, -0.08077327162027359, 0.014726143330335617, -0.2791728675365448, -0.4851676821708679, 0.28949782252311707, 0.32496124505996704, 0.021427186205983162, 0.3876534700393677, -0.1834963858127594, -0.42880815267562866, -0.31134262681007385, 0.5925952196121216, -0.03969950973987579, -1.4879759550094604, 0.16271157562732697, 0.40702149271965027, -0.7313592433929443, -0.4817143678665161, -0.3150131404399872, -0.1258876621723175, -0.9529712796211243, -1.4728704690933228, -0.9920972585678101, 0.27241021394729614, 0.8762505054473877, -0.9003586173057556, 0.22818326950073242, 0.6556129455566406, -1.3552792072296143, 0.3865613639354706, -0.06017347797751427, -1.1191624402999878, -0.3270103633403778, -1.2159639596939087, 0.8805866241455078, -0.4072345495223999, -0.06764720380306244, -0.6042758822441101, 0.8937357664108276, -1.3486356735229492, -1.7961666584014893, -0.2842681407928467, -0.08029428869485855, 1.4975799322128296, 0.6781835556030273, -0.41327014565467834, 1.383027195930481, 0.5733253359794617, -0.17134128510951996, 0.024107065051794052, 0.030183034017682076, -0.17322295904159546, 0.4624759554862976, 0.8808779120445251, 0.45328599214553833, 0.5401803255081177, 1.159169316291809, -0.433020681142807, 1.293070673942566, 0.09058183431625366, 0.5701318383216858, -0.7116849422454834, -0.3463583290576935, 0.08176802843809128, 0.24262641370296478, -1.7955207824707031, -1.324371337890625, -0.9376777410507202, -0.4255467355251312, -0.8061115145683289, 0.35648173093795776, 0.022542007267475128, -0.7521147727966309, 0.12576939165592194, -0.4252457618713379, 0.4083479642868042, -0.6802070140838623, 0.8002819418907166, -0.48855629563331604, -0.3252392113208771, -0.2258734107017517, 0.3546624183654785, -0.18938446044921875, -1.7257497310638428, 0.3595395088195801, -0.0727701187133789, 0.0929873138666153, -0.017641272395849228, 0.45230379700660706, 0.5554929375648499, -0.27231186628341675, -0.3399033546447754, 1.6205244064331055, 0.7035176157951355, -0.3248961865901947, -0.3479553163051605, 0.22604838013648987, 0.8241024017333984, 0.46415796875953674, -1.1456769704818726, 0.055154867470264435, -0.6081198453903198, 1.546120047569275, -0.16210363805294037, 0.5550791025161743, 0.07492545247077942, 0.41652610898017883, -0.38231161236763, 0.44728535413742065, 0.6094284057617188, -1.05376398563385, -0.4367746114730835, 1.2001255750656128, 0.34208834171295166, -0.6489086747169495, 0.1653953492641449, 1.1312426328659058, 0.04155271127820015, -0.49898001551628113, 0.35837310552597046, 0.5958837866783142, -1.2124488353729248, 0.24283377826213837, -0.04183661565184593, -0.417633980512619, 0.20280523598194122, -0.4616214632987976, -1.0007860660552979, 0.2615979313850403, -0.38037651777267456, -0.8647757768630981, 0.7535824179649353, -0.8803194761276245, -0.736105740070343, 0.5226367712020874, -0.1669086515903473, -0.5551999807357788, -0.17660808563232422, 0.5373657941818237, 0.0916975662112236, 0.16879470646381378, 0.5195566415786743, -0.23317615687847137, 1.4745404720306396, -0.32700565457344055, 0.277624249458313, -1.2393951416015625, -0.28029465675354004, 0.3106653690338135, 0.13640786707401276, -0.29303979873657227, -0.1078326404094696, 1.0712851285934448, 0.08518673479557037, -0.8884454965591431, 0.07519974559545517, 0.0783829540014267, 0.36163702607154846, 0.12360300868749619, -0.5388208627700806, -0.25239601731300354, 0.27482303977012634, 0.554472804069519, -0.3103068470954895, -0.5761963725090027, -1.119819164276123, -0.21901632845401764, -0.725607693195343, 0.06663887947797775, -0.49955400824546814, 0.22727429866790771, -0.2391110211610794, -0.4014267325401306, -0.3720463812351227, -0.42453548312187195, 0.7957031726837158, -0.23409318923950195, 0.12234888225793839, -0.176981583237648, -0.15408308804035187, -0.08168063312768936, -0.6816852688789368, 0.2757051885128021, -0.030381962656974792, 0.1517183780670166, -0.08532287180423737, -1.20382821559906, -0.37145358324050903, -1.0494086742401123, 0.6052429676055908, 0.5632943511009216, 0.6056483387947083, 0.08460833132266998, -0.18182383477687836, -0.940401017665863, 0.6087831258773804, 0.18696744740009308, -0.43516409397125244, 0.2958184778690338, 1.0572186708450317, 1.662942886352539, 0.156502828001976, 0.48567646741867065, -0.6318287253379822, 0.3194512128829956, -0.6454656720161438, -0.6021624207496643, -0.4474721848964691, -0.44737109541893005, -0.4567560851573944], [0.024099497124552727, 1.61278235912323, -1.2872837781906128, 0.1971028596162796, 0.5523712038993835, 0.0723281130194664, 1.1483159065246582, -0.1422545462846756, -0.14118903875350952, 0.1481701135635376, -0.9285546541213989, 0.41217198967933655, -0.30304983258247375, 0.625805139541626, 0.017145710065960884, 0.7777690291404724, 1.7043431997299194, -0.849129319190979, 0.4163418412208557, 0.6984987258911133, -0.24855875968933105, -0.44819730520248413, 0.2548353374004364, 0.07249391078948975, -0.5237060189247131, 0.20315954089164734, -1.418403148651123, -0.4274279773235321, -0.0021310830488801003, -0.6948991417884827, 0.15510191023349762, -0.7671835422515869, -0.4019232392311096, 0.2541987895965576, -1.1739898920059204, -0.037069663405418396, 0.9604728817939758, 0.348585844039917, 0.6592346429824829, 0.9023092985153198, 0.6988990306854248, 0.08091511577367783, -0.7549648880958557, -1.6382136344909668, -0.25685110688209534, -0.4647488296031952, 0.6139760613441467, -0.3517680764198303, 0.06817197054624557, -0.4724419414997101, 0.5000678896903992, -0.7055692672729492, 0.30578848719596863, 0.36493849754333496, 0.4890557825565338, -1.027125597000122, -0.1103321984410286, -0.9547023177146912, 1.1185885667800903, -1.3089404106140137, 0.8608763813972473, 0.20488499104976654, -0.17186489701271057, 0.6703652143478394, 0.2141026109457016, -0.5291357636451721, -0.49151521921157837, 0.17822907865047455, 0.5743759274482727, -0.02176254242658615, 0.32455989718437195, 0.3881690204143524, -0.24134360253810883, -0.05515316501259804, -1.1178168058395386, 0.31589198112487793, 1.0009998083114624, 1.32624351978302, 0.39272844791412354, 0.6158549189567566, 0.21825240552425385, -0.7608513832092285, 0.20164135098457336, -0.42832860350608826, 0.2579718828201294, -0.5043830871582031, 0.053070783615112305, -0.1682049036026001, -1.116913914680481, 1.656273603439331, 0.6597716808319092, -0.5138463973999023, 0.5582615733146667, -0.3112126886844635, -0.06349212676286697, -1.4382585287094116, 0.19105121493339539, 0.5109151601791382, -0.7833043932914734, -0.48241478204727173, 0.20974043011665344, -0.5082629919052124, -0.5343791246414185, -0.0828699991106987, -0.5996955633163452, 0.8480787873268127, -0.15620489418506622, -0.5420575737953186, -0.32397258281707764, -0.30402612686157227, -0.03960594907402992, -0.030535271391272545, -0.6958920359611511, -1.3283103704452515, -0.6701505184173584, 0.4373582601547241, 1.102300763130188, -0.5581581592559814, 0.33524686098098755, 0.6003331542015076, 0.0026905559934675694, -0.5065199136734009, -0.5690634250640869, 0.14734631776809692, -0.20803719758987427, 0.26231101155281067, -0.5293625593185425, -0.3098019063472748, -0.310716450214386, -0.5921658277511597, 0.2971113622188568, 0.9276812076568604, -0.3020523488521576, 0.9167003631591797, -0.7280842661857605, 1.7016992568969727, -0.3476540744304657, -0.48852965235710144, -0.2327347844839096, -0.00184996472671628, 0.4178888201713562, 0.4291163980960846, -0.29770687222480774, -0.13334032893180847, 0.5003362894058228, -0.7862250804901123, -0.05129208415746689, 0.44547706842422485, -0.7056489586830139, 0.4693426489830017, -0.44214922189712524, 0.06351436674594879, 0.6070099472999573, 0.034621644765138626, -0.032575491815805435, -0.09513351321220398, -0.10843203961849213, 0.15506476163864136, 0.5950025916099548, -0.48367613554000854, 0.41808274388313293, -0.2187412828207016, -1.0866702795028687, 0.4306308925151825, -0.6981176733970642, -0.316972553730011, 0.33629992604255676, 1.2176662683486938, 0.553968071937561, 0.8886430263519287, -0.8807761073112488, 0.35514411330223083, 0.05451539158821106, 0.14253482222557068, -0.2534849941730499, -0.5512840151786804, 0.873341977596283, -0.24621377885341644, -1.2637920379638672, -0.6873716711997986, 0.8263838291168213, -0.7130767107009888, 0.20297282934188843, -0.8635857105255127, -0.2836379110813141, -0.6969680786132812, 0.8745371103286743, -0.3510313928127289, -0.1566791832447052, -0.01598689891397953, 0.15953393280506134, -0.6112489104270935, -0.18028658628463745, 0.36143702268600464, -0.3093571066856384, -0.16934755444526672, 0.5251832604408264, -1.177958369255066, 0.1076420247554779, 0.5463577508926392, 0.12111682444810867, 0.2812817096710205, -0.6371245384216309, 0.7717345356941223, -0.4952543079853058, 0.7304456233978271, -0.3757901191711426, 0.3890087902545929, -0.3866969048976898, -0.13584446907043457, 0.7365695834159851, -0.5537475943565369, -0.022047044709324837, 0.36123159527778625, 0.2238594889640808, -0.6652969121932983, 0.5666759610176086, 0.126027911901474, -0.6571730971336365, 0.35629767179489136, 0.17157763242721558, 0.28381648659706116, 0.0769067034125328, 0.45456409454345703, 0.13565579056739807, -0.06376788765192032, -1.0032182931900024, -0.828021228313446, -0.04188801720738411, -0.06151673197746277, 0.13310903310775757, -1.3110395669937134, 0.27546700835227966, 0.5535112619400024, -0.5871931910514832, 0.3143085241317749, -0.26871660351753235, -0.0026038046926259995, 0.07970952987670898, 0.9840859174728394, 0.17577797174453735, 0.3758544325828552, -0.5403075218200684, -0.4380464255809784, -0.725681722164154, -0.11845897138118744, 0.7912559509277344, -0.26264312863349915, 0.2522428333759308, 0.9957764148712158, 0.9350719451904297, 0.15589943528175354, 0.24141302704811096, 0.33100128173828125, 0.10808978229761124, -0.5629264712333679, -0.7640597820281982, 0.1906539797782898, -0.843826174736023, 1.1462146043777466, 0.62115478515625, -0.6426302790641785, -0.35923534631729126, -0.5774511694908142, -0.4789682626724243, -0.35296815633773804, -0.398855984210968, 0.022365912795066833, -0.07208604365587234, 0.7375155687332153, -0.07088183611631393, 1.2092328071594238, 0.17687194049358368, 0.24605940282344818, -0.45446670055389404, -0.028403885662555695, -0.24422648549079895, 0.21692568063735962, -0.0051864865235984325, 0.8732929825782776, -0.31664860248565674, -1.3999680280685425, -0.2420659065246582, 0.3263595402240753, 0.925220787525177, -0.20929190516471863, -0.8243553638458252, -0.07955676317214966, 0.11870915442705154, -0.3083045780658722, 0.04374552518129349, -0.48138514161109924, -0.04587589204311371, -0.1594783365726471, 0.4193669259548187, 0.2753060758113861, 0.4178066849708557, 0.3132481873035431, -0.6520324349403381, 0.09327415376901627, 0.3512148857116699, 0.7469817399978638, 0.6303008198738098, 1.087027668952942, -0.053355466574430466, 0.30991441011428833, 0.03445068746805191, 0.3495427966117859, -0.8733498454093933, -0.5993338227272034, -0.8281490206718445, -0.8911318182945251, 0.4561253488063812, 0.31324535608291626, 0.08962638676166534, 0.7053890228271484, -0.2598251402378082, 0.7335734963417053, 0.6156778931617737, -0.6081653237342834, -0.5657902359962463, 0.3823425769805908, -0.42466607689857483, -0.6831197738647461, 0.4583706855773926, 1.5172648429870605, -0.3890075385570526, -0.663373589515686, -0.4158579111099243, -0.6064075231552124, -0.15545178949832916, 0.7030922174453735, -0.34846895933151245, -0.9058718085289001, -0.3675714135169983, 0.17183765769004822, 1.710692286491394, -0.23722505569458008, -0.702453076839447, -0.5633239150047302, 0.4611780345439911, 0.2665007710456848, -0.8729168772697449, -0.21946518123149872, 0.728356659412384, -0.5600430369377136, -0.20155327022075653, 0.103882797062397, 0.6925026178359985, 0.9600088596343994, -0.11055050790309906, -0.40569624304771423, -0.1724196821451187, -0.2775096297264099, -0.026869872584939003, 0.12633465230464935, -0.9181404113769531, 1.0165551900863647, -0.1163528561592102, -0.3743198812007904, 0.7631550431251526, 0.18013174831867218, 0.232317253947258, -1.050857424736023, 0.36713188886642456, 0.1125263124704361, 1.9326623678207397, -0.5846933126449585, 0.4950870871543884, 0.617887556552887, 0.21814750134944916, 0.29407066106796265, 0.5409765839576721, 1.18352472782135, -0.11522713303565979, -0.8626157641410828, -0.4854515790939331, -0.43216919898986816, -0.6573565602302551, -0.45800819993019104, -0.2537720203399658, 0.5132047533988953, -0.793635368347168, -0.4433037042617798, 1.2514588832855225, 0.6741164326667786, 0.16496555507183075, -0.40538421273231506, 0.25214964151382446, 0.29054173827171326, -1.2075543403625488, 0.5987358689308167, 0.008949394337832928, 0.24899724125862122, 0.21430270373821259, -0.7644011378288269, 0.23959586024284363, 0.04981113225221634, 0.19546964764595032, 0.5129390954971313, -0.9178162217140198, 0.4930404722690582, -0.5067194104194641, 0.5849894881248474, 0.280679315328598, -0.40672290325164795, 0.19853165745735168, 0.23902057111263275, 0.07873988896608353, -0.517998993396759, 0.41830167174339294, 0.12137464433908463, -0.4707193672657013, 0.03981064260005951, -0.28136923909187317, -0.47159257531166077, -0.6404198408126831, -0.0727245882153511, -0.3128519356250763, 0.4846423864364624, -1.026105284690857, -0.14160320162773132, 0.4746474027633667, 0.08743787556886673, 0.05847792327404022, 0.37638434767723083, 0.5992720127105713, -0.1103743389248848, 0.015607777051627636, -1.2948317527770996, 0.14458686113357544, 0.39171209931373596, -0.3318217992782593, -0.6175237894058228, 0.3661174178123474, 0.26009097695350647, 0.06332004070281982, -0.24064664542675018, 0.18088465929031372, 0.8625873923301697, 0.2566303014755249, -0.2018297165632248, 0.24689127504825592, 0.9836534857749939, 0.6947566866874695, 1.2344131469726562, 0.32168224453926086, -0.6290138363838196, -0.8108658790588379, 0.5503568649291992, -1.3083399534225464, -0.18248343467712402, 0.3311057686805725, 0.27363121509552, 1.0646485090255737, -0.7385041117668152, -0.5673964023590088, 0.6987094283103943, -0.5100202560424805, -0.09635081142187119, 0.2138567864894867, -0.21762752532958984, 0.6216381192207336, 0.699308454990387, 0.4370194971561432, -0.014034301042556763, -0.06930001080036163, -0.640213131904602, 0.40257441997528076, -0.09065313637256622, -1.0964081287384033, 0.8284755945205688, -0.023306628689169884, 0.5067873597145081, 0.1229337602853775, -0.10132913291454315, 0.005862309597432613, 0.27591484785079956, 0.03739543631672859, 1.4123579263687134, 0.1166786253452301, -0.8791759610176086, -0.22060267627239227, -0.9263213276863098, 0.8826801180839539, -0.09948215633630753, -0.0777638778090477, -0.39521855115890503, -0.6866819858551025, 0.02634487859904766, 0.6007616519927979, -0.9098187685012817, -0.3104247748851776, -0.10073871910572052, -1.0939725637435913, 0.19375048577785492, 0.6895636320114136, 1.2598634958267212, 0.6553935408592224, -0.055051252245903015, 0.7177859544754028, 0.8080744743347168, -0.9546420574188232, 0.09946952015161514, -0.15603141486644745, 0.0540207177400589, 0.16100406646728516, -1.0794243812561035, 0.01409384235739708, 0.2323550581932068, 0.1496981829404831, -0.41068628430366516, 0.21867631375789642, 0.12066931277513504, 0.8997024297714233, 0.17937122285366058, 0.09038417041301727, 0.41628387570381165, -0.4075116515159607, 0.6727595925331116, 0.2591313123703003, 0.06614209711551666, -0.0793008953332901, -1.3956774473190308, -1.0591635704040527, 0.8787499666213989, -0.6842061281204224, 0.04635247960686684, 0.7442854046821594, 0.24899692833423615, -0.33564862608909607, 0.5458401441574097, -0.3895465135574341, -0.2682938575744629, 0.12546081840991974, -0.3482512831687927, -0.7416942119598389, 0.7326764464378357, 0.533645510673523, 0.31868088245391846, 0.4960036873817444, 0.36569568514823914, 0.3335627317428589, -0.5993911623954773, 0.5407992601394653, -0.21856029331684113, 0.3325647711753845, 1.0725253820419312, 1.1035401821136475, -0.756064236164093, 0.45491907000541687, 0.06844180077314377, -0.7651418447494507, 0.3578195571899414, 0.5174524784088135, 0.344601035118103, -0.11844445765018463, -0.799584686756134, -0.3110579550266266, -0.3001156151294708, -0.059999074786901474, -0.43880701065063477, 1.2287206649780273, 0.26012372970581055, 0.1556345373392105, -0.264815092086792, -0.8940236568450928, 0.06889399141073227, -0.2371354103088379, 0.6904928088188171, 0.5024905800819397, -1.198060393333435, -0.35621485114097595, 0.19763998687267303, -0.7283395528793335, -0.2797439992427826, 0.4855887293815613, 0.23128995299339294, -0.6560498476028442, -1.1523852348327637, -0.025926467031240463, 0.8007264733314514, 0.3301100730895996, -0.9638558030128479, 0.8966237902641296, 0.6098824739456177, -1.3520402908325195, -0.17230123281478882, 0.7422540187835693, -1.3468613624572754, -0.47674354910850525, -1.599629521369934, 0.7366833090782166, 0.7402825951576233, -0.2340145707130432, -0.4867122173309326, 0.9024441242218018, -1.1483641862869263, -0.574287474155426, -0.2507161796092987, 0.18877898156642914, 0.30635055899620056, 1.1101763248443604, -0.19323061406612396, 1.0151807069778442, -0.1916385143995285, 0.3749224841594696, -0.14950749278068542, 0.1680125743150711, -0.2389630526304245, 0.6365354061126709, 0.2643461525440216, -0.0979766994714737, -0.031877607107162476, 0.8888420462608337, 0.11171810328960419, 1.3965284824371338, -0.22801820933818817, 0.6917116641998291, -1.0762561559677124, 0.2422369420528412, 0.5192760229110718, 0.3026675283908844, -1.4560760259628296, -0.8622616529464722, -0.7293417453765869, -0.3099527359008789, -0.8445774912834167, 0.26301220059394836, 0.19091679155826569, -0.6939679384231567, -0.012391308322548866, -0.20930324494838715, 1.0093318223953247, -0.27716535329818726, 0.8902013301849365, 0.06320540606975555, -0.4008239507675171, 0.003034539520740509, 0.17148993909358978, 0.060588765889406204, -1.5566916465759277, 0.25042250752449036, -0.051687102764844894, -0.059167079627513885, -0.044469401240348816, 0.4487185776233673, 1.2057024240493774, 0.3841399550437927, -0.18764697015285492, 0.8317543268203735, 0.6390027403831482, -0.6748913526535034, -0.43731239438056946, 0.4022645056247711, 0.492590993642807, 0.4039310812950134, -0.3127852976322174, -0.15122941136360168, -0.011742017231881618, 1.2557721138000488, -0.44276198744773865, 0.3687899708747864, -0.15770934522151947, 1.1160154342651367, -0.20089776813983917, -0.15684086084365845, 0.7162041664123535, -0.7641870975494385, 0.1577548384666443, 0.9566478133201599, 0.10699491947889328, -0.47555088996887207, 0.2086414247751236, 1.502020239830017, -0.40335047245025635, -0.012570706196129322, -0.1875118464231491, 0.4179307818412781, -0.613853931427002, -0.038134437054395676, 0.27691373229026794, -0.7177712917327881, 0.10377170890569687, -0.33018985390663147, -1.2251551151275635, -0.42685455083847046, -0.7803847193717957, -1.0106706619262695, 0.3235541880130768, -0.9273558259010315, -0.6745839715003967, 0.7617321014404297, 0.09127259999513626, 0.10658041387796402, 0.06435088813304901, 0.3106776773929596, -0.03289977088570595, -0.05617431551218033, 0.874635636806488, -0.3192230463027954, 1.400316596031189, -0.12169138342142105, 0.16642075777053833, -1.4300740957260132, 0.015917113050818443, 0.03264256939291954, 0.21035560965538025, -0.1943221241235733, 0.06177695095539093, 0.6067206263542175, 0.02393663302063942, -0.6719284057617188, 0.15181629359722137, -0.4241684079170227, 0.4319802522659302, 0.013781839050352573, -0.11456017941236496, 0.22984349727630615, -0.14984102547168732, 0.8014810681343079, 0.14230692386627197, -0.5340328812599182, -0.1487705111503601, 0.35230574011802673, -0.4872981905937195, 0.8054841160774231, 0.2023446261882782, 0.6115027070045471, -0.4923569858074188, 0.13384748995304108, 0.11806041747331619, -0.013316693715751171, -0.19812379777431488, -0.3160353899002075, -0.18235677480697632, -0.200078547000885, -0.016268400475382805, -0.2824689447879791, -0.7238604426383972, 0.2953432500362396, -0.188467875123024, -0.6398076415061951, -0.43159744143486023, -0.3973378539085388, -0.5567381381988525, -0.8355562090873718, -0.34130367636680603, 0.4525015354156494, 0.31790632009506226, -0.06718955934047699, -0.34387895464897156, 0.05396614968776703, 0.16557493805885315, -0.25188499689102173, -0.8012185096740723, 0.15806110203266144, 0.9409891366958618, 1.2439619302749634, 0.21333886682987213, 0.43664732575416565, -0.4758268892765045, 0.1581675112247467, -0.24304720759391785, -0.20483331382274628, -0.49936383962631226, 0.013462400995194912, -0.67444908618927], [-0.6637035012245178, 1.7007256746292114, -2.3865151405334473, 0.32818448543548584, 0.8187966346740723, 0.5280167460441589, 1.3297975063323975, 0.07123617827892303, 0.06926138699054718, -1.0074118375778198, -0.6623837351799011, -0.0642705038189888, 0.22880204021930695, 1.4889858961105347, 0.9916385412216187, -0.2626970112323761, 0.34339284896850586, -0.4731641709804535, 0.7226782441139221, 1.5794146060943604, 0.1695283055305481, -0.18701328337192535, 0.1691107302904129, -0.32420727610588074, -0.21882569789886475, -0.21595799922943115, -1.3381949663162231, -0.1654331535100937, -0.8849712610244751, -1.3606007099151611, 0.7144103646278381, -0.6924144625663757, -0.2549690306186676, -0.14266356825828552, -0.9713084697723389, -0.18139512836933136, 1.43259596824646, 0.9229257106781006, 0.46147215366363525, 0.08303559571504593, 1.4301130771636963, -0.09111737459897995, -0.3080030083656311, -1.1785413026809692, -0.03348304331302643, 0.010088006034493446, 0.3761616349220276, -0.6179434061050415, 0.34043970704078674, -0.9082162976264954, 0.5481278896331787, -0.6240735054016113, 0.9972012042999268, 1.6666818857192993, 0.7889511585235596, -0.13259761035442352, 0.6048007011413574, 0.02333826571702957, 1.0242124795913696, -0.3889000415802002, 0.021029815077781677, 0.42328429222106934, -0.11586099117994308, 0.11531757563352585, -0.20473924279212952, 0.49868282675743103, 0.3128296434879303, 0.2680668532848358, -0.3093874752521515, 0.06638378649950027, 0.08123498409986496, 0.22446948289871216, -0.537703812122345, 0.9080032110214233, -1.211835503578186, 1.0212814807891846, 0.4014967978000641, 0.671763002872467, 0.4804268777370453, 0.8602849245071411, -0.62863689661026, -0.30938103795051575, 0.4528465270996094, -0.27651447057724, 0.4506150186061859, -0.16216598451137543, 0.30583131313323975, -0.41630521416664124, -0.7829667925834656, 1.9846925735473633, 0.43609586358070374, -0.44423624873161316, 0.7777806520462036, -0.3820267915725708, -0.31580600142478943, -0.6343475580215454, 0.5032760500907898, -0.37979063391685486, -0.627795934677124, -0.46186015009880066, -0.7894115447998047, -0.9412638545036316, 0.4761228859424591, 0.15043123066425323, -0.4337927997112274, 1.5617594718933105, 0.02750977873802185, 0.3390207588672638, -0.5860256552696228, 0.1467439979314804, -0.35771825909614563, 0.2883647680282593, -0.2629537284374237, -0.9571811556816101, -0.7655080556869507, 1.0949143171310425, 1.541616678237915, -0.32508084177970886, 0.46022534370422363, 0.7891960740089417, 0.3849305808544159, -0.40356215834617615, 0.06012210249900818, 1.0313785076141357, 0.5522201657295227, -0.0010576192289590836, -0.017471401020884514, -0.6061480045318604, -0.45556142926216125, -0.17085951566696167, -0.0802687555551529, 0.011842574924230576, -0.024397658184170723, 0.9302688241004944, -0.5521960854530334, 1.1232845783233643, -0.11282506585121155, -0.5713887214660645, -0.09612950682640076, -0.5808862447738647, 0.5513085126876831, -0.05839720368385315, -0.2595866620540619, -0.3185345232486725, 0.48706966638565063, -0.8895366191864014, 0.32449302077293396, -0.3271481990814209, -0.18679915368556976, 0.30616047978401184, -0.5154644846916199, 0.3848057985305786, 0.4457091987133026, 0.5511382818222046, 0.5846165418624878, 0.4486847221851349, -0.47443023324012756, -0.060944050550460815, 0.5446040034294128, 0.3118634521961212, 0.5892691612243652, -0.02733546867966652, -0.49994727969169617, 0.5983694195747375, 0.3510884940624237, -0.18729938566684723, 0.47861239314079285, 0.28628799319267273, -0.1295674443244934, 0.942902147769928, -0.2755526602268219, -0.4415948688983917, 0.16468611359596252, 0.49222591519355774, -0.3527291417121887, -0.9437169432640076, 1.1870988607406616, -0.8096833229064941, -1.3928260803222656, -1.095729112625122, -0.5645040273666382, -0.7950483560562134, 0.2997433841228485, 0.048248738050460815, 0.7936709523200989, -0.4430103600025177, 0.42832568287849426, -0.31872525811195374, -1.0013223886489868, -1.0081336498260498, -0.518872082233429, -0.11333851516246796, -0.5760119557380676, 0.16042280197143555, -0.6203251481056213, -0.22567668557167053, 0.1412803679704666, -1.2850205898284912, -0.4755747616291046, 0.0498952716588974, -0.4310522675514221, -0.4732211232185364, -0.6876217722892761, 0.3901950418949127, -0.5804007649421692, 1.1854157447814941, -0.9848116636276245, 0.5014843940734863, -1.136102557182312, -0.032348595559597015, 1.021713376045227, -0.7841569185256958, -1.1100749969482422, 1.089048147201538, -0.15796591341495514, -1.1185827255249023, -0.23114325106143951, 0.037258174270391464, -0.2552216947078705, 0.06310746818780899, 0.2600458860397339, 0.3754599392414093, 0.6454477310180664, 0.5277140140533447, 0.2907443344593048, -0.03426109254360199, -0.510351300239563, -0.6018181443214417, -0.6181142926216125, 0.26030394434928894, -0.558214008808136, -1.184861183166504, 0.32710325717926025, -0.2632600963115692, -1.5075547695159912, -0.25017744302749634, -0.32372406125068665, 0.23889043927192688, 1.1028683185577393, 1.4764482975006104, 0.1877497434616089, 0.5859331488609314, -0.2567910850048065, -0.11529961228370667, -0.22712847590446472, 0.8601303696632385, 0.2550209164619446, -0.6624475121498108, -0.15984901785850525, 0.9701080918312073, 0.5540070533752441, -0.14058083295822144, 0.4943850636482239, -0.4299151301383972, -0.27897757291793823, -0.6333277225494385, -0.5912328958511353, 0.7425484657287598, -0.4898470938205719, 1.938425064086914, 0.2358751893043518, -1.4770673513412476, -0.5837336182594299, -0.08796724677085876, -0.04661395400762558, -0.2321997880935669, -0.7159615159034729, -0.26405125856399536, -0.24835672974586487, -0.17207422852516174, -0.10746804624795914, 0.5108724236488342, -0.36206433176994324, 0.45642781257629395, -0.4174301326274872, -0.5459164381027222, -0.3498539626598358, 0.6560912132263184, 0.18686729669570923, 0.5059537291526794, -0.061123237013816833, -1.1896928548812866, -0.30967211723327637, -0.3190576136112213, 0.7682330012321472, 0.03426172584295273, -0.3717350959777832, 0.01292475312948227, 0.18808989226818085, -0.8717504739761353, 0.3733397126197815, 0.3210924565792084, -0.5257514119148254, 0.029241446405649185, -0.10246456414461136, 0.8793328404426575, 1.1851855516433716, -0.8693889379501343, -0.9978488683700562, -0.9335677027702332, 0.9679273366928101, 1.0235551595687866, 0.5222618579864502, 1.35768461227417, 0.12199224531650543, 0.004372464492917061, -0.1558249592781067, -0.12526409327983856, -0.5142362713813782, -0.1541273146867752, -0.7309401035308838, -0.32709938287734985, 0.15540838241577148, -0.16325445473194122, 0.5508649349212646, 0.21666288375854492, 0.0640842542052269, 0.5432366728782654, 0.9532769918441772, 0.19675758481025696, -1.0740211009979248, -0.4234125316143036, -0.4582139551639557, -0.6203019618988037, 0.2929120659828186, 1.4165492057800293, -1.2824511528015137, -0.6921964883804321, 0.3328317105770111, 0.3030394911766052, 0.5272448658943176, 0.03777438774704933, 0.407549113035202, -1.8328111171722412, -0.802032470703125, -0.06182730197906494, 0.9422204494476318, 0.3129068911075592, 0.10061990469694138, -0.8792119026184082, 0.6839107275009155, 0.9753267168998718, 0.29535675048828125, -0.5647833943367004, 1.2838869094848633, -0.7639098167419434, -0.6296120285987854, 0.040802065283060074, -0.33171483874320984, 0.4395841956138611, -0.1541542112827301, -0.07852411270141602, -0.42613548040390015, -0.11642054468393326, -0.4183048605918884, 0.725654125213623, 0.0094398632645607, 0.7790040373802185, -0.11232996731996536, 0.031140822917222977, 0.7662431597709656, 0.5825857520103455, -0.6881747841835022, -1.3950735330581665, 0.4873746633529663, 0.7796107530593872, 0.781050980091095, 0.03359507396817207, -0.281901478767395, 0.5027554035186768, 0.36189448833465576, 0.689267098903656, 0.28617849946022034, 0.7472220063209534, 0.2132333219051361, -0.3843630850315094, -0.9098767638206482, 0.4234384000301361, -0.4116569757461548, -0.43929818272590637, -0.4151689410209656, 0.2604542076587677, -0.5352533459663391, -1.0592143535614014, 0.8988050222396851, 0.4168383479118347, -0.06551200896501541, -0.13625559210777283, -0.2003653645515442, 0.46070319414138794, 0.04864190146327019, 0.7055330276489258, -0.5162699222564697, 0.08295495808124542, 0.23523074388504028, -0.9576525688171387, -0.2843168377876282, -0.31433236598968506, 0.5122551918029785, 0.9809737801551819, -0.9731190204620361, 0.6596513390541077, -0.5289311408996582, 0.3775694668292999, 0.2736079692840576, -0.39195194840431213, 0.4394955635070801, 0.0909070149064064, -0.16670621931552887, -0.08235521614551544, -0.0330057255923748, 1.4392038583755493, -0.5409523844718933, 0.16121695935726166, 0.5640354752540588, 0.2256692796945572, -0.2766116261482239, -0.8885864019393921, -0.3540617823600769, 0.3211594223976135, -0.49589499831199646, 0.26861318945884705, 0.8174896240234375, -0.042585112154483795, 1.2810654640197754, 0.6742920279502869, 0.35420599579811096, 0.5299957990646362, 0.10632161051034927, -0.8095777034759521, 0.1092858761548996, 0.30461519956588745, -0.245682030916214, -0.23600278794765472, 0.019541004672646523, 0.6858992576599121, -0.9224509000778198, 0.5816776752471924, 0.4681817293167114, 0.4347721040248871, 0.7980743646621704, -0.16627494990825653, -0.5149189233779907, 0.912706196308136, 1.2264084815979004, 1.0556086301803589, 0.3409196138381958, -0.18850372731685638, -0.6889969110488892, 0.5669710636138916, -0.9366416335105896, -0.3157118260860443, 0.8144436478614807, 0.11650088429450989, 1.0240271091461182, -1.3323613405227661, 0.2242617905139923, -0.004324199631810188, 0.54398113489151, 0.6672683358192444, 0.3246696889400482, -0.4462765157222748, 0.12518998980522156, 0.3462200164794922, 0.6570059657096863, -0.1250687837600708, -0.027423087507486343, 0.3608214259147644, -0.6247666478157043, 0.2471420168876648, -0.731792151927948, 0.1314474195241928, -0.9519599676132202, -0.4504765272140503, -0.1104721650481224, -0.30810120701789856, -0.002063627354800701, 0.8588070869445801, 0.4856512248516083, 1.0032944679260254, -0.2756172716617584, -0.607537031173706, 0.2560024857521057, -0.8704848885536194, 1.1588736772537231, -0.5021655559539795, -1.1765834093093872, -0.43723243474960327, -0.6043171286582947, -0.3530527949333191, 0.20714624226093292, -0.3476372957229614, -0.6298576593399048, -0.7888908386230469, -1.136826515197754, 0.4064159691333771, 0.6055424809455872, 1.2615541219711304, 0.47079792618751526, 0.2095699906349182, 0.39963361620903015, 0.386752188205719, -0.4270440936088562, -0.044057365506887436, 0.5855367183685303, 0.42113161087036133, 0.2923419773578644, -1.0824958086013794, -0.5129514932632446, 0.39183205366134644, -0.053455159068107605, 0.06392760574817657, 0.4231188893318176, 1.0270802974700928, 1.3106739521026611, 0.12937748432159424, 0.1868867129087448, -0.029882367700338364, -0.6911647319793701, 1.0561248064041138, 0.6909815669059753, -0.26411446928977966, -0.045690178871154785, -1.1849188804626465, -1.4706088304519653, 0.7467874884605408, -0.5799452662467957, -0.6634688377380371, 1.5294253826141357, 0.6980526447296143, 0.6358637809753418, 0.12711557745933533, -0.4013309180736542, 0.2517581284046173, -0.02771984413266182, -0.21110700070858002, -0.9070370197296143, 0.04442242160439491, 0.2450111359357834, 0.027083760127425194, -0.540132999420166, 0.4130012094974518, -0.04709754139184952, -0.5648490190505981, 0.21363559365272522, -0.32628610730171204, 0.47101572155952454, 0.5723029375076294, 0.4137096703052521, -0.9200223088264465, -0.22592639923095703, -0.4148382544517517, -0.22537147998809814, -0.13010551035404205, 0.5603045225143433, 0.36917003989219666, -0.7769253849983215, -0.10816855728626251, -0.41896113753318787, -1.1431934833526611, 0.5468283891677856, -0.07569749653339386, 0.7496265172958374, 0.06206159293651581, 0.13966159522533417, -0.2825210690498352, -0.24755023419857025, -0.2094109058380127, -0.4568130075931549, 0.2811056077480316, 0.14386625587940216, -0.9061946272850037, 0.11472183465957642, -0.10360154509544373, -0.5680897235870361, -0.4321449100971222, -0.11606967449188232, 0.7453295588493347, -1.1810698509216309, -1.2464442253112793, -0.8097202777862549, 0.6265636086463928, 1.1778833866119385, -0.7738732099533081, 0.7371624708175659, 0.5346580743789673, -1.3899259567260742, 0.6939437985420227, -0.03249151632189751, -0.853168249130249, -0.05666273087263107, -1.1006358861923218, 0.8800273537635803, -0.48522791266441345, 0.13469228148460388, -0.7993419766426086, 1.3462624549865723, -1.9364935159683228, -0.6998382806777954, -1.035981297492981, 0.0339825265109539, 1.3280584812164307, 0.2642259895801544, -0.4991031587123871, 1.3823288679122925, 0.34372636675834656, -0.0548153780400753, -0.38615110516548157, 0.41394931077957153, -0.23970502614974976, 0.06299182027578354, 0.5343348383903503, 0.48697322607040405, 0.41927242279052734, 1.0737496614456177, -0.5033152103424072, 0.7401375770568848, -0.03522931784391403, 1.0120294094085693, -0.4106784760951996, -0.7411539554595947, 0.01339229941368103, 0.8186988830566406, -0.9233930110931396, -0.6849533319473267, 0.05028742179274559, -0.3635309040546417, -0.9495806694030762, 0.6838861107826233, 0.628710925579071, -1.097245216369629, 0.06900740414857864, -0.443460613489151, 0.27049505710601807, -1.128893256187439, 0.3578343093395233, 0.3655955493450165, -0.36912432312965393, -0.3070189356803894, 0.29058316349983215, -0.05059466511011124, -1.1131303310394287, 0.815642774105072, 0.008191651664674282, 0.19685699045658112, -1.0680562257766724, 0.5173951387405396, 0.40611782670021057, 0.08578859269618988, -0.5347012877464294, 1.0482321977615356, 0.5248112082481384, -0.08409784734249115, 0.19239258766174316, 0.06888725608587265, -0.3353995084762573, 0.5626688003540039, -0.37308424711227417, -0.30724477767944336, -0.7441048622131348, 1.4158215522766113, 0.11826534569263458, 0.46695661544799805, -0.3846327066421509, -0.26387742161750793, -0.6712406873703003, -0.05984823405742645, 0.5642603039741516, -0.401452898979187, 0.2451583594083786, 1.2354789972305298, 0.1796492040157318, -0.3276327848434448, 0.2771647572517395, 0.58309006690979, 0.47757676243782043, -0.7745482325553894, 0.1837855875492096, 0.44813239574432373, -0.5051047205924988, 0.33239954710006714, 0.5517258048057556, -0.47564393281936646, -0.3869697153568268, -0.3392046391963959, -0.7970567345619202, -0.25540414452552795, -0.709083616733551, -0.7945480942726135, 1.102787971496582, -0.8807238340377808, -0.9426085948944092, 0.7590022683143616, -0.11011920869350433, -0.4453219771385193, -0.2968994677066803, 0.1920308619737625, -0.17418444156646729, 0.020223896950483322, 0.775398313999176, 0.6053617000579834, 1.0583393573760986, -0.3361489176750183, 0.0561143197119236, -0.5046136379241943, -0.30377915501594543, 0.04923628643155098, 0.0664215087890625, -0.33609676361083984, -0.17360492050647736, 0.3352092504501343, -0.24437807500362396, -0.979496955871582, 0.18238963186740875, -0.3106496036052704, 0.7426689863204956, 0.16078180074691772, -0.8382653594017029, 0.5982644557952881, 0.5789128541946411, 0.08926781266927719, -0.08074686676263809, -0.7554231286048889, -1.320533037185669, 0.16831718385219574, -0.7133320569992065, 0.09502659738063812, -0.2946096360683441, 0.6254913806915283, 0.520075798034668, -0.02630133554339409, -0.32994192838668823, -0.47780147194862366, 0.25795358419418335, -0.6278437376022339, 0.04144622012972832, 0.13889473676681519, 0.3102087676525116, -0.13880927860736847, -0.4301035404205322, 0.4409535229206085, -0.018068574368953705, -0.18283788859844208, 0.3565342128276825, -1.1310495138168335, -1.0940556526184082, -0.7209709286689758, 0.24213163554668427, 0.894615113735199, 0.1568307727575302, 0.0716126561164856, 0.05613752081990242, -0.8952615857124329, 0.2688196003437042, 0.09090244024991989, 0.48534250259399414, 0.16077399253845215, 0.8049941062927246, 1.6036218404769897, -0.18651527166366577, 0.7537996172904968, -0.1702447086572647, 0.44508638978004456, -0.95538729429245, -0.6891893148422241, -0.6723147630691528, -0.2927860617637634, -0.4514232277870178], [0.07751896232366562, 1.7977232933044434, -2.1010799407958984, -0.651226282119751, 1.049600601196289, -0.11918643862009048, 1.7643197774887085, -0.6091006398200989, -0.21788553893566132, -0.5111470222473145, -0.5206667184829712, -0.525762140750885, 1.0882748365402222, 0.5904139280319214, -0.3193472623825073, 0.2952234447002411, 0.6611694693565369, -0.501270055770874, 0.4789320230484009, 0.9148319959640503, -0.022827208042144775, -0.34822070598602295, 0.3947288990020752, 0.3236476182937622, -0.8765907287597656, 0.05186789110302925, -0.9977331757545471, -0.417327880859375, -0.22014664113521576, -0.5909876227378845, 1.339623212814331, -0.8501608967781067, -0.04372161999344826, -0.15938177704811096, -1.2507538795471191, -1.1707589626312256, 1.9214189052581787, 0.7218552827835083, 0.5958361625671387, 1.6414713859558105, 2.164593458175659, 0.3109276294708252, -0.05934838950634003, -1.6571440696716309, 0.31821104884147644, -0.4587549567222595, 0.5705660581588745, -0.82591313123703, 0.7227715849876404, -1.0266239643096924, 0.08931706845760345, 0.357223778963089, 0.5398138165473938, 0.8241189122200012, 0.36752697825431824, 0.04128119349479675, 0.04131292179226875, 0.34373748302459717, 0.9577665328979492, -0.7271559238433838, 1.2689744234085083, 0.23410286009311676, -0.5487064123153687, 0.8380781412124634, 0.01516583189368248, -0.2710643410682678, 0.44370487332344055, 0.37931308150291443, -0.15398253500461578, -0.35212913155555725, 0.2756285071372986, 0.25198495388031006, -0.2246585488319397, 0.8740108013153076, -1.622466802597046, 0.6136085987091064, 0.6335726976394653, 0.7803061604499817, 0.5472269058227539, 0.7913123369216919, 0.06418313831090927, 0.024135200306773186, 0.13052520155906677, -0.34222766757011414, 0.353927880525589, -0.21690724790096283, 0.20007704198360443, -0.3556174337863922, -0.3969375789165497, 1.1566439867019653, 0.6447409987449646, -0.081871896982193, 1.2435299158096313, -0.009215075522661209, -0.4487513601779938, -0.10314817726612091, 0.6724830865859985, -0.21976801753044128, -0.955265998840332, -1.3461166620254517, -0.6375072598457336, -0.5497205853462219, -0.055310316383838654, 0.207215815782547, -0.10134238004684448, 1.2711572647094727, 0.29725247621536255, 0.46504542231559753, -1.0862209796905518, -0.16347648203372955, -0.33786749839782715, 0.03154011815786362, -0.904299259185791, -0.9810810685157776, -0.6250104308128357, 0.8669653534889221, 1.1351641416549683, 0.16816362738609314, 0.576955258846283, 1.1154204607009888, -0.6878744959831238, -0.1150607168674469, -0.7272529602050781, 1.03762686252594, 0.9216739535331726, 0.39809656143188477, -0.4955497086048126, -0.4171392619609833, 0.3831782341003418, 0.32373955845832825, 0.04949235916137695, -0.2358952760696411, -0.05226286128163338, 1.0584721565246582, -0.826189398765564, 0.7984981536865234, -0.7575187683105469, -0.20412740111351013, -0.12597998976707458, -0.3680588901042938, 0.4036787748336792, 0.2611876130104065, 0.03653235360980034, -0.14609305560588837, 0.5384759902954102, -0.38722237944602966, -0.7296189069747925, -0.20176026225090027, -0.8991214632987976, -0.3250530958175659, -1.0339261293411255, 0.771094799041748, 0.2037852704524994, 0.47416073083877563, -0.06169553101062775, -0.47800344228744507, -0.3441741168498993, 0.5864882469177246, 0.327536940574646, 0.046530548483133316, 0.6337040662765503, -0.2638411223888397, -1.0560479164123535, 1.2512599229812622, 0.2723676264286041, -0.026280568912625313, 0.4037887454032898, 0.6988742351531982, -0.17341211438179016, 0.6367783546447754, -0.8345121145248413, -0.6183907985687256, -0.14348483085632324, 0.5801847577095032, 0.3050764799118042, -0.21540898084640503, 1.8180794715881348, -0.5379396677017212, -0.960785984992981, -1.1625114679336548, 0.5835123062133789, -0.7393796443939209, 0.2670895755290985, 0.07615690678358078, 0.6433887481689453, -0.6297392845153809, 0.3899100124835968, -0.35717064142227173, -0.1828560084104538, -0.8005896806716919, -0.18387742340564728, -0.7156164646148682, -1.3867149353027344, 0.30350688099861145, -0.043896935880184174, -0.18827377259731293, 0.4433799684047699, -1.4627045392990112, -1.0235426425933838, -0.5147886872291565, -0.8563075661659241, -0.22335827350616455, -1.1434738636016846, 0.4049607515335083, -0.5245265364646912, 0.441001296043396, -1.108491063117981, 1.1411759853363037, -0.4996413290500641, 0.1282995492219925, 0.43950286507606506, 0.11483760923147202, -0.37948140501976013, 1.1112680435180664, -0.2422964870929718, -1.2117247581481934, 0.3948119878768921, 0.3905003070831299, -0.5059855580329895, 0.33084410429000854, 0.2864317297935486, 0.262359619140625, 0.2527591288089752, 0.31962281465530396, 0.18542788922786713, -0.09066673368215561, -0.9012690186500549, -0.9810894131660461, -0.7271952033042908, 0.24117983877658844, -0.4181707203388214, -1.1676990985870361, 1.3148678541183472, 0.19247184693813324, -1.0568304061889648, 0.14438125491142273, 0.03775244951248169, 0.06970442831516266, 0.5173952579498291, 1.3771355152130127, 0.0839790403842926, 0.12706917524337769, -0.728359043598175, 0.17030119895935059, -0.19872355461120605, 0.2653282880783081, 0.6472654938697815, 0.14678724110126495, -0.22126567363739014, 1.870622158050537, 0.4604923725128174, 0.09926130622625351, 0.6692515015602112, -0.2870180308818817, 0.14353221654891968, -1.082640290260315, -0.4845883548259735, 0.5171607136726379, -0.23551040887832642, 1.3235771656036377, 0.4235452115535736, -0.4032765030860901, -0.3595193326473236, -0.04734128713607788, -0.19000940024852753, -0.7185701727867126, -0.5349868535995483, -0.9839931726455688, -0.14844349026679993, -0.29880860447883606, -0.2883364260196686, 0.2389523983001709, 0.19803977012634277, -0.1700509786605835, -0.49019855260849, -0.1370764523744583, -0.7219967842102051, 0.4515746235847473, 0.002209804719313979, 0.1832411140203476, 0.19566287100315094, -1.5630587339401245, -0.4136539101600647, -0.32942238450050354, 1.087256908416748, -0.13923993706703186, -0.24225136637687683, -0.05221359804272652, 0.6950315833091736, -0.4386672079563141, 0.29660964012145996, -0.03107461892068386, -0.2694845199584961, -0.06897912174463272, 0.20827873051166534, 1.0635559558868408, 0.9426984786987305, -1.0578012466430664, -0.4829692840576172, -0.09055577963590622, 0.5187904834747314, 1.3334516286849976, 0.7888511419296265, 1.3909528255462646, 0.21361882984638214, -0.17657054960727692, -0.7679224014282227, -0.5248709321022034, -1.3652983903884888, -0.8379742503166199, -0.759193480014801, -1.0448557138442993, -0.1004769578576088, -0.7143672704696655, 0.21834486722946167, 1.1143831014633179, 0.0877099558711052, 0.594983696937561, 1.1372867822647095, -0.29094940423965454, -0.9720523357391357, -0.4928644597530365, 0.044407524168491364, -1.505242109298706, 0.6695809960365295, 1.39644193649292, -1.3002318143844604, 0.03338072448968887, -0.1799091100692749, 0.307654470205307, 0.8943665027618408, -0.2744368016719818, 0.24565204977989197, -1.0822455883026123, -0.7982931733131409, 0.0577695406973362, 1.2529748678207397, -0.03759562596678734, 0.1258087158203125, -0.735115647315979, 0.4347779154777527, 0.8526126146316528, -0.740935742855072, -0.8692218065261841, 1.0831329822540283, -0.00018689234275370836, -0.4022964835166931, 0.4544698894023895, 0.9109523892402649, 0.6020541787147522, -0.6256023645401001, -0.4158598780632019, -0.42483314871788025, -0.35544219613075256, -0.008345923386514187, 0.6133602261543274, -0.15737418830394745, 0.6024994850158691, 0.05634745955467224, -0.640777587890625, 0.5420078635215759, 0.23138172924518585, -0.09158676862716675, -1.423888087272644, 0.5117610096931458, 0.5247076749801636, 1.5480163097381592, -0.1405440866947174, 0.4716479182243347, 0.18168441951274872, -0.08004124462604523, 0.36560726165771484, 0.8787897229194641, 1.1581556797027588, 0.2341616451740265, -0.2880041301250458, -0.5638227462768555, -0.26161709427833557, 0.2605231702327728, -0.6733131408691406, -0.05225757136940956, 0.5923771858215332, -0.6329696774482727, -0.7688047885894775, 1.4893429279327393, 0.5047577619552612, -0.5094910264015198, -0.6210034489631653, -0.056588996201753616, 0.7228673100471497, -0.226253941655159, 0.9568292498588562, -1.2224245071411133, -0.21531599760055542, 0.08938505500555038, -0.8669859170913696, -0.27653518319129944, 0.7059153318405151, 0.571387767791748, 0.3903115391731262, -0.7705841064453125, -0.18625201284885406, -0.6172322034835815, 0.8121514320373535, 0.5164434909820557, -0.5564740896224976, -0.24662351608276367, 0.30363526940345764, -0.06864877045154572, 0.30545976758003235, -0.16890665888786316, 1.2771295309066772, 0.010920120403170586, 0.015738865360617638, 0.33235427737236023, 0.32227325439453125, -0.4629139304161072, -0.8828058242797852, -0.464658260345459, -0.007519536651670933, -0.3780921697616577, -0.17413097620010376, -0.013748914003372192, -0.22715868055820465, 1.1399612426757812, 0.5523712635040283, 0.3017023503780365, 0.9158594012260437, 0.4404948055744171, -1.297515630722046, 0.9942989945411682, 0.7343222498893738, 0.18603943288326263, -0.602694571018219, -0.14832031726837158, 0.6999706625938416, -0.22911246120929718, 0.1851232647895813, 0.393619567155838, 0.6913111209869385, 0.06419617682695389, 0.6227160692214966, -0.1224411204457283, 0.3608107268810272, 0.6935603022575378, 1.3559513092041016, 0.21516138315200806, -0.3642542064189911, -0.9627477526664734, 0.7175869345664978, -0.7889348268508911, 0.012149892747402191, 0.9106942415237427, -0.05786523595452309, 1.397200345993042, -1.420100212097168, -0.2612314820289612, 0.1733289361000061, 0.34259238839149475, 1.0484833717346191, 0.38529837131500244, -0.6056232452392578, -0.32398882508277893, 0.8847377896308899, 0.6388481259346008, -0.5617140531539917, 0.3056098520755768, 0.053737930953502655, -0.37333133816719055, 0.07529834657907486, -0.9954456686973572, 0.7210219502449036, -0.2791910171508789, -0.486439973115921, -0.43895602226257324, -0.08057796210050583, 0.3655736446380615, 0.5399532914161682, 0.010409015230834484, 1.0867373943328857, -0.8938111662864685, -0.6651583313941956, 0.16240927577018738, -0.5973180532455444, 0.308951735496521, -0.3642938435077667, -0.4596790373325348, -0.9291232228279114, -0.9027621746063232, 0.11728242039680481, 0.4854596257209778, -0.3500397205352783, 0.08683312684297562, -0.5073877573013306, -0.9508514404296875, -0.22299253940582275, 0.9001222252845764, 1.3355718851089478, 0.819131076335907, 0.058433711528778076, 1.2009543180465698, 0.5210229158401489, -0.8843587636947632, -0.15785185992717743, 0.024346256628632545, 0.024107761681079865, 0.47834882140159607, -1.4971706867218018, -0.2853492498397827, -0.4192417860031128, 0.6779986619949341, -0.06275128573179245, 0.4106403887271881, 1.214638113975525, 1.064682126045227, -0.22012506425380707, -0.28411635756492615, 1.3603992462158203, -0.44789403676986694, 0.39583835005760193, 0.6237689852714539, -0.14545346796512604, -0.4737789034843445, -0.4398036003112793, -1.4166842699050903, 0.8200786709785461, -0.39593127369880676, -0.7696369886398315, 0.8158159255981445, 0.06513012945652008, 0.6116169691085815, 0.5766733884811401, -0.25613442063331604, 0.36970487236976624, 0.6100634336471558, -0.5185285806655884, -1.1987683773040771, -0.08170410990715027, 0.3360097408294678, -0.24309173226356506, -0.5614492893218994, -0.13116800785064697, 0.03510770946741104, -0.32922571897506714, 0.7905790209770203, -0.23862336575984955, 0.8732922077178955, 0.4360349476337433, 0.3812786936759949, -1.2244510650634766, 0.12988080084323883, -0.8935166597366333, -0.5775204300880432, 0.3395279049873352, 0.10835941880941391, -0.1598566174507141, -0.47522154450416565, -0.1320987492799759, -0.19097547233104706, -0.4078119993209839, -0.13527612388134003, -0.845443069934845, 0.35979893803596497, 0.6523148417472839, 0.02152063511312008, -0.005448400042951107, -0.4053017199039459, -0.22438843548297882, -0.06918862462043762, 0.24832212924957275, 0.2686957120895386, -1.5360534191131592, -0.02076854184269905, 0.24118390679359436, -0.19498808681964874, 0.14623986184597015, -0.07181017100811005, 0.041515596210956573, -1.4518110752105713, -1.3307112455368042, -0.412224680185318, -0.12160429358482361, 0.8049795031547546, -0.6722795963287354, 0.45678865909576416, 1.0771644115447998, -1.4387696981430054, 0.2626131474971771, 0.11186513304710388, -1.2860416173934937, 0.19032366573810577, -1.0764031410217285, 1.6593692302703857, -0.0729701891541481, 0.18907921016216278, -0.017907453700900078, 1.5119249820709229, -1.070185661315918, -1.9404162168502808, -0.6143467426300049, 0.22575923800468445, 0.36534494161605835, 1.2210179567337036, -0.3967534303665161, 0.7608062624931335, 0.2932778000831604, -0.49741148948669434, -0.5568342208862305, -0.13079477846622467, -0.6211526989936829, 0.18419276177883148, 0.12888650596141815, 0.07333313673734665, -0.1111832857131958, 1.2538094520568848, -0.7738078832626343, 0.9626047015190125, -0.28403031826019287, 1.373360276222229, -1.07064688205719, -0.03971634432673454, 0.08875935524702072, -0.1610732525587082, -1.845482349395752, -0.9228342175483704, -0.37797147035598755, -1.0987523794174194, -1.0221912860870361, 0.4490092396736145, 0.9288718700408936, -0.7705737352371216, -0.13815972208976746, 0.0035650022327899933, 0.6465465426445007, -0.7516486644744873, -0.19187355041503906, -0.33456218242645264, -0.2301989495754242, -0.14225272834300995, 0.07263778895139694, 0.06410261988639832, -1.8279838562011719, -0.03748396411538124, -0.06948945671319962, 0.5908015370368958, -0.8705703616142273, 1.0045056343078613, 0.6404666900634766, -0.2562195360660553, -0.2903819680213928, 1.5720796585083008, 1.1207557916641235, -0.5934395790100098, -0.6211232542991638, 0.2510676980018616, 0.24617543816566467, 0.33426642417907715, -0.7571740746498108, -0.22137565910816193, -0.7618677616119385, 0.7470279932022095, 0.7277352213859558, -0.004366337787359953, -0.19050081074237823, 0.16965197026729584, -0.22512540221214294, -0.3216019868850708, 0.39540815353393555, -0.4001765847206116, -0.027501018717885017, 1.1302410364151, 0.39028966426849365, -0.6682755351066589, 0.44308972358703613, 0.48969948291778564, 0.4293748140335083, -0.44999775290489197, 0.22150641679763794, 0.6571770906448364, -0.5557937622070312, 0.28253763914108276, -0.14215205609798431, -0.44472774863243103, 0.641338050365448, -0.5087975859642029, -1.1024249792099, -0.8336639404296875, -0.8279299139976501, -0.4536426365375519, 0.9639500379562378, -1.5626697540283203, -0.7709254026412964, 0.1718084216117859, -0.6619024276733398, -0.31339603662490845, -0.17411230504512787, 0.26834022998809814, 0.07352060824632645, 0.280988484621048, 0.9948031306266785, -0.447762131690979, 0.798932671546936, 0.4864421784877777, 0.24602089822292328, -0.9215642213821411, -0.6206955909729004, -0.04699009656906128, 0.29279017448425293, -0.09543681889772415, -0.005778157152235508, 0.2133270502090454, 0.15032213926315308, -0.9809864163398743, 0.03593160957098007, 0.23510082066059113, 0.5841860175132751, -0.4694804847240448, -0.1221945732831955, -0.19082817435264587, 0.15382172167301178, 0.47122207283973694, -0.7341670393943787, -0.6873922348022461, -0.735636293888092, 0.20799826085567474, -0.5545041561126709, 1.0561332702636719, -0.3970724642276764, 0.7284930348396301, 0.6552299857139587, 0.009657197631895542, -0.4753035008907318, -1.0068058967590332, 0.3660348355770111, -0.3012502193450928, 0.3216458857059479, -0.3471258580684662, 0.06801556050777435, 0.5603521466255188, -0.8083605170249939, 2.7161557227373123e-05, 0.12969152629375458, -0.361832857131958, -0.1498095840215683, -1.408921718597412, -0.2432428002357483, -0.6891947984695435, 0.4357132017612457, 0.6584073305130005, 0.060239266604185104, 0.6793023347854614, -0.499919056892395, -0.703424334526062, 0.41027817130088806, 0.1789795458316803, 0.2830978035926819, 0.6116890907287598, 1.3623830080032349, 1.8860934972763062, 1.1128922700881958, 0.42588895559310913, -0.4421645402908325, 0.12991611659526825, 0.130050927400589, 0.08499003946781158, -0.44799983501434326, 0.30110323429107666, 0.18467149138450623], [0.4371892213821411, 1.661475658416748, -2.377044439315796, 0.4390822947025299, 0.41083505749702454, 0.43149980902671814, 1.0915685892105103, -0.26938384771347046, 0.04312105476856232, -0.11570963263511658, -0.2649323344230652, 0.13379725813865662, 0.40417569875717163, 1.014714241027832, 0.8458701372146606, 0.7697651386260986, 0.6814728379249573, -0.22779342532157898, 0.21059037744998932, 1.039236307144165, -0.4741603136062622, -0.5897632241249084, -0.02005842514336109, -0.34060534834861755, -0.31426265835762024, 0.19146370887756348, -0.7063599824905396, -0.6174733638763428, -1.048465609550476, -0.7137428522109985, 0.14647138118743896, -0.19227871298789978, -0.527122974395752, -0.39056140184402466, -1.7186384201049805, -0.23399761319160461, 1.6278035640716553, 1.3173900842666626, 1.0977520942687988, 0.27615660429000854, 1.6104474067687988, -0.46834462881088257, 0.28472191095352173, -1.0829124450683594, 0.3050652742385864, -0.7988900542259216, 0.36959347128868103, -0.17809665203094482, -0.2871244549751282, -0.35862281918525696, 0.41729283332824707, -1.3409096002578735, 0.5814599394798279, 0.8124227523803711, 0.7186456322669983, -0.7022855281829834, 0.18066386878490448, -0.4567066729068756, 0.8777095675468445, -0.3710193634033203, 0.6487497687339783, -0.05307704582810402, -0.46988385915756226, 1.0341495275497437, 0.5579055547714233, -0.06187267228960991, 0.22095996141433716, 0.3306306302547455, -0.30159732699394226, 0.26046961545944214, 0.4748038947582245, -0.012854378670454025, -0.1753428429365158, 0.30404430627822876, -0.5130133032798767, 0.6872198581695557, 0.4009963572025299, 0.9810280203819275, 0.8007071614265442, 0.8405884504318237, -0.9633296132087708, -0.180376335978508, 0.756813645362854, -0.5397700071334839, 0.3348028063774109, -0.24061895906925201, 0.8741122484207153, -0.3116324543952942, -0.3307711184024811, 1.7386689186096191, 0.24358788132667542, -0.36906954646110535, 0.9183807373046875, -0.3232983946800232, -0.17829686403274536, -0.8339889049530029, -0.1975134164094925, -0.2397598773241043, -0.8530336022377014, -0.8137603998184204, -0.45870134234428406, -0.5349097847938538, -0.23792116343975067, -0.26043835282325745, -0.3419091999530792, 1.1433820724487305, 0.7969372868537903, -0.12006743252277374, -0.2670154869556427, 0.0026922281831502914, 0.19829760491847992, 0.5430999994277954, -1.146454095840454, -1.3412840366363525, -0.6700453162193298, 0.970558762550354, 1.087365746498108, -0.5280541181564331, 0.18970049917697906, 0.6865212917327881, 0.25363609194755554, -0.3219020664691925, -0.11171522736549377, 0.37864965200424194, 0.24927058815956116, 1.1331727504730225, -0.8079249262809753, 0.25676319003105164, -0.02375662699341774, 0.0009640492498874664, 0.15273740887641907, 0.21464288234710693, -0.07928547263145447, 0.8806468844413757, -1.0242228507995605, 1.7097113132476807, -0.365975946187973, -0.3339317739009857, -0.1043371632695198, -0.24230210483074188, 0.3622063994407654, 0.44708016514778137, 0.05141008272767067, -1.1345990896224976, -0.3368745744228363, -0.37128281593322754, -0.19215427339076996, -0.7205889821052551, -0.3686985671520233, 0.3737620711326599, -0.8997673392295837, 0.5790573954582214, 0.14106270670890808, 1.1848739385604858, 0.5529177188873291, 0.1858493536710739, -0.19471928477287292, 0.3066311776638031, 0.5695321559906006, 0.005930006504058838, 0.3418267071247101, 0.23066379129886627, -0.9329491257667542, 0.11187565326690674, -0.21297621726989746, -0.4242057502269745, 0.022150307893753052, 0.7512807250022888, -0.18744884431362152, 0.7952163815498352, -0.4840039908885956, -0.41377753019332886, -0.330636590719223, 0.40070822834968567, -0.10162504017353058, -0.7479145526885986, 0.7683629989624023, -0.4016847312450409, -1.4263672828674316, -1.2533798217773438, -0.07613498717546463, -0.09672868996858597, 0.3619052469730377, -0.4220311641693115, 0.14334721863269806, -0.30255305767059326, 0.6996147632598877, -0.4001043140888214, -0.3976806104183197, -0.47888654470443726, -0.6166446805000305, 0.6016093492507935, -0.2601591944694519, 0.3710037171840668, -0.6538787484169006, -0.7318618893623352, 0.7859510779380798, -0.5887818932533264, -0.11752931028604507, -0.1477111130952835, -0.4510343074798584, -0.30054253339767456, -0.3582346737384796, 0.5556340217590332, 0.08668061345815659, 1.1731051206588745, -0.8745073676109314, 0.3442675471305847, -0.7724305987358093, -0.35157889127731323, 1.2108228206634521, -0.1530923843383789, -0.5705390572547913, 0.6110981106758118, 0.025684097781777382, -1.5276161432266235, -0.1752433031797409, -0.023386275395751, -0.06221776455640793, 0.4989790618419647, 0.09890661388635635, 0.2117273211479187, 0.6751031875610352, 0.1659744530916214, 0.4062251150608063, -0.47096678614616394, -0.6845802664756775, -0.3921346962451935, -0.5737864375114441, 0.0857492983341217, -0.3524564802646637, -1.3748337030410767, 0.4682644009590149, 0.08957680314779282, -1.0126110315322876, 0.1035998985171318, 0.4344770610332489, 0.3573513329029083, 0.5854697823524475, 1.0707626342773438, 0.4319927394390106, 0.4658239483833313, -0.9812319874763489, 0.38057827949523926, -0.6536182165145874, 0.3419554829597473, 0.593890905380249, -0.1805437058210373, -0.08294493705034256, 0.9323785305023193, 0.8893833756446838, 0.5137167572975159, 0.5069369673728943, -0.17978009581565857, 0.009607713669538498, -0.06359638273715973, -1.0874077081680298, -0.1758544147014618, 0.28619900345802307, 1.3957722187042236, 0.27721452713012695, -0.6236829161643982, -0.29633694887161255, -0.19882197678089142, -0.4772051274776459, -0.37521892786026, -0.6704486012458801, -0.029799705371260643, -0.01034353394061327, 0.2621167004108429, 0.0779096856713295, 0.8618874549865723, 0.10849738866090775, 0.5698651075363159, -0.8762120008468628, -0.622992217540741, -0.7174031138420105, 0.6214998960494995, 0.19030776619911194, 0.628092348575592, -0.06072033569216728, -1.2565935850143433, -0.2945958077907562, 0.05220484361052513, 0.8382187485694885, -0.3759606182575226, -0.3472156822681427, 0.41520100831985474, 0.5302926898002625, -0.8921688795089722, 0.2107401043176651, 0.34068185091018677, -0.5028267502784729, 0.15040242671966553, -0.10222359746694565, 0.6522201299667358, 0.8974140882492065, -0.01630724035203457, -0.33425506949424744, -0.8139417767524719, 0.48008573055267334, 1.2399760484695435, 0.6792740821838379, 1.4418091773986816, 0.05739225819706917, -0.12855663895606995, -0.0236519742757082, -0.7190611958503723, -0.5723891854286194, -0.8083822727203369, -0.6647385358810425, -0.527093768119812, -0.20947091281414032, 0.0720704197883606, 0.08346541225910187, 0.5338762998580933, -0.11794256418943405, -0.253262460231781, 1.5509215593338013, -0.1265431046485901, -0.3439299762248993, -0.010403095744550228, -0.24444012343883514, -0.974544882774353, 0.05765283852815628, 0.9072514176368713, -1.3117331266403198, -0.18551582098007202, 0.03327363729476929, -0.4674417972564697, 0.19447822868824005, -0.0787365734577179, 0.6011629104614258, -1.2586363554000854, -1.0817582607269287, -0.47783344984054565, 1.289231538772583, 0.3923042416572571, -0.2871851325035095, -0.5176385045051575, 0.41432225704193115, 0.6107416749000549, -0.247104212641716, -0.48044124245643616, 0.6038601994514465, -0.24586515128612518, -0.8610657453536987, 0.007407700642943382, 0.1665600687265396, 0.2338823825120926, -0.22317299246788025, -0.6015455722808838, -0.09627944976091385, -0.5406257510185242, 0.42384013533592224, 0.9199027419090271, -0.06352189183235168, 1.3293346166610718, 0.014895947650074959, -0.3137485086917877, 0.4385816752910614, 0.4184914231300354, 0.04449902102351189, -1.2170703411102295, 0.7283807992935181, 0.493449330329895, 1.3706642389297485, 0.4340198338031769, 0.054574184119701385, 0.21413195133209229, -0.0002613849937915802, 0.13069860637187958, 0.5049988031387329, 0.4924789369106293, -0.022370601072907448, -0.23039019107818604, -0.46931102871894836, -0.21866539120674133, 0.18829236924648285, -0.3355458080768585, -0.14457076787948608, 0.6026008725166321, -0.861447274684906, -1.1609327793121338, 1.055642008781433, 0.027626128867268562, -0.008997729048132896, -0.6053112149238586, -0.20952168107032776, 0.5811936855316162, -0.3414541780948639, 0.3574399948120117, -0.20358826220035553, 0.5044419169425964, 0.4978194534778595, -1.0510729551315308, -0.016618821769952774, 0.17188285291194916, 0.29461362957954407, 0.5328465104103088, -0.6570487022399902, 0.24897480010986328, -0.14083844423294067, 0.8856539130210876, 0.43799832463264465, 0.23236121237277985, 0.6470242738723755, 0.20653773844242096, -0.4633660614490509, -0.09267659485340118, 0.10749657452106476, 0.07792684435844421, -0.8950117230415344, 0.09793072938919067, 0.2956176996231079, 0.32262712717056274, -0.1435777097940445, -0.5233262181282043, -0.17879197001457214, 0.38163790106773376, -0.18786314129829407, 0.1246807798743248, -0.13753792643547058, -0.40042170882225037, 0.7493677735328674, 0.9072067737579346, 0.08976400643587112, 0.1978553682565689, 0.07125283777713776, -1.2068296670913696, 0.18475519120693207, 0.6339576840400696, -0.36049574613571167, -0.6806676983833313, 0.34871843457221985, -0.36035382747650146, -0.43686360120773315, 0.1992424726486206, 0.5986469388008118, 0.938836932182312, 0.5693086385726929, -0.46332621574401855, -0.20074142515659332, 0.19203856587409973, 0.9546746611595154, 0.9810627102851868, 0.21092489361763, -0.8134545087814331, -0.8297774791717529, 0.40151336789131165, -0.6760917901992798, -0.07653128355741501, 0.8808324933052063, 0.34542855620384216, 1.2920444011688232, -1.2061368227005005, -0.08704029023647308, 0.5315240621566772, 0.12776505947113037, 0.5322477221488953, 0.6203988194465637, -0.45033901929855347, -0.2997923195362091, 0.5567781329154968, 0.49005141854286194, 0.14920254051685333, -0.702275276184082, 0.6335280537605286, -0.04760773107409477, 0.2174171358346939, -0.7534719109535217, 0.3854354918003082, -0.6209215521812439, -0.09526975452899933, 0.06392918527126312, -0.7872578501701355, -0.42356038093566895, 0.661830484867096, 0.67030930519104, 1.672114610671997, -0.26714888215065, -0.9562767148017883, -0.12698979675769806, -0.7435645461082458, 0.6222596764564514, 0.0844985842704773, -0.5000082850456238, -0.4867739677429199, -0.3540239632129669, -0.42771607637405396, 0.5748295783996582, -0.16359412670135498, -0.2470172792673111, -0.4738348126411438, -1.345848560333252, 0.3574772775173187, 0.8106135725975037, 1.2332426309585571, 0.5869881510734558, -0.29161596298217773, 0.161491259932518, 0.3053204417228699, -0.6484389901161194, -0.6270902752876282, 0.4774293899536133, -0.35127881169319153, 0.4939759075641632, -0.7401362657546997, -0.5383473038673401, 0.8327235579490662, 0.5009738206863403, 0.2040737271308899, 0.8748100996017456, 0.9697779417037964, 1.2656339406967163, -0.6741951107978821, -0.1288994699716568, 0.3018859028816223, -0.525715708732605, 0.8194592595100403, 0.9401716589927673, -0.36017000675201416, -0.4693034291267395, -0.7152533531188965, -1.4119716882705688, 0.5099008679389954, 0.24681851267814636, -0.9435713887214661, 0.956038773059845, 0.4957013726234436, 0.814041018486023, 0.21577902138233185, -0.9194790124893188, 0.23743796348571777, 0.0501774400472641, -0.41961637139320374, -0.9415938258171082, 0.47470447421073914, -0.33107802271842957, -0.25438058376312256, -0.21866855025291443, -0.17223945260047913, 0.24514201283454895, -0.04042484238743782, -0.02235446684062481, 0.6371036171913147, -0.05254777893424034, 0.9037451148033142, 0.3339006304740906, -0.31093379855155945, 0.5304771661758423, -0.04705040156841278, -0.35868266224861145, -0.3089483082294464, 0.4787878692150116, 0.30085891485214233, 0.4943445920944214, -0.20399776101112366, -0.42484021186828613, -0.007543323561549187, -0.2042694091796875, -0.03328153118491173, 0.5497735142707825, 0.6584165692329407, -0.08431144803762436, -0.021221421658992767, -0.32552579045295715, 0.2018585205078125, -0.5945561528205872, 0.7094797492027283, 0.2629420757293701, -1.0615078210830688, 0.08078254014253616, 0.09836665540933609, -0.9894396662712097, -0.23817184567451477, -0.39305946230888367, -0.6180911064147949, -1.0855122804641724, -1.5457336902618408, -0.31908440589904785, -0.09306056797504425, 0.6090816855430603, -0.5967820286750793, 1.1215558052062988, 0.035524286329746246, -1.4591526985168457, 0.2037203311920166, 0.5590826272964478, -1.074808955192566, -0.07727965712547302, -1.2719531059265137, 0.43240708112716675, -0.2777896225452423, 0.5564407110214233, -0.28843769431114197, 0.5763048529624939, -1.6420472860336304, -1.3666218519210815, -0.8084135055541992, 0.2123420387506485, 0.671782910823822, 0.7060073018074036, -1.612524151802063, 0.7899671792984009, 0.8435255885124207, -0.36969003081321716, 0.030210062861442566, 0.4296652674674988, -0.30682677030563354, -0.09640088677406311, 0.2678671181201935, 0.7206534147262573, -0.13344472646713257, 1.0331580638885498, 0.22044873237609863, 1.2353973388671875, -0.2750314474105835, 1.0865484476089478, -1.2205601930618286, -0.3856698274612427, 0.30084899067878723, 0.5298942923545837, -1.2955418825149536, -0.6948431134223938, -0.11959651112556458, -0.26591306924819946, -0.8562793135643005, 0.3797209858894348, 0.571865439414978, -0.6599071621894836, -0.25379815697669983, -0.33871597051620483, 0.3806435167789459, -1.0420018434524536, 0.482755184173584, -0.09194725751876831, -0.12494951486587524, -0.480916291475296, 0.30774763226509094, -0.3562864363193512, -1.1270439624786377, 0.1445922702550888, -0.04760837182402611, 0.14439469575881958, -0.9900294542312622, 0.7614049911499023, 0.7573586702346802, 0.4789404571056366, -0.3028312623500824, 1.2117618322372437, 0.5216541886329651, -0.179103821516037, -0.11364976316690445, 0.4015950858592987, -0.44655001163482666, 0.1517186462879181, -0.5233114361763, 0.11906398832798004, -0.7370035648345947, 1.537969946861267, -0.10588452965021133, 0.4885120391845703, 0.31519797444343567, 0.25051024556159973, -0.410075843334198, -0.3425499498844147, 0.5939905047416687, -0.9059080481529236, -0.3726997971534729, 1.1064763069152832, 0.4960612952709198, -0.46245548129081726, 0.12787029147148132, 0.35777202248573303, -0.3807660639286041, -0.049292560666799545, 0.44424110651016235, -0.21451584994792938, -0.4303479492664337, 0.564553439617157, 0.30987682938575745, -0.11934223771095276, -0.17577610909938812, 0.14255918562412262, -1.825958251953125, 0.13584524393081665, -0.41399314999580383, -0.6693063378334045, 0.4158373475074768, -0.9596218466758728, -0.7608426809310913, 0.06580043584108353, 0.05690750852227211, -0.27850228548049927, -0.1946936994791031, 0.477571964263916, 0.008359253406524658, -0.03535822033882141, 0.4755600392818451, -0.012189868837594986, 1.4024494886398315, 0.1830274611711502, -0.24949993193149567, -1.156387448310852, 0.1500949263572693, 0.3598109185695648, 0.1107136532664299, 0.04048994556069374, -0.024326682090759277, 0.9319244027137756, -0.32510799169540405, -1.01283597946167, 0.06049709767103195, 0.5445852279663086, 0.0138467475771904, 0.13379992544651031, -1.1400699615478516, 0.4683956503868103, -0.13494716584682465, 0.6577787399291992, -0.47631338238716125, -0.6995625495910645, -1.308873176574707, 0.4504767656326294, -0.9445080757141113, 0.6183815598487854, -0.7028379440307617, 0.611778974533081, 0.20173482596874237, -0.26921355724334717, -0.6555708646774292, -0.15796594321727753, 0.393005907535553, 0.28789809346199036, 0.3272627592086792, -0.04849543049931526, 0.12781834602355957, -0.23126724362373352, -0.8741311430931091, 0.04785434529185295, 0.07218607515096664, -0.38547563552856445, 0.3842359185218811, -0.7224684953689575, -0.3608620762825012, -0.7992913722991943, -0.10928227007389069, 0.6461933255195618, 0.44951120018959045, 0.011118941009044647, -0.008386585861444473, -0.6791984438896179, 0.5058708190917969, 0.3458971083164215, -0.6111077070236206, 0.37252140045166016, 0.7528018951416016, 1.8859293460845947, 0.2795872986316681, 0.0951385647058487, -0.6044660806655884, 0.8467651009559631, -0.8547964096069336, 0.12199213355779648, -0.20033268630504608, -0.13441133499145508, -0.6853039860725403], [0.16964071989059448, 1.8087329864501953, -2.1003708839416504, 0.48055529594421387, 0.1500793993473053, -0.24084866046905518, 1.3481035232543945, -0.025276601314544678, 0.72078937292099, -0.09927290678024292, -0.726832389831543, 0.49737849831581116, -0.01966826617717743, 0.6371602416038513, 1.1589182615280151, 0.7665383815765381, 0.8964208364486694, -0.45015937089920044, 0.04596148431301117, 1.2614054679870605, -0.15021660923957825, -0.3835768699645996, 0.11679317057132721, 0.14894956350326538, -0.23698875308036804, -0.12599633634090424, -1.4537876844406128, -0.4924183785915375, -0.8973240256309509, -1.3198026418685913, 0.6310990452766418, 0.03347969800233841, 0.4641519784927368, -0.36130449175834656, -1.2102117538452148, -0.33387207984924316, 1.4489705562591553, 1.4693639278411865, 0.09379153698682785, 0.2362402081489563, 1.359776496887207, -0.4655451774597168, 0.036294907331466675, -0.6645522713661194, -0.5852607488632202, -0.48633983731269836, 0.8029193878173828, -0.06085900962352753, -0.4950172007083893, -0.29481789469718933, 0.49961531162261963, -1.3885595798492432, -0.4144173264503479, 1.0979326963424683, 1.394710898399353, -0.9696651697158813, 0.32250645756721497, 0.15262678265571594, 0.30418261885643005, -1.1794036626815796, 1.2922505140304565, 0.5151392221450806, -0.3838660717010498, 1.5636013746261597, -0.23208041489124298, -0.5177545547485352, -0.05229515582323074, 0.4914388358592987, -0.1463841050863266, -0.5125053524971008, -0.06582478433847427, 0.5445309281349182, -0.05052333325147629, 0.1949596405029297, -0.46227502822875977, 0.025785358622670174, -0.07270393520593643, 0.34576717019081116, 0.8670571446418762, 0.7637959122657776, 0.2636324167251587, -0.8110381960868835, 0.5403555035591125, 0.37987178564071655, 0.7356879115104675, 0.012035280466079712, 0.7352867722511292, -0.7137092351913452, -0.40099194645881653, 1.5525189638137817, -0.18636736273765564, -0.09766384959220886, 0.5953363180160522, -0.8279551863670349, -0.3666329085826874, -1.0598417520523071, 0.6296729445457458, 0.05143103748559952, -0.6410656571388245, -0.15588296949863434, -0.665740430355072, -0.5529899597167969, 0.4486469328403473, 0.27978408336639404, -0.49817386269569397, 1.0192334651947021, -0.0008606761693954468, -0.03568359464406967, -0.1211695671081543, -0.4964195787906647, 0.2151389718055725, 0.6969554424285889, -0.771765947341919, -1.485349178314209, -0.5411820411682129, 1.324845552444458, 1.085733413696289, 0.4566154181957245, 0.6419413089752197, 1.448151707649231, -0.33985376358032227, -0.28816166520118713, 0.042658731341362, 0.8296628594398499, 0.27544909715652466, 0.7348078489303589, -0.3389267325401306, -0.41371962428092957, 0.10866530239582062, 0.6099714636802673, 0.07430922985076904, -0.08934736251831055, -0.6910017728805542, 1.0187057256698608, -1.3734341859817505, 1.3225133419036865, -0.24393947422504425, -1.0631431341171265, -0.4041518568992615, -0.5309149026870728, 0.7780773639678955, 0.28723931312561035, -0.5380660891532898, -0.2712860405445099, -0.3004246652126312, -0.9934999346733093, 0.5753251910209656, -0.19090525805950165, 0.060724370181560516, 1.0098559856414795, -0.7569581866264343, 0.24021729826927185, 0.007956672459840775, 1.0571630001068115, 0.28254860639572144, -0.16335906088352203, 0.3204261362552643, 0.2622915804386139, 0.7096168398857117, 0.06347128003835678, 0.9138952493667603, -0.2349383682012558, -0.3719066083431244, 0.42177826166152954, 0.23321717977523804, -0.43539339303970337, -0.4800085723400116, 1.242316722869873, -0.40055370330810547, 0.5190547108650208, -0.15423379838466644, -0.41464728116989136, -1.1702167987823486, 0.2942805290222168, 0.30269408226013184, 0.01707616075873375, 0.9913226962089539, -0.3588029444217682, -1.3655935525894165, -0.8288804888725281, 0.2483581304550171, -0.9532842636108398, 0.11025052517652512, -0.3161747455596924, 0.6817529797554016, -0.3090403378009796, 0.5427478551864624, -0.33860138058662415, -0.21294669806957245, -0.7854105234146118, -0.520114541053772, -0.2144685536623001, -0.25614774227142334, -0.0047529712319374084, -0.5219923257827759, -0.46077612042427063, 0.7119411826133728, -1.335326075553894, -0.16432245075702667, 0.2255399376153946, -0.22844283282756805, -0.00657765194773674, -0.9926515817642212, 0.7182455062866211, -0.24203430116176605, 1.3803484439849854, -0.869573175907135, 0.7049490809440613, -0.935786783695221, -0.6601335406303406, 1.142117977142334, -0.6481011509895325, -0.5629966259002686, 0.7089987397193909, -0.12488185614347458, -1.1520437002182007, -0.18542274832725525, 0.2860957682132721, -0.8146553039550781, 0.19337014853954315, 0.28247779607772827, 0.49310922622680664, 0.720527172088623, 0.24454151093959808, 0.14074186980724335, -0.8719526529312134, -0.9428512454032898, -0.2836710214614868, -0.5676764249801636, 0.05822908133268356, -0.27744656801223755, -1.156986117362976, 0.36002472043037415, 0.4892790913581848, -0.6873393654823303, -0.2432514727115631, -0.20597118139266968, 0.6406943798065186, 0.3885442614555359, 0.8668470978736877, 0.6284077167510986, 0.587081789970398, -0.98396897315979, -0.18922476470470428, -0.6053914427757263, 0.8623576760292053, 0.6114798784255981, -0.64439857006073, -0.029718760401010513, 0.8567363023757935, 0.9991704821586609, -0.2812860608100891, 0.9975210428237915, -0.6980780959129333, -0.32712769508361816, -0.5880710482597351, -1.0634865760803223, 1.088967204093933, -0.35931164026260376, 2.0656464099884033, 0.7637923359870911, -0.2458246350288391, 0.2044329196214676, 0.11039505898952484, -0.6665406823158264, -0.16228558123111725, -0.36591702699661255, 0.10512465238571167, 0.06488289684057236, 0.013028142973780632, -0.27110692858695984, 0.873386800289154, -0.20471279323101044, 1.0669703483581543, -0.20789006352424622, -0.3905165493488312, -0.3591233789920807, -0.036921147257089615, -0.43270331621170044, 1.0339409112930298, -0.029896389693021774, -1.9605504274368286, 0.16525958478450775, -0.0684768483042717, 0.5012518167495728, 0.025663644075393677, -0.3464038372039795, -0.14522574841976166, 0.015038056299090385, -0.7474105954170227, 0.42059841752052307, -0.19490422308444977, -0.5416558980941772, 0.4485936760902405, -0.1627654731273651, 0.585688591003418, 1.4261969327926636, 0.12678781151771545, -0.7108253240585327, 0.4136185348033905, 0.5077191591262817, 1.1301099061965942, 0.3618898093700409, 1.9344409704208374, 0.2764820158481598, 0.1145251989364624, 0.14294548332691193, -0.384490966796875, -0.5012343525886536, -0.3398340344429016, -0.8043444156646729, -0.37459462881088257, -0.3727567493915558, -0.028680123388767242, 0.4970111846923828, 0.3380052149295807, -0.3731667101383209, 0.26281046867370605, 1.4222906827926636, -0.25368914008140564, 0.027437938377261162, 0.4913802742958069, -0.4648182988166809, -0.21809259057044983, -0.06202172487974167, 1.2546194791793823, -1.555580496788025, -1.1177922487258911, -0.6117189526557922, -0.17310954630374908, 0.4137072265148163, 0.39603057503700256, 0.47820109128952026, -1.8586262464523315, -0.18429051339626312, -0.06923957169055939, 1.4649626016616821, -0.30486437678337097, -0.3436213731765747, -0.31000274419784546, 0.6639275550842285, 0.5069193243980408, -0.295620858669281, -0.9062937498092651, 1.0753120183944702, -0.5099593997001648, -0.809082567691803, 0.21427546441555023, 0.028660405427217484, 0.835983395576477, -0.2755613625049591, -0.5723914504051208, -0.497967928647995, -0.2926616072654724, -0.24312162399291992, 0.8415325284004211, -0.5545403361320496, 1.3205558061599731, -0.15928055346012115, -0.307279497385025, 1.141495943069458, 0.09910255670547485, -0.11937222629785538, -1.2309141159057617, 0.8388156890869141, 0.577541172504425, 1.2552733421325684, 0.02617824636399746, 0.2589597702026367, 0.5296921133995056, 0.5259206891059875, 0.2968601882457733, 0.2403491884469986, 0.24617648124694824, 0.33867573738098145, 0.15305481851100922, -0.30778905749320984, 0.009305279701948166, 0.0343954935669899, -0.24298781156539917, -0.6057559251785278, 0.3394283950328827, -1.1302465200424194, -0.6923458576202393, 0.8981423377990723, 0.6407791972160339, -0.263761967420578, -0.2042657881975174, 0.028920574113726616, 0.47667092084884644, -0.23646226525306702, 0.25632137060165405, 0.13243387639522552, 0.222011536359787, 0.4803871512413025, -1.3372063636779785, -0.2301950454711914, -0.24584586918354034, 0.7878198623657227, 0.3346104323863983, -0.43320855498313904, 0.43334445357322693, -0.8315050005912781, 0.5926177501678467, 1.0638362169265747, -0.35968464612960815, 0.024311039596796036, 0.10639726370573044, -0.3382055163383484, -0.12101203948259354, -0.29682183265686035, 0.5022391676902771, -1.156610369682312, 0.6522785425186157, 0.7312130928039551, -0.11958813667297363, -0.19351302087306976, 0.20025697350502014, -0.09327125549316406, 0.11382156610488892, -0.042100995779037476, -0.03599421679973602, 0.6504551768302917, -0.09169971197843552, 0.9675687551498413, 0.3526918888092041, 0.29354992508888245, 0.36408716440200806, -0.15328311920166016, -0.6101875901222229, -0.2834574580192566, 0.5524648427963257, -0.21408428251743317, -0.5966965556144714, -0.4909312427043915, 0.018379515036940575, -0.23501837253570557, 0.45970988273620605, 0.11592945456504822, 0.7275484800338745, 0.3687524199485779, -0.12560534477233887, 0.23044320940971375, 0.7938750982284546, 0.6626054644584656, 0.515992283821106, -0.029535606503486633, -0.8121135830879211, -0.4429216980934143, -0.19968369603157043, -1.0402061939239502, 0.4006262719631195, 0.7268728017807007, -0.26287710666656494, 1.0869970321655273, -1.0774421691894531, 0.23147831857204437, 0.5507953763008118, 0.23697611689567566, -0.04624622315168381, 0.7386329174041748, -0.615355908870697, -0.12280287593603134, 0.4576115310192108, -0.06130251660943031, -0.001531217247247696, 0.14882014691829681, 0.28123748302459717, -0.19528329372406006, 0.8360937237739563, -1.0471971035003662, 0.9366066455841064, -0.6111885905265808, -0.1708795428276062, 0.37303441762924194, -1.2477778196334839, -0.21147547662258148, 0.4767462909221649, 0.27527934312820435, 1.3362940549850464, -0.0530761294066906, -1.0407487154006958, 0.14382590353488922, -0.886857271194458, 0.4837352931499481, -0.5386009812355042, -0.27441489696502686, -0.5359538793563843, 0.695076584815979, -0.38219401240348816, 0.4714009165763855, -0.6908320188522339, -0.5321381688117981, -0.4959850013256073, -0.9852457046508789, 0.9391836524009705, 0.003517303615808487, 0.9820966720581055, 0.07497451454401016, -0.13458716869354248, -0.22615382075309753, 0.68418288230896, -0.8950535655021667, -1.0067052841186523, -0.13936056196689606, -0.2545674741268158, -0.09298191964626312, -0.9546273946762085, -0.939801812171936, 0.49531224370002747, 0.7686123847961426, -0.014107641763985157, 0.7835441827774048, 0.9610475301742554, 1.02191162109375, -0.1755097657442093, -0.28178444504737854, 0.3858630359172821, -0.7656083703041077, 0.8291869163513184, 0.6315315961837769, -0.6828770637512207, -0.7941218614578247, -1.0289608240127563, -1.5237584114074707, 0.10742682218551636, 0.3131157457828522, -0.2453080266714096, 0.8019533753395081, 0.9169982075691223, 0.6620954871177673, 0.6583186984062195, -1.0514955520629883, 0.796353816986084, -0.31305181980133057, -0.4924745559692383, -1.022398829460144, 0.8493673801422119, 0.245688796043396, 0.08288397639989853, 0.0882415920495987, 0.11485666036605835, -0.04064588248729706, 0.16747534275054932, -0.5598440766334534, 0.3232417702674866, -0.17310965061187744, 0.7500583529472351, 0.4326140880584717, -0.5338596105575562, -0.27049893140792847, -0.15833507478237152, -0.41193488240242004, 0.09936242550611496, 1.0877643823623657, -0.15220382809638977, -0.10109247267246246, -0.12383625656366348, -0.43520423769950867, -0.8314250111579895, -0.09834383428096771, 0.036610621958971024, 0.8029133081436157, 0.2554614245891571, -0.3130165636539459, -0.2376919537782669, 0.006044899113476276, 0.10066141188144684, -0.3899400234222412, 0.446438193321228, -0.003179578110575676, -1.1816388368606567, 0.02450948767364025, 0.11321066319942474, -1.4310225248336792, 0.14839909970760345, -0.0012575555592775345, -0.023103198036551476, -0.9160915017127991, -0.2665027379989624, -0.35911110043525696, 0.7176712155342102, 0.7003220319747925, -0.7021201848983765, 0.988652229309082, 0.4564906358718872, -1.352723240852356, 0.354787141084671, -0.15318302810192108, -1.0424630641937256, -0.054669104516506195, -1.6389871835708618, 0.3414281904697418, 0.19769926369190216, 0.3684796392917633, -0.4154515862464905, 1.0081894397735596, -1.5256364345550537, -1.4554299116134644, -1.0271693468093872, -0.36067962646484375, 0.45277321338653564, 0.27415040135383606, -0.5176281929016113, 1.1686782836914062, 0.5449267625808716, 0.17598840594291687, 0.045024897903203964, 0.27438992261886597, -0.31704628467559814, 0.2557905316352844, -0.16195915639400482, 0.4661805033683777, 0.06895134598016739, 0.759885311126709, 0.46328333020210266, 1.4023127555847168, 0.5421357154846191, 1.2283806800842285, -0.3949012756347656, -0.1447475552558899, 0.44319042563438416, 0.880692720413208, -0.6553614735603333, -0.9040178656578064, -0.21801215410232544, -0.6060102581977844, -0.5764946341514587, -0.04237984120845795, 0.980894148349762, -0.38679978251457214, -0.2737031579017639, -0.9100595712661743, 0.22554579377174377, -1.1261426210403442, 0.6453942060470581, 0.07656987011432648, -0.7106634378433228, -0.45270153880119324, 0.18101206421852112, -0.5335851311683655, -1.1189275979995728, 0.8399783372879028, 0.1683952957391739, 0.17788070440292358, -0.16750667989253998, 0.1414743810892105, 0.7866438627243042, 0.6413046717643738, -0.3389659523963928, 1.3059985637664795, 0.7800137996673584, -0.5407989025115967, 0.19906964898109436, -0.009496217593550682, -0.04779898375272751, 0.07034644484519958, -0.276422917842865, -0.3891349136829376, -0.985923707485199, 1.5889098644256592, 0.05810752511024475, -0.12181761860847473, -0.16692626476287842, 0.4067413806915283, -0.4569433331489563, 0.36077600717544556, 0.7321374416351318, -0.868658185005188, -0.5122712850570679, 1.2133551836013794, 0.13824236392974854, -0.32766053080558777, 0.053702212870121, 1.0807276964187622, 0.49740898609161377, -0.27299004793167114, 0.8698464632034302, 0.14341400563716888, -0.3837226927280426, 0.37198784947395325, 0.4535355269908905, -0.36457279324531555, -0.3194557726383209, -0.2654847204685211, -1.7386127710342407, 0.1875743418931961, -0.24596722424030304, -0.3460833728313446, 0.21277445554733276, -0.9365700483322144, 0.28029027581214905, -0.07227275520563126, -0.1048697903752327, -0.0628601536154747, -0.6860615611076355, 0.5299781560897827, 0.14723138511180878, -0.09822981059551239, 0.9285416007041931, -0.269868940114975, 1.0188956260681152, -0.389515221118927, -0.21406900882720947, -1.1964490413665771, -0.3034375011920929, 0.45949965715408325, 0.36074453592300415, -0.5697444081306458, -0.5126021504402161, 0.2355891466140747, -0.4084082543849945, -0.608372688293457, 0.16172054409980774, 0.05570926517248154, -0.08446059376001358, -0.028569497168064117, -0.4507899582386017, 0.7574905753135681, 0.1039654091000557, 1.0284929275512695, -0.27184000611305237, -0.8252476453781128, -1.5178028345108032, -0.07275797426700592, -0.7185291647911072, 0.6360499858856201, -0.7540556788444519, 0.8976358771324158, -0.3850758671760559, -0.6675633192062378, -0.8168294429779053, 0.011008365079760551, 0.5773962736129761, -0.3991173207759857, -0.0703553780913353, 0.08454803377389908, -0.3603816628456116, -0.3130505084991455, -0.5462077260017395, -0.3784081041812897, 0.2761595547199249, -0.4949454069137573, -0.4111776053905487, -1.060793399810791, -0.8498801589012146, -0.4753694534301758, -0.3041377365589142, 0.2725279927253723, 0.19565264880657196, -0.4718594551086426, 0.024313878268003464, -1.3019295930862427, 0.3566705286502838, 0.7794368863105774, -0.48759403824806213, -0.239914208650589, 0.6637928485870361, 1.8691246509552002, 0.754636287689209, -0.23935823142528534, -0.4538026452064514, 0.6921001672744751, -0.6336439251899719, 0.4950255751609802, -0.5543743371963501, -0.29912713170051575, -0.12006790190935135], [1.0265713930130005, 1.2988357543945312, -1.9630874395370483, -0.8684037327766418, 1.0550103187561035, 0.05741391330957413, 0.6848853230476379, 0.42285221815109253, 0.6766619682312012, -0.1438523828983307, -0.07449661195278168, 0.25041449069976807, 0.01943167671561241, 0.4046814739704132, 0.11508386582136154, 0.5951837301254272, 0.4377799928188324, -0.014857138507068157, 0.4468476474285126, 1.0791759490966797, -0.06259205937385559, 0.07350778579711914, -1.151248574256897, -0.3391522169113159, -0.12105652689933777, 0.6847845315933228, -1.1128573417663574, -0.9127162098884583, -0.7997570037841797, -0.9482263922691345, 0.959048330783844, -0.6338499188423157, 0.33755576610565186, 0.07139619439840317, -1.686341404914856, -0.8424094319343567, 2.18190860748291, 0.9279414415359497, 0.8122764825820923, 0.06709219515323639, 1.8197193145751953, 0.9020946025848389, 0.2147279530763626, -1.4888343811035156, -0.5801969766616821, 0.30776527523994446, 0.7670020461082458, -0.2098369598388672, -0.3436278700828552, -0.4125193953514099, 0.800575852394104, -0.9773531556129456, 1.0385011434555054, 1.0867921113967896, 1.0698059797286987, -0.38396817445755005, -0.28016483783721924, 0.29141920804977417, -0.07045245915651321, -0.3898068964481354, 1.217696189880371, 0.2255050539970398, -0.4964981973171234, -0.0013892101123929024, 0.5415536165237427, 0.5680484771728516, -0.34337520599365234, 1.048764705657959, -0.20473788678646088, 0.03768007457256317, 0.7920118570327759, 0.021772926673293114, -0.5735707879066467, 0.4450911283493042, -0.7373210191726685, 0.0923890769481659, 0.4335922300815582, 0.8262937664985657, 0.7582465410232544, 0.3368242383003235, -0.6940403580665588, 0.294460654258728, 1.100799798965454, -0.17683158814907074, 0.2806892991065979, 0.028469422832131386, 0.2432330697774887, -0.9524309635162354, -0.08688786625862122, 1.6066803932189941, 0.21096661686897278, -0.31897205114364624, 0.22427688539028168, -0.6559147834777832, -0.4548935294151306, -0.49965423345565796, -0.22059768438339233, -1.0322805643081665, -0.2593673765659332, -0.6138303279876709, -1.2880862951278687, -0.5702994465827942, 0.5614213347434998, 0.7226243019104004, -0.48873990774154663, 1.281026840209961, 0.13319401443004608, -0.16527077555656433, -0.06753554940223694, -0.12085410952568054, -0.3331363797187805, 0.49952083826065063, -0.4308222234249115, -0.4465330243110657, -0.6464051008224487, 0.6221963167190552, 1.0011438131332397, -0.26158639788627625, 0.5319538712501526, 1.3904955387115479, -0.21197646856307983, 0.38474342226982117, -0.008584782481193542, 1.2175146341323853, 0.6770693063735962, 0.04765678942203522, -0.5565014481544495, -0.5479589104652405, 0.22599440813064575, -0.02943972870707512, 0.1842079907655716, -0.1313861757516861, -0.02285715751349926, 0.8042548298835754, -0.861617386341095, 1.308961272239685, 1.0722512006759644, -0.5074794292449951, -0.19597387313842773, -0.27348944544792175, 0.7000599503517151, 0.49482837319374084, 0.2954525053501129, -0.5307591557502747, 0.0339740514755249, -0.4925611913204193, 0.23243503272533417, -0.46445751190185547, -0.18170595169067383, -0.08780205249786377, -0.8857592344284058, 0.3624020516872406, 0.6005657911300659, 0.7971190810203552, -0.037774525582790375, -0.5094061493873596, -0.04465842992067337, 0.15709738433361053, 0.6355037093162537, 0.4763838052749634, 0.674909770488739, 0.4943964183330536, -0.7210289239883423, 0.9614742398262024, 0.2855105698108673, -0.010274237021803856, -0.02139141783118248, 0.9892739057540894, -0.31904974579811096, 1.0293370485305786, -1.2486698627471924, -0.49018800258636475, -0.46137872338294983, 0.6082634329795837, 0.8488622903823853, -0.325333833694458, 0.9818862080574036, -0.7416130900382996, -0.6113576889038086, -0.8965169191360474, 0.10089237242937088, 0.24298934638500214, 0.2109302282333374, 0.1256994754076004, 0.4643966257572174, -0.02653077058494091, 0.5180396437644958, -0.4085516333580017, -0.8338565826416016, -0.2300381362438202, -0.8530719876289368, 0.02014511078596115, -0.9915371537208557, 0.08354529738426208, -0.13532279431819916, -1.4983465671539307, 0.5194792151451111, -0.4255533516407013, -0.47130122780799866, 0.29686301946640015, -0.4190240502357483, 0.0322527252137661, -0.7903493642807007, 0.13828204572200775, -0.4945066571235657, 0.4208129942417145, -0.9623398184776306, 0.7631092071533203, -0.5358502268791199, -0.8475840091705322, 1.3031466007232666, -0.5070783495903015, -0.2417422980070114, 0.8316280245780945, 0.20137928426265717, -1.2379505634307861, 0.0837085023522377, -0.12483840435743332, -0.2751618027687073, -0.05039871484041214, 0.536145031452179, 0.51994389295578, 0.7178793549537659, -0.07412255555391312, 0.4171407222747803, -0.2850185036659241, -0.9636320471763611, -0.472010999917984, -0.38751235604286194, -0.12325498461723328, -0.6377739906311035, -1.5091814994812012, 0.6820679903030396, 0.23233939707279205, -1.2219640016555786, 0.0914604440331459, 0.233302041888237, -0.14598695933818817, 0.4605691730976105, 0.7392474412918091, 0.24273070693016052, 0.7704150080680847, -0.36791253089904785, 0.14114710688591003, -0.7917750477790833, 0.6814773082733154, 0.5235626101493835, -1.0799695253372192, 0.12192828208208084, 1.5883452892303467, 0.26164647936820984, 0.25578996539115906, 0.611370861530304, -0.5388018488883972, -0.054259367287158966, -0.38056680560112, -1.116823434829712, 0.4305460453033447, -0.27239933609962463, 1.8422330617904663, 1.1486124992370605, -0.5384798645973206, -0.590757429599762, -0.011825289577245712, -0.2565137445926666, -0.5462576150894165, -0.5262762308120728, -0.0866987407207489, 0.02186044119298458, 0.07803867012262344, -0.3791249990463257, 0.20796160399913788, -0.20677441358566284, 1.6831300258636475, -0.1859912872314453, 0.024106601253151894, -0.7326958775520325, 0.6494251489639282, -0.20678357779979706, 0.729650616645813, -0.285645067691803, -0.477749228477478, -0.3300309479236603, -0.31455573439598083, 1.1787781715393066, 0.4085293114185333, -0.022020064294338226, -0.05909907817840576, 0.17156435549259186, 0.122145876288414, 0.6222812533378601, 0.5714290142059326, -0.02963888831436634, 0.5019674301147461, 0.3493589460849762, 0.07656343281269073, 0.6070566177368164, -0.3248133659362793, -0.6203020811080933, -0.30139437317848206, 0.5148451328277588, 1.0494319200515747, 0.7183380722999573, 1.5617305040359497, 0.31295502185821533, 0.05293911695480347, -0.3562440872192383, -0.26730045676231384, -0.46783021092414856, -0.6781511902809143, -1.1120567321777344, -0.3642890155315399, -0.07021666318178177, -0.4074589014053345, 0.045191437005996704, 0.4982178211212158, -0.007740661036223173, 0.781615138053894, 1.2810986042022705, -0.36514711380004883, -0.09964755922555923, 0.1054634228348732, -0.13682247698307037, -0.9675237536430359, 0.5955081582069397, 0.6281548142433167, -1.201802372932434, -0.165361225605011, -0.7606644630432129, -0.05579758808016777, 1.077562689781189, -0.2840285301208496, 0.4234907031059265, -0.9182655215263367, -0.5677887797355652, -0.2435835897922516, 0.5975106954574585, -0.21833091974258423, -0.13683505356311798, -0.3353038728237152, 0.8849040865898132, -0.13229216635227203, 0.3450549244880676, -0.5642660856246948, 0.9437929391860962, -0.1328084021806717, -1.4474883079528809, -0.4421032667160034, 0.27477768063545227, 0.6443847417831421, 0.08267034590244293, -0.6725403070449829, -0.3565506637096405, -0.6164854168891907, -0.33138507604599, 0.5143440961837769, 0.1038111001253128, 0.7901151776313782, 0.007622247561812401, -0.3215448260307312, 0.5194710493087769, -0.19855360686779022, -0.10118763148784637, -1.3163599967956543, 0.4099932312965393, 0.903086245059967, 0.9359801411628723, -0.37302789092063904, 0.25184017419815063, 0.28809139132499695, 0.37454134225845337, 0.06149206683039665, 0.1297704577445984, 0.30396389961242676, 0.09007315337657928, -0.20898720622062683, -0.13711217045783997, 0.5252671837806702, -0.28344225883483887, -0.5570153594017029, -0.07518544793128967, 0.5035459995269775, -0.6790057420730591, 0.015536647289991379, 1.038894772529602, 0.348623126745224, 0.05545475706458092, -0.2706478238105774, -0.07464048266410828, 0.49819645285606384, -0.2064567655324936, -0.03919190913438797, -0.8983950018882751, -0.14155562222003937, 0.5374558568000793, -1.3025946617126465, -0.7485756874084473, 0.2697877287864685, 0.2755616009235382, 0.24191094934940338, -1.2449407577514648, 0.18197885155677795, 0.2588995099067688, 1.1896240711212158, 0.39347043633461, 0.4626907408237457, 0.3108677268028259, 0.19988636672496796, 0.8527084589004517, 0.09880603849887848, 0.29688748717308044, 1.0802578926086426, -0.8608282804489136, 0.024670129641890526, 0.09854456782341003, 0.23683558404445648, 0.08143393695354462, -1.0730446577072144, 0.3411791920661926, 0.004360114224255085, 0.35105010867118835, -0.21241210401058197, -0.19783170521259308, -0.5166736245155334, 1.0853720903396606, 0.563401460647583, 0.661439836025238, 0.2778666913509369, -0.05604124814271927, -0.36322009563446045, -0.0404045544564724, 0.36143508553504944, -0.14044901728630066, -0.5658270120620728, -0.13236214220523834, 0.5841584205627441, -0.09587216377258301, 0.3857099115848541, 0.06130611151456833, 0.6895920038223267, 0.2944086492061615, -0.20445579290390015, 0.08338877558708191, 0.4875831604003906, 0.5144074559211731, 1.1875396966934204, 0.24925747513771057, -0.6607402563095093, -0.6742219924926758, 0.465314120054245, -0.23613286018371582, 0.4160327911376953, 0.5597416758537292, -0.008173510432243347, 0.8026360869407654, -1.8230711221694946, -0.2013784795999527, 0.7144080996513367, 0.16601938009262085, 0.8941759467124939, 0.4343072474002838, -0.4647385776042938, -0.5493603944778442, 0.2623341679573059, -0.5271671414375305, 0.18921388685703278, 0.022328456863760948, 0.4920194745063782, 0.08618853241205215, 0.949837863445282, -0.4080725610256195, 0.7441896796226501, -0.951567530632019, -0.3208633363246918, 0.34774306416511536, -0.8866702318191528, 0.02348156087100506, 0.3906487226486206, -0.0055492836982011795, 1.0769771337509155, -0.7648263573646545, -0.5819147229194641, 0.19487982988357544, -0.5397809147834778, 0.25004440546035767, -0.12348975986242294, -0.910140872001648, -0.26098912954330444, -0.006897556595504284, -0.4144880473613739, 0.5410009622573853, 0.12166284024715424, -0.4508891701698303, -0.38412824273109436, -0.7272700667381287, 0.30688852071762085, 0.14345058798789978, 0.7201439738273621, 0.08503203094005585, 0.456745445728302, 0.31502723693847656, 0.2028060108423233, -0.2450585663318634, -0.19241470098495483, -0.3541828691959381, -0.4596306085586548, 0.371684730052948, -2.0713963508605957, -1.1675432920455933, 0.20525217056274414, 1.1555407047271729, 0.3408089280128479, 0.7492266297340393, 0.7378243207931519, 0.7012510895729065, 0.002213961910456419, -0.6752267479896545, 0.4815247058868408, -0.6273589730262756, 0.5681740045547485, 0.3722386956214905, -0.11880701780319214, -0.543929398059845, -0.8226674199104309, -1.7140848636627197, 0.10126576572656631, 0.22208745777606964, -1.649208664894104, 0.6846193671226501, 0.5186348557472229, 0.43976953625679016, 0.5151803493499756, -0.056101419031620026, 0.7693406343460083, -0.4179084599018097, -1.0947061777114868, -1.4121153354644775, 0.7197040915489197, -0.04799441248178482, 0.5025767087936401, -0.08760463446378708, 0.27658382058143616, -0.16114579141139984, -0.04726887121796608, -0.557168185710907, 0.5762147307395935, 0.43309855461120605, 0.49332207441329956, -0.30869174003601074, -0.6292412877082825, -0.00890354998409748, -0.3243418037891388, -0.5443870425224304, -0.5148703455924988, 0.5752311944961548, 0.033455703407526016, -0.0140469279140234, 0.006087560206651688, -0.07745837420225143, -0.5860636830329895, -0.13461937010288239, 0.14929093420505524, 0.48562633991241455, 0.600019633769989, -0.22280466556549072, 0.09426102787256241, -0.12707071006298065, -0.697010338306427, -0.6070727109909058, 0.2939169704914093, 0.9889786839485168, -0.8012290596961975, 0.0743785873055458, -0.12956057488918304, -0.7686399221420288, -0.561950147151947, -0.5287672877311707, -0.18595215678215027, -0.7968934178352356, -1.348643183708191, -1.4302358627319336, 0.3476563096046448, 0.7397832870483398, -0.14273330569267273, 1.3129271268844604, 0.07155846804380417, -1.5658907890319824, 0.26317933201789856, -0.6577725410461426, -0.8996747732162476, -0.040159888565540314, -1.4836695194244385, 0.45240283012390137, -0.3940274715423584, 0.39836692810058594, -0.7546547055244446, 1.1951481103897095, -1.0343060493469238, -1.1375504732131958, -1.26796293258667, -0.36010563373565674, 0.2849406898021698, 0.8537853360176086, -0.9833526015281677, 1.2513222694396973, 0.4623568058013916, -0.527288019657135, -0.3055466115474701, 0.13296368718147278, -0.8714333176612854, 0.20213092863559723, -0.12405619770288467, 0.4247184991836548, 0.1351860910654068, 0.6465829014778137, -1.0010504722595215, 0.5208010077476501, 0.5156788229942322, -0.07968062162399292, -0.3879846930503845, -0.33672896027565, 0.1730182021856308, 0.5564780235290527, -0.5506253838539124, -0.5822604298591614, -0.028507262468338013, -0.3339696228504181, -1.0052746534347534, 0.2820599675178528, 0.8638519644737244, -0.4968865215778351, -0.514350175857544, 0.5413895845413208, 0.04883275553584099, -0.7211078405380249, 0.3325270414352417, -0.1661149263381958, 0.31464284658432007, 0.045187074691057205, -0.26381224393844604, 0.26310184597969055, -1.1052230596542358, 0.19075745344161987, 0.6018272638320923, -0.23420701920986176, -0.5908095836639404, 0.5312915444374084, 1.2064814567565918, 0.13095389306545258, -0.3549483120441437, 1.3391246795654297, 1.3520392179489136, -0.2770375907421112, 0.3594265878200531, 0.37616997957229614, -0.032442156225442886, 0.2812771201133728, -0.578252911567688, 0.011212809011340141, -0.6569987535476685, 0.33616435527801514, -0.03954228386282921, -0.27778151631355286, -0.5660392642021179, -0.18756955862045288, -0.22582660615444183, 0.41176164150238037, 0.4257250726222992, -0.7325183749198914, -0.25258323550224304, 0.5643615126609802, -0.31896936893463135, 0.43415096402168274, -0.023316681385040283, 0.322224497795105, 0.3402951657772064, 0.16134542226791382, 0.07546932995319366, 0.34907931089401245, -0.8955021500587463, -0.33385586738586426, 0.46686914563179016, 0.5022307634353638, -0.03440817818045616, -0.4815846383571625, -1.412674903869629, 0.584436297416687, -0.7597754597663879, -0.7648504376411438, 0.5352334976196289, -1.1676313877105713, -1.5921216011047363, -0.04013585299253464, -0.0468120202422142, -0.1475764811038971, -0.47365450859069824, 0.2903050482273102, -0.04698978736996651, 0.3898138999938965, 0.4351900517940521, -0.439739465713501, 0.8789435625076294, 0.18163318932056427, 0.2674536406993866, -0.27278077602386475, -0.004401625599712133, -0.04921909049153328, 0.2936173379421234, -0.4541299343109131, -0.5639936327934265, 0.7479307055473328, -0.34670642018318176, -1.185259222984314, 0.1046692430973053, -0.39914271235466003, -0.08043287694454193, 0.12689100205898285, -1.07997727394104, 0.11864391714334488, -0.23430506885051727, 0.9284226298332214, -0.2695082724094391, -0.955065906047821, -0.8836827874183655, 0.3809889853000641, -1.0853310823440552, 0.5996453166007996, 0.06393606215715408, 0.7411786317825317, -0.2876642048358917, -0.36918583512306213, -0.062281712889671326, -0.07053893804550171, 0.18335013091564178, 0.045424316078424454, 1.2849206924438477, -0.0024161087349057198, 0.10617100447416306, -0.5312707424163818, -0.747391939163208, 0.08696569502353668, 0.09663267433643341, -0.0015127984806895256, -0.10483836382627487, -1.104931116104126, -0.3196738064289093, -0.8743590712547302, 0.6579589247703552, 0.7083341479301453, -0.16748082637786865, -0.019548755139112473, 0.02474833093583584, -0.7867358326911926, 0.5371063947677612, -0.27696549892425537, 0.044404130429029465, -0.1582917869091034, 0.7876668572425842, 1.769166350364685, 0.5373058915138245, 0.4563615918159485, -0.4261733889579773, 0.7953965067863464, -0.6894673109054565, -0.2980327904224396, -0.6477476358413696, -0.08897452801465988, -0.37632420659065247], [0.780443012714386, 1.2724584341049194, -1.6938506364822388, -0.8811358213424683, 0.6995054483413696, 0.20753087103366852, 1.207022786140442, -0.6171576976776123, 0.26482293009757996, -0.29467862844467163, -0.12490536272525787, -0.4443714916706085, 0.3616250455379486, 1.0608453750610352, 0.017750071361660957, -0.030637051910161972, 0.582503080368042, 0.07567356526851654, 0.7472690343856812, 0.6551479697227478, -0.18812549114227295, 0.31212085485458374, -0.19448934495449066, -0.40003591775894165, -0.13912206888198853, 0.31220462918281555, -0.8278858065605164, 0.01716751977801323, -1.3128398656845093, -0.7819395065307617, 0.9868977665901184, -1.0597225427627563, 0.43009817600250244, 0.391000896692276, -1.5019493103027344, -0.21202626824378967, 1.068825364112854, 0.5109660029411316, 0.5389102697372437, 0.18509157001972198, 1.4770556688308716, -0.19133585691452026, -0.360140860080719, -1.8692092895507812, -0.4141060411930084, 0.0024171359837055206, 1.20280921459198, -0.255057156085968, 0.554512619972229, 0.037118833512067795, 0.605783224105835, -1.0411409139633179, 1.0513811111450195, 0.7418650388717651, 0.33507493138313293, -0.21236072480678558, 0.012244813144207, 0.1158878430724144, 0.8180177211761475, -0.8495936393737793, 1.6262524127960205, -0.18980742990970612, -1.1742404699325562, 0.027473442256450653, 0.30168014764785767, -0.16065029799938202, 0.04906485974788666, 0.5581625699996948, 0.37637680768966675, -0.32486897706985474, 0.8514776229858398, 0.685537576675415, -0.46027815341949463, 0.2435416430234909, -1.1481118202209473, -0.32625481486320496, 0.7361340522766113, 1.0277013778686523, 0.8066062927246094, 0.3112013041973114, -0.683732807636261, 0.2080310881137848, 1.2391571998596191, -0.8469870090484619, 0.28964948654174805, 0.3168056905269623, 0.6918404698371887, -0.941876232624054, 0.22195987403392792, 1.6234455108642578, 0.30839109420776367, -0.25955235958099365, 1.0432244539260864, -0.24941577017307281, -0.2275608330965042, -0.38192737102508545, 0.3391342759132385, -0.09160292148590088, -0.6608526110649109, -0.5471688508987427, -0.016930682584643364, 0.025751790031790733, 0.1770906150341034, 0.3404446244239807, -0.020894421264529228, 1.2727255821228027, 0.6363789439201355, 0.44174519181251526, -0.2862241268157959, 0.2283397912979126, -0.5060893893241882, -0.14702428877353668, -0.5914682745933533, -0.9641954302787781, -0.9827640056610107, 0.6791177988052368, 1.7139172554016113, -0.1599777191877365, 0.7632626891136169, 0.8344944715499878, -0.31572046875953674, 0.38573020696640015, -0.20359691977500916, 1.121691346168518, -0.02654152177274227, 0.03763692453503609, -0.9354557394981384, -0.006057756952941418, 0.26908689737319946, -0.07131526619195938, -0.1922866553068161, -0.31244245171546936, 0.14538154006004333, 0.17636238038539886, -0.8805716037750244, 0.8218549489974976, -0.2969900369644165, -0.2588541507720947, -0.3949139714241028, 0.10962120443582535, 0.6490570902824402, -0.5379971265792847, 0.3378421664237976, -0.5167098045349121, 0.6834798455238342, -0.05814811587333679, 0.15282507240772247, -0.7694717049598694, -0.6141566038131714, -0.013065416365861893, -1.1162737607955933, 0.9803374409675598, -0.13695496320724487, 0.46778205037117004, 0.2082265466451645, -0.13381889462471008, 0.4087446630001068, 0.45091769099235535, 0.17801693081855774, -0.46000173687934875, 0.508886456489563, 0.4088471829891205, -0.7536213397979736, 1.0535976886749268, -0.314656138420105, -0.20083248615264893, -0.029598388820886612, 0.5319314002990723, 0.4983941912651062, 0.5551189184188843, -0.7793606519699097, -0.16282916069030762, -0.9200195670127869, -0.009206507354974747, 0.15366919338703156, -0.15615946054458618, 1.833583950996399, -0.6066592335700989, -0.6096823811531067, -0.5873339176177979, 0.5916910767555237, -0.04526332765817642, 0.19547060132026672, 0.05851725861430168, 0.5839144587516785, -0.6676265597343445, 0.7137947082519531, 0.3039429187774658, -0.6860045194625854, -0.49690601229667664, -0.45063677430152893, -0.3171983063220978, -0.4763580560684204, 0.034132055938243866, -0.2957392930984497, -0.6978196501731873, 0.9609302878379822, -0.5824008584022522, -0.32222986221313477, 0.038361381739377975, -0.31266549229621887, -0.3831805884838104, -0.36601418256759644, 0.7215577363967896, -0.37174174189567566, 0.492125928401947, -0.5355842113494873, 0.6363628506660461, -0.739507257938385, -0.27301350235939026, 1.2021559476852417, -0.40341734886169434, -0.340231329202652, 0.8908534646034241, -0.9475947618484497, -0.8770102858543396, 0.2105671465396881, 0.02123534120619297, 0.13622793555259705, 0.5043087005615234, -0.10425300151109695, 0.027642730623483658, 0.4981311559677124, -0.18706516921520233, 0.6589779853820801, 0.11470059305429459, -0.848584771156311, -1.0852059125900269, -0.06877417862415314, 0.117536760866642, -0.37800589203834534, -1.1993849277496338, 0.6346481442451477, 0.4553544819355011, -0.9602305889129639, 0.7638010382652283, -0.3475552797317505, -0.07235416024923325, 0.2622746527194977, 0.6943179368972778, 0.13608065247535706, 0.3613668978214264, 0.15017330646514893, -0.03345455601811409, -1.1467945575714111, -0.04247577488422394, 0.620070219039917, -0.5905921459197998, -0.30129680037498474, 1.092773675918579, 0.6286673545837402, 0.5266311764717102, 0.3243143558502197, -0.44630929827690125, 0.10691776871681213, -1.369547963142395, -0.7860447764396667, 0.45454826951026917, -0.7908850312232971, 1.222930908203125, 0.6690199375152588, -0.6493859887123108, -0.23194357752799988, 0.3516966998577118, 0.2867605686187744, -0.5828196406364441, -0.9813539981842041, -0.34273889660835266, -0.12645184993743896, -0.6104269027709961, 0.015413281507790089, 0.6809294819831848, 0.39006510376930237, 1.4173364639282227, -0.25294288992881775, 0.10924675315618515, -0.03911088407039642, 0.7415216565132141, -0.14777223765850067, 0.6496801972389221, -0.1202097088098526, -0.7134947776794434, -0.5193367004394531, 0.05467842146754265, 0.928013265132904, -0.21301370859146118, 0.09935052692890167, -0.012460699304938316, 0.6531397700309753, -0.36328038573265076, 0.6705448627471924, 0.367001473903656, -0.18446758389472961, 0.7424169182777405, 0.7296493649482727, 0.26649484038352966, 0.8410666584968567, -0.40355610847473145, -1.0599520206451416, -0.1448519229888916, 0.11022095382213593, 0.4009448289871216, 1.0699571371078491, 1.0762752294540405, -0.16797342896461487, -0.09189193695783615, -0.3752431273460388, -0.5619745850563049, -0.45425742864608765, -0.6202856302261353, -0.8482790589332581, -0.15102311968803406, -0.18623390793800354, -0.7364832162857056, 0.3633427321910858, -0.26054850220680237, 0.3382718563079834, 0.7978597283363342, 0.372936874628067, -0.2861909866333008, -0.2006852775812149, 0.31886133551597595, 0.37791863083839417, -1.1303430795669556, 1.1986268758773804, 0.9590141773223877, -1.2171416282653809, 0.062396056950092316, -0.3627868592739105, -0.2412477731704712, 0.06012662127614021, -0.47192686796188354, 0.021282847970724106, -0.9386577010154724, -0.7168918251991272, -0.2462906837463379, 1.4377079010009766, -0.038930173963308334, 0.19029666483402252, -0.8853278160095215, 0.3446867763996124, 0.16396892070770264, -0.29575279355049133, -0.48606905341148376, 0.8505537509918213, -0.054712288081645966, -0.963838517665863, 0.22862280905246735, 0.6015878319740295, -0.14343497157096863, -0.7300235629081726, -0.1854703426361084, -0.4117024540901184, -0.32400327920913696, 0.5188789367675781, 0.8133812546730042, 0.2779545187950134, 0.14841917157173157, 0.4211317300796509, -0.07693341374397278, 0.7282278537750244, -0.48744431138038635, -0.19668129086494446, -0.8985973596572876, 0.35331931710243225, 0.05874510481953621, 0.9284041523933411, 0.22567829489707947, 0.4646133482456207, -0.016095342114567757, -0.6349193453788757, -0.292146772146225, -0.015139741823077202, 0.7331801652908325, 0.22143641114234924, 0.07910396158695221, -0.6108115911483765, 0.23742425441741943, 0.01919705420732498, -0.6535527110099792, -0.2581211030483246, 0.04388193413615227, -0.8914087414741516, -0.3305646777153015, 0.8437723517417908, -0.0582401268184185, -0.4588173031806946, -0.565958559513092, -0.044035330414772034, 0.3369519114494324, 0.6245554685592651, -0.3445189297199249, -0.15887567400932312, 0.12676291167736053, 0.4389023184776306, -0.9788423776626587, -0.4272781312465668, -0.29594340920448303, 0.26434949040412903, 0.9913492798805237, -0.285854309797287, 0.18604756891727448, 0.02524564042687416, 0.7629751563072205, 0.3051147758960724, 0.867946207523346, 0.07894562929868698, 0.3683869242668152, 0.1751512587070465, 0.1706313043832779, -0.23359538614749908, 1.0474369525909424, -0.8413069248199463, -0.4506680369377136, 0.03966989368200302, 0.6015614867210388, 0.0006647501140832901, -0.08353547006845474, 0.028605088591575623, 0.04792208969593048, -0.6648430228233337, -0.10464309900999069, -0.23109838366508484, -0.3168381452560425, 0.7059045433998108, 0.36181750893592834, 1.0360898971557617, 0.9290668964385986, 0.21938058733940125, -0.6348562240600586, -0.2265782505273819, 0.0054258303716778755, 0.173959881067276, -0.716488242149353, -0.3620406687259674, 0.20344214141368866, -0.035408709198236465, 0.015131878666579723, 0.3350631594657898, -0.10978235304355621, 0.005104338750243187, -0.062231309711933136, -0.21464014053344727, 0.6884949207305908, 0.34442341327667236, 1.4559985399246216, 0.4169059693813324, -0.7716370224952698, -0.3984958529472351, -0.1552218347787857, -0.8435105681419373, -0.22256696224212646, 0.341238409280777, 0.22753393650054932, 1.3676446676254272, -1.8419033288955688, -0.9260625839233398, 0.5403263568878174, 1.4653254747390747, 0.6626757979393005, 1.2820496559143066, -0.07741105556488037, -0.6830750703811646, 0.29720839858055115, 0.5389797687530518, -0.4309658110141754, 0.12333900481462479, 0.4661515951156616, 0.4435785710811615, -0.16951467096805573, -0.8859658241271973, 0.279297798871994, -0.504575252532959, -1.0645992755889893, -0.18813371658325195, -0.10044648498296738, 0.26387691497802734, 0.7908494472503662, 0.13900014758110046, 0.9402894377708435, -1.2048553228378296, -0.5108830332756042, 0.15183764696121216, -0.1327757090330124, 0.9063055515289307, -0.4371204376220703, -0.3260782063007355, -0.83730548620224, -0.06921098381280899, -0.33533111214637756, 0.20837852358818054, -0.4849843382835388, -0.22843144834041595, -0.2901993989944458, -0.25058019161224365, -0.5665431618690491, 0.8908516764640808, 0.7731308937072754, 0.45851412415504456, -0.08303035795688629, 0.6550454497337341, 0.5981389284133911, -0.45619288086891174, -0.13010968267917633, 0.4018188416957855, -0.6313084363937378, -0.00622323714196682, -1.6804938316345215, -1.2366721630096436, 1.085033655166626, -0.06241975724697113, 0.7726938724517822, 0.2679441571235657, 0.9217982292175293, 0.5193474292755127, -0.5063735246658325, -0.6215721964836121, 0.9981116652488708, -0.2016342133283615, 0.2980031371116638, 0.11628041416406631, -0.18566769361495972, -0.1491423398256302, -0.7228063344955444, -1.5932273864746094, -0.04979337379336357, -0.7754542231559753, -1.1475831270217896, 0.5163013935089111, -0.10327589511871338, 0.43258118629455566, -0.0016237013041973114, -0.5700177550315857, 0.29225289821624756, -2.591288648545742e-05, -0.39901047945022583, -1.120924949645996, 0.7149220705032349, 0.1449543833732605, 0.29540929198265076, 0.0917462557554245, -0.25366634130477905, 0.43153876066207886, -0.9432705044746399, 0.4445821940898895, 0.45499202609062195, 0.3472171425819397, 0.3452187478542328, 0.1540803611278534, -0.8384172916412354, -0.1635710597038269, 0.4563749432563782, -0.6860844492912292, -0.14372342824935913, -0.01029665395617485, 0.5952180624008179, 0.46026983857154846, 0.06113497540354729, -0.07452701777219772, -0.5208746790885925, -0.3341962397098541, -0.5806468725204468, -0.21090172231197357, -0.007205544039607048, -0.2515358626842499, -0.12169169634580612, -0.4822331666946411, -1.098739743232727, -0.4510207772254944, 0.6365984082221985, 0.6948666572570801, -1.3144060373306274, 0.00773153081536293, 0.3906879723072052, -0.29007187485694885, -0.04434395208954811, -0.928878903388977, 0.34478938579559326, -0.6353750824928284, -1.4564188718795776, -0.6074414253234863, 0.21702370047569275, 0.7887324094772339, -1.1273480653762817, 0.8312041163444519, 1.178421139717102, -1.1309559345245361, 0.011240534484386444, 0.3405914902687073, -0.7352288365364075, 0.15055757761001587, -1.1436352729797363, 0.2616370916366577, -0.47782936692237854, -0.06744687259197235, -0.8285596966743469, 2.057770013809204, -0.9994032382965088, -1.4910459518432617, -0.9157696962356567, 0.17917633056640625, -0.1019781231880188, 0.850927472114563, -0.6252827048301697, 0.8362038135528564, 0.3073349595069885, -0.4667346179485321, -0.534868597984314, 0.570149838924408, -1.312314510345459, 0.13743793964385986, 0.7021819353103638, 0.48877519369125366, 0.2356465458869934, 0.7306021451950073, -0.6906735897064209, 0.3871108293533325, -0.2825995981693268, 0.29611486196517944, -0.6346492767333984, -0.054508015513420105, 0.05620020255446434, 0.2376421093940735, -1.5941811800003052, -0.4928801953792572, -0.05527995899319649, -0.6151925325393677, -0.6795426607131958, 0.9972575902938843, 0.972016453742981, -0.7139392495155334, -0.4933813214302063, 0.013485443778336048, -0.04855258762836456, -0.7178142666816711, 0.11588596552610397, 0.41809067130088806, -0.015042990446090698, 0.1896734982728958, 0.41893279552459717, 0.1128590852022171, -1.0798559188842773, -0.024756504222750664, 0.38314077258110046, 0.3758370578289032, -0.9838247895240784, 0.6427916884422302, 0.9557290077209473, 0.22782637178897858, -0.5636975169181824, 0.9516339302062988, 1.1366709470748901, -0.4049423933029175, -0.15086615085601807, 0.11677258461713791, 0.5732078552246094, 0.5318107008934021, -0.6734510660171509, 0.7215092182159424, -0.6741800904273987, 0.093809112906456, 0.2781245708465576, -0.19310136139392853, 0.026175368577241898, -0.39037996530532837, -0.030210698023438454, 0.5896940231323242, 0.2718312442302704, -0.5960357785224915, -0.5397241711616516, 0.6013019680976868, -0.0016665318980813026, 0.0835663452744484, 0.2667897045612335, 0.38578665256500244, 0.16111721098423004, -0.42862799763679504, 0.09738574922084808, 0.3105098605155945, -0.611881673336029, -0.26489174365997314, 0.2817525267601013, 0.19231605529785156, -0.07927051931619644, -0.027106523513793945, -0.9948118925094604, -0.3951968252658844, -0.8059133291244507, -0.27756375074386597, 0.22557514905929565, -1.7878854274749756, -0.8776154518127441, 0.9607811570167542, -0.12850134074687958, -0.5569889545440674, 0.06532450765371323, 0.37711891531944275, -0.293480783700943, 0.7353933453559875, 0.3178204298019409, -0.41188541054725647, 0.7556183934211731, 0.20629532635211945, -0.3096737861633301, -0.5486434698104858, -0.36112043261528015, 0.12659426033496857, 0.3284372389316559, -0.2824998199939728, -0.29252368211746216, 0.8577256798744202, -0.08110643923282623, -0.9141109585762024, 0.246989905834198, 0.19609566032886505, -0.17529787123203278, 0.10103992372751236, -1.2278908491134644, 0.07887504249811172, -0.7466986179351807, 1.2158730030059814, -0.4772223234176636, -0.011614666320383549, -0.7916173338890076, 0.21291311085224152, -0.8418221473693848, 1.26058030128479, -0.20952510833740234, 1.3059968948364258, -0.0627913698554039, -0.17318415641784668, 0.0001188602764159441, -0.7750334143638611, 0.011641439981758595, 0.18200838565826416, 0.8293179869651794, -0.3072737455368042, 0.2005731761455536, -0.6594754457473755, -0.760689914226532, 0.11726246029138565, 0.8530215620994568, 0.3373165428638458, 0.24816341698169708, -0.5949576497077942, -0.5233051776885986, -0.3236461281776428, 0.22509033977985382, 1.4135535955429077, 0.3209701478481293, -0.4427076578140259, -0.4433915913105011, -0.5009559392929077, 1.382069706916809, -0.023728204891085625, -0.055004533380270004, 0.25431185960769653, 0.5747689604759216, 1.4108014106750488, -0.12485862523317337, 0.2222178727388382, -0.6126775145530701, 0.49243423342704773, -0.18895795941352844, 0.009838396683335304, -0.7069042921066284, -0.24935446679592133, -0.15497983992099762], [0.2113502472639084, 1.7692145109176636, -2.02940034866333, -0.6690124273300171, 1.0774953365325928, 0.4892430901527405, 0.9300203323364258, -1.3944752216339111, -0.24427032470703125, -0.33456894755363464, -0.41626426577568054, 0.38556912541389465, 0.03312757983803749, 1.297544240951538, 0.4312935173511505, 0.08501703292131424, -0.09157989174127579, -0.4962063133716583, 0.7819302082061768, 1.4606962203979492, 0.2215913087129593, -0.7968186736106873, -0.3967226445674896, -0.07141090929508209, 0.14082053303718567, 0.2948082983493805, -0.9602157473564148, -1.0891776084899902, -0.683207094669342, -0.36690205335617065, 1.1681065559387207, -0.9194811582565308, 0.11266682296991348, 0.20475685596466064, -2.152639389038086, -0.9817314743995667, 1.3396594524383545, 0.3810032904148102, 0.35669076442718506, 0.21570847928524017, 1.2904269695281982, 0.4272997975349426, 0.4844169318675995, -1.0837119817733765, -0.03742722049355507, -0.11986377090215683, 0.5860222578048706, -0.5560860633850098, -0.6787769198417664, -1.4458279609680176, 0.8596159815788269, -1.003844976425171, 0.8761880397796631, 0.239234060049057, 0.7961868047714233, 0.2191343754529953, -0.3285659849643707, 0.18152202665805817, 0.6766283512115479, -0.5407837629318237, 0.6341729164123535, 0.6148306727409363, -0.4654676616191864, 1.0973231792449951, 0.5537415146827698, -0.18039186298847198, -0.02031790278851986, 0.5451595783233643, -0.36918869614601135, -0.197852224111557, 0.7877580523490906, -0.19502009451389313, -0.5042517185211182, 0.5602666139602661, -1.1530978679656982, 0.6423248052597046, 0.6106621623039246, 0.057908471673727036, 0.15006808936595917, 0.5613224506378174, -0.6703249216079712, -0.18994301557540894, 0.6495009660720825, -0.6040483117103577, 1.2080086469650269, -0.14389002323150635, 0.15353895723819733, -0.6630674600601196, -0.2892192006111145, 1.2429429292678833, 0.1158759742975235, 0.03459535166621208, 0.907305121421814, -0.7661190032958984, -0.43957939743995667, -0.5164903402328491, 0.32930701971054077, -0.23289166390895844, -0.48704519867897034, -0.4966515600681305, -0.7015867829322815, -0.03314836323261261, -0.5601624846458435, -0.7224428653717041, 0.14767250418663025, 1.448174238204956, 0.20155292749404907, -0.31450122594833374, -0.9566220045089722, 0.3620013892650604, 0.18216203153133392, 0.363989919424057, -1.1454094648361206, -1.1511766910552979, -0.4901370108127594, 0.8672056794166565, 1.212043285369873, -0.3477364778518677, 0.5909764170646667, 0.8517055511474609, -0.874363899230957, 0.018334509804844856, -0.3640393912792206, 0.4589715600013733, 0.674211859703064, 0.29106757044792175, -0.18152059614658356, -0.5434077382087708, 0.09445937722921371, 0.23419596254825592, 0.22409044206142426, -0.3186178505420685, 0.07110069692134857, 0.24630971252918243, -0.6046103835105896, 1.0854195356369019, -0.12956134974956512, -0.6099616885185242, -0.15744651854038239, 0.038754772394895554, 0.3805646598339081, -0.453041672706604, -0.77096027135849, -0.3862188160419464, 0.33839163184165955, -0.3756985664367676, 0.3943897485733032, -0.24191690981388092, -1.03452730178833, -0.3661230206489563, -0.42645764350891113, 0.5803343057632446, 0.494469553232193, 0.5578261613845825, 0.09412076324224472, -0.04659329727292061, 0.08997803181409836, 0.25312259793281555, 0.060619376599788666, 0.04803847894072533, 1.008284568786621, 0.09601906687021255, -0.21573688089847565, 1.1452568769454956, -0.03259417042136192, -0.22308357059955597, 0.035577189177274704, 0.7250282764434814, -0.2868374288082123, 0.1596003919839859, -0.5021390914916992, -0.31572094559669495, -0.8607319593429565, 0.6039755344390869, 0.7387371063232422, -0.7522060871124268, 1.3415818214416504, -0.8560901284217834, -1.326003909111023, -1.3552504777908325, 0.26980212330818176, -0.14398309588432312, -0.07553351670503616, 0.28055262565612793, 0.28198251128196716, 0.15033701062202454, 0.7303903102874756, -0.2870841920375824, -0.13123996555805206, -0.3305688500404358, -0.8840419054031372, 0.03669667989015579, -1.0356814861297607, 0.009017763659358025, -0.29730769991874695, -0.7875057458877563, 0.5175722241401672, -0.262114942073822, -0.732928454875946, -0.26242318749427795, -0.6478222608566284, -0.4235668182373047, -0.6423833966255188, 0.11266174167394638, -0.5777597427368164, 0.9486649632453918, -1.6054030656814575, 0.8749647736549377, -0.7751226425170898, -0.22976744174957275, 1.507470965385437, 0.4912981688976288, -0.8670281767845154, 0.8700448870658875, -0.35627102851867676, -1.6972073316574097, 0.3852517306804657, 0.31507086753845215, -0.338495135307312, -0.1926816999912262, 0.36480292677879333, 0.3166530430316925, 0.4517981708049774, -0.09890279173851013, 0.4283578097820282, -0.34156981110572815, -0.7780565619468689, -0.23688757419586182, -0.7808917164802551, -0.14261987805366516, -0.6496474146842957, -1.696908950805664, 0.9998825788497925, 0.2726219892501831, -1.0693854093551636, 0.17968925833702087, 0.030382975935935974, 0.398968905210495, 0.7807519435882568, 0.8694416284561157, 0.5560547709465027, 1.0861152410507202, 0.042269814759492874, 0.41221413016319275, -0.9530156254768372, -0.5392481684684753, 1.1239347457885742, -0.5481918454170227, -0.37889721989631653, 1.0710384845733643, 0.7244889736175537, 0.5670217275619507, 0.4100169241428375, -0.2475021332502365, 0.4045262038707733, -0.6551990509033203, -0.7099522948265076, 0.47736626863479614, -0.6471962928771973, 1.3978404998779297, 1.1341078281402588, -0.6022748351097107, -0.18098358809947968, 0.29740390181541443, -0.18161465227603912, -0.7009196281433105, -0.13139992952346802, -0.16239525377750397, -0.10186495631933212, -0.22279320657253265, -0.5475904941558838, -0.25661975145339966, -0.08368374407291412, 0.9334423542022705, -0.3908606767654419, -0.8183951377868652, 0.030240634456276894, 1.226357340812683, 0.40400218963623047, 0.31238600611686707, 0.2449488639831543, -0.5856184959411621, -0.9178195595741272, -0.16006730496883392, 0.8062414526939392, 0.020066875964403152, 0.0546964630484581, 0.17703282833099365, 0.45200812816619873, -0.4693927466869354, 0.35304564237594604, 0.5676087737083435, -0.5059099793434143, -0.10215846449136734, 0.14278768002986908, 0.2862836718559265, 0.7222191691398621, -0.8072362542152405, -0.44655120372772217, -0.6814152002334595, 0.3532618582248688, 1.6484436988830566, 0.7224335670471191, 1.82291841506958, 0.17142285406589508, 0.2386210709810257, -0.027199264615774155, -0.197307288646698, -0.4302748143672943, -1.0063612461090088, -0.2993384003639221, -0.10647325217723846, -0.08590131998062134, -0.33861833810806274, 0.08108827471733093, 0.6837441921234131, -0.24931767582893372, 0.6710167527198792, 0.7090746760368347, -0.49010342359542847, -1.1164257526397705, -0.6051930785179138, 0.23873503506183624, -0.7243704199790955, 0.2851620018482208, 0.8024225234985352, -0.8529883623123169, -0.8058302402496338, -0.22419887781143188, 0.06240600720047951, 0.8808924555778503, 0.0255852323025465, 0.3641214072704315, -0.8887600302696228, -0.46343499422073364, -0.41434165835380554, 1.6658875942230225, 0.10610346496105194, 0.1468035727739334, -0.41455668210983276, 0.6772633790969849, 0.601225733757019, 0.011511923745274544, -0.2045818269252777, 0.6977465748786926, -0.4263768792152405, -0.8520421385765076, 0.12619540095329285, 0.1810770183801651, -0.034426767379045486, -0.4627644717693329, -0.53565514087677, 0.019199188798666, -0.08516118675470352, -0.3010362982749939, 0.5342620015144348, -0.2782106399536133, 0.710374116897583, 0.21227039396762848, 0.13241951167583466, 0.8168527483940125, -0.08915670216083527, -0.18678106367588043, -1.0730557441711426, 0.8787552118301392, 0.8480959534645081, 0.8016639351844788, 0.10381633043289185, -0.5114626884460449, -0.16989284753799438, -0.25300610065460205, 0.5964053869247437, 0.07293523848056793, 0.8232340216636658, 0.4532519280910492, -0.22970300912857056, -0.478933721780777, 0.07677213847637177, -0.06383982300758362, -0.6668812036514282, -0.28683599829673767, 0.5377904176712036, -1.6147137880325317, -0.8111729621887207, 1.3421976566314697, 0.31350529193878174, -0.2906655967235565, -0.46108826994895935, 0.22013339400291443, 0.8092550039291382, -0.0626664087176323, 0.36341172456741333, -1.0073498487472534, 0.2904292643070221, 0.1424376666545868, -1.2107607126235962, -0.2318696826696396, 0.11962264776229858, 0.4162242114543915, 0.4142797887325287, -0.5250504016876221, 0.3135519027709961, 0.04674239829182625, 0.3190484642982483, 1.1211912631988525, 0.18854588270187378, 0.4860397279262543, -0.3424610197544098, -0.16729038953781128, -0.3049498498439789, 0.25765296816825867, 1.0299113988876343, -0.6439660787582397, -0.30187466740608215, -0.0923164039850235, -0.10517659038305283, 0.18097667396068573, 0.3290579319000244, -0.14484204351902008, 0.27715015411376953, -0.07537294179201126, 0.073630191385746, -0.46567991375923157, -0.30120649933815, 1.0985783338546753, 0.10659415274858475, 0.22637173533439636, 1.044870376586914, -0.09516031295061111, -1.2991665601730347, 0.12990067899227142, -0.029000718146562576, 0.05573723465204239, -0.11785732954740524, 0.14070983231067657, 0.2823786437511444, -0.3637925684452057, 0.8054221272468567, 0.5225865244865417, 0.787635326385498, 0.20401158928871155, 0.21490703523159027, 0.21358263492584229, 0.16027827560901642, 0.5381582379341125, 1.7789479494094849, 0.3731416165828705, -0.3935169577598572, -0.9954655766487122, 0.5466240048408508, -0.32171523571014404, 0.6478259563446045, 0.4075981080532074, -0.25864169001579285, 1.0889756679534912, -1.1350635290145874, -0.4623391330242157, 0.9208005666732788, -0.2525322437286377, -0.055518001317977905, 0.7900784611701965, -0.11006742715835571, -1.0202937126159668, 0.47907406091690063, 0.08169393986463547, 0.1617763340473175, 0.3796347379684448, 0.25469931960105896, -0.07599063962697983, 0.6634501218795776, -0.14539335668087006, 0.5832062363624573, -0.6831530928611755, 0.18127219378948212, 0.13878263533115387, -0.20059959590435028, 0.003079020418226719, 0.05317873880267143, 0.40637052059173584, 1.0017448663711548, -0.1787835657596588, -0.925374448299408, -0.19288834929466248, -0.5119276642799377, 0.2763226330280304, -0.24752886593341827, -0.4875618815422058, -0.569102942943573, -0.7657907009124756, -0.11706914007663727, 0.5557739734649658, -0.3682354986667633, -0.39744818210601807, -0.0901569202542305, -0.9329829216003418, 0.38805949687957764, 0.7643168568611145, 1.1733289957046509, 0.008235732093453407, 0.2591114640235901, 0.27960410714149475, 0.195415660738945, -0.47619929909706116, -0.0642198845744133, 0.4170874357223511, -0.4465644359588623, 0.41345328092575073, -1.7939852476119995, -0.9498993754386902, 0.25917255878448486, 0.7715365886688232, 0.44882479310035706, 0.7354426383972168, 1.0984370708465576, 0.8080486059188843, -0.3631899058818817, -0.04406013712286949, -0.43848907947540283, -0.7146148085594177, 0.8218344449996948, 0.6973509788513184, -0.7918050289154053, -0.5953199863433838, -0.9515816569328308, -1.7546887397766113, 0.9749664664268494, 0.031968459486961365, -1.5323153734207153, 0.8508568406105042, 0.20166324079036713, 0.33151566982269287, 0.3851025402545929, -0.6823182106018066, 0.5563364624977112, -0.3981923460960388, 0.07081609964370728, -1.452194094657898, 0.2139996439218521, 0.5861663222312927, -0.1619066745042801, -0.5373499393463135, 0.362504243850708, -0.33967646956443787, -0.07384023815393448, 0.3400345742702484, 0.34393253922462463, 0.5790413022041321, 0.8928434252738953, 0.23748718202114105, -1.2795917987823486, 0.022909192368388176, -0.25458481907844543, -0.029350629076361656, -0.294055700302124, 0.5673316121101379, 0.13228930532932281, -0.1801527738571167, -0.34173694252967834, -0.2785147726535797, -0.5206685662269592, -0.6572725772857666, -0.7013758420944214, 0.49834924936294556, 1.0224502086639404, -0.13373197615146637, 0.2934114933013916, -0.21012425422668457, -1.0251338481903076, -0.7122920751571655, 0.6592389941215515, 0.884127140045166, -0.5949432849884033, 0.01461128517985344, 0.009365352801978588, -0.5189486145973206, -0.44791844487190247, -0.030256925150752068, 0.22987836599349976, -0.9431843757629395, -0.835476279258728, -0.8345788717269897, 0.06488864123821259, 0.5226209163665771, -0.6050516366958618, 0.9696823954582214, 0.7116990089416504, -0.7677414417266846, 0.568700909614563, -0.13161489367485046, -1.3021045923233032, 0.2215472012758255, -1.366360068321228, 0.8583512902259827, -0.5108921527862549, 0.8662171959877014, -0.06246694177389145, 0.704668402671814, -1.295386552810669, -0.5953142642974854, -1.236095905303955, -0.3828999400138855, 1.4908400774002075, 0.28658542037010193, -1.2112956047058105, 1.1934338808059692, 0.24590617418289185, -0.8392990827560425, -0.4285115897655487, 0.3557363450527191, -1.029526948928833, 0.03820250555872917, 0.7471341490745544, 1.3478001356124878, 0.10796857625246048, 1.3891202211380005, 0.31283244490623474, 0.5909778475761414, -0.4140881597995758, 0.332735151052475, -0.4031623899936676, 0.40135157108306885, -0.12946230173110962, 0.5025833249092102, -0.9176239371299744, -0.5224291682243347, -0.10665249079465866, -0.8883554935455322, -0.7458634972572327, 0.3815114498138428, 1.2079745531082153, -0.4201989769935608, -0.007122650742530823, -0.09905319660902023, 0.6121443510055542, -0.7457574009895325, 0.13981275260448456, -0.34645339846611023, 0.20248185098171234, -0.25219404697418213, -0.2421974539756775, 0.37562546133995056, -1.1921228170394897, 0.39005768299102783, 0.408458411693573, -0.07472187280654907, -0.7220620512962341, 0.5853510499000549, 0.5268079042434692, 0.5617173314094543, -0.4762767553329468, 1.1957560777664185, 1.5295425653457642, -0.15472975373268127, 0.02271103858947754, 0.28279224038124084, 0.21996481716632843, 0.8363768458366394, -0.7365095615386963, -0.1064746230840683, -0.9341717958450317, 0.2577594816684723, 0.24892117083072662, -0.2601463794708252, -0.13266441226005554, -0.07846304029226303, -0.6137769222259521, -0.024530936032533646, 0.6466752290725708, 0.16220448911190033, -0.8602014780044556, 1.3914494514465332, -0.2721574902534485, -0.332235187292099, 0.39212116599082947, 0.29814931750297546, 0.11371985077857971, -0.4722461402416229, 0.17776595056056976, 0.2883976399898529, -0.9502606391906738, 0.36342620849609375, 0.10961807519197464, -0.15343745052814484, 0.10596121847629547, -0.6007225513458252, -0.9099699854850769, 0.13920128345489502, -0.4396362006664276, -1.3076443672180176, 0.39291155338287354, -0.8441803455352783, -0.806889533996582, 0.5112894773483276, -0.14498081803321838, -0.5129150748252869, -0.3739173114299774, 0.3609298765659332, 0.03989919275045395, 0.33100584149360657, 0.9348916411399841, -0.324516236782074, 1.1307778358459473, 0.30956026911735535, 0.4989885985851288, -1.1641855239868164, 0.49830102920532227, 0.45635533332824707, 0.6240633726119995, -0.4913288652896881, -0.4065009355545044, 0.7682265639305115, -0.2834552824497223, -0.937414824962616, 0.08144286274909973, -0.23018544912338257, -0.06198938563466072, 0.2739579677581787, -0.9918591380119324, -0.17489348351955414, 0.3094594180583954, 0.6901882290840149, -0.971885621547699, -0.686734139919281, -1.0807042121887207, 0.5456658005714417, -0.9162799119949341, 1.1700615882873535, -0.22293467819690704, 1.0144635438919067, 0.6446710228919983, -0.8798672556877136, -0.21307691931724548, -0.45339658856391907, 1.2307275533676147, -0.16356806457042694, 0.6757274866104126, -0.5114302039146423, 0.48981380462646484, -0.09401804208755493, -0.8279900550842285, 0.302141934633255, 0.23838798701763153, -0.1620633900165558, -0.16967537999153137, -0.8344714045524597, -1.087308645248413, -0.7028946280479431, 0.5646926760673523, 1.1388087272644043, 0.32023003697395325, 0.5469565391540527, 0.24417750537395477, -1.1617910861968994, -0.16126395761966705, 0.6367945671081543, -0.20379871129989624, -0.06338274478912354, 1.3553950786590576, 1.6173007488250732, 0.27274370193481445, 0.022591635584831238, -0.42970359325408936, 0.9862112998962402, -0.5230317115783691, -0.10125025361776352, -0.33523985743522644, 0.21051712334156036, -0.2646556794643402], [-0.1755213588476181, 1.7579327821731567, -1.568742275238037, -0.8595821857452393, 1.2498400211334229, -0.0031415820121765137, 1.0837924480438232, 0.0979674682021141, 0.2013150155544281, -0.4536544382572174, -0.7798994183540344, 0.21702344715595245, -0.10214540362358093, 0.5203243494033813, 0.6168572902679443, 0.5158201456069946, 0.25009965896606445, -0.32998427748680115, 0.6864540576934814, 1.406090259552002, -0.11005981266498566, 0.3159087002277374, -0.7347614765167236, 0.21334637701511383, -0.13171546161174774, 0.1513126641511917, 0.08647122234106064, -0.6367007493972778, -0.9814901351928711, -0.9528281092643738, 0.771602988243103, -0.9608857035636902, 0.692240297794342, 0.6550279855728149, -0.9618284702301025, 0.3194204568862915, 1.1190917491912842, -0.22808627784252167, -0.0880126953125, 0.07932274043560028, 1.9541641473770142, 0.06711741536855698, -0.20739774405956268, -1.4160345792770386, -0.1224934458732605, 0.3064633011817932, 0.666775107383728, -0.714353621006012, -0.41168397665023804, -1.1317416429519653, 0.4646839499473572, 0.41476374864578247, 0.7416625022888184, 0.7206891179084778, 0.4515531361103058, -0.2922954559326172, -0.17800962924957275, 0.8035873770713806, 0.43313807249069214, -0.7550510764122009, 1.0542502403259277, 0.16033293306827545, -0.5148492455482483, 0.801154375076294, 0.37404006719589233, 0.17277026176452637, 0.0767679363489151, 0.7459374666213989, 0.3222832679748535, -0.49247485399246216, -0.03776621073484421, 0.7143944501876831, -0.353309690952301, 0.1359798014163971, -0.7024267911911011, 0.2681715488433838, 0.8834463953971863, 0.2716669738292694, -0.19155296683311462, 0.6849815845489502, -0.9111034870147705, 0.30316436290740967, 0.6294592618942261, -0.4321076571941376, 0.8161647319793701, 0.4658423960208893, -0.19786319136619568, -0.75160151720047, -0.16778908669948578, 1.9280816316604614, 0.2733186185359955, -0.21112830936908722, 0.6389639377593994, -0.46244746446609497, 0.0333356037735939, -0.4766176640987396, 0.29898062348365784, -0.586139976978302, -0.33768489956855774, -0.5812783241271973, -0.8499498963356018, -0.9645832777023315, 0.21096256375312805, 0.5379142165184021, -0.27320921421051025, 1.3377407789230347, 0.20031356811523438, 0.0076225390657782555, -0.3439674377441406, 0.04612082988023758, 0.08321814239025116, -0.1391586810350418, -0.34055936336517334, -0.06615210324525833, -0.5322837233543396, -0.04438936710357666, 1.0469775199890137, -0.19685396552085876, 0.21333831548690796, 0.27534085512161255, -0.47462576627731323, 0.32466456294059753, -0.24698969721794128, 0.7842239141464233, 0.3598547577857971, 0.25297996401786804, -0.4267011880874634, -0.7891533970832825, 0.3729957640171051, -0.005797912832349539, 0.02339373342692852, -0.3277074694633484, 0.4110405743122101, 1.151607871055603, -0.5533212423324585, 0.997463583946228, -0.2506154775619507, -1.0168018341064453, 0.055912528187036514, -0.3174492120742798, 0.04487168788909912, 0.2102281004190445, -0.3237391710281372, -0.3112531900405884, 0.2906253933906555, -1.1110634803771973, 0.6178370118141174, -0.4623047411441803, -0.3627636432647705, 0.0864318311214447, -0.596749484539032, 0.5043520331382751, 0.30460670590400696, 1.536181092262268, 0.06207888200879097, -0.34435349702835083, 0.6736199259757996, 0.29157570004463196, 0.3408674895763397, 0.48076286911964417, 0.8753671050071716, 0.4449533522129059, -0.871471643447876, 0.22248555719852448, 0.18560433387756348, -0.25178250670433044, 0.8317119479179382, 0.788221538066864, -0.4108251631259918, 0.22175775468349457, -0.5417061448097229, -0.8575888276100159, -1.1777174472808838, 0.7911221981048584, 0.5320544838905334, -0.7979225516319275, 1.037738561630249, -0.5255163908004761, -1.1722058057785034, -1.0544071197509766, 0.036047451198101044, -0.04311006888747215, -0.010752681642770767, 0.18780866265296936, 0.7893803715705872, 0.3120826184749603, 0.34457600116729736, -0.2872842848300934, 0.11200851947069168, -1.5192002058029175, -1.2823773622512817, -0.3471853733062744, -1.1933982372283936, 0.5666031241416931, -0.3420276939868927, -0.624467670917511, 0.4461838901042938, -0.9588021039962769, -0.3678421974182129, -0.22788046300411224, -0.2849366068840027, -0.020827585831284523, -0.4645230174064636, 0.18471337854862213, -0.3368699848651886, 0.15903525054454803, -0.788044273853302, 0.827477753162384, -0.5302096009254456, -0.18027152121067047, 0.8243291974067688, -0.17216609418392181, -1.1657038927078247, 0.7501717805862427, -0.33025988936424255, -1.1497606039047241, 0.35299861431121826, 0.7043926119804382, 0.5606293082237244, -0.234994038939476, -0.01746857725083828, 0.16125483810901642, 0.4951460659503937, 0.24306729435920715, 0.11157479137182236, -1.1579257249832153, -0.5615282654762268, -1.093882441520691, -0.7679527401924133, 0.18793322145938873, -0.5587426424026489, -1.283112645149231, 0.37184011936187744, 0.13637514412403107, -0.5784575939178467, 0.5514752268791199, -0.27666962146759033, 0.2393045723438263, 0.17642183601856232, 0.9275737404823303, 0.011079186573624611, 0.6309197545051575, -0.8567063808441162, 0.049833204597234726, -0.5827748775482178, -0.1024208664894104, 0.984186053276062, -0.29185134172439575, 0.5597940683364868, 1.0397506952285767, 0.5713502168655396, 0.28915923833847046, 0.45282283425331116, -0.8827297687530518, -0.34752732515335083, -0.5806699395179749, -1.073876976966858, 0.30763429403305054, -0.2848205864429474, 1.3998210430145264, 0.4023551344871521, -1.3320989608764648, 0.28164735436439514, 0.49970823526382446, -0.034047145396471024, -0.14217621088027954, -0.3973150849342346, -0.4931972920894623, 0.4691745340824127, -0.1914200633764267, -0.005720559041947126, 0.5843101143836975, -0.6109746098518372, 1.427259922027588, -0.5672566294670105, -0.06327077001333237, -0.5235020518302917, 0.5867727994918823, 0.2145557850599289, 0.81163489818573, 0.16504521667957306, -0.7515349984169006, -0.2550276517868042, -0.8023117780685425, 0.7463493943214417, 0.1261197030544281, 0.07969789206981659, 0.3574345111846924, 0.8275647163391113, -0.2012864351272583, 0.6459400057792664, 0.7144494652748108, -0.06623755395412445, 0.5091612935066223, 0.19282402098178864, 0.06051074340939522, 0.9152682423591614, -0.21040013432502747, -0.46798354387283325, -0.5692481398582458, 0.6370785236358643, 1.1157499551773071, 1.124140739440918, 1.8938943147659302, 0.511546790599823, -0.16131114959716797, -0.3099517822265625, -0.1275429129600525, -0.38876572251319885, -0.5221567749977112, -0.3675377368927002, -0.2736268937587738, -0.07804382592439651, -0.4770219624042511, 0.02793879248201847, 0.31549811363220215, -0.2865070104598999, 0.9038796424865723, 0.391958624124527, -0.8238998651504517, -0.13654230535030365, 0.06746236234903336, -0.291709840297699, -0.882684051990509, 0.9234410524368286, 0.9552358388900757, -1.1382322311401367, -0.02592085301876068, -0.13579179346561432, 0.33171096444129944, 0.8400304913520813, 0.17009903490543365, 0.5422985553741455, -0.8162128329277039, -0.8506743907928467, -0.4447278678417206, 1.3681050539016724, 0.36797720193862915, 0.3106171786785126, -0.5566118955612183, 0.3470193147659302, 0.5074235200881958, -0.3755318522453308, 0.06834398955106735, 1.2622408866882324, -0.30220627784729004, -0.8432661890983582, 0.022859852761030197, 0.10915913432836533, 0.43958377838134766, -0.2963285744190216, -0.1976606249809265, -0.011379274539649487, 0.07847833633422852, 0.22958306968212128, 0.5835081934928894, -0.1824844479560852, 0.701143741607666, 0.23948270082473755, -0.13041532039642334, 1.1412713527679443, -0.5403286814689636, 0.4816894829273224, -1.335240125656128, 0.37224990129470825, 0.8165205717086792, 1.255677580833435, -0.49059486389160156, -0.1552133411169052, 0.05805196985602379, -0.16398130357265472, -0.06907631456851959, 0.4194156527519226, 1.0658940076828003, 0.5167284607887268, -0.5777705311775208, -0.35553133487701416, 0.3345291316509247, -0.28070420026779175, -0.4715062379837036, -0.20995992422103882, 0.7086817622184753, -0.9916625022888184, -0.6405019760131836, 0.6186323165893555, 0.024229925125837326, -0.4241826832294464, 0.0315418504178524, -0.15059451758861542, 0.3138832151889801, -0.12830065190792084, 0.48723700642585754, -0.586793839931488, 0.26124945282936096, 0.037044353783130646, -0.404257208108902, -0.5112212300300598, 0.003909209743142128, 0.6872767806053162, 0.6705369353294373, -0.4237595796585083, 0.1168522834777832, -0.42912557721138, 0.3425544798374176, 0.48487159609794617, -0.5295777320861816, -0.12536999583244324, 0.692615807056427, 0.45099377632141113, 0.1576581448316574, 0.4850746989250183, 1.0742121934890747, -0.745556116104126, -0.05800259858369827, 0.5420441031455994, 0.07514891028404236, 0.43487346172332764, -1.1444841623306274, 0.09906695038080215, 0.10735607892274857, -0.4936271011829376, -0.04447196424007416, -0.06720792502164841, -0.3045582175254822, 1.6497710943222046, 0.21301865577697754, 0.6421810388565063, 0.3477938771247864, -0.4053531289100647, -0.6913028359413147, -0.13755883276462555, 0.19646665453910828, 0.3475029766559601, -0.8124240636825562, 0.39185935258865356, 0.3244980573654175, 0.12631914019584656, 0.457209050655365, -0.07303924113512039, 0.39643147587776184, 0.4351482391357422, 0.010684063658118248, -0.011722652241587639, 0.43212831020355225, 1.0751873254776, 1.056079387664795, 0.6837748289108276, -0.43904754519462585, -0.34335580468177795, 0.8985362648963928, -0.5605700612068176, -0.300660103559494, 0.31468191742897034, -0.05866336077451706, 1.1592382192611694, -1.098793864250183, -0.9869264960289001, 0.6769230365753174, 0.6621009111404419, 0.19523419439792633, 0.26009100675582886, 0.035501379519701004, -0.6732206344604492, 0.5821115374565125, 0.49446752667427063, -0.17405693233013153, 0.20531333982944489, 0.4165375530719757, 0.44211092591285706, 0.5428345799446106, -0.28151074051856995, 0.4128134250640869, -0.342246949672699, -0.6125375628471375, -0.2052256017923355, -0.5021668672561646, 0.43419599533081055, 0.6476602554321289, 0.41820046305656433, 0.3392711281776428, -0.31723207235336304, -0.4619767367839813, 0.17846344411373138, -0.8907031416893005, 0.5289070010185242, -0.3215942084789276, -0.9822676181793213, -0.8145933151245117, -1.0008069276809692, -0.5512714385986328, -0.0004407104570418596, -0.4108831286430359, -0.19525927305221558, 0.08432374894618988, -0.9236734509468079, 0.43740689754486084, 0.29983144998550415, 0.9129729866981506, 0.6090401411056519, 0.2738198935985565, 0.5539038777351379, 0.46266859769821167, -0.4971257746219635, 0.33794113993644714, 0.04256633296608925, 0.1534954458475113, -0.13230673968791962, -1.3953722715377808, -0.33174824714660645, 0.3736773729324341, 0.013847037218511105, -0.09344810992479324, 0.06813515722751617, 0.8912514448165894, 0.8807227611541748, -0.082384392619133, -0.499559611082077, -0.05535885691642761, -0.30505621433258057, 0.9487214684486389, 0.09844125062227249, -0.861424446105957, 0.3862777352333069, -0.6958879828453064, -1.504964828491211, 0.9490406513214111, -0.16066062450408936, -0.6598734855651855, 0.2640523612499237, 0.0029413211159408092, -0.1572543978691101, 0.7210618853569031, -0.1998830884695053, 0.23788024485111237, -0.0787191092967987, -0.13634228706359863, -1.3156737089157104, 0.7464633584022522, 0.2666325271129608, 0.24845841526985168, -0.3189660906791687, -0.23496222496032715, 0.44457095861434937, -0.21550263464450836, -0.026602908968925476, 0.21209050714969635, 0.4203992784023285, 0.42037343978881836, -0.25256097316741943, -0.6146575212478638, 0.3019380271434784, -0.6768218874931335, -0.367840439081192, -0.1102953776717186, 0.3565315902233124, 0.2540082037448883, -0.6881616711616516, -0.3165765106678009, -0.0007035303860902786, -0.14919845759868622, 0.12029687315225601, -0.32024165987968445, 0.8249509930610657, 0.39907070994377136, -0.36760470271110535, 0.19552575051784515, -0.5627008080482483, -0.4538784325122833, -1.0815742015838623, -0.04145731031894684, 0.7497435808181763, -0.7850672006607056, -0.4557753801345825, 0.11319994181394577, -0.272128164768219, -0.13869179785251617, -0.2775220572948456, 0.13145627081394196, -1.027819275856018, -1.2103614807128906, -1.1298185586929321, 0.14428618550300598, 0.3368353843688965, -0.7604861855506897, 0.7088003754615784, 0.5932384729385376, -1.3958114385604858, 0.06392095983028412, -0.7074340581893921, -1.235656499862671, -0.06446224451065063, -1.4220770597457886, 0.07499787956476212, -0.4151650369167328, 0.27022382616996765, -0.15107034146785736, 0.766936719417572, -1.0044070482254028, -1.1564500331878662, -0.610029935836792, -0.473513126373291, -0.2311783879995346, 0.6660272479057312, -0.6445546746253967, 0.7751011848449707, 0.518855631351471, -0.29052016139030457, -0.5706160664558411, 0.6054579019546509, -1.2509777545928955, 0.5611909031867981, 0.2117842435836792, 0.3333345651626587, -0.09390901029109955, 1.0498836040496826, -0.2755083441734314, 0.6097962856292725, -0.24254441261291504, -0.009698010049760342, 0.03154829517006874, -0.026082675904035568, -0.26276421546936035, -0.08103767782449722, -0.8318877816200256, -0.8605888485908508, -0.13188791275024414, -0.8513954281806946, -1.4193915128707886, 0.5120542049407959, 1.1908289194107056, -0.5478686094284058, 0.5240527987480164, -0.4498150050640106, 0.5671483278274536, -1.4157302379608154, 0.08258501440286636, 0.6709393858909607, -0.7692569494247437, 0.009998573921620846, -0.8190038204193115, 0.2186243236064911, -0.9777805805206299, -0.012128523550927639, 0.5099785327911377, 0.25711047649383545, -0.4740310311317444, 0.22095884382724762, 1.1633089780807495, -0.289537250995636, -0.21062003076076508, 0.7375152707099915, 0.7605711817741394, -0.5172820687294006, -0.4208633601665497, 0.33159589767456055, -0.6021512746810913, 0.8245143294334412, -0.4999926686286926, -0.21920210123062134, -0.7159535884857178, 0.06521975994110107, -0.36760368943214417, -0.7888786196708679, -0.41860783100128174, -0.4695826470851898, -0.7455745339393616, -0.038786303251981735, 0.454754501581192, 0.2697567045688629, -0.44240134954452515, 1.3046950101852417, 0.2746916711330414, -0.2430020272731781, 0.22866731882095337, 0.5260692834854126, 0.17370368540287018, -0.040549565106630325, 0.0562722310423851, 0.15643686056137085, -0.2106732279062271, 0.21161004900932312, 0.1793508529663086, 0.16444522142410278, -0.2549211084842682, -0.3057560920715332, -1.6368674039840698, -0.28154081106185913, -0.1341570019721985, -0.3062414228916168, 0.1893940567970276, -0.6576730608940125, -0.9329875707626343, 0.18350020051002502, 0.15544761717319489, -0.1468888372182846, -0.19776614010334015, -0.36213329434394836, -0.6141271591186523, 0.293010413646698, 0.6699859499931335, -0.5443328619003296, 0.9621171355247498, 0.1840255856513977, -0.1670178920030594, -0.4332219660282135, -0.24347005784511566, -0.03776656091213226, 0.332592636346817, -0.04235363006591797, -0.19177916646003723, 0.7710458636283875, -0.5367962121963501, -1.1790986061096191, -0.16940942406654358, 0.6739646196365356, 0.17826524376869202, -0.319819837808609, -0.45835304260253906, 0.42440366744995117, 0.6060051321983337, 0.31468695402145386, -0.40784752368927, -1.0621434450149536, -1.0887542963027954, 0.6466478705406189, -0.3213768005371094, 0.7828044891357422, -0.3046237528324127, 0.7822979092597961, 0.3453792333602905, 0.11927919089794159, -0.2766478359699249, 0.1255270093679428, 0.15693412721157074, -0.6612263321876526, 1.2826175689697266, 0.5831943154335022, 0.2347298115491867, -0.14440320432186127, -0.6606259346008301, -0.23203571140766144, -0.28973522782325745, -0.3225264549255371, 0.49253740906715393, -0.8213598132133484, -0.15444523096084595, -0.5510513186454773, 0.4325779974460602, 1.0631645917892456, 0.3733671009540558, 0.437546044588089, 0.013864175416529179, -0.8213516473770142, 0.2058609127998352, 0.005766184069216251, -0.2564910054206848, 0.07786964625120163, 0.9481570720672607, 1.3491953611373901, 0.49782946705818176, -0.18214410543441772, 0.16321085393428802, 0.8214118480682373, -0.7740562558174133, -0.24786213040351868, -0.6475149989128113, 0.2265959084033966, -0.5148377418518066], [-1.0674538612365723, 1.3547685146331787, -1.8199107646942139, -1.1870447397232056, 1.0859726667404175, -0.4017763137817383, 1.5553271770477295, -0.07670386880636215, 0.015424801036715508, -0.5861388444900513, -0.3011188805103302, -0.04904518648982048, 0.41721251606941223, 1.6781182289123535, 0.1322752833366394, 0.42168688774108887, 0.4602124094963074, -0.09437219053506851, 0.6025944948196411, 1.6169880628585815, -0.8560730814933777, 0.31432250142097473, 0.47500497102737427, 0.37609708309173584, 0.08101895451545715, 0.3234555125236511, -0.7775503396987915, -0.8146317005157471, -0.7585482597351074, -0.911354124546051, 1.911181092262268, -1.092829942703247, 0.03246372938156128, 0.15776531398296356, -1.399376392364502, -0.13899023830890656, 1.0382646322250366, 0.9146591424942017, -0.149112731218338, 0.20751126110553741, 1.2957843542099, 0.1428210437297821, -0.37104737758636475, -1.7956035137176514, 0.8413130640983582, -0.27338212728500366, 0.9808857440948486, -0.9076545834541321, -0.13748398423194885, -0.9124729633331299, 0.556341290473938, -0.7276849746704102, 0.8704531788825989, 0.6974648237228394, 0.45435547828674316, -0.004572000354528427, 0.4056440591812134, 0.053145743906497955, 0.16975779831409454, -0.14938107132911682, 0.8665227890014648, 0.23802819848060608, -0.7049931287765503, 0.7408541440963745, 0.5210165977478027, 0.3485925793647766, -0.4242172837257385, 0.16567978262901306, 0.1847151517868042, 0.20157074928283691, 0.28563445806503296, -0.18940776586532593, -0.22884903848171234, -0.08288264274597168, -0.339227557182312, 0.8139889240264893, 0.7766404151916504, 0.6631704568862915, 0.8154134154319763, 0.6293342709541321, -0.6618181467056274, -0.5600850582122803, 0.6041926145553589, -0.2844552993774414, 0.20125329494476318, 0.023156728595495224, 0.2620314955711365, -1.045802116394043, -1.1058937311172485, 1.299760341644287, -0.007675148546695709, 0.20740333199501038, 0.5913508534431458, -0.4840405583381653, 0.5552534461021423, -0.20137707889080048, 0.1514570713043213, -0.8799606561660767, -0.0426408015191555, -0.44011351466178894, -1.0808227062225342, -0.16903015971183777, 0.6107161045074463, 0.01340213418006897, -0.7184898853302002, 0.7380949854850769, 0.304438054561615, -0.3503451645374298, -0.5008764266967773, 0.32218480110168457, -0.5886113047599792, 0.49681586027145386, -0.9565086364746094, -1.0043995380401611, -0.4936264157295227, 0.6331313848495483, 0.9803475737571716, -0.12792840600013733, 0.7151798009872437, 0.5783320665359497, -0.7263052463531494, -0.24654074013233185, 0.5362573862075806, 0.5178203582763672, 0.40957966446876526, 0.01915527880191803, -1.0619609355926514, -0.6628392934799194, -0.6242343187332153, -0.638800859451294, 0.46580636501312256, -0.142680361866951, -0.24706147611141205, 0.49458205699920654, -0.24719159305095673, 1.4076411724090576, -0.2712860703468323, -0.9758498668670654, -0.10220127552747726, -0.09303860366344452, 0.6407028436660767, -0.27852553129196167, -0.17326287925243378, -0.5557266473770142, 0.23926392197608948, -0.005721673369407654, 0.04587673023343086, -0.6171149015426636, -0.39223265647888184, 0.10657389461994171, -0.9848146438598633, 0.69479900598526, 0.13278953731060028, 1.6102403402328491, 0.06566693633794785, -0.39173877239227295, 0.527725100517273, -0.09699750691652298, 0.47187092900276184, 0.17588582634925842, 0.4848380386829376, 0.09717375785112381, -1.2181003093719482, 0.23267820477485657, 0.20692011713981628, -0.558997392654419, 0.77397221326828, 0.3581657111644745, 0.3037407696247101, 0.33324936032295227, -0.325256884098053, -0.5022518634796143, -0.587944746017456, 0.8874180316925049, -0.2884819805622101, -1.1812691688537598, 1.2768926620483398, -0.2903612554073334, -0.7942050695419312, -0.6387662887573242, -0.12239322066307068, -1.176379680633545, 0.03262670338153839, -0.5626822710037231, -0.07274599373340607, -0.33487239480018616, 0.08154532313346863, -0.6043225526809692, -0.27666300535202026, -0.8797223567962646, -0.2381819188594818, -0.3670743405818939, -0.9648959636688232, 0.3675178289413452, -0.5339319705963135, -0.8012572526931763, 0.6458320617675781, -0.9907370209693909, -0.24970883131027222, -0.4254869818687439, -0.5405511856079102, -0.12604829668998718, -1.1390070915222168, 0.5224684476852417, -0.461047887802124, 0.8131554126739502, -0.16294528543949127, 0.9161293506622314, -0.5857671499252319, -0.10056167840957642, 1.1703239679336548, -0.24910570681095123, -0.9315232634544373, 0.39750176668167114, -0.47255343198776245, -1.2997634410858154, 0.44021350145339966, -0.09880411624908447, -0.5242156982421875, 0.5054553747177124, 0.15548425912857056, 0.5189014673233032, -0.3215441107749939, 0.11679898947477341, -0.05193614959716797, -0.959264874458313, -0.22487501800060272, -0.5923480987548828, -0.30049970746040344, 0.4088892340660095, -0.8333910703659058, -1.1711852550506592, 0.5461297035217285, 0.5077508091926575, -0.2382139265537262, -0.055810846388339996, 0.2446097880601883, 0.2434089332818985, -0.014879904687404633, 1.2866932153701782, 1.0537118911743164, 0.822471022605896, -0.5846510529518127, -0.1291007101535797, -0.536520779132843, -0.4566502273082733, 0.7705721855163574, -0.3855680525302887, 0.15052753686904907, 1.247572422027588, 0.2471635639667511, 0.14302146434783936, 0.4002862870693207, -0.38898220658302307, -0.3236536979675293, -0.12575219571590424, -0.4468255341053009, 0.3962444067001343, -0.13244307041168213, 1.0058934688568115, -0.025654971599578857, -0.4495531916618347, -0.45668286085128784, 0.2790205180644989, 0.03625510632991791, -0.6120453476905823, -0.7001475095748901, -0.17778553068637848, 0.07573997974395752, 0.19654470682144165, 0.13530559837818146, 0.6215157508850098, -0.4416089653968811, 0.3165191411972046, -0.07296601682901382, -0.2545093595981598, -0.1839788556098938, 0.688485860824585, -0.02836253121495247, 1.164117693901062, 0.4399265646934509, -1.023622751235962, -0.29240885376930237, 0.31732577085494995, 0.7309359908103943, -0.005032321438193321, 0.07202883809804916, 0.9002202749252319, 0.6798428297042847, -0.40266984701156616, 0.4348470866680145, 0.6284167766571045, -0.39575672149658203, 0.2615095376968384, 0.29912322759628296, 0.6204543709754944, 0.8882254362106323, -0.8368720412254333, -0.6641290187835693, -0.07746908813714981, 0.035166554152965546, 1.687161922454834, 1.1834064722061157, 1.3190696239471436, -0.44675374031066895, -0.08945313096046448, -0.23672397434711456, -0.22577086091041565, -0.20280419290065765, -0.6634596586227417, -0.49734973907470703, -0.08665920794010162, -0.5546972155570984, -0.4872203469276428, 0.3813890218734741, 0.8201443552970886, 0.5180455446243286, 1.009537935256958, 0.43876513838768005, -0.019403254613280296, -0.3327177166938782, 0.0611397847533226, -0.433828741312027, -0.8821895122528076, 0.2535398304462433, 0.809178352355957, -0.4180760979652405, -0.16994686424732208, 0.04347013682126999, -0.25637486577033997, 0.6632410287857056, 0.1733679473400116, 1.3384289741516113, -0.788699209690094, -0.6668304800987244, -0.5610715746879578, 1.675233006477356, 0.04074333235621452, 0.0795309990644455, 0.2763359546661377, 0.23177313804626465, -0.12488564103841782, -0.2641039788722992, -0.5348998308181763, 0.19005395472049713, -0.600256085395813, -0.42655056715011597, 0.3132489323616028, 0.5948885679244995, -0.5108779668807983, -0.10925459116697311, -0.4172016382217407, -0.08965644240379333, -0.604520857334137, 0.3102864623069763, 0.007753640413284302, 0.34730809926986694, 0.9329185485839844, -0.6936146020889282, -0.14924190938472748, 0.4623403549194336, 0.22390463948249817, -0.943689227104187, -1.220371961593628, 0.8062452673912048, 0.11033576726913452, 0.28265878558158875, 0.28479647636413574, 0.129143625497818, 0.31313556432724, -0.514380693435669, 0.39168238639831543, 0.1270521581172943, 0.3025425374507904, 0.10861536115407944, -0.3947010040283203, -0.3010776937007904, 0.23820337653160095, 0.12845489382743835, -0.21006779372692108, -0.06412427127361298, 0.9505184292793274, -0.9642915725708008, -0.1481103152036667, 1.0917505025863647, 0.5252828598022461, 0.10726196318864822, -0.17511527240276337, 0.12360532581806183, 0.171211376786232, -0.2605551779270172, 0.898579478263855, -0.3122755289077759, 0.056159865111112595, -0.09755485504865646, -0.33116745948791504, -0.16324082016944885, -0.14557303488254547, 0.16131554543972015, 0.9445840120315552, -0.551350474357605, -0.530526876449585, -0.670621395111084, 0.5869433879852295, -0.09474895894527435, -0.29336053133010864, 0.8656784296035767, 0.3385394811630249, -0.014771293848752975, -0.2927396297454834, 0.38520175218582153, 0.9565104246139526, -0.13126283884048462, -0.5023266673088074, -0.3912830948829651, 0.34043794870376587, 0.03632723540067673, -0.6092020273208618, -0.09653802216053009, 0.550699770450592, 0.0039786845445632935, 0.09457336366176605, -0.2525802552700043, -0.21698391437530518, 1.4333009719848633, 0.23283816874027252, 0.25400975346565247, 0.22121384739875793, -0.38773709535598755, -0.13671432435512543, 0.22181905806064606, 0.2089766561985016, 0.4287009835243225, -0.12769165635108948, -0.0044433255679905415, 0.6295599937438965, -0.2761218249797821, 0.37816479802131653, 0.6098684072494507, 0.6622368097305298, -0.2725115716457367, -0.6754835844039917, -0.3636138439178467, -0.08938055485486984, 0.1529894471168518, 1.1207956075668335, 0.0460866279900074, -0.24786211550235748, -1.483255386352539, 0.0968078076839447, -0.16989970207214355, 0.060978032648563385, 0.3562517762184143, 0.3151134252548218, 1.3133134841918945, -1.0678637027740479, -0.23842917382717133, -0.2721656858921051, 0.37969183921813965, 0.06718669831752777, 0.5919047594070435, -0.2815663814544678, -1.3246784210205078, -0.06192989647388458, 0.4070308804512024, 0.022715844213962555, 0.28998053073883057, -0.12518200278282166, 0.304115891456604, 0.6848729848861694, -0.48302048444747925, 0.37569522857666016, -0.1507512629032135, -0.4859466552734375, -0.7515996694564819, -0.22763292491436005, 0.128245010972023, 0.3239752948284149, 0.2532998025417328, 1.1877079010009766, -0.3324899673461914, -0.3839288353919983, 0.30616870522499084, -1.3849457502365112, 1.0062413215637207, -0.6630324125289917, -0.21945397555828094, -0.1962125152349472, -0.8138066530227661, -0.6239095330238342, 0.3449704051017761, -0.993007481098175, -0.5913689136505127, -0.4985445737838745, -1.0469789505004883, 0.3842671513557434, 0.6246168613433838, 1.4000349044799805, 0.30572399497032166, 0.3067615032196045, 1.1686010360717773, 0.380967378616333, -0.399810254573822, -0.08336768299341202, 0.35483357310295105, -0.52855384349823, 0.4901878237724304, -1.1633403301239014, -1.1294312477111816, 0.6808103322982788, 0.3068333864212036, 0.16635370254516602, 0.5861330032348633, 0.717007040977478, 0.7909613847732544, -0.19441430270671844, 0.0082850381731987, 0.17946434020996094, -0.745148241519928, 0.8103716373443604, 0.2783381938934326, -0.22795890271663666, -0.5189635753631592, -0.8531773090362549, -1.5487208366394043, 1.766522765159607, 0.184023916721344, -0.5303462147712708, 0.7722384929656982, 0.34171998500823975, -0.17665432393550873, 0.47090137004852295, -0.0064244940876960754, -0.3699851632118225, -0.1478898823261261, -0.6068753600120544, -0.9962306618690491, 0.290710985660553, 0.10548277199268341, -0.32442155480384827, -0.2982192933559418, -0.1334482878446579, 0.6327283382415771, 0.05124881863594055, 0.38878393173217773, 0.5271873474121094, 0.326640784740448, 0.12037371098995209, 0.6747736930847168, -0.3784456253051758, 0.45778799057006836, -1.0936766862869263, -0.7348105907440186, 0.09875741600990295, 0.6754415035247803, -0.046413861215114594, 0.38451820611953735, 0.10577886551618576, 0.43001824617385864, -0.003590606153011322, -0.13905154168605804, -0.45217299461364746, -0.1899421364068985, 1.088157296180725, -0.18982845544815063, 0.5970259308815002, -0.2717602252960205, -0.1364189088344574, 0.020529042929410934, 0.28741198778152466, 0.7030659914016724, -0.9477802515029907, -0.3106030225753784, 0.26545917987823486, -0.3517008423805237, -0.2788572311401367, -0.4238208532333374, -0.26454871892929077, -1.2145049571990967, -1.0867724418640137, -1.0598381757736206, 0.015262545086443424, 0.6165735125541687, -0.3904794156551361, 0.25319474935531616, 0.11125542968511581, -1.404336929321289, 0.25402554869651794, -0.49209654331207275, -1.3012034893035889, -0.06857480853796005, -1.1778819561004639, 0.8215444684028625, -0.6706066727638245, 0.7990608811378479, 0.25914067029953003, 1.3624470233917236, -0.8099675178527832, -1.0848089456558228, -0.19168239831924438, -0.08475083112716675, 0.5989986658096313, 0.4250744581222534, -0.8265515565872192, 0.9426151514053345, 0.7066537141799927, -0.3793056905269623, -0.42333245277404785, 0.15089455246925354, -0.28575652837753296, 0.04283618927001953, -0.049351178109645844, 0.4611443877220154, 0.04643617197871208, 1.2624589204788208, 0.12946513295173645, 0.5364090204238892, 0.5191341638565063, 1.1068451404571533, -0.3959046006202698, 0.07307950407266617, -0.4805052578449249, 0.212105393409729, -0.7211079597473145, -0.5291005373001099, 0.04377446696162224, -1.0597199201583862, -1.089755892753601, 0.08669634163379669, 1.3362014293670654, -0.8987456560134888, 0.5682305693626404, -0.5136117339134216, 0.8179466724395752, -1.1381490230560303, 0.5854164958000183, -0.36108458042144775, -0.13043294847011566, -0.1062084212899208, -0.19685962796211243, -0.3740859627723694, -0.802550733089447, -0.12227313220500946, 0.7729154825210571, 0.5786441564559937, -0.517894446849823, 0.8999079465866089, 0.5742185115814209, -0.1344422847032547, -0.5025632381439209, 1.091282606124878, 0.637363612651825, 0.1085074320435524, -0.514644980430603, -0.20317202806472778, -0.13661053776741028, 0.48207777738571167, -0.20647978782653809, 0.3852088451385498, -0.556188702583313, 0.8334743976593018, -0.2673173248767853, -0.29623332619667053, -0.5828105211257935, -0.828620970249176, -0.06897203624248505, -0.6132808327674866, 1.3091034889221191, -0.028685808181762695, -0.05546819046139717, 1.1543285846710205, 0.10955597460269928, -0.25943654775619507, -0.08343569189310074, 0.3422447443008423, 0.1584165096282959, -0.10189211368560791, 0.7336400747299194, 0.35765340924263, -0.6204609870910645, 0.06622086465358734, 0.21783709526062012, 0.5006033778190613, 0.3595393896102905, -0.48022449016571045, -1.6443912982940674, -0.16727638244628906, -0.8956911563873291, -0.766656756401062, 0.5576929450035095, -0.26744091510772705, -0.9266805052757263, 0.5599404573440552, 0.527237594127655, -0.2898935377597809, 0.13313564658164978, 0.23990079760551453, 0.242628812789917, -0.33751916885375977, 1.220639944076538, -0.48507988452911377, 1.318685531616211, -0.3773304224014282, -0.09495850652456284, -0.32986050844192505, -0.3051329255104065, 0.2766037583351135, -0.16579067707061768, 0.12424251437187195, -1.0210756063461304, 0.35427218675613403, 0.3705766201019287, -1.20431387424469, 0.7984495759010315, 0.14775130152702332, 0.3729315400123596, -0.2936112880706787, -0.3098587393760681, -0.11182154715061188, 0.6060653924942017, 0.734009861946106, -0.6122161149978638, -0.7872756123542786, -1.0465400218963623, 0.31929776072502136, -0.9243298768997192, 0.6832988262176514, -0.2649960219860077, 0.13584010303020477, 0.6746178865432739, -0.11616058647632599, -0.605312705039978, -0.8132362365722656, 0.15662705898284912, -0.09613245725631714, 0.17384929955005646, -0.025635167956352234, -0.32369929552078247, 0.2528527081012726, -0.9117317199707031, 0.703201413154602, -0.15610119700431824, 0.0032721906900405884, 0.4824568033218384, -0.8870980739593506, -0.9947326183319092, -0.3582232594490051, 0.0015954039990901947, 0.846922755241394, 0.07618074119091034, 0.44352877140045166, 0.4192327857017517, -0.6260328888893127, -0.19178199768066406, -0.0005991309881210327, -0.6970114707946777, 0.08188271522521973, 1.2573058605194092, 1.4898216724395752, -0.15379191935062408, 0.6825737357139587, -0.7220595479011536, 0.508420467376709, -0.5657659769058228, -0.5793923735618591, -0.3007972538471222, 0.2256273329257965, -0.19105681777000427], [-0.3866255581378937, 0.5183123350143433, -2.3021280765533447, -0.41362378001213074, -0.13198800384998322, 0.390229195356369, 1.3134217262268066, 0.18322275578975677, 0.00916169211268425, -1.3629475831985474, -0.6533296704292297, 0.8170055150985718, 0.4215567111968994, 0.8296146988868713, -0.15940974652767181, -0.0684565082192421, 0.5374886393547058, -0.08417603373527527, 0.3608204424381256, 0.4974397122859955, 0.19492653012275696, -1.6245918273925781, -0.39671552181243896, 0.6321464776992798, 0.5399652123451233, 0.05965760350227356, -2.0253653526306152, -1.1555235385894775, -1.4330543279647827, -0.4556766152381897, 1.4376683235168457, -0.721394956111908, -0.45278385281562805, -0.17321018874645233, -1.2625054121017456, -0.772059440612793, 0.27509504556655884, 0.5411617159843445, 0.6622010469436646, -0.16162607073783875, 1.8423501253128052, -0.2325592190027237, -0.44766536355018616, -1.6254078149795532, 0.0305081307888031, 0.5200201869010925, 0.634557843208313, -1.6527701616287231, -0.09023687988519669, -0.4309242367744446, 0.9486865997314453, -0.33764365315437317, 0.3383164405822754, 0.8763319849967957, 0.9750707149505615, -1.1708524227142334, 0.1168878823518753, -0.1249067559838295, 0.48310011625289917, 0.4031096398830414, 1.740077257156372, 0.983619213104248, -0.4392855167388916, 1.450875997543335, 0.7180086970329285, -0.38691338896751404, 0.08958051353693008, 0.5963554978370667, -1.0425864458084106, -0.05441423878073692, 0.5525497198104858, -0.08068868517875671, -0.7190953493118286, 0.164885014295578, -0.47708985209465027, 0.07073021680116653, 0.022450868040323257, 0.5752279162406921, 0.2622406780719757, 1.0186173915863037, -0.30432257056236267, 0.27484092116355896, 0.36994150280952454, 0.06648550927639008, 0.5014560222625732, 0.18817219138145447, -0.34517553448677063, 0.08597216755151749, -0.7394019365310669, 1.542240023612976, -0.22383368015289307, 0.9754723906517029, 0.713114857673645, -1.039933204650879, 0.3229861855506897, -0.8342491984367371, 0.6517913341522217, -0.19842258095741272, -0.40589869022369385, -0.8131740689277649, -0.1693745255470276, -1.2057843208312988, 0.5774273872375488, -0.24819175899028778, 1.110974907875061, 1.7752152681350708, -0.2184566706418991, -0.900112509727478, -0.28467661142349243, -0.1614854484796524, -0.16338466107845306, 1.239338994026184, -0.7092483639717102, -0.9786441326141357, 0.22616830468177795, 0.7427757382392883, 0.37113240361213684, 0.05456382408738136, 0.7170251607894897, 0.707767128944397, -0.8347283005714417, -0.45597904920578003, -1.0098105669021606, 0.7339290976524353, 0.6417410373687744, 0.5035935640335083, -0.36262789368629456, 0.0709281638264656, -0.29705068469047546, 0.44239503145217896, -0.07631015032529831, -0.13576675951480865, -0.4545707106590271, 1.1155604124069214, -0.6924199461936951, 1.3838869333267212, -1.0074446201324463, -1.43271005153656, -0.15498876571655273, 0.16369202733039856, 0.6361575722694397, -0.709104597568512, -0.6376762390136719, -0.6935659050941467, 0.057119760662317276, -0.5167325735092163, 0.48915860056877136, -0.05445189028978348, -0.5102083086967468, -0.27524447441101074, -1.5926507711410522, -0.13796080648899078, 0.2979302704334259, 1.0378704071044922, -0.11327588558197021, 0.014628779143095016, 0.731032133102417, 0.03135699778795242, 0.8177205324172974, 0.3724833130836487, 1.094678521156311, 0.24415290355682373, -0.2313753217458725, 1.2486486434936523, 0.017540035769343376, -1.0758219957351685, 0.38913652300834656, 0.6051220297813416, 0.06124473735690117, 0.7369075417518616, -0.6490573883056641, -0.793467104434967, -0.5390218496322632, 0.3570183515548706, -0.7408889532089233, -0.7746822834014893, 0.4718782305717468, -0.19706135988235474, -0.8686410188674927, -1.0717190504074097, 1.0222394466400146, -0.5051459074020386, 0.658250093460083, -0.02258375659584999, -0.011152197606861591, -0.27090564370155334, -0.08891516923904419, 0.6944907307624817, -0.1189764142036438, -0.2938922643661499, -1.2006715536117554, -0.39912840723991394, -1.2550309896469116, -0.10486581921577454, -0.4617622196674347, -0.9924556016921997, 0.041218966245651245, -0.4567776322364807, -0.33027392625808716, 0.1523420661687851, -0.09257018566131592, -0.36535871028900146, -1.3668767213821411, 0.03151089325547218, -0.3678589463233948, 0.23854319751262665, 0.12034853547811508, 0.2237549126148224, -0.04688730090856552, 0.5671941041946411, 0.9078448414802551, 0.363229900598526, -1.1807607412338257, 0.4529288113117218, 0.07217381149530411, -1.511422038078308, -0.2616182267665863, -0.23982496559619904, -0.5586563944816589, 0.31381893157958984, -0.10197288542985916, 0.1538092941045761, 1.1360031366348267, -0.18640395998954773, 1.0236124992370605, 0.2255282998085022, -0.6805137991905212, -0.4763815402984619, -0.841196596622467, 0.45227304100990295, -0.7440752983093262, -0.7669214606285095, 1.0050990581512451, 0.11214567720890045, -0.9561432600021362, 0.2498565912246704, 0.08159969002008438, -0.03336528316140175, 0.38884520530700684, 0.6462701559066772, 0.21643005311489105, 0.6032467484474182, -0.3027138411998749, -0.6261463165283203, -0.6552526354789734, 0.46961167454719543, 0.7891818881034851, -0.04394776001572609, 0.4733055830001831, 0.9579035043716431, 1.1503524780273438, -0.3126835823059082, 0.1729394942522049, 0.26567766070365906, -0.8631198406219482, -0.7315658926963806, -0.4641588628292084, -0.2312539517879486, -0.9969913959503174, 1.183188557624817, 0.6328473091125488, -1.0770663022994995, -0.8509914875030518, -0.0564962700009346, -0.10083749890327454, -0.06605509668588638, -0.4286035895347595, -0.8405724167823792, 0.7020969390869141, 0.1697983294725418, 0.312728613615036, 0.012931065633893013, -0.12749961018562317, 0.2850455939769745, -0.10247129946947098, -0.2518940269947052, -0.4434148967266083, 0.3163391947746277, 0.47839513421058655, 1.2117424011230469, -0.34763607382774353, -1.1174821853637695, -0.24567823112010956, 0.1602083444595337, 0.29807886481285095, -0.34774407744407654, -0.21000148355960846, 1.045545220375061, 1.0315245389938354, -0.16010591387748718, 0.06027449667453766, -0.1303536295890808, 0.07859235256910324, -0.6596436500549316, 0.7525566220283508, 0.51454097032547, 1.1685264110565186, -0.7246423959732056, -1.001269817352295, -0.49789151549339294, 0.3556382954120636, 1.0650036334991455, 0.5294397473335266, 0.9962385892868042, -0.500607967376709, -0.5129549503326416, -0.3550873100757599, -0.38351237773895264, -1.5687129497528076, -0.39172476530075073, -0.8453117609024048, -1.3391954898834229, 0.05244346335530281, -0.47641846537590027, 0.5949362516403198, 0.9961238503456116, 0.1039595827460289, 0.820838451385498, 1.2034921646118164, 0.1699545979499817, -0.7054910659790039, -0.3492913544178009, 0.43333473801612854, -1.239557147026062, 0.42760786414146423, 1.328757882118225, -0.900532066822052, -0.09986277669668198, 0.1070731058716774, 0.3561672568321228, 0.5344917178153992, -0.01624462567269802, 0.09901861101388931, -1.4266184568405151, -0.46079903841018677, 0.20826703310012817, 1.5855176448822021, -0.18893910944461823, -0.6537250876426697, -0.7954562902450562, 0.719603419303894, 1.2894632816314697, -0.40142595767974854, -0.5696347951889038, 0.623253583908081, -0.5271779894828796, -0.4260229170322418, -0.0395042859017849, -0.23192061483860016, 1.294050693511963, -0.6416996717453003, -0.2706512212753296, -0.23095589876174927, 0.3706953525543213, -0.023341432213783264, 0.25279587507247925, -0.6469621658325195, 1.1737695932388306, 0.029986843466758728, 0.1500433385372162, 0.7752020955085754, -0.7460072636604309, 0.18969976902008057, -1.1329294443130493, 0.2211643010377884, 0.031241396442055702, 1.096388816833496, 0.1911390870809555, 0.7780773043632507, 0.2102089673280716, -1.253029465675354, 0.4279547333717346, 0.8464819192886353, 0.3652559220790863, -0.2193981409072876, -0.7374810576438904, -0.7824639081954956, -0.5553086996078491, -0.36958491802215576, -0.9113101363182068, -0.42500847578048706, 0.24131456017494202, -1.020171046257019, -0.1864939033985138, 0.8007086515426636, 0.8191786408424377, -0.27736106514930725, 0.24193409085273743, 0.06856242567300797, 0.4216672480106354, -0.639607846736908, -0.03593907132744789, -0.41755855083465576, 0.24481132626533508, 0.4002681374549866, -0.6790342330932617, -0.4252409040927887, 0.1040366142988205, 0.3805537819862366, 0.6868739724159241, -1.7149250507354736, 0.5430384874343872, -0.3934882581233978, 0.4214859902858734, 0.5800061225891113, 0.05660763010382652, 0.18721093237400055, 0.2621411681175232, -0.6517632007598877, -0.3707696497440338, 0.33147600293159485, 1.4377968311309814, 0.19447046518325806, -0.30907830595970154, -0.172481507062912, -0.36081987619400024, 0.3634764552116394, 0.18943069875240326, -0.006949468050152063, 0.21666957437992096, 0.2977389991283417, 0.8456262946128845, -0.01903693564236164, 0.3700498342514038, 1.7987431287765503, 0.19045987725257874, -0.14969436824321747, 0.5696722269058228, -0.07376832515001297, -0.588505744934082, -0.3480875492095947, 0.4927971363067627, -0.8233267664909363, 0.205808624625206, 0.007799053564667702, 0.11997824907302856, 0.6154094934463501, 0.39770442247390747, 1.1659435033798218, 0.9699600338935852, 0.46986210346221924, -0.8752179741859436, -0.049454957246780396, 0.7644517421722412, 0.8170248866081238, 1.1678860187530518, 0.4435691833496094, -0.354177862405777, -1.1693692207336426, 1.1074953079223633, -0.7221313118934631, 0.3290242850780487, 0.12723441421985626, 0.041815802454948425, 0.7629426717758179, -1.2060186862945557, -0.35581108927726746, 0.7653290033340454, -0.29062536358833313, 0.6567292213439941, 0.1607331484556198, -0.12607982754707336, -0.07644100487232208, -0.4471334218978882, -0.6822205185890198, -0.29680517315864563, 0.6999338865280151, -0.11785975098609924, -0.3520132303237915, 0.9974356293678284, -0.5656216144561768, 0.14662954211235046, -0.6233110427856445, -0.15272872149944305, 0.22422432899475098, 0.02523564174771309, -0.015103788115084171, 0.1402195394039154, 0.1460447907447815, 1.9100861549377441, -0.4661904573440552, -1.0455464124679565, 0.06450445204973221, -1.1790355443954468, 0.3864186406135559, -0.4264501631259918, -0.3524288833141327, 0.05291162058711052, -0.24202077090740204, -0.2914440333843231, -0.020523877814412117, -0.6359043121337891, -0.48961392045021057, -0.30570855736732483, -1.09922456741333, 0.2399590164422989, 0.07430150359869003, 1.0439479351043701, 0.8348689675331116, 0.3388306796550751, -0.6040027737617493, 0.22625571489334106, -0.6591581702232361, 0.3221088647842407, 0.7152429223060608, -0.36975494027137756, -0.5998356342315674, -0.785971999168396, -1.1425971984863281, 1.4006078243255615, 0.5960556268692017, 0.20166519284248352, 0.7511171698570251, 1.3394712209701538, 1.5999019145965576, -0.46510812640190125, -0.4483925700187683, 1.206540584564209, -0.9570915699005127, 1.451351523399353, 0.37154120206832886, -1.0329538583755493, -0.2014523297548294, 0.2465481013059616, -2.559077024459839, 0.9902724027633667, 0.4229828119277954, -0.7057437300682068, 1.3886133432388306, 0.7452889680862427, 0.3221951425075531, 0.7233692407608032, -0.741926372051239, -0.11981786787509918, 0.25098761916160583, -0.022602858021855354, -1.742581844329834, 0.825434684753418, 0.8482277989387512, -0.13759012520313263, -0.7574871778488159, 0.4155011773109436, -0.2683814465999603, 0.08500064164400101, -0.5516756772994995, 0.44158434867858887, 0.09488785266876221, 0.43734505772590637, 0.5585691928863525, -1.1176748275756836, 0.43220454454421997, -0.42258116602897644, 0.3357682228088379, 0.08241225779056549, 0.5063513517379761, 0.2338327169418335, -0.8485240340232849, -0.03774178773164749, -0.2091544270515442, -0.23428890109062195, -0.25238272547721863, -0.6854352951049805, 0.9803374409675598, 0.4962814748287201, -0.013783966191112995, -0.42440265417099, -0.6438766121864319, -0.33558815717697144, -0.3327752649784088, -0.14305607974529266, 0.8219748139381409, -1.496766448020935, -0.2132244110107422, 0.12604059278964996, -0.6309486627578735, 0.22142727673053741, 0.5483709573745728, 1.098109245300293, -0.6660866737365723, -1.0754719972610474, -0.40753409266471863, 0.5257569551467896, 1.0159448385238647, 0.08292366564273834, 0.8091154098510742, 0.00236129155382514, -0.9712957739830017, 0.8046854734420776, -0.4962872564792633, -1.432442307472229, -0.8336082696914673, -1.1598396301269531, 0.6761301159858704, 0.3127812445163727, 0.008199621923267841, 0.5317487120628357, 1.1330955028533936, -0.718044638633728, -1.3603172302246094, -1.9562466144561768, -0.06164059415459633, 0.7334875464439392, 0.1037287637591362, -0.1585765928030014, 1.2194371223449707, 0.18110451102256775, -0.7710784077644348, -0.5689345598220825, 0.23190189898014069, -1.1095424890518188, 0.40124738216400146, -0.18515747785568237, -0.1933315098285675, 0.3880097270011902, 1.5861133337020874, 0.6737082004547119, 1.1641435623168945, 0.7867923378944397, 1.161626935005188, -0.8092086911201477, -0.4578622877597809, -0.16622401773929596, 0.4373517334461212, -1.0068646669387817, -0.6452782154083252, -0.025354189798235893, -0.14340540766716003, -0.6163702607154846, 0.49878573417663574, 1.254955530166626, -1.0597816705703735, 0.2912651300430298, 0.30833372473716736, 0.05822567641735077, -0.4536546766757965, 0.7334598302841187, 1.3177489042282104, -0.7871571779251099, -0.1052907258272171, 0.08891703933477402, 0.599997878074646, -0.4802663326263428, -0.14500701427459717, 0.09643496572971344, -0.08072733134031296, 0.31099453568458557, 1.0676032304763794, 0.4919024705886841, 0.22464190423488617, -0.8709505796432495, 0.9538387656211853, 0.9688041806221008, 0.03540336713194847, 0.011568168178200722, 0.6656503081321716, -0.47041064500808716, 0.26070696115493774, -0.401602566242218, -0.5771028995513916, -1.1326709985733032, 0.799187958240509, 0.2020786851644516, 0.19716504216194153, -0.948100209236145, 0.8735228180885315, 0.34946709871292114, 0.1159886047244072, 1.1907144784927368, -0.31160375475883484, -0.7455654740333557, 0.7934208512306213, 0.15309464931488037, -0.11255215853452682, -0.027419928461313248, 0.3771084249019623, 0.9015650153160095, 0.16964876651763916, -0.011332851834595203, 0.43499597907066345, -1.123047947883606, -0.5611218214035034, -0.13615849614143372, -0.5749598145484924, -0.1830543726682663, -0.06707361340522766, -1.4544278383255005, -0.5202734470367432, -0.47570016980171204, -0.36291152238845825, 0.4831222593784332, -0.6791383028030396, -0.8574780821800232, -0.18811704218387604, -0.5590711832046509, 0.29451414942741394, -0.5967567563056946, -0.16498412191867828, -0.1897476613521576, 0.4379231631755829, 0.6711083054542542, -0.08156316727399826, 1.221040964126587, -0.23227284848690033, -0.028691790997982025, -0.7226876020431519, 0.7417708039283752, -0.30394065380096436, 0.8523327112197876, -0.05063417926430702, -0.701648473739624, -0.2153184860944748, 0.01883724518120289, 0.16063305735588074, 0.3826482594013214, -0.15516605973243713, 0.6619033217430115, -0.4020208418369293, -1.0074701309204102, -0.37467262148857117, 0.5485591888427734, 0.2694600522518158, -0.8757420778274536, -0.7093199491500854, -0.29423055052757263, 0.19751065969467163, -0.20476453006267548, 1.0939061641693115, -0.5966666340827942, 1.2393603324890137, 0.09630734473466873, -0.23468123376369476, 0.0033674994483590126, -0.587049663066864, 0.9456234574317932, -0.22946009039878845, 0.27981850504875183, -0.4506646394729614, -0.5209932327270508, -0.0012819953262805939, -0.8145070672035217, 0.5719994306564331, 0.48577043414115906, -0.41897183656692505, 0.28857162594795227, -0.8945358991622925, -0.9566630125045776, -0.5843319296836853, -0.6071747541427612, 0.31530845165252686, -0.10537028312683105, 0.8401160836219788, 0.04654761403799057, -0.8870947360992432, 0.3600236475467682, 0.9312970042228699, -0.4571878910064697, 1.0909594297409058, 1.5016250610351562, 1.5075604915618896, 0.004230997525155544, 0.09189233183860779, -0.08355670422315598, 1.2430769205093384, -0.8165032863616943, -0.2814852297306061, -0.8068697452545166, 0.27402445673942566, 0.44996073842048645], [0.8842006325721741, 1.577690601348877, -2.0989456176757812, -0.7664074301719666, 0.25457507371902466, -0.9145766496658325, -0.007274627685546875, -0.45531129837036133, -1.1751465797424316, -1.1244897842407227, -0.13147348165512085, 0.26136401295661926, 0.16812382638454437, 1.1486504077911377, 1.0828839540481567, -0.38038402795791626, 0.8375566005706787, -0.12853996455669403, 0.27626335620880127, 0.8848239183425903, 0.22821560502052307, -0.28637057542800903, -0.0681970939040184, 0.577487587928772, 0.15281593799591064, -0.3693227171897888, -0.9836293458938599, -0.49052464962005615, -1.3753833770751953, -1.6059672832489014, 1.4322985410690308, -1.1756455898284912, 0.38372746109962463, -0.267038494348526, -1.2370884418487549, -1.062889575958252, 1.0414879322052002, -0.5052156448364258, 0.5977161526679993, 0.24504747986793518, 1.5152373313903809, -0.5594353675842285, 0.018419018015265465, -0.7786127328872681, 0.4110892415046692, 0.4466171860694885, 0.14001606404781342, -0.6975991129875183, 0.10570672154426575, -0.13092221319675446, -0.4077131152153015, -1.0393816232681274, 0.20278717577457428, 0.7596669793128967, 0.6880278587341309, -0.04255841672420502, -0.13357922434806824, 0.37820684909820557, 0.38460230827331543, 0.808849573135376, 1.1271640062332153, 0.7023937702178955, -0.12617482244968414, 0.025947272777557373, 0.4856424331665039, -0.15295931696891785, 0.9103017449378967, 0.10574309527873993, -0.33111053705215454, 0.6848900318145752, 0.8658411502838135, -0.7690364718437195, 0.10524662584066391, 0.16231641173362732, -0.916018009185791, -0.6228904128074646, -0.15488527715206146, 0.7591205835342407, 0.2928190231323242, 1.021806001663208, -1.2706562280654907, -0.2862396538257599, 0.49080321192741394, -0.4622918963432312, 0.18546447157859802, 0.02999110519886017, -0.10456809401512146, -0.6944367289543152, -1.0479196310043335, 1.6346116065979004, 0.06214150786399841, 0.3833245038986206, 0.7427394390106201, 0.15197885036468506, 0.326511412858963, -0.2281724214553833, -0.37629032135009766, -0.08461827784776688, 0.8471765518188477, -1.140713095664978, -0.07848765701055527, -0.7836999893188477, 0.8615106344223022, -0.5066542625427246, 0.0002232678234577179, 1.9746975898742676, 0.10955054312944412, -1.221152901649475, -1.3742544651031494, -0.4180733561515808, 0.7765972018241882, 0.10824425518512726, -0.2837284803390503, -1.2573374509811401, -0.01493837684392929, 0.9969176054000854, 0.09358926117420197, 0.6816145777702332, 0.4087349474430084, 0.7822942733764648, 0.20836001634597778, -0.10547421127557755, -0.7208676338195801, -0.050702884793281555, 0.702755868434906, -0.21570579707622528, -0.10144204646348953, -0.11923005431890488, -0.16500680148601532, -0.23203520476818085, 0.286405473947525, 0.4385730028152466, -0.27660736441612244, 0.22197504341602325, -0.1831042766571045, 0.7136391401290894, 0.336945116519928, -0.5704137086868286, 1.0094809532165527, -0.7460781931877136, 0.6816875338554382, -0.6161527633666992, -0.38758301734924316, -0.5852071046829224, 0.7742564678192139, -0.31030791997909546, 0.5516324043273926, -0.0988684892654419, -0.8921371698379517, -0.7906550168991089, -1.1451025009155273, -0.1170191764831543, -0.04882463812828064, 1.0612022876739502, 0.9125230312347412, 0.2447146475315094, 0.26494935154914856, 0.6994786858558655, 0.1901051253080368, 0.348183274269104, 0.4516450762748718, 0.06521495431661606, -1.044377326965332, 1.5825294256210327, 0.7408121824264526, -1.1989490985870361, 0.6762651205062866, 0.6702341437339783, -0.2744920253753662, 1.2879664897918701, -0.7716442346572876, -0.45972171425819397, -0.7990124225616455, -0.4282485842704773, -0.10093474388122559, -0.6683593988418579, 1.4234271049499512, -0.22849291563034058, -0.2699261009693146, -1.6020610332489014, 0.2186182737350464, -0.37544265389442444, -0.2312728315591812, 0.43916064500808716, 0.05326841026544571, 0.032640568912029266, -0.2549610137939453, -0.306504487991333, 0.06186121702194214, -0.24967990815639496, -1.4467945098876953, 0.10569365322589874, -0.6223916411399841, -0.09835146367549896, 0.12988199293613434, -1.5012950897216797, -0.05696357414126396, -0.08031479269266129, -0.3510957658290863, -0.4587513208389282, 0.24238407611846924, 0.024834513664245605, -0.5212514400482178, 0.06587493419647217, -0.7797781229019165, -0.2812701165676117, -0.29325616359710693, 0.8077499866485596, 0.1026570275425911, 0.6140322685241699, 0.4036441445350647, 0.03609832376241684, -0.8588380813598633, 1.2017054557800293, 0.873648464679718, -1.6531022787094116, 0.6632843017578125, 0.3035658001899719, 0.6807260513305664, 0.5028473734855652, 0.5305190086364746, -0.3025584816932678, 0.11623609066009521, -0.015018712729215622, 0.445675253868103, 0.26187407970428467, -0.6256121397018433, -0.03177645057439804, -1.267989993095398, 0.6403106451034546, -0.9970317482948303, -0.37366583943367004, 0.42957189679145813, 0.2982023358345032, -1.204530954360962, 0.9677658081054688, -0.04290636256337166, 0.8233954906463623, -0.008635539561510086, 0.822393536567688, 0.041512228548526764, -0.24137872457504272, -0.7660493850708008, -0.6540076732635498, -1.5233747959136963, -0.37793272733688354, 0.19631093740463257, -0.32928937673568726, 0.6420353651046753, 1.0908353328704834, 0.466827929019928, -0.860787034034729, 0.18659469485282898, -0.02915581315755844, -0.050751589238643646, -0.662915825843811, 0.32174330949783325, -0.40205055475234985, -0.9928747415542603, 1.8919932842254639, 0.9112473726272583, -1.0469067096710205, -0.7718214988708496, 0.11929675191640854, 0.2763218581676483, -0.013725705444812775, 0.10186875611543655, 0.023157980293035507, 0.5093361735343933, -0.031206335872411728, 0.09780564904212952, 0.40065038204193115, 0.049179792404174805, -0.1638631522655487, -0.5306166410446167, -0.35967665910720825, 1.0673596858978271, 0.31318551301956177, 0.8862720131874084, 1.09732186794281, 0.37571924924850464, -1.960067629814148, -0.6013691425323486, 0.09011313319206238, 0.6340652704238892, -0.9376174211502075, 0.5031509399414062, 0.3047052025794983, 1.1505671739578247, -0.4636392891407013, 0.8764260411262512, 0.9021801948547363, -0.08940731734037399, -0.497184157371521, -0.44965308904647827, 0.2852189540863037, 0.5951119661331177, -0.7734137773513794, -0.4997935891151428, -1.0075489282608032, 0.4444615840911865, 0.48734715580940247, 0.29592791199684143, 1.6318540573120117, -0.8876994848251343, 0.2286035716533661, 0.3122485876083374, 0.3765900433063507, -0.784182071685791, -0.314683735370636, 0.02950381487607956, -0.1076158806681633, -0.2053101658821106, 0.04528624936938286, -0.396375834941864, -0.10202233493328094, -0.1456364095211029, 0.7283801436424255, 0.20918267965316772, 0.014896141365170479, -1.819747805595398, -0.9869346618652344, 0.09853210300207138, -1.019700288772583, 0.30986952781677246, 1.058227300643921, -0.6486148834228516, 0.06015082448720932, 0.45062100887298584, -0.14551755785942078, -0.0939192920923233, 0.2656077444553375, -0.21668186783790588, -0.6849817037582397, -1.5189749002456665, 0.011073626577854156, 0.6098138093948364, -0.010193247348070145, -0.38172435760498047, -1.0518492460250854, 0.9296261668205261, 0.9680646657943726, 0.1886979639530182, -0.28809359669685364, 0.16947703063488007, 0.2822294533252716, 0.2830204367637634, -0.877977728843689, -0.018574604764580727, 1.1275081634521484, -0.2146415412425995, -0.8945367336273193, -0.3796480894088745, -0.08233333379030228, 0.4077640175819397, 0.09952010959386826, 0.5239790678024292, 1.088186502456665, -0.3950429856777191, -0.7926833629608154, 0.5298923254013062, 0.5447893142700195, 0.7330174446105957, -0.7540726661682129, 0.6309869885444641, 0.06967537105083466, 1.1452319622039795, 0.639190137386322, -0.4203541576862335, -0.7412986755371094, -0.5385677218437195, -0.0059158094227313995, -0.4123806655406952, 0.25583401322364807, -0.24268528819084167, 0.10811041295528412, -0.8106398582458496, 0.08548244088888168, -0.467276394367218, -0.47198057174682617, -0.9271511435508728, -0.16323275864124298, 0.40916895866394043, -0.46407419443130493, 0.5894638299942017, -0.4459410011768341, -0.27946048974990845, -0.09506502747535706, -0.35084253549575806, -0.023315787315368652, 1.350043535232544, -1.1421030759811401, -0.6032336354255676, 0.5985527038574219, -0.33348509669303894, -1.1368625164031982, -0.1894913911819458, -1.062795877456665, 0.04665537178516388, 0.8803727626800537, -1.1824445724487305, 0.2632492482662201, 0.7034605741500854, 0.47021645307540894, 0.5358560085296631, -0.6651747226715088, 0.7143781185150146, -0.3077898621559143, 0.0722159743309021, -0.5371507406234741, 0.0921863242983818, 0.8653777241706848, -0.0687171071767807, 0.543005108833313, -0.39307311177253723, -0.015840645879507065, 0.40315669775009155, 0.543057918548584, -0.14910194277763367, -0.0450759157538414, -0.3390178680419922, 0.19870203733444214, -0.10539840161800385, 0.1349354237318039, 0.8403671979904175, -0.20916128158569336, -0.2516288757324219, 0.23535871505737305, 0.37399062514305115, -0.19106891751289368, -0.4606953561306, -0.3328561782836914, 0.45776674151420593, 0.5577627420425415, 0.35676178336143494, 0.10718420892953873, -0.49140995740890503, 0.2375597506761551, 0.559457004070282, 0.8520627021789551, -0.05069655552506447, -0.8473227620124817, -0.39183706045150757, 0.6402643918991089, 0.675568699836731, 2.005363941192627, 0.9465141296386719, -0.5001276135444641, -1.1337969303131104, 0.8685761094093323, -0.9164475798606873, 0.2111172378063202, -0.3013399839401245, 0.7228554487228394, 1.576096534729004, -0.6924927234649658, -0.8291073441505432, 0.8679168224334717, 0.7454058527946472, 0.4237537980079651, 0.8508623838424683, 0.40243056416511536, -0.09457014501094818, -0.09414386749267578, 0.193304643034935, -0.6399115324020386, 0.6916947364807129, -0.2649794816970825, -0.014386279508471489, 0.894240140914917, -0.5572091341018677, -0.9461734890937805, -0.09277655184268951, 0.05947995185852051, -0.1914609670639038, -0.33974725008010864, 0.28100717067718506, 0.625296950340271, 0.6233625411987305, 0.07835346460342407, -0.12842631340026855, -1.011141061782837, 0.09522557258605957, -0.6807677745819092, 0.3563476800918579, -0.07888877391815186, -0.4060947895050049, -0.17584852874279022, -1.3390467166900635, -0.3525660037994385, -0.07783447206020355, -0.774910569190979, -0.05829419195652008, 0.23996837437152863, -0.497964084148407, -0.22539342939853668, -0.013052687048912048, 1.5799025297164917, 1.2977814674377441, 0.24419260025024414, 0.36470621824264526, -0.04294944554567337, -0.6492569446563721, -0.3257620334625244, 0.33537280559539795, -0.8609781265258789, -0.3402106761932373, -0.5855133533477783, -0.802812933921814, 1.1424001455307007, 0.26216715574264526, -0.3141326308250427, 0.918994128704071, 1.041975736618042, 1.1381020545959473, -0.36118465662002563, -0.39137890934944153, -0.5305958390235901, -0.12747822701931, 0.9038257598876953, 0.7633401155471802, -0.9510082602500916, -0.15799486637115479, 0.691676139831543, -2.56744384765625, 0.5203847289085388, 0.4909006357192993, -0.46570906043052673, -0.37840792536735535, 0.32560861110687256, 0.4973601698875427, 0.3111739754676819, -0.3642479479312897, 0.060906656086444855, -0.6805181503295898, -0.2419101446866989, -1.0637648105621338, -0.5348784923553467, 0.718757152557373, 0.2530784010887146, 0.2797606587409973, -0.0178311038762331, -0.380952924489975, -0.2801057994365692, 0.1594657301902771, 0.42757949233055115, 0.5286708474159241, 0.8852393627166748, -0.328421413898468, -0.8167372941970825, 0.9408683776855469, -0.46575483679771423, 0.6829434633255005, -0.29367193579673767, 0.6736277341842651, 1.104778528213501, 0.14036321640014648, 0.5365357398986816, -0.07641372829675674, 0.2097511887550354, -0.652394711971283, -0.8898194432258606, 0.13966187834739685, 0.8203617334365845, 0.4588468074798584, 0.37930232286453247, -0.43684619665145874, -0.5740360021591187, -0.3739590644836426, 0.2818659543991089, 0.8048529028892517, -0.44883328676223755, -0.9334204196929932, -0.29994961619377136, 0.3759182095527649, 0.08689798414707184, 0.5354352593421936, 0.858097493648529, -0.8467569351196289, -0.6531938314437866, -0.7261127233505249, 0.30295640230178833, 0.7290332317352295, -0.6753581762313843, 0.6491168737411499, 0.26372140645980835, -1.7795026302337646, 2.202308177947998, -0.15076880156993866, -1.4458708763122559, -0.1886812299489975, -0.9450452327728271, 0.7031893730163574, -0.43598276376724243, 0.37375128269195557, 0.2635922431945801, 0.9008606672286987, -0.49607765674591064, 0.14999979734420776, -1.6497591733932495, -0.6060782670974731, 0.3996885120868683, 0.5646851062774658, -1.2350397109985352, 0.7881267070770264, -1.055846929550171, -0.8214155435562134, -0.6184912919998169, 0.07095411419868469, -0.7522722482681274, 0.15593136847019196, -0.07141806185245514, 0.2678402066230774, -0.0735263079404831, 1.1339943408966064, 0.6701385974884033, 0.9207823276519775, -0.29475200176239014, 1.0964292287826538, -0.7974807024002075, -0.07446861267089844, -0.30439329147338867, -0.04317130148410797, -1.4987001419067383, -0.15596839785575867, -0.9180846214294434, -0.5365945100784302, 0.0381067730486393, 1.2658185958862305, 0.45348942279815674, 0.2451631724834442, 0.13011468946933746, 0.2834956645965576, 0.4224695563316345, -1.0620100498199463, 0.4576481282711029, 0.7537438869476318, -0.6746223568916321, -0.6018019914627075, 0.17157219350337982, -0.1326427161693573, -0.5163595080375671, 0.09742990136146545, -0.06343145668506622, 0.8755068182945251, -0.26639121770858765, 1.241797685623169, 0.032845497131347656, 0.016344202682375908, -0.4381321370601654, 0.7879396080970764, 0.7740954160690308, -0.9063622951507568, 0.08617574721574783, 0.2543402314186096, -0.5722348690032959, 1.1196895837783813, -0.09854789078235626, -0.8196117281913757, -0.9144158363342285, 1.222540259361267, -0.3661978840827942, -0.6176717281341553, -0.4070998430252075, 0.8461370468139648, -0.6922303438186646, -0.6104553937911987, 1.0061755180358887, -0.3533000946044922, -0.5303796529769897, 0.934698760509491, 0.5336399078369141, -0.28636687994003296, 0.41842207312583923, 0.2750087380409241, 0.34631308913230896, 0.017044691368937492, -0.7607418298721313, 0.8789499402046204, -0.2874086797237396, -0.3138071894645691, -0.4067798852920532, -0.4584362506866455, 0.6247432231903076, 0.32608282566070557, -1.4082934856414795, -0.28635329008102417, -0.8712466955184937, 0.05775276571512222, 0.10837967693805695, -0.32526516914367676, -0.027661532163619995, 0.45856547355651855, 0.1299479454755783, 0.4808606505393982, -0.536184549331665, -0.13939401507377625, -1.1069984436035156, -0.012732159346342087, 0.796373724937439, -0.3193405866622925, 1.0902469158172607, 0.28368547558784485, 0.5432831048965454, -0.25150352716445923, 0.21272476017475128, 0.8803993463516235, 0.27475041151046753, -0.1322222501039505, -0.6433857679367065, 0.5271895527839661, 0.2340024709701538, -0.03021266497671604, 0.8820637464523315, 0.11716213822364807, 0.49675479531288147, -0.34883609414100647, -1.71328866481781, -0.09783366322517395, 0.2165273129940033, 1.1168773174285889, -0.3469979763031006, -0.40154972672462463, -0.09808236360549927, 0.47699087858200073, 0.08303876221179962, 0.7652907371520996, -0.12179853767156601, 1.19948410987854, 0.7172291874885559, -0.42726922035217285, -0.7419411540031433, -0.8833973407745361, 1.1070683002471924, -0.09865917265415192, 0.41769707202911377, -0.1011723130941391, 1.060225009918213, -0.5440809726715088, -0.32998502254486084, 0.16228699684143066, 0.3076641857624054, -0.5147258043289185, 0.8990269899368286, 0.009740957990288734, -1.5174802541732788, -0.9070223569869995, 0.5107612013816833, 0.5091115236282349, -0.26580655574798584, 0.5595380067825317, -0.7000871896743774, -1.4725792407989502, -0.7088829874992371, 0.4868845045566559, 0.20211490988731384, 0.24530856311321259, 1.0636851787567139, 1.6952705383300781, -0.6816840767860413, 0.011026576161384583, 0.1400759518146515, 0.6464221477508545, -1.5441583395004272, 0.3418172299861908, -0.4762399196624756, 0.33724114298820496, -0.6203678250312805], [1.0379228591918945, 1.1222281455993652, -2.285416841506958, -0.982851505279541, 1.0066343545913696, 0.6037310361862183, 1.2537949085235596, 0.17603491246700287, -0.4336049556732178, -1.2110257148742676, -1.2317498922348022, 0.1950368732213974, 0.11549346148967743, 0.18741200864315033, 0.2955993413925171, 0.26580238342285156, 0.7780547738075256, 0.03687811642885208, -0.10400652885437012, 0.46159806847572327, 1.1623120307922363, -1.029977560043335, -0.32121890783309937, 0.20628945529460907, -0.1105809137225151, 0.2646944522857666, -0.9581381678581238, -0.3166334629058838, -1.1445045471191406, -0.32560664415359497, 0.7880088090896606, -0.6151086688041687, 0.24374915659427643, -0.2066747397184372, -1.5981687307357788, -1.383132815361023, 0.3830518424510956, 0.12906122207641602, 0.42855921387672424, 0.6094803810119629, 1.2443634271621704, -0.12094485014677048, -0.412667840719223, -1.3169039487838745, 0.2949008047580719, 0.6771625876426697, 0.6958065629005432, -0.7330523133277893, 0.17041288316249847, -0.45764416456222534, 1.3591264486312866, -0.4522894620895386, 0.9050980806350708, 0.603031575679779, 0.7395046353340149, -0.7263031601905823, 0.31803879141807556, -0.2932175099849701, 0.6392700672149658, 0.5139349102973938, 1.6393626928329468, -0.35045522451400757, 0.5051429271697998, 0.4299948513507843, 0.5802090167999268, 0.2243272364139557, 0.019702745601534843, 0.5002405047416687, -0.3158383369445801, 0.07452687621116638, 0.7782769203186035, 0.29723161458969116, -0.6390223503112793, 0.01686670258641243, -1.1743011474609375, 0.8763170838356018, 0.19837063550949097, 0.33427807688713074, 0.35665589570999146, 0.47073236107826233, -0.6732151508331299, 0.08870460838079453, 0.6786966323852539, -0.8962386846542358, 0.42661669850349426, 0.1773579716682434, 0.05871076509356499, -0.4996429979801178, -0.3141903877258301, 1.8959230184555054, -0.5342395305633545, 0.29545941948890686, 0.6091090440750122, -0.6444007754325867, -0.37472718954086304, 0.1491161286830902, 0.6499063968658447, 0.08854742348194122, -0.6833379864692688, -0.26909971237182617, -0.5611873269081116, -0.8667734265327454, -0.08272235095500946, 0.5264347791671753, 1.0388777256011963, 1.7937780618667603, 0.2875896096229553, -0.0254183541983366, -0.23323559761047363, 0.3528553545475006, 0.5629843473434448, 0.3656635582447052, -0.3465205430984497, -1.4063267707824707, 0.07452157139778137, 0.7379943132400513, 0.8525305986404419, -0.18340349197387695, 0.5535627603530884, 0.36774009466171265, -0.5361159443855286, 0.11602349579334259, -0.7297629117965698, 0.8186374306678772, 0.7488965392112732, 0.06128993257880211, -0.6733009815216064, 0.29451513290405273, -0.001630338840186596, -0.11008203774690628, 0.0980246290564537, -0.08466769009828568, -0.5253660082817078, 1.0010541677474976, -0.7930907607078552, 0.9349576830863953, -0.1431025266647339, -0.8353917598724365, 0.22694449126720428, -0.4087059497833252, 0.3750250041484833, -0.2776547372341156, -0.5967101454734802, -0.40442338585853577, 0.5716793537139893, -0.05953654646873474, 0.006008092314004898, -0.3586554229259491, -1.0256410837173462, 0.06945044547319412, -1.5160245895385742, -0.05310850962996483, -0.5645462274551392, 0.8524064421653748, 0.5550531148910522, 0.2898392081260681, 0.291835218667984, 0.5847094058990479, 0.4649890959262848, 0.19934597611427307, 0.9083806872367859, 0.2949039041996002, -1.41890287399292, 0.8755938410758972, 0.14720036089420319, -1.1400762796401978, 0.853258490562439, 0.5681344270706177, 0.5994828343391418, 0.06835336238145828, -0.8726574778556824, -0.46573156118392944, -0.6882018446922302, -0.16161203384399414, -0.2921876907348633, 0.04802256077528, 0.809767484664917, -0.3982497453689575, -0.5749094486236572, -1.6212846040725708, 0.6612496376037598, -0.3301074504852295, 0.00858593825250864, 0.2798806428909302, 0.3298417329788208, 0.4018508195877075, -0.46555644273757935, 0.7209105491638184, -0.5439364910125732, -0.933059573173523, -0.6045719981193542, -0.4011409878730774, -0.27936527132987976, 0.3361956775188446, -0.4539695978164673, -1.5923715829849243, 0.572526752948761, -0.45112472772598267, 0.02264769747853279, -0.0015533436089754105, -0.37243664264678955, -0.201409712433815, -0.5414041876792908, 0.6890300512313843, -0.16611671447753906, -0.2199491262435913, -0.9562292098999023, 0.5078875422477722, -0.6445361971855164, -0.05683503672480583, 1.5821449756622314, 0.3191359043121338, -0.6598684787750244, 0.8268424868583679, -0.00785266887396574, -1.5390065908432007, -0.023057425394654274, 0.04651964083313942, 0.5447945594787598, -0.39028939604759216, 0.03475639224052429, 0.037576038390398026, 1.3244444131851196, -0.08106055110692978, 1.1613857746124268, 0.5064456462860107, -1.036399245262146, -0.6403213143348694, -1.1881828308105469, -0.452808678150177, -1.1544303894042969, -1.4246782064437866, 0.3361755311489105, 1.0346710681915283, -0.856325626373291, 0.021125536412000656, -0.6487007141113281, -0.4270687401294708, 0.1746852695941925, 0.9436985850334167, -0.2580139636993408, 0.6002155542373657, -0.6860252022743225, -0.2644260823726654, -1.2531030178070068, 0.447782427072525, 0.4888457655906677, -0.15082667768001556, 0.06989877671003342, 1.1666866540908813, 0.4923783242702484, -0.6443591713905334, 0.6692715883255005, -0.7562370896339417, 0.2618466019630432, -0.536756694316864, -0.49666261672973633, -0.34592995047569275, -0.43125659227371216, 0.7359582781791687, 0.012993079610168934, -0.713921308517456, -0.02397201582789421, -0.16083787381649017, 0.7379581928253174, -1.2052520513534546, 0.22441047430038452, -0.02092091366648674, 0.5528615713119507, -0.38897907733917236, -0.3439866304397583, 0.08272489905357361, 0.5852736830711365, 1.5999380350112915, -0.24977488815784454, 0.23547935485839844, 0.06646789610385895, 1.395126461982727, 0.13964004814624786, 0.352679580450058, -0.12317436188459396, -0.849854052066803, -0.3466196060180664, 0.06320099532604218, 0.35813871026039124, -0.6585214734077454, -1.0403109788894653, 0.3288480341434479, 0.8720282912254333, -0.03070494346320629, -0.10059630125761032, 0.5080217719078064, -0.4646497070789337, -0.5475332736968994, 0.18025518953800201, -0.19926002621650696, 0.6554763913154602, -0.07947547733783722, -0.8180765509605408, -0.3812641501426697, 0.8084462285041809, 1.0244953632354736, 0.4040900468826294, 1.4410063028335571, -0.43903517723083496, -0.2813172936439514, -0.17503313720226288, -0.11904653906822205, -0.7968780398368835, -0.6215143203735352, 0.07464832812547684, -0.31203240156173706, -0.009444078430533409, -0.6421259045600891, -0.1862826645374298, 0.862224817276001, 0.36413276195526123, 0.4169737994670868, 0.047342535108327866, -0.044296156615018845, -0.9954589605331421, -0.47834140062332153, -0.20191267132759094, -1.2307754755020142, 0.9465917944908142, 1.206255555152893, -1.108175277709961, 0.16557255387306213, -0.17566092312335968, 0.2776286005973816, 0.021516146138310432, -1.2520650625228882, -0.2449614256620407, -1.2465134859085083, -1.1197959184646606, 0.156084805727005, 1.1934247016906738, 0.057509783655405045, -0.009991273283958435, -0.3792610466480255, 0.5955877304077148, 0.47651055455207825, 0.04594049230217934, -0.8815407156944275, 0.2808063328266144, -0.510352611541748, -0.9282075762748718, -0.09846188873052597, 0.8295339345932007, 1.336568832397461, -0.252557635307312, -0.2448320835828781, -0.11286453157663345, -0.3597252666950226, -0.7468979358673096, 0.05376401171088219, -0.4986567497253418, 1.1634252071380615, -0.51194828748703, 0.5289309620857239, 0.9754539728164673, 0.3534699082374573, 0.2328987568616867, -1.3157148361206055, 0.5147433280944824, 0.47855690121650696, 0.904061496257782, 0.03818976879119873, 0.05240737274289131, -0.22537963092327118, -0.311392217874527, 0.7232945561408997, 0.4157361686229706, 0.6510029435157776, 0.02567231096327305, -0.7631838321685791, -0.3441937267780304, -0.8224477171897888, -0.07908721268177032, 0.5042768120765686, -0.3209637999534607, -0.1812005490064621, -0.024061232805252075, -0.2535533905029297, 1.4766336679458618, -0.014629275538027287, 0.04288419708609581, -0.3431171774864197, -0.49576660990715027, 0.49851006269454956, 0.14814500510692596, -0.5717656016349792, -0.5259708762168884, 0.7725263833999634, 0.7108544707298279, -0.3962429463863373, -0.8379174470901489, 0.09208356589078903, 0.9332746267318726, 0.21115191280841827, -0.6665090322494507, 0.4001133143901825, -0.044322606176137924, 0.18568836152553558, 0.5092144012451172, 0.45344191789627075, 0.14322492480278015, 0.052036743611097336, 0.019186614081263542, -0.32942724227905273, 0.2584284245967865, 0.934436559677124, -0.3691350519657135, -0.3134911358356476, -0.09036240726709366, -0.25185641646385193, 0.8333389759063721, 0.7823889255523682, 0.041233960539102554, 0.41818034648895264, -0.36788737773895264, 0.024245422333478928, -0.2771463394165039, -0.12120535224676132, 1.3072500228881836, -0.4193016588687897, -0.37153947353363037, 0.9830926060676575, -0.1748887300491333, -1.3351134061813354, -0.091765396296978, 0.38038724660873413, -0.12426143884658813, 0.07192626595497131, 0.1515320986509323, -0.607524573802948, 0.40500232577323914, 0.835395872592926, 0.2079782485961914, 0.829468846321106, 0.1594795435667038, -0.7295295596122742, 0.4402627646923065, 0.6842694282531738, 0.6539958715438843, 1.6179598569869995, 0.9361174702644348, -0.33760690689086914, -0.8429275155067444, 0.9164310097694397, -0.057362549006938934, 0.020469121634960175, 0.07935746014118195, 0.3184152841567993, 0.908679723739624, -0.9514538645744324, -0.4505438208580017, 1.1016157865524292, 0.21679578721523285, 0.8568793535232544, -0.2992386817932129, 0.22619344294071198, -0.1342557817697525, 0.40279439091682434, -0.10377436876296997, -0.13157601654529572, 0.8273400068283081, -0.08550573140382767, 0.000477995490655303, 0.6225993633270264, -0.934964120388031, 0.43206703662872314, -0.26018813252449036, -0.25257444381713867, 0.43293413519859314, -0.5549061894416809, 0.17333780229091644, 0.8697869181632996, 0.6335111856460571, 1.5384933948516846, -0.5073015093803406, -0.8957380652427673, -0.021983955055475235, -0.35137778520584106, 0.2955443263053894, -0.10764918476343155, -0.277069091796875, -0.4197046756744385, -0.3158714771270752, -0.1592469960451126, 0.6772988438606262, -0.11814729869365692, 0.39045771956443787, 0.3510611653327942, -0.4969773590564728, 0.06984363496303558, -0.6230834722518921, 0.9032906889915466, 0.49479207396507263, 0.01138004008680582, -0.24754513800144196, 0.663460373878479, -0.5191647410392761, 0.17419302463531494, 0.15215085446834564, -0.369863897562027, -0.8111335635185242, -1.300414800643921, -0.8504524827003479, 0.4595026671886444, 0.3865208327770233, 0.9073401689529419, -0.14077945053577423, 1.6081548929214478, 0.7786154747009277, -0.2275981307029724, -0.12767161428928375, 0.26308462023735046, -0.8434804081916809, 0.3100901246070862, 0.13103513419628143, -0.4258648753166199, 0.1143781989812851, -0.5118808150291443, -2.5321590900421143, 0.13729460537433624, -0.3430105149745941, -0.999974250793457, 0.5008407235145569, 0.6043523550033569, 0.8325601816177368, 0.4527917206287384, -0.6258000731468201, -0.3014552891254425, -0.33526474237442017, -0.030004747211933136, -1.372329592704773, 0.3028394281864166, 0.6613501906394958, 0.6830416917800903, -0.8884607553482056, 0.19890014827251434, -0.2926236689090729, 0.07844991981983185, -0.33494117856025696, -0.2817530930042267, 0.41392314434051514, 1.2514183521270752, 0.6871250867843628, -0.7227367758750916, 0.4443623721599579, 0.22568778693675995, 0.2102378010749817, -0.05618933588266373, 0.7821664214134216, 0.211880624294281, -0.5215892791748047, 0.6993424892425537, -0.9346211552619934, -0.3992457687854767, -0.5664841532707214, -0.1880500167608261, 1.7264223098754883, 0.9681674242019653, -0.39829784631729126, -0.6165770888328552, -0.22133305668830872, -0.19943642616271973, -0.7025954127311707, -0.11669492721557617, 1.2990366220474243, -0.9308512210845947, -0.7482996582984924, -0.0037198252975940704, 0.24413251876831055, 0.02365628257393837, -0.0270262248814106, 0.5270439386367798, -0.7164829969406128, -1.4908604621887207, -0.5290723443031311, 0.3783910274505615, 1.6659601926803589, -0.16694508492946625, 0.10397300124168396, 0.21972188353538513, -1.4854600429534912, 0.7001580595970154, -0.0020852144807577133, -0.8814588785171509, -0.3878155052661896, -0.770039975643158, 0.41480496525764465, -0.3620460629463196, -0.20826877653598785, 0.22972416877746582, 0.5355724096298218, -1.3011394739151, -1.3197615146636963, -1.545462727546692, -0.27219536900520325, 0.7916892170906067, 0.44952401518821716, -0.006989572197198868, 0.5136999487876892, 0.4649832546710968, -1.0040507316589355, -0.9047318696975708, -0.3729131817817688, -1.1965888738632202, 0.8574113845825195, 0.8036719560623169, 0.07982173562049866, 0.434101939201355, 1.175554871559143, 0.13984273374080658, 0.8947727680206299, -0.14059317111968994, 0.3560393452644348, -0.779623806476593, -0.05960093438625336, -0.7671356797218323, 0.314187228679657, -1.1772289276123047, -0.9115056991577148, -0.5711369514465332, -0.2986946403980255, -0.4732409417629242, 1.1331886053085327, 0.6752373576164246, -0.7786063551902771, -0.07095152139663696, -0.5097324252128601, -0.13022615015506744, -0.5650193095207214, 0.5312396287918091, 0.5740951299667358, -0.10174329578876495, 0.061274655163288116, 0.4178275763988495, 0.49069440364837646, -0.5863407850265503, 0.07905539870262146, -0.16068808734416962, 0.19689780473709106, -0.20639091730117798, 0.7208229303359985, 0.630903422832489, 0.24129050970077515, -0.3384701907634735, 0.676304042339325, 1.8264304399490356, -0.21963085234165192, 0.2941568195819855, 0.44946545362472534, -0.5407124757766724, -0.18050546944141388, 0.05475252494215965, -0.9858928322792053, -0.8172195553779602, 0.6754104495048523, 0.21837222576141357, -0.2040347158908844, -0.5495969653129578, 0.7072809338569641, 0.01802798919379711, -0.3955633342266083, 0.3546698987483978, -0.3173069357872009, -1.4113112688064575, 1.045743465423584, 0.487865149974823, -0.45963606238365173, 0.3214578628540039, 0.29775893688201904, 0.38132724165916443, 0.29111385345458984, -0.2819415330886841, 0.3360220193862915, -0.5933233499526978, -0.0009340094402432442, -0.5637843608856201, -0.14804120361804962, 0.03197198361158371, -0.3555813133716583, -1.2606245279312134, 0.2523253560066223, -0.20340709388256073, -0.684708833694458, 0.9314693808555603, -1.1945326328277588, -0.8742936253547668, 0.8227593302726746, -0.13960671424865723, -0.173808753490448, -0.5708560347557068, 0.2164846509695053, 0.15596342086791992, 0.3014847934246063, 0.412143737077713, -0.4687148630619049, 0.6390658617019653, 0.7909272909164429, -0.16346538066864014, -0.6535469889640808, 0.061342958360910416, 0.14495433866977692, 0.8471324443817139, 0.12687623500823975, -0.23075969517230988, 0.44704878330230713, -0.3163582384586334, -0.5031564831733704, -0.3556649088859558, -0.867850661277771, 0.5098150372505188, -0.4210051894187927, -0.9755188226699829, 0.3038702607154846, 0.5380404591560364, 0.27449408173561096, -0.8984281420707703, -0.7811862826347351, -0.5143904685974121, 0.29121658205986023, -0.018404576927423477, 0.8703910708427429, -0.2324342429637909, 1.6509833335876465, 0.25230684876441956, 0.05283160135149956, 0.29513147473335266, -0.6067661643028259, 0.9609350562095642, -0.30336812138557434, 0.1341753602027893, -1.053268551826477, 0.13184231519699097, -0.9160046577453613, -1.246963620185852, -0.08152899146080017, -0.1649828553199768, -0.9689885377883911, 0.33702149987220764, -0.454967737197876, -1.392688512802124, -0.5992569327354431, -0.288362979888916, 0.8811291456222534, 0.016771556809544563, 0.6068766713142395, -0.43997374176979065, -1.3346549272537231, 0.4194946587085724, 0.5899427533149719, 0.0633707270026207, 0.6166737675666809, 0.6463598608970642, 1.7729315757751465, -0.0005757010076195002, 0.344513863325119, -0.28357651829719543, 0.7814449667930603, 0.025497404858469963, -0.2570962607860565, -1.0072455406188965, 0.6774237751960754, 0.16619233787059784], [-0.030914656817913055, 1.4969292879104614, -2.5707290172576904, -0.36004215478897095, 0.2971547245979309, 0.12529738247394562, 1.043060541152954, 0.46063387393951416, -0.9658787250518799, -0.683433473110199, -1.093449592590332, 0.14103542268276215, -0.22329679131507874, 1.5695141553878784, 0.7037621140480042, 0.6221082806587219, -0.04212135449051857, 0.012425156310200691, -0.11476528644561768, 1.5976948738098145, -0.10823844373226166, -1.0559805631637573, -1.7034615278244019, -0.09243994951248169, 0.05803368240594864, -0.5691114664077759, -1.4838206768035889, -0.31119781732559204, -0.48313507437705994, -1.1012396812438965, 1.900301218032837, -1.0780792236328125, 0.1888711005449295, -0.2572678327560425, -1.5680861473083496, -0.7895516753196716, 0.492753267288208, 0.24988609552383423, 0.3239873945713043, 0.5828027129173279, 1.5594327449798584, 0.027261286973953247, -0.3021162450313568, -1.0897502899169922, 1.0513883829116821, 0.10346966981887817, 0.5231627821922302, -1.408209204673767, 0.530081570148468, -0.38291478157043457, 0.6759491562843323, -0.2970123291015625, 0.3542361557483673, -0.015221030451357365, 1.3163025379180908, -0.17525246739387512, 0.2663383185863495, 0.44970762729644775, 1.1417760848999023, 0.5786244869232178, 0.833526611328125, 0.9011945128440857, 0.43645843863487244, 0.34580540657043457, 0.952175498008728, 0.26738518476486206, 0.7424942255020142, 0.9311701059341431, -1.1098499298095703, -0.0034672562032938004, -0.07365953177213669, -0.5889691710472107, -0.07100160419940948, 0.23091332614421844, -0.08517921715974808, 0.3166494071483612, -0.40425142645835876, 0.06381076574325562, -0.09444201737642288, 0.8776669502258301, -0.47470003366470337, 0.06872206181287766, 0.9083849787712097, -1.1780067682266235, 0.1574031412601471, -0.20557212829589844, 0.10959739238023758, -0.6142269372940063, -0.24844591319561005, 1.9079190492630005, 0.16593600809574127, 0.8731924295425415, 0.2699231505393982, -0.14669209718704224, 0.17562273144721985, -0.3277438282966614, 0.12522447109222412, -0.9792271256446838, -0.27335095405578613, -0.9452109336853027, 0.5534455180168152, -1.077598214149475, 0.36088407039642334, -0.06676832586526871, 1.3061480522155762, 1.783281683921814, -0.351732075214386, -0.3612744212150574, -0.48143988847732544, 0.1856934279203415, -0.33875927329063416, -0.25096943974494934, -0.4657306373119354, -1.2319176197052002, 0.030199268832802773, 1.3479607105255127, 0.9808265566825867, -0.14434517920017242, 0.08963046967983246, 0.571765124797821, -0.4544464349746704, -0.22900158166885376, -1.115527868270874, 0.34614086151123047, 1.4035083055496216, 0.7171292901039124, -1.175071120262146, -0.09023092687129974, -0.5069048404693604, 0.24670962989330292, 0.07004919648170471, 0.27058547735214233, -0.3943677842617035, 0.668454647064209, -0.19782431423664093, 1.643117904663086, 0.025573862716555595, -0.5407989621162415, 0.09118679165840149, -0.118984654545784, 0.08923282474279404, -1.3134737014770508, -0.8231561183929443, -0.8604277968406677, 0.4024724066257477, -0.3018698990345001, 0.692238986492157, -0.4081520736217499, -1.1990259885787964, -0.15808582305908203, -1.7510898113250732, 0.49132177233695984, -0.45299139618873596, 1.8423621654510498, 0.6374603509902954, -0.3293968439102173, -0.027863340452313423, 0.24737730622291565, -0.08444832265377045, 0.47460874915122986, 0.47053489089012146, 0.060798853635787964, -0.6213064789772034, 0.9781134724617004, 0.46575331687927246, -0.6524407863616943, 0.9561516046524048, 0.7001747488975525, 0.5940947532653809, 0.6541762948036194, -0.27942049503326416, -0.7087034583091736, -1.2420473098754883, -0.13105571269989014, -0.08808740228414536, -0.9894687533378601, 0.4206709563732147, -0.3806399405002594, -0.4609147310256958, -1.4942443370819092, 0.3174632489681244, -0.028748271986842155, 0.5135236382484436, -0.21236275136470795, 0.0919206291437149, -0.009609163738787174, -0.1067795529961586, -0.013387464918196201, -0.19576355814933777, -0.7184976935386658, -0.9880910515785217, -0.0334814079105854, -1.3058552742004395, -0.4634386897087097, -0.16893370449543, -0.8838397264480591, 0.5197945833206177, -0.3795880377292633, -0.17694419622421265, 0.05685491859912872, -0.39698484539985657, -0.5771108865737915, -0.8918904066085815, 0.09968259930610657, -0.4212704300880432, 0.2121141105890274, -0.10507236421108246, 0.3563839793205261, 0.0006978949531912804, -0.2472904771566391, 0.829329788684845, 0.1355438530445099, -0.9070215225219727, 0.6120695471763611, -0.16247065365314484, -0.9448479413986206, 0.592267632484436, -0.7018412351608276, 0.3974367082118988, 0.14332431554794312, 0.47300031781196594, -0.21727462112903595, 0.601856529712677, 0.2525816559791565, 0.26050299406051636, 0.20103766024112701, -0.45598047971725464, -0.39310017228126526, -1.474906086921692, 0.1978490799665451, -1.2114293575286865, -0.7002614140510559, 0.9795778393745422, 0.5656179785728455, -0.658789873123169, 0.47036558389663696, -0.6783536076545715, 0.06279835850000381, 0.7826366424560547, 1.2714943885803223, 0.4998817443847656, 0.26409199833869934, -0.9479349255561829, -0.674769401550293, -1.256382703781128, -0.551367998123169, 0.33246782422065735, -0.31110066175460815, 0.4405123293399811, 1.0491468906402588, 0.6702871322631836, -0.23097875714302063, 0.18683002889156342, -0.26797279715538025, 0.17367678880691528, -1.2598683834075928, 0.28471723198890686, -0.0012449370697140694, -0.5250003337860107, 0.9841433763504028, 0.2798383831977844, -1.5171418190002441, -0.5665664076805115, 0.00720977270975709, -0.1857406347990036, -0.3220270574092865, -0.15743619203567505, -0.3157512843608856, 0.49576571583747864, -0.12173061817884445, -0.24588342010974884, 0.0026626205071806908, -0.22374941408634186, 1.0653386116027832, 0.016191566362977028, -0.3565376102924347, 0.47367820143699646, 1.2690595388412476, 0.28108468651771545, 0.9069921970367432, -0.5489847660064697, -1.5497419834136963, -0.8395072221755981, -0.7380911111831665, 0.9750636219978333, -0.045875754207372665, 0.2573774456977844, -0.09433042258024216, 0.982366144657135, -0.4379301965236664, 0.27190667390823364, 0.20156237483024597, 0.08873274177312851, -0.7276943325996399, 0.6590197682380676, 0.9506472945213318, 1.0513486862182617, -0.5268418788909912, -0.67131108045578, -0.2269076406955719, 0.326540470123291, 0.4752436578273773, 1.0436466932296753, 0.592495322227478, -0.1118050292134285, -0.2497161477804184, -0.6466004848480225, -0.502967894077301, -0.9649585485458374, -0.21561291813850403, -0.37651342153549194, -1.1279361248016357, -0.14275209605693817, -0.20239664614200592, -0.6253798007965088, 0.9509747624397278, 0.07564834505319595, 0.7396622896194458, 0.533656656742096, -0.15863682329654694, -0.6109147071838379, -0.926044225692749, -0.276473730802536, -1.5350795984268188, 0.9804149866104126, 0.7687710523605347, -0.01770424284040928, 0.3840242326259613, 0.626724362373352, -0.3199393153190613, 0.007592398673295975, -0.21478533744812012, 0.43209290504455566, -0.9233116507530212, -0.8533047437667847, -0.30866673588752747, 0.6994330286979675, 0.6103041768074036, -0.4852536916732788, -0.5314356684684753, 0.9653986692428589, 0.6159765124320984, 0.1616382598876953, -0.28759700059890747, 0.6228432655334473, 0.21255458891391754, -0.32777732610702515, 0.2852500379085541, 0.6584487557411194, 0.797931969165802, -0.30669689178466797, -0.15146403014659882, -0.6974724531173706, 0.28664276003837585, -0.7161036729812622, 0.21137547492980957, -0.4058631956577301, 0.3359214961528778, 0.019573748111724854, -0.2500290274620056, 1.3192819356918335, -0.21954345703125, 0.6535646319389343, -1.4430736303329468, 0.2278660535812378, 0.22058404982089996, 1.2282310724258423, 1.3563716411590576, 0.0705265924334526, 0.010913447476923466, -0.6832812428474426, 0.43422436714172363, -0.10602910816669464, 0.9564797878265381, 0.19804665446281433, -0.944061279296875, -0.13376301527023315, -0.9823012948036194, 0.3658004105091095, -0.3552785813808441, -1.1623117923736572, -0.15825852751731873, -0.6183095574378967, -0.5811681151390076, 1.1968469619750977, 0.031183432787656784, -0.41040387749671936, -0.366753488779068, -0.05940350145101547, 0.7038443088531494, 0.37793251872062683, -0.36246001720428467, -0.3779952824115753, -0.1018303707242012, 0.5788358449935913, -0.7092750668525696, -0.49645936489105225, -0.8633525967597961, 0.3296741843223572, 0.3630176782608032, -1.3042253255844116, 0.06774143129587173, -0.09336789697408676, 0.3617950677871704, 0.36907872557640076, 0.5755273699760437, 0.5049457550048828, 0.3016394078731537, 0.27876073122024536, 0.06033368408679962, 0.023237133398652077, 1.6299574375152588, 0.6020561456680298, -0.5072789788246155, -0.04682311415672302, 0.8837012052536011, 0.2785866856575012, 0.22150066494941711, -0.262650728225708, 0.09062138199806213, -0.6732149124145508, -0.5017443299293518, -0.191084623336792, -0.018218010663986206, 1.6198606491088867, -0.023917462676763535, 0.35657694935798645, 0.49700015783309937, -0.8727487325668335, -0.8633296489715576, -0.11561018973588943, 0.19904887676239014, 0.15164059400558472, 0.07257220149040222, 0.21779865026474, 0.47841495275497437, 0.28252822160720825, -0.26623889803886414, 0.3717474937438965, 1.248866081237793, 0.6502110958099365, -0.4081030488014221, -0.6577926874160767, 0.08705203235149384, 0.517848014831543, 1.1885260343551636, 0.8431851863861084, -0.3055216372013092, -0.6421008110046387, 1.245753526687622, -0.8544158935546875, 0.6322371363639832, 0.34710174798965454, 0.5018755793571472, 1.0307033061981201, -1.8890469074249268, -0.17690274119377136, 0.6505454182624817, 0.45477908849716187, 0.35585448145866394, -0.5443108081817627, 0.4618598520755768, -0.9803792238235474, 0.3235495686531067, 0.451951801776886, 0.02452624775469303, 0.6737415790557861, 0.25185543298721313, 0.1167304590344429, 1.2076016664505005, 0.515505313873291, 0.153164803981781, -0.41806215047836304, 0.007288362830877304, -0.2528229355812073, 0.18228968977928162, 0.12558643519878387, 0.3857710063457489, 0.3488548696041107, 1.7258363962173462, -0.17830252647399902, -0.4099466800689697, 0.2766416668891907, -1.2087819576263428, 1.087790608406067, -0.3186899721622467, -0.08805672079324722, 0.1406848281621933, -0.9047790765762329, 0.09399828314781189, -0.1064966693520546, -0.5658042430877686, 0.016245417296886444, -0.5397320985794067, -0.9696098566055298, -0.14014942944049835, -0.4500780999660492, 0.7874082326889038, 1.3756555318832397, 0.3709782660007477, 0.4504695534706116, 0.4699144959449768, -0.3569234013557434, -0.29628893733024597, 0.357818067073822, -0.453508198261261, -0.26827752590179443, -1.2407686710357666, -0.9988082051277161, 0.7662538886070251, 0.27115365862846375, 0.10549923032522202, 0.026480870321393013, 1.7818354368209839, 1.1809958219528198, -0.5008004307746887, -0.28678688406944275, 0.5706213116645813, -0.1636078953742981, 0.6521619558334351, 0.6474618315696716, -1.0011622905731201, 0.24601483345031738, -0.09868625551462173, -2.7901899814605713, 1.5353785753250122, -0.11094482243061066, -0.5027937889099121, 0.9925718903541565, 0.5757449865341187, 0.7529124617576599, 1.0637181997299194, -0.9436073899269104, -0.10206373035907745, 0.08439097553491592, 0.39319658279418945, -1.2988030910491943, -0.1824369579553604, 1.2648987770080566, 0.38940078020095825, -0.7938321232795715, 0.1642872542142868, -0.17250801622867584, 0.15411008894443512, -0.13259576261043549, 0.3146878778934479, 0.49199309945106506, 0.16632097959518433, -0.06694332510232925, -0.744152843952179, 0.8004246354103088, -0.425868958234787, 0.10869651287794113, 0.05746757984161377, 0.7487057447433472, 0.5421715378761292, -0.3949534296989441, 0.10762051492929459, -0.18011321127414703, -0.8036274313926697, -0.11906787753105164, -0.14993999898433685, 0.6692363619804382, 0.1303683966398239, -0.06341034173965454, 0.13868562877178192, 0.2752726972103119, -0.6190879344940186, -0.43983685970306396, 0.3418043553829193, 1.2978731393814087, -0.803665041923523, -0.29238197207450867, 0.0908856987953186, 0.2763477861881256, 0.2901874780654907, 0.5529543161392212, 0.32688629627227783, -1.1473209857940674, -1.4191056489944458, -0.5649518966674805, -0.7106888294219971, 0.5785494446754456, -0.2970229387283325, 0.1870679408311844, -0.06687788665294647, -1.225182056427002, 1.378737449645996, -0.35275954008102417, -1.4426195621490479, -0.2239585667848587, -1.1405150890350342, 0.4934336245059967, -0.8960303664207458, 0.10539916157722473, 0.434837281703949, 0.9096720814704895, -0.864203691482544, -0.33968186378479004, -0.6846965551376343, -0.35254839062690735, 0.2678224444389343, 0.9497168660163879, -0.8883076310157776, 0.5817786455154419, -0.40717586874961853, -0.8851433992385864, -0.43225982785224915, 0.6943327784538269, -1.5858556032180786, 0.2930101156234741, -0.22207918763160706, 0.5221501588821411, -0.010320513509213924, 1.7582154273986816, 0.26506805419921875, 1.1148165464401245, -0.5634517073631287, 0.7621737122535706, -0.6488935351371765, -0.20628651976585388, -0.5996177792549133, -0.06626008450984955, -1.3262832164764404, -0.29885333776474, -0.34886959195137024, -0.21240782737731934, -0.4648476839065552, 1.3376175165176392, 1.048588514328003, -1.3674050569534302, -0.2130325883626938, -0.6360486745834351, 0.827430784702301, 0.030026476830244064, 0.39451703429222107, 0.5167903900146484, -1.1158536672592163, -0.08139587938785553, 0.044650040566921234, 0.990846574306488, -0.9330590963363647, -0.21309371292591095, 0.01821122318506241, 0.7974117994308472, -0.5873816609382629, 1.5478805303573608, 0.2804383635520935, 0.4413999021053314, -1.029477834701538, 0.9303621053695679, 1.3041154146194458, -0.2607079744338989, 0.9559476375579834, 0.12162579596042633, -0.30059561133384705, 0.059584517031908035, -0.6210027933120728, 0.07136350125074387, -1.2047936916351318, 0.7752390503883362, 0.32498699426651, -0.1830817312002182, -0.7646666169166565, -0.21839821338653564, -0.5398369431495667, -0.3874239921569824, 0.997793436050415, -0.1996833235025406, -0.2755943536758423, 0.7947754859924316, 0.7619083523750305, -0.18460209667682648, 0.623573899269104, -0.407056599855423, 0.42829573154449463, 0.32105788588523865, 0.24766024947166443, 0.005947629921138287, -0.9663903117179871, -0.2828424274921417, -0.16402259469032288, -0.5775721073150635, 0.09097807854413986, -0.3332608640193939, -1.3319523334503174, -0.3577730059623718, -0.3722109794616699, -0.4496322572231293, 0.6052840948104858, -0.5684046745300293, -1.584665298461914, -0.3688223361968994, -0.07962644845247269, 0.05527764558792114, -0.6096795201301575, -0.18815602362155914, -0.015450233593583107, -0.40712854266166687, 0.9852858781814575, -0.4460724890232086, 1.1208432912826538, 0.36344996094703674, 0.5960631370544434, -0.11804250627756119, 0.14118948578834534, -0.23599465191364288, 0.3871503472328186, -0.02721228078007698, 0.04251176491379738, 0.2675904929637909, -0.3269621729850769, 0.07844604551792145, 0.1362597644329071, -0.05861586332321167, 0.6654713153839111, -0.5270060300827026, -0.6677591800689697, -0.5356180667877197, 0.5337364673614502, 0.45123252272605896, -0.49394628405570984, -0.5630000233650208, -0.31155261397361755, 0.16277632117271423, -0.028096642345190048, 0.6359885931015015, -0.276285856962204, 0.7389973998069763, 0.9929870367050171, 0.15532933175563812, -0.4893372654914856, -0.8655012845993042, 0.636248767375946, -0.5919713377952576, 1.1062406301498413, -1.0293935537338257, 0.1954527199268341, -0.6954430341720581, -1.0990244150161743, -0.29073575139045715, -0.2337236851453781, -0.022417789325118065, 0.5433048009872437, -0.4417188763618469, -0.40612488985061646, -0.7623957395553589, -0.6784459352493286, 0.6556037068367004, -0.038176994770765305, 1.157670497894287, -0.9035539627075195, -1.5222774744033813, -0.18685282766819, 0.8358678817749023, 0.6672059893608093, 0.7750874161720276, 1.234979271888733, 1.1286462545394897, -0.2692042887210846, 0.01771615259349346, -0.26271674036979675, 1.1282016038894653, -0.7360945343971252, -0.5230770111083984, -0.4150189459323883, 0.5095065832138062, 0.09934931993484497], [0.04680957645177841, 1.8124414682388306, -2.7537448406219482, -0.9624541401863098, -0.03412659093737602, 0.2556922733783722, 0.8523023128509521, -0.5061001777648926, -0.3735351264476776, -0.8857133388519287, -0.9141155481338501, -0.21618665754795074, 0.1964091658592224, 0.9983009696006775, 0.5753116011619568, 0.6978864669799805, 0.2239808589220047, -0.6146997213363647, 0.27451297640800476, 0.9672024250030518, 0.29328376054763794, -1.4222480058670044, -0.6846514940261841, 0.4395546615123749, 0.6372618079185486, -0.19841645658016205, -1.7244737148284912, -0.7556363344192505, -1.3036317825317383, 0.46881261467933655, 1.975081205368042, -1.0207154750823975, -0.10586492717266083, 0.16273829340934753, -1.7677412033081055, -1.889824390411377, 0.09494760632514954, 0.2727442681789398, 0.526233971118927, -0.019874591380357742, 1.7347959280014038, 0.2936497926712036, -0.3176627457141876, -0.8775262832641602, 1.5860347747802734, -0.331040620803833, 0.6992502212524414, -1.2284009456634521, -0.22018741071224213, -0.5574919581413269, 1.5570266246795654, -0.6342916488647461, 0.4220251739025116, 0.21655070781707764, 0.9226890802383423, -1.1247553825378418, -0.2797389328479767, 0.13927790522575378, 0.8863087892532349, 0.10405044257640839, 2.226580858230591, 1.055185079574585, 0.38496923446655273, 0.8227847814559937, 1.0071842670440674, -0.12286687642335892, 0.8932010531425476, 0.32930251955986023, -0.47633883357048035, 0.36928656697273254, 0.43037593364715576, -0.9246354103088379, -0.5116254687309265, 0.23525092005729675, -0.3632116913795471, 0.19546733796596527, -0.25278809666633606, 0.6420807242393494, 0.13526767492294312, 1.0383981466293335, -0.5540986061096191, -0.1647615134716034, 0.46295252442359924, -0.8085302710533142, 0.26102375984191895, -0.36152246594429016, 0.5220741033554077, 0.2866879105567932, -0.681998610496521, 1.6878242492675781, -0.3813489079475403, 0.856700599193573, 0.16009430587291718, 0.04200645908713341, 0.5810376405715942, -0.2841448485851288, -0.1766718029975891, -0.5299837589263916, 0.20788101851940155, -0.47083333134651184, -0.4549403488636017, -0.8207414746284485, 0.47958889603614807, -0.33858925104141235, 1.3437343835830688, 1.198097825050354, -0.18115398287773132, -1.1897026300430298, -0.948295533657074, -0.0009424344170838594, 0.02930058352649212, -0.15153677761554718, -1.226338267326355, -1.3696367740631104, -0.15828171372413635, 1.0189921855926514, 0.8366336226463318, -0.4361494481563568, 0.09225655347108841, 0.6924225091934204, -0.7873363494873047, -0.3999294340610504, -0.8892006874084473, 0.5701384544372559, 1.2052127122879028, 0.1374930590391159, -0.9556607604026794, 0.09232623130083084, -0.619785487651825, -0.017004434019327164, 0.33870232105255127, 0.3479449152946472, -0.33763808012008667, 0.6399039626121521, -0.07754857838153839, 0.7393489480018616, -0.11262541264295578, -0.5854918956756592, -0.01842745766043663, -0.5026804208755493, -0.14547017216682434, -0.7476183772087097, -0.6330780982971191, -0.7611513733863831, 0.5354458093643188, -0.35938262939453125, -0.029906831681728363, -0.5838316679000854, -1.1706154346466064, -0.7944273352622986, -1.3337795734405518, -0.006722300313413143, -0.11206372082233429, 1.3414180278778076, 0.15505895018577576, -0.22363388538360596, 0.4806895852088928, -0.09688816219568253, 0.46178334951400757, 0.671445906162262, 0.9424756765365601, 0.1860344111919403, -0.5993832945823669, 1.3377093076705933, 0.18275611102581024, 0.08411069214344025, 0.2929830551147461, 0.8943517208099365, 0.17978253960609436, 0.5954204201698303, -0.48520326614379883, -0.265482634305954, -0.350009948015213, -0.3214712142944336, 0.17926853895187378, -0.8414843678474426, 0.41426771879196167, -0.2568926215171814, -0.6226565837860107, -1.4870883226394653, 0.8107938766479492, -0.28522440791130066, 0.11160560697317123, 0.5649496912956238, -0.6811853647232056, -0.3881925940513611, 0.0328734926879406, -0.35387876629829407, -0.43215957283973694, -0.024093501269817352, -0.6469882130622864, 0.3486427366733551, -1.5197583436965942, -0.5664626359939575, -0.5507805347442627, -0.9474120736122131, 0.8389114737510681, -0.6649081707000732, -0.47885003685951233, 0.2762991786003113, -0.14950153231620789, -0.37483641505241394, -1.169601559638977, 0.24515454471111298, -0.8821619749069214, 0.5430746674537659, -0.586751401424408, 0.6725870370864868, -0.037164460867643356, 0.03824785724282265, 1.0238527059555054, 0.3048875629901886, -1.1708570718765259, 0.5951561331748962, 0.2462158054113388, -1.713767409324646, 0.3949190676212311, -0.6839579343795776, 0.4895379841327667, 0.4923069477081299, 0.41624927520751953, 0.13963013887405396, 1.2369320392608643, 0.4096328020095825, 0.5358932018280029, 0.3898126482963562, -0.1401534378528595, 0.13572797179222107, -0.9473369717597961, -0.23702368140220642, -0.5178253054618835, -1.135140299797058, 1.6553261280059814, 1.1107367277145386, -0.6814433932304382, 0.15290531516075134, -0.2998453676700592, 0.434090793132782, 0.7160869240760803, 0.5798100829124451, 0.8013532757759094, 0.18030723929405212, -0.0790616124868393, -0.20163623988628387, -0.8392130136489868, 0.1239548847079277, 0.87172931432724, -0.17769157886505127, 0.18762090802192688, 0.47136664390563965, 0.8869531750679016, -0.09314548224210739, -0.30431827902793884, 0.009707767516374588, -0.07842361181974411, -0.9263168573379517, 0.025795962661504745, 0.27550458908081055, -0.7836818099021912, 0.9546807408332825, 0.7992623448371887, -1.0260311365127563, -1.0301915407180786, -0.9594830274581909, -0.667526364326477, -0.37524446845054626, -0.08846670389175415, -0.2920858561992645, 0.39987167716026306, 0.2787250578403473, -0.10943147540092468, 0.12380078434944153, -0.03630036860704422, 0.4480823874473572, 0.1252884715795517, -0.6492713689804077, 0.12281843274831772, 0.8087117671966553, 0.6925187110900879, 1.2600253820419312, -0.3968384563922882, -1.9358419179916382, -0.7403519749641418, 0.2477380931377411, 0.9121017456054688, 0.011482990346848965, 0.3501257002353668, 0.9143813848495483, 0.8463327884674072, -0.2363954484462738, 0.19016610085964203, 0.9930333495140076, -0.0020007528364658356, -0.9976484179496765, 0.8004982471466064, 0.9789537191390991, 0.4894934296607971, -0.6581320762634277, -0.8073379397392273, -0.4679196774959564, 0.023007798939943314, 1.2703801393508911, 1.0976744890213013, 0.5482359528541565, -1.1305396556854248, -0.6222271919250488, -0.7611101865768433, -0.6089510917663574, -0.4471026659011841, -0.3339241147041321, 0.09982041269540787, -0.942160964012146, -0.1642790138721466, 0.20364663004875183, -0.30568066239356995, 1.2584933042526245, -0.023245053365826607, 0.6876550912857056, 1.1533830165863037, 0.219369575381279, -1.4055625200271606, -1.3230860233306885, -0.04438785836100578, -1.952081561088562, 0.8056136965751648, 1.255151629447937, -0.8019667863845825, 0.37174513936042786, 0.6040483713150024, -0.04579378291964531, 0.44706520438194275, 0.1941923201084137, 0.5028707385063171, -0.6430515050888062, -0.9388291835784912, -0.094843789935112, 0.9029677510261536, 0.11676869541406631, -0.602989137172699, -0.4023844003677368, 1.0084210634231567, 0.676425039768219, -0.45563098788261414, -0.33045703172683716, 0.082028329372406, 0.02340065687894821, -0.6820005178451538, 0.003452429547905922, 0.5126858949661255, 0.3647500276565552, -0.5229243040084839, -0.4052918553352356, -0.4090968668460846, 0.14388951659202576, -0.554598867893219, 0.35709694027900696, -0.18196551501750946, 0.771038830280304, 0.30669456720352173, 0.8087888360023499, 1.0050184726715088, 0.12295984476804733, -0.15082089602947235, -1.499843955039978, 0.4392741322517395, 0.1626032292842865, 0.9889204502105713, 0.0762527734041214, 0.1561376452445984, -0.012154459953308105, -1.9500049352645874, 0.017445629462599754, 0.04892195016145706, 0.05817744508385658, 0.1364526003599167, -0.24755892157554626, -0.3277965486049652, -1.6467061042785645, 0.40301263332366943, 0.08892303705215454, -0.18138454854488373, 0.2023957520723343, -0.6294810771942139, -0.09662465751171112, 1.5329904556274414, 0.011930516920983791, -0.4125599265098572, -0.5186591744422913, 0.10013394802808762, 0.39678701758384705, 0.11004668474197388, -0.36193910241127014, -0.18795649707317352, -0.11245314031839371, 1.0673270225524902, -0.7707382440567017, -0.20795677602291107, -0.3467029929161072, -0.044137559831142426, 0.5136693120002747, -1.0397417545318604, 0.26871103048324585, -0.24932444095611572, 0.39979347586631775, 0.21598868072032928, 0.31722936034202576, 0.3836253583431244, 0.5561161637306213, -0.44707104563713074, 0.012070289812982082, -0.12727393209934235, 0.8876894116401672, 0.3500356674194336, -0.009747996926307678, -0.809299886226654, 0.7274824976921082, 0.8382765650749207, 0.21870213747024536, 0.10912549495697021, -0.19766904413700104, -0.0843898355960846, 0.6519213914871216, -0.5355789661407471, 0.2439657300710678, 1.158000111579895, -0.24133531749248505, -0.014919779263436794, 0.7575473189353943, -0.11612139642238617, -1.1037720441818237, -0.4141724407672882, -0.20134195685386658, 0.14096303284168243, 0.31518712639808655, 0.3070729970932007, 0.46319541335105896, 0.10324399173259735, 0.17795658111572266, 0.7960864305496216, 0.7271481156349182, 0.39684176445007324, -0.615361213684082, 0.3269185721874237, 0.12485409528017044, 1.2809687852859497, 0.8437220454216003, 0.8845435976982117, -0.2486897110939026, -0.7018610239028931, 1.1753073930740356, -0.49242186546325684, 0.15819789469242096, 0.8631316423416138, 0.415793776512146, 0.9843176603317261, -1.6336251497268677, 0.1316070854663849, 1.0716246366500854, 0.4950472116470337, 0.7680655717849731, -0.04815831407904625, 0.7055246233940125, -0.8265685439109802, 0.14095641672611237, -0.36714476346969604, -0.6414448618888855, 0.8575013279914856, -0.05112125352025032, 0.050251953303813934, 0.1338764876127243, -0.3584686815738678, 0.015755608677864075, -0.5038312077522278, -0.004851591307669878, -0.33777424693107605, 0.061613716185092926, 0.02882986143231392, 0.013144189491868019, 0.38691246509552, 1.8136528730392456, -0.37786898016929626, -0.3935414254665375, -0.06857413798570633, -0.8442352414131165, 0.5038954615592957, -0.06348766386508942, -0.18318967521190643, -0.6202536225318909, -0.6880782842636108, 0.49190351366996765, 0.5249679088592529, -0.7447786331176758, -0.13108444213867188, -0.5586512088775635, -1.1406956911087036, 0.03024432808160782, -0.01235170941799879, 0.8166743516921997, 1.4021170139312744, 0.031460609287023544, 0.1576375961303711, 0.4894840121269226, -0.38158178329467773, 0.21640412509441376, 0.7772029042243958, -0.6385022401809692, -0.26645952463150024, -0.814384400844574, -1.0924608707427979, 1.3289721012115479, 1.1231547594070435, 0.1609821617603302, 0.4108218848705292, 1.659209132194519, 0.9823340177536011, -0.5129046440124512, 0.45054513216018677, 0.7942129373550415, -0.42669975757598877, 0.5927861928939819, 0.5512552857398987, -1.4161086082458496, -0.4407294690608978, 0.44569647312164307, -2.954813003540039, 1.6461912393569946, -0.18158414959907532, -0.48763033747673035, 2.061875104904175, 0.7328249216079712, 0.5502901077270508, 1.1075109243392944, -0.5678671598434448, -0.5040540099143982, -0.6075693964958191, 0.017016440629959106, -1.5613797903060913, 0.16958768665790558, 1.2693456411361694, -0.4215066134929657, -1.0406184196472168, 0.4206555187702179, 0.0009155813604593277, 0.2298886924982071, 0.004938863217830658, 0.1699228435754776, -0.4782271981239319, -0.035575103014707565, -0.002276236191391945, -1.0125887393951416, 0.45150861144065857, -1.021697998046875, 0.04354545846581459, 0.047116778790950775, 0.2784545421600342, 0.5497702956199646, -0.5493821501731873, 0.42239341139793396, 0.02770110033452511, -0.2199106067419052, -0.3478916585445404, -0.6557528972625732, 0.8694409728050232, 0.7198195457458496, -0.18048398196697235, 0.09582008421421051, 0.26023855805397034, -1.4223984479904175, -1.1789391040802002, 0.7370244264602661, 0.8361469507217407, -0.29362839460372925, -0.5908089876174927, 0.5391694903373718, -0.0033280462957918644, -0.44962286949157715, -0.19472599029541016, 0.42089203000068665, -1.0215283632278442, -1.5048916339874268, -0.9625788331031799, -0.3160661458969116, 0.6664376258850098, 0.27335572242736816, -0.21621473133563995, -0.23035484552383423, -1.3749033212661743, 1.0500961542129517, -0.517778754234314, -1.1755982637405396, -0.2308397740125656, -1.069547414779663, 0.7041584849357605, -0.5224724411964417, -0.022689634934067726, 0.28364649415016174, 0.49635186791419983, -1.3653521537780762, -0.22467286884784698, -1.507895827293396, 0.06610720604658127, 0.8145109415054321, 0.7239983081817627, -0.6415753960609436, 0.9918819069862366, -0.2834056615829468, -0.9159989953041077, -0.010004915297031403, 0.5087159276008606, -1.173555612564087, -0.11369235068559647, -0.4456569254398346, 0.4945642054080963, 0.12232492864131927, 1.2139666080474854, 0.9199768900871277, 1.1487360000610352, -0.010429526679217815, 1.1635791063308716, -0.2560575306415558, 0.21868978440761566, -0.2533973455429077, 0.44537869095802307, -0.7710073590278625, -0.14671215415000916, 0.3823380172252655, -0.19451904296875, -0.22499366104602814, 1.4439544677734375, 0.5819163918495178, -0.9031510949134827, 0.2776367664337158, -0.08833155035972595, 0.5349145531654358, 0.5106120109558105, 0.5120350122451782, 0.6369197964668274, -0.9916942119598389, -0.3369187116622925, 0.17393797636032104, 0.2839672267436981, -0.6113605499267578, 0.6730313301086426, -0.008830415084958076, 0.4968569278717041, 0.26450231671333313, 0.5953213572502136, -0.37644198536872864, 0.4684012234210968, -0.8603184819221497, 1.3330731391906738, 1.1634876728057861, -0.22145241498947144, 0.5989181995391846, 0.5835158228874207, -0.13332131505012512, -0.026454530656337738, -0.5630850791931152, -0.8388921618461609, -0.9935111403465271, 1.2583781480789185, 0.9494412541389465, -0.419524610042572, -0.4215109348297119, 0.27713972330093384, 0.38072213530540466, -0.5206617116928101, 0.9182752966880798, -0.9093995690345764, -0.272622287273407, 1.1522096395492554, 0.8692563772201538, -0.3587837815284729, 0.5280896425247192, 0.2564663589000702, 0.9446715116500854, -0.4667932987213135, -0.6969053745269775, 0.20399147272109985, -1.1354278326034546, -0.7096459865570068, -0.5588282346725464, -0.73011314868927, 0.34659382700920105, -0.27226921916007996, -0.9788947105407715, -0.1865769624710083, -0.9622856378555298, -0.8742402791976929, 0.06757604330778122, -0.8547068238258362, -1.234805941581726, -0.18452781438827515, -0.26737159490585327, 0.20182602107524872, -0.8265447616577148, -0.699201226234436, 0.7328965067863464, -0.055788375437259674, 1.1401598453521729, -0.16883620619773865, 1.3320786952972412, 0.3953893184661865, 0.5834655165672302, -0.5127437710762024, 0.4211041331291199, 0.1854364573955536, 0.3585154712200165, -0.4483889043331146, -0.10622293502092361, 0.4406987726688385, -0.4113346040248871, -0.1502530425786972, 0.6376919746398926, 0.09214676171541214, 0.044777072966098785, 0.15090325474739075, -0.8522379398345947, -1.5638216733932495, -0.007863782346248627, 0.4707794487476349, -0.9270600080490112, -0.2458849549293518, -0.34283027052879333, 0.0524187833070755, -0.13508203625679016, -0.010335319675505161, -0.7374935150146484, 0.9921517372131348, 0.7268721461296082, 0.13217508792877197, -0.42385077476501465, -0.511180579662323, 0.31123191118240356, -0.17872248589992523, 0.9033589363098145, -1.927441954612732, 0.021104399114847183, -0.5609968900680542, -0.9845275282859802, -0.007971055805683136, 0.31111958622932434, 0.3691965341567993, 0.46967411041259766, -0.287321537733078, -1.2152196168899536, -0.6938807368278503, -0.10536247491836548, 0.45047491788864136, 0.3556642234325409, 1.3337808847427368, -0.5837996006011963, -1.5110630989074707, -0.3155010938644409, 0.8934224247932434, 0.19995716214179993, 0.5761673450469971, 1.738020896911621, 1.6821951866149902, 0.022955263033509254, -0.20008037984371185, -0.21260763704776764, 0.5251274108886719, -0.7930161356925964, -0.5855498909950256, -0.9288478493690491, 0.030632255598902702, 0.24326089024543762], [0.3816525936126709, 2.141181468963623, -1.514477014541626, -0.87977135181427, 1.2225167751312256, 1.1962758302688599, 1.3830831050872803, -0.2416469156742096, -0.09509461373090744, -0.13283245265483856, -0.3442382216453552, 0.10966624319553375, 1.048253059387207, 0.7776279449462891, -0.10707376897335052, -0.04320884868502617, 0.22472470998764038, 0.006342684850096703, 0.7945531606674194, 0.13995778560638428, -0.33653783798217773, -0.8441532254219055, -0.055852070450782776, -0.05098533630371094, 0.032716408371925354, 0.4366740584373474, -1.7651036977767944, -0.5447322130203247, -1.5807958841323853, -0.12523344159126282, 0.9241210222244263, -1.0384677648544312, 0.5051180124282837, 0.5273364782333374, -2.314344882965088, -0.8257206678390503, 0.8824129104614258, 1.036353349685669, 0.8077206015586853, 0.88948655128479, 0.9857119917869568, 0.6393815279006958, 0.2317453771829605, -1.38225519657135, 0.8177576661109924, -0.2421514093875885, 0.4313073456287384, -1.3229563236236572, 0.8477318286895752, -0.5851178765296936, 0.856522798538208, -0.1631089150905609, 0.2434169352054596, 0.22710014879703522, 1.354013204574585, -0.8886279463768005, 0.052874647080898285, 0.25803279876708984, 0.5106531381607056, 0.0053316755220294, 1.3892180919647217, 0.33243489265441895, -0.23165887594223022, 1.062900424003601, 0.5492331981658936, 0.0735936388373375, 0.5818192958831787, -0.14876264333724976, -0.76055508852005, 0.1412820667028427, 0.4609718918800354, -0.15928538143634796, -0.9471620321273804, 0.4101303219795227, -0.587081789970398, 0.32654690742492676, 0.5224881768226624, 0.32098281383514404, -0.22000771760940552, 0.858548641204834, -0.3638947010040283, -0.43652957677841187, 0.05787167698144913, -0.10339006781578064, -0.22788013517856598, 0.027444634586572647, -0.35451123118400574, -0.8204705715179443, -0.050280891358852386, 1.7087162733078003, 0.040186215192079544, 0.03701484203338623, 0.27184319496154785, -0.32716190814971924, -0.08934375643730164, -0.8004790544509888, 0.4998893737792969, -0.45166701078414917, -0.5231029987335205, -0.3310909867286682, -0.6002886295318604, -0.2724544405937195, 0.07901948690414429, 0.178081214427948, 1.5170488357543945, 1.1795142889022827, -0.27533140778541565, -0.5906486511230469, -0.45912879705429077, 0.9180168509483337, 0.10905340313911438, 0.30028343200683594, -1.3557753562927246, -1.3518279790878296, -0.272538959980011, 0.9023749828338623, 0.6305395364761353, -0.17735272645950317, 0.5032380223274231, 0.47700607776641846, -0.780281662940979, 0.08156360685825348, -0.5095139145851135, 0.7948725819587708, 1.3518729209899902, 0.5722459554672241, -0.7115225791931152, -0.28092527389526367, 0.27014845609664917, 0.09384569525718689, 0.9808546900749207, -0.04058583825826645, -0.38632214069366455, 1.0257282257080078, -1.3869755268096924, 1.4725079536437988, -0.7656776905059814, -1.3409764766693115, 0.3198128044605255, 0.4938366413116455, 0.4503161907196045, -0.5632897615432739, -0.024063758552074432, -0.22020743787288666, 0.23164823651313782, -0.42379260063171387, 0.22425143420696259, -0.047440748661756516, -1.2462222576141357, 0.12466296553611755, -1.2805707454681396, 0.7342440485954285, -0.40547120571136475, 1.2845911979675293, -0.0039016916416585445, 0.4111124277114868, 0.661080002784729, 0.9090126752853394, 0.6052823662757874, -0.2896948456764221, 0.7264779806137085, 0.566323459148407, -0.47464266419410706, 0.8287107944488525, 0.42635011672973633, -0.22302141785621643, 0.3754119873046875, 0.11191380769014359, 0.18090903759002686, 0.39780256152153015, -0.7180176973342896, 0.03555171191692352, -0.5290148258209229, 0.4628152847290039, -0.1495267152786255, -0.6522063612937927, 0.7758667469024658, -0.6007755994796753, -0.592120885848999, -1.0390580892562866, 0.852611780166626, -0.08139042556285858, 0.28981083631515503, -0.02667573094367981, 0.6361870765686035, -0.4101663827896118, -0.3591739237308502, 0.542991042137146, -0.7709177732467651, -0.6370943188667297, -1.2239766120910645, -1.0493762493133545, -1.482372760772705, -0.026659302413463593, -0.6241760849952698, -1.0689797401428223, -0.054104696959257126, -0.13173998892307281, -0.2563907206058502, 0.41651982069015503, -0.3522607684135437, -0.2082536816596985, -1.1962190866470337, -0.3254205584526062, -0.36549490690231323, 0.05371236056089401, -1.1354728937149048, 0.3233009874820709, -0.7098978757858276, -0.586962878704071, 1.3645412921905518, 0.36813631653785706, -0.8174153566360474, 0.5655244588851929, -0.6227472424507141, -0.9668940901756287, 0.6961938142776489, -0.12428280711174011, 0.026505324989557266, 0.16657960414886475, 0.508597731590271, 0.2379612922668457, 0.8368548154830933, 0.09764459729194641, 0.5998076796531677, 0.23005244135856628, -1.1395841836929321, -0.7225767374038696, -0.8708071708679199, 0.34497395157814026, -0.8169430494308472, -1.222458004951477, 1.6280099153518677, 0.5387570858001709, -0.764901876449585, 0.7521538734436035, 0.04934844747185707, 0.28314346075057983, 0.6084061861038208, 0.6992653608322144, 0.3380086421966553, 0.8962501287460327, -0.8668840527534485, 0.15087729692459106, -0.8764153122901917, -0.16953429579734802, 1.265076756477356, 0.13323833048343658, -0.3674317002296448, 1.366750955581665, 0.6779695153236389, -0.060606855899095535, 0.12309285998344421, 0.5489415526390076, 0.19551770389080048, -1.1352072954177856, 0.3536429703235626, -0.13882829248905182, -0.058361101895570755, 1.3406888246536255, 0.4961360692977905, -1.2809923887252808, -0.38312196731567383, 0.20927278697490692, 0.5126438140869141, 0.24325205385684967, -0.03906136006116867, -0.35222095251083374, 0.4902583360671997, -0.05538628622889519, 0.47172027826309204, 0.5434424877166748, 0.09679700434207916, 0.7550171613693237, 0.14906731247901917, 0.01366955041885376, -0.41509687900543213, 0.9977284669876099, -0.05883801728487015, 0.39137986302375793, -0.3072671592235565, -0.7203018069267273, -0.8601523637771606, -0.029034070670604706, 0.9863014221191406, -0.682826042175293, -0.3569737672805786, 0.7871092557907104, 0.9850887060165405, -0.05624384433031082, 0.6405661106109619, 0.33066728711128235, -0.275812566280365, -0.31273597478866577, 0.7789044976234436, -0.06934002041816711, 0.45485472679138184, -0.6984066963195801, -0.608869731426239, -0.34954747557640076, 0.4191642105579376, 1.1592941284179688, 0.7885242104530334, 0.8502025008201599, -0.33850908279418945, -0.9984359741210938, -0.6236811280250549, -0.17200967669487, -1.289067268371582, -0.0456429123878479, -0.8759784698486328, -0.7039878964424133, 0.4856249690055847, -0.7141185998916626, -0.007090900093317032, 0.6132082939147949, -0.04311022907495499, 1.1290743350982666, 0.845867395401001, -0.6807595491409302, -0.5703725814819336, -0.6128458976745605, -0.39690113067626953, -0.5827904939651489, 1.0226787328720093, 0.8559139966964722, -1.0784870386123657, -0.02448982372879982, 0.05603025108575821, -0.09380460530519485, 0.8221997022628784, -0.6090952157974243, -0.20609357953071594, -1.2569607496261597, -0.7381706237792969, -0.3890562951564789, 1.6888854503631592, 0.1745370626449585, 0.24203594028949738, -1.3604512214660645, 0.1707247793674469, 0.6688755750656128, -0.493982195854187, -0.6115318536758423, 0.4868958592414856, 0.23406057059764862, -0.1534227728843689, 0.17402082681655884, 0.8950930833816528, 1.0423576831817627, -0.673015832901001, 0.08702079206705093, -0.48395073413848877, 0.2478545606136322, -0.43550950288772583, 0.37854790687561035, -0.34610599279403687, 1.0285929441452026, 0.17715655267238617, 0.333828866481781, 1.0230062007904053, -1.2242677211761475, -0.2567574679851532, -1.540753960609436, 0.8738232851028442, 0.7938560247421265, 0.9750469326972961, 0.05539008602499962, 0.054425470530986786, 0.5386253595352173, -0.6070034503936768, -0.33932045102119446, 0.06980210542678833, 1.1608998775482178, -0.24243998527526855, -1.2448060512542725, -0.5390335321426392, -0.35263580083847046, -0.46247172355651855, -0.9305385947227478, -0.6928789615631104, 0.5775692462921143, -0.7414965629577637, -0.23559297621250153, 1.1895523071289062, 0.2792724668979645, -0.5667251348495483, -0.5249272584915161, -0.21741721034049988, 0.9857348203659058, -0.31814900040626526, -0.0069059692323207855, -0.4794852137565613, -0.263923317193985, -0.10065924376249313, -1.0251179933547974, -0.9855096936225891, 0.09627023339271545, 0.41436871886253357, 0.20328354835510254, -1.2677571773529053, 0.1272723525762558, 0.31375205516815186, 0.45135805010795593, 0.2823137044906616, -0.10507960617542267, 0.5119431614875793, 0.5188872814178467, -0.366847425699234, -0.051256414502859116, -0.14717239141464233, 0.9991525411605835, -0.31510722637176514, -0.5290127992630005, -0.1730930507183075, -0.290081650018692, 0.46024438738822937, 0.06812955439090729, -0.3664589524269104, -0.055051472038030624, -0.2768304646015167, 0.014183945953845978, -0.23340409994125366, 0.08166796714067459, 1.5649666786193848, 0.002274240367114544, -0.4456106126308441, 0.9968483448028564, -0.28118205070495605, -0.793890118598938, -0.6320642828941345, 0.03091287426650524, -0.9393312931060791, -0.6843112111091614, 0.23788705468177795, 0.5162677764892578, 0.46782419085502625, 0.9578053951263428, 0.3348345160484314, 1.0130621194839478, 0.5337650775909424, -0.3622756004333496, -0.43278414011001587, -0.024895552545785904, 0.593665599822998, 1.1332547664642334, 1.0669755935668945, -0.00013755913823843002, -1.1405384540557861, 1.1347448825836182, -0.5097162127494812, 0.04409082978963852, 0.5757666826248169, 0.4603537619113922, 1.0424529314041138, -1.8804246187210083, -1.2202427387237549, 0.9186545610427856, -0.09632718563079834, 0.5416556596755981, 0.09116774797439575, 0.5620478391647339, -1.0376060009002686, 0.31943458318710327, 0.5310054421424866, 0.10571323335170746, 0.9298481941223145, -0.2508653998374939, -0.12344254553318024, 0.25321120023727417, -0.5534774661064148, 0.3501710295677185, -0.5170122385025024, -0.6862189769744873, 0.14787334203720093, -0.09278334677219391, 0.15405842661857605, 0.5350184440612793, 0.17100268602371216, 1.1258487701416016, -1.2565925121307373, -1.3256678581237793, 0.6248390078544617, -0.4100017547607422, 0.26639094948768616, -0.2740151286125183, -0.5960296988487244, 0.02219480276107788, -1.0379431247711182, -0.5865542888641357, 0.4231986999511719, -0.3518124222755432, 0.0689164400100708, -0.552696943283081, -1.184119462966919, -0.20995080471038818, 0.2864826023578644, 0.8466148376464844, 0.3420887589454651, 0.41748255491256714, -0.25469523668289185, -0.07150670140981674, -0.9574986100196838, 0.30160871148109436, 0.24352705478668213, -0.09535136073827744, -0.16198848187923431, -1.200218677520752, -1.0609084367752075, 1.094050407409668, 1.6290442943572998, 0.2333991676568985, 0.5424975156784058, 1.215522289276123, 1.2058649063110352, -0.3028333783149719, -0.5768071413040161, 0.41788265109062195, -0.8591622114181519, 0.2364446520805359, 0.7767115831375122, -0.9690090417861938, -0.12127091735601425, -0.4386342763900757, -1.5784084796905518, 1.2377736568450928, 0.19871003925800323, -1.344224214553833, 1.0211007595062256, -0.15904775261878967, 0.6461895108222961, 0.9857813119888306, -0.40070104598999023, 0.10334159433841705, -0.2181597650051117, -0.628974199295044, -1.0140941143035889, 0.6179642081260681, 0.6357420682907104, 0.3411319851875305, -0.7318907976150513, 0.7673944234848022, -0.01173480972647667, -0.48620378971099854, -0.12537065148353577, 0.999326765537262, 0.23425990343093872, 0.8876469135284424, 0.8021389842033386, -1.3244737386703491, 0.35551947355270386, -0.026463817805051804, 0.10986291617155075, 0.08454188704490662, 0.6559966802597046, 0.3290516138076782, -0.4854387640953064, 0.1317896544933319, -0.2297302484512329, -0.4432670474052429, -0.7262774705886841, -0.658403217792511, 0.8229941129684448, 0.16926740109920502, -0.26765069365501404, -0.24637889862060547, 0.0026739034801721573, -0.5053500533103943, -0.1329892873764038, 0.7051582932472229, 0.8009729385375977, -0.7497916221618652, -0.46436405181884766, 0.02506817877292633, 0.09885461628437042, 0.24500003457069397, -0.4902801513671875, 0.20983320474624634, -0.8264309167861938, -1.6123487949371338, -0.44170767068862915, -0.40566694736480713, 1.2045347690582275, -0.8150109648704529, 0.37562745809555054, 0.27764591574668884, -1.307129979133606, 0.13054949045181274, 0.4185396730899811, -2.0102672576904297, -0.44101643562316895, -1.2376290559768677, 0.8890357613563538, -0.12777388095855713, -0.3596741557121277, -0.4978863596916199, 1.08978271484375, -0.6280760169029236, -0.9483163356781006, -1.4285013675689697, -0.11635593324899673, 0.7386336922645569, 1.1131739616394043, -0.6678653955459595, 1.031383991241455, 0.6949292421340942, -1.2691235542297363, -1.0981920957565308, 0.27695611119270325, -1.1781072616577148, 0.44556924700737, 0.3240319490432739, -0.25900545716285706, 0.4784175753593445, 1.2993019819259644, 0.2954518496990204, 0.371929407119751, -0.4549974799156189, 0.4644009470939636, -0.602351188659668, -0.7938967943191528, -0.8335508108139038, 0.47205033898353577, -0.9477433562278748, -1.1405622959136963, 0.3257465064525604, 0.13036790490150452, -0.1419799029827118, 1.250213861465454, 1.470992922782898, -1.242773413658142, -0.16718387603759766, 0.4579395353794098, 0.3215281665325165, 0.054588526487350464, 1.0152803659439087, 0.39186161756515503, -0.6612632274627686, 0.19132615625858307, -0.04585631191730499, 0.7230322957038879, -0.8067874908447266, 0.21524614095687866, 0.07627654075622559, 0.34524714946746826, 0.10389479249715805, 0.39040595293045044, 0.821178674697876, 0.1825115829706192, -0.8506777882575989, 0.8625972270965576, 1.502046823501587, -0.4231363534927368, -0.4079142212867737, 0.6187547445297241, 0.7101688385009766, 0.5002513527870178, -0.7900305986404419, 0.3583970069885254, -1.0627628564834595, 0.4308474063873291, -0.23470422625541687, 0.0554933100938797, -0.05725637823343277, 0.2592373490333557, 0.4983477294445038, 0.07955381274223328, 0.7887028455734253, -0.37488389015197754, -0.3236578702926636, 0.9495594501495361, 0.8426518440246582, -0.7071143388748169, 0.07579177618026733, 0.5628276467323303, -0.21796229481697083, 0.07916202396154404, -0.118694968521595, 0.2758890390396118, -0.8403147459030151, 0.3141079246997833, -0.33677947521209717, -0.19532907009124756, -0.17126044631004333, -0.8386332988739014, -1.0250732898712158, -0.09436239302158356, -0.8898394107818604, -0.9095234870910645, 0.2523350119590759, -1.148987054824829, -1.2056972980499268, 0.3505740761756897, -0.45410722494125366, -0.2688167691230774, -0.1116885393857956, -0.26530009508132935, 0.23263993859291077, 1.2640044689178467, 0.26535916328430176, -0.3236922025680542, 1.0337498188018799, 0.037620872259140015, -0.3204845190048218, -0.6187874674797058, 0.16159841418266296, 0.05860060080885887, 0.21706977486610413, 0.062183927744627, 0.3476983904838562, -0.2939091920852661, -0.24215620756149292, -0.1913260817527771, -0.09642529487609863, 0.07611314207315445, 0.006848577409982681, -0.0654057115316391, -0.19192960858345032, -0.68536776304245, 0.6039650440216064, 0.4658598303794861, -1.2690037488937378, -0.5624499320983887, -0.5936945080757141, -0.04229696840047836, -0.08594581484794617, 1.6039929389953613, -0.846330463886261, 0.2716864347457886, 0.4064313769340515, 0.01280288677662611, -0.17287522554397583, -0.01876433938741684, 0.666459858417511, -0.7736779451370239, 1.114516019821167, -1.2110381126403809, 0.04597264900803566, -0.516830325126648, -1.4302747249603271, 0.7787405252456665, 0.07443356513977051, -0.04778227210044861, 0.1990807056427002, -1.0105345249176025, -0.1547987014055252, -0.6071271896362305, 0.5577719211578369, 0.6867095232009888, 0.09669622778892517, 0.17068593204021454, 0.6480083465576172, -1.401200771331787, 0.48702868819236755, 0.03047270141541958, 0.20789507031440735, 0.7819913625717163, 1.2108252048492432, 1.4616072177886963, -0.2950468063354492, -0.07826404273509979, -0.4076796770095825, 0.8533057570457458, -1.1181056499481201, -0.6825368404388428, -0.8587866425514221, 0.4453275203704834, 0.07969412207603455], [-0.4307626187801361, 1.3573951721191406, -2.7104499340057373, -0.7224093079566956, -0.0998130664229393, 0.6741055250167847, -0.05402136221528053, 0.2486121654510498, -0.6899385452270508, 0.1776134967803955, 0.09515659511089325, 0.34504571557044983, 0.7881680727005005, 1.4369231462478638, 0.2616574466228485, 0.3369520604610443, 1.1788698434829712, 0.05393720418214798, 0.5961394309997559, 1.2237528562545776, 0.20098929107189178, -0.633580207824707, -0.971598744392395, 0.2359439879655838, 0.5803810358047485, 0.8183093667030334, -1.254382848739624, -1.0590429306030273, -0.9503918290138245, -1.0185024738311768, 1.8117259740829468, -1.6670345067977905, -0.14546580612659454, 0.5617360472679138, -1.344277262687683, -0.5275898575782776, 1.273889422416687, 0.884182333946228, -0.34366342425346375, 1.4748655557632446, 1.6368991136550903, 0.3902946710586548, -0.45097774267196655, -0.7384471297264099, 0.8758063912391663, -0.046520959585905075, -0.3227294087409973, -1.39720618724823, -0.5305595993995667, -0.6866737008094788, 1.18771493434906, 0.3049817383289337, -0.17634367942810059, 0.2843996286392212, 0.5558639764785767, -0.31436270475387573, 0.8912171125411987, -0.4232816696166992, 0.3384125232696533, 0.038582004606723785, 1.5785759687423706, 0.07770633697509766, 0.04198665916919708, -0.13907256722450256, 0.536049485206604, -0.004885431379079819, 0.6498761773109436, 0.6164875030517578, -0.6488299369812012, -0.029512133449316025, 0.9573906660079956, -0.13929131627082825, -0.5044460892677307, -0.0073146820068359375, -0.3548951745033264, 0.4627400040626526, 0.47202563285827637, 0.42782774567604065, 0.10902022570371628, 0.9275109767913818, -1.0560325384140015, 0.1529727280139923, 0.6127010583877563, -0.05605708435177803, 0.37121203541755676, 0.05057873576879501, 0.10183951258659363, -0.6619268655776978, -0.7064201831817627, 1.6247749328613281, 0.6395672559738159, -0.021957021206617355, 0.5066350698471069, -0.3267543315887451, 0.23989616334438324, -0.9480706453323364, 0.11829598248004913, -0.5803688764572144, -0.03319818899035454, 0.10012458264827728, -1.2767689228057861, -0.5994598865509033, 0.876776933670044, 0.13335466384887695, 0.7013763785362244, 1.3082211017608643, 0.037129394710063934, -1.0000425577163696, -0.786457359790802, -0.13817912340164185, 0.1260257214307785, -0.19253727793693542, -0.9206300973892212, -0.5638918876647949, 0.4460935592651367, 0.5351303815841675, 1.0835793018341064, 0.07554425299167633, 0.31151652336120605, 1.2435237169265747, -0.6597109436988831, 0.14879418909549713, -1.242386817932129, 0.45284348726272583, 1.0056209564208984, 0.31048136949539185, -0.5389173030853271, 0.20639623701572418, 0.01690298691391945, 0.08717232197523117, 0.22863925993442535, -0.26696038246154785, -0.14959344267845154, 1.0374526977539062, -0.5808168649673462, 0.8111538290977478, -0.17313632369041443, -0.8279297947883606, -0.29948461055755615, 0.09091905504465103, -0.22815053164958954, -1.0674582719802856, -0.1824680119752884, -0.9505879878997803, -0.08146349340677261, 0.2502354681491852, 0.06830573827028275, -0.1564532071352005, -1.306807041168213, -0.26248544454574585, -0.9313482642173767, 1.0333541631698608, 0.09055463969707489, 0.3352048695087433, 0.22194916009902954, 0.25506582856178284, 0.5636180639266968, 0.11612818390130997, 0.5089970827102661, 0.4837783873081207, 0.8256404995918274, -0.01563594862818718, -1.0025910139083862, 1.4823745489120483, 0.31779271364212036, -0.1256185621023178, 0.7502255439758301, 0.04631529748439789, -0.23663854598999023, 0.9151425957679749, -1.1590049266815186, -0.6090971231460571, -0.5263573527336121, 0.6005239486694336, 0.028940659016370773, -0.4025745987892151, 0.8374462127685547, -0.6418256163597107, -0.819817841053009, -0.9524673819541931, 0.8806052803993225, -0.7690116763114929, 0.1955823004245758, -0.16685882210731506, 0.6628935933113098, -0.34544268250465393, -0.49380338191986084, 0.3902951776981354, -0.8212283253669739, -0.0755537822842598, -0.9564658999443054, -0.056686386466026306, -1.2101256847381592, 0.3146030604839325, -0.23521779477596283, -0.833358883857727, 0.41194412112236023, -0.6130067110061646, -0.7459931969642639, -0.3324672281742096, 0.2058374136686325, -0.021886413916945457, -1.2688418626785278, -0.29657983779907227, -1.2650277614593506, 0.7310460805892944, -0.6421694159507751, 1.1200666427612305, -0.6066965460777283, 0.22107502818107605, 1.178471326828003, 0.6267775297164917, -0.05511793866753578, 0.4080236256122589, -0.2223491221666336, -1.6807457208633423, -0.5388991832733154, -0.02192062884569168, 0.2045368105173111, -0.1821376532316208, 0.4355035424232483, 0.6842954158782959, 0.5348079204559326, -0.2292851060628891, -0.19762475788593292, -0.41335636377334595, -0.928811252117157, -0.7575339078903198, -0.9222581386566162, -0.008841171860694885, -0.8961676955223083, -1.0592122077941895, 0.8772990107536316, 0.7397436499595642, -1.40896737575531, 0.4309737980365753, 0.030700305476784706, 0.5875977873802185, 0.37893059849739075, 0.3568192720413208, 0.3241174817085266, 0.28317081928253174, 0.23480086028575897, -0.08690252900123596, -0.6145280599594116, 0.09514811635017395, 0.6703144311904907, -0.18225820362567902, 0.35414817929267883, 1.5614428520202637, -0.09670712053775787, -0.6472529172897339, 0.30241629481315613, 0.3970736861228943, 0.2588905394077301, -1.3808848857879639, -0.6511009931564331, -0.45305290818214417, -1.3717554807662964, 1.0401140451431274, 1.4546056985855103, -1.4659391641616821, -0.14624391496181488, 0.004946237429976463, 0.1570480614900589, -0.30685552954673767, 0.09867606312036514, -0.1264413297176361, 1.0278013944625854, 0.4141542613506317, -0.17131458222866058, -0.3222033977508545, 0.01664729416370392, 0.43318799138069153, -0.39192456007003784, 0.00946417823433876, -0.2850304841995239, 0.8865808248519897, 0.18233124911785126, -0.1065988540649414, -0.4083767235279083, -1.9770431518554688, -0.36945509910583496, -0.4043577313423157, 1.0486727952957153, -0.1906043291091919, -0.1465597152709961, 1.4004114866256714, 0.6497328281402588, -0.5253389477729797, -0.3052595257759094, -0.1581048220396042, -0.26375582814216614, 0.11872521787881851, 0.5001698136329651, 0.48951980471611023, 0.20681777596473694, -0.8916395902633667, -0.31269940733909607, -0.12988592684268951, 0.18386614322662354, 1.0917280912399292, 0.1951107531785965, 1.5314935445785522, -0.49767401814460754, -0.10657460987567902, -1.0865947008132935, -0.14610472321510315, -0.4429473280906677, -0.14661626517772675, 0.0023187287151813507, -0.9375702142715454, 0.027287177741527557, 0.13483279943466187, -0.20083479583263397, 0.8721064925193787, -0.5198222398757935, 0.8098863959312439, 0.6526233553886414, 0.11104127019643784, -0.5523627996444702, -1.1485377550125122, 0.050116319209337234, -1.2706953287124634, 0.5168613791465759, 0.07647939026355743, -0.3657526969909668, -0.18008816242218018, 0.06726564466953278, 0.20986102521419525, 1.0055975914001465, -0.3662424683570862, 0.6580702662467957, -0.6837292909622192, -1.3082374334335327, 0.6998957991600037, 0.3698450028896332, 0.8281535506248474, -0.4784506559371948, -0.5141844749450684, 0.5002291202545166, 0.3122010827064514, -0.7292467951774597, -0.43117719888687134, 0.47617974877357483, -0.2614826560020447, -0.5239317417144775, 0.28030118346214294, -0.12056255340576172, 0.48706793785095215, -0.5898039937019348, -0.7469578981399536, -0.07019538432359695, -0.4552997052669525, -0.2521049380302429, 0.13722506165504456, -0.3396667242050171, 0.499437540769577, 0.3248089849948883, -0.5148283839225769, 0.8924558758735657, -0.08158464729785919, -0.5385899543762207, -1.3478813171386719, 0.7895902991294861, 0.4544951915740967, 1.3838614225387573, 0.8690963983535767, -0.060861825942993164, 0.5228809714317322, -0.4623364210128784, 0.17387641966342926, 0.1058083325624466, 0.3068183660507202, 0.10865730047225952, -1.3016266822814941, -0.6705753803253174, -0.2580180764198303, 0.24094247817993164, -0.4984970688819885, -0.34441810846328735, 0.41950762271881104, -0.9650588631629944, -0.20598448812961578, 1.4085718393325806, 0.6046070456504822, -0.3883402943611145, -0.18793803453445435, -0.46268895268440247, -0.3775775730609894, -0.1750161051750183, -0.12356647849082947, -0.8339005708694458, -0.5956701040267944, 0.43397676944732666, -0.616877555847168, -0.40067216753959656, -0.07069990038871765, -0.46188226342201233, 0.37578561902046204, -0.9182742834091187, 0.16846610605716705, -0.29453539848327637, 0.5064002871513367, 0.6652932167053223, 0.3195034861564636, 0.6972039341926575, 0.19277915358543396, 0.47226741909980774, 0.9833453297615051, 0.12184487283229828, 0.8793177604675293, -0.08366135507822037, -0.9336556196212769, -0.8594856262207031, -0.36627086997032166, -0.3555971682071686, -0.05757651478052139, -0.31935909390449524, 0.025013143196702003, -0.6066145896911621, -0.3967256546020508, -0.5400133728981018, -0.007612340152263641, 1.7909108400344849, 0.30878984928131104, -0.004846296273171902, 0.32415664196014404, -0.22074882686138153, -0.6781912446022034, 0.2859009802341461, 0.17569033801555634, -0.17331069707870483, 0.5699036121368408, 0.35599997639656067, 1.094411015510559, 0.1585446298122406, -0.2146642506122589, 0.3917100727558136, 0.8144055008888245, 0.5421360731124878, -0.5472373962402344, -0.039280541241168976, 0.1925755888223648, 0.8015440702438354, 1.4618830680847168, 0.9056214690208435, -0.5321211218833923, -1.3360246419906616, 0.751684308052063, -0.5287525057792664, -0.053954750299453735, 0.7867825031280518, 0.6168863773345947, 1.431383728981018, -2.2383100986480713, -0.14197318255901337, 0.5024774670600891, 0.611392080783844, 0.4798368811607361, 0.3860088884830475, 0.04733686149120331, -0.6655619144439697, -0.18742676079273224, -0.2760532796382904, -0.19086171686649323, 0.5715485215187073, -0.10742021352052689, -0.15770350396633148, 0.49374765157699585, -0.2954447269439697, 0.08367210626602173, -0.5810864567756653, -0.6062816381454468, -0.1939912885427475, -0.3394593596458435, -0.5390198826789856, -0.3773111402988434, 0.6187556385993958, 1.2632770538330078, -0.49124792218208313, -1.0247303247451782, 0.5160735845565796, -0.7102832198143005, -0.044899143278598785, -0.20446021854877472, -0.595469057559967, -0.7008717656135559, -0.8822623491287231, 0.11393995583057404, -0.3854191303253174, -0.609464168548584, 0.32797884941101074, 0.3894404172897339, -1.3656269311904907, -0.20333616435527802, 0.7169286012649536, 0.9377759695053101, 1.5755831003189087, 0.20000088214874268, 1.3531991243362427, 0.07754015177488327, -0.6957928538322449, 0.48118171095848083, -0.1991346776485443, 0.3190244138240814, -0.002702477388083935, -0.7692313194274902, -1.360499620437622, 1.5340468883514404, 1.3487824201583862, 0.5619785189628601, 0.05128604173660278, 1.1475958824157715, 1.1908694505691528, -0.4373054802417755, -0.5830581784248352, 0.7732999920845032, -0.7014667391777039, 0.016875743865966797, 1.1843986511230469, -0.7551252245903015, 0.11324441432952881, 0.1198374554514885, -2.1140732765197754, 1.183962345123291, 0.6748036742210388, -0.27353110909461975, 0.05715601146221161, 0.4670538902282715, 0.8083423376083374, 0.09111376106739044, -0.7238365411758423, -0.04872583970427513, 0.05043663829565048, -0.41367900371551514, -0.25740790367126465, 0.7710965871810913, 1.253404140472412, 0.2733038365840912, -0.5714812278747559, 0.16408517956733704, -0.31434524059295654, -0.2602134346961975, -0.21974116563796997, 0.13605956733226776, 0.6030706167221069, 1.347183346748352, 0.0935496911406517, -0.5764133930206299, 0.03894316405057907, -1.0196548700332642, 0.23338229954242706, 0.41963428258895874, 0.8488817811012268, 0.30877092480659485, -0.019670845940709114, 0.08545322716236115, -0.08652550727128983, -0.537158727645874, -0.16354970633983612, -0.7648591995239258, 1.6643446683883667, 0.3777632415294647, -0.6379474401473999, 0.21810908615589142, -0.062358904629945755, -0.6885344982147217, 0.0028920993208885193, -0.036756642162799835, 1.0929226875305176, -1.0422639846801758, -0.8411315679550171, -0.02818598970770836, -0.15750260651111603, -0.16161708533763885, -0.060125868767499924, 0.7498155236244202, -1.0131117105484009, -1.39113450050354, -1.0056955814361572, -0.9069035053253174, 0.35998743772506714, -0.4347074329853058, 0.3820134103298187, -0.11165954172611237, -1.9732447862625122, 1.6833529472351074, -0.19805637001991272, -1.5166144371032715, -0.10951629281044006, -1.764613151550293, 1.4846079349517822, -0.7110319137573242, -0.12644629180431366, 0.1875276118516922, 0.39037469029426575, -0.8257109522819519, -0.7214106321334839, -1.1838949918746948, -0.2106417417526245, 0.7200472950935364, 1.133642554283142, -0.9171769022941589, 0.9300640225410461, 0.012173376977443695, -0.7175093293190002, -1.3205310106277466, 0.9005963802337646, -0.18326926231384277, 0.39977651834487915, 0.5552457571029663, 0.3313719630241394, 0.041548509150743484, 1.3936883211135864, 0.6264821887016296, 1.1040934324264526, 0.1256505250930786, 0.4236750900745392, -0.5091425776481628, -0.26408135890960693, -0.13975803554058075, 0.9275903105735779, -1.0205345153808594, -0.4560200572013855, -0.2798886001110077, -0.5003148913383484, -1.2552016973495483, 0.21578727662563324, 0.9241609573364258, -0.6096426844596863, 0.1601451188325882, -0.37873685359954834, 0.47536715865135193, 0.20525416731834412, 0.012341253459453583, -0.3167881667613983, -0.3710238039493561, 0.2649117112159729, -0.09421657025814056, -0.26168161630630493, -1.3273248672485352, -0.27540314197540283, -0.2680211067199707, 0.5137941837310791, -0.1448400765657425, 0.8312227129936218, 1.071616768836975, -0.17199857532978058, -0.6725684404373169, 0.6315116286277771, 1.102295994758606, -0.1983068436384201, -0.24760130047798157, 0.0789337232708931, 0.26704975962638855, 0.04304847866296768, -0.4395395815372467, 0.21615217626094818, -0.7865143418312073, 0.8785879015922546, -0.3446100652217865, -0.15591786801815033, -0.5859158635139465, -0.28155386447906494, -0.2925894856452942, 0.1303628385066986, 0.4136970043182373, 0.025818556547164917, -0.29560643434524536, 0.9173032641410828, 1.1757628917694092, 0.010203761979937553, 0.19339263439178467, 0.3917154371738434, 0.66340571641922, 0.04097260534763336, 0.23979821801185608, 0.4966830909252167, -0.2569257616996765, -0.208693265914917, -0.46003004908561707, 0.4565415680408478, -0.3768981695175171, -0.8145442605018616, -1.3786991834640503, -0.22169388830661774, -0.9687044620513916, -0.18243634700775146, 0.7629274129867554, -0.8908341526985168, -0.5866799354553223, 0.14234237372875214, 0.1918535977602005, -0.23461095988750458, -0.40004032850265503, -0.5402458310127258, -0.5579441785812378, -0.048307184129953384, 1.240416407585144, -0.43974608182907104, 1.1688281297683716, -0.8754360675811768, -0.49888741970062256, 0.17681734263896942, 0.061113856732845306, 0.09850124269723892, 0.7277597784996033, 0.6779786944389343, -0.29933688044548035, 0.3900263011455536, -0.24317659437656403, -1.3176263570785522, 0.6610990762710571, 0.11082647740840912, 0.1681405007839203, 0.0066484250128269196, -0.4709267318248749, 0.07707681506872177, 0.8491041660308838, 0.576759934425354, 0.07438885420560837, -0.0492752343416214, -0.9162619113922119, 0.48747774958610535, -0.4616656005382538, 0.5571293830871582, -0.5608148574829102, 1.486106514930725, 0.6079477667808533, -0.1413508951663971, -0.03447819501161575, -0.14836759865283966, -0.5501937866210938, 0.24712976813316345, 0.4455721378326416, -0.9346714615821838, -0.4684414565563202, 0.16137242317199707, -1.317115306854248, 0.2756304144859314, 0.4648672938346863, 1.2223443984985352, -0.06646348536014557, -0.6763660311698914, -0.6902804970741272, -0.4222371280193329, 0.007003560662269592, 0.48865777254104614, 0.34041061997413635, 0.3335057199001312, 0.025325467810034752, -0.8276422619819641, -0.18508772552013397, 0.40811392664909363, 0.4743010997772217, 0.0966973677277565, 2.0093681812286377, 1.525456428527832, -0.08092708140611649, 0.3912486732006073, -0.6380559802055359, 0.5921109914779663, -0.9921186566352844, -0.22588032484054565, 0.2008964866399765, 0.6087145209312439, 0.21331194043159485], [0.050959840416908264, 1.5796623229980469, -2.3484456539154053, -1.2257611751556396, 0.18732210993766785, 0.22672885656356812, 0.6828019618988037, 0.03477778285741806, -0.36792194843292236, -1.0428301095962524, -0.9616446495056152, 0.18140831589698792, 1.2572979927062988, 1.4046396017074585, 0.9784509539604187, 0.18135669827461243, 0.698173999786377, -0.7068682312965393, 0.09405418485403061, 0.44164007902145386, 0.48929858207702637, -0.7127215266227722, -0.1009172648191452, -0.3975093364715576, 0.6083791851997375, 0.5245996713638306, -1.8802709579467773, -0.31548935174942017, -1.817018985748291, -1.258530616760254, 1.0182321071624756, -0.7902480363845825, 0.4026254415512085, -0.3355523347854614, -1.8307108879089355, -0.8073908686637878, 0.9154394865036011, 0.29425477981567383, -0.13738808035850525, 0.7398934364318848, 1.7103161811828613, 0.9468488693237305, 0.12580116093158722, -1.1276224851608276, 1.2852396965026855, 0.015276029706001282, -0.038029275834560394, -1.6780565977096558, -0.06850177049636841, -0.4094780683517456, 0.40082889795303345, -0.4271608293056488, -0.6097449064254761, 0.5331587791442871, 1.132004737854004, 0.18816323578357697, -0.36370959877967834, 0.3462926149368286, 0.3753049373626709, -0.34640252590179443, 1.6342461109161377, 0.433623731136322, -0.813254714012146, 0.462688684463501, 0.5036166310310364, -0.03559458255767822, 0.32632607221603394, 0.41434529423713684, -0.9285221099853516, 0.6585051417350769, 0.22615128755569458, -0.04779331758618355, -0.9957480430603027, 0.05216468870639801, -1.656755805015564, 0.19345109164714813, 0.14064659178256989, 0.3966872990131378, 0.1557372510433197, 1.137080192565918, -0.7437875270843506, -0.42882198095321655, 0.2348840981721878, -1.0575206279754639, 0.9800970554351807, 0.18966135382652283, -0.02055889368057251, -0.4880101680755615, -0.3505195379257202, 2.1021456718444824, -0.2367280274629593, 0.7165129780769348, 0.07626257091760635, -0.06532608717679977, -0.3646642565727234, -1.0951427221298218, 0.10612906515598297, -0.5739256143569946, -0.14765343070030212, -0.9931683540344238, -0.7065232992172241, -0.34331387281417847, 0.7751141786575317, 0.24639993906021118, 0.9467285871505737, 1.1670550107955933, 0.48096346855163574, -1.4409666061401367, -0.7838324308395386, 0.340501070022583, 0.3892197906970978, 0.13591307401657104, -1.3171679973602295, -1.101318597793579, -0.7589000463485718, 0.8810936212539673, 0.6727736592292786, -0.28987881541252136, 1.1424353122711182, 0.7708067893981934, -0.8988877534866333, -0.7078485488891602, -0.8762149810791016, 0.5629431009292603, 1.8162753582000732, 0.47054821252822876, -0.9260060787200928, 0.08419971168041229, -0.1800929605960846, -0.09555459022521973, 0.5464945435523987, -0.035039253532886505, -0.9795535206794739, 1.1968817710876465, -0.6669535636901855, 1.2698016166687012, -0.7536884546279907, -0.9092304706573486, 0.7653433084487915, 0.06002373248338699, 0.14119790494441986, -0.7596632838249207, -0.8340004682540894, -1.4958279132843018, 0.09132665395736694, -0.4667515754699707, 0.06169898062944412, -0.28677278757095337, -1.2916593551635742, 0.6048157215118408, -1.0466234683990479, 0.8127751350402832, -0.02291400358080864, 1.3647396564483643, -0.23309281468391418, 0.9464696645736694, 0.7959415912628174, 0.07271195948123932, 0.2060951441526413, 0.2661701440811157, 0.6908683180809021, 0.43951910734176636, -0.9995930194854736, 1.4267253875732422, 0.1770257204771042, -0.15675759315490723, 0.5355888605117798, 0.0863049179315567, 0.22054290771484375, 0.8512610197067261, -0.9469122886657715, -0.11613589525222778, -0.3392733633518219, 0.25191277265548706, -0.12042705714702606, -0.4236016273498535, 0.9776170253753662, -1.0362002849578857, -0.6295861601829529, -0.9691727757453918, 0.9202158451080322, -0.7918984889984131, 0.15585078299045563, -0.2912588119506836, 0.3465622067451477, -0.4055209755897522, -0.5857813954353333, -0.16907474398612976, -0.8651226758956909, -0.53521728515625, -1.4748823642730713, -0.22987091541290283, -1.4798686504364014, -0.181226909160614, -0.7226755619049072, -1.4939699172973633, 0.5012224912643433, -0.37651658058166504, -0.16128163039684296, 0.2700326442718506, -0.013756651431322098, -0.6520110964775085, -1.9796277284622192, -0.2794746160507202, -0.8131558895111084, 0.8807120323181152, -0.43948665261268616, 0.4485122263431549, -0.9915341138839722, 0.2243325412273407, 1.3373758792877197, 0.13484568893909454, -0.9873683452606201, 0.5352150201797485, 0.4662763178348541, -1.0741175413131714, 0.0761575847864151, -0.5088316202163696, 0.30584532022476196, 0.016061898320913315, 0.7357313632965088, -0.032626714557409286, 1.0303140878677368, 0.28684258460998535, 0.19565537571907043, 0.2599698305130005, -0.7388185858726501, -0.07323018461465836, -1.0247722864151, 0.2597115635871887, -0.9469223022460938, -0.4233494699001312, 1.1052451133728027, 0.766465425491333, -0.3947010636329651, 1.046592116355896, -0.20501886308193207, 0.6688295602798462, 0.3676900863647461, 0.960121750831604, 0.7798128128051758, 0.15422283113002777, -0.5917352437973022, -0.010827142745256424, -0.13915801048278809, -0.18726477026939392, 1.4083659648895264, -0.2672882080078125, -0.6321730613708496, 1.630500316619873, 0.33942073583602905, -0.3599257171154022, 0.134063258767128, 0.5618857741355896, -0.23105552792549133, -1.0733962059020996, 0.06088424101471901, -0.2117765247821808, -0.8169887661933899, 1.5055197477340698, 0.7358942031860352, -1.686319351196289, -0.6602771282196045, -0.26053905487060547, -0.24965399503707886, -0.21618497371673584, 0.32104817032814026, -0.4407232999801636, 0.3986701965332031, -0.20483613014221191, 0.30731087923049927, 0.13471762835979462, 0.20215527713298798, 0.8432267904281616, -0.3030945062637329, -0.4194207787513733, -0.19940383732318878, 0.7357323169708252, 0.16373372077941895, 0.932863712310791, -0.41541188955307007, -1.8013993501663208, -0.7957578897476196, -0.4387066960334778, 1.0888571739196777, -0.35923871397972107, -0.060910023748874664, 0.9173436164855957, 1.213676929473877, -0.5355865955352783, 0.3123428225517273, 0.057373568415641785, 0.027718964964151382, -0.22736547887325287, 0.03233705088496208, 0.19572949409484863, 0.4956134557723999, -0.31621551513671875, -0.885918378829956, -0.2583056688308716, 0.10253926366567612, 1.6094715595245361, 0.9866796135902405, 0.9287859201431274, -0.11473755538463593, -0.2648599147796631, -0.33928990364074707, 0.06860632449388504, -0.4892740845680237, 0.05066894739866257, -0.9851511716842651, -0.9023679494857788, 0.2615848183631897, -0.839738130569458, -0.5993518829345703, 0.9736931324005127, 0.11960094422101974, 1.290328025817871, 1.1764025688171387, -0.5299575924873352, -0.6744155287742615, -1.1930632591247559, 0.17338961362838745, -0.9038328528404236, 0.891242504119873, 0.7820644378662109, -0.5080679655075073, 0.005185943096876144, -0.3261072039604187, -0.0778295025229454, 0.607589602470398, -0.23828905820846558, 0.12545445561408997, -1.3180601596832275, -0.22805453836917877, -0.23090046644210815, 1.3586673736572266, -0.145128071308136, 0.10178851336240768, -0.6666096448898315, 0.4152049720287323, 0.2646560072898865, 0.09769643843173981, -0.06310869008302689, 0.5415029525756836, -0.17711667716503143, 0.3507429361343384, -0.03042633645236492, 0.9750691652297974, 1.6646430492401123, -0.2507581412792206, 0.011357501149177551, -0.6197203993797302, 0.09168161451816559, -0.4631008505821228, 0.6262189149856567, 0.07875678688287735, 1.5079765319824219, 0.04744413122534752, 0.47296255826950073, 0.8384949564933777, -0.39088547229766846, -0.23604735732078552, -1.3028615713119507, 0.7018524408340454, 0.08407244086265564, 1.0250022411346436, 0.857512354850769, 0.6280348300933838, 0.919965386390686, -0.5563367605209351, -0.5429325103759766, 0.030737321823835373, 0.7727354764938354, -0.5209876298904419, -0.9664281606674194, -0.5817626714706421, -0.09486021101474762, -0.5747842788696289, -0.5348907113075256, -0.6079621315002441, 0.4294549226760864, -0.4188029170036316, -0.17144452035427094, 0.7980940341949463, -0.1585700809955597, 0.08636390417814255, 0.24120157957077026, 0.069236621260643, 0.2797550559043884, -0.15245111286640167, -0.5533029437065125, -0.26163244247436523, 0.07717747241258621, 0.019484352320432663, -0.80859375, -0.8882457613945007, 0.10972538590431213, -0.2778278589248657, 0.7172932028770447, -1.4092050790786743, -0.05880389362573624, -0.0924503281712532, 0.266842246055603, 0.3994174003601074, 0.08940064907073975, 0.5337808728218079, 0.2809797525405884, 0.25640344619750977, -0.31733548641204834, -0.15137995779514313, 1.0877766609191895, -0.1014244556427002, -0.4185674786567688, -0.478185772895813, -0.29540306329727173, 0.4683187007904053, -0.04922400787472725, -1.064853310585022, 0.32333624362945557, -0.4160933494567871, 0.04762484133243561, 0.08499032258987427, -0.2748970091342926, 1.753896951675415, -0.21159568428993225, 0.3003285527229309, 1.2435123920440674, -0.06786923110485077, -0.9516420364379883, 0.033699363470077515, -0.31986385583877563, -0.3954119086265564, -0.18817780911922455, 0.29346174001693726, 0.2387063205242157, 0.19107437133789062, 1.0306706428527832, 0.048674993216991425, 0.7577798962593079, 0.2375769317150116, -0.5280317068099976, -0.24256345629692078, 0.5710229873657227, 0.6035422086715698, 1.112365484237671, 1.0912785530090332, 0.05534662678837776, -1.1435558795928955, 1.3179187774658203, -0.1636870950460434, 0.9950270652770996, 0.8988133668899536, 0.5397327542304993, 1.8743064403533936, -1.6899757385253906, -0.5477938652038574, 0.4665508270263672, -0.04745018854737282, 0.41547492146492004, 0.4822109639644623, 0.8940441608428955, -1.0445971488952637, -0.16962051391601562, 0.6979880332946777, -0.17585116624832153, 1.0602302551269531, -1.2264518737792969, -0.681685209274292, 0.5352133512496948, -0.4274817109107971, 0.1447707563638687, -0.7188248634338379, -0.4844498336315155, 0.2841556966304779, -0.24460573494434357, 0.3766883611679077, 0.5579487085342407, 0.5313280820846558, 1.4236886501312256, -0.5564324855804443, -1.8200087547302246, 0.24367883801460266, -0.9112961292266846, 0.3921816945075989, 0.1385784149169922, -0.6245990991592407, -0.5543532371520996, -0.936341404914856, -0.43307483196258545, 0.17928341031074524, -0.6921727657318115, -0.12043624371290207, 0.2739863991737366, -1.803160548210144, -0.3036925196647644, -0.4446248412132263, 0.9060081243515015, 1.0245378017425537, -0.10261017084121704, 0.15347515046596527, 0.2683236002922058, -0.4996727705001831, 0.044534239917993546, -0.3944222629070282, -0.453407347202301, 0.17395955324172974, -0.8739523887634277, -1.3112473487854004, 1.198460578918457, 1.3838589191436768, 0.6859289407730103, 0.6257830858230591, 1.0954079627990723, 1.7621724605560303, -0.9875439405441284, -0.8574848175048828, 0.23890262842178345, -1.2473870515823364, 0.7237209677696228, 0.884301483631134, -0.47703003883361816, -0.4608606696128845, 0.0652243122458458, -2.34615421295166, 1.5311203002929688, -0.23118263483047485, -0.6791379451751709, 0.8331739902496338, 0.29339998960494995, 0.3577209413051605, 0.7555747032165527, -1.062574028968811, -0.4946194291114807, 0.32932043075561523, -0.2382548451423645, -1.3393430709838867, 0.12715408205986023, 0.6969781517982483, 0.3816107511520386, -0.18677639961242676, 0.7533884048461914, -0.3246512711048126, -0.35600754618644714, 0.3660813271999359, 0.8685903549194336, 0.3616480827331543, 0.41897720098495483, 0.6910508275032043, -1.6390092372894287, 0.10756506025791168, -0.9665040969848633, 0.4611508846282959, 0.4047558307647705, 0.9700474739074707, 0.4516892731189728, -0.5312753915786743, 0.2767939567565918, -0.33629781007766724, -0.27801215648651123, -0.5852259397506714, -0.6604623794555664, 1.248297929763794, 0.5225236415863037, -0.26330050826072693, 0.1963881254196167, -0.0974431186914444, -0.4956757426261902, -0.1765160858631134, 0.6835345029830933, 0.8355097770690918, -1.6101223230361938, -0.04139198735356331, 0.21413399279117584, 0.04498261585831642, 0.04212818667292595, 0.37688148021698, -0.18094095587730408, -0.9104511141777039, -1.2632946968078613, -0.47511065006256104, -0.2291174978017807, 0.9135290384292603, -1.0756624937057495, 0.05854722857475281, 0.09785787016153336, -1.5911662578582764, 0.9071666598320007, 0.1764041632413864, -1.4387246370315552, -0.6223253607749939, -1.345942735671997, 1.3033447265625, 0.15334388613700867, -0.678041398525238, 0.10454308241605759, 0.7761340141296387, -0.6646464467048645, -0.21194103360176086, -1.4852968454360962, 0.3325389623641968, 1.3061563968658447, 1.4266653060913086, -0.8625929355621338, 0.7221630215644836, 0.5505609512329102, -0.8708725571632385, -0.38409367203712463, 0.09402840584516525, -0.9700216054916382, 0.16439801454544067, 0.4127539098262787, 0.0002940148115158081, 0.8436190485954285, 1.4283369779586792, 0.608986496925354, 1.0012577772140503, -0.23486241698265076, 1.0727403163909912, -0.7470324039459229, -0.6315296292304993, -0.3358517289161682, 0.2534390091896057, -1.01334547996521, -0.5714022517204285, 0.5597259998321533, -0.47596514225006104, 0.21403133869171143, 0.8863956928253174, 1.011550784111023, -0.35147756338119507, 0.2097262293100357, -0.02310197800397873, 0.24344561994075775, -0.2720857560634613, 0.9712880849838257, 0.057004306465387344, -0.916378378868103, 0.3280201852321625, 0.4189695715904236, 0.49680137634277344, -0.7569389343261719, 0.44042065739631653, -0.26375114917755127, 0.7501507997512817, -0.22929587960243225, 0.3795287013053894, 0.4535359740257263, -0.5410014986991882, -0.9790940284729004, 0.9718509316444397, 1.2997626066207886, 0.0954919382929802, 0.16572122275829315, 0.6527629494667053, 0.2698563039302826, 0.6490429639816284, -0.3613772690296173, 0.1459839940071106, -0.7643768787384033, 0.7656019926071167, -0.19806718826293945, 0.21667781472206116, -0.8053263425827026, 0.9620238542556763, -0.13323846459388733, 0.20873305201530457, 0.955678403377533, -0.05957761034369469, -0.4986976385116577, 1.06765878200531, 0.870572566986084, -0.707257091999054, -0.04847431555390358, 0.3920741081237793, 0.9384361505508423, 0.08401723206043243, 0.29838305711746216, 0.34984272718429565, -0.6246862411499023, 0.24985331296920776, 0.23704053461551666, -0.6090519428253174, -0.029928058385849, -0.7799083590507507, -1.3316314220428467, -0.3538527190685272, -0.4044915437698364, -0.9206294417381287, 0.09231282770633698, -1.0612173080444336, -1.0125300884246826, -0.1554190069437027, -0.1065736934542656, 0.3126957416534424, -0.8828506469726562, 0.3094165027141571, 0.16145539283752441, 0.3677976727485657, 1.4165229797363281, -0.21929650008678436, 1.3050481081008911, 0.08877578377723694, 0.3745371699333191, -0.1291530579328537, 0.5614548921585083, -0.22029918432235718, -0.07717772573232651, -0.23713883757591248, -0.17153535783290863, -0.6595472693443298, -0.6497030258178711, -0.23779669404029846, 0.7158529162406921, 0.011653341352939606, 0.3756124973297119, -0.14724257588386536, -1.2154943943023682, -0.2925964593887329, 1.034848690032959, 0.8928430080413818, -0.7709683179855347, -0.39653193950653076, -0.05797835439443588, -0.08713552355766296, 0.1959216296672821, 1.0834019184112549, -0.465420126914978, 0.2913420498371124, 0.4256068468093872, -0.2267276495695114, -0.8614752888679504, -0.5339318513870239, 0.9001688957214355, -0.8878641128540039, 0.898873507976532, -1.1091172695159912, 0.08663966506719589, -0.23970553278923035, -0.5907410383224487, -0.07383587956428528, 0.45539039373397827, -0.3320719301700592, 0.48707836866378784, -0.47461336851119995, -0.8518455028533936, -0.4573342800140381, 0.3231770098209381, 0.22037914395332336, -0.3394518494606018, 0.17118215560913086, 0.2435121238231659, -0.8641175031661987, 0.2630324065685272, 0.2433210164308548, 0.3097161054611206, 0.7298387289047241, 2.482536792755127, 1.9640569686889648, -0.09721018373966217, -0.5712043046951294, -0.15711840987205505, 1.1275897026062012, -1.2058095932006836, -0.6734203696250916, -1.2192888259887695, -0.13362330198287964, -0.10074568539857864], [-0.313429057598114, 2.0619475841522217, -1.6438801288604736, -0.7020805478096008, 0.9924013614654541, 1.0293117761611938, 0.11340221762657166, 0.3546886444091797, -0.2271609604358673, -0.11466214805841446, -0.6334972977638245, 0.763297438621521, 0.3988954424858093, 1.584886908531189, 0.08699864149093628, 0.2654877305030823, 0.7969266176223755, -0.7910923957824707, 0.8219971060752869, 0.7335984706878662, -0.35230553150177, -1.3302156925201416, 0.0004182383418083191, 0.2867591977119446, 0.7169680595397949, 0.444790780544281, -1.5703094005584717, -0.8762032985687256, -1.2290198802947998, -0.7468985319137573, 1.433976173400879, -0.46115735173225403, -0.17791274189949036, 0.6043232679367065, -1.8482317924499512, -0.7761828303337097, 1.2582943439483643, 0.42930012941360474, 0.5004251599311829, 0.7685543894767761, 1.7011988162994385, 0.7497360706329346, -0.2295914739370346, -0.9723923206329346, 0.38718748092651367, 0.7245731949806213, 0.07043836265802383, -1.7259758710861206, 0.46378690004348755, -0.5161730051040649, 0.8098098635673523, 0.19819030165672302, 0.7427690029144287, 0.3948494791984558, 1.4728577136993408, -0.7673783302307129, 0.44834890961647034, -0.10337170958518982, 0.24875542521476746, -0.03026377409696579, 1.0269131660461426, 0.3450585603713989, -0.6925882697105408, 0.45037877559661865, 0.535233736038208, 0.21474245190620422, 0.11643505096435547, 0.0039047934114933014, -0.2686237394809723, 0.9003859758377075, 0.5196466445922852, -0.5640873908996582, -0.9074615240097046, 0.7808573842048645, -0.8722415566444397, -0.138832688331604, 0.3203877806663513, 0.08610162138938904, -0.06579214334487915, 1.5993677377700806, -0.8129985332489014, -0.25443628430366516, -0.17607206106185913, -0.07231799513101578, -0.10203565657138824, 0.4801342189311981, -0.21038207411766052, -0.3068665862083435, 0.03907935321331024, 1.7154685258865356, -0.11524076014757156, 0.21132412552833557, -0.08006192743778229, -0.09982872754335403, -0.5134068727493286, -0.9717502593994141, -0.2589816153049469, -0.649154543876648, -0.12074640393257141, -0.2786743640899658, -0.8896294832229614, -0.2519279718399048, 0.3424031138420105, 0.025627030059695244, 0.46479958295822144, 1.0327892303466797, 0.22110626101493835, -1.3665632009506226, -0.16419097781181335, -0.05446717143058777, 0.34655773639678955, 0.6088908910751343, -0.48844435811042786, -1.194032907485962, -0.548704206943512, 0.49066677689552307, 0.4469781219959259, -0.62669837474823, 0.2677454352378845, 0.6644852161407471, -0.5115829706192017, -0.6216199994087219, -0.6285271644592285, 0.6167638301849365, 0.5449770092964172, -0.13651326298713684, -1.1514332294464111, 0.0768975019454956, -0.2604959309101105, 0.22023235261440277, 0.3112662434577942, -0.3775036633014679, -0.6165748834609985, 0.5476080775260925, -0.7418261766433716, 1.3446924686431885, 0.23811638355255127, -0.9660003781318665, 0.5518860220909119, 0.31736379861831665, 0.4212457537651062, -0.12483858317136765, 0.14749303460121155, -0.6679316163063049, 0.2324124276638031, -0.9571316242218018, -0.0377245657145977, 0.3453245162963867, -1.2288734912872314, -0.024945437908172607, -1.323582649230957, 0.7349157333374023, -0.2951088547706604, 0.6596570014953613, -0.12812209129333496, 0.819026529788971, 0.6318169832229614, 0.438997745513916, 0.2745579481124878, 0.5159322023391724, 0.8932040929794312, 0.2768362760543823, -0.25683310627937317, 1.140678882598877, 0.49394339323043823, -0.031914204359054565, 0.37551724910736084, 0.03571205586194992, 0.10548325628042221, 0.9378992319107056, -0.41864752769470215, -0.07030664384365082, -0.20154862105846405, 0.26990625262260437, 0.1599990725517273, -1.0587983131408691, 0.77916419506073, -0.5437319278717041, -0.7867087125778198, -1.5922391414642334, 0.8253648281097412, -0.3432321548461914, 0.3906155526638031, 0.10852963477373123, 0.4784988760948181, -0.30099350214004517, -0.19464005529880524, 0.5724337100982666, -0.9451744556427002, -0.16530196368694305, -0.5642826557159424, -0.10303410142660141, -1.5715852975845337, -0.20552676916122437, -0.5599180459976196, -1.4197790622711182, 0.20138408243656158, 0.12473499774932861, -0.06040329486131668, 0.2741701304912567, 0.19332993030548096, -0.4047200679779053, -1.760482907295227, -0.49252092838287354, -0.5999636054039001, 0.39486029744148254, -0.47342848777770996, 0.5891891717910767, -1.4011414051055908, 0.09116717427968979, 1.6035170555114746, 0.3847833275794983, -0.9511250257492065, 0.6409792900085449, -0.34605929255485535, -1.5094094276428223, 0.7690709829330444, -0.5540684461593628, -0.4460715651512146, 0.3307359218597412, 0.5760705471038818, 0.15736600756645203, 0.46381306648254395, 0.22829541563987732, 0.7016818523406982, -0.04065420851111412, -0.8800804615020752, -1.0352323055267334, -1.0799944400787354, 0.09919091314077377, -0.27634960412979126, -1.438000202178955, 1.1498323678970337, 0.40608343482017517, -0.6431445479393005, 0.23677854239940643, 0.12480642646551132, -0.07012535631656647, 0.5170238018035889, 0.7932855486869812, 0.25746676325798035, 1.1437950134277344, -0.6629123091697693, -0.19166463613510132, -0.5740748643875122, -0.1687241643667221, 1.3095943927764893, -0.626023530960083, -0.026038847863674164, 1.2902748584747314, 0.3651964068412781, 0.3009333312511444, -0.17548388242721558, 0.07513699680566788, 0.240351140499115, -1.256782054901123, -0.5642254948616028, -0.2806832194328308, -0.5092381238937378, 1.0210685729980469, 0.8965719938278198, -1.6012256145477295, -0.5922568440437317, 0.21759697794914246, 0.3667614459991455, -0.6276648044586182, -0.08067440986633301, -0.3939770460128784, 0.8276404142379761, 0.18408408761024475, 0.08394016325473785, 0.8795009851455688, 0.17704874277114868, 0.5374059677124023, -0.26822394132614136, -0.3752323389053345, -0.4862416386604309, 1.103912115097046, 0.3720426857471466, 0.554722785949707, -0.6675158739089966, -0.4693284034729004, -0.7615646123886108, 0.27690738439559937, 0.982189953327179, -0.2872737646102905, -0.3475540280342102, 0.19588671624660492, 0.8278522491455078, -0.5920459032058716, -0.5142406225204468, -0.23906171321868896, -0.629593014717102, -0.34937840700149536, 0.2334793508052826, 0.17053714394569397, 0.3527071475982666, -0.1208585575222969, -0.3519797623157501, 0.32907596230506897, 0.40535157918930054, 1.215832233428955, 0.5010305047035217, 0.3922194540500641, -0.47790706157684326, -0.15090370178222656, -0.8599817752838135, 0.060088325291872025, -1.286198616027832, -0.12196668982505798, -0.9920327663421631, -0.8770294785499573, 0.5442737936973572, -0.7283804416656494, 0.41984885931015015, 0.6978136301040649, -0.1812288910150528, 1.033979058265686, 0.9554604291915894, -0.17498090863227844, -0.727864146232605, -0.8761160969734192, -1.1621384620666504, -0.650137722492218, 0.8515282869338989, 0.9930927753448486, -0.4996825158596039, 0.10010506957769394, -0.2796390652656555, -0.1655256599187851, 0.9182089567184448, -0.09863147139549255, 0.1994606852531433, -0.7677664756774902, -1.0434308052062988, -0.04360578581690788, 1.1389018297195435, 0.6641258001327515, -0.010016925632953644, -1.1576411724090576, 1.060009479522705, 0.5800502300262451, -0.1491919457912445, -0.13002648949623108, 0.8023161888122559, 0.12705853581428528, 0.22595176100730896, 0.23465847969055176, 0.7932525873184204, 0.8907331228256226, -0.667507529258728, -0.009041259996592999, -0.02803116664290428, 0.07473795115947723, -0.17210644483566284, 0.35979437828063965, -0.14214590191841125, 1.0556683540344238, 0.4784977436065674, 0.09245369583368301, 1.26925528049469, -0.8048478364944458, -0.2486896812915802, -1.5957276821136475, 0.7431744337081909, 0.37947964668273926, 0.8539391756057739, 0.9540431499481201, 0.1686255931854248, 0.40413767099380493, -0.7264479398727417, -0.4094638228416443, 0.1654389202594757, 0.7075956463813782, 0.2126031219959259, -1.4456157684326172, -0.5363039970397949, -0.643963098526001, -0.4537569284439087, -0.7589924335479736, -0.9496037364006042, -0.29528725147247314, -0.9774665832519531, -0.5331805348396301, 1.452692985534668, 0.021962206810712814, -0.10679471492767334, -0.49233970046043396, 0.7112727165222168, 0.3870534598827362, -0.6338708400726318, 0.21578188240528107, 0.22694900631904602, 0.11151576042175293, 0.17192068696022034, -0.5983383655548096, -0.925180971622467, -0.15236854553222656, -0.636616051197052, 1.2833914756774902, -1.681765079498291, -0.011369969695806503, 0.23059381544589996, 0.7048095464706421, 0.09878204762935638, -0.11606910079717636, 0.7360090017318726, 0.28666892647743225, 0.28390389680862427, -0.1042487695813179, -0.4093056321144104, 1.0838768482208252, 0.2798556685447693, -0.7461439967155457, -0.4591221809387207, -0.6955571174621582, -0.028639689087867737, -0.22410047054290771, -0.13966482877731323, 0.32218021154403687, -0.5494301319122314, 0.036981597542762756, 0.276885449886322, 0.3017841875553131, 1.1082016229629517, -0.36466529965400696, -0.02397506684064865, 0.5566259622573853, -0.26704221963882446, -0.5673829913139343, 0.7032003402709961, -0.15692582726478577, -0.5600675940513611, 0.14738476276397705, 0.6927540302276611, 0.5755297541618347, -0.12945297360420227, 0.010762542486190796, 0.3836057782173157, 0.8744164705276489, 0.3225066363811493, -0.5221636891365051, 0.22656293213367462, 0.8307232856750488, 0.5911942720413208, 0.8845669627189636, 0.5770654678344727, 0.1548423022031784, -1.385199785232544, 1.6552064418792725, -0.5803042054176331, 0.37258821725845337, 0.7468138933181763, 0.5638844966888428, 1.673830270767212, -1.6736595630645752, -0.3442743122577667, 0.07007266581058502, -0.010070476680994034, -0.3221794068813324, 0.2587890028953552, 0.3765805959701538, -0.9039292931556702, 0.17760702967643738, 0.4440588355064392, 0.5003173351287842, 0.757596492767334, -0.6707533597946167, 0.5908069610595703, 0.2900041341781616, -0.5425963401794434, 0.4374939203262329, -0.6290026307106018, 0.08109559118747711, 0.41135692596435547, 0.1383519321680069, -0.2694642245769501, 0.23379699885845184, 0.07084396481513977, 1.2662594318389893, -1.0592410564422607, -1.1999900341033936, 0.7179624438285828, -1.0825324058532715, 0.13200466334819794, -0.3315347731113434, -0.37226402759552, -0.4557255506515503, -0.6043640971183777, -0.3180258870124817, 0.7279444932937622, -0.318456768989563, 0.1803857684135437, -0.21792754530906677, -1.4971894025802612, 0.028972625732421875, -0.702386200428009, 0.5991611480712891, 1.0107287168502808, 0.6901758909225464, -0.06252192705869675, -0.5286067724227905, -0.5590239763259888, 0.28051507472991943, 0.10791224241256714, -0.09424726665019989, -0.32124781608581543, -1.2204363346099854, -1.8089786767959595, 0.7505747675895691, 1.0609142780303955, 0.8297665119171143, 0.6565217971801758, 1.1294116973876953, 1.2263269424438477, -0.3080695867538452, -0.5219084024429321, 0.4225005507469177, -0.815601110458374, -0.25659894943237305, 1.3419207334518433, -0.9383042454719543, -0.27587631344795227, -0.5316579341888428, -1.8968992233276367, 1.8928730487823486, 0.9985679388046265, -1.017707347869873, 1.1214756965637207, 0.4344625771045685, 0.21104875206947327, 0.6676836013793945, -0.8332676887512207, -0.13689859211444855, 0.15263032913208008, -0.4668514132499695, -1.1421728134155273, 0.22615155577659607, 0.6578074097633362, 0.20906534790992737, -0.11747682839632034, 0.8108766078948975, 0.01476137526333332, -0.4817166030406952, 0.2721540629863739, 0.6252723336219788, 0.6970513463020325, 0.5473470687866211, 0.5834879279136658, -1.558304786682129, 0.08828972280025482, -0.03867319971323013, -0.4794504642486572, 0.3859242796897888, 1.1612831354141235, 1.1270573139190674, 0.23040947318077087, 0.1925143599510193, -0.596123218536377, -0.6733921766281128, -0.9953253865242004, -1.0852872133255005, 0.8580402135848999, 0.2684706151485443, -1.0192177295684814, 0.4013711214065552, -0.30459877848625183, -0.7177866697311401, -0.2347734272480011, 0.4343249201774597, 0.8731064796447754, -1.2779569625854492, -0.5347885489463806, -0.25301942229270935, -0.5146830081939697, -0.24772506952285767, -0.011965692043304443, 0.6133013963699341, -0.9263218641281128, -1.3949227333068848, -0.9753000140190125, -0.4398413300514221, 0.7980135679244995, -0.5835484266281128, -0.09717147797346115, -0.16252978146076202, -1.3633842468261719, 0.809964656829834, -0.12824417650699615, -1.509840726852417, -0.272632360458374, -1.402662754058838, 0.46869173645973206, -0.08736086636781693, -0.004432894289493561, -0.429198294878006, 0.5293612480163574, -0.4895390570163727, -0.837984025478363, -1.3759382963180542, -0.21279305219650269, 0.5316997766494751, 0.7300763130187988, -0.7520811557769775, 1.091896891593933, -0.22644370794296265, -0.8572598695755005, 0.49901217222213745, 0.6184987425804138, -0.1544286012649536, 0.515988290309906, 0.44951215386390686, 0.3957074284553528, 0.421561598777771, 1.181994915008545, 0.9294760823249817, 1.0369867086410522, -0.01204635575413704, 0.2596770226955414, 0.2803198993206024, -0.29691505432128906, -0.2909027338027954, 0.28360608220100403, -1.303228497505188, -0.2491745948791504, -0.10502570867538452, 0.084719717502594, 0.07200935482978821, 0.6491044163703918, 0.39169323444366455, -1.8903138637542725, 0.3533051311969757, 0.06215329468250275, 0.3949897885322571, -0.08219338953495026, 0.4281858503818512, 0.2872985303401947, -0.360710084438324, 0.5650988221168518, 0.13209684193134308, -0.028785325586795807, -0.734120786190033, -0.14375907182693481, -0.10576552152633667, 0.12909147143363953, 0.4279865026473999, 0.3777327537536621, 1.0961942672729492, -0.25302883982658386, -0.25495201349258423, 1.032170295715332, 0.6722867488861084, 0.14483121037483215, -0.5926603078842163, 0.7261401414871216, 0.24816225469112396, 0.23666182160377502, 0.05496593564748764, 1.0002574920654297, -0.7936339378356934, 1.0283845663070679, -0.8869547843933105, 0.1859009563922882, -0.5967741012573242, 0.32147759199142456, -0.48027798533439636, 0.52275550365448, 1.0633745193481445, -0.17060725390911102, -0.35685330629348755, 1.0198109149932861, 0.6433915495872498, -0.3657606840133667, 0.5080462694168091, 0.7264179587364197, 0.42934033274650574, 0.12234579026699066, 0.13789813220500946, 0.12601037323474884, -0.4687989354133606, -0.1792377233505249, 0.11532779037952423, -0.010756321251392365, -0.6382907629013062, -0.7840422987937927, -0.8382916450500488, 0.39448267221450806, -0.5982035398483276, -0.1088045984506607, 0.2698861360549927, -0.852375328540802, -1.2811181545257568, 0.25272825360298157, -0.20146988332271576, -0.06206858903169632, -0.17157232761383057, -0.0835321843624115, -0.10214215517044067, -0.01882162317633629, 0.7337626218795776, -0.33166491985321045, 1.386457920074463, 0.0630614161491394, 0.27447739243507385, -0.40492764115333557, 0.7005345821380615, 0.8054403066635132, 0.5998573899269104, 0.2542964220046997, -0.3479350209236145, 0.14223894476890564, -1.0068504810333252, -0.1930769681930542, 0.42818862199783325, -0.14006537199020386, -0.05525791272521019, 0.2681553065776825, -0.6593310236930847, 0.1619120091199875, 0.330857515335083, 0.8617736101150513, -0.7726308703422546, -0.7550184726715088, -0.7207086086273193, 0.2498907744884491, -0.17368373274803162, 0.5578446388244629, -0.4891221523284912, 0.46012014150619507, -0.20638057589530945, -0.31131020188331604, -0.35403597354888916, 0.0031201988458633423, 0.2566264569759369, -0.29603782296180725, 1.1444101333618164, -1.0284037590026855, -0.29101285338401794, -0.26152968406677246, -0.8239071369171143, 0.5018787980079651, 0.19862444698810577, 0.3197501301765442, -0.043917857110500336, -0.8575491905212402, -0.7316417694091797, -0.834903359413147, 0.3695659637451172, 0.22387152910232544, -0.0474943146109581, 0.707089900970459, -0.1421802043914795, -0.8797369003295898, 0.48538869619369507, -0.061235442757606506, 0.3399786353111267, 0.15645091235637665, 1.5426479578018188, 0.9384953379631042, -0.31807470321655273, 0.004670382011681795, -0.7740336656570435, 0.7205505967140198, -0.8719479441642761, -1.1713168621063232, -1.1163748502731323, -0.23914404213428497, 0.041632138192653656], [0.06302879005670547, 1.5810799598693848, -2.547773599624634, -0.7048175930976868, 1.1163562536239624, 1.0564939975738525, 0.359237402677536, 0.6258398294448853, 0.2540900707244873, 0.17656663060188293, -0.7268428802490234, 0.6663694381713867, 1.548815131187439, 1.446771264076233, 0.08166040480136871, -0.4435623288154602, 0.493017315864563, -0.5620646476745605, 0.4379574954509735, -0.10182593017816544, 0.04453739523887634, -1.0852458477020264, -0.3660244345664978, 0.3011578917503357, 0.5347166657447815, 0.22218865156173706, -2.5698673725128174, -0.2976894676685333, -0.7821974754333496, -0.7226089835166931, 1.0336635112762451, -0.32542234659194946, 0.12113162130117416, 0.29169073700904846, -1.7568509578704834, -0.17026479542255402, 0.38759705424308777, 0.5432901382446289, 0.9338351488113403, 0.5379208326339722, 0.6598924994468689, 0.7121576070785522, 0.011874510906636715, -0.42002686858177185, 0.671343207359314, 0.8334624767303467, 0.4102237820625305, -1.327160358428955, 0.637908399105072, -0.7478224039077759, 1.2157623767852783, 0.6801097393035889, 0.11242446303367615, 0.8085043430328369, 1.212679147720337, -0.8499155640602112, 0.3524325489997864, -0.09861806035041809, 0.90219646692276, -0.34040597081184387, 1.175361156463623, 0.2033247947692871, 0.00717303529381752, 0.5089775919914246, 0.6139856576919556, 0.2610776424407959, 0.3349723219871521, 0.4019765555858612, -0.44445890188217163, -0.04915976524353027, 0.1553785502910614, -0.10684004426002502, -0.3012000620365143, 1.2355329990386963, -0.07823862880468369, -0.06798171252012253, 0.16882450878620148, 0.13770760595798492, -0.21108105778694153, 1.0288540124893188, 0.2114519476890564, -0.452384889125824, 0.6511659622192383, -0.17966651916503906, 0.07061414420604706, -0.11766655743122101, -0.7467617988586426, -0.4395231008529663, -0.01800733059644699, 1.7864068746566772, -0.6531015634536743, 0.31341803073883057, 0.3449150621891022, 0.13852578401565552, -0.3043944835662842, -0.7490850687026978, -0.3434036672115326, -0.7015185356140137, -0.8124659061431885, -0.4123782515525818, -0.511814534664154, 0.12088200449943542, 0.137766033411026, -0.052626267075538635, 0.782138466835022, 1.1227877140045166, -0.007493080571293831, -0.9439713954925537, -0.2938861846923828, 0.18577364087104797, 0.43735557794570923, 1.0535351037979126, -0.7110739946365356, -1.1639280319213867, -1.0101908445358276, 0.4567599892616272, -0.18439872562885284, -0.41539978981018066, 1.001447319984436, 0.44626644253730774, -0.8815231323242188, -0.7965334057807922, -1.305553674697876, 0.2298884093761444, 0.731744647026062, 0.3048320412635803, -0.6812575459480286, 0.5075215101242065, -0.5973641872406006, 0.23320476710796356, 0.35839465260505676, -0.022753460332751274, -0.447261780500412, 1.0614013671875, -0.6171931624412537, 1.601369857788086, -0.5917543172836304, -1.3519929647445679, 0.03914322704076767, 0.6877294778823853, 0.36366403102874756, -0.5267021059989929, -0.003347824327647686, -0.9389835000038147, -0.5102895498275757, -0.666688859462738, 0.5117982029914856, -0.36421459913253784, -1.2653319835662842, -0.21233907341957092, -0.6419076919555664, 0.7780073285102844, -0.3880997598171234, 1.2622181177139282, -0.15935415029525757, 0.521913468837738, 0.2112390547990799, 0.5349973440170288, 0.4907747507095337, 0.49705982208251953, 1.0866038799285889, -0.4521218538284302, -0.08501331508159637, 0.7493242025375366, 0.3172975480556488, -0.009500803425908089, 0.5701684951782227, 0.23371635377407074, 0.14448343217372894, 0.9023072719573975, -0.21541020274162292, -0.09259013831615448, -0.2764430344104767, 0.08312316983938217, -0.31071823835372925, -1.3331583738327026, 0.4273020625114441, -1.4711540937423706, -0.21891522407531738, -1.373927354812622, 0.7129738926887512, -0.4075831472873688, 0.04644783213734627, -0.5566048622131348, 0.47404909133911133, -0.6159344911575317, -0.26750361919403076, 0.15685728192329407, -0.7657198905944824, -0.8328298926353455, -1.1320164203643799, -0.6624776721000671, -0.8711118698120117, -0.6002619862556458, -0.2638748288154602, -1.2439978122711182, 0.45646941661834717, -0.23098957538604736, -0.23338600993156433, 0.4419724643230438, -0.3170848786830902, 0.10367451608181, -1.3174070119857788, -0.3515053391456604, -0.7468811273574829, 0.4762895703315735, 0.3324304223060608, 0.46200039982795715, -1.7550363540649414, -0.11322969198226929, 0.8817402720451355, 0.4516890048980713, -0.8543530702590942, 0.02384381741285324, -0.2985606789588928, -0.10010071098804474, 0.5152983665466309, -0.6550663709640503, -0.09242168068885803, -0.09025523066520691, 0.8155725002288818, 0.5890768766403198, 0.851283073425293, -0.35663557052612305, 0.6960186958312988, 0.3584235608577728, -1.0616024732589722, -0.5794562697410583, -1.4147310256958008, 0.44218093156814575, -0.8267055749893188, -0.8331559300422668, 0.9681790471076965, 0.45244336128234863, -0.002029683440923691, 1.0700082778930664, -0.01129862666130066, 0.18290889263153076, 0.9866378307342529, 0.8504412174224854, -0.0633263885974884, 1.0839686393737793, -1.507347583770752, 0.02032112516462803, -0.5352520942687988, -0.16576631367206573, 0.11477211117744446, -0.4529673457145691, 0.15924113988876343, 0.9542561769485474, 0.19840466976165771, 0.10443119704723358, 0.19909332692623138, -0.1863202005624771, 0.40181609988212585, -0.40663430094718933, -0.09292787313461304, 0.011683665215969086, -0.3567757308483124, 1.6185023784637451, 0.71397864818573, -1.4393062591552734, 0.3064887523651123, 0.3876507878303528, 0.81828773021698, -0.25564032793045044, -0.03730739280581474, -0.9030172824859619, 0.14458486437797546, -0.23646026849746704, -0.02498778887093067, 0.8146805167198181, 0.3486816883087158, 0.4989777207374573, 0.005855991505086422, -0.17432114481925964, -0.5821582078933716, 0.4390276372432709, -0.20182457566261292, 5.08967787027359e-05, -0.6812414526939392, -0.364929735660553, -1.0808241367340088, 0.6427150964736938, 0.7550023794174194, -0.6706652045249939, 0.06209617853164673, 1.5277113914489746, 0.4745085537433624, -0.5126086473464966, -0.44247204065322876, -0.019787343218922615, -0.433377742767334, -0.14235499501228333, -0.08624359965324402, 0.399229496717453, 0.8182481527328491, -0.24276426434516907, -0.46536582708358765, -0.15008431673049927, 0.5458735823631287, 0.7473909854888916, 0.6367937922477722, 0.9870069026947021, 0.009176941588521004, -0.10744915902614594, -0.1212521344423294, -0.11576521396636963, -1.2359155416488647, -0.23148106038570404, -1.2721562385559082, -1.079455852508545, 0.27781835198402405, -0.787779688835144, 0.1382071077823639, 0.10504736751317978, 0.1500447392463684, 0.7859814167022705, 1.4073669910430908, 0.10267491638660431, -0.4552253782749176, -1.2905938625335693, -1.0811370611190796, -1.1536180973052979, 1.0686242580413818, 0.9212915897369385, -0.6895719170570374, 0.3287242650985718, -0.5794717073440552, -0.9361544847488403, 0.45934271812438965, -0.3181362748146057, -0.32613980770111084, -1.4182831048965454, -0.9066661596298218, -0.21719461679458618, 0.934666097164154, 0.6743501424789429, -0.7811659574508667, -1.0710091590881348, 0.4516238868236542, 0.8992621302604675, 0.7404224872589111, -0.15968023240566254, 0.9426803588867188, -0.10177198797464371, 0.43817758560180664, 0.23349271714687347, 0.5168454647064209, 0.7111779451370239, -0.6407278180122375, 0.27151361107826233, -0.33062663674354553, -0.13783128559589386, -0.4663196802139282, -0.09731393307447433, 0.005985185503959656, 0.9731634855270386, 0.6743013858795166, 0.14883364737033844, 1.2765352725982666, -0.7362081408500671, -0.2737559378147125, -2.302825689315796, 1.260906457901001, 0.07261191308498383, 0.8802507519721985, 0.8729168176651001, 0.582073450088501, 0.2745867669582367, -0.6623633503913879, -0.47850775718688965, 0.6945138573646545, 0.741890549659729, 0.21366557478904724, -0.7855345606803894, -0.9319814443588257, 0.020646363496780396, -0.1700098216533661, -0.8420947790145874, -0.868812620639801, 0.45164957642555237, -0.5634374618530273, -0.6084246635437012, 0.9150412082672119, 0.05136552453041077, -0.18058231472969055, -1.0001002550125122, 0.16193684935569763, 0.33647188544273376, -0.6063869595527649, 0.7439746856689453, -0.2903686761856079, -0.04342949390411377, 0.19433334469795227, -0.6158973574638367, -1.2854382991790771, -0.1260145902633667, -0.20723818242549896, 0.3519536852836609, -1.2257461547851562, 0.17559359967708588, 0.2823764383792877, 0.44871097803115845, -0.267255961894989, 0.21528327465057373, 0.26590585708618164, 0.5370950698852539, 0.3098846673965454, 0.3295948803424835, -0.28377893567085266, 0.5912872552871704, 0.3012089133262634, -0.7696020603179932, -0.20276561379432678, 0.1218704879283905, 0.8119768500328064, 0.4011841416358948, -0.6888513565063477, 0.04985317587852478, -0.5558261275291443, -0.32590436935424805, 0.14898191392421722, 0.3703421354293823, 1.4361815452575684, 0.23957666754722595, -0.3720105290412903, 1.098351001739502, -0.5741312503814697, -0.22132794559001923, 1.0011844635009766, -0.26249220967292786, -1.0037797689437866, -0.01880125142633915, 0.4430689811706543, 0.8527801036834717, 0.49495941400527954, 0.46674928069114685, 0.32665807008743286, 0.7444477081298828, 0.824386477470398, -0.5950815677642822, 0.05878797173500061, 0.5412498712539673, 0.5795071125030518, 0.6066585779190063, 0.8801976442337036, 0.513961672782898, -0.9405758380889893, 1.1879446506500244, -0.7920940518379211, 0.2986418306827545, 0.6477335691452026, 0.6910160779953003, 1.496293544769287, -1.2079907655715942, -0.5785872936248779, 0.5016639232635498, -0.0896160900592804, 0.44674474000930786, 0.12364131957292557, 0.9765061736106873, -1.1848845481872559, 0.8248332738876343, 0.5339822769165039, 0.42259782552719116, 0.44734612107276917, -1.0116448402404785, 0.21198566257953644, 0.3218647241592407, -0.40707170963287354, 0.4996899366378784, -0.8164947032928467, -0.31524860858917236, 0.5657600164413452, -0.057925812900066376, -0.4757556617259979, 0.0452752448618412, 0.43852150440216064, 1.26719069480896, -0.3748650550842285, -1.1620736122131348, 0.6261917352676392, -1.4362094402313232, 0.30854618549346924, -0.03550161421298981, -0.47997623682022095, 0.06103849783539772, -0.9599719643592834, -0.15668709576129913, 0.48557713627815247, -0.7225922346115112, 0.06791618466377258, -0.7132881283760071, -1.0740017890930176, -0.6473822593688965, -0.43452155590057373, 0.6628670692443848, 0.6700294017791748, 0.4565924406051636, -0.6052903532981873, -0.4218268394470215, -0.05550821125507355, 0.11221477389335632, 0.19724813103675842, 0.30921441316604614, -0.4821644425392151, -0.9392597079277039, -1.3050793409347534, 1.4835612773895264, 1.1056787967681885, 0.5723803043365479, 0.2073407769203186, 1.164896845817566, 1.1664413213729858, -0.18621881306171417, -0.6782375574111938, 0.4097698926925659, -0.8900096416473389, 0.6630274057388306, 1.0373890399932861, -0.48097193241119385, -0.23466208577156067, 0.4730511009693146, -2.150038242340088, 1.5363218784332275, 0.36047542095184326, -1.5600931644439697, 0.8584118485450745, 0.3286333680152893, 0.07651454210281372, 0.6989399194717407, -1.3990545272827148, -0.22559364140033722, 0.7989208102226257, -0.13031119108200073, -0.7544790506362915, -0.24902763962745667, 1.0545610189437866, 0.47329097986221313, -0.3836734890937805, 0.8572639226913452, 0.06032521650195122, -0.44362956285476685, 0.09016211330890656, 0.7822492718696594, 0.07689519226551056, 0.9479021430015564, 0.6574292778968811, -0.9287703037261963, 0.3383757472038269, -0.11984643340110779, 0.00816955417394638, 0.36872410774230957, 0.7726628184318542, 0.46212637424468994, -0.5851451754570007, -0.2814754843711853, -0.5562542080879211, -0.21849845349788666, -0.8080810308456421, -0.3259902000427246, 1.2343233823776245, -0.25878965854644775, -0.5133697986602783, 0.6265444159507751, 0.12159906327724457, -0.001678120344877243, 0.1755305826663971, 0.36761680245399475, 0.859397292137146, -1.5586872100830078, -0.35705268383026123, -0.30860912799835205, 0.1695401668548584, -0.2567705810070038, -0.22674429416656494, 0.35300230979919434, -0.7757667303085327, -1.575768232345581, 0.3900138735771179, -0.871370792388916, 0.9005365371704102, -0.2605944871902466, 0.20284751057624817, -0.06866919994354248, -1.5323426723480225, 0.6888552308082581, 0.7134236693382263, -1.414198398590088, -0.8554553389549255, -0.8932640552520752, 0.30759286880493164, -0.022845640778541565, -0.2533841133117676, -0.4321663975715637, 0.16599583625793457, -1.149169921875, -0.7132250070571899, -1.3229202032089233, -0.33837008476257324, 0.18456634879112244, 0.7518039345741272, -0.42671269178390503, 0.5144045352935791, 0.03980163484811783, -0.18178755044937134, -0.5414225459098816, 0.5828409194946289, -0.7394506931304932, 0.3123416304588318, 0.14987018704414368, -0.47461843490600586, 0.5079659223556519, 1.047713041305542, 0.3628331124782562, 0.6717711091041565, -0.7831061482429504, 0.19389724731445312, -0.025724487379193306, -0.8749932646751404, -0.658079981803894, 0.5324987769126892, -0.4762488305568695, -0.1679391711950302, -0.001140981912612915, 0.04486094415187836, -0.2407718300819397, 0.903549313545227, 1.0478583574295044, -1.4600634574890137, 0.26977550983428955, -0.18842488527297974, 0.25412309169769287, -0.2273596227169037, 0.18331721425056458, 0.0644114762544632, -0.16011172533035278, 0.2343219667673111, 0.18660569190979004, 0.8190714120864868, -1.0154050588607788, -0.1977081298828125, 0.13308711349964142, 0.3989543914794922, 0.06776848435401917, 0.4706440567970276, 1.435046672821045, -0.7339081764221191, -0.5891865491867065, 0.6806967258453369, 0.9517955183982849, 0.35734397172927856, -0.5516032576560974, 0.4183422327041626, 0.39191335439682007, 0.7442346811294556, 0.08360455185174942, 0.5610050559043884, -0.8649266958236694, 0.9572173357009888, -0.9010740518569946, -0.158109650015831, -0.42549073696136475, 0.34513047337532043, -0.28262391686439514, 0.4530034363269806, 0.3386796712875366, -0.12255583703517914, -0.37373995780944824, 1.143442988395691, 0.702704906463623, -0.1395391821861267, -0.07567087560892105, 0.6595091223716736, 0.05748186632990837, 0.8998024463653564, 0.43765997886657715, 0.008578373119235039, -0.3618090748786926, -0.2962607741355896, 0.10082866996526718, 0.2562970519065857, -0.47902777791023254, -0.584006667137146, -1.3431510925292969, -0.10814900696277618, -0.20824936032295227, -0.6578636765480042, 0.24034243822097778, -0.9247465133666992, -0.9264723062515259, 0.20105397701263428, -0.035469312220811844, -0.10253267735242844, -0.16308486461639404, 0.3557068705558777, 0.12091890722513199, 0.43501055240631104, 0.20880937576293945, -0.23237091302871704, 1.2104952335357666, 0.30589625239372253, -0.49221616983413696, -0.1954576075077057, 0.03615403175354004, 0.18167772889137268, 0.32086825370788574, -0.05804973095655441, 0.2700658142566681, 0.21186670660972595, 0.2061818242073059, -0.33163926005363464, 0.6391308307647705, 0.05055858939886093, -0.17421407997608185, -0.625733494758606, -0.8892472982406616, 0.008384395390748978, 0.5917995572090149, 0.8037667274475098, -0.5913910269737244, -0.9411656856536865, -0.5449045300483704, 0.16530466079711914, 0.23972660303115845, 1.2600641250610352, -0.507389485836029, 0.2727205455303192, -0.38543039560317993, 0.2858184576034546, -0.5173723697662354, 0.16512078046798706, 0.051310066133737564, -0.18426401913166046, 0.2824632525444031, -0.7839125394821167, -0.48861193656921387, -0.838156521320343, -0.9911485910415649, 0.20848296582698822, -0.16835139691829681, 0.3104920983314514, -0.4044339656829834, -0.4714093804359436, -1.0106195211410522, -0.6450720429420471, 0.7799140214920044, -0.1369640827178955, -0.3270638585090637, 0.523415207862854, 0.35640960931777954, -0.8498945236206055, 0.13459068536758423, -0.20387251675128937, 0.43150976300239563, 0.42010924220085144, 1.657048225402832, 1.712585210800171, -0.19532158970832825, -0.022076793015003204, -0.8095827102661133, 1.0051747560501099, -0.8830467462539673, -0.7059680223464966, -1.2671778202056885, 0.46216750144958496, 0.1171828880906105], [-0.2118513435125351, 2.0680460929870605, -1.7021390199661255, -0.8382608294487, 1.7435146570205688, 1.1994094848632812, 0.2521226704120636, 0.42655518651008606, -0.6388777494430542, -0.6179918646812439, -0.38494452834129333, 0.6501147150993347, 0.9615117311477661, 1.1151294708251953, 0.3737183213233948, -0.2577970027923584, 0.11831825226545334, -0.6464157104492188, 0.507420539855957, 0.653830885887146, 0.5543884038925171, 0.1300828605890274, 0.16402144730091095, -0.07373849302530289, 0.4553529620170593, 0.27478986978530884, -0.4463006854057312, 0.5030621290206909, -1.1013621091842651, -1.3111062049865723, 1.9028726816177368, -0.5848326683044434, 0.15575653314590454, -0.2054138332605362, -1.9375978708267212, -0.9725972414016724, 1.148333191871643, 0.8587434887886047, 0.08873487263917923, 0.11313517391681671, 0.8391277194023132, 0.41834965348243713, -0.491833359003067, -0.7242456078529358, 0.4339745342731476, -0.12599574029445648, 0.48483768105506897, -0.6169514656066895, -0.37609660625457764, -1.2795090675354004, 1.4540680646896362, -0.39848950505256653, 0.017224639654159546, 0.7792693972587585, 1.1691439151763916, 0.5087411403656006, 0.03748137876391411, -0.14332199096679688, 0.40861982107162476, -1.0670002698898315, 1.1454704999923706, 0.5336169600486755, -0.5213032364845276, 0.5490328669548035, 0.1757785677909851, -0.27297040820121765, 0.05559802055358887, -0.2610231339931488, 0.1515413075685501, -0.10455586761236191, 0.1335379183292389, 0.21918347477912903, -0.5235973596572876, 0.2410401850938797, -1.1857566833496094, -0.04378237947821617, 0.02465708926320076, 0.18097738921642303, -0.7090682983398438, 0.7395025491714478, -0.7373133301734924, -0.19861820340156555, 0.19552938640117645, -0.3580697476863861, 0.6552590131759644, 0.23690728843212128, -0.28386497497558594, -0.7545888423919678, 0.0498698391020298, 2.411123514175415, 0.1856141984462738, 0.14118735492229462, -0.07488250732421875, -0.6203669309616089, -0.10036133229732513, -1.0222365856170654, -0.5424028038978577, -0.7589797377586365, -0.3932601511478424, -1.0891433954238892, -1.4142584800720215, 0.08991611748933792, 0.7863413691520691, -0.22416910529136658, 0.8908411264419556, 0.8498305082321167, 0.15594351291656494, -0.3994460105895996, -0.5037019848823547, 0.19237658381462097, 0.06676863133907318, 0.7678884267807007, -0.9133869409561157, -0.8831757307052612, -0.8691731691360474, 0.15265962481498718, 0.5391619205474854, 0.031028110533952713, 0.209790900349617, 1.1524463891983032, -0.48593297600746155, -0.38457155227661133, -0.5538997650146484, 0.4381197690963745, 0.6234897971153259, 0.670525312423706, -1.0729109048843384, 0.06301335245370865, 0.3201353847980499, -0.3022184371948242, 0.37505120038986206, 0.09136155247688293, -0.3130898177623749, 0.9138597249984741, -1.0539159774780273, 1.2605764865875244, -0.3447383940219879, -0.9098793268203735, 0.7557529807090759, 0.002100839279592037, 0.361851304769516, -0.30182817578315735, -0.5354793667793274, -0.7150490283966064, 0.5322490334510803, -0.33742061257362366, 0.5214059948921204, 1.0599478483200073, -1.8352779150009155, 0.06703456491231918, -0.9402547478675842, 0.9163352847099304, 0.3702860474586487, 1.0228650569915771, 0.10839425772428513, 0.6464369893074036, 0.9780833125114441, 0.4805772006511688, -0.21465212106704712, 0.2184600830078125, 0.9288608431816101, 0.5214574933052063, -0.8744704723358154, 0.9159281253814697, -0.08262258768081665, 0.023761652410030365, 0.7915089726448059, -0.16169373691082, 0.2637697458267212, 1.080138087272644, -1.478305459022522, 0.542121946811676, -0.13539990782737732, 0.8156105875968933, 0.09951591491699219, 0.6216220259666443, 0.9162583947181702, -0.5214024186134338, -2.0240514278411865, -1.4543688297271729, 0.47235217690467834, -0.39188796281814575, 0.1393987238407135, 0.056534938514232635, 0.44711342453956604, -0.19746103882789612, -1.010924220085144, -0.15740840137004852, 0.00462582241743803, -0.8107880353927612, -1.3764876127243042, -0.073441281914711, -0.9642078876495361, -0.21495060622692108, 0.03291863203048706, -0.6539128422737122, 0.7686943411827087, -0.6828243732452393, 0.4433503746986389, -0.31047946214675903, -0.6741397380828857, 0.2227775603532791, -2.072627067565918, -0.33982986211776733, -0.6089632511138916, 0.4429812431335449, -0.5777727961540222, 0.4728151559829712, -0.9672764539718628, -0.1033489778637886, 1.1087828874588013, 0.22053535282611847, -0.25405746698379517, 0.3249707520008087, -0.3560807704925537, -1.0237631797790527, 0.455282598733902, -0.3100524842739105, -0.15915048122406006, -0.04677286744117737, 0.34199970960617065, 0.7053751945495605, 0.11106717586517334, 0.30263692140579224, 0.7233468890190125, -0.38472843170166016, -0.8393189311027527, -0.8202004432678223, -0.9068500399589539, 0.21619203686714172, -0.12829333543777466, -1.3398903608322144, 0.8468379974365234, 0.4037454426288605, -0.2908327579498291, 0.7015367746353149, 0.1757376790046692, 0.03953627496957779, 1.1111805438995361, 0.983697772026062, 0.3056308329105377, 0.2641311585903168, -0.7571821808815002, -0.189823180437088, -0.3368796408176422, 0.12449253350496292, 1.1170048713684082, -0.5956456065177917, -0.4935145080089569, 1.7958921194076538, 0.053581371903419495, 0.07361285388469696, 0.1000630110502243, 0.2718941271305084, 0.07459118962287903, -0.3210013806819916, 0.3509162366390228, -0.47599291801452637, -0.3909841775894165, 1.254096269607544, 1.1549979448318481, -1.3029768466949463, -0.22396141290664673, -0.6772394776344299, -0.11385709792375565, -0.2710513174533844, -0.28276970982551575, 0.0009007491171360016, -0.013326197862625122, -0.1025405302643776, -0.5913290977478027, 0.017865890637040138, 0.22833237051963806, 0.6804416179656982, -0.21450968086719513, 0.24207454919815063, 0.1328263282775879, 0.6174646615982056, 0.005595573224127293, 0.1406409740447998, -0.6028376817703247, -0.47729548811912537, -0.20602983236312866, -0.3148804008960724, 1.0564953088760376, -0.18185800313949585, -0.08418233692646027, 0.6365218162536621, 1.583996057510376, 0.01658051088452339, 0.6577000021934509, 0.0403132326900959, -0.5835514664649963, -0.3865295350551605, -0.9084506630897522, 1.1198828220367432, 0.2784745991230011, -0.19016331434249878, -0.10952751338481903, -0.4574323296546936, 0.3157188594341278, 1.495743989944458, 0.7081485986709595, 1.1783819198608398, -0.01365610584616661, 0.03933429718017578, -0.25764933228492737, -0.16075566411018372, 0.32796159386634827, -0.3398711681365967, -1.0571805238723755, -0.0005756495520472527, 0.21279123425483704, -1.1472893953323364, -0.032293204218149185, 1.154808759689331, -0.6154081225395203, 0.9988728165626526, 0.6350657939910889, 0.029812583699822426, -0.48998141288757324, -1.0428158044815063, -0.4930436313152313, -1.45804762840271, 0.9419925212860107, 0.9592119455337524, -0.14577245712280273, -0.5196511745452881, -0.6050693392753601, 0.6421005129814148, 1.4080348014831543, -0.6146328449249268, 0.10344082862138748, -1.3931516408920288, -0.6234742403030396, -0.02156488038599491, 0.6033833026885986, -0.060209859162569046, 0.07376366853713989, -0.8705475926399231, 0.7596730589866638, 0.14812996983528137, -0.15788909792900085, 0.7095578908920288, -0.004821435082703829, 0.13351412117481232, -0.2996644079685211, 0.31227630376815796, 0.13203708827495575, 0.5668236017227173, -0.5528604984283447, 0.6378733515739441, -0.08585318177938461, -0.09875916689634323, -0.5332220196723938, 0.8109267354011536, 0.6289668679237366, 0.29987046122550964, 0.4064777195453644, -0.34828102588653564, 1.0363154411315918, -0.0964924618601799, 0.15393365919589996, -1.296376347541809, 0.756646990776062, 0.44731685519218445, 0.9717525243759155, 0.48527392745018005, 0.39695021510124207, 0.8224329948425293, -0.08885574340820312, -0.6636476516723633, -0.10810679942369461, 0.6312446594238281, 0.5027072429656982, -0.9187825918197632, -0.02582421712577343, -0.3285145163536072, -0.7555926442146301, -0.4450538754463196, -0.14815597236156464, 0.49984094500541687, -0.30824539065361023, -0.06025420129299164, 1.063738226890564, -0.06024268642067909, -0.5582038164138794, -0.678149402141571, -0.30234774947166443, 0.5563556551933289, -0.696715235710144, -0.042526599019765854, -0.8816332221031189, -0.043718282133340836, 0.1275663673877716, -0.8301694393157959, -0.6259029507637024, -0.1932680606842041, -0.9987539052963257, 0.7908925414085388, -0.8615461587905884, -0.07499740272760391, 0.45856261253356934, 0.6593294143676758, 0.42391836643218994, -0.11339364945888519, 0.0756874606013298, 0.506513774394989, -0.046941496431827545, 0.5383931398391724, 0.10557632893323898, 0.3575678765773773, 0.08297205716371536, -1.020459771156311, 0.4412926435470581, -0.2790362238883972, 0.15451668202877045, -0.2450539916753769, -0.6353949904441833, 0.18457603454589844, -0.3731469511985779, -0.2274002581834793, 0.020657876506447792, -0.2790258228778839, 1.0289058685302734, 0.25710394978523254, -0.37806573510169983, 0.9426578283309937, 0.014754272997379303, -1.6365190744400024, 0.5101027488708496, -0.16200368106365204, -0.10854759067296982, 0.12261910736560822, 0.1755247265100479, 0.8300356864929199, -0.18222233653068542, 0.5574857592582703, 0.21124115586280823, 0.7469936609268188, 0.2974209487438202, -0.38333985209465027, 0.3413620591163635, 0.379973441362381, 1.1439043283462524, 1.4468477964401245, 0.9642112255096436, 0.3377752900123596, -2.030445098876953, 0.7561241388320923, -0.3747759163379669, 0.6063569188117981, 0.7626329660415649, 0.38126346468925476, 1.2975744009017944, -1.5657914876937866, -0.8076587319374084, 1.017298698425293, 0.16967636346817017, 0.2377808839082718, 0.4098368287086487, 0.19230437278747559, -0.8831733465194702, 0.330741286277771, 0.441497266292572, 0.012020062655210495, 0.533201277256012, -0.2953896224498749, -0.0640735924243927, 1.1433777809143066, -0.7081050276756287, 0.6157336235046387, -0.2403630167245865, -0.6100489497184753, 0.1433211863040924, -0.7846891283988953, -0.09634487330913544, 0.3552616536617279, 0.859009861946106, 0.4110354483127594, -0.07905611395835876, -1.900918960571289, -0.22807469964027405, -0.7267897725105286, 0.06951747089624405, 0.930809736251831, -0.5673187971115112, -0.04829297587275505, -1.4505754709243774, -0.30591490864753723, 0.8788877725601196, -0.5216205716133118, 0.11119414120912552, 0.002528965938836336, -1.0753110647201538, -0.2989974021911621, -0.46398186683654785, 1.314087986946106, 1.0249745845794678, 0.33806246519088745, 0.4565705955028534, -0.18083736300468445, -0.9857455492019653, 0.1849413812160492, -0.271621972322464, 0.2784469723701477, 0.4473741352558136, -1.4338737726211548, -1.4585771560668945, 0.9077575206756592, 1.0099979639053345, -0.1913556307554245, 0.9039101004600525, 1.5241469144821167, 1.1606405973434448, -0.8941335082054138, -0.025140225887298584, 0.15070845186710358, -1.1257266998291016, 0.030861351639032364, 0.772963285446167, -0.8031254410743713, 0.642645537853241, -0.6695237159729004, -2.2937355041503906, 1.4438997507095337, 0.27014124393463135, -0.974153995513916, 0.1129201352596283, 0.15306980907917023, 0.36282193660736084, 0.58220374584198, -0.8770818114280701, -0.5406322479248047, 0.6757853627204895, -0.8938706517219543, -0.20301435887813568, -0.09980785846710205, 0.1527918130159378, -0.01581684872508049, -0.23713332414627075, 1.073099136352539, 0.11133953183889389, -0.12298573553562164, 0.07782185822725296, 0.3382916748523712, -0.10985396802425385, 0.9907137751579285, 0.8274098038673401, -1.633716106414795, 0.6113394498825073, -1.260872721672058, -0.5920053124427795, -0.011104821227490902, 1.3551043272018433, 0.16015128791332245, -0.5156247019767761, -0.23629029095172882, -0.46840018033981323, -1.1085402965545654, -0.5109705924987793, -0.5202330946922302, 0.2933078706264496, 0.5999197959899902, -0.2286628782749176, 0.2936713993549347, -0.6763531565666199, -0.3081428110599518, -0.19486397504806519, 0.6199710965156555, 0.19007383286952972, -0.7361310720443726, -1.1233751773834229, 0.23290546238422394, -0.26785606145858765, -0.7873024940490723, -0.011984591372311115, -0.10662481933832169, -1.0260268449783325, -0.48138460516929626, -0.09623929113149643, -0.36837252974510193, 0.5831372737884521, -0.8568094372749329, 0.4292444884777069, 0.10267962515354156, -1.5856993198394775, 0.9888830184936523, -0.05363205075263977, -1.195689082145691, 0.2394731640815735, -1.6290847063064575, 1.0269758701324463, -0.7868434190750122, -0.12283109873533249, -0.2607502043247223, 0.5458997488021851, -1.3341565132141113, -0.36369627714157104, -1.0779422521591187, -0.3139880895614624, 1.2743011713027954, 0.7714138031005859, -0.8707507252693176, 0.8621019721031189, 0.5661536455154419, -1.2771563529968262, -0.6334899663925171, 0.5743827223777771, -0.8961127400398254, 0.12106692045927048, 0.3475818336009979, 0.056697431951761246, 0.3793252408504486, 1.8259557485580444, 0.29062211513519287, 0.9985817074775696, -0.8413333892822266, -0.041667986661195755, 0.0511515811085701, -0.6491605043411255, -0.9772047400474548, 0.7643071413040161, -0.8719163537025452, -0.7188349962234497, 0.5550318360328674, -0.7010434865951538, -0.4210020899772644, 0.5162485837936401, 1.4634146690368652, -0.6070285439491272, 0.6023414134979248, 0.03201695531606674, 0.21425677835941315, -0.22700750827789307, 0.2621961832046509, 0.020553164184093475, -0.9897480010986328, 0.891470730304718, 0.7672560811042786, 0.11221943795681, -1.019973874092102, 0.22347509860992432, -0.2856366038322449, 0.19229091703891754, -0.3249436020851135, 0.8302202224731445, 1.242989182472229, -0.43764209747314453, -0.21813319623470306, 1.1361607313156128, 1.2765989303588867, -0.08829426020383835, -0.5069109201431274, 0.14377570152282715, -0.17842598259449005, -0.2045985907316208, -0.4187905788421631, -0.31179532408714294, -0.5418733358383179, 0.902204155921936, -0.3472207486629486, 0.25541824102401733, -0.21543775498867035, 0.4934963881969452, -0.4837823510169983, 0.05230370908975601, 0.7076534032821655, 0.14516489207744598, -0.665457010269165, 1.2230058908462524, 0.2173212319612503, 0.35724931955337524, 0.049064166843891144, -0.13644148409366608, 0.3156781494617462, -0.0030908645130693913, 0.4301382601261139, 0.7211393713951111, -0.5160663723945618, 0.09519831836223602, 0.5238486528396606, -0.04002239555120468, -0.062348756939172745, -0.45267194509506226, -1.532791256904602, 0.0688047930598259, -0.44665536284446716, -0.6928303837776184, 0.2907729148864746, -0.5667514801025391, -0.1490708440542221, 0.6234884858131409, -0.056362416595220566, -0.1558508723974228, -0.71608966588974, -0.19769208133220673, 0.34621331095695496, 0.7820979356765747, 0.5362063050270081, -0.28320780396461487, 1.060811161994934, -0.28583207726478577, -0.16683192551136017, 0.04592718556523323, 0.4719812572002411, 0.23631076514720917, 0.25558722019195557, 0.26568934321403503, -0.7160906791687012, -0.3070113956928253, 0.23357616364955902, -0.7018648982048035, 0.9115132093429565, -0.18100255727767944, -0.6735654473304749, 0.02604605443775654, -0.8041542172431946, -0.018823644146323204, 0.16307662427425385, 1.014649510383606, -0.8760402798652649, -0.7031356692314148, -0.014403356239199638, -0.12876848876476288, -0.2644272744655609, 0.9650941491127014, -0.12906552851200104, 0.9058736562728882, 0.048786710947752, -0.31234028935432434, -0.8504494428634644, -0.2250707745552063, 0.6311531066894531, -0.5641337037086487, 0.8711364269256592, -1.1977711915969849, 0.07035910338163376, -0.6384630799293518, -0.7990877628326416, -0.1226026713848114, 0.47818464040756226, 0.38747042417526245, -0.0713181346654892, -0.5592688918113708, -1.0663096904754639, -0.8166464567184448, 0.7544554471969604, 0.6379730701446533, -0.03826790675520897, 0.6966906785964966, -0.09816507250070572, -0.8787383437156677, 0.3646233081817627, 0.11948954313993454, -0.32705259323120117, -0.39166197180747986, 1.435708999633789, 1.7449172735214233, -0.03479434922337532, 0.5416167378425598, -0.12864693999290466, 0.9550771117210388, -0.9666852355003357, -1.0738481283187866, -0.35538777709007263, -0.20835992693901062, -0.28016310930252075], [0.4308371841907501, 1.6836799383163452, -1.7029261589050293, -1.4550296068191528, 0.07711485773324966, -0.1753920018672943, 0.15371018648147583, 0.016554828733205795, -0.4272540509700775, -1.384169101715088, -1.1140164136886597, 0.5846845507621765, 1.4013333320617676, 1.3887771368026733, 0.4875941574573517, 0.7612454891204834, 0.38878145813941956, -0.5002551674842834, 0.5456055402755737, 0.5477280616760254, 0.41512197256088257, -0.5135968327522278, -0.7026165127754211, -0.20733945071697235, 0.06419132649898529, 0.8509064316749573, -1.5792912244796753, -0.14680801331996918, -1.4660460948944092, -1.2491534948349, 0.8292803764343262, -0.9031379818916321, 0.11910167336463928, -0.40744489431381226, -2.177187204360962, -1.0306379795074463, 1.0560041666030884, -0.002367335371673107, -0.8614645004272461, 1.3973013162612915, 1.1884357929229736, 0.9361500144004822, 0.10703600943088531, -1.3503988981246948, 0.8524095416069031, -0.4104095697402954, -0.25497326254844666, -1.0900540351867676, -0.539141833782196, -0.8478646278381348, 0.7375852465629578, 0.08729584515094757, -0.07074366509914398, 0.46237611770629883, 1.393903136253357, 0.2740899324417114, -0.7568125128746033, 0.7032831311225891, -0.2954361140727997, -0.9365924000740051, 1.2766975164413452, 1.0849756002426147, -0.7509099841117859, 0.43449708819389343, 0.2026059627532959, 0.22231914103031158, -0.3316742181777954, 0.4246371388435364, -0.8834546804428101, -0.046915389597415924, 0.45784085988998413, 0.3940376341342926, -0.18373197317123413, -0.9169543385505676, -1.6068474054336548, 0.7596437931060791, 0.6504707336425781, -0.03941316157579422, 0.06527981907129288, 1.530807375907898, -0.47189974784851074, -0.34420397877693176, 0.19355647265911102, -0.8316946625709534, 0.6700124740600586, 0.1383066326379776, -0.38737401366233826, -0.7859520316123962, -0.6797078251838684, 1.7054427862167358, -0.3306439220905304, 0.19669735431671143, 0.5338705778121948, -0.30202043056488037, -0.8463249206542969, -0.9072449207305908, 0.10598240792751312, -0.8802511692047119, -0.483185350894928, -0.449564129114151, -1.183949589729309, -0.3778197467327118, 0.6838338971138, 0.5028718709945679, 0.49917250871658325, 1.297661542892456, 0.4663740396499634, -1.2012962102890015, -0.9498969912528992, 0.6919785737991333, 0.5622458457946777, -0.3582419455051422, -1.0265485048294067, -1.0009256601333618, -0.29744431376457214, 0.6570718288421631, 1.109944462776184, -0.5152180194854736, 0.7931225299835205, 0.7590828537940979, -1.0193411111831665, -0.9505419135093689, -0.945109486579895, 0.5957397222518921, 1.3723324537277222, 0.17089340090751648, -0.8246891498565674, -0.22927334904670715, -0.12403787672519684, 0.012088673189282417, 0.33848077058792114, -0.12648551166057587, -0.9923191666603088, 1.085191011428833, 0.06744805723428726, 1.5791082382202148, -0.0700441524386406, -0.642646074295044, 0.6914844512939453, -0.5691895484924316, -0.07424362748861313, -0.36596283316612244, -0.5887494683265686, -1.2829688787460327, 0.957010805606842, 0.3987419903278351, -0.39469754695892334, 0.07948192954063416, -1.145697832107544, 0.24045926332473755, -1.3052494525909424, 0.6145579814910889, -0.30924296379089355, 1.167112112045288, -0.45793184638023376, 0.9242926239967346, 0.5136125683784485, -0.28833824396133423, -0.2897312343120575, 0.23127137124538422, 0.9350107908248901, 0.3948858678340912, -1.106961965560913, 1.3525360822677612, -0.0433368980884552, -0.3285854458808899, 1.1870110034942627, -0.11823248863220215, -0.23667064309120178, 0.5815685987472534, -0.9814608097076416, 0.07886555045843124, -0.057748712599277496, 0.5151267647743225, -0.028286410495638847, -0.18396028876304626, 0.9303454160690308, -1.1533868312835693, -0.14242549240589142, -0.8270567655563354, 0.43079912662506104, -0.8870343565940857, -0.2000037431716919, -0.04014723375439644, 0.2718038856983185, -0.0074844881892204285, 0.29074805974960327, -0.538046658039093, -0.3072234094142914, -0.4073692858219147, -0.7797423601150513, -0.1414867490530014, -0.8752419948577881, -0.021050387993454933, -0.6225675940513611, -1.533186674118042, 0.5389714241027832, -0.28592321276664734, 0.20168136060237885, -0.035676706582307816, -0.005956241860985756, -0.14126981794834137, -1.8151602745056152, 0.019012177363038063, -1.0185229778289795, 1.4058195352554321, -0.6935325264930725, 0.006405471358448267, -0.7474584579467773, 0.13801422715187073, 1.322813868522644, -0.09880692511796951, -0.28738918900489807, 0.719344973564148, 0.5701894164085388, -1.0283619165420532, -0.32258328795433044, 0.009799710474908352, 0.1185510903596878, 0.12159557640552521, 1.0909550189971924, 0.19098906219005585, 1.087350606918335, 0.5057781934738159, 0.42345187067985535, 0.010679719038307667, -1.3391425609588623, -0.1419886201620102, -1.4369639158248901, -0.3704040050506592, -1.190809726715088, -0.9951505661010742, 1.2580581903457642, 1.4825403690338135, -0.4395482838153839, 1.1080875396728516, -0.3169824182987213, 0.41410568356513977, 1.063132882118225, 0.7156272530555725, 0.5275242328643799, 0.18869563937187195, -0.4951200485229492, 0.43257981538772583, -0.42192065715789795, 0.13179390132427216, 0.6481651067733765, -0.38334324955940247, -1.382094144821167, 1.320170283317566, 0.3424740135669708, 0.09607049822807312, 0.8987010717391968, -0.3339579403400421, 0.4329577684402466, -0.8584548830986023, 0.18715499341487885, 0.4664277732372284, -0.7388087511062622, 0.8711040019989014, 1.0159777402877808, -1.7065430879592896, -0.6493551731109619, -0.5059154033660889, -0.24654661118984222, -0.672661304473877, -0.1254415512084961, -0.8821586966514587, 0.2828434407711029, 0.07078065723180771, 0.0013828454539179802, -0.17731714248657227, 0.11748622357845306, 0.8536440134048462, 0.2658179998397827, 0.28511345386505127, -0.3835747241973877, 0.8165494203567505, -0.01424291543662548, 0.13649222254753113, -0.22899229824543, -1.7977076768875122, -0.9694275259971619, -0.6754710078239441, 0.9705262184143066, -0.2852768301963806, -0.6991484761238098, 0.6041077375411987, 0.9867709279060364, -0.9441149234771729, 0.1242731437087059, -0.11374593526124954, -0.45107898116111755, -0.30591028928756714, 0.3462921977043152, 0.5134798288345337, 0.28978797793388367, -0.7685520052909851, -0.4741049110889435, -0.5203646421432495, 0.030405772849917412, 1.2300926446914673, 0.9806859493255615, 0.997249186038971, 0.048352476209402084, 0.19377991557121277, -0.23493778705596924, 0.4639773666858673, -0.08094748109579086, 0.08475783467292786, -0.4821903109550476, -0.556564450263977, 0.3371346890926361, -0.19545148313045502, 0.3552296757698059, 1.4171258211135864, -0.10343506932258606, 1.191275715827942, 0.3714528977870941, -0.4812827706336975, -1.1998836994171143, -0.7788407802581787, 0.5169846415519714, -0.8715108633041382, 0.6303921341896057, 0.8221417665481567, -0.7679275870323181, 0.5979924201965332, 0.19845464825630188, -0.15686652064323425, 0.6117455363273621, -0.4785097539424896, 0.22008247673511505, -0.9706960916519165, -0.34555232524871826, -0.12151410430669785, 1.292196273803711, 0.1829320192337036, 0.1141606792807579, -0.23179736733436584, 0.22489170730113983, -0.2605440020561218, 0.26062121987342834, -0.6724403500556946, 0.7019523978233337, 0.07658270746469498, -0.8202282786369324, -0.4074684977531433, 0.7059182524681091, 1.180344581604004, -0.39142942428588867, -0.09728335589170456, -1.0908329486846924, -0.11154085397720337, -0.5788688063621521, 0.6550114750862122, 0.05758211389183998, 1.3912864923477173, 0.06820003688335419, 0.4148702025413513, 0.6351811289787292, -0.03248482570052147, 0.2518194317817688, -1.1550976037979126, 0.819339394569397, 0.22997361421585083, 1.3182181119918823, 0.6981020569801331, -0.23109275102615356, 0.6368584632873535, -0.1876527965068817, -0.3312353789806366, 0.2996170222759247, 0.43120166659355164, 0.051454298198223114, -0.7841431498527527, -0.6090661287307739, 0.8866199851036072, -0.08344593644142151, -0.20779600739479065, -0.08296291530132294, 0.4938559830188751, -0.39378806948661804, -0.2867398262023926, 0.9362639784812927, -0.11589542776346207, -0.0020751121919602156, 0.01996839977800846, 0.21487437188625336, 0.08298778533935547, -0.1870649755001068, 0.2931920289993286, -0.6302239298820496, -0.012397090904414654, 0.30606192350387573, -0.37742388248443604, -1.3673657178878784, 0.1618967056274414, -0.3174312710762024, 0.7755091786384583, -1.1747362613677979, -0.3442560136318207, -0.43804386258125305, -0.12577080726623535, 0.16995972394943237, 0.3697040379047394, 0.21818387508392334, 0.36749714612960815, 0.09980323165655136, -0.16565750539302826, 0.7231826186180115, 0.8874637484550476, -0.08227386325597763, -0.3435918986797333, -0.5209584832191467, -0.22888188064098358, 0.3786729574203491, -0.4789263606071472, -0.5342680215835571, -0.020331259816884995, -0.8073490858078003, 0.4586835503578186, 0.012632342055439949, -0.02863331511616707, 0.6781108975410461, -0.11847052723169327, 0.0840829461812973, 0.940114438533783, -0.26444530487060547, -1.4389857053756714, 0.42958441376686096, 0.5037882924079895, 0.012628371827304363, -0.3182956576347351, 0.5830867886543274, 0.22429174184799194, 0.8413786888122559, 1.0021345615386963, -0.39641985297203064, 1.2231130599975586, 0.2883210778236389, -0.9434978365898132, -0.481580525636673, 0.991483211517334, 0.8006548285484314, 1.1001371145248413, 1.1178789138793945, -0.536333441734314, -1.5122342109680176, 1.6539169549942017, -0.13900992274284363, 0.9304450750350952, 0.6367666125297546, 0.7156631350517273, 1.7799147367477417, -1.1954245567321777, -0.21814927458763123, 0.22098925709724426, -0.3600168228149414, 0.1350068300962448, 0.5777897238731384, 0.23340541124343872, -1.3552987575531006, -0.48971959948539734, 0.45904576778411865, -0.0029485486447811127, 0.7637300491333008, -1.2449783086776733, 0.10566152632236481, 0.24553176760673523, -0.2767745554447174, 0.6337520480155945, -0.8415507078170776, -0.11056460440158844, 1.3159362077713013, -0.07295021414756775, 0.18006207048892975, 0.42538949847221375, 0.17374153435230255, 1.8066648244857788, -0.6050220131874084, -1.5208159685134888, 0.3210163414478302, -1.0006818771362305, 0.5464810132980347, 0.19199298322200775, -0.42824503779411316, -0.37717264890670776, -1.192615270614624, 0.03325160965323448, -0.18581777811050415, -0.288591206073761, 0.4843428134918213, 0.5339744091033936, -1.048954963684082, -0.03677964210510254, 0.6237807869911194, 1.078224539756775, 0.41938918828964233, 0.23363015055656433, 0.5996397733688354, -0.055539537221193314, -0.040366820991039276, 0.3901781439781189, -0.11929157376289368, -0.7402417659759521, 0.7372498512268066, -1.2701295614242554, -0.942891538143158, 0.5572445392608643, 1.5083003044128418, 1.0213768482208252, -0.061344701796770096, 0.8048405051231384, 1.5876805782318115, -1.4272531270980835, -0.8760015964508057, 0.5659126043319702, -0.6162512898445129, 0.3282698392868042, 0.13283957540988922, -1.066554307937622, -0.9207713603973389, -0.121955007314682, -1.7099584341049194, 1.4814586639404297, -0.29662010073661804, -0.7526230812072754, 0.434190958738327, 0.9267160892486572, -0.16215772926807404, 0.8917007446289062, -0.8585970401763916, 0.5035281777381897, 0.7017648816108704, -0.7251337170600891, -1.2020299434661865, 0.5383118987083435, 0.43094655871391296, 0.7459874749183655, -0.5513635873794556, 0.34868738055229187, -0.18216101825237274, -0.34267017245292664, 0.6095904111862183, 0.005140395835042, 0.9844710230827332, 0.733824610710144, 1.0328267812728882, -1.6399180889129639, -0.34847962856292725, -0.7111164927482605, 0.44666728377342224, 0.34760892391204834, 1.3001946210861206, -0.20441417396068573, -0.7290084958076477, -0.22805574536323547, 0.06435124576091766, -0.4207548499107361, -0.01931746117770672, -1.362830400466919, 1.44234299659729, 0.5880577564239502, -0.44373318552970886, 0.48167064785957336, -0.29488638043403625, -0.3367762863636017, -0.2221505045890808, 0.12171301245689392, 0.7907523512840271, -1.4198676347732544, -0.30774444341659546, 0.2716304659843445, -0.010533622466027737, 0.42921486496925354, 0.6944156885147095, -0.6272174119949341, -0.7947943806648254, -1.592139720916748, 0.034483201801776886, 0.11078286916017532, 0.7217298746109009, -0.8442464470863342, 0.11136968433856964, -0.10537730157375336, -1.5720866918563843, 0.3292246162891388, -0.36277344822883606, -0.9107255339622498, -1.2120810747146606, -0.7860556244850159, 1.1673136949539185, 0.727847695350647, -0.07747098058462143, 0.5902160406112671, 0.9166382551193237, -0.31925877928733826, -0.16527895629405975, -1.1665229797363281, 0.5714554190635681, 0.4296330213546753, 1.310014247894287, -0.9417871832847595, 0.6034398078918457, 0.3055967092514038, -0.38150396943092346, -0.2540576159954071, 0.13021095097064972, -0.8962231278419495, 0.08981268107891083, 0.5248162150382996, 0.3504140079021454, 0.19407665729522705, 1.5214953422546387, 0.21050803363323212, 1.2515785694122314, 0.010545316152274609, 0.5772616267204285, -0.22192582488059998, -0.1523582488298416, -0.7346625924110413, -0.01261525135487318, -1.4984033107757568, -0.6688219904899597, 0.09376318007707596, -0.7445990443229675, -0.4575440287590027, 0.7921919226646423, 0.8884986639022827, -1.1290093660354614, -0.23253373801708221, 0.17803853750228882, 0.702751636505127, -0.8292527198791504, 0.7950356006622314, -0.29896020889282227, -0.44597238302230835, -0.2274317592382431, -0.2755216658115387, 0.2139577716588974, -0.5621225833892822, 0.4778626561164856, 0.15825212001800537, 0.466913640499115, -0.6069642305374146, 0.5273387432098389, 0.5426173806190491, -0.3425009846687317, -0.4203151762485504, 1.2788382768630981, 1.5609360933303833, -0.05813021957874298, 0.29359519481658936, 0.40881773829460144, -0.23237916827201843, 0.19451770186424255, -0.2300175577402115, -0.3257075548171997, -0.1495753675699234, 0.6921480894088745, -0.4378877878189087, 0.18590489029884338, -1.2639596462249756, 0.2985565960407257, 0.03477706015110016, -0.16069185733795166, 0.9015993475914001, 0.5725378394126892, -0.43781766295433044, 0.10391706973314285, 0.14275971055030823, -0.8377677798271179, 0.11088981479406357, 0.7483056783676147, 0.7588244080543518, 0.3038696348667145, 0.2869682312011719, 0.35917994379997253, -0.3545948266983032, 0.521411120891571, 0.42674314975738525, -0.7461549639701843, -0.2343626767396927, -0.9168721437454224, -1.4368784427642822, -0.9874815344810486, -0.09941872209310532, -1.1455923318862915, 0.2108195722103119, -1.284537434577942, -0.9001359939575195, -0.14609238505363464, -0.28163209557533264, 0.42741045355796814, -0.5195810794830322, 0.1860281229019165, 0.07739952206611633, 0.6959598660469055, 1.9614657163619995, 0.1971464455127716, 0.894421398639679, 0.81280916929245, 0.20123650133609772, 0.11331118643283844, -0.0023718448355793953, -0.486312597990036, 0.2908453941345215, -0.11541222780942917, -0.6236847043037415, -0.6470170617103577, -0.9822112321853638, -0.6651933193206787, 0.4184924066066742, 0.10072437673807144, 0.8205451369285583, 0.0018635555170476437, -0.9225295186042786, -0.7059430480003357, 0.9393539428710938, 0.45050716400146484, -0.7744744420051575, -0.1722014844417572, -0.35951346158981323, -0.02402466908097267, -0.08706893026828766, 1.4583444595336914, -0.6254830360412598, 0.6533477306365967, 0.5883951187133789, 0.06006404757499695, -0.7580312490463257, -0.13931111991405487, 0.7167037725448608, -0.3188699185848236, 0.6767424941062927, -0.8802337646484375, -0.45643749833106995, -0.0716346725821495, -0.5911647081375122, 0.3937900960445404, 0.2846716046333313, -0.7828740477561951, -0.11550115793943405, -0.40572693943977356, -0.8417315483093262, -0.8298861384391785, 0.3473077118396759, 0.3146885931491852, -0.29024070501327515, 0.432374507188797, -0.12425991892814636, -0.5394886136054993, 0.4512074589729309, 0.7279386520385742, 0.342875599861145, 0.20223268866539001, 1.87618088722229, 1.950203776359558, 0.016833683475852013, -0.684032678604126, -0.8274582028388977, 1.025221824645996, -0.48110973834991455, -0.6524160504341125, -0.590337336063385, 0.18992562592029572, 0.8425493240356445], [0.18658006191253662, 1.3414350748062134, -1.9397261142730713, -0.5952227711677551, 0.2995772659778595, -0.08945487439632416, 0.6466031670570374, 0.3141251504421234, -0.45091524720191956, -0.45327046513557434, -0.47506794333457947, 0.059153977781534195, -0.06047692149877548, 0.7837308645248413, -0.1133902296423912, 0.19701538980007172, 0.4890182614326477, 0.6887013912200928, 0.4408614933490753, 1.7044486999511719, 0.9346920847892761, -1.5740324258804321, 0.6164708733558655, -0.27796128392219543, -0.050880882889032364, 0.8688360452651978, -1.042934536933899, -0.044819582253694534, -1.3575687408447266, -0.7963465452194214, 1.7687864303588867, 0.18799039721488953, -0.3108948767185211, -0.34123918414115906, -0.6847721934318542, -1.0069812536239624, 0.70826256275177, 0.305292010307312, 0.8133211731910706, 0.33535125851631165, 1.5306607484817505, -0.12329352647066116, -0.28708428144454956, -1.2243907451629639, 1.218659520149231, 0.0865032970905304, 0.2684909701347351, -1.2739427089691162, 0.11096735298633575, -0.9895827174186707, 1.0315991640090942, -0.3296564817428589, 0.41782429814338684, 1.2418630123138428, 1.3421539068222046, -0.7390201687812805, -0.27710482478141785, 0.009341014549136162, -0.27700942754745483, -0.8794262409210205, 1.1395137310028076, 0.40573087334632874, -0.04642604663968086, 1.0698156356811523, 0.7218225598335266, -0.7314786314964294, 1.3169342279434204, -0.06615307927131653, -0.04813079163432121, 0.08072829991579056, 0.4615371525287628, 0.1287519931793213, -1.0910829305648804, -0.1988162249326706, -0.33323079347610474, 0.4273451268672943, -0.11819043010473251, 0.7411797642707825, 0.10602501779794693, 0.7779281735420227, -0.2766971290111542, -0.13906380534172058, 0.09077051281929016, -0.5578331351280212, 0.28527480363845825, 0.27248460054397583, 0.0821763426065445, -0.8155592679977417, -0.12013035267591476, 1.5593931674957275, -0.44920170307159424, -0.10751713812351227, 0.0389091782271862, -0.8152275085449219, -1.200087547302246, -0.5395050048828125, 0.1810791939496994, -0.1798126995563507, -0.4849715828895569, -0.37966933846473694, -0.555152416229248, -1.4856667518615723, 0.3086157739162445, -0.7224195599555969, 0.9280920028686523, 1.6547609567642212, -0.34875255823135376, -0.4667828679084778, -0.916486382484436, 0.4665583670139313, 0.16905079782009125, -0.2849680781364441, -0.47866228222846985, -0.7270398139953613, -0.1819787323474884, 0.5856851935386658, 0.8078840970993042, -0.3552056849002838, 0.05305926874279976, 0.2728063464164734, -0.470647931098938, -0.16523019969463348, -0.982801616191864, 0.03315609693527222, 1.4830893278121948, 0.4465465247631073, -0.6852500438690186, -0.18116140365600586, 0.009413214400410652, -0.08060847222805023, 0.2544805109500885, 0.6814787983894348, -1.2512233257293701, 0.435829758644104, -0.6768349409103394, 1.5204898118972778, -0.5436753034591675, -1.011053442955017, -0.2732592225074768, -0.4900342524051666, 0.7062625885009766, -0.9812374711036682, -0.8001322746276855, -0.3637246787548065, 0.15883545577526093, -0.1712888479232788, 0.2504282295703888, 0.02451423555612564, -1.3903062343597412, 0.408114492893219, -1.4714192152023315, 0.39302149415016174, -0.35964927077293396, 1.0329360961914062, 0.04883740097284317, -0.0732128769159317, 0.44790762662887573, 0.3370630443096161, -0.033829912543296814, 0.049486491829156876, 0.5904768109321594, 0.07420722395181656, -0.8072124719619751, 0.9628410339355469, 0.2866280674934387, -0.7662004232406616, 0.2564980089664459, 0.3905380070209503, -0.527585506439209, 0.5012124180793762, -0.8391340374946594, -0.4727311134338379, -0.31912466883659363, 1.2769713401794434, -0.16936199367046356, -0.7749125957489014, 0.6803054213523865, -0.2544557452201843, -1.159151315689087, -1.922108769416809, -0.011716814711689949, 0.18483395874500275, 0.2896670401096344, -0.047290537506341934, 0.12292251735925674, 0.3001876175403595, 0.07216356694698334, -0.3013368844985962, -1.1674723625183105, -0.2662256956100464, -0.7029610276222229, -0.531805157661438, -1.0558103322982788, 0.5042219758033752, -0.3779129683971405, -1.0682207345962524, 0.47634395956993103, -0.6417328119277954, 0.1411413848400116, -0.022252390161156654, 0.4745086431503296, -0.026858918368816376, -2.05607533454895, 0.8441489338874817, -0.890444815158844, -0.011428692378103733, -1.7412694692611694, 0.6077801585197449, -1.1534690856933594, 0.15142636001110077, 0.6829003691673279, 0.024424007162451744, -1.0073720216751099, 0.5345465540885925, -0.1238446980714798, -1.74880051612854, 0.3331044614315033, 0.16500195860862732, -0.03916904702782631, 0.4354948401451111, -0.21174107491970062, 0.2727084755897522, 1.1782724857330322, 0.4832189679145813, 0.8984192609786987, 0.13066573441028595, -0.8398861885070801, -0.14071066677570343, -0.43597540259361267, 0.023973356932401657, -0.5701569318771362, -0.7316796779632568, 0.49073806405067444, -0.11019952595233917, -1.3081114292144775, 0.7702704668045044, 0.1558431088924408, -0.20888766646385193, 0.49188461899757385, 1.4731996059417725, 0.49093160033226013, 0.25202274322509766, -0.2996562421321869, -0.4542037546634674, 0.0279395654797554, -0.030728761106729507, 0.7098554968833923, 0.2054973691701889, 0.4317263960838318, 1.375691294670105, 0.7021304965019226, -0.26599517464637756, 0.21568803489208221, -0.24133507907390594, 0.5118847489356995, -0.90953129529953, 0.3840799331665039, -0.2692091166973114, -0.7014678120613098, 1.1233991384506226, 1.0140790939331055, -1.085806965827942, -0.581396758556366, -0.5981941819190979, 0.706307053565979, -0.20755071938037872, 0.347501277923584, -0.6041038036346436, 0.18776161968708038, 0.038418810814619064, 0.11448762565851212, 0.1681278645992279, 0.011147785000503063, 1.2333859205245972, -0.18796338140964508, -0.5170783400535583, -0.10047558695077896, 0.8701555132865906, 0.23426023125648499, 0.7717241048812866, -0.45107266306877136, -1.776215672492981, -0.6101356148719788, 0.08755094558000565, 0.6202551126480103, -0.41712403297424316, -0.3406447470188141, 0.46121838688850403, 0.8428266048431396, -0.1223827451467514, 0.6047399640083313, 1.0092828273773193, 0.07104382663965225, -0.9898298978805542, -0.39906904101371765, 1.1962412595748901, 0.34159037470817566, -1.521539330482483, -0.9887728691101074, -0.25814083218574524, 0.5823174715042114, 1.3126881122589111, 0.8677555918693542, 1.1133712530136108, -0.3322662115097046, -0.21255919337272644, -1.096521019935608, 0.20963455736637115, -1.0510811805725098, -0.1257307380437851, 0.3555248975753784, -0.6222400665283203, -0.018208052963018417, -0.2547791302204132, -0.15926924347877502, 1.7928414344787598, 0.22411617636680603, 0.8231106996536255, 0.640640914440155, -0.37418314814567566, -1.1499671936035156, -0.6025257110595703, 0.2274988889694214, -1.4926620721817017, 1.1483173370361328, 1.014478325843811, -0.6708093881607056, -0.04444707930088043, 0.24059636890888214, 0.7094975113868713, -0.04196738824248314, -0.45287075638771057, 0.3685019314289093, -1.5923837423324585, -0.3673672080039978, -0.6260769367218018, 0.9500349164009094, -0.5220842361450195, 0.002659913618117571, 0.33378279209136963, -0.03591014817357063, 0.7839934825897217, -0.30982521176338196, 0.26074761152267456, 0.002674608025699854, -0.05744677409529686, -0.024778295308351517, -0.37837037444114685, 0.702400267124176, 0.5072702169418335, 0.15944406390190125, -0.28972989320755005, -0.053939592093229294, -0.12550535798072815, -0.9929609894752502, 0.4280388355255127, -0.7494422197341919, 0.664343535900116, 0.5332285165786743, 0.27383023500442505, 0.923542857170105, -0.24770604074001312, 0.22697529196739197, -1.3403244018554688, 0.6308287978172302, 1.345035195350647, 1.4848060607910156, 0.65627521276474, 0.3803020417690277, 0.030703919008374214, 0.041873637586832047, 0.5229811072349548, 0.1949625313282013, 1.053063154220581, 0.16957364976406097, -0.12231467664241791, -0.3723917007446289, -0.521711528301239, 0.07531049102544785, 0.11795830726623535, 0.25781816244125366, 0.0199421513825655, -0.5022449493408203, -0.4573257863521576, 1.0906291007995605, 0.05785341188311577, -0.253343403339386, -0.6059979796409607, -0.1920488476753235, 0.7727189064025879, -0.12360785156488419, -0.5881432890892029, -0.6189277172088623, -0.3999535143375397, 0.40792468190193176, -0.6994731426239014, -0.5571340322494507, 0.1990608423948288, 0.25287267565727234, 0.4886932373046875, -1.004310965538025, 0.24629701673984528, -0.8131957650184631, 0.7640272378921509, 1.0691022872924805, -0.4407561719417572, 0.2967965602874756, -0.4713210463523865, -0.8060567378997803, -0.01428372785449028, 0.07482628524303436, 0.7918003797531128, 0.5128079652786255, -0.4090668559074402, -0.18037696182727814, 0.20419923961162567, 0.6124564409255981, -0.260663777589798, -0.2667924165725708, 0.18084578216075897, -1.093537449836731, 0.23695306479930878, 0.05137086659669876, 0.08325754106044769, 1.232166051864624, 0.13489875197410583, -0.7466655373573303, 0.2962287664413452, 0.31764066219329834, -0.8509632349014282, -0.3450639545917511, 0.10017380118370056, -0.29930487275123596, 0.2163669914007187, 0.19295212626457214, 0.44652441143989563, 0.20290198922157288, 0.13542434573173523, -0.4444327652454376, 1.024471402168274, 0.788716733455658, -0.527629017829895, 0.4156338572502136, 0.9192416667938232, 0.583976149559021, 1.4373905658721924, 1.0226080417633057, -0.3327910602092743, -1.3014997243881226, 0.6839008927345276, -0.7283781170845032, 0.3939243257045746, 0.8552050590515137, -0.08836060762405396, 0.9194610714912415, -1.2366188764572144, -0.5230827927589417, 0.4868423640727997, -0.03474068641662598, 0.5539448857307434, 0.021971572190523148, -0.30637064576148987, -0.4244205355644226, 0.24833282828330994, -0.0626705214381218, -0.05906740576028824, 0.898581862449646, -0.032159239053726196, 0.13573399186134338, 0.9548192620277405, -0.7704439759254456, 0.5383163094520569, -0.6677955985069275, 0.2187524288892746, 0.4264862537384033, -0.7834135890007019, -0.2361842691898346, 0.11477252095937729, 1.0414379835128784, 2.1250927448272705, -0.3151054084300995, -1.160783290863037, 0.14952625334262848, -0.6954222321510315, -0.06509704887866974, -0.27600011229515076, -0.5061296820640564, -0.26796409487724304, -1.0125610828399658, -0.22753308713436127, 0.9156633615493774, -0.07506304234266281, 0.09021048992872238, -0.12487316876649857, -0.6134023070335388, 0.031394291669130325, 0.06814876943826675, 0.5002973079681396, 1.0466991662979126, 0.3584654629230499, 0.051302216947078705, 0.4155457317829132, -1.1251940727233887, -0.09961596876382828, 0.4324776828289032, -0.1609058827161789, -0.5091567039489746, -0.9758585095405579, -0.374372661113739, 1.0320560932159424, 1.3583488464355469, 0.11408685892820358, 0.47237932682037354, 1.4709357023239136, 1.1608617305755615, -0.6897462606430054, -0.6339424252510071, 0.020920606330037117, -0.5430793762207031, -0.13818569481372833, 0.4747670590877533, -0.8172630071640015, -0.11639793962240219, -0.8139735460281372, -2.6581499576568604, 1.4184951782226562, -0.05150965228676796, -0.6483380794525146, 1.236991286277771, 0.4014693796634674, 0.6404839158058167, 0.5035044550895691, -0.7220516204833984, -0.19849807024002075, 0.08883439749479294, -0.3370918035507202, -2.0828120708465576, 0.9865601658821106, 0.2702280580997467, 0.5718598961830139, -0.6842322945594788, 0.07039720565080643, 0.11750520765781403, -0.0343293733894825, -0.25760042667388916, 0.12022623419761658, 0.9205209612846375, 0.8894037008285522, 0.5685404539108276, -0.8379980325698853, 0.28654977679252625, -0.6265783309936523, -0.34399667382240295, 0.3208009600639343, 1.058525800704956, 0.510776698589325, -0.6376982927322388, 0.5088658928871155, -0.23536553978919983, -0.37474262714385986, -0.14688336849212646, -0.4740223288536072, 0.881463348865509, 0.43982750177383423, 0.21654736995697021, -0.3806629478931427, -0.41270023584365845, -0.10159872472286224, -0.5635930895805359, 1.2719565629959106, 0.8725757598876953, -0.2793242633342743, -0.21661819517612457, -0.23291489481925964, -0.150605708360672, -0.1238001212477684, 0.4290599822998047, -0.36848658323287964, -0.9045418500900269, -1.3021265268325806, -1.3857495784759521, 0.37302669882774353, 0.684040904045105, -0.27599433064460754, 0.5667849779129028, -0.5016219615936279, -0.9871606230735779, 0.6574989557266235, 0.44189587235450745, -1.5149224996566772, 0.24103617668151855, -0.9150717854499817, 0.6746245622634888, 0.11105833202600479, 0.1266324669122696, 0.7256026864051819, 0.4761161208152771, -0.4090437591075897, -0.41486892104148865, -1.2380884885787964, -0.7108777165412903, 1.0247184038162231, 0.8490680456161499, -0.8204110860824585, 0.7850639224052429, 0.06254225224256516, -1.171921730041504, -0.03584439307451248, -0.13119295239448547, -1.259529948234558, 0.37336426973342896, 0.2491132915019989, 0.46657663583755493, 0.37132763862609863, 1.9162867069244385, 0.2876347005367279, 1.1856263875961304, 0.03175467252731323, 0.7344880700111389, -0.31631988286972046, -0.5620675086975098, -0.9928520917892456, 0.07312770187854767, -1.1504571437835693, -1.3712037801742554, 0.11196662485599518, -0.13748718798160553, -0.5618768930435181, 0.4895508587360382, 0.7260922193527222, -0.8677197694778442, 0.4201660454273224, -0.042847890406847, -0.2468634843826294, -0.2293035238981247, 0.42543429136276245, 0.37196990847587585, -1.265551209449768, -0.14851219952106476, 0.15196886658668518, 0.7248430848121643, -1.4673550128936768, 0.11731545627117157, -0.20367562770843506, 0.570455014705658, -0.14693975448608398, 1.5906027555465698, 0.3940281867980957, 0.29914531111717224, -1.1449395418167114, 1.4159208536148071, 1.0599778890609741, 0.2915128767490387, 0.0781097561120987, 0.6051008105278015, 0.09567910432815552, 0.1624421775341034, -0.6779283881187439, -0.12230090796947479, -0.6024128198623657, 1.169764518737793, -0.1297231763601303, 0.4399402439594269, -0.12422904372215271, 0.34351328015327454, 0.648155152797699, 0.8210722208023071, 0.7726631760597229, 0.27018365263938904, -0.30411481857299805, 0.9935779571533203, 1.1881455183029175, 0.16537798941135406, 0.2850557565689087, 0.6115576028823853, 0.8954724669456482, -0.04863908514380455, 0.09188369661569595, 0.6483443379402161, -0.39035314321517944, -0.002379300072789192, -0.5674814581871033, -0.4668566882610321, 0.11667600274085999, -0.6389297842979431, -1.1335679292678833, 0.14702150225639343, -0.47060737013816833, -0.22553850710391998, 0.4691348075866699, -0.8202202320098877, -0.4058593511581421, -0.398978590965271, -0.28808125853538513, -0.5091797709465027, -0.6159922480583191, -0.1794780045747757, -0.400132417678833, -0.3865525722503662, 0.4894605875015259, -0.18263736367225647, 1.1769514083862305, -0.037413664162158966, 0.7612632513046265, -0.3361840546131134, -0.09019515663385391, 0.24205173552036285, -0.08053241670131683, 0.07288452237844467, -0.03621751442551613, -0.256204754114151, -0.7418292164802551, -0.5940840244293213, -0.5936360955238342, -0.38652515411376953, -0.07947035133838654, 0.29196101427078247, -0.550682008266449, -0.30421069264411926, 0.1602398008108139, -0.2997812032699585, -0.4202853739261627, -0.6356207728385925, -0.6354523301124573, 0.1353440135717392, -0.16411198675632477, 1.3269926309585571, -0.436585932970047, 0.6528211236000061, -0.13881628215312958, -0.8085285425186157, -0.186985045671463, -0.4200226068496704, 0.8982475399971008, 0.25839701294898987, 0.4446863532066345, -1.325147271156311, -0.3187725245952606, -0.9660773277282715, -1.2247554063796997, 0.4864930808544159, -0.37551426887512207, -0.4660226106643677, 0.485897958278656, -0.052626702934503555, -0.17890729010105133, -0.2100355178117752, 0.061710890382528305, 0.4993590712547302, 0.307501882314682, 0.45769181847572327, 0.03699963167309761, -0.45844051241874695, -0.14695335924625397, 0.5142462849617004, 0.04333013296127319, 0.6216949820518494, 0.8911066651344299, 1.4722751379013062, -0.07786431908607483, -0.2179419845342636, -0.6368158459663391, 0.6267260909080505, -1.2822409868240356, -1.1350512504577637, -0.906112790107727, 0.7249944806098938, -0.1136600449681282], [-0.4717334806919098, 1.494751214981079, -2.014904737472534, -0.6560827493667603, -0.2837630808353424, 0.237799271941185, 1.5793626308441162, 0.9908571839332581, 0.28942739963531494, -0.22619439661502838, -0.576263427734375, 0.008643534034490585, 0.5459743142127991, 0.1638086438179016, 0.3358042240142822, 0.3138015568256378, 0.3331826627254486, 0.6425565481185913, 0.7163578271865845, 1.4132530689239502, -0.657767117023468, -0.9391552805900574, -0.08050907403230667, 0.3547593355178833, -0.09391437470912933, 0.09329046308994293, -1.4836293458938599, 0.24135875701904297, -1.5543464422225952, -0.6882980465888977, 0.6609484553337097, -0.9745678901672363, -0.24316710233688354, 0.19350911676883698, -0.874223530292511, -0.22037507593631744, 1.3572310209274292, 0.9275795817375183, 1.7655539512634277, 0.2662540376186371, 1.9459997415542603, 0.1356869786977768, 0.488177090883255, -1.7069437503814697, 0.17554281651973724, 0.41160038113594055, 0.38501429557800293, -1.7660566568374634, -0.020128732547163963, -0.09745823591947556, 0.2533927261829376, 0.2683960795402527, 1.437412142753601, 1.2185966968536377, 0.10363887250423431, -1.2401487827301025, 0.31719252467155457, -0.3049447238445282, 0.3780604302883148, -0.40789663791656494, 0.5860500335693359, 0.30678096413612366, 0.6474767923355103, 1.3047471046447754, 0.289694219827652, -0.40469738841056824, 0.5753230452537537, 0.038961902260780334, 0.1533934772014618, -0.5416051149368286, 0.3702959716320038, 0.10848259180784225, -0.7401353716850281, -0.06863237917423248, -0.8927410840988159, 0.9470384120941162, 0.6933156251907349, 0.11312028020620346, -0.24869240820407867, 0.7231000065803528, -0.17348185181617737, -0.18151968717575073, 0.16726136207580566, -0.1845238208770752, 0.9781448841094971, -0.42277804017066956, -0.017311491072177887, -0.36971554160118103, -0.20037004351615906, 1.690253734588623, -0.49110856652259827, -0.00575273297727108, -0.08103083074092865, 0.11518063396215439, 0.5537250638008118, -0.6633257269859314, 0.15312287211418152, -0.3472908139228821, -0.9536711573600769, -0.5402686595916748, -0.5273207426071167, -1.2490646839141846, 0.508408784866333, 0.5256789326667786, 0.5951522588729858, 1.3430066108703613, -0.06852149218320847, -0.7672553658485413, -0.6887258887290955, 0.0690024122595787, -0.20498338341712952, -0.24946793913841248, -0.4958122968673706, -0.8007246851921082, -0.7149034738540649, 0.6504629254341125, 0.6532343029975891, 0.17077308893203735, 0.9213958978652954, 0.595999002456665, -0.39803487062454224, 0.03168836981058121, -0.05866589397192001, 0.31626397371292114, 0.030707133933901787, 0.6164147853851318, -0.5165035724639893, -0.6035827398300171, 0.9886350035667419, 0.4416472315788269, 0.18816101551055908, 0.2012813687324524, 0.5338612794876099, 1.185674786567688, -0.6474911570549011, 0.5847557783126831, -0.16957475244998932, -1.3853610754013062, -0.7113135457038879, -0.10256500542163849, 0.35732904076576233, -1.0046225786209106, -0.7762348651885986, -0.7808113098144531, -0.6263417601585388, -0.7945027351379395, 0.7057173252105713, -0.36597636342048645, -0.7738997340202332, 0.16228602826595306, -1.0301789045333862, 0.5137991309165955, 0.11034505814313889, 0.8819599747657776, 0.2167268544435501, -0.5699408650398254, 0.7959025502204895, 0.5683829188346863, 0.4318799078464508, 1.0787625312805176, 0.7752346992492676, -0.030142908915877342, -0.35808590054512024, 0.8121680021286011, 0.25580447912216187, -0.6852015256881714, 0.4125833511352539, 0.5252788066864014, 0.30338987708091736, 0.4658754765987396, -0.2764700949192047, -0.6436399221420288, -0.757757842540741, 0.6034067273139954, 0.25004708766937256, -1.5968722105026245, 0.7564922571182251, -0.11768608540296555, -1.2416179180145264, -1.2451220750808716, 0.8476875424385071, -0.4760811924934387, 0.004570478573441505, -0.36311718821525574, 0.7978391051292419, -0.3888467848300934, 0.184170663356781, -0.1780363917350769, -0.2993010878562927, -0.6875173449516296, -0.9564682841300964, -0.10843975096940994, -1.3262605667114258, 0.3510770797729492, -0.6287286281585693, -0.5433638691902161, 0.13844892382621765, -1.0986367464065552, -0.6875629425048828, 0.16483251750469208, 0.49291694164276123, 0.25738418102264404, -0.6248217821121216, 0.13868339359760284, -0.8706421256065369, 0.5762528777122498, -1.4461811780929565, 0.8097420334815979, -0.8647443652153015, 0.40252232551574707, 0.2596675157546997, 0.42584434151649475, -0.9694730043411255, 1.0422080755233765, -0.3963879942893982, -1.4782932996749878, 0.0968526303768158, 0.2345195859670639, 0.34859466552734375, -0.334081768989563, 0.2437009960412979, 0.6785886287689209, 1.0946261882781982, -0.04184380918741226, 0.7586489319801331, -0.05582515150308609, -0.7127079963684082, -0.49588248133659363, -0.8133752346038818, 0.34651824831962585, -0.7898478507995605, -1.0652483701705933, 0.5118694305419922, 0.7206283211708069, -1.1012225151062012, 0.7180890440940857, -0.008266240358352661, -0.15622282028198242, 0.21118101477622986, 0.6861699223518372, 0.2576688528060913, 0.25932207703590393, -0.1499321013689041, -1.5288670063018799, -0.3368492126464844, 1.0143730640411377, 1.253570556640625, 0.014061042107641697, 1.307040810585022, 1.2523080110549927, 1.2666866779327393, 0.48048874735832214, 0.6802973747253418, -0.0601959303021431, -0.08411083370447159, -0.7768002152442932, -0.672637403011322, 0.2310105413198471, -0.6528103351593018, 2.119075059890747, 1.3806328773498535, -1.1897046566009521, -0.38636720180511475, -0.03323518484830856, 0.5535380244255066, -0.42035964131355286, -0.24573759734630585, -0.3190317451953888, 0.18689219653606415, 0.23381923139095306, -0.20707130432128906, 0.13641774654388428, -0.2539883553981781, 0.8806848526000977, -0.05721360072493553, -0.18617106974124908, -0.009791354648768902, 0.9328206777572632, -0.46592843532562256, 0.8184855580329895, 0.4548620283603668, -1.7431615591049194, -0.43925726413726807, 0.0666455626487732, 0.2547524869441986, 0.025878317654132843, -0.2215302735567093, 0.8231866955757141, 0.22289331257343292, -0.3417416214942932, 0.3322916328907013, 1.061875820159912, -0.1489613652229309, 0.027092574164271355, -0.6027483940124512, 0.16106517612934113, 0.658380925655365, -1.1455211639404297, -1.2888894081115723, 0.15850929915905, 0.5225169658660889, 0.7243512272834778, 1.0148956775665283, 1.488175392150879, -0.38028183579444885, -0.20647574961185455, -0.3877856731414795, -0.39510104060173035, -1.0379881858825684, -0.668225884437561, -0.4662814140319824, -0.5187691450119019, -0.4480718672275543, -0.8105573654174805, 0.2974891662597656, 0.5949573516845703, -0.4450152814388275, 0.1933843195438385, 0.9772468209266663, -0.296743780374527, 0.32953545451164246, 0.3212432563304901, 0.09443012624979019, -0.7615946531295776, 0.6149694919586182, 0.49464115500450134, -1.5911182165145874, -0.762221097946167, 0.09602712094783783, 0.2028665840625763, 0.9367414712905884, -0.13595883548259735, 0.2800561487674713, -0.8593577146530151, -0.6463200449943542, -0.09529337286949158, 1.0109061002731323, 0.3350784480571747, -0.5547800064086914, -0.8418734073638916, 0.2861432731151581, 0.6427471041679382, -0.4774990677833557, -0.5835753679275513, 0.6660581231117249, -0.23190440237522125, -0.5588260293006897, -0.3156254291534424, -0.1809701919555664, 0.5086803436279297, -0.34707748889923096, -0.6730048656463623, 0.6087757349014282, -0.2920837104320526, -0.5902199149131775, 0.36044275760650635, -0.7206763625144958, 0.9895440936088562, 0.3875446915626526, 0.7273313999176025, 1.4576605558395386, -0.6047863364219666, -0.265342652797699, -2.058091640472412, 1.1149014234542847, 0.256020724773407, 1.8840124607086182, -0.2465052306652069, 0.7085289359092712, 0.24801626801490784, -0.4704342782497406, 0.337586909532547, 0.31107795238494873, 0.6054670810699463, 0.14455987513065338, -0.5266692638397217, -0.34613996744155884, -0.4160558879375458, -0.043568480759859085, -0.16814886033535004, -0.1789846569299698, 0.18226678669452667, -0.925613522529602, -0.4295479953289032, 0.73468416929245, 0.713759183883667, -0.9705933928489685, -0.24105221033096313, 0.12028542906045914, 0.5961230397224426, 0.07757122814655304, 0.17606787383556366, 0.05528586730360985, -0.12935884296894073, -0.2731580138206482, -1.359907627105713, 0.02884148620069027, -0.30714255571365356, 0.3376867175102234, 0.6691297888755798, -0.6958238482475281, 0.3978995978832245, -1.2131558656692505, 0.6224914789199829, 0.7721750736236572, 0.07484353333711624, -0.07864093035459518, 0.4273582994937897, 0.43906641006469727, -0.19101345539093018, -0.42872339487075806, 1.2469632625579834, 0.4113438129425049, -0.5627730488777161, 0.5162107348442078, 0.2871275246143341, 0.5608896017074585, -0.2205650359392166, 0.36949723958969116, 0.49290376901626587, -0.9272289276123047, -0.44143134355545044, -0.0336967371404171, -0.03057902306318283, 2.137907028198242, 0.5605559945106506, -0.23839592933654785, 0.6137575507164001, -0.3835456073284149, -0.5799733996391296, 0.08666622638702393, 0.02643703855574131, -0.022227931767702103, -1.1123758554458618, 0.8010873198509216, 0.7917710542678833, -0.35914647579193115, 0.3317432403564453, 0.4057854115962982, 0.2596195638179779, 0.4749979078769684, -0.059045277535915375, 0.6461895704269409, 0.7176177501678467, 1.1765471696853638, 0.7509412169456482, 0.4754598140716553, -0.5780777335166931, -0.17167551815509796, 0.9737423658370972, -0.6968333721160889, -0.15704350173473358, 0.5318461656570435, 0.398382306098938, 1.1144376993179321, -1.507400631904602, -0.619725227355957, 0.8136298656463623, 0.20099692046642303, 1.0338046550750732, 0.6888803839683533, 0.30488404631614685, -0.7228400111198425, 0.15931583940982819, 0.4504915773868561, -0.14146538078784943, 0.6507322192192078, -0.17238561809062958, -0.5279340147972107, 0.034215204417705536, -0.6360440850257874, 0.14764505624771118, -0.52052241563797, -0.8851705193519592, -0.084888756275177, -0.8873282670974731, 0.4297798275947571, -0.06663132458925247, 0.8888663053512573, 0.6977683305740356, -0.26465266942977905, -1.1134145259857178, 0.8163787126541138, -0.7946397066116333, 0.05347544699907303, -0.40615034103393555, -0.9309555888175964, -0.38650941848754883, -1.0265995264053345, -0.5370809435844421, -0.21689866483211517, -0.9168910384178162, -0.18099445104599, -0.10329671204090118, -1.005608320236206, 0.11075930297374725, 0.17404460906982422, 1.058239459991455, 1.0973137617111206, -0.09280211478471756, 0.5168004035949707, 0.2612638771533966, -1.3015317916870117, -0.26960110664367676, 0.9652521014213562, -0.06856812536716461, -0.04722030460834503, -1.2086169719696045, -0.3409922122955322, 1.6795517206192017, 0.5668959617614746, -0.5518860220909119, 0.667565643787384, 0.9101828336715698, 1.341933250427246, 0.04349682107567787, -1.3521254062652588, 0.33946648240089417, -0.4987805485725403, 0.5202829241752625, 1.2074631452560425, -0.8235154151916504, -0.5101417303085327, -0.6534295082092285, -1.7671111822128296, 1.8412175178527832, 0.024426419287919998, -0.2859017550945282, 1.5081655979156494, 0.7360712289810181, -0.019899794831871986, 0.22367510199546814, -0.32290127873420715, -0.012862720526754856, 0.0993909016251564, -0.08422430604696274, -1.3137390613555908, 0.787492036819458, 0.22894901037216187, 0.1326856166124344, 0.07179515063762665, 0.3454180955886841, -0.5722072124481201, 0.03516564145684242, -0.13008412718772888, 0.7199198603630066, -0.1838056892156601, 0.5871171951293945, -0.1664813756942749, -0.11301916837692261, -0.057014770805835724, -0.9004505276679993, -0.10034315288066864, 0.20347246527671814, 0.7487587928771973, 0.26820746064186096, -1.3617806434631348, 0.4145008325576782, -0.2371015101671219, 0.15074960887432098, -0.15435856580734253, -0.4904462993144989, 1.3657904863357544, 0.5187064409255981, -0.002762464340776205, 0.8372296690940857, -0.08618704229593277, -0.5525912046432495, -0.9102253913879395, -0.8574255108833313, 0.11594285070896149, -1.257206678390503, -0.23785077035427094, -0.6720466613769531, -0.151620551943779, 0.12296037375926971, -0.12440416216850281, 0.3465688228607178, -1.2004081010818481, -1.474125862121582, -0.929905354976654, -0.3091334402561188, 0.622299313545227, -1.0827107429504395, 0.0799134224653244, 0.15740685164928436, -1.4907066822052002, 0.3215096890926361, -0.11378572136163712, -1.3408974409103394, 0.0516321174800396, -1.296484351158142, 0.5689824223518372, -0.4914478659629822, 0.6699724793434143, -0.8272597789764404, 0.9458341598510742, -1.1669617891311646, -0.589337170124054, -1.409196138381958, -0.3921929597854614, 1.369903564453125, 0.8168184161186218, -0.656173825263977, 1.6888315677642822, -0.1999274343252182, -0.9220129251480103, -0.342722088098526, 0.778080940246582, -0.9342686533927917, -0.22844645380973816, 0.6783584952354431, 0.1284746676683426, 0.560276448726654, 1.4716917276382446, 0.9008489847183228, 0.6484072804450989, 0.31618988513946533, 0.156946063041687, -0.9696621298789978, -1.0702857971191406, -0.15480051934719086, 0.4874213635921478, -0.8760653734207153, -0.8754779696464539, 0.13094688951969147, -0.5028085112571716, -0.7000902891159058, 1.2562999725341797, 0.7959840893745422, -1.3069615364074707, -0.1197030320763588, -0.3740457594394684, 0.42817556858062744, -0.5010359287261963, 0.12926903367042542, 0.5353444218635559, -0.14438791573047638, 0.3563334345817566, -0.27021509408950806, -0.15749311447143555, -1.3505229949951172, 0.13381944596767426, -0.22315597534179688, 0.4273971915245056, -0.5297841429710388, 0.6186901330947876, 0.47619888186454773, -0.48183152079582214, -0.7940835952758789, 1.3248134851455688, 0.9010537266731262, -0.21943876147270203, 0.2489526867866516, -0.49669259786605835, -0.20205415785312653, 0.9196298122406006, -0.6966472268104553, 0.1731194257736206, -1.0276414155960083, 0.5495443344116211, 0.16288445889949799, -0.22074571251869202, -0.07542788237333298, 0.10626818239688873, -0.2430228441953659, 0.22502398490905762, 0.7478340268135071, 0.2602914571762085, -0.34692370891571045, 1.3123196363449097, 1.1830438375473022, -0.2378399819135666, 0.4758477509021759, -0.1919320821762085, 0.6305060386657715, -0.27548059821128845, 0.8070699572563171, 0.5009307861328125, -0.49068063497543335, 0.42381399869918823, 0.025937698781490326, -0.19787105917930603, -0.1260605901479721, -0.2735650837421417, -1.4519836902618408, -0.16998820006847382, -0.9512189626693726, -0.15560634434223175, 0.8265284299850464, -0.6049816608428955, -0.47811657190322876, 0.520225465297699, 0.00230729510076344, -0.03542850911617279, -0.7481583952903748, -0.9654398560523987, -0.4643627107143402, 0.22613967955112457, 1.0554988384246826, -0.528876006603241, 1.1411582231521606, -0.039527103304862976, -0.1603909283876419, -0.9611430168151855, -0.4680699110031128, -0.11137773841619492, 0.500052809715271, -0.2706039547920227, 0.5336790680885315, 0.8871360421180725, -0.9456084370613098, -0.8594485521316528, -0.14795731008052826, 0.026214202865958214, 0.5642409324645996, -0.11461139470338821, -0.5120394825935364, -0.2089480757713318, 1.031104564666748, -0.007640873081982136, 0.27764058113098145, -0.3652510643005371, -0.9926546812057495, 0.3453960418701172, 0.12896199524402618, 0.7370986342430115, -0.46152934432029724, 0.2819344103336334, 0.24208129942417145, -0.5281739830970764, 0.11347261071205139, -0.6530219316482544, 0.40727946162223816, -0.10373957455158234, 0.15170663595199585, -0.28535327315330505, -0.06534738838672638, -0.30706387758255005, -1.0615357160568237, 0.13562911748886108, -0.4700104892253876, -0.05578545108437538, -0.11582701653242111, -0.9599443078041077, -0.551274299621582, -0.6671341061592102, -0.43175867199897766, 1.0150543451309204, 0.4393705725669861, 0.7405251264572144, -0.43895357847213745, -0.8630434274673462, -0.5030757784843445, 0.6538901329040527, 0.14823821187019348, 0.526361882686615, 1.770547866821289, 1.5598723888397217, 0.17518877983093262, 0.4298747181892395, 0.26534250378608704, 0.4044346213340759, -0.7528064846992493, -0.19039618968963623, -1.1692904233932495, -0.10397431254386902, -1.0624524354934692], [-0.03050031140446663, 1.519787311553955, -1.7598345279693604, -1.2673200368881226, 0.016337672248482704, 0.39261800050735474, 0.33048343658447266, 0.29262202978134155, 0.045166317373514175, -0.8558496832847595, -1.33159601688385, 0.38148075342178345, 1.6780000925064087, 1.1715619564056396, 0.22841227054595947, 0.5089072585105896, 0.6343953013420105, -0.394828736782074, -0.0005024760030210018, 0.541894793510437, -0.6608324646949768, -1.060376524925232, 0.03246615454554558, 0.026319235563278198, 0.5658137202262878, 0.033279888331890106, -2.1679868698120117, -0.3885274827480316, -1.4500055313110352, -0.849059522151947, 0.4121493995189667, -0.7788496017456055, -0.553024411201477, 0.15599653124809265, -1.1493300199508667, -0.6939574480056763, 1.1447030305862427, 0.45816928148269653, 0.7400335669517517, 1.3839151859283447, 0.9189343452453613, 0.4258614182472229, -0.005943180527538061, -1.1061933040618896, 0.39983975887298584, 0.13978636264801025, -0.08785216510295868, -1.5481760501861572, 0.24686740338802338, -0.6847546696662903, 0.8643267154693604, 0.14501595497131348, 0.4437401592731476, 0.7055026292800903, 1.0351661443710327, -0.08724766224622726, -0.3452168107032776, -0.5378468632698059, 0.7258430123329163, -0.6085445880889893, 1.1122161149978638, 0.4058154821395874, -0.20605774223804474, 1.1295156478881836, 0.24919600784778595, -0.30851447582244873, -0.06061602756381035, 0.3584015667438507, -0.1466561108827591, -0.5019159317016602, 0.2779499888420105, -0.013700857758522034, -0.06569813191890717, 0.6526708006858826, -0.5368213653564453, 0.6093546748161316, 0.7347652316093445, 0.2189415544271469, 0.1932656317949295, 1.2922419309616089, -0.012864463031291962, -0.5174288749694824, 0.2787264287471771, -0.47206708788871765, 0.8595197796821594, -0.20259630680084229, -0.29136112332344055, -0.4906952381134033, -0.47392648458480835, 1.9715369939804077, -0.08905909955501556, 0.005209834314882755, -0.38094156980514526, 0.08937306702136993, -0.10443264991044998, -0.6446783542633057, 0.2124054729938507, -0.3317534625530243, -0.7423399090766907, -0.7989280819892883, -0.7243496775627136, -0.4337468147277832, 0.3196355700492859, 0.17075009644031525, 0.7761824131011963, 1.2155433893203735, 0.30470985174179077, -1.312669038772583, -0.4252438545227051, 0.17841170728206635, 0.6033049821853638, 0.008353465236723423, -1.2582730054855347, -1.1433759927749634, -0.8533151149749756, 0.7120475172996521, 0.6176853775978088, -0.8349908590316772, 1.0283985137939453, 0.7705914378166199, -1.12528657913208, -0.2669985294342041, -0.9382004737854004, 0.7210426926612854, 0.29946377873420715, 0.4337829649448395, -0.290163516998291, -0.3221053183078766, 0.4075409173965454, 0.14528360962867737, 0.4179963767528534, -0.012207121588289738, -0.010442554019391537, 0.734663188457489, -0.4856511056423187, 0.8191737532615662, -0.13024768233299255, -1.3835631608963013, -0.02604478783905506, -0.1905122846364975, 0.37890756130218506, -0.7150882482528687, -0.6584724187850952, -0.7798882722854614, -0.5862316489219666, -0.8181766271591187, 0.14689387381076813, -0.5667896270751953, -1.1726101636886597, -0.029545845463871956, -0.8833504915237427, 0.30534499883651733, 0.37693125009536743, 1.3037391901016235, -0.2282659411430359, 0.19774699211120605, 0.20714588463306427, 0.22595970332622528, 0.188019797205925, 0.3573637902736664, 0.8661508560180664, 0.2221420705318451, -0.5760681629180908, 0.8644969463348389, 0.13631857931613922, -0.4526163339614868, 0.22443687915802002, 0.44246312975883484, 0.16306230425834656, 0.6086941361427307, -0.5039109587669373, 0.21932484209537506, -0.6032750010490417, 0.5191794633865356, 0.13407665491104126, -1.0497369766235352, 0.7642648220062256, -0.7128020524978638, -0.8565084338188171, -1.0233074426651, 0.9153441190719604, -0.6597858667373657, -0.10033851116895676, -0.6668775081634521, 0.3577755391597748, -0.1894606351852417, 0.08202280849218369, 0.00103857833892107, -0.4617779850959778, -0.5415636897087097, -0.7853533625602722, -0.31858956813812256, -1.0683534145355225, -0.4660077393054962, -0.35605284571647644, -1.2238080501556396, -0.3251127302646637, 0.11785828322172165, -0.7103308439254761, 0.2935503423213959, -0.20184096693992615, 0.09087048470973969, -1.857663869857788, -0.0955670028924942, -0.7608185410499573, 1.3709458112716675, -0.2112605720758438, 0.6441842913627625, -0.823544979095459, 0.21757039427757263, 1.1622686386108398, 0.06372767686843872, -0.8390271067619324, 0.8751029372215271, 0.14977744221687317, -0.2962459921836853, 0.277733713388443, -0.1280428171157837, -0.496853232383728, 0.022877037525177002, 1.4528218507766724, 0.6781924366950989, 0.11296519637107849, 0.19767549633979797, 0.39568519592285156, 0.4611135423183441, -0.9966364502906799, -0.4578115940093994, -1.0608956813812256, -0.09417957067489624, -0.5241227149963379, -0.9273665547370911, 1.4444650411605835, 0.6437743902206421, -0.48500174283981323, 0.5531657934188843, -0.14707429707050323, 0.4863784611225128, 0.40442296862602234, 0.6630460619926453, 0.15430977940559387, 0.4156060814857483, -0.6398274898529053, -0.4606250822544098, -0.6846787929534912, 0.09413015842437744, 0.8073316216468811, -0.7200354933738708, -0.3209865987300873, 1.4294997453689575, 0.7713630795478821, -0.14223307371139526, 0.48417699337005615, -0.052168216556310654, -0.010111115872859955, -0.5225512981414795, -0.40974438190460205, 0.2721865773200989, -0.3058761656284332, 1.117401123046875, 1.0622127056121826, -1.0827146768569946, -0.6732125282287598, -0.19251608848571777, -0.0027099172584712505, -0.47992926836013794, -0.21902203559875488, -0.4822165071964264, 0.6011320948600769, -0.044694311916828156, 0.397417813539505, 0.7557491660118103, -0.017570625990629196, 0.486052930355072, -0.44599926471710205, 0.17928433418273926, -0.1946079283952713, 0.5496535301208496, -0.2555880844593048, 0.5569402575492859, 0.0007745428010821342, -0.9223392605781555, -0.7588959336280823, -0.11040304601192474, 0.6215384006500244, -0.1425343006849289, -0.4446316063404083, 0.93150395154953, 0.5096952319145203, -1.1301404237747192, -0.27551183104515076, 0.34472179412841797, -0.4049680531024933, -0.18598605692386627, -0.14306557178497314, 0.39721396565437317, 1.1786870956420898, -0.07926896959543228, -0.7273796200752258, -0.011186531744897366, 0.5714062452316284, 1.0806573629379272, 0.8818289041519165, 1.158189296722412, -0.28804779052734375, -0.22597792744636536, 0.03607193008065224, 0.0767391249537468, -0.6879062056541443, -0.02004600316286087, -0.9621691703796387, -0.8379282355308533, 0.7162727117538452, -0.23325493931770325, 0.36043140292167664, 0.4424009323120117, 0.06450669467449188, 0.5271539092063904, 0.7382970452308655, -0.5890181660652161, -0.23871394991874695, 0.03216428682208061, -0.2809864282608032, -1.007900357246399, 0.5633997321128845, 0.240160271525383, -0.7560744285583496, -0.10995862632989883, -0.220059335231781, -0.5763800144195557, 0.5482264757156372, -0.39030054211616516, 0.4205702543258667, -0.9788134694099426, -0.0521378256380558, 0.21671898663043976, 1.407592535018921, -0.2532319724559784, -0.46524640917778015, -1.1305315494537354, -0.1149914413690567, 0.25473496317863464, 0.1938396394252777, -0.8134467005729675, 0.9816586375236511, 0.12454373389482498, -0.5920799374580383, -0.4542088508605957, 0.3798494338989258, 1.3120918273925781, -0.3252178728580475, 0.1512504518032074, 0.2747332751750946, 0.3719562292098999, -0.2986367344856262, -0.06402130424976349, -0.2369677573442459, 1.373428225517273, 0.23991388082504272, 0.3529326319694519, 1.2625447511672974, -0.46430638432502747, -0.40606269240379333, -2.044196605682373, 1.0449858903884888, -0.19540514051914215, 1.791028380393982, 0.32025107741355896, 0.6637632846832275, 0.4418984651565552, -0.9563398361206055, -0.40499797463417053, 0.4935206472873688, 0.3343164324760437, 0.3779188096523285, -0.8756787180900574, -0.630953311920166, 0.07476115971803665, -0.5660079717636108, -0.5626725554466248, -0.8148317337036133, 0.10322467237710953, -0.7596623301506042, -0.5801307559013367, 0.7270920276641846, 1.3491878509521484, -0.04482200741767883, 0.16954252123832703, 0.7024118304252625, -0.19419077038764954, -0.3436224162578583, 0.2518254518508911, -0.76349276304245, -0.24700887501239777, -0.3217792510986328, -1.0807442665100098, -0.5575998425483704, 0.33825525641441345, 0.3351942002773285, 0.5638390779495239, -1.0340701341629028, -0.2250153124332428, -0.3791453540325165, 0.05494121462106705, 0.3165603578090668, 0.45838746428489685, 0.06427986919879913, 0.41524118185043335, 0.29270559549331665, -0.4531828761100769, 0.16698603332042694, 0.7324572205543518, -0.09945949167013168, 0.0031141589861363173, -1.0266149044036865, -0.07410243153572083, -0.002449341118335724, 0.004401938524097204, -1.106343388557434, 0.3533306121826172, -0.2738174498081207, 0.2611614763736725, -0.03807641938328743, 0.30545592308044434, 1.4250564575195312, 0.7389867305755615, 0.4753612279891968, 0.9972791075706482, -0.5123412609100342, -0.6694768667221069, 0.1641162782907486, -2.515967935323715e-06, -0.37031760811805725, -0.6367253661155701, 0.4476655423641205, 0.529181957244873, 0.055449727922677994, 0.9035648703575134, 0.20381921529769897, 0.7370646595954895, 0.4351283013820648, -0.21485671401023865, 0.036212027072906494, 0.7415063381195068, 0.7917454838752747, 0.40256887674331665, 0.6816917061805725, 0.20802909135818481, -0.7663577795028687, 1.6949963569641113, -0.9615012407302856, -0.10418327897787094, 0.2295629233121872, 0.301754891872406, 1.4230729341506958, -1.0942106246948242, -0.49873989820480347, 0.14849527180194855, -0.3999128043651581, 0.22670064866542816, 0.5337290167808533, 0.9020441174507141, -0.752987265586853, 0.5119239091873169, 1.041097640991211, 0.11479932069778442, 0.8641222715377808, -0.7340439558029175, -0.38425391912460327, -0.1260019689798355, -0.5247454643249512, 0.7396103739738464, -0.6670345664024353, -0.005679901689291, 0.3421051800251007, -0.3611905574798584, 0.20364511013031006, 0.044045720249414444, -0.04973958060145378, 1.4704452753067017, 0.009273315779864788, -1.0953590869903564, 0.23597116768360138, -0.961871862411499, 0.45575016736984253, -0.15383639931678772, -0.9526647925376892, 0.14025376737117767, -0.6359403729438782, -0.22007973492145538, -0.1260232925415039, -0.7846429944038391, -0.12141479551792145, 0.4657188951969147, -0.9001988172531128, -0.4674548804759979, 0.04445437341928482, 1.1629382371902466, 0.6639020442962646, 0.11296127736568451, 0.2920861840248108, 0.5453933477401733, -0.6044590473175049, -0.12601026892662048, 0.49008479714393616, -0.5533831715583801, 0.2668033242225647, -1.1517937183380127, -1.0930054187774658, 1.0755763053894043, 0.9309418201446533, 0.47757577896118164, 0.23480047285556793, 1.076984167098999, 1.412518858909607, -0.5529993772506714, -0.7755268216133118, 0.09277079999446869, -0.8023804426193237, 0.6604931950569153, 0.7360488772392273, -0.822397768497467, -1.271476149559021, -0.38061246275901794, -1.522081732749939, 1.431654691696167, -0.23489508032798767, -0.6505526304244995, 0.8883740305900574, 1.561673879623413, 0.3131847381591797, 0.8779158592224121, -0.6391505599021912, -0.12136328220367432, 0.404558390378952, -0.5004606246948242, -1.0964463949203491, 0.4161434471607208, 0.5038200616836548, 0.36874961853027344, -0.0834176316857338, 0.8677972555160522, -0.031309980899095535, -0.37638503313064575, 0.020217621698975563, 0.5125723481178284, 0.1772417575120926, 0.5577568411827087, 0.6064996123313904, -1.2229119539260864, -0.7278668880462646, -0.3361155390739441, 0.34392669796943665, 0.8554391860961914, 0.9113694429397583, -0.16559500992298126, -1.4589929580688477, -0.20320215821266174, -0.35243508219718933, -0.20568367838859558, 0.05886084586381912, -0.599976658821106, 1.5692538022994995, 0.17324580252170563, -0.7168009281158447, 0.7835369110107422, 0.1048484593629837, -0.491685152053833, 0.0984402671456337, 0.08179362863302231, 0.5374796986579895, -1.6815992593765259, -0.7473176121711731, -0.2500306963920593, 0.11251497268676758, 0.5577800273895264, 0.4897289574146271, -0.29774871468544006, -0.782827615737915, -1.773506760597229, -0.03920456022024155, 0.07712186127901077, 0.7038198113441467, -1.3733934164047241, -0.17702440917491913, 0.5415537357330322, -1.431286096572876, 0.4612334072589874, 0.12608954310417175, -0.9364937543869019, -1.0685231685638428, -1.2456251382827759, 0.7479705810546875, 0.6022825241088867, 0.42473769187927246, -0.17972849309444427, 0.6491060256958008, -0.5736752152442932, -0.12357571721076965, -1.050358533859253, 0.1302158087491989, 1.1665207147598267, 0.7376946806907654, -0.25208306312561035, 0.7059446573257446, 0.06825582683086395, -0.5463771224021912, 0.3459031283855438, 0.4792855381965637, -0.4962901473045349, 0.2210063934326172, 0.5259105563163757, -0.09012399613857269, 0.43638360500335693, 1.0570493936538696, 0.3561113476753235, 0.9120621085166931, 0.11427894979715347, 0.6147992610931396, -0.22937361896038055, -0.3054051697254181, -0.19438329339027405, 0.03748072311282158, -0.8605753779411316, -0.7521023750305176, -0.21522386372089386, -0.528399646282196, -0.20795315504074097, 0.8004297614097595, 0.6657247543334961, -0.7814422249794006, -0.6379312872886658, -0.3501662611961365, 0.4434713125228882, -0.07865484058856964, 0.5572137236595154, -0.1286996454000473, -0.011268670670688152, 0.4665565490722656, 0.052103109657764435, 0.7974407076835632, -0.8950667977333069, 0.6868046522140503, -0.3119301199913025, 0.40105393528938293, -0.2875922918319702, 0.24422700703144073, 0.5658533573150635, -0.34787723422050476, -0.7387626767158508, 1.4656062126159668, 1.1797517538070679, 0.42786502838134766, 0.19412566721439362, 0.15137217938899994, 0.17046158015727997, 0.9661902785301208, -0.8286235332489014, 0.07624217867851257, -1.074826717376709, 0.3822636008262634, 0.015319869853556156, 0.35008499026298523, -0.6255936026573181, 0.5179336071014404, -0.35137179493904114, 0.11686453968286514, 0.8465973138809204, 0.022571219131350517, -0.41706064343452454, 0.6563010215759277, 0.7451357245445251, -0.6194837093353271, 0.17235150933265686, 0.2611473500728607, 0.5772728323936462, 0.20849479734897614, 0.38630762696266174, 0.3229276239871979, -0.5546296238899231, -0.04710495099425316, 0.6633955836296082, -0.7039307355880737, -0.04200397804379463, -0.7293024659156799, -1.798348307609558, -0.3490576446056366, -0.09999800473451614, -0.703391432762146, 0.22898021340370178, -1.1152409315109253, -0.680684506893158, 0.5025748014450073, -0.360893189907074, 0.527908444404602, -0.9548206329345703, 0.13557682931423187, 0.08211912214756012, 0.5370687246322632, 1.067757248878479, -0.2332296073436737, 0.7520347237586975, 0.2787274718284607, 0.1623021811246872, -0.3861068785190582, 0.1804157942533493, -0.05080194026231766, 0.6148737668991089, 0.10667982697486877, 0.027683652937412262, -0.7987067103385925, -0.8877117037773132, -0.698799192905426, 0.19059595465660095, 0.09018487483263016, 0.4301712214946747, -0.3578064739704132, -0.7886250615119934, -0.6353408694267273, 1.345481514930725, 0.6235695481300354, -0.22203998267650604, -0.5535027384757996, -0.5220932364463806, -0.028741639107465744, 0.1505175232887268, 0.8862307667732239, -0.6612364649772644, 0.3155404329299927, -0.07036174088716507, 0.11542309075593948, -0.12328378111124039, -0.1968260258436203, 0.3455398380756378, -0.3956907093524933, 0.6420283913612366, -0.3622475862503052, -0.6284970641136169, 0.6638714075088501, -0.7060315608978271, 0.21159523725509644, -0.0029669080395251513, -0.3087831735610962, 0.26466017961502075, -0.3395051658153534, -0.9747138023376465, -0.47811073064804077, 0.3069644868373871, 0.3082462251186371, 0.6735004186630249, -0.06412405520677567, -0.1772872507572174, -0.8421100974082947, 0.29783645272254944, 0.5650089979171753, -0.40157872438430786, 0.7603289484977722, 1.9514873027801514, 1.7039906978607178, 0.05596008524298668, -0.4772772789001465, -0.4936015009880066, 1.2557399272918701, -0.9192730188369751, -0.5608339309692383, -1.2736930847167969, -0.2600504755973816, -0.23361517488956451], [0.40331095457077026, 1.0182816982269287, -1.3900095224380493, -0.49305015802383423, 0.5528031587600708, 0.307683527469635, 0.6195558309555054, 0.5907474756240845, 0.23104335367679596, 0.13046276569366455, -0.919847846031189, 0.5722621083259583, 0.7806896567344666, 0.35324814915657043, 0.4852963984012604, 0.11502064764499664, 1.0998966693878174, -0.34260424971580505, -0.02563394233584404, 0.237651064991951, -0.566108226776123, -1.2801159620285034, -0.16583658754825592, 0.3333348333835602, -0.07572858035564423, 0.4267045557498932, -1.8435355424880981, -0.16792725026607513, -1.9732297658920288, -0.12876002490520477, 0.9137781262397766, -0.7451598644256592, -0.14610040187835693, -0.1449168473482132, -1.9016740322113037, 0.09668366611003876, 1.0331480503082275, -0.04022783413529396, 0.2592718303203583, 0.05683540925383568, 1.5402228832244873, -0.26431015133857727, -0.3634929060935974, -1.2340471744537354, 1.0807644128799438, -0.09726214408874512, 0.9543488025665283, -1.7646329402923584, 0.05227034166455269, -1.046599268913269, 0.43564707040786743, 0.4206794500350952, -0.5961771607398987, 0.932494044303894, 0.5720638632774353, -0.6791625022888184, 0.16356681287288666, -0.06472479552030563, 0.2560889422893524, -0.3799436390399933, 1.2851067781448364, -0.327301949262619, -0.7807406187057495, 0.829336941242218, 0.8125256299972534, -0.01800469495356083, 0.2635660767555237, 0.3978702127933502, -0.7841870188713074, -0.3133086562156677, 0.2666114568710327, 0.40420499444007874, -0.7155894637107849, -0.08696708083152771, -0.19110623002052307, 0.724668025970459, 0.6224313378334045, -0.32773280143737793, 0.006856793537735939, 0.5462610125541687, -0.7048773169517517, 0.12721340358257294, -0.2988245487213135, -0.5789920091629028, 0.19003692269325256, 0.6003054976463318, -0.01703554391860962, -0.18278644979000092, -0.2035250961780548, 1.1412440538406372, -0.3656185269355774, 0.055896174162626266, -0.23451533913612366, -0.20411111414432526, -0.07087724655866623, -0.22686776518821716, 0.14839938282966614, -0.39350390434265137, -0.7876648306846619, -1.2486201524734497, -0.6456700563430786, -0.7077040076255798, 0.48206424713134766, 0.23718000948429108, 1.2507950067520142, 0.8058106303215027, 0.3911930322647095, -1.2992687225341797, 0.10433229058980942, -0.06770377606153488, -0.5410218834877014, 0.6959213614463806, -1.0699505805969238, -0.6704733371734619, -0.641988217830658, 0.9812842607498169, 0.4945184886455536, -0.9263558983802795, 1.0297483205795288, 0.7571330070495605, -1.0473295450210571, 0.22845591604709625, -1.071749210357666, 0.9140028953552246, 0.4597739577293396, 0.6869736909866333, -0.433329701423645, -0.2948911488056183, 0.7913302183151245, 0.7669086456298828, 0.1364200860261917, 0.33798304200172424, -0.18669794499874115, 1.5708179473876953, -0.4089585840702057, 1.0658210515975952, -0.23603704571723938, -1.121049404144287, -0.22989998757839203, -0.040090590715408325, 1.0846034288406372, -1.1949715614318848, -0.16657012701034546, -0.16314245760440826, -0.5518069863319397, 0.0755172148346901, 0.10256601870059967, 0.18714645504951477, -1.0835014581680298, 0.5228787660598755, -0.8318942785263062, 0.33482858538627625, 0.230740025639534, 1.404138207435608, -0.07539566606283188, -0.02717638574540615, 1.1085162162780762, 0.1722414791584015, 0.19620931148529053, 0.07418741285800934, 1.0662460327148438, 0.005803117528557777, -0.8277431130409241, 1.2170354127883911, 0.20191119611263275, -0.35982269048690796, 0.3313436806201935, 0.286166250705719, -0.14498509466648102, 0.49404552578926086, -0.44824057817459106, -0.6087192893028259, -0.10105118155479431, 1.0051161050796509, 0.21977998316287994, -0.7686675190925598, 0.8501896858215332, -0.5883781909942627, -1.3275632858276367, -0.808800995349884, 1.6318994760513306, -0.24558548629283905, 0.44395911693573, -0.5992355942726135, 1.0538818836212158, 0.26161476969718933, 0.005746031180024147, 0.8256176114082336, -0.08457662910223007, -0.6582211852073669, -0.8624729514122009, -0.7135453224182129, -1.0562056303024292, 0.05779428407549858, -0.9740383625030518, -1.1556377410888672, 0.12417509406805038, -0.4846562445163727, -0.15752843022346497, 0.43409764766693115, -0.15261909365653992, -0.06354273855686188, -1.4259028434753418, -0.5879653096199036, 0.12324542552232742, 1.0324816703796387, -0.30956488847732544, 0.5597089529037476, -0.26901593804359436, 0.06405975669622421, 1.4857404232025146, 0.191297709941864, -0.7630881071090698, 0.13986296951770782, -0.39974409341812134, -0.8884690999984741, 0.1573203057050705, -0.1181497573852539, 0.3178751766681671, 0.671718955039978, 0.47798141837120056, 0.7598651647567749, 0.13506071269512177, 0.2547563910484314, 0.602548360824585, 0.6296780109405518, -1.4696778059005737, -0.9566888809204102, -0.9834973812103271, -0.9360007047653198, -0.9343176484107971, -1.5017374753952026, 0.6743568778038025, 0.4064282476902008, -0.6673503518104553, 0.11190354079008102, -0.17750395834445953, 0.4836238622665405, 0.044152434915304184, 1.1656476259231567, 0.3198396861553192, 0.4739607572555542, -0.5888729095458984, 0.10066934674978256, -0.7530930638313293, -0.014655757695436478, 1.1589370965957642, -0.32172638177871704, -0.13307881355285645, 1.3143807649612427, 1.8204996585845947, -0.12735888361930847, 1.0373446941375732, 0.14977498352527618, 0.30280569195747375, -0.5786274075508118, -0.16471967101097107, -0.30833229422569275, -0.7625502943992615, 1.249819278717041, 0.3760920464992523, -1.0235832929611206, -0.3559964895248413, -0.2525935769081116, -0.7974061369895935, 0.01000326406210661, 0.05781158059835434, -0.860289990901947, 0.2150171846151352, -0.2882782518863678, 0.5915858149528503, -0.23981671035289764, -0.02726353146135807, 0.6508084535598755, -0.4621202051639557, -0.2172725349664688, -0.5264158844947815, -0.15884312987327576, -0.08347138017416, 0.40841972827911377, -0.13534660637378693, -0.788268506526947, -0.12105382978916168, 0.45975103974342346, 0.64887934923172, -0.5347524285316467, 0.0913558304309845, 1.349733829498291, 0.7861350774765015, -0.5864341259002686, -0.1172589436173439, 0.20032015442848206, -0.14240294694900513, -0.026247091591358185, 0.34342941641807556, 0.42664074897766113, 0.5224262475967407, -0.6560969352722168, -1.0602772235870361, -0.0648324266076088, 0.23992763459682465, 0.6368732452392578, 0.6921730637550354, 0.874281644821167, -0.5496841669082642, -0.34822872281074524, -0.7085513472557068, 0.10702096670866013, -0.7376121878623962, -0.35711610317230225, -0.4001772105693817, -0.7253950238227844, 0.14711889624595642, -0.793033242225647, 0.519126296043396, 0.34847554564476013, 0.043373409658670425, 0.5989487767219543, 1.3320930004119873, -0.1416018158197403, -0.10138487070798874, 0.04877893254160881, -0.09754791110754013, -0.7773996591567993, 0.7147960066795349, 0.3815617859363556, -0.919324517250061, -0.40654420852661133, -0.6949561834335327, -0.2560465335845947, 0.49215471744537354, -0.08819365501403809, 0.591196596622467, -1.217864751815796, -0.45175719261169434, 0.22487019002437592, 1.3349127769470215, 0.09115511178970337, -0.3982275724411011, -0.6015532612800598, -0.09582117199897766, 0.30236002802848816, 0.15150856971740723, -0.006692187860608101, 0.8741160035133362, -0.31749027967453003, -0.41484200954437256, -0.17812438309192657, 0.5028549432754517, 0.7629430294036865, -1.187811017036438, -0.20972643792629242, -0.03470921143889427, -0.12474305182695389, -0.9807130098342896, -0.34929874539375305, -0.0789053812623024, 0.7322315573692322, 0.6138537526130676, 0.3727877736091614, 1.506448745727539, -1.120405912399292, -0.1410086452960968, -1.6227067708969116, 0.778731107711792, 0.20922240614891052, 1.4202220439910889, 0.1214480847120285, 0.4761351943016052, 0.558984100818634, -0.4629676043987274, -0.04986463859677315, 0.5891528129577637, 0.8306800723075867, 0.08943331241607666, -0.8830990195274353, -0.4373190701007843, -0.2911834418773651, -0.19003604352474213, -0.7052221894264221, 0.1012813001871109, -0.004487907979637384, -0.5783995985984802, -0.7593830227851868, 0.7767345905303955, 0.8961647152900696, -0.3284737765789032, -0.6054744720458984, -0.45172590017318726, 0.4264962673187256, -0.7765963077545166, 0.08624948561191559, -0.2770431339740753, -0.19378215074539185, -0.21879823505878448, 0.01577567122876644, -0.5858489871025085, 0.26000139117240906, -0.27545762062072754, 0.9510166049003601, -1.2471343278884888, 0.010938793420791626, -1.1748619079589844, 0.7414641380310059, 0.3434165120124817, 0.5849848389625549, 0.1051388680934906, 0.30281946063041687, -0.26781362295150757, -0.17636381089687347, 0.06393056362867355, 1.139562726020813, -0.23565274477005005, -0.33022865653038025, -0.33869051933288574, -0.5270757675170898, 0.27723556756973267, -0.4915139973163605, -0.6398329138755798, 0.12320732325315475, -0.3330064117908478, -0.11363458633422852, 0.09610728174448013, 0.4893825054168701, 1.6697555780410767, 0.885526180267334, -0.38347429037094116, 0.6667419672012329, 0.031683627516031265, -0.035579387098550797, 0.11654554307460785, 0.44892647862434387, -1.0890592336654663, -0.5067521333694458, 0.6758172512054443, 0.8434134721755981, 0.2798961102962494, 0.5081722140312195, -0.23431043326854706, 0.43651288747787476, 0.02067941054701805, -0.09340473264455795, 0.3233453929424286, 0.9591984748840332, 0.8051841259002686, 0.3149925768375397, 1.3421756029129028, -0.07295309752225876, -0.4482862949371338, 1.2377828359603882, -0.9719229340553284, 0.4730043113231659, 0.42479461431503296, -0.20605963468551636, 0.7275451421737671, -1.9735296964645386, -0.7709518671035767, 0.6596532464027405, -0.20393560826778412, 0.2113676816225052, 0.40564867854118347, 0.6516547203063965, -0.22007502615451813, 0.1547996997833252, 0.5498323440551758, 0.4206998944282532, 1.2499827146530151, -0.5745047926902771, 0.1390877217054367, 0.3902112543582916, -1.2478424310684204, 0.8571147322654724, -0.8572364449501038, -0.2768966257572174, 0.8073516488075256, -0.20618140697479248, 0.2917684316635132, 0.5391432642936707, 0.32302138209342957, 1.3402312994003296, 0.09287121146917343, -1.4454265832901, 0.6549608111381531, -0.9561289548873901, 0.10330339521169662, -0.641313910484314, -0.009754141792654991, -0.3136223256587982, -0.6769746541976929, -0.03792911767959595, -0.20725657045841217, -0.4725930392742157, -0.10526347160339355, 0.3231339454650879, -0.985897421836853, -0.43639129400253296, 0.5410441756248474, 0.7670500874519348, 0.7713648676872253, 0.030080480501055717, 0.1326339840888977, 0.0556357279419899, -0.06155768036842346, 0.4626469612121582, 0.3355974853038788, 0.39656418561935425, -0.19276820123195648, -0.44750261306762695, -0.6075875163078308, 0.9105692505836487, 0.9166609644889832, -0.15604084730148315, 0.10380636900663376, 1.2352219820022583, 1.5869839191436768, -0.312863826751709, -0.7632482647895813, 0.148541659116745, -0.3428478538990021, 0.941776692867279, 0.5382279753684998, -0.9864647388458252, -0.6820207834243774, -0.2516934871673584, -1.1421043872833252, 1.2416622638702393, -0.6778124570846558, -0.4863013029098511, 0.237003356218338, 0.7042680978775024, 0.6032609343528748, 0.16335159540176392, 0.012966261245310307, 0.5496782064437866, 0.06797856092453003, -0.3665904700756073, -1.0665165185928345, 0.6091349720954895, 0.5459338426589966, -0.1336907595396042, -0.8372976779937744, 0.2700701355934143, -0.4102538228034973, 0.06783013790845871, 0.5446202158927917, 1.0396034717559814, 0.5079347491264343, 0.40821781754493713, 0.20132049918174744, -0.9420535564422607, -0.5678669214248657, -0.5604553818702698, -0.15736766159534454, -0.43908578157424927, 0.9079776406288147, 0.125162735581398, -0.24623247981071472, 0.10383463650941849, -0.06657487899065018, -0.4109722673892975, -0.35480454564094543, -0.93198162317276, 1.450804352760315, 0.45724737644195557, -1.0184921026229858, 0.13311982154846191, 0.004542083479464054, -0.031885672360658646, -0.18574531376361847, -0.28820696473121643, 0.6737199425697327, -1.0803278684616089, -0.4221327304840088, 0.0017395615577697754, -0.2917511761188507, 0.2364657074213028, 0.19766893982887268, 0.5226255655288696, -0.3324142098426819, -1.636862874031067, -0.6970906257629395, 0.7731784582138062, 1.0758488178253174, -0.5057727098464966, 0.6793968677520752, -0.2344043105840683, -1.9384866952896118, 0.87134850025177, -0.23415830731391907, -1.1490697860717773, -0.9584238529205322, -0.6733064651489258, 0.17706410586833954, 0.4476395547389984, -0.08465076237916946, 0.03620400279760361, 0.6002494096755981, -0.5761620402336121, -1.0312728881835938, -0.6861871480941772, -0.37831076979637146, 0.6594201922416687, 0.624070405960083, -0.6160916686058044, 0.8726030588150024, 0.6981749534606934, -0.6514145731925964, -0.613689661026001, 0.3991868793964386, -1.2040671110153198, 0.14002205431461334, 0.6577531099319458, 0.8044949769973755, 0.5435802340507507, 1.2548816204071045, 0.8690906167030334, -0.18950587511062622, 0.6301547288894653, 0.5509883761405945, -0.5931857824325562, -0.9315067529678345, -0.7488255500793457, 0.8085910081863403, -1.1124647855758667, -1.651085376739502, 0.3044787645339966, -0.0766221135854721, -1.010471224784851, 0.32845786213874817, 0.44807982444763184, -0.8004472851753235, -0.2853992283344269, -0.18715333938598633, -0.15250614285469055, 0.2559982240200043, 0.8299705982208252, 0.28891807794570923, -0.6956943273544312, -0.2105531394481659, 0.15024271607398987, 0.7842938899993896, -1.052389144897461, -0.14694388210773468, -0.4933426082134247, 0.07939683645963669, 0.46812283992767334, 0.12540003657341003, 0.5300718545913696, -0.5249493718147278, -0.3666422665119171, 1.456493854522705, 0.5081915855407715, 0.1675979644060135, 0.3574190139770508, 0.7510064244270325, 0.4580337405204773, 0.3141893744468689, -0.7577150464057922, 0.03720102831721306, 0.14679129421710968, 0.9865206480026245, -0.21302008628845215, 0.6166281700134277, -0.4931579828262329, 0.5260951519012451, 0.5700704455375671, 0.35837990045547485, 0.625565230846405, 0.1711745411157608, -1.0606236457824707, 0.3866993486881256, 0.5676257610321045, -0.6101744771003723, 0.4111904799938202, 0.3510400354862213, -0.11280788481235504, -0.31060996651649475, 0.5043794512748718, 0.6141241192817688, -0.7715253829956055, 0.1541977971792221, 0.2066815346479416, -0.6102941036224365, -0.5006411671638489, -0.3388959765434265, -1.8544820547103882, 0.08167283236980438, -0.08436010032892227, -0.25568386912345886, 1.2839781045913696, -1.0001014471054077, -0.2149163782596588, 0.09779957681894302, 0.07165426760911942, -0.07626528292894363, -0.8632615208625793, 0.13266868889331818, -0.5225904583930969, 0.8758853077888489, 0.974032998085022, 0.029565488919615746, 1.3928852081298828, -0.13171787559986115, -0.9313367605209351, -0.9054768085479736, 0.11890768259763718, 0.052136536687612534, 0.17119033634662628, -0.1583145260810852, 0.08728412538766861, 0.18606731295585632, -0.752535879611969, -1.3292715549468994, 0.27276793122291565, 0.6054140329360962, -0.24889495968818665, -0.5620077252388, -0.26196080446243286, -0.47877755761146545, 0.30377888679504395, 0.5518940091133118, -0.3102758526802063, -0.24126438796520233, -0.5911786556243896, -0.03634669631719589, -0.12470705062150955, 0.8948612213134766, -0.3335346281528473, 0.09411244094371796, -0.3872995674610138, -0.24984343349933624, -0.33847370743751526, -0.7147173285484314, 0.48211273550987244, 0.1652863472700119, 0.22043223679065704, -0.8141208291053772, -0.27363675832748413, -0.18543922901153564, -1.2722915410995483, -0.10082662105560303, 0.8076770305633545, -0.5799189209938049, 0.3467920124530792, -0.3390602767467499, -0.48041483759880066, -0.5468164086341858, -0.1916167438030243, 0.02412048541009426, 0.5123261213302612, 0.26505759358406067, 0.09031377732753754, -0.6718237996101379, 0.9245775938034058, 0.6340415477752686, -0.7427805066108704, 0.9013360142707825, 1.3456707000732422, 1.214908242225647, 0.3317092955112457, -0.5891945958137512, -0.22049281001091003, 1.6019861698150635, -0.7605242133140564, -0.2396887242794037, -1.232957124710083, 0.5520830750465393, -0.2225964218378067], [-0.26151716709136963, 1.4712438583374023, -1.6942527294158936, -0.5575543642044067, -0.225876122713089, 0.7455945611000061, 1.8221107721328735, 0.31152433156967163, 0.47629407048225403, -0.4502156376838684, -0.6744009256362915, 0.6701828837394714, 1.6517459154129028, 0.5334648489952087, 0.43936941027641296, -0.06172764301300049, 1.1141327619552612, 0.44233280420303345, 0.4909524619579315, -0.07671279460191727, -0.6197396516799927, -0.46620264649391174, 0.16789895296096802, 0.44522660970687866, 0.49289944767951965, 1.1967358589172363, -1.3344019651412964, -0.18058785796165466, -2.4259262084960938, -0.45048046112060547, 1.1517572402954102, -0.8803895711898804, 0.5294227004051208, 0.07894475013017654, -1.1225346326828003, -0.23995091021060944, 1.0809166431427002, -0.09032890945672989, 0.46127980947494507, 0.1539951115846634, 2.2476460933685303, -0.10987398773431778, 0.15589424967765808, -1.1583263874053955, -0.026712847873568535, -0.23616325855255127, 0.8115453720092773, -1.4990248680114746, 0.3084626793861389, -0.30589738488197327, -0.015554036945104599, 0.8716181516647339, 0.8069692254066467, 1.4987218379974365, 0.029949462041258812, -0.9324007034301758, 0.11107071489095688, 0.19779008626937866, 0.508915901184082, -0.21246033906936646, 0.7703032493591309, -0.21642948687076569, -0.5976045727729797, 1.31491219997406, 1.052973985671997, 0.06944184750318527, 0.13816681504249573, 0.14958006143569946, 0.3890838325023651, -0.3937411606311798, 0.25616127252578735, 0.06156383827328682, -0.1427978128194809, 0.1472378671169281, -0.9927530288696289, 0.1777796894311905, 0.5407426357269287, -0.12327674776315689, -0.26805171370506287, 1.050087332725525, -0.6593233346939087, 0.27992773056030273, 0.47178348898887634, 0.20550666749477386, 0.1688913106918335, 0.9676340818405151, 0.188869446516037, -0.009128636680543423, -0.3629502058029175, 1.3066718578338623, -0.21284843981266022, 0.5621191263198853, 0.19722378253936768, 0.14005881547927856, 0.09456649422645569, -0.7463046908378601, -0.10684461891651154, -0.6141746044158936, -0.7197195291519165, -1.2124744653701782, -0.6246801018714905, -0.4875521659851074, 0.29024240374565125, 0.8788666129112244, 0.8727457523345947, 0.9987753629684448, 0.36061641573905945, -0.7721497416496277, -0.2655486464500427, -0.10527873039245605, -0.36617380380630493, 0.18250474333763123, -0.9734530448913574, -0.61501145362854, -0.5388705730438232, 0.9229669570922852, 0.3439532518386841, -0.06785573065280914, 0.4859854280948639, 0.5411858558654785, -0.8813765048980713, -0.008695575408637524, -0.29727017879486084, 0.732979953289032, 0.2600899636745453, 0.6658167243003845, -0.5692954659461975, -0.5076001286506653, 1.0908563137054443, 0.6210080981254578, 0.6080986857414246, -0.4464546740055084, 0.4845098853111267, 1.2708278894424438, -0.8417628407478333, 0.78715580701828, -0.2279590517282486, -1.9505438804626465, -0.3525184690952301, 0.2855106592178345, 0.7194807529449463, -0.3916701078414917, 0.001854466274380684, -0.738574206829071, -0.4865746796131134, -0.8611708283424377, 0.9471572637557983, 0.407552570104599, -1.0239498615264893, 0.09908485412597656, -1.1769691705703735, 0.2944236397743225, -0.14210139214992523, 1.306298851966858, 0.19229097664356232, -0.5262719392776489, 0.8256035447120667, 0.19705286622047424, 0.353103369474411, 0.7884073853492737, 1.2124069929122925, 0.3703136146068573, -0.815383791923523, 1.049399733543396, -0.36299973726272583, -0.5420728921890259, 0.014516379684209824, 0.04400225356221199, 0.09726380556821823, 0.5690561532974243, -0.404356449842453, -0.39272284507751465, -0.2990649938583374, 0.24996840953826904, 0.2519757151603699, -0.5458059906959534, 1.078692078590393, -0.5121725797653198, -1.054344654083252, -1.4113057851791382, 1.149501085281372, -0.3049255907535553, 0.290066659450531, -0.3406176269054413, 0.9098789095878601, -0.7054100632667542, 0.08203897625207901, 0.18840034306049347, -0.6164538860321045, -1.081634759902954, -1.2636146545410156, -0.30484119057655334, -0.8535492420196533, -0.030500151216983795, -0.5231132507324219, -0.4381653070449829, -0.011144278571009636, -0.6125536561012268, -1.1237046718597412, 0.5106341242790222, 0.07211398333311081, -0.24527762830257416, -1.8325550556182861, -0.5260401964187622, -0.14905399084091187, 0.5240221619606018, -1.3523814678192139, 0.9663733243942261, -0.7808038592338562, 0.431535005569458, 0.4506038427352905, 0.46419358253479004, -1.155057430267334, 0.8587871789932251, -0.21886728703975677, -1.3802739381790161, 0.29101964831352234, 0.06655856221914291, -0.05577704310417175, 0.3025522232055664, 0.3034062385559082, 0.21938373148441315, 0.9692035913467407, 0.24645352363586426, 0.7437750101089478, 0.1574239432811737, -0.951810359954834, -1.1836521625518799, -1.0996586084365845, 0.13576871156692505, -1.2333455085754395, -0.8459082841873169, 0.6044926047325134, 0.22610609233379364, -0.45095452666282654, 0.8306066989898682, 0.5070697069168091, -0.06716150790452957, 0.36641746759414673, 0.4643837511539459, 0.5711095333099365, 0.9324668049812317, -0.18252870440483093, -0.6930819749832153, -0.5346618294715881, 0.03285576030611992, 1.3698610067367554, -0.3100380599498749, 0.39649397134780884, 1.3094971179962158, 1.3257925510406494, -0.13143673539161682, 0.48751187324523926, 0.44088584184646606, -0.4496637284755707, -0.8002889752388, -0.42383652925491333, -0.30579128861427307, -1.0544886589050293, 1.4823120832443237, 0.5447630882263184, -1.0210952758789062, -0.23826947808265686, 0.03738521784543991, 0.30723974108695984, 0.16772617399692535, -0.4453081488609314, -0.6744677424430847, 0.39320138096809387, -0.2643771469593048, 0.24153852462768555, 0.6795218586921692, -0.40203529596328735, 0.49597495794296265, -0.08193410187959671, -0.23496150970458984, -0.508513331413269, -0.03833712637424469, -0.02037535049021244, 1.0055935382843018, 0.5610159635543823, -1.2420034408569336, -0.38378068804740906, -0.15767984092235565, 0.4387660324573517, 0.19478802382946014, 0.12932084500789642, 1.2703956365585327, 0.38672104477882385, -0.304236501455307, -0.05426158756017685, 0.7684478163719177, -0.10661669075489044, 0.3028024733066559, 0.1793026179075241, -0.007300452329218388, 0.5985292792320251, -1.1031728982925415, -1.1857497692108154, 0.46501538157463074, 0.43561792373657227, 0.97412109375, 1.0125434398651123, 0.8909807205200195, -0.6351293921470642, 0.010302921757102013, -0.2051871418952942, -0.3549397587776184, -1.1826627254486084, -0.2384737730026245, -0.34947025775909424, -1.0527104139328003, 0.4089697599411011, -0.7119215726852417, 0.638705849647522, 0.4082552492618561, -0.0768476203083992, 0.8989250063896179, 0.9555413722991943, 0.052933722734451294, -0.20479479432106018, 0.16548722982406616, 0.06664136052131653, -0.37808969616889954, 0.6753007769584656, 1.0789787769317627, -1.3174784183502197, 0.06791889667510986, -0.7609357833862305, 0.11695301532745361, 1.0033016204833984, -0.0801783874630928, 0.19851525127887726, -0.9149413704872131, -0.5353198051452637, 0.31209951639175415, 0.9794891476631165, 0.18246711790561676, -0.14230406284332275, -1.3339555263519287, 0.0667005255818367, 0.7025330662727356, 0.485914945602417, -0.6470066905021667, 1.2140971422195435, -0.35913363099098206, -0.10153121501207352, -0.2423115223646164, 0.4515734910964966, 0.8009278774261475, -0.8882138729095459, -0.35516202449798584, 0.2575295865535736, -0.11927914619445801, -0.8132653832435608, -0.18531711399555206, -0.06473046541213989, 0.8135263919830322, 0.26704421639442444, 0.5871334075927734, 1.507601022720337, -1.3684916496276855, -0.5213784575462341, -1.7264052629470825, 1.1331830024719238, 0.5278336405754089, 1.366194725036621, -0.01251817587763071, 0.8892936110496521, 0.21651193499565125, -0.7496501207351685, -0.4281476140022278, 0.24489793181419373, 0.6828673481941223, 0.5554811358451843, -0.5293713808059692, -0.6144155263900757, -0.3977970480918884, -0.7629695534706116, -1.059517741203308, -0.03085906431078911, 0.9027851819992065, -0.2318374067544937, -0.575023353099823, 0.4650309681892395, 0.5924601554870605, -0.7662166357040405, -0.43164730072021484, 0.0198957622051239, 0.25032752752304077, -0.1942494809627533, -0.4195658564567566, -0.6256666779518127, -0.40031516551971436, -0.45364469289779663, -1.178008794784546, -0.053211331367492676, 0.24815252423286438, -0.003910848870873451, 0.9359152317047119, -1.3439782857894897, -0.004269670229405165, -0.2891939580440521, 0.27062442898750305, 0.2951156795024872, -0.04402405768632889, -0.5206089019775391, 0.09343089908361435, -0.2717626988887787, 0.465525358915329, 0.06125982105731964, 1.2612156867980957, 0.42359983921051025, -0.11798960715532303, -0.195193350315094, -0.5525429844856262, 0.08059661090373993, -0.36893051862716675, -0.7840269804000854, 0.7501844167709351, -0.7017279863357544, 0.34572163224220276, -0.2140262871980667, 0.5184650421142578, 2.5242605209350586, 0.6096463203430176, 0.4058314561843872, 0.8230993747711182, -0.10130611807107925, -0.42724156379699707, 0.0638229250907898, 0.7657150030136108, -0.6723482012748718, -1.0959502458572388, 0.4237090051174164, 0.5635017156600952, 0.3662268817424774, 0.6393806338310242, 0.15058386325836182, -0.042114682495594025, -0.01676597259938717, -0.39227262139320374, 0.2609027028083801, 0.9611708521842957, 0.8658236265182495, 0.4495788812637329, 0.8369419574737549, -0.760163426399231, -0.9435818791389465, 0.9973615407943726, -0.41996294260025024, -0.16983066499233246, 1.0231590270996094, 0.5239112377166748, 0.9245768785476685, -1.6480746269226074, -1.1034495830535889, 0.36383992433547974, -0.4333369731903076, 0.3959326148033142, 0.40383511781692505, 1.3151403665542603, -0.7073869705200195, -0.30996832251548767, 0.49875614047050476, -0.16910342872142792, 1.3898063898086548, -0.2952715754508972, -0.4241141080856323, 0.5919723510742188, -0.37498801946640015, -0.2925960123538971, -0.7643496990203857, -0.692154586315155, 0.3352564871311188, -0.8021573424339294, 0.41786766052246094, 0.5447536706924438, -0.12169245630502701, 0.19037342071533203, -0.38735800981521606, -1.3713371753692627, 0.6712353825569153, -0.6587986350059509, 0.0065657878294587135, -0.39420440793037415, -0.3304957449436188, -0.34629255533218384, -0.591602087020874, -0.6639823317527771, -0.14584322273731232, -1.3043832778930664, -0.4822329878807068, 0.1991516649723053, -0.9473952651023865, 0.11243816465139389, 0.6421654224395752, 1.5945472717285156, 0.5722821950912476, 0.08756892383098602, -0.07328581809997559, 0.2660202383995056, -0.45416489243507385, 0.29999881982803345, 0.43707606196403503, -0.30935752391815186, -0.3860110938549042, -1.3421512842178345, -0.6750559210777283, 2.135284662246704, 0.8596106171607971, -0.5050432682037354, 0.8946183919906616, 0.4287593960762024, 1.4696800708770752, -0.0745217502117157, -0.8957578539848328, 0.47672906517982483, 0.08179187029600143, 0.767774760723114, 0.5943842530250549, -0.6238083243370056, -0.9377714991569519, -0.25463607907295227, -1.5264959335327148, 1.8159334659576416, -0.282582551240921, -1.0939244031906128, 0.24853511154651642, 0.5521637201309204, -0.16442061960697174, 0.7570517063140869, -1.0208293199539185, 0.24629901349544525, 0.20312289893627167, -0.7274557948112488, -1.4025403261184692, 0.6234802007675171, 0.24971769750118256, -0.08348235487937927, -0.2839314937591553, 1.0054054260253906, -0.483917772769928, -0.2990166246891022, -0.30013060569763184, 0.8147587180137634, 0.1180056482553482, 0.1670512706041336, 0.5012731552124023, -0.6417453289031982, -0.3293108642101288, -0.8410630822181702, 0.5784172415733337, 0.19097745418548584, 0.9490452408790588, 0.48248985409736633, -0.8027912378311157, 0.07954104989767075, -0.1658487766981125, -0.07816490530967712, -0.29252907633781433, -0.8895598649978638, 0.9797492623329163, 0.6170681118965149, -0.43506088852882385, 0.139741912484169, -0.2886422276496887, 0.10894594341516495, -0.11810248345136642, -0.9086014628410339, 0.5274472832679749, -1.7286500930786133, -0.5105113387107849, -0.41721686720848083, 0.02410123310983181, 0.27129772305488586, -0.3115789294242859, -0.1802176535129547, -0.4779692590236664, -1.3585762977600098, -0.6688176989555359, 0.38433337211608887, 0.6833924055099487, -0.9844368696212769, 0.15029984712600708, 0.24468161165714264, -1.6185673475265503, 0.5224356651306152, 0.12251172214746475, -1.3582096099853516, -0.6054222583770752, -0.9697888493537903, 0.5768495202064514, 0.3260849714279175, -0.23030535876750946, 0.03995443880558014, 1.3849878311157227, -0.593906581401825, -1.07401442527771, -0.5249931216239929, 0.1333065629005432, 1.7364412546157837, 1.0984253883361816, -0.5263963341712952, 1.5465247631072998, 0.2611408829689026, -1.0014945268630981, -0.5285016298294067, 0.7960230708122253, -1.1975367069244385, 0.12641200423240662, 0.8011530041694641, 0.21092794835567474, 1.2935901880264282, 1.253322720527649, 1.0555675029754639, 0.28381094336509705, 0.19384817779064178, 0.05641510337591171, -0.6594980955123901, -0.8210368752479553, -0.47247517108917236, 0.23157498240470886, -0.9799703359603882, -1.0717252492904663, 0.11787502467632294, -1.040475606918335, -0.9548390507698059, 0.4690777659416199, 1.0456111431121826, -0.6942880749702454, 0.13236097991466522, -0.8970465660095215, 0.5798283219337463, -0.3183656930923462, 0.904574453830719, 0.4033583104610443, -0.6840828657150269, 0.1604982614517212, -0.35737624764442444, 0.217925027012825, -0.6298693418502808, -0.3948764503002167, -0.4704970419406891, 0.4587186276912689, -0.4909341633319855, 0.13819026947021484, 0.30490174889564514, -1.1242337226867676, -0.5011959671974182, 2.0270872116088867, 0.9244890809059143, -0.1829516738653183, -0.01660047471523285, 0.3240054249763489, -0.18858937919139862, 0.26991307735443115, -0.3285226821899414, 0.5172613859176636, -0.3395320177078247, 0.23101763427257538, 0.2912493646144867, 0.2524893283843994, -0.49733766913414, 0.2894989550113678, -0.27997851371765137, 0.61203533411026, 0.5261041522026062, 0.15687565505504608, -0.6640443801879883, 1.0366108417510986, 0.5264501571655273, -0.5359792709350586, 0.6197272539138794, 0.11120209097862244, 0.07454345375299454, -0.0025563365779817104, 0.20742659270763397, 0.7180266380310059, -0.32161620259284973, 0.7672531008720398, 0.4190945625305176, -0.1438342034816742, 0.3788442611694336, -0.8779190182685852, -2.24458909034729, -0.2745382487773895, -0.5159772634506226, 0.3621900975704193, 1.2614001035690308, -0.6948618292808533, -0.3316681683063507, -0.1344032883644104, 0.33035922050476074, 0.20558597147464752, -0.6852940917015076, -0.15813174843788147, -0.3028011620044708, 0.7924110889434814, 0.5220258831977844, -0.37392324209213257, 1.0345913171768188, -0.24172528088092804, -0.45553839206695557, -0.2362668663263321, 0.1418754905462265, 0.09861134737730026, 0.7245520353317261, 0.42022570967674255, -0.4336263835430145, -0.4175356924533844, -1.0387890338897705, -0.7332808375358582, 0.36475852131843567, -0.4217292368412018, -0.03722192347049713, -0.32233959436416626, -1.0112618207931519, 0.052206020802259445, 0.6648282408714294, 0.548729419708252, -0.579878568649292, -0.43156304955482483, -0.9298122525215149, 0.10053636133670807, -0.39577439427375793, 0.3827069401741028, -0.9731676578521729, 0.6173298954963684, 0.360920250415802, -0.490560919046402, -0.9340837001800537, -0.8202330470085144, 0.4775097668170929, -0.2152673751115799, 0.4409470558166504, -0.4671550989151001, -0.2552246153354645, 0.3166605532169342, -0.9058263301849365, 0.14794811606407166, 0.24081537127494812, -0.25363269448280334, 0.30619385838508606, -0.9527626633644104, -0.4567176103591919, -0.4045204222202301, 0.1380886435508728, 0.8800196647644043, 0.23378290235996246, -0.18551211059093475, 0.7217636108398438, -1.194095253944397, 0.19705519080162048, 0.38771623373031616, -0.3032333254814148, 0.7204533815383911, 1.5154547691345215, 1.6921952962875366, -0.2863461971282959, 0.07009118795394897, 0.1437784731388092, 0.9141570925712585, -1.3262990713119507, -0.5885738730430603, -1.5706937313079834, -0.36673951148986816, -0.3705744445323944], [0.3962858319282532, 1.3133938312530518, -1.943106770515442, 0.15678362548351288, -0.03309934213757515, 0.7109832167625427, 0.4967532157897949, 1.309700608253479, 0.4152916967868805, -0.3820559084415436, -1.7473093271255493, 0.01977180317044258, 1.3709096908569336, -0.2741328179836273, 0.4282246530056, 1.0410223007202148, 1.1751435995101929, 0.6194279193878174, 0.16099412739276886, -0.4234294593334198, -0.5678750276565552, 0.08369895070791245, -0.3339288830757141, 0.5092735290527344, 0.4019964933395386, 0.6246607303619385, -1.0314950942993164, 0.10334330797195435, -1.693489670753479, -1.1752607822418213, 0.5332040786743164, -1.0797029733657837, 0.9945679306983948, 0.02784249745309353, -0.8730506300926208, -0.39343443512916565, 0.5187749862670898, 0.06979286670684814, -0.1293121725320816, 0.16785651445388794, 1.6561800241470337, -0.0551450252532959, -0.5594716668128967, -0.7146806716918945, 1.52717924118042, -0.2206522822380066, 0.9982495903968811, -1.712990164756775, -0.2444716989994049, -0.3656139373779297, -0.06630764156579971, 0.7778615355491638, 0.42744165658950806, 1.3055821657180786, 1.3302083015441895, -0.6942533254623413, 0.2698744237422943, -1.1541842222213745, 0.5180325508117676, 0.06578313559293747, 1.3496577739715576, -0.08328087627887726, -0.5350239872932434, 0.8398579359054565, 0.6337831616401672, 0.2850461006164551, 0.3444223999977112, 0.18770655989646912, 0.09839864820241928, -0.12559159100055695, 0.6630089282989502, 0.21759368479251862, -0.4700584411621094, -0.2933550775051117, -0.2241692841053009, -0.32096317410469055, 0.6320133805274963, 0.2425990253686905, -0.08056800067424774, 0.2970018684864044, -1.126060962677002, 0.16975091397762299, 0.49974992871284485, 0.556918203830719, -0.17245331406593323, 0.1660112738609314, 0.3365029990673065, -0.9902400374412537, -0.7125476002693176, 1.7602468729019165, -0.1862594336271286, 0.2693798840045929, 0.0011614570394158363, 0.6934341192245483, -0.09982067346572876, -0.2852962613105774, -0.6359682679176331, 0.1417752504348755, -0.5559853315353394, -0.9786386489868164, -0.49983900785446167, -1.1259139776229858, 0.4060579240322113, 1.3659436702728271, 1.0104777812957764, 1.3632692098617554, -0.039063893258571625, -1.2965964078903198, -0.6060433387756348, 0.41855350136756897, -0.0843186154961586, 0.9536201357841492, -0.7889807224273682, -0.7754979133605957, -0.21138298511505127, 0.6405730843544006, 0.2905142903327942, -0.37324389815330505, 0.6722742319107056, 0.9907371997833252, -1.074195384979248, 0.3988221287727356, -0.5093489289283752, 0.5501902103424072, 0.24315506219863892, 0.6164661049842834, -0.12528730928897858, -0.10080615431070328, 1.1589950323104858, 0.4340793788433075, 0.32934385538101196, -0.294609397649765, -0.019297191873192787, 1.4060148000717163, -0.38591068983078003, 1.4689102172851562, -0.4477272927761078, -0.9729834794998169, -0.10153834521770477, -0.3061795234680176, 0.7826729416847229, -0.27908575534820557, 0.5336278080940247, -0.769191563129425, 0.09773233532905579, -0.4278959631919861, 0.35512006282806396, 0.16491815447807312, -0.673876166343689, 0.6074426770210266, -1.13462233543396, 0.21739618480205536, -0.42224210500717163, 0.900787889957428, 0.7562497854232788, 0.02353009395301342, 0.8868350386619568, 0.18100246787071228, 0.24135488271713257, 0.8356390595436096, 0.7942565679550171, -0.21991178393363953, -0.047476328909397125, 0.9430987238883972, 0.025133375078439713, -0.19145815074443817, 0.15329627692699432, 0.0478411540389061, 0.16912396252155304, 0.7169951796531677, -0.7981787323951721, -1.250536561012268, -0.2594597637653351, 1.255969524383545, -0.7319431900978088, -0.7240817546844482, 0.4643639028072357, -0.6227765083312988, -0.5125592947006226, -1.1488757133483887, 1.5789119005203247, -0.6301110982894897, 0.5964070558547974, 0.19012291729450226, -0.04757779836654663, -0.22873710095882416, -0.28988561034202576, 0.31418246030807495, -0.6696208119392395, -0.5733467936515808, -0.807201087474823, -0.8599209785461426, -1.1046316623687744, 0.23105968534946442, 0.06567811965942383, -0.7129245400428772, 0.27658694982528687, -0.35385170578956604, -0.9466527104377747, -0.01578023098409176, 0.4107711613178253, -0.25467541813850403, -0.5520752668380737, -0.46895501017570496, 0.08232865482568741, 0.21744002401828766, -0.5293457508087158, 0.8689691424369812, -0.7877612709999084, 1.0198659896850586, 0.9804576635360718, 0.08332479000091553, -0.3975844383239746, 0.7059577107429504, 0.6756587028503418, -0.4848034679889679, -0.03662543371319771, 0.11236362904310226, 0.3871326148509979, 0.0939260944724083, 0.47043874859809875, 0.34402838349342346, 0.45001688599586487, 0.10947823524475098, 0.5083630084991455, -0.05849459394812584, -1.352970838546753, -0.7927961349487305, -1.3408328294754028, -0.7914049625396729, -0.5882207751274109, -0.8255107998847961, 0.9571853876113892, 0.28410470485687256, -0.5996924042701721, 0.7932510375976562, 0.5898575186729431, 0.14098061621189117, 0.5064585208892822, 0.462100625038147, 0.12050975859165192, 0.18077367544174194, -0.23659177124500275, -0.9741078019142151, -0.8999341726303101, -0.05925604701042175, 0.893757700920105, 0.2659338414669037, -0.1771802455186844, 1.1058523654937744, 0.5884698629379272, 0.023929236456751823, 0.9500610828399658, 0.5620266795158386, -0.5925596356391907, -1.336228609085083, -1.0847464799880981, -0.7759203910827637, -0.4219582974910736, 1.8478692770004272, 0.9155582785606384, -1.1775221824645996, 0.19048763811588287, -0.5498197078704834, 0.3275319039821625, 0.43459418416023254, -0.28073468804359436, -1.2022483348846436, 0.43542903661727905, 0.23528234660625458, -0.3762476146221161, 1.0101170539855957, 0.5483477711677551, 0.4374265670776367, -0.5635681748390198, -0.7287247180938721, -0.6380802989006042, 0.05776160955429077, -0.17175336182117462, 0.8050972819328308, 0.16238166391849518, -1.0737087726593018, -0.5072928071022034, 0.12745174765586853, 0.07093754410743713, -1.1182271242141724, -0.2798212766647339, 1.4558287858963013, 0.6988541483879089, -0.011458424851298332, 0.20408514142036438, 0.626448929309845, 0.14828480780124664, 0.08840388804674149, 0.7741037607192993, 0.5833527445793152, 0.7457366585731506, -0.07882077991962433, -0.8370697498321533, 0.42652907967567444, 0.12494455277919769, 0.7458517551422119, 0.6519664525985718, 0.7940945029258728, -0.45187973976135254, -0.14944879710674286, -0.3582329750061035, -0.48558706045150757, -1.475928783416748, -0.45971325039863586, -0.9744833707809448, -1.0169848203659058, 0.2457629293203354, -0.5265357494354248, -0.04326368868350983, -0.1536416858434677, 0.06859532743692398, 0.08549992740154266, 1.0439354181289673, -0.16966423392295837, 0.004023173823952675, -0.05339931324124336, 0.2590720057487488, -1.3776230812072754, 0.6459642052650452, 0.25923988223075867, -1.44905686378479, 0.011354953050613403, -0.20550061762332916, -0.5874308943748474, 0.4263310432434082, 0.4948349893093109, -0.09398845583200455, -1.1259390115737915, -1.031908631324768, 0.09456022828817368, 0.8515099883079529, 0.015959370881319046, -0.6194331049919128, -1.07638680934906, 0.9109737277030945, 0.3260195255279541, 0.26600024104118347, 0.1845308393239975, 1.0085219144821167, -0.6972283124923706, -0.07462820410728455, -0.732764720916748, 0.5735649466514587, 1.2600444555282593, -0.7798131108283997, -1.0052610635757446, 0.10560852289199829, -0.26983070373535156, -0.5081531405448914, 0.13489606976509094, -0.20576168596744537, 0.7578648328781128, 0.1460045427083969, -0.04020998626947403, 1.4790326356887817, -0.8935878276824951, 0.2956002950668335, -1.493491768836975, 0.6859679222106934, 0.9656694531440735, 0.4935983419418335, 0.30143553018569946, 0.6177698969841003, 1.0849053859710693, -1.077770709991455, -0.4853537678718567, -0.19600854814052582, 1.036115050315857, 0.5144079327583313, -0.5599780678749084, -0.5279433727264404, -1.1055541038513184, -0.5330044627189636, -1.3831689357757568, -0.7401023507118225, 0.4390634000301361, -0.3222472667694092, -0.44881558418273926, 0.20758786797523499, 0.5317761301994324, -0.348355233669281, 0.15710003674030304, 0.016831113025546074, -0.22282132506370544, -0.39216747879981995, -0.07022399455308914, -0.3566969335079193, 0.0808849036693573, 0.29796361923217773, -0.6258335113525391, 0.09423983097076416, 0.5908640027046204, 0.28779882192611694, 0.8888556957244873, -1.913703441619873, 0.1303609311580658, -0.7240460515022278, 0.9869588017463684, -0.32572680711746216, 0.09955757856369019, 0.5911394357681274, -0.05518345907330513, -0.3011496067047119, -0.3926335275173187, -0.4191192388534546, 1.2406612634658813, -0.05664723739027977, 0.1724925935268402, -0.5888187885284424, 0.0431198850274086, 0.09998461604118347, -1.237457275390625, -0.10811607539653778, 0.6147673726081848, -0.2935717701911926, -0.07787499576807022, -0.07391880452632904, -0.031828898936510086, 1.061151146888733, 0.43038511276245117, 0.34189659357070923, 0.8891910314559937, -0.288400262594223, -0.22678057849407196, 0.24708925187587738, 0.856774091720581, -0.8114845752716064, -0.2725712060928345, 0.4683276116847992, 0.3472083806991577, 0.32161059975624084, 0.2178684026002884, 0.4033835828304291, 0.023260364308953285, -0.33201864361763, -0.45511943101882935, 0.4190422594547272, -0.19385483860969543, 1.250054955482483, 0.5000846982002258, 0.9526503086090088, -0.38948121666908264, -0.0009988890960812569, 0.8576720952987671, -0.33453720808029175, 0.2566443979740143, 0.8542866706848145, 0.3180066645145416, 1.4093008041381836, -1.372727870941162, -0.840028703212738, 0.3362283706665039, 0.09185022860765457, 0.6292198300361633, 0.9684851765632629, 0.7236644625663757, -0.7072621583938599, 0.24422207474708557, 0.009258708916604519, -0.47335243225097656, 1.1618783473968506, -0.27230486273765564, -0.0497918464243412, 0.12828364968299866, -0.23088666796684265, 0.1365765482187271, -0.9230043292045593, -0.6125823259353638, 0.5935297608375549, -0.9345644116401672, -0.3121764659881592, 0.5892401933670044, 0.34124457836151123, 0.36950233578681946, -0.4961566627025604, -0.9540590643882751, 0.5537625551223755, -1.1015933752059937, -0.15239059925079346, -0.27573251724243164, -0.23875541985034943, -0.987360954284668, -0.23126541078090668, -0.9258472919464111, 0.3421936333179474, -0.8189088702201843, -0.5088274478912354, 0.00090753473341465, -0.969883918762207, -0.46149176359176636, 0.5051025152206421, 0.7137001752853394, 0.7178589701652527, -0.46986123919487, 0.6433678269386292, 0.5530861020088196, -0.38567686080932617, 0.6378580927848816, 0.900873601436615, -0.2121247500181198, -0.9315632581710815, -0.014674459584057331, -1.04514479637146, 0.9649642109870911, -0.06171511858701706, -0.3637757897377014, 0.13789483904838562, 0.4350127875804901, 1.7065224647521973, -0.4263363778591156, -1.0982820987701416, 0.7453987002372742, -0.5625352263450623, 1.02237868309021, 0.3216322660446167, -0.8118060231208801, -0.6301606893539429, -0.6767432689666748, -1.5362629890441895, 1.4307345151901245, -0.27653974294662476, -0.9500418305397034, 0.7284489870071411, 0.8584208488464355, -0.297590434551239, 0.5790402889251709, -0.38044267892837524, 0.16521327197551727, 0.36224764585494995, 0.07460030168294907, -1.493972659111023, -0.08293657749891281, 1.085755467414856, 0.15225836634635925, -0.7338662147521973, 0.02100498229265213, 0.3256474435329437, 0.5125820636749268, 0.2588021755218506, 0.5208584666252136, -0.6307435631752014, 0.32530948519706726, 0.2559840977191925, -0.8494938611984253, -0.19113999605178833, -0.4178997278213501, 0.4064238369464874, -0.6451864838600159, 0.8992460370063782, -0.23687458038330078, -0.052700795233249664, -0.03457575663924217, -0.6853183507919312, -0.2928646206855774, 0.955936849117279, -0.22986820340156555, 1.2915692329406738, 0.9861248135566711, -0.7486158609390259, 0.19435515999794006, 0.1824093759059906, -0.47679010033607483, -0.6390401124954224, -0.807028591632843, 0.9395883083343506, -1.5236166715621948, -0.5414440631866455, -0.5824662446975708, -0.7115604877471924, -0.08906100690364838, 0.017451545223593712, -0.22616271674633026, -0.5422959327697754, -1.1735868453979492, -0.19815081357955933, 0.815775454044342, 1.5059887170791626, -0.6756119132041931, 0.10466109961271286, -0.45776593685150146, -1.7569793462753296, 0.14953571557998657, 0.08793946355581284, -1.059607982635498, -0.5754478573799133, -1.2521854639053345, 0.3717971444129944, -0.23819410800933838, 0.1289660483598709, -0.009977761656045914, 0.5558599233627319, -0.753692626953125, -0.9459208250045776, 0.19201934337615967, -0.33308905363082886, 0.7709351778030396, 0.5569440126419067, -0.9213292002677917, 1.059507131576538, 0.23316003382205963, -0.7526535391807556, -0.522355854511261, 0.6336216330528259, -0.9240902066230774, 0.2571653127670288, -0.044951431453228, -0.10954765975475311, 0.9487521648406982, 0.5991102457046509, 0.629715621471405, 0.31137484312057495, 0.8438720107078552, 1.1297600269317627, -0.6555406451225281, -0.8863743543624878, -0.491350382566452, 0.12889297306537628, -1.0234642028808594, -0.44448134303092957, -0.42763856053352356, -0.8237630128860474, -0.6116710901260376, 0.5656362175941467, 0.6228344440460205, -1.7801165580749512, 0.46669647097587585, -0.47321343421936035, -0.4064585268497467, 0.16038978099822998, 0.22551235556602478, -0.17599426209926605, -1.2208442687988281, 0.4175749123096466, -0.03851744160056114, -0.01147526502609253, -0.49874764680862427, 0.03160489723086357, -0.7041454911231995, 0.9903755784034729, 0.48651784658432007, 0.08024697005748749, -0.001801895909011364, 0.12461190670728683, -0.3370112478733063, 1.4003486633300781, 0.6505115032196045, -0.19712135195732117, 0.20449046790599823, -0.19834063947200775, -0.7551928162574768, 0.5298328995704651, -0.9781680703163147, 0.8493176102638245, -0.3215007483959198, 0.9336411356925964, -0.5776326656341553, 0.5277378559112549, -0.14133742451667786, 0.820970892906189, -0.056123584508895874, 0.8213499784469604, -0.25992536544799805, -0.06562758982181549, -0.8091651797294617, 0.7931032776832581, 0.6396182179450989, -0.754690408706665, 0.4043055772781372, 0.19937272369861603, -0.014892964623868465, 0.028197843581438065, 0.18412096798419952, 0.4621145725250244, -0.5848251581192017, 0.10987287014722824, -0.3260596990585327, -0.2513456642627716, 0.05173072591423988, -0.07135923951864243, -2.1852059364318848, -0.15480822324752808, -0.08508624881505966, 0.15692245960235596, 0.910140872001648, -0.45159730315208435, -0.18378372490406036, 0.4097851514816284, -0.04834327474236488, 0.6414191126823425, -0.4657806158065796, 0.1416260153055191, -0.0115975858643651, 0.850638210773468, 0.07744809240102768, -0.22193866968154907, 2.1595206260681152, 0.1210632249712944, -0.41272056102752686, -0.22603145241737366, -0.19752436876296997, 0.001227333676069975, 0.44951680302619934, -0.010041406378149986, -0.057903677225112915, 0.29916253685951233, -0.49740999937057495, -0.5656627416610718, 0.7767704725265503, 0.46670225262641907, 0.6928021311759949, -0.2527262568473816, 0.1143089011311531, -0.2921467423439026, 0.3213386535644531, 0.6103518605232239, -0.502313494682312, -0.3320120573043823, -1.0067251920700073, -0.1755957454442978, 0.2707769274711609, 0.22020602226257324, -0.8414791226387024, 0.892204225063324, -0.09467913210391998, 0.0463026687502861, -0.03293753042817116, -0.21974535286426544, 0.7197897434234619, -0.2293168306350708, 0.45954567193984985, 0.054743919521570206, -0.5915724039077759, -0.33679139614105225, -0.5156564116477966, -0.4453730583190918, 0.4172891676425934, 0.14919692277908325, 0.5551654696464539, -0.37064409255981445, -0.7448119521141052, -0.653372049331665, -0.19751667976379395, 0.17260156571865082, 0.3849134147167206, -0.44238612055778503, -0.7439978122711182, -1.0620373487472534, 0.7742651700973511, 0.5987975001335144, -0.06622238457202911, 0.5693193674087524, 0.8932269811630249, 2.136892795562744, 0.3234565854072571, -0.540453314781189, 0.13113483786582947, 1.7503377199172974, -0.6223116517066956, -0.518896758556366, -0.9957227110862732, 0.16872690618038177, -0.3787596523761749], [-0.06787922233343124, 0.5141928195953369, -2.030241012573242, -0.5790694952011108, 0.21699588000774384, 0.8602153658866882, 1.4868519306182861, 0.6639806032180786, 0.3178864121437073, -0.05214517191052437, -1.112276554107666, 0.022076314315199852, 1.1447257995605469, 0.2809597849845886, 0.49289679527282715, -0.10474137961864471, 1.2515124082565308, -0.17916709184646606, 0.400726318359375, 0.5211912989616394, -1.4797017574310303, 0.3383064866065979, -0.2984619438648224, 0.32200297713279724, 0.7801282405853271, 0.41181501746177673, -1.4632508754730225, -0.5038894414901733, -2.1603152751922607, -1.2710182666778564, 0.6526041626930237, -0.8374022841453552, 0.12631575763225555, 0.23229075968265533, -0.1286839246749878, 0.19550403952598572, 1.3380703926086426, 0.4438171684741974, -0.26158449053764343, 0.32815706729888916, 2.8461849689483643, -0.5017868280410767, 0.03390052169561386, -1.3868367671966553, 0.3102015256881714, 0.3870314657688141, 0.7942008376121521, -1.6003433465957642, -0.22692418098449707, -0.7109941244125366, 0.2671121060848236, 0.3176686763763428, 0.7936835289001465, 1.4079614877700806, 0.8973158597946167, -0.12601518630981445, 0.6930097937583923, -0.7073940634727478, 1.1741548776626587, 0.35875946283340454, 0.4797714054584503, -0.8059515357017517, -0.8054541945457458, 1.2973570823669434, 0.5661278963088989, -0.4367789626121521, 0.032901231199502945, 0.6593225002288818, 0.42233237624168396, -0.10930796712636948, 0.6732262372970581, -0.2958551347255707, 0.44362854957580566, 0.6015603542327881, -1.2563819885253906, -0.4538031220436096, 0.1276818960905075, 0.561698317527771, 0.28545302152633667, 1.2914077043533325, -0.9666677713394165, 0.06698402762413025, 0.5308619737625122, 0.18579211831092834, 0.31859713792800903, 0.9538842439651489, 0.3542146384716034, -0.876368522644043, -0.13603591918945312, 1.765837550163269, -0.49899378418922424, 0.3559540808200836, 0.10374267399311066, 0.43845605850219727, 0.5776225328445435, 0.6035536527633667, -0.8625026941299438, 0.050386104732751846, -0.67794269323349, -0.9926950931549072, -0.4258122742176056, -1.2898367643356323, 0.12616074085235596, 0.15784144401550293, 0.6471037268638611, 1.0930124521255493, 0.40398892760276794, -0.29079753160476685, -0.6070270538330078, -0.359858900308609, -0.886715292930603, 0.8166677355766296, -0.8824401497840881, -0.6291993856430054, -0.525510847568512, 0.8712562918663025, -0.01667710207402706, -0.3267936110496521, 0.753092348575592, 0.5903463363647461, -1.429984211921692, 0.4915875494480133, 0.06241358444094658, 0.30462607741355896, 0.5046751499176025, 0.7794460654258728, -0.64259272813797, -0.7859805822372437, 1.0087627172470093, 0.05232245847582817, 0.31793880462646484, -1.0214842557907104, 1.0024429559707642, 0.6277128458023071, -1.180804967880249, 1.0095654726028442, -0.11138801276683807, -1.0575534105300903, -0.2985555827617645, -0.3807455897331238, 1.0317115783691406, -0.14821182191371918, 0.3316166400909424, -0.47811463475227356, 0.09253263473510742, -1.0940731763839722, 0.3240428566932678, -0.02450203336775303, -1.364598035812378, -0.18663844466209412, -1.1343334913253784, 0.46520572900772095, -0.07342521101236343, 1.0151057243347168, 0.4530494511127472, -0.4609777629375458, 0.5347864031791687, -0.06329639256000519, 0.04605971649289131, 0.9061278700828552, 0.9853665828704834, 0.2414560317993164, -0.6697118282318115, 0.828701376914978, 0.02550129033625126, -0.5298509001731873, -0.3390195071697235, 0.43278905749320984, 0.24279733002185822, 1.079625129699707, -0.1820884346961975, -0.9969445466995239, -0.50525963306427, 0.17068758606910706, 0.1308085322380066, -1.0732924938201904, 1.2767667770385742, -0.7932870984077454, -0.3323882520198822, -0.7715719938278198, 0.6376795768737793, -0.16943243145942688, -0.024731852114200592, -0.11694035679101944, 0.11999670416116714, -0.6955801844596863, 0.33252882957458496, -0.05483962595462799, -0.3700387179851532, -0.7407239079475403, -0.9372338652610779, -0.09590556472539902, -0.9141508936882019, -0.5550578236579895, -0.1876431256532669, -0.6636084914207458, 0.6731207370758057, -0.835732102394104, -0.7395849227905273, 0.31048861145973206, -0.5178166627883911, -0.15040919184684753, -1.4106227159500122, -0.060109902173280716, -0.6305399537086487, -0.10888119041919708, -0.9066998958587646, 0.7095953226089478, -0.16798238456249237, 0.5400098562240601, 0.4014739990234375, 0.1980888992547989, -0.8853958249092102, 1.313025712966919, 0.010784688405692577, -1.1710968017578125, 0.0985885038971901, 0.03476492315530777, -0.17253680527210236, 0.16768722236156464, 0.284793496131897, -0.06008254364132881, 0.4962655305862427, 0.47542425990104675, 0.24452388286590576, 0.259714812040329, -0.9242895841598511, -1.1937261819839478, -1.6574363708496094, 0.6855887174606323, -1.182869553565979, -1.5502126216888428, 1.079973816871643, 0.09024038910865784, -0.7140721082687378, 0.37813714146614075, 0.7794640064239502, 0.0005728071555495262, 0.6971840858459473, -0.012759555131196976, 0.44810351729393005, -0.06387496739625931, 0.3046553134918213, -0.934874415397644, -0.8039772510528564, -0.0851861834526062, 0.7849498391151428, -0.1783384084701538, 0.22619104385375977, 1.712761640548706, 0.2654583156108856, 0.38305535912513733, 0.34103450179100037, 0.40986987948417664, -1.060049295425415, -0.4348967969417572, -0.9398434162139893, -0.044121116399765015, -0.31335654854774475, 2.1681697368621826, 1.207593560218811, -0.5096590518951416, 0.25435301661491394, 0.5183034539222717, -0.035297006368637085, -0.37774765491485596, -0.8777212500572205, -0.7706273794174194, 0.26013821363449097, 0.1448540836572647, 0.13973954319953918, 0.6092991828918457, -0.5683364868164062, 0.6095534563064575, -0.623775064945221, -0.7159141302108765, -0.5390834808349609, 0.32415857911109924, -0.14264577627182007, 1.301530122756958, 0.7277615070343018, -1.2260048389434814, -0.7929824590682983, -0.27172523736953735, 0.3452998101711273, 0.138267382979393, -0.1548456847667694, 1.2050151824951172, 0.852056086063385, 0.015633633360266685, -0.0065953657031059265, 1.198723554611206, -0.3106768727302551, 0.21834735572338104, 0.3381097912788391, 0.12658880650997162, 0.6650357246398926, -0.9409930109977722, -0.6553587317466736, 0.3737177848815918, 0.17354832589626312, 0.7147194147109985, 1.1006460189819336, 0.7632840871810913, -0.403563916683197, -0.23348337411880493, -0.2677490711212158, -0.6848568916320801, -0.8997352719306946, -0.2169431895017624, -0.679198682308197, -0.7811475396156311, 0.5759585499763489, -0.4707493185997009, -0.09062116593122482, 0.1363891363143921, 0.11300507932901382, 0.9975531101226807, 0.3738641142845154, 0.48325255513191223, 0.39392977952957153, 0.3386521637439728, 0.24758172035217285, -0.7777512669563293, 0.6292132139205933, 0.18215830624103546, -1.2937536239624023, -0.006333548575639725, -0.24195484817028046, -0.4577637314796448, 0.8491235375404358, 0.3592463731765747, -0.2540588974952698, -0.9612175226211548, -0.7953991293907166, 0.5926340818405151, 0.7283337116241455, -0.35046306252479553, -0.2540609538555145, -1.088741421699524, 1.0211271047592163, 0.6384501457214355, 0.33961591124534607, -0.2615140378475189, 0.7635145783424377, -0.4906598627567291, -0.29042956233024597, -0.5759304761886597, 0.012694645673036575, 0.9466135501861572, -0.1550510972738266, -0.4153916537761688, 0.40660396218299866, -0.31446096301078796, -0.19810152053833008, 0.05011596158146858, 0.2846904993057251, 0.9649132490158081, -0.3796621263027191, 0.161561518907547, 1.9093819856643677, -0.38199135661125183, -0.08603076636791229, -1.3318783044815063, 0.9114680886268616, 0.2496161162853241, 0.991404116153717, 0.2414824217557907, 0.7194324731826782, 0.5893014073371887, -0.9013292193412781, 0.1842089295387268, -0.1873534768819809, 1.6047048568725586, 0.05590944364666939, -0.3896189332008362, -1.2519428730010986, -0.44461876153945923, -0.9465669989585876, -0.5917708873748779, -0.19771113991737366, 0.0759359672665596, -0.08714427798986435, -0.4327491223812103, 0.6632602214813232, 0.7550923824310303, -0.5200082659721375, -0.18463508784770966, 0.15070119500160217, 0.30206820368766785, -0.4408855438232422, -0.5397597551345825, -1.6195042133331299, -0.18382671475410461, -0.21960823237895966, -1.4705675840377808, 0.361280620098114, 0.8232315182685852, -0.2778988480567932, 1.4416171312332153, -1.4166465997695923, -0.3598827123641968, 0.34325557947158813, 0.2493085414171219, 0.3915984332561493, 0.3553493022918701, 0.14325204491615295, 0.05582941323518753, -0.68096524477005, 0.36103224754333496, 0.19000379741191864, 1.8196076154708862, -0.15810611844062805, -0.11616263538599014, -0.5516816973686218, -0.01561546977609396, 0.35800987482070923, -0.3709966540336609, -0.9648395776748657, 0.582116961479187, -0.6890820264816284, 0.2539326250553131, 0.24064810574054718, -0.0016420134343206882, 2.342193603515625, 0.054118141531944275, 0.4133547246456146, 0.6761922240257263, -0.6288062334060669, -0.42404302954673767, 0.008535467088222504, 0.2380780428647995, 0.13515175879001617, -0.557761013507843, 0.46119827032089233, 0.10438203066587448, -0.611205518245697, 0.7068552374839783, 0.5984833240509033, 0.14945049583911896, -0.6472207307815552, -0.22075027227401733, -0.00022538891062140465, 0.2100125551223755, 0.9479349851608276, 0.4232999086380005, 0.7878090739250183, -0.05521784722805023, -0.5666470527648926, 0.8730033040046692, -0.14191468060016632, -0.3041851222515106, 0.8320522308349609, 0.364651083946228, 1.1149259805679321, -1.430111050605774, -0.7563378810882568, 0.7648311257362366, 0.11614501476287842, 0.6280744671821594, 0.5475125312805176, 0.8680479526519775, -0.4899510145187378, -0.2741035521030426, 0.8072724342346191, -0.43513023853302, 1.4395891427993774, 0.4846305847167969, -0.3107281029224396, 0.2956218421459198, -0.07326778024435043, -0.2919203042984009, -0.2394481897354126, -1.15826416015625, -0.3801848292350769, -0.5866567492485046, -0.28888505697250366, 0.5569155812263489, -0.421978622674942, 0.5748370289802551, -0.07857895642518997, -0.6697553396224976, 0.32134294509887695, -0.43290257453918457, 0.06918712705373764, -0.3119974732398987, -0.32005032896995544, -0.6558403968811035, -0.6850596070289612, -0.4402658939361572, 0.17356927692890167, -0.6702853441238403, -0.903433620929718, 0.400322824716568, -1.270322322845459, -0.13634459674358368, 1.2360363006591797, 1.2559490203857422, 0.8096550703048706, 0.24282649159431458, -0.21006645262241364, 0.5313640236854553, -0.5813798308372498, 0.07771636545658112, 0.8227763772010803, -0.838105320930481, -0.376345694065094, -1.3635798692703247, -0.6376891136169434, 2.0937442779541016, 0.23482421040534973, -0.4169619083404541, 0.5467150211334229, 0.5627460479736328, 1.2770376205444336, 0.25079962611198425, -0.8189818263053894, 0.47319385409355164, -0.10740603506565094, 0.3596377968788147, 0.5392024517059326, -0.02216639183461666, -1.024155855178833, -0.5349507927894592, -1.8717200756072998, 1.1291576623916626, 0.15628837049007416, -1.4965317249298096, 0.6987751126289368, 0.3544424772262573, -0.25780871510505676, 0.2970188558101654, -0.6194812655448914, 0.3197721242904663, 0.6723357439041138, -0.15334659814834595, -1.0421556234359741, -0.20274639129638672, 0.03559042140841484, 0.2725767493247986, -0.5324379205703735, 0.6802260279655457, 0.21003776788711548, -0.1695438027381897, 0.1479049026966095, 1.1408977508544922, 0.370500773191452, 0.5781910419464111, 0.3567529022693634, -0.4996950328350067, 0.04861341416835785, -1.0037864446640015, -0.3104292154312134, -0.4362753927707672, 0.049212969839572906, -0.03920580819249153, -0.18715980648994446, -0.3177030682563782, 0.1684151440858841, -0.36896830797195435, 0.5349982380867004, -1.0620028972625732, 0.8803781270980835, 0.9529706239700317, -0.1859460026025772, -0.3440987765789032, -0.23582316935062408, -0.03227094188332558, -0.002854669466614723, -0.8356791138648987, 0.42263492941856384, -1.704102635383606, 0.1453782021999359, -0.7805761694908142, -0.06625611335039139, 0.16897355020046234, -0.45376357436180115, -0.14209672808647156, -0.8517569899559021, -1.0257409811019897, -0.759483814239502, 0.2492046356201172, 0.40744447708129883, -0.5880594849586487, 0.34932973980903625, 0.12512926757335663, -1.3462746143341064, 0.3543582260608673, 0.013588432222604752, -0.9321718811988831, -0.5031525492668152, -1.275700569152832, 0.5587443113327026, -0.8640565276145935, 0.3843182325363159, -0.1227598637342453, 0.5256163477897644, -0.5761485695838928, -1.2467092275619507, 0.0039086733013391495, -0.15674522519111633, 0.7055177092552185, 1.1279826164245605, -0.7959533333778381, 1.1561635732650757, 0.28958043456077576, -1.062769889831543, -0.64295494556427, 0.8158650994300842, -0.5785141587257385, -0.0748482495546341, 0.3533042371273041, -0.023350199684500694, 0.9143818616867065, 1.4380396604537964, -0.3526899814605713, 0.9414277672767639, 0.9057365655899048, 0.301712304353714, -1.2051548957824707, -0.14075765013694763, -0.227446511387825, -0.10298272222280502, -1.311742901802063, 0.17924973368644714, -0.7687973976135254, -1.2206822633743286, -0.4735342264175415, 0.9906395673751831, 0.9347751140594482, -1.0204226970672607, 0.09153496474027634, -0.6837045550346375, -0.2941361963748932, -0.3737918734550476, 0.07558690756559372, -0.005010763183236122, -1.0199270248413086, 0.8389229774475098, 0.02069035731256008, 0.0030502798035740852, -0.34413328766822815, -0.5264964699745178, -0.5358373522758484, 0.5199018120765686, -0.7216163277626038, 0.7681891322135925, 0.8621741533279419, -0.3641867935657501, -0.3682241141796112, 2.4002087116241455, 0.9154620170593262, -0.4631790518760681, -0.4984738528728485, 0.1140117347240448, -0.47328898310661316, 0.5950725078582764, -0.5542408227920532, 0.6144161224365234, -0.4320199489593506, -0.052409037947654724, 0.2016182243824005, -0.3822299540042877, -0.9706814885139465, 0.20089033246040344, -0.7119503617286682, 0.6096256971359253, 0.5035262107849121, -0.13873621821403503, -0.07188434898853302, 1.3367149829864502, 1.0501031875610352, -0.49204981327056885, 0.2657017111778259, -0.0773196592926979, -0.2932156026363373, -0.20945604145526886, 0.6667783856391907, 1.0749880075454712, -0.8748511075973511, 0.3880312740802765, -0.0679856538772583, 0.4607917070388794, 0.5906558632850647, -0.6044262051582336, -1.822135329246521, 0.2373696118593216, -1.285627007484436, 0.35753387212753296, 1.0232815742492676, -0.4677671492099762, -0.7314422130584717, 0.40372154116630554, 0.5417652726173401, -0.1389831006526947, -1.0368046760559082, 0.41062745451927185, -0.005319712217897177, 0.3717300593852997, 0.201389878988266, -0.6521174907684326, 1.7647931575775146, -0.03537857159972191, -0.02905905805528164, -0.1902686208486557, 0.0592024102807045, 0.02423224225640297, 0.7918530106544495, 0.17732550203800201, -0.6522835493087769, -0.04361799359321594, -0.9565648436546326, -0.8753848075866699, 0.3443368971347809, 0.1640397608280182, 0.2827751636505127, -0.471252977848053, -1.1257916688919067, 0.04099765419960022, 1.1206821203231812, 0.7944585680961609, -0.11143973469734192, -0.44182315468788147, -0.43342456221580505, 0.26832741498947144, -0.19860123097896576, 0.9303469657897949, -0.40435048937797546, 0.7747235894203186, 0.4597412943840027, -0.14863833785057068, 0.1333046406507492, -0.6442959308624268, 0.47452348470687866, -0.8166074156761169, 0.635116457939148, 0.44481900334358215, -0.8549450039863586, 0.1859489381313324, -0.17650310695171356, -0.207682803273201, 0.19128276407718658, -0.04124869406223297, 0.8895334601402283, -0.867296040058136, -1.1147907972335815, 0.07281197607517242, -0.5885867476463318, 0.5616036653518677, 0.9969101548194885, 0.046741049736738205, 0.22150465846061707, -0.8484742641448975, 0.8299196362495422, 0.2906036376953125, -0.547087550163269, 0.4213087260723114, 1.7152413129806519, 2.0608222484588623, 0.38810816407203674, -0.2160712033510208, -0.12082376331090927, 1.1484206914901733, -0.9409297704696655, -0.7219238877296448, -1.0335934162139893, -0.247640922665596, -1.1086654663085938], [-1.2257437705993652, 0.8806084394454956, -2.1269707679748535, -0.8262510299682617, 0.0890752375125885, 0.9734120965003967, 1.8329392671585083, 0.06761118769645691, 0.21946679055690765, -0.37500548362731934, -1.066422462463379, 0.4916558265686035, 1.2225539684295654, 0.8278286457061768, 0.14049504697322845, -0.40841320157051086, 0.48769018054008484, 0.5327969789505005, 0.47508880496025085, 0.9457966089248657, -0.6312977075576782, 0.20338654518127441, -0.02202356420457363, -0.12521488964557648, 0.28460460901260376, 0.6278418302536011, -1.4307576417922974, -0.5306382775306702, -1.1062828302383423, -0.8147662281990051, 1.136654019355774, -0.48043471574783325, 0.5411747097969055, 0.8879987597465515, -0.4640885293483734, 0.09580978751182556, 1.1867703199386597, 0.4894716143608093, 1.159457802772522, 0.6742350459098816, 2.3370773792266846, 0.43100664019584656, 0.612421989440918, -1.1386065483093262, -1.301247477531433, 0.03255094215273857, 0.9661938548088074, -1.5871707201004028, -0.036770403385162354, 0.4577477276325226, 0.3211790919303894, 0.42205479741096497, 0.624148428440094, 0.8346823453903198, 0.566253125667572, -1.0141675472259521, 0.30908945202827454, -0.13836897909641266, 0.20210444927215576, 0.040913768112659454, 0.9862556457519531, -0.9260351061820984, -0.7631349563598633, 1.2238909006118774, 0.23852136731147766, 0.18449048697948456, -0.5854676961898804, 0.06988844275474548, 0.3917996287345886, -0.23204068839550018, 0.15287832915782928, 0.1957344114780426, -0.13113106787204742, 0.5081886053085327, -0.7263433933258057, 0.04453252628445625, 0.44409888982772827, 0.1006762683391571, 0.6274580955505371, 0.5711055397987366, -0.9431326985359192, 0.26916059851646423, 0.43502917885780334, -0.13553160429000854, 0.4845566153526306, 0.4298267066478729, -0.09712129086256027, -0.29910755157470703, -0.5571409463882446, 1.5877659320831299, 0.2906772196292877, 0.34928566217422485, 0.257142573595047, -0.47861748933792114, -0.042120542377233505, -0.7328629493713379, 0.6852959990501404, -0.11605917662382126, -0.8852618336677551, -0.5818145275115967, -0.16845116019248962, -0.17029590904712677, 0.354568749666214, 0.7089688181877136, 0.8571367859840393, 1.3581312894821167, 0.3898628354072571, -0.20754463970661163, -0.5473220348358154, -0.46297362446784973, -0.5136462450027466, 0.6312395334243774, -1.0717493295669556, -1.0545220375061035, -1.1035544872283936, 0.5425148606300354, 0.012109626084566116, -0.1288214474916458, 0.7008684277534485, 0.4972231090068817, -0.3056904077529907, -0.1359810084104538, 0.025851543992757797, 0.8798885345458984, 0.3750922381877899, 0.20791128277778625, -0.6955729722976685, 0.041633229702711105, 0.5929997563362122, 0.17391447722911835, 0.3759579658508301, -0.02298295870423317, 0.4385741353034973, 1.313470482826233, -0.25668299198150635, 0.790465235710144, -0.4425872266292572, -1.214813470840454, -0.37662506103515625, 0.41938188672065735, 0.43738022446632385, -0.25175586342811584, -0.08614025264978409, -0.9924036860466003, -0.08835015445947647, -0.9316983222961426, 0.79880690574646, -0.5507476925849915, -0.35848769545555115, 0.12378483265638351, -1.0705277919769287, 0.4207218587398529, -0.16802558302879333, 0.8538134098052979, -0.15707260370254517, -0.46152424812316895, 0.1543566733598709, 0.4046418368816376, 0.4299473762512207, 0.09292393922805786, 0.6773073673248291, -0.48989370465278625, -0.6553381681442261, 0.21543064713478088, -0.08882446587085724, -0.38292157649993896, -0.18304462730884552, 0.5309907793998718, 0.09120617061853409, 0.6882479190826416, -0.5001025199890137, -0.511608362197876, -1.1831824779510498, 0.19321388006210327, 0.21745915710926056, -1.1660255193710327, 1.504051685333252, -0.7943758368492126, -1.1021618843078613, -0.9514569044113159, 0.6793301701545715, -0.5031246542930603, -0.09170325845479965, -0.8530232906341553, 0.9492815732955933, -0.35097479820251465, -0.5170688033103943, -0.34177592396736145, -0.3434210419654846, -1.2923725843429565, -1.0225588083267212, -0.29811230301856995, -1.0144593715667725, 0.044581152498722076, 0.06779990345239639, -0.20908856391906738, 0.17938658595085144, -0.39794525504112244, -1.516804814338684, 0.36077889800071716, 0.06427472084760666, -0.6581932902336121, -1.1273349523544312, 0.11631128937005997, -0.293133944272995, 0.5364980101585388, -1.1155011653900146, 0.9597488045692444, -1.1083115339279175, 0.13642027974128723, 0.30977651476860046, 0.5664331912994385, -1.021122932434082, 0.745948314666748, -0.5595129728317261, -1.2102779150009155, 0.3825131952762604, -0.03444787859916687, 0.37880346179008484, 0.030267316848039627, 0.3098219037055969, 0.44978606700897217, 0.5205127000808716, -0.21311989426612854, 0.81751549243927, 0.08506236970424652, -0.31668373942375183, -1.1595121622085571, -0.7508074641227722, 0.6598209738731384, -0.7023721933364868, -0.7476823925971985, 0.9678860902786255, 0.05223644897341728, -0.7785317301750183, 0.5107424855232239, 0.04389004409313202, -0.5496026873588562, 0.08454057574272156, 0.4804009199142456, -0.05380430817604065, 0.7256266474723816, -0.19846764206886292, -0.2851252257823944, -0.3440425992012024, -0.20313887298107147, 0.822283148765564, -0.24852527678012848, 0.42093706130981445, 1.4673435688018799, 0.6729923486709595, 0.32964345812797546, 0.3521229326725006, -0.12484794110059738, -0.5032520294189453, -0.4636056125164032, -0.5950018763542175, 0.32226675748825073, -0.6891787648200989, 1.4807265996932983, 0.6797175407409668, -1.0116393566131592, -0.44087743759155273, 0.3892466127872467, 0.5427727103233337, -0.6067202091217041, -0.7883555889129639, -0.5452740788459778, 0.1995948851108551, -0.3925792872905731, 0.1363174468278885, 0.4971122145652771, -0.1880665272474289, 0.691260814666748, -0.05725393816828728, 0.11137944459915161, -0.742293655872345, 0.3800051212310791, 0.21873179078102112, 1.1282480955123901, 0.8990679979324341, -0.8047999143600464, -0.2649557888507843, -0.45105910301208496, 1.0119024515151978, -0.029204703867435455, 0.5652305483818054, 0.869368851184845, 0.9234351515769958, -0.09236089140176773, 0.23467445373535156, 0.2310643494129181, -0.0750032514333725, 0.9711291790008545, 0.4368051290512085, -0.047290343791246414, 0.9699618220329285, -0.5768488645553589, -1.225395679473877, 0.614180326461792, 0.19661229848861694, 0.31224626302719116, 0.5746666193008423, 1.1151398420333862, 0.5319306254386902, -0.11050508916378021, -0.7267482876777649, -0.034255288541316986, -1.0243041515350342, -0.7475452423095703, -0.9411138892173767, -1.2129896879196167, -0.32434016466140747, -0.6110512018203735, 0.4893702566623688, 0.20956550538539886, -0.41573986411094666, 0.5291609168052673, 0.313970148563385, -1.001579999923706, -0.09129279106855392, 0.3408122658729553, 0.253766268491745, -0.7765927314758301, 1.0467792749404907, 0.5799930691719055, -0.7359197735786438, -0.5899551510810852, -0.3977803587913513, 0.38963741064071655, 0.7977482676506042, -0.2397332787513733, 0.13711844384670258, -0.8343642354011536, -0.45232245326042175, -0.053059689700603485, 1.5393121242523193, -0.10905618965625763, -0.2973683178424835, -0.9879453778266907, 0.3775429129600525, 1.0735284090042114, 0.5334504842758179, -0.5729302167892456, 0.9141541123390198, -0.6472694873809814, -0.9340019226074219, 0.14009353518486023, 0.07797648012638092, 0.9930770397186279, -0.3350544273853302, -0.37039342522621155, 0.09574858844280243, -0.1595129817724228, -0.3301638960838318, 0.43971604108810425, 0.15010592341423035, 0.7930722236633301, -0.3406849503517151, 0.054950471967458725, 1.431235671043396, -0.3916250467300415, -0.026096101850271225, -1.6987859010696411, 0.6995317935943604, 0.44050267338752747, 1.2599308490753174, 0.3354474604129791, 1.4035053253173828, 0.10659433901309967, -0.84236741065979, 0.17236576974391937, -0.18807809054851532, 0.9870229959487915, -0.050337858498096466, -0.6282238960266113, -0.09433454275131226, -0.22766168415546417, -0.46174657344818115, -0.9493381381034851, -0.2744606137275696, 0.36002641916275024, -0.7232394218444824, -0.1142927035689354, 0.8242276906967163, 1.388222336769104, -0.2958528995513916, -0.07361405342817307, -0.040088944137096405, -0.22174198925495148, 0.5500307083129883, 0.14939749240875244, -0.12392622977495193, 0.020404931157827377, -0.06065593287348747, -1.2928105592727661, 0.32124239206314087, 0.08419934660196304, 0.7846534252166748, 0.7201714515686035, -0.8210418820381165, 0.009122375398874283, -0.34607288241386414, 0.037613946944475174, 0.20929186046123505, 0.23739905655384064, -0.480228990316391, 0.11869625747203827, 0.19300256669521332, -0.15893584489822388, -0.18144041299819946, 1.683995246887207, 0.38504287600517273, -0.22535361349582672, 0.16504330933094025, 0.37252727150917053, 0.0005517182871699333, 0.22754225134849548, -0.1650623083114624, 0.5394532680511475, -0.7467578053474426, 0.00823521800339222, -0.5129930973052979, 0.14949969947338104, 2.1038951873779297, 0.028102727606892586, 0.18031413853168488, 0.5458570122718811, -0.31495124101638794, -0.9346570372581482, 0.039287883788347244, -0.13085110485553741, -0.22052910923957825, -1.5606844425201416, -0.07202820479869843, 0.15644049644470215, -0.7939412593841553, 0.5612168312072754, 0.6751548647880554, 0.315805584192276, 0.2814550995826721, -0.05124916136264801, 0.31209424138069153, 0.7496950626373291, 0.9938300251960754, 0.6709689497947693, 0.5921858549118042, -0.3277295231819153, -0.24012094736099243, 1.0554746389389038, 0.0321887768805027, -0.3582199215888977, 0.5127540230751038, 0.34793612360954285, 0.8735047578811646, -1.5631227493286133, -0.8520144820213318, 1.1164616346359253, 0.36829712986946106, 0.5509191155433655, 0.45917242765426636, 0.7990660071372986, -0.6839007139205933, 0.18511725962162018, 0.3568606972694397, -0.3982318937778473, 0.4392423629760742, -0.23386123776435852, -0.2997458279132843, 0.10860804468393326, -0.2861216068267822, 0.1840333342552185, -0.6673614978790283, -0.6017410755157471, -0.41797584295272827, -1.0458412170410156, 0.6586837768554688, 0.3174108564853668, -0.0718773603439331, 0.5897253155708313, -0.6008031368255615, -1.3522117137908936, 0.9457687735557556, -0.5727394819259644, -0.0658663809299469, -0.1891898661851883, -0.834194004535675, -0.07117357105016708, -0.6514992117881775, -0.1750849038362503, -0.21034368872642517, -0.7132148146629333, -0.6895133852958679, 0.23605895042419434, -1.3661051988601685, -0.14705486595630646, 0.36287784576416016, 1.0352935791015625, 1.3420764207839966, -0.11709565669298172, -0.040292225778102875, 0.5562554597854614, -0.8456225991249084, -0.3519207239151001, 0.7619399428367615, -0.10231419652700424, -0.671116828918457, -1.7344896793365479, -0.2632301151752472, 1.489547848701477, 0.38546067476272583, -0.3366471529006958, 0.7715599536895752, 0.595257580280304, 1.2689419984817505, -0.31513455510139465, -1.523053526878357, 0.4956694543361664, 0.09964587539434433, 0.6315694451332092, 0.8348277807235718, -0.48368704319000244, -0.7893969416618347, -0.4009656012058258, -1.8988926410675049, 1.6353908777236938, -0.08912661671638489, -1.02960205078125, 1.0776915550231934, 0.08071313798427582, -0.2980814576148987, 0.05004461109638214, -1.324222445487976, -0.4498644471168518, 0.06055350601673126, 0.19654282927513123, -1.2439374923706055, 0.568418562412262, 0.05481787025928497, 0.7303664088249207, 0.19544406235218048, 0.07459834963083267, -0.34407904744148254, -0.8567517995834351, 0.16216175258159637, 0.7453657388687134, 0.28333473205566406, 0.41734716296195984, 0.586715579032898, 0.2870270907878876, 0.43079090118408203, -0.15731962025165558, 0.3551061153411865, 0.039496418088674545, 0.35633763670921326, 0.6781511902809143, -0.4435027241706848, 0.12184694409370422, -0.6944066286087036, 0.3627541959285736, -0.5990723967552185, -0.707356870174408, 0.6264890432357788, 0.23477838933467865, -0.13227832317352295, -0.013262923806905746, -0.8266658782958984, -0.14644521474838257, -0.19512240588665009, -0.5519652962684631, 0.9053796529769897, -1.9218693971633911, -0.43612614274024963, -0.15206898748874664, -0.08134404569864273, -0.23379351198673248, -0.5772638916969299, 0.16506727039813995, -0.4482049345970154, -0.7410616874694824, -0.8315237164497375, -0.056408073753118515, -0.3076143264770508, -0.8870769739151001, 0.9102276563644409, 0.9707664251327515, -0.8768041133880615, 0.24275602400302887, -0.1603303998708725, -1.0885674953460693, -0.10013369470834732, -1.3796353340148926, 0.6443109512329102, 0.1884768158197403, 0.7508653402328491, -0.04514892399311066, 1.1259217262268066, -0.6522384881973267, -0.8987529873847961, -0.5167436003684998, 0.359703004360199, 0.4934779703617096, 0.3140808641910553, -0.27755501866340637, 1.4023886919021606, 0.4459114372730255, -0.484174519777298, -0.30567893385887146, 0.47470441460609436, -0.7307102680206299, 0.33398598432540894, 0.9804424047470093, -0.39798957109451294, 0.4398970305919647, 1.2962490320205688, 0.24614423513412476, 0.8353061676025391, 0.5767331123352051, 0.04249433055520058, -0.6675370931625366, -0.7021185755729675, 0.1429571807384491, -0.15394139289855957, -1.6994379758834839, -0.6269920468330383, -0.21610765159130096, -1.0555527210235596, -0.9447665214538574, 0.7182443141937256, 0.6516774296760559, -0.9290580153465271, -0.2786926031112671, -0.471383661031723, 0.1781567931175232, -0.5533329248428345, 0.35428228974342346, 0.06881639361381531, -0.5355628728866577, -0.015355011448264122, -0.011284176260232925, 0.12536770105361938, -1.1934521198272705, -0.2401553988456726, 0.3258264362812042, 0.2825407385826111, -0.6503341197967529, 0.45692822337150574, 0.6325473189353943, -0.2392451912164688, -0.651222288608551, 0.9277087450027466, 0.8922609686851501, -0.0138993039727211, -0.15499423444271088, 0.1184244379401207, -0.09295450896024704, 1.2271003723144531, -1.3231980800628662, 0.806219756603241, -0.3252376616001129, 0.46678832173347473, 0.12233244627714157, -0.5511083006858826, -0.5529068112373352, 0.3575194478034973, -0.5076355338096619, 0.75509113073349, 0.7713684439659119, -0.3197123110294342, -0.6179948449134827, 1.2319942712783813, 0.17815227806568146, -0.18544822931289673, -0.13281899690628052, 0.4375035762786865, -0.25561612844467163, 0.28835827112197876, 0.7543082237243652, 1.0889308452606201, -0.5210331082344055, 0.4754010736942291, -0.3449043333530426, 0.023257410153746605, 0.9133666753768921, -0.28148776292800903, -1.2333158254623413, -0.4465290606021881, -1.2460898160934448, -0.24227812886238098, 1.2373234033584595, -1.0190882682800293, -0.9347599744796753, 0.18709373474121094, 0.2858935594558716, 0.170869842171669, -0.4262547492980957, -0.5180240273475647, -0.4301091432571411, 0.683869481086731, 0.30863380432128906, -0.35755062103271484, 1.2137774229049683, -0.3251403868198395, -0.6375880837440491, -0.17459934949874878, -0.1471003293991089, -0.11517742276191711, 0.6585607528686523, 0.7215639352798462, -0.004811670631170273, 0.2648811638355255, -0.3042941987514496, -0.42135411500930786, 0.3927501440048218, -0.28695663809776306, -0.059877388179302216, -0.18496301770210266, -0.8784087300300598, 0.10292678326368332, 0.559798538684845, 0.45778530836105347, -0.18023569881916046, -0.09364582598209381, -0.6226441264152527, 0.5612233281135559, 0.21375919878482819, 1.1635619401931763, -0.7148077487945557, 0.34411031007766724, 0.13560380041599274, -0.5242342352867126, -0.10316988825798035, -0.43387603759765625, 0.38174229860305786, -0.47650009393692017, 0.9670817852020264, 0.6553694605827332, 0.14376568794250488, 0.3149223029613495, -1.0004740953445435, -0.03256777301430702, 0.16232410073280334, -0.1322007179260254, 0.19301262497901917, -1.0182232856750488, -0.43916380405426025, -0.5538564324378967, -0.48857423663139343, 0.624720573425293, 0.6030718684196472, -0.0717645138502121, 0.21323738992214203, -0.5661065578460693, 0.3824544847011566, -0.3770257532596588, -0.12478084117174149, 0.6486914157867432, 1.3192256689071655, 1.191051959991455, 0.3268791437149048, 0.012034254148602486, -0.10691042244434357, 0.695997416973114, -0.8994981646537781, -0.6779705286026001, -0.6472657322883606, -0.35284239053726196, -1.0983930826187134], [0.4597851037979126, 0.31108373403549194, -3.160808563232422, -0.9122166037559509, 0.0848330408334732, 0.8736913800239563, 0.7131565809249878, 0.5199477672576904, -0.3107275664806366, 0.23551461100578308, -2.1045174598693848, 0.09366656839847565, 0.723853349685669, -0.04642393812537193, -0.706185519695282, 0.214848130941391, 0.5236194729804993, -0.32202833890914917, 0.00938473641872406, 1.1916425228118896, -1.2442054748535156, -0.6152081489562988, 0.17687314748764038, 0.2280193269252777, 0.5316016674041748, -0.5841854810714722, -0.7204529047012329, 0.42860573530197144, -0.9149092435836792, -0.9274226427078247, 0.9078483581542969, -0.0661243349313736, -0.27722615003585815, -0.5086706876754761, -1.823518991470337, -0.34682321548461914, 1.4651241302490234, 1.1254386901855469, 0.6106842160224915, 0.9083818793296814, 2.4604897499084473, 1.0031200647354126, -1.0899245738983154, -0.7059042453765869, -0.6700867414474487, -0.5407214164733887, 1.3815327882766724, -0.5109501481056213, 0.014529440551996231, 0.49020978808403015, 0.36709463596343994, 0.40151166915893555, 0.8865092992782593, 1.2073230743408203, 1.786604642868042, -0.6689801216125488, 1.1933274269104004, 0.167740598320961, 0.20923036336898804, -0.8565938472747803, 1.097776174545288, -0.23542499542236328, -0.38798147439956665, 1.1641826629638672, 0.046931009739637375, 0.12392645329236984, 0.06813345849514008, 0.7458597421646118, 0.14805221557617188, -0.6652411222457886, 0.8686553239822388, 1.308179259300232, 0.10527974367141724, -0.6082160472869873, -0.9256971478462219, -0.24733132123947144, 0.4008641242980957, 0.3011474013328552, 0.188812717795372, 1.2535221576690674, -1.147602915763855, 0.9064807891845703, 0.8386458158493042, 0.2803356647491455, 0.23436661064624786, 0.4592912197113037, 0.2768807113170624, -0.018915753811597824, -1.0412790775299072, 0.7487496137619019, 0.07344165444374084, 0.7878437638282776, 1.1375954151153564, -0.5164263248443604, 0.15359261631965637, -0.6939491629600525, -0.16816189885139465, -0.5503977537155151, -0.2238340526819229, -0.6096181869506836, -0.9509931206703186, -0.823114812374115, 1.48341965675354, 0.5921725034713745, -0.2955041527748108, 2.555190086364746, 0.2983148694038391, -0.3302514851093292, -0.6193208694458008, -0.7794588804244995, 0.3389861583709717, 0.37920454144477844, -0.6499451398849487, -1.389756679534912, -0.5026264190673828, 0.26233986020088196, 0.4437651038169861, 0.3913387060165405, 0.49324169754981995, 0.541350245475769, -0.4031704068183899, 0.1754843294620514, -0.27620410919189453, 0.2795659899711609, 0.5159905552864075, -0.8635988831520081, -1.0071263313293457, 0.43027040362358093, 0.08217868208885193, 0.1871899515390396, 0.8500754833221436, 0.08918406069278717, 0.3988456130027771, 1.075850248336792, -0.029689088463783264, 0.7876341938972473, 0.31553417444229126, -1.1594691276550293, -0.5904698967933655, 0.5721969604492188, 0.4389379620552063, 0.047013215720653534, 0.09545265883207321, -0.9309038519859314, -0.3695151209831238, -0.19798673689365387, 0.8297793865203857, -0.5764172673225403, -0.7413040995597839, -0.10251903533935547, -1.3538576364517212, 0.9986145496368408, -0.3623560070991516, 0.2855624854564667, 1.1147127151489258, -0.32958507537841797, -0.15466651320457458, 0.009953320026397705, 0.09679253399372101, 0.03838459774851799, 0.8235553503036499, -0.665859580039978, 0.14767393469810486, 1.1237062215805054, 0.297664076089859, -0.7008432745933533, -0.10677396506071091, 0.48665714263916016, 0.08135940134525299, 0.6647323966026306, 0.03402036428451538, -1.2206981182098389, -1.045891284942627, 0.0529743991792202, -0.22204264998435974, -1.259589672088623, 0.5685586929321289, -0.6722015142440796, -1.2176848649978638, -0.6130750179290771, 1.115022897720337, -1.0023727416992188, 0.25483769178390503, -0.010223928838968277, 0.767288088798523, -0.11411597579717636, -0.6914334297180176, -1.0270484685897827, -0.10130052268505096, -0.9809773564338684, -2.0321714878082275, 0.45148950815200806, -0.8630338311195374, -0.11663979291915894, -0.4261772036552429, -0.6547076106071472, 0.39004331827163696, -1.1985585689544678, -0.761483371257782, -0.049601681530475616, 0.12683719396591187, -0.0763191506266594, -0.7329049110412598, 0.4898838400840759, -0.13355028629302979, -0.22839823365211487, -1.0691450834274292, 0.4686537981033325, -0.49725598096847534, 0.29146039485931396, 0.23983612656593323, -0.3472405672073364, 0.08426929265260696, 0.8425298929214478, 0.2682197690010071, -1.6004548072814941, 0.03342984616756439, 0.09282232075929642, -0.06182042136788368, -0.3932320773601532, 0.6159031391143799, 0.791864812374115, 1.0731806755065918, -0.7163394093513489, 0.8860034942626953, 0.05393137037754059, 0.3439328372478485, -0.3923710584640503, -0.7545148134231567, -0.05321681126952171, -0.7140711545944214, -0.722233772277832, 0.3664624094963074, 0.6873189210891724, -1.2035765647888184, 0.8958669304847717, -0.25247257947921753, 0.24738235771656036, -0.25225725769996643, 0.3282192051410675, -0.08164143562316895, 0.6047252416610718, -1.041202425956726, -0.2822599709033966, -0.6307347416877747, 0.7423012852668762, 0.010155066847801208, -0.32235991954803467, 0.6461629271507263, 0.884506106376648, 0.4591848850250244, 0.38494205474853516, 1.2166310548782349, -0.7483378648757935, -0.15071827173233032, -1.17972731590271, -0.47170567512512207, 0.71086585521698, 0.21018381416797638, 1.7183723449707031, 0.8060071468353271, -0.4489898085594177, -0.08515670895576477, -0.5962564945220947, -0.18288658559322357, -1.2958781719207764, -0.6779832243919373, -0.5378717184066772, 0.8841737508773804, -0.05670511722564697, 0.42573487758636475, 0.13555213809013367, -0.49494999647140503, 0.6109605431556702, -0.06778095662593842, 0.33046793937683105, 0.6758378148078918, 0.2370235025882721, -0.4532715678215027, 0.5565690994262695, -0.041295021772384644, -1.2939566373825073, -0.5256941914558411, -0.9303657412528992, 0.7028659582138062, -0.05802486836910248, -0.6308246850967407, 0.29914161562919617, 0.5131802558898926, -0.26772254705429077, 0.05184146389365196, 0.32215631008148193, -0.31061604619026184, 0.37702471017837524, -0.1577470302581787, 0.8312211036682129, 0.7829869985580444, -0.6007645130157471, -0.24259962141513824, 0.0847969502210617, 0.27678754925727844, 0.7366893291473389, 1.0020267963409424, 1.9545817375183105, -0.1396307647228241, 0.20512324571609497, 0.33224794268608093, 0.06054233759641647, -0.18516439199447632, -0.4358212351799011, -1.3811562061309814, -1.2183362245559692, 0.1305915266275406, -0.5282297134399414, -0.23487602174282074, 0.26404762268066406, -0.28295576572418213, -0.6408090591430664, -0.12662482261657715, -0.25705984234809875, -0.20062237977981567, 0.11783431470394135, -0.25878000259399414, -0.5843877792358398, 0.7598774433135986, 1.0875649452209473, -1.3572120666503906, 0.11810538917779922, -0.10201718658208847, -0.19288425147533417, 0.9183407425880432, 0.009933294728398323, 0.7810512781143188, -1.1955277919769287, -0.8582518100738525, 0.13482388854026794, 0.24778001010417938, 0.5663513541221619, -1.1517350673675537, -0.41399386525154114, 1.2990167140960693, 1.0520710945129395, -0.010570257902145386, -0.3753982186317444, 0.27416712045669556, -0.580102264881134, -1.0717288255691528, -0.20280510187149048, 0.2023608684539795, 0.7059583067893982, -1.4841305017471313, -0.39229199290275574, 0.23358921706676483, -0.6124278903007507, -0.394065260887146, 0.5496300458908081, -0.48918837308883667, 0.6787733435630798, -0.10777539014816284, -0.671733558177948, 2.2173655033111572, -0.29733991622924805, 0.7008414268493652, -1.4347529411315918, 0.5114127993583679, 0.23995941877365112, 1.9796520471572876, 0.17813363671302795, 1.3782484531402588, 0.09890376031398773, -0.5910168886184692, 0.06303565949201584, 0.04530186951160431, 0.6882932782173157, 0.8389995694160461, -0.08878467977046967, -0.013630274683237076, 0.09583514928817749, -0.36213213205337524, -0.2888256311416626, -0.13750243186950684, 0.28276005387306213, -0.8749806880950928, -0.11943790316581726, 0.4708120822906494, 0.4078720510005951, -0.9000146389007568, 0.01506565511226654, 0.22936834394931793, -0.4749711751937866, 0.07941529899835587, 0.19115450978279114, -1.4009339809417725, 0.2928670346736908, 0.9399259090423584, -1.5063388347625732, 0.5031881928443909, -0.0008488520979881287, 0.6327203512191772, 1.0149407386779785, -0.7168186902999878, -0.07720769196748734, -0.3755966126918793, 1.1462676525115967, 0.5408918857574463, -0.09763482213020325, 0.05390162020921707, -0.39848363399505615, 0.770042896270752, 0.16742882132530212, 0.04307699203491211, 1.3852863311767578, 0.2771373689174652, -0.3879741430282593, 0.23289328813552856, 0.6752897500991821, 0.12630684673786163, 0.7503578662872314, 0.055291008204221725, -0.31794273853302, -0.35629916191101074, 0.014473129995167255, -0.13423295319080353, 0.8339204788208008, 1.3098669052124023, 0.39672237634658813, -0.024278106167912483, 0.2548205852508545, -0.8919366002082825, -1.4401384592056274, 0.537092924118042, 0.6215824484825134, 0.18849311769008636, -0.2682209014892578, 0.0677361711859703, 0.5416288375854492, 0.2125525176525116, 0.7807697057723999, 0.6993345022201538, 0.46703481674194336, 0.45424485206604004, -0.5063598155975342, 1.0485575199127197, 0.7234272956848145, 0.7518932819366455, 0.40036433935165405, 0.538560152053833, -0.9937008619308472, -0.4811384677886963, 0.8368310928344727, -0.41824015974998474, 0.39549413323402405, 0.045676615089178085, 0.42013323307037354, 1.3743689060211182, -1.413650393486023, 0.2997753322124481, 0.2628234326839447, 0.4032191038131714, 0.14052768051624298, 0.9901285171508789, 0.6764854788780212, -0.9197769165039062, -0.2403150200843811, -0.49704229831695557, -1.06416654586792, -0.7715761661529541, 0.03477047011256218, 0.3715493679046631, 1.0356566905975342, -0.5278522968292236, -0.4525723457336426, -0.5762060880661011, -0.25831693410873413, 0.4909138083457947, -0.5564792156219482, 0.08957278728485107, 0.2630828022956848, -0.316913366317749, 0.9877878427505493, -0.19639894366264343, -0.6488047242164612, 0.7993475198745728, -1.1200650930404663, -0.016225937753915787, -0.3291342556476593, -1.5257903337478638, -0.09486912935972214, 0.2750532627105713, -0.5103338956832886, 0.08839081227779388, 0.08992801606655121, 0.38998711109161377, -0.33560290932655334, -1.2382698059082031, -0.1307569146156311, 0.4981665015220642, 1.4789899587631226, 0.16472077369689941, 0.7524290084838867, 0.4039018750190735, -0.035370342433452606, -0.6344751119613647, -0.2253057211637497, 0.7413010597229004, -0.7284867763519287, -0.062202174216508865, -1.1501412391662598, -0.5429506301879883, 0.573021411895752, 0.23415598273277283, 0.5905417203903198, -0.21993598341941833, 0.6020866632461548, 1.2379465103149414, -0.018075738102197647, -1.1866025924682617, 1.3927147388458252, -0.15559788048267365, 0.44017890095710754, 0.2929042875766754, -0.508733332157135, -0.8355884552001953, 0.22178536653518677, -1.5287463665008545, 0.52928626537323, 0.230968177318573, -0.9795998334884644, 0.10240154713392258, 0.2408219873905182, -0.012556908652186394, 0.4150787591934204, -0.936965823173523, 0.4189000725746155, 0.6522388458251953, 0.16397391259670258, -0.994255542755127, 0.6245763301849365, 0.5379620790481567, -0.3045864999294281, -0.10537339001893997, -0.15546926856040955, -0.48112761974334717, -0.34933367371559143, -0.312216192483902, -0.026744849979877472, 1.0057713985443115, -0.035331208258867264, 0.46380823850631714, 0.12908010184764862, 1.1500873565673828, -0.6922293305397034, -0.48162275552749634, -0.2472594976425171, 0.8140637874603271, -0.01468951627612114, -0.780147135257721, 0.5440835952758789, -1.374391794204712, -0.24955622851848602, 0.011028051376342773, -0.11618631333112717, 0.9684653282165527, 0.7641996145248413, -0.19239458441734314, -0.006891701370477676, -0.667578935623169, 0.47471004724502563, -0.3422315716743469, -0.7849750518798828, 0.33854740858078003, -1.580524206161499, -0.2053380310535431, -0.3417580723762512, -0.4734402894973755, 0.327120304107666, -0.23179450631141663, 0.31203532218933105, -0.788009762763977, -0.9768917560577393, -0.9058744311332703, -0.2681345045566559, 0.13413190841674805, -0.1419796198606491, 0.9792789220809937, 1.1494210958480835, -0.43997472524642944, -0.14608226716518402, 0.3696199059486389, -0.9238905906677246, 0.059897035360336304, -1.091292381286621, 0.8877497911453247, -0.2978460192680359, 1.5944172143936157, -0.7258157730102539, 1.1332454681396484, -0.8351001143455505, -0.7771949172019958, -1.1384055614471436, -0.6673676371574402, -0.024159131571650505, 1.1592224836349487, -1.5979859828948975, 1.097910761833191, -0.17633415758609772, -0.9556909799575806, -0.2490171492099762, 0.8495116233825684, -0.22310484945774078, 0.1404571384191513, -0.5733208656311035, -0.20935803651809692, 0.7106806039810181, 1.6353380680084229, 0.37506943941116333, 1.5151453018188477, 0.09632959961891174, -0.33117952942848206, 0.0938601866364479, -0.46257850527763367, -0.33502358198165894, 0.03464477136731148, -0.9002907276153564, -0.008746970444917679, -0.22169172763824463, -1.5461004972457886, -0.6189262866973877, 0.25930336117744446, 1.2446348667144775, -1.4338006973266602, 0.218157559633255, -0.6629222631454468, -0.4895283579826355, -1.1217167377471924, 0.883836030960083, -0.48743534088134766, -0.043566346168518066, 0.04677596688270569, 0.16735297441482544, -0.05597250163555145, -0.501501202583313, -0.29345566034317017, -0.02904564142227173, 0.10888797044754028, -0.5485348701477051, 1.283682107925415, 1.1579623222351074, 0.47572705149650574, -0.11509811133146286, 1.3462834358215332, 1.1643718481063843, -0.2877315878868103, 0.16718141734600067, 0.15954427421092987, -0.5174608826637268, -0.026987876743078232, -0.2684655487537384, -0.578292727470398, -1.0680334568023682, 0.9134579300880432, -0.12481069564819336, -0.3827793598175049, -1.2675199508666992, 1.4800419807434082, -0.4315354526042938, -0.12904658913612366, 0.19459623098373413, -1.414023756980896, -0.11794950067996979, 0.7923619747161865, 0.07346577942371368, 0.18664930760860443, 0.47839248180389404, 0.9013189077377319, -0.22759698331356049, 0.1850602924823761, 0.6889739036560059, -0.03754653409123421, -1.1492385864257812, 0.6104322671890259, 0.47933992743492126, -0.25650835037231445, 0.030002497136592865, -0.23930683732032776, -2.067002296447754, -0.15065070986747742, -1.1320302486419678, -0.22943150997161865, 0.535544753074646, -1.0279693603515625, -0.9690842628479004, -0.05960724130272865, 0.5033540725708008, -0.5990172028541565, -0.08808215707540512, -0.1579906940460205, -0.2910085916519165, -0.01728745922446251, 1.2578552961349487, -0.12273810803890228, 1.241155743598938, -0.039924584329128265, -0.12961077690124512, -0.9342705011367798, -0.8298614621162415, 0.33318889141082764, 1.000396490097046, 0.5510066747665405, -0.35505008697509766, 0.42429351806640625, 0.049131836742162704, -0.4798131585121155, 0.03395075723528862, -0.2010090947151184, -0.2704024910926819, 0.08839702606201172, -0.64077228307724, -0.09418749809265137, -0.07241935282945633, 0.6711444854736328, -0.27914148569107056, -0.787200927734375, -0.23117536306381226, 0.27346277236938477, -0.48178842663764954, 0.5073018074035645, 0.06878801435232162, 1.3183573484420776, 0.3355642557144165, -0.8576903939247131, 0.06815316528081894, -0.5379053354263306, 1.1580915451049805, -0.2525351941585541, 0.50957852602005, -0.3188912272453308, -0.45329421758651733, -0.06333653628826141, -0.7674349546432495, 0.166120246052742, 0.36569902300834656, 0.41960474848747253, -0.25629472732543945, -0.6840944886207581, -1.597952127456665, -0.9150163531303406, 0.05881958454847336, -0.19049009680747986, 0.19904178380966187, 0.6573903560638428, -0.3836281895637512, -0.5559393167495728, 0.27132928371429443, 0.1916620433330536, -0.02113642543554306, 0.5678734183311462, 1.6696351766586304, 1.8905115127563477, 0.6227498054504395, 0.012168124318122864, -0.7305647730827332, 0.4798857867717743, -0.16169780492782593, -0.23648060858249664, -1.243251085281372, 0.7544572949409485, 0.07246094942092896], [0.21853844821453094, 0.8309078812599182, -2.6925785541534424, -1.190637469291687, -0.4534156322479248, 0.3948628008365631, 1.8902169466018677, 0.4334219992160797, -0.45357227325439453, -0.265948086977005, -0.6074482202529907, 0.23916350305080414, 0.6356931924819946, 1.1383007764816284, -0.2139584720134735, -0.1194332167506218, 0.7047262191772461, -0.08461002260446548, 0.43598443269729614, 1.0048619508743286, -0.9382650256156921, 0.32777708768844604, -0.22380687296390533, 0.3875511586666107, 0.4065926969051361, 0.40402960777282715, -0.8962631821632385, 0.08662395924329758, -0.48119983077049255, -0.9107981324195862, 1.2737547159194946, -0.8594422340393066, -0.6869574189186096, -0.23567157983779907, -0.3865673840045929, -0.5918333530426025, 1.4527397155761719, 0.7509312033653259, 1.512046217918396, 1.7531166076660156, 2.729053020477295, -0.5976812839508057, -0.0038337833248078823, -1.3600883483886719, -0.39042016863822937, -0.31036949157714844, 1.1612882614135742, -1.5102810859680176, -1.0493738651275635, -0.1146441400051117, 0.637367844581604, 0.7180810570716858, 0.25074705481529236, 0.9078878164291382, 1.416675329208374, -0.9412992596626282, 0.3739517033100128, -0.5239354968070984, 0.6393139958381653, 0.25924643874168396, 0.11008184403181076, 0.37249380350112915, 0.03496880084276199, 0.8575481176376343, 0.4823909401893616, -0.591690719127655, -0.7133176326751709, 0.11531924456357956, -0.017650548368692398, 0.006859598681330681, 0.14367879927158356, 0.1375410556793213, -0.6318778395652771, 0.4621085524559021, -0.7955698370933533, 0.7073112726211548, 0.24729250371456146, 0.5988508462905884, 0.36647531390190125, 0.6634673476219177, -0.40607523918151855, 0.15118852257728577, 1.058615803718567, -0.29914700984954834, 1.7276133298873901, 0.4390358626842499, -0.11870292574167252, -0.8066809177398682, -0.6853480935096741, 1.6887497901916504, 0.3009217083454132, 0.20064599812030792, 0.5945718288421631, 0.3897082507610321, -0.4485794007778168, -0.12139380723237991, 0.062327682971954346, -0.16507065296173096, -0.015897491946816444, -0.37942418456077576, -1.0812095403671265, -0.9632067084312439, 0.14636893570423126, -0.15188099443912506, 0.21167638897895813, 1.7926052808761597, -0.48252031207084656, 0.0166096743196249, -0.8928979635238647, -0.7043537497520447, -0.2516680061817169, -0.763649046421051, -0.8722566366195679, -0.628410816192627, -0.459371954202652, 0.46759334206581116, 0.9207214117050171, -0.059822872281074524, 0.9205317497253418, 0.4809439182281494, -0.2579653561115265, 0.047528862953186035, -0.057888779789209366, 0.037121038883924484, 0.25739261507987976, 0.621439516544342, -0.3875771462917328, -0.026304682716727257, 0.7144673466682434, 0.46242383122444153, 0.5782776474952698, 0.06977907568216324, 0.5912336111068726, 1.442729115486145, -0.5395984649658203, 0.8058369755744934, -0.03278196230530739, -1.0076234340667725, -0.48489153385162354, 0.1684480458498001, 0.4176625907421112, -0.6703746914863586, -0.537351667881012, -0.7136330008506775, -0.13679368793964386, -0.9548789262771606, 0.9973201155662537, 0.13032974302768707, -0.09206701070070267, -0.17056110501289368, -0.8448425531387329, 0.3009529113769531, 0.357636421918869, 0.8199758529663086, 0.6536911725997925, -0.4151487648487091, 0.18456505239009857, 0.7245196104049683, -0.2667534649372101, 0.6578099131584167, 0.29955974221229553, -0.2042064666748047, -0.871090829372406, 0.3974094092845917, 0.38137751817703247, -0.7004366517066956, 0.22057563066482544, 0.5342584848403931, -0.06874683499336243, 0.1040971502661705, -0.4073818624019623, -0.23612160980701447, -1.1459224224090576, 0.19512377679347992, 0.6861675381660461, -0.7782410979270935, 1.1998101472854614, -0.9554786682128906, -1.0109645128250122, -1.3864339590072632, 0.8568069934844971, -0.5545576810836792, -0.0029031354933977127, -1.001455545425415, 0.9565621614456177, -0.9823094010353088, -0.0441843643784523, -0.6673881411552429, -0.6796776056289673, -0.8317658305168152, -1.478257179260254, -0.4858004152774811, -1.1974396705627441, 0.3683471083641052, -0.638874888420105, -0.9155139327049255, 0.7891061902046204, -0.8603684902191162, -1.3321483135223389, 0.1004931703209877, -0.005551372654736042, -0.5514594316482544, -0.7968013286590576, 0.7987388372421265, -0.963524580001831, 0.690526008605957, -1.0646030902862549, 0.6534162163734436, -1.3213541507720947, 0.1557958424091339, -0.0280331801623106, 0.3659555912017822, -0.5331193804740906, 0.6682544946670532, -0.6737581491470337, -1.2865495681762695, 0.05571440979838371, 0.49446889758110046, 0.19745869934558868, -0.3188452124595642, 0.6983104348182678, 0.8522560000419617, 0.7739226222038269, -0.3525647521018982, 0.849051833152771, -0.5276561975479126, -0.3130088448524475, -0.47075119614601135, -0.6791939735412598, 0.5371959209442139, -0.9537927508354187, -1.0386425256729126, 0.8395864367485046, 0.4634643495082855, -1.3367230892181396, 0.6262320876121521, -0.20272499322891235, -0.0238211527466774, -0.21632154285907745, 0.3226679265499115, 0.34838059544563293, -0.10234476625919342, -0.11987258493900299, -0.7248634696006775, -0.37101343274116516, 0.9122734069824219, 0.35665348172187805, -0.6753001809120178, 1.0018267631530762, 1.5021170377731323, -0.290039986371994, -0.6120824813842773, 0.8677238821983337, -0.36243101954460144, 0.201872780919075, -1.061308741569519, -1.2597664594650269, 0.12695059180259705, -0.44073060154914856, 1.9726407527923584, 1.4921618700027466, -1.128983974456787, -0.7694619297981262, 0.376271516084671, -0.2061622589826584, -1.0283520221710205, 0.14076115190982819, 0.20717406272888184, 0.5247394442558289, -0.2777461111545563, -0.19570684432983398, -0.43683311343193054, -0.276753306388855, 0.36887359619140625, -0.48421868681907654, 0.390277236700058, 0.6942460536956787, 0.5367076396942139, 0.4857892096042633, 0.6392711400985718, 0.37354063987731934, -0.7534636855125427, -1.0975544452667236, -0.2050866335630417, 0.9136420488357544, 0.1155414804816246, 0.6280694007873535, 0.3526746928691864, -0.28212815523147583, -0.30225270986557007, 0.23624956607818604, 0.9394544363021851, 0.13791655004024506, 0.3430248498916626, -0.9033572673797607, 0.39367520809173584, 1.1536086797714233, -1.3729990720748901, -0.2598101496696472, 0.6301288604736328, 1.182112216949463, 0.4715728759765625, 1.1891342401504517, 1.8860557079315186, 0.7378761172294617, -0.17825505137443542, -0.3429756760597229, -0.7468482851982117, -0.2753618359565735, -0.32895970344543457, -0.4344445466995239, -1.3236980438232422, -0.6074486970901489, -0.06344141066074371, -0.04935923218727112, 0.3211437165737152, -0.6257805824279785, 0.8619526028633118, 0.425297349691391, -0.7367395758628845, -0.047266773879528046, -0.03184382617473602, 0.5188034176826477, -0.16573426127433777, 0.5213077068328857, -0.356076180934906, -1.0116212368011475, -0.3050394356250763, 0.2261638194322586, 0.5987610816955566, 1.3742811679840088, 0.13477180898189545, -0.0782116949558258, -1.0603482723236084, -0.30352216958999634, -0.14204882085323334, 0.6782253980636597, -0.38634881377220154, -0.16882634162902832, -1.1511832475662231, 0.5849982500076294, 0.9521169662475586, 0.2751747965812683, -0.7450177073478699, 0.7769614458084106, -0.8457760214805603, -0.3679230511188507, -0.7815994024276733, -0.3100748062133789, 0.47968214750289917, -0.5203213691711426, -0.5929498672485352, 0.0602821409702301, -0.3463377058506012, -0.3653709888458252, 0.3717001676559448, 0.08016888797283173, 0.8021562695503235, -0.5265432596206665, -0.0729014128446579, 1.5974066257476807, -0.75494784116745, -0.5096844434738159, -1.7581050395965576, 1.4108906984329224, -0.06841621547937393, 1.488883137702942, 0.6352632641792297, 0.5874664783477783, 0.39307093620300293, -0.09104418754577637, 0.30980169773101807, -0.23360782861709595, 1.0749261379241943, -0.2683509886264801, -0.3526897430419922, -0.24864673614501953, -0.27988937497138977, -0.08040855824947357, 0.02935653366148472, -0.7201955914497375, 0.4172125458717346, -0.33562374114990234, -0.9017806053161621, 0.695343017578125, 0.6358426809310913, -0.6097230315208435, -0.4438419044017792, 0.44465622305870056, 0.2797805666923523, 0.002579697174951434, -0.4549614191055298, -1.200964331626892, -0.6557296514511108, 0.26692748069763184, -1.4544000625610352, -0.1524210423231125, 0.6636766195297241, 0.5244662761688232, 0.5807703137397766, -0.8984059691429138, -0.12987016141414642, -0.15635748207569122, 0.0563008151948452, 1.0665903091430664, -0.03636261075735092, 0.26315078139305115, 0.29751506447792053, 0.5568116903305054, 0.07573805749416351, -0.5894543528556824, 2.1549267768859863, 0.5055603981018066, -0.15592554211616516, -0.19420431554317474, 0.5706655979156494, 0.43349260091781616, 0.45089730620384216, -0.579341471195221, 0.6915005445480347, -0.31518638134002686, 0.32936981320381165, -0.8524839282035828, -0.608391284942627, 2.014468193054199, 0.16861625015735626, -0.016946546733379364, 0.6096254587173462, -0.8879762291908264, -1.0431897640228271, 0.18419399857521057, 0.32200905680656433, 0.7529988884925842, -0.6604382991790771, -0.10687924176454544, 0.1477731168270111, -1.0322694778442383, 0.5828210711479187, 0.404669851064682, 0.8046897053718567, 0.1346869170665741, 0.16331683099269867, 1.114246129989624, 0.08706667274236679, 0.659460723400116, 1.2054402828216553, 0.28404104709625244, -0.8800524473190308, -0.2189580500125885, 0.8933337330818176, -0.30249062180519104, 0.43475356698036194, 0.2519749701023102, 0.35671505331993103, 1.3479105234146118, -1.4860914945602417, -0.13957767188549042, 0.7029774785041809, 0.3304853141307831, 1.373525857925415, 0.7485984563827515, 0.9275930523872375, -0.5535426139831543, -0.3155439794063568, 0.42282524704933167, -0.26288989186286926, 0.571773886680603, 0.0962800458073616, -0.27416595816612244, -0.07209303230047226, -1.2016048431396484, -0.208389550447464, -0.1162700206041336, -0.3316737711429596, -0.6296743154525757, -1.0977555513381958, 0.5576960444450378, 0.5954223871231079, 0.4073951542377472, 0.9135106205940247, 0.2676188349723816, -0.9079812169075012, 0.9833791255950928, -1.1536955833435059, 0.12952229380607605, 0.020602481439709663, -0.3856433629989624, 0.2419283092021942, -0.6399838924407959, 0.22307175397872925, 0.3020712435245514, -0.6353577971458435, -0.6685794591903687, 0.505600094795227, -0.9302988648414612, 0.3735564053058624, 0.7010518312454224, 1.5691636800765991, 0.6838973164558411, 0.6626037359237671, 0.4037676155567169, 0.49570247530937195, -0.9234940409660339, -0.6448261737823486, 0.5303905606269836, -0.6189810037612915, -0.04888152331113815, -1.4259686470031738, -0.31364473700523376, 1.7352232933044434, 0.613446056842804, -0.45618316531181335, 0.19159837067127228, 0.35165902972221375, 0.956038236618042, -0.5346543788909912, -1.2879270315170288, -0.028852378949522972, -0.512189507484436, 0.38707783818244934, 1.0835469961166382, -0.5006906390190125, -0.2195807546377182, 0.34377521276474, -1.6236705780029297, 1.2854394912719727, 0.1601187288761139, -0.9390438795089722, 0.7537218928337097, 0.8672497272491455, 0.19486138224601746, 0.22547543048858643, -0.4485751688480377, -0.6207563877105713, -0.3839276134967804, -0.08189210295677185, -1.2482876777648926, 1.0935252904891968, -0.12700095772743225, 0.061610180884599686, -0.27452388405799866, 0.08834365755319595, -0.6840004920959473, 0.5065890550613403, -0.0032172459177672863, 0.3109639585018158, 0.9058735370635986, 0.5784784555435181, 0.19003556668758392, 0.39586904644966125, -0.13270360231399536, -0.6162482500076294, -0.31485486030578613, -0.018044481053948402, 0.6608521342277527, -0.4006207287311554, -1.3567228317260742, -0.045100290328264236, 0.18590758740901947, 0.5807026028633118, -0.30428624153137207, -0.8916978240013123, 1.0740039348602295, 0.4190569818019867, -0.037156086415052414, -0.035911012440919876, -0.41007158160209656, -0.22551235556602478, -0.14549128711223602, -0.6621239185333252, 0.8212318420410156, -1.6795763969421387, 0.4136921763420105, -0.8466073274612427, -0.026162289083003998, 0.5372661352157593, -0.008934812620282173, -0.27369004487991333, -1.7161822319030762, -0.04178164154291153, -1.3443434238433838, -0.2663031220436096, 0.7908767461776733, -0.9181042909622192, 0.1353577971458435, 1.1154166460037231, -1.1965949535369873, 0.40086129307746887, 0.2112141102552414, -1.5209243297576904, -0.45774397253990173, -1.5629369020462036, 0.7781441807746887, -0.5227470993995667, 0.5425200462341309, -0.843252420425415, 0.7667694687843323, -1.0257524251937866, -1.2594819068908691, -0.6283121705055237, -0.14950881898403168, 0.6341042518615723, 1.1732021570205688, -0.7997482419013977, 0.9337846040725708, 0.7016449570655823, -1.0337944030761719, -0.28062403202056885, 0.4750289022922516, -1.1310495138168335, 0.17432282865047455, 1.0208228826522827, -0.19369496405124664, -0.05073847994208336, 1.490405559539795, -0.46588489413261414, 1.2692235708236694, 0.6109846234321594, 0.5298283696174622, -0.7000033855438232, -1.0213173627853394, -0.37169861793518066, -0.043676652014255524, -0.6973606944084167, -0.5234200954437256, 0.09083981066942215, -1.5798250436782837, -0.5753552317619324, 0.5561632513999939, 1.602665901184082, -0.3659924566745758, -0.36012396216392517, -0.47738921642303467, 0.6465110778808594, -0.5032438635826111, 0.3176238536834717, -0.21488028764724731, 0.3536972105503082, 0.0802176222205162, -0.12420105934143066, -0.6171786785125732, -0.7064944505691528, -0.16940224170684814, -0.04922042414546013, -0.012964490801095963, -0.5146259069442749, 1.0112278461456299, 0.9192918539047241, -0.8407667875289917, -1.2886402606964111, 1.5999901294708252, 1.586768627166748, -0.6035213470458984, 0.3354377746582031, -0.23555655777454376, 0.47526851296424866, 0.3166056275367737, -0.8964780569076538, -0.13652317225933075, -0.7465223670005798, 0.23491081595420837, 0.23182688653469086, -0.3555375635623932, -1.0032217502593994, -0.01723305881023407, -0.35357221961021423, 0.4209785461425781, 0.5130739212036133, -0.2118445783853531, -0.31879958510398865, 1.5322426557540894, 0.6607296466827393, 0.44424936175346375, 0.4315268099308014, 0.04861878603696823, 0.2002524733543396, 0.36526310443878174, 1.4223225116729736, 0.4778606593608856, -0.7412139773368835, 0.7176566123962402, 0.39493927359580994, 0.12096620351076126, 0.01412292942404747, -1.331060528755188, -1.6822125911712646, -0.6465460062026978, -0.7339543700218201, -0.5436504483222961, 0.1562386155128479, -0.33644285798072815, -0.4120464324951172, 0.14147375524044037, 0.2334161400794983, 0.07209886610507965, -0.7494722604751587, -0.2586047053337097, -0.4522010385990143, 0.17790010571479797, 0.9668736457824707, -0.9650515913963318, 0.6118292808532715, -0.08317462354898453, -0.3462042510509491, -0.3169229030609131, -0.8506618738174438, -0.30496224761009216, 0.22624346613883972, 0.6207032203674316, -0.22202056646347046, 0.31197768449783325, -0.1495388150215149, -0.41634705662727356, -0.230375736951828, -0.7249070405960083, 0.773749828338623, -0.6125717759132385, -0.7850807309150696, 0.37703579664230347, 0.9936596751213074, 0.025645174086093903, -0.061388883739709854, -0.800491213798523, -0.3806353211402893, 0.7583670616149902, -0.36614933609962463, 0.3677305281162262, -0.6568765044212341, 0.9339364767074585, 0.6386974453926086, -0.5465871095657349, 0.8584948182106018, -0.088823601603508, 0.07921181619167328, -0.6233581900596619, 0.564526379108429, 0.2906741201877594, -0.2692034840583801, 0.7001011371612549, -1.0155991315841675, 0.36664658784866333, -0.06887441128492355, 0.04923142120242119, -0.11483962088823318, -0.5957229733467102, -0.1496904343366623, -0.4681004285812378, -0.2326126992702484, 0.980778157711029, 0.12111746519804001, 0.33012306690216064, 0.07157838344573975, -1.523742437362671, -0.262170672416687, 0.3872990608215332, 0.3038073182106018, 0.7850751280784607, 1.8556851148605347, 1.8756818771362305, 0.33033230900764465, -0.29595282673835754, -0.32323533296585083, 0.26762655377388, -0.4890887141227722, -0.5540843605995178, -1.0456295013427734, 0.14517554640769958, -0.5039323568344116], [0.20455694198608398, 1.361508846282959, -2.2239766120910645, -1.5307077169418335, 0.5241474509239197, -0.22096198797225952, 0.8930737972259521, 0.39475834369659424, -0.9215692281723022, -0.11533553898334503, 0.08887703716754913, 0.05965464562177658, 1.1992177963256836, 0.8953452110290527, -0.04869705066084862, 0.5760685205459595, -0.02502039074897766, -0.6566441655158997, 1.0074266195297241, 1.0502066612243652, 0.014194570481777191, 0.09627921879291534, 0.07853732258081436, 0.23528961837291718, 0.06005604565143585, 0.21987049281597137, -0.5502668619155884, -0.448294997215271, -0.308834433555603, -0.710025429725647, 0.2717626094818115, -1.0466874837875366, 0.06705091893672943, 0.9694089293479919, -0.9694615602493286, -1.3230363130569458, 1.5272362232208252, 1.1831282377243042, 1.0574828386306763, 0.28024300932884216, 1.1823617219924927, 0.06800955533981323, -0.5547266602516174, -0.24786004424095154, -0.6456623077392578, -0.1469375044107437, 0.28275126218795776, -0.34120291471481323, -0.37820303440093994, 0.31609442830085754, 0.4552725851535797, 0.44272056221961975, 0.10664992779493332, 0.2688654363155365, 1.2236403226852417, 0.008979249745607376, 0.7192922830581665, -0.0628172978758812, 0.7380287647247314, -0.9296491146087646, 0.13121286034584045, 1.268031120300293, -0.04801328852772713, 1.3180502653121948, 1.0345911979675293, 0.549130916595459, -0.8451319336891174, 0.13808655738830566, 0.45325979590415955, -0.3285520374774933, 0.408214807510376, 0.6457144618034363, 0.29371196031570435, 0.11072305589914322, -0.7699286937713623, 0.3227519094944, 0.48808351159095764, 0.4271608591079712, -0.5555811524391174, 0.9707842469215393, 0.34698790311813354, 0.06503129005432129, 1.3853849172592163, -0.49337896704673767, 0.6856098175048828, 0.46800702810287476, 0.17690002918243408, -0.8095208406448364, 0.6889720559120178, 0.6375442743301392, 0.2523617446422577, -0.17320044338703156, 0.7768150568008423, 0.22874696552753448, -0.25594842433929443, 0.7307097315788269, -0.6787134408950806, 0.13690254092216492, -0.08195775002241135, -0.5125687718391418, -1.3270785808563232, -0.22340801358222961, 0.007816620171070099, -0.336011677980423, -0.4822806417942047, 1.0222437381744385, 0.803057074546814, 0.2739792466163635, -0.5474220514297485, -0.5894441604614258, -0.13772639632225037, 0.12683677673339844, 0.09625421464443207, -0.9549157619476318, -0.9505332112312317, 0.19240103662014008, 0.8138194680213928, -0.5570728182792664, 0.7456762194633484, 1.1018251180648804, -0.7327723503112793, 0.6827397346496582, 0.8322133421897888, 0.8569947481155396, -0.050221748650074005, -0.42769208550453186, -0.3947754204273224, -0.5164110064506531, 0.676110029220581, -0.5871325135231018, -0.10168643295764923, -0.6896609663963318, -0.3173424005508423, 0.16215714812278748, -0.510674774646759, 0.4106200933456421, -0.317709356546402, -0.7440822720527649, -0.3063117563724518, 0.2035873383283615, 0.6897709369659424, -0.3118414878845215, -0.7850783467292786, -0.8762238621711731, -0.6749172210693359, -0.2663164436817169, 0.8249716758728027, 0.016699887812137604, -0.0409332774579525, -0.5942658185958862, -0.9733462333679199, 1.234616756439209, 0.437950998544693, 0.7830884456634521, 0.5597152709960938, -0.5770907402038574, 0.8473539352416992, -0.12927980720996857, 0.26883700489997864, 0.6114777326583862, 1.3614606857299805, 0.25371211767196655, -0.7852377891540527, 0.07337787747383118, -0.27763691544532776, -0.49862805008888245, 0.3110520541667938, 0.8663452863693237, 0.282191663980484, 0.17888270318508148, -0.03051608055830002, -0.26693639159202576, -1.1728391647338867, 0.26349127292633057, 0.2259880006313324, -0.9210351705551147, 1.220618486404419, -0.3132516145706177, -0.30781057476997375, -0.21255718171596527, 0.24478641152381897, -0.6634289622306824, 0.10982748121023178, 0.0002451874315738678, 0.1719280183315277, -0.5359481573104858, 0.07974839210510254, -0.16812384128570557, -0.21560460329055786, -0.383590430021286, -1.6474964618682861, 0.24090948700904846, -0.7070242166519165, 0.009541746228933334, -0.8918042778968811, -0.19340753555297852, 0.7343044281005859, -0.5539183616638184, -0.31180262565612793, 0.2727071940898895, -0.610998272895813, 0.16444547474384308, -1.2341725826263428, 0.5326411128044128, -0.22785018384456635, 0.4129130244255066, -1.5979559421539307, 0.6535394191741943, -1.1053342819213867, -0.09003837406635284, 0.9704805612564087, -0.9361518621444702, 0.49705126881599426, 0.4147214889526367, -0.4153440594673157, -1.3483104705810547, 0.5196797251701355, 0.18446996808052063, -0.6856358051300049, 0.005475275218486786, 0.6858486533164978, 0.6309757232666016, 0.3160625994205475, -0.38743671774864197, 0.244462788105011, -0.6783915162086487, 0.14882242679595947, -0.13135984539985657, -0.6443870663642883, 0.5892157554626465, -0.7486128211021423, -1.083991527557373, 0.8346586227416992, 0.2693401277065277, -0.6224914193153381, 0.1780550181865692, 0.09257402271032333, 0.14035511016845703, 1.2827328443527222, 0.5635443329811096, 0.3396146893501282, 0.3052670359611511, -0.8280545473098755, -0.6594491004943848, -0.6908374428749084, 0.8470630049705505, 0.8496918678283691, -0.9177582859992981, 0.3209596276283264, 0.8268409967422485, 0.40145549178123474, 0.34874409437179565, 0.8612769246101379, -1.1840153932571411, -0.12198550254106522, -0.8987115621566772, -0.47661423683166504, 0.22714468836784363, -0.22994546592235565, 1.261823296546936, 0.8816586136817932, -1.2763543128967285, 0.6201565265655518, 0.0906582847237587, -0.08965481072664261, -0.16377241909503937, -0.7640140056610107, 0.6729135513305664, 0.3767555356025696, -0.02780105173587799, -0.2694842517375946, -0.3129175901412964, -0.5552166104316711, 0.4939791262149811, -0.4930824041366577, 0.35437482595443726, 0.5551013946533203, 0.7287893295288086, -0.8902894854545593, 0.3517979085445404, 1.0452733039855957, -0.6524465084075928, -0.8668035864830017, -0.2977752685546875, 0.1152181476354599, -0.18519170582294464, -0.41166770458221436, 0.46465376019477844, 0.56141597032547, -0.1357317566871643, 0.10698242485523224, 0.25937747955322266, 0.1871865838766098, 0.8283795118331909, -0.7372129559516907, 0.20770004391670227, 1.0864571332931519, 0.03590685874223709, 0.650906503200531, 0.4020056426525116, 0.6700528860092163, 0.8798794150352478, 1.1014100313186646, 1.8309866189956665, 0.2723774015903473, -0.2814463973045349, -0.40812745690345764, -1.1979591846466064, -0.12406427413225174, 0.043229762464761734, -0.7283433079719543, -0.9594693183898926, -0.09270823746919632, 0.2141711711883545, -0.1953984946012497, 0.3163480758666992, -0.1322018802165985, 0.5102630853652954, 0.634116530418396, -0.5800348520278931, 1.0720807313919067, 0.7395191788673401, -0.4150860905647278, -0.2690950036048889, -0.016303017735481262, -0.10754165053367615, -1.1018059253692627, -0.006266362965106964, 0.7824991941452026, -0.11395099759101868, 0.7958744764328003, 0.12988799810409546, 0.14669452607631683, -0.8344371914863586, -1.0301872491836548, 0.13907389342784882, 0.8789008259773254, -0.20848390460014343, -0.05948302894830704, -0.670762300491333, 1.9385522603988647, -0.14149923622608185, 0.23000970482826233, -0.46677178144454956, 0.6631986498832703, 0.15013790130615234, -0.8316599130630493, -0.6655611395835876, 0.1170433759689331, -0.12022346258163452, -0.14020831882953644, -0.039789874106645584, 0.26542314887046814, -0.4012237787246704, 0.23081517219543457, 1.1539112329483032, 0.664108395576477, 1.6379755735397339, 0.0761263370513916, -0.9667316675186157, 0.5961536169052124, -0.4952221214771271, 0.07371248304843903, -1.3553999662399292, 0.8516101241111755, -0.10137923061847687, 1.1752020120620728, 0.710235595703125, -0.503877580165863, 0.25809791684150696, -0.04077230393886566, 0.3453228771686554, 0.15165990591049194, 1.0856163501739502, 0.12645161151885986, -1.2419155836105347, -0.5786775946617126, -0.1532129943370819, 0.0036776773631572723, -0.5308966636657715, -0.16171765327453613, 0.44306468963623047, -0.3216157555580139, -0.10838472098112106, 1.0688356161117554, -0.25131747126579285, -0.25403621792793274, -0.3309788405895233, 0.2000533491373062, -0.20220226049423218, -0.13226039707660675, -0.3349514305591583, -1.5867233276367188, -0.3729332387447357, 0.0495021678507328, -1.1101279258728027, -0.06546258926391602, -0.22894448041915894, 0.41788309812545776, 0.5346260070800781, -1.0462672710418701, 0.40126314759254456, 0.09513717889785767, 0.7912482619285583, 0.6007000207901001, 0.25991225242614746, 0.6299232244491577, -0.20829367637634277, 0.7666980624198914, 0.29029029607772827, -0.31110841035842896, 1.1484979391098022, -0.2563628554344177, -0.5333337187767029, 0.13787071406841278, -0.11141234636306763, 0.27774015069007874, -0.05687206983566284, 0.6162988543510437, 0.5529339909553528, -0.004944950342178345, 0.09465411305427551, 0.013904877007007599, 0.10423322021961212, 0.5599023103713989, 0.8612967133522034, 0.7080717086791992, 0.9269693493843079, -0.5925676226615906, -0.7390642166137695, 0.6003335118293762, 0.007865614257752895, 1.4619495868682861, -0.5121629238128662, -0.05757961422204971, 0.5327319502830505, -1.5421847105026245, 0.5034660696983337, 0.29165586829185486, 0.7464824318885803, -0.008372312411665916, -0.4082558751106262, 1.0684616565704346, -0.1297629326581955, 0.8266366720199585, 1.2440446615219116, 0.18691584467887878, -0.4106162488460541, -0.3544839024543762, 1.081737995147705, -0.697943925857544, 0.23899973928928375, 0.4003141522407532, 0.3156706392765045, 1.407983660697937, -1.0920536518096924, -0.8404173851013184, 0.696717381477356, -0.10813987255096436, 0.24724061787128448, 0.5748947858810425, 0.776515543460846, -0.9761756658554077, 0.23157814145088196, 0.6449651718139648, -0.600713849067688, -0.21865148842334747, -0.13685977458953857, 0.18746617436408997, 1.494372844696045, -0.25153106451034546, -0.011302530765533447, 0.28386569023132324, -0.04308180883526802, 0.16406096518039703, -0.07892327755689621, -0.3022432029247284, 0.3582150638103485, 0.051930107176303864, 0.22222818434238434, -0.17797154188156128, -0.4904187321662903, 0.35274121165275574, -0.5616970658302307, 0.12837298214435577, 0.34569618105888367, -1.2265511751174927, 0.2717354893684387, -0.6631166934967041, -0.14257490634918213, -0.019831502810120583, -0.469076931476593, -0.5018103122711182, -0.17720097303390503, -0.8964722156524658, -0.3604423701763153, 1.0720514059066772, 1.4860780239105225, -0.6289032697677612, 0.4987746775150299, 0.37561240792274475, -0.004418771713972092, -0.6833630800247192, 0.2094499170780182, 0.41614362597465515, -0.6561495065689087, 0.46726366877555847, -1.8538564443588257, -0.7898303866386414, 0.8422712683677673, 0.4778417944908142, 0.006814759224653244, 0.12734632194042206, 0.37725088000297546, 0.41908958554267883, -1.1251015663146973, -0.8983854055404663, 0.34493207931518555, -0.6253333687782288, -0.09672914445400238, 0.4800490438938141, -0.2941725254058838, -0.7425863742828369, -0.5954026579856873, -1.1952236890792847, 1.2362911701202393, 0.6599235534667969, -1.3531434535980225, 0.5929948091506958, 0.5843368172645569, 1.0594487190246582, 0.4829191267490387, -0.019258789718151093, -0.4615851044654846, -0.29568180441856384, 0.09354130923748016, -0.40638378262519836, 0.32681259512901306, 0.1986134946346283, 0.7110323905944824, 0.06925009191036224, 0.36822670698165894, -0.32126036286354065, 0.4991365373134613, 0.813984215259552, -0.4043993651866913, 0.4034312069416046, 0.8785133957862854, 0.11285034567117691, -0.047079894691705704, -0.10641397535800934, -0.4206278920173645, -1.2117886543273926, -0.30579155683517456, 0.5718430876731873, -0.612406313419342, -0.12967325747013092, -0.35777080059051514, 0.1468408703804016, -0.2060813158750534, 0.41927310824394226, 0.07002753019332886, 0.682833731174469, 0.839877188205719, -0.31345173716545105, -0.13962212204933167, 0.5680378079414368, -0.27249228954315186, 0.3247336447238922, 0.2930345833301544, -0.7742289900779724, -1.361109972000122, 0.29665103554725647, -0.5592174530029297, -0.4802435338497162, -0.21229584515094757, 0.33924439549446106, -0.03225652500987053, -1.4251718521118164, -0.6175574660301208, -1.5513107776641846, -0.1365390121936798, 0.26586592197418213, -0.9148851633071899, 0.24513979256153107, 0.59068763256073, -1.0714151859283447, -0.05438113212585449, -0.516284704208374, -1.6147382259368896, 0.42562177777290344, -1.0027331113815308, 0.15063317120075226, -0.5767900347709656, 1.6800843477249146, -0.3338402509689331, 0.1854574829339981, -0.6782095432281494, -0.757057785987854, 0.22624774277210236, -0.4327748715877533, 0.507499635219574, 0.9725989699363708, -1.2527679204940796, 0.028432924300432205, 1.1224294900894165, -0.4600328505039215, -0.07777034491300583, 0.41258877515792847, -0.758789598941803, 0.380375474691391, 0.36464923620224, 0.06527825444936752, -0.12659798562526703, 1.165785312652588, -0.06223005801439285, 0.9135169386863708, -0.7691690921783447, -0.005268573760986328, -0.4508476257324219, -0.5283770561218262, -0.4073691964149475, 0.9495836496353149, -0.9642840623855591, -0.09615571051836014, -0.7554317116737366, -1.2548060417175293, -0.12392716109752655, 0.6751457452774048, 1.3376413583755493, -0.5369260907173157, -0.8077536821365356, -0.9466336369514465, 0.4431193470954895, -0.6220574378967285, 0.39400359988212585, 0.17060217261314392, 0.28663504123687744, 0.3787071108818054, 0.684977650642395, 0.06455101817846298, -0.6533470153808594, -0.009782050736248493, 0.6322438716888428, 0.05403250828385353, -1.6394802331924438, 1.189136266708374, 0.5367696285247803, 0.17649774253368378, -0.636508047580719, 1.66971755027771, 0.5316283702850342, -0.16831481456756592, -0.7399364113807678, -0.7188167572021484, -0.012649822980165482, 0.995927095413208, -1.329727053642273, -0.23398330807685852, -0.9863075017929077, 0.3281482458114624, -0.9439517855644226, -0.41676515340805054, -1.6994554996490479, 0.14053550362586975, -0.2272907942533493, -0.6705813407897949, 0.7165290117263794, -0.8708077073097229, 0.2511362135410309, 0.613243818283081, 0.6103852391242981, 0.2742061913013458, 0.9708389043807983, 0.9113170504570007, -0.08313295245170593, 0.2352859526872635, 0.8373709321022034, -0.4212630093097687, -1.1843857765197754, 0.07263804972171783, 0.5292255878448486, 0.7102993726730347, -0.26007261872291565, -0.19642503559589386, -1.550093173980713, -0.7784274220466614, -0.7053848505020142, -0.4737528860569, -0.4331638216972351, -0.0730489194393158, -1.1488782167434692, 0.5715243220329285, -0.000845741480588913, -1.1680477857589722, -0.19652189314365387, -0.15559212863445282, -0.9694167375564575, -0.46681952476501465, 0.42128220200538635, -0.771513819694519, 0.08164230734109879, -0.09903615713119507, -0.08124560117721558, -0.019215140491724014, -1.2439509630203247, 0.5556463599205017, 0.739915132522583, 0.6248099207878113, -0.36824873089790344, 0.5805394649505615, -0.40150967240333557, -0.752896785736084, -0.30757153034210205, -0.9033402800559998, 0.14340858161449432, -0.30347269773483276, -0.8389407396316528, -0.05425417795777321, 0.6433649063110352, 0.014383558183908463, -0.06646154075860977, -1.5606046915054321, -0.2066197246313095, 0.8325413465499878, -0.383232980966568, 0.2365114986896515, -0.937255322933197, 0.9956340789794922, -0.17090114951133728, -0.11465498059988022, 0.8100104331970215, -0.06708649545907974, 1.3050816059112549, -0.4411986470222473, 0.769906759262085, -0.041239239275455475, -0.3592502772808075, 0.2075551152229309, -0.6705784797668457, 0.3227469325065613, -0.42467615008354187, -0.050403423607349396, -0.5615707635879517, -0.159781351685524, -0.8998310565948486, -0.7112289667129517, 0.7418616414070129, 1.1081887483596802, 0.15940336883068085, -0.9781378507614136, 0.3389197289943695, -0.7401631474494934, -0.25828203558921814, -0.0873817428946495, -0.49635758996009827, -0.682992160320282, 0.7132753133773804, 1.2586865425109863, 1.3156501054763794, 1.127271294593811, 0.22613348066806793, 0.545806884765625, -0.4440154731273651, -0.4133971929550171, -1.3987265825271606, -0.497459352016449, -0.7761999368667603], [0.45487096905708313, 1.072420358657837, -2.532846450805664, -1.2378231287002563, 0.3867693841457367, 0.4825824499130249, 1.6918591260910034, 0.509148359298706, 0.20559599995613098, -0.5958399772644043, 0.06893951445817947, 0.10398329049348831, 0.7724658250808716, 1.2026526927947998, -0.15762081742286682, 0.4196130633354187, 0.5140318870544434, -0.2560977339744568, 0.8810482025146484, 0.7165201306343079, -0.6761107444763184, 0.1529439389705658, -0.3251066207885742, 0.26032620668411255, -0.13428503274917603, 0.5605872273445129, -1.5421806573867798, 0.1100362241268158, -0.6183661818504333, -0.5400176048278809, 0.9772195219993591, -1.339797019958496, -0.6539880633354187, 0.18608912825584412, -0.8888441324234009, -0.38706544041633606, 1.3095072507858276, 1.2184193134307861, 0.9966530799865723, 1.4086521863937378, 2.3739094734191895, -0.31957095861434937, 0.2479322999715805, -1.125403881072998, -0.006233883090317249, 0.02716180868446827, 1.323664665222168, -1.3516368865966797, -0.6738717555999756, -0.4970266819000244, 0.5699012279510498, 0.005758728366345167, 0.2857551574707031, 1.3155752420425415, 1.4046876430511475, -0.6999563574790955, 0.8710843920707703, -0.47482532262802124, 0.5710964202880859, 0.181003600358963, 0.5441881418228149, 0.24639418721199036, 0.15528002381324768, 1.135717511177063, 0.25640949606895447, -0.19236069917678833, -0.8602295517921448, 0.224294051527977, 0.20643888413906097, 0.3089277148246765, 0.13082267343997955, -0.08635245263576508, -1.0229891538619995, 0.5869462490081787, -1.2545455694198608, 0.6258903741836548, 0.5517498850822449, 0.8135078549385071, 0.3875328004360199, 1.0284773111343384, -0.5677708387374878, -0.05366922914981842, 0.36283308267593384, -0.41351979970932007, 1.4072730541229248, 0.37498757243156433, 0.4481064975261688, -1.2110247611999512, -0.35819903016090393, 1.3107013702392578, 0.12599536776542664, -0.22368764877319336, 0.7170853614807129, 0.46996456384658813, -0.1513090431690216, -0.453468382358551, 0.10292480140924454, -0.15995192527770996, -0.5574654340744019, -0.2766050696372986, -1.295697569847107, -0.16951227188110352, -0.077606201171875, -0.12916596233844757, 0.7126836776733398, 1.7900007963180542, -0.10053449124097824, -0.3860466480255127, -0.6795997619628906, -0.5604814887046814, -0.4779430031776428, -0.7330313920974731, -0.5941030979156494, -0.8812786936759949, -0.8475342392921448, 0.73576420545578, 1.1574814319610596, -0.7912079691886902, 1.312233805656433, 0.4838598966598511, -0.23683829605579376, 0.40854504704475403, 0.11476282775402069, 0.11825922131538391, 0.6487972140312195, 0.5211865305900574, -0.6247006058692932, -0.059288620948791504, 0.9641625285148621, -0.05684233829379082, 0.5822698473930359, -0.07133044302463531, 0.5255003571510315, 1.2973154783248901, -0.19680389761924744, 0.9633907079696655, 0.3668358027935028, -0.5567998886108398, -0.15690137445926666, 0.2788435220718384, 0.5154905915260315, -0.266463041305542, -0.4499337673187256, -0.8814817070960999, 0.2335333377122879, -0.9359737634658813, 0.563215970993042, -0.180198073387146, -0.3008127212524414, -0.6720598936080933, -1.083990216255188, 0.2557947039604187, 0.28690412640571594, 0.9333738684654236, 0.364391952753067, -0.6569912433624268, 0.6693893074989319, 0.3305674195289612, 0.36331549286842346, 0.773918092250824, 0.5054892301559448, 0.5021217465400696, -0.7210551500320435, 0.6372796893119812, 0.5066606402397156, -1.056025743484497, -0.005986446514725685, 0.5310761332511902, 0.46004459261894226, -0.12583613395690918, -0.6907801628112793, -0.332348495721817, -0.8769106864929199, -0.05643896386027336, 0.6740811467170715, -1.02842378616333, 1.3430062532424927, -0.7665267586708069, -1.4519938230514526, -0.9022302627563477, 0.7636251449584961, -0.31338149309158325, 0.30839765071868896, -0.5402961373329163, 0.6262060403823853, -0.6824144721031189, -0.06747027486562729, -0.32904618978500366, -0.6322396397590637, -0.7588306665420532, -1.1932508945465088, -0.7515211701393127, -1.2774379253387451, 0.23441825807094574, -0.413918137550354, -1.033993124961853, 0.49691900610923767, -0.7135881781578064, -0.8732492327690125, -0.06345751881599426, -0.3610967993736267, -0.36539411544799805, -1.1978185176849365, 0.5776627659797668, -0.7810513377189636, 0.8815778493881226, -1.1225959062576294, 0.9570738673210144, -1.567907452583313, -0.1685778796672821, 0.08411749452352524, 0.11043720692396164, -0.33868250250816345, 0.7637442946434021, -0.648177981376648, -1.3080124855041504, 0.16082985699176788, 0.3520219922065735, -0.2975369095802307, -0.3936523199081421, 0.6044407486915588, 0.19506296515464783, 0.8318104147911072, -0.11310500651597977, 0.5029181241989136, -0.06165941432118416, -0.7217264771461487, -0.782949686050415, -0.4319470524787903, 0.6767961978912354, -0.747398316860199, -1.2778093814849854, 1.2864196300506592, 0.8295496702194214, -1.463558554649353, 0.4777785539627075, -0.041743598878383636, -0.21940335631370544, 0.24086861312389374, 0.3753618896007538, 0.2712005376815796, -0.07925937324762344, -0.1507018506526947, -0.07901892066001892, -0.45467182993888855, 0.8775302171707153, 0.7385775446891785, -0.40770867466926575, 0.9770055413246155, 1.3422764539718628, -0.028204569593071938, 0.13708734512329102, 0.8042307496070862, -0.44979530572891235, 0.21186986565589905, -0.5314876437187195, -0.9182157516479492, -0.17461109161376953, -0.5538156628608704, 1.6702684164047241, 0.9168534874916077, -1.21555495262146, -0.42266619205474854, 0.28465157747268677, -0.2445315569639206, -0.606001615524292, -0.3273827135562897, 0.19780988991260529, 0.08499622344970703, -0.4832875728607178, -0.2865428626537323, -0.11377064883708954, -0.31298232078552246, 0.3282225430011749, -0.39845266938209534, 0.1420249044895172, -0.05437461659312248, 0.5657297372817993, 0.3311298191547394, 1.1090898513793945, -0.15523718297481537, -0.6256361603736877, -0.9595549702644348, -0.01595158316195011, 1.148604154586792, 0.16738809645175934, 0.1763806939125061, 0.5749847292900085, 0.2114802449941635, -0.24485352635383606, -0.17780429124832153, 0.9360584020614624, -0.42395177483558655, 0.2713444232940674, -1.0533549785614014, 0.17744995653629303, 1.6087095737457275, -1.2316358089447021, -0.5412541627883911, 0.3998914659023285, 0.7227814793586731, 0.8932366967201233, 1.0028642416000366, 1.5941407680511475, 0.0759967789053917, 0.03778570517897606, 0.0888708159327507, -0.5693826079368591, -0.19637207686901093, -0.6490678191184998, -0.5649634599685669, -1.0700501203536987, -0.35078001022338867, 0.03230289742350578, 0.31899648904800415, 0.7774601578712463, -0.5155386328697205, 1.0301456451416016, 0.4524344503879547, -0.7126400470733643, 0.08166956156492233, 0.05757980793714523, 0.07616829127073288, -0.3263932168483734, 0.3123354911804199, -0.5187532901763916, -0.9009339809417725, -0.6483046412467957, 0.0698724165558815, 0.21256889402866364, 1.4629172086715698, 0.003957576118409634, 0.010062549263238907, -0.8775030374526978, -0.7808964252471924, -0.1579047441482544, 0.6977798342704773, -0.5380061864852905, -0.27027758955955505, -1.1085522174835205, 0.25001028180122375, 0.5348896384239197, -0.11237100511789322, -0.8814781308174133, 0.31014424562454224, -0.4984738230705261, -1.4490915536880493, -0.2975229024887085, 0.16219152510166168, 0.8557398319244385, -0.43607228994369507, -0.5479820966720581, 0.37366005778312683, -0.3724285662174225, -0.5585606694221497, 0.5477861762046814, 0.23814897239208221, 0.7014796137809753, -0.33970654010772705, 0.029739752411842346, 1.3027186393737793, -0.5188024640083313, -0.2027137130498886, -2.0838639736175537, 1.1511448621749878, -0.2276887744665146, 1.3350900411605835, 0.4943835437297821, 0.33608606457710266, 0.41760289669036865, -0.37295687198638916, 0.02305155247449875, 0.15811145305633545, 1.299487829208374, -0.14674945175647736, -0.3077320456504822, -0.2894241511821747, -0.29667142033576965, 0.0814238116145134, -0.22922787070274353, -0.5143888592720032, 0.5907818675041199, -0.4196294844150543, -0.6568177938461304, 0.8616043925285339, 0.2699447274208069, -0.7856673002243042, -0.8220863938331604, 0.38330078125, 0.8392309546470642, 0.002239711582660675, -0.14147917926311493, -1.2494630813598633, -0.283479243516922, 0.16382166743278503, -1.278825283050537, 0.33889493346214294, 0.6487153768539429, -0.23984383046627045, 0.33393239974975586, -1.0294173955917358, -0.0045366049744188786, -0.3543907403945923, 0.250463604927063, 0.8177149891853333, -0.340455561876297, 0.7308158278465271, 0.5390247702598572, 0.1979677975177765, -0.021914571523666382, -0.34965041279792786, 1.7023515701293945, 0.072517029941082, -0.353483110666275, -0.4101817011833191, 0.22257769107818604, 0.32603979110717773, 0.041787125170230865, -0.32454827427864075, 0.2843073904514313, -0.3051779866218567, 0.551835298538208, -0.4652794301509857, -0.5180418491363525, 1.9911830425262451, 0.6269955039024353, 0.1287676990032196, 0.7315259575843811, -0.7860932350158691, -0.8189842104911804, 0.3357681632041931, 0.03184131532907486, 0.04340137541294098, -0.669651210308075, -0.1921166628599167, 0.4852389395236969, -1.1154340505599976, 0.695570170879364, 0.5536502003669739, 0.780427098274231, 0.013271761126816273, 0.10841295123100281, 0.6180572509765625, 0.21670903265476227, 0.8879601955413818, 0.9451327323913574, 0.6835452318191528, -0.21323168277740479, -0.6043038368225098, 0.777658224105835, -0.6238568425178528, 0.25625938177108765, 0.39472830295562744, -0.10306262969970703, 1.4424984455108643, -1.5955721139907837, -0.5376685857772827, 1.064491629600525, 0.22293470799922943, 1.3965532779693604, 0.6563385128974915, 0.5602387189865112, -0.6024888753890991, 0.24829702079296112, 0.45985451340675354, -0.27593106031417847, 0.6216424703598022, 0.06612459570169449, -0.24139487743377686, -0.298764169216156, -0.7546650171279907, 0.1333850473165512, -0.5575466752052307, -0.7356176972389221, -0.33402809500694275, -0.9583954811096191, 0.6383839845657349, 0.6614991426467896, 0.5006406903266907, 0.8437087535858154, -0.10283549875020981, -1.0344393253326416, 0.8056197762489319, -0.7886313199996948, 0.07207037508487701, 0.2545474171638489, -0.30030110478401184, 0.11047866195440292, -1.3919519186019897, -0.31928935647010803, 0.5129501819610596, -0.7093533873558044, -1.055742621421814, 0.25274333357810974, -0.8388267755508423, 0.22348052263259888, 0.4854094386100769, 1.5248321294784546, 0.6096146702766418, 0.13703902065753937, 0.15703295171260834, -0.06620478630065918, -1.1381603479385376, -0.2671521306037903, 0.7191693782806396, -0.13102953135967255, -0.08737356215715408, -1.7771881818771362, -0.6004438996315002, 1.8104448318481445, 0.8802875876426697, -0.8011147379875183, 0.14540530741214752, 0.8988646268844604, 1.3717116117477417, -0.6527674198150635, -1.3278582096099854, 0.17721378803253174, -0.7912672162055969, 0.10975275188684464, 0.7067264914512634, -0.3132297992706299, -0.38228708505630493, -0.47780781984329224, -1.9515663385391235, 1.176112174987793, 0.013212584890425205, -1.1118223667144775, 1.1652532815933228, 0.7835800647735596, 0.4227057993412018, 0.620425283908844, -0.08879287540912628, -0.31579041481018066, 0.022199025377631187, -0.03335129842162132, -0.9900619983673096, 0.518580436706543, 0.004277917556464672, 0.2734912037849426, -0.10504880547523499, 0.37168607115745544, -0.319562166929245, 0.259317547082901, 0.4830002784729004, 0.673145055770874, 0.5431456565856934, 0.6861469149589539, 0.0034816390834748745, 0.10322245210409164, -0.22188574075698853, -0.6730772256851196, -0.4364190399646759, -0.35549288988113403, 0.8971376419067383, -0.22988195717334747, -1.3171849250793457, -0.038044191896915436, 0.22956866025924683, 0.15340515971183777, 0.16294001042842865, -0.7304664850234985, 0.8539374470710754, 0.10927601903676987, 0.04951733723282814, 0.26635992527008057, -0.39801496267318726, 0.3997213840484619, -0.1861710548400879, 0.0128677012398839, 0.7059686183929443, -1.3533706665039062, 0.3435213565826416, -0.20605403184890747, 0.1792730987071991, 0.08498053252696991, -0.015505820512771606, 0.15084095299243927, -1.3638886213302612, -0.7600514888763428, -1.311631679534912, -0.17424464225769043, 0.9017523527145386, -0.5385491251945496, 0.440203994512558, 0.7329630255699158, -1.4243497848510742, 0.3023729920387268, 0.06066729500889778, -1.3040297031402588, -0.31105291843414307, -1.283389925956726, 1.2188539505004883, -0.664399266242981, 1.0403560400009155, -0.9031752347946167, 0.6645780205726624, -1.0647400617599487, -1.2364248037338257, -1.0950264930725098, -0.09511281549930573, 1.0689277648925781, 1.0870893001556396, -0.9825506806373596, 1.284839153289795, 0.9656996726989746, -0.7477583885192871, -0.8879638910293579, 0.11017600446939468, -0.8582976460456848, 0.6404767036437988, 1.016680359840393, 0.4056226313114166, 0.10623300820589066, 1.2387051582336426, -0.13861539959907532, 0.7669156193733215, 0.4213583767414093, 0.7277857065200806, -1.0290559530258179, -0.5695256590843201, -0.33650192618370056, 0.5390796065330505, -0.7205038070678711, -0.37472590804100037, -0.14385217428207397, -1.1469295024871826, -0.5127992033958435, 0.8609578609466553, 1.1785129308700562, -0.712679386138916, -0.4522060453891754, -0.9653730988502502, 0.7973179221153259, -0.2759678065776825, 0.05445136874914169, -0.03288769721984863, -0.08105336874723434, 0.5765307545661926, 0.12801682949066162, -0.7005433440208435, -0.8391771912574768, -0.22782275080680847, 0.23014087975025177, -0.1143871322274208, -0.35480499267578125, 0.945442259311676, 0.6109887957572937, -1.015249490737915, -1.1128787994384766, 1.924723744392395, 1.645298719406128, -0.2827789783477783, -0.08348039537668228, 0.2514663338661194, 0.4000592827796936, 0.6757662892341614, -0.6280126571655273, -0.09390585124492645, -0.9404543042182922, 0.7693541646003723, 0.001757550984621048, -0.7196365594863892, -0.9186882972717285, -0.02360456995666027, -0.44797229766845703, 0.3414655327796936, 0.6344261169433594, -0.5120143294334412, -0.05271651968359947, 1.3864295482635498, 0.4658939838409424, -0.07235386222600937, 0.6913986206054688, 0.5223067998886108, -0.06177247315645218, -0.0899803638458252, 1.1998953819274902, 0.6192549467086792, -1.187116265296936, 1.0307868719100952, 0.4696215093135834, 0.2883477509021759, 0.32815203070640564, -1.1132922172546387, -2.0107176303863525, 0.04264017194509506, -0.9527220129966736, -1.1201108694076538, 0.20137573778629303, -0.8746007084846497, -0.9923873543739319, 0.5275896787643433, 0.14521466195583344, 0.047808971256017685, -1.032150387763977, 0.5234549641609192, -0.4833928346633911, 0.20662689208984375, 0.5156152248382568, -0.9554663896560669, 0.8790625929832458, 0.08629706501960754, -0.6803134679794312, -0.6703417897224426, -0.6880891919136047, 0.35669589042663574, 0.11341561377048492, 0.04974501207470894, -0.34067296981811523, 0.6420093774795532, -0.223210409283638, -0.7630946636199951, 0.1768219918012619, -1.0564128160476685, 0.3656911253929138, -0.5658596754074097, -0.7341560125350952, 0.34376290440559387, 1.2849074602127075, 0.0002509020268917084, 0.12925103306770325, -0.787754237651825, -0.29179394245147705, 0.7273126244544983, -0.384544312953949, 0.4299579858779907, -0.5870928764343262, 0.8239366412162781, 0.39277198910713196, -0.3802526295185089, 0.626583993434906, -0.27177178859710693, -0.0033361176028847694, -0.33869093656539917, 0.4579312801361084, 0.12362530827522278, -0.07289624214172363, 0.19774048030376434, -0.7625826597213745, 0.3013021647930145, -0.36541131138801575, 0.06000468134880066, -0.09699603915214539, -1.0255528688430786, -0.8437090516090393, -0.40365129709243774, -0.3844342529773712, 0.9595940709114075, 0.19910037517547607, 0.7093507647514343, -0.2998676598072052, -1.1974750757217407, 0.1322503387928009, 0.06634746491909027, -0.3542967140674591, 0.3888798952102661, 1.7145131826400757, 1.5961552858352661, 0.3576830327510834, 0.07858652621507645, -0.4104524254798889, 0.7504568696022034, -0.37884145975112915, -0.37706029415130615, -1.1648986339569092, -0.34790536761283875, -0.4642045199871063], [0.9129478931427002, 1.0283514261245728, -1.9574933052062988, -0.2850193381309509, -0.0265867430716753, -0.04128507524728775, 0.7289487719535828, 0.7309468388557434, -0.26452958583831787, -0.5832101106643677, -0.34948593378067017, 0.39356452226638794, 0.5653750896453857, 0.1099974662065506, 0.6230791807174683, 0.596500813961029, 0.9555144309997559, -0.2003750056028366, 0.5079505443572998, 0.5178695917129517, -0.6639973521232605, -1.152497410774231, 0.44537681341171265, -0.10938933491706848, -0.1214698776602745, 0.6967368125915527, -1.4638190269470215, -0.819892942905426, -1.5442675352096558, -0.687106728553772, 1.283125400543213, -0.675077497959137, 0.22039294242858887, 0.42360901832580566, -1.7133790254592896, -0.1946294754743576, 0.8800828456878662, -0.16358768939971924, 0.1902279257774353, 0.3603861331939697, 1.3381327390670776, 0.17932400107383728, 0.13079768419265747, -1.1889716386795044, 0.9391293525695801, 0.11204494535923004, 0.38154178857803345, -0.5275063514709473, 0.6849993467330933, -0.534344494342804, 0.3675619959831238, -0.13245758414268494, -0.4092288315296173, 1.830885410308838, 1.059385061264038, -0.5495100617408752, -0.25512954592704773, 0.4816387891769409, 0.44085532426834106, 0.5629096031188965, 1.0830880403518677, -0.14084163308143616, -0.07539524137973785, 0.9234607815742493, 0.6923384666442871, 0.32865357398986816, 0.7430738210678101, 0.9986242055892944, -0.4582786560058594, 0.06936519593000412, 0.523307204246521, 0.2252824753522873, -0.4007762670516968, 0.7437547445297241, -0.8302412033081055, -0.15527617931365967, -0.6309478282928467, 0.7318254709243774, 0.04786228388547897, 0.824237048625946, -0.4085819721221924, 0.191023588180542, 0.3018210232257843, 0.7578091025352478, -0.37936869263648987, -0.05043947696685791, 0.6882630586624146, 0.00668034702539444, -0.9012155532836914, 0.8600380420684814, -0.13235822319984436, 0.9757001996040344, 0.38720232248306274, -0.1549183577299118, -0.3888254165649414, -0.7334293127059937, -0.316631555557251, -0.42303144931793213, -0.5085040926933289, -1.3724302053451538, 0.026099082082509995, -1.7650604248046875, 1.21842360496521, 0.5115553140640259, 1.762134075164795, 1.0766505002975464, 0.12442487478256226, -1.1736912727355957, -0.3514663279056549, -0.17150774598121643, -0.04263295978307724, 1.1110092401504517, -0.7760013937950134, -1.1247920989990234, 0.18569718301296234, 1.391739845275879, 0.3574744760990143, -0.22661927342414856, 0.6388995051383972, 0.8940659761428833, -0.9111251831054688, 0.7381316423416138, -0.13654404878616333, 0.43098193407058716, 1.3320221900939941, 0.06657487154006958, -0.14234018325805664, -0.4685784578323364, 0.052393872290849686, 0.4277719557285309, 0.1289764642715454, -0.815504789352417, -0.5238618850708008, 1.194819450378418, -1.0944509506225586, 1.1581915616989136, -0.025745831429958344, -0.3771563768386841, -0.08213134109973907, -0.16492393612861633, 1.0543394088745117, -0.36460286378860474, -0.5615047216415405, -0.05720854923129082, -0.2633059322834015, -0.805862545967102, 0.25108563899993896, -0.30825668573379517, -0.5762198567390442, -0.12523989379405975, -0.7531646490097046, 0.3896602988243103, -0.13147547841072083, 1.5517643690109253, 0.2276575267314911, 0.04747256264090538, 0.6591944694519043, -0.14296749234199524, 0.7464357614517212, 0.2628008723258972, 0.37341463565826416, -0.09467240422964096, -1.012570858001709, 1.0630059242248535, -0.24455931782722473, 0.08247224241495132, 0.3620592951774597, 0.36225616931915283, 0.09171731770038605, 0.603334903717041, -0.5969218611717224, -1.0238494873046875, -0.17227056622505188, 0.12781043350696564, -0.10943887382745743, -0.7650576829910278, 0.4312725067138672, -0.171453058719635, -0.541038990020752, -1.1744542121887207, 0.7048635482788086, -0.40418025851249695, 0.6619274020195007, 0.3575979471206665, 0.648576021194458, -0.18263569474220276, -0.2658827304840088, 0.18438422679901123, 0.12049379199743271, -0.02923177368938923, -0.9486904144287109, -0.6720100045204163, -0.5924618244171143, -0.06640130281448364, -0.2859625220298767, -0.8220645785331726, 0.16035795211791992, -0.5978556275367737, -0.545755922794342, 0.41604238748550415, -0.5214464664459229, 0.043156322091817856, -1.2242298126220703, -0.6198740005493164, -0.48372700810432434, 0.04387208819389343, -0.8713708519935608, 0.2109152227640152, -1.1400891542434692, 0.5747036933898926, 0.7992966175079346, -0.08317874372005463, -1.128082275390625, 0.5465089082717896, 0.1563219577074051, -0.4732586741447449, -0.29141658544540405, -0.4055297076702118, -0.04660141468048096, 0.9414335489273071, -0.22441181540489197, -0.24086827039718628, 1.2065954208374023, 0.09936759620904922, 1.0029929876327515, 0.1979677975177765, -1.537367343902588, -1.013205647468567, -1.2351338863372803, 0.0900154858827591, -1.0493367910385132, -0.5848140716552734, 0.641421914100647, 0.6879901885986328, -0.6232560873031616, 0.45136040449142456, 0.533503532409668, -0.07327315211296082, 0.19713658094406128, 0.680077314376831, 0.1963382363319397, 0.1964963674545288, -1.1665961742401123, -0.666499674320221, -0.22931009531021118, -0.013403783552348614, 0.9019032716751099, -0.7405917644500732, 0.031644802540540695, 1.3070764541625977, 1.1273480653762817, -0.01702655851840973, 0.9093320965766907, 0.2400585114955902, -0.5414930582046509, -1.3506741523742676, -0.005379736423492432, -0.2103479504585266, 0.211139976978302, 1.073422908782959, 0.4401158392429352, -1.0588436126708984, 0.34870535135269165, -0.4732465147972107, 0.2162829339504242, -0.2162250429391861, -0.046913132071495056, -0.506961464881897, -0.04200718551874161, 0.06528716534376144, 0.2757173180580139, 0.4475938677787781, -0.10159042477607727, 0.2209174633026123, -0.696700394153595, 0.005887215957045555, -0.5741948485374451, 0.7246496677398682, -0.22285456955432892, 0.8739811182022095, -0.1519922912120819, -1.3325588703155518, -1.0012184381484985, -0.5519547462463379, 0.5403034090995789, -0.2867739796638489, -0.15920507907867432, 1.6062794923782349, 0.7899467945098877, -0.11759662628173828, -0.355807900428772, 0.04098627716302872, 0.20268885791301727, -0.052756913006305695, 0.5168922543525696, -0.1579546481370926, 0.6958345174789429, -0.5219441056251526, -0.7154311537742615, -0.4049486815929413, -0.08968253433704376, 1.0912421941757202, 1.0087791681289673, 0.8448499441146851, -1.797468900680542, -0.44236817955970764, -0.6545352339744568, -0.32648035883903503, -1.0204821825027466, -0.6090241074562073, -0.16755086183547974, -1.073614478111267, 0.034682631492614746, -0.012351928278803825, 0.005853205919265747, 0.42759352922439575, 0.25381842255592346, 0.3188982903957367, 1.5929820537567139, 0.3712918758392334, -0.2298637330532074, -0.5636436939239502, 0.09435956180095673, -0.9748520851135254, 0.4641197919845581, 1.7375872135162354, -1.7844856977462769, -0.3052089214324951, -0.4499790668487549, -0.276284784078598, 0.4656364917755127, -0.043944332748651505, 0.2478487640619278, -1.0798859596252441, 0.10815469920635223, 0.21498319506645203, 0.6768448352813721, -0.06398129463195801, -0.031335875391960144, -0.4115977883338928, 0.026438642293214798, 0.886610746383667, -0.16495241224765778, -0.26240652799606323, 0.5610076189041138, -0.2806019186973572, 0.13093169033527374, -0.49734175205230713, 0.38442954421043396, 0.9889763593673706, -0.8596463799476624, -0.5509286522865295, 0.008461914956569672, -0.8040458559989929, -0.424765020608902, 0.11630520224571228, -0.5239167213439941, 0.9311314821243286, 0.9994471073150635, 0.24832399189472198, 1.2530862092971802, -0.5083516836166382, -0.11251510679721832, -1.3648796081542969, 0.5175449848175049, 0.8617181777954102, 1.5524141788482666, 0.5469418168067932, 0.7448908090591431, 0.4273064136505127, -0.835507869720459, 0.3545728325843811, 0.11733803153038025, 0.6438491344451904, -0.5534548163414001, -0.43582212924957275, -0.018178630620241165, -0.9053367376327515, -0.24321666359901428, -0.5359508991241455, 0.3110990524291992, 0.4225847125053406, 0.3908841907978058, -0.27477192878723145, 0.8946382999420166, 0.2053592950105667, -0.02602238580584526, -0.3236733078956604, -0.29717403650283813, 0.8330631256103516, -0.28504568338394165, -0.39865654706954956, -0.6534353494644165, -0.3770313262939453, -0.2178904414176941, -0.7292852401733398, 0.24197131395339966, 0.6660149097442627, -0.10205812007188797, 0.614774763584137, -1.585437536239624, -0.14652173221111298, 0.06320998817682266, 0.6214805245399475, 0.3626301884651184, 0.19599208235740662, -0.17451393604278564, 0.04437347501516342, -0.9455820322036743, 0.11950203031301498, 0.22174876928329468, 0.9588177800178528, -0.05757205933332443, 0.23693466186523438, -0.6795768737792969, -0.4185168743133545, 0.2659904956817627, -0.30520063638687134, -0.34427618980407715, 0.08173614740371704, -0.1856359839439392, -0.14483201503753662, 0.3003252148628235, 0.2287527620792389, 1.3302940130233765, 0.7176604866981506, 0.34557318687438965, 0.655423641204834, 0.15904846787452698, -0.31996482610702515, -0.12038037180900574, 0.5204397439956665, -0.4968213140964508, -0.5549589395523071, 0.3058397173881531, -0.10220302641391754, -0.5990535616874695, 0.44101816415786743, 0.3439205586910248, 0.35012286901474, 0.23010152578353882, -0.1377640962600708, 0.6756644248962402, 0.3944846987724304, 0.5142306089401245, 0.6305948495864868, 1.1919443607330322, 0.14520053565502167, -1.0255107879638672, 0.5173699855804443, -0.41357576847076416, 0.5985282063484192, 0.31974366307258606, 0.12786446511745453, 0.9404313564300537, -1.2138423919677734, -0.7127130627632141, 0.47348660230636597, 0.20430506765842438, 0.47274547815322876, 0.35838428139686584, 0.94977867603302, -0.11700291186571121, 0.026011981070041656, -0.3055838942527771, -0.36810386180877686, 0.8316054344177246, -0.05279059708118439, 0.4562472701072693, 0.6969481706619263, -0.19309276342391968, 0.3069929778575897, -0.38364124298095703, -0.3822503089904785, 0.44210124015808105, -0.4851002097129822, -0.5378161668777466, 0.6170295476913452, 0.002190306782722473, 1.2447295188903809, -0.44491657614707947, -1.40956711769104, -0.008367441594600677, -0.9038069844245911, 0.039667759090662, -0.3846272826194763, -0.6047465801239014, -0.5952751636505127, -0.23574146628379822, -0.210099995136261, 0.35639697313308716, -0.557164192199707, 0.0840599462389946, 0.13689468801021576, -1.1369473934173584, 0.11117897182703018, 0.3158181607723236, 0.3522922992706299, 0.9726265668869019, 0.016143526881933212, -0.4807102382183075, 0.25346750020980835, -0.6775556206703186, 0.3820798993110657, 0.590707540512085, -0.32233238220214844, 0.2188943475484848, -0.8453947305679321, -0.6782017946243286, 1.3350975513458252, 0.5181832313537598, 0.027046266943216324, -0.4672529697418213, 1.3488249778747559, 1.5318360328674316, -0.38588792085647583, -0.9827444553375244, 1.6193430423736572, -0.22511349618434906, 1.2014923095703125, 0.18430286645889282, -0.4232840836048126, -0.5487627387046814, -0.1433754861354828, -1.5637946128845215, 1.0888850688934326, 0.07034017890691757, -0.7954121232032776, 0.5808528661727905, 0.28941434621810913, 0.6287411451339722, 0.5185140371322632, -0.052989475429058075, 0.0476437546312809, 0.9365039467811584, -0.33723533153533936, -1.323447585105896, 0.5087984800338745, 0.8263081312179565, 1.1452875137329102, -0.03404448181390762, 0.002312788739800453, -0.2095792144536972, -0.05341672897338867, -0.509606659412384, 0.39863908290863037, 0.4915364980697632, 0.34848910570144653, 0.41199731826782227, -0.8136653900146484, 0.02886819839477539, -0.33941394090652466, 0.7102230787277222, -0.09489241242408752, 1.0445002317428589, -0.3267877697944641, -0.13684439659118652, 0.3183843791484833, -0.6241248846054077, -0.4781413674354553, -0.08007622510194778, -0.6332544088363647, 1.267086386680603, 0.668576717376709, -0.44073760509490967, -1.077697515487671, -0.12474894523620605, -0.2643236815929413, -0.03901877626776695, 0.0629812479019165, 0.7045230865478516, -0.8283579349517822, 0.12658275663852692, -0.3662131428718567, 0.10147496312856674, -0.2687425911426544, -0.049783967435359955, 0.12239053100347519, 0.0008892379701137543, -1.4869215488433838, -0.34247952699661255, 0.0796467736363411, 0.8211658000946045, 0.3268592357635498, 0.3270638585090637, -0.23081310093402863, -1.4355127811431885, 0.4677242636680603, 0.6115524768829346, -1.2107629776000977, -0.096976637840271, -0.9685742259025574, 0.4358556270599365, 0.3474055528640747, -0.19491538405418396, 0.21049615740776062, 0.24850930273532867, -1.1457931995391846, -1.664038062095642, -0.41624411940574646, 0.3180754780769348, 0.30871501564979553, 0.5839003324508667, -1.2683780193328857, 0.6538584232330322, -0.21209216117858887, -0.774734616279602, -0.16652819514274597, -0.14857348799705505, -0.686156153678894, -0.5721288323402405, -0.03256164863705635, -0.24916917085647583, 0.2967435121536255, 0.5114642381668091, 0.4458787143230438, 0.5801759958267212, 0.4593278169631958, 0.8726897239685059, -1.2810883522033691, -0.3459450602531433, -0.4584375321865082, 0.33994394540786743, -1.1488399505615234, -0.4060375690460205, -0.3109120726585388, -0.5387836694717407, -0.3085327744483948, 0.7242035865783691, 0.3827250003814697, -0.8671679496765137, -0.10582392662763596, 0.23017549514770508, -0.49030035734176636, -0.5709264874458313, 0.7517927885055542, 0.193227156996727, -1.763897180557251, 0.20066452026367188, 0.2543390393257141, 0.3801332116127014, -0.8077346086502075, -0.19450464844703674, -0.6466151475906372, 0.5592398047447205, 0.14638200402259827, 0.909132719039917, 0.2205626368522644, 0.4843141436576843, -0.9708303213119507, 1.062524437904358, 0.39172542095184326, 0.6860076189041138, -0.1557941436767578, 0.12749359011650085, -0.7263664603233337, 0.07595659047365189, -0.09400331974029541, 0.38843628764152527, -0.43714237213134766, 0.4772571921348572, 0.3740270435810089, 0.11846955865621567, -0.06565359234809875, 0.2757611572742462, 0.3180529475212097, 0.30134886503219604, 1.1725621223449707, -0.23495081067085266, -0.46886464953422546, 0.9077728986740112, 0.7650104761123657, -0.539999783039093, 0.0865681916475296, 0.15995436906814575, 0.2931673526763916, -0.14955642819404602, 0.10031243413686752, 0.19093066453933716, -0.45688819885253906, -0.044819675385951996, 0.6634995937347412, -0.44018590450286865, 0.027487505227327347, -0.8371676206588745, -1.6634535789489746, 0.2060888409614563, -0.36305999755859375, 0.2733883261680603, 0.8881661891937256, -0.7820475101470947, -0.1702694296836853, -0.6630890369415283, 0.3582828640937805, 0.12077340483665466, -1.0721865892410278, 0.608366072177887, 0.0998215526342392, -0.3702477812767029, -0.1279277801513672, -0.47879379987716675, 1.1295924186706543, -0.3662370443344116, 0.043314047157764435, -0.31110939383506775, 0.2599954903125763, 0.2987222671508789, 0.2030002772808075, 0.1916494518518448, -0.5085486769676208, -0.19988512992858887, -0.6774188280105591, -0.20637738704681396, 0.1909770965576172, 1.1630628108978271, -0.3309635519981384, -0.02544458582997322, -0.8699451684951782, -0.08878341317176819, 0.7580106854438782, 0.24058598279953003, -0.8054159879684448, -0.2713873088359833, 0.047294095158576965, 0.6264299154281616, -0.6764236688613892, 0.7907983660697937, -0.543893039226532, 0.684739887714386, 0.03565853834152222, -0.11191415786743164, -0.42056602239608765, -0.3966790437698364, 0.8080539703369141, -0.33612072467803955, 0.37797799706459045, -0.598048746585846, -0.3959461450576782, -0.2579761743545532, -0.9390881061553955, -0.24000877141952515, -0.19368046522140503, -0.5634862184524536, 0.4938449263572693, -1.2460482120513916, -0.7701342701911926, -0.3562072217464447, -0.3358110785484314, -0.12491467595100403, -0.6309749484062195, -0.4807397127151489, -0.11298936605453491, -0.969356894493103, 0.8233470916748047, 0.6204996109008789, 0.24276065826416016, 0.5169926881790161, 0.985824465751648, 1.7662012577056885, 0.45996344089508057, -0.4410243034362793, -0.03032839670777321, 0.7596200704574585, -1.0449469089508057, -0.30309000611305237, -0.3631609082221985, 0.03726619854569435, -0.3700915575027466], [0.9477852582931519, 1.079688549041748, -1.4595613479614258, -1.2386667728424072, -0.32584211230278015, -0.20128099620342255, 0.8490021228790283, 0.5778640508651733, -0.14243924617767334, -1.6150861978530884, -1.597521424293518, 0.23218876123428345, 0.03558065742254257, 1.0864781141281128, 1.2790803909301758, 0.7936580777168274, 0.9627972841262817, -0.258148193359375, 0.372501939535141, 0.9519468545913696, 0.7670096755027771, -0.3965272605419159, 0.12999212741851807, -0.6016992926597595, 0.8159844279289246, 0.7338755130767822, -1.125146746635437, -0.2071416676044464, -1.2245314121246338, -0.921791672706604, 1.1895802021026611, 0.25719526410102844, 0.00999982375651598, -0.460231751203537, -1.6547726392745972, -0.45363402366638184, 1.310556173324585, 0.39534062147140503, -0.18443326652050018, 1.492158055305481, 1.4797258377075195, 0.4817458987236023, 0.47090771794319153, -1.2688872814178467, 0.2888059914112091, -0.02510586939752102, 0.5179056525230408, 0.01460434589534998, -0.4510017931461334, -1.5297791957855225, 0.5842390060424805, -0.45981380343437195, -0.6104798913002014, 0.9241690635681152, 1.0081186294555664, -0.5052444338798523, 0.14053016901016235, 0.7267609238624573, -0.29248544573783875, 0.5091347098350525, 0.9999474883079529, 0.4471150040626526, -0.6729046702384949, 0.2633502185344696, -0.18636633455753326, -0.10375813394784927, 0.19242577254772186, 0.575516402721405, -0.9862146377563477, 0.02047819085419178, -0.0592690072953701, 0.9238603115081787, -0.5368038415908813, 0.7605153322219849, -1.5809837579727173, -0.005311986431479454, 0.16590002179145813, 0.42153751850128174, 0.23311875760555267, 1.3254114389419556, -0.7357535362243652, -0.3520297110080719, -0.3196246922016144, -0.40516817569732666, 0.5459195375442505, 0.05020667240023613, 0.43975841999053955, -0.20628561079502106, -0.30409932136535645, 1.2459017038345337, -0.3669640123844147, 0.09815721213817596, 0.24119965732097626, -0.33344507217407227, -1.4635001420974731, -0.772419810295105, 0.2507951557636261, -0.5148624777793884, -0.5567689538002014, -0.8317113518714905, -0.4000674784183502, -0.9981921315193176, 1.1414076089859009, 1.129356861114502, 1.168272614479065, 1.8448004722595215, 0.6641336679458618, -1.4235607385635376, -0.7003311514854431, 0.3074815273284912, 0.42502278089523315, 0.9203801155090332, -0.6331733465194702, -1.3308117389678955, -0.24938781559467316, 0.7904008626937866, 0.6158655285835266, -0.7776223421096802, 1.0542258024215698, 1.1216771602630615, -0.7974596619606018, -0.5419742465019226, -0.8545941710472107, 0.6133824586868286, 1.4937856197357178, 0.11576177179813385, -0.6091732382774353, -0.041531916707754135, -0.25688114762306213, 0.0018651848658919334, 0.4513450264930725, -0.3833646774291992, -0.30643430352211, 0.7389364838600159, -0.2942938804626465, 1.0909521579742432, -0.3439757525920868, -0.8467685580253601, 0.7045785784721375, -0.13314926624298096, 0.3569629490375519, 0.0012291520833969116, -0.3261519968509674, -0.6613682508468628, 0.638010561466217, -0.7175014615058899, -0.02624335139989853, -0.3202807903289795, -0.7210361361503601, 0.31672507524490356, -1.3339215517044067, 0.07172676175832748, -0.04531910642981529, 1.4154579639434814, 0.131662517786026, 0.5882744789123535, 0.27783164381980896, 0.35823968052864075, -0.3177991211414337, 0.23561489582061768, 0.6033204197883606, 0.10447254776954651, -1.51560378074646, 1.1207547187805176, 0.3459574282169342, -0.4141674339771271, 0.7284725904464722, 0.7198094129562378, -0.372951477766037, 0.5713462829589844, -0.6445046067237854, -0.2724829614162445, -0.7554962635040283, 0.16781653463840485, -0.35842519998550415, -0.12459903210401535, 0.7873581051826477, -1.1704152822494507, -0.5205518007278442, -0.32169225811958313, 0.1669437289237976, -0.13332675397396088, 0.1092960461974144, -0.507477879524231, 0.6213277578353882, -0.5537348985671997, -0.6959259510040283, -0.6250086426734924, -0.09534107148647308, -0.279589980840683, -0.9977134466171265, 0.12125365436077118, -0.6320139765739441, 0.556229293346405, -0.3803100883960724, -1.6209626197814941, 0.21041284501552582, -0.6061681509017944, -0.6683065891265869, -0.22690173983573914, -0.31510141491889954, -0.4067170321941376, -1.0410813093185425, -0.2811107933521271, -1.12652587890625, 0.515489935874939, -0.7173571586608887, -0.28830835223197937, -1.3054852485656738, -0.05155254155397415, 0.8301775455474854, 0.022853251546621323, -0.7330101132392883, 1.1733622550964355, 0.5016756653785706, -0.5495136380195618, -0.1728687584400177, 0.12423597276210785, 0.09070565551519394, 0.305289089679718, 0.33636757731437683, -0.14590515196323395, 0.8815129995346069, 0.10619766265153885, 0.47088077664375305, 0.031871017068624496, -1.485890507698059, -0.13821928203105927, -0.911835253238678, -0.3638170659542084, -0.6939122676849365, -0.6047923564910889, 0.8955554366111755, 1.08303964138031, -1.3007628917694092, 1.006493091583252, -0.4899764060974121, 0.16754136979579926, 0.3470054268836975, 0.5193619132041931, 0.43965208530426025, 0.5387262105941772, -0.5647603273391724, 0.1365220993757248, -0.4176199436187744, 0.3644300103187561, 0.9096097350120544, -0.5637599229812622, -0.38805606961250305, 1.3567627668380737, -0.2313847839832306, -0.4094294309616089, 0.6751284599304199, -0.30286896228790283, 0.23929744958877563, -0.603875458240509, 0.18587978184223175, -0.461246132850647, -0.3078586459159851, 1.655214548110962, 0.024435317143797874, -1.3400081396102905, -0.2568844258785248, -0.5998146533966064, -0.09694837778806686, -0.6964589357376099, 0.30530238151550293, -0.05085369572043419, 0.5400192737579346, 0.2899268567562103, -0.25739333033561707, -0.41405126452445984, -0.12352946400642395, 1.0669561624526978, 0.1704350858926773, -0.2837277948856354, -0.7381231784820557, 0.5092437267303467, 0.13134482502937317, 0.4962688684463501, 0.05855421721935272, -1.8383616209030151, -0.5674553513526917, -0.33330264687538147, 0.5641853213310242, -0.30102744698524475, -0.8599077463150024, 0.2001563310623169, 0.4890984296798706, -0.6879605650901794, 0.5451614856719971, -0.13071320950984955, -0.9239628911018372, 0.2991470694541931, 0.2557458281517029, -0.6352624297142029, 0.4464682936668396, -0.17323100566864014, -0.9344847798347473, -0.10610567033290863, 0.27632904052734375, 1.0429279804229736, 0.6097506284713745, 0.8877009153366089, 0.12638498842716217, -0.2867199778556824, -0.03244774788618088, 0.05843643099069595, -0.23441120982170105, 0.2149379402399063, -0.3198181688785553, -0.38089945912361145, 0.023983370512723923, -0.5240033864974976, 0.11244867742061615, 0.7784721851348877, 0.25111037492752075, 0.8990999460220337, 0.48567259311676025, 0.3972434103488922, -0.556917667388916, -0.8452935218811035, 0.22351756691932678, -1.0319304466247559, -0.10233799368143082, 0.9868184924125671, -0.9646607637405396, 0.0020682583563029766, 0.2969142198562622, -0.41838204860687256, 0.27633237838745117, -0.6869748830795288, 0.5681002140045166, -0.6937069296836853, 0.28273800015449524, 0.4413009583950043, 1.2464118003845215, -0.11836003512144089, -0.33934730291366577, -0.8232027888298035, 0.8058381676673889, 0.23678971827030182, 0.08012058585882187, -0.496500164270401, 0.6003789901733398, -0.34169718623161316, -0.5941330194473267, -0.2835433781147003, 0.10009998083114624, 1.5265570878982544, 0.14680294692516327, -0.04209420830011368, -0.4779934287071228, 0.18004335463047028, -0.5478806495666504, 0.723042905330658, -0.14967601001262665, 1.4911545515060425, 0.337980180978775, 0.35073766112327576, 0.5839889049530029, -0.36461371183395386, 0.4015340805053711, -0.9092062711715698, 0.4885573983192444, 0.31921055912971497, 1.5606814622879028, 0.8503563404083252, -0.16962529718875885, 0.29068872332572937, -0.04040026664733887, -0.26769858598709106, 0.14386242628097534, 0.4679739475250244, -0.13377031683921814, -0.44254815578460693, -0.5399746298789978, 0.7526989579200745, -0.018784845247864723, -0.5718944668769836, -0.01760358177125454, 0.40859273076057434, 0.222865492105484, -0.570222020149231, 1.1725128889083862, -0.021743163466453552, 0.2588129937648773, -0.12182056158781052, -0.6711813807487488, 0.05432339757680893, -0.10142174363136292, -0.4904147684574127, -0.05576033517718315, 0.23695920407772064, 0.15478068590164185, -0.10800578445196152, -0.5567638278007507, 0.21946732699871063, 0.40876761078834534, 0.45305219292640686, -1.1443053483963013, -0.06035608425736427, 0.254732608795166, 0.116858571767807, 0.27882862091064453, 0.22857974469661713, 0.19572298228740692, 0.48004087805747986, -0.7086436748504639, 0.29499614238739014, 0.6639848351478577, 0.9553920030593872, -0.04321959614753723, 0.359296053647995, -0.5630204081535339, -0.29869627952575684, 0.37827059626579285, 0.033832281827926636, -0.5202877521514893, 0.07841689884662628, -0.715099573135376, 0.14174321293830872, 0.5890220403671265, -0.5401875972747803, 1.4003583192825317, -0.1623615026473999, 0.2828696072101593, 0.7981335520744324, -0.0778389722108841, -1.595787763595581, 0.20323407649993896, 0.17207513749599457, 0.13127629458904266, -0.16213983297348022, 0.42938339710235596, -0.16953834891319275, 0.3404008746147156, 0.47402822971343994, -0.053667496889829636, 0.6403346657752991, -0.13437792658805847, -0.47612008452415466, 0.06884798407554626, 0.7694358229637146, 0.7868460416793823, 0.8490781188011169, 1.2035778760910034, -0.6055784821510315, -1.1288235187530518, 1.2844927310943604, 0.2635805904865265, 1.146046757698059, 0.27759963274002075, 0.39843958616256714, 1.85221529006958, -0.9755811095237732, -0.2916281223297119, 0.3546069860458374, -0.42218342423439026, -0.5463458299636841, 0.6708208918571472, -0.0046092672273516655, -0.7241060137748718, -0.48362666368484497, 0.09328372031450272, -0.17021216452121735, 0.629985511302948, -0.08983369916677475, -0.12671853601932526, 0.603511393070221, -0.7464127540588379, -0.29310503602027893, -1.1304972171783447, 0.11728163808584213, 0.776236891746521, 0.07278591394424438, 0.11322696506977081, 0.8459293842315674, 0.6152268052101135, 1.2556744813919067, -0.45577695965766907, -2.070871591567993, 0.1250447779893875, -0.8274497985839844, 0.3993794023990631, -0.07381226867437363, -0.5909265875816345, -0.5976082682609558, -0.30755698680877686, 0.32985901832580566, -0.11779390275478363, -0.4352511465549469, -0.2144751101732254, 0.2720663249492645, -1.1699448823928833, 0.5258803963661194, -0.38633692264556885, 0.9928069114685059, 1.0307260751724243, 0.49835219979286194, -0.06485716998577118, 0.41321128606796265, -0.6172237992286682, 0.2943213880062103, -0.017109137028455734, -0.17956796288490295, 0.22137655317783356, -1.0190629959106445, -1.0693732500076294, 0.8993561863899231, 1.2211312055587769, 0.6557366847991943, 0.35675424337387085, 1.2493374347686768, 1.6456607580184937, -0.811186671257019, -0.48345082998275757, 0.3278365731239319, -0.626002311706543, 0.2122770994901657, -0.08537903428077698, -0.8763052225112915, -0.3335593640804291, 0.02387813664972782, -2.1232805252075195, 0.7972862124443054, 0.193034827709198, -0.6050485372543335, 0.21452604234218597, 0.5278292298316956, 0.8296419978141785, 0.77960604429245, -1.0212955474853516, -0.32301831245422363, 0.93083655834198, -0.7726626992225647, -1.1196726560592651, 0.6392509937286377, 0.28357166051864624, 0.8227710723876953, -0.3956387937068939, -0.38564714789390564, -0.3998662233352661, -0.15406794846057892, -0.21133190393447876, 0.11496998369693756, 1.3658281564712524, 0.7142276763916016, 0.5523536801338196, -1.3484536409378052, 0.37294450402259827, -0.23511335253715515, 1.0453497171401978, -0.25040575861930847, 1.3359524011611938, 0.6519157290458679, -0.0991753339767456, 0.16544656455516815, -0.32320815324783325, -1.0453888177871704, -0.5621708631515503, -0.7820272445678711, 0.9892421960830688, 0.7790927290916443, -0.18972259759902954, -0.12238480895757675, -0.39320501685142517, -0.053520698100328445, -0.030188411474227905, 0.2811641991138458, 0.5931476354598999, -1.056867003440857, -0.44763392210006714, 0.355058878660202, 0.2667497992515564, -0.05130196362733841, 0.7849457859992981, -0.14667284488677979, -0.6920680403709412, -1.3239399194717407, -0.40828433632850647, 0.1339103877544403, 0.6225118041038513, -0.39170512557029724, -0.021159883588552475, 0.1083545908331871, -1.924118995666504, 0.8129803538322449, -0.05557061359286308, -1.0132571458816528, -0.6318525075912476, -0.836906373500824, 1.2672054767608643, 0.7930297255516052, -0.3440117835998535, 0.4230395555496216, 0.3913167119026184, -0.8427724242210388, -0.1943359076976776, -1.4781715869903564, 0.10291692614555359, 0.22588638961315155, 1.2260268926620483, -0.5611780881881714, 0.380404531955719, -0.29395782947540283, -0.6001120805740356, -0.2048531174659729, -0.5247568488121033, -0.5535951852798462, 0.6343539953231812, 0.5176137685775757, 0.18049290776252747, 0.6659931540489197, 0.7486194968223572, 0.24053825438022614, 0.6830815076828003, -0.04050077870488167, 0.6090198755264282, -1.098781704902649, -0.5312203764915466, -0.5139312744140625, 0.23931509256362915, -0.8984869718551636, -0.8473355770111084, 0.10550101101398468, -0.48161745071411133, -0.8149431943893433, 0.6425657868385315, 0.7764503359794617, -0.41835081577301025, -0.3290398120880127, 0.3500162959098816, 0.03944075480103493, -1.2223687171936035, 0.941753625869751, 0.3422858715057373, -1.096305251121521, -0.3640361726284027, 0.2189064472913742, 0.107197105884552, -0.9987013339996338, -0.3106522560119629, -0.12770706415176392, -0.22363604605197906, -0.08406002819538116, 0.4085245728492737, 0.7024234533309937, 0.1416846364736557, -0.49400830268859863, 0.783930242061615, 1.275620937347412, 0.36799177527427673, 0.24400180578231812, 0.6625305414199829, -0.6779059767723083, 0.1565706580877304, 0.2753998041152954, -0.6561673283576965, -0.32668107748031616, 0.8662095665931702, -0.3656693398952484, -0.22510258853435516, -0.9188107848167419, 0.3243343234062195, -0.17265570163726807, -0.21404051780700684, 0.9067435264587402, 0.1527201235294342, -1.1154860258102417, 0.23599493503570557, 0.5549913644790649, -0.3113149106502533, 0.28798559308052063, 0.3369286060333252, 0.7026350498199463, 0.31502217054367065, 0.04871584475040436, 0.47650328278541565, -0.3272596001625061, 0.7949616312980652, 0.3234608471393585, -0.838925302028656, 0.0981895700097084, -0.9681620001792908, -1.9733129739761353, 0.061327047646045685, -0.08874193578958511, -0.8552324771881104, 0.30336907505989075, -1.1761001348495483, -0.1766965538263321, -0.7327426075935364, -0.43866103887557983, 0.1401074379682541, -1.3018463850021362, 0.30830666422843933, -0.1909337192773819, 0.3931412696838379, 1.2922714948654175, -0.16967609524726868, 0.8681868314743042, -0.044900041073560715, 0.04566986858844757, -0.0029867617413401604, 0.08638283610343933, -0.39785176515579224, 0.3676075339317322, -0.13050316274166107, -0.32229727506637573, -0.40448564291000366, -1.0289809703826904, -0.1498517543077469, 0.398771733045578, -0.10909808427095413, 0.24849960207939148, 0.4750511050224304, -1.1850563287734985, 0.11780884116888046, 0.6637563109397888, 0.7002655267715454, -0.2594855725765228, -0.15576307475566864, -0.258654922246933, 0.5391717553138733, 0.30449187755584717, 1.4741883277893066, -0.5884848237037659, 1.1477152109146118, 0.42256635427474976, 0.20446759462356567, -0.8793855309486389, 0.2015637308359146, 1.0038467645645142, -0.3526609241962433, 0.25567033886909485, -0.6482823491096497, -0.32846665382385254, -0.12362869828939438, -0.464935302734375, -0.021452130749821663, -0.1193297803401947, -1.3921781778335571, 0.05894986167550087, -0.019871026277542114, -1.1935940980911255, -0.302516371011734, -0.4467175006866455, -0.07660675793886185, -0.42313894629478455, 0.6079434156417847, -0.34068241715431213, -0.8162238597869873, 0.7501230835914612, 0.04582643508911133, -0.23462630808353424, 0.31003159284591675, 1.526546835899353, 1.5178972482681274, 0.6839640140533447, -0.4113892614841461, -0.1139773279428482, 0.8352926969528198, -0.9711301326751709, -0.44743964076042175, -0.463695764541626, 0.018752850592136383, 0.04541809856891632], [0.762101411819458, 1.8274277448654175, -2.4056239128112793, -0.01657646894454956, -0.3720317780971527, 0.024778958410024643, 0.8319790363311768, 1.104480266571045, 0.5386694669723511, 0.19837793707847595, -1.3918471336364746, 0.09573298692703247, 0.7723987102508545, 0.3396211266517639, 0.3666367530822754, 0.7713583707809448, 0.5268691182136536, 0.7146393060684204, 0.2351725846529007, 0.3470538556575775, -0.987112283706665, -0.6265119314193726, -0.07285456359386444, -0.06309771537780762, 0.5276895761489868, 0.4947044849395752, -1.6127886772155762, -0.12149167060852051, -1.814675211906433, -0.40993645787239075, 0.08607395738363266, -1.0237996578216553, 0.7109869122505188, -0.40427693724632263, -1.2458415031433105, 0.4145132005214691, 1.8584377765655518, 0.44663259387016296, 0.45870107412338257, 0.10531150549650192, 1.829325795173645, -0.2301410734653473, -0.9581325054168701, -0.6343995332717896, 0.5033820867538452, 0.3487538695335388, 0.6116007566452026, -1.4270644187927246, 0.006092049181461334, 0.04572930186986923, 0.3864870071411133, 0.6066898107528687, 0.0694044977426529, 1.8529895544052124, 1.3884193897247314, -0.9592874050140381, -0.4549926817417145, 0.04991737753152847, 0.870720386505127, 0.411157488822937, 1.4355792999267578, 0.12320659309625626, 0.1331380009651184, 1.121838092803955, 0.8133099675178528, -0.23518285155296326, 0.873245358467102, 0.5739808082580566, -0.02938007563352585, -0.4567452073097229, 0.24612891674041748, 0.339080274105072, -1.1542487144470215, -0.18186546862125397, -0.9316514730453491, 0.2686501443386078, 0.37723278999328613, 0.9578575491905212, -0.6552020311355591, 0.890354573726654, -1.0182812213897705, -0.030501235276460648, -0.12902387976646423, 0.025941476225852966, 0.3825158476829529, 0.31256935000419617, 1.018174171447754, -0.546427845954895, -0.09556572884321213, 1.5197079181671143, -0.12752285599708557, 0.8047555685043335, 0.44623643159866333, 1.0422039031982422, -0.13372765481472015, -0.39703941345214844, 0.031620752066373825, -0.47131121158599854, -0.4241124391555786, -1.1615203619003296, -0.27428901195526123, -0.7950805425643921, 0.2845209836959839, 0.643740177154541, 1.5706629753112793, 0.9852830171585083, 0.13231369853019714, -1.1691570281982422, -0.20006750524044037, 0.05602358281612396, 0.0031491145491600037, 0.2195400595664978, -0.08141674101352692, -1.5165003538131714, -0.7056926488876343, 0.7908901572227478, 0.5921682119369507, -0.4578353762626648, -0.15137214958667755, 0.7609503269195557, -1.2553014755249023, 0.5838127136230469, 0.19874592125415802, 0.5990109443664551, -0.14510560035705566, 0.8062642216682434, 0.08655266463756561, 0.16726934909820557, 0.8097652196884155, 0.7957988977432251, 0.7229299545288086, -0.22357048094272614, -0.5346086025238037, 1.124468445777893, -0.8998372554779053, 1.606290578842163, -0.4149666130542755, -1.3303346633911133, -0.9246233105659485, 0.2778469920158386, 1.0226588249206543, -0.8046907782554626, -0.2887651026248932, -0.18183746933937073, -0.7292255759239197, -0.7712135910987854, 0.24903038144111633, -0.3971962332725525, -0.8232054114341736, 0.1730469912290573, -1.4278099536895752, 0.6227583885192871, -0.3400219976902008, 1.4348658323287964, 0.48268604278564453, 0.11620976030826569, 1.0227859020233154, -0.16356581449508667, 0.16701024770736694, 0.5349975824356079, 0.057623352855443954, -0.5203562378883362, -0.3915148973464966, 0.7818917036056519, 0.20188255608081818, -0.4125819802284241, -0.01348620280623436, 0.272935152053833, -0.10124144703149796, 1.253814697265625, -0.553770899772644, -0.3168622851371765, -0.49876517057418823, -0.11354079097509384, 0.2751161456108093, -0.5475406646728516, 0.1435067355632782, -0.4269710183143616, -1.0699135065078735, -1.0364668369293213, 1.233769178390503, -0.297183632850647, 1.0588210821151733, 0.2831735908985138, 0.9072046279907227, 0.5655326843261719, -0.6142265200614929, -0.12145187705755234, -0.27551913261413574, -0.6750127077102661, -0.6453620791435242, -0.31599438190460205, -0.6508058309555054, 0.057190969586372375, -0.6971714496612549, -0.3893274664878845, 0.7430187463760376, -0.496425986289978, -0.805662989616394, 0.14792248606681824, 0.1996818333864212, -0.19343259930610657, -1.1194250583648682, -0.43873438239097595, 0.6656457781791687, 1.3174397945404053, -1.4812806844711304, -0.018919821828603745, -0.7307933568954468, 0.7893792986869812, 1.1266847848892212, -0.35614076256752014, -0.835915744304657, 0.6651085615158081, 0.3987995386123657, -0.8818761706352234, 0.23266810178756714, -0.5675883293151855, 0.6675239205360413, -0.10954621434211731, 0.1740604043006897, 0.26183822751045227, 1.044028878211975, 0.623559296131134, 0.7369357347488403, -0.14568638801574707, -0.8799045085906982, -0.8083065152168274, -0.9754167795181274, -0.15615148842334747, -0.7795140743255615, -1.1593247652053833, 0.7060129642486572, 0.5812996625900269, -0.45314306020736694, 0.9340915679931641, 0.6577383875846863, 0.32112646102905273, 0.04399195313453674, 0.6350042223930359, 0.18211987614631653, 0.1929585039615631, -0.5521471500396729, -1.3567211627960205, -0.47024673223495483, 0.4441385865211487, 0.5377267003059387, -0.5915603637695312, 0.02901267632842064, 0.9603269100189209, 1.3474726676940918, 0.392147958278656, 1.3131003379821777, 0.7751193046569824, -0.5612889528274536, -0.8877605199813843, -0.2462906837463379, 0.3327942192554474, -0.46659237146377563, 1.5848546028137207, 1.170198917388916, -0.7122663855552673, -0.47576195001602173, 0.13703802227973938, -0.2707923352718353, -0.0615973062813282, 0.6206033229827881, -0.9678013920783997, 0.31654036045074463, 0.4169330596923828, 0.8267293572425842, 1.1491115093231201, -0.21842992305755615, 0.4950914978981018, -0.13963103294372559, -0.7465086579322815, -0.10345843434333801, 0.2747856378555298, -0.21997563540935516, 1.1774147748947144, 0.3619729280471802, -0.9261259436607361, -0.6345100998878479, -0.21880173683166504, 0.555034875869751, -0.146389901638031, -0.01679064705967903, 1.1563620567321777, 0.7298684120178223, 0.08817266672849655, -0.11584839969873428, 1.0261034965515137, -0.24605657160282135, -0.12130404263734818, 0.0004920102655887604, 0.21069282293319702, 0.5895137190818787, -0.701583206653595, -0.8639422059059143, 0.27573662996292114, 0.14446212351322174, 0.9829643368721008, 1.484283447265625, 1.6368813514709473, -1.0930052995681763, -0.14129428565502167, -0.4015581011772156, -0.6236386299133301, -0.8180240392684937, -0.08511653542518616, -0.1727038472890854, -0.9210790991783142, 0.24439913034439087, -0.6818745136260986, -0.2837531864643097, -0.07751843333244324, 0.5159282088279724, -0.31964725255966187, 1.4323549270629883, -0.06106002256274223, 0.36514267325401306, -0.11114057153463364, -0.3368188440799713, -1.5553348064422607, 0.4284117519855499, 0.7838473320007324, -2.1782889366149902, -0.7837530970573425, -0.22097183763980865, 0.07988578081130981, 0.07287532091140747, -0.1459171026945114, 0.47815942764282227, -1.0405571460723877, -0.7543790340423584, 0.14530198276042938, 1.1916160583496094, 0.30926433205604553, -0.32449859380722046, -0.7492880821228027, -0.08231380581855774, 0.08940233290195465, 0.04797956347465515, -0.8470120429992676, -0.009184155613183975, -0.2828281819820404, -0.41575461626052856, -0.6413029432296753, 0.4577629268169403, 0.9095066785812378, -0.9064154028892517, -0.42200952768325806, 0.5011296272277832, -0.2281360626220703, -0.6948400735855103, 0.5811464786529541, -0.2811795175075531, 0.968384325504303, 0.06794463098049164, 0.3492083251476288, 1.2552212476730347, -1.0596890449523926, -0.18058447539806366, -0.9788059592247009, 0.4208204746246338, 0.477111279964447, 2.1380372047424316, -0.34422022104263306, 0.36666274070739746, 0.2922605872154236, -0.5161432027816772, -0.07625904679298401, -0.3337750732898712, 0.7322386503219604, 0.24448052048683167, -0.2049981653690338, -0.17565907537937164, -1.3360084295272827, -0.38754409551620483, -0.8815701603889465, -0.12519264221191406, 0.10466001182794571, 0.6189459562301636, 0.39287465810775757, 0.4438934028148651, 0.6651009917259216, -0.7556310296058655, -0.1770780384540558, -0.16087430715560913, 0.03292255103588104, -0.38012751936912537, -0.2193162441253662, 0.17605990171432495, -0.13058973848819733, 0.39862361550331116, -0.9759349822998047, 0.5905098915100098, 0.48547422885894775, -0.23430532217025757, 1.0126465559005737, -1.2682554721832275, 0.023569822311401367, -0.9739122986793518, 0.10155080258846283, 0.5736994743347168, 0.15863420069217682, -0.34898024797439575, 0.20674371719360352, -0.4186015725135803, -0.3605119287967682, -0.6611683964729309, 1.1929419040679932, 0.23019328713417053, -0.25760316848754883, -0.9273003339767456, 0.39329439401626587, 0.7445461750030518, -0.8636776208877563, 0.07354776561260223, -0.07775913178920746, -0.42821305990219116, -0.12529587745666504, 0.2717592418193817, 0.3001350164413452, 1.728942632675171, 0.5012048482894897, 0.16472773253917694, 0.5982552766799927, -0.42185890674591064, -0.553373396396637, 0.009612701833248138, 0.8354765176773071, -0.5221210718154907, -0.10865742713212967, 0.16984418034553528, 0.39417916536331177, -0.43411362171173096, 0.17423740029335022, -0.07176376134157181, -0.0189657062292099, 0.17061148583889008, -0.2800813615322113, 0.2757706642150879, 0.475130558013916, 1.4917306900024414, -0.4597383737564087, 0.725100040435791, 0.06676002591848373, -0.5343332290649414, 0.5776636600494385, -0.840045154094696, 0.09237934648990631, 0.9137173891067505, 0.05715616047382355, 1.2259912490844727, -1.6394257545471191, -0.6447188258171082, 1.026118516921997, 1.1289228200912476, -0.007079429924488068, 0.5831974744796753, 0.9679818749427795, -0.5106897354125977, 0.4840030074119568, 0.37298503518104553, -0.5871356725692749, 0.8259764909744263, -0.20393474400043488, -0.14737068116664886, 0.1834786832332611, -0.17608994245529175, 0.2943217158317566, -1.1230101585388184, -0.7041009664535522, 0.8900028467178345, -0.6154484152793884, -0.06885173916816711, 0.19714899361133575, -0.1735183298587799, 0.9115549325942993, -0.25181522965431213, -1.5700287818908691, 0.21414873003959656, -0.56802898645401, -0.12174274772405624, -0.36274245381355286, -0.6204555034637451, -0.6697462797164917, -0.2107320874929428, -0.887438178062439, -0.6900818943977356, -1.3639768362045288, -0.14766521751880646, 0.07500597834587097, -1.1544702053070068, 0.0008186474442481995, 0.5091666579246521, 0.6437415480613708, 0.6127727031707764, 0.09272850304841995, -0.2839384078979492, 0.3783283233642578, -0.4739361107349396, 0.0646352469921112, 1.00138258934021, -0.05651375651359558, -0.5386796593666077, -0.1387937217950821, -1.0110211372375488, 1.9719613790512085, -0.0500873401761055, -0.12402172386646271, 0.20685669779777527, 0.7164819240570068, 1.4370120763778687, -0.38036543130874634, -0.4615187346935272, 0.915004312992096, -0.469022274017334, 1.328183889389038, 1.1189509630203247, -0.6002329587936401, -0.6892812252044678, -0.4183503985404968, -1.324220061302185, 1.456129789352417, 0.02406376600265503, -0.3374815583229065, 0.9174772500991821, 0.6117684245109558, -0.054302286356687546, 0.34806644916534424, -0.35289132595062256, -0.10589548200368881, 0.2574504017829895, 0.21485966444015503, -0.8428534269332886, 0.11444001644849777, 0.5326775908470154, 0.11563003063201904, -0.4203419089317322, 0.17608679831027985, 0.105682872235775, 0.10976450890302658, -0.7195164561271667, 0.25607678294181824, -0.4644920229911804, -0.022034987807273865, 0.2587535083293915, -0.123850978910923, -0.32707029581069946, -0.24961577355861664, -0.21963293850421906, -0.09058093279600143, 0.4571494460105896, 0.4230044484138489, -0.3323912024497986, 0.16657495498657227, -0.43468064069747925, -0.3012220859527588, -0.038484930992126465, -0.23349356651306152, 1.554710030555725, 0.5382276773452759, -0.3447449803352356, -0.36002346873283386, 0.03444096818566322, -0.5661222338676453, -0.6696724891662598, -0.37277835607528687, 0.21138504147529602, -1.0472261905670166, -0.48714888095855713, -0.26291805505752563, -0.31156039237976074, 0.3840823769569397, -0.15024706721305847, -0.048603709787130356, -0.5180923938751221, -1.0900695323944092, -0.7817627191543579, 0.5081498622894287, 0.1680099070072174, -0.7181854844093323, 0.3310077488422394, 0.059989288449287415, -1.502806305885315, 0.23789647221565247, 0.3181033134460449, -1.4538650512695312, 0.12966220080852509, -1.19956374168396, -0.3603562116622925, -0.23508432507514954, -0.024564821273088455, -1.1185874938964844, 0.7036104202270508, -1.1661502122879028, -1.7242696285247803, -0.7365450859069824, 0.3091743588447571, 1.1838581562042236, 0.7822120785713196, -1.4552749395370483, 1.4867992401123047, -0.588632345199585, -0.642096996307373, -0.5065166354179382, 0.012208599597215652, -0.2715626358985901, -0.298423707485199, 0.26182180643081665, -0.3082523047924042, 0.8914090394973755, 0.9160417914390564, 0.7041507959365845, 0.9656260013580322, 0.3784191906452179, 0.8849025368690491, -1.27680242061615, -0.4852699935436249, 0.06284119188785553, -0.04111041501164436, -1.1925089359283447, 0.19953782856464386, -0.3810656666755676, -0.3626566529273987, -0.8508110046386719, 1.2282211780548096, 0.315395325422287, -1.0907044410705566, 0.31210407614707947, -0.6246778964996338, 0.15470489859580994, -0.5131792426109314, 0.4759027659893036, 0.1547955870628357, -0.6186058521270752, 0.5924944281578064, 0.6299099922180176, -0.00015410780906677246, -0.334250807762146, 0.41950225830078125, -0.6750616431236267, 0.6405531167984009, -0.08769334852695465, 0.2725745439529419, -0.030734702944755554, 0.04259325563907623, -1.0507922172546387, 1.3377165794372559, 0.37077265977859497, 0.4682449400424957, 0.18629512190818787, -0.07982639223337173, -1.0220117568969727, 0.07561127841472626, -0.6015182733535767, 0.19293469190597534, -0.8646039366722107, 0.782347559928894, 0.4571463465690613, 0.22379854321479797, 0.23492766916751862, 0.730098307132721, -0.096644327044487, -0.0216834619641304, 0.8495962619781494, 0.3721695840358734, -0.8634331822395325, 1.3359906673431396, 1.2486352920532227, -0.7850334644317627, 0.5527004599571228, 0.18126721680164337, 0.18628254532814026, -0.44094759225845337, 0.3388088643550873, 0.5567024946212769, -0.4881722033023834, 0.6239312887191772, 0.5772297382354736, -0.6570819020271301, -0.11090242862701416, -0.4862772226333618, -2.0292446613311768, -0.2614094316959381, -0.4727657437324524, 0.7199041843414307, 0.6885002851486206, -0.5217081308364868, -0.2066464126110077, -0.6132776737213135, 0.17203360795974731, 0.22749945521354675, -0.6779252290725708, 0.1443449705839157, 0.06890026479959488, 0.7098323702812195, 0.5353447198867798, -0.7560495138168335, 0.5858542919158936, -0.4238188564777374, -0.8421434164047241, -0.49228888750076294, -0.0854080319404602, 1.1084208488464355, 0.5421751737594604, -0.30797821283340454, -0.05242873355746269, 0.4321105480194092, -1.2002179622650146, -1.0087180137634277, 0.07652956992387772, 0.8282773494720459, 0.43216001987457275, -0.2807505428791046, -0.7567939162254333, -0.04897915571928024, 0.7357950806617737, 0.31831490993499756, -0.7501158118247986, -0.4546671509742737, -1.1349163055419922, -0.1869489997625351, -0.2868664264678955, 0.6103302240371704, -0.8957734704017639, 0.6539777517318726, 0.23903410136699677, -0.486798495054245, -0.4667445421218872, -0.6470481157302856, 0.5751333236694336, 0.27806177735328674, 0.5340892672538757, -0.5631399154663086, -0.016833383589982986, 0.04070441424846649, -1.162530779838562, -0.8179304599761963, -0.13206130266189575, -0.33872532844543457, 0.4444003105163574, -1.0645880699157715, -0.5430161952972412, -0.722771406173706, -0.8222694396972656, 0.5473506450653076, 0.07553655654191971, -0.14178919792175293, -0.7364374399185181, -1.5279146432876587, 0.19877368211746216, 1.0510982275009155, 0.18583886325359344, 0.322974294424057, 1.020111083984375, 2.1853339672088623, 0.18893349170684814, -0.12032480537891388, 0.1200275719165802, 1.7268970012664795, -1.0526224374771118, 0.5361969470977783, -1.2670457363128662, 0.2542020082473755, -1.3056560754776], [-0.044416941702365875, 1.402078628540039, -2.1044273376464844, -0.5751803517341614, 0.937399685382843, 0.5377804636955261, 1.1635857820510864, -0.5951124429702759, -0.20127534866333008, -1.0722850561141968, -0.4094125032424927, -0.26667454838752747, 0.09839703142642975, 0.7631881833076477, 0.4673151969909668, 0.5306785106658936, 0.49050143361091614, -0.06190618872642517, 1.2788488864898682, 0.4677765667438507, -0.11954407393932343, -1.2324954271316528, 0.2534376382827759, -0.21570545434951782, -0.06821386516094208, 0.9183183312416077, -0.6897538900375366, -0.5990045666694641, -1.0413578748703003, -0.8887815475463867, 1.1081053018569946, -0.09156759828329086, -0.048293549567461014, -0.21083639562129974, -1.774829626083374, -0.7879432439804077, 1.2079535722732544, 0.6112561821937561, 0.20100431144237518, 0.67087721824646, 0.9761568903923035, 0.13960899412631989, 0.3890904188156128, -1.9786666631698608, 0.6392406225204468, -0.06167510151863098, 0.7141895294189453, -0.3255566954612732, 0.1653776317834854, -0.9034363031387329, 0.838537335395813, -0.8802545070648193, -0.059793438762426376, 1.2898439168930054, 1.1563773155212402, -0.9385828971862793, 0.13842163980007172, 0.703889012336731, 0.21646322309970856, 0.5371145009994507, 1.3306845426559448, -0.08250689506530762, 0.34213605523109436, 1.1351946592330933, 0.4447283446788788, -0.5871655344963074, 0.5824933052062988, 0.3825901448726654, -0.40209585428237915, 0.1529236137866974, 0.4195556640625, 0.3709208071231842, -0.4289121925830841, 0.4129824638366699, -1.1188958883285522, 0.5018109083175659, 0.015501728281378746, 0.9211567044258118, 0.007773702964186668, 0.9204725027084351, -1.415655493736267, 0.26863205432891846, 0.3584529757499695, -0.44087883830070496, -0.01630742847919464, 0.27709221839904785, 0.5186018943786621, -1.3774021863937378, 0.2641228437423706, 1.5119484663009644, 0.3732386827468872, -0.017975464463233948, 0.8525304198265076, -0.0610804557800293, -0.6695416569709778, -0.0656445324420929, 0.6111995577812195, -0.780052661895752, -0.4182969629764557, -0.7210943102836609, -0.3762964904308319, -0.5219188332557678, 0.37289711833000183, 0.7780442237854004, 0.7030501961708069, 1.4739928245544434, 0.8026324510574341, -0.6953709125518799, -0.7013683915138245, 0.5345568060874939, 0.4290313124656677, 0.9168300628662109, -0.7973065972328186, -1.8277637958526611, 0.07084958255290985, 1.0727769136428833, 1.1884177923202515, -0.23366156220436096, 0.7352898120880127, 0.5803743600845337, -0.6883097887039185, 0.020284513011574745, -0.07488586008548737, 0.15736153721809387, 0.9510090947151184, 0.22885742783546448, -1.2559577226638794, -0.3198770582675934, -0.5297157168388367, 0.05795867368578911, 0.051867250353097916, -0.7450546026229858, -0.4421796500682831, 1.0683461427688599, -0.3563646078109741, 1.3871995210647583, -0.5950978398323059, -0.42596572637557983, 0.16471128165721893, 0.23044627904891968, 0.3156585097312927, 0.13477765023708344, -0.4090591073036194, -0.01203947514295578, 0.028788354247808456, -0.804588258266449, -0.2644311487674713, 0.12513631582260132, -0.573696494102478, 0.6233339905738831, -1.5516018867492676, 0.34896114468574524, -0.6330293416976929, 1.2675631046295166, 0.5392600297927856, 0.30281195044517517, 0.613922655582428, -0.08545085787773132, 0.663864016532898, 0.3346075713634491, 0.7295199632644653, 0.2668069899082184, -1.3949730396270752, 0.4862120449542999, 0.3736444115638733, -0.7925489544868469, 0.6505952477455139, 0.7489773631095886, 0.24204151332378387, 0.4646972417831421, -0.6178117990493774, -0.19154228270053864, -0.2792834937572479, 0.30406874418258667, -0.048249635845422745, -0.6079807281494141, 0.8046802282333374, -0.10889249294996262, -1.3971679210662842, -1.7045847177505493, 0.5950488448143005, 0.013176130130887032, 0.04309837520122528, 0.3291095495223999, 0.8083045482635498, 0.26174986362457275, -0.4119787812232971, -0.015316197648644447, 0.016819478943943977, -1.0674653053283691, -0.7454851865768433, -0.4864177405834198, -0.8929452300071716, 0.4420503079891205, -0.49489906430244446, -0.5372951030731201, 0.45095619559288025, -0.13190028071403503, -0.08731527626514435, -0.09742825478315353, -0.8522457480430603, -0.9675421118736267, -1.144926905632019, 0.17437180876731873, -0.5184071660041809, 0.3083248734474182, -0.8491614460945129, 0.22992844879627228, -1.2479742765426636, 0.21547269821166992, 1.2807226181030273, 0.058582667261362076, -0.4344826936721802, 0.39499661326408386, -0.22967155277729034, -1.5037336349487305, 0.40812110900878906, 1.052208423614502, 0.0531281977891922, 0.31415504217147827, -0.18236325681209564, 0.2741188406944275, 0.8582251667976379, -0.4091895818710327, 1.0648363828659058, -0.3365202844142914, -1.0243147611618042, -0.5555379390716553, -0.5597243309020996, -0.3390186131000519, -1.1280755996704102, -1.3639311790466309, 0.05573968216776848, 0.49124717712402344, -1.9625942707061768, 0.23368535935878754, 0.6805025339126587, 0.5626250505447388, 0.6205450296401978, 1.6622130870819092, 0.6643199324607849, 0.9633110761642456, -0.7071590423583984, -0.11280830204486847, -0.7898626327514648, 0.025212008506059647, 0.6449944376945496, -0.9789050221443176, -0.16248762607574463, 0.8597478866577148, 0.6789675951004028, 0.1082460880279541, 1.0387721061706543, -0.7720965147018433, -0.31927213072776794, -0.605482816696167, -0.006399938836693764, -0.2712418735027313, 0.13777852058410645, 1.3605409860610962, 0.13134025037288666, -0.8385430574417114, 0.28443601727485657, -0.6256663799285889, 0.6213763952255249, -0.3827158212661743, 0.07805140316486359, 0.7872428297996521, 0.4928026795387268, 0.275836706161499, -0.06286284327507019, -0.37795403599739075, -0.49480947852134705, 1.246436595916748, -0.07226847857236862, -0.08141486346721649, -0.2145618051290512, 0.27434059977531433, -0.05888327956199646, 0.6872826218605042, -0.1352906972169876, -0.28388711810112, -1.6226588487625122, -0.14523962140083313, 0.09060405194759369, -0.2893370985984802, 0.24956834316253662, 1.0195488929748535, 0.539933443069458, -0.3532797694206238, 0.6074523329734802, -0.0952989012002945, 0.10229871422052383, 0.3134474754333496, 0.46941033005714417, -0.5433635711669922, 0.4815135896205902, -0.4496583342552185, -0.557758092880249, -0.7674725651741028, 0.23448191583156586, 1.8430041074752808, 0.8695045709609985, 1.3646984100341797, -0.49211400747299194, -0.2611118257045746, -0.026110516861081123, -0.3392760157585144, -0.9135829210281372, -0.6041941046714783, 0.3453706204891205, -0.18080663681030273, -0.5854396224021912, -1.2244876623153687, 0.6823505163192749, 0.6875934600830078, -7.525738328695297e-05, 1.0361957550048828, 0.3259107172489166, 0.16345131397247314, -0.7962639927864075, -0.6736337542533875, -0.3431941568851471, -1.2720447778701782, -0.1830618977546692, 1.196555495262146, -0.9641283750534058, -0.6531535983085632, 0.3009282946586609, -0.10465964674949646, 0.062458280473947525, -0.4629671573638916, 0.6853082180023193, -0.8842697143554688, -0.482924222946167, -0.4065365493297577, 1.7548667192459106, -0.13173240423202515, -0.26848772168159485, -0.36818230152130127, 1.1941726207733154, 0.29132306575775146, -0.2277919054031372, -0.15404821932315826, 0.25351041555404663, -0.5528118014335632, -0.4281257390975952, 0.18193526566028595, 0.3441208004951477, 0.48398280143737793, -0.6385772824287415, -0.9108831286430359, 0.005539761856198311, 0.4248200058937073, -0.7372708916664124, 0.5731465816497803, -0.5222831964492798, 0.9453089237213135, 0.6282860636711121, 0.35267505049705505, 0.16191807389259338, -0.47458821535110474, 0.027106793597340584, -1.4890053272247314, 0.6722936630249023, 0.4593076705932617, 1.2345292568206787, 1.076357364654541, -0.26315629482269287, 0.22206299006938934, -0.49018147587776184, 0.2840631902217865, 0.26683759689331055, 0.7327660918235779, -0.3486359715461731, -0.34564438462257385, 0.040152303874492645, -0.34210172295570374, 0.7411035895347595, -0.1598832607269287, 0.1799665242433548, 0.35067129135131836, -0.5963546633720398, -0.5441079139709473, 1.3977422714233398, 0.4392251670360565, 0.2281745821237564, -0.8279949426651001, -0.23219740390777588, 0.9369310736656189, -0.6521297097206116, -0.18103542923927307, -0.11943482607603073, 0.186629056930542, -0.11645528674125671, -0.449252724647522, -0.1015159860253334, 0.19368292391300201, 0.3029336631298065, 0.8812821507453918, -0.8393614888191223, -0.5066608190536499, -0.02316705323755741, 0.44363465905189514, 0.4801435172557831, 0.17985934019088745, 0.06910116970539093, 0.5626983642578125, -0.31538379192352295, 0.5841789245605469, 0.9278424382209778, 1.0892587900161743, 0.10640393197536469, -0.19018007814884186, 0.08403732627630234, -0.19006550312042236, 0.12339188158512115, -0.10685995221138, -0.5098809003829956, -0.04154783487319946, -0.533090353012085, 0.39194753766059875, -0.2861706018447876, -0.5692172646522522, 1.251650333404541, -0.18539445102214813, 0.11035978049039841, 0.16871170699596405, 0.3045724332332611, -0.9119853377342224, -0.014953173696994781, -0.05300378426909447, -0.6782175302505493, -0.1948852241039276, -0.34968438744544983, -0.6042516231536865, -0.17507857084274292, 0.5160726308822632, 0.3492030203342438, 0.8868139982223511, -0.5238142609596252, -0.10495352745056152, -0.19212675094604492, 0.5683580040931702, 0.5623717904090881, 1.5593655109405518, 0.9641308784484863, -0.024325767531991005, -1.6710721254348755, 0.9761072993278503, 0.1796172708272934, 0.570366621017456, 0.2982291877269745, -0.22637251019477844, 1.4007247686386108, -0.9531839489936829, 0.19427631795406342, 0.690990149974823, 0.24069352447986603, -0.46889179944992065, 0.595853328704834, -0.3794657588005066, -0.44467681646347046, 0.054475389420986176, 0.5628691911697388, 0.22113493084907532, 0.19415895640850067, 0.20309904217720032, 0.2980792820453644, 0.4020068943500519, -0.5604016184806824, 0.5857418775558472, -1.0299540758132935, -0.4043668508529663, 0.20931437611579895, -0.053215429186820984, 0.3620953857898712, 1.1426080465316772, 0.39168956875801086, 1.1203868389129639, 0.0364224836230278, -1.4785677194595337, -0.36651650071144104, -0.4754094183444977, 0.351588636636734, -0.6013376712799072, -0.2816106975078583, -0.6153092384338379, -0.15963760018348694, -0.2791922688484192, 0.0005451012402772903, 0.26380956172943115, -0.3057316839694977, -0.47574394941329956, -1.4053184986114502, 0.5821470022201538, 0.517678439617157, 0.772447407245636, 0.22406497597694397, -0.11446995288133621, -0.3570012152194977, -0.09574105590581894, -0.9226447343826294, 0.23347757756710052, -0.13882635533809662, 0.04444823041558266, 0.15969090163707733, -1.320959448814392, -0.7234352231025696, 0.6750874519348145, 0.24664929509162903, 0.12417282909154892, -0.25109604001045227, 1.538688063621521, 1.1849652528762817, -0.5526554584503174, -0.28242817521095276, 0.7309940457344055, -0.8661783933639526, 0.5297197103500366, -0.32654017210006714, -0.40482595562934875, -0.44939813017845154, -0.19263093173503876, -1.9263606071472168, 0.8765355348587036, -0.2766849398612976, -0.03346119076013565, 0.4769194424152374, 0.23345601558685303, 1.1203832626342773, 1.1810165643692017, -0.5686975717544556, 0.49938732385635376, 0.21406012773513794, -0.3017459511756897, -0.9241124987602234, 0.6727129220962524, 0.48438504338264465, 0.9963387846946716, -0.3056102693080902, -0.07761286944150925, -0.34820738434791565, -0.36981046199798584, -0.4363214373588562, -0.2938145697116852, 0.07501427084207535, 0.511756420135498, 0.5220009684562683, -0.27466532588005066, 1.0655338764190674, -0.5553305149078369, 0.22789786756038666, -0.3295741677284241, 0.9014621376991272, 0.45954498648643494, -0.06279753893613815, 0.42082643508911133, -0.6488525867462158, -0.21745935082435608, -0.6002092361450195, -0.5127614140510559, 0.5074313282966614, 1.3647516965866089, 0.3936319351196289, -0.5014240741729736, -0.9629132747650146, -0.19461287558078766, -0.5711473822593689, -0.0006628185510635376, 0.5665513873100281, -0.6923477053642273, -0.2901225686073303, 0.24926185607910156, 0.1053847223520279, -0.10752146691083908, 0.16154620051383972, -0.2361067235469818, -0.790973424911499, -1.254316806793213, -1.2919632196426392, -0.2765788733959198, 0.730676531791687, -0.3323654532432556, 0.9095617532730103, 0.23388101160526276, -1.4668869972229004, 0.8250917196273804, 0.20047567784786224, -1.6804964542388916, -0.5589976906776428, -0.5783993005752563, 1.222690224647522, 0.4497523605823517, 0.3297041356563568, 0.5968297719955444, 0.8392669558525085, -1.532357096672058, -0.8837911486625671, -0.9164702892303467, -0.5126408934593201, 0.7114959359169006, 0.32732445001602173, -1.3515228033065796, 0.8285483121871948, 0.48760199546813965, -0.5964936017990112, -0.6338737607002258, -0.3605274260044098, -1.1504671573638916, 0.004224175587296486, 0.3948376476764679, 0.075180783867836, 0.11847539991140366, 1.2121427059173584, 0.8445920944213867, 0.24041076004505157, -0.09362898766994476, 0.9736860394477844, -1.0760033130645752, -0.2553984224796295, -0.48080238699913025, 0.327483206987381, -1.0482970476150513, -1.1696546077728271, 0.2494489997625351, -0.5954972505569458, -0.8529770374298096, 0.7223266363143921, 1.1194740533828735, -1.1038074493408203, 0.49088096618652344, 0.06334243714809418, -0.12344810366630554, -1.880218267440796, 0.6596723794937134, -0.29157379269599915, -0.9603985548019409, -0.6547042727470398, 0.40917259454727173, 0.21706482768058777, -1.2592369318008423, 0.1419535130262375, -0.11371022462844849, -0.08684258908033371, -0.0674600675702095, 0.40368157625198364, 1.2514503002166748, 0.5888975858688354, -0.6911795735359192, 0.29414352774620056, 0.8137028813362122, -0.2950771749019623, -0.0989765077829361, 0.6513705849647522, -0.5109925270080566, 0.4285961985588074, 0.12616749107837677, -0.6559460759162903, -0.48558032512664795, 0.9427412152290344, 0.15103274583816528, 0.006050620228052139, 0.3641006350517273, 0.26445943117141724, 0.30660760402679443, -0.015192186459898949, 1.0691674947738647, -0.4623146057128906, -1.3946688175201416, 0.40905269980430603, 0.9947550296783447, -0.07667391002178192, -0.018950199708342552, 0.6497119665145874, 0.38912296295166016, 0.15719690918922424, 0.23639865219593048, -0.29088497161865234, -0.9340640306472778, 0.34830233454704285, 0.4151287376880646, 0.13145121932029724, -0.03394405543804169, -0.8913295865058899, -1.560900092124939, -0.08936385065317154, -1.2257578372955322, -0.024204490706324577, 0.14585544168949127, -0.7508996725082397, -1.5732682943344116, 0.018859265372157097, -0.2908936142921448, -0.02791270986199379, -0.5886101722717285, 0.3030117452144623, -0.023865852504968643, -0.5761330127716064, 0.4989162087440491, -0.1033472865819931, 1.371401071548462, -0.10972832888364792, -0.2476048618555069, -0.5061457753181458, -0.2326846420764923, 0.6293866634368896, -0.22567059099674225, 0.2231796234846115, -0.5927191972732544, 0.837131679058075, -0.9157205820083618, -0.2824017405509949, -0.18971416354179382, 0.18336135149002075, -0.11333727091550827, 0.7743070721626282, -0.6868599057197571, 0.3057585656642914, 0.8741434216499329, 0.3597508668899536, -0.6306324005126953, -0.18999935686588287, -0.5318303108215332, 0.3912307024002075, -0.29989001154899597, 1.2328815460205078, -0.15254338085651398, 0.9042124152183533, 0.9792290925979614, -0.30203959345817566, -0.5118998289108276, 0.19738158583641052, 0.914580762386322, -0.26755595207214355, 0.3967004418373108, 0.3061973452568054, 0.1567133218050003, -0.558241605758667, -0.607599675655365, 0.6482073068618774, -0.2026410698890686, -0.8589388132095337, 0.5440601110458374, -1.2092862129211426, -0.8026772141456604, -0.7221213579177856, -0.33440807461738586, -0.06153516843914986, -0.042402248829603195, 0.12536391615867615, -0.16215014457702637, -1.1820133924484253, 0.08321592211723328, 0.1484343707561493, -0.8830643892288208, 0.5652592778205872, 0.7463646531105042, 2.329296827316284, 0.6495596170425415, -0.32279807329177856, -0.5489091277122498, 0.2523348033428192, -0.7435396909713745, 0.3841293454170227, -0.3262218236923218, 0.1125044971704483, -0.6474377512931824], [0.10231846570968628, 1.0659829378128052, -2.1682400703430176, -0.33129939436912537, 0.3209768533706665, 0.45532742142677307, 0.8770010471343994, 0.5706318020820618, 0.405374139547348, -0.9323114156723022, -1.313124418258667, 0.4830459654331207, 0.9249844551086426, 0.3263990879058838, 0.2946232855319977, 0.5251953601837158, 0.49269387125968933, -0.5952733755111694, 0.8297678828239441, 0.3552466332912445, -1.1429009437561035, -0.9356111288070679, 0.07489956170320511, -0.33883136510849, 0.03423900902271271, 0.4557921886444092, -0.9324043989181519, -0.9979634881019592, -1.4103879928588867, -0.0914892852306366, 0.3495200574398041, -0.6778118014335632, 0.155171200633049, -0.022704096511006355, -0.9266040325164795, 0.07065974175930023, 0.8601217269897461, -0.02931276522576809, -0.06395316869020462, 0.7652401924133301, 1.8470056056976318, -0.5812004804611206, 0.27128100395202637, -1.03751540184021, 0.6289132237434387, 0.13285380601882935, -0.01802481897175312, -0.41060540080070496, 0.6342703700065613, -0.2270466685295105, 0.9746413230895996, -0.5870822668075562, -0.17095118761062622, 1.0599764585494995, 1.1368530988693237, -0.5628495812416077, -0.17136846482753754, 0.6610867381095886, -0.02865487150847912, 0.29744020104408264, 1.0006452798843384, 0.3632409870624542, -0.3974243104457855, 0.8607131242752075, 0.6125075817108154, -0.21258407831192017, 0.1570136994123459, 0.4972154498100281, -0.4526255428791046, -0.07555914670228958, 0.5421399474143982, 0.2972063422203064, -0.8923390507698059, 0.2597699761390686, -0.7489974498748779, -0.19245938956737518, -0.02537437714636326, 0.5878583192825317, 0.5624841451644897, 1.1647802591323853, -0.5969042181968689, 0.09717773646116257, 0.6001951694488525, -0.19123850762844086, 0.14687758684158325, 0.3986470699310303, 0.4181042015552521, 0.03464614227414131, -0.7122012376785278, 1.5718038082122803, 0.2584656774997711, 0.3547275960445404, -0.025239083915948868, -0.23318436741828918, -0.6992363929748535, -0.384457528591156, 0.02751469798386097, -0.8576423525810242, 0.190452441573143, -1.2767711877822876, -0.20215079188346863, -1.1046861410140991, 0.7753300070762634, 0.9903930425643921, 0.8875487446784973, 1.1325366497039795, 0.7555757761001587, -1.0730760097503662, -0.022369422018527985, -0.3248979151248932, 0.6104768514633179, 0.4167401194572449, -0.6737470626831055, -1.0004745721817017, -0.4795008599758148, 0.7286986708641052, 1.077257752418518, -0.587882936000824, 0.5800970792770386, 0.5062273144721985, -0.5214924216270447, -0.05804259702563286, -0.5228179097175598, 1.0581892728805542, 0.9136543869972229, 0.8513570427894592, -0.4959871172904968, -0.2529863119125366, 0.10209362208843231, 0.011967492289841175, -0.4561743438243866, -0.12844109535217285, -0.5628744959831238, 1.059421420097351, -0.25337764620780945, 1.6568615436553955, -0.2958360016345978, -0.6483516693115234, 0.24640856683254242, -0.04864031821489334, 0.5732844471931458, 0.06101341173052788, -0.9325271248817444, -0.2502155900001526, -0.18218860030174255, -0.7293974757194519, 0.16617174446582794, -0.18278776109218597, -0.45789071917533875, 0.26021644473075867, -1.3024137020111084, 0.48892053961753845, -0.7733827829360962, 1.2297933101654053, 0.21235382556915283, -0.008066585287451744, 0.8803772330284119, 0.0037546390667557716, 0.17065764963626862, 0.5225971341133118, 0.7883098721504211, -0.17839114367961884, -0.7053188681602478, 1.1352145671844482, 0.01542922668159008, -0.4688056707382202, 0.29472967982292175, 0.4334350526332855, -0.06535112857818604, 0.40660783648490906, 0.16312386095523834, 0.07943543791770935, -0.044019050896167755, 0.3471578359603882, -0.2200697958469391, -1.1575427055358887, 0.41276612877845764, -0.6459521651268005, -1.4046210050582886, -1.5755198001861572, 0.5713626742362976, -0.16638943552970886, 0.3401279151439667, -0.15411430597305298, 0.6391913890838623, -0.28667381405830383, -0.3859771490097046, 0.03271142393350601, -0.10956935584545135, -0.763965904712677, -0.8186301589012146, -0.4519422948360443, -0.871889054775238, 0.2746366262435913, -0.8471947312355042, -0.9153027534484863, 0.7712245583534241, 0.02628072164952755, -0.4050903022289276, -0.49256300926208496, -0.4583922326564789, -0.5020535588264465, -1.820373773574829, 0.024592315778136253, -0.6868930459022522, 1.5392324924468994, -0.40678343176841736, 0.372230589389801, -1.0611748695373535, 0.4929890036582947, 0.8997527360916138, -0.2878718674182892, -1.2753450870513916, -0.0531785786151886, 0.077097587287426, -0.4155494272708893, -0.24561449885368347, 0.26047295331954956, 0.06227713078260422, 0.6873406767845154, 0.1242678165435791, 0.2957139015197754, 0.32234323024749756, -0.42472293972969055, 0.8951354622840881, -0.3092218041419983, -0.8821630477905273, -0.7016598582267761, -0.8831051588058472, 0.08581787347793579, -0.5311516523361206, -1.3095921277999878, 0.2685120701789856, 0.41865652799606323, -0.9387242794036865, 1.0082529783248901, 0.38706356287002563, 0.27884408831596375, 0.2308167666196823, 0.38125982880592346, 0.2960532009601593, 0.7696126103401184, -0.9484925270080566, -0.3377460539340973, -0.07428505271673203, -0.006398544646799564, 0.4777834415435791, -0.6091687083244324, -0.4950910210609436, 1.486143946647644, 1.1639573574066162, -0.2961326539516449, 0.9370927214622498, 0.08406482636928558, -0.3165017068386078, -0.7313705086708069, 0.07616059482097626, 0.010594666004180908, -0.48202750086784363, 1.136252760887146, 0.8145649433135986, -1.2046138048171997, -0.3258589208126068, -0.07589883357286453, -0.25087952613830566, -0.492736279964447, -0.36022064089775085, -0.6817397475242615, 1.0527338981628418, 0.07994964718818665, -0.13020826876163483, 0.008484813384711742, -0.6042671799659729, 0.770729124546051, 0.012712228111922741, 0.06607689708471298, -0.7489562034606934, 0.3639538586139679, -0.3355691134929657, 0.67885422706604, -0.023780284449458122, -1.2299585342407227, -0.7351587414741516, 0.01798960566520691, 0.6716556549072266, 0.4613363742828369, 0.4706447124481201, 1.0437787771224976, 0.9757965803146362, -0.24446174502372742, 0.01043689250946045, -0.3891716003417969, 0.053843904286623, 1.0151010751724243, 0.27677083015441895, -0.1427791267633438, 0.6264241933822632, -0.1381281167268753, -0.7853248119354248, -0.6286437511444092, 0.19790175557136536, 0.8888104557991028, 1.2809594869613647, 0.4844275116920471, -1.035516619682312, -0.3356713354587555, -0.307262659072876, 0.3139493465423584, -0.49372607469558716, -0.8229315876960754, -0.7269675731658936, -0.5352737307548523, -0.28235137462615967, 0.04297490417957306, -0.06319069117307663, 1.099464774131775, 0.0005694061983376741, 0.5027269721031189, 0.7135552763938904, 0.09378576278686523, -0.28631603717803955, -0.20254486799240112, -0.06637599319219589, -1.077304482460022, 0.16481085121631622, 1.4891247749328613, -1.5432761907577515, -0.4280920624732971, 0.04032602161169052, 0.09263391047716141, 0.1344631314277649, -0.15531037747859955, 0.14767809212207794, -0.5591437816619873, -0.27342191338539124, -0.06990406662225723, 1.2906755208969116, 0.20906475186347961, -0.06892435252666473, -0.6277373433113098, 1.2432600259780884, 0.23648859560489655, -0.16802659630775452, -0.1529979258775711, 0.34681248664855957, -0.8409165740013123, -0.7620750069618225, -0.4372577667236328, 0.1581173688173294, 0.7334797978401184, -0.4700258672237396, -0.3987032473087311, -0.28184589743614197, -0.1352570354938507, -0.8003107309341431, 0.12294899672269821, -0.6733930110931396, 0.4497731328010559, 0.29160770773887634, 0.22037672996520996, 0.726969838142395, -0.2741752862930298, 0.6186981201171875, -1.2398617267608643, 0.3826824724674225, 1.1399307250976562, 0.8952075242996216, 0.9379507303237915, 0.2916163206100464, 0.08268488943576813, -0.9687803387641907, -0.36276575922966003, 0.08932004123926163, 0.6898979544639587, 0.0335208959877491, 0.13532307744026184, -0.44211289286613464, -0.4230997860431671, 0.11540547758340836, -0.7623655200004578, -0.09769964963197708, 0.2447512447834015, -0.25080132484436035, -0.5632684230804443, 0.7220411896705627, 0.12528735399246216, -0.026956776157021523, -0.36253827810287476, 0.2774563729763031, 1.0852571725845337, -0.4656570851802826, 0.1162312924861908, 0.14398953318595886, 0.19159863889217377, 0.3781634569168091, -0.17724530398845673, -0.2557332217693329, 0.5110142827033997, 0.16268059611320496, 0.8078315854072571, -1.5647345781326294, -0.38266366720199585, -0.2825195789337158, -0.0056684971787035465, 0.44864508509635925, 0.11976038664579391, 0.1214926540851593, 0.18268141150474548, -0.5072701573371887, -0.3446296155452728, 0.08044572174549103, 0.746229350566864, 0.012647668831050396, 0.5457168221473694, -0.5068028569221497, 0.4775415360927582, 0.4295043647289276, -0.8024523258209229, -0.7662203311920166, 0.47105368971824646, -0.6446012258529663, 0.552959144115448, 0.6493451595306396, -0.1981944739818573, 1.6227173805236816, -0.008315451443195343, 0.15261441469192505, 0.8815245032310486, -0.3032084107398987, -0.24390418827533722, -0.016252396628260612, 0.707231342792511, -0.3845173418521881, -0.9631162285804749, 0.21922314167022705, 0.35895559191703796, 0.443779855966568, 0.2967756390571594, -0.010054541751742363, 0.5325489640235901, 0.3288618326187134, -0.49046260118484497, 0.12261214852333069, 0.882689356803894, 0.9427655935287476, 0.4904576241970062, 0.7225733399391174, 0.4094087481498718, -1.2012698650360107, 0.7995283007621765, -0.3002049922943115, -0.15055063366889954, 0.2288036346435547, 0.329083114862442, 1.4017531871795654, -1.4846128225326538, -0.1932739019393921, 0.3658563196659088, 0.10311920940876007, 0.09683805704116821, 0.5415061712265015, 0.7107263803482056, -1.219359040260315, -0.029575787484645844, 0.3369160294532776, -0.056885723024606705, 0.3309822380542755, 0.2839503586292267, 0.3885314464569092, 0.4173871576786041, -0.6234391331672668, -0.05865945667028427, -0.7092468738555908, -0.3197086453437805, 0.5579224228858948, -0.0940452292561531, 0.6385071277618408, -0.029640397056937218, 0.44189342856407166, 0.9081335067749023, -0.7083243131637573, -1.437511920928955, -0.09937963634729385, -0.6541922688484192, -0.04288578778505325, -0.03500746935606003, 0.031154150143265724, -0.5874741077423096, -0.2664118707180023, 0.3319528102874756, 0.22169767320156097, -0.09665657579898834, -0.2307945191860199, 0.7933726906776428, -1.3800389766693115, 0.029530614614486694, 0.7194676399230957, 1.2603294849395752, 1.1668399572372437, 0.0057183727622032166, -0.15975575149059296, 0.5090819001197815, -0.4250332713127136, 0.18117277324199677, 0.0679297149181366, -0.27497947216033936, 0.13008661568164825, -0.7806468605995178, -0.5721760392189026, 0.28312498331069946, 0.600123405456543, -0.15968476235866547, -0.4336242973804474, 0.9485036134719849, 1.712527871131897, -1.0997151136398315, -0.6716794371604919, 1.3679943084716797, -0.24315118789672852, 1.3237695693969727, 0.09202957153320312, -0.5403064489364624, -0.44869911670684814, -0.04130573943257332, -1.588956356048584, 0.9674293398857117, -0.03323015943169594, -0.8864249587059021, 0.549061119556427, 0.3188721537590027, 0.10258984565734863, 0.8728535175323486, -1.0549025535583496, -0.3517206609249115, 0.8451035022735596, -0.26789242029190063, -1.1512596607208252, 1.0357874631881714, 0.4050579369068146, 0.8430876731872559, 0.138723686337471, 0.3366875946521759, 0.06399861723184586, 0.02899136394262314, 0.05667665973305702, 0.07987604290246964, 0.23309601843357086, 0.3596363663673401, 0.6011831164360046, -0.4619158208370209, 0.16814009845256805, -0.67613685131073, 0.15372523665428162, 0.03178201615810394, 0.9632284641265869, 0.33039504289627075, 0.030660271644592285, 0.20213201642036438, -1.0846507549285889, -0.2694091498851776, -0.37189146876335144, -0.8557957410812378, 0.563021719455719, 0.8984380960464478, 0.2958866059780121, -0.05288699269294739, -0.4264548420906067, -0.3228088617324829, -0.4888628125190735, 0.07304667681455612, 0.2412615716457367, -1.1684246063232422, -0.03072221949696541, 0.23150771856307983, -0.5207378268241882, -0.006342282053083181, -0.3125993609428406, -0.15529663860797882, 0.12949416041374207, -1.3491697311401367, -0.6754097938537598, -0.06375851482152939, 0.5797572135925293, -0.05049595609307289, -0.10218393802642822, -0.2561062276363373, -1.475102186203003, -0.4757612943649292, -0.03125256672501564, -1.3841638565063477, -0.2354561984539032, -0.5118942856788635, 0.8524957299232483, 0.6853434443473816, 0.11148573458194733, -0.16142183542251587, 0.6538130044937134, -1.4890739917755127, -0.4698450267314911, -0.15240883827209473, 0.1858101785182953, 0.4593568742275238, 0.6549222469329834, -1.2492588758468628, 1.46169114112854, 0.6970295310020447, -0.10430856049060822, -0.016131293028593063, -0.17647019028663635, -0.3493719696998596, -0.314985454082489, 0.9479802250862122, 0.19142307341098785, 0.42328256368637085, 0.7814844250679016, 0.23117443919181824, 0.7108777165412903, 0.3805773854255676, 1.081787347793579, -1.203076958656311, -0.9404045343399048, -0.42464929819107056, 0.39655840396881104, -0.8945383429527283, -0.626814067363739, -0.30789220333099365, -0.4982600510120392, -0.20757748186588287, 0.23686224222183228, 0.6366410255432129, -1.2171657085418701, 0.08995842933654785, -0.6517255902290344, 0.39706623554229736, -0.8135122656822205, 0.5450487732887268, 0.4975011348724365, -1.3151673078536987, 0.14493897557258606, 0.34186702966690063, 0.3273337781429291, -1.3267239332199097, -0.25798022747039795, -0.1350814700126648, 0.291176974773407, -0.48120397329330444, 0.4930216670036316, 0.39604806900024414, 0.38608431816101074, -0.2937229573726654, 1.2730199098587036, 1.0801337957382202, 0.13045193254947662, -0.31069475412368774, 0.5707135200500488, -0.46761375665664673, 0.3563702702522278, -0.12389545142650604, 0.38450658321380615, -0.38289541006088257, 1.0122379064559937, 0.21658967435359955, 0.26207125186920166, -0.3236078917980194, 0.24836452305316925, -0.3693268895149231, 0.06653143465518951, 0.5999838709831238, -0.6834617853164673, -0.4040021300315857, 0.47950050234794617, 0.7492506504058838, -0.2765651047229767, -0.244053915143013, -0.13801972568035126, 0.5232362747192383, -0.10222692042589188, 0.3910113275051117, 0.3886050283908844, -0.16386425495147705, 0.09896217286586761, 0.9655537605285645, -0.3180219829082489, -0.35695725679397583, -0.19215397536754608, -1.4746640920639038, 0.018978828564286232, -0.5558215975761414, -0.24908900260925293, 0.36162060499191284, -0.9485746026039124, -0.6328722238540649, -0.19933265447616577, -0.24473488330841064, 0.3017418682575226, -0.7387725710868835, 0.20390787720680237, 0.007705984637141228, -0.1823708564043045, 0.6752809286117554, -0.7326675653457642, 0.7697107195854187, -0.6917986869812012, 0.034298282116651535, -0.6516261696815491, 0.4012249708175659, -0.035909246653318405, 0.3749435842037201, -0.32734885811805725, -0.5633912086486816, 0.030752448365092278, -0.3960244953632355, -0.2293747216463089, 0.47840940952301025, 0.7295539379119873, -0.04979148134589195, 0.7656174302101135, -0.7690362334251404, -0.5390255451202393, 0.3102305233478546, 0.7761883735656738, -0.37363988161087036, -0.4240533411502838, -0.7530390024185181, 0.5502291917800903, 0.04698440432548523, 1.3844380378723145, -0.9649777412414551, 0.15643201768398285, -0.10184285789728165, 0.04244295507669449, 0.000504232244566083, -0.6056462526321411, 0.555650532245636, -0.3764986991882324, 0.35506540536880493, 0.09692861884832382, -0.37101781368255615, -0.4551047682762146, -0.6512395143508911, -0.26553234457969666, 0.36614298820495605, -0.4382425546646118, 0.6659207940101624, -0.9429123997688293, -0.6722255945205688, -0.16617250442504883, 0.21363693475723267, -0.6117614507675171, 0.1925770342350006, 0.3031248450279236, -0.18510016798973083, -0.2799486517906189, 0.004167613107711077, 0.468740850687027, -0.4285370707511902, -0.10697269439697266, 1.117249608039856, 1.1362162828445435, 0.16832242906093597, -0.478011816740036, -0.26431870460510254, 1.047026515007019, -1.198576807975769, 0.13500948250293732, -0.9018951058387756, -0.7559676170349121, -0.10781159996986389], [-0.39694976806640625, 1.090183138847351, -1.4066890478134155, -1.1148264408111572, -0.47423234581947327, 0.4856611490249634, 1.6838023662567139, 0.6603217720985413, 0.2953663170337677, -0.31943488121032715, -0.2240762561559677, 0.6972107887268066, 1.4102883338928223, 0.9461860656738281, 0.27948302030563354, -0.0693749412894249, 0.383198618888855, 0.7541815042495728, 0.6331110000610352, -0.2945845127105713, -1.0455254316329956, -0.42872169613838196, 0.10567206144332886, 0.3865562975406647, 0.5292056202888489, 0.6849457025527954, -1.1356722116470337, -0.4291585087776184, -1.8512885570526123, -0.8884330987930298, 0.6940662860870361, -1.0801299810409546, 0.07916732132434845, 0.26765769720077515, -0.042718276381492615, -0.3624902367591858, 1.7967908382415771, 0.374753475189209, 0.759194016456604, 0.30729231238365173, 2.6090569496154785, 0.03666824847459793, 0.04491455852985382, -1.1409307718276978, -0.8512347340583801, -0.016205545514822006, 0.17628324031829834, -1.6066268682479858, 0.1735917031764984, 0.2542645335197449, 0.6791911125183105, 0.7209205031394958, 0.5685153007507324, 1.2241333723068237, -0.1548507809638977, -0.9776166081428528, 0.5019965767860413, 0.2843027114868164, 0.9105278253555298, -0.08914065361022949, 0.3952701687812805, -0.3235118091106415, -0.15845122933387756, 1.6128029823303223, 0.33396244049072266, -0.2577882409095764, -0.057232510298490524, -0.247924342751503, 0.40025269985198975, -0.4354606866836548, 0.025768447667360306, 0.02966429851949215, 0.09252007305622101, 0.5929543375968933, -1.1098498106002808, 0.6124457716941833, 0.5985241532325745, -0.3788522779941559, -0.44985246658325195, 0.9978538155555725, -0.6368800401687622, -0.31922999024391174, 0.6874637603759766, -0.23359890282154083, 0.8610819578170776, 1.0657014846801758, 0.005349092185497284, 0.652769923210144, -0.2741072475910187, 1.647155523300171, -0.04311066120862961, 0.41515272855758667, -0.0021348893642425537, 0.20963092148303986, -0.05000254511833191, -0.7389814257621765, -0.5221012830734253, -0.8106756210327148, -0.9231913685798645, -0.8716508150100708, -0.6579275727272034, -0.6790211796760559, 0.6821976900100708, 0.08134479075670242, 1.1199536323547363, 1.0317142009735107, 0.05301903560757637, -0.20050351321697235, -0.7606571912765503, -0.16897407174110413, -0.3723706603050232, -0.23618054389953613, -0.6356344223022461, -0.5905603766441345, -0.44953811168670654, 0.34792521595954895, 0.4895799458026886, -0.16298148036003113, 0.10981863737106323, 0.8882145881652832, -0.7987903356552124, -0.23158963024616241, -0.6358280777931213, 0.5510768890380859, 0.395700603723526, 0.5880473852157593, -0.003049788996577263, -0.19053369760513306, 1.3437669277191162, 0.6175557971000671, -0.12623853981494904, -0.4671078622341156, 0.6963537931442261, 1.4914973974227905, -0.46231138706207275, 0.6205940246582031, 0.4333188235759735, -2.0233068466186523, -0.46139395236968994, 0.2631904184818268, 0.7585200071334839, -0.5522411465644836, -0.6163248419761658, -0.6691105961799622, -0.3071939945220947, -0.8048445582389832, 1.1489263772964478, 0.4487757384777069, -0.6443384289741516, 0.18542329967021942, -0.9861330986022949, 0.29547369480133057, 0.22914350032806396, 1.0037381649017334, -0.22019705176353455, -0.5316094160079956, 0.15428999066352844, 0.17778652906417847, 0.24768364429473877, 0.8764947056770325, 1.025538682937622, -0.035772159695625305, -1.076111912727356, 0.8834315538406372, -0.07808344811201096, -0.9195353984832764, 0.12240973114967346, 0.6408451795578003, 0.24559247493743896, 0.1297142207622528, -0.2725996971130371, -0.20021384954452515, -0.464782178401947, 0.04032697156071663, 0.638279914855957, -0.683861255645752, 0.9552501440048218, -0.6508235931396484, -0.9457811117172241, -1.6735680103302002, 0.5231411457061768, -0.17262372374534607, 0.15515130758285522, -0.3563116788864136, 1.2357842922210693, -0.8034521341323853, 0.0650535300374031, -0.4878609776496887, -0.8317248225212097, -1.0459396839141846, -0.86786288022995, 0.3505702316761017, -0.6927043795585632, -0.05582860857248306, -0.337060809135437, -0.2057081013917923, 0.4323188066482544, -0.6724497675895691, -1.0355088710784912, 0.6313415765762329, 0.4055660367012024, -0.35904669761657715, -1.9636980295181274, 0.29425475001335144, -0.7181505560874939, 0.4304244816303253, -1.288620948791504, 0.5845532417297363, -0.8122532367706299, 0.4921649396419525, 0.1620752513408661, 0.7176516652107239, -1.1944866180419922, 1.0741480588912964, -0.19166551530361176, -0.8618881702423096, 0.19545584917068481, 0.0825527235865593, -0.2655312120914459, 0.4447213113307953, 0.10243848711252213, 0.3955373764038086, 0.8217796087265015, -0.15216930210590363, 0.4998432993888855, 0.3741939067840576, -0.8359560966491699, -1.057632565498352, -0.8805030584335327, 0.24530112743377686, -0.6852155327796936, -0.6156649589538574, 0.5873007774353027, 0.5101587772369385, -0.6452995538711548, 0.4635840058326721, 0.6122236847877502, -0.34368276596069336, 0.48667511343955994, 0.021951019763946533, 0.27303996682167053, 0.654794454574585, -0.35405516624450684, -1.119249939918518, -0.34528738260269165, 0.32815906405448914, 1.1040585041046143, -0.15577442944049835, 0.8225297331809998, 1.5959372520446777, 1.211995005607605, 0.3394280970096588, 0.23860979080200195, -0.3749399185180664, -0.06581266224384308, -0.47254589200019836, -0.10417945683002472, -0.19370168447494507, -0.9263553023338318, 1.1145696640014648, 1.3497755527496338, -1.6214250326156616, -0.12358202040195465, 0.6382176876068115, 0.3200012445449829, -0.12603138387203217, -0.21065804362297058, -0.03905046731233597, 0.7516062259674072, 0.1686539202928543, 0.004116617143154144, 0.8964183330535889, -0.13430267572402954, -0.09003227949142456, -0.2564498782157898, -0.21990157663822174, -0.20538650453090668, 0.19440370798110962, -0.48387497663497925, 1.0796847343444824, 0.835963785648346, -0.9242583513259888, -0.7948390245437622, -0.4109601378440857, 0.8375402688980103, 0.35904356837272644, 0.26381590962409973, 1.138634204864502, 0.04503548517823219, -0.02951081469655037, -0.2393510937690735, 0.43157055974006653, -0.5796985626220703, 0.23417997360229492, -0.35770657658576965, -0.5324957966804504, 0.7657889127731323, -1.1234122514724731, -0.6895895004272461, 0.5386428833007812, 0.16424661874771118, 0.19119347631931305, 0.9870156049728394, 1.0471082925796509, -0.4680495262145996, 0.6094866991043091, -0.6765204668045044, -0.1856870800256729, -0.8800779581069946, -0.4507497549057007, -0.6792665123939514, -0.7870817184448242, 0.030547983944416046, 0.1575259566307068, 0.8606754541397095, 0.40825366973876953, -0.5384663343429565, 0.7585575580596924, 1.1138205528259277, 0.40677258372306824, -0.08602676540613174, 0.7314001321792603, -0.22731256484985352, -0.3008718192577362, 0.9867070913314819, 0.9851028323173523, -1.515891432762146, -0.035007819533348083, -0.2904879152774811, 0.39307987689971924, 0.5838148593902588, -0.36394059658050537, 0.39667391777038574, -0.5814648270606995, -0.42249593138694763, 0.8631620407104492, 1.2252583503723145, 0.07604478299617767, -0.6889864206314087, -1.1077778339385986, 0.5014838576316833, 0.8635789155960083, 0.5658591985702515, -1.1607396602630615, 1.0917384624481201, -0.5090558528900146, -0.27066922187805176, -0.8822126388549805, -0.12711843848228455, 1.1248996257781982, -0.3555483818054199, -0.04138056933879852, 0.6464059352874756, 0.024469105526804924, -0.8818192481994629, -0.2498757392168045, 0.0893961638212204, 0.5866762399673462, 0.3353419303894043, 0.3087008595466614, 1.43965482711792, -1.3866294622421265, -0.4964701533317566, -2.27744722366333, 1.0163354873657227, 0.4745846390724182, 1.9050889015197754, 0.28408196568489075, 1.0807318687438965, 0.2995498776435852, -0.6766815781593323, 0.3707963228225708, 0.3869333565235138, 0.5819233655929565, 0.2451181411743164, -0.3681386709213257, -0.06817290186882019, -0.623079240322113, -0.6672568321228027, -0.6819124221801758, -0.35562780499458313, 0.8409692049026489, -0.5390113592147827, -0.19858190417289734, -0.034999437630176544, 1.0091536045074463, -0.8090294599533081, -0.34208229184150696, -0.1566115915775299, 0.3319944143295288, -0.21142613887786865, -0.669054388999939, -0.42050039768218994, -0.21735253930091858, -0.3371177911758423, -1.446955919265747, 0.17722150683403015, 0.10539611428976059, -0.6230615973472595, 0.9047880172729492, -1.7883379459381104, -0.2803260087966919, -0.3349234163761139, -0.15652954578399658, 0.21254156529903412, 0.2712392508983612, -0.4461674988269806, 0.11846934258937836, -0.029522359371185303, 0.0008793696761131287, -0.018055692315101624, 1.0429608821868896, 0.4450136423110962, 0.10706869512796402, -0.19927489757537842, 0.2778615951538086, 0.4181765913963318, 0.1352938413619995, -0.46195143461227417, 1.1147809028625488, -1.0915418863296509, 0.03171338513493538, -0.043197955936193466, 0.49723970890045166, 2.5621094703674316, 0.597293496131897, 0.8131064772605896, 0.7532631158828735, -0.40213534235954285, -0.7005947828292847, 0.33557891845703125, -0.2584962844848633, -0.17806877195835114, -0.9821483492851257, 0.28520846366882324, 0.1176348328590393, -0.8897030353546143, 0.4930649399757385, 0.41334861516952515, -0.41096943616867065, -0.021627487614750862, -0.03007066622376442, 0.8205183744430542, 0.6359627842903137, 1.0578243732452393, 0.07941346615552902, 0.657974123954773, -0.5775254964828491, -0.9128464460372925, 1.1474565267562866, -0.5984230041503906, -0.10028297454118729, 1.0447572469711304, 0.5547902584075928, 0.3727600574493408, -1.1465225219726562, -1.358873963356018, 0.7267855405807495, -0.1933126449584961, 0.7959438562393188, -0.13670793175697327, 1.713947057723999, -0.4140872061252594, -0.24402214586734772, 0.34389111399650574, -0.044728152453899384, 1.308756709098816, -0.3607003688812256, -0.33749693632125854, -0.18287095427513123, -0.15631748735904694, -0.14443111419677734, -0.44804930686950684, -0.7240895628929138, 0.27676740288734436, -0.8862314224243164, 0.6172189712524414, 0.39649033546447754, 0.2664543688297272, 0.3547822833061218, -0.12416326254606247, -1.6980862617492676, 0.8661341071128845, -0.7120720744132996, -0.1446334719657898, -0.197500541806221, -0.6877183318138123, -0.2484644651412964, -0.7562081813812256, -0.6645675897598267, -0.07147139310836792, -1.129842758178711, -0.5611212849617004, 0.6434003710746765, -0.8651555776596069, 0.054693736135959625, 0.719996452331543, 1.8118431568145752, 0.9167287349700928, -0.18860995769500732, 0.056979112327098846, 0.6607381105422974, -0.8951947689056396, 0.14002221822738647, 0.6913689374923706, -0.5035663843154907, -0.8216146230697632, -1.1464251279830933, -0.8729740381240845, 2.4269323348999023, 0.7418230175971985, -0.413409948348999, 0.7895970344543457, 0.30133718252182007, 1.523914098739624, -0.255533903837204, -1.3513950109481812, 0.6573372483253479, 0.5099221467971802, 0.3202028274536133, 0.5399588942527771, -0.5855796337127686, -0.7880700826644897, -0.7260520458221436, -1.19307279586792, 2.0897650718688965, 0.4005292057991028, -0.9802701473236084, 0.3961483836174011, 1.0559228658676147, -0.15836943686008453, 0.2760388255119324, -1.0481587648391724, 0.19819492101669312, 0.4352215826511383, -0.6918942332267761, -1.170555830001831, 0.5944353342056274, 0.059523697942495346, 0.7140683531761169, -0.46709707379341125, 0.34856659173965454, -0.42479127645492554, -0.3916410803794861, -0.27940189838409424, 0.5538589954376221, 0.4429923892021179, -0.1537596583366394, 0.1868269443511963, -0.1355077177286148, -0.7473037242889404, -0.7132312059402466, 0.3834317624568939, -0.061948105692863464, 0.6166188716888428, 0.5086967349052429, -1.4286863803863525, -0.21784725785255432, -0.07523978501558304, 0.14551138877868652, -0.7359774708747864, -1.034881830215454, 0.9557297229766846, 0.7079870700836182, -0.7046868801116943, 0.4945576786994934, -0.19235725700855255, -0.48830974102020264, 0.004555901512503624, -1.2040296792984009, 0.3157418966293335, -2.0817158222198486, -0.02430690824985504, -0.9283907413482666, 0.3206397593021393, 0.5711419582366943, -0.03941863030195236, 0.1460830271244049, -0.13177959620952606, -1.2492358684539795, -0.8815586566925049, 0.4185560345649719, 0.4848950207233429, -1.4708317518234253, -0.23293623328208923, 0.05805998295545578, -1.3687124252319336, 0.3083932399749756, 0.36352288722991943, -1.1307075023651123, -0.10853379964828491, -1.2957744598388672, 0.32162684202194214, 0.6209379434585571, 0.4370153546333313, -0.20015917718410492, 0.8088477849960327, -0.4611430764198303, -0.7135999202728271, 0.053815703839063644, 0.4935743808746338, 1.1729350090026855, 0.7346552014350891, -0.42632946372032166, 1.5221891403198242, -0.11901218444108963, -0.8424748778343201, -0.1445024013519287, 0.5022905468940735, -0.8571555614471436, 0.3491678833961487, 0.8653426170349121, -0.14873239398002625, 1.1546630859375, 1.0231478214263916, 0.8403071165084839, 1.1120686531066895, 0.590329647064209, -0.10524561256170273, -0.6748861074447632, -0.3325136601924896, -0.8131656646728516, -0.10599435120820999, -1.0640649795532227, -0.32999539375305176, -0.052016958594322205, -1.0917260646820068, -0.629845917224884, 0.9709183573722839, 0.7787643671035767, -0.8817351460456848, -0.1142040565609932, -1.1005109548568726, 0.23750804364681244, -0.31936585903167725, 0.5654132962226868, 0.1484246551990509, -0.15624016523361206, 0.4636664390563965, -0.24211840331554413, -0.10200726985931396, -0.6555699110031128, -0.10933239012956619, -0.4392857253551483, 0.17455366253852844, -0.4741310775279999, 0.24498337507247925, 0.2074064016342163, -0.92171311378479, -0.6119421720504761, 1.8680596351623535, 0.6460480093955994, -0.12856963276863098, -0.07009201496839523, -0.6834397315979004, -0.35653746128082275, 0.5597814321517944, -0.25380975008010864, 0.970064640045166, -0.48641932010650635, 0.4760226011276245, 0.44301337003707886, -0.1951330006122589, -0.7158623933792114, -0.052511684596538544, -0.764683187007904, 0.5470755100250244, 1.3277664184570312, 0.13458478450775146, -0.32893064618110657, 1.5437288284301758, 0.7911679744720459, -0.21674737334251404, 0.763874888420105, 0.0478367805480957, -0.04281843826174736, 0.3114568591117859, 0.4484010338783264, 0.7580803632736206, -0.6149110794067383, 0.7179638147354126, 0.4416951537132263, 0.05431355908513069, 1.1252596378326416, -1.1885496377944946, -1.9449293613433838, -0.06627769023180008, -0.5141580104827881, -0.06513851881027222, 0.9141773581504822, -0.390636146068573, -0.21293790638446808, 0.21241195499897003, 0.5405974388122559, 0.06477827578783035, -0.5214090347290039, -0.5983464121818542, -0.4519045650959015, 0.2085629552602768, 0.39657062292099, -0.5265098810195923, 0.9622718691825867, -0.44509053230285645, -0.242702454328537, -0.7492250204086304, -0.22253841161727905, -0.05735396593809128, 0.6181912422180176, 0.8155807256698608, 0.09557449072599411, -0.33934125304222107, -1.0024017095565796, -0.012764312326908112, 0.050741687417030334, -1.1451300382614136, -0.19347436726093292, -0.4683295488357544, -1.6307260990142822, 0.3511705994606018, 0.7263811826705933, -0.24318549036979675, -0.2729138135910034, -0.8678035736083984, -0.9496639966964722, 0.6853393912315369, 0.3120933175086975, 0.7140762805938721, -1.3045861721038818, 0.4859899878501892, 0.06429336965084076, -0.7212477922439575, -0.6576929092407227, -0.7917052507400513, 0.662177324295044, -0.31828659772872925, 0.4328193962574005, -0.08091180771589279, -0.10357822477817535, 0.5104860067367554, -1.0293211936950684, 0.3087542653083801, -0.25164929032325745, 0.09311601519584656, -0.12101094424724579, -1.267773151397705, -0.32186469435691833, -0.05005042254924774, -0.050435908138751984, 0.6246017813682556, 0.44327935576438904, 0.11777499318122864, 0.26230788230895996, -0.7447754740715027, 0.06427295506000519, 0.523919939994812, -0.10142611712217331, 0.4217519760131836, 1.295865535736084, 1.5596275329589844, -0.11017350852489471, -0.2270057201385498, 0.028780154883861542, 0.7239811420440674, -1.2564254999160767, -0.19860245287418365, -1.6662418842315674, -0.8117200136184692, -1.1727043390274048], [-0.4370487928390503, 1.5874011516571045, -2.5767321586608887, -0.791496992111206, -0.1473293900489807, 0.17986764013767242, 1.4439969062805176, 0.4913526177406311, 0.369948148727417, -0.3087076246738434, -1.4939119815826416, 0.27662941813468933, 1.559338927268982, 0.8457896113395691, 0.600634753704071, -0.43770644068717957, -0.014074372127652168, -0.24024352431297302, 1.617178201675415, 1.2585041522979736, -1.1557809114456177, -0.3505581021308899, -0.5832545757293701, 0.04061124473810196, 0.46977129578590393, -0.9172930121421814, -1.3325906991958618, -0.7053202390670776, -1.6813987493515015, -0.9749122858047485, 0.8914746046066284, -0.7273484468460083, 0.024767128750681877, -0.34330928325653076, -1.0623385906219482, 0.10798174142837524, 1.4536256790161133, 0.5069915652275085, 0.8412377238273621, 0.6603624820709229, 2.8052778244018555, 0.3548237383365631, -0.1670622080564499, -1.1797356605529785, -0.5855389833450317, 0.19877471029758453, 0.053528349846601486, -1.0518428087234497, 0.30982962250709534, -0.18599680066108704, 0.8004198670387268, -0.47462034225463867, 1.079483151435852, 0.5599892139434814, 0.11144372820854187, 0.17993682622909546, 0.7502492666244507, -0.20289550721645355, 0.22376258671283722, 0.1639927625656128, 0.3215610086917877, 0.6154927611351013, -0.17006926238536835, 1.0896837711334229, 0.10702546685934067, -0.36417099833488464, -0.0028034148272126913, 0.48100388050079346, 0.5171621441841125, -0.6599410772323608, 0.693748414516449, 0.006746105384081602, 0.03226771578192711, -0.019797898828983307, -0.9490869641304016, 0.5040104985237122, 0.24091671407222748, 0.29677045345306396, 0.23560181260108948, 1.2511779069900513, -0.7620688676834106, -0.3320055902004242, 0.5749853849411011, 0.597050666809082, 1.2031402587890625, 0.7703918218612671, 0.4102427065372467, 0.008612471632659435, -0.4242013990879059, 1.7043888568878174, 0.010123763233423233, 0.1417171061038971, 0.38492053747177124, -0.5793431997299194, -0.2550326883792877, -0.38319146633148193, -0.08188822865486145, -0.8134838938713074, 0.21080662310123444, -0.8155153393745422, -0.4561613202095032, -1.436761736869812, 0.19408825039863586, 0.015775166451931, 0.4381142258644104, 1.2225146293640137, -0.3223588168621063, 0.036530524492263794, -0.6779576539993286, -0.5294266939163208, 0.043688636273145676, 0.09584123641252518, -0.6263900995254517, -0.9713443517684937, -1.00991952419281, 0.9343386888504028, 0.38541844487190247, -0.2180371731519699, 0.21366597712039948, 0.36631283164024353, -1.169614553451538, -0.5094364285469055, -0.09337493032217026, 0.6281187534332275, 0.07254292815923691, 0.3220008313655853, -0.23435604572296143, -0.2181144654750824, 0.7408252358436584, 0.4153141379356384, -0.019741958007216454, -0.18175750970840454, 0.5565316081047058, 0.8605382442474365, -0.4670732319355011, 1.0102614164352417, 0.20984473824501038, -1.686747431755066, -0.5945625901222229, 0.11038213223218918, 0.49805551767349243, -0.3349520266056061, -0.3976958096027374, -0.6239234805107117, 0.08751019090414047, -0.9233133792877197, 0.7783710360527039, -0.1908458024263382, -0.4550268352031708, -0.3660193681716919, -1.328115463256836, 0.4365673363208771, 0.02517510950565338, 1.2080985307693481, 0.06380227953195572, -0.7645118236541748, 0.29577869176864624, 0.13101939857006073, 0.04789808392524719, 0.9704282283782959, 0.5384578108787537, -0.14329932630062103, -0.574612021446228, 0.9866799116134644, -0.09541603177785873, -1.053178071975708, 0.5054467916488647, 1.1232373714447021, 0.03740210086107254, 0.791858434677124, 0.19214916229248047, 0.263626366853714, -0.49854546785354614, -0.06423953920602798, 0.5852534174919128, -1.7437238693237305, 0.9680420160293579, -0.7389258742332458, -0.9943974614143372, -1.1583666801452637, 0.3660041093826294, -0.5884174704551697, 0.03800337016582489, -0.05825285241007805, 1.0284353494644165, -0.18280085921287537, -0.20795433223247528, -0.7503682971000671, 0.24229036271572113, -1.1111174821853638, -0.8224233984947205, 0.21725162863731384, -1.2677638530731201, -0.4558773636817932, -0.470187246799469, -0.9326748847961426, 0.5163123607635498, -0.47176656126976013, -1.5603145360946655, 0.500443160533905, -0.5542135238647461, -0.6072036027908325, -1.6662770509719849, 0.2910149097442627, -1.041414737701416, 0.447472482919693, -1.2558375597000122, 0.1919281780719757, -0.7870426177978516, 0.6301698088645935, 0.29623427987098694, 0.04906606301665306, -1.4666526317596436, 0.9857835173606873, -0.08619336783885956, -0.6556929349899292, 0.35391366481781006, 0.08666212111711502, -0.39588961005210876, 0.44208571314811707, -0.12704600393772125, 1.1069964170455933, 0.5332581996917725, 0.39722970128059387, 0.5051307678222656, -0.17059952020645142, -0.16358649730682373, -0.2930934727191925, -0.5419816970825195, 0.19731369614601135, -0.8978227972984314, -0.29015713930130005, 0.9844204187393188, 0.4667466878890991, -1.332737684249878, 0.4363630414009094, 0.6797459125518799, -0.05362908914685249, 0.7953674793243408, 0.5251379609107971, 0.04313525930047035, 0.6159206032752991, -0.18764136731624603, -0.9122281074523926, -0.3810734450817108, 0.6699206829071045, 0.7829745411872864, -0.726897656917572, 0.3462497889995575, 1.2631736993789673, 0.084839828312397, 0.4690488576889038, 0.5592196583747864, -0.701831042766571, -0.5230119824409485, -0.40484189987182617, -0.3230888843536377, 0.23353813588619232, -0.5333285331726074, 1.7341128587722778, 1.1475789546966553, -0.8854556679725647, -0.3458508253097534, -0.1452772319316864, -0.05233302339911461, -0.5614906549453735, -0.3875328004360199, -0.011486900970339775, 0.514484703540802, -0.2726108133792877, -0.1647208333015442, 0.4583830237388611, -0.35833486914634705, 0.3553146719932556, -0.5013052821159363, -0.3513018786907196, -0.5594649314880371, 0.36447227001190186, 0.01788119226694107, 1.5866273641586304, 0.4231027066707611, -0.9188446998596191, -0.5839605927467346, -0.4683210849761963, 0.8303530216217041, 0.9123458862304688, 0.44272515177726746, 0.7441003322601318, 0.1926286518573761, 0.05984252691268921, 0.41720932722091675, 1.1008204221725464, -0.9679220914840698, 0.37220802903175354, -0.020692670717835426, 0.1371280401945114, 0.7389541268348694, -0.5221402049064636, -1.3309310674667358, -0.22107072174549103, 0.6654825210571289, 0.5697850584983826, 0.9183706641197205, 1.2335416078567505, -0.002475516404956579, -0.3168407380580902, -0.03882654011249542, -0.3027915060520172, -0.5784849524497986, -0.5609763860702515, -0.6827258467674255, -0.7308980226516724, 0.12550948560237885, 0.3106819689273834, 0.003644367214292288, 0.646087110042572, -0.05030323192477226, 1.3706495761871338, 0.8692483901977539, -0.28591081500053406, -0.5776767134666443, 0.06626543402671814, 0.11770046502351761, -0.13061131536960602, 0.29884210228919983, 0.3867122232913971, -1.9336026906967163, -0.5948675274848938, 0.39269763231277466, -0.05363841727375984, 0.6051045060157776, -0.06364890933036804, 0.28196099400520325, -0.7346796989440918, -1.0171804428100586, 0.5112268924713135, 1.065491795539856, 0.13971030712127686, -0.7281727194786072, -0.826076090335846, 1.0592800378799438, 1.4334237575531006, 0.6911522150039673, -0.9461848735809326, 0.76978999376297, -0.38090527057647705, 0.2088320255279541, -0.5268071889877319, -0.02723768725991249, 0.6848913431167603, -0.11490502208471298, -0.14988704025745392, 0.5939295291900635, -0.16653364896774292, -0.009614020586013794, 0.4601505696773529, 0.5760746002197266, 0.7318426966667175, 0.13097649812698364, 0.17018269002437592, 1.3103262186050415, 0.0030454311054199934, -0.30038776993751526, -1.8788660764694214, 1.2618862390518188, 0.4771537482738495, 1.3514233827590942, -0.14707200229167938, 0.785269558429718, 0.5456264615058899, -0.7708790302276611, 0.2874092161655426, 0.4055764079093933, 0.9451785683631897, 0.5063685178756714, -0.6068093180656433, -0.584373414516449, 0.07520978152751923, -0.26590999960899353, -0.7210097908973694, -0.473269522190094, -0.004881085362285376, -0.9583609104156494, -0.5886712074279785, 0.7849992513656616, 0.7722470164299011, -0.8548648357391357, -0.21307246387004852, 0.5966101288795471, 0.5636575818061829, 0.1978161334991455, -0.25233376026153564, -0.8884092569351196, 0.048872508108615875, -0.05523604527115822, -1.4201488494873047, 0.1159314289689064, 0.21272511780261993, 0.40376320481300354, 0.5914812684059143, -1.5644354820251465, -0.2506399154663086, 0.3727853298187256, 0.2676825523376465, 0.6731663346290588, 0.9241135716438293, 0.005010113585740328, -0.2583182752132416, 0.600869357585907, -0.6075356006622314, 0.06074976548552513, 0.949177086353302, 0.42503514885902405, 0.4324437379837036, -0.0049750665202736855, 1.0410352945327759, 0.35931187868118286, 0.3535436689853668, -0.5524027943611145, 0.42301440238952637, -0.47707048058509827, 0.24105152487754822, 0.13051903247833252, 0.2642419934272766, 2.282350540161133, 0.08456256985664368, 0.6781291961669922, 1.2685149908065796, -0.5647340416908264, -1.4431275129318237, 0.6840652823448181, -0.07331186532974243, 0.36354541778564453, -0.6075826287269592, 0.6515876650810242, 0.16205726563930511, -0.6222079992294312, 0.2683967351913452, 0.8740497827529907, 0.8470026850700378, 0.2303488552570343, 0.21685576438903809, 0.32007142901420593, 0.6243957281112671, 0.9288405776023865, 0.5074909925460815, 0.1961873471736908, 0.0238431878387928, -0.861173152923584, 0.7203328609466553, -0.781176745891571, -0.5093115568161011, 0.6157081723213196, 0.32114091515541077, 1.004520297050476, -1.622454047203064, -0.7145832180976868, 0.7057704329490662, 0.6186574697494507, 0.4687280058860779, 0.5571122169494629, 1.664150595664978, -0.5338351726531982, 0.03212757781147957, 0.8304558396339417, -0.4024082124233246, 0.8084427118301392, 0.2694522738456726, -0.4498879909515381, 0.27691689133644104, -0.3092992603778839, -0.13514423370361328, -0.37819814682006836, -0.4509001076221466, -0.5486191511154175, -0.3791164457798004, 0.2624356746673584, 0.2524884343147278, 0.25187841057777405, 0.69526606798172, -0.4091950058937073, -0.7095322608947754, 0.5241432785987854, -0.6770216822624207, 0.1758926510810852, -0.27295053005218506, -0.7930456399917603, -0.2478930652141571, -0.5870323181152344, -0.43623510003089905, 0.3742905557155609, -1.2288120985031128, -0.6701809167861938, 0.04370187222957611, -1.1306341886520386, -0.16752199828624725, 0.47794681787490845, 1.7536283731460571, 1.346807599067688, 0.1716310977935791, -0.33494359254837036, 0.3397034704685211, -0.9598433971405029, -0.5438152551651001, 1.0780985355377197, -0.708347499370575, -0.47843289375305176, -1.326852560043335, -0.5947514772415161, 1.6257587671279907, 0.35866400599479675, 0.14511939883232117, 0.6940075755119324, 0.5436326861381531, 1.4731166362762451, -0.4160464406013489, -1.3418132066726685, 0.5687869191169739, -0.22477149963378906, 0.6890491247177124, 0.8905265927314758, -0.730390727519989, -1.1892896890640259, 0.05267605930566788, -1.479127287864685, 1.4927924871444702, 0.4610324501991272, -0.9721964001655579, 1.1087194681167603, 0.5283843874931335, 0.10489190369844437, 0.4324071407318115, -0.7683115601539612, 0.4347453713417053, 0.7683017253875732, -0.4388256371021271, -0.5741335153579712, 0.6664924621582031, -0.18274758756160736, 0.28717169165611267, -0.377830445766449, 0.7806128859519958, -0.2480994611978531, -0.3018965423107147, -0.18537086248397827, 0.33432766795158386, 0.4245965778827667, 0.5230181813240051, -0.2779175341129303, -0.4404526352882385, 0.10011415183544159, -0.8728299140930176, -0.32561731338500977, 0.04533353075385094, -0.04750186204910278, -0.09693465381860733, -1.7146899700164795, 0.17653141915798187, -0.4177548587322235, 0.21334385871887207, 0.012789526954293251, -0.720805287361145, 0.4077482521533966, 0.15229803323745728, -0.24201829731464386, 0.7173258066177368, -0.31590014696121216, -0.6024782061576843, -0.46330803632736206, -0.6343560814857483, 0.20057182013988495, -1.829897403717041, -0.18100954592227936, -1.0393922328948975, -0.14316152036190033, 0.30143672227859497, 0.27305614948272705, 0.1796780526638031, -0.6826131343841553, -1.3426117897033691, -1.3328649997711182, 0.037471529096364975, 0.40454769134521484, -1.1492862701416016, 0.19758862257003784, 0.34461721777915955, -0.892096757888794, 0.5775507092475891, 0.007325115613639355, -0.899994432926178, -0.10709503293037415, -1.6325633525848389, 0.5902206897735596, 0.1308521181344986, 0.18098510801792145, -0.26580744981765747, 0.7374642491340637, -0.6454735994338989, -0.2165195345878601, -1.5149410963058472, -0.06442733854055405, 1.4244961738586426, 1.050434947013855, -1.0746442079544067, 1.2159134149551392, -0.6627303957939148, -1.0599507093429565, 0.2407381534576416, 0.5931046605110168, -0.2918449342250824, -0.06517277657985687, 0.4266246259212494, -0.19406773149967194, 0.22244539856910706, 1.5719056129455566, -0.11192820966243744, 1.0818182229995728, 0.6506116390228271, -0.08098803460597992, -0.6886664628982544, -0.2254686951637268, 0.27822545170783997, 0.5106768012046814, -1.024328351020813, 0.06624174118041992, -0.2559199631214142, -1.1856354475021362, -0.45691630244255066, 0.28749561309814453, 0.5869805812835693, -1.1914682388305664, -0.026006203144788742, -0.8740776777267456, 0.4446137547492981, -1.2284083366394043, 0.20485836267471313, 0.17787589132785797, -0.022197598591446877, 0.014303544536232948, 0.004801933187991381, -0.38071510195732117, -0.6654024124145508, 0.563565194606781, -0.2251022756099701, 0.30388113856315613, -0.4891771078109741, 0.7714534997940063, 0.6371031999588013, -0.2303507775068283, -0.7125470042228699, 1.5355459451675415, 0.7685150504112244, -0.09157388657331467, -0.11535043269395828, -0.1841271072626114, -0.31417450308799744, 0.9490715265274048, -0.4174804091453552, 0.15695378184318542, -1.2076435089111328, 0.6309384107589722, 0.2719145715236664, -0.46011558175086975, -0.7800679206848145, 0.15206202864646912, -0.7967020869255066, -0.012189893051981926, 0.41750600934028625, -0.22582659125328064, -0.04443327710032463, 1.5138881206512451, 0.46657609939575195, 0.29053470492362976, 0.4789442718029022, -0.33778005838394165, 0.37590792775154114, 0.05400458350777626, 0.45952707529067993, 0.6373978853225708, -0.7482506632804871, 0.07864046096801758, 0.9052721261978149, -0.1856439858675003, 0.2789718210697174, -1.1818934679031372, -1.502480387687683, 0.030711015686392784, -0.923621416091919, -0.2452719360589981, 0.7128457427024841, -0.4446161687374115, -0.4390075206756592, 0.17098911106586456, 0.700303852558136, 0.3007659614086151, -0.5082190036773682, -0.4293808341026306, -0.304227352142334, -0.12175334990024567, 0.8990966081619263, -0.2503630220890045, 1.2709771394729614, -0.9922894239425659, 0.3367866277694702, -0.4249034821987152, -0.5021671652793884, 0.43361738324165344, 1.0161802768707275, -0.2917585074901581, -0.5473737120628357, 0.6623172760009766, -0.9347772598266602, -0.3073715567588806, 0.21643443405628204, -0.12548822164535522, 0.6652563214302063, -0.23183481395244598, -1.578354835510254, 0.10532200336456299, 0.8950180411338806, 0.251718670129776, -0.30855435132980347, -0.6231251358985901, -0.8434597849845886, 0.4329988956451416, -0.08512140810489655, 0.523565411567688, -0.5866948366165161, 0.469781756401062, 0.9281842112541199, -0.3859626352787018, -0.4980149567127228, -0.6943686604499817, 1.1290992498397827, -0.6882389783859253, 0.5546324849128723, -0.4276719093322754, -0.034433476626873016, 0.37747645378112793, -0.872350811958313, -0.47070637345314026, -0.14896723628044128, 0.08104565739631653, 0.024512486532330513, -0.760435163974762, -1.4768279790878296, -0.7341390252113342, -0.012629239819943905, -0.39498695731163025, 0.4569215476512909, 0.6248621940612793, -0.0008534053340554237, -0.5328137278556824, 0.21141964197158813, 0.3048057556152344, 0.16513659060001373, 0.09812339395284653, 1.9371851682662964, 1.5095466375350952, -0.20313973724842072, -0.07683316618204117, -0.2569541335105896, 0.7053112387657166, -0.9092100858688354, -0.20949137210845947, -1.227868676185608, -0.6591246128082275, -0.6383852958679199], [0.28986045718193054, 0.7123085260391235, -2.286497116088867, -0.26880744099617004, -0.6096882224082947, 0.43574339151382446, 0.36670318245887756, 0.7157012820243835, 0.6583956480026245, -0.9461596608161926, -0.6994540095329285, 0.14578711986541748, 1.302878737449646, 0.4070339798927307, 0.19811362028121948, -0.47666770219802856, 0.7939473986625671, 0.24852165579795837, 1.208371639251709, 0.9780315160751343, -0.9322576522827148, -1.6520954370498657, 0.11525256186723709, 0.25974172353744507, 0.17843331396579742, 0.4400566816329956, -1.0270047187805176, -0.3264703154563904, -2.140815496444702, -0.9725093245506287, 0.6365634799003601, -0.535602867603302, 0.2312767505645752, 0.3627243936061859, -0.8445634245872498, 0.05207379162311554, 1.37766432762146, 0.13732604682445526, 0.021866008639335632, 1.0204285383224487, 2.416801929473877, 0.40926775336265564, -0.7351089119911194, -0.8498775362968445, 0.493046373128891, -0.29682478308677673, 0.3695235252380371, -0.974698007106781, -0.5744034647941589, -0.16762076318264008, -0.037289414554834366, 0.5094299912452698, -0.24417154490947723, 1.5097568035125732, 0.5301083922386169, -0.6911095380783081, 0.339324951171875, -0.5189955234527588, 0.5082244873046875, 0.14701683819293976, 0.5006166696548462, 0.3105960488319397, 0.09548618644475937, 1.321117877960205, 0.18551456928253174, 0.5652274489402771, 0.17241480946540833, 0.8667894601821899, -0.12404920160770416, -0.6421347260475159, 1.065166711807251, 0.22302401065826416, -0.24534359574317932, 0.7468440532684326, -0.7125803232192993, 0.47357457876205444, 0.3452679216861725, 0.9013281464576721, -0.5849379897117615, 1.1905605792999268, -0.597124457359314, 0.29602885246276855, 0.5117281675338745, -0.1581670492887497, 0.3366284668445587, 0.14088377356529236, 0.5502694249153137, -0.34562408924102783, -0.6889449954032898, 1.2781482934951782, -0.24066628515720367, 0.17873771488666534, 0.14125975966453552, 0.10758301615715027, -0.2251192182302475, -0.4364270567893982, -0.5036576390266418, -0.46802425384521484, -0.044672541320323944, -0.6531463861465454, -0.7990322113037109, -1.37294602394104, 0.46740883588790894, 0.16274484992027283, 0.6186236143112183, 1.444784164428711, -0.169772669672966, -1.0894757509231567, 0.008034910075366497, 0.0486069954931736, -0.14210523664951324, -0.5986404418945312, -0.5032404065132141, -1.429895281791687, -0.7841207385063171, 0.3215666115283966, 0.6891022324562073, -0.5079105496406555, 0.9757845997810364, 0.5213464498519897, -0.5212778449058533, 0.18839038908481598, -0.5805730819702148, 0.5086157917976379, 0.48455512523651123, -0.06867896765470505, 0.10000431537628174, -0.29503166675567627, 0.534703254699707, 0.7704542875289917, -0.07075801491737366, -0.555283784866333, 0.5126272439956665, 1.9198036193847656, -0.45022645592689514, 0.3158555030822754, -0.18903912603855133, -1.4312865734100342, 0.12272959202528, 0.5156720280647278, 0.7956621050834656, -0.5619372725486755, 0.02190958708524704, -0.8411749005317688, -0.5475729703903198, -0.40803614258766174, 0.7362139821052551, -0.2607957124710083, -0.48180654644966125, -0.1415635049343109, -0.958832859992981, 0.23739546537399292, 0.2818916440010071, 0.3738834857940674, 0.2596520185470581, 0.07688688486814499, 0.9348286390304565, 0.26209756731987, 0.5394572615623474, 0.42168480157852173, 0.6631275415420532, -0.04572126641869545, -0.48645779490470886, 0.7492787837982178, 0.2550245523452759, -0.8256210684776306, -0.32595765590667725, 0.5566977858543396, -0.36684468388557434, 0.21712099015712738, -0.11603200435638428, -0.611992359161377, -0.8136857151985168, -0.1879020631313324, 0.18742914497852325, -1.2832826375961304, 1.3002692461013794, -0.32857808470726013, -0.8416218161582947, -1.3829429149627686, 1.612334966659546, -0.3687496483325958, -0.17496320605278015, -0.19903846085071564, 1.4728974103927612, -0.7535385489463806, -0.2047519087791443, -0.1051316037774086, -0.4746769070625305, -0.9234166145324707, -0.7875789999961853, -0.08238522708415985, -1.1815952062606812, -0.11517756432294846, -0.9882182478904724, -1.1889541149139404, 0.12280280888080597, -0.2287576049566269, -0.5306000113487244, -0.24464750289916992, 0.36590516567230225, -0.10371887683868408, -1.6305712461471558, 0.034623801708221436, -0.13522979617118835, 0.5881062150001526, -1.0088526010513306, 0.40932491421699524, -0.5777542591094971, 0.5554604530334473, 0.9735177755355835, -0.13559265434741974, -0.960868775844574, 0.7632785439491272, -0.33649519085884094, -0.8656811714172363, 0.41130930185317993, 0.11828678101301193, 0.429501473903656, -0.13711883127689362, 0.9023720622062683, 0.9491097927093506, 0.48536789417266846, 0.26650771498680115, 0.6628285050392151, 0.07968637347221375, -0.660343587398529, -0.8072307109832764, -0.3973097503185272, 0.2819978594779968, -0.8915864825248718, -0.9884994626045227, 0.5545442700386047, 0.3726080060005188, -0.9678217768669128, 0.9362309575080872, 0.34221187233924866, -0.22458216547966003, 0.247853621840477, 0.26918962597846985, 0.48766499757766724, 0.30432671308517456, -0.5602409839630127, -0.7137046456336975, -0.5778138041496277, 0.4226459860801697, 0.7493499517440796, -0.7538040280342102, 0.1823466569185257, 1.0917266607284546, 0.6572787761688232, -0.06891967356204987, 0.46064087748527527, 0.09783420711755753, -0.2366986870765686, -0.7422360777854919, -0.7176925539970398, -0.04014302417635918, -1.6828640699386597, 1.7272961139678955, 0.8052378296852112, -0.9817936420440674, -0.1395977884531021, -0.28432297706604004, -0.14641082286834717, -0.2680332660675049, -0.35277971625328064, -0.5470665693283081, 0.47129127383232117, -0.35743188858032227, 0.31659355759620667, 0.2727181017398834, -0.44001278281211853, 0.4125315546989441, -0.7945650219917297, -0.22541655600070953, 0.21857260167598724, 0.3170028328895569, 0.02495430037379265, 0.887859046459198, 0.45543143153190613, -0.8432567119598389, -0.6156577467918396, -0.49293574690818787, 1.046460509300232, -0.12980055809020996, -0.050402190536260605, 1.1994563341140747, 0.47938624024391174, -0.5948936343193054, -0.2950097322463989, 0.7711018919944763, -0.39434999227523804, -0.04120960459113121, 0.003245447762310505, -0.15646158158779144, 0.7597277760505676, -0.2338426560163498, -1.2354531288146973, -0.0019259881228208542, 0.4760305881500244, 0.5613908767700195, 1.177098035812378, 1.2343858480453491, -0.5825465321540833, -0.07795260101556778, 0.03320511430501938, -0.23045435547828674, -0.5087205171585083, -0.3950258493423462, -0.5000473260879517, -1.1414384841918945, -0.05629738047719002, -0.603333055973053, -0.096115343272686, 0.4412396252155304, 0.8921621441841125, 0.9293622374534607, 1.2437492609024048, -0.8456655740737915, -0.09385109692811966, 0.2868187725543976, -0.49283331632614136, -0.24326376616954803, 0.5000544786453247, 0.0061093345284461975, -1.0732626914978027, -0.7026934623718262, -0.17749013006687164, -0.08630825579166412, 0.9244689345359802, 0.03700510039925575, 0.5292693376541138, -1.1631879806518555, -1.198598861694336, 0.006082406733185053, 0.9324426651000977, 0.7012824416160583, -0.7367863059043884, -0.9348483085632324, 0.2572663426399231, 1.1820532083511353, 0.15408891439437866, -0.7561982274055481, 0.4498808681964874, -0.5703365206718445, -0.14795029163360596, -0.6913310289382935, 0.23660136759281158, 1.1968470811843872, -0.05775130167603493, -0.7037653923034668, 0.13647522032260895, -0.2962535321712494, -0.6939782500267029, -0.1229700967669487, -0.36387473344802856, 0.5953975915908813, 0.10005046427249908, 0.23757906258106232, 1.174670934677124, -1.0731441974639893, -0.35519784688949585, -1.949455976486206, 0.6805110573768616, 0.7494344711303711, 1.6174179315567017, 0.05815001204609871, 0.8967553973197937, 0.5716128945350647, -1.0347094535827637, -0.05886898189783096, 0.3014673590660095, 0.7975279092788696, 0.0609356127679348, -0.618644118309021, -0.2727477252483368, -0.658635139465332, -0.4984823167324066, -0.8036763072013855, -0.3704165518283844, 0.20880907773971558, -0.8138024806976318, -0.17663922905921936, 0.9466572403907776, 1.2262436151504517, -0.6977943181991577, -0.30488523840904236, -0.1256321370601654, 0.12485852837562561, 0.04086794704198837, -0.027081752195954323, -0.3743429481983185, -0.6891036629676819, 0.6400295495986938, -0.7701602578163147, 0.03723359853029251, 0.40743640065193176, -0.059030722826719284, 0.46043795347213745, -1.4199540615081787, 0.33511093258857727, -0.4962400794029236, 0.269931823015213, 0.7525478601455688, 0.046490419656038284, 0.25974249839782715, 0.4933004379272461, 0.4511614739894867, -0.19910338521003723, -0.24206750094890594, 1.4874720573425293, -0.008577506989240646, 0.03424433246254921, -0.49904850125312805, 0.22364924848079681, 0.6274279356002808, -0.08874411135911942, -0.9246491193771362, 0.8294346928596497, -0.39807388186454773, 0.6855056285858154, 0.6771873831748962, 0.4239034652709961, 1.7953749895095825, 0.2549557089805603, 0.15729789435863495, 0.6427227258682251, 0.21807147562503815, 0.11309998482465744, -0.388492614030838, 0.17419838905334473, -0.6376680135726929, -0.4142225980758667, 0.2007588893175125, 0.4058276414871216, -0.4412630498409271, 0.3041677176952362, 0.8777377605438232, 0.0888001024723053, 0.24559831619262695, -0.22660596668720245, 0.9255492687225342, 0.605407178401947, 0.724521279335022, 0.1802813857793808, 0.4344205856323242, 0.3214409053325653, -0.7980111241340637, 1.1350624561309814, -0.7862259149551392, 0.34823596477508545, 0.19371525943279266, -0.1272325962781906, 1.2675098180770874, -1.1046257019042969, -1.1460963487625122, 0.44176843762397766, 0.11102329939603806, 0.6856111288070679, 0.6823099851608276, 0.9583468437194824, -0.5335560441017151, -0.1484338790178299, 0.7514095306396484, -0.5300704836845398, 0.865038275718689, 0.45363157987594604, -0.515760600566864, 0.12176595628261566, -0.9363041520118713, -0.13063345849514008, -0.921276330947876, -0.10183224081993103, 0.04946433752775192, -0.7286337018013, 0.6994469165802002, 0.5792990326881409, 0.4005403518676758, 0.0761917233467102, -0.36162909865379333, -0.9090496301651001, 0.784273624420166, -1.0029276609420776, -0.07925519347190857, -0.04164682328701019, -1.0870311260223389, -0.46741071343421936, 0.03550216928124428, -0.8849486112594604, -0.6259102821350098, -1.061279296875, 0.1768287867307663, 0.3279184401035309, -0.9233107566833496, -0.07229353487491608, 0.6890672445297241, 1.0292500257492065, 0.839449942111969, -0.06778512895107269, 0.1320764422416687, 1.0942453145980835, -0.7558718919754028, -0.1433679312467575, -0.15643520653247833, -0.32024499773979187, -0.40039169788360596, -0.6613218784332275, -0.985000491142273, 1.5213037729263306, 0.5397953391075134, -0.2008591592311859, 0.01875295676290989, 0.5244477391242981, 2.1200613975524902, -0.3293227553367615, -1.2540621757507324, 0.2830306589603424, -0.6774961352348328, 0.40638503432273865, 0.6741753816604614, -0.5374304056167603, -0.41465872526168823, -0.6916823387145996, -1.0474159717559814, 1.7345592975616455, 0.2572042644023895, 0.10527462512254715, 1.0474146604537964, 1.088413119316101, -0.08884676545858383, 0.7745598554611206, -0.23479075729846954, -0.1656913161277771, 0.16036254167556763, -0.09542485326528549, -0.7599166035652161, 1.020142912864685, 0.6048182845115662, -0.21665385365486145, -0.5161817073822021, -0.08656270056962967, -0.9237484931945801, -0.21173100173473358, -0.2835562825202942, 0.19582276046276093, -0.04607764258980751, 0.21266408264636993, 0.1894795000553131, -0.49377861618995667, -0.23223061859607697, -0.4803473651409149, 0.34725579619407654, 0.14110951125621796, 1.1116732358932495, -0.11388327181339264, -1.0605872869491577, 0.554672360420227, -0.5177614092826843, 0.06086304038763046, -0.14950411021709442, -0.3738611042499542, 1.1773651838302612, 0.5413360595703125, -0.35950368642807007, 0.8871651887893677, -0.5247299075126648, -0.14985251426696777, 0.09865086525678635, -0.2592027187347412, 0.59367436170578, -1.415040135383606, -0.03226128965616226, -0.1398688107728958, -0.5324447154998779, 0.646484375, 0.6579982042312622, -0.17572259902954102, -0.6519213914871216, -1.3350493907928467, -0.5991021990776062, -0.1327095925807953, 0.4220989942550659, -0.4733627438545227, -0.00952630490064621, 0.5970695614814758, -1.3702102899551392, 0.571147620677948, 0.36952659487724304, -1.1951789855957031, -0.2314872294664383, -1.1837782859802246, 0.440395325422287, 0.1207907646894455, -0.16721035540103912, -0.5685228109359741, 0.530775785446167, -0.7415308356285095, -0.7902831435203552, -1.064816951751709, -0.568311870098114, 1.087231993675232, 1.1197786331176758, -0.9452452659606934, 0.9186781644821167, 0.23639146983623505, -0.6444017887115479, -0.2742254436016083, 0.16223472356796265, -0.34272444248199463, -0.0850803479552269, 0.4799179136753082, -0.3404048979282379, 0.4411350190639496, 1.4862850904464722, 1.1760865449905396, 1.0254863500595093, 0.6681122779846191, 0.5704545378684998, -1.4875437021255493, -0.6101895570755005, -0.32102617621421814, -0.216542586684227, -0.4390382468700409, 0.0002483595162630081, -0.6091984510421753, -0.8560336232185364, -0.1135922223329544, 1.0687379837036133, 0.4730238914489746, -0.7744724154472351, 0.20381218194961548, -0.9537768959999084, 0.08432914316654205, -0.2777103781700134, 0.7087712287902832, 0.16053137183189392, -0.5902140140533447, 0.646687388420105, -0.4701366424560547, -0.6673213839530945, -0.5826894044876099, -0.10852508991956711, -0.16437627375125885, 0.6515175700187683, -0.23436647653579712, 0.18543939292430878, 0.2773040235042572, 0.14065252244472504, -0.7762607932090759, 1.6528189182281494, 0.7209967970848083, 0.06603194028139114, 0.2296469509601593, 0.13807855546474457, -0.16400043666362762, 0.35192251205444336, -0.2999703586101532, 0.5606278777122498, -1.0972323417663574, 0.2915552854537964, -0.25853800773620605, 0.15292081236839294, -0.6018409729003906, 0.7734764218330383, -0.5945636034011841, 0.2977895736694336, 0.9848122000694275, 0.07765579223632812, -0.7974967956542969, 0.7891495227813721, 0.9073331356048584, -0.5430256128311157, 0.49476930499076843, -0.33819568157196045, 0.4255222678184509, -0.016351565718650818, 0.5157907009124756, 0.7477936148643494, -0.7055864334106445, 0.7295881509780884, 1.040818452835083, -0.3605978488922119, -0.015241516754031181, -0.6150040626525879, -1.532182216644287, -0.1310088336467743, -1.0469180345535278, -0.9143177270889282, 0.1624259650707245, -0.603603184223175, -1.0683562755584717, 0.5003989338874817, -0.11315064877271652, 0.6235678791999817, -0.7136950492858887, 0.353656142950058, -0.5176886916160583, -0.023247143253684044, 0.3211463391780853, 0.14740918576717377, 0.7262040376663208, -0.41521087288856506, -0.30818280577659607, -0.5535506010055542, -0.016418419778347015, 0.26309144496917725, 0.45886102318763733, -0.05035475268959999, -0.18514394760131836, 0.0044047096744179726, -0.4212413728237152, -0.6837453842163086, 0.4309041202068329, 0.15484458208084106, 0.2136717289686203, -0.3979029357433319, -0.8690661191940308, 0.8428880572319031, 0.45906174182891846, -0.47904330492019653, 0.05745164304971695, -0.492052286863327, -0.8457702398300171, 0.028598275035619736, -0.03199762850999832, 0.7371949553489685, -0.6992352604866028, 1.0537844896316528, 0.2747802138328552, 0.07869086414575577, 0.09563557058572769, -0.28593647480010986, 0.5659099221229553, -0.12594814598560333, 0.8419446349143982, -0.1070147454738617, -0.9540931582450867, 0.7867504954338074, -0.9118250012397766, -0.0631726011633873, 0.582797646522522, 0.38446903228759766, 0.49889105558395386, -0.9945805072784424, -0.7658331394195557, -0.3687763810157776, 0.20507344603538513, 0.30770644545555115, 0.39807644486427307, 0.04219917207956314, -0.6010742783546448, -0.42893674969673157, -0.00802002102136612, 0.038615792989730835, 0.15119145810604095, 0.4566469192504883, 1.4551435708999634, 1.9737361669540405, -0.17938706278800964, -0.05808284506201744, -0.07396317273378372, 0.7234983444213867, -0.9083318114280701, -0.34917962551116943, -0.8852024078369141, 0.12595385313034058, -0.10096025466918945], [-0.1214422658085823, 1.8893104791641235, -2.171353816986084, -1.2179760932922363, -0.4337505102157593, -0.42902183532714844, 0.293069988489151, 0.16808636486530304, -0.12580616772174835, -0.7120541930198669, -1.5613787174224854, -0.1080901026725769, 1.6293697357177734, 1.2152396440505981, 0.6792392134666443, 0.8259853720664978, 1.021634578704834, -0.09292273968458176, 0.35895901918411255, 1.0810900926589966, -0.4000263512134552, -0.8564921617507935, -0.6927168965339661, -0.17095935344696045, 0.46570104360580444, 0.3022700250148773, -1.483831763267517, -0.15010277926921844, -1.4971582889556885, -1.2769150733947754, 0.28286951780319214, -0.6677533388137817, 0.14759495854377747, -0.18134063482284546, -1.6220715045928955, -0.0837029218673706, 1.4595497846603394, 0.32355332374572754, -0.005281446501612663, 1.2210115194320679, 2.337949275970459, 0.012358391657471657, 0.34335508942604065, -1.1621965169906616, 0.7219018340110779, -0.282672256231308, 0.3443982005119324, -1.2620495557785034, -0.5559506416320801, -0.37523892521858215, 0.3265064060688019, 0.5033783912658691, 0.10565221309661865, 1.002310872077942, 1.160175085067749, 0.29370591044425964, -0.5956149697303772, 0.4205615222454071, -0.5515509247779846, 0.5294821262359619, 1.4410827159881592, 0.4186648726463318, -0.5202636122703552, 0.255381315946579, 0.3201759457588196, -0.008248621597886086, 0.13125090301036835, 0.6405606269836426, -0.5986405611038208, -0.34683674573898315, 0.16791993379592896, 0.9537544846534729, -0.3435222804546356, 0.2396754026412964, -1.489810824394226, 0.46230119466781616, 0.7539380788803101, 0.4971613585948944, -0.12653298676013947, 1.5644371509552002, -1.0566227436065674, -0.1408921182155609, 0.261625736951828, -0.48901990056037903, 0.7685444951057434, -0.04747965186834335, 0.3381432592868805, -0.3755095899105072, -0.6759853363037109, 1.1093688011169434, -0.1406901329755783, 0.5134124755859375, 0.2557298243045807, -0.05174338072538376, -0.3693380355834961, -0.7606302499771118, 0.34284430742263794, -0.7246279120445251, -0.3335629403591156, -0.948428213596344, -0.6316001415252686, -1.1394379138946533, 0.8270927667617798, 0.6274236440658569, 1.0888142585754395, 1.3131757974624634, 0.3211301565170288, -1.6313496828079224, -0.7738749384880066, 0.19021470844745636, -0.12628403306007385, -0.37653183937072754, -1.172653317451477, -1.44255793094635, -0.7021283507347107, 0.574174702167511, 0.4095590114593506, -0.7284795045852661, 1.1711914539337158, 0.42703455686569214, -0.8792621493339539, -0.7370322346687317, -0.15246258676052094, 0.6211805939674377, 0.7869606018066406, 0.3981724679470062, -0.7025400400161743, -0.32723191380500793, 0.06652764230966568, 0.20700837671756744, 0.7953693270683289, 0.09783682972192764, -0.6384106874465942, 1.280991554260254, -0.136733278632164, 0.9038125872612, -0.24280530214309692, -0.7401344180107117, -0.041991423815488815, -0.07337657362222672, 0.34011492133140564, -0.6499128937721252, -0.8633188009262085, -0.7826026082038879, -0.04039369896054268, -0.5309470295906067, 0.3407379984855652, -0.19836056232452393, -0.5943408608436584, -0.25019145011901855, -1.2005659341812134, 0.6905947327613831, 0.17138293385505676, 1.236232876777649, 0.3435150384902954, 0.3132436275482178, 0.8719455003738403, -0.25466546416282654, -0.09858351200819016, 0.5435689091682434, 0.6658064723014832, 0.1419268250465393, -0.5768641233444214, 1.1180421113967896, 0.1616918444633484, -0.4473206698894501, 0.4988977015018463, 0.049685850739479065, -0.13446453213691711, 0.26875415444374084, -0.34285271167755127, -0.23730002343654633, -0.23533391952514648, 0.4831063151359558, 0.48787012696266174, -1.215457797050476, 0.937103271484375, -0.4539896249771118, -0.9831951260566711, -1.0743380784988403, 0.9047404527664185, -0.6571308970451355, 0.17111773788928986, -0.17302639782428741, 0.7193027138710022, -0.10209168493747711, -0.36310476064682007, -0.28258785605430603, -0.2646048069000244, -0.39521753787994385, -1.0490418672561646, -0.07378882169723511, -0.9096269011497498, 0.07970687747001648, -0.9705578684806824, -1.1991499662399292, 0.4932737946510315, 0.20363932847976685, -0.8422999978065491, -0.04721242934465408, -0.2204819768667221, -0.22742420434951782, -1.7964816093444824, -0.03849737346172333, -0.9808156490325928, 1.3558107614517212, -0.4062361717224121, 0.0605308897793293, -1.0706148147583008, 0.1697906255722046, 0.7626381516456604, 0.3271149694919586, -0.9089388847351074, 0.7948146462440491, 0.6060869097709656, -0.9562383890151978, 0.015227047726511955, -0.2608870565891266, 0.46925923228263855, 0.22751878201961517, 1.1370196342468262, 0.35391417145729065, 0.812887966632843, 0.1426059901714325, 0.6118062138557434, -0.09585577994585037, -0.9569942355155945, -0.714756429195404, -1.0088260173797607, 0.27805376052856445, -0.9947325587272644, -0.536317765712738, 0.7631195187568665, 1.1814790964126587, -0.6926831603050232, 1.1003732681274414, -0.29844650626182556, 0.34451350569725037, 0.5262443423271179, 0.7063761949539185, 0.3172299563884735, 0.09707924723625183, -0.5454493761062622, -0.2554917633533478, -0.3583887815475464, 0.5203452110290527, 0.9105277061462402, -0.4898413419723511, -0.11658783257007599, 1.5063755512237549, 0.20900385081768036, -0.2335628867149353, 0.773837149143219, 0.6054639220237732, -0.6078912019729614, -0.7156235575675964, -0.30301934480667114, -0.1137721985578537, -0.5591623187065125, 1.2903757095336914, 0.9019679427146912, -1.6845589876174927, -0.5854050517082214, -0.46709683537483215, 0.05744538456201553, -0.6458957195281982, 0.16649314761161804, -0.5321776866912842, 0.7368824481964111, -0.03573179617524147, 0.020063744857907295, 0.2014179676771164, -0.13020837306976318, 0.9887766242027283, -0.18657320737838745, -0.3269086182117462, -0.2291250377893448, 0.6380524039268494, -0.002194315195083618, 1.0129073858261108, 0.36424264311790466, -1.873823642730713, -0.6918829083442688, -0.5509839653968811, 0.9523897767066956, 0.10114943236112595, -0.4267295002937317, 1.3438122272491455, 0.5852529406547546, -0.8275532126426697, 0.017851263284683228, 0.22259774804115295, -0.25157496333122253, -0.21222108602523804, -0.5332235097885132, 0.18018504977226257, 0.49181899428367615, -0.5968270301818848, -0.6926625967025757, 0.0800282433629036, 0.3119564354419708, 1.1265778541564941, 1.0339634418487549, 1.3471705913543701, 0.06003174930810928, -0.25123506784439087, -0.3918660581111908, 0.2606426179409027, -0.3264835476875305, -0.12838828563690186, -0.3850551247596741, -1.1213380098342896, -0.190294086933136, -1.0121763944625854, -0.11108847707509995, 0.8832991719245911, -0.10672692209482193, 0.6619689464569092, 0.6275782585144043, -0.8463377356529236, -0.7784180641174316, -0.22987309098243713, 0.12778069078922272, -1.0092406272888184, 0.6133460998535156, 0.524682879447937, -0.8966416120529175, -0.06566081941127777, 0.3789575695991516, -0.06798528879880905, 0.5613324046134949, -0.2990441918373108, 0.2709372341632843, -0.9215561747550964, -0.2564444839954376, 0.2585601508617401, 1.270530104637146, 0.14169640839099884, -0.5047624707221985, -0.16555388271808624, -0.2563401460647583, 0.011444631963968277, 0.0015545031055808067, -0.6718726754188538, 0.433857798576355, -0.1654677540063858, -0.5510338544845581, -0.9669846892356873, 0.4115452766418457, 1.2902939319610596, -0.39179348945617676, -0.057342976331710815, -0.11198753118515015, -0.08534259349107742, -0.005741363391280174, 0.6766026616096497, -0.29453882575035095, 1.7289525270462036, -0.24834276735782623, 0.26216110587120056, 1.119110107421875, -0.2331930696964264, 0.5579303503036499, -1.3962870836257935, 0.8862997889518738, 0.1636987179517746, 1.9719470739364624, 0.6532544493675232, 0.33482328057289124, 0.47710120677948, -0.46662116050720215, 0.012308333069086075, 0.3720490634441376, 0.7994100451469421, -0.14900539815425873, -0.6902524828910828, 0.011635661125183105, 0.19138818979263306, -0.26944926381111145, -0.6148755550384521, -0.36083754897117615, 0.3016693592071533, -0.6604841947555542, -0.090156190097332, 1.1068077087402344, 0.27921003103256226, -0.6092268228530884, 0.09631615877151489, 0.49875855445861816, -0.3560705780982971, -0.08378826081752777, -0.37441354990005493, -0.3169892132282257, 0.016650717705488205, 0.40057677030563354, -0.8270885944366455, -0.48612546920776367, -0.0675325021147728, -0.10108856111764908, 0.5484704971313477, -0.9140429496765137, -0.5320094227790833, -0.558455765247345, -0.384225457906723, 0.6620818972587585, 0.3002844750881195, 0.5565375089645386, 0.04325129836797714, 0.2398376613855362, -0.2292241007089615, 0.13701891899108887, 1.479854702949524, 0.25000011920928955, -0.037126556038856506, -0.746598482131958, -0.2997109293937683, 0.3132004737854004, -0.2035840004682541, -0.6188220381736755, -0.08594360202550888, -0.7401507496833801, 0.19018356502056122, 0.13254541158676147, -0.07145027071237564, 1.851367473602295, 0.11957304179668427, 0.46695974469184875, 0.7760671973228455, -0.03191698342561722, -0.7738973498344421, 0.21515138447284698, 0.4472384452819824, -0.10411244630813599, -0.49431538581848145, 0.39224255084991455, 0.5315482020378113, 0.21450814604759216, 0.5377742052078247, -0.03973909839987755, 0.8011224865913391, 0.1079375222325325, -0.10100170969963074, 0.5161091089248657, 0.6512356400489807, 0.9501656889915466, 0.3392740786075592, 0.8953402042388916, -0.5236456990242004, -0.8112086653709412, 1.066005825996399, 0.3257806599140167, 0.6003717184066772, 0.01373166125267744, 0.674911618232727, 1.5531816482543945, -1.278407335281372, -0.6330662965774536, 0.3472263514995575, -0.041830070316791534, 0.481231153011322, 1.069953441619873, 1.1069227457046509, -1.1572405099868774, -0.10000867396593094, 0.7310740947723389, -0.47311171889305115, 0.5323832631111145, -0.541646420955658, -0.3119921088218689, 0.3822494447231293, -0.45085734128952026, 0.18269263207912445, -0.778237521648407, -0.5392878651618958, 0.5946372747421265, -0.31295961141586304, 0.3088516592979431, 0.33808550238609314, -0.08458522707223892, 1.103682041168213, -0.38577061891555786, -1.2432674169540405, 0.511855959892273, -0.8915235996246338, 0.12467856705188751, 0.022260263562202454, -0.7733922004699707, -0.775421679019928, -0.8591905832290649, -0.5501366853713989, -0.1302538961172104, -1.389685869216919, 0.07917126268148422, 0.21232585608959198, -1.505449891090393, 0.3764747381210327, 0.5700858235359192, 1.2882040739059448, 1.3733357191085815, 0.2651125490665436, 0.7480145692825317, 0.07415823638439178, -0.7378353476524353, 0.37168583273887634, 0.3430250883102417, -0.61518394947052, 0.40208882093429565, -1.2497044801712036, -0.7798494100570679, 1.0528342723846436, 0.6715684533119202, 0.3300839364528656, -0.08144187927246094, 0.30804571509361267, 1.603597640991211, -0.5169647336006165, -1.2737237215042114, 0.17517563700675964, -0.7144507765769958, 0.5827880501747131, 0.3335144519805908, -1.249537706375122, -1.0021953582763672, 0.14912639558315277, -1.5001994371414185, 1.4765293598175049, 0.2261260598897934, -0.8766857981681824, 0.8534791469573975, 0.6068505048751831, 0.2763601541519165, 0.9160007834434509, -1.296670913696289, -0.21077817678451538, 0.8792492747306824, -0.8489164113998413, -1.0668493509292603, 0.28751593828201294, 0.27342623472213745, 0.6919949054718018, 0.07513385266065598, 0.28738677501678467, -0.025748930871486664, -0.3120192587375641, 0.5784210562705994, 0.314895361661911, 0.8312138319015503, 0.4087921679019928, 0.34966689348220825, -0.5613325238227844, -0.36703425645828247, -0.7862584590911865, 0.22565098106861115, 0.0784272849559784, 1.5952105522155762, -0.09854072332382202, -0.8669303059577942, 0.12474959343671799, -0.28318527340888977, -0.08526443690061569, -0.13627879321575165, -0.8782751560211182, 1.2754262685775757, 0.816886305809021, -0.2684653103351593, 0.45059970021247864, -0.45754939317703247, -0.15945906937122345, -0.24441643059253693, 0.01600741222500801, 0.782900869846344, -1.8902227878570557, -0.5752298831939697, -0.22915881872177124, 0.3416370749473572, 0.10150805860757828, 0.8342620134353638, -0.4695037603378296, -0.7255626320838928, -1.410791039466858, -0.6577997207641602, -0.3597356081008911, 0.39992910623550415, -0.6241804361343384, 0.2263399064540863, 0.21132421493530273, -1.5107024908065796, 0.7507140040397644, -0.46178603172302246, -1.3155148029327393, -0.7448266744613647, -1.326465368270874, 1.2110344171524048, 0.3611544966697693, -0.03974057361483574, -0.08055096864700317, 0.8393981456756592, -0.19290687143802643, -0.2643035650253296, -1.3218859434127808, 0.32917216420173645, 0.706987738609314, 1.4866721630096436, -0.9002601504325867, 0.5919802188873291, -0.09150632470846176, -0.38601529598236084, 0.3294070363044739, 0.26519420742988586, -0.22862263023853302, 0.01877419650554657, 0.22502894699573517, -0.08613979071378708, 0.5530230402946472, 1.318474531173706, 0.818090558052063, 1.2783585786819458, -0.06386090815067291, 0.3964959681034088, -1.1309109926223755, -0.3178098797798157, -0.6418039798736572, -0.028836041688919067, -1.0038596391677856, -0.5760231018066406, 0.06881360709667206, -0.9656537175178528, -0.37434184551239014, 0.7294227480888367, 0.9545757174491882, -0.49674639105796814, 0.04862697795033455, -0.0316658690571785, 0.38931283354759216, -0.9377942681312561, 0.830293595790863, -0.17936290800571442, -0.6703878045082092, -0.035915639251470566, 0.03248569741845131, -0.4282810091972351, -0.6045848727226257, -0.01329678762704134, -0.06843408197164536, 0.7899158596992493, -0.3091745674610138, 0.6670146584510803, 0.6470058560371399, -0.2332729995250702, -0.5977551341056824, 1.3842946290969849, 0.9119088649749756, 0.10676246881484985, 0.192172110080719, 0.2011822611093521, -0.5696112513542175, 0.5100170969963074, -0.48013797402381897, -0.138092502951622, -0.7095718383789062, 0.7120043635368347, -0.22847159206867218, -0.2995108366012573, -1.0526434183120728, 0.6241455078125, 0.2823885381221771, -0.2124866396188736, 0.9564538598060608, -0.33309710025787354, -0.2907344400882721, 0.5600178837776184, 0.8569314479827881, -0.5728701949119568, 0.023881321772933006, 0.1757853478193283, 0.8264719247817993, -0.17821839451789856, 0.2924339175224304, 0.27948418259620667, -0.6628345251083374, 0.7543356418609619, 0.6792128682136536, -1.126900315284729, -0.40660277009010315, -0.8680071234703064, -1.5103834867477417, -0.1633264571428299, 0.010075908154249191, -0.1978531926870346, 0.43339037895202637, -0.9178006052970886, -0.8276124596595764, -0.25767752528190613, 0.0395195297896862, 0.5406925678253174, -0.5302441716194153, 0.2461225986480713, -0.23932482302188873, 0.5393781065940857, 1.6802431344985962, -0.4689209461212158, 0.9866465330123901, -0.1561133712530136, -0.15200090408325195, -0.4441101849079132, -0.4156172573566437, -0.030535414814949036, 0.06652912497520447, 0.18045920133590698, -0.5305324196815491, 0.24959026277065277, -0.8800625801086426, -0.8375734686851501, 0.3832990825176239, 0.43788468837738037, 0.8727053999900818, -0.29988589882850647, -1.0823458433151245, -0.5216294527053833, 0.9513165354728699, 0.4740258753299713, -0.6254826188087463, -0.36454740166664124, 0.33021074533462524, 0.033932339400053024, -0.04729611054062843, 0.33034542202949524, -0.5614635944366455, 0.9302276372909546, 0.5450260639190674, 0.07815572619438171, -0.3472231924533844, -0.38001707196235657, 0.5974407196044922, -0.3644396960735321, 0.545967161655426, -0.27150943875312805, -0.8886255025863647, 0.387371689081192, -0.3366263508796692, -0.20808295905590057, 0.044974975287914276, -0.29044345021247864, 0.42981523275375366, -0.418573796749115, -1.1025804281234741, -0.7227197289466858, -0.21866904199123383, 0.5261120796203613, 0.4649994671344757, 0.46908244490623474, -0.323370099067688, -0.9754362106323242, 0.16895389556884766, 0.5440739393234253, 0.2733892798423767, 0.4921693801879883, 2.0662193298339844, 1.8237566947937012, 0.2541332542896271, -0.3948769271373749, -0.4380497336387634, 0.8769128918647766, -0.9140369892120361, -0.31101611256599426, -0.9564169049263, 0.07091821730136871, -0.031131554394960403], [0.11644572764635086, 2.1576526165008545, -2.6517295837402344, -0.022288374602794647, -0.12484635412693024, 0.9428777694702148, 1.1257998943328857, 0.0950293242931366, 0.18607285618782043, -0.5420606732368469, -0.9097602963447571, -0.20999562740325928, 1.469442367553711, 0.687542736530304, 0.12088720500469208, 0.8881455063819885, 0.06341595202684402, 0.11256489902734756, 0.42927518486976624, 1.0808777809143066, -0.9535578489303589, -1.0781683921813965, -0.6513205170631409, 0.24048252403736115, -0.7024612426757812, 0.03283003717660904, -1.4287365674972534, 0.16441090404987335, -0.10771307349205017, -0.8159334063529968, 0.4085315465927124, -0.9846552014350891, -0.33512574434280396, -0.22729839384555817, -1.1477307081222534, 0.09004657715559006, 0.8481395244598389, 0.582700252532959, 0.5178256630897522, 1.0539729595184326, 2.103078603744507, -0.19858740270137787, -0.3437056243419647, -1.0077641010284424, 0.6605431437492371, -0.5031432509422302, 0.25987470149993896, -0.9058035016059875, 0.522663950920105, 0.04477279260754585, 0.44620755314826965, 0.14062978327274323, 0.7861235737800598, 0.5026877522468567, 1.2450515031814575, -1.000605821609497, 0.33655375242233276, -0.719650149345398, 0.6603564023971558, -0.26429009437561035, 0.9604169726371765, -0.05424385517835617, 0.47424373030662537, 0.8821870684623718, 0.6237388849258423, -0.37645694613456726, 0.21541738510131836, 0.23509185016155243, -0.42467015981674194, -0.34357431530952454, 0.4607401192188263, 0.35740527510643005, -0.31790366768836975, 0.09965341538190842, 0.3500019907951355, 0.21980829536914825, 0.25063490867614746, 0.8214877247810364, -0.22410158812999725, 1.1702800989151, -0.5947287082672119, 0.1704091876745224, 0.340124249458313, -0.2709653377532959, 0.5603444576263428, 0.08162936568260193, 0.4781586825847626, -0.3695225715637207, -0.04296819493174553, 1.4989676475524902, 1.0863335132598877, 0.1554533690214157, 0.396694153547287, 0.4030536115169525, 0.5137425661087036, -1.2585763931274414, 0.026529543101787567, -0.7973188161849976, -0.5884743928909302, -0.7219292521476746, -0.9545069932937622, -0.8918075561523438, 0.6967262625694275, 0.4838225841522217, 0.9248968958854675, 1.8822325468063354, 0.08572676032781601, -0.7379445433616638, -0.508042573928833, 0.2360982745885849, 0.4331081211566925, -0.4144670069217682, -0.9129753112792969, -0.8670163154602051, -0.687808632850647, 0.5066633224487305, 0.9284728765487671, -0.3308965563774109, 0.7511893510818481, 0.5292693376541138, -0.5771473050117493, -0.7663537263870239, -0.7657594680786133, 0.45840969681739807, 0.4445977807044983, 0.1915697157382965, -1.081720232963562, 0.34304380416870117, -0.0210097748786211, 0.20014332234859467, 0.37254515290260315, 0.8878737688064575, 0.36731839179992676, 0.896052360534668, -0.30159398913383484, 1.0011613368988037, -0.9990204572677612, -0.9315657019615173, -0.3222246468067169, -0.05211425945162773, 0.18552711606025696, -0.5540814399719238, -0.8127016425132751, -1.1025145053863525, -0.7089483737945557, 0.12022148072719574, 0.6455085873603821, -0.13648223876953125, -0.6510499119758606, -0.0968594029545784, -1.540099024772644, 1.2043566703796387, -0.5461776256561279, 0.5043600797653198, 0.6816948056221008, -0.41775649785995483, 0.4797323942184448, 0.6061434149742126, 0.05444268509745598, 0.276388019323349, 0.5639711618423462, 0.5578948855400085, 0.016881633549928665, 0.9573560953140259, 0.3307035267353058, -0.5586946606636047, 0.37337103486061096, -0.08854028582572937, -0.251920223236084, 0.7549899816513062, -0.3686692416667938, -0.3699682950973511, -0.9816839098930359, 0.13857176899909973, 0.09484731405973434, -1.2544254064559937, 0.4864654242992401, -0.726498544216156, -0.7708646059036255, -1.3952826261520386, -0.027748916298151016, -0.28978484869003296, 0.1011253148317337, 0.19848506152629852, 0.8558818697929382, -0.38813090324401855, -0.4732321798801422, -0.3669661581516266, -0.9840221405029297, -1.0762724876403809, -1.2924879789352417, 0.2822256088256836, -1.5044593811035156, 0.46995386481285095, -0.6856573820114136, -0.2922225892543793, 0.9838442206382751, -0.3505100607872009, -0.8100651502609253, -0.19833557307720184, -0.1813289225101471, -0.43385669589042664, -1.3935593366622925, 0.21208630502223969, -0.48010408878326416, 0.876224160194397, -0.7111914753913879, 0.8108897805213928, -0.7752517461776733, -0.0031121023930609226, 0.5677801370620728, 0.45664235949516296, -0.7908223271369934, 0.22071042656898499, -0.0863257572054863, -1.1986089944839478, -0.3797539472579956, -0.1947030872106552, -0.17285282909870148, -0.07317854464054108, 0.9643836617469788, 0.01984523981809616, 0.9661247730255127, 0.1751454919576645, 0.7358176708221436, -0.8138968348503113, -0.40546825528144836, -0.629758358001709, -0.6662985682487488, 0.27843818068504333, -0.23758065700531006, -1.1786236763000488, 1.2545017004013062, 0.5692813992500305, -1.3265655040740967, 1.328932762145996, -0.22922970354557037, 0.043006088584661484, -0.11262015998363495, 0.25439587235450745, 0.8956817388534546, 0.201155424118042, -0.6447358131408691, -0.6099677085876465, -0.3792811930179596, 0.40925848484039307, 0.7759672999382019, -0.15739800035953522, -0.3335353136062622, 1.650312900543213, 0.917970597743988, -0.07574746757745743, 0.5344344973564148, 0.43222108483314514, -0.053552042692899704, -1.1136012077331543, -0.17517510056495667, 0.11466880142688751, -0.4608565866947174, 0.9592297673225403, 0.6811979413032532, -0.9459715485572815, -0.3913155496120453, 0.04196719080209732, 0.032895900309085846, -0.15957526862621307, -0.37007224559783936, -0.7470859885215759, 0.5010102987289429, -0.3626053035259247, 0.14713050425052643, 0.05526379868388176, -0.43220412731170654, 0.9843392968177795, -0.21571145951747894, -0.46941614151000977, 0.14399227499961853, 0.8486002087593079, 0.12492506951093674, 1.0047500133514404, -0.2744814455509186, -1.2642321586608887, -0.607218861579895, 0.11030040681362152, 1.109913945198059, 0.020650584250688553, 0.29044950008392334, 0.7394384741783142, 1.0609031915664673, -0.31009840965270996, 0.4351555407047272, 0.7184047698974609, 0.12752029299736023, 0.12863688170909882, 0.04220813512802124, 0.6250139474868774, 0.6032581329345703, -0.37782323360443115, -0.9995368123054504, 0.42845577001571655, 0.45574456453323364, 0.4639984667301178, 0.9591046571731567, 1.4109535217285156, -0.3785282373428345, -0.22223159670829773, -0.4924659729003906, -0.17816287279129028, -0.4737459719181061, -0.7246139645576477, -0.7614246010780334, -0.736473798751831, 0.38821521401405334, -0.5993698239326477, -0.1915874183177948, 0.7534549832344055, -0.44913557171821594, 0.21859949827194214, 0.585009753704071, -0.23678387701511383, -0.057642657309770584, -0.1703580766916275, 0.026851391419768333, -1.3051679134368896, 0.33843615651130676, 0.5410152077674866, -1.2816882133483887, -0.33973589539527893, 0.09707040339708328, 0.4943312704563141, 0.19177451729774475, 0.07689251750707626, 0.7584118247032166, -0.8557867407798767, -1.1444289684295654, 0.3060374855995178, 1.147040605545044, 0.7168311476707458, -0.3672578036785126, -0.9383818507194519, 0.30430710315704346, 0.7416155934333801, -0.29582953453063965, -0.5605125427246094, 0.17956902086734772, 0.5559912919998169, -0.9157528877258301, -0.13488294184207916, 0.034787483513355255, 0.507040798664093, -0.684897780418396, -0.5860170125961304, 0.050024330615997314, 0.1744416058063507, -0.5829084515571594, 0.3128000795841217, -0.49455565214157104, 1.0590434074401855, -0.24014948308467865, -0.4037279486656189, 0.46762627363204956, -0.31235364079475403, 0.37745460867881775, -2.0210518836975098, 0.34364062547683716, 0.28853389620780945, 1.2408684492111206, 0.4747806787490845, 0.6372948288917542, -0.017391787841916084, -1.0208415985107422, 0.04091496393084526, 0.31389302015304565, 0.9403578639030457, 0.24551501870155334, 0.18830503523349762, -0.09633630514144897, -0.618143618106842, 0.019392788410186768, -0.40093064308166504, -0.03755361959338188, 0.9516987204551697, -0.893975019454956, -0.20929747819900513, 0.8712700605392456, 0.0470147430896759, -0.8332956433296204, -0.6786016821861267, 0.4619393050670624, 0.2581550180912018, 0.06517938524484634, -0.30063730478286743, -0.7112256288528442, -0.4286439120769501, 0.5442707538604736, -0.7797309756278992, -0.820619523525238, -0.03241104260087013, 0.03689756244421005, 0.826687753200531, -0.7388357520103455, 0.09902837127447128, -1.0358078479766846, 0.13831685483455658, 0.5633536577224731, 0.3677096664905548, 0.3506169319152832, 0.3033173084259033, 0.2710902690887451, -0.5166162252426147, 0.1423099786043167, 1.6766448020935059, -0.06298961490392685, -0.5808942914009094, -0.15085400640964508, 0.7179898023605347, -0.18318714201450348, -0.7173587083816528, -0.35901519656181335, 0.4840128719806671, -0.6279918551445007, 0.05222000181674957, 0.43388238549232483, -0.11092943698167801, 1.630255937576294, 0.11887132376432419, -0.2644781768321991, -0.026514291763305664, -0.5819171667098999, -0.7100656628608704, 0.1666395664215088, 0.45275336503982544, -0.2541590929031372, -0.09206213802099228, 0.5217469930648804, 0.7395591735839844, 0.8232169151306152, 0.12644349038600922, 0.15093889832496643, 0.3317154347896576, 1.2378766536712646, -0.12046145647764206, 0.5750254392623901, 0.18369871377944946, 0.9273360967636108, 0.7555201649665833, 0.15817061066627502, 0.1429002285003662, -0.7259470224380493, 0.786897599697113, -0.5712032914161682, -0.3216152787208557, 0.3778969645500183, 0.038165535777807236, 1.0204166173934937, -2.1958189010620117, -0.27805769443511963, 0.2941528558731079, 0.3510790467262268, 0.14285875856876373, 0.3703644573688507, 0.3023664653301239, -1.286380648612976, 0.08997634053230286, 0.1649664044380188, -0.0008682562038302422, 0.05905866250395775, 0.5173171758651733, 0.2081553339958191, 0.49965694546699524, -0.5121811628341675, -0.29200679063796997, -0.4380805492401123, -0.09809843450784683, -0.43296945095062256, -0.25984305143356323, 0.2838384211063385, -0.3994345963001251, 0.6252975463867188, 0.9797396063804626, -0.6034662127494812, -0.8827933669090271, 0.4711459279060364, -1.377203106880188, 0.6707823276519775, -0.09047244489192963, -1.0362505912780762, -0.6766640543937683, -0.6003812551498413, -0.29993948340415955, 0.0578119233250618, -1.1082649230957031, 0.1274206042289734, -0.05616316944360733, -1.3121201992034912, -0.10973981767892838, 0.7598410844802856, 1.252471685409546, 1.3530473709106445, 0.13868466019630432, 0.9877708554267883, 0.08903589844703674, -0.8905518651008606, 0.07099543511867523, 0.6147943139076233, -0.4156089425086975, -0.5057874321937561, -1.0442599058151245, -0.8049352765083313, 1.057554006576538, 0.1642540991306305, 0.23212899267673492, -0.48110392689704895, 0.7880222201347351, 1.5142775774002075, -0.6795886754989624, -0.8852017521858215, 0.6789979338645935, -0.4064868092536926, 0.5575562715530396, 0.49785277247428894, -0.8973388075828552, 0.05357704311609268, 0.05506756529211998, -1.5769761800765991, 0.9949613809585571, -0.036222945898771286, -0.40338173508644104, 0.958954930305481, 0.3691959083080292, 0.5862270593643188, 0.9254629611968994, -1.2831637859344482, 0.010374479927122593, 0.33660513162612915, 0.4004173278808594, -0.8886725306510925, 0.943340003490448, 1.1671768426895142, -0.15977999567985535, 0.6594548225402832, 0.6222009062767029, -0.050387799739837646, 0.024575021117925644, 0.28489384055137634, -0.1388692706823349, 0.1334095150232315, 0.5273104906082153, 0.15499192476272583, -0.23169854283332825, 0.5334741473197937, -0.41880273818969727, -0.10482627153396606, 0.45399513840675354, 0.9510835409164429, 0.03657245263457298, -0.3410545587539673, 0.47369125485420227, -0.24275314807891846, 0.15617293119430542, 0.4850805997848511, 0.11430531740188599, 0.6012182831764221, -0.2329634428024292, 0.11372482776641846, 0.7713390588760376, 0.11120013892650604, -0.32585904002189636, -0.797305166721344, 0.02946636825799942, 0.39341166615486145, -1.1328296661376953, -0.48382285237312317, 0.3197769820690155, -0.2954353988170624, 0.28646165132522583, 0.04250108823180199, -0.18261995911598206, -1.1837754249572754, -1.7259595394134521, -0.3856836259365082, -0.8754299283027649, 0.3152647018432617, -0.5371546745300293, 0.9329638481140137, 0.08386893570423126, -1.6065673828125, 0.5866044759750366, 0.1679239571094513, -1.341735601425171, -0.41321173310279846, -0.5970957279205322, 0.44661328196525574, -0.47280991077423096, 0.5136011838912964, -0.2938002943992615, 0.34849098324775696, -0.5976315140724182, -0.7545130252838135, -0.5368701815605164, -0.43902328610420227, 0.40648624300956726, 1.4102190732955933, -1.2554130554199219, 0.9513294696807861, 0.43243733048439026, -0.0676010400056839, -0.18988493084907532, 0.35464420914649963, -0.9093438982963562, -0.20998381078243256, 0.4941541254520416, -0.029706357046961784, 0.15862011909484863, 1.3375061750411987, 0.7074348330497742, 1.0324703454971313, -0.11251436918973923, 0.7682092785835266, -0.9202717542648315, -0.7453364729881287, -0.11282757669687271, -0.1622486263513565, -1.0984437465667725, -0.4781795144081116, -0.0077330367639660835, -0.8312944173812866, -0.6605960130691528, 0.3564942479133606, 0.8929208517074585, -1.118309497833252, 0.33591681718826294, -0.6729608178138733, 0.7023782134056091, -0.3434784412384033, -0.2993256747722626, -0.21362411975860596, -0.3489736020565033, 0.28149929642677307, 0.1316506415605545, -0.2472493201494217, -1.03371262550354, -0.29945188760757446, 0.4166232645511627, 0.559460461139679, -0.8115965723991394, 0.8331050872802734, 0.21622323989868164, -0.06443801522254944, -0.12867394089698792, 0.872907817363739, 1.381210446357727, -0.4478488862514496, -0.04867401719093323, 0.044328343123197556, -0.8800223469734192, 0.6327608823776245, -1.2355549335479736, 0.013582533225417137, -0.8360537886619568, 1.0269312858581543, 0.22421373426914215, 0.20928366482257843, -0.6309187412261963, 0.42038288712501526, -0.45569881796836853, -0.05394718796014786, 0.45083045959472656, -0.8619840741157532, -0.20716553926467896, 0.6701790690422058, 0.8772875666618347, -0.2926202118396759, 0.5226000547409058, 0.3724357485771179, 0.8467893004417419, -0.2779397666454315, 0.5681763887405396, 0.013035953044891357, -0.21999205648899078, 0.43213677406311035, 0.5105466246604919, -0.07970502972602844, 0.4174633324146271, -0.45706310868263245, -1.429381251335144, 0.13820239901542664, -0.14477922022342682, -0.20152316987514496, 0.731172502040863, -1.0106505155563354, -0.9076792597770691, 0.16808471083641052, -0.09899559617042542, 0.22732488811016083, -0.0009877849370241165, -0.24268944561481476, -0.32777997851371765, 0.09957782924175262, 1.2271510362625122, -0.19611234962940216, 1.0585050582885742, -0.40328651666641235, -0.4625316262245178, -0.5543215274810791, -0.14291296899318695, -0.36404892802238464, 0.36013054847717285, -0.03248913958668709, -0.24046801030635834, 0.15871845185756683, -0.7697173357009888, -0.48755213618278503, 0.5084371566772461, 0.3515786826610565, 0.4848060607910156, 0.09714584797620773, -0.746111273765564, -0.5132423043251038, 0.37427738308906555, 0.7404612898826599, -0.06095424294471741, -0.7725396156311035, -0.5908479690551758, -0.24110116064548492, -0.004080981016159058, 0.5662029385566711, -0.5969614386558533, 0.5264069437980652, 0.7207852005958557, 0.21101014316082, -0.0804484561085701, -0.5091301202774048, -0.31778737902641296, -0.4614945650100708, 0.5219449400901794, -0.7784422039985657, -0.12375128269195557, -0.11415811628103256, -0.7500616312026978, 0.007652967236936092, 0.4446789622306824, -0.05551555007696152, 0.2783525288105011, -0.3870682418346405, -0.23853084444999695, -0.16254985332489014, 0.3103255331516266, 0.01908762753009796, 0.41053691506385803, 0.48890647292137146, -1.022972822189331, -0.8962762951850891, 0.03598570078611374, 0.4727029800415039, 0.23688839375972748, 0.33682647347450256, 2.005551815032959, 1.799576759338379, 0.30765631794929504, 0.027147457003593445, -0.48376739025115967, 0.872491717338562, -0.9103876352310181, -0.5455899238586426, -0.9632024168968201, 0.13269229233264923, 0.0743904784321785], [0.15209394693374634, 2.5880186557769775, -2.750401258468628, -0.7206113338470459, 0.34741321206092834, 0.7799856066703796, 1.116036057472229, 0.04531088471412659, -0.08967968076467514, -0.28281310200691223, -0.699684202671051, -0.14092162251472473, 1.0779154300689697, 0.30305179953575134, 0.16869209706783295, 0.8731561899185181, 0.6246100068092346, 0.006480194628238678, 0.31871336698532104, 0.5766254663467407, 0.25461655855178833, -1.7112410068511963, -0.5377128720283508, 0.1507088541984558, 0.3892609477043152, -0.7159793972969055, -1.4340194463729858, -0.5269966721534729, -1.1104719638824463, 0.3668059706687927, 0.5090451240539551, -0.009830884635448456, -0.32145464420318604, 0.1127420961856842, -1.2923126220703125, 0.3038705885410309, 0.7307202219963074, -0.3666642904281616, -0.3252837359905243, 0.3545498847961426, 1.6826890707015991, -0.2442014366388321, -0.33036673069000244, -0.8889930844306946, 0.9673201441764832, -0.18912474811077118, 0.9036795496940613, -0.17585885524749756, 0.15475915372371674, -0.6851396560668945, 1.2341779470443726, -0.40582001209259033, 0.16281281411647797, 1.0450648069381714, 0.9628772735595703, -0.7813068628311157, -0.15216071903705597, 0.8552330136299133, 0.2454100400209427, 0.11716035008430481, 0.7488333582878113, 0.6540209650993347, 1.2833271026611328, 1.4053521156311035, 1.0785553455352783, -0.42577120661735535, 0.7475330829620361, 0.2485027015209198, 0.43708667159080505, 0.04173274338245392, 0.7795265913009644, 0.2710705101490021, -0.30030617117881775, -0.4961951673030853, -1.0590064525604248, 0.6661517024040222, 0.006181113421916962, 0.3820776045322418, -0.09187407046556473, 1.1561864614486694, -0.304153174161911, -0.5314438939094543, -0.1658565104007721, -0.279083251953125, 0.5709465146064758, -0.07242632657289505, 0.5382676720619202, -0.1803298145532608, -0.07008698582649231, 1.3165695667266846, -0.40203502774238586, 0.22874653339385986, 0.4449903666973114, -0.10387641936540604, -0.2518772780895233, -0.02872272953391075, -1.2135472297668457, -0.44238343834877014, -0.7602525949478149, -1.2192814350128174, -0.9035554528236389, -0.4803923964500427, 0.266716867685318, 0.23499980568885803, 0.20314250886440277, 1.368005633354187, 0.7713254690170288, -0.44639939069747925, -0.1089576929807663, 0.005724221467971802, 0.26281502842903137, 0.014468150213360786, -0.8354314565658569, -1.2101106643676758, -0.22729302942752838, 0.837622344493866, 1.9346650838851929, 0.9377493858337402, 0.9933820366859436, 0.35047271847724915, 0.047899916768074036, -0.06710060685873032, -0.6026819348335266, 0.0026381611824035645, 0.9391642808914185, 0.39308077096939087, -0.8196107745170593, 0.13842228055000305, 0.5881702899932861, 0.17896027863025665, 0.6101784110069275, -0.10224712640047073, 0.13162104785442352, 0.32988062500953674, -0.3464414179325104, 1.0686628818511963, -0.16546599566936493, -1.4261600971221924, -0.3817271590232849, 0.6913828253746033, 0.58128821849823, -0.4916219413280487, -0.41463690996170044, -0.2793175280094147, -0.19628794491291046, -0.5375720858573914, 0.36466917395591736, -0.20813126862049103, -0.5736407041549683, 0.25972673296928406, -1.5596650838851929, 0.7686130404472351, -0.05939747020602226, 1.4034545421600342, 0.8823549747467041, -1.0211066007614136, 0.8135047554969788, 0.8599361181259155, 0.2970018982887268, -0.24016635119915009, 1.5028477907180786, -0.2293553501367569, -0.752844512462616, 0.8117468953132629, 0.31384992599487305, -0.13302470743656158, 0.6330778002738953, 0.14792008697986603, -0.12365821748971939, 0.3291913866996765, 0.1896737664937973, -0.21295538544654846, -0.7027740478515625, 0.17168119549751282, 0.14822503924369812, -0.7189772725105286, 1.0593286752700806, 0.5727179646492004, -1.3555052280426025, -1.4162888526916504, 0.7713145017623901, -0.7913073897361755, 0.1522028148174286, 0.25657919049263, 0.4482971131801605, -0.02338550239801407, 0.17320233583450317, -0.2955605983734131, -0.18150204420089722, -1.402337908744812, -0.23550811409950256, 0.17399714887142181, -1.4546478986740112, 0.4548209011554718, -0.7840008735656738, -0.6856632232666016, 1.313503384590149, 0.4358017146587372, -0.6309003829956055, -0.19103339314460754, 0.676376223564148, 0.3130101263523102, -1.1348501443862915, 0.1512746512889862, -0.5743274092674255, 0.760414719581604, -0.6606952548027039, 0.3633764386177063, -0.7384173274040222, 0.06986463069915771, 0.850327730178833, -0.9570736885070801, -0.7333892583847046, 0.3497343063354492, 0.09695646166801453, -1.0000433921813965, 1.034024953842163, -0.11110047996044159, -0.4540623128414154, -0.4279692769050598, 0.16653215885162354, -0.1880953162908554, 0.24581263959407806, 0.034020863473415375, 0.9560580253601074, -0.22397302091121674, -0.12506231665611267, -0.6659989953041077, -0.11510272324085236, 0.3940960168838501, -0.6473139524459839, -0.7956603765487671, 0.2627745568752289, 0.88219153881073, -1.1837214231491089, 0.7828061580657959, -0.1552930772304535, 0.42666369676589966, 0.06833627074956894, 0.9409451484680176, 0.593246579170227, 0.1019350066781044, -1.1666151285171509, 0.12144997715950012, -1.017316222190857, -0.06853556632995605, 0.576733410358429, -0.9744367003440857, -0.3775920569896698, 1.3091788291931152, 1.1713337898254395, 0.31562963128089905, 0.5588051080703735, -0.3243052661418915, -0.05369570478796959, -0.6254812479019165, -0.4301607310771942, 0.2788200378417969, -0.8908758163452148, 0.9241204857826233, 0.8941070437431335, -0.3973926901817322, 0.6066083312034607, -0.4616777300834656, -0.3956761062145233, -0.9584718942642212, -0.26160895824432373, -0.08382154256105423, 0.573617696762085, -0.514279842376709, -0.16300441324710846, 0.3354984223842621, -0.31849175691604614, 0.7758124470710754, 0.16686564683914185, -0.4211757481098175, 0.6976421475410461, 1.0876402854919434, -0.03529825806617737, 0.8263694047927856, -0.039191968739032745, -1.2509068250656128, -1.3077099323272705, -0.360564261674881, 0.47078752517700195, -0.07254613190889359, -0.11262606829404831, 1.0145715475082397, 0.4419150948524475, -0.08346246927976608, 0.3086019456386566, 0.38208284974098206, -0.24856381118297577, 0.10303408652544022, -0.3691115975379944, 0.1158829852938652, 0.586348831653595, -0.6174446940422058, -0.5171009302139282, -0.37548232078552246, 0.3188738226890564, 0.7420107126235962, 1.4524006843566895, 1.4075294733047485, -0.30376291275024414, -0.18490909039974213, 0.5969834923744202, 0.20902886986732483, -0.31095626950263977, -0.6899834275245667, -0.576069712638855, -0.6927047967910767, 0.022986404597759247, -0.7249483466148376, 0.18068000674247742, 1.0283288955688477, 0.5686248540878296, 0.5801821351051331, 0.8501924276351929, 0.11846152693033218, -1.0938658714294434, -0.07315089553594589, -1.2068895101547241, -0.7898198366165161, 0.8312076330184937, 0.8658943176269531, -1.5013781785964966, 0.133956179022789, -0.2417750060558319, 0.12879998981952667, 0.21411912143230438, 0.42887094616889954, 0.34556975960731506, -1.1915591955184937, -0.5749028921127319, -0.2819305956363678, 1.038619041442871, -0.141049325466156, -0.14975596964359283, -0.7123746871948242, 0.4653831720352173, 0.5546286106109619, -0.36021044850349426, -0.2487042397260666, -0.3196001946926117, -0.14197194576263428, -0.3807148039340973, 0.22896379232406616, 0.255094975233078, 0.31390342116355896, -1.0313549041748047, -1.1834176778793335, 0.6136893033981323, 0.2967442274093628, -1.0047370195388794, 0.5626917481422424, -0.33433058857917786, 1.4857773780822754, -0.13473054766654968, 0.7727271914482117, 1.3804843425750732, 0.2392951250076294, 0.3564099371433258, -1.4393274784088135, 0.6097970008850098, 0.42750468850135803, 1.130051851272583, 0.31066441535949707, 0.5217445492744446, -0.005781505256891251, -1.2364107370376587, -0.5544149279594421, 0.5561578869819641, 0.6967175006866455, 0.33871355652809143, -0.15389277040958405, -0.3263024091720581, -0.6723909974098206, -0.1299847811460495, 0.12226618081331253, 0.31656068563461304, 0.029971923679113388, -0.3867805302143097, -0.6734232306480408, 1.2553327083587646, 0.718181848526001, -0.9750323295593262, -1.25016450881958, 0.05003761500120163, 0.4977104961872101, -0.44217437505722046, 0.24469660222530365, -0.8614642024040222, 0.1913658082485199, 0.4545145630836487, -0.7301735877990723, -0.4440997242927551, -0.3767504096031189, 0.04254510998725891, 0.8186752796173096, -0.9044587016105652, -0.5412719249725342, -0.9208748936653137, 0.46238550543785095, 0.8905344605445862, 0.7184598445892334, 0.5115445256233215, 0.16506151854991913, -0.10788629204034805, -0.14921525120735168, 0.051614824682474136, 0.9917851686477661, -0.49618273973464966, -0.0007029264234006405, 0.18521851301193237, 0.500149667263031, 0.6251447200775146, -0.38019517064094543, -0.6119216680526733, 0.028266897425055504, 0.06641487032175064, 0.6108462810516357, 0.3340252935886383, -0.3038105070590973, 1.288772702217102, -0.5714711546897888, 0.24075880646705627, 0.3303954005241394, 0.10529695451259613, -1.1654982566833496, -0.14566592872142792, 0.33323729038238525, -0.39679282903671265, -0.9352426528930664, 0.22003059089183807, 0.5373343825340271, 0.5739004611968994, -0.0007632598280906677, 0.8375732898712158, 0.6392337679862976, 0.29944339394569397, 0.051232703030109406, 0.75996333360672, 0.14662228524684906, 1.208415150642395, 0.7211381793022156, 0.7433491945266724, -0.32045456767082214, -0.34561672806739807, 0.8415371179580688, 0.3047085106372833, -0.15562951564788818, 0.8440565466880798, -0.015645232051610947, 0.9766569137573242, -0.9725830554962158, -0.06908854842185974, 1.2993342876434326, -0.5760445594787598, 0.438312828540802, -0.1797744631767273, 0.9165596961975098, -0.9620524048805237, -0.01789439097046852, 0.8778585195541382, -0.07318000495433807, 0.6785157322883606, -0.2818332016468048, 0.35300537943840027, 0.13420969247817993, -0.636512815952301, 0.3369249105453491, -1.1998350620269775, -0.009940080344676971, -0.761174738407135, 0.15844959020614624, 0.8315917253494263, 0.5579656362533569, 0.28344982862472534, 1.3680822849273682, -0.6979859471321106, -1.0887240171432495, 0.36893534660339355, -0.817815899848938, 0.05222158879041672, -0.5597275495529175, -0.2160934954881668, -0.22437086701393127, -0.46885809302330017, -0.42324692010879517, 0.011078842915594578, -0.9301795959472656, -0.6961499452590942, -0.6738247275352478, -0.8329446315765381, 0.22559237480163574, 0.042494334280490875, 0.8728199005126953, 0.3467674255371094, 0.3351091742515564, 0.02114565670490265, -0.03376638516783714, -1.4982378482818604, -0.3207482397556305, 0.4646746516227722, -0.6390601992607117, -0.48364800214767456, -1.1019092798233032, -0.4503094553947449, 1.2306227684020996, 0.4839245080947876, -0.07424905151128769, -0.02916543558239937, 0.716350257396698, 1.631393551826477, -0.538783848285675, -0.5675237774848938, 0.2111743539571762, -0.030623240396380424, 0.7531182169914246, 0.3773064613342285, -0.7853789925575256, -0.46051540970802307, -1.4739347696304321, -2.15671968460083, 1.3307629823684692, 0.28178003430366516, 0.3392123281955719, 0.9040324091911316, 0.6944544911384583, -0.22630542516708374, 0.971785306930542, -0.44562944769859314, -0.402586966753006, -0.4663074314594269, -0.01830080896615982, -0.758444607257843, 0.49601131677627563, 0.824866771697998, -0.28287577629089355, -0.505740761756897, 0.49243155121803284, -0.15354715287685394, -0.2978077828884125, 0.11496550589799881, -0.18513983488082886, -0.17558883130550385, 0.11009792983531952, 0.26146113872528076, -0.5283936262130737, 0.7492955923080444, -1.0497381687164307, -0.029026906937360764, 0.4868505001068115, 0.015911370515823364, 0.383548766374588, -1.1816028356552124, 0.7768494486808777, 0.02807566151022911, 0.1915421038866043, 0.4937986433506012, -0.39648130536079407, 0.9237396121025085, -0.010865969583392143, 0.5253865718841553, 1.0706793069839478, 0.04680459573864937, -0.4028719365596771, -0.7518066167831421, 0.03894425183534622, -0.2570444643497467, -0.8839035034179688, -1.2389219999313354, -0.36974310874938965, -0.22569547593593597, 0.09715618193149567, 0.4805929362773895, -1.0927977561950684, -1.3505535125732422, -1.1026394367218018, 0.2509586215019226, -0.3133390247821808, 0.8836067318916321, -0.8440544605255127, -0.015725841745734215, 0.11622095853090286, -1.0910882949829102, -0.251778244972229, 0.28518521785736084, -2.0994534492492676, -0.16188907623291016, -0.5279513001441956, 0.9935073256492615, -0.18881641328334808, 0.05499480664730072, -0.38432395458221436, 1.1191649436950684, -1.158371925354004, -0.8156620860099792, -0.9957876801490784, -0.6841193437576294, 1.2744430303573608, 0.6953786015510559, -0.7032284736633301, 0.9402191638946533, 0.1609378606081009, -0.2215125560760498, 0.07312380522489548, 0.35680124163627625, -0.8293033838272095, -0.5176394581794739, 0.21306580305099487, -0.5518454909324646, 0.2994050979614258, 1.5344511270523071, 0.48792752623558044, 1.6311705112457275, -0.1554047167301178, 1.6964685916900635, -0.7601639628410339, -0.4636508822441101, 0.03945910930633545, 0.8394390940666199, -0.5995274186134338, -0.09589877724647522, 0.003847295418381691, -1.447052240371704, -0.2888795733451843, 0.4924536943435669, 0.938576340675354, -0.3773875832557678, -0.15510042011737823, -0.7525187730789185, 0.40133559703826904, -1.1459554433822632, 0.26783886551856995, -0.33732345700263977, -0.7657490372657776, 0.10730215162038803, 0.1283651441335678, 0.39723289012908936, -0.7173399925231934, 0.31940317153930664, 0.31541213393211365, 0.5985368490219116, -0.797074019908905, 0.326455295085907, -0.03643789514899254, -0.1137411966919899, -1.1206912994384766, 1.1638363599777222, 0.9254009127616882, -0.08687525242567062, -0.3083076477050781, 0.32963645458221436, -0.26144832372665405, 0.17440932989120483, -0.7170187830924988, -0.4541560709476471, -0.9262183308601379, 0.6067206263542175, 0.3382883369922638, -0.040415238589048386, 0.1672210544347763, 0.5220261216163635, -0.3738303482532501, -0.6829728484153748, 1.5154542922973633, -0.4852161407470703, -0.7289119362831116, 0.8425376415252686, 0.8772358298301697, -0.5402320623397827, 0.7112699747085571, 0.15265074372291565, 0.1257520467042923, 0.1759016513824463, 0.8875612020492554, 0.07080435752868652, -0.5616536140441895, 0.45452991127967834, 0.41096657514572144, -0.604794442653656, 0.27788329124450684, -0.35977795720100403, -1.8539118766784668, -0.26106300950050354, -0.03237748146057129, -0.35616666078567505, -0.26991844177246094, -0.9678881168365479, -1.070701003074646, 0.5252434611320496, -0.27029046416282654, -0.16790194809436798, -0.796501636505127, 0.14395785331726074, -0.34960123896598816, 0.11684698611497879, 0.33691391348838806, -0.3434324264526367, 0.8528762459754944, -0.3374274671077728, 0.21662399172782898, -0.7386550307273865, 0.11621564626693726, 0.5565243363380432, 0.3636234700679779, -0.26879891753196716, -0.41597434878349304, 0.6090935468673706, -0.8085618615150452, -0.6268507838249207, -0.009274812415242195, -0.27945899963378906, 0.4751392900943756, -0.2180686742067337, -0.2673918306827545, -0.10733287781476974, -0.08533564954996109, 1.1117812395095825, -0.3411485552787781, -0.8795739412307739, -0.8894070386886597, 0.4640384316444397, -0.029643846675753593, 1.2052308320999146, -0.38511693477630615, 0.3472709655761719, 0.07695543766021729, -0.8565357327461243, 0.06741498410701752, -0.7433196306228638, 1.4022231101989746, -0.33440786600112915, 0.09321807324886322, -0.8921211361885071, -0.4814392030239105, 0.8264889121055603, -0.9616557359695435, -0.5354293584823608, -0.07898551225662231, -0.41667622327804565, -0.19263295829296112, -0.40197575092315674, -1.0242670774459839, -0.6586612462997437, -0.19514554738998413, -0.07543410360813141, 0.708335280418396, 0.48921939730644226, -0.32734450697898865, -0.6628299951553345, -0.030463475733995438, 1.2410303354263306, -0.48717445135116577, 0.3441130518913269, 1.2247488498687744, 1.6089712381362915, 0.13847899436950684, -0.19169831275939941, -0.4661262333393097, 0.657362163066864, -0.7404472827911377, 0.4649903178215027, -1.3148438930511475, -0.7914369702339172, -0.43827763199806213], [-0.6468607783317566, 2.2647249698638916, -2.927760124206543, -1.1377586126327515, -0.04307497292757034, -0.3007517457008362, 1.1863325834274292, 0.6272547245025635, -0.21156270802021027, -1.256378412246704, -0.7934648990631104, 0.18263833224773407, 0.5491165518760681, 0.7449966073036194, 0.4010224938392639, 0.8033917546272278, 0.27390310168266296, 0.08932528644800186, 0.17422300577163696, 0.8901050090789795, 0.36111751198768616, -1.1041841506958008, -0.2818729877471924, -0.4577783942222595, 0.1711234301328659, -0.31218692660331726, -1.2622311115264893, 0.4475720524787903, -1.343800663948059, -0.5794089436531067, 1.4533610343933105, -0.45188528299331665, 0.06825710833072662, -0.26940101385116577, -1.4715063571929932, -0.9875062704086304, 0.27557703852653503, -0.3310016095638275, -0.88251793384552, 0.29702436923980713, 1.9857511520385742, -0.12816444039344788, -0.1925240308046341, -1.3089715242385864, 1.1588687896728516, -0.45286276936531067, -0.36547425389289856, -0.8533362746238708, 0.626768171787262, -0.7397992014884949, 0.6930710673332214, -0.3491285741329193, 0.5198242664337158, 0.6675940155982971, 0.7105171084403992, -0.20996630191802979, 0.2897483706474304, 1.0225356817245483, 0.09802814573049545, 0.8340622186660767, 0.8510024547576904, 0.7310730814933777, 0.24586139619350433, 0.6361545920372009, 0.3646305203437805, 0.05770581588149071, 0.38354772329330444, 0.5560734868049622, -0.33097368478775024, 0.06784535199403763, 1.2109545469284058, 0.39334869384765625, -0.3910810053348541, -0.6708301901817322, -0.942678689956665, 0.3797023296356201, -0.5686348676681519, 0.6784663200378418, -0.10241805016994476, 1.2299044132232666, 0.25731587409973145, 0.07721077650785446, -0.15241739153862, -0.35230687260627747, 0.4090779423713684, -0.09145797789096832, 0.30187636613845825, 0.07744092494249344, -0.38291677832603455, 1.5009267330169678, 0.19265596568584442, 0.5898595452308655, 0.6716402769088745, -0.10242284089326859, -0.16944414377212524, -0.37005460262298584, -0.29720890522003174, -0.4111952483654022, -0.22039136290550232, -0.757020115852356, -1.0100680589675903, -0.9325683116912842, 0.6219236254692078, 0.3338966965675354, 0.9743685722351074, 1.757285237312317, 0.7418131828308105, -1.1471387147903442, -1.096878170967102, 0.18161442875862122, 0.20451797544956207, -0.1267118752002716, -1.0063366889953613, -0.4246794879436493, -0.006364257074892521, 1.1373242139816284, 1.4650640487670898, 0.058401014655828476, 0.5951367020606995, 0.33273962140083313, -0.38135573267936707, -0.6610780358314514, -1.1290090084075928, 0.270271897315979, 1.3148292303085327, -0.3735447824001312, -0.83799809217453, 0.0758814811706543, -0.05208709090948105, -0.33657413721084595, 0.7833483815193176, 0.12954965233802795, -0.054749745875597, 0.7160871624946594, -0.07647402584552765, 0.806027352809906, 0.0033538276329636574, -0.8673019409179688, 0.9824835658073425, 0.5610116124153137, 0.06493481993675232, -0.45327404141426086, -0.7655943036079407, -0.807177722454071, 0.3348502516746521, -0.42174580693244934, -0.004458268638700247, -0.6947875618934631, -0.9362419247627258, 0.09213722497224808, -2.1549816131591797, 0.7538942694664001, -0.3560902774333954, 2.0646450519561768, 0.340343177318573, -0.2840900719165802, 0.3829682767391205, 0.0796954557299614, 0.0691804364323616, 0.6712401509284973, 1.5838441848754883, -0.15270178020000458, -0.45114630460739136, 1.8023338317871094, 0.6652097105979919, -0.8324804306030273, 0.797607421875, 0.5059722661972046, -0.7606003880500793, 0.32463377714157104, -0.3984106183052063, 0.0017957012169063091, -0.5424758791923523, 0.1658344864845276, 0.15840716660022736, -0.48977741599082947, 1.1815303564071655, -0.03973447158932686, -0.846299409866333, -1.2663633823394775, 0.5020096302032471, -0.5332967638969421, 0.025789618492126465, 0.7264783978462219, 0.7600909471511841, -0.22512146830558777, -0.8693979382514954, -0.1866748183965683, -0.25349196791648865, -0.5739546418190002, -1.1796298027038574, 0.49159619212150574, -1.5168018341064453, 0.5353742241859436, -0.706945538520813, -0.6136816143989563, 0.6174197196960449, -0.337552011013031, 0.15271860361099243, -0.257633775472641, -0.16947969794273376, -0.4154653251171112, -1.6123181581497192, -0.3694532811641693, -0.8781816959381104, 1.311186671257019, -0.3868989646434784, 0.4224846363067627, -0.2186952829360962, 0.6440572738647461, 1.284420371055603, -0.4222507178783417, -1.0384656190872192, 0.10350055992603302, 0.44470083713531494, -1.2153726816177368, 0.04180563986301422, -0.05518660694360733, -0.059996869415044785, -0.036653634160757065, 0.4068357050418854, -0.01695297844707966, 1.1492995023727417, 0.4268433153629303, 0.7199360728263855, -0.05252866446971893, 0.19207161664962769, -0.19578056037425995, -0.5301721096038818, 0.3967626988887787, -1.0609917640686035, 0.06146317347884178, 0.5392694473266602, 0.7722848653793335, -1.0173652172088623, 1.2892662286758423, -0.4141324758529663, 0.6643274426460266, 0.699178159236908, 0.7907006144523621, 1.0656654834747314, -0.08760540187358856, -0.4492361545562744, -0.21423190832138062, -0.5660125017166138, -0.4864151179790497, 1.1449722051620483, -0.525547206401825, -0.6925720572471619, 1.8557648658752441, 0.7593607306480408, 0.10848811268806458, 0.3284306824207306, -0.46481117606163025, 0.31475216150283813, -1.174850344657898, 0.41732367873191833, 0.1966087520122528, -0.9289020895957947, 0.3583056926727295, 0.25835415720939636, -1.48112952709198, -0.07900069653987885, -0.6540631055831909, 0.5158020853996277, -0.5229647159576416, 0.17175062000751495, -0.012232833541929722, 0.4667469561100006, -0.4403848350048065, 0.12758000195026398, -0.5836072564125061, -0.2098696529865265, 0.7977616786956787, 0.046051591634750366, -0.29200419783592224, 0.34199032187461853, 1.3780001401901245, 0.2939959168434143, 0.9607698917388916, -0.30371010303497314, -1.544590711593628, -1.0273183584213257, -0.7436941266059875, 0.933488667011261, -0.23041395843029022, -0.27899158000946045, 0.48415234684944153, 0.8704383969306946, -0.21478332579135895, 0.5350279808044434, 0.252017080783844, 0.06596361845731735, 0.02932598441839218, 0.24083778262138367, 0.6605480313301086, 0.12302060425281525, -0.7027448415756226, -0.9469212889671326, -0.4146900177001953, 0.23105166852474213, 0.48268789052963257, 1.0956660509109497, 1.021870732307434, -0.21927502751350403, 0.044893596321344376, -0.19022735953330994, 0.267536997795105, 0.15347465872764587, -0.5307093262672424, -0.8227089047431946, -0.18335306644439697, 0.18260401487350464, -0.8947588801383972, -0.17501401901245117, 1.2877448797225952, 0.453261137008667, 1.1944881677627563, 0.31764301657676697, -0.5516530871391296, -1.4959849119186401, -0.1354856938123703, -0.488008975982666, -0.9521438479423523, 0.9453831315040588, 1.0820930004119873, -1.203418493270874, 0.11088376492261887, 0.14539386332035065, 0.2004944533109665, 0.20908692479133606, -0.0940980389714241, 0.17184235155582428, -1.1428707838058472, -0.5550649166107178, 0.1200113520026207, 0.9127752780914307, -0.31988298892974854, -0.18571095168590546, -0.196754589676857, 0.7913367748260498, 0.9586805105209351, -0.2213989496231079, -0.31648218631744385, 0.2982705235481262, -0.08428309857845306, -0.9502994418144226, 0.1657288372516632, 0.20353297889232635, 1.4263147115707397, -0.7800217270851135, -0.5399892330169678, -0.5942797064781189, -0.17653608322143555, -0.9385070204734802, 0.31245607137680054, 0.49383673071861267, 0.7827185988426208, 0.36852794885635376, 0.4635980725288391, 0.697685956954956, 0.0016998124774545431, 0.5816804766654968, -1.838178277015686, 0.3679777979850769, 0.8581531643867493, 1.0971264839172363, 0.04324851557612419, 0.5120273232460022, 0.22949373722076416, -1.037034511566162, -0.058843955397605896, 0.037468522787094116, 0.19180569052696228, 0.23438818752765656, -0.42419230937957764, 0.23431400954723358, -0.16198933124542236, 0.23140238225460052, 0.25472593307495117, 0.32726559042930603, 0.2956884801387787, -0.07731381058692932, -0.1390780806541443, 1.2360262870788574, -0.30608120560646057, -0.44404280185699463, -0.8799749612808228, 0.2331436425447464, 0.2609693706035614, -0.19915278255939484, -0.056458741426467896, -0.679716169834137, 0.00026462238747626543, 0.36593833565711975, -0.15104731917381287, -1.0727068185806274, -0.39773884415626526, -0.02895263582468033, 0.8723435997962952, -0.9042506814002991, -0.9964220523834229, -0.6633796095848083, 0.6023184657096863, 0.5600312352180481, -0.10759487748146057, 0.9339815974235535, 0.1186588779091835, -0.4491185247898102, -0.2197214514017105, 0.16917777061462402, 1.5101608037948608, 0.2615742087364197, -0.3172447979450226, -0.17204269766807556, 0.5563132762908936, 0.7445865869522095, -0.5440239906311035, -0.3221611976623535, -0.2761668264865875, -0.833953320980072, 0.5051748752593994, 0.5224949717521667, -0.31688809394836426, 1.2233941555023193, -0.9547768235206604, 0.5190610289573669, 0.747148871421814, -0.286195307970047, -0.9516127705574036, -0.5653518438339233, 0.17853467166423798, -0.30118000507354736, -0.2941572964191437, 0.1448066085577011, 0.05110479146242142, 0.6173977255821228, 0.4771077632904053, 0.41661715507507324, 0.27498868107795715, 0.10892655700445175, -0.747305691242218, 0.26456889510154724, 0.6063560843467712, 0.6606465578079224, 0.9964643716812134, 0.9356052279472351, -0.5756158828735352, -0.7693538069725037, 0.9262727499008179, 0.14960893988609314, 0.04985528066754341, 1.1346135139465332, 0.311685711145401, 1.6834242343902588, -1.7162867784500122, 0.32091253995895386, 0.3741757273674011, 0.3173907697200775, 0.4038732349872589, -0.48133763670921326, 0.8198479413986206, -1.577937364578247, -0.1093081459403038, 0.42445436120033264, -0.3126603364944458, 0.8206880688667297, -0.19850365817546844, -0.004414440598338842, 0.46796295046806335, -0.1927787810564041, 0.1026766449213028, -0.5519335865974426, -0.1784338653087616, 0.13540053367614746, 0.6807615756988525, 0.7252371311187744, 0.8565211296081543, 0.2445545494556427, 1.2761523723602295, -1.3570079803466797, -1.5093834400177002, 0.5569397211074829, -1.3508762121200562, 0.3144490122795105, 0.2663761079311371, -0.4846149682998657, -0.36912667751312256, -1.3461657762527466, 0.06723809242248535, -0.3568874001502991, -0.8914827704429626, 0.07423925399780273, -0.3124241232872009, -1.404646396636963, -0.4516680836677551, -0.22341513633728027, 0.992729902267456, 0.2228093445301056, 0.35701221227645874, 0.6668825745582581, 0.39341413974761963, -0.6362688541412354, 0.22027955949306488, -0.01548434142023325, -0.4679241180419922, 0.1367095708847046, -1.1126333475112915, -0.6672679781913757, 0.7328792810440063, 0.7242993712425232, 0.7653235793113708, -0.1919737011194229, 0.9379785060882568, 1.652852177619934, -0.3733983039855957, -0.42295581102371216, 0.7855969071388245, -0.023108184337615967, 0.27961891889572144, 0.39684322476387024, -0.9255174398422241, -0.15728312730789185, -0.3066282868385315, -2.030059814453125, 1.272472858428955, -0.04580410569906235, -1.0772286653518677, 0.6820172071456909, 0.8151190280914307, -0.08724629133939743, 1.3232033252716064, -0.2986332178115845, -0.5323130488395691, 0.3652200400829315, -0.16688942909240723, -1.359131932258606, 0.277717649936676, 1.2700068950653076, 0.35049688816070557, -1.0549763441085815, -0.05013136565685272, -0.3058621883392334, -0.6615668535232544, 0.19457577168941498, -0.2612505257129669, 0.8476977944374084, 0.12072189152240753, -0.09945828467607498, -0.9039397239685059, 0.17927958071231842, -1.0136009454727173, 0.4979693591594696, 0.26237383484840393, 0.8093320727348328, -0.023835020139813423, -0.9459840059280396, 0.9703717827796936, -0.29846590757369995, -0.6343125700950623, 0.29130810499191284, -0.8702657222747803, 0.22130678594112396, 0.5670174956321716, 0.23006556928157806, 0.3244772255420685, -0.058559343218803406, -0.5252634286880493, -0.7194744348526001, 0.2532188594341278, 0.804487407207489, -1.4802234172821045, -0.8354744911193848, 0.0489928238093853, 0.004508325830101967, 0.3503904938697815, 0.6405201554298401, -0.5214478969573975, -1.0666935443878174, -1.1855907440185547, -0.6808870434761047, -0.9398742914199829, 0.5869090557098389, 0.03342514857649803, -0.26024332642555237, -0.2461378425359726, -1.39046049118042, 0.960111677646637, -0.5555760860443115, -1.984959602355957, -0.15847939252853394, -0.1421528458595276, 0.8847315907478333, -0.29541635513305664, -0.5250746011734009, 0.22466610372066498, 1.117659568786621, -0.5444061160087585, -0.09589529782533646, -1.1044511795043945, -0.5754256248474121, 0.9225298762321472, 1.3325376510620117, -1.23824143409729, 1.1115527153015137, 0.18841665983200073, -0.5888832807540894, -0.31455475091934204, 0.17517513036727905, -1.8172807693481445, -0.12017262727022171, 0.33524802327156067, -0.1410059928894043, 0.7401129007339478, 1.6596394777297974, 0.3735860288143158, 1.0605486631393433, 0.5750035047531128, 1.050278663635254, -0.36542513966560364, -0.4887697100639343, -0.3021705150604248, -0.22441136837005615, -1.0397660732269287, -0.1299980878829956, 0.21492688357830048, -0.9295832514762878, -0.7500362992286682, 1.0458896160125732, 0.6795055270195007, -0.7853800654411316, 0.42426732182502747, 0.03964175656437874, 0.4427003860473633, -1.349231243133545, 0.4310443103313446, 0.3170144557952881, -1.2714780569076538, -0.21914248168468475, 0.28605392575263977, 0.7151004076004028, -0.859592616558075, 0.5081402063369751, 0.5269162654876709, 0.43318817019462585, -0.609757125377655, 0.660090446472168, -0.2318982630968094, 0.1526639610528946, -0.8614569306373596, 1.20444917678833, 0.772086501121521, 0.40043753385543823, 0.514113187789917, 0.8145993947982788, -0.21320590376853943, 0.06452962756156921, -0.17357264459133148, -0.43056023120880127, -1.1015522480010986, 0.5256191492080688, 0.1868361532688141, -0.06205645948648453, -0.29453063011169434, 0.3094131648540497, -0.2510845959186554, -0.6751017570495605, 1.4095512628555298, -0.5782368183135986, -1.0789977312088013, 0.6028989553451538, 0.788642168045044, -0.21223735809326172, 0.48236483335494995, -0.055017050355672836, 1.30397629737854, -0.32212066650390625, 0.7556402683258057, -0.08179498463869095, -0.5110535025596619, 0.4011533558368683, 0.29825425148010254, -0.9249488115310669, 0.26516956090927124, -0.4985738694667816, -1.057337999343872, -0.08618493378162384, -0.16879452764987946, -0.23011644184589386, 0.3699600398540497, -0.8564552068710327, -1.3584216833114624, -0.12946854531764984, -0.22785967588424683, -0.2436659038066864, -0.43965592980384827, 0.0669417679309845, -0.4937499165534973, -0.4071754813194275, 1.1694425344467163, -0.4023970067501068, 0.7916502356529236, -0.02252129279077053, 0.18636645376682281, -0.11956053227186203, 0.15908187627792358, -0.2670508921146393, 0.016688678413629532, -0.3405211269855499, -0.6459894180297852, 0.15882916748523712, -0.926109254360199, 0.21985019743442535, 0.7559097409248352, 0.02143210358917713, 0.22212405502796173, 0.18672998249530792, -0.997717559337616, -0.46309375762939453, 0.6703246831893921, 0.8270057439804077, -0.711255669593811, -0.8293466567993164, -0.5085206031799316, -0.22239604592323303, 0.6569205522537231, 1.3036292791366577, -1.0606297254562378, 0.5668764710426331, 0.7280110716819763, -0.5006613731384277, -0.6486733555793762, -0.7807797789573669, 1.4814605712890625, -0.6492133140563965, 0.7928521037101746, -1.203485131263733, -0.4022165834903717, 0.04559672251343727, -0.9211066365242004, 0.048613496124744415, -0.3806377351284027, -0.21021495759487152, 0.554154098033905, -0.012915215454995632, -0.9202512502670288, -0.5085685849189758, 0.3695274293422699, -0.04479743912816048, -0.1045590341091156, 1.1750152111053467, 0.02217632345855236, -0.7421281337738037, -0.3336217999458313, 0.5812095999717712, 0.32209306955337524, 0.40573808550834656, 1.4793771505355835, 1.5953387022018433, 0.18032202124595642, -0.35239356756210327, -0.49229785799980164, 0.6261740326881409, -1.2234772443771362, 0.0359160453081131, -1.0082424879074097, -0.3248199224472046, 0.41184502840042114], [-0.454715371131897, 1.84957754611969, -2.247901678085327, -0.797571063041687, -0.05102625861763954, 0.12067216634750366, 0.15640392899513245, 0.8424597978591919, -0.5295817255973816, -1.4516551494598389, -0.5175600051879883, -0.0860099047422409, -0.26082539558410645, 0.4721167981624603, -0.9032976031303406, 0.794032633304596, 0.4780179262161255, 0.10118661820888519, 0.07676360011100769, 0.10478001832962036, -0.2507358491420746, -1.0877184867858887, 0.1408206969499588, -0.35980191826820374, 0.04183894768357277, 0.4869942367076874, -0.921898603439331, 0.005556457210332155, -0.9317516684532166, -0.30911922454833984, 1.168235421180725, -0.5110861659049988, 0.5565944314002991, -0.037854645401239395, -0.8114151358604431, -0.7404153943061829, -0.2065657675266266, -0.5617395043373108, -0.9422031044960022, 0.7945524454116821, 1.2643810510635376, -0.6229584813117981, -1.587362289428711, -0.8393074870109558, 0.2923138439655304, -0.04945174604654312, 1.1868345737457275, -1.1236590147018433, 0.13448397815227509, -0.7212048768997192, 0.3317371904850006, -0.8744322657585144, 0.6231943368911743, 0.6131487488746643, 1.9283418655395508, -2.1164584159851074, -0.2437267005443573, 0.29348692297935486, 0.21319440007209778, -0.39006516337394714, 1.6327924728393555, 0.12023870646953583, 0.25628462433815, 1.4461863040924072, 0.6939654350280762, -0.1700279265642166, 0.23347532749176025, 0.4385893940925598, 0.2873116135597229, -0.08537646383047104, 0.44582152366638184, 0.47867870330810547, -0.277376651763916, -0.6015875339508057, -0.9935054183006287, -0.20653925836086273, 0.42972150444984436, 0.33677613735198975, 0.31194114685058594, 0.3115057051181793, 0.17048439383506775, -0.02830350585281849, 0.8957464098930359, -0.902039647102356, 0.2999241054058075, -0.13763323426246643, -0.4487188756465912, -0.7736761569976807, -0.7304778695106506, 1.4923009872436523, -0.19373172521591187, 0.26253798604011536, 0.7251418828964233, 0.00813037995249033, -0.36881381273269653, -1.0609451532363892, 0.6121159791946411, -0.9003125429153442, -0.9102023243904114, -0.6115240454673767, -0.9552316665649414, -0.2675801217556, 0.06872965395450592, 0.12549416720867157, 0.26039478182792664, 1.4708884954452515, -0.5188220739364624, -0.2901601493358612, -0.06452462077140808, 0.5902017951011658, 0.7353286147117615, 0.03358350321650505, 0.15240494906902313, -0.46451425552368164, 0.6034930944442749, -0.2373713254928589, 1.6223210096359253, -0.04954550042748451, 0.33420097827911377, 0.6347230076789856, -0.5051229000091553, -0.2378578782081604, -0.8014321327209473, 0.34125378727912903, 0.841887354850769, 0.2137276828289032, -0.683922290802002, 0.4060199558734894, 0.114525206387043, 0.0032411422580480576, -0.0379449725151062, 0.445793479681015, -0.853900134563446, 0.6052839756011963, -0.1899486482143402, 0.6503881216049194, -0.5202398896217346, -1.6321113109588623, -0.11576472967863083, -0.3488192856311798, 0.4497734606266022, -0.3590218126773834, -1.707332730293274, -0.6475386619567871, 0.9247971773147583, -0.12653732299804688, 0.24543634057044983, -0.09394927322864532, -0.30194467306137085, 1.2677342891693115, -0.6271137595176697, 0.1550004780292511, -0.31796225905418396, 0.7443246245384216, 0.9180325865745544, 0.029845431447029114, 0.38391873240470886, 0.24573232233524323, 0.541191041469574, 0.3230915069580078, 0.6144338846206665, -0.20000164210796356, -1.6098958253860474, 0.49250927567481995, 1.2815734148025513, -0.6439101099967957, 0.6450130343437195, 0.8541700839996338, -0.4774855673313141, -0.0012627528049051762, -0.5625283122062683, -0.7175790667533875, -1.6690645217895508, 1.050818681716919, -0.3194427192211151, -0.011991994455456734, 0.16216082870960236, -0.5149458646774292, -0.8273159861564636, -0.9794106483459473, 0.8793280720710754, -0.42936286330223083, 0.7826076149940491, 0.003485271707177162, 0.5222452878952026, 0.14121028780937195, -0.3517347276210785, -1.2759969234466553, -1.0286259651184082, -1.482387900352478, -0.5873799920082092, -0.4007404148578644, -0.8947967886924744, 0.3997621238231659, -0.7819312810897827, -0.36182016134262085, 1.010967493057251, -0.16778455674648285, 0.4859807789325714, -0.09702520072460175, 0.3555664122104645, 0.09101299941539764, -0.16422294080257416, 0.09886201471090317, -0.2139635533094406, -0.014880897477269173, -0.8629385232925415, 0.30893459916114807, -0.8558133840560913, 0.23000752925872803, 1.241064190864563, -0.8325229287147522, -0.3465498685836792, 0.6209655404090881, 0.608413577079773, -1.1943094730377197, 0.2044041007757187, -0.43079784512519836, -0.08736498653888702, -0.18701522052288055, 0.6510207056999207, -0.2536097466945648, 0.7717604637145996, -0.18283119797706604, 0.5999473333358765, -0.4617933928966522, -1.1950312852859497, -0.7312371730804443, -0.4410814344882965, -1.0980165004730225, -0.12476874142885208, -0.9630900025367737, 1.0428640842437744, 0.2267436683177948, -0.3630633056163788, 0.6466252207756042, -0.8268641233444214, 0.5946294069290161, -0.043465565890073776, 0.6970869898796082, 0.7662519216537476, 0.16806919872760773, -0.658083975315094, -0.6782001256942749, -0.773517906665802, -0.6223041415214539, 0.10420000553131104, -0.7643330693244934, 0.24449941515922546, 0.7871341109275818, 0.7161350250244141, -0.6862283945083618, 0.4011772572994232, -0.8104250431060791, 0.16230207681655884, -1.1485167741775513, 0.039980847388505936, -0.09922116994857788, -0.7357199192047119, 0.7941150665283203, 1.073992371559143, -1.231457233428955, -0.987942636013031, -0.09887288510799408, 0.1106213927268982, -0.9456398487091064, -0.05543776974081993, -0.7137516736984253, 0.35188600420951843, 0.3643602728843689, 0.4442322552204132, 0.5030839443206787, -0.09882405400276184, 1.1049176454544067, 0.22339434921741486, 0.11966753005981445, 0.7719400525093079, 0.5566332340240479, 0.13863801956176758, 0.7896920442581177, -0.20300732553005219, -0.9914847612380981, -0.8149677515029907, -0.2443084418773651, 0.6921207904815674, -1.0174604654312134, -0.8575516939163208, 0.14747187495231628, 1.0231268405914307, -0.7492213845252991, 1.5152345895767212, 0.06581480801105499, 0.06664533913135529, 0.3327850103378296, -0.1355249285697937, 0.22035154700279236, 1.0206061601638794, -0.32900071144104004, -1.3137397766113281, 0.44711795449256897, 0.5723294019699097, 0.8349584937095642, 1.242222547531128, 1.1294326782226562, -0.7458463907241821, 0.3701106905937195, -0.18473760783672333, 0.06836618483066559, -0.8934662342071533, -0.24489924311637878, -0.04722142592072487, -0.7100907564163208, 0.2890554666519165, -0.12710948288440704, 0.07454913854598999, 1.0147089958190918, 0.1307186335325241, 0.036495961248874664, 0.05739643797278404, -1.085639476776123, -1.4898732900619507, -0.27525293827056885, -0.6711546778678894, -0.7964667677879333, 1.1772971153259277, 1.6018919944763184, -1.0190463066101074, 0.15211725234985352, -0.39651334285736084, 0.5242303013801575, 0.5474287867546082, 0.28886130452156067, 0.7935574054718018, -1.537192463874817, -0.4343937039375305, -0.34700527787208557, 1.1210086345672607, 0.2418629229068756, -0.14245419204235077, -0.9638981819152832, -0.5887380242347717, 0.24586091935634613, -0.37265220284461975, -0.18519246578216553, 0.243183434009552, -0.6343184113502502, -0.26514771580696106, -0.39208292961120605, 0.13965687155723572, 0.9176796078681946, -0.4898858368396759, -0.4294467568397522, 0.22935019433498383, -0.3215341567993164, -0.47523579001426697, 0.20380954444408417, -0.3144712746143341, 0.6208934187889099, 0.023908646777272224, 0.44651728868484497, 1.0655025243759155, 0.4051031470298767, 0.4814698398113251, -1.644515872001648, -0.024564893916249275, 0.8231192231178284, 1.3579407930374146, 0.2244964838027954, -0.2699364721775055, 0.3100299537181854, -0.900026261806488, -0.18746380507946014, -0.13734720647335052, 0.10334128886461258, 1.0065584182739258, -0.7852832078933716, -0.09741039574146271, -0.7683516144752502, -0.004787222482264042, -0.01440993882715702, -0.5938115119934082, 0.4263255000114441, 0.06605353951454163, -0.45401304960250854, 0.965515673160553, 0.7581083178520203, -0.07421057671308517, 0.1883753538131714, -0.18607212603092194, 0.426054447889328, -0.4074896275997162, -0.5293444395065308, -0.8338541984558105, 0.6196738481521606, 0.5092214345932007, 0.5879004001617432, -0.5991294980049133, -0.9240103960037231, 0.3733859956264496, 1.2055538892745972, -0.6202252507209778, -0.629516065120697, -1.011022686958313, 0.4006192088127136, 0.49263495206832886, -0.13003279268741608, 0.07215455174446106, 0.07443730533123016, -0.2531919777393341, -0.17666026949882507, 0.525911808013916, 0.9656857848167419, 0.007407866418361664, -0.12775211036205292, 0.3607199192047119, 0.15575627982616425, 0.7836273312568665, 0.7260341048240662, -0.4441225826740265, 0.027576901018619537, -1.5300965309143066, -0.2500643730163574, 0.03423920273780823, 0.22587265074253082, 1.1048270463943481, -0.6232418417930603, -0.31963294744491577, -0.030640989542007446, 0.5537100434303284, -0.6956673860549927, -0.5107191205024719, 0.5243174433708191, 0.030664460733532906, 0.017143724486231804, 0.8109831809997559, 0.23021574318408966, 0.8846274018287659, -0.0011850972659885883, 0.0750872790813446, 0.6691430807113647, -0.1588340699672699, -0.2914115786552429, 0.7064564228057861, 0.08501720428466797, 0.870482325553894, 2.2823715209960938, 0.928981602191925, -0.864386260509491, -0.4922766089439392, 0.567393958568573, 0.13267430663108826, 0.3691280782222748, 0.1483432501554489, 0.5393968820571899, 1.3852370977401733, -0.23012220859527588, -0.08215852081775665, 0.952967643737793, 0.4728408455848694, 0.6689043045043945, -0.0614832267165184, 0.11811885237693787, -0.9047808647155762, -0.05231565237045288, -0.4539942741394043, -0.17065565288066864, 0.5120458006858826, 0.31653162837028503, -0.1443348526954651, 0.1531195193529129, -0.8288646340370178, 0.44488629698753357, -0.24961605668067932, 0.33206048607826233, 0.7099503874778748, 0.5240033864974976, 0.0839766263961792, 0.4941713809967041, 0.4649523198604584, 1.355108380317688, -0.5213873982429504, -0.821098804473877, 0.49127572774887085, -1.1153740882873535, 0.7798819541931152, -0.736270010471344, -0.4013388454914093, -0.13645297288894653, -0.9134487509727478, -0.4847604036331177, -0.8330351710319519, -0.8680295944213867, -1.031482219696045, 0.580450177192688, -0.3879658579826355, -0.07917499542236328, -0.8931742906570435, 0.6042519807815552, 0.5229679942131042, 0.13872353732585907, 1.0797637701034546, 1.0239965915679932, 0.023133745416998863, 0.18037928640842438, -0.1864624321460724, 0.4126434624195099, -0.6525377035140991, -0.40948015451431274, -0.5290542840957642, 0.19193993508815765, 0.28156304359436035, 0.0571540892124176, -0.09227442741394043, 0.6268513202667236, 1.820305585861206, -0.6832968592643738, -0.41777026653289795, 0.43127837777137756, -0.35500675439834595, 0.9870832562446594, 0.27696508169174194, -0.8632051348686218, 0.6543735861778259, -0.13271647691726685, -2.4861152172088623, 1.3504621982574463, -0.5033413171768188, 0.7633769512176514, 0.6171688437461853, 0.8411566615104675, -0.47422581911087036, 1.251956820487976, -0.7136138677597046, -0.31909555196762085, -0.7250881195068359, 0.034628547728061676, -1.4554722309112549, 0.875950813293457, 1.2966121435165405, 0.16183505952358246, -1.1636240482330322, 0.12161125242710114, 0.1747230738401413, 0.10753263533115387, -0.4205116927623749, -0.7825812101364136, 0.09265811741352081, 0.5308898687362671, 0.8636120557785034, -0.25149837136268616, -0.21104146540164948, -0.7235323786735535, 0.8092656135559082, 0.7312209010124207, 0.6688914895057678, 0.20517165958881378, -0.4616818130016327, 0.785592257976532, -0.406927227973938, 0.022594809532165527, 0.5870429277420044, -0.2662856876850128, 1.410749912261963, 1.1467229127883911, -0.4613606035709381, 0.07292935997247696, -0.5342466831207275, -0.9539642333984375, -0.9592339396476746, 0.03024720586836338, 1.0620660781860352, -0.7327850461006165, -0.09314043074846268, -0.8274691700935364, -0.49390384554862976, 0.09455960988998413, 0.7255796194076538, -0.11671920865774155, -0.925109326839447, -0.7939714789390564, 0.18012000620365143, 0.3704400658607483, 0.7157095670700073, -0.3673996925354004, 0.5679640173912048, -0.39428651332855225, -1.5543920993804932, 0.540911853313446, 0.09591037780046463, -1.3693979978561401, -0.2776121199131012, -0.8088135123252869, 0.7593364715576172, -0.023335343226790428, -0.12168482691049576, 0.25035950541496277, 0.9625256061553955, -0.9482482075691223, -1.1053420305252075, -0.6141012907028198, -0.07293200492858887, 0.6130319833755493, 0.9939413666725159, 0.3477388620376587, 0.5190549492835999, 0.5151634216308594, -0.3111788332462311, -0.17906750738620758, -0.05333518981933594, -1.455871820449829, 0.6394672989845276, 0.32768210768699646, -0.25240930914878845, -0.03730880841612816, 1.6671593189239502, -0.09114272892475128, 1.4516661167144775, 0.21054451167583466, 1.180730938911438, -0.6167399287223816, -0.531214714050293, -0.5891202092170715, 0.5773318409919739, -0.8908623456954956, 0.12536479532718658, -0.2620929479598999, -0.9315335750579834, -0.23370790481567383, 0.47970548272132874, 0.9730029106140137, -0.7394886612892151, 0.8528560400009155, -0.3693726658821106, -0.45204177498817444, -1.265278935432434, 0.5770035982131958, 0.5421245694160461, -0.8224690556526184, 0.7822742462158203, 0.1783386468887329, 0.2498864382505417, -0.26661738753318787, -0.07212544977664948, 0.2072129100561142, 0.47455212473869324, -0.32919108867645264, 0.4606649875640869, -0.5007346272468567, 0.4067002236843109, -0.4669082462787628, 0.6039480566978455, 0.5106672048568726, -0.8085862398147583, 0.35110995173454285, 0.5383555293083191, -0.6296519041061401, -0.047875139862298965, -0.05376393720507622, -0.5599787831306458, -0.5696543455123901, 0.8562498092651367, 0.29212120175361633, 0.599585771560669, -0.3812794089317322, 0.3731157183647156, 0.15520213544368744, 0.33430397510528564, 1.214981198310852, -0.538931667804718, -0.6096590161323547, 1.167112112045288, 1.0690696239471436, -0.5562626719474792, 0.20434166491031647, 0.23391814529895782, 0.07388829439878464, 0.7328963875770569, 0.7423352599143982, 0.6266598701477051, -0.69685298204422, -0.1850862205028534, -0.23595939576625824, 0.2098788321018219, 0.6215954422950745, 0.6521586775779724, -1.527788758277893, 0.2078435719013214, 0.08394646644592285, -0.5388352274894714, 0.6394116878509521, -0.2478073388338089, -0.22595259547233582, 0.2106337994337082, -0.36337822675704956, -0.04993095621466637, -0.3754670321941376, -0.008104201406240463, -0.6171027421951294, -0.011034802533686161, 0.4887603521347046, 0.22118178009986877, 0.9274681210517883, 0.47481757402420044, 0.5594179034233093, -0.3452897369861603, -0.5995073914527893, -0.41405370831489563, 0.03011246956884861, -0.5358949899673462, -1.2483371496200562, 0.45563066005706787, -0.11514801532030106, -0.5094379186630249, 0.5539774298667908, -0.30788886547088623, 0.7017921209335327, -0.38274335861206055, 0.1982351690530777, 0.22883771359920502, 0.2143910825252533, -0.21530404686927795, -0.41172507405281067, -0.7873673439025879, -0.35048094391822815, 0.42514511942863464, 0.21820904314517975, 2.0124614238739014, -0.7284809350967407, 1.1548049449920654, 0.02039855346083641, 0.21368609368801117, -0.17585448920726776, -0.36494848132133484, 0.5062642097473145, 0.10810321569442749, 0.17073523998260498, -0.6402174830436707, 0.1488555371761322, 0.020436884835362434, -1.4802381992340088, -0.2338956743478775, -0.3033982813358307, 0.03198719024658203, -0.14823530614376068, 0.09872447699308395, -0.14193712174892426, -0.8012970685958862, -0.35291194915771484, 0.8580886125564575, 0.5841384530067444, 0.3428764045238495, -0.5509495139122009, -1.21940279006958, -0.5937505960464478, 0.5208020210266113, 0.23562949895858765, 0.6194131374359131, 0.7753158807754517, 0.8311880826950073, 0.15255121886730194, -0.27032461762428284, -0.06723303347826004, 0.06926664710044861, -0.4513673484325409, -0.6190465092658997, -0.6991376280784607, 0.6925542950630188, 0.2226061373949051], [-0.5970653295516968, 1.7474573850631714, -2.4479899406433105, -0.44638147950172424, 0.483467698097229, -0.38423240184783936, 0.8294991850852966, 0.00521784508600831, -0.2520427107810974, -0.9535742402076721, -0.04131929948925972, 0.07945875078439713, 0.9434725642204285, 0.7059954404830933, 0.23494581878185272, 1.0028584003448486, 0.17587579786777496, -0.3595127463340759, 0.22050826251506805, 0.5023100972175598, 0.6797831654548645, -1.691728949546814, -0.1663465052843094, -0.6917965412139893, 0.08547183126211166, 0.10537375509738922, -0.7247220873832703, 0.6474238634109497, -0.8481088280677795, -1.0239160060882568, 2.1241400241851807, -0.7974312901496887, -0.06858091056346893, -0.17463284730911255, -1.3359549045562744, -0.5219994783401489, 0.465859979391098, -0.405017614364624, -0.3647257089614868, 0.8244966864585876, 2.1490941047668457, 0.1950344294309616, -0.532620370388031, -1.275588870048523, 1.0229730606079102, 0.08437582850456238, 0.7099926471710205, -0.7133327126502991, 0.19040493667125702, -1.4132519960403442, 0.4173877239227295, -0.6892000436782837, 0.6157445311546326, 1.049343228340149, 0.6020168662071228, -0.42444658279418945, 0.33424612879753113, 0.8564415574073792, 0.03253272548317909, -0.03693528473377228, 1.1594158411026, 0.8688697814941406, 0.6291031837463379, 1.142911434173584, 0.670370876789093, -0.20726169645786285, 0.5217843651771545, 0.15348243713378906, 0.22265580296516418, -0.1867099553346634, 0.6840555667877197, 0.5936174392700195, -0.5204736590385437, -0.6864582300186157, -0.6083795428276062, -0.22199571132659912, -0.1460435837507248, 0.6143841743469238, -0.5376790165901184, 0.6117120981216431, -0.33821675181388855, 0.37603721022605896, 0.1114639937877655, -0.5745696425437927, 0.5383525490760803, -0.10300936549901962, 0.26678478717803955, -0.003215692937374115, -0.7604941725730896, 1.5995376110076904, 0.19373157620429993, -0.2080010622739792, 0.3700213134288788, -0.733533501625061, -0.9631403088569641, -1.2480000257492065, -0.20012596249580383, -0.8590465188026428, 0.19974955916404724, -1.0076305866241455, -0.7624150514602661, -0.9683017730712891, 0.4961756765842438, 0.1799902319908142, 0.6165226101875305, 2.094559669494629, 0.19271999597549438, 0.01390443928539753, -0.7563557624816895, 0.19575364887714386, 0.4129030108451843, 0.2861948013305664, 0.019247766584157944, -0.2763161361217499, 0.19543752074241638, 0.5412877202033997, 1.4803708791732788, 0.25361061096191406, 0.21873889863491058, 0.028818903490900993, -0.2760441303253174, -0.5590065717697144, -0.25224167108535767, 0.40637677907943726, 1.5024868249893188, -0.37265706062316895, -1.1287363767623901, -0.29503342509269714, 0.21786577999591827, -0.8736631870269775, 0.07355175912380219, -0.1662164032459259, -0.1573927402496338, 0.571690022945404, -0.35229018330574036, 1.049375295639038, -0.2833637595176697, -0.7697774171829224, 0.09056835621595383, -0.14206191897392273, -0.4317646026611328, -0.5668755173683167, -0.9937521815299988, 0.1551305651664734, 0.47397345304489136, -0.7804997563362122, 0.5451844930648804, 0.18398837745189667, -0.44254401326179504, 0.32502564787864685, -1.4059996604919434, 0.07211033999919891, -0.06786087900400162, 1.8524751663208008, 0.6690323352813721, -0.573125422000885, 0.4667567312717438, 0.6439613699913025, -0.006726516410708427, 0.39216262102127075, 0.8535569310188293, 0.08963428437709808, -0.9243041276931763, 1.1660876274108887, 0.720167875289917, -0.8693214654922485, 1.0347429513931274, 0.5493555068969727, -0.5812019109725952, 0.7158044576644897, -0.432563453912735, -0.012107044458389282, -1.180554986000061, 0.6851704716682434, -0.22710980474948883, -0.15503761172294617, 0.9923380613327026, -0.38630279898643494, -1.0991755723953247, -1.4953515529632568, 0.5644893646240234, -0.09035446494817734, -0.07088369131088257, 0.4960705637931824, 0.5345801711082458, 0.10532457381486893, -0.23620747029781342, -1.0145233869552612, -0.0966484546661377, -1.0900980234146118, -0.9968065023422241, -0.4157116115093231, -1.2990261316299438, 0.39901337027549744, -0.80083167552948, -0.3162814974784851, 0.8079231977462769, -0.8176245093345642, 0.23451490700244904, -0.014296984300017357, -0.11627324670553207, -0.04949810728430748, -1.2719594240188599, 0.264020174741745, -0.6165807247161865, -0.13625900447368622, -0.43954965472221375, 0.5249437689781189, -0.5289016962051392, 0.6176823377609253, 0.8809296488761902, -0.4942624866962433, -0.4199598729610443, -0.11260566860437393, 0.452318012714386, -1.691904067993164, 0.4444589614868164, -0.4076201319694519, -0.19900023937225342, -0.24384935200214386, 0.40879741311073303, 0.46484771370887756, 0.894252598285675, -0.051118865609169006, 0.975498616695404, -0.20544280111789703, -0.40721461176872253, -0.7066313624382019, -0.4227225184440613, -0.40353599190711975, -0.527532696723938, -0.37403762340545654, 0.23483140766620636, 0.5976912975311279, -0.9286876916885376, 0.9049591422080994, -0.5022802948951721, 0.5406078696250916, 0.45263126492500305, 1.4916176795959473, 0.7677175998687744, 0.00693883839994669, -0.8797013163566589, -0.09004170447587967, -0.5435209274291992, 0.10594422370195389, 0.581908643245697, -0.4292087256908417, 0.1738085299730301, 2.0735397338867188, 0.9741158485412598, -0.714423656463623, 0.3838847875595093, -0.7367401719093323, -0.05886590853333473, -0.8634455800056458, 0.2816426753997803, -0.5204898118972778, -1.2540487051010132, 0.8359358310699463, 0.07829716801643372, -1.2083046436309814, 0.14714424312114716, -0.19143980741500854, 0.7532886266708374, -0.47878706455230713, 0.3241473436355591, 0.06450334936380386, 0.43599462509155273, -0.04330972954630852, 0.021320553496479988, -0.2123222053050995, -0.6743061542510986, 1.0030744075775146, -0.2284458428621292, -0.18463295698165894, 0.5562242865562439, 1.0115032196044922, 0.026478886604309082, 0.9128549098968506, -0.8322056531906128, -1.6304521560668945, -1.042824387550354, -0.22259318828582764, 0.7866576313972473, 0.005388149991631508, -0.00500085623934865, -0.2676294147968292, 1.3858821392059326, 0.15242671966552734, 1.054473876953125, 0.1420467495918274, -0.04164595529437065, -0.08240344375371933, -0.43648988008499146, 0.3132458031177521, 0.25130361318588257, -0.8798776268959045, -1.195346713066101, -0.6580772399902344, 0.4079824388027191, 0.7147696614265442, 1.1298099756240845, 0.9597505927085876, -0.06413228809833527, 0.3872319459915161, -0.42542901635169983, 0.027497051283717155, -0.20880676805973053, -0.5188153982162476, -0.471584290266037, -0.46331077814102173, -0.1437811553478241, -0.05319664999842644, -0.24472470581531525, 1.2305899858474731, -0.060400817543268204, 0.9527867436408997, 0.6749298572540283, -0.8569974899291992, -1.5566157102584839, -1.3153173923492432, -0.21663321554660797, -1.1134847402572632, 0.8943176865577698, 1.0177687406539917, -0.8589479327201843, -0.1204681396484375, 0.45293161273002625, 0.40045085549354553, 0.764041006565094, 0.17087632417678833, 0.510827898979187, -1.8598644733428955, -0.08165353536605835, -0.1690840870141983, 0.7841545343399048, 0.2579120099544525, 0.846721887588501, -0.348953515291214, 0.2526232600212097, 0.37662023305892944, -0.44554606080055237, -0.1593727171421051, 0.19418862462043762, -0.5876151919364929, -0.036705438047647476, 0.18173804879188538, 0.29243385791778564, 1.3028216361999512, -0.5081843733787537, -0.4179871678352356, 0.043523963540792465, -0.0003104811767116189, -0.9308505058288574, 0.23368267714977264, -0.04539843648672104, 1.1382477283477783, 0.2646206319332123, 0.25499919056892395, 1.01966392993927, 0.16415581107139587, 0.6200423240661621, -2.0066440105438232, 0.7194365859031677, 0.8781834840774536, 1.4730440378189087, 0.0781431719660759, -0.0332111231982708, 0.21957927942276, -0.5486578941345215, -0.48933228850364685, -0.1311977654695511, 1.1397080421447754, 0.7233108878135681, -0.27631425857543945, -0.21556587517261505, -0.5606635808944702, -0.20719674229621887, -0.33066487312316895, 0.010929868556559086, 0.3751709461212158, 0.010957970283925533, -0.009213373064994812, 1.2556992769241333, -0.14834047853946686, -0.3874341547489166, -0.410652220249176, -0.07455887645483017, 0.5892713069915771, -0.08193067461252213, -0.13049905002117157, -0.16503030061721802, 0.4437577724456787, 0.018560141324996948, 0.02782805636525154, -1.0504562854766846, -0.6045898795127869, -0.14008986949920654, 0.8919697999954224, -1.1723711490631104, -0.39500921964645386, -0.9290289878845215, 0.9230438470840454, 0.9671291708946228, -0.23423577845096588, 0.655962347984314, 0.05146532133221626, -0.4200746417045593, -0.44918200373649597, 0.5891321301460266, 1.2404145002365112, 0.1365874707698822, -0.21244867146015167, 0.2912691533565521, 0.5312801599502563, 0.5318360924720764, -0.4476475715637207, -1.1438074111938477, 0.4006502032279968, -0.8186900615692139, 0.000961855985224247, 0.07620350271463394, 0.03017628751695156, 1.5641003847122192, -0.15022684633731842, 0.447477251291275, 0.2127256840467453, 0.0580017976462841, -1.7491734027862549, -0.13638140261173248, -0.005812891758978367, 0.3303366005420685, -0.13174346089363098, -0.37476906180381775, 0.45583683252334595, 0.28104865550994873, 0.33501893281936646, 0.6873098015785217, 0.10097619891166687, 0.42209765315055847, -0.31800633668899536, 0.3365594446659088, 0.2949174642562866, 0.795713484287262, 1.7623378038406372, 0.9406761527061462, -0.28682810068130493, -0.4658835828304291, 1.4643296003341675, 0.3296051323413849, 0.5271036028862, 0.5505644083023071, 0.5531008243560791, 1.3973021507263184, -1.4568305015563965, 0.13491912186145782, 0.14998939633369446, 0.039440449327230453, 0.4441315233707428, -0.23214435577392578, 0.5331864953041077, -0.9130785465240479, 0.21033619344234467, 0.2853073477745056, -0.5584459900856018, 1.1989972591400146, 0.19402417540550232, 0.0999065488576889, 1.0979148149490356, -0.7197620272636414, -0.1799170970916748, -0.746835470199585, 0.16253003478050232, -0.3038974404335022, -0.2817687392234802, 0.9429766535758972, 1.1836042404174805, 0.7827228903770447, 1.084073543548584, -0.8687093257904053, -1.2889472246170044, 0.2438749521970749, -0.9821949005126953, 0.0957612469792366, -0.15438497066497803, -0.3511568307876587, -0.1539868265390396, -0.9790938496589661, -0.540986180305481, -0.14072805643081665, -0.7657634019851685, -0.12715387344360352, -0.05556442588567734, -0.9240716099739075, 0.41573503613471985, -0.20392857491970062, 0.942432165145874, 0.6544507741928101, 0.31797292828559875, 0.9113170504570007, 0.2552196979522705, -0.2878677546977997, -0.20811069011688232, 0.05764086917042732, -0.09205678850412369, -0.35987964272499084, -0.6104021072387695, -0.19422926008701324, 0.4756755530834198, 0.6426276564598083, -0.32662084698677063, 0.19578438997268677, 1.3529201745986938, 1.1317594051361084, -0.7175601124763489, -0.38778603076934814, 0.526690661907196, -0.8702556490898132, 0.649298906326294, 0.2616662085056305, -1.3964165449142456, 0.4446077346801758, -0.4089614152908325, -2.543748140335083, 1.621527910232544, 0.06764795631170273, 0.04376017674803734, 0.4331449866294861, 0.6519913673400879, -0.39104172587394714, 1.3661069869995117, -0.09150534868240356, -0.688482403755188, 0.18855106830596924, -0.29023393988609314, -1.175301432609558, 1.0894593000411987, 1.2995872497558594, 0.4906880259513855, -0.6253206729888916, 0.5810086131095886, 0.05025337263941765, -0.03983540087938309, -0.41682669520378113, -0.45456552505493164, 0.5089322924613953, 0.8498722314834595, 0.013595560565590858, -0.3796112835407257, 0.5660019516944885, -0.6188045144081116, 0.6300381422042847, 0.293222576379776, 1.104466438293457, 0.25968363881111145, -0.28937023878097534, 0.5408431887626648, -0.459188312292099, -0.5106740593910217, 0.03523522615432739, -0.604981541633606, 0.8635220527648926, 0.07153518497943878, 0.257066935300827, 0.43153202533721924, -0.10835019499063492, -0.40896111726760864, -0.8535892367362976, 0.9100493788719177, 0.18582738935947418, -0.9009436368942261, -0.5535684823989868, -0.2444390058517456, 0.029396671801805496, -0.29208430647850037, 0.7890001535415649, -0.4954439103603363, -1.3988683223724365, -0.6192572712898254, -0.5003939270973206, -0.5186861753463745, 0.5760250687599182, -0.024346139281988144, 0.4348587691783905, 0.11717614531517029, -1.7205185890197754, 0.7212243676185608, 0.16236364841461182, -2.163877487182617, -0.13342605531215668, -1.0277525186538696, 1.3600233793258667, 0.08463361859321594, -0.16819128394126892, 0.5526597499847412, 1.0021005868911743, -0.8687719106674194, -0.3724796772003174, -1.1356120109558105, -0.8194372057914734, 0.7258774638175964, 0.8298228979110718, -0.8201414942741394, 0.734485924243927, -0.037444762885570526, -0.8287957310676575, -0.5267621874809265, -0.14812709391117096, -2.0008745193481445, 0.08909741044044495, 0.1885463148355484, 0.15009605884552002, -0.05002054572105408, 1.486855149269104, 0.2666076123714447, 0.7958372831344604, -0.2281917929649353, 1.287315011024475, -0.8806176781654358, -1.3366285562515259, -0.2718546688556671, 0.16819888353347778, -0.9050835967063904, -0.44573068618774414, -0.21823038160800934, -0.9173552989959717, -0.522697389125824, 0.28868886828422546, 1.3195058107376099, -0.46437132358551025, 0.413141131401062, -0.21862910687923431, -0.10552486032247543, -1.133243441581726, 0.48535001277923584, 0.771174967288971, -1.666292428970337, 0.3524748980998993, -0.26497769355773926, 0.41512420773506165, -1.1958147287368774, 0.21379505097866058, 1.1586068868637085, 0.25655728578567505, -0.5702918767929077, 0.3804109990596771, -0.7405177354812622, 0.13254794478416443, -0.35368937253952026, 0.8142099976539612, 0.7185536623001099, -0.362151175737381, 0.34568682312965393, 0.6911361813545227, -0.21011342108249664, 0.017018001526594162, -0.3522677421569824, -0.6712876558303833, -0.3894491195678711, 0.14676526188850403, 0.29935887455940247, 0.8668025135993958, -0.01765439845621586, 0.3907370865345001, -0.4208134114742279, -0.0595039427280426, 1.2119179964065552, -0.31295859813690186, -0.9964825510978699, 1.2238000631332397, 1.0153114795684814, 0.038106996566057205, 0.34690624475479126, -0.023941662162542343, 0.6463817358016968, 0.23689688742160797, -0.03947319835424423, 0.00985038559883833, -0.7597305774688721, 0.4088345170021057, -0.060997579246759415, 0.11963683366775513, 0.3455246686935425, -0.7019279599189758, -1.5654046535491943, 0.013085377402603626, 0.0677320584654808, -0.3106933534145355, 0.42392218112945557, -0.9264960885047913, -0.8708229064941406, 0.10451935231685638, -0.03386516869068146, 0.38326409459114075, -0.30086877942085266, -0.2145586609840393, -1.0726479291915894, -0.38224127888679504, 0.4126494824886322, -0.41905921697616577, 1.4757119417190552, -0.24709245562553406, 0.20582662522792816, -0.1190245971083641, 0.21690072119235992, -0.6021305322647095, -0.41343966126441956, -0.1702812761068344, -0.9313367009162903, -0.23046544194221497, -0.666016697883606, -0.3514419198036194, 0.4432845711708069, -0.6144866943359375, 0.5219338536262512, 0.42282095551490784, -0.417447954416275, 0.17370449006557465, 0.5944753885269165, 0.2883077561855316, -0.47515445947647095, -0.7961448431015015, -0.5066919326782227, 0.36289283633232117, 0.32011231780052185, 1.184231162071228, -0.7991707921028137, 0.8578487038612366, 0.3157968521118164, -0.036619432270526886, -0.7698807120323181, -0.717308521270752, 1.6413718461990356, -0.7265959978103638, 0.8064799904823303, -0.9892094731330872, -0.11198867857456207, -0.3738861083984375, -1.2819911241531372, -0.3647754490375519, -0.2787969708442688, -0.31864747405052185, -0.004182322416454554, -0.38069939613342285, -0.11607318371534348, -1.0143380165100098, 0.19539174437522888, -0.03886636346578598, -0.022942010313272476, 0.8011327385902405, -0.06714046746492386, -0.9416502714157104, -0.48909232020378113, 0.06968844681978226, 0.18639391660690308, 0.7412006258964539, 1.4492632150650024, 1.4129191637039185, 0.09728570282459259, -0.32556235790252686, -0.4004557132720947, 0.6950355768203735, -0.7312738299369812, -0.23915517330169678, -1.2835502624511719, -0.2960623502731323, 0.5116958022117615], [1.0959097146987915, 2.141512870788574, -2.369123697280884, -0.24214313924312592, 0.09650363773107529, -0.33652403950691223, 0.6166852116584778, 0.6009204387664795, -0.15809154510498047, -0.3184838593006134, -0.9295205473899841, -0.2791118323802948, 0.187245175242424, 0.13278760015964508, 0.3234948217868805, 1.171920657157898, 0.6951027512550354, 0.4743579030036926, 0.4563932418823242, 1.1636601686477661, -0.3541277050971985, -1.1893352270126343, -0.5215287804603577, 0.5664096474647522, 0.09668101370334625, -0.2486603856086731, -1.4501076936721802, -0.5262928605079651, -0.8688660264015198, -0.882200300693512, 1.5345633029937744, 0.2850666046142578, 0.23697051405906677, 0.06546909362077713, -2.3006956577301025, 0.577837347984314, 1.001565933227539, 0.08768849074840546, -0.023176399990916252, -0.0799839124083519, 2.417327880859375, 0.30847957730293274, -0.7075988054275513, -1.2364780902862549, 0.44233423471450806, 0.26582029461860657, 0.948139488697052, -1.190954327583313, 0.2180953025817871, -0.600351095199585, 0.4177874028682709, -0.07670922577381134, 0.5678309202194214, 1.16354238986969, 0.8422271609306335, -0.9974088668823242, 0.22953712940216064, 0.27172327041625977, 0.034832101315259933, 0.5462608337402344, 1.188075065612793, 0.22304962575435638, 0.5803138017654419, 0.7631714344024658, 0.6200322508811951, -0.9643233418464661, 0.6062601208686829, 0.5083056688308716, 0.28041791915893555, 0.8838817477226257, 0.5148893594741821, 0.4620016813278198, -0.4558617174625397, -0.04815283045172691, -0.3826785683631897, 0.5337554812431335, 0.011872009374201298, 0.8732556700706482, -0.20871730148792267, 0.43827009201049805, -0.3046121597290039, 0.14484994113445282, 0.2333022505044937, 0.322553426027298, -0.3430606424808502, 0.038119375705718994, 0.2944825291633606, -0.5216878056526184, -0.3662968873977661, 1.6254559755325317, -0.06266789883375168, 0.9200268387794495, 0.6040864586830139, 0.004946576897054911, -0.09609472006559372, -0.922674834728241, -0.24705316126346588, -1.5815016031265259, -0.7645139694213867, -0.5097169876098633, -0.015415809117257595, -0.9355775117874146, 1.1966907978057861, 0.8939799666404724, 0.6136500835418701, 1.685060739517212, 0.5095372200012207, -1.2139724493026733, -0.11303495615720749, -0.15661250054836273, -0.5937102437019348, -0.28903305530548096, -0.7131924033164978, -1.393206238746643, -0.12371787428855896, 1.2611349821090698, 1.502474069595337, 0.9757561087608337, 0.13880929350852966, 0.466363787651062, -0.3596731126308441, -0.3648894429206848, -0.3762451112270355, -0.04674305394291878, 1.0824252367019653, 0.3938397765159607, -0.486421674489975, -0.20318637788295746, 0.34442138671875, -0.019831374287605286, 0.2989136874675751, 0.027241505682468414, 0.2399657517671585, 0.35668864846229553, -0.40822461247444153, 0.5368642210960388, -0.4917321801185608, -0.6528836488723755, -0.01655949465930462, 0.5234785676002502, 0.37809208035469055, -0.35106581449508667, -0.2284407764673233, -0.027996089309453964, 0.1543906182050705, -0.6334053874015808, 0.9813541769981384, -0.632705569267273, -0.9237186312675476, 0.5632216334342957, -1.5269347429275513, -0.08739759027957916, -0.4251856505870819, 1.4675525426864624, 0.7464307546615601, -0.3863988518714905, 0.6157293915748596, 0.13330969214439392, -0.3843384385108948, 1.0650235414505005, 0.40729475021362305, 0.1616082787513733, -0.5274813175201416, 0.77814120054245, 0.6577606797218323, -0.3725833296775818, 1.0636969804763794, -0.04586854577064514, -0.5579312443733215, 1.3573765754699707, 0.5898598432540894, -0.8964551091194153, -0.4248158037662506, 0.03172997385263443, 0.7985005378723145, -0.5182181596755981, 1.0669667720794678, -0.035450346767902374, -0.8785766959190369, -0.4232158362865448, 0.5281659364700317, -0.04175259917974472, 0.7690142393112183, 0.21917669475078583, 0.5018536448478699, -0.1420344114303589, 0.027857845649123192, -0.2398156374692917, -0.7971460819244385, -1.0860213041305542, -0.8770885467529297, -0.19777080416679382, -1.0809839963912964, 0.11928841471672058, -0.2952550947666168, -0.6883531808853149, 0.778322160243988, -0.060548290610313416, -0.8817458152770996, 0.18099191784858704, 0.08657940477132797, -0.09739206731319427, -1.1545308828353882, -0.16804440319538116, -0.6016520857810974, 0.1990305483341217, -0.5256116986274719, 0.4015333652496338, -0.9355437755584717, 0.7813302874565125, 0.30799877643585205, -1.288280725479126, -1.361045241355896, 0.41092735528945923, 0.06217292323708534, -1.4291348457336426, 0.46491914987564087, -0.40094053745269775, -0.16983261704444885, -0.3009835481643677, -0.45367342233657837, 0.13330692052841187, 0.9212274551391602, 0.06042899563908577, 0.8938357830047607, -0.7496350407600403, -0.34420305490493774, -1.0822614431381226, -0.7315510511398315, 0.0716480240225792, -0.5562499165534973, -0.9965410828590393, 0.31378668546676636, 0.3752976655960083, -1.3375164270401, 0.3964691162109375, -0.3489115834236145, -0.008323995396494865, -0.20241674780845642, 1.0177160501480103, 0.47191935777664185, 0.3829061985015869, -1.027530312538147, 0.12553630769252777, -0.7490187883377075, 0.4899435043334961, 0.8208906650543213, -0.44639527797698975, -0.336215078830719, 1.587717056274414, 1.4505366086959839, -0.538979709148407, 1.1737587451934814, -0.3326661288738251, -0.5486778616905212, -0.7671281099319458, -0.17670251429080963, 0.4283500909805298, -0.7998073101043701, 1.4041564464569092, 0.33096081018447876, -1.0542292594909668, 0.3169475495815277, -0.051406778395175934, 0.4928048849105835, -0.7783707976341248, 0.302910715341568, -1.246351718902588, 0.4781511425971985, -0.19107401371002197, -0.20315799117088318, 0.007973401807248592, -0.17390380799770355, 0.5219250321388245, -0.010534019209444523, -1.1281824111938477, -0.20056666433811188, 1.0417070388793945, -0.36787065863609314, 0.9283226728439331, -0.19279904663562775, -1.3357946872711182, -1.234606385231018, 0.08102510869503021, 0.49761834740638733, -0.1984870731830597, -0.33017221093177795, 0.9553442597389221, 0.3708517849445343, 0.11931607127189636, 0.23794911801815033, 0.030786758288741112, 0.3755294978618622, -0.21610412001609802, 0.5998159646987915, -0.0443514846265316, 0.3313028812408447, -0.7850165963172913, -0.48647382855415344, 0.1004360169172287, 0.5742433667182922, 1.3876721858978271, 0.6649681925773621, 1.165963053703308, -0.7493804097175598, -0.023973528295755386, -0.6853700280189514, -0.06334131956100464, -0.7200362086296082, -0.3822607100009918, -0.46420520544052124, -1.3181084394454956, -0.2562021315097809, -0.5977478623390198, -0.3018563389778137, 0.3337568938732147, 0.30482208728790283, 0.6917295455932617, 0.7288775444030762, -0.4309917390346527, -1.275529146194458, -1.2731350660324097, -0.41916966438293457, -1.0854707956314087, 0.48191696405410767, 1.4015579223632812, -2.1263492107391357, -0.05080171674489975, -0.3894611895084381, -0.25153154134750366, -0.07492858916521072, -0.12731081247329712, 0.6270543336868286, -0.8069531321525574, -0.0720810666680336, -0.2169748842716217, 1.2657761573791504, 0.13680095970630646, -0.1033843383193016, -0.6434482932090759, 0.7241002321243286, 0.24384184181690216, -0.15528810024261475, -0.8493810892105103, -0.33904653787612915, -0.36599576473236084, -0.21961383521556854, 0.49033740162849426, 0.2204567790031433, 0.42030659317970276, -0.3052207827568054, -1.4578791856765747, -0.0843917652964592, -0.812316358089447, -0.41464847326278687, 1.0045702457427979, -0.023998426273465157, 0.9874555468559265, -0.296581894159317, 0.32484203577041626, 0.6325318813323975, -0.035724300891160965, 0.0736275315284729, -0.4960639774799347, 0.7746027112007141, 1.1559240818023682, 1.5248011350631714, 0.2678888440132141, 0.03838605433702469, 0.034529123455286026, -0.997520387172699, 0.35332679748535156, -0.3750426173210144, 0.26646220684051514, -0.038131233304739, -0.5291118621826172, -0.15396113693714142, -0.634605884552002, 0.38881394267082214, -0.001300943549722433, 0.5091950297355652, 0.5777713656425476, 0.03599085658788681, 0.24344463646411896, 0.7898921966552734, 0.6144307255744934, -0.4806152284145355, -0.465904176235199, 0.08196251094341278, 0.7002516388893127, -0.5624464154243469, 0.5723031163215637, -0.2560611963272095, -1.1749449968338013, 0.17658177018165588, -0.7259589433670044, -1.0635459423065186, -0.18800540268421173, 0.6050633192062378, 1.3611679077148438, -1.0499897003173828, -0.4339604675769806, -0.5764757990837097, 0.8793994188308716, 0.9835861325263977, 0.3630511462688446, 1.07760751247406, 0.5266740322113037, -0.4484647512435913, 0.3551337420940399, 0.08463471382856369, 1.2576394081115723, -0.287261426448822, -0.11897537857294083, -0.27117490768432617, 0.0057562654837965965, 0.5757478475570679, -0.9729551076889038, 0.3939622938632965, -0.0296114981174469, 0.11529693007469177, -0.4785933494567871, 0.3951073884963989, -0.3045588731765747, 1.933061122894287, 0.1345946043729782, -0.4786635637283325, -0.6261057257652283, 0.01400630921125412, -0.46748700737953186, 0.4084782898426056, 1.057714819908142, -0.6501104235649109, -0.344567209482193, -0.0012882091104984283, 0.5152732729911804, 0.3684846758842468, -0.02336743474006653, 0.173968106508255, 0.11430229246616364, 0.515317440032959, 0.12158522754907608, 0.7041884064674377, 0.2004755735397339, 1.2338358163833618, 0.8729931712150574, 1.4206782579421997, -0.2594788670539856, -0.016502730548381805, 0.9241505861282349, 0.28285881876945496, 0.5856086015701294, 0.9288887977600098, 0.29553505778312683, 0.9343931078910828, -0.5960025787353516, -0.46453744173049927, 0.7809939980506897, -0.0021227169781923294, 0.4283948242664337, -0.06801965832710266, 0.48781660199165344, -1.1616765260696411, -0.06769400835037231, 0.11392348259687424, -0.5533739924430847, 0.2742359936237335, -0.07491622120141983, 0.7085224390029907, 0.9743372201919556, -0.7006791830062866, 0.1483089029788971, -0.8366864323616028, -0.26061245799064636, -0.7778955101966858, -0.3849543333053589, 0.5962398052215576, 0.15027517080307007, 0.914013147354126, 0.8416606187820435, -0.3081327974796295, -1.018826961517334, -0.10604092478752136, -1.3342982530593872, 0.3853462338447571, -0.21230106055736542, -0.046130307018756866, -0.9327922463417053, -0.1262357234954834, -0.28571751713752747, -0.3214598000049591, -0.8183396458625793, -0.2856390178203583, -1.0862925052642822, -1.0826406478881836, 0.7963393330574036, 0.06937576085329056, 0.39664897322654724, 0.90983647108078, 0.5903892517089844, 0.005425659473985434, 0.522197425365448, -1.087593674659729, -0.3240281939506531, 0.7311522364616394, 0.5021852254867554, -0.5157580971717834, 0.17800486087799072, -0.8610702157020569, 0.20951209962368011, 0.0703561082482338, -0.038662441074848175, 0.7135806679725647, 0.6236461400985718, 1.308292269706726, -1.0187900066375732, -0.31971079111099243, 0.8485345840454102, -0.9921121001243591, 0.9696630239486694, 0.6630457639694214, -0.6748164296150208, -0.07153283804655075, -0.6278417110443115, -1.4778956174850464, 1.7200188636779785, 0.2970646023750305, 0.18915435671806335, 0.5411453247070312, 0.8718830943107605, -0.031455688178539276, 0.9221346974372864, -0.3629954159259796, 0.0011115269735455513, 0.10334132611751556, 0.07584535330533981, -0.38106635212898254, -0.025947852060198784, 0.9946402907371521, 0.05795183777809143, -0.4812379777431488, -0.02552301064133644, -0.31663262844085693, -0.214509055018425, -0.7205619215965271, -0.008002279326319695, 0.3690188229084015, 0.31662625074386597, 0.38446274399757385, -0.1877351999282837, 0.525869607925415, -1.0776151418685913, 0.10017040371894836, 0.6954393982887268, 0.6516902446746826, 0.39661070704460144, -0.3093441426753998, 1.0966532230377197, -0.7537133097648621, 0.23962128162384033, -0.25808265805244446, -0.41427165269851685, 1.106622576713562, -0.047062791883945465, -0.015216761268675327, 0.5266460180282593, 0.18083487451076508, -0.9270676970481873, -0.9918745160102844, -0.0811956524848938, 1.341077446937561, -0.9543097019195557, -0.8765451908111572, -0.3610944449901581, 0.007543180603533983, 0.07313786447048187, 0.2264205813407898, 0.11334218829870224, -1.1049933433532715, -1.3526687622070312, -0.13759441673755646, -0.4897456765174866, 1.127493143081665, -0.3468776047229767, 0.5653765797615051, 0.006676798686385155, -1.5590399503707886, 0.6874943971633911, -0.010503647848963737, -1.5934289693832397, 0.38239964842796326, -0.5839687585830688, 0.4174756705760956, -0.008586314506828785, 0.08346443623304367, 0.059022314846515656, 1.2912845611572266, -0.7174807190895081, -0.8378679752349854, -1.4817906618118286, -0.7717861533164978, 0.1276378035545349, 1.5311012268066406, -1.1121400594711304, 1.8411097526550293, -0.627157986164093, -0.19047966599464417, -0.30942007899284363, -0.01837347075343132, -0.33636045455932617, -0.012777951546013355, -0.2790079712867737, -0.1548253297805786, 0.4615718722343445, 0.8452108502388, 1.041358232498169, 1.4126273393630981, 0.23478421568870544, 1.2466011047363281, -1.026746392250061, -0.6233765482902527, -0.12360823154449463, -0.0645604282617569, -0.6877543330192566, -0.6937485337257385, -0.0077803065069019794, -0.8439880609512329, -0.8045617341995239, -0.3506562113761902, 1.2258403301239014, -1.1854655742645264, 0.7460061311721802, 0.3802102506160736, -0.5363979339599609, -0.7824856042861938, 0.05097631737589836, 0.09662795811891556, -0.4421705901622772, 0.27650582790374756, 0.041021693497896194, 0.15581350028514862, -0.8718594908714294, -0.4725518226623535, 0.6704597473144531, 0.07565389573574066, -0.42094239592552185, 0.22743678092956543, -0.015808148309588432, 0.38975390791893005, -0.5266897082328796, 1.1319222450256348, 0.787608802318573, -0.17202728986740112, 0.07227545231580734, -0.17178286612033844, -0.9497984051704407, 0.27452611923217773, -0.15097029507160187, -0.22647066414356232, -0.44100135564804077, 0.6979242563247681, 0.45512521266937256, -0.17890691757202148, 0.09677529335021973, 0.21025831997394562, 0.4766652584075928, 0.08649270981550217, 1.1384388208389282, -0.6934916973114014, 0.1320054978132248, 1.432702660560608, 1.1040648221969604, -0.5566328763961792, 0.6965308785438538, -0.3515738546848297, 0.22381484508514404, 0.5672568678855896, 0.19927246868610382, 0.1491767317056656, -0.7676494121551514, 0.3609967827796936, 0.37529873847961426, -0.3210360109806061, -0.4100104570388794, -0.7726694345474243, -1.6855648756027222, -0.10715460032224655, -0.31701263785362244, 0.09351260215044022, 0.5140453577041626, -0.971969723701477, -0.599814772605896, 0.04142744839191437, 0.08404990285634995, 0.0005183180328458548, -0.12422909587621689, 0.41194459795951843, -0.4585319757461548, -0.3149164319038391, 0.7980296015739441, -0.18323016166687012, 0.9424900412559509, -0.36277616024017334, -0.5073296427726746, -0.3284895718097687, -0.5507960915565491, 0.3124040365219116, -0.09880039095878601, -0.6510022878646851, -0.888712465763092, 0.47484835982322693, -0.6835448741912842, -0.13193799555301666, 0.13056062161922455, 0.4201776385307312, 0.35140830278396606, -0.22354763746261597, -0.0361587256193161, 0.46582522988319397, 0.5325469374656677, 0.41433650255203247, -0.39338040351867676, -0.8906688690185547, -1.182633399963379, 0.1349092721939087, -0.2927819490432739, 0.340090811252594, -0.505466878414154, 0.825959324836731, 0.21186526119709015, -0.664797306060791, -0.4588845670223236, -0.6332001686096191, 0.849263072013855, 0.3240344822406769, -0.11834016442298889, -1.2261731624603271, -0.18527962267398834, -0.10540338605642319, -1.22677481174469, -0.18460862338542938, -0.4208734333515167, -0.2110302895307541, -0.19915887713432312, -0.8992457985877991, -0.9290197491645813, -0.9636677503585815, 0.09630965441465378, 0.4874054789543152, 0.18487779796123505, 0.7375420331954956, -0.4336772561073303, -1.1915278434753418, 0.08320940285921097, 1.5045838356018066, 0.2560155987739563, 0.37660717964172363, 1.2882112264633179, 1.1503952741622925, 0.2559204399585724, -0.4711957275867462, -0.22602826356887817, 0.10690710693597794, -1.1320565938949585, 0.6469547152519226, -0.8133674263954163, -0.44523897767066956, -0.4064346253871918], [-0.3723863661289215, 2.2544918060302734, -2.53059458732605, -0.923529863357544, 0.10140477120876312, 0.002910822629928589, 1.4296375513076782, 0.4884054958820343, 0.03463757410645485, -1.4978984594345093, -0.056955769658088684, -0.1998804360628128, 0.5740365386009216, 0.6957622766494751, 0.15328101813793182, 0.3251182734966278, 0.3071214556694031, -0.6766011714935303, 0.5850779414176941, 0.9235190749168396, 0.19669322669506073, -1.402207851409912, -0.18484815955162048, -0.2179737538099289, 0.22423337399959564, -0.21546384692192078, -1.3879462480545044, 0.28273552656173706, -0.6945500373840332, -0.8439441323280334, 1.769718885421753, -0.5371209979057312, -0.02877913974225521, 0.13438327610492706, -0.9579429030418396, -0.3088705837726593, 0.34565794467926025, 0.0540100634098053, -0.3414762020111084, -0.06548518687486649, 2.5465080738067627, -0.06553728878498077, -0.4512960910797119, -1.3275189399719238, 0.6382509469985962, 0.05676031485199928, 0.12663981318473816, -1.207942247390747, -0.10102318972349167, -0.8292229175567627, 0.13618284463882446, -0.00836188904941082, 1.1925128698349, 0.6968124508857727, 1.1864875555038452, -1.016261100769043, 0.3298822045326233, 1.3988721370697021, 0.2580845355987549, 0.11127892136573792, 0.5428006052970886, 0.9413189888000488, 0.574997067451477, 1.4734574556350708, 0.4525604248046875, -0.6900373101234436, 0.6194140315055847, 0.014919149689376354, 0.21273669600486755, 0.27437442541122437, 0.13358387351036072, 0.22215533256530762, -0.2888962924480438, -0.525907576084137, -1.2285773754119873, 0.06231345608830452, -0.23399710655212402, 0.40889424085617065, 0.03843842074275017, 0.7544354796409607, -0.2430209219455719, -0.13665300607681274, 0.0056846244260668755, -0.006390061229467392, 0.47265443205833435, 0.5947560667991638, 0.3647483289241791, -0.4168488383293152, -0.6707624793052673, 1.6931192874908447, 0.002546636387705803, -0.010367038659751415, 0.44234922528266907, 0.02997034229338169, -0.519119143486023, -0.7080943584442139, -0.42986807227134705, -0.44745975732803345, -0.01905650645494461, -0.8574382066726685, -0.49620378017425537, -0.4806835949420929, 0.2790418565273285, 0.6976834535598755, -0.2328578531742096, 2.1925811767578125, 0.1332404911518097, -0.5658389329910278, -0.8389632105827332, -0.21313564479351044, -0.12106171995401382, 0.187638059258461, 0.1031675934791565, -0.13326673209667206, -0.3624417781829834, 0.7560604810714722, 1.5216363668441772, 0.34846991300582886, 0.15145398676395416, 0.11163129657506943, -0.28933537006378174, -1.1078683137893677, -0.4380984306335449, 0.10290568321943283, 1.8582231998443604, -0.05997907742857933, -1.0710521936416626, -0.3611527681350708, 0.10776523500680923, -0.1404956728219986, -0.007249265909194946, 0.12569384276866913, -0.09464527666568756, 0.4825090765953064, -0.18575701117515564, 1.009466290473938, 0.486910879611969, -1.066042423248291, 0.4161951541900635, 0.20553797483444214, -0.23172175884246826, -0.4477018415927887, -0.6626135110855103, -0.9737972021102905, 0.2782866954803467, -0.6337147355079651, 0.8401069045066833, 0.14513875544071198, -0.1732693463563919, 0.19858551025390625, -1.8308359384536743, -0.14218217134475708, 0.3215556740760803, 1.5576248168945312, 0.484898179769516, -0.9023062586784363, 0.35953837633132935, 0.4838407337665558, 0.5771051645278931, 0.7870330214500427, 1.0374523401260376, -0.43554598093032837, -0.8104262948036194, 0.9729456901550293, 1.2920514345169067, -0.8556274771690369, 0.7277746796607971, 0.19296981394290924, -0.4932481646537781, 0.49365368485450745, 0.18721161782741547, -0.19427284598350525, -0.46590498089790344, 0.7374765872955322, -0.10031615942716599, -1.1201846599578857, 1.2283529043197632, -0.46473804116249084, -0.8879565596580505, -1.3837370872497559, 0.7489610314369202, -0.05293118953704834, -0.13069431483745575, 0.18127791583538055, 0.5541865229606628, -0.6305062174797058, 0.0703018456697464, -1.079309344291687, 0.21498025953769684, -0.4877854287624359, -0.773785412311554, -0.015154695138335228, -1.5876491069793701, 0.17312631011009216, -0.4483749270439148, -0.9666467308998108, 1.085954189300537, -0.2462049126625061, -0.4795699715614319, -0.023577624931931496, -0.4217230975627899, -0.16181713342666626, -1.1762819290161133, -0.1238497868180275, -0.8540805578231812, 0.11526674777269363, -0.4929066002368927, 0.6611466407775879, -0.4642269015312195, 0.9771226048469543, 0.573266863822937, 0.10019002854824066, -0.6924280524253845, 0.42471081018447876, 0.5113717317581177, -0.9635102152824402, 0.2923434376716614, 0.021209686994552612, -0.25185489654541016, 0.041724324226379395, 0.10873634368181229, 0.37660133838653564, 0.8082126379013062, 0.30553677678108215, 0.8545008301734924, -0.27129343152046204, -0.6276001930236816, -0.29138508439064026, -0.6863864660263062, 0.20907019078731537, -0.3681219816207886, -1.0034723281860352, 0.5710111260414124, 0.20371989905834198, -0.652505099773407, 1.1127018928527832, -0.28208866715431213, 0.2494659274816513, 0.47728970646858215, 1.0798914432525635, 0.7027501463890076, 0.2014995813369751, -0.6943414807319641, -0.8132501244544983, -0.36265265941619873, -0.3903588652610779, 0.6740551590919495, -0.33717653155326843, 0.3223794996738434, 1.750348448753357, 0.9707763195037842, -0.2147199660539627, 0.22231124341487885, -0.7339682579040527, 0.041895490139722824, -0.9583987593650818, 0.059216130524873734, -0.11032944172620773, -0.9111279249191284, 1.3846657276153564, 0.48159709572792053, -1.8423986434936523, -0.5122196078300476, -0.2964380383491516, 0.09070783853530884, -0.7445864677429199, -0.49166417121887207, -0.3676203191280365, 0.08884114027023315, 0.0813026949763298, 0.010434497147798538, -0.47265303134918213, -0.29404041171073914, 1.0375596284866333, -0.40113165974617004, -0.5219353437423706, 0.18395766615867615, 0.8238527178764343, 0.02346445806324482, 1.2390472888946533, -0.017392344772815704, -1.6180247068405151, -0.828088641166687, 0.3017481863498688, 0.6804797053337097, 0.42417383193969727, -0.07030589878559113, -0.16889016330242157, 1.01918625831604, 0.17091532051563263, 0.5209524035453796, 0.4519617259502411, -0.016336629167199135, 0.062489550560712814, -0.2144172042608261, 0.1906357705593109, 0.6123842000961304, -1.009497046470642, -0.6694176197052002, -0.1284058541059494, 0.8859688639640808, 1.1662846803665161, 1.3342734575271606, 1.1316603422164917, -0.1406198889017105, 0.3253333568572998, -0.1425025910139084, -0.2891133427619934, -0.33135977387428284, -0.6957498788833618, -0.5499367713928223, -0.9939659833908081, -0.21354679763317108, -0.5243109464645386, -0.009628650732338428, 1.2267462015151978, 0.05341889336705208, 1.1173489093780518, 0.10506917536258698, -0.5458166599273682, -1.0206687450408936, -0.6469175815582275, -0.6436303853988647, -0.6206746101379395, 0.7306267023086548, 1.146987795829773, -0.6456022262573242, 0.05965554714202881, -0.07791253924369812, 0.5754518508911133, 0.9375780820846558, 0.3940723240375519, 0.10100710391998291, -1.3150999546051025, -0.46141529083251953, 0.16805340349674225, 1.0732494592666626, -0.29541686177253723, 0.10123979300260544, -0.4752453863620758, 0.7746497392654419, 1.1584749221801758, -0.1982853263616562, -0.29919466376304626, -0.002330780029296875, -0.6424344182014465, -0.35267752408981323, -0.25723057985305786, -0.14495381712913513, 0.9958478808403015, -0.10292088985443115, -0.36863332986831665, -0.2108100801706314, -0.47872841358184814, -0.49918946623802185, 0.5050526261329651, 0.13558639585971832, 1.091425895690918, -0.14543598890304565, 0.7071505188941956, 1.4454843997955322, 0.4502519965171814, 0.5577289462089539, -2.01656174659729, 0.5598326325416565, 0.9146445989608765, 0.718837559223175, 0.6113347411155701, 0.5230607390403748, 0.30532026290893555, -1.117563009262085, -0.48660603165626526, -0.1191079244017601, 0.6535320281982422, 0.6007646918296814, 0.2993094027042389, -0.3402823805809021, -0.09153925627470016, 0.5115841627120972, -0.3431670367717743, 0.607996940612793, 0.43382948637008667, -0.5552705526351929, -0.2364426702260971, 0.9277711510658264, 0.032560303807258606, -0.4122682213783264, -0.8472073078155518, 0.363348126411438, 0.24663646519184113, -0.18410877883434296, 0.023582449182868004, -0.5855649709701538, -0.045323941856622696, 0.08895085752010345, 0.13234864175319672, -0.7420644164085388, -0.8536865711212158, 0.10427214205265045, 1.0599452257156372, -1.3544769287109375, -0.6420531868934631, -0.8183232545852661, 0.4303489923477173, 0.42438894510269165, -0.39443448185920715, 0.5405547618865967, -0.03586101531982422, -0.20459435880184174, -0.44924283027648926, 0.20861653983592987, 1.3633010387420654, 0.38246625661849976, -0.1667340099811554, -0.14611031115055084, 0.51564621925354, 0.45880717039108276, -0.42215263843536377, -0.5025412440299988, -0.026157226413488388, -0.8971932530403137, 0.41627568006515503, 0.30472731590270996, -0.37048855423927307, 1.420219898223877, -0.47851189970970154, 0.0848333090543747, 0.41125091910362244, -0.3292613625526428, -1.0483238697052002, 0.20701144635677338, 0.12624257802963257, -0.050554800778627396, -0.19720569252967834, -0.11360543221235275, 0.4318270981311798, 0.1971317082643509, 0.4334847331047058, 0.5161882638931274, 0.17745669186115265, -0.240748330950737, -0.19186708331108093, 0.6376968622207642, 0.18583890795707703, 0.3151896595954895, 1.5083277225494385, 0.9925724864006042, -0.5853139758110046, -0.8196212649345398, 0.684020459651947, 0.07209789007902145, -0.1774844378232956, 1.1871484518051147, 0.7283732891082764, 1.0669050216674805, -1.668575644493103, -0.18574118614196777, 0.7582062482833862, -0.3225126564502716, 0.9937041401863098, -0.05927562341094017, 0.37687742710113525, -1.1026382446289062, -0.14196433126926422, 0.16068850457668304, -0.20282095670700073, 1.0038659572601318, 0.08484179526567459, -0.020450014621019363, 0.7157711386680603, -0.5794384479522705, -0.24843895435333252, -0.5704062581062317, -0.42214855551719666, -0.20611633360385895, 0.2152450829744339, 1.1805038452148438, 0.8160091042518616, 0.8753515481948853, 0.9153919816017151, -0.5078579783439636, -0.9319283366203308, 0.6046684980392456, -1.1351711750030518, -0.13692665100097656, -0.057931847870349884, -0.39721864461898804, -0.1097119003534317, -0.9266810417175293, -0.31802836060523987, 0.15717054903507233, -0.6586356163024902, -0.5675969123840332, -0.6939307451248169, -0.9804955720901489, 0.18619059026241302, -0.06680253148078918, 1.3975096940994263, 0.7904037833213806, 0.3348918855190277, -0.029235634952783585, 0.04562656581401825, -0.8033729195594788, -0.2513505816459656, 0.2757502496242523, -0.2915542423725128, 0.1999569833278656, -1.1053930521011353, -0.5980687141418457, 0.4575185179710388, 0.49540582299232483, 0.07036746293306351, 0.1992998719215393, 1.188855767250061, 1.77675199508667, -0.7498349547386169, -0.18182134628295898, 0.8529885411262512, -0.5258722305297852, 0.6735453009605408, 0.519203245639801, -0.8098804950714111, -0.06279660761356354, -0.11968177556991577, -2.301119327545166, 1.6989270448684692, -0.02005898952484131, -0.586903989315033, 0.6924272179603577, 0.8789438009262085, -0.3392089903354645, 1.4531018733978271, -0.5885007977485657, -0.4729902148246765, 0.17376279830932617, -0.2873535752296448, -1.6089354753494263, 0.36628252267837524, 0.7954242825508118, -0.06954269111156464, -0.8471983671188354, 0.6288950443267822, 0.018288597464561462, 0.11464524269104004, 0.5982035994529724, -0.37919870018959045, 0.7559922337532043, 0.39159321784973145, 0.04077534005045891, -0.6638134121894836, 0.8798955678939819, -1.0986608266830444, 0.4480205476284027, 0.3693060278892517, 0.9683871269226074, 0.2734251916408539, -0.8928183913230896, 0.7026383876800537, -0.6191901564598083, -0.17489251494407654, 0.1468367576599121, -0.5552339553833008, 0.5286176204681396, 0.28611263632774353, 0.6477799415588379, 0.3463573753833771, -0.34860438108444214, -0.42012733221054077, -0.7817266583442688, -0.12418895959854126, 0.15155689418315887, -1.4463865756988525, -0.07820657640695572, -0.48485466837882996, -0.21131961047649384, 0.25776827335357666, 0.3614465594291687, -0.21794560551643372, -1.3505781888961792, -0.9376106858253479, -0.8402333855628967, -0.6672884225845337, 0.8770828247070312, -0.28154125809669495, 0.4568088948726654, -0.11266979575157166, -1.583030104637146, 0.8315363526344299, -0.6725620031356812, -1.9992609024047852, -0.22440941631793976, -0.012111409567296505, 1.269429087638855, -0.1906575858592987, 0.1140093058347702, 0.6435978412628174, 0.8215177059173584, -0.0753663033246994, -0.55816251039505, -1.3478790521621704, -0.5752049684524536, 0.7567416429519653, 0.5492613911628723, -0.6188027262687683, 1.6699256896972656, 0.3497089743614197, -0.34770894050598145, -0.19497200846672058, 0.17405307292938232, -1.7868770360946655, -0.19660770893096924, 0.267142117023468, -0.1215563416481018, 0.28764966130256653, 1.232292890548706, 0.1878330260515213, 1.1225866079330444, 0.37623533606529236, 1.2381349802017212, -0.4311123192310333, -1.012593150138855, 0.1527271866798401, 0.08658691495656967, -0.8880807757377625, 0.07187715917825699, 0.2851578891277313, -0.9225649237632751, -0.9033225178718567, 0.3223186135292053, 1.0993326902389526, -0.7464540600776672, 0.688743531703949, -0.23737041652202606, 0.573189914226532, -1.5674285888671875, 0.398519903421402, 0.6949756741523743, -0.8205738067626953, -0.11019408702850342, 0.2802073657512665, 0.6340662837028503, -1.2513976097106934, 0.0626121535897255, 0.5802998542785645, -0.06734585762023926, -0.6213926672935486, -0.13389024138450623, -0.3155476152896881, 0.33551374077796936, -0.5783042311668396, 1.6401458978652954, 0.6961238384246826, -0.17642100155353546, 0.10427329689264297, 1.0425407886505127, -0.005365659948438406, 0.4346536695957184, -0.33241650462150574, -0.37333622574806213, -0.9071770310401917, 0.3799302577972412, 0.16177605092525482, 0.23761680722236633, -0.6598287224769592, 0.2604881525039673, -0.20497947931289673, -0.4115292429924011, 2.02646803855896, -0.47220200300216675, -0.604500412940979, 0.9792886972427368, 0.4828420877456665, -0.07805013656616211, 0.7554001808166504, -0.23859310150146484, 0.6622813940048218, -0.056265462189912796, 0.5606634020805359, 0.10151338577270508, -0.5178192853927612, 0.06698460131883621, 0.7518283724784851, -0.39656519889831543, 0.5871743559837341, -0.4471430480480194, -1.2716578245162964, -0.8790154457092285, -0.5331107974052429, -0.6259339451789856, 0.727940022945404, -0.38760602474212646, -0.5519428253173828, -0.3518770933151245, -0.21942541003227234, -0.0612955167889595, -0.9455339312553406, -0.08955660462379456, -1.07802152633667, -0.7948032021522522, 0.5614472031593323, -0.5214546918869019, 1.1827435493469238, 0.09945638477802277, 0.8208243250846863, -0.32165271043777466, -0.3596510589122772, -0.10410548001527786, 0.0001785573549568653, -0.19189250469207764, -0.6222345232963562, 0.8183398246765137, -0.8019896149635315, 0.15772832930088043, 0.33623263239860535, -0.7101964950561523, 0.4952491819858551, -0.13405348360538483, -1.2417356967926025, 0.14900819957256317, 0.22150388360023499, 0.10181549191474915, -0.4068397879600525, -0.7042093873023987, -0.8971533179283142, 0.66362464427948, 0.3705858290195465, 0.9121537208557129, -0.7087903022766113, 0.7638970017433167, 0.5183908343315125, -0.29979759454727173, -0.9897884726524353, -0.6891865134239197, 1.3427743911743164, -0.47291937470436096, 0.6702263355255127, -0.8255305290222168, 0.047991566359996796, -0.15460939705371857, -1.1804460287094116, -0.32044121623039246, -0.12169798463582993, -0.5156208872795105, -0.031358201056718826, -0.7291830778121948, -0.34527716040611267, -0.8268617391586304, 0.28569480776786804, -0.0443619005382061, 0.10322942584753036, 0.674892246723175, 0.2123442143201828, -0.7348799705505371, -0.8756810426712036, 0.20395882427692413, 0.2619740962982178, 0.6781546473503113, 1.2477020025253296, 1.3390116691589355, 0.08796478062868118, -0.20794008672237396, -0.4190950095653534, 0.154244065284729, -0.6043580174446106, -0.06693549454212189, -1.0559748411178589, -0.541242241859436, -0.05815467610955238], [-0.6466774344444275, 0.7929073572158813, -2.3725924491882324, -0.8073758482933044, 0.4500918984413147, -0.49151164293289185, 0.7349882125854492, -0.0012904815375804901, -0.7880847454071045, -0.28613466024398804, -1.3344005346298218, 0.49583932757377625, -0.5754044055938721, 0.1957225799560547, -0.27105867862701416, 0.8911151885986328, 1.0074611902236938, -0.1854296773672104, 0.7034185528755188, 0.7448040246963501, -0.5433462858200073, -1.106935739517212, 0.7779027223587036, 0.4329890012741089, 0.33496084809303284, 0.45798733830451965, -1.5011621713638306, -0.7333377003669739, -0.5554541945457458, -0.55805903673172, 1.9039968252182007, 0.25640833377838135, -0.46148526668548584, -0.1914229542016983, -1.3635835647583008, -0.5604103803634644, 0.4429357051849365, -0.05352296307682991, 0.18948984146118164, 1.1429224014282227, 1.35666024684906, 0.5456544160842896, -0.7880585193634033, -1.8348042964935303, 0.5394415259361267, -0.7144795656204224, 0.09324418753385544, -0.92400062084198, -0.5432806015014648, -1.3931559324264526, 0.5382136106491089, 0.32646024227142334, 0.5111181735992432, 0.11313968896865845, 1.4352083206176758, -0.7309923768043518, -0.14452825486660004, 0.9452807903289795, 0.4635547995567322, -0.29550501704216003, 1.5441792011260986, 0.19311147928237915, -0.25168725848197937, 0.26732149720191956, 0.5164057612419128, 0.1136353462934494, 0.6750127077102661, 0.36821675300598145, -0.43079304695129395, -0.09208569675683975, 0.34102532267570496, 0.044837549328804016, -0.6601642966270447, 0.3409768044948578, -0.6134703755378723, 0.5387156009674072, 1.1832387447357178, 0.03306533023715019, -0.24228891730308533, 0.36447519063949585, -0.3342956006526947, -0.07373624294996262, 0.12550559639930725, -0.12913063168525696, -0.2412494271993637, 0.20822595059871674, 0.35414063930511475, 0.6172224879264832, -0.7809507250785828, 2.01267409324646, 0.07622768729925156, 0.3569236993789673, 0.9738278388977051, -0.5974876880645752, 0.21920686960220337, -0.7090116143226624, -0.07987166196107864, -0.9561966061592102, -0.8902185559272766, -0.6026334166526794, 0.05805196985602379, -0.567278265953064, 0.6989962458610535, 0.2836059033870697, 0.7485577464103699, 1.3572077751159668, 0.43462657928466797, -0.32730767130851746, -0.26922059059143066, 0.18821030855178833, -0.09382788091897964, -0.10050907731056213, -1.3035165071487427, -0.7952826619148254, 0.5044186115264893, 1.1348645687103271, 1.0175962448120117, -0.5675690770149231, -0.021779270842671394, 0.7601314187049866, -0.6896531581878662, -0.32449620962142944, -1.128908634185791, 0.5089355707168579, 1.2780016660690308, 0.6298897862434387, -0.06081903725862503, -0.14341358840465546, 0.14947637915611267, -0.10858942568302155, 1.140586018562317, 0.3682138919830322, -0.07307994365692139, 0.48456260561943054, 0.11936648935079575, 1.219494104385376, -0.24497640132904053, -1.0175899267196655, 0.03393522650003433, -0.5628749132156372, -0.488958477973938, -0.47960934042930603, -0.8792271614074707, -0.34766143560409546, 0.39551976323127747, -0.6698969602584839, 0.4354352056980133, 0.2721119821071625, -0.7218141555786133, 0.2679320275783539, -1.0226870775222778, 0.07892841845750809, 0.21843576431274414, 0.5362939238548279, 0.5496541261672974, 0.4428638219833374, 0.40972957015037537, 0.025130392983555794, -0.08337213844060898, 1.2300732135772705, 0.7086376547813416, -0.18360809981822968, -0.594327449798584, 1.0093730688095093, 0.6843879818916321, -0.657680332660675, 0.9590311646461487, 0.24147899448871613, 0.28223949670791626, 0.30741065740585327, -0.37818795442581177, -1.2346431016921997, -0.33276131749153137, 0.4248884916305542, -0.12460093200206757, -0.7183137536048889, 0.33239901065826416, -0.6298204064369202, -1.4449024200439453, -0.9161653518676758, 0.31018179655075073, -0.7016996741294861, 0.3235442042350769, -0.178517684340477, 0.5886000990867615, -0.3708772361278534, 0.2957463562488556, 0.22474651038646698, -0.8202781677246094, -1.3767119646072388, -1.0568273067474365, -0.6334450244903564, -1.3001933097839355, -0.23854242265224457, -0.3055588901042938, -0.8135958909988403, -0.1961510330438614, -0.7651929259300232, -0.4405207335948944, 0.21077708899974823, -0.16252361238002777, -0.5351480841636658, -0.6253445744514465, 0.482340931892395, -0.41997653245925903, 0.6666219234466553, -0.7502243518829346, 0.24242721498012543, -0.7312555909156799, 0.2407686859369278, 1.6455501317977905, 0.5694254636764526, -1.1367777585983276, 0.7459772825241089, -0.08060998469591141, -1.947800874710083, 0.6186310052871704, -0.1468818038702011, -0.5547375082969666, 0.18276973068714142, 0.5597624778747559, 0.5786397457122803, 0.4841429889202118, 0.2234739363193512, 0.3505047857761383, 0.08867280185222626, -0.9989883899688721, -0.41450411081314087, -0.7463074922561646, -0.6317028403282166, -0.8484904170036316, -0.6124957203865051, 0.8944221138954163, 1.0652031898498535, -1.1489359140396118, 0.18617157638072968, -0.8316879272460938, 0.5222846865653992, 0.13876782357692719, 0.339960515499115, 0.2214486449956894, 0.8184511065483093, -1.044913649559021, 0.11485772579908371, -0.9566157460212708, -0.6733705997467041, 0.6817888021469116, -0.15163104236125946, 0.5761160850524902, 1.2805256843566895, 1.0369067192077637, -0.4086134135723114, -0.5172678828239441, -0.0950484573841095, -0.15545694530010223, -0.9705240726470947, -0.5205791592597961, 0.25354287028312683, -0.9641983509063721, 1.0474845170974731, 0.5138497352600098, -0.4813731014728546, -0.40679019689559937, 0.17733538150787354, -0.1782376766204834, -0.3835884630680084, 0.08408664166927338, -0.8663902878761292, 1.098557472229004, 0.007179230451583862, -0.5637162923812866, 0.24605585634708405, 0.22350025177001953, 0.4215434491634369, -0.3587031662464142, -0.14199581742286682, -0.48897597193717957, 0.7779192924499512, -0.3616006076335907, 0.25641849637031555, -0.3196892738342285, -1.5525578260421753, -0.8219019770622253, -0.7313295006752014, 0.8616233468055725, -0.016783030703663826, -0.35617852210998535, 0.24816705286502838, 0.48500722646713257, -0.3094947636127472, 0.27713096141815186, 0.5848109126091003, 0.9577704668045044, -0.2045908421278, 0.21733620762825012, 0.10924771428108215, 0.7599243521690369, -1.2211960554122925, -0.8320967555046082, 0.009363335557281971, -0.009864618070423603, 1.1669968366622925, 0.08777786046266556, 1.449161171913147, -0.897843599319458, -0.21611754596233368, -1.319313406944275, 0.25120919942855835, -1.0207593441009521, -0.12892811000347137, 0.04276452213525772, -1.1773154735565186, -0.6371715664863586, -1.0467760562896729, 0.05141431838274002, 0.29603075981140137, -0.9851942658424377, 0.5725189447402954, 0.8962704539299011, -0.2573050856590271, -1.7776497602462769, -0.7442936301231384, 0.388210266828537, -1.2042224407196045, 0.8837597370147705, 1.4676584005355835, -0.9356374740600586, -0.2815706431865692, 0.20538601279258728, -0.5215804576873779, 1.203017234802246, -0.38829952478408813, 1.0648140907287598, -0.7333957552909851, -0.6775543689727783, 0.3180658221244812, 1.2360116243362427, 0.505996584892273, -0.09660811722278595, -0.6934093832969666, 0.02243046835064888, 0.5263354778289795, -0.1017570048570633, -0.4721534848213196, 0.8362510204315186, 0.04207732900977135, -0.5188389420509338, 0.023097790777683258, 1.0656567811965942, 0.8915748000144958, -0.6189039349555969, -0.6726478934288025, -0.6147873401641846, -0.13404743373394012, -0.6234263777732849, 0.3526177406311035, -0.3158910572528839, 1.3690906763076782, -0.0594232939183712, -0.40342915058135986, 1.0075432062149048, 0.008968954905867577, -0.20616470277309418, -1.5242465734481812, 0.5597188472747803, 0.7089007496833801, 1.555027961730957, 0.609456479549408, -0.010230008512735367, 0.03392397612333298, -0.5421923995018005, 0.2232457399368286, 0.29909199476242065, 1.0445021390914917, 0.8288046717643738, -0.8559550046920776, -0.5241961479187012, -0.3209218978881836, 0.2793436348438263, -0.30985355377197266, -0.436977356672287, -0.1540943682193756, -0.7550769448280334, -0.3487990200519562, 1.1177868843078613, 0.9574883580207825, -0.016825513914227486, 0.1806231141090393, 0.18169938027858734, 0.633236825466156, -1.0067065954208374, -0.14921064674854279, -0.6012651324272156, -0.5824987292289734, 0.6708074808120728, -0.6772290468215942, -0.5398795008659363, 0.12580245733261108, 0.7178367376327515, 0.8211670517921448, -1.5356266498565674, 0.017582306638360023, -0.3694452941417694, 0.6183675527572632, 0.12762898206710815, 0.43690839409828186, 0.332561731338501, 0.013206308707594872, 0.26774588227272034, 0.576898992061615, 0.04680755361914635, 1.8287781476974487, 0.09002149105072021, -0.63386070728302, 0.45004338026046753, 0.41716504096984863, 0.13931801915168762, 0.24719324707984924, -0.4821189045906067, 0.2542414367198944, -0.27058684825897217, -0.8477196097373962, -0.32391422986984253, -0.36002182960510254, 1.622270941734314, -0.30749449133872986, 0.2035554051399231, 0.26372769474983215, -0.02694738283753395, -0.9830660820007324, 0.15961962938308716, 0.09625859558582306, -0.3711884021759033, -0.070896215736866, 0.25016090273857117, 0.6278859972953796, 0.6204410195350647, 0.8186314702033997, 0.13958683609962463, 1.2245689630508423, -0.13417857885360718, 0.30638566613197327, 0.49620628356933594, 0.3492448925971985, 1.1373432874679565, 0.8172429203987122, 1.4434503316879272, -0.6666797399520874, -0.6109955310821533, 1.6602238416671753, -0.19357141852378845, 0.5652025938034058, 0.33500319719314575, 0.6399911642074585, 1.1864486932754517, -1.3530086278915405, -0.36452001333236694, 0.3795185983181, 0.18213775753974915, 0.7405605912208557, -0.855400025844574, -0.6157618165016174, -0.9046661257743835, 0.09387984871864319, -0.1754707545042038, -0.010608295910060406, 0.8387725353240967, 0.2908113896846771, 0.3667996823787689, 0.7037279009819031, -0.5860645771026611, 0.7214860320091248, -0.6912247538566589, 0.7894577383995056, -0.23032744228839874, -0.512849748134613, 0.15901289880275726, 0.2032465636730194, 0.9052941203117371, 1.5607550144195557, -0.32749101519584656, -0.39474520087242126, 0.19218921661376953, -0.9428527355194092, -0.07717088609933853, -0.5054653286933899, 0.0959549993276596, -0.4206887185573578, -0.42572110891342163, 0.1762228012084961, 0.09579723328351974, 0.3468688726425171, -0.02477412112057209, 0.02632082626223564, -1.1943227052688599, -0.3115529716014862, 0.6937248706817627, 0.8136633634567261, -0.04136297106742859, 0.6342298984527588, 0.7198754549026489, 0.21972759068012238, -1.0024094581604004, -0.1869438737630844, 0.370444118976593, 0.6567791700363159, -0.037019696086645126, -0.6393361687660217, -0.9521489143371582, 0.10161886364221573, 0.5016121864318848, 0.09325800836086273, 0.18586722016334534, 0.9855616688728333, 0.9489268660545349, 0.07773090153932571, -0.7102457284927368, 0.5567288994789124, -0.9320219159126282, 0.1012839823961258, 0.1282372623682022, -1.2176768779754639, -0.29755082726478577, 0.24871404469013214, -2.3394079208374023, 1.3198401927947998, 0.017311278730630875, -0.7983534932136536, 0.5432254076004028, 1.1030369997024536, 0.16356261074543, 0.5319639444351196, -0.8390018939971924, 0.3479922413825989, 0.24010081589221954, -0.015219304710626602, -0.9027340412139893, 0.5310884714126587, 1.0783069133758545, 0.4768151640892029, -0.058887094259262085, 0.6248832941055298, 0.16869784891605377, -0.11209901422262192, -0.5450858473777771, -0.1395024210214615, 0.650759756565094, 0.38152340054512024, 0.42067915201187134, -0.825279951095581, 0.11674723774194717, -0.6812184453010559, 0.30178123712539673, -0.04930213838815689, 1.266758918762207, 0.6333968639373779, -0.4405789077281952, 0.35257694125175476, -1.077831506729126, 0.5610962510108948, 0.19555407762527466, -0.9915052056312561, 1.2702041864395142, 0.08157289028167725, -0.27488818764686584, 0.3560546934604645, -0.5686648488044739, -0.94185870885849, -0.8148636817932129, -0.1257622390985489, 1.4731602668762207, -1.651157021522522, -0.7134305834770203, -0.2601625919342041, -0.24269968271255493, 0.19679352641105652, -0.48137834668159485, 0.445349782705307, -0.7805252075195312, -1.6021462678909302, -0.29905447363853455, -0.1268269270658493, 0.8912715315818787, -0.5667470693588257, 0.2353798747062683, 0.571899950504303, -1.4664905071258545, 0.6430032849311829, -0.1017957404255867, -1.4885413646697998, -0.011875629425048828, -1.0486795902252197, 0.5677909851074219, -0.2345404028892517, 0.29744550585746765, 0.22848854959011078, 0.8997611999511719, -0.9817346930503845, -1.0224720239639282, -0.3569866418838501, -0.08490251004695892, 1.0287684202194214, 1.107640027999878, -0.5074307918548584, 0.9845627546310425, -1.0479825735092163, -0.7007095217704773, -0.9220724105834961, 0.006331562530249357, -0.9069321155548096, 0.13822655379772186, -0.09996519982814789, 0.0680658221244812, 0.5616231560707092, 1.1568549871444702, 1.378804087638855, 0.6966584324836731, 0.7840144038200378, 0.43092063069343567, -1.1217737197875977, -0.08341418951749802, -0.6991782188415527, 0.287848562002182, -1.7676494121551514, -0.48355939984321594, -0.23534156382083893, -0.25293034315109253, -1.2487070560455322, 0.3528450131416321, 0.7412208914756775, -0.9262169003486633, 0.5536820292472839, 0.47616270184516907, 0.07799732685089111, -0.2262488156557083, 0.2925415337085724, 0.29925358295440674, -0.9643460512161255, -0.15403716266155243, 0.5108532905578613, 1.389752984046936, -0.7119062542915344, -0.46670812368392944, 0.37769606709480286, 0.28561097383499146, -0.41353532671928406, 0.916822075843811, 0.48491206765174866, -0.4983288645744324, 0.4407329559326172, 1.204527497291565, 1.293649435043335, 0.04714658111333847, 0.38413068652153015, 0.40917885303497314, -0.49706923961639404, -0.042319800704717636, -0.16811317205429077, 0.31863313913345337, -0.42714834213256836, 1.0330458879470825, 0.5166721343994141, 0.1698802411556244, -0.8957453370094299, 0.6645431518554688, -0.274397611618042, 0.3955214321613312, 0.8837140798568726, -0.5691405534744263, -0.5659341812133789, 0.9182013273239136, 0.903986394405365, 0.04472600668668747, 0.39396199584007263, 0.25973549485206604, 0.1551532745361328, 0.014659527689218521, 0.38204216957092285, 0.5394762754440308, -0.5888082385063171, -0.07423105090856552, -0.25760701298713684, 0.3391997516155243, 0.31516319513320923, -0.2476528286933899, -0.7254670858383179, 0.048364393413066864, -1.0564613342285156, -0.7485507130622864, 1.0064178705215454, -1.3100391626358032, -0.2675310969352722, -0.441046804189682, 0.00019569694995880127, -0.22819532454013824, 0.0018116701394319534, -0.515320360660553, -0.6987265944480896, 0.19980531930923462, 1.5064047574996948, -0.26417040824890137, 0.700037956237793, 0.48091018199920654, 0.43675848841667175, -0.014075158163905144, -0.07437077164649963, -0.4937768280506134, -0.05630534142255783, 0.5290582776069641, -0.30996888875961304, 0.12477647513151169, -0.04600630700588226, -0.8787108659744263, -0.35483500361442566, -0.3961627185344696, -0.006071601063013077, -0.6881406307220459, -0.37137144804000854, 0.033959709107875824, 0.41791245341300964, 0.5940302014350891, -0.5737517476081848, -0.8306882381439209, -0.5308618545532227, 0.014592270366847515, 0.022287752479314804, 1.3407279253005981, -0.7491241693496704, 1.3967105150222778, -0.30135318636894226, -0.4355662167072296, -0.3102637827396393, -0.8519576191902161, 0.1868264526128769, -0.30568671226501465, 0.17591044306755066, -0.3004375994205475, -0.19248324632644653, 0.7923364043235779, -1.0965791940689087, 0.360226571559906, -0.23607131838798523, 0.36972370743751526, 0.33407601714134216, -0.8824464082717896, -0.36769363284111023, -0.6498596668243408, -0.01624346524477005, 0.3855896592140198, 0.30352041125297546, 0.8938083648681641, -0.5117896199226379, -1.2451355457305908, -0.21658030152320862, 1.1158894300460815, 0.34824880957603455, 1.3314956426620483, 0.9789448380470276, 1.827903389930725, 0.6328691840171814, -0.16229890286922455, -0.7547488212585449, 0.08818026632070541, -0.5686613917350769, -0.2640695869922638, -0.6215072274208069, 0.06926756352186203, -0.07748404890298843], [-0.5638975501060486, 1.3719847202301025, -2.457801103591919, -0.5487335324287415, 0.033907175064086914, 0.10977964848279953, 1.7551100254058838, -0.048535242676734924, -0.21205198764801025, -1.401423454284668, -0.30703532695770264, -0.37316957116127014, 0.24444639682769775, 0.3743365705013275, 0.3666606545448303, 0.2310602068901062, 0.8698928952217102, 0.10023242980241776, 0.14719325304031372, 0.9181488156318665, 0.29129689931869507, -1.4963891506195068, 0.27695178985595703, -0.4609884023666382, 0.41980957984924316, -0.2487642765045166, -1.503033995628357, 0.2248809039592743, -1.3406801223754883, -0.0194145105779171, 1.0146946907043457, -0.14767910540103912, 0.36142411828041077, -0.4121447503566742, -1.5948641300201416, -0.6103590726852417, 0.37940359115600586, -0.1647433191537857, -0.4392746686935425, -0.2787793278694153, 2.2242863178253174, -0.1650848239660263, -0.23213911056518555, -1.6451655626296997, 0.7383127212524414, -0.27942922711372375, 0.4463103711605072, -1.1626839637756348, 0.09171880781650543, -1.076704978942871, 0.8666112422943115, -0.6110346913337708, 0.7395808696746826, 1.4573814868927002, 0.9929550290107727, -1.1491636037826538, -0.06191100925207138, 1.5355321168899536, 0.20368538796901703, 0.44913217425346375, 1.2498648166656494, 0.13819535076618195, 0.9093424677848816, 1.0592373609542847, 0.29594919085502625, -0.7219398021697998, 0.8790174126625061, 0.1820678561925888, 0.4858901798725128, 0.22898626327514648, 0.9516945481300354, 0.1358902007341385, -0.442106157541275, 0.0033917464315891266, -0.6910295486450195, 0.7069635987281799, -0.17832686007022858, 0.4560002088546753, 0.2905098795890808, 0.5131816267967224, -0.015186638571321964, 0.12402449548244476, -0.10348134487867355, -0.5197827816009521, -0.8543092608451843, -0.33471977710723877, 0.4680212140083313, -0.3888194262981415, -0.4505067467689514, 1.0860642194747925, -0.04648091271519661, 0.49333706498146057, 0.7087985873222351, -0.38996899127960205, -0.40432029962539673, -0.5093740820884705, -0.19782352447509766, -0.5976905226707458, -0.18948380649089813, -0.6392444968223572, -0.3541859984397888, -1.4514610767364502, 0.7369794249534607, 0.5119681358337402, 0.4156971275806427, 1.3695954084396362, -0.09763620793819427, -0.8775248527526855, -0.627292811870575, 0.013488780707120895, 0.07182997465133667, 0.14957289397716522, -0.9760259389877319, -1.0322290658950806, 0.31593307852745056, 1.5284883975982666, 1.5369572639465332, 0.14336293935775757, 0.017856115475296974, -0.11537507176399231, -0.4179359972476959, -0.38834327459335327, -0.01903049647808075, -0.29473888874053955, 1.6524986028671265, -0.2869623303413391, -0.6485397815704346, -0.16019462049007416, -0.517255961894989, -0.22895899415016174, 0.6753098368644714, 0.1659698486328125, 0.3625563681125641, 0.6152885556221008, -0.6637097001075745, 0.9938808679580688, -0.14172177016735077, -0.976197361946106, 0.23515765368938446, 0.3748144507408142, 0.5298774242401123, -0.2038595974445343, -0.7142219543457031, -0.5649880766868591, 1.0008333921432495, -0.8223831653594971, 0.46715259552001953, -0.20079396665096283, -1.0406248569488525, 0.1998327076435089, -1.8417470455169678, -0.18771527707576752, 0.055460017174482346, 2.0190160274505615, 0.7551524639129639, -0.7721313834190369, 0.2797222137451172, 0.23430506885051727, 0.5373868942260742, 0.7663725018501282, 1.5692230463027954, -0.513412594795227, -0.8860357999801636, 0.9360543489456177, 1.57615327835083, -0.13167120516300201, 0.9716160297393799, 0.48798373341560364, -0.46632635593414307, 0.8137820363044739, -0.287399560213089, -0.7305695414543152, -0.34204909205436707, -0.13445092737674713, -0.11994460970163345, -0.6093142032623291, 1.0066945552825928, 0.11429966986179352, -1.0136300325393677, -1.3522523641586304, 0.9921794533729553, -0.1389620006084442, 0.17029745876789093, 0.3834187984466553, 0.5819377303123474, -0.582888662815094, -0.5643606781959534, 0.0889040008187294, -0.21091328561306, -1.169845461845398, -0.013967921026051044, 0.1399386078119278, -1.4138544797897339, 0.2809355556964874, -0.47053176164627075, -0.7355421781539917, 0.7613820433616638, -0.9808065295219421, -0.48484131693840027, -0.4335302412509918, 0.02980346977710724, 0.28991761803627014, -1.053696632385254, 0.1465042233467102, -0.5551501512527466, 0.5593205690383911, -0.9092853665351868, 0.6109012365341187, -0.26576510071754456, 0.7457228302955627, 0.7094348669052124, -0.4592169225215912, -1.2511519193649292, 0.8977603912353516, 0.5891261696815491, -1.4676530361175537, 0.7654460668563843, 0.2780807316303253, 0.026134993880987167, 0.16663846373558044, -0.13710558414459229, -0.16709047555923462, 1.049403190612793, 0.31323719024658203, 0.7891675233840942, 0.14065271615982056, -0.2052374929189682, -0.5663332939147949, -0.6763823628425598, 0.13387230038642883, -0.8682118654251099, -0.6311712265014648, 0.4478507936000824, -0.11427589505910873, -1.2710484266281128, 0.4559670686721802, -0.33556362986564636, 0.6123469471931458, 0.38582298159599304, 0.697232723236084, 0.9555875062942505, 0.16607563197612762, 0.06265680491924286, -0.2956690788269043, -0.7329890131950378, -0.34872710704803467, 0.9900310635566711, -0.18369831144809723, -0.015663547441363335, 1.472318410873413, 0.879628598690033, -0.1487227827310562, 0.3203521966934204, -0.5899799466133118, 0.4517652094364166, -0.9676470756530762, 0.42872387170791626, -0.2569015324115753, -1.0674288272857666, 1.7278664112091064, 0.5029627084732056, -1.2765312194824219, 0.14800313115119934, -0.8472958207130432, -0.1471920609474182, -0.7101694345474243, -0.34365707635879517, -0.25574082136154175, 0.35278066992759705, -0.26491281390190125, 0.07675895094871521, -0.3358345925807953, -0.2637519836425781, 0.9796813726425171, 0.17736275494098663, -0.7797338366508484, 0.061447348445653915, 0.9064362645149231, 0.3211819529533386, 0.9995362758636475, -0.10498996824026108, -1.424381136894226, -1.093534231185913, -0.09979428350925446, 0.7812920212745667, 0.13591501116752625, -0.24997973442077637, 0.7498171329498291, 0.924030065536499, -0.09318661689758301, 0.7297114133834839, 0.7789943814277649, 0.451212078332901, 0.30094823241233826, 0.2615613341331482, 0.5540990829467773, 0.21882279217243195, -1.3816524744033813, -1.3460848331451416, -0.12663212418556213, 0.26712852716445923, 1.5632351636886597, 1.2514469623565674, 0.8374324440956116, -0.4675534963607788, 0.38600409030914307, -0.3519987165927887, 0.2698718309402466, -0.42308083176612854, -0.2780532240867615, -0.27264565229415894, -0.31717541813850403, -0.23655052483081818, -0.9302241206169128, 0.023085234686732292, 1.355049967765808, 0.4274098575115204, 1.0775941610336304, 0.6742072105407715, -0.49630770087242126, -1.492669939994812, -0.5362289547920227, -0.2505144774913788, -1.1321327686309814, 1.0442043542861938, 1.9442367553710938, -1.3910270929336548, 0.07300499081611633, 0.35188162326812744, 0.06591078639030457, 0.18663296103477478, 0.20438863337039948, 0.3903959095478058, -1.2844369411468506, -0.07496541738510132, 0.09361528605222702, 1.456307053565979, -0.5158573985099792, 0.11815590411424637, -0.39785006642341614, 0.5667120218276978, 0.8508605360984802, -0.03967367485165596, -0.5627711415290833, 0.08728527277708054, -0.8616304397583008, -0.30015894770622253, -0.46445250511169434, 0.4263904094696045, 0.9272305369377136, -0.23085913062095642, -1.3331656455993652, -0.45846810936927795, -0.36415886878967285, -0.9568471908569336, 0.20091427862644196, -0.3178447186946869, 0.543900728225708, 0.42580685019493103, 0.8841189742088318, 1.0664615631103516, 0.28096768260002136, 0.0004683062434196472, -1.411673665046692, 0.3670807182788849, 0.974005937576294, 1.356221079826355, 0.2141093909740448, 0.7048466205596924, -0.03647275269031525, -1.3327996730804443, 0.22049450874328613, 0.28979137539863586, 0.17997154593467712, 0.5148932337760925, -0.521176278591156, -0.2954922020435333, -0.5259696841239929, 0.23960590362548828, 0.3008723258972168, 0.7169759273529053, 0.18253737688064575, 0.06536955386400223, -0.31044459342956543, 1.1267491579055786, 0.8062461614608765, 0.08300668001174927, -1.0267497301101685, -0.5032804608345032, 0.5948213338851929, -0.6679317355155945, -0.6775908470153809, -0.513629674911499, -0.1532561033964157, 0.6783863306045532, -0.13525360822677612, -0.17088335752487183, -0.3875131905078888, 0.44807514548301697, 1.1640328168869019, -0.9987215995788574, -0.623778223991394, -0.6152178645133972, 0.3210619390010834, 0.31898605823516846, -0.5516011118888855, 0.4742690920829773, 0.7191954255104065, -1.0685036182403564, 0.09064146131277084, 0.24734075367450714, 1.491546869277954, -0.04151025414466858, 0.17493613064289093, -0.16754482686519623, 0.27134740352630615, 0.7899814248085022, -0.6890878677368164, -0.9750102758407593, -0.28338170051574707, -0.4756826162338257, 0.35196787118911743, 0.052462488412857056, -0.1423964649438858, 1.8241746425628662, -0.5237306356430054, 0.3729249835014343, 0.536688506603241, 0.30792441964149475, -0.7637960910797119, 0.028317509219050407, -0.2507472336292267, -0.374324232339859, -0.016174834221601486, 0.2935366928577423, 0.007077813148498535, 0.5809712409973145, 0.33783861994743347, 0.2827599048614502, 0.18264888226985931, -0.20332679152488708, -0.40071889758110046, 0.5134657025337219, 0.5596444010734558, 1.1099553108215332, 1.1482036113739014, 1.2713176012039185, -0.7622287273406982, -0.5387650728225708, 0.9519270062446594, 0.25946328043937683, -0.27708500623703003, 0.8720371723175049, 0.2976365387439728, 0.7431163787841797, -1.1055165529251099, 0.21801866590976715, 1.26520836353302, -0.5608271360397339, 1.2575443983078003, -0.3808276057243347, 0.2974995970726013, -1.2377575635910034, -0.06147662550210953, 0.27071812748908997, -0.4689539968967438, 0.9387454986572266, 0.1100412905216217, -0.08671854436397552, 0.7563508749008179, -0.047225359827280045, 0.018027812242507935, -0.5142852067947388, -0.5209904313087463, -0.3399077355861664, 0.29254746437072754, 0.6665344834327698, 1.1615793704986572, 0.6820873022079468, 1.3527618646621704, -0.11263538897037506, -1.1498591899871826, 0.35932818055152893, -0.535076379776001, -0.01878385618329048, -0.8953268527984619, -0.20634594559669495, -0.4174206256866455, -0.9458945989608765, 0.03141377121210098, -0.24293141067028046, -0.9822787642478943, -0.7329803705215454, -0.7707349061965942, -1.0848721265792847, 0.3731168806552887, 0.37822574377059937, 1.7355502843856812, 0.7580536603927612, 0.18453949689865112, -0.3447083830833435, 0.014990240335464478, -0.6778711080551147, 0.025282680988311768, 0.06516429036855698, -0.18451063334941864, 0.12541088461875916, -1.2791815996170044, -0.6502566933631897, 0.7987551093101501, 0.913842499256134, 0.16856639087200165, 0.5330926179885864, 1.4989063739776611, 1.4643956422805786, -0.33790168166160583, -0.3382532298564911, 0.6473004221916199, -0.618302583694458, 0.5368859171867371, 0.32475653290748596, -0.8776252269744873, -0.1270809769630432, -0.3400364816188812, -2.039931535720825, 1.1240019798278809, -0.08469796180725098, -0.5016462802886963, 0.8334172368049622, 0.7121502161026001, 0.1149575412273407, 1.5036214590072632, -0.35218778252601624, -0.3993251919746399, -0.0948508083820343, -0.2724166810512543, -1.4386123418807983, 0.6496312022209167, 1.14320969581604, 0.08571402728557587, -1.144936203956604, 0.4980468153953552, -0.6163696050643921, -0.3657516539096832, -0.06046859174966812, -0.09178274124860764, 0.4070541262626648, 0.3278970718383789, 0.02055252157151699, 0.02877815067768097, 0.6119940876960754, -1.229434847831726, 0.6864673495292664, 0.08128144592046738, 0.2655101716518402, 0.2780844271183014, -1.0019197463989258, 1.2130513191223145, -0.040475040674209595, -0.5511212944984436, -0.2602677047252655, -1.0919545888900757, 0.25637882947921753, 0.9474831223487854, 0.4123830497264862, -0.1536089926958084, -0.3949616253376007, -0.5363726019859314, -0.9871797561645508, 0.2340129315853119, 0.5340327024459839, -0.6527284383773804, -0.10074428468942642, -0.26583465933799744, -0.20514726638793945, 0.11130859702825546, 0.49757078289985657, 0.6367483139038086, -0.9414162635803223, -1.0660984516143799, -0.7343476414680481, -0.8233903646469116, 0.5619280934333801, 0.49270060658454895, 0.37897175550460815, -0.09395227581262589, -1.3612773418426514, 0.9110350012779236, -0.7601444721221924, -1.994542121887207, 0.024872999638319016, -0.3262943625450134, 1.0157309770584106, -0.2778376042842865, 0.1265503168106079, 0.2557762861251831, 1.247599482536316, -0.9981250166893005, -0.9215962886810303, -1.0757101774215698, -0.6569469571113586, 0.8980922698974609, 0.5766781568527222, -0.3339436948299408, 1.1444745063781738, -0.09890898317098618, -0.8929184675216675, -0.31806111335754395, -0.3574672043323517, -1.4917751550674438, -0.687145471572876, -0.09416063129901886, 0.6984767317771912, 0.8026109337806702, 1.1564666032791138, 0.4075518250465393, 1.108283281326294, 0.1817840039730072, 1.6429013013839722, -0.3290726840496063, -0.7152000069618225, 0.18273024260997772, 0.22239069640636444, -0.5167666077613831, -0.24560610949993134, 0.3849320411682129, -0.6876051425933838, -0.8135591149330139, 0.5322291254997253, 0.44950395822525024, -0.581960916519165, 0.6984387040138245, 0.025126785039901733, -0.0004447121173143387, -0.9901328086853027, 0.6254203915596008, 1.1792012453079224, -1.2132607698440552, -0.576328694820404, 0.3776223361492157, 0.33317410945892334, -0.7399505376815796, 0.043418847024440765, 0.863775908946991, 0.6618483662605286, -0.40119731426239014, 0.5586879253387451, -0.23805324733257294, 0.9582645893096924, -0.3665790557861328, 0.7404670715332031, 0.8377445340156555, 0.05372006446123123, 0.49059662222862244, 0.5741654634475708, -0.11477440595626831, -0.19993843138217926, 0.21162322163581848, -1.0268443822860718, -0.8493770360946655, 0.19699417054653168, 0.26901477575302124, -0.33533716201782227, -0.10174770653247833, 0.4596349596977234, 0.44509583711624146, -0.5723488330841064, 2.30696439743042, -0.8831188678741455, -1.036135196685791, 0.851470410823822, 0.7012476921081543, -0.5001663565635681, 0.5838808417320251, -0.26168617606163025, 0.5168547630310059, -0.7207702398300171, 0.15346795320510864, -0.010861724615097046, -0.8392757177352905, -0.07602208852767944, 0.08673657476902008, -0.5329275727272034, 0.6592155694961548, -0.804004430770874, -1.5533990859985352, -0.6385577917098999, -0.6017824411392212, 0.05942583829164505, 0.51425701379776, -0.7423237562179565, -0.4684371054172516, 0.007635856978595257, 0.0696110650897026, -0.5616945028305054, -0.7048166394233704, -0.22229178249835968, -0.4472518563270569, -0.4899638295173645, 0.766409158706665, -0.3360276520252228, 1.1611307859420776, 0.1589098423719406, 0.4455943703651428, 0.03195025399327278, -0.033252473920583725, 0.05912769213318825, 0.18088263273239136, -0.619540810585022, -0.7858827710151672, 0.5430622696876526, -0.42075538635253906, 0.1079949140548706, 0.2610008716583252, -0.35902881622314453, 0.06687656044960022, -0.022017348557710648, -1.2945058345794678, -0.6894877552986145, 0.4445853531360626, 0.4268210232257843, -0.5751751065254211, -0.9506635665893555, -0.38282912969589233, 0.7607737183570862, -0.1474200338125229, 0.810167670249939, -0.5055526494979858, 0.7687076926231384, 0.3137265145778656, -0.7713723182678223, -0.9508603811264038, -1.4528955221176147, 1.3820579051971436, -0.885513186454773, 0.33315491676330566, -0.7801092863082886, -0.35758736729621887, 0.32966506481170654, -1.0181266069412231, -0.04599638283252716, -0.5432976484298706, 0.15058739483356476, 0.627469003200531, -0.5390858054161072, -1.1907002925872803, -0.4920511543750763, -0.31050238013267517, -0.11503558605909348, 0.11844577640295029, 0.5318449139595032, 0.028824161738157272, -1.5291022062301636, -0.6961588859558105, 0.6685689091682434, 0.32592424750328064, 0.44137561321258545, 1.1678763628005981, 1.2619643211364746, -0.19410419464111328, -0.479884535074234, -0.16872423887252808, 0.32388201355934143, -1.318897008895874, -0.028742734342813492, -0.7940083146095276, -0.15717117488384247, 0.015598506666719913], [0.010297281667590141, 2.391871929168701, -2.622643232345581, -0.22560277581214905, -0.10272381454706192, 0.14437630772590637, 1.4568307399749756, -0.06432528793811798, 0.04257320240139961, -0.3042462170124054, -0.5531690716743469, 0.0739409402012825, 0.4113883078098297, 0.5105074644088745, 0.22209888696670532, 1.2229876518249512, -0.3514728844165802, 0.32900097966194153, 1.0767945051193237, 1.5042903423309326, 0.05188065767288208, -1.6951857805252075, -0.774919331073761, -0.001707341056317091, -0.43962305784225464, -0.6408337950706482, -0.9788473844528198, 0.28833264112472534, -0.7875766158103943, -0.9987265467643738, 0.7771375179290771, -0.5365960597991943, 0.36657556891441345, -0.45743075013160706, -2.0810794830322266, -0.5122905969619751, 1.409938097000122, 0.14759159088134766, -0.5820919871330261, 0.42008495330810547, 2.5097908973693848, -0.5473307967185974, -0.37244725227355957, -1.2436386346817017, 0.45683443546295166, 0.43898719549179077, 0.3953559696674347, -0.8526023626327515, 0.4146886169910431, -0.8209150433540344, 0.8192257881164551, -0.1855955868959427, 0.4811949133872986, 1.5091763734817505, 0.631038248538971, -1.2725310325622559, -0.2411646693944931, 0.9749168753623962, -0.12532079219818115, 1.0430914163589478, 1.3951822519302368, 0.15926635265350342, 0.7438182234764099, 0.8382514119148254, 0.4151299297809601, -0.6998715400695801, 0.6886827945709229, 0.3771778643131256, 0.07880693674087524, 0.24810655415058136, 0.32670241594314575, -0.5420368313789368, -1.4190220832824707, -0.3091285228729248, -0.4761848449707031, 0.35157057642936707, -0.4992615580558777, 0.6540217399597168, 0.47262129187583923, 0.6112120747566223, -0.4443998634815216, 0.486077219247818, -0.08100175857543945, -0.21431958675384521, 0.09039761871099472, -0.09289627522230148, 0.7227276563644409, -0.5865287184715271, -0.342364102602005, 1.381901502609253, -0.23878878355026245, 0.17629674077033997, 0.9530449509620667, -0.13234709203243256, 0.024557389318943024, -0.8047714829444885, 0.38052207231521606, -0.92088383436203, -0.01544809341430664, -1.1129018068313599, -0.37198519706726074, -0.46543818712234497, 0.9066763520240784, 0.6708759069442749, 0.825766921043396, 1.732785701751709, 0.17480653524398804, -0.8264889121055603, -0.7009156346321106, 0.008436806499958038, -0.28196465969085693, 0.36365509033203125, -0.35963737964630127, -1.261941909790039, 0.06195710599422455, 1.1062310934066772, 1.5233232975006104, -0.14155463874340057, 0.6137219667434692, 0.543034017086029, -0.3510918617248535, -0.7225853204727173, -0.5397432446479797, 0.5721286535263062, 1.3944298028945923, 0.1825663298368454, -0.7746294736862183, -0.05566981062293053, -0.6249786615371704, -0.16696076095104218, 0.7018832564353943, 0.18046574294567108, -0.21604369580745697, 0.7350205779075623, -0.2744690179824829, 1.5601370334625244, -0.48934492468833923, -0.693555474281311, -0.3749663233757019, 0.6223766803741455, 0.255576491355896, 0.529898464679718, -0.625685453414917, -0.9897480607032776, 0.17834964394569397, -0.4904307425022125, 0.24785910546779633, -0.43095165491104126, -0.29676830768585205, 0.7694330811500549, -1.7083427906036377, -0.028188548982143402, -0.24395127594470978, 1.9068607091903687, 0.5253576636314392, -0.2078588604927063, 1.428174376487732, -0.07338700443506241, 0.07983040064573288, 0.9996791481971741, 1.0352920293807983, 0.005968020297586918, 0.16555188596248627, 1.5089315176010132, 0.6327024698257446, -0.8331195712089539, 1.0025238990783691, 0.7125771641731262, -0.5096850395202637, 0.5512145757675171, -0.28083890676498413, -0.27965065836906433, -0.9226841330528259, 0.34416666626930237, 0.10134872794151306, -0.3451332151889801, 0.8976263999938965, 0.4071336090564728, -1.2274850606918335, -1.1785379648208618, 0.7853631973266602, 0.19839239120483398, 0.8362960815429688, 0.49960145354270935, 0.1431744247674942, -0.04795357584953308, -0.7580768465995789, -0.5760613679885864, 0.15955087542533875, -0.8973423838615417, -0.6287916898727417, -0.1939866989850998, -1.3573510646820068, 0.5831731557846069, -0.7192540168762207, -0.9824481010437012, 1.5509638786315918, -0.7984551787376404, -0.6127318143844604, -0.4514754116535187, 0.18373563885688782, -0.3895784914493561, -1.2679247856140137, -0.3178020417690277, -0.4960629940032959, 0.7836425304412842, -0.7753874063491821, 0.25216951966285706, -0.8646151423454285, 1.0295448303222656, 0.6464530229568481, -0.6776857376098633, -0.9568677544593811, 0.07947076857089996, 0.5149570107460022, -1.1761435270309448, 0.28678813576698303, -0.0671684518456459, 0.492804616689682, -0.026681246235966682, -0.03171480447053909, -0.28303319215774536, 0.9367758631706238, -0.1648443639278412, 0.4925202429294586, -0.438761442899704, -0.6413766741752625, -0.6709204316139221, -0.07638335227966309, 0.19839279353618622, -0.33577483892440796, -0.8134249448776245, 0.16112031042575836, 0.6975353360176086, -0.9266956448554993, 0.491963267326355, -0.23878781497478485, 0.13367724418640137, 0.28427717089653015, 0.8772497177124023, 0.7593785524368286, 0.1557631641626358, -0.440548837184906, -0.6605701446533203, -0.8585284948348999, -0.4319734275341034, 0.6021308302879333, -0.14856821298599243, -0.18428441882133484, 1.4325919151306152, 0.7486231327056885, -0.22964665293693542, 0.5586355328559875, 0.005369482561945915, 0.19467279314994812, -1.0020866394042969, 0.3290809690952301, 0.23166710138320923, -0.19173690676689148, 1.312563419342041, 0.3321605324745178, -0.7945197224617004, 0.18742190301418304, -0.5912462472915649, 0.7668808698654175, -0.5336848497390747, 0.013895513489842415, -0.5349095463752747, -0.0048629892989993095, -0.00884514581412077, 0.34996700286865234, 0.06531441956758499, -0.6353619694709778, 0.6366281509399414, 0.22883038222789764, -0.9073198437690735, 0.2530321478843689, 1.0478917360305786, 0.08352615684270859, 0.7168602347373962, -0.32139503955841064, -1.7843998670578003, -0.9813714623451233, -0.41150516271591187, 0.8695623278617859, 0.31637394428253174, -0.2572060227394104, 0.7548194527626038, 1.440497636795044, 0.41719216108322144, 0.5825546383857727, 0.21737869083881378, -0.3486948609352112, -0.5351259112358093, 0.390129953622818, 0.0926230251789093, 0.6381880640983582, -0.7235412001609802, -0.9612380862236023, -0.2284087836742401, -0.20804943144321442, 1.1186964511871338, 1.4923620223999023, 1.1258974075317383, -0.7722448706626892, -0.15831205248832703, -0.2936958968639374, -0.16355060040950775, -0.5573057532310486, -0.3660302758216858, -0.3195875287055969, -0.7756678462028503, -0.37007489800453186, -0.4267585575580597, -0.32356253266334534, 0.6831644773483276, 0.27943873405456543, 0.8580800294876099, 0.857526957988739, -0.28569743037223816, -1.0966264009475708, -0.8984957933425903, -0.445620596408844, -1.394281029701233, 0.6318346858024597, 1.1602307558059692, -1.8134839534759521, -0.4197778105735779, 0.2865164875984192, 0.26529210805892944, 0.2919595241546631, 0.06493636965751648, 0.38534533977508545, -1.4179227352142334, -0.004161432385444641, -0.2853778898715973, 1.5820385217666626, 0.13495667278766632, 0.11585964262485504, -0.3107975721359253, 0.3123120665550232, 0.6687498092651367, -0.4741690158843994, -0.9737226366996765, 0.10811176151037216, -0.529379665851593, -0.6308976411819458, -0.04903503507375717, -0.1697710007429123, 0.5792733430862427, -0.792624294757843, -1.5357307195663452, -0.07837647199630737, -0.4922574758529663, -1.0580601692199707, 0.7837458848953247, 0.22651152312755585, 0.5866034030914307, -0.0664697214961052, 0.1166640967130661, 0.9472719430923462, -0.032130587846040726, 0.3993399143218994, -1.0646977424621582, 0.6283635497093201, 0.7123150825500488, 0.8611401319503784, 0.4557632803916931, 0.5061275959014893, -0.0787518098950386, -1.3363759517669678, -0.08694233745336533, -0.6460406184196472, 0.5288696885108948, -0.030929913744330406, -0.6198499798774719, 0.12351062893867493, -0.6075766682624817, 0.3277055621147156, -0.033437926322221756, 0.07329218089580536, 0.6357158422470093, 0.09223349392414093, 0.2509264051914215, 0.7173560857772827, -0.0990617498755455, -0.5807308554649353, -0.7101970314979553, -0.28288036584854126, 0.26978054642677307, -0.42355605959892273, -0.014776654541492462, 0.12496691197156906, -0.08232656866312027, 0.4180929660797119, -0.0005935837980359793, -0.20198707282543182, -0.6697310209274292, 0.6651506423950195, 1.3905465602874756, -1.0071959495544434, -0.7368671894073486, -0.8216189742088318, 0.5259437561035156, 1.0568931102752686, 0.16660583019256592, 0.7052769660949707, 0.815359354019165, -0.2838611900806427, 0.24291285872459412, 0.10168728232383728, 1.677477240562439, 0.10255701094865799, -0.5032323598861694, -0.425809770822525, 0.39103272557258606, 1.0056706666946411, -1.4378941059112549, 0.07043763995170593, -0.07042078673839569, -0.8098970651626587, 0.30683451890945435, -0.0003087229561060667, -0.80555260181427, 1.594200849533081, 0.05889206379652023, -0.14682750403881073, 0.48706433176994324, 0.12002666294574738, -0.8328253626823425, 0.18769647181034088, 0.5999420881271362, -0.9612698554992676, 0.23022620379924774, 0.3391948938369751, 0.4090999364852905, 0.8985971808433533, -0.2808803617954254, 0.676146388053894, -0.0602952316403389, -0.09077521413564682, -0.25454023480415344, 0.38589924573898315, -0.03196194767951965, 0.9120497107505798, 0.8242381811141968, 1.151336669921875, 0.06322315335273743, -0.5433676242828369, 0.3077954649925232, -0.26771655678749084, 0.22608980536460876, 1.2392772436141968, -0.01657712087035179, 1.1243276596069336, -1.7995786666870117, 0.36687541007995605, 1.2063716650009155, 0.07352563738822937, 0.5819194316864014, -0.16242749989032745, 0.1142394095659256, -1.418715238571167, 0.11679569631814957, 0.5332944393157959, -0.6331409811973572, 1.0022261142730713, 0.0827733650803566, 0.36999472975730896, -0.19465987384319305, -0.29756903648376465, -0.007960084825754166, -0.7956558465957642, -0.12959258258342743, -0.23770661652088165, -0.08590316027402878, 0.9854095578193665, 0.3996169865131378, 0.5023542046546936, 1.108459234237671, -0.42538243532180786, -1.5454683303833008, 0.2350824624300003, -0.618037760257721, -0.21988359093666077, -0.4578648805618286, -0.3456198275089264, -0.9121711850166321, -0.9631850719451904, -0.20022980868816376, -0.09055501967668533, -0.9974503517150879, -0.953970730304718, -0.2697889804840088, -1.6873278617858887, 0.8001524806022644, -0.17635679244995117, 1.0546181201934814, 0.6673910021781921, 0.071720190346241, 0.11647229641675949, 0.05394690856337547, -1.0141862630844116, 0.42887812852859497, 0.685173749923706, -0.5761334300041199, -0.38705873489379883, -0.4361667335033417, -0.43792667984962463, 1.1932212114334106, 0.42000627517700195, -0.14359839260578156, 0.8199148774147034, 0.9661590456962585, 1.1979213953018188, -0.5255661606788635, -0.550816535949707, 1.1486308574676514, -0.4461268484592438, 1.4270533323287964, 0.40382060408592224, -0.6389539241790771, -0.3765508532524109, 0.1071779876947403, -1.5483652353286743, 0.8714925646781921, 0.06915315985679626, -0.1357118785381317, 0.607833981513977, 0.7230777144432068, 0.08491139858961105, 1.2351347208023071, -0.4749051630496979, -0.6662352085113525, 0.5554559826850891, 0.1444583684206009, -0.7506626844406128, 0.40293848514556885, 1.3073818683624268, 0.48020896315574646, -0.719187319278717, -0.42974182963371277, -0.0737406462430954, -0.3006078600883484, 0.1920270323753357, -0.4716050922870636, 0.3201034963130951, 0.2708092927932739, 0.09827514737844467, -0.06781549751758575, 0.508399248123169, -0.8767942190170288, 0.1298561841249466, 0.8451656103134155, 0.9670442938804626, 0.7147107124328613, -0.5310221910476685, 0.9513242244720459, -0.32143548130989075, 0.1086023673415184, 0.2914678752422333, -0.29231417179107666, 0.6987926363945007, 0.321231484413147, 0.6011146306991577, 0.3202369511127472, -0.18964450061321259, -0.44304966926574707, -0.9040641784667969, -0.0011148119810968637, 0.31590238213539124, -0.5799689292907715, -0.45364198088645935, 0.06632234901189804, -0.2348935306072235, 0.2146434187889099, 0.14888712763786316, 0.30870911478996277, -1.3726556301116943, -1.015675663948059, -0.6946107149124146, -0.3555999994277954, 0.4699864089488983, -0.38339963555336, 0.5729045867919922, -0.025949111208319664, -2.1127476692199707, 0.337667316198349, -0.5812409520149231, -1.9427688121795654, -0.12025711685419083, -0.5932846665382385, 0.8470113277435303, -0.331853449344635, 0.09695397317409515, -0.13313448429107666, 1.1035128831863403, -0.9708783626556396, -1.0562286376953125, -1.0272818803787231, 0.07923270761966705, 0.7739575505256653, 0.675478458404541, -0.8632662892341614, 1.4455766677856445, 0.11472535878419876, -0.38313570618629456, -0.27372124791145325, -0.5098811984062195, -1.1872658729553223, -0.07369180023670197, -0.3339560031890869, 0.014135963283479214, 0.35802164673805237, 1.5527548789978027, 0.7058191299438477, 0.7589026689529419, 0.47561147809028625, 1.1619436740875244, -0.9723542928695679, -1.2189639806747437, 0.1643814742565155, 0.10053025186061859, -0.8912933468818665, -0.2432999312877655, 0.2372789829969406, -0.5251355171203613, -0.8878738284111023, 0.26732337474823, 1.0664490461349487, -0.5992628931999207, 0.5003772974014282, 0.4058828353881836, 0.14625075459480286, -0.9805785417556763, 0.19619959592819214, -0.1904880851507187, -1.2350690364837646, -0.0592539943754673, 0.018746845424175262, 0.5661157965660095, -1.6482067108154297, 0.4221401810646057, 0.5668731331825256, 0.34529128670692444, 0.17818187177181244, 0.12243181467056274, -0.3506298363208771, 1.0013866424560547, -0.29820412397384644, 0.7174345850944519, 0.7604698538780212, -0.006183556281030178, -0.24187041819095612, 0.5664795637130737, -0.5284814834594727, -0.16522054374217987, -0.05504574626684189, -0.5145039558410645, -0.6947427988052368, 1.0153334140777588, 0.10402039438486099, -0.004878803621977568, 0.5619436502456665, 0.4773987829685211, -0.081082783639431, -0.8182433843612671, 1.7255057096481323, -1.0218836069107056, -1.1031652688980103, 0.8154091835021973, 0.8030078411102295, -0.40449681878089905, 0.18929621577262878, -0.11295808851718903, 0.6970232725143433, -0.12201807647943497, 0.5565335154533386, -0.293067991733551, -0.8154287338256836, 0.3643266558647156, -0.12069245427846909, -0.6190751791000366, -0.24645358324050903, -0.7860903739929199, -1.402795672416687, -0.5979145765304565, -0.10925666987895966, 0.15054403245449066, 0.70100998878479, -0.5353791117668152, -1.333227515220642, -0.16900406777858734, 0.5287895798683167, 0.05998208373785019, -0.343730092048645, 0.07135593891143799, -0.8510313034057617, -0.20004859566688538, 1.1919256448745728, -0.6373625993728638, 1.1008386611938477, -0.07316894084215164, -0.07360871136188507, -0.8829755187034607, 0.8067112565040588, 0.597938060760498, 0.11169304698705673, -0.6586824655532837, -0.7004462480545044, 0.6684040427207947, -0.4075727164745331, 0.6642376780509949, 0.2946060001850128, 0.30477049946784973, 0.5454409718513489, 0.5908406972885132, -1.0938283205032349, -0.5347751975059509, 0.07455451041460037, 0.7648605704307556, -0.4969525635242462, -0.726453959941864, -0.6783750653266907, 0.3127797544002533, 0.016263417899608612, 0.726738691329956, -0.4733646810054779, 1.2852555513381958, 0.7469772100448608, -1.5089046955108643, -0.20479336380958557, -0.5328111052513123, 1.5265742540359497, -0.08199777454137802, 0.1433599591255188, -0.6030860543251038, 0.29223111271858215, -0.3139028251171112, -0.9971287250518799, -0.19054701924324036, -0.4830488860607147, -0.5268338918685913, -0.36911389231681824, -1.0180258750915527, -0.24956302344799042, -1.0987162590026855, -0.1881915181875229, 0.2798498570919037, 0.09741716831922531, 0.4488638937473297, -0.6802390217781067, -1.3651949167251587, -0.27955207228660583, 0.832866907119751, 0.3852829337120056, 0.25424227118492126, 1.5998260974884033, 1.4051045179367065, -0.2160273939371109, -0.8417130708694458, -0.5606553554534912, 0.5833019614219666, -0.639385998249054, 0.8327537178993225, -0.9057145118713379, -0.6426712274551392, -0.18024545907974243], [0.4255019426345825, 2.2603023052215576, -2.6630823612213135, -0.6376784443855286, 0.7043351531028748, 0.38070639967918396, 1.580428123474121, -0.25285643339157104, 0.1753581315279007, -0.9082460403442383, -0.03316260874271393, 0.04538312554359436, 1.2403452396392822, 0.5594602823257446, 0.6160067319869995, 0.49644872546195984, 0.5487469434738159, -0.14239829778671265, 0.07241818308830261, 0.8804488182067871, 0.02089826576411724, -0.9481446146965027, 0.13746672868728638, -0.05025837570428848, -0.7347660660743713, -0.3951285183429718, -1.17867112159729, 0.05031872168183327, -0.6725817918777466, -0.6261062026023865, 1.4488941431045532, -0.3937866687774658, -0.5394921898841858, -0.5740483999252319, -0.6646607518196106, -0.32223039865493774, 1.178524136543274, -0.18260495364665985, 0.5263820290565491, 0.8932321071624756, 2.023451805114746, 0.26482102274894714, -0.6383591890335083, -1.4010519981384277, 0.853618323802948, 0.3132439851760864, 0.3535222113132477, -0.7614766359329224, 0.5083553194999695, 0.09487203508615494, 0.883493959903717, -0.5880183577537537, 0.07788504660129547, 1.04271399974823, 1.282256841659546, -1.4845598936080933, 0.0801374614238739, 0.210363507270813, 0.4288467466831207, -0.15076814591884613, 0.7175524234771729, 0.08696555346250534, 0.006862870883196592, 1.0926775932312012, 0.14143317937850952, 0.003356418339535594, 0.31648534536361694, 0.21024374663829803, 0.2930741012096405, 0.1478263884782791, 0.23682962357997894, 0.22781115770339966, -0.5901719927787781, 0.06187710165977478, -1.1759320497512817, 0.15926194190979004, -0.16813747584819794, 0.3010236322879791, 0.3740786612033844, 0.5453935265541077, -0.3606525659561157, -0.28772732615470886, 0.15279445052146912, -0.24941487610340118, 0.4112473130226135, 0.26607829332351685, 0.6546486616134644, -0.2673158645629883, -0.31248632073402405, 2.052189826965332, 0.2033894807100296, 0.002256059553474188, 0.8713067770004272, 0.2654719650745392, -0.5321215391159058, -0.6917719841003418, 0.4310985803604126, -0.05876757949590683, -0.7804856300354004, -0.46302059292793274, -0.4978695213794708, -0.8196893334388733, 0.23642095923423767, 0.3511330187320709, 0.05984429270029068, 1.7823200225830078, 0.9270952939987183, -0.2894265949726105, -0.7826763391494751, 0.21272635459899902, 0.09411311894655228, 0.09698362648487091, -0.21190594136714935, -0.35844624042510986, -0.823888897895813, 1.0911946296691895, 1.1982643604278564, 0.42322295904159546, 0.2217978984117508, 0.757084310054779, -0.3717075288295746, -0.4059912860393524, -1.008711576461792, 0.5578678846359253, 0.7382955551147461, -0.1770687699317932, -0.9560896158218384, 0.19980032742023468, 0.06866497546434402, -0.012402809225022793, 0.44152966141700745, -0.2761867940425873, -0.19231174886226654, 0.5796293616294861, -0.35830798745155334, 1.354720115661621, 0.04558926820755005, -0.7968837022781372, 0.1742924302816391, 0.1230786144733429, 0.0813596174120903, 0.14887231588363647, -0.4702134132385254, -0.42353540658950806, 0.5490325689315796, -0.8488413095474243, 0.047079216688871384, -0.47969022393226624, -1.1981799602508545, 0.2717236578464508, -1.766129493713379, 0.22457867860794067, -0.5144038200378418, 1.6175575256347656, 0.4324324429035187, -0.18766118586063385, 0.30534493923187256, 0.9309521317481995, 0.6747549772262573, 0.25961005687713623, 1.0497465133666992, -0.3595763146877289, -0.647650957107544, 0.9633753299713135, 0.2119004726409912, -0.5143961310386658, 0.9386624693870544, 0.6089925169944763, 0.09074399620294571, 0.3866785764694214, -0.6536552309989929, -0.20835433900356293, -0.18265490233898163, 0.01797548122704029, -0.3376813530921936, 0.02133922278881073, 1.2283332347869873, -0.6086398959159851, -1.3427904844284058, -1.7670124769210815, 0.27748721837997437, -0.24089713394641876, -0.05761522427201271, -0.33260151743888855, 0.6067822575569153, 0.1496540904045105, 0.1235528513789177, -0.2001621425151825, -0.05309631675481796, -0.936332106590271, -0.4961759150028229, 0.12417417764663696, -0.8766290545463562, 0.1059064269065857, -1.1748299598693848, -1.0008004903793335, 0.47644171118736267, -0.5084042549133301, -0.6684209704399109, -0.4204351305961609, -0.5038108229637146, -0.6671189069747925, -0.8371584415435791, 0.14757777750492096, -0.4570144712924957, 0.590872049331665, -0.7413602471351624, 0.6777158975601196, -0.6010379195213318, 0.2514435350894928, 1.1064023971557617, -0.17872485518455505, -0.8135738968849182, 0.1924675852060318, 0.13074886798858643, -1.0459108352661133, 0.5941328406333923, 0.2861503064632416, 0.7129331231117249, 0.07130474597215652, 0.11668149381875992, -0.06741809844970703, 0.4651836156845093, -0.10723468661308289, 1.4911173582077026, 0.013033776544034481, -0.28566500544548035, -0.7945749759674072, -0.3787526488304138, -0.18497337400913239, -1.0589932203292847, -0.5002393126487732, 0.9294294118881226, 0.4043167531490326, -1.4153443574905396, 0.5122805237770081, -0.5389900207519531, 0.17829298973083496, 0.6111229658126831, 1.3435603380203247, 0.28643301129341125, 0.2165469527244568, -0.5921172499656677, -0.1622544229030609, -0.7658095955848694, 0.09580234438180923, 0.6740403175354004, -0.49895763397216797, 0.18056620657444, 1.5982630252838135, 0.6321132779121399, -0.22586947679519653, 0.5794263482093811, -1.2131997346878052, 0.3163476884365082, -0.3592284321784973, -0.11081695556640625, 0.2708684504032135, -1.0759536027908325, 1.2372264862060547, 0.04708702489733696, -0.5345436334609985, -0.3223024904727936, 0.10432472825050354, 0.5354478359222412, -0.7495568990707397, -0.3281046450138092, 0.013692371547222137, 0.21059873700141907, -0.21278199553489685, 0.0829404667019844, 0.2271924614906311, -0.4338972866535187, 0.42019376158714294, 0.0012310664169490337, -0.008208699524402618, 0.27110812067985535, 0.24929706752300262, 0.18239320814609528, 0.6663897037506104, -0.4589403569698334, -1.0549986362457275, -0.7452343702316284, -0.2461133599281311, 1.016624093055725, 0.15523111820220947, -0.638554036617279, -0.1257309913635254, 1.1633048057556152, -0.06696431338787079, 0.1906908005475998, 0.08458263427019119, -0.542253851890564, -0.25414496660232544, 0.3995034992694855, 0.1165182888507843, 1.1296635866165161, -0.8969175219535828, -0.4697181284427643, -0.4291227459907532, 0.5482348203659058, 0.8576558828353882, 0.39329811930656433, 1.1418862342834473, -0.4342765212059021, 0.059495989233255386, 0.3172996938228607, -0.4396003484725952, -0.7321164011955261, -0.5112569332122803, -0.551073431968689, -0.4979062080383301, -0.4883100688457489, 0.27335503697395325, -0.05412977933883667, 0.48138707876205444, -0.12103462219238281, 0.41376593708992004, 0.6514820456504822, -0.6336573362350464, -0.5114007592201233, -0.016714001074433327, -0.5377985835075378, -1.1938709020614624, 1.1236915588378906, 0.9919443130493164, -0.5675238370895386, -0.19066999852657318, 0.5865404605865479, 0.33622246980667114, 0.1171916201710701, -0.2524879276752472, 0.2681535482406616, -1.0814496278762817, -0.9002434015274048, -0.33602386713027954, 1.0736826658248901, -0.10348063707351685, -0.07999785989522934, -0.6071726083755493, 0.13719792664051056, 0.5912469029426575, -0.5551469326019287, -0.8115795850753784, 0.18945187330245972, -0.09212950617074966, -0.9955385327339172, 0.02236807532608509, 0.41020557284355164, 0.7114647030830383, -0.23428653180599213, -0.36578431725502014, -0.2837189733982086, -0.5043923258781433, -0.11972767114639282, 0.8353561758995056, 0.5138132572174072, 1.218286156654358, -0.0037560509517788887, -0.11706580966711044, 1.2775096893310547, -0.04881710931658745, 0.04009261727333069, -1.6165239810943604, 0.7483980059623718, 0.6236811280250549, 1.376207709312439, 0.2547147870063782, 0.17122837901115417, 0.0433867871761322, -0.7865970134735107, -0.13091516494750977, 0.11297260224819183, 1.087464690208435, -0.2849542200565338, 0.3841618001461029, -0.25500747561454773, -0.1172550693154335, 0.3037421703338623, -0.6652942299842834, -0.037324901670217514, -0.12130650132894516, 0.25665032863616943, -1.152487874031067, 1.5349810123443604, -0.20056571066379547, -0.17375105619430542, -1.430019736289978, -0.43320876359939575, 0.5348855257034302, 0.13977937400341034, -0.4123789668083191, -0.21759666502475739, 0.20197494328022003, 0.6233667135238647, -0.8164458870887756, -0.4612092077732086, -0.4895910322666168, 0.7068250179290771, 0.620035707950592, -1.1258288621902466, -0.06678392738103867, -0.19598329067230225, 0.6964440941810608, 0.17890490591526031, -0.10053648054599762, 0.6540544033050537, 0.01995995081961155, 0.2650330662727356, -0.18826928734779358, 0.14137031137943268, 1.0503383874893188, -0.06953442096710205, -0.6026560664176941, 0.26330408453941345, 0.4272528290748596, -0.03576464205980301, -0.16967809200286865, -0.4672538936138153, -0.059749238193035126, -0.2052087038755417, 0.313959538936615, 0.11276412010192871, -0.10070160031318665, 1.247655987739563, 0.37840697169303894, -0.18903718888759613, 0.2538054585456848, 0.2926712930202484, -1.110358715057373, 0.05582302808761597, 0.06167230010032654, -0.4886234402656555, -0.096369169652462, 0.04941481724381447, -0.5201699733734131, 0.4069431722164154, 0.11829638481140137, 0.508105456829071, 0.08389420807361603, -0.08537503331899643, -0.5056812167167664, 0.1050027459859848, 0.4242252707481384, 0.32026031613349915, 0.9734576344490051, 1.3455924987792969, 0.16861124336719513, -0.991223156452179, 0.6533817052841187, -0.5462179780006409, -0.13845308125019073, 1.2051899433135986, 0.40734827518463135, 1.596346378326416, -1.6162452697753906, -0.17418543994426727, 0.4468022286891937, 0.23480041325092316, 0.3130687475204468, -0.10213244706392288, 0.6160795092582703, -0.7162238359451294, 0.26232731342315674, 0.41382718086242676, -0.37337106466293335, 0.9136620163917542, -0.04701399803161621, 0.056077245622873306, 0.6897820830345154, -0.8389158248901367, 0.15523473918437958, -0.9338033199310303, -0.14990514516830444, 0.5150009989738464, -0.42324984073638916, 0.6703817844390869, 0.6898335218429565, 0.7369072437286377, 1.3883150815963745, -0.41736069321632385, -1.300169587135315, 0.9694635272026062, -1.235682487487793, 0.031049568206071854, 0.10765168815851212, -0.7433276772499084, -0.3431740403175354, -0.44452881813049316, -0.48673713207244873, -0.3501218855381012, -0.7601606249809265, -0.222567617893219, -0.6000186800956726, -1.1513935327529907, 0.056985627859830856, 0.08778480440378189, 1.297789454460144, 0.3574695587158203, 0.18221235275268555, 0.6726337671279907, 0.7484074234962463, -0.9816579818725586, -0.3948650658130646, 0.2114446461200714, -0.4541395604610443, 0.05067455768585205, -1.07785165309906, -0.7517681121826172, 1.1379072666168213, 0.4921441674232483, 0.5026125907897949, 0.5604013800621033, 1.022282600402832, 0.838495671749115, -0.8001458644866943, -0.3353172540664673, 0.5270026326179504, 0.07486171275377274, -0.24945351481437683, 0.37012770771980286, -0.7251166105270386, -0.38312843441963196, -0.2234182506799698, -1.6664272546768188, 0.5669627785682678, 0.040995217859745026, -0.27644744515419006, 0.7567609548568726, 0.24043817818164825, 0.8519566059112549, 1.1817129850387573, -0.27964964509010315, -0.12226174026727676, 0.33896100521087646, 0.4646380543708801, -1.1946823596954346, 0.6679897904396057, 0.7932437062263489, 0.6429993510246277, -0.9058667421340942, -0.03266089782118797, -0.05802658945322037, -0.6692673563957214, -0.11135242134332657, -0.10235808789730072, 0.7014849185943604, 0.9311778545379639, -0.2397187352180481, -0.41733288764953613, 0.4371338188648224, -0.4158923327922821, 0.22016282379627228, 0.2698010504245758, 0.062475401908159256, 0.5272499918937683, -0.25077351927757263, 0.5507712960243225, -0.9419979453086853, -0.8718783855438232, -0.051915284246206284, -0.5646511316299438, 1.0245015621185303, 0.20993925631046295, -0.043866563588380814, 0.11679142713546753, 0.45139235258102417, -0.5274800658226013, -0.25532227754592896, 0.45186930894851685, -0.06033040210604668, -1.11017906665802, -0.15269143879413605, -0.058483708649873734, -0.12331840395927429, 0.16329434514045715, 0.07311458140611649, -0.15234380960464478, -1.2514277696609497, -1.2982553243637085, -0.36706507205963135, -0.18930277228355408, 0.6009454727172852, -0.4557593762874603, 0.13897693157196045, 0.3788752257823944, -1.6636847257614136, 0.47290071845054626, 0.2312004566192627, -1.5127047300338745, -0.08100797981023788, -0.5281632542610168, 0.8993927836418152, 0.06364982575178146, 0.32039839029312134, -0.46306851506233215, 0.8789371252059937, -1.5621681213378906, -1.4186192750930786, -0.2960527837276459, -0.4259023368358612, 0.8928224444389343, 0.478538453578949, -0.9438599944114685, 1.0001704692840576, 0.45462659001350403, -0.22548989951610565, -0.17270860075950623, 0.6795457601547241, -0.9954238533973694, -0.12712769210338593, 0.1916051208972931, 0.13476639986038208, 0.28559228777885437, 1.8869407176971436, -0.13942043483257294, 0.9619322419166565, -0.31251704692840576, 0.74803227186203, -0.3948894143104553, -1.1625840663909912, -0.1764896810054779, 0.28024715185165405, -1.1066049337387085, -0.642101526260376, -0.5715680122375488, -0.45194289088249207, -0.699270486831665, 0.48421886563301086, 0.9512232542037964, -1.0118465423583984, 0.5835034251213074, -0.3665805459022522, 0.153614342212677, -1.3153501749038696, 0.6491442918777466, 0.2930087447166443, -0.46121668815612793, -0.17622122168540955, -0.34011322259902954, 0.6468867063522339, -1.376889705657959, -0.23085500299930573, 0.2091972380876541, -0.22119808197021484, -0.3962342441082001, 0.3403455317020416, 0.6234743595123291, 0.196499302983284, -0.40129607915878296, 1.298970341682434, 1.1785786151885986, -0.07356933504343033, -0.3545035421848297, 0.42348217964172363, 0.12509076297283173, 0.37540140748023987, 0.05485955625772476, -0.36679333448410034, -1.030256748199463, 0.8235434293746948, 0.4656374156475067, 0.0651681125164032, -0.0010233083739876747, 0.38368070125579834, -0.5631188750267029, -0.5008294582366943, 1.340632677078247, -0.5467405915260315, -0.9416602849960327, 0.6919719576835632, 0.5799505710601807, 0.09186828881502151, 0.17498692870140076, 0.32510119676589966, 0.5414710640907288, -0.05314198136329651, 0.5861150622367859, 0.49313658475875854, -0.21419405937194824, 0.13674718141555786, -0.03118116967380047, 0.0836298018693924, -0.053361982107162476, -1.1353507041931152, -1.5733586549758911, -0.570966362953186, -0.2247413992881775, 0.06519506871700287, 0.22196844220161438, -1.2056078910827637, -1.4810746908187866, 0.35922038555145264, -0.029253307729959488, -0.19470113515853882, -1.0428073406219482, -0.06037959083914757, -0.6724843978881836, -0.06740322709083557, 0.47525754570961, -0.03338802605867386, 0.7880147695541382, 0.11427178978919983, 0.025250019505620003, -0.27658286690711975, -0.04835204407572746, 0.0493449829518795, -0.06717103719711304, -0.121769018471241, -0.028967803344130516, 0.14404398202896118, -0.7718117833137512, -0.44064879417419434, 0.6022683382034302, 0.40702876448631287, 0.050578635185956955, 0.07726365327835083, -0.9854177832603455, 0.3498717248439789, 0.31360816955566406, 0.5761927962303162, -0.39220523834228516, -0.7700791358947754, -1.205987572669983, 0.14689107239246368, 0.017829153686761856, 1.306925892829895, -0.5990102887153625, 0.9512238502502441, 0.3863576352596283, -0.47531479597091675, -0.07294292002916336, -0.5127511620521545, 0.9007112383842468, 0.030740171670913696, 0.4511420428752899, -0.5727114677429199, -0.2704222500324249, -0.6683335900306702, -1.389756202697754, 0.2718963027000427, 0.2004997730255127, -0.1447765827178955, 0.335671603679657, -0.9669722318649292, -0.5205391645431519, -0.5943292379379272, 0.12251115590333939, -0.2755677402019501, 0.21246042847633362, 0.5589103102684021, -0.5328466892242432, -0.6559462547302246, -0.273316890001297, 0.012901500798761845, 0.5196828842163086, 0.3582902252674103, 1.0731873512268066, 1.935038685798645, 0.47379088401794434, 0.20567205548286438, -0.2009332925081253, 0.6369829177856445, -0.812221109867096, 0.30844956636428833, -1.265031337738037, -0.038671765476465225, -0.24251163005828857], [-0.343694806098938, 1.9625178575515747, -2.375685691833496, -0.2768937051296234, 0.4260280728340149, 0.22442077100276947, 1.2425543069839478, -0.2504919469356537, -0.1658092588186264, -0.8420299291610718, -0.6582894325256348, 0.09357324987649918, 0.5160896182060242, 0.38412606716156006, 0.4369991421699524, 0.8271948099136353, 0.9917100071907043, 0.47478702664375305, 0.3520936965942383, 1.6579028367996216, -0.31759360432624817, -0.8463040590286255, -0.6801486611366272, -0.434536337852478, -0.12321514636278152, -0.38810524344444275, -0.6432965993881226, 0.29739710688591003, -0.641029953956604, -0.8311090469360352, 0.9909844994544983, 0.209133118391037, 0.7909102439880371, -0.1858440637588501, -1.3795080184936523, -1.0614815950393677, 0.4562593698501587, 0.2573266327381134, 0.38071224093437195, 0.0036789514124393463, 1.7261875867843628, -0.03462149575352669, -0.632175862789154, -2.0949995517730713, 0.4601495862007141, -0.5957299470901489, 0.1789693832397461, -0.8122031092643738, 1.166148066520691, -0.3129478991031647, 0.326521098613739, -1.3912253379821777, 0.30930548906326294, 0.9647585153579712, 1.5993670225143433, -0.8059349656105042, 0.37407681345939636, 0.5777922868728638, -0.8573057651519775, 0.5583544969558716, 1.2665787935256958, 0.5579970479011536, 0.6911858916282654, 1.001477599143982, 0.1932951956987381, 0.13622695207595825, 0.26958608627319336, 0.49672985076904297, 0.008060241118073463, 0.3118465542793274, 0.9291746616363525, 0.10660791397094727, -0.2867332100868225, 0.5802794694900513, -0.6572152376174927, 0.0757608637213707, 0.14323103427886963, 0.6919217705726624, 0.4981365501880646, -0.44457918405532837, 0.11966125667095184, -0.0612218901515007, 0.2511846125125885, -0.8670823574066162, -0.3193925619125366, 0.2484501600265503, 0.33869263529777527, -0.7687584757804871, -0.29649388790130615, 1.1968574523925781, 0.7582235932350159, 0.038955070078372955, 0.9834092855453491, -0.027163835242390633, -0.16851955652236938, -0.963539183139801, 0.210757315158844, -0.34957587718963623, -0.21881301701068878, -0.691294252872467, -0.17436933517456055, -0.5949361324310303, 0.667972207069397, 0.4179110825061798, 0.3980937898159027, 1.356793761253357, 0.9861037135124207, 0.23606884479522705, -0.8779032826423645, 0.2460774928331375, -0.049326539039611816, -0.48161154985427856, -0.8896802663803101, -0.9910731315612793, -0.6581656336784363, 0.9721643924713135, 1.4207940101623535, -0.029309449717402458, 1.0518795251846313, 1.4958559274673462, 0.17122811079025269, -0.8533712029457092, -0.7244518399238586, 0.3728259801864624, 1.0306956768035889, -0.285478413105011, -1.6606501340866089, -0.2954708933830261, -0.30682989954948425, 0.12443143874406815, 0.8923538327217102, -0.5986779928207397, 0.053717002272605896, 0.8796413540840149, -0.13084730505943298, 0.994778573513031, -0.27647295594215393, -0.7090359330177307, 0.7276734113693237, 0.5468149781227112, 0.3909878730773926, 0.5154905319213867, -0.48228394985198975, 0.22676844894886017, 0.5910239815711975, -0.8115260601043701, 0.1750350445508957, -0.3676402270793915, -0.6249006986618042, 1.1157106161117554, -1.8409860134124756, 0.670746386051178, -0.3722810447216034, 1.7368853092193604, 0.5301207900047302, -0.5559476017951965, 0.019915103912353516, 0.5517739653587341, 0.3352035582065582, 0.39667972922325134, 1.4047209024429321, -0.2948928773403168, -0.827414333820343, 0.5573515295982361, 0.7545239329338074, -0.7341567873954773, 0.5926036238670349, 0.20646366477012634, -0.2889820337295532, 0.8005254864692688, -0.4239334464073181, 0.17047378420829773, -0.6895402073860168, -0.49551281332969666, 0.09378482401371002, -0.5631556510925293, 0.7755818367004395, 0.6055084466934204, -0.8967276215553284, -1.1740103960037231, 0.6283586025238037, -0.35219258069992065, 0.2449316680431366, -0.1682303249835968, 0.5015048980712891, -0.3198826313018799, 0.005316146649420261, -0.3411063253879547, -0.8262407779693604, -1.3849389553070068, -0.39760294556617737, 0.2880946099758148, -1.1126960515975952, 0.7046816349029541, -1.3605083227157593, -0.7367481589317322, 0.5213983058929443, -0.2163541465997696, -0.12668634951114655, -0.14860226213932037, -0.04942408949136734, -0.047844383865594864, -1.0621651411056519, 0.04943698272109032, -0.322095662355423, 0.6715396046638489, -0.5175132155418396, 0.5385156869888306, -0.42347875237464905, 0.3075524866580963, 0.9097792506217957, -0.3430558741092682, -0.9874196648597717, -0.060246992856264114, -0.2442929893732071, -1.3706402778625488, 0.23668040335178375, 0.16090275347232819, 0.3222825527191162, 0.20776765048503876, 0.3154222071170807, -0.2208571434020996, 0.6880677938461304, -0.0997559055685997, 0.992527961730957, -0.14355623722076416, -0.08969848603010178, -1.2330241203308105, 0.011860751546919346, 0.04621462523937225, -0.6296706795692444, -0.2531915009021759, 0.623890221118927, 0.606773853302002, -1.4117323160171509, 1.1213278770446777, -0.3261401951313019, 0.5295013785362244, 0.7477890253067017, 0.6522216200828552, 0.8814274072647095, 0.6371995210647583, 0.2192692905664444, -0.21081306040287018, -0.5890634655952454, -0.3934731185436249, 0.9405444860458374, -0.7423155307769775, 0.1850382387638092, 1.1311999559402466, 0.8323516845703125, -0.15499117970466614, 0.6913203597068787, -1.2919461727142334, 0.31044453382492065, -1.2521711587905884, -0.15437301993370056, 0.3875201344490051, -0.8732690215110779, 1.2196532487869263, 0.3481619656085968, -1.193825602531433, -0.3608490526676178, -0.30430370569229126, 0.6576962471008301, -0.49186718463897705, -0.13496385514736176, -0.26213544607162476, 0.6574817895889282, 0.23715882003307343, 0.009636947885155678, 0.213080033659935, -0.2309853881597519, 1.284211277961731, 0.0617218054831028, -0.12269411236047745, 0.19305318593978882, 1.3967024087905884, 0.18207602202892303, 0.9621849656105042, -0.2257971316576004, -0.8868412375450134, -0.7299841046333313, -0.8574604392051697, 0.6314170956611633, 0.19361042976379395, -0.4261901378631592, 0.3153907060623169, 1.132084608078003, -0.0055547431111335754, 1.5183324813842773, -0.14090529084205627, -0.011148333549499512, -0.12538032233715057, 0.6884745955467224, 0.6596513390541077, 0.7045769095420837, -0.8867234587669373, -0.622782826423645, 0.32160043716430664, 0.14140938222408295, 0.921838104724884, 0.7763587832450867, 1.2805429697036743, -0.9076089262962341, 0.10690770298242569, -0.19414998590946198, 0.10054393112659454, -0.6158729791641235, -0.12586276233196259, -0.579933762550354, -0.4651268422603607, -0.5713587403297424, -1.059662103652954, -0.02168460562825203, 0.37641119956970215, 0.15106706321239471, 0.6947575211524963, 0.6699918508529663, -1.1842126846313477, -1.8366230726242065, -0.5053335428237915, -0.06537625938653946, -1.1441447734832764, 1.3177917003631592, 1.018587589263916, -1.091550350189209, 0.3047631084918976, 0.2597757875919342, -0.2177516222000122, -0.3120698630809784, -0.4484247863292694, 0.11815886944532394, -0.6670706272125244, -0.7597360014915466, 0.025489570572972298, 1.0119014978408813, 0.08942627161741257, 0.06363280862569809, 0.09020751714706421, 0.7774282097816467, 0.30616092681884766, -0.3015364110469818, -0.9995706081390381, 0.2415292114019394, -0.07706591486930847, -1.0938663482666016, -0.3938055634498596, 1.126102089881897, 0.8178644776344299, -0.4671567678451538, -0.9923257827758789, -0.1986701637506485, -0.30142903327941895, -0.6994250416755676, 0.1692027598619461, 0.5072735548019409, 0.6595048904418945, -0.6754254102706909, 0.35554516315460205, 0.7535915970802307, -0.39687544107437134, 0.2856270670890808, -1.0998241901397705, 0.9007698893547058, 0.8561846017837524, 1.4418638944625854, -0.1631024181842804, 0.5078617930412292, 0.4662957489490509, -0.6174519658088684, -0.4177769124507904, -0.029663940891623497, 0.549955427646637, -0.366573691368103, -0.560593843460083, -0.4817095100879669, -0.267024427652359, 0.4516352713108063, 0.03800783306360245, -0.07722419500350952, 0.44690170884132385, -0.03843469172716141, -0.4001029431819916, 1.1964937448501587, -0.06758874654769897, -0.10366162657737732, -0.6192378401756287, 0.007954634726047516, 0.27747607231140137, -0.36129793524742126, -0.15981937944889069, -0.08959829807281494, -0.42509761452674866, 0.27633464336395264, -0.42506858706474304, -0.7317386269569397, -0.9545947313308716, 0.9387327432632446, 1.0147886276245117, -0.9192060232162476, -0.7227080464363098, -0.7639938592910767, 0.6441158056259155, 0.2025029957294464, -0.4530598223209381, 0.7998038530349731, 0.41466933488845825, -0.06482833623886108, -0.23688611388206482, -0.03134365752339363, 1.1884891986846924, 0.1845199167728424, -0.16515810787677765, 0.28372490406036377, 0.5355029106140137, -0.20929677784442902, -0.6937699317932129, -0.1290564090013504, -0.265509694814682, -0.08506074547767639, -0.3992050290107727, 0.6937727332115173, -0.14857451617717743, 1.9344866275787354, 0.6378381252288818, 0.6171175837516785, -0.004538011737167835, 0.2606174349784851, -1.2090187072753906, -0.09347359836101532, 0.6530641317367554, -0.26401323080062866, -0.3858618438243866, 0.03300287202000618, -0.3903525471687317, 0.4084163308143616, -0.18322575092315674, 0.67741858959198, 0.45596861839294434, 0.5642412304878235, -0.14604291319847107, 0.0019368752837181091, 0.397998571395874, 0.3728457987308502, 0.935566246509552, 1.1859813928604126, -0.4716167151927948, -0.7241648435592651, 0.5609102249145508, 0.037747692316770554, 0.2891109585762024, 0.6894075274467468, 0.5187579989433289, 1.1674610376358032, -1.5024861097335815, -0.03766930475831032, 0.8494300246238708, 0.11390317231416702, 0.3530295193195343, 0.44082510471343994, 0.33377090096473694, -0.8640305995941162, -0.1469782143831253, 0.3399884104728699, -0.18517427146434784, 0.7855759263038635, 0.1680632084608078, 0.3770561218261719, 0.5787212252616882, -0.015096204355359077, -0.03309231624007225, -0.7487292289733887, -0.19109827280044556, -0.03154272213578224, -0.18479622900485992, 0.9160801768302917, 0.09016397595405579, 0.9530786275863647, 1.096175193786621, -0.7392213940620422, -1.2292699813842773, 0.7388023734092712, -1.2177995443344116, 0.06259274482727051, -0.47758588194847107, -0.11069171875715256, -0.5604835748672485, -0.47199708223342896, -0.567898690700531, -0.47671693563461304, -0.7601742148399353, -0.16710269451141357, -1.227183222770691, -0.7044119238853455, 0.574101448059082, -0.0319334901869297, 0.9550691843032837, 0.12162336707115173, 0.6020742058753967, 0.6205465197563171, 0.10281915217638016, -0.6612123250961304, 0.2895817756652832, -0.21767859160900116, -0.07589273154735565, -0.09292236715555191, -1.2271126508712769, -0.7674850821495056, 0.2309272736310959, 1.0169918537139893, 0.38826820254325867, 0.3366983234882355, 1.1720962524414062, 1.3065779209136963, -0.8522899150848389, -1.3037482500076294, 0.7727005481719971, -0.31003719568252563, 0.5577513575553894, 0.03878581151366234, -0.8618928790092468, 0.12361352145671844, -1.243791103363037, -1.778941035270691, 1.0030994415283203, -0.01650257781147957, 0.07346402853727341, 1.2612684965133667, 0.5890071988105774, 0.02835746295750141, 1.846746802330017, 0.059399235993623734, 0.04396591708064079, -0.381203293800354, -0.2622244656085968, -1.271475911140442, 1.0771937370300293, 1.418111801147461, 0.21677516400814056, -1.4503719806671143, 0.3399673402309418, -0.3123822808265686, -1.0116474628448486, -0.30369216203689575, 0.2871367931365967, 0.1256955862045288, 0.7057232856750488, -0.3417789041996002, -0.16596579551696777, 0.12600301206111908, -0.9598357677459717, -0.11498585343360901, 0.2426360547542572, 0.6753602623939514, 0.9131141901016235, -0.5475649237632751, 0.8791245818138123, -0.957310676574707, -1.1296632289886475, -0.2735517621040344, -0.652365505695343, 0.16494645178318024, 0.5766540169715881, 0.5201789736747742, -0.13255617022514343, -0.30675652623176575, -0.16004036366939545, -0.7985584735870361, 0.2172715663909912, 0.7702713012695312, -0.9810665249824524, -0.6744224429130554, 0.31541210412979126, -0.3382222354412079, 0.1424049437046051, 0.005193844437599182, -0.4098811447620392, -0.725193202495575, -1.1066240072250366, -0.3002178370952606, -0.7259848713874817, 0.6085817813873291, -0.6575003862380981, 0.28659138083457947, -0.20467381179332733, -1.2779747247695923, 0.4642522633075714, -0.052276451140642166, -1.5677047967910767, -0.4021192789077759, -0.6305690407752991, 0.6604645252227783, -0.31033897399902344, 0.9150384664535522, -0.218329519033432, 1.3242658376693726, -1.6095774173736572, -0.44924017786979675, -0.5387738347053528, -0.3828839361667633, 0.9245964884757996, 0.7632747888565063, -1.2588969469070435, 0.9645566344261169, -0.34698450565338135, -0.6695023775100708, -0.849476158618927, 0.005238847807049751, -1.3418105840682983, 0.3642384111881256, 0.09589579701423645, -0.08243997395038605, 0.5857172012329102, 1.5629159212112427, 0.31135207414627075, 1.0965328216552734, -0.33521199226379395, 1.2840677499771118, -0.19113199412822723, -0.8282162547111511, -0.23651497066020966, 0.26103466749191284, -1.0778120756149292, -0.49959704279899597, 0.2830977439880371, -0.6305436491966248, -0.6258172988891602, 0.4406284689903259, 0.7981048226356506, -1.0848066806793213, 0.24586787819862366, -0.8843997120857239, -0.7391418814659119, -1.0619242191314697, 0.6488610506057739, 0.6938907504081726, -1.3051238059997559, -0.5092746019363403, 0.028557095676660538, 0.4443489909172058, -1.2229644060134888, 0.43313974142074585, 0.4837694466114044, 0.4216330051422119, -0.07473957538604736, 0.21600666642189026, -0.1006949171423912, 0.9539998173713684, -0.17611883580684662, 0.6155561208724976, 1.2969425916671753, -0.1599678099155426, 0.4717544913291931, -0.02750461921095848, -0.24467208981513977, 0.05591001361608505, -0.2640019953250885, -0.8518694043159485, -0.5059283971786499, 0.8224318623542786, 0.2440079003572464, -0.276587575674057, 0.45990580320358276, 0.3720948398113251, 0.16086991131305695, -0.5702967643737793, 1.7914206981658936, -0.6851773262023926, -0.8504550457000732, 0.6567445993423462, 0.8575392961502075, -0.27783241868019104, 0.1008925586938858, -0.3068683445453644, 0.3865739107131958, -0.2831188142299652, 0.8478663563728333, 0.20776936411857605, -0.6630844473838806, -0.05448592081665993, -0.16471454501152039, -0.22457580268383026, 0.3075207769870758, -0.871421217918396, -1.2262059450149536, 0.121575266122818, -0.10623842477798462, -0.2191666215658188, 0.47314876317977905, -1.3302432298660278, -1.8900080919265747, 0.30069035291671753, -0.3328762650489807, -0.5961782336235046, -0.6922059059143066, -0.07951277494430542, -0.2665890157222748, -0.12086579948663712, 0.7861995697021484, -0.2459011673927307, 0.6144009828567505, -0.19785162806510925, 0.0522531159222126, -0.46580561995506287, -0.42823249101638794, 0.14371739327907562, -0.2891167104244232, -0.0016804265324026346, -0.3666003942489624, 0.6302290558815002, -0.48696500062942505, -0.3322937786579132, 0.30290308594703674, 0.1366702765226364, 0.0731116533279419, -0.1861899197101593, -0.5219008922576904, 0.3007798492908478, 0.029917579144239426, 0.32715868949890137, -0.41655686497688293, -0.799280047416687, -0.42917370796203613, -0.45159226655960083, 0.3301040828227997, 0.6493264436721802, -0.7938258051872253, -0.04953104257583618, 0.9604841470718384, -0.8751248121261597, -0.6500978469848633, -0.3170166611671448, 0.8908622860908508, -0.4057779014110565, 0.23177705705165863, -0.4670647382736206, -0.5150641798973083, -0.5396466851234436, -1.1535676717758179, -0.20302197337150574, -0.1299612820148468, -0.05625919625163078, 0.7067732810974121, -0.5151692628860474, -0.3888244926929474, -0.5758722424507141, 0.9038726687431335, -0.055652979761362076, 0.4792373776435852, 0.5772308707237244, -0.09249113500118256, -0.7956779599189758, -0.07649490237236023, -0.10172298550605774, 0.8292564153671265, 0.4515458643436432, 1.504763126373291, 1.2481741905212402, 0.36017632484436035, 0.4753909409046173, 0.2009616494178772, 0.6941925883293152, -0.7899167537689209, -0.14966623485088348, -0.8985288739204407, -0.5320348739624023, -0.09070336073637009], [0.6907796263694763, 2.0888941287994385, -3.015634536743164, 0.8448196649551392, 0.3774552643299103, 0.16739968955516815, 1.7747435569763184, -0.17212754487991333, 0.4779823422431946, -0.7862173914909363, -0.2757798731327057, 0.0880194827914238, 0.04958445206284523, 0.3883498013019562, 0.4797629714012146, 0.5753671526908875, 0.2992786467075348, -0.5905726552009583, 1.0830210447311401, 1.0199013948440552, 0.7422101497650146, -0.5672982931137085, -0.453447550535202, -0.231380894780159, -0.3374170660972595, 0.8556742072105408, -1.2904689311981201, 0.24524104595184326, -0.5079820156097412, -0.849265992641449, 1.6155844926834106, 0.4803467392921448, 0.03828468546271324, 0.41972845792770386, -2.3396334648132324, -0.10693016648292542, 1.0974534749984741, -0.020488396286964417, 0.6701352596282959, -0.511325478553772, 2.4686996936798096, -0.4166143238544464, 0.0729505866765976, -1.6861056089401245, -0.11506795883178711, 0.5169854164123535, 0.38832154870033264, -0.5403941869735718, 0.19093067944049835, -0.6959635615348816, 0.5770502090454102, -0.6937631964683533, 0.12961137294769287, 1.2256611585617065, 0.5613369941711426, -0.23837041854858398, 0.09405902773141861, 0.002160182688385248, -0.17823311686515808, 0.0760338306427002, 0.895855188369751, -0.3155284821987152, 0.17828835546970367, 0.5068075060844421, 0.380509614944458, -0.009041105397045612, 0.7313787341117859, 0.2166641652584076, 0.38472604751586914, 0.4936997890472412, 0.36659637093544006, -0.20576684176921844, -0.9577489495277405, -0.2981626093387604, -0.5087665915489197, 0.19745442271232605, -0.17341738939285278, 0.31788167357444763, 0.45769959688186646, 0.7031648755073547, -0.479301780462265, 0.325531005859375, 0.8731685876846313, -0.1013140007853508, 0.31552937626838684, 0.15903422236442566, 0.46461591124534607, -0.8716564178466797, -0.3467339277267456, 1.8990026712417603, 0.502160370349884, 0.7338209748268127, 0.6854748725891113, -0.38303184509277344, -0.5811289548873901, -0.8138871788978577, -0.12814807891845703, -0.7376469969749451, 0.22512464225292206, -0.5882446765899658, -0.1943770945072174, -0.4981659948825836, 0.16178065538406372, -0.028300317004323006, -0.2038133144378662, 0.9608837962150574, -0.09315845370292664, -0.4932045638561249, -0.40877673029899597, -0.10485213994979858, -0.16318345069885254, -0.19124974310398102, -0.344679594039917, -1.4007633924484253, -0.7542974948883057, 1.3891814947128296, 1.409766435623169, 1.0017448663711548, 0.535376250743866, -0.08737586438655853, -0.3579881489276886, -0.17699120938777924, -0.6118958592414856, -0.1492524892091751, 0.770927369594574, -0.19844232499599457, -0.6719571352005005, 0.2428961992263794, -0.1899706870317459, 0.440262109041214, 0.719208836555481, -0.04618510231375694, -0.20059071481227875, 0.8329118490219116, -0.00374003779143095, 1.1991798877716064, -0.5086966156959534, 0.02946055680513382, 0.5705580115318298, 0.3604128658771515, 0.4453469216823578, -0.4075463116168976, 0.3891270160675049, -0.052830614149570465, 0.21954412758350372, -0.43384048342704773, 1.082704782485962, -0.18401722609996796, -0.5790677070617676, 0.7338396906852722, -1.5426818132400513, 0.5880579352378845, -0.7252601981163025, 0.941117525100708, 0.020234951749444008, -0.41666343808174133, 0.29448530077934265, 0.2794138193130493, 0.4485832154750824, 0.4403057396411896, 0.7054741382598877, -0.257997065782547, -1.3213320970535278, 0.5445749163627625, 0.5550520420074463, -0.9094225168228149, 0.3522973954677582, 0.33179771900177, -0.9229451417922974, 0.9119855165481567, -0.3758063018321991, -0.5350976586341858, -0.27539747953414917, -0.22201375663280487, 0.3087221384048462, -0.36393338441848755, 1.2166095972061157, 0.2502944767475128, -0.9025097489356995, -1.283903956413269, 0.8955876231193542, -0.18619494140148163, 0.39561474323272705, 0.5154948830604553, 0.5396537184715271, -0.32107844948768616, 0.6149584054946899, -0.3470645248889923, -0.6596314311027527, -0.5882772207260132, -0.6438814401626587, 0.15179601311683655, -1.5506144762039185, 0.26376378536224365, -0.3342617452144623, -0.5784565210342407, 1.5107760429382324, -0.650044322013855, -0.12550532817840576, -0.13843730092048645, -0.08461610227823257, -0.4947909712791443, -0.6961326599121094, -0.20435424149036407, -0.7076154947280884, 0.3778242766857147, -1.1335558891296387, 0.899808406829834, -0.24792194366455078, 0.48263245820999146, 0.7471646666526794, -1.079390287399292, -1.2064082622528076, 1.255110502243042, -0.3487827777862549, -2.259335994720459, 0.5285673141479492, 0.5572685599327087, 0.13666917383670807, -0.11738720536231995, -0.110940121114254, 0.1259346306324005, 0.49751296639442444, 0.4096585214138031, 1.0065914392471313, -1.11281418800354, 0.0935773178935051, -1.0842769145965576, -0.40017077326774597, 0.8668773174285889, -0.92754065990448, -0.9919415712356567, 0.36667317152023315, 0.1484985500574112, -1.482807993888855, 0.7729337811470032, 0.0013467799872159958, 0.03388785570859909, 0.4821024537086487, 1.3423776626586914, 0.7009317278862, 0.2702181935310364, -0.43876275420188904, -0.22184905409812927, -0.17549042403697968, -0.0817154049873352, 0.6757654547691345, -0.6246607303619385, -0.26047879457473755, 1.0260928869247437, 0.5943114161491394, -0.310131311416626, 0.9551021456718445, -0.6310238242149353, 0.3138439357280731, -1.4631365537643433, -0.46692126989364624, -0.28313758969306946, -1.4198073148727417, 1.2440001964569092, 1.058916687965393, -0.9170057773590088, 0.6435735821723938, -0.4232480525970459, -0.3479144275188446, -0.6499925851821899, -0.49610623717308044, -0.9242876172065735, -0.15281502902507782, -0.3201645612716675, -0.06116282939910889, -0.7231853008270264, -0.4468690752983093, 1.384569525718689, -0.37454888224601746, -0.24100103974342346, 0.2036363184452057, 0.38748323917388916, 0.7392128705978394, 0.4984804093837738, -0.024574993178248405, -1.9403091669082642, -0.7618798017501831, 0.5048769116401672, 1.3226836919784546, -0.07841333746910095, 0.8114867806434631, 0.35961174964904785, 0.9316574335098267, 0.6679502129554749, 0.33857962489128113, -0.1964636892080307, 0.22918207943439484, 0.33478090167045593, 0.19275720417499542, -0.03422274813055992, 0.2751956284046173, -0.6720921397209167, -0.6920552253723145, -0.5370252728462219, 0.6750284433364868, 0.9596831798553467, 0.9725319147109985, 0.7787280082702637, -0.23144418001174927, 0.5579254031181335, -0.40340831875801086, 0.013411354273557663, -0.2304583042860031, -0.5799351334571838, 0.12093417346477509, -0.6803703904151917, -0.4306652843952179, -0.4728606343269348, -0.005999094340950251, 0.484536349773407, 0.150238499045372, 1.3918551206588745, 0.9782760739326477, -0.784956693649292, -1.3412249088287354, -0.8976349830627441, 0.24000534415245056, -0.795748770236969, 0.829484760761261, 0.9729594588279724, -1.5602285861968994, 0.7550013065338135, 0.24185678362846375, 0.5148118138313293, 0.8947982788085938, -0.10467111319303513, 0.281622976064682, -1.3406661748886108, -0.5158384442329407, -0.1326867789030075, 1.327661156654358, -0.28530001640319824, 0.0017213569954037666, -0.5337722897529602, -0.028644418343901634, 0.842814028263092, -0.11008843779563904, 0.15899282693862915, 0.23613840341567993, -0.3892977237701416, -0.5997049808502197, -0.004978109151124954, 0.3169393539428711, 0.5137239098548889, -0.39092350006103516, -1.326794981956482, 0.12044361978769302, 0.11535058170557022, -0.7847573757171631, 0.26669418811798096, 0.779403805732727, 0.09866885095834732, -0.5738284587860107, 0.04473678395152092, 1.094105839729309, 0.17972664535045624, -0.11823353171348572, -0.4066976010799408, 0.5239754915237427, 0.7548521757125854, 1.2770394086837769, 0.30679643154144287, 0.5733119249343872, 0.30781570076942444, -1.4659888744354248, -0.4388626515865326, -0.004540991969406605, 0.66023850440979, -0.2054721564054489, -0.6287075877189636, -0.11801638454198837, -0.24727816879749298, -0.2212163507938385, 0.41524431109428406, 0.5514605641365051, -0.028666481375694275, -0.20003676414489746, -1.1020145416259766, 0.6709296107292175, -0.046659260988235474, -0.48278549313545227, -0.9666450619697571, -0.0169527605175972, 0.6043992638587952, -0.18321536481380463, -0.29483088850975037, -0.46378588676452637, -0.11694558709859848, 0.33725377917289734, -0.7174111604690552, -0.4199093282222748, -0.10108835250139236, 0.2607434391975403, 1.0434941053390503, -1.3245117664337158, -0.2284785360097885, -0.5222998857498169, 0.6510547399520874, 0.7719243168830872, -0.36657556891441345, 0.6647870540618896, 0.7081965804100037, -0.33512088656425476, -0.2308804839849472, -0.04920037463307381, 1.3687806129455566, -0.3302806615829468, -0.14732679724693298, 0.5019115209579468, -0.18701808154582977, 1.0100222826004028, -1.2863714694976807, -0.24762289226055145, 0.2743544280529022, -0.46701663732528687, 0.3164111375808716, -0.011932878755033016, -0.7896976470947266, 1.3318098783493042, 0.3029016852378845, -0.5532332062721252, 0.2816959023475647, 0.0103569645434618, -1.1228018999099731, 0.030246460810303688, 0.3668874502182007, -0.09664458781480789, -0.40311169624328613, 0.36840227246284485, 0.5320827960968018, 0.5493801832199097, 0.5800642967224121, 0.2863472104072571, 0.11074725538492203, 0.31307655572891235, 0.023470891639590263, 0.24065926671028137, 1.058850646018982, 0.9545316100120544, 1.056262493133545, 1.0066602230072021, -0.5642006397247314, -0.13569030165672302, 0.49390679597854614, -0.2821817100048065, 0.6948274374008179, 1.12704336643219, -0.239538311958313, 1.251860499382019, -1.4982223510742188, 0.28844520449638367, 0.8865323066711426, 0.39851853251457214, 1.3164424896240234, -0.1887723207473755, 0.6388672590255737, -0.8364578485488892, -0.5064999461174011, 0.9100950956344604, -0.5871227979660034, 1.0272380113601685, 0.18031008541584015, -0.13357742130756378, 0.73291015625, -0.8496260643005371, -0.4276510179042816, -0.730383038520813, -0.34987449645996094, -0.828116238117218, -0.46576690673828125, 0.512016236782074, 1.0000605583190918, 1.0551276206970215, 0.6081036329269409, 0.27361810207366943, -1.7052749395370483, 0.15320929884910583, -1.0022766590118408, 0.18727265298366547, -0.1307377815246582, 0.1300913244485855, -0.9900360703468323, -0.6743745803833008, -0.030945396050810814, 0.02152233012020588, -0.7498562335968018, -0.33751562237739563, -0.07654757797718048, -1.134519338607788, 0.3972405195236206, 0.9899142980575562, 0.2745720148086548, 0.47140222787857056, 0.23788657784461975, -0.1651010811328888, 0.2734549343585968, -0.5277650356292725, -0.6622902750968933, -0.7937373518943787, 0.03380989283323288, 0.16464926302433014, -1.250040054321289, -0.27723073959350586, 0.6009365320205688, 0.9754635691642761, 0.3588860034942627, 1.3664387464523315, 1.1518484354019165, 1.2260359525680542, -1.0825639963150024, -0.4487367868423462, 0.37780922651290894, -0.41815057396888733, 1.0140008926391602, 0.9698463082313538, -0.5261797904968262, -0.3904288411140442, -0.8287081122398376, -1.8572720289230347, 0.7613409161567688, -0.29998424649238586, -0.13329723477363586, 0.8948107361793518, 0.6106489300727844, 0.16834604740142822, 0.3737300634384155, -0.7294256687164307, -0.5758500695228577, -0.11373629420995712, 0.1169959157705307, -0.6110052466392517, 0.9369186758995056, 0.859146773815155, -0.4178548753261566, -1.3091500997543335, 0.42665988206863403, -0.4234273135662079, -0.5971757173538208, 0.04405141994357109, 0.40909823775291443, -0.7070584893226624, 0.41674894094467163, 0.11852160096168518, -0.8092434406280518, 0.41261377930641174, -1.3913999795913696, 0.6438437700271606, 0.3373122811317444, 0.20523640513420105, 0.7661881446838379, -0.24997460842132568, 1.003757357597351, -0.6543639898300171, -0.22890454530715942, -0.49597495794296265, -0.42023882269859314, 0.5361759662628174, 0.585989236831665, 0.6691503524780273, -0.31192538142204285, -0.894304096698761, -0.27147960662841797, -0.6406146883964539, 0.022777657955884933, 0.8399488925933838, -0.5742858648300171, 0.1920044720172882, 0.1662244349718094, -0.5596863031387329, 0.14160099625587463, -0.20435625314712524, 0.05711902305483818, -0.9805697202682495, -0.9902766942977905, -0.4164687395095825, -0.4577693045139313, 1.1540671586990356, -0.4739064872264862, 0.8293532729148865, -0.034574177116155624, -1.2227997779846191, 0.3394373953342438, -0.13020919263362885, -1.6443971395492554, 0.14511021971702576, -0.943077802658081, 0.7803040742874146, -0.692937970161438, -0.16152898967266083, -0.2363450825214386, 1.1704552173614502, -1.5873976945877075, -0.8836963772773743, -1.8853720426559448, -0.3575391173362732, 0.5615138411521912, 0.9410561919212341, -1.8805789947509766, 1.1891597509384155, -0.526041567325592, -0.7488875389099121, -0.4731290638446808, -0.22951312363147736, -1.1228728294372559, -0.366007536649704, 0.1532823145389557, 0.724504828453064, 0.3052223026752472, 1.8292160034179688, -0.0998721569776535, 0.9487418532371521, 0.3407277464866638, 1.336311936378479, -0.09199193865060806, -0.2765175700187683, 0.3410789966583252, 0.7248063683509827, -1.379563331604004, 0.1903010904788971, 0.04850784316658974, -0.03253742307424545, -1.118001103401184, 0.4407828748226166, 0.561795175075531, -0.37025704979896545, 0.22944475710391998, -0.38296476006507874, 0.30016428232192993, -0.7320575714111328, 0.2973410487174988, 0.6125278472900391, -0.925691545009613, -0.07257350534200668, -0.9623104929924011, 0.11221089959144592, -1.2158769369125366, -0.4021545648574829, 0.19734309613704681, -0.15177856385707855, -0.4146081209182739, 0.6127346158027649, 0.28855186700820923, 0.728955090045929, -0.5179001688957214, 0.8786314129829407, 0.8629745244979858, -0.5873575806617737, -0.2905382215976715, 0.4364316165447235, 0.39864206314086914, -0.19907614588737488, 0.06725436449050903, -0.21237529814243317, -0.7214857935905457, 0.40528759360313416, 0.2336198389530182, -0.36514797806739807, 0.010850009508430958, 0.594131350517273, -0.013094860129058361, 0.48036906123161316, 1.1308934688568115, -0.217729851603508, -0.8752927780151367, 1.0177732706069946, 0.6742197275161743, -0.9613384008407593, 0.013562552630901337, -0.058906834572553635, 0.6735141277313232, -0.05372868478298187, 0.39050644636154175, 0.4338077902793884, -0.7458999156951904, 0.4351855218410492, -0.20906223356723785, 0.13768209517002106, 0.26992860436439514, -0.4562247693538666, -0.8111711144447327, -0.9075262546539307, -0.8688415288925171, -0.21126072108745575, 0.3973639905452728, -1.075939655303955, -1.3799948692321777, 0.3418779671192169, 0.5566983222961426, -0.46722567081451416, 0.2353784143924713, -0.0052504814229905605, -0.2576224207878113, -0.4170321524143219, 0.8452498316764832, -0.17561087012290955, 1.359399676322937, -0.5131664872169495, 0.02088637463748455, -0.09615034610033035, -0.11096911877393723, -0.051738012582063675, -0.14362987875938416, 0.09221549332141876, -0.721123456954956, 0.6387514472007751, -1.072405219078064, -0.516994297504425, 0.16563557088375092, 0.3403588533401489, -0.07617663592100143, -0.3420945405960083, -1.2093929052352905, 0.7189873456954956, 0.34072306752204895, 0.13206784427165985, -0.5364436507225037, -0.44742482900619507, -0.6768575310707092, 0.1593042016029358, -0.3935287594795227, 0.8598617911338806, 0.01035594567656517, 0.8791396021842957, 0.5687424540519714, -0.6929140090942383, -1.099299430847168, -1.0980486869812012, 0.6796890497207642, 0.24507597088813782, 0.31377261877059937, -0.1309901624917984, 0.7922085523605347, -0.39366844296455383, -0.9873066544532776, -1.0034189224243164, 0.05791143327951431, 0.29837968945503235, 0.5748509764671326, -0.6902772188186646, -0.6929498910903931, -0.38392165303230286, 0.9398486614227295, -0.07434920221567154, 0.16351932287216187, 0.356251060962677, -0.31255173683166504, -0.9758297204971313, -0.12547168135643005, 0.47518062591552734, 0.2007184475660324, 0.6872552633285522, 1.723394513130188, 0.9659530520439148, 0.0833999365568161, -0.37817931175231934, 0.04105758294463158, 0.7298234701156616, -1.4789706468582153, -0.06546454131603241, -0.867336630821228, -0.483461856842041, -0.07834642380475998], [0.670873761177063, 2.5666115283966064, -2.8639564514160156, 0.4565143287181854, 1.019042730331421, 0.454334020614624, 0.9357755780220032, 0.6534588932991028, 0.07290693372488022, -0.673214852809906, -1.112908124923706, 0.5483556985855103, -0.1414954513311386, 0.8435606956481934, 0.31483954191207886, -0.21179994940757751, 0.8127113580703735, 0.19339270889759064, -0.10168522596359253, 1.1620842218399048, 0.49686071276664734, -0.6056675910949707, -0.6952574849128723, 0.2750544548034668, 0.004299473017454147, -0.023230750113725662, -0.9967606067657471, 0.24179407954216003, -0.9920597076416016, -0.4891241192817688, 1.5711414813995361, 0.6394340991973877, 0.6509617567062378, 0.17421363294124603, -1.9890691041946411, 0.03719101846218109, 0.5911147594451904, -0.29684796929359436, 0.32683855295181274, -0.17854458093643188, 1.7353222370147705, 0.1833494007587433, -0.18021845817565918, -1.3914690017700195, -0.36182957887649536, 0.16803638637065887, 0.4260185658931732, -0.5355978608131409, 0.41721999645233154, -0.7029899954795837, 0.9984534382820129, -0.4163798391819, 0.41215357184410095, 0.48339858651161194, 0.8915283679962158, -1.1850663423538208, 0.4799293577671051, 0.5639658570289612, -0.13564150035381317, 0.6941640377044678, 0.8964411616325378, -0.6710578799247742, 1.0969220399856567, 0.5982657074928284, 0.031294092535972595, -0.6939487457275391, 0.5275850296020508, 0.3052232563495636, 0.5466118454933167, 0.24963797628879547, 0.9004459977149963, 1.1664807796478271, -1.1563191413879395, 0.2859452962875366, -0.9756622314453125, 0.14333246648311615, -0.145871102809906, 0.38398268818855286, 0.005733763799071312, 0.40312764048576355, -0.0894542708992958, 0.4626834988594055, 0.4114088714122772, 0.44890326261520386, -0.2360934019088745, 0.16758964955806732, 0.4366002082824707, -0.4870177209377289, -0.34863439202308655, 1.1069130897521973, 0.04729855805635452, 0.6124024987220764, 0.9106763005256653, -0.2809833586215973, -0.30013415217399597, -0.7992616295814514, -0.3414173722267151, -1.3241041898727417, -0.40308743715286255, -0.6219027042388916, 0.008948049508035183, -0.6043736934661865, 0.7229329943656921, 0.6431050300598145, 0.23709695041179657, 1.6010345220565796, -0.12365357577800751, -0.5813052654266357, -0.26580652594566345, -0.3624878525733948, 0.09100289642810822, 0.15974970161914825, 0.1514105349779129, -1.7790921926498413, -0.17013311386108398, 0.9894523620605469, 1.115722417831421, 0.6556040048599243, -0.3729158937931061, 0.42445215582847595, -0.42094340920448303, -0.458204060792923, -0.736579179763794, 0.17278940975666046, 1.7550758123397827, -0.09295596182346344, -0.15338733792304993, 0.441741406917572, -0.11635483801364899, 0.20302249491214752, 0.27229464054107666, 0.043613169342279434, -0.12342521548271179, 0.5254051685333252, -0.6759414672851562, 0.8192430734634399, -0.49428725242614746, -0.20280689001083374, 0.0033356850035488605, 1.222444772720337, 0.5210340619087219, -0.35203808546066284, -0.0835859552025795, -0.4350638687610626, 0.38204485177993774, -0.19275303184986115, 0.743602454662323, 0.14190703630447388, -0.7896665334701538, 0.7624611258506775, -2.095228910446167, 0.38871219754219055, 0.03281873092055321, 0.947088897228241, 0.703006386756897, -0.09087809920310974, 0.4770418107509613, 0.09451130777597427, -0.012981596402823925, 0.24304084479808807, 1.1214838027954102, 0.05516327917575836, -0.9187544584274292, 0.9294232130050659, 0.7424876689910889, -0.33744844794273376, 0.30009549856185913, 0.3155458867549896, -0.27060022950172424, 1.1737803220748901, 0.005541522055864334, -0.5006855130195618, -0.8528767228126526, 0.32531028985977173, -0.1944524049758911, -0.18269731104373932, 0.8952212333679199, 0.23406384885311127, -0.7317565083503723, -0.910431981086731, 0.5481342077255249, -0.028789952397346497, 0.1939089298248291, -0.018648158758878708, 0.9828433990478516, -0.3710704445838928, -0.5743545293807983, -0.8485254049301147, -0.41730523109436035, -0.6531291604042053, -0.43399879336357117, 0.032107170671224594, -1.1180315017700195, 0.5875308513641357, -0.6720688939094543, -1.4384771585464478, 1.0113834142684937, -0.37403440475463867, -0.2893499433994293, -0.09771645069122314, 0.14077283442020416, -0.4991803467273712, -1.302164912223816, -0.4548482596874237, -0.48137471079826355, 0.5442538857460022, -1.035315752029419, 0.6639463305473328, -0.9749976396560669, 0.8407010436058044, 0.6766031980514526, -0.40717819333076477, -1.6375882625579834, 0.2011033147573471, -0.19515934586524963, -1.3036134243011475, 0.4029233753681183, -0.2483861744403839, 0.46330487728118896, -0.6830999255180359, -0.48830515146255493, 1.0973159074783325, 0.8146098852157593, -0.6297431588172913, 0.7845912575721741, -0.8568131327629089, 0.11710423231124878, -0.9466069936752319, -0.09756909310817719, 0.3079623281955719, -0.8755550384521484, -1.0584099292755127, 0.7079290151596069, 0.9197879433631897, -1.6039354801177979, 0.6963610649108887, -0.5848666429519653, 0.2818099856376648, 0.2810129225254059, 1.160141110420227, 0.22890597581863403, 0.9446596503257751, -1.0400408506393433, 0.010138992220163345, -1.2510685920715332, -0.6145921349525452, 0.5661441087722778, -0.3462525010108948, -0.08025245368480682, 1.3040434122085571, 0.6011239290237427, -0.21772369742393494, 0.8026323318481445, -0.27643027901649475, 0.04389705881476402, -0.958442211151123, -0.006084372755140066, -0.13880853354930878, -0.7294468283653259, 1.867631435394287, 1.106265664100647, -0.5537940263748169, 0.10530886799097061, -0.4606037437915802, -0.05813390389084816, -0.7984880208969116, 0.0059699625708162785, -0.7760704755783081, 0.1959514021873474, -0.4524126648902893, 0.06960780173540115, -0.7323402762413025, 0.06721610575914383, 1.3031224012374878, 0.5330471396446228, -0.7786775827407837, -0.32112252712249756, 0.5392919778823853, -0.2305169254541397, 0.4561992287635803, -0.6109866499900818, -1.1675877571105957, -1.354573369026184, 0.34009239077568054, 1.056038498878479, -0.1594826877117157, 0.40318605303764343, 0.5891366600990295, 1.0267192125320435, -0.21586035192012787, 0.3008187711238861, 0.07081626355648041, 0.09393195062875748, 0.004297053441405296, 0.7783551216125488, 0.46053487062454224, 0.23100829124450684, -0.7017304301261902, -0.6533703804016113, -0.35154032707214355, -0.056843455880880356, 1.0799190998077393, 0.7914322018623352, 1.2784959077835083, -1.0032463073730469, -0.09334680438041687, -0.620063841342926, -0.1366306096315384, -0.9162716865539551, -0.4397018849849701, -0.4054841995239258, -0.8192061185836792, -0.5193459391593933, -0.6356188654899597, -0.41986942291259766, 0.4901678264141083, 0.017073512077331543, 1.1210267543792725, 0.4349711537361145, -0.3913062512874603, -1.812825083732605, -1.048769474029541, -0.7894166111946106, -0.7257362604141235, 0.6790228486061096, 1.5348366498947144, -2.3530776500701904, 0.041247639805078506, -0.14560283720493317, -0.11416828632354736, -0.417441725730896, -0.7151418924331665, 0.24404111504554749, -1.1067678928375244, -0.19955679774284363, -0.48067039251327515, 1.3880170583724976, 0.31202274560928345, -0.5062370300292969, -0.19552841782569885, 0.9109766483306885, 1.0407230854034424, -0.37112483382225037, 0.20169579982757568, 0.26981982588768005, -1.4498552083969116, -0.001167519949376583, -0.235885888338089, 0.14001062512397766, 0.012048550881445408, -0.595780074596405, -1.1832228899002075, -0.5918026566505432, -0.6956688165664673, -0.7683932185173035, 0.8323136568069458, 1.2497546672821045, 0.6039428114891052, 0.2952008843421936, 0.10553449392318726, 1.0967689752578735, 0.18647918105125427, 0.4738523066043854, -1.0194660425186157, 0.5100403428077698, 0.8671022057533264, 1.848682165145874, 0.6426293849945068, 0.03718777373433113, 0.4215985834598541, -1.2791988849639893, -0.4900258779525757, 0.09670445322990417, 0.4347565770149231, 0.2727033197879791, -0.4584541618824005, -0.3794732391834259, -0.7152420878410339, 0.07709342241287231, 0.044182222336530685, 0.9902815222740173, 0.11185003072023392, -0.05158437788486481, -0.3659171164035797, 1.6763577461242676, 0.47183123230934143, 0.09830119460821152, -1.1131709814071655, -0.519881546497345, 0.8012152910232544, -1.0086441040039062, 0.2386402040719986, 0.09516967833042145, -0.09281393885612488, 0.5784637928009033, -0.832973837852478, -0.7769890427589417, -0.221268892288208, 0.4535566568374634, 0.9342345595359802, -1.5866621732711792, -0.36928990483283997, -0.6231312155723572, 0.4346897304058075, 0.9329907894134521, 0.8249600529670715, 0.46641647815704346, 0.5968179702758789, -0.7361539006233215, 0.18701769411563873, 0.37198200821876526, 1.2864489555358887, -0.33913713693618774, 0.07726123183965683, 0.1825382560491562, 0.22784776985645294, 0.5592800974845886, -0.8875962495803833, 0.0959348976612091, -0.2692532241344452, -0.7233638167381287, -0.3361749053001404, 0.30017325282096863, -0.936285138130188, 1.6209927797317505, -0.10368270426988602, -0.7508600354194641, 0.21430231630802155, 0.5070713758468628, -1.275933027267456, -0.05150327831506729, 0.6343560814857483, -1.1892826557159424, 0.017337270081043243, 0.588373601436615, 0.5391653180122375, 0.8292884826660156, 0.12418576329946518, 0.6393589973449707, 0.3623330593109131, 0.6465945839881897, 0.2597368061542511, 0.3241596221923828, 0.6246669888496399, 1.666945457458496, 0.6780076026916504, 1.9328261613845825, 0.07000409811735153, -0.7531312108039856, 0.9789590835571289, -0.7639408111572266, 0.2672426104545593, 0.9087960124015808, 0.05169522389769554, 1.1215815544128418, -1.5042107105255127, -0.0008627604693174362, 1.3731046915054321, -0.31175652146339417, 0.7165953516960144, 0.18633605539798737, 0.6499279141426086, -1.0877360105514526, 0.20015142858028412, 0.18827150762081146, -0.5839575529098511, 0.6832827925682068, 0.14050991833209991, 0.4981948733329773, 0.9936404228210449, -0.577111542224884, 0.12377613037824631, -0.9260258078575134, -0.5770307183265686, 0.240115687251091, 0.25688403844833374, 0.28017479181289673, 0.7298615574836731, 1.1123813390731812, 0.396742582321167, -0.27703821659088135, -1.8135117292404175, 0.5091424584388733, -1.0042543411254883, 0.33708181977272034, -0.2470424473285675, -0.0987364798784256, -0.822059690952301, -0.5205880999565125, 0.3771466910839081, -0.4773784577846527, -0.2752707302570343, -0.6590990424156189, -1.1812307834625244, -0.9004088044166565, 0.5121710896492004, 0.14690075814723969, 0.5013401508331299, 0.1880963295698166, 0.9765719771385193, 0.04899440333247185, 0.011384505778551102, -0.4737541973590851, -0.16116274893283844, 0.2896290719509125, 0.3346864879131317, -0.5918622612953186, -0.1316738724708557, -0.9460222125053406, 0.28148773312568665, 0.4360692501068115, 0.15617524087429047, 0.40450236201286316, 0.9119920134544373, 1.034929871559143, -0.4601973593235016, -0.43174099922180176, 0.3126239776611328, -0.7977978587150574, 0.9197767376899719, 0.5037820339202881, -0.2829494774341583, 0.12934137880802155, 0.022909121587872505, -1.7471126317977905, 1.1562297344207764, 0.3490886688232422, -0.002271127887070179, 0.7026017904281616, 0.9750661849975586, 0.47959697246551514, 0.6567673683166504, -0.6203945875167847, 0.011384275741875172, 0.6868472695350647, -0.29120969772338867, -0.38468098640441895, -0.09841465204954147, 0.44022682309150696, -0.29020956158638, -0.9657790660858154, 0.44387733936309814, -0.31508952379226685, -0.3583792448043823, -0.27301904559135437, 0.5819235444068909, -0.07732298970222473, 0.9836409687995911, 0.09183960407972336, -0.3004470467567444, 0.4880407750606537, -1.3793648481369019, -0.14358510076999664, 0.8627174496650696, 0.4038350582122803, 0.9248150587081909, -0.16185994446277618, 1.5548855066299438, -1.1468093395233154, -0.3978053629398346, 0.006104964762926102, -0.6774094700813293, 0.4880466163158417, 0.02674882672727108, 0.36877843737602234, 0.3334504961967468, -0.48450884222984314, -0.20406575500965118, -0.7626670002937317, -0.1489718109369278, 0.9586077928543091, -0.9618746638298035, -0.64095139503479, -0.6507078409194946, -0.8250868916511536, 0.2034495770931244, 0.31421002745628357, 0.5726873278617859, -0.44502338767051697, -1.266113042831421, -0.4265960454940796, -0.32387441396713257, 0.7150523662567139, -0.3122422397136688, 0.2800816595554352, -0.5968430638313293, -1.1060041189193726, 0.6780118942260742, -0.2604841887950897, -2.1234352588653564, 0.2497079223394394, -0.24075758457183838, 0.2546037435531616, -0.23267576098442078, -0.14626742899417877, 0.5174549221992493, 1.2283909320831299, -1.8284311294555664, -1.128906488418579, -1.3914110660552979, -0.8112620711326599, 0.24721528589725494, 0.9283527135848999, -0.9991292357444763, 1.4017298221588135, -1.0681908130645752, -0.20159688591957092, -0.6876874566078186, -0.1520927995443344, -0.8616453409194946, -0.09059832245111465, 0.30441638827323914, -0.19276946783065796, -0.010408395901322365, 1.4395233392715454, -0.06295940279960632, 0.8699932098388672, 0.12507887184619904, 1.546844720840454, -0.8343880772590637, -1.2622953653335571, 0.5015797019004822, 0.7278558015823364, -0.6281693577766418, -0.17175623774528503, 0.22938968241214752, -1.0084724426269531, -1.023316740989685, -0.06307603418827057, 0.4123997986316681, -0.7018508911132812, 0.15136292576789856, 0.6383805871009827, -0.3432161211967468, -0.9243425726890564, 0.4131108224391937, 0.7158148288726807, -0.7516469359397888, -0.023114094510674477, -0.8131119012832642, 0.6479038596153259, -0.8640106916427612, 0.44665566086769104, 0.3479451537132263, -0.566152811050415, -0.05593126267194748, -0.009112096391618252, 0.271140992641449, 0.5533090829849243, -0.6060150861740112, 1.1193474531173706, 0.40841931104660034, -0.3499666452407837, -0.06337545067071915, -0.04084296151995659, -0.13108868896961212, 0.26407766342163086, -0.06405894458293915, -0.34636837244033813, -0.48478105664253235, 0.6865532994270325, 0.6381569504737854, -0.016119226813316345, 0.6481199264526367, 0.8426513671875, -0.002992479130625725, 0.2413203865289688, 0.6978328824043274, -0.3712485134601593, -0.5035758018493652, 1.3676890134811401, 0.47791123390197754, -0.4271862208843231, -0.06352631002664566, -0.3725103437900543, 0.7334587574005127, 0.73249751329422, 0.9450436234474182, 0.5410686731338501, -0.34179598093032837, 0.5990748405456543, 0.3426298499107361, -0.46197763085365295, -0.4869426190853119, -0.33490869402885437, -1.6114329099655151, -0.08575286716222763, -0.4276781678199768, -0.10917369276285172, 0.6577346324920654, -0.9935255646705627, -1.007323980331421, -0.2607851028442383, -0.5252092480659485, -0.5557044744491577, -0.35468122363090515, -0.2405754178762436, -0.04985455423593521, 0.16488046944141388, 0.6536532044410706, -0.3086162209510803, 1.4409513473510742, -0.24576440453529358, -0.1351778656244278, -0.6594486236572266, -0.6635568737983704, -0.15897443890571594, 0.29801949858665466, -0.07878002524375916, -0.4577690064907074, 0.9801174998283386, -1.019837498664856, -0.12532438337802887, 0.08496847003698349, 0.363253653049469, 0.020838463678956032, -0.2807781398296356, -0.4421641230583191, 0.5762681365013123, 0.32660770416259766, 0.8814347386360168, -1.2560899257659912, -0.976944625377655, -1.3274638652801514, 0.968774139881134, 0.12289068102836609, 0.7761774659156799, -0.21824242174625397, 0.6548009514808655, 0.11197713762521744, -0.7541072368621826, -0.941300094127655, -0.3451522886753082, 1.4802417755126953, 0.26106590032577515, -0.21929307281970978, -0.6289983987808228, 0.39484909176826477, -0.04827195405960083, -1.3520079851150513, -0.8090924024581909, 0.6429456472396851, -0.41288650035858154, -0.302012175321579, -0.3514227867126465, -0.8553820848464966, -1.175708532333374, 0.21195687353610992, -0.11367881298065186, 0.1777767837047577, 0.7968912720680237, -0.48466020822525024, -0.3639054000377655, 0.09117212146520615, 0.9482290148735046, 0.25647789239883423, 0.4628205895423889, 1.4875609874725342, 1.1467630863189697, -0.07419446110725403, -0.7004702091217041, -0.31097444891929626, 0.10316009819507599, -1.6439014673233032, 0.16378580033779144, -0.6787332892417908, 0.04039771482348442, -0.1911274492740631], [0.7804491519927979, 1.4993640184402466, -2.7815399169921875, 0.5130330920219421, 0.7252818942070007, 0.39973583817481995, 0.4997656047344208, 0.4846724271774292, 0.47061747312545776, -0.4024360179901123, -0.6904162168502808, -0.06768489629030228, -0.05669927969574928, 0.38387933373451233, 0.8165030479431152, 0.24236980080604553, 0.533458948135376, 0.025916853919625282, 0.2041100412607193, 1.3516114950180054, 0.010491281747817993, -1.2440388202667236, -1.2891980409622192, 0.3636842668056488, -0.3485439419746399, 0.7580931186676025, -1.5906065702438354, 0.3147180378437042, -0.8836227655410767, -0.44623813033103943, 0.7779812812805176, -0.36254575848579407, 0.36467546224594116, 0.13783687353134155, -1.9148014783859253, 0.1925506889820099, 0.43559587001800537, 1.038373351097107, 0.0019528456032276154, 0.4248400032520294, 1.656360149383545, -0.2363114058971405, 0.25802144408226013, -1.057508945465088, 0.6536272764205933, -0.3730382025241852, 0.4526797831058502, -1.3276103734970093, 1.792885661125183, 0.036419883370399475, 0.5328765511512756, -0.2961787283420563, 0.04207136854529381, 0.2971455454826355, 1.7664586305618286, -1.8814677000045776, 0.9386719465255737, 0.18149268627166748, -0.33872100710868835, 0.6987165808677673, 1.5012199878692627, -0.6083580255508423, 1.5159029960632324, 0.8507929444313049, 0.4216301441192627, -1.006400465965271, 0.43831107020378113, 0.5630134344100952, -0.01921987719833851, 0.10149841010570526, 0.5688080191612244, 0.5860490798950195, -1.398497462272644, 0.22966018319129944, -0.8773508071899414, -0.07987136393785477, -0.4479838013648987, 0.557059109210968, 0.25334465503692627, 0.46608635783195496, -0.4899408519268036, 0.6374557614326477, 0.5677117109298706, 0.24523860216140747, -0.5579923391342163, -0.1680741310119629, 0.35545894503593445, -0.5208131074905396, -0.2269878387451172, 1.2114710807800293, 0.7529359459877014, 0.24774514138698578, 0.8332238793373108, 0.7148743867874146, -0.323678582906723, -0.4297720193862915, -0.24069766700267792, -0.8574717044830322, -0.48254990577697754, -0.9390754103660583, -0.36786195635795593, -0.39955568313598633, 1.114651083946228, 1.2183128595352173, 1.3875051736831665, 1.6756556034088135, -0.2626628279685974, -0.914425790309906, -0.3319936990737915, -0.21109150350093842, -0.035000432282686234, 0.23947301506996155, 0.04643239825963974, -1.6896878480911255, -0.6724419593811035, 1.277039647102356, 0.38890546560287476, 0.33270639181137085, -0.18011656403541565, 0.5083497762680054, -0.20567655563354492, -0.10296869277954102, -0.5962477326393127, 0.19489116966724396, 1.5893417596817017, -0.6911081671714783, -0.3821672797203064, 0.32877427339553833, -0.44593092799186707, 0.444685697555542, -0.007447018753737211, -0.07702363282442093, 0.1289222091436386, 1.1912457942962646, -0.039454661309719086, 0.8104674220085144, -0.22720971703529358, -0.00915578193962574, -0.0333695113658905, 0.7385101914405823, 0.6803107857704163, 0.05174577608704567, -0.8125094771385193, -0.5605826377868652, -0.5351144671440125, -0.6554864048957825, 0.5322849750518799, -0.11322342604398727, -0.2883448600769043, -0.24669934809207916, -2.2650721073150635, 0.08023752272129059, -0.43709447979927063, 1.1707801818847656, 0.48160234093666077, -0.49285316467285156, 1.042459487915039, 0.2460900843143463, 0.188133105635643, 0.5402438044548035, 0.5108143091201782, 0.03293817117810249, 0.05614693462848663, 0.6325292587280273, 1.0096160173416138, -0.7758703231811523, -0.0435083769261837, -0.17117178440093994, 0.08363760262727737, 1.4679145812988281, -0.21391215920448303, -0.7784185409545898, -0.5849467515945435, -0.21312366425991058, 0.15465109050273895, -1.3234295845031738, 0.6271774768829346, -0.06264287978410721, -0.7403429746627808, -1.2827597856521606, 0.603950023651123, 0.06311224400997162, 0.31539803743362427, -0.13823582231998444, 0.7530437111854553, -0.5244042277336121, -0.5255847573280334, -0.08639692515134811, -0.6036036014556885, -0.3279981017112732, -0.4354780912399292, -0.06822241097688675, -1.1772842407226562, -0.29857775568962097, -0.38373202085494995, -1.343374252319336, 0.8709056377410889, -0.03156406059861183, -0.5979125499725342, -0.553823709487915, 0.18349705636501312, -0.655674159526825, -1.2069175243377686, -0.6268454790115356, -0.10343532264232635, 0.8821053504943848, -0.6176518797874451, -0.004140467848628759, -0.8628509640693665, 0.3582715690135956, 1.010971188545227, -0.623275876045227, -1.2039412260055542, -0.4991358518600464, 0.328328013420105, -0.809273362159729, -0.04701698198914528, 0.3531024754047394, 0.37854743003845215, -0.825657069683075, 0.2810509502887726, 0.5573227405548096, 1.0140843391418457, -0.6736431121826172, 0.33045291900634766, -0.04320736229419708, -0.30759841203689575, -0.9068339467048645, -0.5015709400177002, 0.043692439794540405, -0.7401553988456726, -0.8902965784072876, 1.0088435411453247, 0.6680893301963806, -1.250104308128357, 0.9754880666732788, -0.13178038597106934, 0.5119459629058838, 0.3648001551628113, 0.8478385210037231, 0.587205171585083, 0.3793754279613495, -0.6083924770355225, -0.18849340081214905, -1.0668044090270996, -0.4445967674255371, -0.2117641419172287, -0.3502297103404999, -0.2341943234205246, 1.349606990814209, 0.6805949211120605, 0.004972465336322784, 0.5968114733695984, -0.09733965992927551, 0.5182725787162781, -0.9899145364761353, -0.19479697942733765, 0.11305508017539978, -0.7528541684150696, 1.9548053741455078, 0.814575731754303, -1.107729196548462, -0.2678685784339905, -0.5665587186813354, 0.18707175552845, -0.14524737000465393, -0.48186033964157104, -1.5084161758422852, 0.7960341572761536, -0.20512118935585022, 0.3854847252368927, -0.007152050733566284, -0.0972248986363411, 1.4172178506851196, 0.41058048605918884, -0.34971269965171814, -0.028246238827705383, 0.6078625321388245, -0.5608712434768677, 0.6037631034851074, -0.7295339703559875, -0.7051951289176941, -1.29706871509552, 0.5326188206672668, 0.5273948907852173, 0.12113888561725616, 0.5668591856956482, 1.9235609769821167, 1.3737585544586182, -0.34852996468544006, 0.031802620738744736, 0.606367826461792, 0.14885829389095306, -0.18155649304389954, 1.0674242973327637, 0.8618462085723877, 0.9614681005477905, -1.087833046913147, -0.4533684551715851, -0.6091161370277405, 0.006011802703142166, 0.9574625492095947, 0.9409908652305603, 0.9670408964157104, -1.1557365655899048, 0.05741763487458229, -0.4661814272403717, 0.20510900020599365, -0.8690831065177917, -0.5088517069816589, -0.4304765462875366, -1.1396490335464478, -0.009150569327175617, -0.7572554349899292, -0.42732295393943787, 0.39071452617645264, 0.08158764988183975, 0.6728207468986511, 0.17308025062084198, -0.5023865699768066, -1.066379427909851, -1.3199251890182495, -0.2619872987270355, -0.9052867889404297, 0.768695592880249, 0.8468752503395081, -2.0857644081115723, -0.06223507970571518, 0.6453489661216736, -0.09102712571620941, -0.3049308657646179, 0.06642406433820724, 0.3726597726345062, -1.2354741096496582, -0.26635342836380005, -0.2615599036216736, 1.1295665502548218, 0.2835887372493744, -0.5266486406326294, -0.5068734884262085, 1.195709228515625, 0.1853492558002472, 0.26637277007102966, -0.21088248491287231, 0.06818632036447525, -0.35727763175964355, -0.46427151560783386, -0.28156062960624695, 0.8741257786750793, 0.27894824743270874, -0.7536954283714294, -0.804539144039154, -0.5402963757514954, -0.35956817865371704, -0.8621656894683838, 0.2792779207229614, -0.001162022352218628, 0.5026108622550964, -0.19192223250865936, 0.42739337682724, 0.9197794795036316, -0.508930504322052, 0.4802476167678833, -0.9925069212913513, 1.0184252262115479, 0.9124727249145508, 1.3553861379623413, 0.03976451978087425, 0.5002774000167847, 0.44018274545669556, -1.1812055110931396, -0.7788297533988953, -0.11117102205753326, 0.6268674731254578, 0.09547226130962372, 0.1691543161869049, 0.03748144954442978, -0.9250985980033875, 0.13147245347499847, 0.0934443473815918, 0.366800457239151, 0.05433548241853714, -0.47007259726524353, 0.5125342607498169, 1.4893018007278442, -0.3082486689090729, -0.6822900772094727, -0.7516720294952393, 0.21496737003326416, 0.94727623462677, -0.4702290892601013, -0.27970951795578003, 0.15457291901111603, -0.08709997683763504, 0.6689409017562866, -0.7540464997291565, -0.8705524206161499, -0.000906599685549736, 0.7290188670158386, 0.732422947883606, -1.4514819383621216, 0.025725385174155235, -0.9805770516395569, 0.07467395067214966, 0.25243622064590454, 0.7329301238059998, 0.5590083599090576, 0.8822834491729736, -0.37758564949035645, -0.12542849779129028, -0.17397253215312958, 1.520941972732544, 0.10589636117219925, -0.06488816440105438, -0.03213489055633545, 1.200114369392395, 0.21548132598400116, -1.2459492683410645, 0.5548421740531921, 0.056170813739299774, -0.9495860934257507, 0.01912437379360199, 0.8383929133415222, -0.27084922790527344, 1.1642383337020874, -0.31825539469718933, -0.36481571197509766, 0.4355544149875641, -0.10131937265396118, -0.46404314041137695, 0.2859092354774475, 0.11816129833459854, -0.815213680267334, 0.5112070441246033, 0.26501503586769104, 0.8192397356033325, 0.30857375264167786, 0.22209203243255615, 0.5188025832176208, 0.4924016296863556, 0.8292043805122375, -0.3280581831932068, 0.6660330295562744, 0.36933720111846924, 1.2165669202804565, 0.1105593740940094, 1.0426987409591675, 0.5723368525505066, -0.11215074360370636, 0.9384033679962158, -1.0397166013717651, 0.4297703802585602, 0.8922231793403625, 0.15523625910282135, 0.8835616111755371, -1.7794898748397827, -0.4167483150959015, 0.9472296237945557, -0.07107453048229218, 0.5891363024711609, 0.6444642543792725, 0.4419748783111572, -0.9115185737609863, 0.6548724174499512, 0.1362062394618988, -0.1485917568206787, 0.42586636543273926, 0.5075146555900574, 1.0279552936553955, 1.0193182229995728, -0.2872450053691864, 0.5326528549194336, -0.595726490020752, -0.8792864680290222, 0.2886865735054016, -0.3631349802017212, 0.5708488821983337, 0.0193688552826643, 0.6150321364402771, 0.7060182094573975, -0.8312461376190186, -0.45952218770980835, 0.580380916595459, -1.7653669118881226, 0.3611844778060913, -0.1689678281545639, -0.6929824948310852, -0.3176656663417816, -0.12761762738227844, -0.15343782305717468, -0.5244365930557251, -0.4309462308883667, -0.7303122282028198, -0.622676432132721, -0.9555485844612122, 0.2389204055070877, 0.1048460528254509, 0.5521206259727478, 0.220870703458786, 0.039607126265764236, 0.23880499601364136, -0.09732262790203094, -0.5228343605995178, 0.15518607199192047, 0.5383622646331787, 0.5999730825424194, -0.6701012253761292, -0.7070885300636292, -1.518597960472107, 0.5356167554855347, 0.7329766154289246, -0.14822690188884735, -0.6016579866409302, 1.3647843599319458, 1.038037657737732, -0.6753061413764954, -0.5471317172050476, 0.6953282356262207, -0.6764400601387024, 0.5664222836494446, 0.3352983593940735, -0.779077410697937, 0.3316355049610138, -0.3957173228263855, -1.2527012825012207, 0.9630682468414307, -0.17072360217571259, -0.6496607065200806, 0.7496086359024048, 0.5785216093063354, 0.6464585065841675, 1.0231959819793701, -0.1939232349395752, -0.17774033546447754, 0.33634868264198303, 0.1435433179140091, -0.5962116122245789, 0.0325302928686142, 0.8635229468345642, 0.10883169621229172, -1.0795572996139526, -0.0959365963935852, -0.43376192450523376, 0.421773761510849, -0.1170801967382431, 0.7087790966033936, -0.33607229590415955, 0.5209730863571167, -0.507453203201294, 0.2873281240463257, 0.5748235583305359, -1.0720993280410767, -0.08814030885696411, 0.23683075606822968, 1.3892481327056885, 0.3431684970855713, 0.29462119936943054, 1.260273814201355, -1.0679845809936523, -0.6126847267150879, -0.24777871370315552, -0.16882559657096863, 0.6611506342887878, -0.002790282480418682, 0.6141736507415771, 0.23515936732292175, -0.20232228934764862, -0.248140349984169, -0.905026376247406, -0.1512448638677597, 0.5633848905563354, 0.01433729287236929, -0.48107820749282837, -0.18757936358451843, -0.18503935635089874, -0.39696311950683594, 0.2628062069416046, 0.192494198679924, -0.3066469132900238, -1.7837145328521729, -0.9900549054145813, -1.0944401025772095, 0.9151203632354736, 0.4082144796848297, 0.28608351945877075, -0.3071956932544708, -1.147316575050354, 0.4447643458843231, -0.5285046100616455, -1.5386883020401, -0.6934115886688232, 0.04801340401172638, 0.3857298493385315, -0.4156370759010315, 0.2793952524662018, -0.42644864320755005, 0.8098893761634827, -1.4405872821807861, -1.0649030208587646, -1.055750846862793, -0.21930409967899323, 0.6960299015045166, 0.6167839169502258, -0.45158758759498596, 1.2102487087249756, -0.929208517074585, 0.20794133841991425, -1.1510225534439087, -0.24762746691703796, -1.3462313413619995, 0.14869116246700287, 0.18828125298023224, 0.07052364200353622, 0.2582380473613739, 1.0336989164352417, 0.9283063411712646, 0.9425365328788757, -0.11113707721233368, 0.8686192631721497, -1.0193570852279663, -1.0987355709075928, 0.12115229666233063, 0.8989242911338806, -0.09456928074359894, -0.20021012425422668, 0.42246192693710327, -0.8728918433189392, -0.5862824320793152, 0.07444583624601364, 0.39939406514167786, -0.8085785508155823, 0.11444120854139328, 0.23890921473503113, 0.45803171396255493, -0.573208212852478, 0.3975617289543152, 0.5659536123275757, -0.6146852374076843, -0.12129075080156326, 0.08410341292619705, 0.8514594435691833, -0.841798722743988, 0.09388475120067596, 0.18153342604637146, -0.15102753043174744, -0.07952272146940231, 0.27058857679367065, -0.36322706937789917, 1.0545871257781982, -0.3450501561164856, 1.240423560142517, 1.4187248945236206, 0.20071303844451904, 0.38141629099845886, 0.3729313910007477, -0.43716707825660706, 0.31773608922958374, -0.6174939274787903, -0.2882860600948334, -0.5708266496658325, 0.8343252539634705, 0.3094291687011719, -0.3927103579044342, 0.5227051377296448, 0.5443354249000549, 0.11373220384120941, -0.2809904217720032, 0.6782062649726868, -0.39286279678344727, -0.0982419028878212, 0.7955510020256042, 0.924804151058197, -0.25910958647727966, -0.10612465441226959, -0.10060819983482361, 0.9960028529167175, -0.1382678747177124, 0.4196803867816925, 0.29694417119026184, 0.07572653144598007, 0.016827676445245743, 0.11798910051584244, -0.6657131314277649, -0.22481071949005127, -0.2855406701564789, -1.2036226987838745, -0.18142876029014587, 0.11641591042280197, -0.36043787002563477, 0.4072035551071167, -1.2312090396881104, -1.5032846927642822, -0.04572957754135132, -0.4530942142009735, 0.085739366710186, -0.12745818495750427, -0.32289209961891174, 0.24179907143115997, -0.46820637583732605, 0.25860121846199036, -0.5537393093109131, 1.0868839025497437, 0.4121726453304291, -0.3708655834197998, -0.9260488152503967, -0.872255802154541, 0.1641317754983902, -0.45647746324539185, -0.3373693525791168, 0.22630926966667175, 0.7600409388542175, -0.37713131308555603, -0.14398019015789032, -0.37959015369415283, 0.7655214071273804, 0.1404748558998108, 0.570789098739624, -0.886520266532898, -0.3540573716163635, 0.6977726221084595, 0.9621367454528809, -0.8783248662948608, -0.6976401209831238, -1.0697181224822998, 0.5109516978263855, -0.3639214336872101, 0.4589037001132965, -1.1188875436782837, 0.5289471745491028, 0.19821956753730774, -0.1958818882703781, 0.13807997107505798, -0.30610671639442444, 0.3634404242038727, -0.16677139699459076, 0.18349330127239227, -0.21310998499393463, 0.18018688261508942, -0.33296340703964233, -0.8484550714492798, -0.5215984582901001, -0.5744267702102661, 0.16174975037574768, 0.7343899011611938, -0.9873168468475342, -0.5447923541069031, -0.9533849358558655, 0.16428333520889282, 0.023301763460040092, 0.03031494840979576, 0.6202591061592102, -0.49297189712524414, -1.3047549724578857, 0.19808296859264374, 0.21019943058490753, 0.7192889451980591, 0.42929837107658386, 1.09677255153656, 1.274924874305725, 0.076046422123909, -0.4581338167190552, -0.48435086011886597, 0.30787336826324463, -1.4747183322906494, -0.31081900000572205, -1.4291796684265137, 0.19420009851455688, -0.5364486575126648], [0.5563545823097229, 1.0185250043869019, -2.6045238971710205, -0.3241741955280304, -0.043367013335227966, 0.10125239193439484, 2.2154877185821533, 0.3710455000400543, 0.3052982687950134, -0.8846278190612793, -0.9314035177230835, 0.06835587322711945, -0.3179006278514862, 0.25348129868507385, 0.18094024062156677, 0.4891911447048187, 0.848115086555481, 0.7572466731071472, 0.123323954641819, 0.7756714224815369, 0.4108387529850006, -0.5489293932914734, -0.0010576173663139343, -0.011391650885343552, 0.19309741258621216, 1.0505800247192383, -0.7041048407554626, 0.16338741779327393, -1.5243948698043823, -0.4360663592815399, 0.9509986042976379, -0.7670623064041138, 0.26023516058921814, 0.03092007152736187, -1.5068366527557373, -0.13519325852394104, 1.2202224731445312, 0.3984842002391815, 0.1617850512266159, 0.5441387295722961, 2.497987747192383, -0.25642770528793335, -0.33480048179626465, -1.315342664718628, -0.017890799790620804, -0.47567498683929443, 0.18672612309455872, -0.35307690501213074, 0.265279620885849, -0.7954450249671936, 1.0331557989120483, -0.22454187273979187, 0.2888244390487671, 1.1128931045532227, 0.9337112903594971, -1.5105546712875366, 0.20318081974983215, -0.07052943855524063, -0.4086686670780182, 0.26866036653518677, 1.6339346170425415, -0.6757072806358337, 0.28787946701049805, 1.4207850694656372, 0.6617875099182129, -1.0563061237335205, 0.8269310593605042, 0.05318661779165268, -0.6960713267326355, 0.20416070520877838, 1.042124629020691, 0.018974818289279938, -1.2958896160125732, 0.3329540193080902, -0.7411412596702576, 0.4107553958892822, -0.7490251660346985, 0.8684492707252502, 0.12189541757106781, 0.9217033386230469, -0.712002158164978, 0.641108512878418, 0.8775807023048401, -0.10327175259590149, -0.12029051035642624, -0.1056600883603096, 0.1839413195848465, -0.44395872950553894, -0.43596842885017395, 1.978299617767334, -0.078424833714962, 0.32530519366264343, 0.9972036480903625, -0.28012511134147644, -0.2444448173046112, -0.6491377353668213, 0.15992730855941772, -0.8104454278945923, -0.5211376547813416, -0.38845589756965637, -0.6493260860443115, -0.827289342880249, 0.9251653552055359, 0.7695363163948059, 0.9147989749908447, 1.1210277080535889, -0.5934008359909058, -0.9362409114837646, -0.8530099391937256, -0.19610154628753662, 0.024992618709802628, 0.9421128034591675, -0.1129232868552208, -1.1225733757019043, 0.3057462275028229, 0.28267496824264526, 0.9335222244262695, 0.060446590185165405, 0.29876869916915894, 0.33322426676750183, -0.398672878742218, -0.4808723032474518, -1.2498760223388672, 0.24989065527915955, 1.0494340658187866, 0.3565986752510071, -0.03753242269158363, 0.5803087949752808, -0.04119957238435745, 0.5937663912773132, 0.14185072481632233, 0.635593056678772, 0.3263462781906128, 1.5546661615371704, -0.5237302184104919, 0.03635891154408455, -1.604655385017395, -0.8308142423629761, 0.3588023781776428, 0.5805760025978088, 1.1395381689071655, -1.173951268196106, -0.48156359791755676, -0.5005701780319214, -0.5385611653327942, -0.07772812992334366, 0.4635877013206482, -0.671658456325531, -0.275393009185791, 0.2717362642288208, -2.3591816425323486, 0.2619616389274597, -0.12030747532844543, 0.7060235738754272, 0.7597419023513794, 0.43726107478141785, 0.3025340139865875, 0.4610312879085541, -0.2423524558544159, 0.3902110159397125, 0.36521145701408386, 0.3642372786998749, -0.3576621115207672, 1.266998052597046, 0.9615639448165894, -0.7280212044715881, -0.26194727420806885, 0.22410833835601807, 0.022732026875019073, 0.6755129098892212, -0.203341543674469, -0.8743111491203308, -0.8136072754859924, 0.05328156799077988, 0.28305718302726746, -0.2572157382965088, 0.7939350008964539, -0.012451587244868279, -1.0678157806396484, -1.3775217533111572, 0.8870140910148621, 0.14388474822044373, 0.5887951254844666, 0.010805631056427956, 0.6577547788619995, -0.669723391532898, -0.38739556074142456, 0.08652110397815704, -0.5859832167625427, -0.366316556930542, -1.1927266120910645, -0.2077862024307251, -1.4165217876434326, 0.251309871673584, -1.2723314762115479, -0.9670588970184326, 0.9788467288017273, -0.23416462540626526, -0.5671489238739014, -0.6299899220466614, 0.07847394794225693, -0.49363943934440613, -1.390488862991333, -0.4364112317562103, -0.9488023519515991, 0.6213385462760925, -1.375640869140625, 0.08684096485376358, -0.7681609392166138, 0.4838603138923645, 1.0636684894561768, 0.07096511125564575, -1.1908622980117798, -0.16804911196231842, -0.035764388740062714, -0.8943926095962524, -0.645222008228302, 0.28253209590911865, 0.4011485278606415, -0.41426509618759155, -0.10561283677816391, 0.4137900173664093, 1.1692607402801514, -0.5088199973106384, 1.0615750551223755, -0.31210315227508545, -0.5284250378608704, -0.13962408900260925, -1.2083625793457031, -0.08473321795463562, -0.6467331051826477, -0.5657016634941101, 0.9822413921356201, 0.8875769972801208, -1.6098181009292603, 0.5603744387626648, -0.3801748752593994, 0.5469712018966675, -0.3433157801628113, 0.09721142053604126, 0.813599705696106, 0.70890212059021, -0.39971405267715454, -0.47657468914985657, -0.4766347408294678, -0.01979251205921173, 0.36221998929977417, 0.3180433213710785, -0.1405610293149948, 1.1890652179718018, 0.9056633114814758, -0.3521883189678192, 0.4668363332748413, 0.8873671293258667, -0.03309698775410652, -1.7328671216964722, 0.10193753987550735, -0.3645413815975189, -0.598522961139679, 1.390297770500183, 0.8055402636528015, -0.803006112575531, -0.2670231759548187, -0.2821471393108368, 0.36672839522361755, -0.613891065120697, 0.3510211706161499, -0.14075852930545807, 0.44146081805229187, 0.08314564824104309, 0.2985460162162781, -0.5045817494392395, 0.8149150013923645, 1.2246038913726807, -0.008258271962404251, -0.4293908178806305, 0.037855733186006546, 0.7308312058448792, 0.11597523838281631, 0.6633745431900024, 0.27240264415740967, -1.6025186777114868, -0.7048773765563965, 0.5465058088302612, 0.12520599365234375, -0.27760401368141174, -0.18425917625427246, 1.2351958751678467, 1.100298285484314, 0.0020854584872722626, 0.49356481432914734, 0.3765234351158142, -0.1506119817495346, 0.3181346654891968, 0.3784539997577667, 0.10974092781543732, 0.37258321046829224, -0.8945459127426147, -1.1565032005310059, -0.7996612787246704, -0.07543062418699265, 0.770980179309845, 0.7356934547424316, 1.2328579425811768, -0.5196154117584229, -0.10036526620388031, -0.4918661117553711, -0.4264395534992218, -0.7765586376190186, -0.24066662788391113, -0.5043031573295593, -1.1449191570281982, 0.016841575503349304, -0.7907488346099854, 0.09329437464475632, 0.6548025012016296, -0.2859545648097992, 1.0503915548324585, 0.27393510937690735, -0.1423344761133194, -0.8093821406364441, -0.4902275502681732, 0.07643983513116837, -0.6744973659515381, 0.5625611543655396, 1.007565975189209, -1.742753028869629, -0.04370748624205589, -0.03409069776535034, 1.3340351581573486, 0.26167869567871094, -0.6643651127815247, 0.25078463554382324, -2.0252881050109863, -0.3480672240257263, 0.1331712156534195, 1.0364857912063599, 0.017068997025489807, -0.6013683676719666, -0.5108920335769653, 0.8323180675506592, 0.984658420085907, -0.2727217376232147, -0.019138697534799576, 0.8623058795928955, -1.0865519046783447, -0.7663213610649109, -0.021887771785259247, -0.07492737472057343, 0.9388487935066223, -0.4850691556930542, -0.7299046516418457, -0.28952550888061523, -0.0789085179567337, -0.4009527564048767, 0.27121037244796753, -0.05381610617041588, 0.4190748333930969, 0.6929165124893188, 0.49524495005607605, 0.8247095942497253, -0.5090559720993042, 0.2947688698768616, -1.568151593208313, 0.004643437452614307, 1.2003246545791626, 1.4541122913360596, 0.26794639229774475, 0.5110939145088196, 0.23553448915481567, -0.5835003852844238, -0.08891480416059494, -0.01606108248233795, 1.004708170890808, -0.6840687394142151, -0.23147542774677277, -0.3114134669303894, -1.0178269147872925, 0.06825242191553116, 0.5449504852294922, 0.45956867933273315, 0.2801889479160309, -0.3281990885734558, 0.21720896661281586, 1.2326853275299072, 0.46832677721977234, -0.23772622644901276, -0.21822261810302734, -0.26645249128341675, 0.9433785676956177, -0.330319881439209, -0.6101104617118835, -0.6540929079055786, 0.038991790264844894, 0.9176401495933533, -0.613520085811615, -0.689174234867096, 0.26140061020851135, 1.1192506551742554, 0.9411325454711914, -1.1314457654953003, 0.22234971821308136, -0.7892212867736816, 0.7478844523429871, 0.6812578439712524, 0.8465197682380676, 0.05128651112318039, 0.4417087137699127, -0.9340377449989319, -0.29393959045410156, -0.47245675325393677, 1.3326728343963623, -0.2532541751861572, -0.05592438578605652, 0.3109597861766815, -0.3935368061065674, 0.8587122559547424, -0.6942702531814575, -0.02970014326274395, 0.06804553419351578, -0.6921297311782837, 0.6228613257408142, -0.21409884095191956, -0.5206689238548279, 1.2824255228042603, -0.1409623622894287, -0.6798171997070312, 0.5363299250602722, 0.3926548659801483, -0.4044282138347626, -0.23794372379779816, 0.6073641777038574, -0.24303191900253296, -0.002093382179737091, 0.08368968963623047, 0.4435010552406311, 0.4255548417568207, 0.3271070122718811, 0.9989193677902222, -0.04837001860141754, 0.4540114998817444, -0.6445994973182678, 0.5384466052055359, 0.6936537027359009, 0.9478353261947632, 0.7240170836448669, 0.8334817290306091, -1.0304539203643799, -0.5132104158401489, 0.7581860423088074, 0.2032962441444397, 0.8968803286552429, 0.5248029828071594, -0.09741020947694778, 1.3379812240600586, -2.0427327156066895, -0.18178720772266388, 0.9065365195274353, 0.4001059830188751, 0.6346969604492188, -0.021389205008745193, 0.37508848309516907, -0.8315675854682922, -0.6710014343261719, -0.9177007675170898, -0.06638205796480179, 1.3159840106964111, 0.23031510412693024, -0.27589595317840576, 0.7857473492622375, -0.9898319840431213, -0.10552311688661575, -0.47160932421684265, -1.0561192035675049, 0.10453647375106812, -0.2852309048175812, 0.09311983734369278, 0.1253967583179474, 0.9100704789161682, 1.3952465057373047, -0.09841510653495789, -2.145071506500244, 0.24146826565265656, -0.8853518962860107, -0.23053480684757233, -0.46810224652290344, -0.2666145861148834, -1.3090450763702393, -0.39026376605033875, 0.5646873116493225, -0.2153858095407486, -0.5074644684791565, -0.63857102394104, -0.42668619751930237, -1.1177126169204712, 0.44342920184135437, 0.333878755569458, 0.5502068400382996, 0.3911621570587158, -0.35349926352500916, 0.07832692563533783, 0.3527337312698364, -0.20782549679279327, 0.28251612186431885, 0.562221109867096, 0.14185550808906555, -0.6730871200561523, -0.6699692606925964, -0.5919297933578491, 1.0195658206939697, 0.6752505302429199, -0.0011444874107837677, -0.2943837642669678, 1.3384584188461304, 1.328107237815857, -0.22096554934978485, -0.6796374320983887, 1.2608593702316284, -0.6161364316940308, 0.7550272941589355, 0.3214032053947449, -0.4675693213939667, 0.521391749382019, 0.320773720741272, -1.4110291004180908, 0.6601623892784119, -0.24765819311141968, -0.47923552989959717, 0.7895123362541199, 0.7701655030250549, 0.5769402384757996, 0.36510002613067627, -0.4003932774066925, -0.797541618347168, 0.3507000803947449, 0.03001321107149124, -0.8082752823829651, 0.5760601162910461, 1.0298134088516235, -0.08399787545204163, -0.5885397791862488, -0.3944242000579834, -0.1734834909439087, 0.4244632422924042, -0.4583781063556671, -0.020731627941131592, 0.5143916010856628, 0.3840141296386719, -0.009176375344395638, -0.3152711093425751, 0.15827316045761108, -0.5794579386711121, 0.18176697194576263, 0.13119275867938995, 0.8919728994369507, 0.6501040458679199, 0.6045586466789246, 1.1952471733093262, -0.4942854046821594, -0.19530175626277924, -0.3088292181491852, 0.15262708067893982, 0.8820196390151978, 0.5219814777374268, 0.3166910409927368, -0.7574130892753601, -0.9731852412223816, -0.5585334897041321, -0.7597745656967163, -0.22418345510959625, 1.1319788694381714, -0.5902698636054993, -0.11448681354522705, -0.3009019196033478, -0.8092359900474548, 0.6421672105789185, 0.15434256196022034, 0.36455437541007996, -1.1705577373504639, -1.1850780248641968, -1.1179438829421997, -0.13264267146587372, 0.9998357892036438, 0.21067437529563904, 0.5965942144393921, -0.032913126051425934, -1.5250056982040405, 0.4820484519004822, -0.03353337198495865, -1.6973371505737305, -0.36939331889152527, -0.2076939344406128, 0.8610602021217346, 0.1813448667526245, 0.202933669090271, 0.05671171844005585, 0.9370880722999573, -0.8039442896842957, -0.7775341272354126, -1.3518234491348267, -0.5961021184921265, 0.5159424543380737, 0.7877386212348938, -0.8066666722297668, 1.4501330852508545, 0.13077382743358612, -0.83302241563797, -0.9148632884025574, -0.560194730758667, -1.5015894174575806, 0.10435011237859726, 0.6156669855117798, 0.6915990114212036, 0.7621490359306335, 1.3865827322006226, 0.387158066034317, -0.03364628180861473, 0.7812071442604065, 0.7277918457984924, -1.3395483493804932, -1.3244208097457886, -0.5025590658187866, 0.7962002158164978, -0.7579816579818726, -0.5986682772636414, 0.06267919391393661, -0.8434484601020813, -0.9421079754829407, -0.007166162133216858, 0.9676414132118225, -0.8820327520370483, 1.0219799280166626, 0.6458173394203186, -0.3590697646141052, -0.5712999701499939, 0.2990260720252991, 0.48191118240356445, -0.6603910326957703, -0.3807474672794342, -0.3463584780693054, 0.04970730468630791, -0.5033266544342041, -0.1555631160736084, -0.2491394430398941, -0.13816951215267181, -0.11888595670461655, 0.696243941783905, 0.053238581866025925, 0.5892220735549927, -0.4059504270553589, 1.4308706521987915, 0.786226749420166, -0.2513035833835602, 0.2487344741821289, 0.763840913772583, 0.03725520893931389, -0.3949028253555298, -0.7392804026603699, -0.313912570476532, -0.1987423598766327, 0.4661896526813507, 0.14374597370624542, -0.1491059958934784, 0.128078892827034, 0.5720823407173157, 0.30747947096824646, 0.22209206223487854, 0.36841830611228943, -0.48905086517333984, -1.0333632230758667, 0.8446317911148071, 1.0722812414169312, 0.09912010282278061, -0.06631772220134735, 0.2071993052959442, 1.2458921670913696, -0.21708574891090393, 0.3269791007041931, 0.009933538734912872, -0.5265647172927856, 0.5172692537307739, 0.01169450581073761, -0.6673404574394226, 0.2226385623216629, 0.13370381295681, -1.7500983476638794, 0.35570254921913147, -0.5594340562820435, -0.7480477094650269, 0.7123957872390747, -0.36431413888931274, -0.03520897775888443, -0.30337387323379517, -0.4919948875904083, 0.532795250415802, 0.050661034882068634, -0.05694691836833954, -0.38145241141319275, 0.02802664041519165, 0.7973033785820007, -0.21530187129974365, 1.3784434795379639, -0.37615835666656494, -0.16474373638629913, -1.1115391254425049, -0.564420223236084, -0.656006932258606, -0.0631248727440834, 0.011757750995457172, -0.3489477336406708, 0.3700697720050812, -0.2723381519317627, -0.16362610459327698, -0.12815438210964203, 0.0204862579703331, 0.2521478533744812, 0.07392235100269318, -0.5878338813781738, 0.0661739930510521, 0.08643393218517303, 0.36162206530570984, -0.8756633996963501, -0.6508335471153259, -0.661605715751648, 0.4086953401565552, 0.013430126011371613, 1.2988859415054321, -0.5039737820625305, 1.3068701028823853, 0.6011293530464172, 0.0661325603723526, -0.6294130086898804, -0.6699646711349487, 1.0820232629776, -0.025587698444724083, 0.100898377597332, -0.6380294561386108, 0.3512006402015686, -0.1885257065296173, -1.6753220558166504, -0.5602994561195374, 0.40168386697769165, -0.8120787143707275, 0.6304229497909546, -0.9856684803962708, -0.33216363191604614, -0.5931708216667175, -0.6422430276870728, -0.05189668759703636, 0.015431905165314674, 0.5614291429519653, -0.9631368517875671, -1.0831798315048218, -0.027820833027362823, 0.44951868057250977, 0.6193544268608093, 0.31339436769485474, 1.29594886302948, 1.8870925903320312, 0.024128898978233337, -0.5802397131919861, -0.3135914206504822, 0.4901807904243469, -1.2762223482131958, -0.31509050726890564, -0.5378425717353821, 0.6572827100753784, 0.12249402701854706], [0.7426621913909912, 1.8914809226989746, -2.5365099906921387, -0.38954275846481323, -0.11787720024585724, 0.37433257699012756, 1.6079853773117065, 0.39648133516311646, 0.7670449018478394, -0.4293704330921173, -1.2823631763458252, 0.03673223406076431, 0.5136008262634277, 0.5724231004714966, 0.5608686208724976, 0.37959128618240356, 0.6154017448425293, 0.2713485658168793, -0.1559363156557083, 1.2681336402893066, 0.023012980818748474, -1.4905474185943604, -0.7607347369194031, 0.09278922528028488, 0.06420206278562546, -0.2774762809276581, -1.6788541078567505, 0.17471730709075928, -0.9905088543891907, -0.7155365943908691, 0.4349295198917389, -0.3854585886001587, 0.22754894196987152, 0.3086501657962799, -1.5570588111877441, -0.03237235173583031, 1.4829943180084229, 0.758175790309906, 0.3829355239868164, 0.9075961112976074, 1.8310068845748901, 0.12193727493286133, 0.9817250370979309, -1.1747289896011353, 0.4375925362110138, -0.20008689165115356, 0.6148416996002197, -1.26522958278656, 0.736068606376648, -0.0666150227189064, 1.1446043252944946, 0.44478872418403625, 0.19527462124824524, 0.6861889958381653, 0.587510883808136, -1.3533051013946533, 0.5124088525772095, -0.41959482431411743, -0.03381630405783653, 0.4672900438308716, 1.0086238384246826, 0.027238158509135246, 1.0341668128967285, 1.2364115715026855, 0.4906088411808014, -0.6469731330871582, 0.5097150206565857, 0.5739098787307739, -0.3601464331150055, -0.286307156085968, 0.6233261823654175, 0.7168235182762146, -1.52881920337677, 0.6163424253463745, -0.9703008532524109, 0.9751020669937134, -0.08223257213830948, 0.8136479258537292, -0.22372008860111237, 1.1758424043655396, -0.5582947134971619, -0.03787217289209366, 0.33001378178596497, 0.041187990456819534, 0.13526245951652527, 0.010218899697065353, 0.6891103982925415, -0.6184582710266113, -0.2316364049911499, 0.5728007555007935, -0.20434118807315826, 0.11365552246570587, 0.3718391954898834, 0.6182823181152344, 0.2144547700881958, -0.4660107493400574, -0.11853300034999847, -0.3042846918106079, -0.6413857340812683, -0.48398464918136597, -0.7914590239524841, -1.127524495124817, 0.443203866481781, 0.21021977066993713, 1.119154453277588, 1.8448281288146973, 0.02905469574034214, -1.1565146446228027, -0.7549652457237244, 0.24850918352603912, -0.4052383005619049, -0.22324268519878387, -0.12788163125514984, -1.3535462617874146, -0.5624315142631531, 1.0473114252090454, 0.8437526226043701, -0.030934929847717285, 0.6343005895614624, 0.6088013648986816, -0.7658578157424927, -0.370257169008255, -0.4321896731853485, 0.48945340514183044, 0.6692729592323303, 0.04178086668252945, -0.34542033076286316, 0.03167467191815376, -0.3800046741962433, 0.4089430272579193, 0.5257879495620728, 0.4911114573478699, 0.4770835041999817, 1.4629703760147095, 0.06439314782619476, 0.8521488904953003, -0.3840138018131256, -0.5937854647636414, -0.02423902414739132, 0.6906692385673523, 0.5578139424324036, -0.6387855410575867, -0.7873251438140869, -0.9194861650466919, -0.42655301094055176, -0.5406437516212463, 0.8477149605751038, -0.08496120572090149, -0.7304673790931702, -0.18786554038524628, -2.0208053588867188, 0.29879671335220337, -0.2560006380081177, 0.4895535111427307, 0.7818662524223328, -0.5083448886871338, 0.6959275007247925, 0.25017282366752625, -0.08473722636699677, 0.4034765660762787, 0.5575020909309387, 0.18258343636989594, -0.15651695430278778, 1.0399235486984253, 0.4107806980609894, -0.7644132971763611, -0.003264008089900017, 0.7628815174102783, -0.2883969247341156, 0.6455343961715698, -0.2682296335697174, -0.021054314449429512, -1.0163627862930298, -0.036894820630550385, -0.0005550198256969452, -1.0578892230987549, 0.9154685139656067, -0.23311083018779755, -0.948264479637146, -1.068321704864502, 1.2101643085479736, -0.37446263432502747, 0.3751493990421295, 0.07793240249156952, 0.7728009223937988, -0.7617766261100769, -0.4701690077781677, 0.36637526750564575, -0.9463021159172058, -0.1559993177652359, -0.5527781844139099, 0.06587251275777817, -1.2615764141082764, 0.1738242655992508, -0.8466582894325256, -1.0135496854782104, 0.582835853099823, -0.1249990463256836, -1.5128544569015503, -0.5306233167648315, 0.07811810821294785, -0.6981246471405029, -1.9111645221710205, -0.11651403456926346, -0.4312175512313843, 1.217215895652771, -1.2110077142715454, 0.33495646715164185, -1.394059181213379, 0.5617453455924988, 0.7058061957359314, 0.19017598032951355, -0.8844441175460815, -0.2539620101451874, 0.01994590274989605, -1.1077775955200195, -0.11519873887300491, 0.10318316519260406, 0.5311947464942932, -0.8085933923721313, 0.07131414115428925, 0.8013538122177124, 1.162915587425232, -0.40536874532699585, 0.3621627688407898, 0.11820965260267258, -0.4103940427303314, -0.6278524994850159, 0.0036230646073818207, 0.8443781733512878, -0.5302100777626038, -0.7362629175186157, 0.9708768129348755, 0.7248801589012146, -1.5091471672058105, 1.0020018815994263, 0.07613779604434967, 0.19181260466575623, 0.1215086430311203, 0.7653672695159912, 0.8237576484680176, 0.3181489109992981, -0.8467357754707336, -0.3956204354763031, -0.31818652153015137, 0.3115374743938446, 0.7945265173912048, -0.13480480015277863, 0.3322790563106537, 1.5770193338394165, 0.46298232674598694, 0.09252957999706268, 0.3858807682991028, -0.3145306706428528, -0.2154671847820282, -0.6710241436958313, -0.5001094341278076, -0.08996957540512085, -0.9276750683784485, 1.646165370941162, 0.7183024883270264, -0.9734383821487427, -0.6575503945350647, -0.26547470688819885, 0.4138905107975006, -0.3551926016807556, -0.006901897490024567, -0.6831076741218567, 0.6201426982879639, -0.10431300848722458, -0.2046469748020172, -0.41373610496520996, 0.08576004952192307, 1.4166194200515747, 0.07592888176441193, -0.5894164443016052, -0.24212148785591125, 0.3319970965385437, 0.02339758723974228, 0.9860955476760864, -0.23827791213989258, -1.297768235206604, -1.3488831520080566, -0.26155075430870056, 0.6694777011871338, 0.4683384895324707, 0.45528164505958557, 1.0473915338516235, 0.6167755126953125, -0.16704033315181732, -0.04727108031511307, 0.8099157810211182, 0.2667861878871918, 0.09772675484418869, 0.1548633575439453, 0.08059976994991302, 0.9413832426071167, -1.0217725038528442, -0.5750747919082642, 0.12443225085735321, 0.29221972823143005, 1.0825971364974976, 0.8324282765388489, 1.4104490280151367, -0.3975907266139984, 0.09504058957099915, -0.25103405117988586, -0.03955047205090523, -0.8689780235290527, -0.5796622633934021, -0.7527840733528137, -1.1223294734954834, -0.17929382622241974, -0.3218303322792053, -0.05309247970581055, 0.6684219837188721, 0.10370809584856033, 0.5550469756126404, 0.8393025994300842, -0.5206330418586731, -0.31842178106307983, -0.1181398257613182, -0.07138416171073914, -0.6433488130569458, 0.21419133245944977, 0.4440516233444214, -2.018145799636841, -0.391362726688385, 0.2335517406463623, 0.29341426491737366, 0.4472031593322754, 0.404941588640213, 0.602088987827301, -0.8365084528923035, -0.7105346322059631, -0.21539053320884705, 1.243100643157959, 0.035813990980386734, -0.7485056519508362, -0.6699923872947693, 0.6444745659828186, 0.8511691689491272, -0.29721251130104065, -0.30211350321769714, 0.18373823165893555, -0.5094537138938904, -0.08202656358480453, -0.42154017090797424, 0.39792248606681824, 0.2811180651187897, -1.0506929159164429, -0.9762841463088989, -0.030902110040187836, -0.2158132791519165, -0.4580744802951813, 0.6407275795936584, -0.1979432851076126, 1.1556750535964966, -0.12439213693141937, 0.8852155208587646, 0.8213974833488464, -0.8895537257194519, 0.15682712197303772, -1.4342315196990967, 0.9014881253242493, 0.8667742013931274, 1.6652439832687378, 0.4152231812477112, 0.5285411477088928, 0.2191353142261505, -0.9322642087936401, -0.07551314681768417, 0.16060060262680054, 1.1842542886734009, -0.34425103664398193, -0.10172867029905319, -0.09026192873716354, -1.0445821285247803, -0.06902729719877243, -0.35250863432884216, 0.20307119190692902, 0.6024765372276306, -0.8036118745803833, -0.025487368926405907, 1.3778307437896729, -0.04348563030362129, -1.0099248886108398, -0.9154548048973083, 0.21817219257354736, 0.8630653023719788, -0.47714370489120483, 0.16345587372779846, -0.20163112878799438, -0.1613961160182953, 0.8064382076263428, -0.8999547958374023, -0.3561753034591675, 0.7654275894165039, 0.585918128490448, -0.02635716274380684, -1.3217923641204834, 0.0016662066336721182, -1.1968865394592285, 0.297290176153183, 1.6379554271697998, 0.5157273411750793, 0.5278002023696899, 0.44984170794487, 0.10682138800621033, -0.5339928269386292, -0.683303952217102, 1.7794878482818604, -0.494067907333374, 0.04296426847577095, 0.22099412977695465, 0.11106119304895401, 1.2522690296173096, -0.35168835520744324, 0.060084469616413116, -0.03443748876452446, -0.5738322734832764, 0.17712996900081635, 0.6720869541168213, -0.5351558923721313, 2.2034189701080322, -0.24835553765296936, -0.5234975814819336, 0.8420584797859192, 0.20299199223518372, -0.6706128120422363, -0.18191102147102356, 0.057962529361248016, -0.87089604139328, -0.8706263899803162, 0.07102691382169724, 0.8855519890785217, -0.09633719176054001, 0.4494352340698242, 0.5459164977073669, 0.2094665765762329, 0.4564020037651062, 0.26634350419044495, 1.0305023193359375, 0.35444769263267517, 1.1604732275009155, 0.13996534049510956, 0.9109705686569214, -0.255899578332901, -0.2691424489021301, 0.8717437982559204, -0.8692522048950195, 0.37365251779556274, 0.42949387431144714, 0.6111812591552734, 1.1805076599121094, -1.8945732116699219, -0.7230681777000427, 0.8663995862007141, 0.1323339194059372, 0.7130119800567627, 0.7752912640571594, 0.45291826128959656, -1.0359857082366943, 0.33116084337234497, 0.3409108519554138, -0.5464593172073364, 0.5907314419746399, 0.23460762202739716, 0.19095739722251892, 0.6878775954246521, -0.25779086351394653, -0.0052263811230659485, -0.5387653112411499, -0.9583842754364014, 0.348987340927124, -1.08424973487854, 0.6461759209632874, 0.2639286518096924, 0.8482124209403992, 0.9527291655540466, -0.7035871148109436, -1.0900379419326782, 0.7185093760490417, -1.2451943159103394, 0.14131566882133484, -0.1132054328918457, -1.000840425491333, -1.1616970300674438, -0.5496392846107483, 0.11801449209451675, -0.3846985995769501, -0.688927948474884, -0.41894569993019104, -0.33897513151168823, -1.4587090015411377, 0.5638805031776428, 0.3876006007194519, 1.0385355949401855, 0.6314546465873718, 0.2678001821041107, 0.4121120870113373, 0.3318793475627899, -0.9420560002326965, 0.033829573541879654, 0.5871853232383728, -0.6413783431053162, -0.8089927434921265, -0.7477480173110962, -1.1056158542633057, 1.158577561378479, 0.7926860451698303, 0.140703484416008, 0.24851912260055542, 0.7403908371925354, 1.2625027894973755, -0.6499179005622864, -1.2504298686981201, 0.219476118683815, -0.7230747938156128, 0.3951532542705536, 0.9034378528594971, -0.6734879016876221, -0.4354836642742157, -0.01053912565112114, -1.6717432737350464, 1.2737655639648438, 0.0035646967589855194, -0.428943932056427, 1.1421434879302979, 0.6265786290168762, 0.8055053949356079, 1.021893858909607, -0.31872808933258057, -0.06361530721187592, 0.42124930024147034, 0.36129361391067505, -0.7443712949752808, -0.006346813403069973, 0.579483687877655, -0.2127065658569336, -0.22176001965999603, 0.22243037819862366, -0.16037385165691376, -0.021386900916695595, -0.11964632570743561, 0.6310104131698608, -0.24961189925670624, 0.7298905849456787, -0.8609134554862976, -0.055646926164627075, 0.36722439527511597, -0.9945700168609619, -0.09782018512487411, 0.10002044588327408, 0.95091712474823, 0.10153000801801682, -0.6143200397491455, 0.6192132830619812, -0.33360499143600464, -0.041817113757133484, -0.26515448093414307, -0.3142298758029938, 1.231799840927124, 0.18901565670967102, 0.2334790974855423, 0.8399859666824341, 0.16498993337154388, -0.13014709949493408, -0.564433217048645, 0.5371295809745789, 0.5466748476028442, -0.4391922056674957, -0.3238951861858368, 0.11599104106426239, -0.49164918065071106, -0.03796229138970375, 0.4110485315322876, -0.0969240665435791, -0.9416543245315552, -1.4286266565322876, -1.1592968702316284, -0.80198073387146, 0.43545523285865784, -0.10103879123926163, -0.13502922654151917, 0.04215552285313606, -1.3961645364761353, -0.28414642810821533, -0.10832996666431427, -1.7002443075180054, -0.5060667395591736, -0.4010755121707916, 0.5677940845489502, -0.11773791164159775, 0.2574481964111328, -0.43533140420913696, 0.5416271686553955, -1.2379546165466309, -0.46917814016342163, -1.4744679927825928, -0.7648698091506958, 1.0963711738586426, 0.6171716451644897, -0.624706506729126, 1.0288947820663452, -0.1266319751739502, -0.3026670515537262, -0.7982956767082214, 0.1704038828611374, -0.631291389465332, -0.13332629203796387, 0.06471370905637741, 0.03104495070874691, 0.36376798152923584, 1.4468649625778198, 0.7175036072731018, 1.1109675168991089, 0.5804752707481384, 0.917117178440094, -1.108731985092163, -1.2639719247817993, 0.24788494408130646, 1.0013469457626343, -0.6661067008972168, -0.12633116543293, 0.18509076535701752, -1.2444514036178589, -0.643892228603363, 0.5102853775024414, 0.44597306847572327, -0.8258137702941895, -0.30932316184043884, -0.6752395033836365, 0.4014073610305786, -0.830277681350708, -0.017739996314048767, 0.5771094560623169, -0.39015981554985046, -0.11481662839651108, 0.04076842591166496, -0.2806129455566406, -1.1488033533096313, -0.0020091403275728226, 0.058577731251716614, 0.3577885329723358, -0.2750532329082489, 0.288837194442749, -0.19514377415180206, 0.09266788512468338, -0.8664972186088562, 1.4037389755249023, 1.227960467338562, -0.24146123230457306, 0.07560897618532181, 0.024943772703409195, 0.02951984666287899, 0.31270071864128113, -0.6845120787620544, 0.07252005487680435, -0.839527428150177, 0.5666562914848328, 0.37649813294410706, 0.05559205636382103, -0.06779307872056961, 0.7255322337150574, 0.0016809217631816864, -0.15061886608600616, 0.5739717483520508, -0.3418876528739929, -0.5061389803886414, 1.2452515363693237, 1.4159787893295288, -0.4085818827152252, 0.31579598784446716, 0.5006366968154907, 0.7646175026893616, 0.08529200404882431, 0.4753638505935669, -0.07361603528261185, -0.6385765075683594, 0.705074667930603, 0.36969220638275146, -0.7812910079956055, -0.39165621995925903, -0.5628355741500854, -1.4056123495101929, -0.02361823432147503, -0.021407289430499077, -0.38296815752983093, 0.48915910720825195, -0.6571632623672485, -1.0166771411895752, -0.03123866394162178, -0.16429658234119415, 0.4094811677932739, -0.5518385171890259, -0.39713987708091736, -0.5090345740318298, 0.3881390690803528, 0.990748405456543, -0.3747776746749878, 1.0567737817764282, -0.255143940448761, -0.9625757932662964, -1.3702775239944458, -0.42257583141326904, 0.016459228470921516, 0.023390674963593483, -0.5222495794296265, 0.13330085575580597, 0.8376659154891968, -0.7756640911102295, 0.2856749892234802, 0.1025943011045456, -0.07072553783655167, -0.07063440978527069, 0.11742280423641205, -0.859031617641449, -0.32972630858421326, 0.7606738209724426, 0.5950739979743958, -0.3543713390827179, -0.6732438802719116, -0.7341152429580688, 0.39485713839530945, 0.08700287342071533, 0.3074365258216858, -0.6726101040840149, 0.6502888202667236, 0.7508611083030701, -0.1437128484249115, -0.21037878096103668, -0.24289485812187195, 0.8322339057922363, 0.19633951783180237, -0.15874312818050385, -1.0846853256225586, -0.5480676889419556, 0.09796393662691116, -1.1559289693832397, -0.38465848565101624, -0.34421440958976746, -0.11322121322154999, -0.024430308490991592, -0.34948596358299255, -0.8654866218566895, -0.8451817035675049, -0.3288635313510895, 0.009037647396326065, 0.531588613986969, 0.5399860739707947, -0.43862107396125793, -0.8573607802391052, 0.3153790831565857, 0.6082788705825806, 0.43047288060188293, 0.4719198942184448, 1.8499994277954102, 1.9895591735839844, 0.43453314900398254, -0.2905447781085968, -0.1613750010728836, 0.30873823165893555, -1.3748149871826172, -0.07931849360466003, -1.7173752784729004, 0.2637193202972412, -0.5756362080574036], [0.2986343502998352, 2.066756248474121, -2.3526291847229004, 0.7008398175239563, 0.10308200120925903, 0.6880887746810913, 0.4516335427761078, 0.1752861738204956, -0.05065976083278656, -0.2811453342437744, -1.461158275604248, 0.8556385040283203, 0.37419503927230835, 0.9773374199867249, 0.6376152038574219, 0.6365393400192261, 1.1158607006072998, -0.7711029052734375, -0.7601311206817627, 1.2211718559265137, 0.2333337664604187, -1.2712657451629639, -0.6647083163261414, 0.02876378782093525, 0.030947543680667877, -0.06407251954078674, -1.4497243165969849, -0.25052234530448914, -0.8673213720321655, -0.8565000295639038, 0.7799817323684692, 0.37547457218170166, 0.7595866322517395, -0.009636327624320984, -1.9376788139343262, -0.36191678047180176, 1.2495479583740234, 0.36650246381759644, -0.21237915754318237, 0.3466281294822693, 1.6727514266967773, -0.6515050530433655, -0.2638325095176697, -1.8844407796859741, 0.8840141296386719, -0.28400129079818726, 0.5677236318588257, -0.2578994631767273, 0.8676130175590515, -0.7979738712310791, 0.40640783309936523, 0.6410177946090698, -0.10611585527658463, 0.7494263052940369, 0.9766309261322021, -1.0097016096115112, 0.28486204147338867, -0.18467363715171814, 0.12179546058177948, 0.5793074369430542, 1.7679779529571533, -0.6643493175506592, 1.331434726715088, 0.8475445508956909, 0.41499829292297363, -0.49028053879737854, -0.08036468178033829, 0.8278717994689941, -0.745996356010437, -0.5546573400497437, 0.7355060577392578, 0.8414849638938904, -1.2165765762329102, 0.46365299820899963, -0.7293186783790588, -0.009114688262343407, 0.5064588785171509, 0.5328437089920044, -0.016923721879720688, 0.8104262351989746, -0.34739699959754944, 0.06444322317838669, 0.3947758674621582, 0.07081922143697739, -0.05160582810640335, 0.32799243927001953, 0.539874255657196, -0.6148797869682312, -0.5295628309249878, 0.8038623332977295, -0.11098150908946991, 0.17926497757434845, 0.8275671005249023, 0.05939452350139618, 0.34288787841796875, -0.5535891652107239, 0.020430676639080048, -1.1552189588546753, -0.48533201217651367, -0.6177855730056763, 0.1213831752538681, -1.044663667678833, 0.9285588264465332, 0.6726122498512268, 0.6658564805984497, 1.286712884902954, -0.4728028178215027, -1.3262064456939697, -0.2401425838470459, -0.03461582213640213, 0.1813790202140808, 0.27065014839172363, -0.6627562046051025, -1.4351234436035156, -0.343667209148407, 1.0175435543060303, 1.1023759841918945, -0.3334500789642334, 0.2622821033000946, 0.563807487487793, -0.6628482341766357, -0.8308886885643005, -0.7186222076416016, -0.12701673805713654, 1.3293688297271729, -0.30594050884246826, -0.41081753373146057, -0.33920836448669434, -0.5456641316413879, 0.045783981680870056, 0.9314935207366943, 0.9331640005111694, -0.3357737064361572, 1.2345008850097656, -0.6630154848098755, 1.2183220386505127, -0.2101200819015503, -0.804133415222168, -0.0032734721899032593, 0.5682823657989502, 0.5497622489929199, -0.41403335332870483, -0.38223642110824585, -0.3155679702758789, -0.7105711102485657, -0.7212731838226318, 1.4741976261138916, 0.42376309633255005, -0.35500603914260864, 0.2177467793226242, -1.5211111307144165, 0.1870170384645462, 0.21406419575214386, 0.7794935703277588, 0.6865648031234741, -0.11760114133358002, 0.438842236995697, 0.7978516221046448, 0.04999765008687973, 0.3541603684425354, 0.7434877157211304, -0.6108831167221069, -0.33493131399154663, 0.5840722322463989, 0.6730467081069946, -0.5816930532455444, 0.44495081901550293, 0.755415141582489, 0.019553102552890778, 0.6771352291107178, -0.12250837683677673, -0.11210329830646515, -0.9697027206420898, 0.26259660720825195, -0.011573749594390392, -0.6689451336860657, 1.3904565572738647, -0.08916784077882767, -0.8674347400665283, -0.6949295997619629, 0.8019965887069702, 0.23316839337348938, 0.571476936340332, 0.10744008421897888, 0.9339172840118408, -0.6986595392227173, -0.39309215545654297, -0.17511332035064697, -0.8811915516853333, -0.7320661544799805, -0.5370424389839172, -0.6360363960266113, -0.956534743309021, 0.6113482117652893, -0.737326443195343, -1.4710592031478882, 0.6915311217308044, -0.24901846051216125, -1.080601692199707, -0.4304608404636383, 0.3208046853542328, -0.44762304425239563, -1.1661794185638428, -0.5617193579673767, -0.23320382833480835, 0.6859003305435181, -0.306474506855011, 0.6741867065429688, -1.4425113201141357, 0.14810997247695923, 0.8506097793579102, -0.5064035654067993, -1.0957411527633667, -0.4469481110572815, 0.4218914210796356, -0.8713552355766296, 0.28659698367118835, -0.0763947069644928, -0.026762716472148895, -0.2695428431034088, -0.28934845328330994, 0.47793048620224, 1.113288402557373, -0.2703218460083008, 0.8149286508560181, -0.3691801428794861, -1.3530477285385132, -0.9561103582382202, -0.3206242024898529, 0.051496271044015884, -0.34170177578926086, -1.0324764251708984, 1.008725881576538, 1.1230437755584717, -1.0542986392974854, 0.9848587512969971, -0.3006601929664612, 0.7502380609512329, -0.11853654682636261, 0.5324366092681885, 0.6911813020706177, 0.9004125595092773, -1.4665369987487793, -0.08284902572631836, -0.48288559913635254, 0.004337683320045471, 0.5245029926300049, -0.4472711682319641, 0.16425158083438873, 1.4776721000671387, 0.6264090538024902, -0.6778326630592346, 0.7964398860931396, 0.27257561683654785, -0.33467942476272583, -1.0455448627471924, -0.41608381271362305, -0.03749100863933563, -0.8829065561294556, 1.6315953731536865, 0.37010952830314636, -1.3310234546661377, 0.2113480269908905, -0.5804060697555542, -0.014994633384048939, -0.9415868520736694, 0.27746227383613586, -1.1246113777160645, 0.9314127564430237, -0.5209536552429199, 0.13476556539535522, 0.04915935918688774, -0.009003564715385437, 1.5489574670791626, -0.008957482874393463, -1.00662100315094, -0.15445226430892944, 0.3959518074989319, 0.05734757333993912, 1.141076683998108, -0.6821601390838623, -1.0459543466567993, -1.0005615949630737, 0.0920676589012146, 0.9302129745483398, 0.13713939487934113, 0.2374878078699112, 1.227334976196289, 0.5885317921638489, -0.06537379324436188, 0.3891906142234802, 0.266364187002182, 0.6442805528640747, 0.47254517674446106, 0.4593244194984436, 0.19454380869865417, 0.8252713680267334, -0.5705347061157227, -0.4328870475292206, -0.17889626324176788, 0.5555417537689209, 0.539993941783905, 0.7493404150009155, 1.501050353050232, -0.5861349701881409, 0.48071610927581787, -0.5335170030593872, 0.36465996503829956, -1.0951027870178223, -0.39045336842536926, -0.819865345954895, -1.0903440713882446, -0.029203355312347412, -0.6457041501998901, 0.11677467823028564, 0.04579175263643265, 0.3440282344818115, 0.7444592714309692, 0.6113178730010986, 0.02959810197353363, -1.5669987201690674, -0.7907123565673828, -0.3909953236579895, -1.0536324977874756, -0.015101060271263123, 0.8606337308883667, -2.0636210441589355, -0.16097673773765564, -0.45228829979896545, -0.19407686591148376, -0.15084214508533478, -0.03454184532165527, 0.4909672141075134, -0.8459309339523315, -0.2335100769996643, -0.16140522062778473, 1.8019299507141113, 0.36342787742614746, -0.10652948915958405, -1.0692658424377441, 0.9058778285980225, 0.9358571171760559, -0.46480393409729004, -0.06432456523180008, 0.8033666610717773, -0.6638094186782837, 0.3299272358417511, -0.25872156023979187, 0.5557026863098145, 0.18638929724693298, -1.1452982425689697, -1.2667605876922607, -0.33582422137260437, -0.4379707872867584, -0.5695757269859314, 0.12932607531547546, -0.040550291538238525, 0.666019082069397, 0.16549131274223328, -0.0020484942942857742, 1.2766062021255493, -0.5941215753555298, 0.3592129349708557, -0.9410496950149536, 0.3166041374206543, 0.46789082884788513, 1.4718668460845947, 0.7065906524658203, 0.623114824295044, 0.27480313181877136, -0.38464635610580444, -0.6602068543434143, 0.07164395600557327, 1.1807974576950073, 0.1472839117050171, -0.32385241985321045, -0.09266488254070282, -1.090692400932312, -0.09151658415794373, -0.10587239265441895, -0.032719969749450684, 1.1431689262390137, -0.4385233223438263, 0.023534124717116356, 1.2632664442062378, 0.10668112337589264, -0.5260360240936279, -0.427763432264328, -0.19249692559242249, 0.659509539604187, -1.343130350112915, 0.21329864859580994, -0.16238394379615784, -0.5696448087692261, 0.5819492340087891, -0.65444016456604, -0.6866687536239624, 0.3463311195373535, 0.8428370952606201, 0.3686752915382385, -1.2653083801269531, -0.05563570559024811, -1.3365180492401123, 0.35142192244529724, 0.9381061792373657, 0.45739394426345825, 0.19019415974617004, 0.4932398200035095, 0.05298512428998947, -0.12426663935184479, 0.1702090948820114, 1.8110339641571045, -0.689190149307251, 0.42807891964912415, -0.0593133270740509, -0.3612323999404907, -0.0449000708758831, -0.5423694252967834, -0.07674424350261688, 0.2893650531768799, -0.5072656869888306, -0.13082875311374664, 0.6851657629013062, -0.4765673577785492, 1.3708086013793945, -0.08601599931716919, -0.42825761437416077, -0.09634216129779816, -0.06376613676548004, -0.2446966916322708, -0.3184114694595337, 0.6838462352752686, -0.5782807469367981, -0.003461550921201706, -0.03760761767625809, 1.5586678981781006, 0.00982677936553955, -0.02721598371863365, 0.27603664994239807, 0.6215533018112183, 0.5244821310043335, 0.18125008046627045, 0.885919988155365, 0.4555530548095703, 1.0250877141952515, 0.09981420636177063, 0.9713215827941895, -0.1398458182811737, -0.22170737385749817, 0.848175048828125, -0.7592746615409851, 0.8718730211257935, 0.25651028752326965, 0.44390347599983215, 1.1885939836502075, -1.8028837442398071, 0.10634933412075043, 0.6797796487808228, -0.027923710644245148, 0.8221563100814819, 0.8856639862060547, 0.42818185687065125, -1.0637074708938599, 0.2876654267311096, -0.07588599622249603, -0.08595655858516693, 0.07402205467224121, 0.354740709066391, 0.5726116299629211, 0.3109767436981201, -0.7342774271965027, 0.2524709403514862, -0.029392676427960396, -0.7999054193496704, 0.2695982754230499, -0.20673871040344238, 0.2706512212753296, 0.11515084654092789, 0.8724638223648071, 1.5758600234985352, -0.013519972562789917, -0.9113210439682007, 0.05218512564897537, -1.1065709590911865, 0.5635334253311157, -0.1932685822248459, -0.29500845074653625, -0.8193931579589844, 0.1991463303565979, 0.34850436449050903, 0.17690148949623108, -0.8854424953460693, -0.22679072618484497, -0.8063174486160278, -0.9994717836380005, 1.131235122680664, 0.4150424003601074, 0.6913571357727051, 0.4952409565448761, 0.7668635845184326, 0.7014836072921753, 0.3239856958389282, -0.9812952280044556, 0.1239345520734787, 0.18656432628631592, -0.0306730754673481, -1.0227856636047363, -0.4114843010902405, -0.9705811738967896, 0.5443419218063354, 0.37933290004730225, -0.05395972728729248, 0.08851202577352524, 0.7155832052230835, 1.4167522192001343, -0.6892415285110474, -0.4918607771396637, 0.11310382187366486, -1.0816335678100586, 0.22560691833496094, 0.47588014602661133, -0.7953203320503235, 0.7393031120300293, -0.10109215974807739, -1.521550178527832, 1.1057106256484985, 0.18773554265499115, 0.05917016789317131, 1.2597172260284424, 0.23180325329303741, -0.05397787317633629, 1.4584648609161377, -0.25253549218177795, 0.054618507623672485, 0.23553362488746643, -0.24787339568138123, 0.003965228796005249, 0.06157933175563812, 0.8178278207778931, -0.14235764741897583, -0.7401806116104126, 0.09685845673084259, -0.5331045985221863, 0.6111299991607666, -0.22414898872375488, 0.17023316025733948, -0.1893804967403412, 0.5781142711639404, -0.5198768377304077, -0.16681884229183197, 0.6594188213348389, -0.9247787594795227, -0.6201686859130859, 0.8378475904464722, 0.9408615827560425, 0.4930862784385681, 0.27224990725517273, 0.8992738723754883, -0.9121524095535278, -0.01247645728290081, 0.3015948235988617, -0.08774422109127045, 1.5181868076324463, -0.008792474865913391, 0.13987544178962708, 0.39508819580078125, -0.02895170822739601, 0.1130434200167656, -0.7866373062133789, 0.1982242316007614, 0.9425454139709473, -0.5305277705192566, -0.8882938027381897, -0.03511693701148033, -0.8001205921173096, -0.004275068640708923, 0.39417213201522827, -0.017040938138961792, -0.7365096211433411, -1.083681583404541, -0.6434321403503418, 0.1254693567752838, 0.85817551612854, -0.6517657041549683, 0.3828847110271454, -0.04301935434341431, -1.6339733600616455, 0.38300883769989014, 0.2771303951740265, -1.859133005142212, -0.2285379320383072, -0.7630511522293091, 0.3022991716861725, 0.14315444231033325, 0.031139444559812546, -0.2437441498041153, 0.4431554675102234, -1.4950847625732422, -1.0361781120300293, -1.3894330263137817, -0.5200850963592529, 0.534324049949646, 0.801109790802002, -0.8523173332214355, 0.9720227718353271, -0.6904821395874023, 0.5996124148368835, -0.6144328713417053, -0.3768812119960785, -1.0979125499725342, 0.49441003799438477, -0.1615528017282486, -0.2287161499261856, -0.08858059346675873, 1.5070931911468506, 0.7882001399993896, 1.1807893514633179, 0.25046640634536743, 1.2892762422561646, -1.2783150672912598, -1.0130940675735474, -0.2986488938331604, 0.6787830591201782, -0.6200107336044312, -0.34544938802719116, 0.19130489230155945, -0.7980102300643921, -1.0726876258850098, -0.25621524453163147, 1.015213966369629, -0.32604989409446716, 0.5110225081443787, -0.18742142617702484, 0.30845415592193604, -0.8206294775009155, 0.142438605427742, 0.7975913286209106, -1.0919618606567383, -0.40753450989723206, -0.45405346155166626, 0.4838593602180481, -1.0292686223983765, -0.01330623123794794, 0.2720312476158142, -0.08962399512529373, 0.118168905377388, -0.18553441762924194, 0.11735354363918304, 0.8475672602653503, -0.4948464035987854, 1.0351636409759521, 1.1733194589614868, -0.4670073390007019, 0.02451523020863533, -0.22103260457515717, -0.5844202637672424, 0.06014523655176163, -0.748771071434021, -0.6664009690284729, -0.7245259881019592, 1.0909382104873657, 0.4623503088951111, 0.2325364053249359, 0.07837896794080734, 0.8869771957397461, 0.32517367601394653, 0.18333682417869568, 0.035561561584472656, -1.1839027404785156, -0.7198777794837952, 0.722917914390564, 0.8665522336959839, -0.593695878982544, -0.18527169525623322, -0.16908085346221924, 0.5586560368537903, 0.8004135489463806, 0.3678857982158661, 0.19613118469715118, -0.5142389535903931, 0.6387752294540405, 0.9751275777816772, -0.20884566009044647, -0.4997737407684326, -0.5537105202674866, -1.8720932006835938, 0.07892641425132751, -0.08837378025054932, -0.29308199882507324, 0.6252152919769287, -0.9793535470962524, -0.7659237384796143, 0.10539841651916504, -0.4264034628868103, -0.02593567594885826, -0.006775088608264923, -0.11067645251750946, -0.44645529985427856, 0.4156196117401123, 0.7888336181640625, -0.1522824615240097, 1.0483660697937012, -0.16898798942565918, -0.402601420879364, -0.9641250371932983, -0.30126723647117615, 0.4694109857082367, -0.5373739004135132, -0.0020338408648967743, -0.3493032455444336, 0.7903343439102173, -0.8990691304206848, 0.03920214623212814, -0.05076253414154053, 0.10299323499202728, -0.05085407942533493, -0.05278190225362778, -0.18869996070861816, 0.28485599160194397, 0.0547289177775383, 0.711866021156311, -0.9450509548187256, -0.8406243324279785, -0.35483503341674805, 0.4556821584701538, -0.2223052829504013, 0.5928086638450623, -0.047422945499420166, 0.2642751634120941, 0.39062613248825073, -0.22059816122055054, -0.31312114000320435, 0.03592688590288162, 0.15654030442237854, -0.03429233655333519, -0.2853648364543915, -0.8862130641937256, 0.11908771842718124, 0.6274832487106323, -1.5158209800720215, -0.3272913098335266, 0.29654181003570557, -0.3304691016674042, -0.3697795271873474, -0.4885235130786896, -0.7620850801467896, -1.0403876304626465, 0.2788251042366028, 0.2576814293861389, 0.08338266611099243, 0.6709406971931458, -0.5298126935958862, -1.0695586204528809, 0.11762865632772446, 0.4981144666671753, 0.05459567904472351, 0.5560295581817627, 1.3418052196502686, 1.4155166149139404, -0.07100953161716461, -0.7591662406921387, -0.31116151809692383, 0.25103759765625, -1.4592878818511963, 0.07892198860645294, -0.9169096946716309, 0.14477750658988953, -0.11243705451488495], [1.0264744758605957, 0.7947080731391907, -2.612638235092163, 0.144480898976326, -0.5245968103408813, 0.7580782771110535, 0.6469892859458923, 0.8478497266769409, 0.43255099654197693, -0.9729399681091309, -1.4611217975616455, -0.2988700270652771, 1.0658378601074219, 0.11205367743968964, 0.2935244143009186, 0.37582024931907654, 0.7973353266716003, 0.3909919261932373, 0.10902136564254761, 0.731428861618042, -0.3549928367137909, -1.3125057220458984, -0.25566354393959045, -0.028045132756233215, -0.22234277427196503, 0.26812371611595154, -1.364211082458496, -0.18447245657444, -1.2926257848739624, -0.5156828165054321, 0.3475331962108612, -0.48462700843811035, 0.31311526894569397, -0.026759237051010132, -1.0938692092895508, 0.49415647983551025, 1.2319048643112183, 0.7188411355018616, 0.7724528312683105, -0.08924250304698944, 1.8500680923461914, 0.200020432472229, 0.21098703145980835, -0.7198236584663391, 0.5621070265769958, -0.467224657535553, 0.8744624853134155, -0.6869987845420837, -0.5843538641929626, 0.016977956518530846, 0.7539078593254089, -0.009107808582484722, -0.8373859524726868, 1.1509889364242554, 0.5087959170341492, -1.5193828344345093, -0.5759310722351074, -0.6441935300827026, -0.20186308026313782, -0.3135884702205658, 0.7913796901702881, -0.5153792500495911, 0.6409721374511719, 1.5673524141311646, 0.31408193707466125, -0.5392303466796875, 0.04821338132023811, 0.4288543164730072, 0.48306751251220703, -0.9138455986976624, 0.7252711653709412, 0.40022119879722595, -0.7842966318130493, 0.9573380947113037, -0.8600330352783203, 0.5675236582756042, 0.5528333783149719, 1.018541932106018, 0.2325257509946823, 1.1979947090148926, -0.422322541475296, -0.31265830993652344, 0.6087857484817505, -0.30666449666023254, 0.3440249264240265, -0.02102590538561344, 0.3649922311306, -0.8174673318862915, -0.19678995013237, 0.9190826416015625, -0.7671810984611511, 0.4584846496582031, 0.5034705996513367, 0.18953227996826172, -0.004319861531257629, -0.09648659080266953, -0.22259891033172607, -0.32886654138565063, -0.8718641996383667, -0.5169404149055481, -0.948744535446167, -1.407057285308838, -0.2503160834312439, -0.12422582507133484, 0.885796844959259, 0.8396123647689819, 0.6955919861793518, -1.3102457523345947, 0.3557666838169098, 0.17039553821086884, -0.22477392852306366, -0.01818251982331276, -0.21528120338916779, -1.6757874488830566, -1.0560392141342163, 0.577593982219696, 1.4077062606811523, -0.7482495903968811, 1.620044469833374, 0.2932712733745575, -0.16669920086860657, -0.12066514045000076, 0.07271625101566315, -0.11804213374853134, 0.8325903415679932, 0.18111969530582428, -0.7021796107292175, -0.4777917265892029, 0.4464351236820221, 0.7090213298797607, 0.2625136077404022, 0.4602205753326416, 0.26814958453178406, 1.1688681840896606, -0.1468677818775177, 0.21178875863552094, -0.7438340187072754, -0.813990592956543, -0.23901811242103577, 0.3516930937767029, 1.1557374000549316, -0.5487537384033203, -0.181208536028862, 0.276694118976593, -0.8252741694450378, -0.4698978364467621, 0.5304237008094788, -0.40792521834373474, -0.3366064429283142, 0.01123524084687233, -0.7896766066551208, -0.1544298678636551, -0.38441595435142517, 1.0653904676437378, 0.7262502908706665, -0.21778206527233124, 0.36049556732177734, 0.24535931646823883, 0.3051247298717499, -0.7322900295257568, 0.17278577387332916, 0.2950523793697357, -0.06874839961528778, 0.005012102425098419, 0.5696836113929749, -0.4533883333206177, -0.5938695669174194, 0.9637822508811951, 0.02300693839788437, -0.4984305799007416, 0.22791865468025208, 0.1662137657403946, -0.7875386476516724, -0.2502964437007904, 0.596680223941803, -0.7513930797576904, 0.8833945393562317, -0.26396605372428894, -1.6656091213226318, -1.569117546081543, 1.3816113471984863, -0.3996174931526184, 0.7466927766799927, -0.01667025312781334, 1.308295488357544, 0.13377203047275543, 0.254426509141922, -0.5508952736854553, 0.09448143094778061, -1.008341908454895, -0.34107619524002075, 0.22510303556919098, -0.8819689154624939, 0.3490796387195587, -0.8441027402877808, -0.7517768144607544, 0.7793726325035095, -0.13626845180988312, -0.47718942165374756, -0.593763530254364, 0.21604402363300323, -0.1664382815361023, -1.2882925271987915, 0.05433070287108421, -0.6516514420509338, 1.0179641246795654, -0.764971911907196, 0.2321707308292389, -1.1335422992706299, 0.007795413956046104, 0.6568651795387268, -0.13799098134040833, -0.7867569923400879, -0.07562283426523209, 0.05586455017328262, -0.6305753588676453, 0.6220595836639404, 0.25737759470939636, 0.3212151825428009, -0.2745051681995392, 0.10658593475818634, 0.9937077164649963, 0.9882408380508423, -0.4497115910053253, 1.2267464399337769, -0.27947044372558594, -1.0155375003814697, -0.7865868210792542, -0.3698071837425232, 0.17939262092113495, -0.7579154372215271, -1.1992021799087524, 0.5314822793006897, 0.36144474148750305, -0.9367327690124512, 0.4661574065685272, 0.06260514259338379, 0.2658124566078186, -0.2136421650648117, 0.8297101259231567, 0.5506166219711304, -0.12411718815565109, -0.19762860238552094, 0.11783859133720398, 0.10589238256216049, 0.27670449018478394, 0.31260451674461365, -0.5088220834732056, 0.04727769270539284, 0.9222456216812134, 0.6550722718238831, 0.22675150632858276, 0.8306970000267029, 0.327886700630188, -0.541934072971344, -0.2176523059606552, -0.9215376973152161, -0.008567974902689457, -0.6833451390266418, 1.3886793851852417, 0.40311697125434875, -0.7334272861480713, -0.32779961824417114, -0.2902410924434662, -0.1264658272266388, -0.3463984727859497, 0.05119903385639191, 0.0377887487411499, 0.17354966700077057, -0.8354095220565796, -0.03404069319367409, 0.015142888762056828, -0.2854037880897522, 0.7869218587875366, -0.4047078490257263, -0.5792021155357361, 0.3215372562408447, 0.23759698867797852, -0.014694621786475182, 1.6068086624145508, 0.2980543076992035, -0.9501277208328247, -0.6741227507591248, -0.13307395577430725, 0.35772162675857544, -0.550571084022522, 0.5760416984558105, 1.273791790008545, 0.4021424651145935, -0.5568103194236755, -0.04153120145201683, 0.4819257855415344, 0.14347194135189056, 0.3691921830177307, -0.14952075481414795, 0.01714162901043892, 0.41745415329933167, -0.22439593076705933, -0.5900359749794006, 0.13983291387557983, 0.544729471206665, 0.5538929104804993, 0.7711824774742126, 1.0400984287261963, 0.11113099008798599, -0.1765374392271042, 0.005278817377984524, -0.0031923330388963223, -0.8145633339881897, -0.8877783417701721, -0.21245723962783813, -0.868702232837677, -0.636592447757721, -0.1851321905851364, -0.19174903631210327, 0.8967356085777283, 0.6647427678108215, 0.2071746587753296, 1.1897971630096436, -0.4065290689468384, -0.14386619627475739, 0.6879053115844727, -0.5710483193397522, -0.24692507088184357, 0.5103792548179626, 0.28907328844070435, -1.6378554105758667, -0.0107661671936512, -0.3832746744155884, 0.3696211278438568, 0.0752638503909111, 0.3213094174861908, 0.00765405036509037, -1.1685154438018799, -0.7764068841934204, -0.37786829471588135, 0.968915581703186, 0.13892482221126556, -0.8292343616485596, -0.17525622248649597, 0.09637533128261566, 0.8134233951568604, 0.053773973137140274, -0.019735312089323997, 0.1928706020116806, -0.667850911617279, -0.6084187626838684, -0.07190632820129395, 0.5168314576148987, 0.4868202805519104, -0.4970100224018097, -1.0764511823654175, 0.27374765276908875, -0.11129770427942276, -0.6572331190109253, 0.3523099720478058, -0.48641666769981384, 0.862834095954895, 0.27227485179901123, 0.4563114047050476, 1.1904345750808716, -0.47364339232444763, 0.8369297981262207, -2.1534950733184814, 0.63236403465271, 0.5131031274795532, 1.9535765647888184, -0.2546238303184509, 0.6104242205619812, -0.1540292501449585, -0.8040763735771179, 0.14738333225250244, 0.4794453978538513, 0.7828441262245178, -0.11107040196657181, -0.06097620725631714, 0.19147071242332458, -0.8313804864883423, -0.3617892563343048, 0.12320704758167267, 0.029827965423464775, 0.24580219388008118, -0.8735267519950867, -0.3305305242538452, 0.9698539972305298, 0.5504297018051147, -1.0305088758468628, -0.6866329908370972, -0.10709455609321594, 0.5609040260314941, -0.5060566663742065, -0.19164031744003296, -0.47857001423835754, -0.2010474056005478, 1.1787952184677124, -0.9597494602203369, 0.7907110452651978, 1.2719438076019287, 0.4405616223812103, -0.029922060668468475, -1.057171106338501, 0.22018283605575562, -1.1371735334396362, -0.036134690046310425, 0.9248817563056946, 0.12337511777877808, 0.3320992887020111, 0.2491946816444397, 0.06836355477571487, -0.11745896935462952, -0.5731830596923828, 1.6891443729400635, -0.3938460350036621, 0.10490963608026505, -0.08580604195594788, -0.46844562888145447, 1.0469155311584473, -0.10844841599464417, -0.3011826276779175, 0.1321774274110794, -0.24643583595752716, 0.091523677110672, 0.10966671258211136, -0.0894780158996582, 1.7434331178665161, 0.5813817381858826, -0.2150283008813858, 0.39561641216278076, 0.15989187359809875, -0.3606572449207306, 0.03147764876484871, 0.6885842680931091, -0.3646218180656433, -0.8013947606086731, 0.18538379669189453, 0.22146040201187134, 0.2921672463417053, 0.076786108314991, 0.43439120054244995, 0.3942987322807312, 0.08494395017623901, -0.04067637026309967, 1.3459454774856567, 1.085654377937317, 0.7619349360466003, -0.08805935829877853, 1.211637258529663, -0.1847747415304184, 0.08654018491506577, 0.6566388607025146, -0.08799715340137482, 0.2499406486749649, 0.24756892025470734, 0.2665185034275055, 1.2132179737091064, -0.791262686252594, -0.4893062710762024, 0.8933729529380798, -0.015888039022684097, 0.9926160573959351, 1.058347463607788, 0.5620203018188477, -0.11038347333669662, 0.12650282680988312, 0.026706447824835777, -0.4080468416213989, 0.5200468301773071, 0.4398716986179352, -0.33261311054229736, 0.6112254858016968, -0.8371708393096924, 0.4752362072467804, -1.1917188167572021, -0.1576564759016037, -0.38318517804145813, -0.7368228435516357, 0.58968186378479, 0.7072179913520813, 0.1734568327665329, 1.1428816318511963, 0.2549891769886017, -1.1640599966049194, 0.27182599902153015, -1.0161224603652954, -0.26350271701812744, -0.23676909506320953, -0.8872663974761963, -0.9842169880867004, 0.30704042315483093, -0.17435817420482635, -0.2247931808233261, -0.5727536082267761, -0.06217539310455322, -0.07945241779088974, -0.7433821558952332, 0.6855438351631165, 0.45108762383461, 0.4962441623210907, 0.2653712034225464, -0.011993611231446266, 0.08168123662471771, 1.0827518701553345, -0.5527758002281189, 0.03979460895061493, 0.010177170857787132, -0.4194784164428711, -0.2840103805065155, -0.705435037612915, -0.27651292085647583, 1.2868589162826538, 0.28901079297065735, -0.2735517919063568, -0.6901676654815674, 0.4658692181110382, 1.2302595376968384, -0.27903318405151367, -1.0055725574493408, -0.04782237485051155, -0.4859321713447571, 0.454683780670166, 0.458481103181839, -0.4470658004283905, -0.8596433997154236, -0.49961358308792114, -1.0581880807876587, 1.0856008529663086, -0.0573713481426239, -0.11176986992359161, 0.7289814352989197, 0.9121724963188171, 0.36794808506965637, 0.47897377610206604, -0.2852120101451874, 0.044862162321805954, 0.04775378108024597, 0.27615663409233093, -0.5075117945671082, 0.563749372959137, 0.2722342610359192, 0.15411125123500824, -0.13012714684009552, 0.6551831960678101, -0.42491614818573, 0.2682712972164154, -0.6134341955184937, 0.409570574760437, -0.032422978430986404, 0.10092101246118546, 0.12969867885112762, 0.3152208924293518, -0.291638046503067, -0.6169175505638123, -0.10503043979406357, -0.06690787523984909, 1.0054105520248413, -0.1498975157737732, -0.581130862236023, 0.25752153992652893, -0.7949538230895996, 0.20867730677127838, -0.28173407912254333, -0.4569869637489319, 1.3238346576690674, 0.8073843121528625, 0.41123294830322266, 0.5667772889137268, -0.4179568886756897, 0.09995938092470169, -0.5666549801826477, -0.08741024881601334, 1.0664658546447754, -1.049380898475647, 0.41527947783470154, -0.10414615273475647, -1.009649634361267, 0.12543299794197083, 0.43605539202690125, -0.05922231450676918, -0.5522751808166504, -1.0462967157363892, -1.2179068326950073, -0.2917245626449585, 0.8397322297096252, -0.6491614580154419, -0.17436346411705017, 0.2178400158882141, -0.7499461770057678, -0.7229076027870178, 1.1702972650527954, -1.1261470317840576, -0.48040375113487244, -1.016683578491211, 0.641707718372345, 0.17617158591747284, 0.5848981738090515, -0.8569521307945251, 0.37065589427948, -1.2065919637680054, -1.1349483728408813, -1.3765052556991577, -0.4807989299297333, 0.9447776675224304, 0.44237762689590454, -1.06415855884552, 0.5687419176101685, 0.5040308237075806, 0.601851761341095, -0.5056367516517639, 0.20537564158439636, 0.022732309997081757, 0.4059249460697174, 0.284790575504303, -0.17412517964839935, -0.40020281076431274, 1.2606550455093384, 0.5147829055786133, 0.7483282685279846, 1.1571980714797974, 0.8763066530227661, -1.2726224660873413, -0.2974323034286499, -0.4648587703704834, 0.5516983866691589, -0.1268547922372818, -0.5643621683120728, -0.05817572399973869, -0.7729777693748474, -0.01272496860474348, 0.3573436439037323, 0.5981418490409851, -0.9836066961288452, -0.244262233376503, -1.817931056022644, 0.18375100195407867, -0.5271808505058289, 0.3948505222797394, -0.06108709052205086, -0.28939199447631836, 0.2698553204536438, -0.4852980375289917, -0.7364175915718079, -1.7424417734146118, -0.27565398812294006, 0.12033676356077194, 0.10170644521713257, -0.2996218800544739, -0.2234225571155548, 0.21255053579807281, 0.7572035193443298, -0.26419463753700256, 1.4913506507873535, 1.1831161975860596, 0.09470777958631516, 0.06886269897222519, -0.04570766165852547, 0.23002128303050995, 0.3103013336658478, -0.5660552382469177, -0.7641482949256897, -0.8045714497566223, 0.6189022064208984, -0.19577474892139435, -0.3465286195278168, 0.04397132992744446, 0.7651944160461426, 0.3273285925388336, 0.4743042290210724, 0.7979531288146973, -0.6511935591697693, -0.7490684390068054, 1.0312176942825317, 1.1022608280181885, -0.9977531433105469, 0.22014650702476501, 0.3277502954006195, 0.5619751811027527, 0.4490664005279541, 0.5977956652641296, 0.6624898314476013, -1.0867470502853394, 0.9222236275672913, 0.8502930998802185, -0.5578328371047974, -0.3432963788509369, -0.36825108528137207, -1.57517409324646, -0.11321259289979935, -0.21317629516124725, -1.0363789796829224, 0.12781845033168793, -0.8915512561798096, -0.45991966128349304, 0.3838701546192169, -0.13943533599376678, 0.5219907760620117, -0.8457143902778625, 0.8557326793670654, 0.017051439732313156, 0.21518200635910034, 0.1287962943315506, -0.42818883061408997, 0.7412152290344238, -0.2643603980541229, -0.593559980392456, -1.4863989353179932, -0.5453645586967468, 0.4699322283267975, -0.16488945484161377, -0.31757161021232605, 0.3847004473209381, 0.6183262467384338, -0.5704329013824463, -0.7588409781455994, 0.5721928477287292, -0.1770840287208557, -0.09579848498106003, -0.7359839081764221, -0.7799152731895447, 0.7605025172233582, 0.521515965461731, 0.08570457994937897, -0.4232921004295349, -0.6422794461250305, -0.40154752135276794, 0.37996330857276917, 0.16608552634716034, 0.1315649151802063, -0.23051421344280243, 0.8235471248626709, -0.13587598502635956, -0.22111597657203674, 0.0369432233273983, -0.6697942614555359, 0.6484652161598206, 0.09550473839044571, 0.27014032006263733, 0.020679160952568054, -0.38345634937286377, 0.5965136885643005, -1.1247390508651733, -0.5551034212112427, 0.6652475595474243, 0.012929554097354412, 0.20764437317848206, -0.5633094906806946, -1.551047444343567, -0.08135126531124115, 0.21274833381175995, -0.22734999656677246, 1.0959151983261108, 0.10932038724422455, -0.6130500435829163, -0.7177762985229492, 0.1515972912311554, 0.18608711659908295, -0.46495118737220764, 0.10350500792264938, 1.0846842527389526, 2.060354709625244, 0.28384798765182495, -0.026067273691296577, 0.08553767204284668, 0.503024697303772, -1.0725305080413818, 0.1983342170715332, -1.223835825920105, 0.36467769742012024, -0.694837749004364], [-0.0687083825469017, 0.4415515959262848, -1.7736446857452393, -0.5890169739723206, -1.176894187927246, 0.5281082987785339, 1.1394013166427612, 0.8952858448028564, 0.47942373156547546, -0.451374888420105, -1.5492091178894043, -0.4839942753314972, 0.40997055172920227, 0.48167502880096436, -0.5729172229766846, 0.36477723717689514, 0.10781247168779373, 0.5182710289955139, 0.6963578462600708, 0.8234840631484985, -0.8347403407096863, -0.5111109614372253, 0.1582929939031601, 0.5163741111755371, -0.5236921906471252, 0.9021382331848145, -1.6265288591384888, 0.1856178492307663, -1.4653515815734863, -1.1244032382965088, 0.5897364616394043, -0.9046613574028015, 0.033835846930742264, 0.3482513427734375, -1.0397714376449585, -0.11262808740139008, 1.4067838191986084, 1.452970266342163, 0.613125741481781, 0.7435472011566162, 2.829441547393799, 0.053277041763067245, -0.43222740292549133, -0.8805289268493652, 0.595474898815155, -0.38655996322631836, 1.0260694026947021, -1.5995581150054932, -0.2714327573776245, -0.06934383511543274, 0.8688632249832153, 0.7950237989425659, 0.1549430936574936, 0.6678085923194885, 1.2179532051086426, -1.1899964809417725, -0.130814790725708, -0.5124896168708801, 0.3042784035205841, -0.007866671308875084, 0.12620972096920013, 0.13650275766849518, 0.7068703174591064, 1.0171258449554443, 0.7340047955513, 0.22724786400794983, -0.32296544313430786, 0.5579842329025269, -0.5579911470413208, -0.6738640666007996, 0.46673783659935, -0.058592356741428375, -0.8654264807701111, 0.22759728133678436, -0.5567728281021118, 0.5386960506439209, 1.3701097965240479, 1.1218541860580444, -0.28701603412628174, 0.7637851238250732, -0.8213943839073181, 0.11029936373233795, 0.9669904708862305, -0.5064169764518738, 0.4358827471733093, -0.2653554379940033, 0.506417989730835, -0.88618403673172, -0.8588131666183472, 1.428847074508667, 0.1581726372241974, 0.22121135890483856, 0.30348384380340576, -0.02999471314251423, -0.3794029653072357, 0.22056743502616882, 0.3931288719177246, -0.347212016582489, -0.37263748049736023, -0.728996217250824, -1.1846975088119507, -0.6618982553482056, 0.49727025628089905, 0.08774195611476898, 1.1357771158218384, 1.9926459789276123, 0.16632741689682007, -0.6072846055030823, -0.6715763211250305, 0.09705211222171783, -0.4145975112915039, -0.3359314501285553, -0.23627246916294098, -1.282077431678772, -0.6925556659698486, 0.37079375982284546, 0.9411499500274658, -0.6236597895622253, 0.9416270852088928, 0.7935359477996826, -0.36425262689590454, -0.26607275009155273, -0.14129655063152313, -0.2863158583641052, 0.8382655382156372, 0.3986636996269226, -0.2671504616737366, -0.2596319019794464, 0.7553146481513977, 0.3329189121723175, 1.1641830205917358, 0.3540637791156769, 0.24785202741622925, 2.0587244033813477, 0.031748123466968536, 0.28854629397392273, 0.3766994774341583, -1.2229057550430298, -0.7331746220588684, 0.09498625248670578, 1.1742708683013916, -0.8534908890724182, -0.13899610936641693, -0.7370448112487793, -0.9716144800186157, -0.9534721374511719, 1.0191214084625244, -0.33995264768600464, -0.3334392309188843, 0.0803457573056221, -1.0072181224822998, 0.08419205248355865, 0.6494930386543274, 0.6556928753852844, 0.12737227976322174, 0.02405090630054474, 0.6047256588935852, 0.8692290782928467, 0.5579292178153992, 0.7240582704544067, 0.31638726592063904, -0.362674742937088, 0.0680353119969368, 0.6056140065193176, 0.8493208885192871, -0.2046387940645218, -0.36275219917297363, 0.28776803612709045, -0.08311634510755539, -0.048128124326467514, 0.27626270055770874, -0.2995627522468567, -0.8359482884407043, 0.5334370732307434, 0.09878960996866226, -1.0835986137390137, 1.3051567077636719, -0.7638951539993286, -1.1841720342636108, -1.4725687503814697, 1.6063770055770874, -0.11111003160476685, -0.14012672007083893, -0.04783051833510399, 1.251908779144287, -0.7382065057754517, -0.25651654601097107, -0.11400427669286728, -0.7677552103996277, -1.075310230255127, -0.6757990717887878, -0.20204389095306396, -1.1147631406784058, 0.16179360449314117, -0.402774840593338, -1.0639371871948242, 0.2539139986038208, -0.25820666551589966, -0.8097260594367981, -0.2841813564300537, 0.4735161066055298, 0.2437242567539215, -1.0364134311676025, -0.058024242520332336, -0.7087352275848389, 0.9486071467399597, -0.9028741717338562, 0.41690051555633545, -0.848603367805481, 0.04696808382868767, 0.2858653962612152, -0.0388614758849144, -0.7872570753097534, 0.3380342423915863, -0.336630254983902, -0.6252528429031372, 0.74278324842453, 0.01999509707093239, 0.5635848045349121, -0.7297289967536926, 0.8626110553741455, 0.6030681729316711, 0.610478401184082, -0.3653724193572998, 1.1079708337783813, 0.20745420455932617, -0.2277657836675644, -0.8058999180793762, -0.6182074546813965, 0.20286794006824493, -0.5219892263412476, -1.2978870868682861, 0.7901118397712708, 0.20702539384365082, -1.3597476482391357, 0.847316324710846, -0.05872279033064842, -0.27283036708831787, -0.31467992067337036, 0.8964117765426636, 0.34793028235435486, 0.7564241886138916, -0.1765493005514145, -0.5825666189193726, -0.3100387156009674, 0.6364116668701172, 0.8095831274986267, 0.037500906735658646, 0.9032666683197021, 1.2117719650268555, 0.42213910818099976, -0.17146460711956024, 0.31076017022132874, 0.3812009394168854, -0.43337973952293396, -0.6106070280075073, -0.3574048578739166, -0.10287385433912277, -1.3737484216690063, 2.2608394622802734, 0.7120332717895508, -1.0667012929916382, -0.335249125957489, 0.1670781672000885, -0.5937385559082031, -0.24865812063217163, -0.046685900539159775, -0.7808197140693665, 0.44619306921958923, 0.08931787312030792, -0.012908075004816055, 0.5291610360145569, 0.2545700669288635, 0.8919786214828491, -0.2281447798013687, -0.48277977108955383, 0.44218289852142334, 0.5015000700950623, -0.3464778661727905, 1.090471863746643, 0.5904523730278015, -1.1000694036483765, -0.31971272826194763, -0.5238303542137146, 1.1396116018295288, -0.3079582154750824, -0.4274976849555969, 0.9792467951774597, 0.1659812182188034, -0.45296546816825867, 0.12580759823322296, 0.899336040019989, 0.21695682406425476, 0.1732359677553177, -0.1800784021615982, 0.2799800634384155, 1.132257342338562, -1.13480806350708, -0.7963943481445312, 0.35705578327178955, 0.3768062889575958, 0.40663424134254456, 1.3345519304275513, 1.4347639083862305, -0.07535935938358307, -0.00022001378238201141, -0.31164050102233887, 0.027770794928073883, -1.0050320625305176, -0.6413033604621887, -0.28483906388282776, -1.0948421955108643, -0.03561815619468689, -0.48895707726478577, -0.2669195830821991, 0.5411139130592346, 0.013219115324318409, 0.3160732686519623, 0.8495752215385437, -0.8876983523368835, -0.2001749873161316, -0.012431183829903603, 0.22978079319000244, -0.5868672132492065, 0.8541160821914673, 0.10769690573215485, -1.3635468482971191, -0.7113983631134033, 0.24266955256462097, 0.09031667560338974, 0.982339084148407, 0.45719781517982483, -0.08161736279726028, -1.1492923498153687, -1.4654419422149658, 0.077733114361763, 1.334336280822754, -0.04255099967122078, -0.959109902381897, -0.7328034043312073, 0.2037913054227829, 0.6547630429267883, 0.11149125546216965, -0.704252302646637, 0.4827227294445038, -0.8900099396705627, -0.8807048797607422, -0.3115752339363098, -0.02622240222990513, 0.7829341888427734, -0.2298268973827362, -0.7892752289772034, 0.16484585404396057, 0.07280838489532471, -0.7196397185325623, 0.24216336011886597, -0.8858844041824341, 1.2041865587234497, -0.1792893260717392, 0.474928617477417, 1.3904727697372437, -1.332287311553955, -0.4402162730693817, -1.898361325263977, 1.0593039989471436, 0.49257686734199524, 1.5536072254180908, -0.10156909376382828, 0.6835830211639404, 0.3721961975097656, -0.3871944546699524, 0.024393552914261818, 0.6581476330757141, 0.8602266311645508, 0.1281503289937973, -0.2253945767879486, 0.013780291192233562, -0.23264913260936737, -0.4511696994304657, -0.4351775348186493, -0.5832293629646301, 0.4812084138393402, -0.8057991862297058, 0.07683414965867996, 0.6719157099723816, 0.7723026871681213, -1.7679699659347534, -0.32534924149513245, 0.2079247534275055, 0.1499863564968109, 0.20347392559051514, 0.11547041684389114, -0.24535581469535828, -0.34689950942993164, 0.736543595790863, -1.0156744718551636, -0.04850047826766968, 0.21318282186985016, -0.41439029574394226, 0.7171958684921265, -1.3725800514221191, 0.08223330229520798, -1.1951075792312622, 0.09282147139310837, 0.7758178114891052, 0.05646873265504837, 0.5053738355636597, 0.7121129631996155, 0.1169833317399025, -0.28379714488983154, -0.3567196726799011, 1.9620105028152466, 0.34027934074401855, -0.05699123814702034, -0.4055578410625458, 0.4336693286895752, 0.6668704748153687, -0.5976824760437012, -0.584874153137207, 0.29496151208877563, -0.8688559532165527, 0.6197048425674438, -0.16872970759868622, 0.2158433347940445, 1.4499709606170654, 0.09744521230459213, 0.3253897428512573, 0.13632524013519287, -0.4424348771572113, -0.5814344882965088, -0.4701886773109436, 0.10613219439983368, -0.09019573032855988, -0.3236899971961975, 0.17916104197502136, 1.1451436281204224, 0.09075235575437546, 0.1189543828368187, 0.2557346522808075, -0.148078054189682, -0.09924117475748062, -0.020097896456718445, 0.5968440771102905, 0.15901367366313934, 0.9299396872520447, 0.32538649439811707, 0.3414251208305359, -0.43709421157836914, 0.394281268119812, 1.5052402019500732, -0.3679392337799072, 0.36398380994796753, 0.5636945962905884, 0.5195698142051697, 1.1462419033050537, -1.817307949066162, -0.668677568435669, 0.5510091185569763, -0.11363004893064499, 0.9029639959335327, 0.9620518088340759, 0.36043986678123474, -1.1351091861724854, 0.20074495673179626, -0.24609197676181793, -0.44769206643104553, 0.4746457040309906, 0.4810204803943634, -0.40764304995536804, 0.2153751403093338, -0.6774728894233704, -0.23791615664958954, -1.1211491823196411, -0.05862446129322052, 0.2887493669986725, -1.3170132637023926, 0.47921231389045715, 0.2397925704717636, 0.26622867584228516, 0.579700767993927, -0.1726072132587433, -0.8730385899543762, 0.7334500551223755, -0.9100872874259949, -0.3303149342536926, -0.4185613989830017, -1.0772373676300049, -0.5179949402809143, 0.1463339775800705, -0.4419465661048889, 0.3810499310493469, -0.21080225706100464, -0.754569411277771, 0.232444629073143, -0.9607263207435608, 0.5433364510536194, 0.9464746117591858, 1.191042184829712, 0.7376705408096313, 0.1298244446516037, 0.6435539722442627, 0.5289291143417358, -0.9645540118217468, 0.48805391788482666, 0.7755365967750549, -0.15167437493801117, -0.4875526428222656, -0.6504715085029602, -0.6208115816116333, 1.2629185914993286, 0.6317028403282166, -0.42182764410972595, 0.09486694633960724, 0.12271389365196228, 1.3194799423217773, -0.011679602786898613, -0.7621303796768188, 0.048106156289577484, -0.18205562233924866, 0.4311060905456543, 0.9437498450279236, -0.8013458251953125, -0.25305497646331787, -0.4109466075897217, -1.0628421306610107, 1.3736482858657837, 0.3282671570777893, -0.8112131953239441, 1.5562244653701782, 1.1006910800933838, -0.1459013819694519, 0.5543236136436462, 0.31063762307167053, -0.7399328351020813, 0.20443658530712128, -0.004666642285883427, -1.6218211650848389, 0.7168809771537781, 0.0752720981836319, 0.20294946432113647, -0.7399323582649231, -0.20140796899795532, -1.1839268207550049, 0.567379891872406, -0.5963818430900574, -0.3359951972961426, 0.4578675925731659, 0.20370371639728546, 0.3334437906742096, 0.3048756718635559, -0.4368964433670044, -0.007269289810210466, -0.4734300374984741, -0.49983370304107666, 0.6841283440589905, -0.2767607271671295, -1.4220951795578003, 0.3249575197696686, 0.17394942045211792, 0.39535602927207947, 0.26626908779144287, -0.21045784652233124, 1.407742977142334, 1.0239791870117188, 0.2865585684776306, 0.6340008974075317, -0.424881249666214, -0.26508161425590515, -0.1384563446044922, -0.9361319541931152, 0.3851010799407959, -1.1929093599319458, 0.2381218671798706, -0.46974265575408936, -0.12233906239271164, 0.34894371032714844, 0.05796905606985092, -0.22793667018413544, -0.7415115237236023, -0.7674902081489563, -1.5737301111221313, 0.2530871331691742, 0.6667612791061401, -0.7039875388145447, -0.4349345862865448, 0.2495572715997696, -1.3598756790161133, 0.16922707855701447, 0.6458324790000916, -1.160017728805542, -0.34127989411354065, -1.159508466720581, 0.8019216060638428, -0.9068955779075623, 0.6209901571273804, -0.7070575952529907, 0.7189305424690247, -0.5230802893638611, -1.1239622831344604, -0.5871309041976929, -0.3711230158805847, 1.0931607484817505, 1.0935263633728027, -0.6919236779212952, 0.8634910583496094, 0.3090268075466156, -0.5832182765007019, -0.25818932056427, 0.3199038803577423, -0.045738741755485535, 0.7869952321052551, 0.19105570018291473, -0.4425411820411682, 0.655854344367981, 1.0015519857406616, 0.7138555645942688, 1.2610445022583008, 0.17791706323623657, 0.9931060075759888, -1.1760363578796387, -0.33351507782936096, -1.0732089281082153, -0.05408259108662605, -0.31340864300727844, -0.43031591176986694, -0.6626138687133789, -0.984404981136322, -0.14186103641986847, 0.8943981528282166, 1.2371476888656616, -0.8137583136558533, -0.23398199677467346, -0.8068240880966187, 0.8014866709709167, -0.2728356420993805, 0.4602300822734833, -0.004690042696893215, -0.24929183721542358, -0.053550392389297485, -0.6674671173095703, -0.4701937139034271, -0.5785536766052246, -0.6095070242881775, -0.2687637507915497, 0.43067944049835205, -0.19486375153064728, 0.3756425678730011, 0.7808033227920532, -0.011376718990504742, -0.2879164516925812, 2.185779571533203, 1.338724970817566, -0.23763597011566162, 0.8956605792045593, -0.4552321135997772, -0.3305172026157379, -0.31808438897132874, -0.8239647150039673, 0.4105474054813385, -0.7536178231239319, 0.5174142718315125, -0.1680101901292801, 0.0876619890332222, -1.1612704992294312, 0.3099052608013153, 0.15540045499801636, 0.47604337334632874, 0.8059001564979553, -0.2734833061695099, -0.2882634699344635, 0.6673901081085205, 0.9584078192710876, -0.49574366211891174, 0.5664117932319641, 0.3643024265766144, 0.5135656595230103, 0.14064466953277588, 0.603338360786438, 0.34045857191085815, -1.2336978912353516, 0.6484943628311157, 0.0385536290705204, -0.6766252517700195, -0.1346033662557602, -0.7691800594329834, -1.445975422859192, -0.523989200592041, -0.5751940608024597, -0.9162490367889404, 0.32277533411979675, -0.6713875532150269, -0.6466668248176575, 0.32212698459625244, -0.19269278645515442, 0.09401404112577438, -0.5909180641174316, 0.08767681568861008, -0.3569163680076599, 0.02914166823029518, 0.497883141040802, 0.016779005527496338, 0.4779849648475647, 0.32285773754119873, -0.16843095421791077, -0.9650471210479736, -0.626204252243042, -0.11081115901470184, 0.22178223729133606, 0.06548482924699783, 0.4309332072734833, 0.22100390493869781, -0.1576928049325943, -0.27473750710487366, 0.21741285920143127, -0.6331700086593628, 0.6790040731430054, -0.26680120825767517, -0.4751441776752472, 0.17191533744335175, 0.46665602922439575, -0.4867429733276367, -0.1692521870136261, -0.35460615158081055, -0.15567860007286072, -0.21646378934383392, -0.7496858239173889, 0.16903434693813324, -0.44751662015914917, 0.6332346200942993, 0.35701698064804077, 0.14762096107006073, 0.32295140624046326, -0.17744751274585724, 0.12687304615974426, -0.3869697153568268, 0.37336963415145874, 0.3154618442058563, -1.0491178035736084, 0.517585813999176, -1.3841441869735718, 0.3258962035179138, -0.3458639085292816, 0.5083483457565308, 0.05240525305271149, -0.7239858508110046, -0.9188185930252075, -0.45591798424720764, -0.23451216518878937, 1.149548888206482, 0.5061787366867065, 0.8047837018966675, -0.9110214710235596, -1.3073418140411377, -0.38382336497306824, -0.3267626166343689, 0.053374260663986206, 0.9259229898452759, 1.6973655223846436, 1.5179502964019775, 0.26817387342453003, -0.20797428488731384, -0.11025727540254593, 0.7304743528366089, -0.563367486000061, -0.8106915950775146, -1.1325749158859253, -0.2341698855161667, -0.255058616399765], [0.01391932275146246, 1.0474679470062256, -1.937429666519165, -0.20000383257865906, 0.658793032169342, -0.42883285880088806, 1.5673712491989136, -0.1776025891304016, 0.9716423153877258, -1.2055960893630981, -0.37566614151000977, -0.24651966989040375, 0.5735188126564026, 1.2779244184494019, -0.7231682538986206, 0.6035867929458618, 0.4548881947994232, -0.5358943939208984, -0.9760546684265137, 0.80268794298172, 0.181693896651268, -2.5137534141540527, -0.8282184600830078, -0.6299811005592346, -0.37914517521858215, -0.2525254189968109, -0.26463255286216736, 0.5712230801582336, -1.4687305688858032, -0.42638254165649414, 0.746318519115448, -0.4549766778945923, -0.3523164689540863, 0.7053971290588379, -0.5582041144371033, -0.6044514179229736, 0.4625830054283142, -0.21109521389007568, -0.25771665573120117, 0.5848783254623413, 1.0297377109527588, -0.25324657559394836, -0.588342547416687, -0.5680190324783325, 0.8131076693534851, -1.1706749200820923, 1.6412663459777832, -0.5438027381896973, 0.2885075807571411, -1.8545680046081543, 0.6068668961524963, -1.4637837409973145, 0.2110166996717453, 0.45036154985427856, 0.5267877578735352, -1.1981074810028076, 0.03552384674549103, 0.33260491490364075, -0.6023099422454834, 0.24225689470767975, 1.9388279914855957, 0.9216382503509521, 0.3069843649864197, 1.9446338415145874, 0.16057290136814117, -0.0941181480884552, -0.05207177996635437, -0.27928397059440613, -0.3071750998497009, -0.005889022722840309, 0.5707385540008545, -0.596555233001709, -0.04549730569124222, 0.5030041933059692, -0.4254438877105713, 0.5105909705162048, -0.5945845246315002, 0.136007621884346, -0.31415531039237976, 0.1778433471918106, 0.23035970330238342, -0.12067611515522003, 0.7771583795547485, -0.7720786333084106, -0.3131732642650604, -0.8503150343894958, 0.13005654513835907, -0.5426356196403503, -1.469155192375183, 2.116081476211548, -0.15971432626247406, -0.1249089166522026, 0.3411928415298462, 0.35647496581077576, -0.10163107514381409, -1.826526403427124, 0.044792983680963516, -0.49772393703460693, -0.4296461343765259, -0.07671058177947998, -0.6141166687011719, -0.36502888798713684, -0.25488540530204773, -0.17395231127738953, 0.7637153267860413, 1.1943787336349487, 0.005654420703649521, -0.9880701303482056, 0.3831489086151123, -0.1542406678199768, 1.1945172548294067, -0.1052100658416748, 0.038848862051963806, -0.1041235476732254, 0.04680902883410454, 0.1802045851945877, 0.7970153093338013, 0.03366721794009209, -0.11945538222789764, 1.5866461992263794, 0.33068838715553284, -1.417008876800537, -0.7687355279922485, -0.22623705863952637, 0.7531927824020386, -0.04021138325333595, -0.5697086453437805, -0.3113151788711548, -0.8529523611068726, -0.7836775779724121, -0.21676839888095856, -0.024879634380340576, -0.1361936777830124, 0.11253046989440918, -0.3886038362979889, 1.129923939704895, -0.6389278769493103, -1.0363855361938477, -0.23337815701961517, -0.3320237994194031, 1.0701481103897095, 0.2821251451969147, -0.8271719813346863, -0.11201479285955429, 0.41064324975013733, -0.37959718704223633, -0.4128621816635132, -0.07361385971307755, -0.08363693952560425, 0.5699219107627869, -0.7091654539108276, 0.140006884932518, 0.2315242439508438, 1.0818036794662476, 1.2709006071090698, -0.4978059232234955, -0.341147243976593, 1.0677242279052734, 0.7302471399307251, 0.5161838531494141, 0.9853654503822327, -0.08175419270992279, -0.0714707300066948, 1.1597199440002441, 0.3852269947528839, 0.052386097609996796, 0.630873441696167, 0.8323476314544678, -0.1266574114561081, 0.8977078795433044, -0.5891621112823486, 0.09078418463468552, -0.8212231993675232, 0.7048598527908325, 0.026504382491111755, 0.4457884430885315, 0.38331785798072815, 0.021885178983211517, -1.1727886199951172, -0.4490951895713806, 0.8625332713127136, -1.4551054239273071, -0.7708236575126648, -0.02363932877779007, -0.2852504551410675, 0.20996612310409546, -0.08271059393882751, -1.4738619327545166, -0.022483468055725098, -1.14975905418396, -0.7045770883560181, 0.009241837076842785, -0.7208647727966309, -0.14446595311164856, -0.9742339253425598, 0.01903640665113926, 1.2171924114227295, -0.026503615081310272, 0.35962358117103577, -0.5250189900398254, 0.1773132085800171, 0.8077855706214905, -0.7752283215522766, 0.5316557288169861, 0.27327072620391846, 0.42852503061294556, 0.5909690856933594, 0.7150754332542419, 0.11761920899152756, 0.6564642786979675, 1.1363309621810913, -1.4272801876068115, 0.19346362352371216, -0.2873873710632324, 0.09494465589523315, -0.056706514209508896, 0.2674371898174286, -0.8292248845100403, -0.7773545384407043, -0.026849305257201195, 0.7070208787918091, -0.4841296672821045, -0.2587205469608307, -0.5422652363777161, 0.7122504711151123, -0.3869323134422302, -1.7456234693527222, -0.23527298867702484, -0.6237932443618774, -0.05374174192547798, -0.07055007666349411, -0.524945855140686, 0.6013684272766113, 0.24308791756629944, -0.29187965393066406, 0.8828374147415161, -1.024367332458496, 0.7557836174964905, 0.030485689640045166, 0.7692429423332214, 1.137908935546875, -0.32797402143478394, 0.2536633610725403, -0.0860559493303299, -0.9511573910713196, -0.02122301608324051, 0.05003955960273743, -0.7107803821563721, -0.7205098867416382, 1.0676548480987549, 1.5156080722808838, -0.13913381099700928, 0.16755756735801697, -0.022095153108239174, 0.3427945077419281, -1.3058249950408936, 0.5357823371887207, 1.1174746751785278, -0.1463741511106491, -0.18801547586917877, 0.6378088593482971, -0.3651919364929199, -0.24132241308689117, -0.47399234771728516, -0.10794767737388611, -0.43611279129981995, -0.6328984498977661, -0.3181878328323364, -0.07054668664932251, 0.2158970683813095, -0.2613570988178253, 0.1360183209180832, -0.3404063284397125, 0.7927719354629517, 0.056882258504629135, 0.10719530284404755, 1.1378586292266846, 0.7711671590805054, 0.3247630298137665, 0.9763213396072388, -1.0616072416305542, -1.689150094985962, -0.7481792569160461, 0.3128673732280731, 0.1326325684785843, 0.12419907748699188, -0.7346490025520325, 0.137893944978714, 0.6925073862075806, -0.34660637378692627, 1.287402868270874, 0.005083865486085415, -0.25742530822753906, -0.6428363919258118, -0.8283932209014893, 0.17248187959194183, -0.05229353532195091, -1.0756868124008179, -1.0302122831344604, -0.12331247329711914, 0.23722046613693237, 0.9455630779266357, 1.3909828662872314, 0.9463610649108887, -0.2652747333049774, -0.4611668884754181, -0.33723556995391846, 0.20266303420066833, 0.48144474625587463, 0.06171102076768875, -0.4023565351963043, -0.028460539877414703, -0.8521331548690796, 0.4234611392021179, 0.3066583573818207, 0.9601927399635315, 0.21479685604572296, 0.2622189521789551, 0.49588000774383545, -0.3473994731903076, -1.3547550439834595, -0.32430705428123474, -0.7916646599769592, -0.9865075945854187, 0.23217976093292236, 1.4070487022399902, -0.800143837928772, -0.740135133266449, 0.357655793428421, 0.23347024619579315, 0.04187151789665222, 0.8363988399505615, 0.27484825253486633, -1.3341807126998901, 0.3575995862483978, -0.7168547511100769, 0.381187379360199, -0.13175496459007263, 0.30638810992240906, 0.30189216136932373, -0.09972210228443146, 0.500329852104187, -0.7557098865509033, -0.2626552879810333, -0.170701801776886, -0.25019583106040955, 0.1957530826330185, 0.06747576594352722, -0.05329698696732521, 0.4128822088241577, -0.049340467900037766, -1.0124484300613403, 0.24437794089317322, -0.5181971192359924, -0.1723678857088089, -0.33120498061180115, -0.2597879469394684, 0.7332221865653992, -0.21192912757396698, 0.3341095447540283, 1.2838242053985596, 0.7698757648468018, 0.42720136046409607, -1.2216318845748901, 0.20610663294792175, 0.24484187364578247, 1.1101195812225342, -0.2896896302700043, -0.9301734566688538, -0.0204915888607502, -0.2522144913673401, -0.0033223293721675873, -1.150891900062561, -0.2413095086812973, 0.2592506408691406, 0.32670730352401733, -0.9361575841903687, -0.5909484624862671, -0.5140408277511597, 0.04694833233952522, -0.3628634512424469, 0.211965873837471, 0.2776334881782532, -0.06582148373126984, 0.4807074964046478, 0.14248868823051453, 0.6730021834373474, -0.3329082131385803, 0.6459142565727234, -0.4602956771850586, 0.08772557973861694, 0.5204370617866516, -0.2611992657184601, -0.2386392056941986, 0.418204665184021, -0.9167437553405762, -0.40175461769104004, -1.3647537231445312, 0.3935006260871887, 1.5933810472488403, -0.9833102822303772, -1.1086087226867676, 0.24100801348686218, 0.4903292953968048, 0.8828364610671997, -0.32901009917259216, 0.8566601872444153, 0.4578436017036438, -0.2079334259033203, -0.8296441435813904, 1.349422812461853, 0.37438467144966125, -0.0792609378695488, -0.4156402349472046, 0.215787872672081, 0.05240270867943764, 0.6945217251777649, -0.34381404519081116, 0.1269785612821579, 0.5633035898208618, -0.8239840865135193, 0.26113376021385193, 0.33056148886680603, 0.061583369970321655, 1.4327210187911987, 0.6633485555648804, 0.15875352919101715, -0.048673372715711594, 0.041017256677150726, -1.121027946472168, -0.16403385996818542, 0.46596309542655945, 0.890024721622467, -0.9590277075767517, -0.01182048674672842, 0.2831173241138458, 0.2151486873626709, 0.41579216718673706, 1.078546166419983, -0.38556039333343506, 0.2819809913635254, -0.8758666515350342, 0.035103436559438705, -0.34031686186790466, 1.506999135017395, 1.4067047834396362, 0.2508769631385803, -0.09518489986658096, -0.23415659368038177, 0.7494279146194458, -0.5169573426246643, 0.25683143734931946, 0.5099920630455017, 0.731999933719635, 0.7300033569335938, -0.2533120810985565, 0.4212754964828491, 0.12966521084308624, -0.29855313897132874, 0.40220531821250916, 0.06699240207672119, 0.2126810997724533, -0.9659929275512695, 0.21631741523742676, 0.1922605335712433, 0.6409310698509216, 0.7351234555244446, -0.221589595079422, 0.09141941368579865, -0.08001775294542313, -0.8142358660697937, -0.028402427211403847, 0.19169379770755768, 1.118790626525879, -0.20629264414310455, -0.857412576675415, 0.3476100265979767, -0.04577383026480675, 0.7696987986564636, 2.1490869522094727, -0.7639845013618469, -1.3638089895248413, -0.23139020800590515, -0.7505563497543335, -0.1950095146894455, -0.9284441471099854, -0.1256314218044281, 0.19733014702796936, -0.2549787759780884, 0.17622505128383636, 0.08986054360866547, -0.9297212958335876, -0.6835724115371704, -1.0979981422424316, 0.48402470350265503, 0.8076899647712708, -0.5819312930107117, 1.0750994682312012, 0.30476823449134827, 0.11045125871896744, 1.2341327667236328, 0.296924889087677, -0.9420130848884583, -0.25027766823768616, 0.23075422644615173, 0.45167076587677, -0.2672966718673706, -0.042184967547655106, -0.314308226108551, 0.3780532479286194, -0.40950945019721985, -0.5654510855674744, -0.166591614484787, 1.083694338798523, 0.819664716720581, -0.5436603426933289, -0.6075674295425415, 0.908121645450592, -1.3827458620071411, 1.1992963552474976, 0.718854546546936, -1.2227457761764526, 0.7458063364028931, -0.6897067427635193, -2.0928566455841064, 1.2874618768692017, 0.4506949186325073, 0.4050905108451843, 1.4261339902877808, 0.8802462816238403, 0.05948669835925102, 1.0257481336593628, -0.11282545328140259, -0.4025545120239258, -0.20555007457733154, 0.44748005270957947, -1.4945307970046997, 0.8912542462348938, 1.8106180429458618, 0.47534215450286865, -0.49701905250549316, 0.6249334812164307, 0.7032354474067688, -0.15083934366703033, -0.03971463441848755, -0.21987445652484894, 0.16578486561775208, 0.8525235056877136, 0.06126568466424942, -0.2533535659313202, 0.6088864207267761, -0.7679145932197571, 0.29377713799476624, 0.9211841225624084, 1.0067576169967651, 0.441593736410141, 0.023758571594953537, -0.4986543655395508, 0.34943991899490356, -0.5037384033203125, 0.48942792415618896, 0.17912007868289948, 0.506393313407898, 0.3010372221469879, -0.275390625, -0.3596891462802887, -0.35743120312690735, -0.4819786548614502, -0.8116317987442017, 0.16729876399040222, 0.7381570339202881, -0.20146843791007996, -0.4701225757598877, -0.44304612278938293, -0.664495587348938, 0.10239937901496887, 0.769607663154602, 0.05103040859103203, -1.0970696210861206, -0.6509835720062256, 0.4175327718257904, 0.08443935960531235, 0.23401594161987305, 0.21806947886943817, 0.4158664047718048, -0.06582190841436386, -1.4921009540557861, 0.6662046909332275, 0.37182915210723877, -1.7853293418884277, -0.05214076489210129, -0.07562469691038132, 0.7415984869003296, 0.4027594327926636, 1.0140388011932373, -0.5698926448822021, 1.5308642387390137, -1.2284165620803833, -0.8873233199119568, -0.2704460918903351, -0.020197169855237007, 0.304820716381073, -0.12310396134853363, 0.4057183563709259, 0.26725631952285767, 0.1862560510635376, -0.21080027520656586, -0.18680405616760254, 0.36484095454216003, -1.3689024448394775, 0.09789424389600754, -0.781674325466156, 0.5370810627937317, -0.47532588243484497, 0.6883417963981628, 0.0828033983707428, 1.1813043355941772, -0.37481462955474854, 1.9035413265228271, -0.12574109435081482, -1.0005792379379272, -0.4508433938026428, 0.5700786709785461, -0.7353314161300659, -0.5689805746078491, -0.4955180883407593, -0.89431232213974, 0.3193117380142212, 0.07731104642152786, 0.2621358335018158, -0.34361574053764343, 0.17332591116428375, -0.05715493857860565, -0.014099566265940666, -0.9970501065254211, 0.44965529441833496, 0.5924243927001953, -1.9323303699493408, -0.002734158653765917, -0.0327339768409729, 0.5530233383178711, -0.9490167498588562, -0.1347111165523529, 1.3237192630767822, 1.2663159370422363, -0.19430023431777954, 0.5596639513969421, -0.4977478086948395, 1.1379022598266602, -0.6815384030342102, 0.5052469372749329, 0.09494943171739578, -0.045604899525642395, -0.7745842337608337, 0.21435463428497314, -0.33409783244132996, -0.479159414768219, -0.5513258576393127, -0.5271202921867371, 0.07437931001186371, 0.6425593495368958, 0.4602707326412201, 0.29764634370803833, 0.1519789695739746, 1.119896411895752, 0.33304500579833984, -0.2333916872739792, 1.204365849494934, -0.5769843459129333, -0.2813338339328766, 1.164792776107788, 1.205741047859192, -0.49372607469558716, -0.22187495231628418, 0.21329611539840698, -0.36463773250579834, 0.5351532697677612, 0.32738611102104187, -0.1696186363697052, -0.21255405247211456, 0.34562042355537415, -0.20609280467033386, -0.05993463099002838, -0.21631065011024475, -0.21058142185211182, -0.7207430005073547, 0.6684021949768066, -0.47925034165382385, 0.13760066032409668, -0.4485395550727844, -0.4726564884185791, -0.5107351541519165, -0.371932715177536, -0.3766736686229706, 0.5612375140190125, 0.5006357431411743, 0.28524449467658997, -0.8415365219116211, -0.6173771619796753, 0.7592878341674805, -0.7324415445327759, 1.030727744102478, 0.510242760181427, 0.2448296993970871, -1.1272889375686646, 0.7418997287750244, 0.16360127925872803, -0.4048728346824646, -0.13418053090572357, -1.7140536308288574, -0.6152080297470093, 0.14137235283851624, -0.4474159777164459, 0.9172172546386719, -0.021123744547367096, 1.151697039604187, 0.17965726554393768, -0.08325961232185364, -0.17779938876628876, -0.40922415256500244, -0.2921057641506195, -0.33330243825912476, -1.6258320808410645, -0.272255539894104, 0.30718687176704407, 0.8771895170211792, 0.9228496551513672, -0.6424562931060791, 0.07331462949514389, 0.62517249584198, -0.9346377849578857, -0.4539944529533386, -0.14989019930362701, 0.6371257901191711, 0.04057871922850609, -0.11474425345659256, -1.0764020681381226, -1.3911702632904053, 0.33154720067977905, -1.094980001449585, 0.047499194741249084, -0.48235857486724854, -0.9768320322036743, -0.17253488302230835, 0.05587070807814598, -0.1665315479040146, -0.3720601499080658, 0.15998448431491852, 0.8535434007644653, 0.6860135197639465, 0.24437955021858215, 0.43479228019714355, -0.507716953754425, 0.4205857217311859, 0.397358238697052, -0.1992068588733673, 0.8667399883270264, 0.42057666182518005, 1.5772043466567993, -0.2790394425392151, -1.0019900798797607, -0.001827790285460651, 0.43451830744743347, -0.3483763635158539, -0.04712885990738869, -1.0553516149520874, -0.5925674438476562, 0.560093104839325], [0.2716299891471863, 1.9378597736358643, -1.9707908630371094, -0.07027775794267654, 0.1018182709813118, 0.6830713152885437, 0.14081551134586334, 0.12874822318553925, -0.6393696069717407, -0.848108172416687, -0.5967137813568115, 0.06808449327945709, 0.018798483535647392, 0.4494878053665161, 0.4987258017063141, 1.3998603820800781, 1.2854030132293701, -0.06341433525085449, 0.19355757534503937, 0.7312001585960388, -0.5014523863792419, -1.1309441328048706, 0.06491797417402267, 0.19967271387577057, -0.33473843336105347, 0.023654606193304062, -1.457338571548462, -0.9047593474388123, -1.1282413005828857, -0.8519670367240906, 1.2536839246749878, 0.28106987476348877, 0.1395757645368576, -0.1558777540922165, -1.8707010746002197, -0.4782755970954895, 0.6304510831832886, 0.20354853570461273, -0.34717339277267456, 0.23611359298229218, 1.4023699760437012, 0.2850334346294403, -0.518805205821991, -1.7369582653045654, 1.1191848516464233, -0.002994721755385399, 0.6795684695243835, -0.7874767184257507, -0.03853783383965492, -0.9448371529579163, 0.8188810348510742, 0.0529063381254673, -0.04827991500496864, 0.5198966860771179, 1.2009358406066895, -0.7016285061836243, 0.251935213804245, 0.7152028679847717, 0.45565569400787354, 0.5181929469108582, 0.7654049396514893, -0.24820956587791443, 0.8794728517532349, 1.0183453559875488, 0.6456981897354126, -0.4455120861530304, 0.12711042165756226, 0.31790298223495483, -0.12184172868728638, -0.2273249477148056, 0.3631208539009094, 0.007603255100548267, -0.42413148283958435, -0.11539744585752487, -0.7213999629020691, 0.3948913812637329, 1.205801010131836, 0.49258777499198914, -0.2848481833934784, 0.031066378578543663, -0.889134407043457, 0.26312562823295593, 0.5804650783538818, 0.038804296404123306, -0.5120009779930115, -0.014045697636902332, 0.07208175212144852, -0.3308367133140564, -0.5651124119758606, 1.8764762878417969, 0.1787794828414917, 0.8353263735771179, 0.8659636378288269, -0.7884383201599121, -0.2999943196773529, -0.8751120567321777, 0.16958338022232056, -1.3622864484786987, -0.5228173732757568, -0.7447590231895447, -0.031763091683387756, -0.5271424055099487, 0.5234441757202148, 0.37338191270828247, 0.06832331418991089, 1.3013770580291748, 0.181487038731575, -0.7427215576171875, 0.26372894644737244, -0.11767417937517166, -0.36842578649520874, 0.04036611318588257, -1.3656911849975586, -1.1122597455978394, 0.019173547625541687, 1.4658316373825073, 1.8874608278274536, -0.062116291373968124, 0.2505062222480774, 0.7846857905387878, -0.7179259657859802, -0.4704720973968506, -0.5933560132980347, -0.21130609512329102, 1.1855597496032715, 0.16765107214450836, -0.6141304969787598, -0.15598635375499725, -0.021278884261846542, 0.3406537175178528, 1.1192609071731567, 0.4852631688117981, -0.12672409415245056, 0.9195183515548706, -0.41817107796669006, 1.473041296005249, -0.40524110198020935, -0.8779424428939819, -0.3202285170555115, 0.2905438542366028, 0.38863617181777954, -0.7213348150253296, -0.2532518804073334, -0.40079623460769653, -0.10412337630987167, -0.6371864080429077, 1.1790674924850464, -0.0419137142598629, -0.8154792189598083, 0.8593267202377319, -0.4892326593399048, -0.27885425090789795, 0.03198612853884697, 1.1678515672683716, 0.7961684465408325, -0.039734210819005966, 0.16452763974666595, 0.349168062210083, -0.10253918915987015, 0.16058748960494995, 1.0220868587493896, -0.3760681748390198, -0.6210490465164185, 0.031399328261613846, 0.7022969126701355, 0.24669261276721954, 0.9179385304450989, 0.8546888828277588, -0.03843645006418228, 0.7477677464485168, 0.16134725511074066, -0.5540549755096436, -0.5925832986831665, 1.181098222732544, 0.17095652222633362, -0.32519811391830444, 1.2020657062530518, -0.1599682867527008, -1.8598549365997314, -1.0063859224319458, 1.0346684455871582, -0.07579860091209412, 0.1919879913330078, -0.4378455877304077, 0.21724537014961243, -0.33280888199806213, 0.2839657962322235, -0.123445063829422, -1.1148293018341064, -1.4296313524246216, -0.18530254065990448, -0.46715834736824036, -1.1851660013198853, 0.5371993184089661, 0.15716001391410828, -1.0284885168075562, 0.4271625578403473, -0.2825576961040497, -0.6338146328926086, 0.44856929779052734, 0.5169180631637573, 0.017475347965955734, -1.0545259714126587, 0.059809207916259766, -0.4442700445652008, 0.4111751616001129, -0.9751678705215454, 0.5114967823028564, -0.9738864898681641, 0.1503743976354599, 1.0055372714996338, -0.5695411562919617, -1.348741054534912, 0.14949969947338104, 0.1499645859003067, -1.2692474126815796, 0.8377054333686829, 0.1453200876712799, -0.23652532696723938, 0.02887539751827717, 0.534411609172821, 0.19771932065486908, 0.1865837574005127, -0.0820332020521164, 0.5257711410522461, -0.11110147833824158, -0.5553139448165894, -1.603227138519287, -0.5503962635993958, -0.3000898063182831, -0.6942355632781982, -0.7683578133583069, 0.22159530222415924, 0.7276573777198792, -0.8265206217765808, 0.8080949783325195, -0.33989855647087097, -0.3205028474330902, -0.40688931941986084, 1.3494553565979004, 0.5111158490180969, 0.6475747227668762, -1.2834579944610596, -0.005991295445710421, -1.1565810441970825, -0.7383697032928467, 1.4202748537063599, -0.5926387906074524, 0.3647523820400238, 1.3777190446853638, 0.9796628952026367, -0.29511019587516785, 0.7284426689147949, 0.2566285729408264, -0.02225017361342907, -0.6415801048278809, -0.38612449169158936, -0.02313789166510105, -1.3781943321228027, 1.6932191848754883, 0.45381009578704834, -0.8487077355384827, 0.7379830479621887, -0.019500309601426125, -0.08524858951568604, -0.3352575898170471, -0.23026147484779358, -0.9215030074119568, 0.7089313864707947, -0.5085094571113586, -0.3241000771522522, 0.8221971988677979, 0.17146413028240204, 1.0206019878387451, -0.3413343131542206, -1.0280057191848755, -0.2557010352611542, 1.010788917541504, 0.2115633487701416, 0.8424239158630371, -0.40915125608444214, -0.9139524102210999, -0.7931910157203674, -0.23095804452896118, 1.0337070226669312, -0.2566666603088379, -0.6247161626815796, 0.9309271574020386, 0.6188156008720398, -0.39060866832733154, -0.10326913744211197, -0.009355323389172554, 0.1105865091085434, -0.3062174618244171, 0.06896747648715973, 0.33575838804244995, 0.8141629695892334, -0.6083991527557373, -0.7402823567390442, 0.18696050345897675, 0.5914597511291504, 1.244236707687378, 0.6770277619361877, 1.3851745128631592, -0.3103500008583069, 0.20144733786582947, -0.8418115377426147, 0.1339026540517807, -1.1102628707885742, -0.0543060377240181, -0.7063798308372498, -1.4684284925460815, 0.09512857347726822, -0.6890156865119934, 0.1848476082086563, 0.6853879690170288, 0.5110300183296204, 0.7925766110420227, 0.6093146800994873, -0.37653079628944397, -1.7041304111480713, -0.7272059321403503, -0.6241382360458374, -1.5058175325393677, 0.6691726446151733, 1.597350835800171, -1.2270936965942383, -0.3057643473148346, -0.049794942140579224, -0.4599135220050812, -0.023105086758732796, -0.20225682854652405, 0.5948153138160706, -1.4921083450317383, -0.8831988573074341, 0.11407860368490219, 1.7686976194381714, 0.4349656105041504, -0.3670571446418762, -0.749637246131897, 0.6894339919090271, 0.5065480470657349, 0.4805259108543396, -0.37876445055007935, 0.49446988105773926, -0.8059859871864319, 0.033620115369558334, 0.12046961486339569, 0.993886411190033, 0.2693963646888733, -0.5863215923309326, -1.187743902206421, -0.20080219209194183, -0.08474695682525635, -0.7498116493225098, 0.20393040776252747, -0.3549385368824005, 0.8983290791511536, -0.10842037200927734, 0.23802824318408966, 1.2241742610931396, -0.2217313051223755, -0.5399082899093628, -1.1659196615219116, 0.519301176071167, 0.7602221369743347, 1.4717692136764526, 1.107984185218811, 0.4559079110622406, 0.12130526453256607, -0.5158535838127136, 0.3438456356525421, 0.12409704178571701, 0.7616782188415527, 0.8168798089027405, -0.7259207367897034, -0.43162864446640015, -0.9964452385902405, 0.23676203191280365, 0.08273932337760925, -0.30083179473876953, 1.2160022258758545, -0.5992475748062134, -0.5700675249099731, 0.9347302317619324, 1.2245898246765137, -0.9500191807746887, -0.555553674697876, -0.1270681470632553, 0.674680233001709, -1.1604164838790894, 0.5604042410850525, -0.0068774232640862465, -0.6225007772445679, 0.26466965675354004, -0.9846709966659546, -0.9165198802947998, 0.19856242835521698, 0.6267994046211243, 1.08956778049469, -1.2184652090072632, 0.011715293861925602, -1.0655988454818726, 0.8585326075553894, 0.9236382842063904, 0.2308601438999176, 0.9162423014640808, 0.5515092611312866, -0.47231510281562805, 0.12762044370174408, 0.22013816237449646, 1.5391756296157837, -0.35652515292167664, -0.24011336266994476, -0.4090785086154938, -0.39318352937698364, -0.41814783215522766, -0.21701569855213165, -0.453444242477417, 0.26502808928489685, -0.6791994571685791, -0.07832609862089157, -0.341850221157074, -0.5610896348953247, 2.2088840007781982, -0.18123067915439606, -0.08046893775463104, -0.4693397879600525, 0.2081020325422287, -0.3350733518600464, 0.3202444911003113, 0.6167738437652588, -0.4487941563129425, -0.4294980466365814, -0.13348977267742157, 0.9217457175254822, 0.5809906125068665, -0.03416997939348221, 0.5213882327079773, 0.5880311131477356, 0.140165776014328, -0.0016507264226675034, 0.8439173698425293, 0.17215083539485931, 0.8691949248313904, 0.5144983530044556, 1.1269234418869019, -0.6351746320724487, -0.5245665907859802, 1.5004353523254395, -0.19428467750549316, 0.4070202708244324, -0.13629259169101715, 0.31804776191711426, 1.1261777877807617, -1.2129454612731934, -0.8382225632667542, 0.909561276435852, -0.8109909296035767, 0.032793596386909485, 0.39691343903541565, 0.4004902243614197, -1.2913391590118408, 0.3834388852119446, 0.16412398219108582, 0.033155657351017, 0.7528411746025085, -0.3971886932849884, 0.4182251989841461, 0.6805531978607178, -0.6633158326148987, 0.6142531037330627, -0.9875978231430054, 0.4738410413265228, -0.31073975563049316, -0.14277248084545135, 0.10208715498447418, 0.5780931115150452, 0.2870868146419525, 0.872564435005188, 0.006463420111685991, -1.0274819135665894, -0.10076936334371567, -1.0597469806671143, 0.44577717781066895, -1.171809434890747, 0.22219379246234894, -0.360612154006958, -0.3126806318759918, 0.22373110055923462, 0.5779585838317871, -0.5552456378936768, -0.7505347728729248, -1.0433597564697266, -0.7253741025924683, 1.2969942092895508, 0.3308974504470825, 0.6820834279060364, 0.36340975761413574, 1.0107864141464233, 0.7754538655281067, 0.07164782285690308, -0.49117669463157654, -0.04175736755132675, 0.1896294355392456, 0.32352471351623535, -0.6278379559516907, -0.3031497597694397, -0.19818761944770813, 0.20266634225845337, 0.9445635080337524, 0.6931564211845398, 0.3448824882507324, 0.44441989064216614, 1.4107434749603271, -0.5083453059196472, -0.5759080052375793, 0.05140167847275734, -0.32837268710136414, 0.4145607054233551, 0.4809052348136902, -1.3242555856704712, 0.1328694075345993, -0.7316083908081055, -1.691141963005066, 1.8342145681381226, 0.12271015346050262, 0.12733115255832672, 0.6074780225753784, 0.9126275181770325, -0.3099243938922882, 0.9530332684516907, 0.11575542390346527, 0.38002291321754456, -0.22291399538516998, -0.13911886513233185, -0.6802358627319336, -0.18411821126937866, 1.1938444375991821, -0.03250192105770111, -0.6849574446678162, 0.27303722500801086, -0.9277379512786865, 0.153151273727417, -0.9915623068809509, -0.2509545683860779, 0.8903512358665466, 0.8227643966674805, 0.839390218257904, -0.7083544135093689, 0.5978651642799377, -0.719525158405304, 0.31714314222335815, 0.3141489624977112, 0.5160397291183472, 0.3627317547798157, -0.5639669299125671, 0.511470377445221, -0.7788076996803284, 0.43693268299102783, 0.25969091057777405, -0.7344269752502441, 1.074629306793213, 0.8020516633987427, -0.4808347523212433, 1.2252857685089111, -0.36339953541755676, -0.36683908104896545, -0.8499307632446289, -0.3082652688026428, 1.1583349704742432, -1.1419957876205444, -1.1348549127578735, -0.25324100255966187, -0.67128586769104, -0.12333518266677856, 0.5298714637756348, -0.23443986475467682, -1.035166621208191, -0.9183358550071716, -0.27214688062667847, 0.5230721831321716, 0.2607749402523041, -0.7764040231704712, -0.028450530022382736, 0.1300881952047348, -0.9260928630828857, 0.06069780886173248, 0.5126834511756897, -1.546539545059204, -0.1152758002281189, -1.218195915222168, 0.5678155422210693, -0.3749036490917206, 0.4788326025009155, 0.04580904170870781, 0.9052317142486572, -1.202774167060852, -0.7006356716156006, -0.5604134798049927, -0.7368457317352295, 0.7251110076904297, 0.8389554619789124, -1.1071432828903198, 0.6532530188560486, -0.6915136575698853, -0.3959275484085083, -0.508527398109436, -0.4072655737400055, -0.4446215331554413, 0.5400794148445129, -0.13943055272102356, -0.07298161089420319, 0.572694718837738, 1.6180223226547241, 1.182674765586853, 1.4018263816833496, 0.07419035583734512, 1.361075520515442, -0.8119013905525208, -0.2985868453979492, -0.7033078670501709, 0.25306251645088196, -1.3017187118530273, -0.8616852760314941, 0.12619787454605103, -0.6602494716644287, -0.8874052166938782, 0.07807981967926025, 0.6988332271575928, -0.8429610729217529, 0.4365698993206024, 0.1241404339671135, 0.04404756799340248, -0.763018012046814, 0.3590603172779083, -0.008997812867164612, -0.9712598919868469, -0.013998571783304214, -0.11281754076480865, 0.2309168428182602, -0.8494380116462708, -0.79024338722229, 0.35412323474884033, 0.04957973212003708, -0.33293309807777405, -0.06124221533536911, 0.32329046726226807, 0.33290043473243713, -0.5328568816184998, 1.0727461576461792, 0.7995957732200623, -0.434301495552063, 0.23374295234680176, -0.1592419594526291, -0.16894342005252838, -0.23654645681381226, -0.6372815370559692, 0.38890284299850464, -0.7067145705223083, 0.8058156967163086, 0.15970061719417572, 0.15087267756462097, -0.15691576898097992, 0.5750005841255188, 0.2507108449935913, 0.675504207611084, 1.305929183959961, -0.7739053964614868, -0.8074561953544617, 1.243275761604309, 0.4952385425567627, -1.10185968875885, 0.44551074504852295, -0.025623686611652374, -0.584985613822937, 0.17021986842155457, 0.4341234564781189, 0.8353365063667297, -0.7133334279060364, 0.7164363861083984, 0.40922319889068604, -0.014269515872001648, -0.14256320893764496, -0.3998277187347412, -1.8025087118148804, -0.13378947973251343, -0.0016506239771842957, -0.13691522181034088, 0.6612281203269958, -1.0681606531143188, -0.9922338128089905, 0.3639048933982849, 0.39730215072631836, -0.3301078677177429, -0.8330240249633789, 0.5345970392227173, -0.44016000628471375, -0.10445767641067505, 0.6363768577575684, 0.49756184220314026, 1.3020325899124146, 0.2567007541656494, -0.0439789704978466, -0.7386801838874817, 0.11555293202400208, 0.8220387101173401, -0.05360759422183037, -0.1349267065525055, -0.34526127576828003, 0.4831487834453583, 0.21505571901798248, -0.19959671795368195, -0.1127350851893425, -0.6466765403747559, -0.12600445747375488, -0.3605845868587494, -0.26260343194007874, 0.3275968134403229, 0.13340705633163452, 0.8545044660568237, -0.7021461725234985, -0.9220292568206787, -0.8278347253799438, 0.1457248479127884, -0.30930471420288086, 0.9890583157539368, 0.27639949321746826, 0.8077155947685242, -0.29262399673461914, -0.6589390635490417, -0.23762832581996918, -0.7448197603225708, 0.4692325294017792, -0.0664660856127739, 0.4327560365200043, 0.0916377529501915, -0.41266798973083496, 0.45296958088874817, -1.2597250938415527, 0.001851685345172882, -0.33031195402145386, 0.2669964134693146, -0.4349677860736847, -0.9871876835823059, -0.7910919189453125, -1.0106581449508667, 0.1201682984828949, 0.48087450861930847, 0.7230570912361145, 0.5639845728874207, 0.5802404284477234, -1.18172025680542, -0.09919024258852005, 1.040894865989685, -0.5826483964920044, 0.17690257728099823, 1.707197666168213, 1.0076406002044678, 0.27496904134750366, -0.15624785423278809, 0.007129565812647343, 0.5420845746994019, -1.2832547426223755, -0.027694065123796463, -0.5951235890388489, -0.3255907893180847, -0.3425292372703552], [0.3334190249443054, 1.8408290147781372, -1.7979404926300049, -1.0414823293685913, -0.0005459459498524666, -0.525019109249115, 0.788112461566925, 0.43000704050064087, -0.29931339621543884, -0.7464616894721985, -0.8297680020332336, -0.05110343545675278, 0.9569726586341858, 0.7332573533058167, 0.27570533752441406, 0.5026518702507019, 0.7533797025680542, -0.04848892241716385, 0.525977611541748, 0.7833502292633057, 0.22960799932479858, -1.3379521369934082, 0.41296911239624023, -0.07858466356992722, 0.3269295394420624, 0.0916893258690834, -1.0493892431259155, -0.2139812409877777, -1.1370649337768555, -1.975278615951538, 1.2620567083358765, 0.6780591011047363, 0.353148490190506, -0.250324010848999, -1.5481624603271484, -0.9568122625350952, 0.5561535358428955, -0.019870754331350327, -0.7046836018562317, 0.8441654443740845, 1.626387357711792, -0.18227805197238922, -0.84536212682724, -0.8673904538154602, 0.9880071878433228, -0.5928212404251099, 0.3482338488101959, -1.026308298110962, -0.11169281601905823, -1.5293476581573486, 0.43981432914733887, 0.013859105296432972, -0.1110030859708786, 1.0700922012329102, 0.8185846209526062, -1.0068429708480835, 0.4436299204826355, 0.7890673875808716, -0.21025590598583221, 0.7342664003372192, 0.9070760607719421, -0.0031643109396100044, 0.43781009316444397, 0.7220231890678406, 0.09906399995088577, -0.2965361773967743, 0.9754064679145813, 0.5670037865638733, 0.26557981967926025, 0.8688219785690308, 0.7247104644775391, 0.2519421875476837, -0.35544899106025696, 0.18152198195457458, -0.15792639553546906, -0.37086164951324463, 0.22268171608448029, 0.6895763874053955, -0.3686327338218689, 1.4048519134521484, -0.35731351375579834, 0.09569796174764633, -0.23424562811851501, -0.3129187524318695, -0.13480645418167114, 0.037136662751436234, -0.4090626537799835, -0.5869958400726318, -0.36395445466041565, 1.5610076189041138, 0.13875561952590942, -0.08283808827400208, 0.46416378021240234, -0.43696874380111694, -0.5484653115272522, -0.9534568786621094, 0.4847048819065094, -0.7992455363273621, -0.37744107842445374, -0.716550886631012, -0.2244666963815689, -0.18269628286361694, 1.0616205930709839, 0.6256149411201477, 0.5619068145751953, 1.391194462776184, 0.9173288345336914, -1.3375493288040161, -0.4031594395637512, 0.2731170952320099, 0.04919165372848511, 0.10234884172677994, -0.8127318620681763, -0.9484732747077942, -0.4184790849685669, 0.9591607451438904, 0.872348427772522, -0.10375744849443436, 0.7142546772956848, 0.448207288980484, -0.34837085008621216, -0.9590675234794617, -0.7939853072166443, 0.08869931101799011, 1.5257829427719116, 0.15358582139015198, -0.6011655330657959, 0.17429614067077637, 0.34879299998283386, -0.6697434186935425, 0.12478100508451462, -0.0773129016160965, -0.5266097187995911, 0.6718327403068542, -0.22027496993541718, 1.3192543983459473, -0.603384792804718, -1.2165461778640747, 0.6867413520812988, -0.06728558987379074, -0.09145208448171616, -0.1544327735900879, -0.7366585731506348, -0.5907362103462219, 0.21450287103652954, -0.1655454933643341, 0.4694986641407013, -0.3651154339313507, -0.3592343330383301, 0.891446590423584, -1.3901019096374512, -0.027460282668471336, -0.4913928806781769, 1.215477705001831, 0.6593068838119507, 0.20699554681777954, 0.2187020480632782, -0.2905674874782562, 0.152180016040802, 0.5105965733528137, 0.821674108505249, 0.1589699387550354, -0.5862846970558167, 0.9540587067604065, 0.5800046920776367, 0.060503605753183365, 0.9108527302742004, 0.5402639508247375, -0.5899251103401184, 0.8024207353591919, -0.4708150625228882, -0.49137604236602783, -0.8620401620864868, 0.5452237725257874, 0.27581676840782166, -0.23625735938549042, 0.9776188731193542, -0.43904030323028564, -0.8533457517623901, -0.5645706057548523, 1.0053348541259766, -0.540411114692688, 0.011005629785358906, 0.21108968555927277, -0.030635757371783257, -0.26962125301361084, -1.0519312620162964, -0.7976141571998596, -0.5232551693916321, -0.8225666880607605, -0.9014574885368347, -0.2373083233833313, -0.9381224513053894, 1.0319855213165283, -0.7471194267272949, -0.5761736035346985, 0.5606555342674255, -0.4916374683380127, -0.5852291584014893, 0.3607737123966217, 0.32726967334747314, -0.20024478435516357, -1.5467092990875244, -0.23042240738868713, -0.36037421226501465, 0.6211014986038208, -0.12699317932128906, 0.2026478350162506, -0.7090694904327393, 0.23230886459350586, 1.4906560182571411, -0.3079495429992676, -1.1388450860977173, 0.12359768152236938, 0.17212940752506256, -1.2699898481369019, 0.013488790951669216, -0.16243956983089447, 0.1904277503490448, -0.01842084899544716, 0.1883544772863388, 0.27351030707359314, 0.4324115812778473, 0.132688507437706, 0.3740512430667877, -0.08062132447957993, -1.16128408908844, -0.23893548548221588, -0.33952999114990234, 0.32665199041366577, -0.6093334555625916, -0.9294437766075134, 0.6682776212692261, 0.6616576313972473, -0.7379767298698425, 0.5398364663124084, -0.98255854845047, 0.7408765554428101, 0.3169322609901428, 1.2120708227157593, 0.897260844707489, 0.11250606179237366, -0.510545015335083, -0.03120841644704342, -0.8230271935462952, -0.19210797548294067, 0.5982602834701538, -0.5928502082824707, -0.2713780105113983, 1.4202402830123901, 0.48989757895469666, -0.42080679535865784, 0.8574966192245483, -0.6170955896377563, -0.020356133580207825, -1.2503336668014526, 0.1678721308708191, -0.1652689129114151, -0.4691942632198334, 1.2651007175445557, 0.4195713400840759, -1.0650306940078735, -0.23149776458740234, -0.1538078337907791, 0.26798006892204285, -0.7828642129898071, -0.27922773361206055, -0.20710915327072144, 0.7598503232002258, -0.3037329614162445, 0.033991582691669464, -0.16946221888065338, -0.7045051455497742, 1.506610631942749, -0.20490719377994537, -0.23896357417106628, 0.13516999781131744, 1.2806780338287354, 0.009369014762341976, 0.9890422821044922, -0.6327876448631287, -1.9077056646347046, -1.4343730211257935, -0.6897619366645813, 1.3396273851394653, -0.06470201164484024, -0.537447988986969, 0.45061194896698, 1.4572458267211914, -0.4026890993118286, 0.8853451013565063, 0.1396840512752533, 0.04509836062788963, 0.17036984860897064, 0.4700714647769928, 0.12473580986261368, -0.02138872817158699, -0.5713522434234619, -0.8769077062606812, -0.2724195718765259, 0.5061737298965454, 0.8598513007164001, 0.963637113571167, 1.3420543670654297, -0.16154992580413818, 0.25544553995132446, -0.8304087519645691, 0.31659677624702454, -0.391448974609375, 0.2939918339252472, -0.17219439148902893, -0.9017881751060486, 0.09891753643751144, -0.21465995907783508, 0.2373959869146347, 0.4263359308242798, 0.4322851896286011, 0.603081226348877, 0.4939716160297394, -0.49586525559425354, -1.167167067527771, -0.7229800820350647, 0.1391892284154892, -1.261523723602295, 0.5371131896972656, 0.7881342172622681, -1.171246886253357, 0.12912395596504211, 0.13861185312271118, -0.2002180814743042, -0.004813791252672672, -0.08625553548336029, 0.4530782699584961, -0.9806379079818726, 0.44414815306663513, -0.455066978931427, 1.3492431640625, -0.38523781299591064, 0.06885406374931335, -0.4393778145313263, 0.7372402548789978, -0.09813010692596436, -0.006483287550508976, -0.21434342861175537, 0.4589484930038452, -0.3513546884059906, 0.1068413257598877, -0.06921211630105972, 0.1793527603149414, 1.0509285926818848, -0.3327091336250305, -0.6929826140403748, -0.869512140750885, -0.17440667748451233, -0.6474826335906982, 0.47003403306007385, 0.18161872029304504, 1.2636866569519043, -0.07340215891599655, -0.4094786047935486, 1.0838209390640259, -0.14040310680866241, 0.37008965015411377, -0.5315303206443787, 0.9968949556350708, 0.45172014832496643, 1.7377256155014038, 0.9021387100219727, -0.30513861775398254, 0.8281757831573486, -0.28314146399497986, -0.09104147553443909, -0.2916043698787689, 0.4617859125137329, 0.240465447306633, -0.14339424669742584, -0.5371282696723938, 0.13809774816036224, 0.2770281732082367, -0.4798796474933624, -0.5218200087547302, 0.9742332100868225, 0.10566453635692596, -0.33467593789100647, 1.098660945892334, -0.0808434933423996, -0.15396752953529358, -0.28623390197753906, 0.03582196682691574, 0.1325995922088623, -0.519382119178772, -0.14649955928325653, -0.16460877656936646, -0.6149947643280029, 0.3100724220275879, -0.2749706208705902, -0.840979814529419, -0.46227535605430603, 0.4358566105365753, 1.3398823738098145, -1.4147896766662598, -0.6241315007209778, -0.3040822446346283, 0.6157984733581543, 0.9258010387420654, 0.2085428684949875, 0.9856663942337036, 0.22262482345104218, -0.5437940955162048, 0.34381169080734253, 0.613315224647522, 1.3880127668380737, -0.24271897971630096, -0.26816585659980774, -0.20336902141571045, -0.37813395261764526, 0.23016402125358582, -0.6448761224746704, -0.9747448563575745, 0.0745922103524208, -0.7629749774932861, -0.05607791990041733, 0.5468653440475464, -0.42479580640792847, 1.4591026306152344, -0.4108589291572571, 0.011607213877141476, 0.11941961199045181, 0.20593443512916565, -1.010233998298645, -0.19990554451942444, 0.06775856763124466, -0.04346640408039093, -0.2712154686450958, 0.37436798214912415, 0.3491038382053375, 0.6998201608657837, 0.6110222339630127, 0.45932939648628235, 0.48814070224761963, 0.39439892768859863, -0.23154713213443756, 0.5252939462661743, 0.5219303369522095, 0.8040488958358765, 0.6714391112327576, 1.5689235925674438, 0.12739169597625732, -0.9550977945327759, 1.02920401096344, -0.18527504801750183, 0.5807302594184875, 0.5595016479492188, -0.02852565050125122, 1.3262183666229248, -1.0094094276428223, 0.17043879628181458, 1.1232670545578003, -0.5255648493766785, 0.3356458246707916, 0.2915107309818268, -0.189676433801651, -1.4129632711410522, -0.3202202618122101, 0.38378024101257324, -0.4892844557762146, 1.2958136796951294, -0.005693260580301285, 0.2891349196434021, 0.8270397782325745, -0.34834668040275574, 0.1375192552804947, -1.2076377868652344, -0.03429390490055084, 0.22108829021453857, 0.03862982988357544, 0.41920047998428345, 0.8931464552879333, 0.9114581346511841, 1.0911166667938232, -0.7979124188423157, -1.6450570821762085, 0.09966258704662323, -0.8524611592292786, 0.25424033403396606, -0.39171746373176575, -0.4867793023586273, -0.7291246056556702, -1.0899276733398438, 0.02675705775618553, -0.7611295580863953, -1.0538588762283325, -0.30464741587638855, -0.12756124138832092, -1.338943600654602, 0.326220840215683, -1.0604877471923828, 0.9495723247528076, 0.46185946464538574, 0.4338623285293579, 0.6686052680015564, 0.013450216501951218, -0.8033345341682434, 0.23884259164333344, 0.06029147654771805, 0.3643161952495575, 0.21165594458580017, -0.3489760756492615, -0.6528406739234924, 0.6166228652000427, 1.148749589920044, 0.21280571818351746, 0.08631888031959534, 0.35418668389320374, 1.7563576698303223, -0.7949938774108887, -0.5939011573791504, 0.6236463189125061, -0.7717180252075195, 0.627616822719574, 0.1836841106414795, -0.9955337643623352, 0.3927219808101654, -0.033127423375844955, -2.1204397678375244, 1.3326705694198608, 0.185487300157547, 0.04937593638896942, 0.5896927714347839, 0.46856629848480225, 0.2241402268409729, 0.6768608689308167, -0.6089712381362915, -0.42715075612068176, 0.2960273325443268, -0.47854915261268616, -0.7901099324226379, 0.7189560532569885, 1.2428526878356934, 0.15394318103790283, -0.8506629467010498, 0.44966521859169006, -0.27765533328056335, -0.13860727846622467, -0.31668421626091003, -0.12699690461158752, 0.8626516461372375, 0.44464316964149475, 0.36496707797050476, -1.0833133459091187, 0.44601526856422424, -0.859551191329956, 0.43109798431396484, 0.34030917286872864, 0.7171826958656311, 0.7410513162612915, -0.27084723114967346, 0.3458555042743683, -0.08960143476724625, -0.5700292587280273, -0.5087192058563232, -1.190165400505066, 0.8803419470787048, -0.33439117670059204, -0.3453204333782196, 0.022586174309253693, -0.46139732003211975, -0.2042292356491089, -0.39730241894721985, 0.8533762693405151, 0.48416996002197266, -1.1262825727462769, -0.6987108588218689, 0.04481135308742523, -0.7613378763198853, 0.08280592411756516, 0.7270792126655579, -0.22613009810447693, -0.9892118573188782, -1.0925344228744507, -0.02368774265050888, -0.09013360738754272, 0.7447690367698669, -0.28246578574180603, 0.15338487923145294, -0.30900081992149353, -1.6540799140930176, 0.629689633846283, -0.13894446194171906, -1.449448585510254, -0.41751375794410706, -0.885201632976532, 0.7016091346740723, -0.018811339512467384, -0.054202623665332794, 0.24931202828884125, 1.2760188579559326, -0.6024713516235352, -0.705411970615387, -0.5457589626312256, -0.5097823143005371, 0.292622447013855, 1.4885588884353638, -0.9207865595817566, 0.7567400932312012, 0.15988881886005402, -0.6070716381072998, -0.19975319504737854, -0.3033539354801178, -1.070908546447754, 0.21549883484840393, 0.25634369254112244, -0.18603576719760895, 0.6113758683204651, 1.4566577672958374, 0.20461174845695496, 1.1249700784683228, 0.7127373814582825, 2.014984130859375, -0.6691578030586243, -0.8283072710037231, -0.6029520034790039, 0.790681004524231, -0.7224436402320862, -0.743356466293335, -0.39183303713798523, -0.5752395391464233, -0.19024010002613068, 0.10977593064308167, 0.8628540635108948, -0.702957808971405, 0.5862231254577637, 0.27618664503097534, -0.733273983001709, -1.197922706604004, 0.8245530128479004, 0.6291692852973938, -1.556523323059082, 0.05837653577327728, 0.21825604140758514, 0.41612058877944946, -0.9598617553710938, -0.05650228634476662, 0.8132143020629883, 0.26848098635673523, 0.4492444694042206, 0.2694215178489685, -0.1072075366973877, 0.44336235523223877, -0.45743343234062195, 0.8327332735061646, 1.115692138671875, -0.28813958168029785, 0.14331048727035522, 0.9617640972137451, 0.17164264619350433, 0.2066143900156021, 0.13401299715042114, -0.8979818224906921, -0.48891931772232056, 0.7731665968894958, -0.10709120333194733, 0.16359838843345642, -0.5800333023071289, 0.873321533203125, 0.62840735912323, 0.27348044514656067, 1.3234843015670776, -0.3702090084552765, -0.7780998945236206, 0.5798372626304626, 0.8008397221565247, -0.5657570362091064, 0.2557336986064911, 0.2153017222881317, 0.5931148529052734, 0.22527408599853516, 0.5508748292922974, 0.4485268294811249, -0.3666287362575531, 0.7281222343444824, 0.40086451172828674, -1.1079427003860474, -0.27694958448410034, -0.5019690990447998, -1.5397357940673828, -0.4437902271747589, 0.09135741740465164, -0.9344077706336975, 0.41032469272613525, -0.7724291086196899, -0.771501362323761, -0.5238510370254517, -0.9449048638343811, 0.0708952397108078, -1.049998164176941, 0.25767961144447327, -0.965663731098175, -0.11798490583896637, 1.09619140625, -0.11467470228672028, 1.2920303344726562, 0.15067540109157562, -0.10964661836624146, 0.1623939573764801, 0.16630922257900238, 0.20676735043525696, -0.04641595110297203, -0.13139714300632477, -1.117010474205017, -0.10543052852153778, -0.4280325174331665, -0.42751386761665344, 0.6148802638053894, -0.5252954959869385, 0.2944365441799164, -0.2596719264984131, -0.12172320485115051, 0.17133623361587524, 0.049441032111644745, 0.47167521715164185, -0.5198290944099426, -0.9780421853065491, -0.31241700053215027, -0.07028871774673462, 0.39872896671295166, 0.8255195021629333, -0.37257739901542664, 0.8913904428482056, 0.0704863891005516, -0.4536049962043762, -0.5250786542892456, -0.5418992042541504, 0.7239956855773926, -0.326462984085083, -0.0823444128036499, -0.6208831071853638, -0.8998677134513855, -0.0524057112634182, -1.3421300649642944, -0.06822162121534348, -0.9606426954269409, -0.8673550486564636, -0.027454480528831482, -0.5077983140945435, -1.0866841077804565, -0.5489548444747925, 0.0004555918276309967, 0.37514159083366394, 0.14662882685661316, 0.45993292331695557, -0.3610151410102844, -0.4524039030075073, 0.09365793317556381, 0.762836754322052, 0.7039995193481445, 0.6744648218154907, 1.5124931335449219, 1.6636027097702026, 0.8981133103370667, -0.41268399357795715, 0.015654172748327255, 0.33548641204833984, -0.8720369338989258, -0.4062229096889496, -1.0124763250350952, 0.046117428690195084, 0.3962322771549225], [0.18413449823856354, 2.0837111473083496, -1.7279754877090454, -0.1171262338757515, 0.4953274428844452, 0.30922743678092957, 1.1506788730621338, 0.04109163209795952, 0.006524684838950634, -1.2793583869934082, -0.7456907629966736, 0.35674723982810974, 0.3744751214981079, 0.6219109892845154, 0.20853666961193085, 1.2353953123092651, 0.8602384328842163, 0.1314619779586792, -0.011568216606974602, 0.6846189498901367, 0.14034435153007507, -1.7445895671844482, 0.3121461868286133, -0.3654906153678894, -0.14541397988796234, -0.32416942715644836, -1.3600478172302246, -0.21130944788455963, -1.4288575649261475, -0.3468471169471741, 1.209473729133606, -0.13708028197288513, 0.16035443544387817, 0.19332483410835266, -1.910096287727356, -0.08002263307571411, 0.6067988872528076, -0.1390359103679657, 0.7875328063964844, 0.6649031639099121, 1.357032299041748, -0.3154314160346985, -0.3137621283531189, -0.9274731874465942, 1.019275426864624, -0.4377083480358124, 0.8995318412780762, -0.9391233921051025, 0.061274491250514984, -1.2754216194152832, 0.8052161335945129, -0.09526826441287994, -0.12908504903316498, 1.266790747642517, 1.5315735340118408, -1.6500130891799927, 0.5707104802131653, 0.3458419740200043, -0.21084722876548767, 0.576653778553009, 0.6840120553970337, 0.9073731899261475, 1.0789028406143188, 1.1846879720687866, 0.4342220723628998, -0.19788506627082825, 0.10817424952983856, -0.19881153106689453, 0.44511720538139343, 0.6480082273483276, 0.4192187190055847, 0.23001240193843842, -0.2479216456413269, 0.3304380476474762, -0.27768686413764954, 0.9536049962043762, 0.5238373279571533, 0.1867009699344635, -0.5403819680213928, 1.0273534059524536, 0.3561916947364807, -0.04321634769439697, -0.41357260942459106, -0.23415029048919678, -0.3660060167312622, -0.18032674491405487, 0.45477408170700073, -0.42505770921707153, -0.8769945502281189, 1.60139000415802, 0.1806415617465973, 0.2372138798236847, 0.20662976801395416, -0.169538214802742, -0.06697457283735275, -0.9998188614845276, -0.24056841433048248, -0.4978923797607422, -0.020016444846987724, 0.06201544404029846, -0.5515591502189636, -0.655975878238678, -0.3804985582828522, 0.7854217290878296, 0.8255688548088074, 1.169260025024414, -0.10719900578260422, -0.9722893834114075, -0.1332821249961853, 0.3167910575866699, -0.12646150588989258, -0.37941774725914, -0.7631214261054993, -1.1016343832015991, -0.3863660395145416, 1.4259670972824097, 1.0355414152145386, -0.012689891271293163, 0.639690637588501, 0.8093799352645874, -0.3854685425758362, -1.0261768102645874, -0.5955295562744141, -0.4038293659687042, 1.400387167930603, 0.489761084318161, -0.848315954208374, -0.15015222132205963, -0.2813178598880768, 0.04925618693232536, 0.517798662185669, -0.09323276579380035, -0.3280741572380066, 0.5530639290809631, -0.6436508893966675, 1.4494905471801758, -0.6874962449073792, -1.025863528251648, 0.4364235997200012, 0.17623840272426605, 0.632725715637207, 0.10775774717330933, -0.6553841829299927, -0.6299934387207031, 0.25794148445129395, -0.11343885213136673, -0.05862511321902275, -0.12969328463077545, -0.5071772933006287, 0.5683485865592957, -1.8576958179473877, 0.6033258438110352, 0.19155742228031158, 1.2644362449645996, 0.7645273208618164, -0.931571900844574, 0.06728431582450867, 0.20781543850898743, 0.09299518913030624, -0.2512337565422058, 0.7857160568237305, -0.008542587980628014, -0.4316943883895874, 0.6286205053329468, 0.4225371479988098, -0.4701515734195709, 0.3408922851085663, 0.33663010597229004, -0.006360780447721481, 0.8550477027893066, -0.28760820627212524, -0.21657627820968628, -0.5290160179138184, 0.16677866876125336, 0.013586228713393211, -0.8125803470611572, 0.693678617477417, 0.25852206349372864, -1.1526525020599365, -1.101862907409668, 1.137142539024353, -0.4050225615501404, -0.025422554463148117, 0.03429937735199928, -0.12605471909046173, 0.09868774563074112, -0.28782153129577637, -0.12602360546588898, -0.8835120797157288, -0.8668452501296997, -0.18717272579669952, -0.6683947443962097, -0.9419469237327576, 0.7848024964332581, -0.8025608062744141, -0.8446221351623535, 0.5072183609008789, 0.05937228724360466, -0.3588467836380005, -0.1404784470796585, -0.20850929617881775, -0.5300373435020447, -1.2602779865264893, -0.02522519789636135, -0.2707577049732208, 0.4630768895149231, -0.08451381325721741, -0.1060059517621994, -0.4655739963054657, -0.042532000690698624, 0.6372015476226807, -0.372590571641922, -1.3316594362258911, 0.007095403037965298, -0.130097895860672, -1.3400648832321167, 0.09468820691108704, -0.2440546452999115, -0.5382346510887146, 0.08184270560741425, 0.61396324634552, -0.11746512353420258, 1.0034937858581543, -0.14070847630500793, 0.8326869606971741, -0.5652668476104736, -0.6953075528144836, -0.47815626859664917, -0.3182532787322998, 0.1946299523115158, -0.11784950643777847, -0.6645117402076721, 0.6869974732398987, 0.42622196674346924, -0.18245156109333038, 0.8966456651687622, -0.331574410200119, 0.42428064346313477, 0.24126258492469788, 0.8012380599975586, 0.7001830339431763, 0.15512514114379883, -0.9523499011993408, -0.5593985319137573, -0.5929757952690125, -0.6288846731185913, 0.22011002898216248, -0.10544996708631516, -0.30498504638671875, 1.2616407871246338, 1.1858892440795898, -0.45450910925865173, 0.7317366600036621, -0.6159157156944275, 0.06483792513608932, -0.8954948782920837, -0.05493911728262901, 0.07574496418237686, -0.5309841632843018, 0.9794313311576843, 0.21955791115760803, -1.0629839897155762, -0.009679947048425674, -0.5863623023033142, 0.3286862373352051, -0.7326334118843079, -0.29306715726852417, -0.9709829688072205, 0.8193783760070801, -0.5022976398468018, 0.006192801520228386, -0.5397099256515503, -0.7737376093864441, 0.7158889770507812, -0.03472251445055008, -0.3514823913574219, 0.07121795415878296, 1.462058424949646, 0.06310868263244629, 0.9042552709579468, -0.49171000719070435, -1.6919968128204346, -1.0376852750778198, 0.24298644065856934, 0.8481622338294983, -0.01950981840491295, -0.648128092288971, 0.3828018605709076, 0.8918812274932861, -0.472980797290802, 0.7920774817466736, 0.2833281457424164, 0.12451616674661636, -0.11147486418485641, 0.3077766001224518, -0.2824689745903015, 0.27581125497817993, -0.5435287952423096, -0.7812063694000244, -0.1968730241060257, 0.2758351266384125, 1.004928469657898, 1.0776230096817017, 0.76332026720047, -0.102704256772995, -0.32564449310302734, -0.6968367099761963, 0.22947773337364197, -0.867864727973938, -0.3842129707336426, -0.1377880722284317, -1.0368766784667969, 0.13530635833740234, -0.32338130474090576, -0.04790221154689789, 0.9660369157791138, -0.1168166771531105, 0.10769058018922806, 0.837171196937561, -0.07751597464084625, -0.9649884700775146, -0.36142590641975403, -0.5789679884910583, -0.9306766390800476, 0.6290889382362366, 1.1162047386169434, -0.9115285873413086, 0.2681005001068115, 0.8792864084243774, 0.18364006280899048, -0.4262498915195465, -0.40941929817199707, -0.0374448224902153, -0.9099858403205872, -0.06680111587047577, -0.6908400058746338, 1.4825773239135742, 0.06930190324783325, 0.09108806401491165, -0.1666228324174881, 0.28436505794525146, 0.46384546160697937, -0.48133230209350586, -0.5018265843391418, -0.26205500960350037, -0.7275223135948181, -0.412771999835968, -0.17586718499660492, 0.5230540633201599, 0.34240978956222534, -0.3716873824596405, -0.964122474193573, -0.28394636511802673, -0.15671345591545105, -1.0083223581314087, 0.13390608131885529, -0.005493019707500935, 1.1297712326049805, -0.449228435754776, 0.30173972249031067, 0.7828348875045776, 0.30518588423728943, 0.6403894424438477, -0.8102409839630127, 0.31844592094421387, 0.8270749449729919, 1.6515947580337524, 0.5772270560264587, -0.08088432252407074, 0.2297600656747818, -0.5263319611549377, -0.43246889114379883, -0.11700708419084549, 1.082115888595581, -0.1937841773033142, -0.19310855865478516, -0.049087975174188614, -0.3614826500415802, 0.33963990211486816, -0.2568426728248596, 0.008933963254094124, 0.5289790630340576, -0.1816297471523285, -0.5096023678779602, 0.9675421714782715, -0.008548465557396412, -0.3297409117221832, -0.6095813512802124, -0.01866002380847931, 0.31273353099823, -0.40135741233825684, 0.7106982469558716, -0.512197732925415, -0.3239845335483551, 0.507537305355072, -0.4116279184818268, -0.4716081917285919, -0.4169504940509796, 0.6782286167144775, 0.8706382513046265, -1.1036440134048462, -0.25390011072158813, -0.5986507534980774, 0.49076205492019653, 0.8188298344612122, -0.30048879981040955, 0.8008508682250977, 0.44784289598464966, -0.6986345648765564, -0.40244483947753906, 0.3306504487991333, 1.0532883405685425, 0.31234249472618103, 0.06857677549123764, -0.10557352751493454, -0.8010270595550537, 0.5008152723312378, -0.81816166639328, -0.23795980215072632, 0.11895403265953064, 0.0026986245065927505, 0.3480057418346405, 0.5488244295120239, -0.36835145950317383, 1.783774733543396, 0.20631419122219086, -0.13253240287303925, 0.23081684112548828, -0.5160272717475891, -0.8242990970611572, 0.15369047224521637, 0.7126886248588562, -0.5905448198318481, -0.8343626260757446, -0.18917274475097656, 0.43990346789360046, 1.0673009157180786, 0.6870261430740356, 0.587743878364563, 0.3980318605899811, 0.7618839740753174, 0.11810826510190964, 0.4575839638710022, 0.15572865307331085, 1.1872599124908447, 0.4912453591823578, 1.2762115001678467, -0.2645959258079529, -0.7931103110313416, 1.0155924558639526, -0.4728258550167084, 0.17932702600955963, 0.7318230867385864, 0.1642848700284958, 1.2106800079345703, -1.0640031099319458, -0.4051268994808197, 0.39720776677131653, 0.002279209438711405, 0.7901731133460999, 0.03503241017460823, -0.3896150290966034, -1.239853024482727, 0.13117052614688873, 0.43243393301963806, 0.11841847747564316, 0.3065840005874634, -0.26561757922172546, 0.5595422387123108, 0.37243473529815674, -1.0819283723831177, 0.29678377509117126, -0.9021772742271423, 0.1836216002702713, -0.40392985939979553, 0.4117308557033539, 0.9546284079551697, 0.10563160479068756, 0.8457822203636169, 1.4509859085083008, -0.3529362082481384, -1.0225228071212769, 0.10381321609020233, -1.3390883207321167, 0.6344645619392395, -0.45365482568740845, -0.3580837547779083, -0.47764208912849426, -0.7182601690292358, 0.2111855149269104, 0.16885261237621307, -0.9644832015037537, -0.20744812488555908, -0.17496901750564575, -0.9312297701835632, 0.5770099759101868, 0.09698209911584854, 1.011259913444519, 0.31770530343055725, 0.14284542202949524, 0.24462683498859406, 0.4635041654109955, -1.1193788051605225, 0.32646650075912476, 0.034283347427845, 0.47367382049560547, -0.2215823084115982, -0.6810360550880432, -0.7584416270256042, 0.36537158489227295, 0.8741426467895508, -0.29021185636520386, -0.08619687706232071, 0.7768738269805908, 1.3221274614334106, -0.4842596650123596, -0.2594165802001953, 0.3615171015262604, -1.1280286312103271, 0.8819877505302429, 0.5255786776542664, -1.0143351554870605, 0.46327123045921326, -0.7663809061050415, -1.5902996063232422, 1.5801615715026855, 0.20652247965335846, -0.10312927514314651, 0.8039422631263733, 0.7120165824890137, 0.3029378354549408, 0.9684257507324219, -0.514150857925415, -0.3775028884410858, -0.10976249724626541, 0.24158473312854767, -0.8164911866188049, 0.5950050354003906, 0.7599491477012634, -0.16887328028678894, -0.7494069337844849, 0.05728629231452942, 0.12311244755983353, -0.2877057194709778, -0.5654552578926086, 0.16981391608715057, 0.33605140447616577, 0.9860542416572571, 0.6246710419654846, -0.8074834942817688, 0.8141096830368042, -0.6077095866203308, 0.13660597801208496, 0.6412394046783447, 0.8843047022819519, 0.4438413977622986, -0.17249460518360138, 0.18304239213466644, -0.2927381992340088, -0.6619570851325989, 0.1541827917098999, -0.5731401443481445, 0.5588854551315308, 0.3337499499320984, 0.31600648164749146, 0.7462021708488464, -0.2370055913925171, 0.4137190580368042, -1.066085934638977, 0.3866969048976898, 0.8041581511497498, -0.5658154487609863, -0.5809851288795471, 0.5057829022407532, -0.2938539385795593, 0.030743911862373352, 0.4222317636013031, 0.12090890854597092, -0.8875133991241455, -0.7912155389785767, -0.07346071302890778, -0.7477782964706421, 1.1707788705825806, 0.15333183109760284, 0.31553441286087036, 0.16865114867687225, -1.204569697380066, 0.002829190343618393, 0.17628179490566254, -1.3960824012756348, -0.1795666515827179, -0.4656197428703308, 0.7054967880249023, 0.13291510939598083, 0.1299467831850052, -0.3066157102584839, 0.9761195778846741, -1.3035811185836792, -1.1637600660324097, -0.6822076439857483, -0.7237228155136108, -0.22506245970726013, 0.636198103427887, -0.8605067133903503, 0.7396516799926758, 0.43358370661735535, -0.22547058761119843, -0.16079920530319214, -0.29158949851989746, -1.0331963300704956, -0.590613067150116, 0.5848291516304016, 0.2502855360507965, 0.07922215014696121, 1.3532466888427734, 0.8031255602836609, 1.3476215600967407, 0.24210968613624573, 1.6388550996780396, -1.181013822555542, -0.5384974479675293, -0.5148515701293945, 0.6991098523139954, -0.7837138772010803, -1.206663727760315, -0.2312411516904831, -0.502143919467926, -0.48938634991645813, 0.4430130422115326, 1.2306698560714722, -0.7986428737640381, 0.6761325001716614, -0.12312053143978119, 0.17742373049259186, -0.9779825806617737, -0.030750229954719543, 0.1659509539604187, -0.6692100167274475, 1.0410960912704468, -0.027703722938895226, 0.2213350385427475, -0.8229067325592041, -0.4332754611968994, 0.8090190291404724, 0.541248619556427, -0.20968462526798248, 0.2696194350719452, -0.17670540511608124, 0.4951423406600952, -0.6163159012794495, 0.8804547190666199, 0.8002037405967712, 0.0036833900958299637, -0.1413266807794571, -0.033644065260887146, 0.12405356764793396, -0.15584413707256317, -0.3318976163864136, -0.6612457036972046, -0.37960219383239746, 0.18700864911079407, 0.32368919253349304, 0.47630056738853455, -0.16133305430412292, 0.2962842583656311, 0.31581562757492065, -0.047634322196245193, 1.5275609493255615, -0.8070898652076721, -0.4529404938220978, 0.5293792486190796, 0.6393297910690308, -1.0703204870224, 0.24553550779819489, 0.1977846324443817, -0.09798943996429443, 0.0628216490149498, 0.48490095138549805, 0.7091331481933594, -0.40003398060798645, 0.6107430458068848, 0.7651112675666809, -0.7003350853919983, -0.2505730390548706, -0.5210883617401123, -1.1476138830184937, -0.7357118725776672, 0.24831125140190125, -0.6125386357307434, -0.13314737379550934, -0.7190897464752197, -0.6117159128189087, 0.49098703265190125, -1.1600561141967773, -0.33803385496139526, -0.41993415355682373, 1.0048599243164062, -0.45944055914878845, 0.08435092121362686, 1.2054495811462402, -0.365860253572464, 1.0414783954620361, 0.1735837608575821, -0.24169491231441498, -1.1231015920639038, 0.1086471676826477, 0.3341907858848572, 0.0306796133518219, -0.24694758653640747, -1.4780402183532715, 0.02572154998779297, -0.32419365644454956, -0.1191190630197525, 0.07200095802545547, -0.26638832688331604, 0.2590242922306061, -0.011085357517004013, 0.23582491278648376, 0.25112128257751465, 0.5252425074577332, 0.553394615650177, -0.27696067094802856, -0.7066131830215454, -1.083036184310913, 0.19953113794326782, 0.06293555349111557, 0.7852232456207275, -0.8702709674835205, 0.4322575628757477, 0.12317696958780289, -0.17979128658771515, -0.13966281712055206, -0.4780198335647583, 0.548247218132019, -0.09942518174648285, -0.3125847280025482, -0.5571905970573425, 0.007047010585665703, -0.12960106134414673, -1.1995091438293457, -0.06169801577925682, 0.18725599348545074, -1.0008161067962646, -0.34097009897232056, -0.5508144497871399, -0.2844441533088684, -0.6748561859130859, -0.25039708614349365, -0.09337827563285828, 0.28086423873901367, 0.8619155883789062, -0.17231053113937378, -0.6541967988014221, 0.43608230352401733, 0.9305602312088013, -0.12852349877357483, 0.49542906880378723, 1.2381895780563354, 0.763287365436554, 0.34933042526245117, -0.4294831156730652, 0.21176278591156006, 0.06819228082895279, -0.779544472694397, -0.23920834064483643, -0.6496886610984802, -0.23473861813545227, 0.2173353135585785], [0.3021467626094818, 1.9633523225784302, -2.0445563793182373, -1.2021766901016235, 0.6938896179199219, -0.4538392424583435, 0.40055009722709656, 0.8014158606529236, 0.4037812650203705, -1.7208824157714844, -1.3325750827789307, 0.7549015283584595, 0.7355369329452515, 0.9548215866088867, 0.6821091771125793, 0.3579995930194855, 0.22174210846424103, -0.4165399968624115, 0.025661297142505646, 0.8047227263450623, -0.5155569911003113, -0.8585100173950195, -0.3403884470462799, -0.08883291482925415, 0.264145165681839, 0.14154213666915894, -1.0251749753952026, -0.24564512073993683, -1.0589382648468018, -1.4703625440597534, 0.7790341973304749, -0.6036717295646667, -0.9040741324424744, -0.22433066368103027, -1.8574076890945435, -0.566709578037262, 0.38273951411247253, -0.6251186728477478, -0.6959023475646973, 0.9605209231376648, 1.985709547996521, 0.3995995819568634, -0.37579306960105896, -0.950604259967804, 0.4085536599159241, -0.7209981083869934, -0.03595421090722084, -0.7029237151145935, -0.43528977036476135, -1.385627269744873, 0.3919846713542938, -0.21248547732830048, -0.05203146114945412, 0.8050632476806641, 1.030395269393921, -0.5213307738304138, -0.0016479343175888062, 0.4177958071231842, -0.1599545180797577, 0.1977228820323944, 1.0701215267181396, 0.41664600372314453, -0.4330447316169739, -0.041415985673666, 0.05154147371649742, 0.5986395478248596, -0.28544607758522034, 1.1602729558944702, -0.2756196856498718, -0.15347565710544586, 0.32824981212615967, 0.4766392409801483, -0.1978253871202469, 0.002019330859184265, -0.623022735118866, -0.13551712036132812, 0.9498725533485413, 0.09900517761707306, 0.036509640514850616, 0.9451425075531006, -0.5992634296417236, 0.18711674213409424, -0.2939343750476837, -0.41227996349334717, 0.2896680533885956, -0.041787005960941315, -0.16869865357875824, 0.1547083854675293, -1.0991997718811035, 1.3093560934066772, 0.2353632152080536, -0.3248857259750366, 0.27803125977516174, 0.11013645678758621, -0.8031163215637207, -0.6727795600891113, 0.16578157246112823, -0.5191826224327087, -0.46412500739097595, -0.5444682836532593, -0.7006950378417969, -0.7113038301467896, 0.5148673057556152, 1.2839298248291016, 0.4067000448703766, 1.5516095161437988, 0.42515286803245544, -1.403586745262146, -0.3111531734466553, 0.08666755259037018, 0.4989706873893738, -0.05439485237002373, -0.7736865878105164, -1.389512538909912, -0.30378422141075134, 0.30250126123428345, 1.1255344152450562, -0.17736855149269104, 1.3097357749938965, 0.25365951657295227, -0.4544754922389984, -0.7865726947784424, -0.5649729371070862, 0.7713829278945923, 1.1890482902526855, -0.4864892065525055, -0.08442169427871704, -0.12200063467025757, 0.1074790358543396, -0.4751221239566803, -0.10323842614889145, -0.23824140429496765, -0.5749135613441467, 1.1546460390090942, 0.20906348526477814, 0.9680939316749573, -0.08523485064506531, -0.986680805683136, 0.6217477321624756, -0.2107694298028946, -0.007553018629550934, -0.41506630182266235, -0.7920271754264832, -1.258583903312683, 0.6811990737915039, -0.5815258622169495, 0.33560335636138916, -0.42809993028640747, -0.6792864203453064, 0.21049948036670685, -0.7160890102386475, -0.18041808903217316, -0.2180270105600357, 1.259440302848816, 0.37715014815330505, -0.09957517683506012, 0.07168729603290558, 0.13831943273544312, -0.15481197834014893, 0.47106996178627014, 0.8981151580810547, 0.061754755675792694, -0.8449999094009399, 1.2574723958969116, -0.12074176222085953, -0.5914871692657471, 1.5717895030975342, 0.365390419960022, -0.45003166794776917, 0.7867041230201721, -0.4932868480682373, -0.07622236758470535, -0.7518317103385925, 0.42739948630332947, -0.09958642721176147, -0.4536641240119934, 1.0048234462738037, -1.4614570140838623, -0.4031960070133209, -0.5024647116661072, 0.2634281814098358, -0.08652984350919724, 0.02565140649676323, -0.5892614722251892, 0.7983258962631226, -0.31354618072509766, -0.18528048694133759, -0.8104928135871887, 0.1956632286310196, -0.7748667001724243, -1.6432640552520752, -0.16016064584255219, -1.3468953371047974, -0.33493515849113464, -0.1169801726937294, -1.1371692419052124, 0.24296143651008606, -0.2071845531463623, -0.1930704563856125, 0.14323216676712036, -0.14069326221942902, -0.40706154704093933, -1.340483546257019, -0.20696856081485748, -0.5443323254585266, 0.6429411172866821, 0.29421696066856384, 0.3167586624622345, -0.6107531785964966, 0.6336976885795593, 0.838785707950592, -0.5341777801513672, -0.6128544211387634, 1.0765602588653564, 0.7169049382209778, -0.6642122864723206, -0.38182979822158813, -0.19889719784259796, 0.5396051406860352, 0.02791205421090126, 0.6608600616455078, 0.36783039569854736, 0.5856103897094727, -0.04273296147584915, 0.3543912470340729, -0.12589102983474731, -0.9593169093132019, -1.013641357421875, -1.1543591022491455, 0.1895802915096283, -0.8612026572227478, -0.3420242965221405, 0.36694350838661194, 1.7496438026428223, -0.9025280475616455, 1.1607741117477417, -0.8109130263328552, 0.3994928002357483, 0.3876272141933441, 0.42408308386802673, 0.36594662070274353, 0.07174025475978851, -1.0256890058517456, 0.2736870348453522, -0.25739070773124695, -0.1457967758178711, 0.31952396035194397, -0.11522478610277176, -0.8681061863899231, 1.5083366632461548, 0.03232313320040703, -0.16624440252780914, 0.9864112138748169, -0.006653249263763428, 0.10179077833890915, -0.8980119228363037, -0.047000620514154434, -0.07661829888820648, -0.8621330857276917, 1.1217772960662842, 0.1974346786737442, -1.6466468572616577, -0.6885851621627808, -0.6356439590454102, -0.1976403295993805, -0.6095409989356995, -0.41533926129341125, -0.9936075806617737, 0.8600446581840515, -0.35009896755218506, 0.03078440949320793, -0.13212737441062927, -0.14302575588226318, 1.252122163772583, -0.467746376991272, 0.6020657420158386, 0.4909954369068146, 0.1239396408200264, 0.23500682413578033, 0.5208738446235657, 0.03655011206865311, -1.3095754384994507, -0.7590253949165344, -0.6201627254486084, 1.1323350667953491, -0.3494716286659241, -0.6067860722541809, 0.21794018149375916, 0.17531448602676392, -0.642680287361145, 0.4601925015449524, -0.12405285239219666, -0.19705115258693695, 0.4113638699054718, 0.2668926417827606, -0.03761701658368111, 0.38862088322639465, -0.48797607421875, -0.4960130751132965, -0.49562227725982666, 0.8402934670448303, 1.1621266603469849, 1.2136082649230957, 1.1141570806503296, 0.0876360535621643, -0.024930451065301895, 0.3382285237312317, 0.3121473491191864, 0.3737705647945404, 0.3141472339630127, -0.7281785607337952, -0.5519570112228394, 0.5471078157424927, 0.10786152631044388, 0.018604347482323647, 0.7445652484893799, 0.38545170426368713, 1.138221263885498, 0.3427063524723053, -0.4442438781261444, -0.99797123670578, -0.6010043621063232, -0.35624703764915466, -0.7306578159332275, 0.8525196313858032, 0.6866629719734192, -1.0970993041992188, 0.7243202924728394, 0.3119652271270752, -0.6189390420913696, 0.46514892578125, 0.0038838014006614685, 0.3639960289001465, -0.8903181552886963, -0.3539848029613495, 0.17555159330368042, 1.3647737503051758, 0.5886486172676086, -0.19478467106819153, -0.3248124420642853, 0.05347415432333946, 0.13911469280719757, 0.25028756260871887, -0.7725940346717834, 0.9744828939437866, 0.1075240895152092, -0.864155113697052, -0.926347553730011, 0.30406510829925537, 1.3289433717727661, -0.28280696272850037, -0.2405678778886795, -0.9386463165283203, -0.5373900532722473, -0.49521955847740173, 0.7063031792640686, 0.20561029016971588, 0.6719690561294556, -0.027017414569854736, -0.34218695759773254, 0.6847572326660156, -0.11614476144313812, 0.24738022685050964, -1.2968391180038452, 1.161913275718689, 0.6052781939506531, 1.563670039176941, -0.09890197217464447, -0.20782595872879028, 0.8073569536209106, -0.7060522437095642, -0.6932846903800964, -0.12880371510982513, 0.7117709517478943, 0.14261852204799652, -0.412195086479187, -0.8478816747665405, 0.3512268364429474, 0.21341779828071594, -0.42146310210227966, -0.16770482063293457, 0.5985338687896729, 0.1429450809955597, -0.765923023223877, 0.8120806217193604, 0.051792047917842865, 0.05485682189464569, -0.5081528425216675, 0.4691658616065979, 0.02309490740299225, -0.13715292513370514, -0.05832463130354881, -0.3072560429573059, 0.049046196043491364, -0.14074184000492096, -0.6975755095481873, -1.436205506324768, 0.07289431989192963, 0.6736249327659607, 1.1484936475753784, -0.9099794626235962, -0.28964048624038696, -0.260923832654953, -0.31247881054878235, 0.5364806056022644, 0.31842052936553955, 0.6192061305046082, 0.33211955428123474, 0.00469622015953064, -0.010521546006202698, 0.9872686862945557, 1.252063274383545, -0.322793573141098, 0.11495433747768402, -0.4085051715373993, 0.45979148149490356, 0.5464978814125061, -0.37957000732421875, -1.1219371557235718, -0.26345139741897583, -0.6990475058555603, -0.028460804373025894, 0.5408085584640503, -0.30925294756889343, 1.459898829460144, 0.05566142499446869, 0.754891574382782, 0.4679872393608093, -0.590645432472229, -0.7661738991737366, 0.7020725607872009, 0.45119228959083557, 0.228166401386261, -0.6140110492706299, 0.5001233220100403, 0.6842161417007446, 0.679456353187561, 1.1067017316818237, 0.13392221927642822, 0.5687685608863831, 0.48463186621665955, -0.4626600444316864, 0.21537677943706512, 1.0398004055023193, 0.854549765586853, 0.46298089623451233, 1.494888424873352, -0.5497506856918335, -0.5137072205543518, 1.5183587074279785, -0.23565280437469482, 0.2232854962348938, 0.960543155670166, 0.2389879822731018, 1.9500612020492554, -0.7550556063652039, -0.4335794448852539, 0.3857590854167938, 0.08464805036783218, -0.14701971411705017, -0.0031634774059057236, 0.16671425104141235, -0.7880286574363708, -0.2172701358795166, 1.0220580101013184, -0.18197035789489746, 0.5667547583580017, -0.5000765919685364, -0.19735194742679596, 0.1185089498758316, -0.13617044687271118, -0.2721632122993469, -0.8035120964050293, -0.3598463833332062, -0.008060014806687832, 0.3242637515068054, 0.6830213665962219, 0.8705248832702637, -0.1123398169875145, 0.8142948150634766, -0.5663934946060181, -0.8416070938110352, 0.11598177254199982, -1.3225979804992676, 0.5522769093513489, 0.24603773653507233, -1.0459471940994263, -0.6605469584465027, -0.4957844316959381, -0.2952556908130646, -0.790306568145752, -0.8139863610267639, -0.28629106283187866, 0.50877445936203, -0.7363698482513428, -0.4674546718597412, -0.30514928698539734, 0.87313312292099, 0.6537601351737976, 0.7937813997268677, 0.9000096321105957, 0.33248454332351685, 0.17324239015579224, 0.408157080411911, -0.22939182817935944, -0.25824403762817383, 0.3970487117767334, -0.6839869618415833, -0.5019957423210144, 0.24068863689899445, 1.001317024230957, 0.6256093978881836, -0.4809626638889313, 0.21194462478160858, 1.8748782873153687, -1.0908758640289307, -0.6210605502128601, 0.28873616456985474, -0.4180781841278076, 1.4092864990234375, 0.21099060773849487, -1.2791754007339478, -0.340270459651947, 0.4667026996612549, -1.7278804779052734, 0.7162351608276367, -0.3054707944393158, -0.10348405689001083, -0.2896609306335449, 0.3731096088886261, -0.12787975370883942, 0.6814098954200745, -0.6589701175689697, 0.0760737732052803, 0.7743648886680603, -0.37615299224853516, -0.8523396849632263, 0.803581953048706, 0.4513864815235138, 0.6432103514671326, -0.4688352346420288, 0.29385992884635925, -0.02411198616027832, -0.2984822690486908, -0.07967568188905716, 0.07033491134643555, 1.2410556077957153, 0.5413944721221924, 0.3389335870742798, -1.5117597579956055, 0.7557839155197144, -0.6443656086921692, 0.9960463643074036, -0.2586807310581207, 0.803656280040741, 0.1360420286655426, -0.8552932143211365, 0.3286829888820648, -0.5656448006629944, -0.21893425285816193, -0.3475525379180908, -0.7643319964408875, 1.1171905994415283, 0.08798788487911224, -0.149930939078331, 0.4012903571128845, -0.19932685792446136, -0.711647629737854, -0.46314334869384766, -0.2844526469707489, 0.9921969771385193, -1.3454080820083618, -0.5502488613128662, 0.0853220596909523, 0.09938348829746246, 0.6619393229484558, 0.30075857043266296, -0.3252556324005127, -0.9868949055671692, -1.517427921295166, -0.26270949840545654, -0.00851023755967617, 0.7570450305938721, -0.8801532983779907, 0.27103447914123535, 0.012933820486068726, -1.8766741752624512, 0.6411933302879333, 0.21716845035552979, -1.324894666671753, -0.7397017478942871, -1.2588709592819214, 1.0279674530029297, 0.5546576976776123, -0.474656879901886, -0.22451196610927582, 0.62665855884552, -0.43259161710739136, -0.36702215671539307, -0.5621655583381653, 0.5671312212944031, -0.055481381714344025, 1.0302246809005737, -0.3092918395996094, 0.37562328577041626, -0.2554422914981842, 0.25517094135284424, -0.3014613091945648, -0.19680725038051605, -0.8275275826454163, 0.1984737068414688, 0.058142878115177155, 0.541856586933136, -0.0448172502219677, 0.5354477167129517, 0.1705915480852127, 0.9605711102485657, -0.6693062782287598, 0.876960039138794, -0.41628187894821167, -0.47548261284828186, -0.47116923332214355, 0.24165979027748108, -0.9859907627105713, -0.34668436646461487, -0.1838006228208542, -0.6086767911911011, -0.8838703632354736, 0.1374037116765976, 0.710191011428833, -0.20413155853748322, 0.9274804592132568, -0.12090550363063812, 0.8225083947181702, -1.0907889604568481, 1.0296409130096436, 0.2008533924818039, -0.6772603988647461, 0.3079530596733093, -0.6251924633979797, 0.6816210746765137, -0.6071194410324097, -0.01344403624534607, 0.4820479154586792, 0.6294971108436584, -0.2704410254955292, -0.1790352612733841, 0.38313567638397217, -0.5068374276161194, -0.4644275903701782, 0.9021823406219482, 0.8199342489242554, 0.15251824259757996, 0.6754974722862244, 0.6830071210861206, -0.39103326201438904, 0.19473384320735931, 0.3211078643798828, -0.5790334343910217, -0.4811348021030426, 0.29087120294570923, -0.33556807041168213, 0.20489002764225006, -1.1374763250350952, 0.6680639386177063, -0.5713669657707214, -0.21627676486968994, 0.8696914911270142, -0.12789031863212585, -0.3987714946269989, 0.762925922870636, 0.32091936469078064, -0.5118765234947205, -0.0546591579914093, 0.1400851011276245, 0.17714151740074158, 0.8461925983428955, 0.7586863040924072, 0.4936073124408722, 0.13466350734233856, 0.8447269201278687, 0.806587278842926, -0.5813798308372498, -0.14230650663375854, -0.3805239796638489, -1.5717217922210693, -0.8073466420173645, 0.2938340902328491, -0.5340608954429626, 0.4064168334007263, -0.9384209513664246, -0.6661722660064697, -0.07325417548418045, 0.038971662521362305, 0.576384961605072, -0.8541799783706665, -0.054257649928331375, -0.7006524801254272, 0.22472286224365234, 1.4490078687667847, -0.17765763401985168, 1.4277997016906738, 0.4016101062297821, 0.524031400680542, 0.49757203459739685, 0.27101555466651917, -0.018054507672786713, 0.44933366775512695, -0.1357274353504181, -0.8766071796417236, -0.00131618557497859, -0.7131497859954834, -0.7447111010551453, 0.9903066754341125, 0.22728438675403595, 0.6141461730003357, 0.43318477272987366, -0.6072394847869873, 0.2114790380001068, 0.5145310163497925, 0.7406179904937744, -0.5251675844192505, -0.840441107749939, -0.5633931159973145, 0.10923390090465546, 0.07033520191907883, 1.6186405420303345, -0.43077442049980164, 1.0545183420181274, 0.7215025424957275, 0.033250439912080765, -0.13364523649215698, -0.22726036608219147, 0.4726927876472473, -0.43065083026885986, 0.6295779347419739, -0.23707948625087738, -0.33435529470443726, 0.1688258945941925, -0.7282084226608276, -0.17752358317375183, -0.33134958148002625, -0.5087388157844543, 0.125247523188591, -0.24606947600841522, -1.1792443990707397, -0.9215845465660095, 0.41448158025741577, 0.04193801060318947, -0.37340840697288513, 0.7395591735839844, -0.2717461884021759, -0.4210785925388336, 0.773137092590332, 0.5626358389854431, 0.3173619508743286, 0.29773521423339844, 2.0719432830810547, 1.1177341938018799, 0.21735446155071259, -0.5254402756690979, -0.410256952047348, 0.7032796740531921, -0.9297409653663635, -0.29997116327285767, -1.0465753078460693, -0.1726263165473938, 0.5079619288444519], [-0.4531186819076538, 1.5076793432235718, -2.0014259815216064, -0.34682902693748474, 0.9863001108169556, -0.010308319702744484, 0.5102552175521851, 0.8320944905281067, 0.027293935418128967, -0.4272044599056244, -0.02878681570291519, -0.1642524152994156, 1.0203996896743774, 1.019324541091919, 0.6090759634971619, 0.28353339433670044, 0.47564321756362915, -0.41026389598846436, 0.1703599989414215, 0.9497610926628113, -0.38385453820228577, -1.2358297109603882, -0.8769550919532776, 0.10379988700151443, 0.08909910917282104, 0.002781609073281288, -2.042778968811035, -0.8096025586128235, -1.0781294107437134, -0.3445439338684082, 0.7869799137115479, -1.0494599342346191, -0.2624417841434479, 0.7717120051383972, -0.7577567100524902, -0.9985995888710022, 0.5968770384788513, 0.09653239697217941, -0.1543516218662262, 0.7040644288063049, 2.3801538944244385, -0.14436624944210052, -1.022498369216919, -0.8282119035720825, 1.0537734031677246, -0.824781596660614, 0.538753092288971, -1.1017941236495972, -0.06608577072620392, -1.0603107213974, 0.07510978728532791, -0.7555227279663086, 0.6708557605743408, 0.6611496210098267, 1.4975945949554443, -0.44161492586135864, -0.28948092460632324, -0.6040191650390625, 0.45743516087532043, 0.08070062100887299, 1.0736839771270752, 0.8411290645599365, -0.12327471375465393, 1.3626317977905273, 0.6968016624450684, 0.020450789481401443, -0.2763887643814087, 0.8734769225120544, 0.5399062037467957, -0.08996587246656418, 0.2182696908712387, -0.19643087685108185, -0.464321494102478, 0.04680255055427551, -0.08730889856815338, -0.5631395578384399, 0.3010807931423187, 0.558152973651886, -0.35846811532974243, 0.40433210134506226, 0.16698560118675232, -0.14652486145496368, 0.6444326639175415, -0.5630941390991211, 0.5828020572662354, -0.46967360377311707, 0.13214458525180817, -0.0313568040728569, -0.18950316309928894, 1.862382411956787, 1.0276737213134766, -0.13932715356349945, 0.4877011179924011, -0.6297093629837036, 0.29530981183052063, -1.427194595336914, -0.024791302159428596, -0.9710189700126648, -0.8703531622886658, -0.3308688998222351, -0.7839783430099487, -0.8075030446052551, 0.1534281224012375, 0.23295247554779053, 0.8227220177650452, 1.388901948928833, -0.11800410598516464, -0.726803183555603, -0.06719832867383957, -0.028819715604186058, 0.3816412091255188, -0.4321039319038391, -0.9001737236976624, -0.7322478890419006, -0.19535686075687408, 0.31649094820022583, 1.4833444356918335, 0.09423024952411652, 0.4073747396469116, 0.3151528239250183, -0.689652681350708, 0.15929320454597473, -0.5218091011047363, 0.11172996461391449, 0.3884963095188141, 0.27879494428634644, -0.42532071471214294, -0.01399518083781004, 0.08825145661830902, -0.3438238203525543, -0.1331709325313568, 0.5639663934707642, 0.16830749809741974, 0.628301739692688, -0.5021082758903503, 1.8035436868667603, -0.7493704557418823, -1.535340428352356, -0.0911112129688263, -0.0992380753159523, 0.8496214151382446, -0.37037527561187744, -0.76444411277771, -1.0562376976013184, 0.03132679685950279, -0.2843945324420929, 0.2207130640745163, -0.4391532838344574, -0.2535911798477173, 0.22325080633163452, -0.6374478936195374, 0.34929656982421875, 0.18439753353595734, 1.1646456718444824, 0.21504506468772888, -0.2681494653224945, 0.6209986209869385, 0.1555783450603485, -0.07586145401000977, -0.177217036485672, 0.7006084322929382, 0.1270374059677124, -1.5014816522598267, 1.3319110870361328, -0.08222678303718567, -0.8577433824539185, 0.9419105648994446, 0.4907601773738861, -0.16475586593151093, 0.8335102796554565, -1.2543692588806152, -0.0024496447294950485, -1.246327519416809, 0.8832317590713501, 0.1944427192211151, -0.8522660732269287, 1.036413550376892, -0.541059136390686, -0.7669850587844849, -0.9514845013618469, 0.45279380679130554, -0.7636842727661133, -0.015685267746448517, -0.4306599795818329, 0.7796936631202698, -0.7552146315574646, 0.009973691776394844, -0.4810074269771576, -0.29787707328796387, -1.3610244989395142, -1.1159907579421997, -0.2784220576286316, -0.7843656539916992, 0.5543190240859985, -0.5079142451286316, -0.27199921011924744, 1.0936775207519531, -0.7405088543891907, -0.10947593301534653, -0.14552350342273712, -0.07266931235790253, 0.513269305229187, -1.5221551656723022, 0.3790910840034485, -0.5697340369224548, 0.8582461476325989, 0.1975824534893036, 0.5231186151504517, -0.21215181052684784, 0.48115429282188416, 1.1163119077682495, -0.6345593929290771, -1.0799200534820557, 0.44543904066085815, -0.04223410040140152, -0.4672118127346039, -0.132894366979599, -0.7021984457969666, -0.12832045555114746, -0.2757299244403839, 0.4029650390148163, -0.09563156962394714, 0.33231544494628906, 1.0210504531860352, 0.025682121515274048, -0.17379362881183624, -0.5972541570663452, -0.16888727247714996, -0.7518166899681091, 0.33778131008148193, -0.6701003909111023, -0.4611688256263733, 0.39151179790496826, 0.5866407752037048, -1.226165771484375, 0.822536051273346, -0.6842748522758484, 0.7711120843887329, 0.3043884038925171, 0.02564316801726818, 0.16656404733657837, 0.3230617344379425, -0.17706996202468872, -0.2751747965812683, -0.34528785943984985, -0.2991694211959839, 0.5656682252883911, -0.2071233093738556, -0.6645241379737854, 1.2607049942016602, 1.4860492944717407, -0.029025303199887276, 0.9040226340293884, 0.6016198992729187, 0.22318880259990692, -0.967124879360199, 0.1919899731874466, -0.11028896272182465, -0.9081975817680359, 0.6619688272476196, 1.102751612663269, -0.7479449510574341, -0.2629946768283844, -0.38848382234573364, -0.9741119742393494, -0.3384203314781189, -0.5803781151771545, -0.9841532111167908, 0.4705025851726532, -0.1871451735496521, 0.2080681025981903, 0.27684205770492554, -0.6162238717079163, 0.48997732996940613, 0.0681150034070015, 0.15208099782466888, 0.013869248330593109, -0.0004086345434188843, 0.43137311935424805, 0.42694082856178284, -0.07466599345207214, -0.7362064719200134, -0.7630090117454529, -0.12310686707496643, 0.5511451363563538, -0.28520724177360535, -0.3944278955459595, 0.8420448899269104, 0.7617148160934448, -0.9689144492149353, 0.5991289019584656, 0.09661804139614105, 0.36791741847991943, -0.05648479610681534, -0.082585908472538, 0.9923872947692871, 0.7383599877357483, -0.8586823344230652, -1.324088454246521, -0.7255648374557495, 1.0252928733825684, 0.893521249294281, 1.3496615886688232, 1.0649431943893433, 0.09472376853227615, -0.11116298288106918, 0.1766321212053299, 0.3636268079280853, 0.3728269934654236, -0.5364357829093933, -0.809966504573822, -0.35598403215408325, -0.20503011345863342, -0.11822284013032913, -0.5408756732940674, 1.3100107908248901, -0.15425366163253784, 0.9238332509994507, 0.714968204498291, -0.46274620294570923, -0.6063109040260315, -0.6135170459747314, 0.10155171155929565, -1.1505581140518188, 0.6997628211975098, 1.0187053680419922, -0.8190339207649231, -0.3914034962654114, -0.1808997094631195, -0.34961065649986267, -0.01694481261074543, 0.4421042799949646, 0.3328162133693695, -1.4090312719345093, 0.07756055146455765, 0.2709888815879822, 0.9763110876083374, 0.3959245979785919, 0.024373050779104233, -0.35975366830825806, 0.51376873254776, 1.0521565675735474, -0.5001495480537415, -0.5936747789382935, 0.5163729190826416, -0.2035893052816391, -0.5283340215682983, -0.2198449820280075, -0.5265577435493469, 1.1452455520629883, -0.4446435570716858, 0.036785174161195755, 0.05789962410926819, -0.5905373096466064, -0.4414723217487335, 0.046482544392347336, -0.5256351828575134, 0.7410104870796204, 0.14941132068634033, 0.013950847089290619, 0.6073521375656128, 0.16794776916503906, 0.1754942089319229, -1.7654989957809448, 0.6635148525238037, 0.34938132762908936, 1.0380605459213257, -0.17397047579288483, 0.1342983990907669, 0.3515693247318268, -0.24018631875514984, -0.0704372376203537, 0.46331849694252014, 0.7786808013916016, 0.2859925925731659, -1.033251404762268, -0.45491716265678406, 0.495392769575119, -0.5828460454940796, -0.36824703216552734, -0.09689000248908997, 0.08457868546247482, -0.5044115781784058, -0.7379809617996216, 0.8181865811347961, 0.2858385443687439, -0.0779023990035057, -0.7182037234306335, 0.13632908463478088, 0.07444211095571518, -0.7363235354423523, 0.4705969989299774, -0.6513085961341858, -0.2549532353878021, -0.7473581433296204, -0.5357861518859863, -0.7994727492332458, -0.39671483635902405, 0.4467800259590149, 1.172754168510437, -0.6213378310203552, -0.07604433596134186, -1.0335752964019775, 0.6477721929550171, 0.9439377188682556, 0.39155313372612, 0.24556636810302734, 0.4368779957294464, -0.25560298562049866, -0.6941700577735901, 0.29150184988975525, 0.9312003254890442, -0.6286765336990356, -0.0008693849667906761, -0.30376318097114563, 0.850368320941925, 0.13411903381347656, -0.005707234144210815, -0.6530978083610535, -0.24154400825500488, -0.5581358075141907, 0.9606778621673584, 0.6841382384300232, 0.17355385422706604, 1.6805610656738281, 0.03030211478471756, -0.13915163278579712, 0.15373584628105164, 0.12216013669967651, -0.5699642300605774, 0.22621852159500122, 0.3518511652946472, -0.3669619560241699, -0.4814682602882385, 0.1421675682067871, 0.39759910106658936, 0.3999831974506378, 0.44606253504753113, 0.35944297909736633, 0.8235161304473877, 1.589185357093811, -1.0176787376403809, -0.48942437767982483, 0.2714146077632904, 1.2601892948150635, 1.5793157815933228, 0.47292962670326233, 0.1533736139535904, -1.1225411891937256, 0.5437958836555481, -0.061037130653858185, -0.5493693351745605, 0.48577284812927246, 0.07786306738853455, 1.2889262437820435, -1.2969990968704224, -0.17756381630897522, 0.622719943523407, 0.14673252403736115, 0.686432957649231, -0.06005983427166939, 0.013908224180340767, -0.3779866397380829, 0.2666800916194916, 0.6368894577026367, -0.054705411195755005, 0.7037372589111328, -0.7025151252746582, -0.27928438782691956, -0.49090418219566345, -0.7972213625907898, 0.1471175104379654, -0.36000239849090576, -0.140333890914917, -0.6972874402999878, 0.5245851874351501, 0.6148319244384766, -0.4696381986141205, 0.4107564389705658, 1.2867234945297241, -0.9195917248725891, -0.9349715709686279, 0.11729361116886139, -0.33216363191604614, 1.049875259399414, -0.2866653800010681, 0.23584352433681488, -0.10323618352413177, -0.9526667594909668, -0.6131964325904846, -0.2228441685438156, -0.9901444315910339, -0.6693612933158875, -0.5535456538200378, -0.8755740523338318, -0.6882664561271667, 0.31402677297592163, 1.0715022087097168, 0.7384935617446899, 0.4315703213214874, 0.7344180345535278, 0.09887844324111938, 0.1685423105955124, 0.24123559892177582, 0.09764765948057175, 0.1716790497303009, -0.3480735421180725, -0.9833712577819824, -0.5049289464950562, 0.5175982713699341, 0.7597070336341858, 0.013693999499082565, -0.20242814719676971, 1.0236719846725464, 2.000277042388916, 0.12466713786125183, -0.570866048336029, 0.7490045428276062, -0.2815325856208801, 1.1362097263336182, 0.8352404832839966, -1.4676703214645386, 0.26369526982307434, -0.19537340104579926, -1.6098641157150269, 0.9714952111244202, -1.0437698364257812, -0.2664656341075897, 1.392971158027649, 0.5840230584144592, -0.5506102442741394, 0.7977272868156433, -0.8950856924057007, 0.019183363765478134, -0.274177610874176, -0.4270092248916626, -0.937965452671051, 0.3405349850654602, 1.1623153686523438, 0.10762954503297806, -1.1536023616790771, 0.5932835936546326, -0.06626881659030914, -0.3776804208755493, 0.5938359498977661, -0.24081099033355713, 0.04562158137559891, 0.8701069951057434, 0.6134514212608337, -0.9786579012870789, 0.127770334482193, -0.3425581753253937, 0.2787996828556061, 0.5697917342185974, 0.18822835385799408, 0.41910043358802795, -0.23653273284435272, 0.10118900239467621, 0.014388617128133774, -1.1209297180175781, 0.9141432642936707, -0.017441773787140846, 0.8054782748222351, -0.06842871010303497, -0.5639738440513611, 0.5479288101196289, -0.4330372214317322, -1.1730284690856934, -0.7094564437866211, -0.2648311257362366, 0.6381708383560181, -0.6510230898857117, -0.5764400959014893, -0.6452011466026306, -0.26696935296058655, 0.6158371567726135, 0.5427311062812805, 0.46564099192619324, -1.209428071975708, -1.068144679069519, 0.011747792363166809, 0.1374988853931427, 0.5848000645637512, -0.20500081777572632, 1.090736985206604, -0.33651605248451233, -2.0795273780822754, 1.1631418466567993, 0.22809335589408875, -1.4444019794464111, -0.9928420782089233, -1.3823366165161133, 0.8120589852333069, -0.47270941734313965, -0.010043011046946049, -0.027767805382609367, 1.4816420078277588, -0.5538509488105774, -0.582868754863739, -0.3673211932182312, -0.18121227622032166, -0.09635332226753235, 1.2825816869735718, -1.176388144493103, 0.9853217601776123, -0.24562397599220276, -0.5849186778068542, -0.73019939661026, 0.4802701473236084, -1.0622742176055908, -0.11410489678382874, 0.37581849098205566, 0.6022397875785828, -0.0054549165070056915, 1.3094826936721802, -0.06765646487474442, 1.180531620979309, -0.6842899918556213, 1.0806469917297363, -1.0102026462554932, -0.4184768497943878, -0.3138887584209442, 0.22074903547763824, -0.958475649356842, -0.2196987271308899, -0.06833739578723907, -0.9653367400169373, -1.0283252000808716, 0.6136618256568909, 0.7960751056671143, -0.7323105931282043, -0.2621365785598755, 0.05359872058033943, 0.5501248836517334, -0.3558175265789032, -0.13511891663074493, 0.2183549702167511, -0.8081528544425964, 0.47693464159965515, -0.22306734323501587, 0.4372633397579193, -0.28267592191696167, 0.16407880187034607, 1.2058838605880737, 0.5055174827575684, -0.7428525686264038, 0.7133001089096069, 0.8856128454208374, -0.26663723587989807, -1.0769928693771362, 1.0399185419082642, 0.9009432792663574, -0.5216966867446899, 0.36375191807746887, 0.6353583931922913, 0.2694890797138214, 0.39085322618484497, -0.49984967708587646, -0.725171685218811, -0.2001211941242218, 0.7361164689064026, 0.23215335607528687, 0.7613433599472046, -0.5930399894714355, 0.5127397775650024, -0.2287645936012268, -0.1080947071313858, 0.5205590724945068, -0.11841173470020294, 0.04610639810562134, 1.0313800573349, 0.21418322622776031, 0.048511382192373276, 0.05906005576252937, 0.6597113609313965, 0.35361582040786743, -0.09627338498830795, 0.18702641129493713, 0.6250815987586975, -0.5393692851066589, -0.13120891153812408, 0.585304319858551, -0.35030752420425415, 0.14756999909877777, 0.38117220997810364, -1.9071651697158813, -0.6563801765441895, -0.13411220908164978, -0.6878674030303955, 0.29432737827301025, -0.5642809271812439, -0.9833831787109375, 0.10502983629703522, 0.16157522797584534, 0.5139937400817871, -0.3432586193084717, -0.3200731873512268, -0.20910726487636566, -0.22121432423591614, 1.0645184516906738, -0.35873332619667053, 0.9458057880401611, 0.23939554393291473, -0.016184352338314056, -0.15282462537288666, -0.09727636724710464, -0.30588406324386597, 0.09144733101129532, -0.009664056822657585, -0.7633395195007324, 0.059826042503118515, -0.6115723252296448, -0.29840436577796936, 0.3276844918727875, 0.8612866997718811, 0.928805947303772, -0.40471354126930237, -0.5786950588226318, -0.4979974925518036, 0.14241696894168854, 0.6038801074028015, -0.9023584723472595, -1.1457198858261108, -0.8462391495704651, 0.2117716521024704, 0.13114827871322632, 1.6468559503555298, -0.10055255144834518, 0.6478837132453918, 0.6784412860870361, 0.37847021222114563, -0.25873616337776184, -0.6390017867088318, 0.2567070722579956, -0.7219745516777039, 1.0766266584396362, -0.03377759829163551, -0.04579532891511917, 0.4396822154521942, -1.034939169883728, 0.21776320040225983, 0.6712902784347534, 0.04761085659265518, 0.59611976146698, -0.2972146272659302, -1.0686935186386108, -0.5808610916137695, 0.8217726349830627, -0.31721872091293335, 0.03666989877820015, 0.49098536372184753, -0.17316332459449768, -0.7762245535850525, -0.36367180943489075, 0.7765580415725708, -0.2912347912788391, 0.6726992726325989, 1.6898703575134277, 1.2334762811660767, -0.25724560022354126, -0.062426984310150146, -0.262226402759552, 1.0402380228042603, -1.3282239437103271, -0.318868488073349, -0.6013792157173157, 0.1534050852060318, -0.009209130890667439], [0.0015053562819957733, 1.188709020614624, -2.2578864097595215, -1.0145055055618286, 0.5693181157112122, -0.2081119418144226, 0.8988479375839233, 0.6917972564697266, -0.04540227726101875, -0.6909911036491394, -0.7978106141090393, -0.026521313935518265, 1.212215542793274, 1.0962302684783936, 0.18398797512054443, 0.46484503149986267, 1.2976291179656982, -0.32600632309913635, 0.5345835089683533, 1.545937180519104, -0.6273043155670166, -1.2637252807617188, -0.6839715242385864, 0.12975938618183136, -0.23276132345199585, 0.5112478733062744, -1.8634330034255981, -1.1645861864089966, -1.7764480113983154, -0.4539283812046051, 0.6171561479568481, -0.8864519000053406, -0.25329136848449707, 0.8666486144065857, -1.3516494035720825, -0.6604677438735962, 0.947884738445282, 0.3028516173362732, 0.1017480120062828, -0.36442774534225464, 2.4010350704193115, -0.12300775200128555, -0.44805091619491577, -0.9172479510307312, 0.42549923062324524, -0.8054159283638, 0.8316844701766968, -0.5662035942077637, 0.5952507853507996, -0.4380750358104706, 0.5785658955574036, -0.08801406621932983, -0.008163737133145332, 0.3678776025772095, 1.0052250623703003, -0.9088336229324341, -0.5794076919555664, 0.06125809997320175, 0.6773467659950256, 0.6798997521400452, 1.1625295877456665, 0.5662983655929565, -0.2689461410045624, 1.7604631185531616, 0.8069502711296082, 0.1471129208803177, -0.08948078006505966, 0.7803803086280823, -0.22606095671653748, 0.1801915317773819, 0.6632504463195801, -0.44752293825149536, 0.08502331376075745, 0.21001261472702026, -0.2678828835487366, 0.051976483315229416, 0.5308389663696289, 0.10080529004335403, -0.031859371811151505, 0.26322057843208313, -0.1241806149482727, 0.0630996897816658, 0.7289159893989563, -0.786000669002533, 1.1288707256317139, 0.15662889182567596, 0.10397127270698547, -0.22810643911361694, -0.7219625115394592, 1.4465289115905762, 0.8203387260437012, 0.23072253167629242, 0.13809414207935333, -0.5490023493766785, 0.3107532560825348, -0.26300039887428284, 0.1257466971874237, -1.349197268486023, -1.0684131383895874, -0.7868728041648865, -1.2749067544937134, -0.5514678359031677, 0.40297940373420715, 0.4230829179286957, 1.0168126821517944, 0.8825971484184265, -0.10608407855033875, -0.9207767248153687, 0.3735499083995819, 0.12326405942440033, 0.4674372971057892, 0.5488513708114624, -1.4842801094055176, -1.0464401245117188, 0.26747214794158936, 1.2279083728790283, 1.1411851644515991, -0.08173815160989761, 1.0556960105895996, 0.8728749752044678, -0.6109853982925415, 0.22726300358772278, -0.40984225273132324, 0.15188336372375488, 0.5853174924850464, 0.7746679186820984, 0.013754032552242279, -0.5329906344413757, 0.38030585646629333, 0.017425449565052986, 0.09280869364738464, -0.06003783643245697, -0.5774936676025391, 0.5542568564414978, -0.6407623887062073, 1.4159433841705322, -0.9415719509124756, -1.833831787109375, -0.011435255408287048, -0.11659889668226242, 1.3726637363433838, -0.23399236798286438, -0.7806791663169861, -0.8174489736557007, -0.3997838497161865, -0.6027525663375854, 0.07497727870941162, -1.0782817602157593, -0.504490315914154, 0.5123637914657593, -0.8706765174865723, 0.180103600025177, 0.1427517533302307, 1.2741830348968506, -0.23153848946094513, -0.3602524697780609, 0.5480324029922485, 0.24739450216293335, 0.5454256534576416, 0.24829255044460297, 1.3844584226608276, -0.3770615756511688, -0.5166329741477966, 1.5133116245269775, 0.7123978734016418, -0.35367679595947266, 0.3069159984588623, 0.8639316558837891, -0.18217667937278748, 0.42629462480545044, -0.33747339248657227, -0.3042290210723877, -0.6896016001701355, 0.16699457168579102, 0.46348410844802856, -0.4871930480003357, 1.4878077507019043, 0.013043505139648914, -0.6484010815620422, -1.1385241746902466, 1.3698384761810303, -0.7554991841316223, 0.16418495774269104, -0.8070724606513977, 0.6902178525924683, -0.705482542514801, 0.12539175152778625, -0.43916139006614685, 0.06085152551531792, -1.4626024961471558, -0.6154342889785767, 0.2888627350330353, -0.778536856174469, 0.2712570130825043, -0.5803141593933105, -0.5347482562065125, 0.8896964192390442, -0.2576369643211365, -0.27452006936073303, -0.05100938305258751, -0.20090177655220032, 0.09923272579908371, -1.612618327140808, -0.3294132649898529, -0.811226487159729, 0.9740366339683533, -0.21413618326187134, 0.49439820647239685, -0.3282659649848938, -0.4308987557888031, 0.9410562515258789, -0.2781899571418762, -1.3196018934249878, 0.6666290760040283, 0.3131754696369171, -0.1015637069940567, 0.3160371780395508, -1.1894426345825195, -0.47185543179512024, 0.0383782833814621, 0.3899960219860077, -0.33703556656837463, -0.10051227360963821, 0.7664808034896851, 0.45846861600875854, -0.011016623117029667, -0.2697206735610962, -0.14798273146152496, -0.32776984572410583, 0.1424103081226349, -1.1829103231430054, -1.063100814819336, 1.0915040969848633, 0.6862756609916687, -1.5554654598236084, 0.9603099822998047, -0.8226574659347534, 0.4367390275001526, 0.2886768877506256, 0.8030739426612854, 0.7426023483276367, 0.2831195592880249, -0.4149000346660614, -0.21486465632915497, -1.015844464302063, 0.34470584988594055, 0.8335673213005066, -0.04021381586790085, -0.6019258499145508, 1.690108060836792, 1.7777647972106934, 0.5733725428581238, 0.9651622772216797, 0.4610982835292816, 0.04490898549556732, -0.9377937912940979, 0.05705174803733826, 0.1762966364622116, -1.3565757274627686, 1.0471299886703491, 0.9395143985748291, -1.4026545286178589, 0.05597968026995659, -0.24190105497837067, -0.7015224695205688, -0.23299932479858398, -0.6515275835990906, -0.7864654660224915, 0.31008338928222656, -0.06737398356199265, 0.3230249583721161, 0.13702601194381714, -0.2967985272407532, 0.34745076298713684, -0.31439724564552307, -0.14188702404499054, 0.03879062831401825, 0.0184380654245615, 0.42630791664123535, 0.9473592042922974, 0.28956902027130127, -0.6063929796218872, -0.7567780613899231, -0.013904329389333725, -0.09018567949533463, -0.5529466271400452, -0.5070726871490479, 1.2645680904388428, 0.6875724196434021, -0.7528153657913208, 0.1451689749956131, 0.3507361114025116, 0.037921249866485596, -0.34507760405540466, 0.09264927357435226, 0.6832817196846008, 0.31221696734428406, -1.2788071632385254, -1.093878984451294, -0.5176395773887634, 0.8325745463371277, 1.7775400876998901, 1.4635623693466187, 1.0287142992019653, -0.048907533288002014, -0.3696284294128418, -0.1170271709561348, 0.07786742597818375, -0.45994654297828674, -0.5601159930229187, -0.707429051399231, -0.44570624828338623, 0.0808228850364685, 0.37427231669425964, -0.379978746175766, 0.8525692224502563, 0.7452377080917358, 1.1664063930511475, 0.9162405729293823, -0.6541635394096375, -0.4670984745025635, 0.4454466998577118, 0.33930641412734985, -0.9212134480476379, 0.7260016202926636, 0.8618451952934265, -0.5763142704963684, -0.42603781819343567, 0.2667739987373352, -0.31655189394950867, 0.010184995830059052, 0.8094586133956909, 0.3212132751941681, -1.0411672592163086, -0.7274780869483948, 0.1272551268339157, 0.8848255276679993, -0.1815803349018097, 0.18069680035114288, -0.30753880739212036, -0.19559668004512787, 0.9102105498313904, -0.3661600649356842, -0.7485219836235046, 0.3750437796115875, -1.0718485116958618, -0.4579654335975647, 0.08790206164121628, -0.39449843764305115, 1.470306634902954, -0.27616631984710693, -0.47267022728919983, 0.4076998829841614, -0.2612261176109314, -0.312939316034317, -0.1086854487657547, -0.6198815107345581, 0.5109485983848572, 0.5076212286949158, 0.7970704436302185, 0.8854027986526489, -0.3054752051830292, -0.11233246326446533, -1.6386878490447998, 0.6438173651695251, 0.6878029704093933, 1.1615149974822998, -0.30771005153656006, 0.47516000270843506, 0.16435445845127106, -0.2871701717376709, 0.4465983510017395, 0.13608677685260773, 0.9070830345153809, 0.23592324554920197, -0.4823094606399536, -0.8422412872314453, -0.4261101484298706, -0.05836564302444458, -0.6235756874084473, 0.11432456970214844, 0.18304575979709625, -0.8308050036430359, -0.08829108625650406, 0.8629058599472046, 0.6557101011276245, -1.0527992248535156, -1.0626873970031738, -0.24100536108016968, 0.2347346842288971, -0.5439935922622681, 0.5692965984344482, -0.6061164140701294, -0.2393103539943695, -0.22520554065704346, -1.4378383159637451, -0.40394049882888794, 0.23172777891159058, 0.33849385380744934, 1.420662522315979, -0.7713461518287659, -1.042062520980835, -0.323025643825531, 0.21286451816558838, 0.5368152856826782, -0.09917955100536346, 0.0904230996966362, 0.9485031366348267, -1.0703924894332886, -0.42860764265060425, 0.40948835015296936, 0.7569906115531921, -0.47306326031684875, 0.5149088501930237, -0.08551851660013199, -0.04261596128344536, 0.2705194354057312, -0.06224923953413963, -0.7441891431808472, -0.7358046174049377, -0.5321632623672485, 0.3336702287197113, 0.18690849840641022, 0.5697813630104065, 1.8319340944290161, -0.2840433716773987, -0.24138687551021576, 0.4213216006755829, -0.6128495335578918, -0.5341315269470215, -0.05753512680530548, 0.6306283473968506, -0.08189327269792557, -1.0769623517990112, 0.3551730513572693, 0.3413703441619873, 0.35011935234069824, 0.5578542947769165, -0.10269493609666824, 0.8611348271369934, 0.8923422694206238, -0.4181060492992401, -0.22674915194511414, 0.2837947905063629, 1.3586795330047607, 1.2076635360717773, 0.07548882067203522, 0.19368821382522583, -0.8106541037559509, 0.6076480150222778, 0.01998922973871231, -0.3814559280872345, 0.6758803129196167, -0.1426839977502823, 1.1749910116195679, -1.1515918970108032, -0.23607772588729858, 0.7386124730110168, -0.035086508840322495, 0.32860860228538513, -0.3889041841030121, 0.34204772114753723, -0.31179162859916687, 0.20492757856845856, 0.04572929069399834, 0.9737249612808228, 0.7057647109031677, -0.2746477425098419, 0.03206091374158859, -0.0630214512348175, -0.766647458076477, 0.3813174366950989, -0.38960808515548706, -0.4053199291229248, -0.46135997772216797, 0.48802903294563293, 0.11473698168992996, -0.23010686039924622, -0.2605293393135071, 1.646488904953003, -0.7888976335525513, -0.7954928278923035, 0.14470596611499786, -0.2934269607067108, 0.5764662623405457, -0.9930382370948792, -0.1542573869228363, -0.7403264045715332, -0.34469419717788696, -0.08804488182067871, 0.03289131447672844, -1.3089402914047241, -0.7868057489395142, -0.5927704572677612, -0.8639063835144043, 0.24131613969802856, 0.770359992980957, 1.0267611742019653, 0.4788336753845215, 0.36601129174232483, 0.07153903692960739, 0.1552281528711319, -0.3797682225704193, 0.2469012588262558, 0.1871791034936905, -0.2575473189353943, -0.1634322851896286, -0.8438780307769775, -0.372829794883728, 0.685299813747406, 0.6267301440238953, 0.2726210951805115, 0.3424065113067627, 1.088981032371521, 2.2084996700286865, 0.06805526465177536, -0.7297036647796631, 0.4181066155433655, -0.7059842348098755, 1.199688196182251, 0.6175028085708618, -1.5985764265060425, -4.0333718061447144e-05, -0.980804443359375, -0.8592588305473328, 1.1177560091018677, -0.5335910320281982, -0.994657039642334, 1.688202142715454, 0.43789905309677124, -0.16365890204906464, 1.3070943355560303, -0.1071561723947525, 1.0877461433410645, -0.4656188488006592, 0.005700979381799698, -1.3610161542892456, 0.7277027368545532, 0.9440757036209106, 0.27238890528678894, -1.321610689163208, 0.0799146518111229, -0.19133509695529938, -0.32242950797080994, 0.36268243193626404, -0.14543385803699493, 0.8938537240028381, 0.21862897276878357, -0.1685091257095337, -1.2106513977050781, -0.47960126399993896, -0.14547352492809296, -0.2709229588508606, 0.19034922122955322, 0.11497936397790909, -0.2383785843849182, -0.8447349071502686, 0.25414228439331055, 1.0612342357635498, -0.7331626415252686, -0.4109255373477936, -0.674627959728241, 0.7100276947021484, 0.18543843924999237, -0.284709095954895, -0.6357897520065308, -0.4172224998474121, -0.8669614195823669, -0.7594743371009827, -0.36616286635398865, 0.5638701915740967, -0.8303067088127136, -0.6932696104049683, 0.04501596838235855, -0.35795512795448303, 0.39043989777565, 0.45463496446609497, 0.5686421394348145, -1.4908497333526611, -1.143298625946045, -0.1835717111825943, 0.08011173456907272, 0.4987648129463196, -0.49702736735343933, 1.0687440633773804, -0.3282488286495209, -1.0439175367355347, 0.842976987361908, -0.03545233607292175, -1.693257451057434, -0.7143362760543823, -0.995849072933197, 1.072208285331726, -0.7767665386199951, 0.06870968639850616, 0.05785582959651947, 1.29676353931427, -0.41844597458839417, -1.2130440473556519, -0.49272674322128296, -0.08703869581222534, 0.4219681918621063, 1.0990715026855469, -0.658881425857544, 0.9307809472084045, 0.09071361273527145, -0.9303266406059265, 0.14499419927597046, 0.7828044891357422, -0.8202992677688599, -0.07445523887872696, 0.7363949418067932, 0.782686173915863, 0.37104710936546326, 1.1051123142242432, -0.039986610412597656, 1.3604481220245361, -0.33235278725624084, 0.7812882661819458, -0.8719021677970886, 0.4062320590019226, 0.417897492647171, 0.36995095014572144, -0.242855042219162, -0.7665672302246094, -0.41715720295906067, -0.8978304266929626, -0.8617093563079834, 0.3896544277667999, 0.9005029201507568, -1.0684372186660767, -0.03530797362327576, -0.2824043333530426, 1.0027283430099487, -1.0059515237808228, -0.04903645068407059, 0.010717352852225304, -0.7710481286048889, 0.27541208267211914, -0.41830503940582275, 0.5073471069335938, -0.4202928841114044, -0.16278371214866638, 0.8290700912475586, 0.7975282073020935, -0.6220961809158325, 0.598270833492279, 1.0030587911605835, -0.34820684790611267, -1.2902886867523193, 1.7118492126464844, 0.7878389358520508, 0.24993087351322174, 0.11491996794939041, -0.019315080717206, 0.5621364712715149, -0.012569875456392765, -0.6297727823257446, -0.3051791787147522, -0.2449217438697815, 0.7926382422447205, 0.12284465879201889, 0.17193667590618134, -0.6967146396636963, 0.313888281583786, 0.3886077404022217, -0.11210838705301285, 1.052565574645996, -0.37057673931121826, 0.021786505356431007, 0.7798637747764587, 0.32510513067245483, -0.429670125246048, 0.2949894368648529, 0.37951987981796265, 0.1697397083044052, -0.40567904710769653, 0.8098082542419434, 0.2600254416465759, -0.31124597787857056, 0.1664573848247528, 0.2905929386615753, -0.47850391268730164, 0.089478500187397, -0.4812689423561096, -2.5729620456695557, 0.022544309496879578, -0.24982328712940216, -0.8852514624595642, 0.5509619116783142, -0.7589349150657654, -0.6275912523269653, 0.36947932839393616, 0.3541538417339325, -0.39784175157546997, -0.38404783606529236, -0.26596799492836, -0.46895140409469604, -0.4941338896751404, 0.9711543917655945, -0.3645705580711365, 1.003660798072815, -0.15483640134334564, -0.15129753947257996, -0.36671870946884155, -0.020650628954172134, -0.07495928555727005, 0.5362593531608582, 0.3778913617134094, -0.6556007266044617, -0.26921507716178894, -0.5946194529533386, 0.13310889899730682, 0.022812966257333755, 0.8518771529197693, 0.7388060688972473, -0.5767229199409485, -0.8703726530075073, -0.14548315107822418, 0.7161217927932739, 0.27645641565322876, -1.2356698513031006, -1.0547776222229004, -0.8564844727516174, 0.6166301965713501, -0.5371732711791992, 1.019370675086975, -0.17511692643165588, 0.42100220918655396, 0.6474545001983643, -0.2230789065361023, -0.3313294053077698, -0.5579219460487366, 1.0882059335708618, -0.3392464816570282, 0.7186564803123474, -0.13364988565444946, -0.5677448511123657, 0.6451128721237183, -1.036161184310913, -0.29985311627388, 0.507999837398529, -0.21792832016944885, 0.41364291310310364, -1.0457149744033813, -0.8674834370613098, -0.5452225208282471, 0.09757757931947708, 0.6219066977500916, 0.4586867094039917, 0.6292263269424438, 0.3436446189880371, -1.1320161819458008, 0.004846431314945221, 0.2952740788459778, -0.47285619378089905, 0.7228938341140747, 1.33099365234375, 1.4894988536834717, 0.10831117630004883, -0.10856538265943527, -0.11282169818878174, 1.0838210582733154, -0.7916297316551208, -0.5735796093940735, -1.2554816007614136, -0.0670492947101593, 0.0940835177898407], [-0.2281634360551834, 0.9728761911392212, -2.307185649871826, -0.4867136776447296, 0.3183324933052063, 0.2567273676395416, 1.4728869199752808, -0.1977459341287613, 0.04001152515411377, -0.6821922063827515, -1.177156686782837, 0.10075021535158157, 0.7366175651550293, 1.0374932289123535, 0.3612104654312134, 0.3286864161491394, 0.66031414270401, -0.2858704924583435, 0.9499029517173767, 1.3152976036071777, -0.6161159873008728, -0.7537758946418762, -0.5385705828666687, 0.3947864770889282, 0.43544116616249084, 0.36106184124946594, -1.2498579025268555, -1.1572705507278442, -0.9924253225326538, -0.7936016917228699, 0.12350791692733765, -0.7045776844024658, -0.5253093242645264, 0.6684753894805908, -0.5817700624465942, 1.034686803817749, 1.4708662033081055, 0.5271317362785339, 0.8338282704353333, 1.0162854194641113, 2.704007148742676, -0.5021753311157227, 0.45864149928092957, -1.3775252103805542, 0.2496255785226822, -0.25293901562690735, 0.36603111028671265, -0.9785263538360596, -0.09086083620786667, -0.7839180827140808, 0.7600123286247253, 0.5446078777313232, 0.7138316631317139, 1.081096887588501, 1.0628100633621216, -1.1608223915100098, -0.10459958761930466, 0.06197250261902809, 0.07452838122844696, 0.4057338237762451, 0.763716459274292, 0.05654388293623924, -0.33904778957366943, 1.351511001586914, 0.47612860798835754, -0.4605241119861603, 0.07312469184398651, 0.09396186470985413, 0.04801810532808304, -0.22177734971046448, -0.10299976170063019, -0.22041454911231995, -0.125219464302063, 0.10988403111696243, -1.4860330820083618, 0.5591734051704407, 0.8018395304679871, 0.2864021062850952, 0.3587450683116913, 0.6430731415748596, -1.253357172012329, 0.3436563014984131, 0.452508807182312, 0.25753021240234375, 1.1073262691497803, 0.5893430113792419, 0.6743589639663696, -0.6829290986061096, -0.9291149377822876, 2.046548843383789, 0.48895329236984253, 0.16593733429908752, -0.06271388381719589, -0.5214003324508667, 0.1305590718984604, 0.11750692129135132, -0.3039443790912628, -0.9606491923332214, -0.5990315675735474, -0.7371036410331726, -0.5963236093521118, -0.7008289098739624, 0.49057769775390625, 0.5920799970626831, 1.029547095298767, 1.6491724252700806, 0.06302683055400848, -0.5980902910232544, -1.2806476354599, 0.23034274578094482, 0.4661048352718353, 0.3141736090183258, -0.5723494291305542, -1.5069606304168701, -0.5716461539268494, 0.2335524559020996, 0.47245749831199646, -0.4842034578323364, 0.5398713946342468, 0.577076256275177, -0.6222929358482361, -0.04211621358990669, -0.7052932977676392, 0.4458036720752716, 0.6666184663772583, 0.6959419846534729, -0.349573016166687, -0.21685777604579926, 0.2934112548828125, 0.4415155351161957, 0.23224219679832458, 0.26914381980895996, 0.1484275609254837, 0.9552584290504456, -1.0117533206939697, 1.488065481185913, -0.14309971034526825, -0.7668949961662292, -0.21326132118701935, -0.37023797631263733, 0.46405744552612305, -0.09899821877479553, -0.5216858386993408, -1.220268964767456, -0.13967783749103546, -0.8477180600166321, 0.63377445936203, -0.646713376045227, -0.47992295026779175, -0.4510918855667114, -1.131298542022705, -0.04586363211274147, 0.30784621834754944, 0.687666118144989, 0.36080193519592285, 0.02337535098195076, 0.9567078351974487, 0.26090696454048157, 0.007215565070509911, 0.28811800479888916, 0.8311960697174072, -0.207050621509552, -0.47052696347236633, 0.44730082154273987, 0.29689544439315796, -0.1274375468492508, 0.47062456607818604, 0.34339362382888794, 0.5320054888725281, 1.00407874584198, -0.16084438562393188, -0.3130733370780945, -1.0642048120498657, 0.32696443796157837, 0.09672217071056366, -1.7490919828414917, 0.7370406985282898, -0.06297709047794342, -1.5460172891616821, -1.290876865386963, 0.6259796023368835, -0.6516380906105042, -0.15365728735923767, -0.539261519908905, 0.1464540660381317, -0.18297360837459564, -0.0076753683388233185, -0.5174825191497803, -0.45723599195480347, -0.9421539306640625, -0.8670040965080261, -0.5298438668251038, -1.3269652128219604, 0.06285208463668823, -0.594731867313385, -0.9510248303413391, 0.40541601181030273, -0.21764366328716278, -1.4787201881408691, -0.08581776171922684, 0.24733375012874603, -0.35278528928756714, -1.2997583150863647, 0.10766281187534332, -0.9937984347343445, 0.7648336887359619, -1.1528472900390625, 0.18785251677036285, -1.0770639181137085, 0.11088135838508606, 0.2743225693702698, -0.19980865716934204, -0.8532770872116089, 0.8556192517280579, 0.020261624827980995, -0.7943487167358398, -0.1583511382341385, 0.004490816965699196, -0.18058428168296814, 0.20071829855442047, 0.6034323573112488, 0.28025853633880615, 0.3940373659133911, -0.006083826068788767, 0.9037227630615234, -0.24073123931884766, -0.9803227782249451, -0.2947655916213989, -0.7392389178276062, 0.6038526892662048, -0.8476238250732422, -1.24200439453125, 1.205660343170166, 0.3338814079761505, -1.1477097272872925, 0.769895613193512, -0.22244331240653992, -0.47384515404701233, 0.49842968583106995, 0.893454909324646, 0.06235280632972717, 0.33140435814857483, -0.4652544856071472, -0.2307419329881668, -0.2400057464838028, 0.5670968294143677, 0.17146264016628265, -0.256832093000412, 0.2061581164598465, 1.265707015991211, 0.47783270478248596, -0.28230464458465576, 0.336920827627182, -0.4007260203361511, -0.7212216258049011, -0.4285850524902344, -0.6798277497291565, 0.03205810487270355, -0.3270721137523651, 1.8123124837875366, 0.6992374062538147, -1.1497865915298462, -0.17705033719539642, -0.33470940589904785, 0.08859268575906754, -0.760214626789093, -0.4017006754875183, -1.0512052774429321, 0.5534102320671082, 0.3598231375217438, 0.4818188548088074, 0.09142784029245377, -0.3232276141643524, 0.8403998017311096, 0.029516709968447685, 0.10415966808795929, -0.7136210799217224, 0.325497567653656, 0.03797907009720802, 1.1764788627624512, 0.8175761699676514, -1.219642162322998, -0.8991115689277649, -0.0598251074552536, 0.5826786756515503, 0.07975704222917557, -0.06422580778598785, 0.9501747488975525, 1.0985536575317383, -0.48491567373275757, 0.14009180665016174, 0.713189423084259, -0.6054874658584595, 0.35311612486839294, 0.2572057843208313, 0.2620353698730469, 0.34030672907829285, -1.5360743999481201, -1.2127867937088013, -0.5918442010879517, 0.48232391476631165, 1.092050552368164, 1.740466594696045, 0.7782993316650391, -0.16527944803237915, -0.44565674662590027, 0.0543062798678875, 0.018097296357154846, -1.0173672437667847, -0.21405276656150818, -0.1770692616701126, -1.0558569431304932, 0.3462396562099457, 0.10674108564853668, 0.12990932166576385, 0.6101329326629639, -0.054345227777957916, 0.5512694716453552, 0.44665786623954773, -0.4596390724182129, -0.608622670173645, -0.32248935103416443, -0.2825410068035126, -1.0304914712905884, 0.23582465946674347, 0.6369761824607849, -0.987500786781311, 0.006120787933468819, 0.3800218403339386, 0.331552654504776, 0.6357026100158691, 0.36518946290016174, 0.9594184160232544, -1.0286043882369995, -0.16607525944709778, 0.10788999497890472, 1.690405249595642, -0.0994369387626648, -0.766978919506073, -1.1731594800949097, -0.2242138385772705, 0.9548788666725159, -0.06783195585012436, -1.0209823846817017, 0.23110774159431458, -0.35867902636528015, -0.9974018335342407, -0.5050727725028992, -0.25032222270965576, 0.8136541843414307, -0.16366225481033325, -1.1611192226409912, 0.6582305431365967, 0.1750781387090683, -0.03224522992968559, 0.7538554668426514, -0.5555678606033325, 1.1171272993087769, -0.05157039687037468, 0.2406664937734604, 1.4495922327041626, -0.2684383988380432, 0.5896810293197632, -1.413387417793274, 0.8779847621917725, 0.3937712013721466, 1.005994200706482, 0.5320486426353455, 0.06556306034326553, 0.4201802611351013, -0.7795864939689636, 0.023174874484539032, 0.18928486108779907, 1.1225581169128418, 0.06682135909795761, -0.3834882378578186, -0.915904700756073, 0.0029159036930650473, -0.12001828104257584, -0.9800952672958374, -0.5854665040969849, -0.028896767646074295, -0.9226232171058655, -0.8641408085823059, 1.3014724254608154, 1.1306586265563965, -0.7369540333747864, -0.4821670353412628, 0.5363771915435791, 0.15363657474517822, 0.1906765252351761, 0.131109356880188, -0.6919788122177124, 0.6182816624641418, 0.3684936761856079, -1.0987831354141235, 0.17621901631355286, 0.09679082781076431, 0.8902994990348816, 0.6131305694580078, -0.9272845983505249, -0.3945336639881134, -0.2533925771713257, -0.1583445966243744, 0.44967466592788696, 0.37510430812835693, -0.023120148107409477, 0.9803663492202759, -0.4692496359348297, 0.16547207534313202, 0.5477365851402283, 1.008955955505371, 0.229021817445755, 0.031326983124017715, -0.4022025167942047, 0.19241757690906525, 0.372464120388031, -0.7895753979682922, -0.5222165584564209, 0.2349526584148407, -0.4708282947540283, 0.8598951697349548, -0.014810326509177685, -0.13082243502140045, 1.6962858438491821, 0.40968403220176697, 0.1745513677597046, 0.8264362215995789, -0.24029269814491272, -0.46216511726379395, 0.31803175806999207, 0.29743775725364685, 0.28426551818847656, -0.7017264366149902, 1.0414139032363892, 0.15707287192344666, -0.3175086975097656, 0.831746518611908, 0.5170738697052002, 0.8080438375473022, 0.2524130642414093, -0.3743985593318939, -0.059503376483917236, 0.6542771458625793, 1.3904320001602173, 1.0926766395568848, 0.6231405735015869, 0.35968196392059326, -0.7314271330833435, 0.776279091835022, -0.2621404528617859, -0.4533301889896393, 0.8345433473587036, -0.1688690334558487, 1.107124924659729, -1.6310709714889526, -0.5071724653244019, 1.1331394910812378, 0.33533358573913574, 0.38240379095077515, 0.5326709151268005, 0.6187695860862732, -0.8818530440330505, -0.02714153565466404, 0.42023080587387085, -0.3476141095161438, 0.09989384561777115, 0.43063122034072876, -0.05748377740383148, -0.1712612807750702, -0.32755348086357117, 0.09458770602941513, -0.7002884745597839, -0.28536567091941833, -0.29398825764656067, -0.6300009489059448, 0.5862365365028381, 0.1258280724287033, -0.23252880573272705, 1.3548718690872192, -0.24602873623371124, -1.191450834274292, 0.17422990500926971, -0.532403290271759, -0.115984246134758, -0.44071057438850403, -0.8198203444480896, -1.0248775482177734, -1.3299514055252075, -0.09496372938156128, 0.493412584066391, -1.2995553016662598, -0.9527816772460938, 0.055757150053977966, -1.1752134561538696, 0.4221256971359253, 0.20783589780330658, 1.5709517002105713, 1.4997237920761108, 0.026832517236471176, -0.224420428276062, 0.34972983598709106, -0.9704505205154419, 0.10528348386287689, 0.8915233016014099, -0.42965275049209595, -0.11573950201272964, -1.1371337175369263, -0.5808024406433105, 1.4256759881973267, 0.9241787195205688, -0.4366019368171692, 0.39903178811073303, 1.0160776376724243, 1.203004002571106, -0.6027213931083679, -1.0177087783813477, 0.4349062144756317, -0.18318027257919312, 1.007157564163208, 0.14246469736099243, -0.9824939370155334, -0.5797143578529358, -0.44824695587158203, -1.1999653577804565, 1.5869107246398926, -0.12418298423290253, -0.7607845664024353, 0.5576733350753784, 0.4501207172870636, -0.2908362150192261, 0.6686429381370544, -0.8002716302871704, -0.15896938741207123, 0.19907882809638977, 0.22795815765857697, -1.2009247541427612, 0.7240723371505737, -0.3307349979877472, 0.6692827343940735, -0.3965114653110504, -0.2984234690666199, 0.2066352516412735, -0.14929735660552979, 0.5410676002502441, 0.3255312740802765, 0.008441489189863205, 0.6931170225143433, 0.8797954320907593, -0.7377653121948242, -0.0179192665964365, -0.5999635457992554, 0.16946861147880554, 0.5812088847160339, 0.33124104142189026, -0.2381121665239334, -1.073288917541504, 0.2590659260749817, -0.18052944540977478, 0.2888464629650116, 0.03913099318742752, -0.4426160156726837, 1.3415476083755493, 0.36265385150909424, 0.23714971542358398, 0.25501951575279236, -0.5979394912719727, -0.3770099878311157, -0.6200687289237976, -0.14640487730503082, 0.5190025568008423, -0.4148736000061035, -1.0591634511947632, -0.07526606321334839, 0.09644666314125061, 0.143999382853508, -0.28534695506095886, 0.22273653745651245, -0.8796747326850891, -1.2434167861938477, -0.6699270009994507, -0.24708500504493713, 0.6031028628349304, -0.42042073607444763, 0.8409637808799744, 0.01870802603662014, -1.4596654176712036, 0.2727021872997284, -0.709632396697998, -1.5122687816619873, -0.2603908181190491, -0.9424664378166199, 0.9678770899772644, 0.1244397759437561, 0.6059643030166626, -0.17708826065063477, 0.4133845865726471, -0.462146520614624, -1.0384814739227295, -0.9294552206993103, 0.23532047867774963, 0.5172895193099976, 0.7616363763809204, -0.532277524471283, 1.3062679767608643, 0.3008674681186676, -0.412630170583725, -0.059818707406520844, -0.11876191943883896, -0.26056551933288574, -0.05456704646348953, 1.1425211429595947, -0.08144614845514297, 0.8359218835830688, 0.9535263776779175, 0.18450787663459778, 0.9683945178985596, 0.6696931719779968, 0.4112713634967804, -1.0780515670776367, -0.9830828905105591, -0.6094234585762024, -0.003480694256722927, -0.6905823349952698, -0.37243732810020447, -0.39031195640563965, -0.930895984172821, -1.4312413930892944, 0.3601073622703552, 1.403423547744751, -0.7693785429000854, 0.2889130711555481, -0.30787113308906555, 0.9746369123458862, -1.184988260269165, 0.3626549541950226, 0.024918172508478165, -0.34614717960357666, 0.3946165144443512, -0.21110078692436218, 0.13650648295879364, -0.840509831905365, 0.01760917901992798, 0.05346569046378136, 0.6115343570709229, -0.07711555063724518, 0.7031835913658142, 0.8098646998405457, -0.10652616620063782, -0.3959895968437195, 1.0678391456604004, 1.2787691354751587, -0.21207669377326965, -0.7326554656028748, 0.6491003036499023, -0.3250397741794586, 0.8633337020874023, -0.38476887345314026, -0.09881235659122467, -0.5055297017097473, 0.8145477771759033, 0.14827921986579895, -0.00025880406610667706, -0.6897448301315308, 0.3777236044406891, -0.3712044060230255, -0.017907073721289635, 0.9402610659599304, -0.4928969442844391, 0.298654705286026, 1.1010843515396118, 0.1317393034696579, -0.6648518443107605, 0.19386371970176697, 0.7707299590110779, 0.21362543106079102, -0.012177880853414536, 0.35028016567230225, 0.2630370259284973, -0.3454665243625641, 0.5130956172943115, 0.48025211691856384, -0.7168043851852417, -0.39258214831352234, -0.46093103289604187, -1.918321132659912, -0.5189778208732605, -0.7569595575332642, 0.07274794578552246, 0.5227081179618835, -0.7741842269897461, -0.9530497789382935, 0.24000360071659088, -0.031078701838850975, 0.5265255570411682, -0.7950615286827087, -0.1196725070476532, -0.5556114912033081, -0.017953641712665558, 1.2286970615386963, -0.49311041831970215, 1.6902345418930054, -0.2472826987504959, 0.11101359128952026, -0.5274695158004761, 0.153124138712883, 0.22573241591453552, 0.8462600111961365, 0.19439439475536346, -0.18221579492092133, -0.07427435368299484, -0.6955880522727966, -0.6287490129470825, 0.07299260795116425, -0.04803711920976639, 0.40261608362197876, 0.038098014891147614, -0.5197837352752686, -0.3462177515029907, 0.6544354557991028, 0.3042183220386505, -0.392608106136322, 0.14701172709465027, -1.117039442062378, 0.8168104887008667, -0.35895225405693054, 0.855973482131958, -0.8701431155204773, 1.0156360864639282, 0.6387972831726074, -0.43158382177352905, 0.24269920587539673, 0.21135126054286957, 0.28525352478027344, -0.059162624180316925, 0.5525285005569458, 0.7025672793388367, 0.11146106570959091, 0.1550687700510025, -0.9547268152236938, 0.06652503460645676, -0.0862710252404213, -0.32995402812957764, 0.248485267162323, -0.6089390516281128, -0.8745511174201965, 0.06495015323162079, -0.07521753758192062, 0.1194351315498352, 0.4828801155090332, 0.21500219404697418, -0.15022990107536316, -1.1718906164169312, 0.4050310552120209, 0.5592842698097229, -0.6936213970184326, 0.6348315477371216, 1.3062011003494263, 1.3484376668930054, 0.22741246223449707, -0.3182508051395416, -0.5524793267250061, 0.5373926758766174, -0.9509127140045166, -0.7903534770011902, -0.6707741022109985, -0.2862666845321655, -0.37445929646492004], [-0.10762152820825577, 2.2107248306274414, -2.432352304458618, 0.054706573486328125, 0.8857226371765137, 0.36697858572006226, 1.1581426858901978, -0.07616706192493439, -0.3478933274745941, -0.15440568327903748, -0.9837016463279724, 0.5392048954963684, 0.6251378655433655, 0.2277611494064331, 0.4157823324203491, 1.140140175819397, 1.4334772825241089, -0.1036924421787262, 0.9443971514701843, 1.2353718280792236, -0.5474092364311218, -0.49504324793815613, 0.2015923112630844, 0.12513265013694763, -0.22736868262290955, 0.3989446759223938, -1.241223931312561, -1.399957537651062, -0.7370059490203857, -1.1072520017623901, 0.4417441785335541, -0.37949877977371216, -0.2471814602613449, -0.1278506964445114, -1.2332037687301636, -0.5785762071609497, 1.704314112663269, 1.412596583366394, 1.016144037246704, 0.3260897397994995, 1.9283078908920288, -0.22900578379631042, 0.4570372998714447, -1.689184546470642, -0.2525416910648346, 0.03506370261311531, 0.41290009021759033, -0.08378136157989502, 0.4827037453651428, -0.24191556870937347, 0.48169204592704773, -0.9068032503128052, 0.5531214475631714, 0.8424937129020691, 1.0486246347427368, -0.27363747358322144, 0.4591308534145355, 0.2832353413105011, 0.06278068572282791, -0.6355255842208862, 0.8007773160934448, 0.29908886551856995, 0.20213264226913452, 0.7601506114006042, 0.17066991329193115, -0.4574272632598877, 0.03534579649567604, 0.06595854461193085, -0.021821539849042892, 0.04507702589035034, -0.0012543294578790665, 0.11845393478870392, -0.8925691843032837, 0.5096595883369446, -1.990590214729309, 0.3743007183074951, 0.6185007691383362, 0.9118102788925171, 0.5919770002365112, 0.3564590811729431, -0.15225307643413544, 0.30976787209510803, 0.6056598424911499, 0.11864840984344482, 0.546332597732544, 0.3464880585670471, 0.8845224380493164, -0.6748378276824951, -0.3350750803947449, 1.525546669960022, 0.8250429630279541, 0.013775574043393135, 0.28579574823379517, -0.42609578371047974, -0.5940285921096802, -0.40353962779045105, 0.4741339683532715, -0.2630637288093567, -0.7090910077095032, -0.964850902557373, -0.5659589767456055, -0.962162435054779, 0.3092832863330841, 0.08756118267774582, -0.18784092366695404, 1.23432195186615, 0.6811308264732361, -0.12145071476697922, -0.35021838545799255, -0.14289070665836334, 0.11839872598648071, 0.6423308849334717, -1.1104522943496704, -1.4092679023742676, -0.8394098877906799, 1.0079147815704346, 1.0532758235931396, -0.17056500911712646, 0.3669646382331848, 1.3837774991989136, -0.16829119622707367, -0.40306007862091064, -0.15579019486904144, 1.128598928451538, 0.21602262556552887, 0.7145007848739624, -0.6477749347686768, -0.47154945135116577, 0.21673110127449036, -0.06753944605588913, 0.34859129786491394, -0.3072790503501892, -0.4003491997718811, 0.7066998481750488, -0.904826819896698, 1.444930076599121, -0.2796061038970947, -0.5098745226860046, -0.06252946704626083, -0.3450305163860321, 0.5713288187980652, 0.4089726507663727, -0.45572659373283386, -0.7293643355369568, -0.4181780219078064, -0.8382960557937622, 0.5517776012420654, 0.09616430848836899, -0.8734859824180603, 0.25796496868133545, -1.1598128080368042, 0.5590121150016785, -0.09495348483324051, 0.30077770352363586, 0.12732155621051788, 0.13892924785614014, 0.633564293384552, -0.025365019217133522, 0.5299794673919678, 0.2858406901359558, 0.8059541583061218, -0.36155468225479126, -0.8069919347763062, 0.2884475886821747, 0.26197001338005066, -0.26568111777305603, 0.2513929605484009, 0.6228066682815552, 0.1923569291830063, 0.6681016683578491, -0.31593430042266846, -0.2112453281879425, -0.33834633231163025, 0.30280712246894836, 0.48724034428596497, -0.9389567375183105, 1.2120105028152466, -0.10501903295516968, -1.3945953845977783, -1.552388072013855, 0.20297802984714508, -0.4945298135280609, 0.45717963576316833, -0.01409730315208435, 0.19911706447601318, -0.8850500583648682, 0.16766826808452606, -0.35853463411331177, -0.7458946108818054, -0.3272707164287567, -0.41060587763786316, -0.394661545753479, -0.6167114973068237, 0.440405011177063, -1.0511924028396606, -0.6409478187561035, 0.42326709628105164, -0.8820812702178955, -0.5471858978271484, 0.09700837731361389, 0.03649729862809181, -0.5758585929870605, -1.1776759624481201, 0.22271424531936646, -0.3449985086917877, 0.942718505859375, -1.3710401058197021, 1.009498119354248, -0.9801194667816162, -0.12706194818019867, 0.567110538482666, 0.11749957501888275, -0.9450355768203735, 0.4559532105922699, -0.0035311952233314514, -1.5973840951919556, 0.4409402012825012, 0.4274846613407135, -0.3523195683956146, 0.4932979643344879, -0.25370723009109497, 0.44223782420158386, 0.06454359740018845, 0.1214338093996048, 0.46058720350265503, -0.24354341626167297, -0.6420679688453674, -0.6709417700767517, -0.47822368144989014, -0.23429974913597107, -0.5709916949272156, -1.3015419244766235, 0.6755887269973755, 0.11558117717504501, -1.3733251094818115, 0.21258428692817688, 0.23851022124290466, 0.003032408654689789, 0.5174694061279297, 1.193809151649475, 0.2512364387512207, 0.595446765422821, -0.3710924983024597, -0.40352097153663635, -0.4138440787792206, 0.18235072493553162, 0.8335824608802795, -0.4789801836013794, 0.2887386381626129, 1.3426486253738403, 1.309685468673706, 0.029979797080159187, 0.3224470317363739, 0.25007155537605286, -0.4961503744125366, -0.7749823331832886, -0.640984833240509, 0.41602885723114014, 0.004194520879536867, 1.733166217803955, 0.47572070360183716, -0.9267093539237976, 0.20267996191978455, -0.0820697769522667, 0.19148540496826172, 0.035200752317905426, -0.5645315647125244, -0.21968373656272888, -0.10894030332565308, 0.4122737944126129, -0.15346455574035645, 0.4899212419986725, -0.14622871577739716, 0.4831353425979614, -0.33597174286842346, -0.7568272948265076, -0.8396355509757996, 0.8441733717918396, -0.39397600293159485, 0.7185295224189758, -0.3312096893787384, -1.1121808290481567, -0.34963253140449524, -0.14438314735889435, 0.7416045069694519, 0.10904490947723389, 0.12239708751440048, 0.3497203588485718, 0.6108607649803162, -0.1521150767803192, 0.2615632712841034, 0.060535043478012085, -0.036098312586545944, -0.04650979861617088, -0.01137620210647583, 0.6131852269172668, 0.8175393342971802, -1.0332889556884766, -0.44744065403938293, -0.05973832309246063, 0.31055471301078796, 1.3669441938400269, 0.4474024772644043, 0.838038444519043, -0.026460980996489525, -0.5155297517776489, -0.32658782601356506, -0.31223973631858826, -1.036981463432312, -0.7657558917999268, -1.1264046430587769, -0.7145410180091858, -0.02505047619342804, -0.0999731793999672, 0.2582181394100189, 0.37694504857063293, -0.3654748201370239, 0.29002904891967773, 1.3574938774108887, -0.30682533979415894, -0.9850828051567078, -0.17610511183738708, -0.5910567045211792, -0.7967019081115723, 0.4634549915790558, 1.1083834171295166, -1.1813106536865234, -0.7326127886772156, 0.1048719510436058, -0.018482627347111702, 0.283964604139328, -0.07546647638082504, -0.014510557055473328, -1.3687201738357544, -0.7832350730895996, -0.3995106816291809, 1.9792535305023193, 0.07169041782617569, -0.4254021644592285, -0.3826870024204254, 0.7942332029342651, 0.7357187271118164, 0.030901866033673286, -1.0388641357421875, 0.6237768530845642, -0.3070501983165741, -0.5287865400314331, -0.06450330466032028, 0.5344310998916626, 0.5056533217430115, -0.6090754270553589, -0.8046715259552002, -0.15271170437335968, -0.2376583218574524, -0.24441131949424744, 0.8286409378051758, 0.012549306266009808, 1.1776247024536133, -0.3274536728858948, 0.0644155815243721, 0.532759428024292, -0.004068966023623943, 0.142318457365036, -1.4452859163284302, 0.3410472869873047, 0.6423803567886353, 0.9441954493522644, 0.7611272931098938, 0.44362249970436096, 0.04245647415518761, 0.509150505065918, 0.25988298654556274, 0.35016152262687683, 1.4608738422393799, 0.0752103179693222, 0.32469916343688965, -0.8159022331237793, -0.4065669775009155, -0.08485466241836548, -0.8595396876335144, -0.048319607973098755, 0.7380987405776978, -0.9684329032897949, -0.38736602663993835, 1.24594247341156, 0.44943177700042725, -0.7544245719909668, -0.20243820548057556, 0.41256844997406006, 0.4178188443183899, -0.5874029994010925, 0.5408278107643127, -0.49375149607658386, 0.03152226656675339, 0.2581561803817749, -1.3248751163482666, 0.16528142988681793, 0.17149975895881653, 0.667031466960907, 0.40146803855895996, -1.321864128112793, -0.010154006071388721, -0.5002796649932861, 0.6769059300422668, 0.33215171098709106, 0.24739430844783783, 0.3059045970439911, -0.12622776627540588, -0.014637534506618977, 0.16761444509029388, 0.026157040148973465, 0.6722667217254639, -0.888302743434906, 0.22272612154483795, -0.10225064307451248, -0.04674287885427475, -0.5546647906303406, -0.44308769702911377, -0.48382553458213806, 0.2069893479347229, -0.02877049706876278, 0.030673496425151825, 0.7077089548110962, -0.2792721390724182, 1.4694195985794067, 0.2164144217967987, 0.8731203079223633, 0.34764620661735535, -0.05277356877923012, -1.18050217628479, -0.014734387397766113, 0.5839971303939819, -0.204222172498703, -0.5911504626274109, -0.4309833347797394, 0.4938102662563324, -0.3442060649394989, 0.368133008480072, 0.440276563167572, 1.0857492685317993, 0.3998940587043762, 0.3554944694042206, -0.22173509001731873, 0.7252495288848877, 0.8211722373962402, 1.276269793510437, 0.368671715259552, -0.14073386788368225, -1.1595057249069214, 0.6229738593101501, -0.8427122831344604, -0.23577560484409332, 0.8775882124900818, 0.024255752563476562, 1.5126361846923828, -1.6137077808380127, -0.40366658568382263, 0.8469758629798889, 0.46757984161376953, -0.07979152351617813, 1.0094231367111206, -0.6020979285240173, -0.3040001690387726, 0.4557786285877228, 0.1598820835351944, -0.09196693450212479, 0.0016033230349421501, 0.11570348590612411, 0.01784466579556465, 0.9128761887550354, -0.4813583791255951, 0.7970815896987915, -0.8398616313934326, 0.1425895243883133, 0.37365299463272095, -0.2651008069515228, 0.2530503273010254, 0.25886669754981995, 0.27621015906333923, 1.2414604425430298, -0.365630179643631, -1.1567848920822144, -0.024330737069249153, -0.7824003100395203, 0.17581981420516968, -0.835054337978363, -0.05469401553273201, -0.6884559392929077, -0.02840137481689453, -0.42369014024734497, 0.6394957304000854, -0.5058168172836304, -0.586106538772583, -0.5265129208564758, -1.4065519571304321, 0.7674693465232849, 0.8717789053916931, 1.3802618980407715, 0.8814371824264526, 0.21944670379161835, 0.6758018136024475, 0.48670968413352966, -0.9885862469673157, -0.31109708547592163, 0.29592227935791016, -0.10917079448699951, -0.03179888799786568, -1.151504397392273, -0.5093899965286255, 0.015484396368265152, 0.16729551553726196, 0.13982948660850525, 0.9255958199501038, 0.8019365072250366, 1.2460205554962158, -0.656247615814209, -0.6649844646453857, 0.7007925510406494, -0.44117531180381775, 0.2785893976688385, 0.7243196368217468, -0.32243168354034424, -0.556299090385437, -0.7867031097412109, -1.396836519241333, 1.2550532817840576, 0.1617647409439087, -0.520253598690033, 1.033941388130188, 0.24694333970546722, 0.5364669561386108, 0.4147856533527374, -0.2060786485671997, 0.40689730644226074, 0.06552676111459732, -0.2761019766330719, -1.066284418106079, 1.0292497873306274, -0.19498205184936523, 0.4587702751159668, 0.1855776309967041, -0.21398590505123138, 0.04135744273662567, -0.49315133690834045, 0.15839871764183044, 0.1805262267589569, 0.3024127781391144, 0.9267995357513428, 0.10124523192644119, -1.318917989730835, 0.5386582016944885, -0.4424934983253479, -1.0398855209350586, 0.5099970698356628, 0.36773398518562317, 0.029283571988344193, -0.21223965287208557, -0.24621495604515076, -0.9125624299049377, -0.6049544215202332, -0.22346986830234528, -0.2840021848678589, 1.112908124923706, 0.6700469851493835, 0.09016314893960953, 0.22266677021980286, -0.4570378065109253, -0.25177523493766785, -0.1999247968196869, 0.39114999771118164, 0.1507347673177719, -1.0347697734832764, -0.26259514689445496, 0.3947117030620575, -0.7662187814712524, -0.15493299067020416, -0.6966635584831238, -0.24299883842468262, -0.6686522960662842, -0.9504261612892151, -1.2356775999069214, 0.06588786840438843, 0.8603399395942688, -0.820527970790863, 0.7930165529251099, 0.040478937327861786, -1.4364101886749268, 0.34317463636398315, -0.2671453356742859, -1.2935731410980225, -0.01692548207938671, -1.1933079957962036, 0.7201250195503235, 0.08457471430301666, -0.026583164930343628, -0.3929574489593506, 0.7089749574661255, -1.4924973249435425, -1.539969563484192, -0.8646976947784424, 0.013474440202116966, 1.010288119316101, 0.24272947013378143, -0.6687788963317871, 1.020904541015625, 0.29132702946662903, -0.23474448919296265, -0.10861711204051971, 0.003988079726696014, -0.016904320567846298, 0.316854864358902, 0.5774695873260498, 0.117256298661232, 0.44536763429641724, 1.0353288650512695, -0.10045827925205231, 1.3721667528152466, 0.32625266909599304, 0.67435222864151, -0.8952503800392151, -0.3173460066318512, 0.14268678426742554, 0.6587681770324707, -1.1271915435791016, -1.0888581275939941, -0.0991661548614502, -0.6551550030708313, -0.7673143744468689, 0.5008137226104736, 0.7382141351699829, -1.1305279731750488, 0.3822879493236542, -0.7407377362251282, 0.09982923418283463, -1.2399815320968628, 0.30577370524406433, -0.3897799253463745, -0.5277447700500488, -0.25740909576416016, 0.7133654356002808, -0.06049944460391998, -1.4830831289291382, 0.3140144944190979, -0.2974972128868103, -0.17615042626857758, -0.5508307814598083, 0.6235960125923157, 1.0407108068466187, 0.562900960445404, -0.7123625874519348, 1.1623106002807617, 0.6321715712547302, -0.24376463890075684, -0.5420283079147339, 0.4841421842575073, -0.2810893952846527, 0.7084605693817139, -0.3077802360057831, -0.2653200030326843, -0.9917165637016296, 1.4787729978561401, 0.37023237347602844, 0.2080845981836319, 0.013962054625153542, 0.3613984286785126, -0.3450530171394348, 0.04741007834672928, 0.5167500972747803, -1.3516790866851807, 0.14560097455978394, 1.1900150775909424, 0.26236727833747864, -0.333074688911438, 0.34924304485321045, 0.48996877670288086, 0.47374388575553894, -0.5569992661476135, 0.4904486835002899, 0.7215558886528015, -0.6052908301353455, 0.16686509549617767, 0.4681461453437805, -0.275736927986145, -0.08866622298955917, -0.4190385937690735, -1.0264582633972168, 0.21950243413448334, -0.5293896198272705, -0.842129647731781, 0.5665827393531799, -1.3952314853668213, -0.6504015326499939, 0.34238186478614807, -0.487079381942749, -0.10119825601577759, -0.5594671368598938, -0.15166960656642914, 0.17926768958568573, -0.2720721364021301, 0.8106995820999146, -0.20900729298591614, 1.7896780967712402, -0.34365344047546387, 0.27972471714019775, -1.86501944065094, -0.5494785308837891, 0.92365962266922, 0.027792789041996002, -0.07460761070251465, 0.3627729117870331, 0.7361958622932434, -0.3219596743583679, -0.2259056568145752, 0.16590990126132965, 0.18482014536857605, 0.021786540746688843, 0.1043359637260437, -0.3889537453651428, -0.10075372457504272, 0.759337842464447, 0.8766707181930542, -0.038815710693597794, -0.5168929696083069, -1.210634469985962, 0.13476905226707458, -0.24755722284317017, 0.6686439514160156, -0.6338503956794739, 0.661392331123352, 0.20096488296985626, -0.6083418130874634, -0.019351013004779816, -0.1911182701587677, 1.212908148765564, 0.16293857991695404, 0.32735762000083923, -0.0034586936235427856, 0.040007755160331726, -0.25531378388404846, -0.9808269143104553, -0.08881565183401108, 0.28730639815330505, -0.6449719071388245, 0.09064783900976181, -1.0914053916931152, -0.38619911670684814, -0.49478626251220703, 0.2741027772426605, 0.6926200985908508, 0.9966964721679688, 0.6770648956298828, -0.03541304171085358, -0.7846208214759827, 0.22538426518440247, 0.24557186663150787, -0.495162695646286, -0.26610317826271057, 1.5842223167419434, 1.8145495653152466, 0.6846118569374084, 0.846407949924469, -0.625745952129364, 0.16188201308250427, -1.052676796913147, -0.8702528476715088, -0.5063503384590149, -0.9304731488227844, -0.15578776597976685], [0.23310746252536774, 1.4278903007507324, -2.1227834224700928, -0.0013359887525439262, 0.3008582592010498, 0.542358934879303, 0.20061683654785156, 0.24048146605491638, 0.1601279079914093, -0.44900789856910706, -1.6744047403335571, 0.18671606481075287, 0.17705923318862915, 0.7730186581611633, -0.6454611420631409, 0.28899574279785156, 0.3989223837852478, 0.39240124821662903, 0.06639847904443741, 0.7916886806488037, -0.8686342835426331, -0.6914786696434021, -0.48644235730171204, 0.16924002766609192, -0.15071633458137512, 0.5631812214851379, -1.7273164987564087, 0.5159450173377991, -1.2806364297866821, -1.0600923299789429, -0.2440098375082016, -0.20849379897117615, -0.0029046721756458282, -0.1921001821756363, -1.1359930038452148, -0.40035492181777954, -0.144361212849617, 0.2120652049779892, 0.03611825779080391, 0.3860289752483368, 1.717891812324524, 1.300004243850708, 0.42230111360549927, -1.384103775024414, 0.7246899008750916, -0.49890196323394775, 1.166635513305664, -1.0525972843170166, -0.3054504990577698, -0.18908853828907013, 0.6534474492073059, 0.10872237384319305, 0.7236050367355347, 0.9924842715263367, 1.3056960105895996, -0.6291726231575012, 0.1873691976070404, -0.10811382532119751, 0.5503983497619629, 0.6714937090873718, 0.7424443960189819, -0.12362820655107498, -0.3078012466430664, 0.9690056443214417, 0.23790723085403442, 0.1908324658870697, 0.03796781599521637, 0.3786236345767975, -0.5877575278282166, -0.04820946604013443, 0.4027002453804016, 0.05261644721031189, -0.22777722775936127, -0.19914419949054718, -0.6910868287086487, 0.24826136231422424, 0.7986147403717041, 0.28921830654144287, -0.49463510513305664, 0.6072691082954407, -0.8116118311882019, 0.19085389375686646, 0.7726139426231384, -0.6297479867935181, -0.11944285780191422, 0.3671623468399048, 0.6435603499412537, -0.48126956820487976, -0.6335395574569702, 1.1797261238098145, 0.4085511267185211, 0.15507684648036957, 0.2227214276790619, -0.012878654524683952, -0.20343449711799622, -0.46741238236427307, 0.2533179223537445, -0.629931628704071, -0.6141504645347595, -0.42592570185661316, -0.8799777030944824, -0.40646547079086304, 0.3141492009162903, 1.1180403232574463, 0.7334396243095398, 1.7478065490722656, -0.7655212879180908, -0.6731159687042236, 0.18913815915584564, 0.8737653493881226, -0.21360425651073456, 0.32893773913383484, -0.7154560685157776, -1.301483392715454, -0.4654480516910553, 0.7633097171783447, 0.9215831756591797, -0.18168842792510986, 0.9174221754074097, 0.9925140738487244, 0.31719765067100525, -0.400615394115448, -0.6625869870185852, 0.737936794757843, 0.6270554065704346, -0.2943347990512848, -0.59977126121521, 0.09925853461027145, 0.11279919743537903, 0.09500574320554733, 0.09188327193260193, -0.22347508370876312, 0.22401823103427887, 1.308854579925537, -0.22462362051010132, 0.8778181076049805, 0.05061694607138634, -1.1196601390838623, -0.239095076918602, 0.25634509325027466, 0.3240402042865753, -0.17993256449699402, -0.28752535581588745, -1.1721669435501099, -0.07295344024896622, -0.037083566188812256, -0.08031845092773438, -0.2243463546037674, -0.7653160095214844, 0.5886319279670715, -1.5705052614212036, 0.5863599181175232, -0.5285415649414062, 0.5946773290634155, 0.3079373240470886, -0.057566773146390915, 0.3155795931816101, 0.20667417347431183, 0.3650619685649872, 0.7665985226631165, 0.8131089210510254, 0.22077587246894836, -0.4080246090888977, 0.5323686599731445, 0.6339337229728699, -0.5180459022521973, 0.22488903999328613, 0.16929423809051514, -0.9301173686981201, 0.9548398852348328, -0.9090262055397034, -0.8999029994010925, -0.6358683109283447, -0.10471216589212418, -0.5027198195457458, -0.6539621353149414, 0.39206257462501526, -0.9749196767807007, -0.9748948812484741, -0.9956554770469666, 1.5433529615402222, -0.536853551864624, 0.45806437730789185, -0.07456962764263153, 0.3157948851585388, -0.48141634464263916, 0.17994274199008942, -0.0462958887219429, -0.26883262395858765, -0.41813141107559204, -1.0222272872924805, -0.09599948674440384, -0.7140877842903137, 0.6394293308258057, -0.30090853571891785, -0.7172701358795166, 0.46211594343185425, 0.11348296701908112, -0.598894476890564, -0.0998583734035492, -0.42442578077316284, -0.49548661708831787, -1.0532402992248535, 0.6898080706596375, 0.24628522992134094, 1.3003851175308228, -0.029620081186294556, 0.5304304957389832, -0.4037953317165375, -0.14067642390727997, 0.859717845916748, -0.17577233910560608, -0.8451278209686279, 0.46893227100372314, -0.05656279996037483, -0.8357998728752136, 0.3788549304008484, 0.1813916116952896, 0.5109861493110657, -0.12333715707063675, 1.111473798751831, 0.5697842836380005, 0.18169835209846497, -0.1403418630361557, 0.18595363199710846, 0.00951335858553648, -0.05997399240732193, -0.26922836899757385, -0.6986958384513855, -0.03863236680626869, -0.8269352316856384, -0.6958134174346924, 1.1850438117980957, 0.09266340732574463, -0.7868857979774475, 1.2758967876434326, -0.42263558506965637, 0.13117045164108276, -0.47532039880752563, 0.6861579418182373, 0.20911411941051483, -0.24508169293403625, -0.9953858852386475, -0.5209296345710754, -0.558621346950531, 0.30209046602249146, 0.6934399008750916, -0.07509656250476837, 0.17337974905967712, 1.6740385293960571, 0.6254227757453918, -0.41358160972595215, 0.8535221219062805, 0.23205623030662537, -0.3441530168056488, -1.0955854654312134, 0.007442876696586609, 0.12120886892080307, -0.8496128916740417, 1.481447458267212, 0.7464153170585632, -1.4593664407730103, -0.44310933351516724, -0.00610921299085021, 0.2801397740840912, -0.39330601692199707, -0.33365002274513245, -0.5496066212654114, 0.6435744762420654, 0.6838569045066833, 0.07285067439079285, -0.10383825749158859, 0.003408856689929962, 1.045656681060791, 0.19367259740829468, 0.32600849866867065, -0.29358816146850586, 0.19505712389945984, 0.25089266896247864, 0.6438420414924622, 0.09072735905647278, -1.618355631828308, -0.6908381581306458, -0.23489058017730713, 0.35160258412361145, -0.08043201267719269, -0.8458347916603088, 0.5943066477775574, 0.8273098468780518, -0.34386998414993286, 0.188558429479599, 0.4260108470916748, 0.14069907367229462, -0.1339043527841568, 0.48404377698898315, 0.36162951588630676, 0.9611651301383972, -0.9675120711326599, -0.7379522323608398, -0.04985545948147774, 0.2727743685245514, 1.5965462923049927, 0.7127408981323242, 1.252373456954956, -0.017344888299703598, -0.2089361995458603, -0.4866703450679779, -0.20428884029388428, -1.079616904258728, -0.446085661649704, -0.896675705909729, -1.0427218675613403, -0.1303950995206833, -0.5039531588554382, 0.44487640261650085, 0.2584313154220581, 0.308535635471344, 0.6355018019676208, 0.044364143162965775, -0.925697386264801, -0.5409746170043945, -0.14882425963878632, 0.4099571108818054, -1.8460667133331299, 1.170067548751831, 1.3119382858276367, -1.1115869283676147, 0.026357362046837807, 0.30333948135375977, -0.17521288990974426, 0.5174158811569214, 0.05993860214948654, 0.6814862489700317, -0.9318989515304565, -0.6614618301391602, -0.008325573056936264, 1.3143434524536133, 0.3845348656177521, -0.5070327520370483, 0.15181028842926025, 0.3121911287307739, 0.5008260011672974, -0.03341691195964813, -1.116401195526123, 0.19400480389595032, -0.1533421277999878, -1.040379524230957, -0.09023365378379822, 0.7612923383712769, 1.1280860900878906, -0.509480357170105, -0.2434232085943222, -0.0887475460767746, 0.036624521017074585, -0.7611689567565918, -0.1974198967218399, -0.4308628737926483, 0.3906809091567993, -0.2573985457420349, 0.09687642753124237, 0.8707171678543091, -0.17154814302921295, 0.02828206494450569, -1.5785497426986694, 0.5339173078536987, 1.0452860593795776, 2.0179615020751953, 0.5437769889831543, 0.26533985137939453, -0.012933650985360146, -0.9531343579292297, -0.5656975507736206, 0.47134119272232056, 0.23711147904396057, 0.6855915188789368, -0.49284929037094116, -0.7773457169532776, 0.05440894886851311, -0.25237444043159485, -0.7231801152229309, -0.742404043674469, 0.27272501587867737, -0.6401440501213074, -0.5077261328697205, 0.6324278116226196, 0.34998396039009094, -0.49596843123435974, -0.19802699983119965, 0.4161216914653778, -0.4589085876941681, -0.5829526782035828, 0.3325263261795044, -0.6483173370361328, -0.05060362070798874, 0.8985589742660522, -0.5715214014053345, -0.8946202397346497, -0.093247190117836, -0.35457414388656616, 0.9595378637313843, -1.3780356645584106, -0.958317220211029, -0.9875888824462891, 0.107378751039505, 0.35242295265197754, 0.08105185627937317, 0.8063363432884216, 0.007801257539540529, -0.05748017504811287, -0.44909289479255676, 0.008609396405518055, 1.239427089691162, -0.03602002188563347, 0.2396768480539322, -0.4522489607334137, -0.002263373229652643, 0.429536908864975, -0.8697735667228699, -0.40096747875213623, -0.4984027147293091, -0.7534886598587036, 0.5145173072814941, -0.0897928774356842, 0.06525132805109024, 0.8622953295707703, 0.00672277482226491, 0.2893499732017517, 0.886173665523529, -0.24543429911136627, -0.7253966331481934, -0.2900552749633789, 0.5345553159713745, -0.5433652997016907, -0.5292057991027832, 0.48444631695747375, 0.33065611124038696, 0.5628019571304321, 0.6805315017700195, -0.06710842996835709, 0.09037865698337555, 0.08545897901058197, -0.2706303894519806, -0.3789313733577728, 0.5487877726554871, 1.3121213912963867, 0.8127482533454895, 1.1254860162734985, -0.0843873992562294, -0.7642199993133545, 1.2521202564239502, -0.01109111774712801, 0.3639068603515625, -0.1929236501455307, 0.8371813297271729, 0.959322452545166, -1.02611243724823, -0.31591033935546875, 0.24825625121593475, 0.6040692925453186, 0.270956814289093, -0.33544260263442993, 0.34640073776245117, -0.7459618449211121, -0.23816055059432983, -0.06860313564538956, -0.11242567002773285, 0.8345855474472046, -0.3361330032348633, 0.12810705602169037, 0.0703035444021225, -0.14047099649906158, -0.07113365828990936, -1.115025520324707, 0.6157999038696289, 0.39436623454093933, 0.06295328587293625, 0.3504568040370941, 0.543167769908905, 0.1909523904323578, 0.43908876180648804, -0.30526968836784363, -0.226897194981575, 0.5996558666229248, -0.9477061033248901, 0.032052770256996155, -0.4963730275630951, -0.8081060647964478, -0.7129324674606323, -0.1042327880859375, -0.2812914550304413, -0.3737855553627014, -0.16319699585437775, 0.015188703313469887, 0.2159409523010254, -1.144948124885559, -0.2023714929819107, 0.5076521635055542, 1.1048763990402222, 0.42610716819763184, 0.7892624735832214, 0.5375963449478149, 0.17083200812339783, -0.7844515442848206, 0.27105963230133057, 0.023751288652420044, 0.05005275458097458, -0.5272477865219116, -0.5225417017936707, -0.5142203569412231, 0.2720237672328949, 0.700580894947052, 0.07316657900810242, -0.1612614095211029, 0.29145440459251404, 1.4701759815216064, -0.27437373995780945, -0.30311423540115356, 0.20471744239330292, -0.2736685872077942, 0.8000061511993408, 0.15496855974197388, -1.0692675113677979, -0.524402916431427, 0.039996951818466187, -2.2878384590148926, 1.3484208583831787, -0.063295878469944, -1.5104092359542847, 0.9872170090675354, 0.7629532814025879, 0.1628233790397644, 0.6184849143028259, -0.41858506202697754, 0.35885319113731384, 0.45872732996940613, 0.08027079701423645, -1.2819126844406128, 0.644389271736145, 0.6711283326148987, 0.2500319182872772, -0.7968510985374451, -0.07743779569864273, 0.052919935435056686, 0.18161864578723907, 0.04308338090777397, 0.25970518589019775, 0.5979771614074707, 0.6848933696746826, -0.038654107600450516, 0.2903848886489868, 0.3645493686199188, -0.4442252516746521, 0.45410647988319397, -0.3701859712600708, 1.3300697803497314, -0.23245419561862946, -0.39315760135650635, 0.2071252316236496, -0.8267092108726501, 0.32050833106040955, 0.04649750515818596, -0.6003515124320984, 0.7528823018074036, 0.38175657391548157, -0.25542980432510376, -0.0865967646241188, -0.5826607942581177, -0.7099388241767883, -0.7010423541069031, -0.4818408787250519, 0.8875207304954529, -1.4494191408157349, -0.40382274985313416, -0.7801417708396912, -0.3274930417537689, 0.11788902431726456, -0.32830706238746643, 0.07647708058357239, -1.0972685813903809, -1.2949588298797607, 0.23227231204509735, 0.3347858488559723, 0.35040727257728577, 0.2199544906616211, 0.5445005297660828, 0.27353155612945557, -1.326442003250122, 0.993462860584259, 0.27982693910598755, -2.3016197681427, -0.5840471982955933, -1.4405558109283447, 0.9959320425987244, 0.5930408239364624, 0.46231526136398315, -0.5296108722686768, 1.3732043504714966, -0.7979043126106262, -0.8179145455360413, -0.7485620379447937, -0.7410783767700195, 0.3516814410686493, 0.5323776006698608, -0.7179973721504211, 0.6148132681846619, 0.1775703728199005, -0.5721545815467834, 0.03237473964691162, 0.1987607777118683, -0.7178057432174683, 0.22855976223945618, 0.3569873869419098, 0.33347082138061523, 0.3994547128677368, 1.033132553100586, 0.7817093133926392, 1.3681050539016724, 0.011481720954179764, 1.1486029624938965, -0.379506379365921, 0.03823251649737358, -0.9033800959587097, -0.16856548190116882, -0.8012745976448059, 0.220183864235878, -0.054782770574092865, -1.061328411102295, -0.834469199180603, 0.23917709290981293, 0.7869868278503418, -1.3705605268478394, -0.2497340738773346, -0.29789209365844727, 0.18080544471740723, -0.748896598815918, 0.5070800185203552, 0.1784386783838272, -0.17141859233379364, 0.4628378450870514, -0.27326926589012146, 0.3446418344974518, -0.3505774140357971, 0.0751374214887619, 0.43261662125587463, 0.7653881311416626, -0.2675701081752777, 0.46697336435317993, 0.3717115521430969, -0.07277755439281464, -0.7079558372497559, 0.8410078287124634, 1.2739646434783936, -0.00036851316690444946, 0.5309520363807678, 0.6217482686042786, -0.42704296112060547, -0.14832302927970886, -0.2670688331127167, -0.07666733115911484, -0.6192597150802612, 0.8002907037734985, -0.05745574086904526, 0.27142593264579773, -0.5993104577064514, 0.7251469492912292, -0.13278284668922424, 0.7644402384757996, 1.1431455612182617, 0.18243356049060822, -0.8580314517021179, 0.6801925897598267, 0.8885654211044312, -0.11390797048807144, 0.23089590668678284, 0.527711808681488, -0.11518904566764832, 0.04221891239285469, 0.43453842401504517, 0.3136504292488098, -0.5102981328964233, 0.6051825881004333, 0.5048708319664001, -0.07617082446813583, -0.14634250104427338, -0.31761959195137024, -1.1967179775238037, -0.9191907048225403, -0.208438903093338, -0.2535458505153656, 0.2698003351688385, -1.671939492225647, -1.2076271772384644, 0.13639673590660095, -0.6997429132461548, 0.26320356130599976, -0.5384960174560547, -0.41155341267585754, -0.018249325454235077, 0.05896318331360817, 1.4434400796890259, -0.3155202865600586, 1.5713093280792236, 0.9370355606079102, -0.6856845617294312, -0.18845294415950775, -0.10195514559745789, -0.42177578806877136, 0.2933206558227539, 0.732658863067627, -0.11566250771284103, 0.8052091598510742, -0.6019156575202942, -0.706571638584137, 0.40971875190734863, 0.03421151638031006, 0.5256770849227905, -0.795045793056488, -0.7370737791061401, -0.31011638045310974, -0.040914617478847504, -0.0894622951745987, -0.6057233810424805, -0.3552560806274414, -0.8507340550422668, 0.08234793692827225, -0.05655255913734436, 0.8383944034576416, -0.261196106672287, 1.0087206363677979, 0.34272846579551697, -0.05580443888902664, -0.4694082736968994, -0.7508940100669861, -0.1818847507238388, -0.348381370306015, 0.3751557767391205, -0.16086049377918243, -0.33090609312057495, 0.2935633957386017, -1.0030450820922852, 0.7792062163352966, 0.5448071956634521, 0.12335441261529922, 0.2887111306190491, -0.3752634823322296, -1.2060292959213257, -1.0497721433639526, 0.3299887478351593, 0.738092303276062, 0.6865827441215515, 0.2819784879684448, -0.041440386325120926, -0.71500164270401, 0.07716326415538788, 0.15173690021038055, 0.036002688109874725, 0.9076883792877197, 1.9852453470230103, 1.6679751873016357, 0.11198706179857254, -0.509372353553772, -0.2572029232978821, 0.9054340124130249, -0.6245798468589783, -0.594743013381958, -0.7008996605873108, 0.13449057936668396, 0.04666280746459961], [-0.30578628182411194, 2.1703155040740967, -2.71166729927063, 0.6683415174484253, 0.6857660412788391, 0.15793654322624207, 0.6039053201675415, -0.016628706827759743, 0.046622276306152344, -0.5966033339500427, -1.036144733428955, 0.33358660340309143, -0.04235520586371422, 1.0344665050506592, -0.3348482847213745, 0.6172477006912231, 0.3970845341682434, 0.04063316062092781, 0.004491404630243778, 1.188252329826355, -0.42921561002731323, -0.7816891074180603, -0.42897579073905945, 0.5665960311889648, -0.11354424059391022, -0.20802080631256104, -1.2378050088882446, 0.29404565691947937, -0.7048581838607788, -0.5639029145240784, 1.6224769353866577, -0.2978211045265198, 0.36322295665740967, -0.3967670500278473, -1.2323795557022095, -0.30777740478515625, 0.38721412420272827, -0.4395856261253357, 0.2573506236076355, -0.15092243254184723, 1.6256698369979858, 0.9205251932144165, -0.13825629651546478, -2.020620107650757, -0.25883206725120544, -0.5022032856941223, 0.7894523739814758, -0.5341994762420654, 0.2642999589443207, -1.042009711265564, 0.5268548727035522, 0.0836343914270401, 0.9080925583839417, 1.715732455253601, 0.5605547428131104, -1.5392389297485352, 0.032757483422756195, 0.7474889159202576, 0.10153016448020935, 0.5464491248130798, 0.9229192733764648, -1.202034592628479, 0.2976699769496918, 0.7479187846183777, 0.3024173974990845, -0.3815043568611145, 0.40171515941619873, 0.3191317617893219, -0.037355970591306686, 0.1255231350660324, 0.17837053537368774, 0.612716019153595, -0.6127083897590637, 0.6995983719825745, -0.7270092964172363, 0.37997081875801086, 0.7439711093902588, 0.07329468429088593, -0.584094762802124, 0.6416012644767761, -0.14390704035758972, -0.016272034496068954, 0.7065466046333313, -0.05277622863650322, -0.22677768766880035, 0.10717800259590149, 0.39352497458457947, -0.2649337947368622, -0.6583683490753174, 1.1627097129821777, 0.4411623179912567, 1.3851312398910522, 1.0503934621810913, -0.20163017511367798, 0.0007798541337251663, -0.7801914215087891, 0.11512820422649384, -1.023238182067871, 0.057606156915426254, -0.6257583498954773, -0.03466382622718811, -1.0585801601409912, 1.3375067710876465, 0.34342458844184875, 0.2931046187877655, 0.8861572742462158, -0.378780335187912, -0.3328186571598053, 0.6903886198997498, -0.038785651326179504, -0.3620949387550354, -0.2457689493894577, -0.6673893928527832, -1.3588200807571411, 0.21790865063667297, 1.4665086269378662, 1.515784502029419, 0.3744022250175476, 0.625071108341217, 0.20258116722106934, -0.6888187527656555, -0.6800071001052856, -0.5709298253059387, 0.06125196814537048, 1.4492552280426025, 0.08628850430250168, -0.6481211185455322, -0.2237967699766159, 0.33981087803840637, 0.3775624930858612, 0.43580299615859985, 0.07468758523464203, -0.1045503318309784, 0.35720294713974, 0.049779415130615234, 0.8378692865371704, -0.44730591773986816, -0.9043088555335999, -0.23052994906902313, 0.8134253025054932, 0.06634389609098434, -0.4181945025920868, 0.24978075921535492, -0.24818794429302216, -0.20382344722747803, -1.2597522735595703, 0.8932402729988098, -0.04245857149362564, -0.2398589849472046, 0.633193850517273, -1.2792595624923706, 0.12493958324193954, 0.1656157225370407, 0.6222062706947327, 0.3739071488380432, -0.17308111488819122, 0.41906046867370605, 0.06814826279878616, 0.4235433042049408, 0.44314149022102356, 1.0836988687515259, -0.008790279738605022, -0.3716686964035034, 0.37348228693008423, 0.4324279725551605, 0.047361817210912704, 0.3126259446144104, -0.023036666214466095, -0.4018303155899048, 1.0892382860183716, 0.018100526183843613, -0.9068868160247803, -0.12591272592544556, 0.7213688492774963, 0.11331548541784286, -0.4142829477787018, 0.547204315662384, -0.39115333557128906, -1.1241830587387085, -0.8265394568443298, 1.002173900604248, -0.4617833197116852, 0.907364010810852, -0.2895181477069855, 0.7268968224525452, 0.3778359591960907, 0.22237059473991394, -0.5724111199378967, -0.5809302926063538, -1.2112687826156616, -0.49039921164512634, -0.09047044068574905, -1.462459683418274, 0.37849634885787964, -0.4971584677696228, -0.9727436304092407, 0.6588771939277649, -0.9404937028884888, -0.8084258437156677, 0.4445706009864807, 0.7746853828430176, -0.4460916221141815, -0.631521463394165, 0.05449783429503441, -0.4678463935852051, 0.7635068297386169, 0.21659892797470093, 1.0530434846878052, -0.6299455165863037, 0.4554120898246765, 0.699751615524292, -0.8195674419403076, -1.560896873474121, 0.7890905141830444, -0.534584641456604, -1.2255693674087524, 0.9328722357749939, 0.16441525518894196, 0.017256220802664757, 0.038836244493722916, -0.342072457075119, 1.1871321201324463, 0.1395796537399292, -0.5280283689498901, 0.34765440225601196, -0.973249077796936, -0.5013724565505981, -2.0465614795684814, -0.1506839245557785, -0.31353506445884705, -1.0633713006973267, -1.1917119026184082, 0.4514853060245514, 0.24474868178367615, -1.4723832607269287, 0.4275926351547241, -0.08758160471916199, 0.31008514761924744, -0.22215627133846283, 1.2180445194244385, 0.15788224339485168, 0.8180139660835266, -0.42608365416526794, 0.0001837071031332016, -0.5933375954627991, -0.07538291066884995, 0.6876713633537292, -0.2826189696788788, 0.8684291839599609, 1.4331517219543457, 0.6199986934661865, -0.48946237564086914, 0.6049674153327942, -0.5280619859695435, -0.3981929421424866, -0.8341154456138611, -0.029968174174427986, 0.5177090167999268, -0.5131898522377014, 1.4490805864334106, 0.41842958331108093, -0.9301003813743591, 0.31045001745224, 0.331920325756073, 0.20050114393234253, -0.096643827855587, -0.34835174679756165, -0.798101007938385, -0.07899196445941925, -0.355044424533844, -0.30188262462615967, 0.5257692337036133, 0.1966015249490738, 0.7842814326286316, -0.3718433082103729, -0.7812581062316895, -0.1155647486448288, 0.4551997482776642, -0.5757512450218201, 0.8574078679084778, -1.041512370109558, -1.5057612657546997, -0.6355594396591187, 0.4620135724544525, 0.10231570899486542, 0.19250671565532684, 0.23177005350589752, 0.711763858795166, 0.49469420313835144, 0.2149888128042221, 0.2887275218963623, 0.010760397650301456, 0.6794162392616272, -0.2738569378852844, 0.28814268112182617, 0.21450360119342804, 0.8478872776031494, -0.4066425561904907, -0.9342132210731506, 0.20814642310142517, 0.29834553599357605, 1.4084030389785767, 0.43834540247917175, 1.456676959991455, -0.5882181525230408, -0.0571427196264267, -0.7894995808601379, -0.1650514304637909, -1.374767780303955, -0.06266507506370544, -0.5124865174293518, -1.1770036220550537, -0.7233599424362183, -0.7127424478530884, 0.14295822381973267, 0.13356484472751617, 0.0719216912984848, 0.760807454586029, 0.3491438627243042, 0.30277445912361145, -1.664342999458313, -0.7607272863388062, -0.5562858581542969, -0.7719435691833496, 0.9413571953773499, 2.0257980823516846, -1.480736494064331, 0.07120420038700104, 0.005425245966762304, -0.12310456484556198, 0.4873320460319519, 0.5448099970817566, 0.23335357010364532, -1.3138984441757202, 0.012976037338376045, 0.6214514374732971, 1.1942740678787231, 0.8300880789756775, -0.8656749129295349, -0.550419270992279, 0.4590878188610077, 1.1868858337402344, -0.6664910912513733, -0.14958195388317108, 0.5882123708724976, -0.4631895422935486, -0.03259870037436485, 0.022458873689174652, 0.5190621018409729, 0.457234263420105, -0.6538257598876953, -1.2697858810424805, 0.2629299759864807, -0.07247994840145111, -0.7122573256492615, 0.12289821356534958, 0.40248194336891174, 0.4135652184486389, 0.010373223572969437, -0.31789958477020264, 1.3595033884048462, 0.09155848622322083, -0.015142092481255531, -0.8137333393096924, 0.43697553873062134, 0.6004030108451843, 1.8565385341644287, 0.19662706553936005, 0.7485974431037903, 0.1169772744178772, -0.8251534104347229, 0.18333107233047485, 0.24967196583747864, 0.1115512102842331, 0.38949793577194214, -0.7366570234298706, -0.6142972111701965, -0.9805101752281189, 0.18425260484218597, -0.3103351593017578, 0.12258921563625336, 0.7789059281349182, -0.7684807777404785, -0.7575116157531738, 0.7254637479782104, 0.9198473691940308, -0.7645334601402283, -0.3305755853652954, -0.14802266657352448, 0.629290759563446, -1.1069471836090088, 0.487373411655426, 0.6731224656105042, -0.10583006590604782, 0.4323655366897583, -0.774135410785675, -0.7209610342979431, -0.06011180207133293, 0.29958224296569824, 1.1736479997634888, -1.9411933422088623, -0.4103703200817108, -0.9999472498893738, 0.12500648200511932, 0.6393744349479675, 0.12497974932193756, 0.2055915892124176, 0.33911561965942383, -1.0045462846755981, 0.029550623148679733, 0.6356715559959412, 1.0231070518493652, -0.08087213337421417, 0.10782338678836823, -0.13698126375675201, -0.12831871211528778, -0.07510238140821457, -1.298823356628418, 0.25456365942955017, 0.5947491526603699, -0.4378887116909027, -0.23733817040920258, 0.4550022780895233, -0.5882512927055359, 2.342700958251953, 1.0653496980667114, 0.13408347964286804, -0.11681611835956573, 0.6053239703178406, -0.6606721878051758, -0.21555455029010773, 0.45651471614837646, -0.7408462166786194, -0.5626751780509949, 0.7222787737846375, 0.41960012912750244, 0.7391737103462219, -0.1863388866186142, 0.039282992482185364, 0.5520037412643433, 0.49910181760787964, -0.2161077857017517, -0.6135508418083191, 0.3821268379688263, 0.9328232407569885, 0.9943340420722961, 1.405418038368225, -0.04222039133310318, -0.43291613459587097, 1.0994343757629395, -0.49261876940727234, 0.8650254607200623, 0.7340906858444214, 0.2189476639032364, 1.2419536113739014, -1.0071709156036377, -0.3199462294578552, 0.08662208169698715, -0.3439490795135498, 0.5912795066833496, 0.19206443428993225, 0.6862031817436218, -0.568871796131134, -0.6226322054862976, -0.13147401809692383, -0.9806578159332275, 0.78379225730896, 0.08132176846265793, 0.5830281972885132, 0.30861619114875793, -0.810053825378418, -0.06738198548555374, -0.9155454039573669, 0.33840614557266235, -0.9384481906890869, -0.1531289666891098, 0.7327306270599365, 0.8766766786575317, 0.9303389191627502, 0.07918579876422882, 0.4856049716472626, -1.08182692527771, 0.39366352558135986, -1.0086408853530884, 0.17083021998405457, -0.6090692281723022, -0.1854553073644638, -0.8840025663375854, 0.29828283190727234, -0.19486501812934875, -0.16185320913791656, -0.3833714723587036, -0.6144574880599976, -0.872391402721405, -0.7297526001930237, 0.3763452172279358, 0.4999847114086151, 0.8617062568664551, 0.3661158084869385, 1.0213489532470703, 0.9234192371368408, -0.20060621201992035, -0.6182411313056946, -0.44689950346946716, 0.04410208389163017, 0.025094663724303246, -0.5286387801170349, -0.3539104163646698, -0.7238051295280457, 0.5237129330635071, 0.07880573719739914, -0.4541420340538025, 0.7562187910079956, 0.8717594742774963, 1.3116894960403442, -0.3298301100730896, -0.8810942769050598, 0.754443883895874, -0.13084407150745392, 1.497076392173767, 0.5610450506210327, -0.7111639380455017, -0.17338240146636963, -0.2403419315814972, -1.9472676515579224, 1.6352514028549194, -0.09725139290094376, 0.09971166402101517, 1.043654441833496, 0.24920699000358582, -0.10177414864301682, 0.761100709438324, -0.18865486979484558, 0.47835877537727356, 0.0061479657888412476, -0.4872664213180542, -0.3859347403049469, 0.5527579188346863, 0.6288754940032959, 0.17304149270057678, -0.7605059146881104, 0.750794529914856, -0.5215473771095276, -0.1653524935245514, -0.2732168734073639, 0.119303859770298, 0.5870726108551025, 0.18649786710739136, -0.024837231263518333, -0.18946735560894012, 0.27339503169059753, -1.0867559909820557, 0.1333128660917282, 0.6700828671455383, 0.042370010167360306, 0.49572646617889404, -0.40005168318748474, 0.3090016841888428, -1.0645864009857178, -0.021076951175928116, -0.2082444131374359, -0.5662862062454224, 0.8862771987915039, 0.5478212833404541, -0.14106042683124542, 0.6545767188072205, -0.09940574318170547, 0.12488298863172531, -0.3662674129009247, -0.9200650453567505, 1.2230433225631714, -1.2766008377075195, -0.6721758246421814, -1.234582543373108, -0.028726894408464432, 0.018987208604812622, 0.7424359321594238, 0.26287129521369934, -0.6947627067565918, -0.8006835579872131, -0.5300552845001221, 0.4180055856704712, 0.46112552285194397, -0.34551212191581726, 0.5924155712127686, 0.3368484079837799, -0.717143714427948, -0.37475475668907166, -0.1069083884358406, -2.0915095806121826, 0.23720130324363708, -1.145269513130188, 0.5951610803604126, 0.0704185962677002, -0.057403240352869034, 0.3344801664352417, 1.6803584098815918, -1.6823608875274658, -0.9529657363891602, -0.9595740437507629, -1.0284327268600464, -0.27034395933151245, 0.6409467458724976, -0.9683565497398376, 0.5750844478607178, -0.5992966294288635, -0.09457740187644958, -0.3772925138473511, 0.6767615079879761, -0.4259900152683258, 0.10265936702489853, -0.3993995189666748, -0.03593619540333748, -0.04407941550016403, 1.4761571884155273, 1.1256518363952637, 1.1153645515441895, -0.17221467196941376, 1.6393500566482544, 0.031899645924568176, -0.71015864610672, 0.06217820942401886, 0.3363623321056366, -0.45850062370300293, -0.3264656960964203, 0.735748291015625, -0.7839437127113342, -1.4381992816925049, -0.36639487743377686, 0.8881544470787048, -0.9473684430122375, -0.262922078371048, -0.4649287164211273, -0.5133587718009949, -1.2127045392990112, 0.4921736717224121, 0.6187882423400879, -1.1398180723190308, -0.9375250339508057, -1.0522890090942383, 0.014457550831139088, -1.0849299430847168, -0.5307692289352417, 1.1042722463607788, 0.7936105132102966, 0.06597092002630234, 0.306841105222702, 0.2510250508785248, 0.6080061793327332, -0.194205641746521, 0.8205381035804749, 0.8245493769645691, -0.48900672793388367, 0.0689917504787445, -0.40905633568763733, -0.07115547358989716, 0.09383238106966019, -0.6039118766784668, -0.49755311012268066, -0.4581461548805237, 0.6514028906822205, 0.7612065076828003, 0.20809988677501678, 0.14977221190929413, 1.0488438606262207, -0.012711839750409126, 0.7575300335884094, 1.1691910028457642, -0.6715824604034424, -0.12424701452255249, 1.3346142768859863, 0.09104930609464645, -1.1336382627487183, -0.07538126409053802, 0.11189399659633636, 0.236802875995636, 0.15275420248508453, 0.6302176713943481, 0.6085044145584106, -0.09252399206161499, 0.7184222936630249, 0.26755836606025696, -0.37945985794067383, -0.4947577714920044, 0.12829388678073883, -1.4011770486831665, -0.1550668627023697, -0.8466867804527283, 0.010873749852180481, 0.7227352261543274, -1.3142246007919312, -1.3759011030197144, -0.18438273668289185, 0.044130317866802216, -0.5801359415054321, -0.3124048709869385, 0.3991784155368805, 0.3385436534881592, -0.32926636934280396, 0.7698515057563782, -0.36900368332862854, 1.459916591644287, -0.47890448570251465, -0.12453107535839081, -0.5601319670677185, -0.6004745364189148, 0.1783248484134674, 0.37708383798599243, -0.20695531368255615, -0.5629185438156128, 0.590980589389801, -1.0472009181976318, -0.1577252298593521, 0.18714985251426697, 0.1708875447511673, -0.29580655694007874, -0.6439710855484009, -0.6364837288856506, 0.468809574842453, 0.2668903172016144, 0.31883394718170166, -0.4854390323162079, -0.9834647178649902, -0.6237350702285767, 0.37976792454719543, -0.21841849386692047, 0.510168194770813, -0.2633693516254425, 0.5296983122825623, -0.5822945237159729, -1.260060429573059, -1.2507350444793701, -0.0064911385998129845, 0.8141804337501526, 0.5707946419715881, -0.11341097950935364, -0.28547462821006775, -0.26133331656455994, 0.332155704498291, -0.8896490931510925, -0.2255677431821823, 0.718844473361969, 0.09886234998703003, -0.12840594351291656, -0.8290292620658875, -0.1967087835073471, -0.5005814433097839, 0.16774699091911316, 0.7774906158447266, 0.10146532952785492, 1.1429942846298218, 0.06874305009841919, -0.643234372138977, -0.09466478228569031, 0.3080403506755829, 0.4897631108760834, 0.5828169584274292, 1.3018511533737183, 0.9356774687767029, -0.7565270066261292, -0.4001815915107727, 0.04892275854945183, 0.1657976359128952, -1.1570473909378052, -0.3068975508213043, -0.6119601130485535, 0.03714485839009285, 0.7310871481895447], [-0.7649194002151489, 2.4790279865264893, -2.220818281173706, -0.6594656109809875, 1.4432783126831055, 0.408124178647995, 0.712708055973053, -0.20736682415008545, -0.6210689544677734, -0.5364825129508972, -0.5012758374214172, 0.37325048446655273, -0.5268993973731995, 1.9823492765426636, 0.4944929778575897, 0.6652581095695496, 0.14577476680278778, -0.4764440953731537, -0.6634977459907532, 1.2771587371826172, -0.33483317494392395, -1.3660253286361694, -0.44311976432800293, 0.12494460493326187, 0.21728362143039703, 0.28967007994651794, -1.5606446266174316, 0.18854859471321106, -1.0100696086883545, -0.8902290463447571, 0.7798698544502258, -0.33747559785842896, 0.33855873346328735, -0.18480592966079712, -2.1352221965789795, -0.041038721799850464, 0.8537367582321167, 0.051081933081150055, -0.6400994062423706, 0.03407252952456474, 1.6994518041610718, -0.10049251466989517, 0.0697266235947609, -1.9706270694732666, 0.874595046043396, -0.5177466869354248, 1.265824794769287, -1.0415993928909302, -0.3482908606529236, -0.8922194242477417, 0.18709200620651245, -0.9250320196151733, 0.6825292706489563, 1.1199451684951782, 0.9978298544883728, -0.5743328332901001, 0.16409750282764435, 0.309013694524765, 0.5886062979698181, 0.6297309398651123, 1.1145422458648682, 0.07739844918251038, -0.27420902252197266, 0.5933502316474915, 0.7346831560134888, -0.09110582619905472, 0.13346001505851746, 0.7238999605178833, -0.6577013731002808, 0.6342921257019043, 0.5383192896842957, 0.470777690410614, -0.08461932092905045, -0.45334696769714355, -0.7863868474960327, 0.09115076065063477, 0.49410250782966614, 0.2243499755859375, -0.1105489507317543, 0.7115328907966614, -0.607400119304657, -0.2997519373893738, 0.5146082043647766, -0.6882553696632385, 0.05515044927597046, 0.15431992709636688, -0.292082816362381, -0.510942280292511, -0.15813186764717102, 2.1737403869628906, 0.21862097084522247, 0.35521695017814636, 0.1107143685221672, -0.6957531571388245, 0.19716957211494446, -0.06115960329771042, 0.24240557849407196, -0.8712714910507202, -0.5711269378662109, -0.4474700689315796, -0.5672576427459717, -1.2860664129257202, 0.7003530859947205, 0.631307065486908, 0.2380850464105606, 1.3555018901824951, -0.10783789306879044, -1.2271889448165894, -0.10293525457382202, 0.3256729543209076, 0.35016611218452454, 0.5264518857002258, -1.2320339679718018, -1.1805472373962402, -0.2664646506309509, 0.4590364992618561, 1.4553080797195435, -0.4956306517124176, 0.48198202252388, 0.5800690054893494, -0.07629109919071198, -0.9842737913131714, -0.6946113705635071, -0.1589886099100113, 1.069551706314087, 0.6792346835136414, -0.15718339383602142, -0.3527294397354126, 0.4462553560733795, -0.4240167438983917, 0.23693639039993286, -0.15764476358890533, -1.180497646331787, 0.8112637996673584, -0.3432237207889557, 1.1493220329284668, -0.5325625538825989, -0.8149620294570923, 0.730283796787262, 0.11422962695360184, 0.19115446507930756, -0.17625536024570465, -0.27346089482307434, -0.8315389752388, 0.32606640458106995, -1.115134596824646, 1.0011169910430908, -0.3951120376586914, -0.5830034017562866, 0.49261462688446045, -1.5277118682861328, 0.12308799475431442, 0.30064889788627625, 1.1381022930145264, 0.9508855938911438, 0.2005281001329422, 0.40325868129730225, -0.0649360790848732, 0.31615889072418213, 0.6882988214492798, 1.0070008039474487, 0.5547044277191162, -1.1438480615615845, 0.3442096710205078, 0.17436964809894562, -0.4612570106983185, 0.7536619901657104, 0.6794869899749756, 0.6642106175422668, 0.47301217913627625, -0.3056611120700836, -0.30699509382247925, -0.03822220861911774, 1.1550430059432983, -0.1761125922203064, -0.9458166360855103, 0.578859269618988, -0.28788065910339355, -0.8809565305709839, -1.3813979625701904, 1.0299458503723145, -0.361909419298172, -0.02388123609125614, -0.3382400572299957, 0.26381415128707886, -0.3212382197380066, 0.14463385939598083, -0.06022876501083374, -0.6321389675140381, -0.9104426503181458, -1.539475679397583, -0.41632089018821716, -1.501862645149231, 0.026297586038708687, -0.35217761993408203, -1.4547475576400757, 1.1693429946899414, -0.20555174350738525, -0.6614432334899902, 0.6595377326011658, 0.18626396358013153, -0.5688312649726868, -1.286778450012207, -0.2888837158679962, -0.014485415071249008, 1.0595406293869019, -0.222065731883049, 0.10759522020816803, -0.788342297077179, 0.4429525136947632, 1.493189811706543, 0.18875546753406525, -0.8349051475524902, 0.0714949443936348, -0.3572663962841034, -0.803231954574585, 0.15420538187026978, -0.5680145025253296, 0.28043001890182495, 0.39078137278556824, 0.3005886971950531, -0.10542072355747223, 0.2117011845111847, 0.2949691116809845, 0.4017200171947479, -0.8132923245429993, -0.40678417682647705, -0.8927428126335144, -0.8000749349594116, -0.10378775000572205, -1.1684021949768066, -0.8167775869369507, 0.4536396563053131, 0.45365840196609497, -0.9634456038475037, 0.4139113128185272, 0.053423959761857986, 0.12051618844270706, 0.02739294059574604, 1.2409311532974243, 0.2622545063495636, 0.7994769215583801, -0.07152583450078964, -0.030273789539933205, -1.0701836347579956, -0.23149101436138153, 0.7874334454536438, 0.1320551037788391, -0.10608254373073578, 1.0455514192581177, 0.6020119190216064, -0.09307889640331268, 0.6522156000137329, 0.006833601277321577, -0.0025509349070489407, -0.7180888652801514, 0.3190328776836395, 0.23110981285572052, -0.13785867393016815, 1.3120044469833374, 0.46623966097831726, -1.3900034427642822, -0.18277832865715027, 0.0037544872611761093, 0.10656686872243881, -0.6587857007980347, -0.18185807764530182, -0.848222017288208, 0.26051095128059387, -0.10480205714702606, 0.2115279883146286, 0.5021439790725708, -0.3107249438762665, 1.2077745199203491, -0.460068017244339, -0.7402142286300659, 0.3852164149284363, 0.9781234264373779, 0.5872896313667297, 0.7099516987800598, -0.07660019397735596, -1.428649663925171, -0.6242430210113525, 0.12426099181175232, 0.5050219893455505, -0.05516301840543747, -0.06597694009542465, 1.4287757873535156, 0.34922677278518677, -0.10235609859228134, 0.6324765682220459, 0.22421973943710327, 0.06159088388085365, -0.04442856088280678, 0.6730617880821228, 0.48725542426109314, 0.6751677393913269, -0.7354029417037964, -0.8574385643005371, -0.2411658614873886, -0.10930763930082321, 0.7093014717102051, 0.30038756132125854, 1.3347358703613281, -0.47010546922683716, -0.07107225805521011, -0.009277936071157455, -0.1827252209186554, -0.47694408893585205, -0.18009434640407562, -0.7845717072486877, -0.9018213748931885, 0.05866873636841774, -0.3804919719696045, -0.1652674823999405, 0.3205263018608093, 0.3550955355167389, 1.3033215999603271, -0.04366161301732063, -0.11667530238628387, -1.076521635055542, -0.24476443231105804, -0.5743125081062317, -0.5929208397865295, 0.5463268160820007, 1.864727258682251, -1.0074235200881958, 0.061340052634477615, 0.5398242473602295, -0.6234844326972961, 0.3798283040523529, 0.01831408590078354, -0.06916845589876175, -1.1423143148422241, -0.18346062302589417, -0.5140070915222168, 1.6883403062820435, 0.07735393196344376, -0.8920544981956482, -0.46903103590011597, 0.36712315678596497, 1.1863914728164673, -0.06973718851804733, 0.14267583191394806, 0.5681400299072266, -0.8403348326683044, 0.10632339119911194, -0.3824824094772339, 0.892512857913971, 0.32575610280036926, -1.0958679914474487, -0.3565131723880768, -0.014596759341657162, -0.34039565920829773, -0.43221136927604675, -0.050337862223386765, -0.344808429479599, 0.5353666543960571, -0.3321417272090912, 0.13706529140472412, 1.2238582372665405, -0.698996901512146, 0.1828337013721466, -0.9857528805732727, 0.9108787178993225, 0.19445587694644928, 1.2774783372879028, 0.8291603922843933, 0.2577430009841919, 0.559038519859314, 0.3610922396183014, -0.4184723496437073, 0.26054805517196655, 0.7727867960929871, -0.16215276718139648, -1.0033769607543945, -1.0246992111206055, -0.4792570471763611, 0.1517907828092575, -0.6489312052726746, -0.26385682821273804, 0.3844117522239685, -0.7903397679328918, -1.0718010663986206, 1.0590741634368896, 0.6407283544540405, -0.3670676052570343, -0.22202761471271515, -0.11992155760526657, 0.8867413401603699, -0.5901946425437927, 0.3141702711582184, -0.18776097893714905, 0.1056133359670639, -0.19494469463825226, -0.6055932641029358, -1.2678964138031006, -0.9323115944862366, 0.16869641840457916, 1.082732915878296, -1.2082549333572388, -0.3140445649623871, -0.02359742484986782, 0.3318338692188263, 0.9102882742881775, 0.0067736078053712845, 0.41420677304267883, 0.4681871831417084, -0.07492201775312424, 0.6229435801506042, 1.0116019248962402, 1.1180975437164307, -0.0036054099909961224, -0.048914823681116104, -0.48971039056777954, -0.010614006780087948, 0.5113957524299622, -0.884983241558075, 0.02124783582985401, 0.19018852710723877, -0.8535968661308289, -0.24383029341697693, 0.25663354992866516, 0.13170477747917175, 1.2186154127120972, 0.5876305103302002, 0.6297159790992737, 0.5368555784225464, 0.23927250504493713, -0.6010329127311707, -0.39941683411598206, 0.06451579928398132, -0.11844661086797714, -0.623676061630249, 0.06534551829099655, 0.43929755687713623, 0.4094257950782776, -0.0857226774096489, -0.33657699823379517, 0.6754085421562195, -0.097539022564888, -0.5710791349411011, -0.2511316239833832, 0.20065967738628387, 0.9627484679222107, 1.2636665105819702, 1.5976516008377075, -0.37807995080947876, -1.5287933349609375, 0.8981335759162903, -0.6190513372421265, 0.12391025573015213, 0.8125998973846436, 0.38840827345848083, 1.7531757354736328, -1.1327506303787231, -0.7362683415412903, 0.6239657998085022, -0.16783680021762848, 0.1700192093849182, -0.38897785544395447, 0.7270027995109558, -0.3503451645374298, -0.1568753719329834, 1.1910743713378906, 0.05160706862807274, 0.8709784746170044, -0.3755112886428833, 0.6043208241462708, -0.052022162824869156, -0.24691563844680786, 0.2574620544910431, -0.6487954258918762, 0.4748481810092926, -0.36782094836235046, 0.2710762619972229, 0.9335544109344482, 0.14471708238124847, 0.47070083022117615, 1.3129886388778687, 0.27041107416152954, -1.4719138145446777, 0.15284501016139984, -0.7487406134605408, -0.31560274958610535, 0.0065343924798071384, 0.04188684746623039, -0.0802546888589859, -1.0146548748016357, -0.36091354489326477, -0.06473392993211746, -0.34082940220832825, -0.9916899800300598, -0.7169895172119141, -0.5270101428031921, 0.639970600605011, 0.18756702542304993, 1.0608360767364502, 0.41958221793174744, 0.6664689779281616, 0.6744211316108704, 0.31721392273902893, -1.0172820091247559, -0.061662912368774414, -0.00963938981294632, 0.03569108620285988, -0.3266216814517975, -0.5341108441352844, -0.5776461958885193, 0.8217843770980835, 0.4511914551258087, 0.29694899916648865, 0.3288562595844269, 1.0855549573898315, 0.9926614761352539, -0.31135284900665283, -0.7437666654586792, -0.30519601702690125, -0.3110855221748352, 1.5586936473846436, 0.8319690823554993, -0.8370708227157593, -0.43441152572631836, -0.5205145478248596, -2.323834180831909, 1.5958887338638306, -0.21954753994941711, -0.8888206481933594, 0.9144603610038757, 0.23905444145202637, 0.29525870084762573, 0.7498184442520142, -0.0761881023645401, 0.013845138251781464, 0.25948914885520935, -0.4570367932319641, -0.7347927689552307, 0.3077743649482727, 0.03689330071210861, 0.0005068590398877859, -1.6435273885726929, 0.2452026605606079, 0.1021452248096466, -0.6137007474899292, 0.9743183255195618, 0.5600924491882324, 0.37120506167411804, 0.13142672181129456, -0.21861635148525238, -0.2662394344806671, 0.5441733598709106, -0.2350347936153412, 0.22130174934864044, -0.5160596370697021, 0.28400519490242004, 0.1795896738767624, -0.11468935757875443, -0.46232372522354126, 0.45990151166915894, -0.11543173342943192, -0.10507262498140335, -0.6108360290527344, 0.6308832168579102, 1.043999195098877, -0.6077004075050354, 0.32762250304222107, -0.2426607608795166, -1.168096899986267, -0.8762409687042236, -0.49531203508377075, 0.8219517469406128, -0.9678253531455994, 0.06660202890634537, -0.7773784399032593, -0.4069754183292389, -0.25820910930633545, 0.581953227519989, -0.09420575946569443, -1.492296576499939, -1.6094958782196045, -0.29114294052124023, 0.17475281655788422, 0.36988022923469543, -0.7163670659065247, 1.1942999362945557, 0.01002766378223896, -1.3951643705368042, 0.9087938070297241, -0.22366616129875183, -1.3969224691390991, -0.7534480094909668, -1.2137138843536377, 0.8478817343711853, 0.1158866360783577, -0.6295368075370789, 0.15982945263385773, 0.5788632035255432, -1.402449131011963, -0.8634750843048096, -0.2672297954559326, -0.37603864073753357, 0.680700421333313, 0.44516825675964355, -0.43691036105155945, 0.8713770508766174, 0.002583000808954239, -0.2572902739048004, -0.16733576357364655, 0.4378628730773926, -1.3781377077102661, 0.20728753507137299, 0.4326435923576355, 0.353603333234787, 0.31623896956443787, 2.105255603790283, 1.336608648300171, 1.1226778030395508, -0.8716340661048889, 1.7453553676605225, -0.4762609899044037, -0.5879030227661133, -0.1289815902709961, 0.23139439523220062, -1.654962182044983, -1.0865468978881836, 0.5594034194946289, -1.1004548072814941, -1.033743143081665, 0.23564240336418152, 1.2969387769699097, -0.4764823615550995, -0.11416836827993393, -0.191053569316864, 0.54887855052948, -1.196495771408081, 1.0645517110824585, 0.6727068424224854, -1.361617088317871, -0.07111872732639313, -0.30614280700683594, 1.251572847366333, -0.8347988724708557, 0.37302252650260925, 0.4304434061050415, 0.6019600033760071, -0.3528505563735962, 0.24717387557029724, 0.26547443866729736, 0.2608877122402191, -1.0246955156326294, 1.1197854280471802, 0.7056267857551575, -0.4730151891708374, 0.03575733304023743, 0.6711963415145874, -0.13961981236934662, 0.29131579399108887, -0.15493392944335938, 0.07887300848960876, -0.579892635345459, 0.7790151238441467, 0.17590832710266113, 0.2824185788631439, -0.20517970621585846, 0.9999892115592957, 0.09965954720973969, 0.7470842599868774, 1.239811897277832, -0.9346896409988403, -0.46685129404067993, 0.932605504989624, 0.5001912713050842, -0.594331681728363, 0.14453931152820587, 0.4654100239276886, -0.29263320565223694, 0.23759271204471588, 0.8469697833061218, 0.5181365609169006, -0.7112112045288086, 0.6524080634117126, 0.38516566157341003, -0.535884439945221, -0.5868843793869019, -0.06198957562446594, -1.636223554611206, -0.0580270029604435, -0.3822576105594635, -0.3461126983165741, 0.6777318120002747, -0.37797513604164124, -1.778073787689209, -0.40185555815696716, -0.7777227163314819, -0.40570926666259766, 0.03830066695809364, -0.1547538787126541, 0.03268156945705414, -0.2346331775188446, 1.2383244037628174, -0.16100139915943146, 2.3410892486572266, -0.022558411583304405, 0.03646191582083702, -0.08871327340602875, 0.4236946105957031, 0.16633340716362, 0.3807854652404785, -0.21234381198883057, -1.048617959022522, 0.7826122045516968, -0.8697302937507629, -0.4247097373008728, 0.512497067451477, 0.23377203941345215, 0.6761561036109924, -0.4520946443080902, -0.4054476320743561, 0.7344694137573242, 0.5006352066993713, 0.953070342540741, -1.0278793573379517, -1.1524553298950195, -0.6871097683906555, 0.11977832764387131, -0.3830382227897644, 0.4584328532218933, -0.32487037777900696, 0.29822516441345215, 0.9952949285507202, -0.8895693421363831, -0.3758507966995239, -0.15945956110954285, 0.700325071811676, -0.27220600843429565, 0.34867072105407715, -0.22921064496040344, -0.23723119497299194, 0.34822919964790344, -0.8697436451911926, 0.46078088879585266, 0.15480327606201172, -0.4406888484954834, 0.2614502012729645, -0.3313191831111908, -0.5482163429260254, -0.8124369978904724, 0.02967584878206253, 0.46597450971603394, 0.4552929103374481, 0.018739696592092514, -0.017277128994464874, -1.0594714879989624, 0.3722946047782898, 0.645911455154419, -0.12622441351413727, 0.646531343460083, 1.7345106601715088, 0.8810498118400574, -0.3662629723548889, -0.18359620869159698, -0.3065931797027588, 1.1069188117980957, -0.7831209897994995, -0.16031916439533234, -0.4409601390361786, 0.04609034210443497, -0.7559508085250854], [0.7504335045814514, 1.689741849899292, -2.3607563972473145, 0.19870947301387787, 0.2767174243927002, 0.6186822056770325, 0.790856122970581, -0.4444393813610077, 0.12144254893064499, -0.6816451549530029, -0.5905376672744751, 0.18071922659873962, -0.3686829209327698, 0.14445848762989044, 0.12069172412157059, 0.7468646764755249, 1.0176640748977661, -0.31719839572906494, -0.6082623600959778, 1.7990318536758423, -0.2425176203250885, -1.1751928329467773, -0.42213350534439087, 0.2080996185541153, 0.06806621700525284, 0.22483985126018524, -1.335637092590332, 0.18242178857326508, -1.6308504343032837, -0.5295403599739075, 1.6039468050003052, -0.49958840012550354, 0.7745769023895264, 0.3707874119281769, -1.8113714456558228, 0.8835211396217346, 0.9444365501403809, 0.5680149793624878, -0.2566547989845276, 0.36664360761642456, 1.5274215936660767, 0.35006284713745117, -0.03407268598675728, -1.619950294494629, 0.26678770780563354, -0.7741285562515259, 1.325928807258606, -0.9473730325698853, 0.739611804485321, -0.4877997636795044, 1.1154159307479858, -0.15268132090568542, -0.3529738783836365, 0.9109992980957031, 0.6550408005714417, -1.0381215810775757, 0.06922295689582825, 0.36701443791389465, 0.37684008479118347, 0.16815978288650513, 1.401371955871582, -0.7142707705497742, 0.6837170720100403, 0.6063942909240723, 0.29710426926612854, -1.156261920928955, 0.35722100734710693, 0.32891836762428284, -0.05090983957052231, -0.03782209753990173, 0.8117111325263977, 1.0244803428649902, -0.28271055221557617, 0.8986806273460388, -0.9608955979347229, 0.9229522943496704, 0.6119371652603149, 0.2938145399093628, -0.23323044180870056, 0.0438908115029335, 0.36149105429649353, -1.0690929889678955, 0.3930628001689911, -0.43660491704940796, -0.27584943175315857, 0.3265365660190582, 0.44617578387260437, -0.5092285871505737, -0.451593816280365, 0.9801449179649353, -0.005818675272166729, 0.03860282152891159, 0.7798327803611755, -0.264629602432251, 0.15530632436275482, 0.22933518886566162, -0.8871899843215942, -1.1718060970306396, -0.6947609782218933, -0.7753238081932068, -0.3752211332321167, -0.23943088948726654, 0.6459067463874817, 0.7678413987159729, 0.3506700396537781, 0.8649312853813171, 0.4641495943069458, -1.1294596195220947, 0.6896557807922363, 0.37303635478019714, -0.5834513306617737, 0.17412373423576355, -0.8930506706237793, -1.8084774017333984, -0.8253180384635925, 0.9752897620201111, 1.5679309368133545, -0.05307117849588394, 0.8424788117408752, 0.06909483671188354, -0.5615843534469604, -0.6616057753562927, 0.14935633540153503, -0.027365608140826225, 1.3380478620529175, 0.722282350063324, -0.14781785011291504, -0.1152934581041336, 0.11319281160831451, 0.0845353901386261, 0.34421947598457336, -0.13065573573112488, -0.2532859742641449, 0.16395089030265808, -0.22442536056041718, 0.5322527885437012, -1.4693877696990967, -1.1732509136199951, 0.4470865726470947, 1.04398775100708, 0.38792985677719116, -0.10503019392490387, 0.14480793476104736, -0.1839619129896164, 0.13787251710891724, -0.22880537807941437, 0.39868879318237305, -0.31491023302078247, -0.30856838822364807, 0.5611141324043274, -1.2180255651474, 0.5128363370895386, -0.11804164201021194, 0.6462087631225586, 0.3622162342071533, -0.005954283755272627, 0.3314397931098938, -0.24795298278331757, 0.24157743155956268, 0.3702687919139862, 0.9087294340133667, 0.4437817633152008, -0.4059934616088867, -0.0582679882645607, 0.865790843963623, 0.014936540275812149, 0.2389330267906189, -0.19242453575134277, -0.16234295070171356, 1.133326768875122, 0.15124641358852386, -0.4122910499572754, -0.04268333315849304, 0.6076130270957947, 0.2693651020526886, -0.592223584651947, 0.7222095131874084, -0.4736066460609436, -1.5558792352676392, -1.0139206647872925, 1.016671895980835, -0.4572919011116028, 0.29125699400901794, -0.019939614459872246, 0.5613739490509033, -0.4294058382511139, 0.18850041925907135, -0.20466020703315735, -0.5768039226531982, -0.8429688811302185, -0.42388200759887695, 0.3260466158390045, -1.271389126777649, -0.7036328911781311, -0.5344959497451782, -0.9140164852142334, 1.2085717916488647, -0.39700961112976074, -0.7560828924179077, 0.28087788820266724, 0.2600965201854706, -0.5169994235038757, -1.3793281316757202, -0.003347208956256509, -0.36985960602760315, 1.5799168348312378, -0.49869394302368164, -0.1383741796016693, -1.2572438716888428, -0.017204180359840393, 1.0537887811660767, -0.662290632724762, -1.1396403312683105, 0.14408718049526215, -0.17464858293533325, -0.8458508253097534, 0.14103963971138, -0.5232548117637634, -0.4426005184650421, -0.6481804251670837, 0.10620176047086716, 0.5412424206733704, 0.19594459235668182, -0.6383545398712158, 0.2621840536594391, -0.4899895489215851, -0.05691233277320862, -0.7229459881782532, 0.171064093708992, -0.3831273913383484, -1.07696533203125, -0.7316064238548279, 0.25931400060653687, 0.6736383438110352, -1.3949483633041382, 0.27648526430130005, -0.043398648500442505, 0.053154632449150085, 0.11609719693660736, 1.2920223474502563, 0.6617720723152161, 0.5133626461029053, -0.5795900821685791, 0.7851282358169556, -0.7034751176834106, -0.7480969429016113, 0.749515175819397, -0.33780229091644287, -0.07456060498952866, 1.5145539045333862, 0.9622921943664551, 0.9676850438117981, 0.1878441721200943, -0.36156219244003296, -0.2538236379623413, -0.2256891131401062, -0.6818530559539795, 0.2938174307346344, -0.8131480813026428, 1.6068252325057983, 0.5693600177764893, -0.7400466799736023, 0.605400800704956, -0.4989689886569977, 0.10111706703901291, -0.8605419993400574, -0.2537168860435486, -0.35685017704963684, 0.5790306329727173, -0.5826249718666077, -0.09241360425949097, 0.5126715302467346, 0.6448574662208557, 0.8588740229606628, -0.14179803431034088, -0.3786434531211853, 0.20853880047798157, 0.6175076365470886, -0.23749005794525146, 1.0889027118682861, -0.7007350325584412, -0.6412643194198608, -1.30219304561615, -0.14989106357097626, 0.0008737463504076004, -0.13505248725414276, 0.4226876199245453, 1.645176887512207, 0.13073137402534485, -0.6493910551071167, 0.10207628458738327, 0.1596752554178238, 0.12505288422107697, -0.3250342309474945, 0.993736207485199, 0.11326295137405396, 0.5904319286346436, -0.8934465050697327, -1.1035466194152832, 0.13878382742404938, 0.3970980644226074, 0.8441182971000671, 0.4024771451950073, 1.2476005554199219, -0.3341819643974304, 0.054096248000860214, -0.6500962376594543, 0.14137206971645355, -1.1138864755630493, -0.2504931390285492, -0.04887927323579788, -0.7480760216712952, -0.26706841588020325, -0.49825021624565125, -0.26279181241989136, 0.7149470448493958, 0.5108768343925476, 0.5587802529335022, 0.6412162780761719, 0.2725962698459625, -1.4087607860565186, 0.1461978554725647, -0.2561440169811249, -0.918258547782898, 0.517292320728302, 1.6168344020843506, -0.9684932827949524, 0.4084591269493103, -0.07679546624422073, -0.17017421126365662, -0.3347622752189636, -0.06661687791347504, 0.5035341382026672, -1.001155138015747, -0.24299050867557526, 0.2092919647693634, 0.6878076791763306, 0.28949227929115295, -0.23064938187599182, -0.22490744292736053, 1.1877591609954834, 1.2697386741638184, -0.2356845736503601, -0.23309551179409027, 0.16842404007911682, -0.5010843276977539, -0.5732119083404541, -0.0882287472486496, 1.170897364616394, -0.2780255973339081, -0.8534107208251953, -0.6724709868431091, -0.23774924874305725, -1.02273690700531, -0.12604016065597534, 0.30265355110168457, -0.45711690187454224, 0.7111272215843201, -0.4803682863712311, 0.5415697693824768, 0.7415429949760437, 0.16681639850139618, -0.1432323157787323, -1.2885380983352661, 0.8741559982299805, 0.2865985333919525, 1.3105897903442383, -0.5400766730308533, 0.34354326128959656, 0.5576730966567993, -0.4075947105884552, -0.16203926503658295, 0.1587173491716385, 0.7597883343696594, 0.31850528717041016, -0.6110297441482544, -0.1491534411907196, -0.6717999577522278, 0.19355008006095886, 0.04731752723455429, 0.06164296343922615, 0.33586567640304565, -0.9597445130348206, 0.19216981530189514, 1.0301234722137451, 0.6636548638343811, -0.19468052685260773, -0.5495100617408752, -0.437660276889801, 0.2821667194366455, -0.9151266813278198, 0.37890735268592834, -0.1270136535167694, -0.605991780757904, 0.6605161428451538, -1.1286717653274536, -0.6571959257125854, 0.09185203909873962, 1.0153586864471436, 1.2884547710418701, -1.2093775272369385, -0.33842307329177856, -0.7075318694114685, -0.2555044889450073, 0.5133722424507141, 0.7704019546508789, 0.2839670479297638, 0.6636375784873962, -0.228105828166008, 0.41550958156585693, -0.050659600645303726, 1.3586119413375854, -0.25667062401771545, -0.12357170879840851, 0.4475741386413574, 0.0429488942027092, 0.09934714436531067, -0.7655459046363831, 0.3816955089569092, 0.2660703659057617, -0.5206890106201172, -0.4060838222503662, 0.25679704546928406, -0.4515193998813629, 1.6522055864334106, 0.7011063694953918, 0.10082700848579407, -0.4729602634906769, 0.22494074702262878, -0.8451823592185974, 0.6927960515022278, 0.5089006423950195, -1.3511604070663452, -0.7997052073478699, -0.005263104569166899, 0.37778156995773315, 0.5867313146591187, 0.2758883833885193, 0.1563410758972168, 0.7422108054161072, 0.11824077367782593, 0.1435486227273941, 0.5932440161705017, 0.5226824879646301, 1.3705366849899292, 0.31571102142333984, 1.1584031581878662, 0.12944908440113068, -0.5754334330558777, 1.0158271789550781, -0.2752155661582947, 0.1558026373386383, 0.6420750021934509, 0.31766989827156067, 0.8038639426231384, -0.9401344656944275, 0.06525032222270966, 0.9185210466384888, 0.16847702860832214, 0.8555944561958313, 0.13578857481479645, 0.48966270685195923, -0.17397437989711761, 0.16680379211902618, 0.9742014408111572, -0.03936086595058441, 0.4689605236053467, 0.1434505134820938, 0.8747742772102356, -0.04630795866250992, -0.7934767603874207, 0.54790860414505, -0.9869194626808167, 0.537727952003479, -0.55904221534729, -0.8302085399627686, 0.12706635892391205, 0.6743824481964111, 0.8628690242767334, 1.0227717161178589, -0.34230339527130127, -0.19249315559864044, 0.31305909156799316, -1.0371606349945068, 0.4654666781425476, -0.5627639293670654, 0.3083131015300751, -0.8158736228942871, 0.26558420062065125, 0.5860747694969177, -0.04916249215602875, -0.18042664229869843, -0.681204080581665, -1.0929045677185059, -0.8962419033050537, 0.9972810745239258, 0.5335223078727722, 0.6373669505119324, 0.2477426677942276, 0.33459433913230896, 0.5156333446502686, 0.315009742975235, -1.5199589729309082, -0.29039981961250305, 0.43233540654182434, 0.34459125995635986, -0.26089656352996826, -0.5595566034317017, -0.9297928810119629, 0.11775553971529007, -0.01813359558582306, -0.19273430109024048, -0.3005933165550232, 0.9933918714523315, 0.8800352215766907, -0.3076339662075043, -1.0492453575134277, 0.4757658839225769, -1.4099783897399902, 0.9166457653045654, 0.02375977858901024, -0.4297330677509308, -0.5681005716323853, -1.03632390499115, -1.2579950094223022, 1.1956268548965454, 0.1259678155183792, -0.0707540214061737, 0.6108753681182861, 1.0478160381317139, -0.027683299034833908, 1.1115845441818237, 0.17136506736278534, 0.3046655058860779, -0.4200807511806488, -0.17358511686325073, 0.06278597563505173, -0.009183445945382118, 0.5237331390380859, -0.989968478679657, -1.231292963027954, 0.906999945640564, 0.13915705680847168, -0.07676529884338379, -0.8661406636238098, 0.855338454246521, 0.0666026845574379, 0.8561550974845886, 0.16994714736938477, 0.2364019751548767, 0.6089984774589539, -1.259565830230713, -0.4826389253139496, 0.4042101800441742, 0.6062143445014954, 0.19452382624149323, 0.4217888414859772, 0.7865745425224304, -0.7737679481506348, -0.4189031422138214, -0.07126986980438232, -1.069191336631775, 0.3400746285915375, 0.17271876335144043, 0.31084054708480835, 0.5510172247886658, -0.5394756197929382, -0.31094977259635925, -1.0220530033111572, -0.6004124879837036, 1.1376398801803589, -0.6489476561546326, -0.8781231641769409, -0.3239724338054657, -0.4104510247707367, -0.15643423795700073, 0.09415005892515182, -0.3853599727153778, -0.8458418846130371, -1.3615344762802124, 0.011305471882224083, -0.30538323521614075, 0.8098970055580139, -0.17376410961151123, 0.5670691728591919, -0.34664228558540344, -0.9553684592247009, -0.3122172951698303, 0.30790281295776367, -2.2378153800964355, 0.02819063700735569, -0.4745297431945801, 0.4941195249557495, -0.09379834681749344, -0.14899280667304993, -0.08681046217679977, 1.2939651012420654, -1.399700403213501, -0.5507564544677734, -0.582623302936554, -0.41761314868927, 0.7761201858520508, 1.2824645042419434, -0.8017466068267822, 0.8385739922523499, -0.46855872869491577, 0.27335524559020996, -0.6353262662887573, 0.5129974484443665, -0.8913396000862122, 0.26811766624450684, -0.046373363584280014, 0.21139344573020935, 0.12051323056221008, 1.9173073768615723, 0.7943551540374756, 0.6743319034576416, 0.06734073907136917, 0.9129050374031067, -1.243967890739441, -0.21671772003173828, 0.07452426850795746, 0.45078831911087036, -0.6613683104515076, -0.607411801815033, 0.4480733573436737, -0.6313478946685791, -1.3841625452041626, -0.5613203644752502, 0.5531311631202698, -0.6445790529251099, 0.5200105905532837, -0.6519443988800049, -0.26511162519454956, -0.5150566697120667, 0.5391306281089783, 0.32811519503593445, -0.5345929861068726, -0.2272442877292633, -0.46908411383628845, 0.789429247379303, -0.5007205605506897, -0.14175571501255035, 1.0212234258651733, 0.24997152388095856, -0.847073495388031, -0.3753597140312195, 0.13867641985416412, 0.48016682267189026, -0.35932886600494385, 1.3443430662155151, 1.0410341024398804, 0.46856826543807983, -0.2049187868833542, -0.23703746497631073, 0.01174258068203926, 0.4749997854232788, -0.6658336520195007, -0.2630385756492615, -0.2369338870048523, 0.5537044405937195, -0.003368138102814555, 0.08426576852798462, 0.6693430542945862, 0.8590095639228821, -0.13432736694812775, 0.5146406888961792, 0.4344784915447235, -0.9792851805686951, -0.1608411818742752, 1.4213778972625732, 0.6891998648643494, -1.1844089031219482, 0.3226476013660431, 0.07035671174526215, 0.17725317180156708, 0.5058701038360596, 0.6285148859024048, 0.17111550271511078, -0.4028202295303345, 0.6764070987701416, 0.8949289321899414, -0.8955102562904358, -0.2706959843635559, -0.5373691320419312, -1.204752802848816, -0.02082490548491478, -1.0262819528579712, -1.2547221183776855, 0.4788341224193573, -1.6099153757095337, -1.2334734201431274, 0.29345670342445374, -0.4898206889629364, -0.09753071516752243, -0.7924814224243164, 0.45229798555374146, 0.6775935292243958, -0.7031345367431641, 0.5302512049674988, -0.3865011930465698, 1.4040542840957642, -0.3014121651649475, -0.2714996337890625, -0.8549771904945374, -0.3990103602409363, 0.48056185245513916, -0.2311154454946518, -0.02829698473215103, -0.02449602074921131, 0.5603448748588562, -0.4075194001197815, -0.6352673172950745, -0.22188524901866913, 0.32945141196250916, 0.00423634797334671, -0.19346120953559875, 0.03423279523849487, 0.6794030666351318, 0.4719393849372864, 0.48174580931663513, -0.9903152585029602, -0.5252503752708435, -1.0698045492172241, 0.47659537196159363, -0.3673611581325531, 0.5859585404396057, -0.4429267346858978, 0.3810824155807495, 0.2525222599506378, -0.6349114775657654, -0.4921755790710449, -0.5852593183517456, 0.28848758339881897, 0.4639725983142853, -0.47604039311408997, -0.4404703974723816, -0.2605415880680084, 0.39788979291915894, -1.0494167804718018, -0.39817702770233154, -0.04368015006184578, 0.25369587540626526, 0.5074400305747986, -0.6379926800727844, -0.4294309616088867, -0.6004143357276917, 0.2957930266857147, 0.6130362749099731, 0.8144111633300781, 0.36435574293136597, 0.3368076682090759, -0.7970595359802246, 0.5903449058532715, 0.6046696305274963, 0.36327633261680603, -0.03798370808362961, 0.7689827680587769, 0.9330302476882935, -0.6172649264335632, -0.45454472303390503, -0.541027307510376, 0.2913293242454529, -1.0219323635101318, -0.10272563248872757, -1.0679879188537598, -0.13301321864128113, -0.15965121984481812], [0.4934995472431183, 1.1374735832214355, -2.615983009338379, 0.4353025257587433, 0.9110274910926819, 0.9075161218643188, 0.5224610567092896, 0.3975931406021118, -0.0006017535924911499, -0.22775974869728088, -0.9430657625198364, 0.3153951168060303, -0.15697766840457916, 0.06726504117250443, -0.1831335425376892, 0.6808704733848572, 0.6106845140457153, 0.2740751802921295, 0.5368601083755493, 1.3537812232971191, -0.6891371011734009, -0.595007061958313, -0.8034354448318481, 0.3528822064399719, -0.231909841299057, 0.2445254921913147, -1.8751882314682007, 0.36098891496658325, -1.1930923461914062, -1.1773567199707031, 1.156862735748291, -1.053160548210144, 0.029034171253442764, -0.32029905915260315, -1.5036334991455078, -0.09624707698822021, 0.4397602081298828, -0.1740018129348755, -0.20918160676956177, -1.2341326475143433, 1.4889028072357178, 0.9356822967529297, -0.7306705713272095, -1.2087950706481934, -0.09023240208625793, 0.022127509117126465, 1.4724749326705933, -0.9157128930091858, 0.27028003334999084, -0.2779489755630493, 0.7813787460327148, 0.6016747951507568, 0.5880955457687378, 1.4582550525665283, 0.637021541595459, -0.8726344108581543, 0.5845130681991577, 0.6950201988220215, 0.311301589012146, 0.2095206081867218, 1.2197414636611938, -0.9516311883926392, 0.8858785629272461, 0.9875635504722595, 0.1683221161365509, -0.45513999462127686, 0.41848891973495483, 0.18803347647190094, 0.5204953551292419, -0.5220601558685303, 0.7544479966163635, 0.5142907500267029, 0.13427916169166565, 0.514228880405426, -1.1035873889923096, 0.07315999269485474, 1.012553095817566, 0.07288628071546555, -0.3677799701690674, 0.12781041860580444, -0.3749648928642273, -0.4261782765388489, 0.28439533710479736, -0.4447248578071594, -0.5076330900192261, 0.643638014793396, 0.1096593365073204, -0.5279079675674438, 0.05877513438463211, 1.0788533687591553, 0.19021081924438477, 1.1284611225128174, 0.6472841501235962, 0.3117874264717102, -0.2144204080104828, -0.2795799970626831, -0.5700259208679199, -0.7976300716400146, -0.47263744473457336, -1.3100954294204712, -0.4132120609283447, 0.045862700790166855, 0.6301048994064331, 0.588711142539978, -0.2551227807998657, 1.2377352714538574, 0.09816683083772659, -1.166703701019287, 0.5946750640869141, -0.02303718775510788, -0.32381904125213623, 0.06588417291641235, -0.4348669648170471, -1.4601681232452393, -0.23248541355133057, 0.9199464321136475, 1.7310240268707275, 0.5399475693702698, 1.0821534395217896, 0.9394726753234863, -0.4100605845451355, -0.2541923522949219, -0.0599723681807518, 0.04652812331914902, 0.842807948589325, 0.606156587600708, -0.8160338997840881, -0.47887563705444336, 0.9471061825752258, -0.2648474872112274, 0.8763704299926758, -0.0606328621506691, 0.5660324096679688, 1.1049927473068237, -0.7430588006973267, 0.46992725133895874, -0.27195313572883606, -0.8239504098892212, 0.1762394905090332, 0.70196533203125, 0.8421833515167236, -0.2177850753068924, -0.019963044673204422, -0.5889990329742432, 0.007347438484430313, -0.20494578778743744, 0.40864723920822144, -0.5107896327972412, -0.8129923939704895, 1.2891892194747925, -0.829627513885498, 0.708783745765686, 0.6470333933830261, 0.6735018491744995, 0.6372513771057129, -0.5636424422264099, 1.299467921257019, -0.47821784019470215, 0.3989684581756592, 0.24287867546081543, 0.9764899015426636, 0.5095363855361938, -0.37578946352005005, -0.08227936923503876, 0.5110040903091431, -0.3828067481517792, 0.45567578077316284, 0.080407053232193, -0.34048259258270264, 1.190159797668457, -0.2058432251214981, -1.1380441188812256, -0.25998806953430176, 0.6894172430038452, 0.02262183092534542, -0.6075332164764404, 0.47028428316116333, -0.4373622238636017, -1.4052062034606934, -0.37367749214172363, 1.651094913482666, -0.3348401188850403, 0.3211783170700073, 0.26836907863616943, 0.246662437915802, 0.21286514401435852, -0.238918736577034, -0.6815578937530518, -0.5199477672576904, -0.940482497215271, -0.5430505871772766, 0.37194108963012695, -1.4856882095336914, 0.23761244118213654, -0.06241844967007637, -1.0847814083099365, 0.39043641090393066, -1.10889732837677, -0.44326087832450867, 1.1822229623794556, 0.38069790601730347, 0.11510799080133438, -0.5594048500061035, -0.35173898935317993, -0.4288681745529175, 1.0650111436843872, -0.19075801968574524, 0.2815222144126892, -0.4971165060997009, 0.3824034631252289, 0.7778891324996948, -1.0513768196105957, -1.3662691116333008, 0.1839534193277359, 0.4957374334335327, -1.224216341972351, 0.6046725511550903, -0.2048901915550232, -0.12197840213775635, -0.7280256748199463, 0.13316945731639862, 0.8133536577224731, 0.3957168459892273, 0.15098141133785248, 0.4618993401527405, -0.09235435724258423, -0.12125781923532486, -1.2923963069915771, 0.29256707429885864, -0.7178041338920593, -0.5416393876075745, -1.1011137962341309, 0.2386331856250763, 0.45189741253852844, -1.1559009552001953, 0.2555781602859497, 0.2631351351737976, 0.11615709960460663, -0.08670182526111603, 1.5959899425506592, 0.41540032625198364, 1.0384297370910645, -0.6261606216430664, 0.003989465534687042, -1.1420648097991943, 0.0735776498913765, 1.0931248664855957, -0.27909135818481445, 0.12465696781873703, 1.7760597467422485, 1.0377131700515747, -0.06139405816793442, 0.4961504340171814, -0.6970357894897461, -0.1812095046043396, -0.4632145166397095, -0.27811264991760254, 0.604106068611145, -0.7016574144363403, 1.7578482627868652, 0.7723181247711182, -0.7078676223754883, 0.3378506898880005, 0.605660080909729, 0.08156754821538925, -0.12454935163259506, -0.2322775423526764, -0.7304308414459229, 0.1751514971256256, -0.6838860511779785, 0.478488564491272, 0.06947377324104309, 0.46331119537353516, 0.8480727672576904, -0.34821444749832153, -0.7009071111679077, 0.2937343120574951, 0.2439555525779724, -0.8641935586929321, 1.0149058103561401, -0.5250282287597656, -1.249940276145935, -0.338589608669281, -0.045416343957185745, 0.35182660818099976, -0.2628633379936218, 0.029915576800704002, 1.2021071910858154, 0.6608076095581055, -0.04271204397082329, 0.009018510580062866, 0.4446493983268738, 0.29040610790252686, -0.2462305873632431, 0.4753105044364929, -0.04697096720337868, 1.120442509651184, -0.6657776832580566, -0.415152370929718, 0.2297452837228775, 0.28408998250961304, 1.3175575733184814, 0.09713955968618393, 1.520444393157959, -0.858188807964325, -0.1399160921573639, -0.13074804842472076, -0.8231090903282166, -1.738922119140625, -1.2275500297546387, -0.5772697329521179, -0.7130619287490845, -0.32633769512176514, -0.7225420475006104, -0.26083457469940186, 0.2891222834587097, 0.18677470088005066, 0.893396258354187, 0.11450507491827011, 0.22876977920532227, -1.2636576890945435, -0.1352684199810028, -0.747079610824585, -0.7786094546318054, 0.8365538120269775, 1.43002450466156, -1.4337255954742432, 0.20152390003204346, -0.5900332927703857, -1.0019447803497314, 0.8980427980422974, 0.2711450457572937, 0.41428709030151367, -0.39624348282814026, -0.7123512029647827, -0.32718992233276367, 1.2319350242614746, 1.1032969951629639, -0.3349483609199524, -0.4935522675514221, 0.6300483345985413, 0.8375656008720398, 0.3343851566314697, -0.41563162207603455, 0.19131819903850555, -0.7381691932678223, -0.3213624358177185, 0.01945234090089798, 0.3154495358467102, 0.44501495361328125, -0.48150089383125305, -0.8028831481933594, -0.15337428450584412, -0.7615693807601929, -0.5708110928535461, 0.2798742353916168, 0.14968900382518768, 0.8438683152198792, -0.22363221645355225, -0.31394344568252563, 0.8299736380577087, 0.0291725043207407, 0.34452956914901733, -1.0721280574798584, 0.555056095123291, 0.8875308036804199, 1.150877833366394, -0.5968738198280334, 0.8777716159820557, 0.38252943754196167, -0.5975358486175537, 0.3897210657596588, 0.11476759612560272, 0.9174299240112305, 0.30163246393203735, -0.5996959209442139, -0.22383004426956177, -0.9956257939338684, 0.3317375183105469, -0.393665611743927, -0.08007486164569855, 0.20366211235523224, -0.8647869825363159, -0.20300185680389404, 0.648859977722168, 0.6107593178749084, -1.384324550628662, -0.7788835167884827, -0.6973837614059448, 0.05348929017782211, -0.48130911588668823, 0.2725882828235626, 0.2866562604904175, -0.35219040513038635, 1.1603648662567139, -1.261157751083374, -0.07014375180006027, -0.1596904844045639, -0.19143790006637573, 0.9867272973060608, -1.5276907682418823, -0.7626796364784241, -1.079054832458496, -0.0948532372713089, 0.775892436504364, 0.49702802300453186, 0.4398229420185089, 0.33608800172805786, -0.14948396384716034, 0.08912620693445206, 0.688205897808075, 1.7274696826934814, 0.036890819668769836, -0.3576801121234894, -0.03609567880630493, 0.11847599595785141, -0.4837648868560791, -1.0203523635864258, 0.009291715919971466, 0.05313058942556381, -0.584954023361206, -0.22797614336013794, 0.47361230850219727, -0.6009883880615234, 1.5869581699371338, 0.20247536897659302, 0.23785433173179626, 0.16673219203948975, -0.37045055627822876, -0.7747374773025513, -0.029546156525611877, 0.922448456287384, -0.7458958625793457, -0.5266943573951721, 0.40650683641433716, 0.6229310035705566, 0.5226033926010132, 0.23742884397506714, 0.5271830558776855, -0.008977361023426056, -0.2613842785358429, 0.04581984132528305, -0.043372832238674164, 0.2409244030714035, 1.3271706104278564, 0.8964065313339233, 0.6824286580085754, -0.5361344218254089, -0.6154760122299194, 1.263216495513916, 0.3934626877307892, 0.5679082870483398, -0.06860481202602386, 1.1922576427459717, 0.6289974451065063, -0.9930094480514526, -0.5370783805847168, 0.8328321576118469, -0.2421659231185913, 0.7357138395309448, 0.3213304877281189, 0.537287175655365, -0.6402090191841125, -0.26040178537368774, -0.1980234980583191, 0.24500250816345215, 0.2663908004760742, 0.2184716910123825, 1.1308107376098633, 0.6648339629173279, -1.1606321334838867, 0.08668643236160278, -0.7173376083374023, -0.059242088347673416, -0.45745849609375, -0.3655892014503479, 0.4071922302246094, 0.4762738347053528, 0.8425823450088501, -0.31016477942466736, -0.3070237934589386, -0.1404784619808197, 0.2858092784881592, -0.916658341884613, 0.07536472380161285, -0.20160357654094696, -0.5033480525016785, -1.3981636762619019, 0.4588744640350342, 0.001954288687556982, -0.23942476511001587, 0.12209387868642807, -0.20504257082939148, -1.0187636613845825, -0.7553761005401611, -0.3444432020187378, 0.7262630462646484, 1.300316333770752, -0.19511157274246216, 0.4672878682613373, 0.7625049352645874, -0.019511383026838303, -0.55854731798172, -0.12816694378852844, 0.4640403389930725, 0.02553454414010048, -0.13249841332435608, -0.7404236793518066, -0.42519596219062805, 0.29989784955978394, -0.1633610725402832, 0.16000095009803772, 0.4207730293273926, 0.011310454457998276, 1.245980978012085, -0.17242956161499023, -0.6527763605117798, 0.17746728658676147, -0.8749045133590698, 1.0439026355743408, 0.06529918313026428, 0.1702791005373001, -0.22054877877235413, -0.7536327838897705, -1.1096153259277344, 1.1823738813400269, -0.011694713495671749, -1.1287212371826172, 0.10648542642593384, 0.9254286289215088, -0.0956215113401413, 0.9244801998138428, -0.060886893421411514, 0.2775304317474365, 0.47171327471733093, 0.3330894112586975, -0.7146322131156921, -0.4970419108867645, 0.84211665391922, -0.15002337098121643, -0.5755026340484619, 0.9777469635009766, -0.37098583579063416, 0.36487704515457153, -0.0027287136763334274, 0.4387158155441284, 0.6569687128067017, 0.21236038208007812, 0.11499090492725372, -0.20968639850616455, -0.22705845534801483, -1.1528491973876953, -0.4443945288658142, -0.4584486186504364, 0.16472738981246948, 0.3113458454608917, -0.8850502371788025, 0.3837023675441742, -0.7051888704299927, 0.4137071371078491, 0.1971288025379181, -0.5032228231430054, 0.8062393665313721, 0.29465359449386597, 0.19978117942810059, 0.7309871912002563, -0.4290897250175476, -0.06162863224744797, -0.7469104528427124, -0.9882166385650635, 0.7985376715660095, -1.3171602487564087, -0.581855058670044, -0.5374417901039124, -0.5278427600860596, -0.4277733564376831, -0.29985636472702026, -0.10659598559141159, -0.628217875957489, -1.144179105758667, -0.6435784697532654, 0.29923051595687866, 0.6755397319793701, -0.25268155336380005, 0.3380800783634186, 0.5850169658660889, -0.8329998254776001, -0.29540807008743286, -0.014622273854911327, -1.627556324005127, -0.13508340716362, -0.7651041746139526, 0.5789275169372559, -0.30479416251182556, 0.3515312969684601, -0.007088825106620789, 0.8931742310523987, -1.9770565032958984, -0.928015410900116, -0.5063788294792175, -0.7073622941970825, 0.675894021987915, 1.1309618949890137, -1.3579092025756836, 1.0375733375549316, 0.17233732342720032, -0.24102333188056946, 0.22688227891921997, 0.16804227232933044, -0.6085031032562256, 0.19272847473621368, -0.5755628347396851, 0.39494556188583374, 0.45646941661834717, 1.6879658699035645, 1.433690071105957, 0.8324788808822632, -0.06373901665210724, 0.9369728565216064, 0.0001839771866798401, -0.2689475417137146, 0.1217832937836647, 0.4618682861328125, -0.0002733711153268814, -0.3113938570022583, 0.054854489862918854, -0.3513365387916565, -0.6694064140319824, -0.24043720960617065, 0.94789719581604, -0.8526462316513062, 0.11545819044113159, -0.17107707262039185, -0.07712632417678833, -0.36558133363723755, 0.3263132870197296, 0.32597362995147705, 0.6130213141441345, 0.10329177975654602, -0.32500317692756653, 0.608298659324646, -0.3718414306640625, -0.6989800930023193, 0.5537517070770264, 0.7581450939178467, -0.7128219604492188, 0.05366777256131172, 0.3892183303833008, 0.15577101707458496, -0.055002082139253616, 1.3935604095458984, 0.6508468389511108, -0.14782901108264923, 0.26054465770721436, -0.3610203266143799, -0.6086639761924744, 0.12327015399932861, -0.3759211003780365, -0.5948808193206787, -0.5642685890197754, 0.6448960304260254, 0.46114352345466614, -0.34922945499420166, -0.03345699980854988, 0.6900382041931152, -0.08828812092542648, 0.9046592712402344, 1.487838625907898, -0.5963455438613892, -0.9086971282958984, 0.9543355703353882, 0.3324912190437317, -1.1082763671875, 0.8189603090286255, 0.34401100873947144, 0.24420663714408875, -0.21866261959075928, 1.126600742340088, 0.218617245554924, -0.6334452629089355, 0.9242874383926392, 0.3490625321865082, -0.06436854600906372, -0.6160091161727905, -0.09790166467428207, -1.858100175857544, -0.08776780217885971, -0.46787774562835693, -1.183426856994629, 0.5990346670150757, -1.3157293796539307, -1.3459291458129883, 0.2314826399087906, 0.3071712255477905, -0.5117143392562866, -0.49268996715545654, 0.046635836362838745, 0.061129145324230194, -0.3512047827243805, 1.0037527084350586, -0.6501099467277527, 1.4128694534301758, 0.33058586716651917, -0.16127237677574158, -1.1942505836486816, -1.2442107200622559, 0.25567877292633057, 0.5322537422180176, -0.689776599407196, -0.6877105832099915, 0.9321600198745728, -0.547612190246582, -0.6498466730117798, 0.7919082045555115, 0.7075218558311462, -0.041131697595119476, -0.22754666209220886, -0.94278883934021, 0.7365951538085938, 0.4253964126110077, 0.09002850949764252, -0.838158369064331, -0.7517843246459961, -1.1556618213653564, -0.17758530378341675, -1.1419835090637207, 0.6623804569244385, 0.07707170397043228, 1.287616491317749, -0.8110073208808899, -0.8140501976013184, -0.560682475566864, -0.7072811722755432, -0.19595088064670563, 0.2949323058128357, -0.3653516173362732, -0.35263314843177795, -0.7395626306533813, -0.11637704074382782, -0.7977592349052429, -0.37051355838775635, 0.5424349308013916, 0.9064829349517822, -0.05873282253742218, -0.826945960521698, -0.602615237236023, -0.7687622308731079, 0.16068784892559052, 0.777004599571228, 0.19508694112300873, 0.2224520593881607, 0.2805292010307312, -0.8797286748886108, 0.23522254824638367, 0.40949541330337524, 0.1753837764263153, -0.07517263293266296, 1.2000267505645752, 1.1504859924316406, -0.4693414568901062, -0.2898779511451721, 0.0017963536083698273, 0.4525708556175232, -0.5379088521003723, 0.5329186916351318, -1.2523823976516724, -0.19986692070960999, -0.13148146867752075], [0.08801362663507462, 1.8274341821670532, -2.6404335498809814, -0.22077755630016327, 0.42459636926651, 0.0934380292892456, 0.6917510628700256, -0.27710387110710144, -0.15563909709453583, -0.6983884572982788, -0.47025397419929504, -0.14330412447452545, 0.6375563740730286, -0.06995993107557297, 0.02173570729792118, 0.5123456716537476, 0.6224338412284851, 0.09157471358776093, 0.14192849397659302, 1.605914831161499, -0.13913525640964508, -1.3848038911819458, -0.4287969768047333, 0.4419105052947998, 0.0687418133020401, 0.3026092052459717, -2.025979995727539, -0.18779703974723816, -1.6747368574142456, -1.3530439138412476, 1.643401861190796, -0.06545846164226532, 0.8034993410110474, 0.11039033532142639, -1.535553216934204, 0.31263628602027893, 1.3934332132339478, 0.30153390765190125, 0.6533949375152588, 0.2085547149181366, 2.042692184448242, 0.4171026647090912, -0.5052264332771301, -1.6885873079299927, 0.07605832815170288, 0.1859581470489502, 1.2553983926773071, -1.760326862335205, -0.42478200793266296, -0.5160215497016907, 0.7345223426818848, -0.19203057885169983, 0.4763548672199249, 0.9571365714073181, 1.015986442565918, -0.810542643070221, 0.7255946397781372, 1.2792294025421143, -0.10548705607652664, 0.462063729763031, 1.3863290548324585, -0.26342135667800903, 1.3846330642700195, 0.4086666703224182, 0.5357078909873962, -0.6890020966529846, 0.7639727592468262, 0.29201674461364746, 0.07760076969861984, -0.266772598028183, 0.796826958656311, 0.6797528862953186, -0.8237229585647583, 0.4321986138820648, -1.3042844533920288, 0.8480031490325928, 0.6264950037002563, 0.5130428075790405, 0.3998278081417084, 0.2859836518764496, 0.2340553104877472, 0.28290417790412903, 0.44203418493270874, -0.08652561902999878, -0.2561000883579254, 0.6067108511924744, -0.13566945493221283, -0.6005755662918091, -0.5317919850349426, 0.6635933518409729, 0.10221488773822784, 0.6071541905403137, 0.6869555711746216, -0.15475967526435852, -0.6359986066818237, -1.1001802682876587, -0.8322441577911377, -0.7371184229850769, -0.4203605651855469, -0.908970057964325, -0.20235185325145721, -0.8021332621574402, 1.2605549097061157, 0.3943059742450714, 0.21393394470214844, 1.4047863483428955, 0.4393264651298523, -1.2575749158859253, -0.08174794167280197, -0.4492506682872772, -0.31342098116874695, -0.10258419066667557, -0.6101571321487427, -1.747496247291565, -0.7198094129562378, 1.0799498558044434, 1.689941167831421, 1.0539882183074951, 0.4154883623123169, 0.5620009303092957, -0.3607539236545563, -0.20360635221004486, -0.6543051600456238, 0.10916370898485184, 1.7547025680541992, 0.8507882356643677, -0.6613246202468872, -0.15019762516021729, 0.17969535291194916, -0.6140468716621399, 1.3473542928695679, -0.049613986164331436, -0.2478603720664978, 0.785603940486908, -0.366842120885849, 0.8372307419776917, -0.4199812710285187, -0.6530573964118958, 0.17146413028240204, 0.9662808179855347, 0.015483028255403042, -0.4676240384578705, -0.33988115191459656, -0.9357516765594482, 0.0539417490363121, -0.5347623825073242, 0.782224714756012, 0.04364122077822685, -1.2221317291259766, 0.7082118391990662, -0.9747015833854675, 0.28199803829193115, 0.1777717024087906, 1.2085288763046265, 0.44432327151298523, -0.38048887252807617, 0.9224541187286377, 0.5698937177658081, 0.22020389139652252, 0.9100229740142822, 0.668373167514801, -0.12637068331241608, -0.6524845361709595, 0.4716455340385437, 0.6146037578582764, -0.18128450214862823, 0.705925464630127, -0.12608058750629425, -0.5603737235069275, 1.3300657272338867, 0.30657532811164856, -0.6491190791130066, -0.4606587886810303, 1.2612159252166748, 0.09324368834495544, 0.36570578813552856, 0.8252360224723816, -0.24051153659820557, -1.8992948532104492, -0.9189702272415161, 1.6614922285079956, -0.6649839878082275, 0.2184584140777588, -0.23665544390678406, 0.25061601400375366, -0.5528613924980164, 0.27644091844558716, -0.46224138140678406, -1.1512095928192139, -1.292000651359558, -0.1563805788755417, -0.15111246705055237, -0.9907359480857849, 0.3077530264854431, -0.5242799520492554, -1.165945291519165, 0.9191661477088928, -0.951648473739624, -1.4108914136886597, 0.25603044033050537, 0.8747114539146423, -0.06890565156936646, -1.2602754831314087, -0.35783651471138, -0.8929274082183838, 1.4768620729446411, -0.9704595804214478, 0.7801740169525146, -0.8352460265159607, 0.8191264867782593, 1.0024182796478271, -0.7021061182022095, -0.9305630922317505, 0.5964635610580444, -0.15535308420658112, -1.5969738960266113, 0.3299145996570587, -0.562006950378418, 0.20423834025859833, -0.9855177998542786, 0.07251712679862976, 0.5885473489761353, 0.7548924684524536, -0.27865070104599, 0.580706000328064, -0.1341165453195572, 0.0065153674222528934, -0.8231731653213501, 0.214553564786911, -0.4338968098163605, -1.0883766412734985, -0.49695339798927307, 0.22243931889533997, 0.1770390272140503, -1.2859188318252563, -0.20528572797775269, -0.21556073427200317, 0.09359192848205566, -0.20317357778549194, 1.5999785661697388, 0.534889280796051, 0.40650007128715515, 0.020093685016036034, -0.2302650362253189, -0.7102166414260864, -0.4683496057987213, 0.9796727299690247, -0.5661562085151672, 0.5002081990242004, 1.6496745347976685, 0.6132504940032959, 0.01733962446451187, -0.06860469281673431, -0.9166136384010315, 0.023260608315467834, -0.96085125207901, -0.3851231038570404, 0.14784274995326996, -0.994478166103363, 2.405219078063965, 1.1764719486236572, -0.39385750889778137, 0.15781350433826447, -0.23179668188095093, 0.397104948759079, -0.8077182769775391, 0.2601524889469147, -0.4388229250907898, 0.2335597723722458, -0.17529107630252838, -0.2263806164264679, -0.011369572021067142, -0.08294985443353653, 0.526768684387207, -0.27328720688819885, -0.5628800392150879, 0.11836351454257965, 0.4482204020023346, -0.2841605544090271, 0.6048890352249146, -0.443089097738266, -1.4484981298446655, -0.8916801810264587, -0.10225864499807358, 0.6499860882759094, 0.12763401865959167, 0.39425063133239746, 0.8260350227355957, 0.623893678188324, 0.02930186502635479, 0.6046924591064453, 0.29843389987945557, 0.18904557824134827, -0.4115762710571289, 0.4930482506752014, -0.008072914555668831, 0.6663237810134888, -0.7003300189971924, -0.9395896196365356, 0.5239154100418091, 0.0820021703839302, 1.8187657594680786, 0.45460015535354614, 1.305727481842041, -0.8228453993797302, 0.18898992240428925, -0.385383665561676, 0.19560204446315765, -1.149444818496704, -0.5767216682434082, -0.19771116971969604, -1.185188889503479, -0.7520031332969666, -0.11997990310192108, -0.3109889626502991, 0.5846436023712158, -0.2375451922416687, 0.8719589114189148, 0.5524667501449585, 0.08368973433971405, -1.7771199941635132, -1.215266227722168, -0.12165717780590057, -0.8447802662849426, 1.3749818801879883, 0.9093666076660156, -1.493074655532837, 0.01975107379257679, -0.1058245375752449, -0.24611257016658783, 0.3920711278915405, -0.27981430292129517, 0.043994463980197906, -0.7574349045753479, 0.07738780975341797, -0.008290101774036884, 0.38742947578430176, -0.19279544055461884, -0.570441484451294, -0.5603454113006592, 0.5658231973648071, 0.5823444724082947, -0.7010940313339233, -0.343049019575119, -0.04970410093665123, -1.2330197095870972, -0.285139262676239, 0.04908972233533859, 0.6920986771583557, -0.0582582913339138, -0.7115758061408997, -1.559152603149414, -0.0026946356520056725, -0.596443235874176, -0.6182190775871277, 0.18977928161621094, 0.17966300249099731, 0.9024358987808228, -0.8281174302101135, 0.5695835947990417, 1.0794199705123901, -0.009982115589082241, 0.1565455049276352, -1.41403329372406, 1.1267722845077515, 0.9147868156433105, 1.1218457221984863, 0.28404903411865234, 0.6046579480171204, 0.7364879250526428, -0.7781321406364441, -0.08282162249088287, 0.25327450037002563, 0.5192899703979492, 0.02636636793613434, -0.2033124715089798, 0.019520942121744156, -0.3240445852279663, 0.02257016859948635, -0.25792059302330017, 0.005079872440546751, 0.670083224773407, -0.23458489775657654, 0.16399262845516205, 0.9628203511238098, 0.6139785051345825, -0.4873815178871155, -0.49943074584007263, -0.011678694747388363, 0.29544198513031006, 0.026892803609371185, 0.20624712109565735, -0.30103710293769836, -0.6368018984794617, 0.8145134449005127, -1.6321220397949219, -0.22886314988136292, -0.17770087718963623, 0.09632819890975952, 1.347080945968628, -0.7854751944541931, -0.5656394362449646, -0.6455090641975403, 0.21962735056877136, 1.4653921127319336, 0.2547401785850525, 0.877443253993988, 0.9419630765914917, -0.2735128402709961, 0.3066740930080414, 0.3451429605484009, 1.8329066038131714, 0.3697786331176758, -0.8353937864303589, 0.5103935599327087, 0.3652624785900116, 0.17389430105686188, -0.47625574469566345, -0.04047894850373268, 0.5540857911109924, -0.3949698507785797, -0.36180779337882996, 0.01531714666634798, -0.5989928245544434, 2.3266289234161377, 0.6019311547279358, 0.12176623195409775, -0.15806540846824646, -0.11428449302911758, -1.3973734378814697, 0.011863569729030132, 0.4347536861896515, -0.8787463903427124, -0.423138827085495, 0.40009254217147827, 0.3751462996006012, 0.9770996570587158, 0.17983973026275635, 0.4046996235847473, 0.03843742981553078, 0.13105224072933197, 0.6026099920272827, 0.36124739050865173, 0.18275697529315948, 1.5533069372177124, 1.0213521718978882, 1.1811752319335938, 0.15448062121868134, -0.6539104580879211, 1.2218904495239258, -0.6250724792480469, 0.43598803877830505, 0.9367232322692871, 0.346463680267334, 0.7796842455863953, -1.7263823747634888, 0.1775868535041809, 0.7878546118736267, -0.19866794347763062, 0.997491717338562, 0.44018521904945374, 0.6362534761428833, -0.7446960806846619, -0.2830570936203003, 0.7333815693855286, -0.146389439702034, 0.3768971264362335, -0.12853612005710602, -0.07240231335163116, 0.8987614512443542, -0.9635486006736755, 0.16037069261074066, -1.4203399419784546, 0.037260837852954865, -0.0237482488155365, -0.850616455078125, 0.4439263641834259, 0.7417395114898682, 1.178362250328064, 0.27808329463005066, -0.3224390745162964, -0.7554597854614258, 0.4610263705253601, -0.7385808229446411, 0.08462219685316086, -0.7015042901039124, 0.04479590430855751, -1.2084019184112549, -0.5069573521614075, -0.3742430508136749, -0.025898408144712448, -0.3107943832874298, -0.4723917841911316, -1.0671128034591675, -0.8738449811935425, 0.5990153551101685, 0.7277434468269348, 0.7791659832000732, 0.5031132102012634, 0.6699846386909485, 0.3353920578956604, 0.09185337275266647, -1.1807363033294678, -0.5184226632118225, 0.36630329489707947, 0.06540393829345703, -0.1722204089164734, -0.20289675891399384, -0.6186317205429077, 0.4050890803337097, 0.38479676842689514, -0.4065345227718353, 0.9745866060256958, 0.6883043646812439, 1.0538568496704102, -0.7547030448913574, -1.2479418516159058, 0.6087798476219177, -0.517916202545166, 0.4977492392063141, 0.4722633361816406, -0.685032844543457, -0.7692530751228333, -0.552994966506958, -1.2934398651123047, 1.3618011474609375, 0.09429765492677689, -0.41511696577072144, 0.5736539363861084, 0.7713882923126221, -0.07938352227210999, 0.7121036052703857, -0.8189370036125183, -0.029559850692749023, 0.04719715192914009, -0.2094944268465042, -1.095560908317566, 0.023857226595282555, 0.8070637583732605, -0.026765206828713417, -1.1134642362594604, 0.682488203048706, -1.0600666999816895, -0.017726799473166466, -0.6549597978591919, 0.6585546731948853, 0.47606608271598816, 1.0945954322814941, 0.8420094847679138, 0.15108616650104523, 0.6295790672302246, -1.2490681409835815, -0.012224355712532997, 1.0373725891113281, 0.18799753487110138, 0.47382625937461853, -0.5978732109069824, 1.288438320159912, -0.767143964767456, -0.42643076181411743, -0.22809414565563202, -0.4924898147583008, 0.5280865430831909, 0.4877217411994934, 0.08282091468572617, 0.8023626804351807, -0.5193626880645752, -0.32681623101234436, -0.7668493390083313, -0.44829505681991577, 1.254194736480713, -1.6071988344192505, -0.6432669162750244, -0.19167056679725647, -0.4474424719810486, -0.47630131244659424, 0.4662345051765442, -0.12131564319133759, -0.48192712664604187, -1.0644919872283936, -0.33173131942749023, -0.25819867849349976, 1.1303468942642212, -0.5159679651260376, 0.6361464858055115, -0.20738759636878967, -1.076891303062439, 0.47639918327331543, -0.6341394186019897, -2.0734548568725586, 0.35021454095840454, -0.6022724509239197, 0.7788264751434326, -0.89403235912323, -0.24495519697666168, 0.24598701298236847, 1.4124699831008911, -1.461205005645752, -0.49283748865127563, -0.9713224768638611, -0.32283931970596313, 1.0029774904251099, 0.8913296461105347, -0.8075644373893738, 1.7582777738571167, -0.050971705466508865, -0.6009622812271118, -0.24414962530136108, 0.4087327718734741, -0.8373311161994934, 0.02822592295706272, -0.13050733506679535, -0.2435046285390854, 0.20285649597644806, 1.7375527620315552, 0.6698277592658997, 0.8928699493408203, 0.0921589806675911, 1.6963666677474976, -0.7976446151733398, -1.2000453472137451, 0.08038335293531418, 0.5429727435112, -0.16506901383399963, -1.2093031406402588, 0.24337461590766907, -0.8962502479553223, -1.3360011577606201, -0.3135494887828827, 0.9836033582687378, -0.6203718781471252, 0.5375461578369141, 0.2131776511669159, -0.15016262233257294, -0.41771215200424194, 0.592928946018219, -0.17459607124328613, -0.19228850305080414, 0.4268289804458618, -0.3416460454463959, 0.07056677341461182, -0.8083257079124451, -0.11861398816108704, 0.7673931121826172, 0.8695780634880066, -0.19627127051353455, -0.3572642505168915, 0.2581687271595001, 0.110661081969738, -0.43077412247657776, 1.536338210105896, 0.719135046005249, -0.19741658866405487, -0.018441328778862953, -0.134572833776474, -0.4790653586387634, 0.11046452820301056, 0.11323443800210953, -1.1455743312835693, -0.5894911885261536, 0.6494751572608948, 0.6439933776855469, -0.20920580625534058, 0.4712183177471161, 0.6713277101516724, 0.41125160455703735, 0.7429606914520264, 0.7139744162559509, -1.144690752029419, -0.47835224866867065, 1.3454091548919678, 0.5914967656135559, -0.8920503854751587, 0.25437867641448975, -0.19119541347026825, 0.10868056863546371, 0.09886404126882553, 0.9722424745559692, 0.3057177662849426, -0.7178501486778259, 0.375312864780426, 1.1663289070129395, -0.5665268898010254, -0.40275293588638306, -0.8388521075248718, -1.817959189414978, -0.7212580442428589, -0.31681615114212036, -0.6052404046058655, 0.5676042437553406, -1.3401031494140625, -1.5018951892852783, 0.23375380039215088, 0.1970117837190628, -0.36190322041511536, -0.6172979474067688, 0.3892774283885956, 0.13065633177757263, -0.6965311765670776, 1.2667804956436157, -0.5508943796157837, 1.2828062772750854, -0.29955655336380005, 0.21461701393127441, -0.3582388460636139, -0.24376684427261353, 0.10119657218456268, 0.06471600383520126, -0.22917605936527252, -0.5411608815193176, 0.38838082551956177, -0.5753774642944336, -0.6396334767341614, 0.15956413745880127, 0.14843402802944183, 0.4054085910320282, -0.2669476866722107, -0.2823163866996765, 0.0875447541475296, 0.9679431319236755, -0.08582747727632523, -0.5339667201042175, -0.48980653285980225, -1.1014337539672852, 0.46316713094711304, -0.2179919332265854, 0.14239326119422913, 0.22015289962291718, 0.4977226257324219, 0.48439815640449524, -1.1399611234664917, -0.385163813829422, -0.7065880298614502, 0.5308253169059753, 0.47557562589645386, -0.5741879940032959, -0.7149746417999268, -0.6056567430496216, 0.5064346790313721, -1.0731902122497559, -0.4841068983078003, -0.24824562668800354, 0.39890915155410767, -0.14267005026340485, -0.7379605770111084, -0.6083528995513916, -0.691895604133606, -0.08905183523893356, 0.32264789938926697, 0.5011596083641052, -0.15867716073989868, 0.08812951296567917, -0.5810682773590088, -0.3927513360977173, 1.1855082511901855, 0.5773380994796753, 0.4210692346096039, 1.2030223608016968, 0.8408308029174805, 0.11384943872690201, -0.39941084384918213, 0.06799513846635818, 0.14358724653720856, -1.1883569955825806, 0.24338935315608978, -0.7639710903167725, -0.5050064921379089, -0.07853051275014877], [1.0775146484375, -0.07632303237915039, -4.00146484375, -0.547882080078125, 1.3052978515625, -0.5041046142578125, 0.09389781951904297, 0.41823577880859375, -0.4677276611328125, 0.96405029296875, -0.5348010063171387, 0.526824951171875, 1.69305419921875, 0.3725433349609375, 1.1978759765625, -0.92279052734375, 0.0702362060546875, 0.6990318298339844, -0.6847648620605469, 0.716033935546875, -0.4580068588256836, -1.2548828125, -0.4835357666015625, 0.361663818359375, 2.091552734375, 1.02972412109375, 0.23765945434570312, -0.5589313507080078, -1.190673828125, 0.059897422790527344, 1.2335205078125, -0.06591796875, 0.422332763671875, -0.11250114440917969, -0.2476806640625, -0.86273193359375, 1.07000732421875, 0.97882080078125, 0.89208984375, -0.18286895751953125, -0.0585784912109375, 0.0771942138671875, -0.3929557800292969, -0.2258758544921875, 1.3756103515625, -0.997161865234375, 0.30809783935546875, -0.2583799362182617, 0.5055999755859375, 0.7176055908203125, 0.02552032470703125, 0.2598533630371094, 0.5641326904296875, -1.08526611328125, 0.813232421875, 0.2220306396484375, -0.30194091796875, -0.14327049255371094, 0.71234130859375, 1.0592041015625, 0.007916450500488281, -0.785400390625, 0.51593017578125, 1.165557861328125, 0.36664295196533203, -2.0234375, 0.013180732727050781, 0.6326904296875, -0.5038795471191406, -0.05454254150390625, 0.4120941162109375, -1.2637939453125, 0.35205078125, 0.80364990234375, -0.0004425048828125, 0.978759765625, 0.06806564331054688, 1.30767822265625, -0.4321441650390625, -0.8001556396484375, 0.09105682373046875, -0.81329345703125, 0.724273681640625, -0.3944740295410156, 0.4857826232910156, -0.7322235107421875, 0.2740135192871094, 0.3385467529296875, -1.3031005859375, 1.59027099609375, 0.2271289825439453, 0.8129119873046875, 0.21664857864379883, 1.09210205078125, -0.10491943359375, -0.3686065673828125, -0.20586395263671875, 0.870819091796875, -0.49066162109375, 1.0367546081542969, -0.45647430419921875, -0.5882110595703125, -0.0019826889038085938, -0.09266281127929688, 0.6441650390625, 0.45253753662109375, 0.6417808532714844, -0.33553600311279297, -0.5590362548828125, -0.336212158203125, -0.3051910400390625, -0.038330078125, 0.10413742065429688, -0.43988037109375, 0.8167877197265625, 0.6935062408447266, 1.25933837890625, -0.6748886108398438, -0.9798583984375, 1.099029541015625, 0.6717147827148438, -0.79119873046875, -0.81011962890625, 0.568634033203125, 0.9627685546875, 0.54840087890625, -0.92724609375, -0.396759033203125, 0.7393798828125, -1.29107666015625, -1.0194091796875, 0.2830963134765625, -0.11268877983093262, 1.369873046875, 0.2824716567993164, 1.3310546875, 0.038883209228515625, -0.7050108909606934, 0.67572021484375, 0.647979736328125, 1.45916748046875, -0.8458404541015625, -0.4565410614013672, 0.7889060974121094, 0.13848876953125, 0.10184860229492188, 0.232391357421875, -0.92987060546875, -1.08056640625, 0.6678619384765625, 0.3002128601074219, -0.05823516845703125, -0.063018798828125, 1.072265625, 0.42168426513671875, -0.803131103515625, -2.11328125, 0.7687835693359375, -0.25281524658203125, 0.4599151611328125, 0.4822540283203125, -0.1183013916015625, -0.9459228515625, 1.13726806640625, -0.7935943603515625, -0.3537101745605469, 0.6629753112792969, 0.22823333740234375, 0.12723946571350098, 1.04974365234375, -2.09375, -1.18695068359375, -0.08977222442626953, -0.325650691986084, 0.932403564453125, 0.3419189453125, 0.77545166015625, -0.849611759185791, -0.273040771484375, 0.48944091796875, 1.040771484375, -0.606292724609375, 0.963134765625, -0.419342041015625, -0.31136077642440796, 0.9041175842285156, -0.4453468322753906, 0.05916547775268555, -0.6597442626953125, -0.736083984375, 0.016374826431274414, 1.13543701171875, -0.5592384338378906, -0.10247611999511719, -1.5902099609375, -0.31949615478515625, 1.001220703125, 0.7440185546875, -0.47792816162109375, -1.428497314453125, -0.6059675216674805, 0.2418060302734375, -0.3669891357421875, 0.20949172973632812, -0.47521209716796875, 1.063201904296875, 1.01019287109375, 1.0059814453125, 0.05940723419189453, 0.8258056640625, 0.8243026733398438, -0.4240608215332031, -0.39405059814453125, -0.62103271484375, 0.2366790771484375, 0.18756675720214844, 0.22186040878295898, -1.1773681640625, -0.13056564331054688, 1.167633056640625, -0.43811988830566406, 1.25335693359375, -0.694976806640625, 0.12753582000732422, 0.8984375, 0.6048736572265625, -0.9664306640625, -0.66473388671875, -0.181396484375, -0.9239501953125, 0.8082275390625, -1.25701904296875, 0.8184814453125, -0.5335693359375, -0.6760101318359375, 0.1600780487060547, -0.22133255004882812, -0.146636962890625, 0.3527851402759552, 1.193939208984375, 0.669769287109375, -0.4065876007080078, -0.8167266845703125, -1.234130859375, -1.710693359375, -0.011566162109375, -0.2979736328125, 0.296356201171875, 0.437957763671875, 2.470947265625, 0.735382080078125, -0.3196258544921875, 0.5039520263671875, 0.267822265625, 1.23797607421875, -0.547576904296875, -0.18692779541015625, 0.8153076171875, -0.5406341552734375, 1.0116767883300781, -0.3312034606933594, -0.16844940185546875, -0.532318115234375, -0.22057533264160156, -0.43568897247314453, -0.17673492431640625, 0.96484375, 0.23255157470703125, 0.7013702392578125, -0.687744140625, 0.715118408203125, 1.266357421875, -0.05008697509765625, 0.25153160095214844, -0.30449676513671875, -0.027756690979003906, -0.17252731323242188, 0.5869827270507812, -0.870513916015625, 1.338623046875, -0.7476234436035156, -1.026763916015625, -1.472412109375, 0.4280853271484375, -0.5573959350585938, 0.33469390869140625, 0.043426513671875, -0.37528228759765625, 0.1965789794921875, 0.696014404296875, 0.8359756469726562, 0.609039306640625, 0.058345794677734375, -0.3404045104980469, 0.5484485626220703, 0.08700942993164062, 0.0829315185546875, -1.18817138671875, -0.146453857421875, -0.4518890380859375, 0.4624176025390625, -0.6502227783203125, 0.1720123291015625, 0.845062255859375, -0.87896728515625, -0.5353994369506836, -0.720306396484375, -0.19322967529296875, 0.61383056640625, -0.7557373046875, -0.91668701171875, 0.528289794921875, -1.02166748046875, -0.2913024425506592, -1.0557861328125, -0.19036865234375, 0.6406707763671875, 0.502044677734375, 0.83251953125, -0.10797500610351562, -0.16134262084960938, -0.06949043273925781, -0.66748046875, -0.470367431640625, 1.45947265625, 0.8856201171875, -0.779052734375, 0.37823486328125, -0.799072265625, -0.48638916015625, -1.72125244140625, 0.835174560546875, 1.6126708984375, -0.48209381103515625, -0.19217681884765625, 1.000732421875, -0.5932173728942871, -0.02489471435546875, 0.1838226318359375, 0.87396240234375, 0.7068157196044922, -1.33111572265625, -0.3065605163574219, -0.700347900390625, 0.23245620727539062, 1.1551513671875, -0.20189452171325684, 0.7169952392578125, 0.615447998046875, 0.3359203338623047, -0.3262596130371094, -0.7545166015625, -0.4103269577026367, -0.1855621337890625, 1.42138671875, 0.11436939239501953, 0.3884735107421875, 1.2513427734375, -1.179718017578125, 0.3128681182861328, 0.478973388671875, -0.3604736328125, -0.2583961486816406, -1.1787109375, 0.5567970275878906, 1.234466552734375, 1.6527099609375, -0.92584228515625, 0.445648193359375, -0.39083099365234375, 0.14499664306640625, 0.03473472595214844, -0.48666834831237793, -0.6134490966796875, -1.15625, -0.32320404052734375, -1.567138671875, -1.12762451171875, -1.60302734375, 0.6794586181640625, 0.19775390625, -0.7909393310546875, 0.67462158203125, 0.876373291015625, 0.7517299652099609, -0.5698089599609375, 0.585235595703125, -1.4417724609375, -0.3759307861328125, 0.24413299560546875, -1.0478515625, -1.3271484375, 0.084197998046875, -0.7880783081054688, 0.06776046752929688, -0.695831298828125, 0.32833099365234375, -1.14532470703125, -0.9516448974609375, -0.24458885192871094, -1.4912109375, -2.0455322265625, -0.422332763671875, 0.17224884033203125, -0.5972685813903809, 0.044826507568359375, 0.9130096435546875, -0.345672607421875, -0.19525146484375, -0.0283203125, 0.7841796875, 0.5462570190429688, -0.4054832458496094, -1.008056640625, -0.6656646728515625, 0.7491455078125, 1.1690673828125, -0.78887939453125, 0.8398551940917969, -0.43603515625, 0.2592430114746094, 0.019378662109375, -0.262176513671875, -0.10074996948242188, 0.804779052734375, 0.3750457763671875, 0.35530853271484375, -0.096771240234375, 0.2691984176635742, -1.028564453125, -0.6448745727539062, 0.7304229736328125, 0.762298583984375, 0.35137939453125, 0.5274810791015625, 0.2521209716796875, -0.38568115234375, -0.3959808349609375, 0.2279815673828125, 1.0946044921875, 1.2677764892578125, -1.24267578125, -0.34786224365234375, -0.1929779052734375, 0.9256591796875, 1.249786376953125, 0.96746826171875, -0.4784698486328125, -0.9700927734375, 0.3546905517578125, -0.7404880523681641, -0.14735031127929688, -0.3512115478515625, 1.05438232421875, 0.8051681518554688, -1.36492919921875, -0.3738861083984375, 0.5951766967773438, -0.6686477661132812, 0.959136962890625, 0.04581451416015625, -0.0277862548828125, -0.26814746856689453, -0.11968803405761719, -0.03408050537109375, 0.1308441162109375, 0.5341949462890625, -0.38739013671875, -0.3606414794921875, 0.940521240234375, -0.06810379028320312, 0.21311378479003906, -0.5644645690917969, -1.014373779296875, -0.383056640625, -0.79827880859375, -0.4217491149902344, 0.04310417175292969, 1.11907958984375, 0.22800636291503906, 0.88153076171875, -1.11419677734375, -0.2706146240234375, -0.7384567260742188, 0.375885009765625, 0.823211669921875, 0.08233642578125, -0.9849853515625, -0.26885986328125, -0.4040260314941406, 0.756591796875, -0.3760414123535156, 0.10881805419921875, -0.4472503662109375, 0.366668701171875, 0.0315399169921875, -0.13753318786621094, 1.31488037109375, 0.43482208251953125, -0.7556295394897461, 0.332916259765625, 2.636962890625, -0.3893089294433594, -0.26972198486328125, 0.31354522705078125, 0.854339599609375, 1.32696533203125, -0.14852380752563477, -1.034515380859375, 0.4171638488769531, -0.6925048828125, -0.802398681640625, 0.3285980224609375, 0.824951171875, 1.5225830078125, -0.4456138610839844, 0.10394287109375, -0.3275604248046875, -0.5516104698181152, -0.7001876831054688, 0.574432373046875, -0.2888298034667969, 0.9184112548828125, -2.1243896484375, -0.6380157470703125, 0.5127849578857422, 0.79376220703125, -0.3650856018066406, -0.39691162109375, 0.4528656005859375, 0.12070608139038086, -0.08072376251220703, -0.48651123046875, -0.5231475830078125, -0.6716499328613281, -0.2147674560546875, -1.07781982421875, 0.89410400390625, 0.953277587890625, 0.9031982421875, -0.0612640380859375, -0.629241943359375, 0.2060089111328125, -0.10080528259277344, -0.42156219482421875, 0.5833759307861328, -0.6414031982421875, 0.2812264561653137, -0.3218536376953125, 0.10888290405273438, 0.06401443481445312, -0.368804931640625, 0.19835054874420166, 0.7766342163085938, 0.7577056884765625, -0.828094482421875, 0.21732640266418457, -0.5753173828125, 0.1014862060546875, -1.00115966796875, 0.83831787109375, -0.809234619140625, 1.65234375, 1.11505126953125, 0.2985725402832031, 0.771484375, 0.12397360801696777, -0.768218994140625, 0.0620269775390625, 1.25946044921875, 1.734710693359375, -1.41314697265625, -0.07683563232421875, -1.12396240234375, 0.1465740203857422, 0.611358642578125, -0.19327163696289062, 0.6785888671875, -0.7108306884765625, -1.4013671875, -0.6292266845703125, -1.13470458984375, 0.3205232620239258, 0.5452661514282227, -0.01465606689453125, -0.23199200630187988, -1.358154296875, 0.01781463623046875, 1.2901153564453125, -0.723541259765625, 0.37496137619018555, -0.59954833984375, -0.248199462890625, 0.7203527092933655, 0.0584716796875, 0.14244842529296875, 0.524322509765625, -0.1993865966796875, -0.617889404296875, 1.0106964111328125, 0.6040191650390625, 0.028900146484375, 1.755126953125, -1.3406982421875, 1.068359375, 0.751678466796875, -0.3017578125, -0.22946929931640625, 0.9637374877929688, -0.2972679138183594, 0.462432861328125, 0.6295013427734375, -0.540008544921875, -0.058868408203125, -0.021953582763671875, -0.871429443359375, 1.5625, -0.3528900146484375, -0.77471923828125, 0.534271240234375, -0.5251922607421875, -0.24059295654296875, -0.3474922180175781, -0.71002197265625, 0.2471160888671875, -1.46563720703125, -1.3944091796875, -0.7694549560546875, 0.48772430419921875, 0.87030029296875, -1.8143310546875, 0.0008133649826049805, -1.518310546875, -0.18198776245117188, 0.08189773559570312, 0.407012939453125, -0.06886053085327148, 0.621124267578125, -0.6324844360351562, 1.052978515625, 0.8404541015625, -0.8108139038085938, -0.1883535385131836, 0.899017333984375, 0.6139926910400391, 0.042011260986328125, 1.6446533203125, 0.6927337646484375, 0.4292144775390625, -0.140594482421875, 0.88494873046875, 1.4794921875, 0.39487457275390625, 0.339752197265625, -1.27685546875, -0.4326133728027344, 0.796417236328125, -0.85076904296875, -0.1325969696044922, 0.21215057373046875, 0.94915771484375, -0.19472503662109375, -0.9775390625, 0.96990966796875, 0.35935211181640625, 0.10765838623046875, 0.470367431640625, -0.4689321517944336, -0.269134521484375, -0.026787757873535156, 0.836090087890625, 0.5208282470703125, 0.12993621826171875, 0.04283905029296875, 0.11869406700134277, 0.770660400390625, 1.43798828125, 0.562286376953125, 0.47907257080078125, 0.14968490600585938, -0.2415323257446289, -0.19699859619140625, 0.22707366943359375, -0.83294677734375, 0.01387786865234375, -1.08575439453125, 0.10925102233886719, -0.66656494140625, -0.6591415405273438, -0.45526885986328125, -0.47076416015625, -1.1279296875, 0.03798103332519531, 0.8863067626953125, 0.03873252868652344, 0.05616474151611328, -0.33649444580078125, 0.2491779327392578, -0.91632080078125, 0.66522216796875, -0.3931427001953125, 0.941009521484375, -0.721954345703125, 0.39296722412109375, -0.3455085754394531, 0.5110855102539062, 0.533782958984375, -0.89007568359375, 0.39089202880859375, 0.36046600341796875, -0.544677734375, -0.658050537109375, -0.20740699768066406, 0.6781158447265625, 1.5621337890625, 0.312164306640625, -1.2322998046875, -1.53216552734375, 0.16708683967590332, 0.428955078125, -0.11752700805664062, -0.4512939453125, -1.25982666015625, -0.744903564453125, 0.753021240234375, 0.3157806396484375, -0.22103500366210938, -1.32391357421875, -0.36868858337402344, -0.815643310546875, 0.1490936279296875, -0.55413818359375, -1.406494140625, 1.0885467529296875, -0.82318115234375, -0.18204498291015625, -1.4202880859375, 0.49559783935546875, -0.8932037353515625, -1.17022705078125, -1.027435302734375, 0.05148124694824219, -0.1896343231201172, 0.008195877075195312, 0.0651557445526123, 0.05808258056640625, 0.00994110107421875, 0.42176055908203125, 0.15546417236328125, 0.00644683837890625, -0.362152099609375, -0.8431396484375, -1.2608642578125, 0.2728309631347656, 0.537017822265625, 0.6863174438476562, 1.32684326171875, 0.3628692626953125, 1.95068359375, 0.11780166625976562, 0.160064697265625, -0.07209396362304688, -0.1861896514892578, -0.5300827026367188, -0.369537353515625, -1.24200439453125, -1.4501953125, -0.1416797637939453], [0.2451205849647522, 2.1424996852874756, -2.6274893283843994, -0.3248721957206726, 1.016411304473877, 0.16508440673351288, 1.4288442134857178, 0.2182430624961853, -0.11728992313146591, -0.6535104513168335, -0.7528513073921204, 0.04963482543826103, 0.5556259155273438, -0.1814650148153305, 0.4695238471031189, -0.1897886097431183, 0.22882544994354248, 0.18388527631759644, 0.39763540029525757, 1.1492186784744263, -0.7679171562194824, -0.9841697216033936, -0.4182060956954956, 0.47839537262916565, 0.12116555869579315, -0.05535686016082764, -1.4259592294692993, -0.3811067044734955, -1.102442741394043, -0.004983913153409958, 1.8314403295516968, -0.5871971249580383, 1.2366982698440552, 0.2584581673145294, -1.52310311794281, 0.2678028643131256, 1.0495740175247192, 0.26590415835380554, -0.5382739305496216, -0.9064152240753174, 1.4035755395889282, 1.6644898653030396, -0.698729932308197, -0.7360104918479919, -0.4643881022930145, 0.8024068474769592, 0.5751084685325623, -0.9996505379676819, -0.16342712938785553, -0.044404711574316025, 0.8875340223312378, -0.03177677467465401, 0.2677071690559387, 1.9329837560653687, 0.6250057816505432, -1.2041106224060059, 0.5137226581573486, 0.6499719619750977, -0.10174516588449478, 0.5965396165847778, 1.4621782302856445, -0.396660178899765, 1.174968957901001, 0.26195958256721497, 0.6329618692398071, -0.8428918719291687, 0.5643577575683594, 0.1043301671743393, 0.8261457681655884, -0.08797022700309753, 0.6708210706710815, -0.24765895307064056, -0.25377127528190613, 0.5204806923866272, -1.375706672668457, 0.26977527141571045, 0.2941499948501587, 0.27903228998184204, 0.06195454299449921, -0.5179508328437805, -0.3615959584712982, 0.17096836864948273, 0.8239087462425232, 0.19796352088451385, -0.023241247981786728, 0.17790213227272034, 0.5089239478111267, -0.48918992280960083, 0.05603119730949402, 1.5180230140686035, 0.023958081379532814, 0.7226377725601196, 0.8877363801002502, 0.30330348014831543, -0.44378286600112915, -0.625904381275177, -0.36432546377182007, -1.3387032747268677, -0.9428396821022034, -0.6351845860481262, -0.25441670417785645, -0.33771803975105286, -0.05679884925484657, 0.886608898639679, 0.13876965641975403, 1.7357388734817505, -0.13635776937007904, -0.40641963481903076, 0.4102843701839447, -0.1408405750989914, -0.8325783014297485, 1.1819556951522827, -0.05875144898891449, -1.4996185302734375, -0.7573006749153137, 1.2910388708114624, 1.2039783000946045, 0.7086601257324219, 0.38170892000198364, 0.9299166202545166, -0.45681488513946533, 0.29693207144737244, -0.2695257067680359, -0.00016400031745433807, 0.6576193571090698, 0.35024282336235046, -0.4667696952819824, -0.2256314903497696, 0.4268767237663269, -0.03374599665403366, 1.1694912910461426, -0.6309123039245605, -0.08620908856391907, 0.32310813665390015, -0.4842599928379059, 0.9472708702087402, -0.32105863094329834, -0.8343518972396851, 0.42633575201034546, 1.167733907699585, 0.5703425407409668, -0.04879198595881462, 0.022398510947823524, -0.9738152623176575, 0.3016141951084137, -0.5441774129867554, 0.421538770198822, -0.7715260982513428, -0.545060396194458, 0.17271190881729126, -1.1831461191177368, 0.3990756869316101, -0.14769183099269867, 0.8221826553344727, 0.669230580329895, -0.6651274561882019, 0.6009661555290222, -0.8019708395004272, 0.6237339973449707, 0.21450652182102203, -0.10524830967187881, 0.1574903130531311, -0.9352261424064636, 0.426543653011322, 0.08067343384027481, -0.7709764838218689, 0.6320421695709229, 0.38775086402893066, -0.4518110156059265, 1.0363367795944214, 0.008644934743642807, -0.6734432578086853, -0.6086763143539429, 0.5116948485374451, 0.3697988986968994, 0.02301117032766342, 0.9925797581672668, 0.4837372303009033, -0.8181156516075134, -0.04595308378338814, 1.0594590902328491, -0.21254116296768188, 0.8552713394165039, -0.3367031216621399, 0.0026040617376565933, -0.042373742908239365, -0.27456599473953247, -0.4480721056461334, -0.1307390183210373, -0.7339085340499878, -0.36095917224884033, -0.3705114424228668, -1.445427656173706, -0.03868135064840317, -0.5320994257926941, 0.11157608777284622, 1.0505926609039307, -0.6395388245582581, -0.5305230021476746, 0.5537993907928467, 0.4402351975440979, -0.22660179436206818, -0.7948305606842041, 0.2677280008792877, -0.7641414999961853, 0.8688300251960754, -0.6756144762039185, 0.29906800389289856, -0.6600793600082397, 0.40094509720802307, 1.4281755685806274, -1.3704156875610352, -1.1998004913330078, 0.7401339411735535, 0.5879595875740051, -1.3720108270645142, 0.4551801383495331, -0.359421968460083, -0.5603552460670471, -0.6799940466880798, -0.7434868812561035, 0.4058496356010437, 0.45522722601890564, 0.20624341070652008, 0.7109671235084534, -0.7375436425209045, 0.08218143880367279, -0.7374924421310425, 0.4267079532146454, -0.07185011357069016, -1.1960138082504272, -1.5335935354232788, 0.13706836104393005, 0.6897484064102173, -1.6981602907180786, -0.2494317889213562, -0.2709134519100189, 0.20670464634895325, -0.17976485192775726, 1.2859779596328735, -0.016690675169229507, 0.7038553357124329, -0.7296261191368103, -0.12148934602737427, -0.691749095916748, -0.15089155733585358, 1.2380387783050537, -0.5760256052017212, 0.16461512446403503, 0.8528014421463013, 0.46250930428504944, 0.0338362455368042, 0.9739739298820496, -0.8707212209701538, -0.22615863382816315, -0.2459058314561844, -0.538375973701477, 0.37850162386894226, -0.6257159113883972, 1.2913928031921387, 0.5882470011711121, -0.6851627230644226, 0.5589696764945984, 0.03485559672117233, 0.21334803104400635, -0.07070942968130112, -0.457411527633667, -0.2977593243122101, -0.10088372975587845, -0.5588856935501099, 0.13799411058425903, 0.4094865024089813, -0.16723036766052246, 0.4362056255340576, -0.5841803550720215, -0.7364968657493591, 0.24682332575321198, 1.0304603576660156, -1.022849678993225, 0.7633819580078125, -0.49858608841896057, -0.876639723777771, 0.11156124621629715, 0.1666799783706665, 0.46179676055908203, 0.2963188886642456, 0.19664184749126434, 0.3645358979701996, 0.788276731967926, -0.028521912172436714, 0.27718812227249146, 0.0752982422709465, -0.08004094660282135, 0.014704076573252678, 1.0981096029281616, -0.2548394501209259, 1.4376204013824463, -0.08931746333837509, -0.43203791975975037, 0.1075286716222763, 0.3195422887802124, 1.2799824476242065, 0.45703259110450745, 1.0587157011032104, -0.8076530694961548, -0.9312868714332581, 0.07161720097064972, -0.1100163608789444, -1.0728557109832764, -0.898577868938446, -0.27145516872406006, -0.7106274962425232, -0.2659202218055725, -0.04765111953020096, -0.6645505428314209, 0.2024029642343521, 0.46900495886802673, 0.7710403800010681, -0.04573286324739456, -0.058970220386981964, -1.1794451475143433, -0.11039722710847855, -0.5654233694076538, -0.3684151768684387, 0.7499628663063049, 1.6050969362258911, -1.6252292394638062, 0.10448185354471207, -0.6247025728225708, -1.1328474283218384, 0.022259056568145752, -0.23715811967849731, 0.6586513519287109, -0.7294020056724548, -0.5214626789093018, -0.48634448647499084, 0.6362417936325073, 0.2031930536031723, 0.02123708464205265, -0.6273486614227295, 1.2096630334854126, 0.8161104917526245, 0.3377630114555359, -0.7292581796646118, -0.048887934535741806, -0.7645817995071411, -0.3717026710510254, 0.04640014469623566, 0.6712254881858826, 0.10618893802165985, -0.6789158582687378, -1.1307802200317383, -0.26834696531295776, -0.5451157689094543, -0.261341392993927, 1.1938380002975464, 0.4186183512210846, 0.8516448140144348, -0.4170108139514923, -0.40668368339538574, 0.9122792482376099, -0.2931278645992279, 0.47081825137138367, -0.8123435974121094, 0.4005015790462494, 0.8222105503082275, 1.4377436637878418, -0.23957215249538422, 0.15458624064922333, 0.24833591282367706, -0.8440086841583252, 0.13269975781440735, -0.3453908860683441, 0.42930540442466736, 0.3747422695159912, -0.9302934408187866, 0.010628332383930683, -0.08123400062322617, -0.23811973631381989, -0.2140960544347763, 0.40627729892730713, -0.5515171885490417, -0.3370368480682373, -0.014166513457894325, 0.8447412848472595, 0.6163675785064697, -1.0904008150100708, -0.7428823113441467, -0.3542947769165039, 0.7298922538757324, -0.8438065648078918, 0.7339951992034912, -0.30358728766441345, 0.059303514659404755, 0.6214379668235779, -1.5543030500411987, 0.7720060348510742, -0.2547863721847534, 0.0030611716210842133, 1.303767442703247, -0.978035032749176, -0.47429776191711426, -0.3868093192577362, 0.3212612271308899, 0.7981915473937988, 1.485680341720581, 0.6446461081504822, 0.002630210015922785, -0.5179829001426697, 0.3941253125667572, 0.3340788185596466, 1.2863664627075195, -0.3812316954135895, -0.5264587998390198, 0.20973306894302368, -0.22526979446411133, -0.27103734016418457, -1.0021458864212036, 0.3653617203235626, 0.028543323278427124, 0.17437322437763214, -0.10441267490386963, 0.7329773306846619, -0.3333286643028259, 1.3693501949310303, 0.1059480607509613, 0.08155695348978043, 0.005412741098552942, -0.053991060703992844, -0.8077895045280457, 0.4237391948699951, 0.5935336947441101, -0.6434921622276306, 0.08575288951396942, -0.005776687990874052, 0.04068600758910179, 1.0743420124053955, -0.31210973858833313, 0.03860877454280853, 0.5829434394836426, 0.6708653569221497, -0.6329347491264343, 0.04163549095392227, 0.3834250569343567, 0.944480299949646, 0.6215963959693909, 1.1604163646697998, 0.8046876192092896, -1.1380493640899658, 0.9489468932151794, -0.22980408370494843, 0.38625970482826233, 0.9022119045257568, 0.006160931661725044, 0.9767817854881287, -1.3993799686431885, -0.08394353091716766, 0.6688321232795715, 0.009644518606364727, 0.5976816415786743, 0.1949053257703781, -0.37003788352012634, -0.8965759873390198, 0.2691977918148041, 0.4662185311317444, -0.32942676544189453, 0.34332355856895447, -0.026847831904888153, 0.8816636800765991, 1.3325773477554321, -0.8798895478248596, 0.40344300866127014, -0.8129341006278992, -0.8593025207519531, -0.29304033517837524, -0.015778884291648865, 0.9291432499885559, 0.6389124989509583, 0.7856196761131287, -0.044211819767951965, -0.1305670291185379, -0.468888521194458, 0.42304015159606934, -0.7865851521492004, 1.0109124183654785, -0.4620761275291443, -0.04908904805779457, -0.7817118763923645, -0.29245999455451965, -0.3260609209537506, -0.8836553692817688, -0.4745550751686096, -0.5793123841285706, -1.0562602281570435, -0.7811719179153442, -0.19740097224712372, 0.4698546528816223, 0.11167819052934647, 0.10988118499517441, 0.7359439134597778, 0.13459311425685883, 0.5695182681083679, -0.5548996329307556, 0.44212281703948975, 0.36758488416671753, 0.21702419221401215, 0.0020364364609122276, -0.7378973364830017, -1.0521800518035889, 0.6202231049537659, 0.25414735078811646, -0.17114980518817902, 0.21823987364768982, 0.328106552362442, 1.196117639541626, -0.6461269855499268, 0.01911076530814171, 0.850642740726471, -0.08763720095157623, 1.1704189777374268, 0.25602325797080994, -0.49802473187446594, -0.6253807544708252, 0.10048703849315643, -1.6671143770217896, 1.0136408805847168, -0.17491386830806732, 0.08504144847393036, 0.13739947974681854, 0.5402047038078308, 0.27986329793930054, 0.17872563004493713, -0.11319325864315033, 0.48754793405532837, -0.1581277698278427, -0.17851431667804718, -0.6036974191665649, 0.603172242641449, 0.5249404311180115, -0.32459884881973267, -1.0694916248321533, -0.048405684530735016, -0.17882344126701355, 0.13007238507270813, -0.26759710907936096, 0.6900174021720886, -0.20234468579292297, -0.056113045662641525, 0.22451040148735046, -0.5597620010375977, -0.18390913307666779, -0.047191768884658813, -0.45388564467430115, 1.114603042602539, 0.7807111740112305, -0.09308074414730072, -0.49066057801246643, 1.4234461784362793, -1.0250946283340454, -0.4669322073459625, -0.5032103061676025, -0.5998652577400208, 0.8648284673690796, 0.600296676158905, 0.3611994683742523, 1.5433555841445923, -0.3031812012195587, -0.40417855978012085, -0.8406245708465576, -0.2092389017343521, 0.7014614939689636, -0.9724640250205994, -1.1759459972381592, -0.4820546507835388, -0.6518996357917786, -0.18123291432857513, -0.2452443689107895, 0.5987027287483215, -0.439044326543808, -1.0402112007141113, -0.19761531054973602, 0.07719232887029648, 1.321081519126892, -0.46208351850509644, 0.4736877679824829, 0.6205182075500488, -0.9466220736503601, 0.3461931645870209, -0.3253883719444275, -1.275346279144287, -0.019319403916597366, -1.0954264402389526, 0.4119347929954529, -0.12039031088352203, 0.17664700746536255, -0.043208345770835876, 1.4725301265716553, -1.2583997249603271, -0.9786669611930847, -1.2955496311187744, -0.235224187374115, 1.161975383758545, 0.46853873133659363, -2.1301939487457275, 1.507543683052063, -0.1678370237350464, -0.19231468439102173, -0.28243330121040344, 0.18745297193527222, -0.3120092749595642, 0.07394534349441528, -0.5470554232597351, 0.33820900321006775, 0.358725905418396, 1.2689275741577148, 0.13196629285812378, 0.977530837059021, -0.1342899352312088, 1.1990243196487427, -0.7606555819511414, -0.35416266322135925, -0.017582902684807777, 0.7963110208511353, -0.27799543738365173, -0.5080443024635315, -0.22157177329063416, -0.8954156041145325, -0.571792483329773, 0.12766550481319427, 0.8762317895889282, -0.9667516946792603, 0.5712432861328125, -0.21012097597122192, -0.4592445492744446, -0.7444437742233276, 0.3576803207397461, -0.365202933549881, -0.316621869802475, 0.4415229856967926, -0.6198810935020447, 0.2503405809402466, -0.738733172416687, 0.4512275457382202, 1.0510828495025635, 0.7170733213424683, -0.9571365118026733, 0.1735362410545349, 0.8832347393035889, 0.33234137296676636, -0.7038701176643372, 1.1673030853271484, 0.7855843901634216, -0.6881502270698547, -0.4968068301677704, -0.29880309104919434, -0.40230223536491394, 0.6286441683769226, -0.1163174957036972, -0.4508097767829895, -0.7214909195899963, 0.3623163402080536, 0.26932552456855774, -1.058412790298462, 0.7627951502799988, 0.19564370810985565, -0.008647209964692593, -0.6662623286247253, 1.1368606090545654, -0.9165744781494141, -1.114192247390747, 1.3347665071487427, 0.45195460319519043, -1.0225108861923218, 0.409795343875885, -0.12049481272697449, -0.44149497151374817, 0.10645575076341629, 0.6319101452827454, 0.6329882144927979, -0.9305249452590942, -0.059503912925720215, 1.2796193361282349, -0.3706609904766083, -0.24921654164791107, -0.36023828387260437, -1.6774096488952637, -0.38760384917259216, -1.3394865989685059, -0.9076020121574402, 0.6530470848083496, -0.9241794943809509, -1.0388437509536743, 0.6900466084480286, 0.46880611777305603, -0.6611096858978271, -0.396074116230011, -0.16571049392223358, 0.2838437855243683, -0.5963561534881592, 0.9415751099586487, -0.2550235390663147, 1.553926706314087, -0.25267860293388367, -0.4261779189109802, -0.09974349290132523, -0.5291422009468079, 1.0781515836715698, 0.33270248770713806, -0.671058714389801, -0.6750162839889526, 0.4965921640396118, -0.6211853623390198, -0.7053831219673157, 0.4777139127254486, 0.34664928913116455, 0.513073205947876, -0.37732186913490295, -0.6679869890213013, 0.31874072551727295, 0.4120444059371948, 0.5687770247459412, -0.7452024221420288, -1.1896228790283203, -0.6172200441360474, 0.767533004283905, -0.7206956744194031, 0.2758291959762573, 0.511120080947876, 0.9011933207511902, 0.40235111117362976, -1.1622716188430786, -0.2876209616661072, -0.8174618482589722, 0.675383448600769, 0.14850063621997833, -0.5248932242393494, 0.10804177075624466, 0.4466976821422577, 0.1195136085152626, -0.8714914917945862, -0.6517122387886047, 0.5259556770324707, 0.1788363754749298, 0.018493952229619026, -0.7533516883850098, -1.0585389137268066, -0.8570071458816528, -0.00958029180765152, 0.14638842642307281, 0.7999326586723328, 0.5599537491798401, 0.41581496596336365, -1.1938332319259644, 0.8374931216239929, 0.9103052616119385, -0.037178389728069305, -0.3801790773868561, 0.484154611825943, 0.38229772448539734, -0.19141824543476105, -0.3166431188583374, -0.48131734132766724, 0.729239284992218, -0.8656796813011169, 0.9569892287254333, -0.7597128748893738, -0.6477221250534058, -0.07809417694807053], [-0.20768243074417114, 2.3101308345794678, -3.185514450073242, 0.4717504680156708, 0.9657737016677856, 0.1849443018436432, 1.2111748456954956, 0.39592570066452026, 0.1234307587146759, -0.7341877222061157, -0.8449513912200928, 0.134612575173378, 0.5829514861106873, 0.4508697986602783, -0.35329669713974, 0.5629965662956238, 0.22052887082099915, -0.1855935901403427, 0.6469832062721252, 1.1688381433486938, 0.0107234762981534, -1.2109527587890625, -0.8330621123313904, 0.47743576765060425, 0.08439968526363373, -0.12148521095514297, -1.5835776329040527, -0.05935022607445717, -0.7737670540809631, -0.575035572052002, 1.6300866603851318, -0.04917145520448685, 0.807000458240509, 0.5674382448196411, -1.1827609539031982, -0.08112850040197372, 0.43454110622406006, 0.2835920751094818, -0.0924365371465683, -0.7863932847976685, 1.1105698347091675, 0.8891416788101196, 0.25797349214553833, -0.9576922059059143, -0.4490998089313507, 0.8181922435760498, 1.5413479804992676, -0.9982461929321289, 0.5591009259223938, -0.6974519491195679, 0.6807037591934204, -0.3889677822589874, 0.4007270932197571, 1.6287732124328613, 0.8504615426063538, -1.1451112031936646, 0.417804092168808, 0.9971968531608582, -0.47931453585624695, 0.12334761023521423, 1.4058518409729004, 0.07566583156585693, 0.662880003452301, 0.19911742210388184, 0.2512172758579254, -0.43898555636405945, 0.4150209426879883, 0.4936787784099579, 1.258357048034668, -0.2048136591911316, 0.7558321952819824, 0.8779430985450745, -0.522316575050354, 0.7041066288948059, -0.8497548699378967, 0.4494154155254364, 0.5974613428115845, 0.2933194041252136, -0.4782960116863251, 0.3506065011024475, -0.21591144800186157, 0.1592463105916977, 0.5953978896141052, 0.6408848166465759, -0.09454882889986038, 0.16448530554771423, 0.14468304812908173, -0.28015533089637756, -0.5571700930595398, 1.4064552783966064, -0.3013100028038025, 0.6794266104698181, 1.1090329885482788, 0.07584326714277267, -0.06263846158981323, -0.7701289653778076, 0.06263191252946854, -1.11114501953125, -0.7304467558860779, -0.6807560920715332, -0.18173255026340485, -0.26952415704727173, 0.5360965132713318, 0.848970353603363, -0.0038039139471948147, 1.220339298248291, -0.14530187845230103, -0.8845839500427246, 0.6996681690216064, -0.06484534591436386, -0.32693567872047424, 1.0474574565887451, -0.1784582883119583, -1.0882840156555176, -0.4245544373989105, 1.2849689722061157, 0.3601817190647125, 0.4013453722000122, 1.1876327991485596, 0.6346749663352966, -0.5117784738540649, -0.5360167026519775, -0.4728465676307678, 0.09931732714176178, 1.4596667289733887, 0.5766144394874573, -0.4587586224079132, -0.384315550327301, 0.6862569451332092, 0.072083979845047, 1.2924357652664185, -0.2075187712907791, -0.41904428601264954, 0.3265936076641083, -0.06466539949178696, 1.5568692684173584, -0.5518779754638672, -0.6316336393356323, 0.03416989743709564, 0.9378809928894043, 0.11207804828882217, -0.06841826438903809, -0.1509115844964981, -0.6048864722251892, 0.1462918370962143, -0.394160658121109, -0.2811185419559479, -0.35720258951187134, -0.3423667252063751, 1.1099777221679688, -1.383908987045288, 0.8753125071525574, -0.02667730487883091, 1.1645742654800415, 0.9111150503158569, -0.6066796779632568, 0.3049444556236267, -0.7822296023368835, 0.6304985880851746, 0.4095730185508728, 0.4084547162055969, -0.06499070674180984, 0.04010983183979988, 0.6854311227798462, 0.12730292975902557, -0.596508264541626, 0.09135010093450546, 0.4647388756275177, -0.4606020152568817, 1.1250779628753662, -0.12573300302028656, -0.9331926107406616, -0.7495956420898438, 0.4125092029571533, 0.266193687915802, -0.8778169751167297, 0.7460975050926208, -0.038427338004112244, -1.364904522895813, -0.4461105763912201, 0.7011762261390686, -0.8073267936706543, 0.4306614398956299, 0.15410646796226501, 0.3912052810192108, -0.02348635159432888, -0.09274344146251678, -0.2685233950614929, -0.6681782007217407, -0.6697277426719666, -0.5372729301452637, -0.35095104575157166, -1.1849024295806885, -0.010738356038928032, -0.4865763783454895, -0.933281421661377, 0.9559447169303894, -0.2558538615703583, -0.9669068455696106, 0.49561282992362976, 0.637479305267334, -0.16557426750659943, -1.2463090419769287, -0.7874814867973328, -0.8660669326782227, 1.358839511871338, -0.9507570266723633, 0.27850306034088135, -1.2904499769210815, 0.5231143236160278, 1.2159944772720337, -1.0591756105422974, -1.0788719654083252, 0.4363052248954773, 0.7772994041442871, -1.5077749490737915, 0.9088761806488037, -0.04777619242668152, -0.025122500956058502, -0.5457240343093872, -0.348238468170166, 0.5078303813934326, 0.5579641461372375, 0.06440474838018417, 0.32375016808509827, -0.7031842470169067, -0.4613845944404602, -1.0599490404129028, 0.0785151794552803, -0.011012737639248371, -0.8150377869606018, -0.94190514087677, 0.37282344698905945, 0.4287548363208771, -1.030875325202942, 0.26098012924194336, -0.4849129617214203, 0.08407298475503922, 0.3286360502243042, 1.4352211952209473, 0.4748488962650299, 1.3674280643463135, -0.6716287136077881, -0.18020260334014893, -0.6905484795570374, -0.47291114926338196, 0.7166922688484192, -0.2630554139614105, -0.2123170644044876, 0.9554830193519592, 0.8365892767906189, -0.10281655192375183, 0.4272936284542084, -0.5042575597763062, 0.15116439759731293, -0.6672375798225403, -0.10869467258453369, 0.19662165641784668, -0.16396157443523407, 1.4677873849868774, 1.0674570798873901, -0.8253848552703857, 0.4029124975204468, -0.19712385535240173, 0.6334056258201599, 0.19910836219787598, -0.5256562829017639, -0.6358465552330017, -0.4475783705711365, -0.18366000056266785, -0.15363645553588867, -0.17984862625598907, 0.14610424637794495, 0.8800390958786011, -0.7669824361801147, -1.187900424003601, 0.305793821811676, 0.7144328951835632, -0.5792109370231628, 0.9145345091819763, -1.0857049226760864, -1.5106840133666992, -0.4826112389564514, 0.3985803723335266, 0.6371607184410095, -0.009283759631216526, -0.1464795172214508, 0.6774094104766846, 0.3540806174278259, 0.08974789828062057, 0.3494521677494049, -0.47151440382003784, 0.908488392829895, -0.030885495245456696, 0.20102350413799286, -0.18973304331302643, 0.8640716671943665, -0.2784923315048218, -1.004568099975586, 0.06036906689405441, 0.5378854870796204, 1.4724674224853516, 0.9170824289321899, 1.4193065166473389, -0.8946982026100159, -0.31446072459220886, -0.38284754753112793, -0.2568015456199646, -0.9082004427909851, -0.7104752659797668, -0.5286293625831604, -0.9124972820281982, -0.908197283744812, -0.11601623892784119, -0.46688467264175415, 0.05391767993569374, 0.2672100365161896, 0.5949728488922119, 0.9925998449325562, -0.4499436914920807, -1.1634902954101562, -0.31390324234962463, -0.1833297312259674, 0.06694653630256653, 0.695288896560669, 1.580001950263977, -1.6683987379074097, -0.5820176005363464, -0.3641199767589569, -0.46353840827941895, 0.10853970795869827, 0.5146589875221252, 0.20310766994953156, -1.4516663551330566, -0.39459481835365295, -0.1835561841726303, 0.7486110329627991, 0.0636935830116272, -0.542256236076355, -0.5633163452148438, 0.49524563550949097, 0.7327383756637573, 0.31929221749305725, -0.20490780472755432, 0.11017931997776031, -1.1173344850540161, -0.5733712315559387, -0.43717020750045776, 0.3519302010536194, 0.3987792432308197, -1.11647367477417, -1.4071861505508423, -0.5339532494544983, -0.17357923090457916, -0.5038644671440125, 0.8688972592353821, 0.6962172985076904, 1.1250113248825073, 0.226648211479187, -0.15375147759914398, 1.1463202238082886, -0.01047354843467474, 0.5249196290969849, -1.2247469425201416, 0.7677378058433533, 0.6043104529380798, 1.0363858938217163, 0.3993384540081024, 0.020144281908869743, 0.49748942255973816, -1.437050223350525, -0.17807060480117798, 0.14266976714134216, 0.17362825572490692, -0.23553146421909332, -0.3699333965778351, 0.04631703719496727, -0.4633767008781433, 0.059219732880592346, -0.7436240911483765, -0.21119625866413116, 0.2162407636642456, -0.27586543560028076, -0.2717221677303314, 0.8611515760421753, 0.8876096606254578, -0.4736986756324768, -0.06318692117929459, -0.46106693148612976, 0.7716407179832458, -0.32180505990982056, 0.48522838950157166, -0.19077667593955994, 0.6578643321990967, 1.002501368522644, -1.089505910873413, -0.04324251413345337, -0.8025928735733032, 0.4703330099582672, 1.2263668775558472, -1.0312542915344238, -0.5204110145568848, -0.20181585848331451, 0.4450434148311615, 0.4827805459499359, 0.8676442503929138, 0.47957584261894226, 0.3323642313480377, -0.24315474927425385, 0.1596670299768448, 0.6022920608520508, 1.2828401327133179, -0.03718459606170654, -0.20199377834796906, 0.9047706127166748, 0.2998887598514557, 0.45954716205596924, -0.9488168954849243, 0.3656318783760071, 0.43342268466949463, -0.1381024718284607, -0.42789238691329956, 0.4490148723125458, -0.5285162925720215, 1.5556528568267822, 0.7657560110092163, 0.4234427511692047, 0.41909313201904297, 0.20640721917152405, -1.3225599527359009, 0.19521591067314148, 0.15337920188903809, -0.9568545818328857, -0.27818024158477783, 0.5256687998771667, -0.061260223388671875, 0.9146307706832886, -0.07626573741436005, -0.050591617822647095, 0.5319356322288513, 0.4440271854400635, 0.28739896416664124, -0.16342733800411224, 0.5774658918380737, 1.100391149520874, 0.6912356615066528, 0.9380454421043396, -0.11531383544206619, -0.3123528063297272, 0.7874038219451904, -0.6932175159454346, 0.660686194896698, 1.5411279201507568, 0.5607628226280212, 1.1826748847961426, -1.4930446147918701, -0.2531262934207916, 0.8194770812988281, 0.03227562457323074, 0.5662840604782104, 0.4735746383666992, -0.06488804519176483, -0.5434108972549438, 0.18240809440612793, 0.47718414664268494, -0.2990444600582123, 0.3901427984237671, -0.7520374655723572, 0.5622230768203735, 0.7794368863105774, -0.8863511681556702, 0.21792614459991455, -0.8173890709877014, -0.07429418712854385, -0.2869378328323364, -0.3988064229488373, 0.7659252285957336, 0.48193052411079407, 0.7988928556442261, -0.24629609286785126, -0.5224274396896362, -0.37795430421829224, 0.619792640209198, -0.9339964389801025, 0.15820379555225372, -0.5953646302223206, 0.028903961181640625, -0.8104297518730164, -0.7556929588317871, -0.31166210770606995, -0.24601681530475616, -0.5708314776420593, -0.5072484612464905, -0.7356445789337158, -0.6770179271697998, 0.2947961091995239, 0.5484132766723633, 0.977175235748291, -0.18004551529884338, 0.30466923117637634, 0.12034823000431061, 0.06912726163864136, -0.6509932279586792, 0.09818707406520844, 0.5301637649536133, 0.12069970369338989, -0.11277875304222107, -0.4153652489185333, -1.1336637735366821, 0.5289737582206726, 0.2129317820072174, -0.5088916420936584, -0.15672484040260315, 0.49203798174858093, 1.3356165885925293, -0.759626030921936, -0.9624446630477905, 0.7784842252731323, -0.480663925409317, 1.0075949430465698, 0.7395954728126526, -0.7347813248634338, -1.1028165817260742, -0.09094905853271484, -1.8564095497131348, 1.456937313079834, -0.09908074140548706, -0.2713819444179535, 0.8427351117134094, 0.6016095876693726, 0.7032598257064819, 0.8354014754295349, -0.38819974660873413, 0.5621472597122192, 0.34970852732658386, 0.025585196912288666, -0.5097354054450989, 0.09362950176000595, 0.6440622210502625, -0.14207270741462708, -1.2794946432113647, 0.566590428352356, 0.316489040851593, -0.08435263484716415, -0.7744937539100647, 0.5871180295944214, -0.12070365250110626, 0.7111793756484985, 0.1633448749780655, -0.8712503910064697, 0.056861381977796555, -0.9120305180549622, 0.3193000555038452, 0.4736447036266327, 0.7564107775688171, 0.7099441885948181, -0.5822069048881531, 0.698885977268219, -1.010226845741272, 0.39473122358322144, -0.0016981243388727307, -0.2913621664047241, 0.7715585827827454, 0.5517650842666626, 0.4370814859867096, 1.332150936126709, 0.07221279293298721, -0.4659024178981781, -0.6163229942321777, -0.7140617966651917, 1.0681054592132568, -1.0170758962631226, -0.5049782395362854, -0.8769936561584473, -0.6374093890190125, -0.7218499183654785, 0.917147696018219, 0.5517371892929077, -0.6631346344947815, -1.267857551574707, -0.3425533175468445, 0.12141342461109161, 0.950264036655426, -0.5567725300788879, 0.8366947770118713, 0.12273894250392914, -0.8908316493034363, -0.16101160645484924, -0.2906864881515503, -1.5802851915359497, -0.14639145135879517, -1.0012612342834473, 0.3421086370944977, 0.1139807179570198, -0.2504434585571289, 0.4223300814628601, 1.2730644941329956, -1.6812630891799927, -1.347800850868225, -1.6752856969833374, -0.567408561706543, 1.0192270278930664, 0.6971792578697205, -1.632062315940857, 0.841582715511322, -0.5357885360717773, -0.4672086238861084, -0.20852907001972198, 0.28484615683555603, -0.6021811366081238, -0.0018458687700331211, -0.829626739025116, -0.3132413327693939, 0.24603864550590515, 1.37187659740448, 0.4429810345172882, 0.9957293272018433, 0.3057388663291931, 1.471909523010254, -0.5889869332313538, -0.8430643081665039, 0.1998884379863739, 0.9980692267417908, -0.8992065191268921, -0.5488516092300415, 0.08485529571771622, -0.8438924551010132, -0.8511198163032532, 0.28086137771606445, 0.9791877865791321, -0.6638563871383667, -0.04422765597701073, 0.03551115840673447, -0.38340049982070923, -0.8345752954483032, 0.7914388179779053, 0.18738240003585815, -0.6855194568634033, -0.15137559175491333, -0.670642614364624, 0.04141809046268463, -1.380714774131775, 0.35471034049987793, 0.7498022317886353, 0.6724075078964233, -0.5130926370620728, 0.07351226359605789, 0.5670457482337952, 0.7058098912239075, -0.7040214538574219, 1.4288134574890137, 0.0548291951417923, -0.3404596149921417, -0.7080442905426025, 0.11409526318311691, -0.4389934837818146, 0.5405874252319336, -0.1624995470046997, -0.03345131129026413, -0.8349950909614563, 0.13652357459068298, -0.10329920053482056, -0.2126755714416504, -0.20788313448429108, 0.8552422523498535, 0.1371617466211319, 0.48389753699302673, 1.0801626443862915, -1.1649508476257324, -0.34143438935279846, 0.8863071203231812, 0.21018818020820618, -0.8746143579483032, -0.018910937011241913, 0.009101109579205513, -0.2699747681617737, 0.24670051038265228, 0.676589846611023, 0.752158522605896, -0.9664197564125061, 0.5111107230186462, 0.045631490647792816, -0.33926916122436523, -0.4647862911224365, -0.3331264555454254, -1.6079821586608887, 0.4899652898311615, -0.886323869228363, -0.721595823764801, 0.047515083104372025, -0.7974262237548828, -0.9885837435722351, -0.3075636327266693, 0.5809745192527771, -0.854987621307373, -0.18993224203586578, 0.6564748287200928, -0.1376427710056305, -0.13943630456924438, 1.5774216651916504, -0.7734020948410034, 1.4586082696914673, -0.17605653405189514, -0.385934054851532, -0.8404979109764099, -0.12353957444429398, 0.21882788836956024, 0.344255268573761, -0.3694298267364502, -0.702416181564331, 0.5322005152702332, -0.11107078194618225, -0.4619951546192169, 1.0780915021896362, 0.020418070256710052, -0.08713844418525696, -0.5598117709159851, -0.7721247673034668, 0.7974207401275635, 0.22914113104343414, 0.68229740858078, -0.6601110100746155, -0.7084402441978455, -0.8622221946716309, 0.4183897376060486, -0.3614260256290436, 0.044828277081251144, -0.18720440566539764, 0.6291289329528809, 0.062272071838378906, -1.3964346647262573, -0.4646827280521393, -1.0054221153259277, 1.0733577013015747, 0.6674783825874329, -0.26267537474632263, -0.4081474840641022, -0.1985797882080078, -0.35375645756721497, -0.802889347076416, -0.7496685981750488, 0.18969722092151642, 0.02652108296751976, -0.6713456511497498, -0.5218053460121155, -0.1528794765472412, -1.163346767425537, 0.005178377963602543, 0.39195895195007324, 0.38213202357292175, 0.6171250939369202, -0.019568689167499542, -1.2962037324905396, 0.681952714920044, 0.6704469919204712, 0.6157775521278381, -0.021733025088906288, 1.0631495714187622, 0.7127867341041565, 0.14095087349414825, -0.5757497549057007, 0.027798738330602646, 0.6146173477172852, -0.9734360575675964, -0.3117290437221527, -1.056148648262024, -0.4082106351852417, 0.35677003860473633], [-0.3333817422389984, 2.103209972381592, -2.9494564533233643, -0.021117843687534332, 0.5160644054412842, -0.05034325271844864, 0.9849159121513367, 0.7002232670783997, 0.026354027912020683, -1.2057615518569946, -0.513616681098938, 0.30583107471466064, 1.0618922710418701, 0.9220775365829468, 0.021253859624266624, 0.6985846161842346, 0.3076416850090027, -0.6745290756225586, -0.46694275736808777, 0.8372313976287842, -0.8392040729522705, -1.0957049131393433, -0.04917808994650841, 0.6650558114051819, -0.04876670613884926, 0.4848257899284363, -1.901146411895752, -0.30804112553596497, -1.109379529953003, -1.009556770324707, 0.6221706867218018, -0.09948398917913437, 0.22464071214199066, 0.11113664507865906, -1.398446798324585, -0.3665301203727722, 0.6132457256317139, -0.0735919252038002, -0.29457616806030273, -1.074794054031372, 1.865761637687683, 0.12152011692523956, -0.12594850361347198, -1.3596880435943604, 0.16663670539855957, -0.16917185485363007, 1.5672798156738281, -0.8740314841270447, 0.35966047644615173, -0.8999584317207336, 0.09373650699853897, -0.09258558601140976, -0.005714752245694399, 1.4540544748306274, 0.6983276605606079, -1.0493659973144531, -0.05538693442940712, 0.6038822531700134, 0.3235034644603729, 1.3756256103515625, 1.0509467124938965, 0.07716149836778641, 0.042693138122558594, 1.2726813554763794, 0.5531972646713257, 0.2574901282787323, 0.4484454393386841, 0.25421464443206787, 0.25209301710128784, -0.3708368241786957, 0.17292988300323486, -0.3495507538318634, 0.1489434391260147, 0.2145804464817047, -0.3821698725223541, 0.3947471082210541, 0.08526010066270828, 0.24988482892513275, -0.7922075986862183, 0.28053995966911316, -0.3662258982658386, 0.10045907646417618, 0.7725191116333008, -0.11407341808080673, -0.8859946727752686, -0.05276751518249512, 0.17648136615753174, -0.43506866693496704, -0.01304258219897747, 1.425679087638855, 0.4068572223186493, 0.4382907748222351, 0.6151320934295654, -0.06784304976463318, -0.6735398769378662, -0.14141745865345, 0.25042271614074707, -1.0699728727340698, -0.49444857239723206, -1.055752158164978, -0.1969776153564453, -0.9223071336746216, 0.09518884867429733, 0.7115602493286133, 0.5842055082321167, 1.1859626770019531, -0.028814582154154778, -0.7037524580955505, 0.742845356464386, 0.05985981971025467, -0.43034327030181885, 1.0918666124343872, -1.2537248134613037, -1.3967812061309814, -0.10351572930812836, 1.2326685190200806, 0.6794357895851135, 0.0008656072895973921, 1.4131138324737549, 0.682589054107666, -0.13334645330905914, -0.5573073625564575, -0.3325953185558319, 0.2564535140991211, 0.81589275598526, 0.6967548131942749, -0.515302836894989, -0.646222710609436, 0.6162882447242737, -0.3276018798351288, 0.7961407899856567, -0.5586937069892883, -0.5806314945220947, 0.6887429356575012, 0.22257646918296814, 1.2862837314605713, -1.0840740203857422, -0.8218614459037781, 0.3927335739135742, 0.5925766825675964, 0.5028945803642273, -0.431294322013855, 0.24494969844818115, -0.8760724663734436, -0.1134270578622818, -0.3614415228366852, 0.1590099185705185, -0.7132853269577026, -0.5792727470397949, 0.8156604170799255, -1.2579312324523926, 0.7549759149551392, -0.2987615764141083, 1.0873312950134277, 0.6160397529602051, -0.8091492652893066, 0.5138869881629944, -0.4269634187221527, 0.7317667603492737, 0.677765965461731, 1.087843894958496, -0.3431764543056488, -0.011056162416934967, 0.21999645233154297, 0.48641446232795715, -0.40449953079223633, 0.8288934230804443, 0.5211085677146912, -0.5348191261291504, 1.058190107345581, -0.28238099813461304, -1.054382085800171, -0.12896369397640228, -0.1902257800102234, -0.052768006920814514, -0.5686812996864319, 1.0670684576034546, -0.489950031042099, -0.6681315302848816, -0.7597298622131348, 1.0188963413238525, -0.7864527702331543, 0.48264625668525696, -0.37996482849121094, 0.39278218150138855, -0.018320506438612938, 0.1089094951748848, -0.11093077063560486, 0.10888367146253586, -1.3838106393814087, -1.0048500299453735, -0.42763882875442505, -0.7968536019325256, 0.4969349205493927, -0.03623959422111511, -0.5964364409446716, 0.7596633434295654, -0.6215893626213074, -0.5095095038414001, 0.14543770253658295, 0.3584194481372833, 0.5198877453804016, -0.9949861168861389, -0.4562200605869293, 0.014566882513463497, 1.0385375022888184, -0.03858640044927597, 0.21495267748832703, -0.3625386357307434, 0.02903609909117222, 0.7948592305183411, -0.6460610628128052, -1.258151888847351, 0.9128220677375793, 0.6629347801208496, -0.8807047009468079, 0.3270077109336853, -0.2050316482782364, -0.2787003219127655, 0.0912998765707016, 0.3057880103588104, 0.31811439990997314, -0.1090056374669075, 0.07660552859306335, 0.3202837407588959, -0.3835498094558716, -0.6199778318405151, -1.125393271446228, -0.8071061372756958, 0.23225292563438416, -0.9077908992767334, -0.5150518417358398, 0.8032588958740234, 0.4275592863559723, -0.7958919405937195, 0.5315567851066589, -0.24343571066856384, 0.1926351636648178, 0.4858405292034149, 0.6740935444831848, 0.14347058534622192, 0.2059038132429123, -0.4953066110610962, -0.3465781807899475, -0.7573996186256409, 0.17949725687503815, 1.0536333322525024, -0.34661877155303955, -0.10923629999160767, 1.384620189666748, 1.2836294174194336, -0.2641596794128418, 0.9478574991226196, 0.11719494313001633, -0.35122695565223694, -0.5064707398414612, -0.2683785855770111, 0.29478827118873596, -0.8619769215583801, 1.5083684921264648, 0.9879240989685059, -1.3863449096679688, 0.10631993412971497, -0.46847689151763916, 0.32134923338890076, -0.08662953972816467, -0.9408319592475891, -0.9555975198745728, -0.27338317036628723, -0.5129268765449524, 0.4768155813217163, 0.08289309591054916, 0.24347195029258728, 0.7667629718780518, -0.7652373313903809, -0.6189692616462708, -0.2873918414115906, 1.0662745237350464, 0.27986451983451843, 1.3293278217315674, -0.5424743294715881, -1.4213474988937378, -0.7864219546318054, 0.4778513014316559, 0.2932700216770172, -0.21294768154621124, -0.4476207196712494, 1.3700276613235474, 0.47465837001800537, 0.19664716720581055, 0.8012999892234802, -0.1882714331150055, 0.5738274455070496, 0.02031729742884636, 0.2783392667770386, 0.057858940213918686, 0.9223974347114563, -0.9600557088851929, -1.0482457876205444, -0.06985937803983688, 0.8515005707740784, 1.5560812950134277, 0.7813925743103027, 1.0261399745941162, -0.5522969961166382, 0.011251645162701607, -0.32076871395111084, -0.441463828086853, -0.6157797574996948, -0.40473347902297974, -0.9383973479270935, -0.9370160698890686, -0.09252526611089706, -0.6896626353263855, -0.2968602478504181, 0.3835369646549225, 0.8174984455108643, 1.2112854719161987, 0.5908345580101013, -1.0132040977478027, -0.6767479181289673, 0.0015204104129225016, -0.40330472588539124, -0.6888684630393982, 0.5305994749069214, 1.4673892259597778, -1.372107744216919, -0.34524810314178467, -0.19354736804962158, -0.32144078612327576, 0.4210399091243744, 0.16527041792869568, -0.38954034447669983, -1.1402432918548584, -0.7985610961914062, 0.4460267722606659, 1.1266779899597168, -0.004623361397534609, -0.5510634183883667, -0.1838451325893402, 0.06260953843593597, 0.7401546835899353, 0.30222567915916443, -0.721524178981781, 0.5372949838638306, -0.7169502973556519, -0.07978656888008118, -0.523772120475769, 0.6200835704803467, 0.7711297273635864, -0.7217660546302795, -1.00679612159729, -0.6406252384185791, -0.28673607110977173, -0.7979729771614075, 0.15921121835708618, 0.6702438592910767, 0.5241522192955017, -0.08967867493629456, 0.24762757122516632, 1.866081714630127, -0.44565093517303467, -0.26937779784202576, -0.7609536647796631, 0.4997059404850006, 0.8289753198623657, 1.437267780303955, 0.30381351709365845, 0.8452126383781433, 0.7279502153396606, -0.8922994136810303, -0.04516516998410225, 0.31393587589263916, 0.874332070350647, 0.059879470616579056, -0.8786262273788452, -0.7439472675323486, -0.5229333639144897, 0.37626001238822937, -0.7564332485198975, -0.3372480571269989, 0.392077773809433, -0.06030898541212082, -0.4801512062549591, 0.5839217305183411, 1.1279224157333374, -0.4470803439617157, -0.6342586278915405, 0.18435414135456085, 0.7081269025802612, -0.8818160891532898, 0.22597143054008484, -0.37942782044410706, 0.3901781737804413, 0.42123809456825256, -0.9139155745506287, -0.4176810085773468, -0.1751011461019516, 0.30414092540740967, 2.0704550743103027, -1.476475477218628, -0.576099693775177, -0.3458932936191559, 0.250036358833313, 0.22203491628170013, -0.0040407306514680386, 0.08505389839410782, 0.785780131816864, -0.7788287997245789, 0.025282101705670357, 0.8770170211791992, 1.4731332063674927, 0.19287610054016113, -0.33989444375038147, -0.35710206627845764, -0.5158547163009644, 0.32639026641845703, -1.1711329221725464, -0.2803231477737427, 0.319879949092865, -0.5205714106559753, -0.07098738104104996, 0.22019481658935547, 0.32159537076950073, 2.349123477935791, 0.3761129677295685, 0.6977013349533081, 0.25718894600868225, 0.11421716213226318, -0.509580135345459, -0.4374079406261444, 0.7299359440803528, -0.6294682621955872, -0.8549957275390625, 0.8919548988342285, 0.12172851711511612, 0.30596020817756653, 0.08550797402858734, -0.1109049841761589, 0.4190385341644287, 0.13488756120204926, -0.5062257051467896, -0.19220004975795746, 0.3137836754322052, 1.345352053642273, 0.8916504383087158, 1.1094160079956055, -0.29973524808883667, -0.3592393398284912, 1.397167444229126, -0.06767042726278305, 0.41210031509399414, 0.6970473527908325, 0.24286052584648132, 1.1132159233093262, -1.1798603534698486, -1.0620383024215698, 0.39834511280059814, -0.43190228939056396, 0.48393309116363525, -0.33227449655532837, 0.3298039436340332, -0.9969528317451477, -0.6632222533226013, 0.35487785935401917, -0.16984207928180695, 1.1777777671813965, -0.8594129085540771, 0.6038373112678528, 0.6358820199966431, -0.3467293679714203, -0.5371177792549133, -0.4395318031311035, -0.07944715023040771, -0.5546438097953796, 0.125092014670372, 0.7434201240539551, 0.8907670974731445, 0.4345235228538513, 0.44856491684913635, 0.11443313211202621, -0.5442728400230408, 0.2702878415584564, -0.8684035539627075, 0.28184637427330017, -0.5947933197021484, -0.02661316469311714, -0.6014984250068665, -0.15017588436603546, -0.41580599546432495, -0.35655030608177185, -1.1181670427322388, -1.4229806661605835, -0.4957990348339081, -0.6794487237930298, 0.23472648859024048, 0.7220850586891174, 0.7644047737121582, 0.6303235292434692, 0.1297706514596939, 0.24843813478946686, 1.027036428451538, -0.5773846507072449, 0.15196800231933594, 0.6040225625038147, 0.22963492572307587, 0.26427608728408813, -0.834488034248352, -0.19865375757217407, 0.6764989495277405, 0.8147619962692261, -0.24558697640895844, 0.1384512037038803, 0.09365427494049072, 1.6254075765609741, -0.17638397216796875, -0.8097516894340515, 0.4600379765033722, -0.6198909878730774, 1.311481237411499, 0.9303457736968994, -1.0375144481658936, -0.325263112783432, -0.3370975852012634, -1.5981987714767456, 1.4379007816314697, -0.6516959071159363, -0.5653464198112488, 1.26385498046875, 0.8572698831558228, -0.16235119104385376, 0.9446565508842468, -0.2552856504917145, 0.4129583537578583, 0.8359803557395935, 0.27769970893859863, -0.24870924651622772, 0.8740788102149963, 1.183412790298462, -0.08517273515462875, -1.1728225946426392, 1.21575129032135, -0.33967798948287964, -0.29802024364471436, -0.5962801575660706, 0.5281139016151428, -0.01354222185909748, -0.1079094409942627, 0.0896938368678093, -0.14950303733348846, 0.4585615396499634, -0.9887771606445312, 0.6109732389450073, 0.023155227303504944, 0.5968632102012634, 0.18169397115707397, -0.7266953587532043, -0.2571060061454773, -0.5823966264724731, 0.16632840037345886, -0.1798209398984909, -0.6266939640045166, 1.251947045326233, 0.8190943598747253, 0.0816797986626625, 0.25423356890678406, 0.3334769308567047, -0.7710207104682922, -0.9546412825584412, -0.7216942310333252, 1.019227385520935, -1.6559475660324097, 0.27470940351486206, -1.4513356685638428, -0.6569252014160156, -0.7640001177787781, 0.3779688775539398, 0.6749069094657898, -1.2048810720443726, -1.212119698524475, 0.47246018052101135, 0.38559290766716003, 1.0020743608474731, -0.3810744881629944, 0.4915791451931, -0.3041808307170868, -1.0862380266189575, -0.137932687997818, 0.0035273078829050064, -1.490676760673523, -0.2449476420879364, -1.2495671510696411, 0.7360112071037292, 0.25026974081993103, -0.23083728551864624, 0.018822267651557922, 1.6969280242919922, -1.735425591468811, -1.3750823736190796, -0.6517676711082458, -0.217288538813591, 0.8413648009300232, 0.8746828436851501, -0.9601575136184692, 0.9698973894119263, -0.19999155402183533, -0.5566118359565735, -0.07050013542175293, 0.23494765162467957, -0.6854153871536255, 0.05569399520754814, -0.6570578217506409, 0.21998398005962372, 0.2389293611049652, 1.0330294370651245, 0.6895469427108765, 1.6095547676086426, 0.0550815649330616, 1.6699740886688232, -0.41154810786247253, -0.8097445368766785, 0.1496949940919876, 0.42275863885879517, -0.8911757469177246, -0.4374990165233612, 0.17855900526046753, -0.8109930157661438, -0.9336737394332886, 0.19015415012836456, 1.2196972370147705, -0.6439079642295837, 0.3848397433757782, -0.23791378736495972, 0.017676951363682747, -0.5751165747642517, 0.8835467100143433, 0.46047961711883545, -0.9591944217681885, -0.7137802839279175, -0.5162203311920166, -0.1700793206691742, -0.8343409299850464, -0.845132052898407, 0.6573591232299805, 0.9149159789085388, -0.5407382249832153, -0.31237128376960754, 0.03042716160416603, 0.37922343611717224, -0.7890436053276062, 1.2042063474655151, 0.21067039668560028, -0.44913583993911743, 0.06938014179468155, 0.11798453330993652, -0.3498799204826355, 0.13073498010635376, -0.22238832712173462, -0.11240483075380325, -0.37882155179977417, 0.02911956235766411, -0.43026500940322876, 0.36598607897758484, -0.9078199863433838, 0.8124042749404907, 0.5571601986885071, 0.7553263902664185, 1.9070005416870117, -1.0929585695266724, -0.3414429724216461, 1.1793758869171143, 0.1878984123468399, -0.9448472857475281, 0.355676531791687, -0.13029950857162476, -0.39484450221061707, -0.23339641094207764, 0.6629209518432617, 0.5547215342521667, -0.9504920840263367, 0.8660890460014343, 0.4775554835796356, -0.09451426565647125, 0.12943261861801147, -0.3094611167907715, -1.566200613975525, -0.24025312066078186, -0.5308508276939392, 0.39489907026290894, 0.7714418172836304, -0.6929802298545837, -0.5737292170524597, -0.3341865837574005, 0.42523133754730225, -0.1074763610959053, -0.6842605471611023, 0.43086251616477966, -0.23465099930763245, -0.07183325290679932, 0.9610359072685242, -0.8310986757278442, 1.5429065227508545, 0.07046139240264893, -0.39071735739707947, -0.2761992812156677, 0.19174210727214813, -0.012412150390446186, 0.26033225655555725, -0.459432452917099, -0.8482343554496765, 0.1563519686460495, -0.08769148588180542, -0.13599637150764465, 0.9256122708320618, 0.41221684217453003, 0.5424110293388367, -0.8913283348083496, -1.0417060852050781, 0.5508396029472351, 0.484668493270874, 0.0855618566274643, -0.56707364320755, -1.3193652629852295, -0.38252609968185425, 0.3944407105445862, -0.3660741150379181, 0.38005346059799194, -0.1532474309206009, 0.38713735342025757, 0.3466706871986389, -0.9148010611534119, -0.738649845123291, -1.0019527673721313, 1.1738035678863525, -0.0812363550066948, 0.1900179088115692, 0.16440488398075104, -0.6206585764884949, 0.1584714949131012, -0.5429006218910217, -0.32137662172317505, 0.36126652359962463, 0.09641185402870178, 0.2095855325460434, -1.022207260131836, -0.4016428589820862, -0.8966625928878784, -0.4731300175189972, 0.3630687892436981, 0.803284764289856, 0.7033842206001282, 0.7164287567138672, -1.478242039680481, 0.7658252716064453, 0.45121029019355774, -0.19726473093032837, 0.37131577730178833, 1.574152946472168, 0.9731098413467407, -0.4271085560321808, -0.4074433743953705, -0.08004465699195862, 0.9200097918510437, -0.7086910009384155, -0.29724109172821045, -1.3435908555984497, -0.6447597146034241, 0.11731468141078949], [-1.1223244667053223, 2.0527091026306152, -2.743731737136841, 0.36985883116722107, 1.0499197244644165, -0.08626023679971695, 1.3337534666061401, 0.004646657034754753, -0.17815673351287842, -0.4696984589099884, -0.6569536924362183, 0.5093085765838623, 0.7135547995567322, 0.8873103260993958, 0.327494353055954, 0.20099209249019623, 0.60172438621521, -0.40408337116241455, 0.5677622556686401, 0.8767159581184387, -0.5377410650253296, -0.9817512631416321, -0.40925782918930054, 0.31597188115119934, 0.4474058449268341, 0.1296733170747757, -1.3194881677627563, 0.4099811315536499, -1.150691270828247, -0.9264757633209229, 1.5373914241790771, -0.49042943120002747, -0.0008513191714882851, -0.10818549245595932, -1.194236159324646, 0.05474048852920532, 0.9524753093719482, 0.1267307698726654, -0.5650658011436462, -0.4168292284011841, 2.1412582397460938, 0.10672629624605179, -0.2454671859741211, -1.4871350526809692, 0.19450072944164276, -0.21602506935596466, 0.39344504475593567, -0.4638795852661133, 0.24327680468559265, -1.065610647201538, 0.2967032790184021, 0.6783242225646973, -0.02243027836084366, 1.2450071573257446, 0.5772045850753784, -0.694485604763031, 0.5656039714813232, 0.9495587348937988, -0.6427892446517944, 0.711164116859436, 0.7264355421066284, -0.521981418132782, -0.22973255813121796, 0.150911346077919, 0.5347968339920044, -0.2797575294971466, 1.3220244646072388, 0.555325984954834, 0.22262831032276154, 0.07223423570394516, 0.42706021666526794, 0.6475703120231628, -0.18362414836883545, 0.051297228783369064, -0.6383527517318726, 0.39079606533050537, 0.42112430930137634, 0.4598677158355713, -0.39153429865837097, 0.5947816967964172, -0.0830007940530777, 0.39001917839050293, 0.31878504157066345, 0.2669863700866699, 0.3331625759601593, -0.03090146742761135, -0.3241620659828186, -0.03260854259133339, 0.05219052731990814, 2.2010691165924072, 0.16059421002864838, 0.6178165674209595, 0.8865882158279419, 0.2779536545276642, 0.10889291018247604, -0.46758654713630676, -0.09578245878219604, -0.8855584859848022, -0.19321879744529724, -0.970925509929657, 0.15160007774829865, -0.9940407276153564, -0.3452524244785309, 0.7895785570144653, 0.5434407591819763, 1.9043397903442383, -0.7486463189125061, -0.6366764903068542, 0.048631858080625534, -0.3001711666584015, -0.6289950013160706, 0.6068089008331299, -0.7806087136268616, -0.9983437061309814, -0.042609803378582, 0.669158935546875, 0.8014394640922546, 0.42340371012687683, 0.7734048366546631, 0.324747771024704, -0.40434256196022034, -0.37557485699653625, -0.20887921750545502, 0.7241397500038147, 0.7833939790725708, 0.44759801030158997, -0.5890282988548279, -0.45235586166381836, 0.2864021062850952, 0.10686234384775162, 0.09786567836999893, -0.8492887616157532, 0.1466531902551651, 0.5191391110420227, -0.5558186769485474, 0.7000795006752014, -0.6930206418037415, -0.9137210249900818, 0.23681247234344482, -0.001766386441886425, 0.03983931615948677, -0.4005641043186188, -0.22965486347675323, -0.783683717250824, 0.5244379639625549, -0.7055230140686035, 0.6213490962982178, -0.27491796016693115, -0.6418287754058838, 0.0633029192686081, -1.2677416801452637, 0.43694421648979187, -0.19462457299232483, 1.0776304006576538, 0.1337091475725174, -0.2393355816602707, 0.6220694184303284, -0.21812692284584045, 0.4004116356372833, 1.2253477573394775, 0.4805130660533905, 0.27580803632736206, -0.9943655729293823, 0.9840435981750488, 0.8610774278640747, -0.8177493810653687, 0.6091309785842896, -0.14382928609848022, -0.5002736449241638, 1.0344175100326538, -0.10032514482736588, -0.6511730551719666, -0.6313984990119934, 0.35504329204559326, 0.09871882200241089, -0.6379605531692505, 0.9510418176651001, -0.3230036199092865, -1.0775243043899536, -1.361304521560669, 0.6549990773200989, -0.32763123512268066, 0.41504254937171936, -0.09609697014093399, 0.5776026248931885, -0.09933321923017502, 0.008499384857714176, -0.3453013300895691, 0.02789345383644104, -1.0753071308135986, -1.2716758251190186, -0.21863222122192383, -1.2097609043121338, -0.05879531428217888, -0.16680234670639038, -0.48218855261802673, 1.0998634099960327, -0.8703579902648926, -0.5999422669410706, -0.046353779733181, 0.3115127980709076, -0.6301231384277344, -1.6377779245376587, -0.12848612666130066, -0.3645946979522705, 1.0923283100128174, -0.3471936881542206, 0.6721792221069336, -0.8503998517990112, 0.31843042373657227, 0.9352619051933289, -0.15193867683410645, -1.3593848943710327, 0.43262919783592224, 0.10171741247177124, -1.517765760421753, 0.7811056971549988, -0.2656956911087036, 0.41290488839149475, 0.02067137323319912, -0.25323694944381714, 1.2504440546035767, 0.13128261268138885, 0.04327038303017616, -0.03746197745203972, -0.9185547232627869, -0.3033863604068756, -0.8861346244812012, -1.3850371837615967, 0.6476454138755798, -1.0837270021438599, -0.619778573513031, 0.40639281272888184, 0.7430161237716675, -1.487457513809204, 0.9100339412689209, -0.29262441396713257, 0.4343615472316742, 0.40698063373565674, 0.7036444544792175, 0.3022400736808777, 0.34085527062416077, -0.7983682751655579, -0.047458499670028687, -0.9784818291664124, -0.17326508462429047, 0.44733691215515137, -0.30591288208961487, 0.38322335481643677, 1.2013684511184692, 1.173335075378418, -0.282943993806839, 0.2934410870075226, -0.34898078441619873, 0.24081259965896606, -0.9278045892715454, -0.14146055281162262, 0.7369027137756348, -0.4633234143257141, 1.108932375907898, 0.6939570903778076, -1.5332621335983276, -0.2473771870136261, -0.29369476437568665, 0.1464574784040451, -0.6671988368034363, -1.0854963064193726, -0.8609445095062256, 0.02606184408068657, -0.21699319779872894, -0.09502827376127243, -0.031069165095686913, -0.586892306804657, 0.8831437826156616, -0.1439722329378128, 0.0659366324543953, -0.15105952322483063, 0.7424085736274719, 0.09931057691574097, 0.42818769812583923, -0.31882232427597046, -1.191907525062561, -0.5014002323150635, 0.535689115524292, 0.3612799048423767, 0.4011869430541992, 0.9769704937934875, 0.8364726305007935, 0.49308252334594727, 0.3575921952724457, 0.6094344854354858, 0.2945882976055145, 0.4304214417934418, 0.4335755705833435, 0.14373183250427246, 0.405476450920105, 0.9670354723930359, -1.6462633609771729, -0.7907525897026062, -0.02922859974205494, 0.396087110042572, 1.3628603219985962, 0.9813603758811951, 1.435225009918213, -0.4359135031700134, -0.3680749833583832, -0.3446700870990753, -0.03785134479403496, -0.03786521404981613, -0.1889292597770691, -0.8010494112968445, -0.7907391786575317, -0.6313411593437195, -0.8284956812858582, -0.25604310631752014, 0.31464529037475586, -0.2691165804862976, 1.1274641752243042, 0.5507224202156067, -0.6573765277862549, -0.6527105569839478, -0.5055278539657593, -0.19892868399620056, -0.40832749009132385, 0.9843679070472717, 1.4488500356674194, -1.6783123016357422, -0.12898977100849152, 0.20386242866516113, 0.20785854756832123, 0.311989963054657, 0.1334272027015686, 0.07616059482097626, -1.0614498853683472, -0.4060472249984741, -0.27267584204673767, 0.9224035739898682, 0.08727280795574188, -0.43874216079711914, -0.13066880404949188, 0.2514767646789551, 1.0216773748397827, 0.10707569122314453, -0.6083377003669739, 0.46001237630844116, -0.8329702019691467, -0.3781651556491852, -0.2061149626970291, 0.049301665276288986, 0.8619210124015808, -0.609585165977478, -0.7779896855354309, -0.38561707735061646, -0.38082563877105713, -0.2376541644334793, 0.9064707159996033, 0.46353623270988464, 0.4687953591346741, 0.042474955320358276, -0.40332847833633423, 1.4726125001907349, -0.16157017648220062, 0.522704005241394, -1.3348532915115356, 1.034018874168396, 0.7478360533714294, 1.2878763675689697, 0.8519868850708008, 0.22209139168262482, 0.6111435294151306, -0.5496874451637268, -0.4574393928050995, 0.19010122120380402, 0.5625687837600708, 0.6127631664276123, -0.2339356541633606, -0.2143539935350418, -0.110505111515522, -0.0033862562850117683, -0.5409835577011108, 0.21332179009914398, 0.5464561581611633, -0.446507066488266, -0.7429712414741516, 1.205114722251892, 0.669938862323761, -0.23119010031223297, -0.40227583050727844, -0.6027898192405701, 0.5278797149658203, -0.8620632886886597, 0.21641959249973297, -0.08158961683511734, -0.07995135337114334, 0.06805511564016342, -0.6321752667427063, 0.04902788996696472, -0.3789632022380829, 0.1616574376821518, 1.140708088874817, -1.2638089656829834, -0.15379278361797333, -0.5966828465461731, 0.023084213957190514, 0.9288991093635559, 0.17689283192157745, 0.18806637823581696, 0.10559029132127762, 0.11389192193746567, 0.7135856747627258, 0.14699697494506836, 1.1859990358352661, -0.1461307257413864, -0.3665861487388611, 0.5193822383880615, 0.05460093542933464, 0.3985461890697479, -0.9842071533203125, -0.7882388234138489, -0.22683964669704437, -0.5662791728973389, -0.6141754388809204, 0.5827281475067139, 0.38164329528808594, 1.8310467004776, 0.16267521679401398, 0.45650964975357056, 0.3569169342517853, -0.1690649688243866, -0.7231606841087341, -0.33566227555274963, 0.13254188001155853, -0.23749999701976776, 0.05397481471300125, -0.2534962296485901, 0.7561689615249634, 0.6048670411109924, -0.12555263936519623, 0.09597126394510269, 0.20484447479248047, 0.3002031445503235, 0.23038747906684875, -0.22299757599830627, 0.6347569227218628, 1.1194982528686523, 0.6851807832717896, 1.5081559419631958, -0.3599473237991333, -1.1395597457885742, 0.6937945485115051, 0.2316180169582367, -0.08077898621559143, 0.8813526630401611, 0.575107753276825, 1.3128173351287842, -1.3978593349456787, -0.17963261902332306, 0.735022246837616, 0.13414844870567322, 0.2687787711620331, -0.5330308079719543, 0.042560894042253494, -1.0636636018753052, -0.13373389840126038, 0.8829326629638672, -0.8740426898002625, 0.905358612537384, 0.12305354326963425, -0.1468518078327179, 1.138327956199646, -0.3420102298259735, 0.1446561962366104, -0.762834906578064, -0.2394072562456131, -0.6246044635772705, -0.10333137959241867, 0.7937342524528503, 1.0075714588165283, 1.0757948160171509, 0.3705978989601135, -0.04258997365832329, -0.5364761352539062, 0.18749885261058807, -1.034376859664917, 0.29328685998916626, -0.00754851009696722, 0.24330727756023407, -0.6676642894744873, -1.1718024015426636, -0.1709420531988144, -0.816055417060852, -1.0970937013626099, -0.10337641835212708, -0.35515472292900085, -1.0229895114898682, 0.4913875460624695, 0.13150541484355927, 0.8087950348854065, 0.7414022088050842, 0.5120738744735718, 0.45632320642471313, 0.2372858226299286, -0.7366296648979187, -0.07307445257902145, -0.20048744976520538, -0.16584917902946472, -0.017701048403978348, -0.7615880966186523, -0.5079740285873413, 0.6748865246772766, -0.25788891315460205, -0.37721675634384155, -0.4446044862270355, 0.7113043665885925, 1.8673536777496338, -0.11130734533071518, -0.2948322296142578, 0.6954565644264221, -0.4059409201145172, 1.4459718465805054, 1.3107496500015259, -1.1452323198318481, -0.4272034466266632, 0.32254862785339355, -1.999032974243164, 1.3192960023880005, -1.0561836957931519, -0.04225213825702667, 0.6968902349472046, 0.17204080522060394, -0.1271224319934845, 1.236317753791809, -1.2783833742141724, 0.3469022214412689, 0.46209123730659485, -0.5679185390472412, -0.6809791922569275, 0.3632737994194031, 1.2153764963150024, -0.11496228724718094, -1.0330666303634644, 0.5728232264518738, -0.1753542125225067, -0.626510739326477, -0.2987450659275055, 0.5240092277526855, 0.11107108741998672, 0.2662492096424103, -0.07131697237491608, -0.30743879079818726, 0.5226856470108032, -1.5228354930877686, 0.26132816076278687, -0.044952116906642914, 0.47940683364868164, 0.7800991535186768, -0.549551784992218, 0.7059096097946167, -0.3033955991268158, -0.0619724802672863, -0.36653563380241394, -1.037937879562378, 1.1158322095870972, 0.18075881898403168, -0.020439784973859787, 0.9114231467247009, -0.23511500656604767, -0.8799149990081787, -0.8675588369369507, -0.24028588831424713, 0.7488111853599548, -0.9775005578994751, -0.24473936855793, -0.8343843221664429, -0.5465319752693176, -0.13025417923927307, -0.019088611006736755, 0.6513977646827698, -1.3310655355453491, -1.206132411956787, -0.2686639130115509, -0.22458499670028687, 0.6567688584327698, -0.6265381574630737, -0.07724756002426147, 0.3557702898979187, -1.3091533184051514, 0.7835478782653809, -0.46590888500213623, -1.7799222469329834, 0.10837599635124207, -1.275781512260437, 0.8870435953140259, -0.3126380145549774, -0.5420414209365845, 0.3107939064502716, 1.7329130172729492, -1.517154335975647, -1.145128607749939, -0.8175719380378723, -0.1438130885362625, 0.6828474998474121, 0.7281943559646606, -0.6578369736671448, 1.480217456817627, -0.5193539261817932, -0.22978784143924713, -0.8252422213554382, 0.19714640080928802, -0.6968775391578674, -0.2600429058074951, -0.4435848593711853, 0.003973802551627159, -0.13181570172309875, 1.0639835596084595, 0.8723357319831848, 0.9052366614341736, -0.003414093516767025, 1.309919834136963, -0.7445166110992432, -0.6882825493812561, 0.07241590321063995, 0.46345505118370056, -1.0374575853347778, -0.6802701354026794, -0.2554980516433716, -0.4858855903148651, -1.0484050512313843, 0.19944262504577637, 1.1950782537460327, -0.46202975511550903, 0.4294178783893585, -0.16932745277881622, 0.5273483395576477, -1.15383780002594, 0.5602478981018066, 0.14258967339992523, -1.6887454986572266, -0.20463982224464417, -0.652296781539917, 0.16062520444393158, -0.9255390167236328, 0.44006916880607605, 0.7191120386123657, 0.6249280571937561, -0.6999475955963135, -0.02195393107831478, 0.5484977960586548, 0.030106352642178535, -0.705034613609314, 0.9910704493522644, 0.7036548852920532, -0.4022267162799835, -0.23493748903274536, 0.997471809387207, 0.08812448382377625, 0.3716799318790436, 0.46031472086906433, -0.008394014090299606, -0.4808080494403839, 0.03792174533009529, 0.011052542366087437, -0.012445870786905289, -0.05154244974255562, 0.14940759539604187, -0.2825564444065094, 0.2984057664871216, 0.9748867154121399, -0.6174129843711853, -0.8454970121383667, 1.513781189918518, 0.5616729855537415, 0.06152801960706711, -0.022930091246962547, -0.26949742436408997, 0.11853707581758499, 0.17501404881477356, 0.7989627122879028, 0.5811158418655396, -0.10587310045957565, 0.050042975693941116, 0.5740622282028198, -0.045340899378061295, -0.12768906354904175, -0.11791948974132538, -1.3169351816177368, -0.32530781626701355, -0.8522019982337952, 0.6417766213417053, 0.48061177134513855, -0.6651543974876404, -0.6724544763565063, -1.2291280031204224, -0.04923589527606964, -0.06165082007646561, -0.23065416514873505, -0.7647312879562378, -0.046453047543764114, -0.03774499520659447, 1.5950229167938232, -0.4511851668357849, 1.5891382694244385, -0.6116995215415955, -0.38930031657218933, -0.2697218060493469, 0.12198550999164581, 0.49878042936325073, 0.04479718953371048, 0.31223103404045105, -0.8348584771156311, 0.5850733518600464, -0.536209762096405, -0.8320261836051941, 0.7701785564422607, 0.33432427048683167, 0.2865542471408844, -0.6094480752944946, -0.6364780068397522, 0.3782987892627716, 0.3863182067871094, 0.36095112562179565, -0.7493330240249634, -1.1011309623718262, -0.7312891483306885, -0.05046851933002472, -0.04727242514491081, 0.46279019117355347, -0.48328301310539246, 0.9055132269859314, 0.6080271005630493, -0.8257912397384644, -0.691717803478241, -1.527672290802002, 0.8727987408638, 0.02914041094481945, 0.3891255557537079, -0.2201511114835739, 0.061174310743808746, 0.6364562511444092, -0.7193906307220459, -0.8222609758377075, -0.2349041849374771, 0.5212845206260681, 0.16264505684375763, -0.7560079097747803, -0.2922545373439789, -1.2519302368164062, -0.32177308201789856, 0.009408313781023026, 0.8094114661216736, 0.6948357820510864, 0.3182140588760376, -0.8614763021469116, 0.048972781747579575, 0.6034340262413025, 0.3456285893917084, 0.6898298859596252, 1.4465453624725342, 1.2404024600982666, -0.27559056878089905, -0.42986002564430237, -0.3140415847301483, 0.7352452278137207, -0.7644563317298889, -0.040983639657497406, -0.5291313529014587, -0.13322517275810242, 0.21572460234165192], [0.37878111004829407, 2.2354745864868164, -2.9160006046295166, 0.48581111431121826, 0.6083338856697083, -0.42939019203186035, 0.6181135177612305, 0.20114454627037048, -0.24036012589931488, -1.080702304840088, -0.6466184258460999, -0.09245496243238449, 0.8617374897003174, 0.8190584778785706, 0.4846747815608978, 0.6709504127502441, 0.31525328755378723, -0.4527246952056885, 0.5804045796394348, 1.603519082069397, -0.5727075338363647, -1.1098569631576538, -0.4427519738674164, 0.08748044818639755, -0.05623113736510277, 0.27539706230163574, -1.502987027168274, -0.22452853620052338, -0.9286849498748779, -0.8308998346328735, 1.3060016632080078, -0.24064189195632935, 0.8265595436096191, -0.223636656999588, -1.5229377746582031, 0.21185137331485748, 1.2307977676391602, -0.2235012799501419, 0.11934537440538406, -1.0588136911392212, 1.9240503311157227, 0.6094117760658264, -0.4999018907546997, -1.396647572517395, 0.27729323506355286, 0.029919186607003212, 0.704115629196167, -0.9771783947944641, 0.37373843789100647, -0.7281970977783203, 0.7560439109802246, 0.25985509157180786, -0.4380073845386505, 1.30888032913208, 0.7786426544189453, -0.9855237007141113, -0.10634976625442505, 0.6537444591522217, 0.1934545636177063, 0.8223401308059692, 1.1729344129562378, -0.51777583360672, 0.14821884036064148, 0.4793488085269928, 0.5185002088546753, -0.28724581003189087, 0.49013394117355347, 0.17644523084163666, 0.6854112148284912, -0.10844580084085464, 0.2238752841949463, 0.15253104269504547, -0.3313477039337158, 0.12304110080003738, -0.6491968035697937, 0.9371994733810425, 0.45329549908638, 0.29136142134666443, -0.03082374297082424, 0.3868826627731323, -0.03694683313369751, 0.012253538705408573, 0.8979735374450684, -0.537082850933075, -0.13199998438358307, -0.10203371942043304, 0.5549468994140625, 0.06714034080505371, -0.5976128578186035, 1.3721665143966675, -0.2203892320394516, 0.5693540573120117, 0.8595621585845947, 0.2973768711090088, -0.06587860733270645, -0.5771680474281311, 0.5431272983551025, -1.566705584526062, -0.18385791778564453, -0.7821863889694214, 0.13556085526943207, -0.8028281331062317, 0.4048795998096466, 1.0166287422180176, 0.5757288932800293, 0.9565660357475281, -0.22917672991752625, -0.6167579889297485, 0.1780935376882553, -0.009876572526991367, -0.6089047789573669, -0.5146539807319641, -0.7713923454284668, -1.446738362312317, -0.18112927675247192, 0.8425431847572327, 1.7213413715362549, 0.02613949589431286, 1.1610444784164429, 0.30338239669799805, -0.6067488193511963, -0.3112553656101227, -0.568635106086731, 0.2568947374820709, 1.2053959369659424, 0.5483874082565308, -0.6991428136825562, -0.659467339515686, 0.37431418895721436, 0.14205065369606018, 0.6410353183746338, -0.013797755353152752, -0.6318535804748535, 0.06470552831888199, -0.40270596742630005, 1.3074791431427002, -0.977008581161499, -0.34358134865760803, -0.045578133314847946, 0.808939516544342, 0.10396076738834381, -0.005859553813934326, 0.1265992522239685, -0.365548700094223, 0.3291454315185547, -0.9606345295906067, 0.20795844495296478, -0.48473140597343445, -0.6632183194160461, 1.193535327911377, -0.9121848344802856, 0.07889603078365326, -0.7455326318740845, 1.5190280675888062, 0.48473718762397766, -0.855096161365509, 0.32622578740119934, 0.019533826038241386, 0.34738844633102417, 0.45138540863990784, 0.6543466448783875, -0.10807374864816666, -0.6172373294830322, 0.018507016822695732, 0.48559507727622986, -0.3959178924560547, 0.796924889087677, 0.10778166353702545, -0.4381287693977356, 1.5324798822402954, -0.45591866970062256, -0.6765731573104858, -0.5638375878334045, 0.571030855178833, -0.19227449595928192, -0.10960686951875687, 1.073392629623413, -0.3527691662311554, -1.1553692817687988, -0.5806835889816284, 1.3198645114898682, -0.3814791142940521, 0.6214599013328552, 0.02820981852710247, 0.6276766061782837, 0.46150490641593933, 0.1821436882019043, -0.6100713610649109, -0.43070486187934875, -1.274034857749939, -0.6207498908042908, -0.398145854473114, -1.1636154651641846, 0.4563608765602112, -0.26024988293647766, -0.752072811126709, 1.001042366027832, -0.4324468970298767, -0.5972204804420471, 0.3015389144420624, -0.1586495339870453, -0.13605737686157227, -0.9673344492912292, -0.14338745176792145, -0.25869011878967285, 1.5589417219161987, -0.6242138147354126, 0.8629423975944519, -0.12851938605308533, 0.1744513362646103, 0.5840852856636047, -1.147236943244934, -1.1386191844940186, 0.6380786299705505, 0.2963557839393616, -1.6616623401641846, 0.8865612745285034, -0.19541789591312408, 0.036480896174907684, 0.007653495296835899, 0.20118562877178192, 1.197352409362793, 0.20738622546195984, -0.21308746933937073, 0.7362803220748901, -0.8910393118858337, -0.39122042059898376, -1.1363290548324585, -0.5480756163597107, -0.14174096286296844, -1.3153517246246338, -0.8585179448127747, 0.14311662316322327, 0.5342507362365723, -1.229261875152588, 0.23876987397670746, -0.16017277538776398, -0.2504122853279114, 0.22504939138889313, 1.1545549631118774, 0.5073477029800415, 0.1477302610874176, -0.49521538615226746, -0.11531843990087509, -1.1012409925460815, 0.629343569278717, 0.6698243021965027, -0.2816303074359894, -0.2629948854446411, 1.0719630718231201, 1.202815294265747, -0.2606743276119232, 0.9126500487327576, -0.34821003675460815, -0.14790652692317963, -0.5272348523139954, -0.6212753653526306, 0.41575098037719727, -0.6216702461242676, 1.2224079370498657, 0.8140106201171875, -0.9043706059455872, 0.09804735332727432, -0.36358222365379333, 0.09991341829299927, -0.5553399324417114, -0.34996092319488525, -1.5120540857315063, -0.26227569580078125, -0.6594298481941223, -0.3614027202129364, 0.4924229681491852, -0.11118988692760468, 0.44429245591163635, -0.4618479609489441, -0.43162527680397034, 0.3098539710044861, 0.7324086427688599, -0.25053685903549194, 0.8152307271957397, -0.2515721917152405, -1.5211851596832275, -1.1394178867340088, 0.2804483473300934, 0.2150876671075821, 0.20996788144111633, 0.4237976372241974, 0.9588561654090881, 0.7683152556419373, 0.2216765433549881, 0.6860181093215942, -0.12254028767347336, 0.44600850343704224, -0.37525859475135803, 0.27664464712142944, 0.4328787922859192, 0.9776762127876282, -0.6810015439987183, -0.8477472066879272, -0.3694479465484619, 0.705273449420929, 1.4640141725540161, 1.2174001932144165, 0.8272795677185059, -0.6148844361305237, 0.0642537772655487, -0.5499931573867798, -0.25632208585739136, -1.1564178466796875, -0.21546834707260132, 0.02093886211514473, -0.80889493227005, -1.209226369857788, -0.11807983368635178, -1.0120856761932373, 0.542547345161438, 0.36952510476112366, 0.6665078997612, 1.3033719062805176, -0.5731532573699951, -0.881537914276123, -0.7191984057426453, -0.21396060287952423, -1.1596189737319946, 0.9089851975440979, 1.1891484260559082, -1.4182207584381104, 0.02936922013759613, 0.20069323480129242, -0.19977346062660217, 0.07250610738992691, 0.28940021991729736, 0.27499058842658997, -1.0861412286758423, -0.09485678374767303, 0.2965643107891083, 0.7179747223854065, 0.2727627754211426, -0.10676003992557526, -0.019156277179718018, 0.03105221502482891, 0.4956316649913788, 0.32483452558517456, -0.8456193804740906, 0.1290169507265091, -0.47379931807518005, -0.3346676528453827, 0.06316731125116348, 0.4787801206111908, 0.2959986925125122, -0.9072394967079163, -1.1121121644973755, -0.4892606735229492, -0.35302454233169556, -0.7558239698410034, 0.5587853789329529, 0.508499026298523, 0.31160295009613037, -0.3286820948123932, 0.33478406071662903, 1.3185926675796509, 0.03389750048518181, 0.1277237832546234, -0.7976849675178528, 1.1795461177825928, 0.4325670003890991, 1.7331156730651855, 0.04663108289241791, 0.13431359827518463, 0.213369682431221, -1.465600609779358, 0.14078307151794434, -0.07383719086647034, 0.26069697737693787, 0.3787880539894104, -0.9145276546478271, 0.005301028490066528, -0.6354303956031799, 0.8735822439193726, -0.22750356793403625, 0.15462259948253632, 0.29223528504371643, -0.38536617159843445, -0.24572639167308807, 0.8895789384841919, 0.7328834533691406, -0.4183696508407593, -0.6050973534584045, -0.10775187611579895, 0.4293246269226074, -0.9047459363937378, 0.4754462242126465, -0.2105327993631363, -0.3957420587539673, 0.804298996925354, -0.29331502318382263, -0.024631408974528313, -0.3970756232738495, 0.390207439661026, 1.8088161945343018, -1.2439361810684204, -0.4103877544403076, -0.46688416600227356, 0.2771078050136566, 0.8350074291229248, 0.20909951627254486, 0.5358878374099731, 0.7180299758911133, -0.4765366017818451, 0.11888553202152252, 0.3413779139518738, 1.2968236207962036, 0.19775012135505676, -0.4061047434806824, 0.22573420405387878, -0.46037557721138, 0.7479600310325623, -1.6582698822021484, 0.6103214621543884, 0.25634002685546875, -0.1755484789609909, -0.5578818917274475, -0.16867175698280334, -0.2332337647676468, 2.1052515506744385, 0.611147403717041, -0.001504517043940723, 0.13957640528678894, 0.04640103131532669, -1.143746256828308, -0.04152876138687134, 0.8074743747711182, -0.8400630950927734, -0.6998008489608765, 0.7230265140533447, 0.12198012322187424, 0.6160687208175659, 0.06408359855413437, -0.05370548367500305, 0.24227462708950043, 0.4234221875667572, 0.24504989385604858, -0.10307232290506363, 0.6312863826751709, 1.5758047103881836, 0.34073418378829956, 1.4479984045028687, -0.06555262207984924, -0.5788741707801819, 0.6045194268226624, -0.12461301684379578, 0.6925949454307556, 0.9940491914749146, 0.38928958773612976, 0.9259209632873535, -0.5366073846817017, -0.25681161880493164, 0.43542927503585815, 0.18172378838062286, 0.5632778406143188, -0.2627006471157074, 0.6939886808395386, -0.42757609486579895, -0.10117164999246597, 0.6528118848800659, -0.3249163031578064, 0.5049106478691101, -0.2823624014854431, 0.20091164112091064, 0.9210606217384338, -0.3586522340774536, 0.348636269569397, -1.1340938806533813, -0.2902151346206665, -0.24331079423427582, -0.409109503030777, 0.8052220940589905, 0.5124829411506653, 0.9763724207878113, 0.4344367980957031, 0.49206116795539856, -0.5499905347824097, 0.08581619709730148, -0.7904030084609985, -0.0499747134745121, -0.2975701689720154, 0.2744286060333252, -0.8322449922561646, -0.27872976660728455, -0.3338063955307007, -0.3587256968021393, -0.2286389172077179, -0.21462364494800568, -0.29718127846717834, -0.9548612236976624, 0.5758910179138184, 0.7786113619804382, 0.3271481394767761, 0.5643703937530518, 0.14409618079662323, 0.1317369043827057, 0.8089451193809509, -0.6024089455604553, 0.027933793142437935, 0.38490208983421326, 0.09684378653764725, -0.029103847220540047, -0.500742495059967, -0.7046648859977722, 0.8025727868080139, 0.3251761794090271, -0.23910807073116302, 0.17043137550354004, 0.5521116852760315, 1.2868366241455078, -0.4799647927284241, -0.32212308049201965, 0.3959401547908783, -0.829163670539856, 1.1619725227355957, 1.2079956531524658, -0.7649558782577515, -0.8387755155563354, -0.6333877444267273, -1.8885592222213745, 1.524225115776062, -0.6251828670501709, 0.027752544730901718, 1.095509648323059, 0.5566152334213257, -0.07463381439447403, 1.3206723928451538, -0.14353005588054657, 0.6391946077346802, 0.2703826129436493, -0.39416059851646423, 0.0774957463145256, 0.7893968224525452, 0.7952272891998291, -0.23973600566387177, -0.8886343240737915, 0.9374701976776123, -0.11672385782003403, -0.33631592988967896, -0.49136972427368164, 0.11394897103309631, -0.0803324356675148, 0.3153817057609558, 0.3203035593032837, -0.07575874775648117, 0.18139728903770447, -1.193591594696045, 0.28482264280319214, 0.4765119254589081, 0.5712161660194397, 0.14044886827468872, -0.36493995785713196, 0.5472020506858826, -0.7905579805374146, 0.08625845611095428, -0.010437899269163609, -0.2324400097131729, 1.212609052658081, 0.5761561393737793, -0.038309305906295776, -0.0978904739022255, 0.07171198725700378, -0.6245802640914917, -1.0921194553375244, -0.49081918597221375, 1.457762598991394, -1.5123353004455566, 0.07451768964529037, -0.7362194061279297, -0.3385979235172272, -0.4576302170753479, 0.14919957518577576, 0.7544003129005432, -0.9379857182502747, -0.945794403553009, -0.12575305998325348, 0.004081390798091888, 0.6901296973228455, -1.1278082132339478, 0.18476620316505432, 0.12275831401348114, -1.0754798650741577, -0.11403780430555344, -0.04789716750383377, -1.7082797288894653, 0.5678611993789673, -1.1453958749771118, 0.545592725276947, -0.03631485626101494, 0.15336546301841736, -0.19172492623329163, 1.3375141620635986, -1.1840261220932007, -1.5347009897232056, -1.2001148462295532, -0.2792837917804718, 0.5318924188613892, 1.2929705381393433, -1.2485992908477783, 1.1657119989395142, -0.19794097542762756, -0.32626980543136597, -0.14214789867401123, 0.2784809470176697, -0.41835540533065796, -0.08101370185613632, -0.23979578912258148, 0.3655479848384857, -0.24620656669139862, 1.1791017055511475, 0.7406278252601624, 0.9455310702323914, 0.2561335861682892, 1.2915161848068237, -0.7587264776229858, -0.2160692662000656, 0.13086482882499695, 0.2933617830276489, -0.7121408581733704, 0.07973745465278625, 0.5155470371246338, -0.7274790406227112, -1.0836098194122314, 0.014693851582705975, 0.7151626348495483, -0.7138140201568604, 0.20339439809322357, -0.28294098377227783, -0.33286842703819275, -0.6840919256210327, 0.20910955965518951, 0.11153096705675125, -0.41246944665908813, -0.08688738942146301, -0.6825871467590332, -0.142588809132576, -0.7976071238517761, 0.2440856248140335, 1.0338057279586792, 0.6117250919342041, -0.18982888758182526, -0.1428823322057724, 0.2584141194820404, 0.41063302755355835, -0.5765640139579773, 0.6776542067527771, 0.6879634261131287, -0.3884379267692566, -0.02912629209458828, -0.10569184273481369, -0.36581891775131226, -0.09288721531629562, -0.14105863869190216, -0.4236699044704437, -0.8166813254356384, 0.5720030069351196, 0.3121670186519623, -0.22304922342300415, 0.43051138520240784, 0.2715664207935333, 0.19757212698459625, 0.22025255858898163, 1.584138035774231, -0.8305061459541321, -0.006476655602455139, 1.4230701923370361, 0.3997204005718231, -1.380923867225647, -0.09189843386411667, -0.8501768708229065, 0.21925146877765656, 0.44780755043029785, 0.08911523222923279, 0.6714332103729248, -0.40446552634239197, 0.7727224230766296, 0.001489236019551754, -0.25558972358703613, -0.4626349210739136, -0.46241793036460876, -1.19559907913208, -0.4583481252193451, -0.8314957022666931, -0.06068151816725731, 0.0769488513469696, -1.4852943420410156, -0.8453509211540222, -0.04891463741660118, 0.2478288859128952, -0.3500230610370636, -0.3568706512451172, 0.4482324719429016, 0.1353537142276764, -0.3282625377178192, 1.2326407432556152, -0.36309778690338135, 0.4550686478614807, 0.060273464769124985, -0.010453497059643269, -0.3393840789794922, -0.20534883439540863, 0.19139666855335236, 0.02477240189909935, -0.6732326745986938, -1.350033164024353, 0.276526540517807, -0.6713333129882812, -0.5346056818962097, 0.5489745140075684, 0.5774663090705872, 0.4733969271183014, -0.8086430430412292, -0.9693135023117065, 0.5532550811767578, 0.9041444659233093, 0.06769534945487976, -0.7270948886871338, -1.1357548236846924, -0.9344905018806458, 0.15678520500659943, -0.3025997579097748, 0.8056643009185791, -0.2685605585575104, 0.44810348749160767, 0.2343713939189911, -0.7925655841827393, -0.9636244177818298, -0.8796660304069519, 0.7894864678382874, 0.4785785675048828, -0.114455945789814, -0.5710898637771606, 0.07518327236175537, -0.3025137186050415, -0.8486092686653137, -0.6393380761146545, 0.04370792955160141, 0.32281991839408875, -0.04359692335128784, -1.131156086921692, -0.4413236379623413, -0.995685875415802, 0.10452957451343536, 0.5109044909477234, 0.8241901397705078, 0.17298977077007294, -0.2852298617362976, -1.3223897218704224, -0.09860308468341827, 1.4252010583877563, 0.2032734751701355, -0.006359881721436977, 1.2288885116577148, 0.4382171332836151, -0.10804051905870438, -0.7405375838279724, 0.10696873068809509, 0.23967598378658295, -0.8427165746688843, 0.43338289856910706, -0.6926855444908142, -0.5121281147003174, -0.40081897377967834], [-0.12617100775241852, 2.140777111053467, -2.737794876098633, 0.16213516891002655, 0.7787225246429443, -0.4163397550582886, 1.651484727859497, -0.3420312702655792, -0.23731127381324768, -0.9449273943901062, -0.9816679358482361, 0.02604692056775093, 0.7757999897003174, 0.8708007335662842, 0.7063698768615723, 0.6742120981216431, 0.42126700282096863, -0.27684932947158813, 0.4614161550998688, 1.2887362241744995, 0.0573611818253994, -0.915464460849762, -0.3088737726211548, 0.27058935165405273, -0.1970352977514267, 0.4014367461204529, -0.7151369452476501, 0.31976866722106934, -1.114963412284851, -0.9403015971183777, 1.4422187805175781, 0.3059546947479248, 0.673409640789032, 0.5067829489707947, -1.282726526260376, -0.07720385491847992, 1.0071070194244385, 0.27266114950180054, 0.13322962820529938, -0.17266307771205902, 1.9040430784225464, 0.6137620806694031, 0.012286249548196793, -1.4738571643829346, 0.06500354409217834, 0.27841371297836304, 0.896692156791687, -0.9901763200759888, 0.5518465042114258, -0.7189205288887024, 0.21246302127838135, -0.1026831641793251, -0.09212587028741837, 1.9983153343200684, 0.494423508644104, -0.9505903124809265, 0.6506442427635193, 0.6187673211097717, -0.30329230427742004, 0.22499026358127594, 0.8528380393981934, -0.04764708876609802, 0.7947022914886475, 0.3128422200679779, 0.5719015002250671, -0.31442612409591675, 0.444052517414093, -0.055767741054296494, -0.24704664945602417, 0.1574072390794754, 0.11649798601865768, -0.06528022885322571, -0.69089275598526, 0.32541289925575256, -0.8675023913383484, 0.5430732369422913, 0.5988290905952454, 0.7082121968269348, 0.07598672807216644, 0.3029678761959076, -0.7597311735153198, 0.5398284792900085, 0.7031951546669006, 0.04496161267161369, -0.40555086731910706, 0.17224948108196259, 0.8666597008705139, -0.6389669179916382, -0.5199534893035889, 1.8215599060058594, 0.30061808228492737, 0.7679665684700012, 0.9167389869689941, -0.4038281738758087, -0.7339490652084351, -0.9462106227874756, 0.38309264183044434, -1.1209654808044434, -0.20231911540031433, -0.2925732433795929, -0.34319236874580383, -0.6115019917488098, 0.6147794723510742, 1.0534260272979736, 0.2752753794193268, 1.3219512701034546, 0.033950358629226685, -1.0602291822433472, -0.16309857368469238, -0.2769054174423218, -0.5396419763565063, 0.14737266302108765, -0.2998710870742798, -1.0746088027954102, -0.19302624464035034, 1.0523157119750977, 1.1860285997390747, 0.0882207527756691, 0.48920390009880066, 0.47317224740982056, -0.5669045448303223, -0.5531051158905029, -1.069648265838623, 0.10392805188894272, 1.1589058637619019, -0.08327940851449966, -1.0542021989822388, -0.0870092436671257, 0.004629767499864101, 0.15347440540790558, 1.1274967193603516, 0.08832574635744095, -0.5179969668388367, 1.148095726966858, -0.3344520926475525, 1.544316053390503, -0.9248018264770508, -0.7680881023406982, 0.40013784170150757, 0.22879907488822937, 0.16274259984493256, -0.34646451473236084, -0.2442648708820343, -0.2617034912109375, 0.12010625004768372, -0.844317615032196, 0.45815393328666687, -0.39029863476753235, -0.7653566002845764, 0.47877180576324463, -1.5829052925109863, 0.5326825976371765, -0.3642112612724304, 0.8567711710929871, 0.44592317938804626, -0.3555004298686981, 0.020007766783237457, -0.10338927060365677, 0.25652971863746643, 0.7848075032234192, 0.40854254364967346, -0.11694321781396866, -0.7769070863723755, 0.550237774848938, 0.5980194211006165, -0.5546010136604309, 0.746163547039032, 0.2218039184808731, -0.729644238948822, 0.9511281251907349, -0.2504809498786926, -0.961401641368866, -0.78977370262146, 0.14074619114398956, -0.04877573251724243, -0.3141336441040039, 1.167296051979065, -0.013673360459506512, -1.2308083772659302, -0.7844587564468384, 1.0372921228408813, -0.9157620072364807, -0.1519673615694046, -0.30178403854370117, 0.5686970949172974, -0.4938645660877228, 0.02133309096097946, -0.08011932671070099, -0.8800948262214661, -0.5976709127426147, -0.728952169418335, -0.3018870949745178, -0.9237444400787354, 0.4339899718761444, -1.0959410667419434, -0.5155401825904846, 0.8160430192947388, -1.250052809715271, -0.8868604302406311, -0.4639632999897003, 0.1276794672012329, -0.8670743107795715, -1.0514404773712158, -0.047312621027231216, -0.7256721258163452, 0.6106847524642944, -0.7414541244506836, 0.5693246722221375, -0.5307636260986328, 0.3568367660045624, 0.6565868258476257, -0.5908677577972412, -1.3774160146713257, 0.3808172345161438, 0.5368850231170654, -1.9387776851654053, 0.6312978863716125, 0.5039934515953064, 0.28843894600868225, 0.4655402898788452, -0.3009064793586731, 0.2738681733608246, 0.7886595129966736, -0.28232094645500183, 0.5995785593986511, -0.6356359124183655, 0.31197232007980347, -1.063065767288208, -0.3600751459598541, 0.14785993099212646, -0.4140434265136719, -0.48421812057495117, 0.8329055905342102, -0.005188025534152985, -1.4684773683547974, 0.6194528937339783, -0.3651811480522156, 0.4283301830291748, 0.2530430257320404, 1.2871719598770142, 0.8892791867256165, 0.4102827310562134, -0.10277727246284485, -0.8043472766876221, -0.6804500818252563, 0.25724509358406067, 0.7828910946846008, -0.36716774106025696, 0.34878480434417725, 1.0581841468811035, 0.8894430994987488, -0.7532637119293213, 0.5378698110580444, -0.4372972846031189, 0.05004142224788666, -1.7835407257080078, -0.011294822208583355, -0.08301512151956558, -1.2705957889556885, 1.6058039665222168, 0.7910307049751282, -1.7275543212890625, -0.05028179660439491, 0.03537740558385849, 0.14211930334568024, -0.11145573109388351, -0.30863142013549805, -0.7830798625946045, 0.2130475640296936, 0.060660604387521744, -0.2483842968940735, -0.3567095696926117, -0.5371647477149963, 0.710787296295166, -0.4814799129962921, -0.5337105989456177, -0.20539866387844086, 0.6485052704811096, -0.15235300362110138, 0.848440945148468, -0.18709661066532135, -2.0170812606811523, -0.7443179488182068, 0.6150157451629639, 1.0438615083694458, 0.13080452382564545, 0.2703540325164795, 0.7985115647315979, 1.0595502853393555, 0.8977057933807373, 0.5357905030250549, 0.1513601392507553, 0.2591378092765808, 0.12071847170591354, 0.49154412746429443, -0.07389723509550095, 0.6123545169830322, -0.7086358666419983, -0.9521704316139221, -0.6605991721153259, 0.35444992780685425, 1.5834693908691406, 0.6984046101570129, 1.0343137979507446, -0.33882197737693787, 0.027561824768781662, -1.01920485496521, -0.2431531697511673, -1.3148391246795654, -0.11364983022212982, -0.3539469838142395, -1.3413447141647339, -0.6420601010322571, -0.42582014203071594, -0.19656872749328613, -0.10303676873445511, 0.6564950942993164, 0.678692102432251, 0.09406892955303192, -0.2205274999141693, -0.5143467783927917, -0.745018482208252, 0.26511815190315247, -0.9260185360908508, 0.70889812707901, 2.0742621421813965, -1.282819390296936, 0.2637926936149597, 1.0032762289047241, 0.04358680173754692, 0.1411820650100708, 0.047715891152620316, 1.0911080837249756, -1.1622405052185059, -0.6291972994804382, -0.25404971837997437, 1.006065845489502, 0.24140003323554993, -0.4652804136276245, -0.4806522727012634, 0.37567606568336487, 0.7430411577224731, -0.25124844908714294, -0.8934726119041443, 0.8553785085678101, -1.066759705543518, -0.4120366871356964, -0.04096458479762077, 0.4677024781703949, 0.5199351906776428, -0.5304422378540039, -1.1615358591079712, -0.4545772671699524, 0.16395869851112366, -0.45204973220825195, 0.3733144700527191, 0.6312242150306702, 0.3064478933811188, -0.3132084906101227, -0.0004142001271247864, 0.8788650631904602, -0.24690595269203186, 0.11111427843570709, -0.8854338526725769, 0.4465976357460022, 0.8504554033279419, 1.753031849861145, 0.9077293872833252, 0.3555332124233246, 0.7202708125114441, -0.6136559844017029, -0.1409491002559662, -0.22150862216949463, 0.6262388229370117, -0.15357472002506256, -0.3333766460418701, -0.08217567205429077, -0.20082208514213562, -0.12491527199745178, 0.045707523822784424, -0.2012205272912979, 0.6848695874214172, -0.5644785761833191, -1.0393356084823608, 0.8862869739532471, 0.8432913422584534, -0.6103237867355347, 0.074473075568676, -0.310324490070343, 1.2048215866088867, -0.23671990633010864, 0.33792421221733093, -0.33532530069351196, -0.32563552260398865, 0.3632393479347229, -0.8548775911331177, -0.29274991154670715, -0.34964871406555176, 0.32673001289367676, 1.1460232734680176, -1.3402169942855835, -0.31022438406944275, -0.5852128267288208, 0.26167377829551697, 0.4333832859992981, -0.2189934253692627, 0.21467629075050354, 0.7496959567070007, -0.3045620024204254, 0.06496892124414444, 0.5113336443901062, 1.399030089378357, -0.29945963621139526, -0.554039478302002, 0.474446564912796, -0.6419070363044739, 0.19930200278759003, -1.0566641092300415, -0.25503304600715637, 0.14098083972930908, -0.5258979201316833, -0.10870664566755295, 0.309774249792099, -0.21134193241596222, 2.0234475135803223, 0.5071771740913391, -0.05325400456786156, 0.2891503870487213, -0.32263055443763733, -0.7444756031036377, -0.33817487955093384, 0.27050507068634033, -0.06103389710187912, 0.3593728542327881, -0.2418016642332077, 0.4570564925670624, 0.17452684044837952, 0.20916594564914703, -0.361102432012558, 0.4501306414604187, 0.4494543671607971, 0.17845873534679413, -0.3840222954750061, 0.4424378275871277, 1.3877745866775513, 0.6641854643821716, 0.5606027245521545, -0.5546086430549622, -0.8215563297271729, 0.8588776588439941, -0.583737850189209, 0.9165441989898682, 1.1993072032928467, 0.7683313488960266, 1.5717047452926636, -1.7036948204040527, 0.18185076117515564, 0.15335765480995178, 0.3010793626308441, 0.45814305543899536, -0.20743907988071442, 0.0457761324942112, -1.3639190196990967, -0.15426023304462433, 0.3537525534629822, -0.527600109577179, 0.9604846835136414, -0.35890886187553406, 0.19575665891170502, 1.1639299392700195, -0.7347555756568909, -0.12017179280519485, -0.977177083492279, -0.05027628690004349, -0.6927326321601868, -0.4833911955356598, 0.7977586388587952, 0.971522867679596, 1.4209673404693604, 0.6383219361305237, -0.16228529810905457, -1.1723655462265015, 0.7021793127059937, -0.7475099563598633, 0.4552399516105652, -0.47371169924736023, -0.3523588180541992, -1.1256389617919922, -0.9449670314788818, -0.07800004631280899, -0.44763627648353577, -0.7008987069129944, -0.6507009267807007, -0.3133547604084015, -1.195273756980896, 0.7297230958938599, 0.7112200260162354, 0.7752401232719421, 0.2996511459350586, 0.35449934005737305, 0.8201146721839905, 0.5375385880470276, -0.515080451965332, 0.49311065673828125, -0.09239544719457626, 0.09222757816314697, 0.019682491198182106, -0.6380868554115295, -0.8953542113304138, 0.32767271995544434, 0.7528389692306519, -0.3410777151584625, 0.8040735721588135, 1.155394434928894, 1.3397583961486816, -0.607506275177002, -0.6305355429649353, 0.6366533637046814, -0.08060025423765182, 1.1626880168914795, 0.7913520336151123, -0.8009238243103027, -0.1535487323999405, -0.20547038316726685, -1.5491846799850464, 1.7176891565322876, -0.13814154267311096, -0.20774498581886292, 1.1695736646652222, 0.6319512724876404, 0.3196985125541687, 1.0239663124084473, -0.2568110227584839, -0.16201455891132355, 0.19772779941558838, 0.22246548533439636, -0.8258199095726013, 0.8754560351371765, 1.065918207168579, 0.07775135338306427, -1.2403441667556763, -0.34811875224113464, -0.3689514994621277, 0.2618376910686493, -0.6270288228988647, -0.4356992244720459, 0.26799604296684265, 0.08887138217687607, -0.1862489879131317, -0.793476402759552, 0.5149916410446167, -0.7919977307319641, 0.8219414353370667, 0.06055428460240364, 0.9385190010070801, 0.5181710720062256, -0.05023384466767311, 0.6937915086746216, -0.5921710729598999, -0.5825791954994202, -0.3452993333339691, -0.11115086078643799, 0.9908320307731628, 0.41609880328178406, 0.6035194993019104, 0.2580511271953583, -0.3271504342556, -0.5216813087463379, -0.1431797444820404, -0.5215504765510559, 1.2255215644836426, -1.169210433959961, 0.14948196709156036, -0.6735367774963379, -0.5266090035438538, -0.0186595618724823, 0.3011777997016907, 0.9782189130783081, -1.045871615409851, -0.9728691577911377, -0.452725350856781, -0.18197713792324066, 0.5483517646789551, -0.8434931039810181, 0.40609392523765564, 0.454638808965683, -1.233652949333191, 0.6272796392440796, -0.2685076594352722, -1.3662241697311401, -0.18081799149513245, -1.535975456237793, 0.9905965924263, -0.08244038373231888, -0.21446757018566132, 0.17010581493377686, 0.7517043948173523, -1.0321239233016968, -1.0706398487091064, -0.7856003642082214, -0.3313194513320923, 0.9784389138221741, 1.0092962980270386, -1.1245366334915161, 1.638195514678955, 0.08342036604881287, -0.6553676128387451, -0.6705015301704407, -0.18236729502677917, -1.3678115606307983, -0.21676984429359436, 0.022290097549557686, 0.6011333465576172, 0.149294912815094, 1.6814517974853516, 0.627448320388794, 0.639701783657074, 0.39299941062927246, 1.55045747756958, -0.8219792246818542, -1.0546661615371704, 0.026648536324501038, 0.5937978029251099, -1.0685746669769287, -0.6562957763671875, 0.07517131417989731, -0.7375265955924988, -1.2818528413772583, 0.24732908606529236, 1.0419187545776367, -0.27459436655044556, 0.5753753185272217, 0.02185504510998726, 0.0841745138168335, -0.8276011943817139, 0.6651975512504578, 0.1911165565252304, -1.033196210861206, -0.20887067914009094, -0.89073246717453, -0.02712726779282093, -1.127271056175232, -0.27180564403533936, 0.4132842719554901, 0.22322265803813934, -0.49690091609954834, 0.3888947069644928, 0.4057655334472656, 0.3907335698604584, -0.43369483947753906, 1.2662156820297241, 0.984082818031311, -0.2628629505634308, 0.13952970504760742, 0.2198757827281952, -0.46491938829421997, -0.6454836130142212, -0.22103925049304962, -0.005085172597318888, -0.41251957416534424, 0.3718979060649872, -0.037565458565950394, 0.11511442065238953, -0.3760407865047455, 0.5490120649337769, 0.10867255181074142, 0.6111723780632019, 1.2705698013305664, -0.7865809202194214, -0.5658290982246399, 0.8264220356941223, 0.6304815411567688, -1.1039221286773682, -0.2814882695674896, 0.33710208535194397, 0.2653002440929413, -0.5548049807548523, 0.04570821300148964, 0.8345341682434082, -0.9409414529800415, 0.3747967779636383, -0.1149340346455574, -0.08468741178512573, -0.2023490071296692, -0.5984501838684082, -1.6110726594924927, -0.4726727306842804, -0.6454499363899231, -0.4488157629966736, 0.5767198204994202, -0.7506507039070129, -0.9138852953910828, -0.3686307370662689, 0.05174756050109863, 0.14923566579818726, -0.03214147686958313, 0.037529658526182175, -0.3060947358608246, -0.30707037448883057, 1.871910810470581, -0.23894526064395905, 1.0546029806137085, -0.06903799623250961, -0.18176710605621338, 0.02316359244287014, -0.05797488987445831, -0.228787362575531, 0.04154670238494873, 0.26413723826408386, -0.6209182739257812, 0.16416555643081665, -0.40846747159957886, -0.2447177767753601, 0.3253440856933594, -0.2097276747226715, 0.20076078176498413, -0.591088056564331, -1.0318140983581543, 0.6880998015403748, 0.7439917922019958, -0.2311573177576065, -0.4597312808036804, -0.8519189953804016, -0.8529258370399475, 0.3914773166179657, -0.5857734680175781, 0.22895079851150513, -0.583125114440918, 0.8980972170829773, 0.6406363844871521, -0.9465550184249878, -0.5718305706977844, -1.030281662940979, 0.9495546221733093, 0.1387467384338379, 0.5042203664779663, -0.0672699585556984, 0.20083379745483398, 0.04256730526685715, -1.2099688053131104, -0.5951896905899048, -0.15693241357803345, -0.2746284306049347, 0.38876935839653015, -0.8575990200042725, 0.11604388058185577, -0.6430335640907288, -0.004285167902708054, 0.5531114339828491, 0.2209642380475998, 0.727091908454895, 0.3832550346851349, -1.6678540706634521, -0.1371716409921646, 0.4758688807487488, 0.7722764611244202, 0.756604790687561, 1.5385289192199707, 0.8451356291770935, 0.29940301179885864, 0.14575760066509247, 0.3018321096897125, 0.657226026058197, -1.1071110963821411, -0.28089624643325806, -0.8295450806617737, -0.3296565115451813, 0.1483272761106491], [0.529283344745636, 1.777596116065979, -2.231405019760132, -0.4371163845062256, 0.6981003880500793, -0.5900915861129761, 0.3602549135684967, -0.18411624431610107, 0.17992709577083588, -1.3284322023391724, -0.4726830720901489, 0.5274671912193298, 0.37142908573150635, 1.1287740468978882, 0.1723109781742096, -0.04580159857869148, 0.5019378662109375, -0.0017238417640328407, 0.1959438920021057, 0.8117348551750183, 0.014321304857730865, -1.7640070915222168, -0.41136011481285095, 0.6957665085792542, 0.2728911340236664, -0.4741354286670685, -1.2819887399673462, -0.6428653001785278, -1.5447137355804443, -1.2865817546844482, 1.10051691532135, 0.03447801247239113, -0.24315394461154938, 0.4109814763069153, -1.020035982131958, -0.6669421792030334, -0.020842012017965317, -0.1402151733636856, -0.4840123951435089, 0.69529789686203, 1.169460415840149, 1.0184242725372314, -0.8663296103477478, -1.8561207056045532, 0.6213609576225281, -0.38482964038848877, 1.3083797693252563, -1.0231682062149048, 0.8267298936843872, -2.0499813556671143, -0.1474127322435379, -0.14763705432415009, 0.11578574031591415, 0.9329971671104431, 1.170278787612915, -1.1589525938034058, 0.17436937987804413, 0.30577853322029114, -0.1645761877298355, 0.1445881873369217, 0.6669508218765259, 0.2249913066625595, 0.6321002840995789, 0.7200407385826111, 0.5522763729095459, 0.228913813829422, 0.9326238632202148, -0.2469618022441864, 0.2369266301393509, -0.45694664120674133, 0.5822687745094299, 0.359366774559021, -0.6282452344894409, 0.7120192646980286, -0.3436562120914459, 0.21513690054416656, 0.493226557970047, 0.32114535570144653, -0.6826983094215393, 0.856585681438446, 0.1492006629705429, -0.4845096468925476, -0.16560806334018707, -0.9320439100265503, -0.10870122164487839, 0.3189989924430847, -0.1805996596813202, 0.23012419044971466, -0.1164267286658287, 1.1106655597686768, 0.3425861895084381, -0.10878568142652512, 0.6403477787971497, -0.22645725309848785, 0.2088855803012848, -0.9049047231674194, -0.33503997325897217, -1.0730786323547363, -0.7034355998039246, 0.1291164755821228, -0.930592954158783, -1.2668790817260742, 1.0596431493759155, 0.7162429094314575, 0.10180847346782684, 1.4127565622329712, -0.4046684503555298, -1.0788098573684692, 0.14316117763519287, 0.019822610542178154, 0.19883723556995392, -1.1804773807525635, -0.8011431097984314, -1.8445887565612793, 0.34062522649765015, 0.9093312621116638, 2.0063157081604004, 0.23878170549869537, 0.9947343468666077, 0.4333764910697937, -0.5983856320381165, -0.6018396615982056, -0.8648263812065125, 0.5235459804534912, 1.3301634788513184, -0.5644363164901733, -0.6210448145866394, -0.4329858124256134, 0.5240633487701416, -0.09322740882635117, -0.09260711073875427, 0.023346666246652603, -0.4756932258605957, 0.7042363882064819, 0.24068337678909302, 1.3446530103683472, 0.10784821957349777, -0.9583316445350647, 0.28824129700660706, 0.8018147945404053, 0.3588191866874695, -0.4088488519191742, 0.0687498226761818, -0.5786935687065125, -0.02323964610695839, -0.07345763593912125, -0.02123439311981201, -0.07772257924079895, -0.6826692819595337, 0.7580647468566895, -1.4035152196884155, -0.49143683910369873, -0.5356159806251526, 0.744627833366394, 0.7845311760902405, 0.03923296183347702, -0.22864815592765808, -0.32311028242111206, 0.2528128921985626, 0.04952521622180939, 0.6808951497077942, -0.24431410431861877, -0.6212717890739441, 0.8637309670448303, 0.4100182354450226, -0.4819081127643585, 0.6212136149406433, 0.13343480229377747, -0.33476853370666504, 0.5111857652664185, -0.2802669107913971, -0.3949710726737976, -0.9357203245162964, 0.0022412813268601894, 0.15928606688976288, -0.34223997592926025, 1.0526220798492432, -0.4999617040157318, -0.8802192807197571, -1.0315179824829102, 1.0249497890472412, -0.41147223114967346, 0.7461709976196289, -0.345464289188385, 0.33031368255615234, 0.2868092358112335, 0.5073620080947876, -0.4710387587547302, -0.639151394367218, -1.1942535638809204, -0.08340699225664139, -0.8937990069389343, -1.0615712404251099, 0.6678644418716431, -0.8314374685287476, -0.5741541385650635, 0.4241439402103424, 0.040629152208566666, -0.2102908492088318, 0.21526923775672913, 0.3739624321460724, -0.12477215379476547, -1.5570383071899414, 0.2654419541358948, 0.18821333348751068, 0.5642646551132202, 0.2501348555088043, 0.31004059314727783, -0.621213972568512, 0.09377254545688629, 1.6226911544799805, -0.6038832664489746, -1.4212117195129395, 1.014397382736206, 0.121945321559906, -1.0746266841888428, 0.8430598974227905, -0.060268040746450424, -0.10351934283971786, -0.10803411155939102, -0.12562119960784912, 0.3315684497356415, -0.08064288645982742, -1.032779335975647, -0.015535637736320496, 0.13894782960414886, -0.6961535215377808, -1.610395908355713, -0.4551469683647156, -0.027571920305490494, -1.0395981073379517, -0.7601747512817383, 0.42414820194244385, 0.7881050109863281, -1.2798166275024414, 0.5739898085594177, 0.2729811370372772, 0.9554727673530579, 0.3204593062400818, 0.54783034324646, 0.7381147742271423, 0.7441215515136719, -0.22870731353759766, 0.22715197503566742, -0.7630503177642822, -0.5874525308609009, 0.6433262228965759, -0.45329779386520386, 0.16406886279582977, 1.6839046478271484, 0.9568126797676086, 0.08042626082897186, 0.0621931254863739, 0.22127634286880493, -0.03758317977190018, -0.8214355707168579, -0.07994308322668076, 0.38705018162727356, -0.9425302743911743, 1.0312594175338745, 0.6962003111839294, -1.295491099357605, -0.45212990045547485, -0.2221098691225052, 0.16507893800735474, -0.42814207077026367, -0.40888020396232605, -1.1694685220718384, 0.5776873826980591, -0.33072078227996826, -0.29487767815589905, 0.25937697291374207, 0.16148117184638977, 0.833008885383606, -0.3929401636123657, -0.4273856580257416, 0.9839159250259399, 0.35767170786857605, 0.32581567764282227, 0.7863816022872925, -0.9875501990318298, -1.0902316570281982, -1.445202112197876, 0.46978482604026794, 0.09471201151609421, -0.14842747151851654, -0.26701098680496216, 0.9955323934555054, 0.7429524660110474, -0.1361914724111557, 0.048545993864536285, -0.6342526078224182, 0.641236424446106, -0.6717370748519897, 0.801183819770813, 0.28303202986717224, 0.5003225803375244, -0.43819767236709595, -0.4805590510368347, -0.751533567905426, 0.5764667987823486, 0.8219207525253296, 0.7741528153419495, 1.4714829921722412, -0.5949717164039612, -0.00016672443598508835, -0.36088827252388, 0.03290024772286415, -0.16886594891548157, 0.5109575986862183, 0.10174276679754257, -0.6159453988075256, -0.3556785583496094, -0.430550754070282, -0.16100747883319855, 0.4200294315814972, -0.16128845512866974, 1.3177392482757568, 0.35793519020080566, 0.019149918109178543, -1.3397984504699707, -0.719451367855072, -0.6113576889038086, -0.9537661075592041, 0.6981897950172424, 1.1995880603790283, -1.1912007331848145, 0.5158299207687378, 0.24774613976478577, 0.007038983516395092, -0.03538966178894043, 0.700273871421814, 0.2568415105342865, -1.3263541460037231, 0.02098015882074833, 0.0515548475086689, 1.2763639688491821, 0.6449270248413086, -0.4994822144508362, -0.2012423872947693, 0.8101553320884705, 0.17126193642616272, -0.7934517860412598, -0.8828374743461609, 0.7613084316253662, -0.43452051281929016, 0.23012611269950867, -0.5565196871757507, 0.3735242187976837, 0.5774341821670532, -0.9558819532394409, -0.43824031949043274, -0.25549963116645813, -0.14569923281669617, -0.41350051760673523, 0.028846079483628273, 0.07980265468358994, 0.6459868550300598, 0.3364603817462921, 0.2604750692844391, 1.0000272989273071, 0.2988559901714325, 0.09908659756183624, -0.5395143628120422, 0.5510013103485107, 0.231537863612175, 1.9870381355285645, 0.33012208342552185, 0.4871467351913452, 0.053818557411432266, -1.0681092739105225, -0.5698899626731873, 0.6638150811195374, 0.9420853853225708, -0.23591248691082, -0.7414833903312683, -0.5144739151000977, -0.44129329919815063, -0.3175913095474243, 0.07977787405252457, -0.4641363322734833, -0.23565636575222015, -0.5084084868431091, -0.5539388060569763, 1.2354419231414795, 1.0048877000808716, 0.3247770071029663, -0.9291442036628723, 0.04645572602748871, 0.32625794410705566, -0.7579398155212402, 0.6598702073097229, -0.3562958240509033, -0.458610862493515, 0.8424984216690063, -0.2931683659553528, -1.0119167566299438, -0.4990650713443756, -0.043227940797805786, 1.5957499742507935, -1.8176372051239014, -0.07027559727430344, -0.03530336171388626, 0.19917836785316467, 1.0700677633285522, 0.5911745429039001, 0.6087769269943237, 0.4311509132385254, 0.4488808512687683, 0.07468437403440475, 0.8832243084907532, 1.2347934246063232, -0.2020082175731659, -0.22848770022392273, -0.07686448842287064, 0.13152474164962769, 0.5236838459968567, -1.222127079963684, -1.05825674533844, 0.4742569327354431, -0.5571457743644714, 0.10921689867973328, -0.21691463887691498, 0.22189536690711975, 1.4125680923461914, 0.26789388060569763, 0.3288784623146057, 0.1808302253484726, 0.6041762232780457, -0.3023304045200348, -0.3190751373767853, 0.17728425562381744, -1.2051537036895752, -0.2749515473842621, 0.21567299962043762, 0.37264707684516907, 0.6086418032646179, 0.2098798006772995, 0.5981932878494263, 0.9929490089416504, 0.619361162185669, 0.17036795616149902, -0.691021203994751, 0.41078558564186096, 1.1069880723953247, 1.043913722038269, 0.680070161819458, -0.08576942980289459, -0.9245871305465698, 1.9681243896484375, -0.3013067841529846, 0.01915881596505642, 1.1040363311767578, 0.4011821150779724, 1.053246021270752, -0.9073876142501831, -0.5392833352088928, 0.5948002934455872, 0.28302985429763794, 0.05600791797041893, -0.7232152819633484, 0.5178641676902771, 0.14914782345294952, 0.11201466619968414, 0.827401340007782, -0.513611376285553, 0.9266217350959778, -0.13078425824642181, 0.7112016677856445, -0.18193396925926208, -0.7858514785766602, 0.28541305661201477, -1.587617039680481, -0.20313480496406555, -0.2575279474258423, 0.2569773495197296, 1.2013239860534668, 0.6889523267745972, 0.5654489398002625, 1.1315654516220093, -0.017473358660936356, -1.1180448532104492, 0.012772220186889172, -0.7423231601715088, 0.42166104912757874, -0.913622260093689, 0.38698962330818176, -0.8364193439483643, -0.4648905098438263, 0.17763425409793854, -0.4674246907234192, 0.004513752181082964, -0.08748728781938553, -0.061415430158376694, -0.16836392879486084, 0.2417161762714386, 0.728285551071167, 0.2523396909236908, -0.24609270691871643, 0.55548095703125, 0.7134325504302979, 0.4184228181838989, -1.1755900382995605, -0.04704843834042549, 0.6422684788703918, -0.006037639919668436, -0.4131728410720825, -0.32887840270996094, -0.8318613171577454, 0.4749329388141632, 0.7595924735069275, -0.6415053606033325, 0.20213940739631653, 0.7062864303588867, 1.6082940101623535, -0.6615599989891052, -1.145062804222107, 0.41177091002464294, -0.3442063331604004, 0.6775617599487305, 0.2657434940338135, -1.2431098222732544, 0.1724463701248169, -0.5444082617759705, -1.8140287399291992, 1.7777975797653198, -0.1370764523744583, 0.39435189962387085, 0.9896835088729858, 0.9830172657966614, 0.030822481960058212, 1.068548321723938, -0.27451708912849426, 0.6463091969490051, 0.05818258970975876, 0.019542807713150978, -0.6954532265663147, 0.8271361589431763, 1.1508406400680542, -0.14043280482292175, -1.399189829826355, 0.3210969567298889, 0.35190731287002563, -0.23425878584384918, 0.10790847986936569, 0.0911419615149498, 0.5644069910049438, 0.31868231296539307, -0.1163366287946701, -1.0651071071624756, 0.6286212205886841, -0.7645120620727539, 0.43923625349998474, 0.7006645202636719, -0.2045779526233673, 1.0050534009933472, 0.24445614218711853, 0.5513655543327332, -0.5775145888328552, -0.510343611240387, 0.05729149281978607, -1.4807366132736206, 1.2819558382034302, 0.830734372138977, 0.27868926525115967, 0.46395018696784973, -0.3131720721721649, -1.4167728424072266, -0.30806219577789307, -0.5728585720062256, 0.95635586977005, -0.7675740122795105, -0.9601601362228394, -0.9081007242202759, -0.8582347631454468, -0.04750354588031769, 0.8567890524864197, 0.3252195417881012, -0.9101584553718567, -0.9718698263168335, -0.14564259350299835, 0.35270896553993225, 0.9440844655036926, -1.0910899639129639, 0.21231579780578613, -0.1809171587228775, -1.5719422101974487, 0.3130834102630615, 0.6032695770263672, -1.424250602722168, -0.7230417132377625, -1.007979393005371, 0.720781147480011, 0.5155615210533142, -0.8344572186470032, 0.42347559332847595, 0.8561023473739624, -0.9579421281814575, -0.7443863749504089, -0.9008241891860962, -0.5665503144264221, -0.32813405990600586, 0.7982804179191589, -0.3891195058822632, 0.7966756820678711, -0.9203503131866455, -0.02152649126946926, -0.3927473723888397, 0.47897619009017944, -0.9887900352478027, -0.042473480105400085, -0.12630952894687653, 0.17579255998134613, -0.4817064702510834, 1.3005549907684326, 0.9212307929992676, 1.0021330118179321, 0.13042721152305603, 1.5183355808258057, -0.4462451934814453, -0.49571672081947327, -0.182966411113739, 0.6445950269699097, -0.8186913132667542, -0.4593225419521332, 0.08240850269794464, -0.856704592704773, -0.6328145265579224, -0.059154413640499115, 0.7527234554290771, -1.448789358139038, 0.7549104690551758, -0.5071024298667908, -0.12771360576152802, -0.5445398688316345, 0.3873920440673828, 0.7543158531188965, -0.23641614615917206, 0.01721153035759926, -0.5739631056785583, 0.36321336030960083, -0.6935279369354248, 0.45896121859550476, 0.748447597026825, 0.7531255483627319, 0.08507968485355377, 0.1540931612253189, 0.5417753458023071, 0.2698271870613098, -0.5604487061500549, 1.0774544477462769, 0.6417823433876038, -0.25608277320861816, 0.034487009048461914, 0.5489234328269958, 0.06557857990264893, 0.2071988731622696, -0.1307019144296646, -0.7161892652511597, -0.6466512084007263, 0.5491270422935486, -0.17029103636741638, 0.95968097448349, -0.6796301007270813, 0.6448642015457153, -0.020228099077939987, 0.8424146771430969, 1.107730507850647, -0.49278801679611206, -0.003350885584950447, 0.9450220465660095, 0.44194844365119934, -0.46384504437446594, -0.08062362670898438, 0.474032998085022, 0.234438955783844, 0.732621431350708, 0.6692705154418945, 0.5356311798095703, -0.42320865392684937, 0.22469857335090637, 0.8550353646278381, -0.4774613082408905, -0.6853563189506531, -0.06992843002080917, -0.9627870321273804, -1.0207489728927612, -0.1604115217924118, -0.5971438884735107, -0.21579895913600922, -1.2143713235855103, -0.950569748878479, 0.5684590935707092, -0.5972971320152283, -0.15587936341762543, -0.4093417823314667, -0.6720660924911499, -0.3045380711555481, -0.6041276454925537, 0.9105282425880432, -0.36001259088516235, 1.0028349161148071, 0.25466471910476685, 0.47712182998657227, -0.28962644934654236, 0.08398765325546265, -0.19428503513336182, -0.0991937667131424, -0.10551069676876068, -0.6017253398895264, 0.005205394700169563, -0.6978960633277893, -0.11183930188417435, 0.05574502795934677, -0.637756884098053, 0.13788361847400665, -0.5242968201637268, -0.41957464814186096, 0.41950735449790955, 0.7450358867645264, -0.014497363939881325, -0.39357346296310425, -0.869627833366394, -1.1178410053253174, 0.35339829325675964, 0.10510414093732834, 0.9153594970703125, -0.1879088431596756, 0.8279122710227966, -0.20212624967098236, -0.9783636331558228, -0.358448326587677, -0.42433446645736694, 0.7092001438140869, -0.6915029883384705, 0.15281252562999725, -0.6127517223358154, -0.42350712418556213, 0.5962274074554443, -0.8043931722640991, 0.287678062915802, -0.09445653110742569, -0.2731209695339203, -0.11168154329061508, -0.5538089275360107, -1.1050047874450684, -0.3575630486011505, 0.0189411249011755, 0.4799179136753082, 0.7949811220169067, 0.8092595934867859, -0.5794654488563538, -0.7353392243385315, -0.25694552063941956, 0.9043958187103271, 0.6773070693016052, 0.7758685350418091, 1.1277655363082886, 1.2329058647155762, -0.223336860537529, -0.19209440052509308, -0.06871874630451202, -0.02446024678647518, -0.9937075972557068, 0.12880104780197144, -1.0207018852233887, -0.005575112532824278, 0.34206056594848633], [0.9876706600189209, 0.8324131369590759, -2.8793222904205322, -0.6578991413116455, 1.3979294300079346, -0.1432350128889084, 0.7877103090286255, 0.03503141552209854, -0.6995338201522827, -1.1091524362564087, -0.7884939908981323, 0.025787310674786568, 0.0795583426952362, 0.20693428814411163, 1.2233221530914307, 0.09816166013479233, 1.1594915390014648, 0.6167402863502502, 0.07665283977985382, 0.6459512710571289, -0.47315698862075806, -1.4503270387649536, -0.3032786548137665, 0.45536714792251587, -0.22785884141921997, 1.5577994585037231, -0.5456250905990601, -0.175740048289299, -1.2317570447921753, -0.5088061094284058, 1.4507105350494385, -1.000914216041565, 0.7951673269271851, -0.15877631306648254, -2.115161895751953, 0.2890744209289551, 1.5316739082336426, 0.8133525848388672, 0.5564924478530884, -0.5963462591171265, 2.2789711952209473, -0.03508258983492851, -0.08860352635383606, -1.930678129196167, -0.5834077000617981, 0.857420802116394, 0.6419271230697632, -0.4925646185874939, 0.06666533648967743, 0.08413400501012802, 0.18408913910388947, -0.7945425510406494, -0.47015389800071716, 0.9857504367828369, 1.1866393089294434, -0.796947717666626, 0.46457910537719727, 0.10017777979373932, 0.1459837257862091, -0.3509034514427185, 0.5494813919067383, -0.1668175309896469, 0.006508302874863148, 0.6377063989639282, 0.4011205732822418, -1.129871129989624, 0.1130816861987114, 0.5319966077804565, 0.3011971414089203, 0.833979606628418, 0.3286449909210205, -0.8964589834213257, -0.7716138362884521, 1.2633569240570068, -1.1502505540847778, 0.2178129255771637, 0.3713234066963196, 1.0140974521636963, 0.4258238971233368, 0.0950813814997673, -0.9457168579101562, 0.5991033315658569, 1.0249993801116943, -0.5594070553779602, -0.10905928909778595, 0.7441089153289795, 0.582192599773407, -0.8662866950035095, -0.15092864632606506, 1.8331422805786133, -0.08749961853027344, 0.8507885932922363, 0.057226795703172684, 0.10662829130887985, -0.8519163727760315, 0.01923477277159691, 0.4926633834838867, -1.1519461870193481, -0.3014865517616272, -0.39025676250457764, -0.4147697687149048, -1.0145082473754883, 0.08639083802700043, 0.4243469834327698, 0.19824042916297913, 0.4460347890853882, 0.1383979171514511, -0.3130761981010437, 0.09228971600532532, -0.0014919470995664597, -0.9127863645553589, 1.0310344696044922, -0.24043118953704834, -1.491687536239624, -0.1789221465587616, 1.0077729225158691, 1.0058624744415283, 0.36416107416152954, 0.41292303800582886, 0.836030125617981, -0.3577069044113159, -0.05552700161933899, -0.3001289367675781, 0.18012285232543945, 0.6255120635032654, -0.4909971058368683, -1.1295959949493408, -0.05661028251051903, 0.5496236085891724, -0.07109606266021729, 0.40759989619255066, -0.22423997521400452, 0.10262961685657501, 0.8423427939414978, -0.7553443312644958, 0.5207365155220032, -1.3899219036102295, -0.79167640209198, 0.05794353783130646, -0.1572745442390442, 0.8570114970207214, -0.18117676675319672, 0.022610696032643318, -0.41801175475120544, -0.28743577003479004, -0.441381573677063, 0.4947250485420227, -0.9316903352737427, -0.9367592334747314, 0.15752682089805603, -1.052929162979126, 0.3006439507007599, 0.149264395236969, 1.3513991832733154, 0.5172721147537231, -0.24199789762496948, -0.42074310779571533, 0.1308877319097519, -0.08256708085536957, 0.3734726905822754, -0.3820202350616455, -0.3595256507396698, -1.0129354000091553, 0.17724443972110748, 0.7346364855766296, -1.0318238735198975, -0.14339667558670044, 0.8149901628494263, 0.39695054292678833, 1.542586088180542, -0.36412087082862854, -0.7701443433761597, -0.7461977005004883, -0.49661314487457275, 0.4113711714744568, -0.27728691697120667, 1.4779613018035889, 0.18345525860786438, -0.708533525466919, -0.8121827840805054, 0.7877197265625, 0.19999626278877258, 0.9851524829864502, -0.43101438879966736, 0.5888046026229858, -0.1717013120651245, 0.18501216173171997, -0.539592981338501, -0.46835169196128845, -0.7261017560958862, -0.8272457122802734, -0.4391719698905945, -0.676404595375061, 0.5006812214851379, -0.2865273356437683, -1.126412034034729, 0.7287704944610596, -1.0170053243637085, -0.3659731149673462, 0.3065410852432251, 0.1053599864244461, -0.4391423463821411, -0.3397373557090759, -0.4720783531665802, -1.1970605850219727, 0.20356597006320953, -0.9465467929840088, 0.447881817817688, -0.5818580985069275, -0.887914776802063, 0.22196803987026215, -0.33153295516967773, -0.7381088137626648, 1.3091144561767578, -0.010520145297050476, -1.517677664756775, 0.6060184240341187, 0.19628265500068665, -0.3740503191947937, -0.5441226959228516, -0.370134562253952, -0.04431906342506409, 1.2094104290008545, -0.4140707850456238, 0.37457430362701416, -0.1328326165676117, 0.13911648094654083, -1.0925967693328857, -0.5277440547943115, -0.3977225422859192, -0.5988720059394836, -1.320197582244873, 0.6843120455741882, 0.08893799036741257, -1.418917179107666, 0.06301458179950714, -0.02381560578942299, 0.25752824544906616, -0.2694433629512787, 0.8251149654388428, 0.8181815147399902, 0.8049597144126892, -0.05149056762456894, -1.2803908586502075, -0.44777911901474, 1.127800703048706, 0.9872888326644897, -0.9706515073776245, -0.002296753227710724, 0.7289556860923767, 0.3141480088233948, -0.44714853167533875, 0.4556366503238678, -0.5951701998710632, 0.0805397629737854, -0.9525023698806763, -1.0421042442321777, -0.25158101320266724, -1.1334731578826904, 1.6853513717651367, 0.6907175779342651, -0.8917099237442017, 0.19027701020240784, -0.2662518322467804, -0.336509644985199, -0.46010416746139526, -0.3302091062068939, -0.5719150304794312, 0.24520288407802582, -0.12824900448322296, 0.1633186787366867, 0.09358078241348267, 0.05061463266611099, 0.7803281545639038, -0.4542834758758545, -0.576572060585022, -0.3146595060825348, 0.5716627836227417, -0.14075259864330292, 0.939865231513977, -0.30271828174591064, -0.8110654354095459, -0.4831685423851013, 0.3302972614765167, 0.2973054051399231, 0.32095474004745483, -0.4116467833518982, 0.7475977540016174, 0.9051905274391174, 0.22940969467163086, 0.43928125500679016, 0.9269957542419434, -0.42142337560653687, 0.57546067237854, 1.1373984813690186, 0.012684605084359646, 0.8514830470085144, -0.8567523956298828, -0.9446820020675659, -0.6217027306556702, 0.23789331316947937, 1.5938012599945068, 0.4757140874862671, 1.693467378616333, -0.18656302988529205, -0.2067272812128067, -0.5517213940620422, -0.5897480249404907, -0.6693121790885925, -0.49188053607940674, 0.18298855423927307, -1.4463202953338623, -0.666240930557251, -0.47356295585632324, 0.19271910190582275, 0.7574833631515503, 0.8180287480354309, 0.5441108345985413, 0.4554424583911896, -0.40680211782455444, -0.30033189058303833, -0.5783595442771912, -0.04316118359565735, -1.0189673900604248, 0.009252430871129036, 1.2336633205413818, -1.2448993921279907, 0.5849652290344238, -0.7315424680709839, -0.27269500494003296, 0.9867961406707764, -0.6383042931556702, 0.5055832862854004, -1.0952467918395996, -0.5753096342086792, 0.12892326712608337, 0.5418992042541504, -0.06806286424398422, 0.1754799485206604, -0.31347161531448364, 0.36479559540748596, 0.17807473242282867, -0.047003429383039474, -0.6510612368583679, 1.3698699474334717, -0.9602609872817993, -0.9283169507980347, -0.4962601363658905, 0.6665099263191223, 0.08831720054149628, -0.46934056282043457, -0.8562062978744507, -1.054874062538147, 0.20766358077526093, -0.4055064916610718, -0.21315759420394897, 0.03434455022215843, 0.2529923915863037, -0.12477480620145798, 1.203001618385315, 0.4807201623916626, 0.05267893522977829, -0.2008642554283142, -1.1432981491088867, 0.63059401512146, 1.5279183387756348, 2.0373716354370117, 0.9889190196990967, 0.3736332058906555, 0.22278979420661926, -0.1270517259836197, 0.6055797934532166, -0.2819984555244446, 0.965814471244812, -0.2755542993545532, -0.2119356393814087, -0.211390420794487, -0.38350504636764526, -0.11223433911800385, 0.8010473251342773, 0.8621945381164551, -0.21204964816570282, 0.02934500202536583, 0.34286099672317505, 1.5795419216156006, -0.2157275676727295, -0.4200921356678009, -0.5016849040985107, 0.07235097885131836, 1.1103639602661133, -1.4769792556762695, -0.5498745441436768, -0.31106460094451904, 0.0069613344967365265, 0.5540508031845093, -1.2028388977050781, 0.19382750988006592, 0.5872498750686646, -0.20894044637680054, 1.0184898376464844, -0.7997573018074036, -0.3541874289512634, -0.11130397766828537, 0.6986157894134521, 0.26986515522003174, -0.030279580503702164, -0.08432590961456299, 0.435960590839386, -0.7336785793304443, 0.29808852076530457, 0.24562552571296692, 1.562159538269043, -0.11185916513204575, -0.23910966515541077, 0.47716861963272095, -0.6868723034858704, 0.8462197780609131, -0.4199689030647278, -0.4663182497024536, -0.2874116599559784, -0.3392678499221802, -0.06925512850284576, 0.34604182839393616, 0.12571552395820618, 2.240083694458008, 0.28291624784469604, 0.29119521379470825, 0.034878067672252655, 0.48731493949890137, -1.134443759918213, 0.19437554478645325, 0.3576633036136627, 0.4191616177558899, -0.39158517122268677, 0.6369733810424805, 0.20524364709854126, -0.05517255514860153, 0.12896233797073364, -0.8387530446052551, 0.18350300192832947, -0.12498732656240463, -0.20538964867591858, 0.9179202318191528, 0.6691544055938721, 1.2029948234558105, 0.7020246386528015, 0.9705967903137207, -1.0542041063308716, -0.891524076461792, 0.8468866348266602, -0.07386627048254013, 0.5185453295707703, 0.9828379154205322, 0.7117762565612793, 1.229062557220459, -1.8689250946044922, 0.026720209047198296, 1.0027557611465454, -0.13396596908569336, 0.9688389897346497, 0.6092179417610168, -0.4743669927120209, -0.2930763363838196, 0.20200170576572418, 0.6227808594703674, -0.05984639376401901, 0.21520783007144928, 0.5413429737091064, 0.20404261350631714, 1.4538288116455078, -0.23252859711647034, 0.22163528203964233, -0.5580253601074219, -0.6318535208702087, 0.07218952476978302, -0.20412790775299072, 0.09481201320886612, 0.45943209528923035, 0.07386184483766556, 0.9428696632385254, 0.434385746717453, -1.1868020296096802, -0.06994122266769409, -0.23843564093112946, 0.698302149772644, -0.6453834176063538, -0.7550410628318787, -1.092254400253296, -0.31316685676574707, 0.06777868419885635, -0.26712605357170105, -0.94933021068573, -0.40686386823654175, -0.45791512727737427, -0.8282894492149353, 0.7063205242156982, 0.8236665725708008, -0.07996794581413269, 0.27457544207572937, -0.322534441947937, -0.11144295334815979, 0.2312052994966507, -0.21894557774066925, -0.2228975147008896, -0.07512693107128143, 0.19650256633758545, 0.2246645838022232, -1.199570894241333, -0.7637363076210022, -0.2902913987636566, 0.8365561962127686, 0.18835298717021942, 0.3921375274658203, 1.2368745803833008, 1.563609004020691, 0.5158115029335022, 0.16830669343471527, 0.509269118309021, -0.4855276644229889, 0.48842698335647583, 0.8884658813476562, 0.1874319612979889, 0.2343321144580841, -0.6798120737075806, -1.2129085063934326, 0.7671151161193848, -0.006186366081237793, -0.7383059859275818, 0.4823054373264313, 0.274874210357666, 0.19392351806163788, 0.23920699954032898, -0.44596147537231445, 0.3908989429473877, -0.3095518946647644, -0.5827338099479675, -0.6461755037307739, 0.7712570428848267, 0.5516498684883118, -0.017068158835172653, -0.2791042625904083, -0.1536567509174347, -0.5395808815956116, -0.03854283690452576, -0.488999605178833, 0.7713638544082642, 0.04270893707871437, 0.37084081768989563, -0.04770816117525101, 0.10043581575155258, 0.44122129678726196, -0.4312959909439087, -0.28657829761505127, -0.29136237502098083, 0.44675537943840027, 0.8191916346549988, 0.4452475905418396, 0.6014251708984375, -0.5419310927391052, -0.508155107498169, -0.6702800989151001, -0.06066185608506203, 0.7045320272445679, 1.0703089237213135, 0.5552115440368652, 0.47520673274993896, -0.6810144782066345, -0.12575861811637878, -0.4165157079696655, 0.5124810934066772, 1.9671658277511597, -0.6192066669464111, 0.10239222645759583, -0.3247903287410736, -0.6979029178619385, 0.2506428360939026, -0.2817729711532593, 0.6568926572799683, -1.0517531633377075, -1.4395701885223389, -1.799336314201355, -0.10496009886264801, 0.7161999940872192, -0.3192724883556366, 0.8561339378356934, 0.14119496941566467, -1.1564233303070068, 0.32100534439086914, 0.36065760254859924, -0.39740151166915894, 0.434865802526474, -1.4190170764923096, 0.3590858578681946, 0.6366234421730042, 0.6278972625732422, -0.5519239902496338, 1.0778882503509521, -1.521545171737671, -1.7792004346847534, -0.5813188552856445, 0.698445200920105, 1.0650063753128052, 0.5492614507675171, -1.4965202808380127, 1.5266997814178467, 0.016073256731033325, 0.052193693816661835, -0.38281646370887756, -0.31265169382095337, -0.26183438301086426, 0.3305504024028778, 0.18541398644447327, 0.9952554702758789, 0.23343077301979065, 1.4050540924072266, 0.200236976146698, 0.6680158376693726, 0.685280978679657, -0.08141452819108963, -1.1441240310668945, 0.008829042315483093, 0.20448166131973267, 0.9602909088134766, -0.46405577659606934, -0.5362012386322021, -0.1494426727294922, -0.4164119064807892, -0.5654077529907227, 0.1683332920074463, 0.859323263168335, -0.4525594711303711, 0.5737826228141785, -0.4348157048225403, 0.11522458493709564, -1.1394208669662476, 0.8534332513809204, 0.23376122117042542, -0.003035183995962143, -0.35431617498397827, 0.0027637779712677, 0.06638262420892715, -0.9174411296844482, -0.04992023482918739, 0.0480152890086174, -0.35845768451690674, -0.6020634174346924, 0.6020790338516235, -0.11170613020658493, 0.4569469690322876, -0.12722477316856384, 1.3560740947723389, 1.1565136909484863, -0.19728219509124756, 0.3435670733451843, -0.3987942337989807, 0.015118511393666267, -0.3270905315876007, -0.615084171295166, -1.3905999660491943, -0.5252599120140076, 0.4007936716079712, 0.4725446105003357, -0.19381123781204224, -0.14399990439414978, -0.07801283150911331, 0.3462798595428467, 0.47522950172424316, 0.9230031967163086, -0.9706296920776367, -0.4945090413093567, 0.8098250031471252, 0.4001767039299011, -0.48690134286880493, 0.06054473668336868, -0.06155642867088318, 0.04427281767129898, 0.008069571107625961, 0.20442143082618713, 0.35786426067352295, -0.8054747581481934, 0.17969736456871033, 0.40563762187957764, 0.47621482610702515, 0.005941152572631836, -0.12759117782115936, -1.7281148433685303, -0.32714998722076416, -1.3091638088226318, -0.0740974098443985, 1.0121320486068726, -1.1976654529571533, -0.8351417183876038, -0.06484188884496689, 0.5103741884231567, -0.09906141459941864, 0.26044437289237976, 0.1808270663022995, 0.7727693915367126, -0.4866384267807007, -0.1529739499092102, -0.648970365524292, 0.5337661504745483, 0.09630037099123001, 0.08095252513885498, -0.38866549730300903, -0.25473570823669434, 0.5843372344970703, -0.07917490601539612, 0.01638716273009777, -0.540261447429657, 0.767605721950531, -0.4747272729873657, -0.4778299331665039, 0.08552289009094238, 0.7031859159469604, 0.3881824016571045, -0.19049522280693054, -1.2354791164398193, 0.48990368843078613, 0.7664159536361694, 0.4422331750392914, -0.17760159075260162, -1.1409521102905273, -0.44948214292526245, 0.8751053810119629, -0.7974029779434204, 0.7937047481536865, 0.0685444250702858, 0.08433741331100464, 0.3514993190765381, -0.5357043743133545, -0.7354085445404053, -0.563563346862793, 0.37111419439315796, 0.17528441548347473, 0.17729264497756958, -0.014274386689066887, 0.3468266725540161, 0.00126754492521286, -1.3221514225006104, -0.4937986731529236, -0.10165026783943176, -0.4473956525325775, 0.2907163202762604, -1.0929045677185059, -0.32703858613967896, -0.6986636519432068, 0.3895445764064789, 0.6531765460968018, 0.0188225656747818, 0.7033596634864807, -0.002503514289855957, -1.6961252689361572, 0.2206541895866394, 0.3478800058364868, 0.0025282204151153564, -0.09485065191984177, 1.0672519207000732, 0.9278336763381958, 0.5154945254325867, 0.6821333765983582, -0.31945812702178955, 0.26358842849731445, -1.2703747749328613, -0.17259526252746582, -0.3295879065990448, 0.1225399523973465, -0.7553068399429321], [1.0388292074203491, 1.567883849143982, -2.4904069900512695, -0.515694797039032, 0.915591299533844, -0.6828662157058716, 0.8072577118873596, -0.49948233366012573, -0.5512784719467163, -1.3410911560058594, -0.6843780279159546, 0.20103658735752106, 0.5934271812438965, 0.4005252718925476, 0.8102210760116577, 0.0529228039085865, 0.8523557186126709, 0.8252488970756531, 0.0670025572180748, 0.49173229932785034, -0.11833344399929047, -1.5555636882781982, 0.3480704724788666, 0.11740292608737946, 0.5095639824867249, 0.28425151109695435, -0.8936201333999634, -0.4040434956550598, -1.1524879932403564, -0.9133641719818115, 1.1936594247817993, -0.7594735622406006, 0.19096918404102325, -0.17633868753910065, -1.8780667781829834, -0.1663413643836975, 0.8610876202583313, 0.6707549095153809, 0.43141260743141174, 0.41826969385147095, 2.1485300064086914, 0.09273836761713028, 0.10375551879405975, -1.525869607925415, 0.5142301321029663, -0.3379814028739929, 0.9679683446884155, -0.8250485062599182, -0.09543459862470627, -1.0545649528503418, 0.12444520741701126, -0.7444990873336792, -0.5100642442703247, 1.0151845216751099, 0.7431125640869141, -0.6986055374145508, 0.46136677265167236, 0.4055158197879791, 0.29614540934562683, -0.629552960395813, 0.5275563597679138, 0.6447892785072327, 0.6432119011878967, 0.3771354556083679, 0.08124597370624542, -0.1949702352285385, -0.20342959463596344, 0.5959240198135376, 0.28229066729545593, 0.6615482568740845, 0.48589426279067993, 0.3339070677757263, -0.6986157298088074, 0.4824283719062805, -1.2487846612930298, 0.6592370867729187, 0.7142403721809387, 0.6870344877243042, 0.09254050999879837, 0.7973145246505737, -0.7356147766113281, 0.03570730984210968, 0.10542220622301102, -0.17367422580718994, 0.22337785363197327, 0.6703660488128662, 0.609054684638977, -0.3100167214870453, -0.47640231251716614, 1.4527761936187744, 0.270381361246109, 0.6133929491043091, 0.6002998948097229, -0.5154479742050171, -0.2828904390335083, -0.8128639459609985, 0.026798121631145477, -1.1684327125549316, -0.43388301134109497, -0.3566933572292328, -0.8872619271278381, -1.2115414142608643, 0.25038576126098633, 0.6704908609390259, 0.3299235999584198, 1.079048991203308, 0.7664387822151184, -0.6972936987876892, 0.01341626513749361, -0.13585124909877777, -0.3910919427871704, 0.5022505521774292, -0.9090655446052551, -1.1414953470230103, -0.25243398547172546, 1.09296715259552, 1.5634056329727173, 0.033123619854450226, 0.631136953830719, 1.0505784749984741, -1.145463466644287, -0.48819008469581604, -1.3476792573928833, -0.4522479474544525, 1.6853383779525757, -0.09516526758670807, -1.1219193935394287, -0.04994707927107811, 0.30390357971191406, 0.16219156980514526, 0.7990823984146118, -0.03208659589290619, -0.11587761342525482, 1.0782839059829712, -0.7583678364753723, 1.2204471826553345, -0.21962818503379822, -1.532446026802063, 0.4709548354148865, 0.7088162899017334, 0.5522158145904541, 0.009418941102921963, -0.1255301833152771, -0.6365993022918701, 0.43140682578086853, -0.29341810941696167, -0.29459288716316223, 0.014138449914753437, -0.827534556388855, 0.01859487034380436, -1.409962773323059, 0.44982466101646423, -0.006000312976539135, 0.795179009437561, 0.853362500667572, -0.28494760394096375, -0.339855432510376, -0.04363316297531128, 0.0005037342198193073, 0.1494630128145218, 0.777283251285553, 0.07287537306547165, -1.1359933614730835, 0.44018304347991943, 0.9177548885345459, -0.9714818596839905, -0.10433510690927505, 0.7426918148994446, 0.1288580447435379, 1.0233519077301025, -0.287810355424881, -0.38036301732063293, -1.0030559301376343, 0.14232274889945984, 0.45825594663619995, -0.08478916436433792, 1.946171760559082, -0.0701398178935051, -0.98808354139328, -1.1073633432388306, 0.41975995898246765, -0.08389294892549515, 0.1399025321006775, -0.36196544766426086, 0.39716753363609314, -0.14582878351211548, 0.0626874640583992, -0.2986469268798828, -0.686886727809906, -1.354021668434143, -0.7401875257492065, -0.38647544384002686, -0.8123569488525391, 0.5649935007095337, -0.9661744236946106, -1.1696752309799194, 0.7811055779457092, -0.47058945894241333, -0.33088362216949463, -0.09618942439556122, 0.07007831335067749, -0.6436792612075806, -0.8404765129089355, -0.21552403271198273, -0.48157835006713867, 0.6933198571205139, -1.0004996061325073, 0.18463750183582306, -0.5226917862892151, -0.047991231083869934, 0.7538575530052185, 0.09869899600744247, -1.2976566553115845, 0.9798328876495361, -0.23153136670589447, -1.600525975227356, 0.7648420333862305, 0.27516070008277893, 0.37466269731521606, -0.20700576901435852, -0.06811463832855225, -0.19616767764091492, 0.8354578614234924, -0.37900909781455994, 0.5124250054359436, -0.07592595368623734, -0.5632182955741882, -0.9121177196502686, -0.4104178249835968, -0.2067820131778717, -0.6709931492805481, -0.9999014735221863, 0.6881538033485413, -0.0972195416688919, -0.9290722012519836, 0.4612169861793518, 0.25636908411979675, 0.5674746632575989, -0.08881620317697525, 1.013158917427063, 1.0546190738677979, 0.07052846997976303, -0.5908108949661255, -0.49145328998565674, -0.4573359489440918, -0.06551554799079895, 0.89128178358078, -0.1313430815935135, -0.12039612978696823, 1.3578583002090454, 0.9493868350982666, -0.38309717178344727, 0.7735394835472107, -0.10597545653581619, 0.05215787515044212, -1.344294548034668, -0.0478970929980278, -0.2723359167575836, -0.9665495753288269, 1.0458593368530273, 0.40985947847366333, -1.5663888454437256, 0.07452994585037231, -0.3207652270793915, -0.17717069387435913, -0.49988994002342224, -0.42731404304504395, -0.5113621950149536, 0.31503790616989136, -0.4958314299583435, -0.1460486650466919, -0.13737747073173523, -0.7005917429924011, 0.5786615610122681, -0.9624454975128174, -0.6368018984794617, 0.1176675409078598, 0.6974015831947327, -0.019256968051195145, 0.8133756518363953, -0.4486372172832489, -1.6122287511825562, -1.0461461544036865, -0.01206339243799448, 0.6938650012016296, 0.19868238270282745, -0.803758442401886, 1.2571709156036377, 1.1065839529037476, 0.3545858561992645, 0.015716370195150375, -0.03353815898299217, 0.09152548760175705, 0.049454834312200546, 0.35009005665779114, -0.05819828063249588, 0.42270219326019287, -0.6899184584617615, -0.5418137907981873, -0.5281316637992859, 0.38347846269607544, 1.2231392860412598, 0.5005708932876587, 1.2270606756210327, -0.24547044932842255, -0.403696209192276, -0.25470203161239624, 0.25722426176071167, 0.1626559942960739, 0.04937665909528732, -0.40474215149879456, -1.2590936422348022, -0.1580720990896225, -0.6503004431724548, -0.03496851027011871, 0.7826305031776428, 0.1528290957212448, 0.3914230465888977, 0.9527403116226196, 0.2979084551334381, -1.23517906665802, -0.669984757900238, 0.1727081537246704, -1.2459301948547363, -0.029363656416535378, 1.6158686876296997, -0.7942256927490234, 0.6408369541168213, -0.3255910277366638, 0.09508632123470306, 0.01210043765604496, -0.14384470880031586, 0.42141276597976685, -1.0462937355041504, -0.5258535742759705, -0.07810024172067642, 1.3116035461425781, 0.037849366664886475, 0.004713253118097782, -0.20498614013195038, 0.7448879480361938, 0.8565182685852051, -0.5239317417144775, -0.9410231113433838, 0.4510888457298279, -0.8830776810646057, -0.593591034412384, -0.4376492500305176, 0.5082554221153259, 0.3690088987350464, -0.4481005370616913, -0.6981074810028076, -0.820183515548706, -0.1239430159330368, -0.7725581526756287, 0.29353365302085876, 0.16863848268985748, 1.268547534942627, 0.0386444590985775, 0.21129857003688812, 0.9113829731941223, -0.093880295753479, 0.5518020391464233, -0.7773080468177795, 0.3252876102924347, 0.9077316522598267, 1.7776877880096436, 0.7417323589324951, 0.1715276539325714, 0.32023248076438904, 0.062037330120801926, 0.16091127693653107, -0.09943678975105286, 0.45833641290664673, -0.2522381842136383, -0.47072216868400574, -0.6637736558914185, 0.007591788657009602, 0.2357316017150879, 0.3840016722679138, 0.1938747763633728, 0.17144735157489777, -0.3672406077384949, -0.4781787395477295, 1.1157630681991577, 0.9030162692070007, 0.0687108039855957, -0.3157494366168976, -0.515767514705658, 0.5653245449066162, -0.9175154566764832, 0.08575442433357239, -0.8182470798492432, -0.23039713501930237, 0.6540822386741638, -1.3772519826889038, -0.1297990083694458, 0.5242310762405396, 0.2661263644695282, 1.175850510597229, -1.7127270698547363, -0.2615699768066406, 0.007217553909868002, 0.4642985463142395, 0.4855998158454895, -0.2644367516040802, 0.4869731366634369, -0.09459385275840759, -0.16082283854484558, 0.18555814027786255, 0.568747878074646, 1.3167086839675903, -0.4535193145275116, -0.31560301780700684, 0.3469927906990051, -0.9801556468009949, 0.15804129838943481, -0.5302351117134094, -0.4369979202747345, 0.10982999950647354, -0.09448754042387009, 0.2359112948179245, 0.06695476174354553, -0.1748872548341751, 2.2889246940612793, 0.327138215303421, 0.14889779686927795, 0.26908746361732483, 0.633912980556488, -0.9736401438713074, 0.49495571851730347, 0.4146591126918793, -0.13055749237537384, -0.3451496660709381, -0.012355568818747997, -0.09366992115974426, 0.40795981884002686, 0.4103821814060211, 0.019229935482144356, 0.4481421709060669, 0.48267295956611633, 0.6692612767219543, 0.17383091151714325, 0.05230049043893814, 1.1964448690414429, 0.7311005592346191, 1.1186723709106445, -0.4439416527748108, -1.1678102016448975, 0.8057950735092163, -0.3758367598056793, -0.10012511163949966, 1.2121020555496216, -0.14811567962169647, 1.4023696184158325, -1.0960594415664673, -0.4453100562095642, 0.6628199815750122, 0.16710326075553894, 0.39466822147369385, 0.39078453183174133, 0.2608223259449005, -0.7736903429031372, 0.16975006461143494, 0.7162264585494995, -0.5823894143104553, 0.1390271633863449, 0.090408094227314, -0.2854645848274231, 0.6568803191184998, -0.8595523238182068, 0.21839794516563416, -1.1308566331863403, -0.35354432463645935, 0.05949772149324417, -0.1733214557170868, 0.8711475729942322, 1.046708583831787, 0.6834133863449097, 0.8219563364982605, -0.15794098377227783, -1.8724775314331055, 0.060636006295681, -0.49865445494651794, 0.14660730957984924, -0.8046566247940063, -0.019794046878814697, -0.844019889831543, -0.4365234375, 0.33586063981056213, -0.11074209958314896, -0.295194536447525, -0.09135713428258896, 0.0376865528523922, -0.6996151208877563, 0.661953330039978, 0.3808269202709198, 0.3656686544418335, 0.16806356608867645, 0.383924275636673, 0.1617993265390396, 0.9020655751228333, -0.771645188331604, 0.3779583275318146, 0.1457848995923996, 0.020355818793177605, 0.21413739025592804, -0.7772313356399536, -0.7601361274719238, 0.2548045516014099, 0.8692829608917236, -0.03083168901503086, 0.23812933266162872, 0.950456976890564, 1.9345357418060303, -0.5100042819976807, -0.3949372470378876, 0.6658359169960022, -0.7855730652809143, 0.5826995372772217, 0.44561097025871277, -0.41539686918258667, -0.3480057716369629, -0.34891030192375183, -1.245039701461792, 1.4420294761657715, 0.42564958333969116, -0.32736852765083313, 0.6251211762428284, 0.37795764207839966, 0.7433628439903259, 0.9825557470321655, -0.9619002938270569, 0.40845948457717896, -0.06220811605453491, -0.5198032259941101, -0.8403013348579407, 0.6863952875137329, 0.4166455566883087, 0.06061389669775963, -1.031178593635559, 0.17420434951782227, 0.1203480139374733, -0.12666255235671997, -0.4857502281665802, 0.1247834712266922, 0.7343173027038574, 0.38726943731307983, 0.35114941000938416, -0.5969054102897644, 0.27762725949287415, -0.502720832824707, 0.07545952498912811, 0.022577127441763878, 0.33460599184036255, 0.8176268935203552, 0.2545575797557831, 0.5694618821144104, -0.4884565472602844, -0.6056288480758667, -0.05290069431066513, -0.7419776916503906, 1.2716484069824219, 1.2009530067443848, 0.7628886103630066, 0.15996050834655762, -0.4594394862651825, 0.06550364196300507, -0.2895948588848114, -0.06773431599140167, 1.2860057353973389, -0.7488847970962524, -0.2011062651872635, 0.06305969506502151, -0.6665914058685303, 0.47307848930358887, 0.07351477444171906, 0.3775009214878082, -0.976658284664154, -0.9269652962684631, -0.7223376035690308, -0.05674237757921219, 1.2749208211898804, -0.5552582144737244, 0.038898590952157974, 0.4237866699695587, -0.9998312592506409, 1.1929066181182861, 0.5401490926742554, -1.1766597032546997, -0.3107815086841583, -0.6677795648574829, 1.1178853511810303, 0.38446271419525146, -0.02610034868121147, 0.6505349278450012, 1.2400481700897217, -1.0089589357376099, -1.781479001045227, -0.9017438888549805, -0.08063139766454697, 0.748066782951355, 0.7568623423576355, -1.437364935874939, 1.4628698825836182, 0.08760825544595718, -0.1690334975719452, -0.038945335894823074, -0.42725077271461487, -0.8156833648681641, 0.1700161099433899, 0.4062287509441376, 0.2215748429298401, 0.2522982060909271, 1.1939691305160522, 0.6427499055862427, 0.7818356156349182, 0.29911887645721436, 1.174239158630371, -0.83693528175354, -0.05175900086760521, -0.05182167515158653, 0.9551178812980652, -0.8844079375267029, -0.9099213480949402, -0.10325223207473755, -0.8527334928512573, -0.9480119943618774, 0.23485659062862396, 0.7950682640075684, -0.6230829358100891, 0.7044721245765686, -0.5612415075302124, -0.3567650318145752, -1.2261862754821777, 0.41988444328308105, 0.06933467090129852, -0.799114465713501, 0.8350582122802734, -0.25130337476730347, 0.3402731418609619, -1.0808771848678589, -0.22121216356754303, 0.14737661182880402, 0.11648274213075638, -0.8309782147407532, 0.4354381859302521, 0.19803652167320251, -0.06633666157722473, -0.24489738047122955, 1.558699131011963, 0.9810366630554199, -0.18851332366466522, 0.2820900082588196, 0.31010985374450684, -0.06241649389266968, -0.47099193930625916, -0.161422997713089, -1.247193455696106, -0.6679098606109619, 0.5331541299819946, 0.823333740234375, 0.42814865708351135, -0.47179919481277466, 0.5234841108322144, 0.43140676617622375, 0.020650113001465797, 1.4390543699264526, -1.0053973197937012, -0.4049680233001709, 0.6107494235038757, 0.5529652833938599, -0.8656831383705139, -0.5488266348838806, -0.08799475431442261, 0.07911214977502823, 0.22539174556732178, 0.5215434432029724, 0.945149838924408, -0.6755995154380798, 0.4458022713661194, 0.9172443747520447, -0.6771805286407471, -0.08566911518573761, -0.12241347879171371, -1.6718271970748901, -0.5117202401161194, -0.5140770077705383, -1.158233642578125, 0.031181903555989265, -1.3059836626052856, -0.8206725120544434, 0.2612897455692291, -0.12195251882076263, -0.15303285419940948, -0.5369454026222229, 0.1547449678182602, -0.016086990013718605, -0.021941281855106354, 0.4050973653793335, -0.32906895875930786, 0.9146543145179749, 0.22392863035202026, 0.428841769695282, -0.3321283459663391, -0.12431009113788605, -0.12918387353420258, -0.1380426436662674, 0.17039906978607178, -0.6573277711868286, -0.24733972549438477, -0.33989763259887695, -0.5153413414955139, 0.3755108714103699, -0.2762473523616791, 0.057769909501075745, -0.3653661012649536, -0.8255541324615479, 0.330274760723114, 0.9494773149490356, 0.1497260332107544, -0.4707510769367218, -0.45191895961761475, -0.7214730381965637, 0.571686327457428, -0.14577488601207733, 0.8062387704849243, -0.5730956792831421, 0.5993897914886475, 0.30677178502082825, -0.25594332814216614, -0.3847557306289673, -0.9895374774932861, 1.5714656114578247, -0.7996134161949158, 0.312382310628891, -0.7047588229179382, -0.23919789493083954, 0.25044700503349304, -1.183994174003601, -0.044228456914424896, 0.10671024769544601, -0.691415548324585, -0.1910424530506134, -0.724006175994873, -0.5065000653266907, -0.179503932595253, 0.06873133033514023, 0.017279163002967834, 0.028249653056263924, 0.6807892322540283, -0.2164093405008316, -1.2362877130508423, -0.21852655708789825, 0.7049649953842163, -0.035800039768218994, 0.5924835801124573, 1.8125227689743042, 1.1175211668014526, 0.8657239079475403, 0.15479110181331635, 0.2879481315612793, -0.030485093593597412, -1.5273339748382568, 0.22586187720298767, -0.5173028111457825, -0.5217120051383972, -0.6922417879104614], [0.8137246370315552, 0.9896053075790405, -2.2359800338745117, 0.13452376425266266, 0.8368750810623169, 0.5065913200378418, 0.5864095687866211, -0.3089281916618347, -0.8695769906044006, -0.26082465052604675, -1.2968864440917969, 0.4599902331829071, -0.7443023920059204, 0.9620026350021362, 1.0248668193817139, 0.8186580538749695, 0.7723286747932434, 0.49467527866363525, 0.3754560649394989, 0.8526806831359863, 0.07737965881824493, -1.0306904315948486, 0.42870020866394043, -0.20836731791496277, 0.029937492683529854, 0.4161021113395691, -1.429965853691101, -0.7717549800872803, -0.8464693427085876, -0.7282903790473938, 0.47146546840667725, 0.057112935930490494, 0.487598717212677, -0.6116575598716736, -1.406044840812683, 0.4985578954219818, 1.6085224151611328, 1.207818865776062, 0.8269833326339722, 0.5718311071395874, 1.7023863792419434, -0.2340937852859497, -0.18051306903362274, -1.5404067039489746, -0.13731785118579865, -0.5175996422767639, 0.1505489945411682, -0.011034591123461723, -0.04557972401380539, -0.5543403625488281, 0.05430477112531662, -1.2229503393173218, 0.1764148324728012, 0.690349280834198, 0.6622684597969055, -1.409555196762085, 0.47397592663764954, 0.1351127177476883, -0.5253331065177917, -0.43023812770843506, 0.8213027715682983, -0.5618231892585754, 0.42629432678222656, 0.8334988951683044, 0.18694289028644562, -0.6708197593688965, 0.6763976216316223, 0.4422610402107239, -0.9326649904251099, 0.45914334058761597, 0.5210391283035278, 0.11983492225408554, -1.3766696453094482, 0.21370504796504974, -1.1902759075164795, 0.2852817475795746, 0.6804915070533752, 1.2653716802597046, 0.8955903053283691, 0.7717438340187073, 0.05922619253396988, 0.24365441501140594, -0.17573599517345428, -0.49858298897743225, -0.5543820261955261, 0.34922417998313904, 0.8530166745185852, -0.4854128658771515, -0.12658293545246124, 2.23264479637146, 0.32460346817970276, 0.18813228607177734, 1.309561014175415, -0.09357936680316925, -0.6952747702598572, -0.43481892347335815, 0.13600315153598785, -0.6051168441772461, -0.9348649382591248, -0.18115316331386566, -0.6065396666526794, -1.2884718179702759, 0.5228379964828491, 0.19711212813854218, 0.537697434425354, 0.9271350502967834, 0.12355818599462509, -0.6650018095970154, 0.17137669026851654, -0.030128631740808487, -0.1878662109375, 0.6718567609786987, -0.41486382484436035, -1.3793433904647827, 0.08828922361135483, 1.62177312374115, 1.5990017652511597, -0.6693337559700012, -0.3234311044216156, 0.6184731125831604, -0.2229696810245514, -0.22964559495449066, -1.082945704460144, -0.20730680227279663, 0.9869444370269775, 0.29079294204711914, -0.5846351981163025, 0.03358221799135208, -0.2716505825519562, 0.1128460168838501, 0.8945142030715942, 0.1923610419034958, -0.07779223471879959, 1.2866158485412598, -1.5274689197540283, 1.4713221788406372, -0.7349331974983215, -0.03224170207977295, -0.0571623332798481, 0.034696660935878754, 0.7437657713890076, 0.05796251446008682, -0.4599247872829437, -0.11597639322280884, 0.22293706238269806, -0.5726142525672913, 0.4054058790206909, -0.3508438169956207, -0.8658703565597534, 0.16108326613903046, -1.05538010597229, 0.10125921666622162, -0.017381206154823303, 0.5258252024650574, 0.5108797550201416, 0.4018409252166748, -0.013877029530704021, 1.0427944660186768, -0.015352130867540836, 0.24844346940517426, 0.4259333908557892, 0.2875891327857971, -0.2759583592414856, 0.40742307901382446, 1.1506353616714478, -0.5262194275856018, -0.12192553281784058, 1.469016194343567, 0.4665389358997345, 1.2389335632324219, -0.11878586560487747, -0.43781203031539917, -0.5101814866065979, 0.1357947140932083, 0.25031548738479614, 0.022219078615307808, 0.25106289982795715, -0.04563095420598984, -1.7561231851577759, -1.0940649509429932, 0.9450951218605042, -0.12224602699279785, 0.9614986777305603, -0.3540571331977844, 0.6319848895072937, -0.3244456946849823, 0.021466387435793877, -0.27413466572761536, -0.6920149326324463, -0.8855577111244202, -0.849790632724762, -0.7220414280891418, -0.6481215953826904, 0.8167668581008911, -0.6685362458229065, -1.192138671875, 0.3173476457595825, -1.2875734567642212, -0.6516637206077576, -0.6598110795021057, 0.33587026596069336, -0.5296489000320435, -0.26924753189086914, 0.15862517058849335, -0.24415259063243866, 0.9037770628929138, -1.295773983001709, 0.22041617333889008, -0.8897331953048706, 0.019243665039539337, 0.39412569999694824, 0.3108462691307068, -0.7719689607620239, 0.18501995503902435, 0.12906625866889954, -1.9427037239074707, 0.5889601707458496, 0.8497130870819092, -0.4775198698043823, 0.0878460481762886, -0.4571974277496338, 0.16560010612010956, 0.6393048763275146, -0.29237061738967896, 0.5595874190330505, -1.0274399518966675, -0.5512924194335938, -0.7584636211395264, -0.5289327502250671, -0.1350855678319931, -0.6574070453643799, -0.7080168724060059, 1.3271375894546509, 0.12121151387691498, -1.7557387351989746, 0.14485883712768555, 0.16352367401123047, 0.5434668064117432, -0.23816533386707306, 1.4186460971832275, 0.4428354501724243, 0.4649505913257599, -0.7065623998641968, -0.5843548774719238, -0.5044874548912048, 0.02247227542102337, 1.1282254457473755, -0.6658099293708801, 0.012332586571574211, 1.2934473752975464, 0.735822856426239, -0.2741624414920807, 0.3947788178920746, -0.3904536962509155, -0.1700620949268341, -1.7747907638549805, -0.27550140023231506, 0.39798471331596375, -0.1741790920495987, 1.5336774587631226, 1.0577187538146973, -0.815292477607727, -0.2971743941307068, -0.27521803975105286, -0.3114546537399292, -0.43053901195526123, -0.2696780860424042, -0.5457999110221863, 0.6372429728507996, -0.10329184681177139, 0.1254962831735611, 0.27788716554641724, -0.5518538951873779, 0.5489149689674377, -0.41995298862457275, -0.5202212929725647, -0.6735793352127075, 1.1297613382339478, -0.10386176407337189, 0.8809109330177307, -0.11796250194311142, -0.873430609703064, -0.3130991756916046, -0.1434866338968277, 0.7568768858909607, 0.2687739431858063, 0.0549577921628952, 0.4011317491531372, 0.9029804468154907, -0.24538899958133698, 0.4934011697769165, -0.028450867161154747, 0.05835413187742233, 0.3254871964454651, 0.5617090463638306, 0.3166462182998657, 0.8887358903884888, -0.7243874073028564, -0.7809969782829285, -0.012191628105938435, -0.17873051762580872, 1.4551087617874146, -0.2672581076622009, 1.0315195322036743, -0.34096580743789673, -0.5368760824203491, 0.08553540706634521, 0.3382169306278229, -1.3154348134994507, 0.12276273965835571, -0.37403780221939087, -1.2198865413665771, 0.3172294795513153, -0.30222761631011963, 0.19558461010456085, 0.3970177471637726, 0.044606875628232956, 0.4569585919380188, 0.6415627598762512, -0.2705463767051697, -0.6015031933784485, -0.7477546334266663, -0.32360151410102844, -0.8791637420654297, 0.4473050832748413, 1.4584029912948608, -1.5011316537857056, 0.06631232053041458, 0.14731495082378387, 0.057909220457077026, 0.013747703284025192, -0.6216515898704529, 1.078850269317627, -0.8669412732124329, -0.39191287755966187, -0.4273865222930908, 0.984590470790863, -0.3798529803752899, -0.6562007069587708, -0.5512790083885193, 0.6014593839645386, 0.7395365834236145, -0.8984411358833313, -0.13083508610725403, 0.5136778354644775, -0.3132239282131195, -0.1528746336698532, 0.3527810871601105, 0.7774834632873535, 0.6946783661842346, -0.48329830169677734, -1.274916172027588, -0.64759761095047, -0.1626334935426712, -0.2116330862045288, -0.14363643527030945, -0.3570023477077484, 0.8664256930351257, -0.24633274972438812, 0.25793910026550293, 0.6876784563064575, 0.39278852939605713, 0.7023056745529175, -0.9917891621589661, 0.4203706979751587, 0.689760148525238, 2.720978021621704, 0.7829969525337219, 0.6085957288742065, 0.32886144518852234, -0.005132149904966354, 0.3263512849807739, 0.5585649609565735, 0.9288860559463501, -0.1379057615995407, -0.41637057065963745, -0.3133302330970764, -0.6964857578277588, -0.22126702964305878, -0.18435436487197876, -0.12594442069530487, 0.14166472852230072, -0.8377034664154053, -0.258217990398407, 1.170552134513855, 0.6952697038650513, -0.22300684452056885, -0.17516981065273285, -0.3331391513347626, 0.3800131380558014, -1.1508902311325073, 0.005568706896156073, -0.6487768888473511, 0.28522002696990967, 0.6387196779251099, -0.8874040246009827, -0.36258140206336975, 0.5041075944900513, 0.10118506103754044, 0.3679940104484558, -0.5302236080169678, 0.16932342946529388, -0.8473289012908936, 0.8275079131126404, 0.5507820844650269, 0.08558689802885056, 0.4344552755355835, 0.9564032554626465, -0.7093457579612732, 0.1641336977481842, -0.21037565171718597, 1.410151720046997, -0.4675741195678711, 0.06644326448440552, 0.08445587754249573, -0.3934434950351715, -0.13126257061958313, -0.007955343462526798, -0.3208673894405365, -0.012497714720666409, -0.2522817552089691, 0.04249200224876404, 0.4483172595500946, -0.11279621720314026, 1.9184304475784302, -0.3271637260913849, -0.1292688399553299, 0.460908979177475, 0.6948012709617615, -1.3518263101577759, -0.41995829343795776, 0.04971202090382576, -0.10251986235380173, 0.08489765971899033, 0.03010123409330845, 0.042551085352897644, 0.13761931657791138, 0.23685631155967712, 0.2604997754096985, 0.6140137910842896, 0.3728186786174774, 0.3198925852775574, 0.06605565547943115, 0.7426075339317322, 1.4510228633880615, 0.6851291656494141, 0.9491177201271057, 0.10415089130401611, -1.2795947790145874, 0.10665544867515564, -0.8101786375045776, -0.015818774700164795, 0.44549012184143066, -0.2363462746143341, 1.671339750289917, -1.8561593294143677, 0.325298011302948, 0.7182266712188721, 0.23294629156589508, -0.02232733741402626, 0.8853764533996582, -0.6839277744293213, -0.04291395843029022, 0.17129766941070557, 0.024244172498583794, -0.36200544238090515, -0.15053828060626984, 0.596683144569397, -0.6733747720718384, 1.1259181499481201, -0.56288081407547, 0.8126033544540405, -0.5887388586997986, -0.012118826620280743, 0.281694233417511, -0.2921006679534912, -0.07613393664360046, 0.16548463702201843, 0.5892163515090942, 1.226678490638733, 0.14354673027992249, -1.3383570909500122, -0.13972468674182892, -0.6327734589576721, 0.26969006657600403, -0.3475967049598694, -0.4961538314819336, -0.6822504997253418, -0.5374711155891418, 0.2963707745075226, -0.03778230771422386, -0.5668098330497742, -0.17744135856628418, -0.35959818959236145, -1.3024344444274902, 0.7876205444335938, 0.6954932808876038, 0.4673033356666565, 0.5011724233627319, 0.3745594322681427, 0.1753966510295868, 0.26206010580062866, -1.1140453815460205, 0.2724626958370209, 0.05080127343535423, 0.1672901064157486, -0.3379795253276825, -0.669087290763855, -0.5711894631385803, 0.3012195825576782, 0.524222195148468, 0.23796527087688446, 0.6514618396759033, 1.1570595502853394, 1.2629188299179077, -0.5811872482299805, -0.3592551648616791, 0.3555982708930969, -0.6539111137390137, 0.3513474762439728, 0.28335216641426086, -0.13273857533931732, -0.011643040925264359, -0.7325618863105774, -1.7183388471603394, 0.7082284688949585, 0.41562098264694214, -0.4301537573337555, 0.6494318246841431, 0.6109434366226196, 1.1962673664093018, 0.6666204929351807, -0.6484706997871399, -0.07006696611642838, 0.10870147496461868, -0.09548301249742508, 0.011418134905397892, 0.8444387316703796, -0.021285057067871094, 0.09595110267400742, -0.24407438933849335, -0.41650110483169556, -0.49309733510017395, -0.1484876126050949, -0.5585938692092896, 0.5920692682266235, -0.15753158926963806, 0.18963193893432617, 0.7848588228225708, -0.16903960704803467, 0.5090997219085693, -0.17135757207870483, -0.1786235272884369, 0.296356737613678, 0.8535200357437134, 0.6741191148757935, 0.20021894574165344, 0.5396572351455688, -0.738491952419281, -0.5325448513031006, -0.3131846785545349, -0.3635126054286957, 1.289081335067749, 0.6072090268135071, 0.19129693508148193, -0.16606508195400238, -1.1780946254730225, 0.6829178929328918, -0.44346103072166443, 1.1875938177108765, 0.9407632946968079, -0.7215502262115479, -0.11989665031433105, -0.035806093364953995, -1.3508189916610718, -0.1442011445760727, -0.45972633361816406, 0.1470508724451065, -0.44286853075027466, -0.9955775737762451, -0.7906662225723267, 0.1724347621202469, 0.38677695393562317, -0.7794069051742554, 0.9620396494865417, 0.26710906624794006, -1.0456007719039917, 0.5008018612861633, 0.2960438132286072, -1.0686055421829224, 0.28500738739967346, -1.1894590854644775, 0.7311446070671082, 0.2708379328250885, 0.35796070098876953, -0.322719007730484, 0.6904124021530151, -1.182227611541748, -1.197424292564392, -0.8302210569381714, -0.17913833260536194, 0.44199246168136597, 0.8015245199203491, -0.8548973202705383, 1.3091185092926025, -0.07102905958890915, -0.4091174006462097, -0.8496502637863159, -0.6308538913726807, 0.05097610130906105, 0.20964941382408142, 0.7986447811126709, -0.04620113596320152, -0.10647300630807877, 1.1654146909713745, 0.7179687023162842, 0.9322535991668701, 0.23232969641685486, 0.9071639776229858, -1.0724151134490967, -0.7326091527938843, 0.23847819864749908, 0.23527783155441284, -0.7315912842750549, -1.4114412069320679, -0.24513313174247742, -0.20680418610572815, -1.015162467956543, -0.273679256439209, 0.49534109234809875, -0.5330296754837036, 0.2876792550086975, -0.20746980607509613, 0.04278064891695976, -1.0650521516799927, 0.7543138265609741, 0.4631173014640808, -0.9090564250946045, -0.3834972679615021, 0.10355523973703384, -0.04513369873166084, -1.0032480955123901, -0.27138233184814453, -0.2129640281200409, -0.5287984013557434, -0.07021047919988632, 0.7424847483634949, 0.19170553982257843, 0.6099680066108704, -0.3379414677619934, 0.6379198431968689, 0.9377599358558655, -0.22380633652210236, 0.08970905840396881, 0.49031394720077515, -0.8374401926994324, -0.29909834265708923, -0.6792447566986084, -1.1810581684112549, 0.14043311774730682, 1.3121224641799927, 0.40984565019607544, -0.15396784245967865, 0.42229771614074707, 0.05575639754533768, 0.6669235825538635, 0.06724489480257034, 0.5047977566719055, -1.0641697645187378, -0.5568659901618958, 0.6566649079322815, 0.6765722036361694, -0.35633864998817444, -0.591496467590332, 0.49375247955322266, 0.641122579574585, -0.9011159539222717, 0.4847959578037262, 0.6460481882095337, -0.24688154458999634, 0.259452760219574, 0.8114074468612671, 0.038273416459560394, -0.2864307463169098, -0.4451467990875244, -1.8380439281463623, 0.03796829655766487, -0.49037498235702515, -0.37424081563949585, 0.3825515806674957, -1.5806621313095093, -0.7945253252983093, -0.2862074673175812, -0.4925857484340668, -0.6251662969589233, -0.21113252639770508, 0.2657462954521179, 0.42999327182769775, 0.19084517657756805, 0.40962904691696167, 0.1471489816904068, 1.1094233989715576, -0.6576303839683533, 0.05574210360646248, -0.5128922462463379, -0.25972363352775574, 0.3645494282245636, 0.1689726710319519, -0.13004417717456818, -0.3210529088973999, 0.4002385139465332, -0.7576339840888977, -1.104131817817688, -0.44774216413497925, 0.2435918152332306, -0.17150317132472992, -0.14596262574195862, -0.6497324705123901, 0.3534669876098633, 0.8593141436576843, 0.5747014284133911, -0.09161826968193054, -0.9253414869308472, -0.8691912889480591, 0.45487678050994873, -0.5235006809234619, 0.5710621476173401, -0.16660422086715698, 0.6815022230148315, 0.25394681096076965, -0.49901989102363586, -0.3936328887939453, -0.3817960321903229, 0.9430760145187378, 0.1929522007703781, -0.09833615273237228, -0.5279503464698792, 0.6884541511535645, -0.11525703966617584, -1.200461745262146, -0.20591512322425842, -0.021247997879981995, -0.5154464840888977, 0.45259982347488403, -1.1454765796661377, -0.6114953756332397, -0.18432067334651947, -0.3409598767757416, -0.09369030594825745, 0.1250176876783371, 0.2350056916475296, -0.20012688636779785, -0.9014785289764404, 0.2757750153541565, 0.40578708052635193, -0.2725885808467865, 0.4088374376296997, 1.2282814979553223, 1.3027440309524536, 0.5107468366622925, -0.21494878828525543, 0.03234144300222397, 0.7598645091056824, -1.3945919275283813, 0.2835070490837097, -0.3550436496734619, 0.13439826667308807, -0.3565685749053955], [-0.004230991005897522, 0.9285115003585815, -2.1838035583496094, -1.0916192531585693, 0.564371645450592, -0.5757216811180115, 0.6949117183685303, 0.5341594219207764, 0.4691094756126404, -0.48415517807006836, -0.7997563481330872, 0.12772224843502045, -0.05001646280288696, -0.5976077914237976, -0.12078525125980377, 0.44817742705345154, 0.3232581913471222, -0.19429534673690796, -0.2535058259963989, 0.48559844493865967, -1.254392385482788, -1.2174522876739502, -0.006821736693382263, 0.390170156955719, -0.32615506649017334, -0.0897793173789978, -1.1833906173706055, -0.3042377531528473, -1.698796272277832, -0.3812670409679413, 1.5901899337768555, -0.3340299725532532, 0.006414666771888733, -0.03887969255447388, -1.8195085525512695, -0.1347019225358963, 1.549372673034668, 0.33186158537864685, -0.18030419945716858, 1.0788003206253052, 2.5195655822753906, 0.8714938759803772, -0.6761175394058228, -1.4454083442687988, 0.5764681100845337, -0.22816890478134155, 0.3443949520587921, -0.503730833530426, -1.1957039833068848, -0.4411506950855255, 0.574511706829071, -0.8628859519958496, 0.710329532623291, 0.2668994665145874, 1.062529444694519, -0.9441964626312256, 0.539340615272522, 0.10559113323688507, 0.8643431663513184, 0.16769960522651672, 0.9832513332366943, -0.9854114055633545, 0.18000628054141998, 0.25124141573905945, 0.33064284920692444, -0.13979922235012054, -0.05152106285095215, 0.9546322822570801, -0.36803582310676575, 0.48223230242729187, 0.7555333375930786, 0.5311246514320374, -0.4612770080566406, -0.11420105397701263, -0.9510328769683838, 1.362985610961914, 0.20001032948493958, 0.38578876852989197, 0.027311354875564575, 1.0001057386398315, -1.1620274782180786, 0.5284692049026489, 0.6191904544830322, -0.9018679857254028, -0.7223052978515625, 0.1329364776611328, 0.3648930788040161, 0.1891942024230957, -0.5951897501945496, 1.3564157485961914, -0.36254099011421204, -0.003311634063720703, 0.6368633508682251, -0.5104697346687317, 0.24327045679092407, -0.1367778778076172, -1.1922048330307007, -1.267499566078186, -0.7377802133560181, -1.0300283432006836, -0.8808784484863281, -0.8600419759750366, 1.143674612045288, 0.2141987681388855, 0.32883280515670776, 1.3954200744628906, 0.4481133818626404, -0.9104785323143005, -0.15975381433963776, -0.8951776623725891, 0.16710029542446136, 0.19244790077209473, -0.5191094279289246, -0.9975279569625854, 0.3003232479095459, 1.2776025533676147, 1.4012079238891602, 0.4521225690841675, 0.4066355526447296, 0.5901014804840088, -0.4266495704650879, -0.1772969365119934, -0.7326223850250244, 0.7740130424499512, 1.1896295547485352, 0.4461086392402649, 0.02332921326160431, 0.09116052836179733, 0.027160227298736572, -0.009709306061267853, 0.019131284207105637, 0.08387765288352966, 0.3240532875061035, 1.0625207424163818, -0.28138870000839233, 0.3169693946838379, 0.7469907999038696, -1.3372626304626465, 0.278384268283844, -0.398598849773407, 0.2021465301513672, -0.983170211315155, -0.43915724754333496, -0.7921798229217529, 0.34522414207458496, -0.29398924112319946, 0.5391583442687988, 0.016181260347366333, -0.923829197883606, 0.3509570062160492, -1.5262176990509033, -0.2773212790489197, 0.17015190422534943, 0.811765193939209, 0.4326612949371338, 0.18866263329982758, 0.028485000133514404, 0.2927599549293518, 0.4592941403388977, 0.7445798516273499, 0.5038085579872131, 0.19721871614456177, -0.818318247795105, 1.4699125289916992, 0.5058566331863403, -0.715752124786377, 1.151057243347168, 0.24363809823989868, 0.0167082529515028, 1.0844571590423584, 0.28457769751548767, -0.6921210885047913, 0.3545616567134857, 0.6755478382110596, 0.4961448311805725, -0.3506101667881012, 0.6028789281845093, -0.1478639841079712, -1.0800821781158447, -1.1023375988006592, 1.0314973592758179, -0.3854953348636627, 0.5678527355194092, 0.26433420181274414, 0.9499614238739014, -0.06598314642906189, -0.012809514999389648, 0.10892625898122787, -1.0236777067184448, -1.3498520851135254, -0.633445680141449, 0.1347137987613678, -1.2809553146362305, -0.30679166316986084, -0.3854563236236572, -0.49523046612739563, 0.8118914365768433, -0.5069558620452881, -0.7574078440666199, 0.19799834489822388, 0.6785792112350464, -0.2816859185695648, -1.4763622283935547, 0.11042845249176025, -0.6767549514770508, 0.999690055847168, -0.4856855273246765, 0.591327428817749, -0.6799136400222778, 0.3765929937362671, 1.0400301218032837, -0.036495089530944824, -0.7645148038864136, 0.2434430718421936, -0.9952973127365112, -1.1257879734039307, 0.40386590361595154, 0.08532029390335083, -0.15198081731796265, -0.26709693670272827, 0.06692525744438171, 0.6611214876174927, 0.794579803943634, 0.08515018224716187, 0.4308091104030609, 0.25085389614105225, -0.08723163604736328, -0.03784322738647461, -0.33891192078590393, -0.6483767032623291, -0.7077200412750244, -0.8881236910820007, 0.5013984441757202, 1.0786583423614502, -1.4052915573120117, 0.5388988852500916, -0.5307108759880066, 0.2832932770252228, 0.21444827318191528, 0.3428291082382202, 0.6990317106246948, 1.1208289861679077, -0.6132491230964661, 0.006481394171714783, -0.6024415493011475, 0.07074150443077087, 0.8000667095184326, -0.791802167892456, 0.3314318060874939, 1.4046189785003662, 0.6707722544670105, -0.1385551542043686, 0.2921942472457886, -0.9549686908721924, 0.303349107503891, -0.3085557818412781, 0.12973296642303467, 0.7507538795471191, -1.1624131202697754, 2.2313480377197266, 1.2501344680786133, -0.4641945958137512, 0.2774651050567627, 0.09619563817977905, -1.1639686822891235, -1.086834192276001, 0.34928643703460693, -0.27644696831703186, 0.22629916667938232, 0.017535239458084106, -0.2332303822040558, 0.09596803784370422, 0.28679269552230835, 0.7067875862121582, -0.21350665390491486, 0.32631027698516846, -0.15516217052936554, -0.06797032058238983, -0.262462317943573, 0.49987363815307617, -0.1200232058763504, -1.4012324810028076, -0.5131453275680542, 0.01813599094748497, 0.48933717608451843, 0.4858139753341675, -0.38017725944519043, 0.17315995693206787, 0.1317736953496933, -0.7161480188369751, 0.254709929227829, 0.475603312253952, -0.2894468307495117, 0.14030392467975616, 0.7500652074813843, 0.03837791830301285, 0.901456356048584, -1.0132193565368652, -0.9220168590545654, 0.22332549095153809, 0.03669077157974243, 0.6851454973220825, 0.09511002898216248, 1.3547160625457764, -0.4592238664627075, 0.5725115537643433, -0.25684431195259094, -0.5040419101715088, 0.5081889033317566, -0.18686282634735107, -0.33821457624435425, -0.9220972061157227, -0.5076032280921936, 0.13945943117141724, 0.05024275183677673, 0.7592698335647583, -0.5440835356712341, 1.007622241973877, 0.622342586517334, 0.5870181322097778, -0.8710496425628662, -0.20926706492900848, -0.3900732398033142, -0.961902379989624, 0.8081836700439453, 0.8550859689712524, -1.5552759170532227, -0.08718350529670715, 0.03665304183959961, 0.03836192190647125, 0.664470911026001, 0.14857852458953857, 0.7292468547821045, -1.5564274787902832, -0.24910122156143188, -0.11439928412437439, 0.5455098152160645, 0.189253568649292, -0.6681621670722961, -1.0650819540023804, 1.075714111328125, 0.017377734184265137, -0.2947171926498413, -0.4279148578643799, 1.031785011291504, -0.48852717876434326, -1.0280752182006836, 0.09568670392036438, 0.26274609565734863, 0.35996708273887634, -0.4545094966888428, -0.35582655668258667, -0.1281176507472992, -0.7150779962539673, -0.49188506603240967, -0.276370644569397, -0.23605680465698242, 0.7369848489761353, 0.45098933577537537, -0.16245293617248535, 0.6599979996681213, 0.03226163983345032, -1.227073311805725, -1.6926683187484741, 1.0160901546478271, 0.8938378095626831, 1.3753347396850586, 0.20833086967468262, 0.18659377098083496, 0.054905980825424194, -0.7536382675170898, -0.4274730086326599, -0.14395175874233246, 0.7070623636245728, -0.3967415690422058, -0.4034855365753174, -0.30428311228752136, -0.6494070887565613, -0.3493741452693939, 0.39346790313720703, -0.06309749186038971, 0.3038119971752167, 0.1220623105764389, -0.05326199531555176, 1.1279363632202148, 0.3604774475097656, -0.43474870920181274, -0.1456015408039093, -0.17139536142349243, 0.4691387414932251, -0.0664617121219635, 0.16322563588619232, 0.05763326585292816, -0.21815665066242218, 0.4819965064525604, -0.6992707252502441, -0.7799595594406128, -0.3116168975830078, 0.12131202220916748, 1.2944965362548828, -1.1246379613876343, -0.27043765783309937, -0.5331127047538757, 1.145453929901123, 0.1849178671836853, 1.0039787292480469, 0.38458383083343506, 0.30205294489860535, 0.3663094937801361, 0.3655339479446411, -0.048694998025894165, 1.226156234741211, -0.5197698473930359, 0.14754211902618408, 0.32846564054489136, 0.7859132289886475, 0.7068402171134949, 0.25722697377204895, 0.0534793958067894, -0.027842052280902863, -0.4494142532348633, -0.155656635761261, -0.30248650908470154, -0.03453725576400757, 1.2691490650177002, 0.2805791199207306, -0.14226973056793213, -0.4536828398704529, -0.050351209938526154, -0.375455379486084, -0.13086631894111633, 0.5002573132514954, -0.2991490960121155, -0.3139999508857727, 0.2662022113800049, 0.45967748761177063, 0.41077446937561035, 0.7616927623748779, 0.1284344494342804, 0.2928491234779358, -0.15607351064682007, -0.34143543243408203, 0.7353696227073669, 0.5995697379112244, 0.884514331817627, 0.2575150430202484, 1.325326919555664, 0.20859861373901367, -0.6897033452987671, 1.2198548316955566, -1.1149640083312988, 0.5616753101348877, 0.921903133392334, -0.07971662282943726, 0.7940931916236877, -2.271212577819824, 0.36768922209739685, 0.9814310073852539, -0.3285983204841614, 0.7675155401229858, 0.3015247881412506, 0.1447983682155609, -0.958460807800293, -0.02114320546388626, 0.04976000636816025, -0.013540752232074738, 0.4641423225402832, 0.32333505153656006, 0.6335589289665222, 0.5360530614852905, -0.6103640198707581, 0.5226314067840576, -0.6363526582717896, -0.12092837691307068, 0.03011620044708252, -0.5986518859863281, 0.9656561017036438, 0.11643632501363754, 0.26859933137893677, 1.4796932935714722, -0.008880987763404846, -0.9694284200668335, 0.13148953020572662, -1.0461616516113281, 0.512729287147522, -0.416970819234848, 0.36904144287109375, -0.656846284866333, -0.26320505142211914, 0.022957004606723785, 0.5944953560829163, -0.2935720682144165, -0.43654459714889526, -0.2782721519470215, -0.47318994998931885, -0.1014980673789978, 0.5622285604476929, 1.2081670761108398, 0.46480390429496765, 0.22917962074279785, 1.0457446575164795, 0.19054114818572998, -0.7919888496398926, -0.32046788930892944, 0.42961859703063965, 0.36871737241744995, -0.5588293671607971, -0.47949811816215515, -0.6700600981712341, 0.32053375244140625, 1.1184951066970825, -0.17006605863571167, 0.07247702777385712, 1.8645076751708984, 1.5693007707595825, -0.4560752809047699, -0.8435759544372559, 0.8273778557777405, 0.13979800045490265, 1.0487421751022339, 0.021115243434906006, -0.8780221939086914, -0.35578393936157227, -0.7923737168312073, -1.983349323272705, 0.4097125232219696, -0.4123579263687134, -0.015415385365486145, 0.13653099536895752, 0.9422512054443359, -0.22822576761245728, 0.21289992332458496, -0.6619192957878113, 0.493816077709198, -0.34975504875183105, -0.15148574113845825, -0.7520034313201904, 0.2185467630624771, 0.9899468421936035, 0.1396923065185547, -0.8779482841491699, 0.1270456165075302, -0.28096118569374084, -0.24979713559150696, 0.030129343271255493, -0.13395220041275024, 0.3049805164337158, 0.24986477196216583, -0.336764931678772, 0.1564972996711731, 0.5885231494903564, -0.8308848142623901, -0.24860918521881104, -0.1926327794790268, 0.8194578289985657, -0.015615671873092651, -0.9866636991500854, 0.4113231897354126, -0.586034893989563, -0.28283169865608215, -0.15489435195922852, -0.714061439037323, 0.8329233527183533, 0.6644579172134399, -0.671812891960144, 0.6524410843849182, -0.4540640115737915, -0.6966471672058105, -0.5558773875236511, -0.3183274567127228, 0.7038323879241943, -1.3410977125167847, -0.8915312886238098, -0.26397156715393066, -0.27425625920295715, 0.3033803701400757, 0.1376705914735794, -0.20255976915359497, -1.102174997329712, -1.2350541353225708, -1.2117221355438232, -0.009370088577270508, 1.3897595405578613, 0.19579675793647766, 0.2795073091983795, -0.4530907869338989, -2.8707427978515625, 0.3552902340888977, -0.22267603874206543, -1.689237117767334, 0.30997776985168457, -0.7010632157325745, 0.6212165355682373, -0.29056718945503235, -0.3512895107269287, -0.12004715204238892, 0.7413438558578491, -0.9663262367248535, -0.4077264666557312, 0.07210828363895416, -0.7782918810844421, 0.7421382069587708, 0.49736177921295166, -0.47588562965393066, 0.8456116914749146, -0.06935085356235504, 0.18860113620758057, -1.1129283905029297, 0.67316073179245, -1.2299426794052124, 0.03558175265789032, -0.09484865516424179, 0.3055691719055176, 0.5851374864578247, 0.8897121548652649, 0.7165384292602539, 0.4534885287284851, 0.6054547429084778, 0.4548247158527374, -1.171157956123352, -0.8138558864593506, -0.22037893533706665, 0.264252245426178, -0.9626690149307251, -0.5547938346862793, -0.21278420090675354, -0.6743545532226562, -1.1882529258728027, -0.06901252269744873, 0.5069247484207153, -0.87907475233078, 0.1486152708530426, -0.614250659942627, 1.0069830417633057, -0.23431533575057983, 0.8520827889442444, -0.278873473405838, -0.8912726044654846, 0.276144415140152, 0.2216949164867401, 0.3573817312717438, -0.3755202889442444, -0.3082766532897949, 0.1861065924167633, 0.27095359563827515, -0.29753798246383667, 0.28872424364089966, 0.6388707160949707, -0.638400137424469, 0.5632614493370056, 2.0056800842285156, 1.023103952407837, -0.0069170743227005005, 0.0476684495806694, -0.38742002844810486, 0.12471228837966919, 0.3688984811306, 0.02550628036260605, -0.019137054681777954, -0.2811637818813324, 1.3832392692565918, 0.12481603026390076, 0.10839737951755524, -0.7077410817146301, 0.5848367214202881, -0.4096977114677429, -0.14530235528945923, 0.27230018377304077, -0.7991434931755066, -1.1621861457824707, 0.6953821182250977, 1.1413469314575195, -0.3987974226474762, 0.739360511302948, 1.0963910818099976, -0.2672421634197235, 0.6669343709945679, 0.37456271052360535, 0.7831717729568481, -0.1328555941581726, 0.23173993825912476, 0.6821675300598145, -0.2508079707622528, -0.07713395357131958, -0.6124720573425293, -1.710404872894287, 0.5283549427986145, -1.1935213804244995, -0.9705374240875244, 1.0238020420074463, -0.5778101682662964, -1.2517551183700562, 0.2555805742740631, -0.21171605587005615, 0.04636663198471069, 0.05577808618545532, -0.48850977420806885, -0.28527987003326416, -0.5636694431304932, 0.7669568061828613, 0.10643534362316132, 2.0153369903564453, -0.4376581311225891, -0.3548768162727356, -0.5389742851257324, -0.3158300518989563, 0.13786014914512634, 0.03459632396697998, 0.03764235973358154, -0.8843235969543457, 0.2143985629081726, -0.45957863330841064, -0.8868709802627563, -0.026266857981681824, -0.3361183702945709, 0.25917962193489075, -0.11656153202056885, -0.7144469022750854, 0.2773306369781494, 0.47588732838630676, 0.18905580043792725, 0.3511875867843628, -0.3856797516345978, -0.8213606476783752, 0.2525666356086731, -0.22482246160507202, 0.5082770586013794, 0.19227924942970276, 0.8229951858520508, 0.47202068567276, -0.14676925539970398, -0.08112752437591553, -0.7919827699661255, 0.12112888693809509, -0.2894308865070343, -0.37715238332748413, -0.9267236590385437, -0.09326881170272827, 0.5572649240493774, -0.7752947807312012, 0.48082464933395386, 0.09090632200241089, 0.5415843725204468, 0.3657120168209076, -0.5146626234054565, -0.674979567527771, -0.8438724875450134, -0.5852110981941223, 0.6516354084014893, -0.5231893062591553, 0.20709770917892456, -0.7299900054931641, -0.5941237807273865, 0.5794469714164734, 1.1718615293502808, -0.15431320667266846, 0.45507657527923584, 0.7407413125038147, 1.7208278179168701, 0.2844181954860687, -0.4293793737888336, -0.5575317740440369, 0.5610668659210205, -0.5557835698127747, 0.2964949607849121, -0.5781614780426025, -0.004983842372894287, -0.21800822019577026], [1.0654515027999878, -0.05316123366355896, -1.692701816558838, -0.5222979187965393, 0.6590361595153809, -0.18545138835906982, 1.0233089923858643, -0.44930627942085266, -0.7856237888336182, -0.3602331280708313, -1.1351014375686646, 0.3092917203903198, 0.4835274815559387, 0.06581288576126099, 0.34079620242118835, 0.0023156865499913692, 0.7065603137016296, -0.050034184008836746, -0.4305172264575958, 0.5304619073867798, -0.13483063876628876, -1.547978401184082, -0.6355488896369934, -0.2414339780807495, -0.6018128395080566, 0.9480124711990356, -0.43370237946510315, 0.13605551421642303, -1.1319212913513184, 0.21078887581825256, 1.4079641103744507, -0.5766342878341675, 0.5557293891906738, 0.14685691893100739, -1.8629390001296997, -0.022368714213371277, 1.3251503705978394, 0.9483010172843933, 0.19110193848609924, 0.2590015232563019, 1.20639967918396, 1.2630997896194458, 0.5653180480003357, -1.1212109327316284, 0.3938387334346771, -0.5063348412513733, 0.5178555846214294, 0.09134172648191452, 0.27413409948349, 0.10771777480840683, 0.37185609340667725, -0.8220908641815186, -0.5691210627555847, 0.9786545038223267, 0.3942664861679077, -0.4779355525970459, 0.3590373694896698, -0.29904431104660034, -0.2598302662372589, -0.7977677583694458, 1.265583872795105, -0.4327944815158844, -0.22865360975265503, 0.34950143098831177, 0.623436689376831, -0.5948234796524048, 0.1795528382062912, -0.08437157422304153, -0.1799592524766922, -0.5148853063583374, 0.8819769024848938, 0.025328373536467552, -1.1473716497421265, 0.528837263584137, -0.7093262076377869, 0.8359261751174927, 1.313879370689392, 0.6360041499137878, 0.47126248478889465, 0.1709415763616562, -1.5558346509933472, 0.08779003471136093, 0.6781704425811768, 0.18978193402290344, -0.3149650990962982, 0.6197013258934021, 1.0798112154006958, -0.2086075395345688, -0.24142901599407196, 1.3345531225204468, -0.25905242562294006, 0.29342949390411377, 1.0345102548599243, -0.40711042284965515, -0.3595532476902008, -0.3242450952529907, -0.6473246216773987, -0.7288461923599243, -0.562088668346405, -0.35671675205230713, -0.9282984733581543, -0.9303802847862244, 0.3402954041957855, 0.8645801544189453, 0.8621317148208618, 1.0971978902816772, 0.7341597676277161, -1.38221275806427, 0.2028547078371048, -0.22474656999111176, 0.2741249203681946, 0.38652998208999634, -0.37550488114356995, -1.2143338918685913, -0.19550922513008118, 0.6332298517227173, 2.0543618202209473, -0.7157896757125854, 0.605461061000824, 0.9460884928703308, -0.7671979665756226, -0.10090192407369614, -0.8688743114471436, 0.44749125838279724, 1.0890415906906128, -0.06677452474832535, -0.2684193253517151, -0.33679723739624023, -0.0859856829047203, 0.731060802936554, 1.0447936058044434, 0.4062569737434387, -0.47007033228874207, 1.503176212310791, -0.14826785027980804, 1.0971848964691162, -0.09006141126155853, -1.2850725650787354, 0.21892622113227844, -0.09108980000019073, 0.06881067156791687, -0.8451661467552185, 0.039976511150598526, -0.3599553406238556, -0.4921484589576721, 0.21256770193576813, 0.14903971552848816, -0.2479245364665985, -0.72829270362854, -0.5052763819694519, -0.6810690760612488, -0.4752119481563568, -0.30512961745262146, 0.4715002775192261, 0.8337076306343079, -0.04847339168190956, -0.8067244291305542, 0.1954573690891266, -0.2964157164096832, -0.24758704006671906, -0.37520506978034973, 0.2754325866699219, -0.5988922715187073, 0.7029450535774231, 0.2299727201461792, -0.9509835839271545, 0.39683857560157776, 0.7885806560516357, -0.08704198151826859, 0.05859393998980522, -0.5289239883422852, -0.03554340824484825, -0.4634130001068115, -0.7030600309371948, 0.6713805198669434, 0.16912300884723663, 1.2334274053573608, 0.7593734264373779, -1.7421027421951294, -0.811937153339386, 1.0451923608779907, -0.15533365309238434, 0.30284473299980164, -0.4136468172073364, 1.2553982734680176, -0.002300238236784935, 0.5229706168174744, 0.6701695919036865, -0.773641049861908, -0.38239380717277527, -0.5060519576072693, -0.3623967170715332, -0.3959369659423828, 0.5825616121292114, -0.6424441337585449, -0.7816122174263, 0.4414246380329132, -1.0332025289535522, -0.3323795199394226, -0.3905477523803711, 0.3923931121826172, -0.38362881541252136, -1.1608211994171143, -0.18091051280498505, -0.7481337785720825, 0.7664549350738525, -0.7271955013275146, -0.13383139669895172, -1.1146924495697021, -0.0499410405755043, 1.0286142826080322, 0.0756555125117302, -1.1593658924102783, 0.22109977900981903, -0.5732857584953308, -1.2332454919815063, 0.4562366306781769, 0.4717459976673126, -0.02001018635928631, 0.5711630582809448, -0.9120254516601562, -0.27119481563568115, 0.5466480851173401, -0.6869101524353027, 0.3447107672691345, 0.06696344166994095, -0.7256426811218262, -1.0803173780441284, 0.20735974609851837, -0.5681390762329102, -0.5987593531608582, -1.6772198677062988, 1.0278568267822266, 0.31587889790534973, -1.1540926694869995, 0.33472931385040283, -0.03240128234028816, 0.8747150301933289, -0.6429719924926758, 0.4870522916316986, 0.6947534680366516, 0.34938451647758484, -0.0031037344597280025, -0.46652016043663025, -0.7935895919799805, 0.6747141480445862, 1.9724652767181396, -0.5705071091651917, 0.026448749005794525, 1.167054295539856, 1.3207098245620728, -0.13474206626415253, -0.21365462243556976, 0.12759657204151154, 0.44810745120048523, -1.0829111337661743, -0.3559753894805908, -0.0018999408930540085, -1.0203596353530884, 1.3180464506149292, 0.16079223155975342, -0.7063411474227905, -0.3166660964488983, 0.22323188185691833, -0.6706525087356567, -0.5987537503242493, -0.5367007851600647, -0.14023509621620178, 0.5310110449790955, -0.16045667231082916, -0.3092799186706543, 0.36139386892318726, -0.030035337433218956, 0.5782581567764282, -0.5214436054229736, 0.11760196089744568, 0.18339094519615173, 0.47279250621795654, 0.4500828683376312, 0.8475607633590698, -0.1528659462928772, -0.8208222985267639, 0.4436384439468384, 0.5077879428863525, 0.4944169223308563, 0.058387868106365204, -0.17433440685272217, 0.6557905077934265, 0.9411153197288513, 1.0106065273284912, -0.21083605289459229, 0.7328357100486755, 0.9759865403175354, 0.11968895047903061, 0.6048822999000549, -0.07161980122327805, 0.21619802713394165, -0.00992096122354269, -0.7286497354507446, -0.13697253167629242, 0.3652518689632416, 0.9492322206497192, -0.029762830585241318, 0.6716195344924927, 0.09715194255113602, 0.03541253134608269, -0.5110481381416321, -0.107762910425663, 0.2311238944530487, -0.6303896307945251, -0.0629638060927391, -0.8140907883644104, -0.7308356761932373, -0.28996798396110535, 0.02891230210661888, 0.8212037682533264, 0.29850777983665466, 0.39641377329826355, 0.07867972552776337, 0.48944613337516785, -0.3526837229728699, 0.017349466681480408, 0.6672043800354004, -0.7797538042068481, 0.24264013767242432, 0.7137075662612915, -1.2799526453018188, 0.11867986619472504, -0.16002336144447327, -0.22363901138305664, 0.30192437767982483, -0.3563225269317627, 1.0284284353256226, -0.6442872881889343, -0.531441867351532, -0.093538299202919, 0.4995358884334564, 0.12436744570732117, -0.3146020770072937, -0.7664536833763123, 0.5560128688812256, 0.8807544112205505, 0.15141965448856354, 0.36706358194351196, 0.9855841398239136, -0.2431384027004242, -0.9871504306793213, -0.02264859899878502, 1.177901268005371, -0.2727532982826233, -0.34111109375953674, -0.694588303565979, 0.11650655418634415, -0.6462162733078003, -1.2310166358947754, 0.25771021842956543, -0.39453595876693726, 0.4318307638168335, 0.21253058314323425, -0.28054818511009216, 0.42170989513397217, -0.3131199777126312, 0.2703718841075897, -1.3663469552993774, 0.5021513104438782, 0.8655262589454651, 0.9211817383766174, 0.6684101819992065, 0.32488515973091125, 0.16279107332229614, -0.6715410351753235, -0.4922448694705963, 0.10697823017835617, 0.9353858232498169, -0.4827144742012024, -0.46516162157058716, -0.4405205249786377, -0.7419450879096985, -0.531631588935852, 0.7090242505073547, -0.133122980594635, -0.17027276754379272, -0.7462780475616455, -0.005905495025217533, 1.1024227142333984, 0.5192102193832397, -0.5220136642456055, -0.1571764051914215, -0.45798513293266296, 0.8579549193382263, -0.6064420342445374, -0.41710638999938965, -0.27793899178504944, -0.1387200951576233, 0.7991303205490112, -1.0967286825180054, 0.27692753076553345, 0.3978073000907898, 0.538332462310791, 0.2621210515499115, -1.4061973094940186, 0.13296476006507874, -0.8339833617210388, 0.8049896359443665, 0.3132210075855255, 0.9420464038848877, 0.379755437374115, 0.380668044090271, 0.7575028538703918, 0.07682020962238312, -0.18229247629642487, 1.6752694845199585, -0.49444764852523804, 0.10031650960445404, 0.35058802366256714, -0.3473023474216461, 0.08670639246702194, -0.29780253767967224, 0.14232592284679413, 0.37920525670051575, -0.20844051241874695, 0.44281190633773804, 0.2486574500799179, -0.4397369921207428, 1.3957511186599731, 0.43593600392341614, -0.24308674037456512, 0.04904470965266228, 0.0676484927535057, -0.5531952977180481, -0.19436872005462646, -0.1772133708000183, -0.14551544189453125, -0.03549334406852722, 0.09930688887834549, 0.32588115334510803, 0.5023873448371887, 0.22433598339557648, -0.6524298787117004, 0.24805918335914612, 0.5449288487434387, 0.2871241271495819, 0.7126867771148682, 0.3719552755355835, 0.8516865372657776, 0.043357137590646744, 1.046882152557373, 0.4022984206676483, -0.6691482663154602, 0.5669651031494141, -0.2647044360637665, 0.8308563828468323, 0.4564128518104553, 0.22345057129859924, 1.3619836568832397, -1.889250636100769, 0.21666747331619263, 1.2652236223220825, 0.7421978116035461, 0.6409494876861572, 0.9319323301315308, -0.3248900771141052, -0.43784835934638977, 0.4269873797893524, 1.1017361879348755, 0.25145813822746277, 0.7499994039535522, -0.13712415099143982, 0.04061390459537506, 1.0808894634246826, -1.3397448062896729, 0.5010531544685364, -1.0787385702133179, -0.46189555525779724, -0.3871665894985199, -0.8453351259231567, -0.005006399005651474, 0.526692271232605, 0.8156701326370239, 1.5478651523590088, -0.06252583116292953, -1.4113956689834595, 0.10131771117448807, -0.7113556265830994, 0.6710867285728455, -0.8880655169487, 0.14781439304351807, -1.1851649284362793, -0.20543497800827026, 0.6334134936332703, 0.22652678191661835, -0.13654446601867676, -0.19531592726707458, 0.03846059739589691, -0.593850314617157, 0.5129338502883911, 0.7447702884674072, 0.16814269125461578, -0.6096215844154358, 0.2957642674446106, 0.2214413285255432, 0.4663774371147156, -0.3723253011703491, 0.45110002160072327, -0.3989771008491516, -0.1839178055524826, -0.4014524221420288, -0.6835636496543884, -1.2121168375015259, 0.25028327107429504, 1.4061444997787476, -0.16874322295188904, -0.3973070979118347, 1.5887621641159058, 1.7850008010864258, -0.5238981246948242, -0.5661455392837524, 0.3618154227733612, 0.10669993609189987, 0.5688549280166626, 0.052023157477378845, -1.3746592998504639, -0.41483479738235474, -0.5956960916519165, -0.5255479216575623, 0.24128322303295135, 0.008599255234003067, -0.021835386753082275, -0.05744393169879913, 0.4165785312652588, 0.2827860116958618, 0.4044369161128998, -0.6728261709213257, 0.7026134729385376, -0.2477775365114212, 0.48282691836357117, -0.5835551619529724, 0.5343221426010132, 0.8141524791717529, -0.031615082174539566, -0.9242697954177856, 0.2423650622367859, -0.17359785735607147, 0.4576250910758972, -0.31128886342048645, 0.21627666056156158, -0.16058479249477386, -0.47683069109916687, -0.10555952042341232, -1.0020705461502075, 0.6209746599197388, -0.35536083579063416, -0.5197945237159729, -0.09007055312395096, 1.3769707679748535, 0.32557347416877747, -0.22278587520122528, 0.36029690504074097, -1.2493098974227905, -0.2839360535144806, -0.9411633014678955, -0.6109441518783569, 1.0113327503204346, 0.7158575654029846, 0.4830801486968994, 0.5154300928115845, -0.37988319993019104, 0.01223358791321516, -0.645068883895874, -0.022961951792240143, 1.7807518243789673, 0.08483675867319107, -0.4066767990589142, 0.2431277185678482, -1.234744668006897, 0.36755305528640747, -0.17511716485023499, 0.5297195315361023, -0.49730101227760315, -1.1566053628921509, -0.6847065091133118, -0.14296846091747284, 1.240992546081543, -1.1108046770095825, -0.10142248123884201, 0.29627907276153564, -1.321481704711914, 0.0048608798533678055, 0.5950024724006653, -0.996703028678894, -0.12054502964019775, -0.882257878780365, 0.27686846256256104, 0.7827128171920776, 0.27363914251327515, 0.2262340486049652, -0.2809942364692688, -1.0656675100326538, -0.49644240736961365, -0.4489542245864868, -0.038250312209129333, 1.8325963020324707, 0.3690199851989746, -1.2976351976394653, 1.5881792306900024, -0.2447478026151657, -0.17382071912288666, -1.3632639646530151, -0.5717948079109192, -0.5516176223754883, 0.31624889373779297, 0.7133598327636719, 0.8858687877655029, 0.19137102365493774, 1.4591495990753174, 1.5234514474868774, -0.5009196400642395, 0.6432486772537231, -0.2742673456668854, -0.8949000835418701, 0.023232201114296913, -0.04459394887089729, 0.927830696105957, -1.198153018951416, -1.0971832275390625, 0.3286896347999573, -0.09277881681919098, -0.32894933223724365, -0.12233185768127441, -0.24317283928394318, -0.4632248282432556, -0.15522798895835876, -0.6020042896270752, 0.09116068482398987, -0.1557927429676056, 0.8274276852607727, 0.34437957406044006, -0.8082071542739868, 0.5173537135124207, -0.1592269092798233, 0.48473984003067017, -1.0107038021087646, -0.580971896648407, -0.5407009720802307, -0.07288723438978195, -0.31736648082733154, 0.13765493035316467, 0.21151374280452728, -0.3251968026161194, 0.1630619913339615, 1.5869847536087036, 1.4414894580841064, 0.38838425278663635, 0.08746788650751114, -0.43993425369262695, 0.1858132779598236, -0.24331168830394745, -0.5585322380065918, -0.09615685045719147, -0.5807070732116699, 1.1922109127044678, -0.41508713364601135, 0.04665416479110718, 0.14170604944229126, 0.22653062641620636, 0.12263928353786469, 0.0402284599840641, 0.5788185596466064, -0.4072030186653137, -1.6775751113891602, 0.3654666543006897, 0.33483707904815674, -0.38929715752601624, -0.6103174686431885, 1.0037117004394531, 0.0036475989036262035, -0.15001238882541656, -0.22694839537143707, 0.27968737483024597, -0.9062409400939941, -0.3098476827144623, 0.16451343894004822, -0.012705439701676369, 0.2857862412929535, -0.32474520802497864, -1.0728892087936401, 0.19186939299106598, -1.3854453563690186, -1.2881524562835693, 0.2143845558166504, -0.800693154335022, -0.6452925801277161, 0.33639124035835266, 0.19332139194011688, 0.862419068813324, -0.2525520920753479, -0.03591906279325485, 0.1825263798236847, -0.30394643545150757, 0.7366216778755188, 0.4543362259864807, 0.32288801670074463, -0.25289204716682434, -0.23613578081130981, -0.23133599758148193, 0.5273658037185669, 0.2934526801109314, -0.17044205963611603, -0.03383047506213188, -0.5110525488853455, -0.3935169279575348, -0.6484261155128479, -1.1536935567855835, 0.08869654685258865, -0.8325660824775696, -0.05694384127855301, -0.048684682697057724, -0.7496356964111328, -0.1086086854338646, 0.625525176525116, -0.5549919009208679, -0.20993344485759735, -0.5176884531974792, -0.5586513876914978, 0.5574727058410645, -0.15748164057731628, 0.40858617424964905, 0.47762662172317505, 0.21310491859912872, -0.06250827759504318, -0.6748377084732056, -0.11002795398235321, -1.1011537313461304, 0.4952322840690613, -0.4447633624076843, 0.7363767623901367, -0.6237555146217346, 0.5342935919761658, 0.3282693028450012, -1.338149070739746, 0.21858632564544678, 0.20853975415229797, -0.021051768213510513, 0.14249759912490845, -0.5895405411720276, -0.7118119597434998, -0.043695155531167984, 0.15813055634498596, 0.14313988387584686, 0.4753352105617523, 0.10596247762441635, -0.2911912798881531, -1.6171900033950806, 0.665256142616272, 0.2332143485546112, -0.5662028789520264, 0.2784952223300934, 0.7925149202346802, 1.2175443172454834, 0.09609628468751907, 0.1719529926776886, -0.19489476084709167, 0.46840527653694153, -0.8924777507781982, 0.15623220801353455, -1.0910735130310059, 0.2693174183368683, 0.20316439867019653], [0.9489157199859619, 0.7440871000289917, -2.572554349899292, -0.4039287269115448, 0.6372706294059753, 0.23932653665542603, -0.17454595863819122, 0.6796554327011108, 0.04566089063882828, -0.5295185446739197, -1.2813688516616821, 0.5525307059288025, 0.005097071640193462, 0.4810951054096222, 0.3981480896472931, 0.4513959586620331, 1.24402916431427, 0.5765973329544067, -0.24967478215694427, 0.8478155136108398, -0.751657247543335, -1.5184736251831055, -0.7210981249809265, 0.49995455145835876, 0.5460963249206543, 0.2600829601287842, -1.2846755981445312, 0.3947305679321289, -1.082507848739624, -0.5471671223640442, 2.102869749069214, -0.10575789958238602, 1.096958041191101, -0.7218182682991028, -1.2453655004501343, -0.16578362882137299, 0.3213542103767395, 0.7436371445655823, -0.41208112239837646, -0.14996160566806793, 2.0601439476013184, 1.260368824005127, -0.758658230304718, -1.6909698247909546, 0.28916141390800476, -1.085920810699463, 1.4147017002105713, -0.6144725680351257, 0.04198146238923073, -0.7891592383384705, -0.04680395498871803, -0.24045754969120026, 0.17743562161922455, 1.5449011325836182, 0.3932270407676697, -1.2063584327697754, 0.7844825983047485, 1.0436831712722778, -0.40592628717422485, 0.10884304344654083, 1.1056612730026245, -0.15956033766269684, 0.5383965969085693, 0.07227719575166702, 0.531672477722168, -0.17403031885623932, 0.03383871167898178, 0.04893169179558754, 0.2795805335044861, -0.14072051644325256, 0.21676652133464813, 0.06297902017831802, -0.3955479860305786, 0.30143818259239197, -0.8148854374885559, 0.8164648413658142, 0.6341250538825989, 0.495669424533844, 0.132628932595253, -0.1548856794834137, -0.8167127966880798, 0.18170799314975739, 0.949798047542572, 0.029223162680864334, -0.6317647099494934, 0.11313193291425705, 0.4863966405391693, -0.15041601657867432, -0.4285954535007477, 1.3287962675094604, 0.2732677161693573, 0.6299641728401184, 0.8078203797340393, -0.06499793380498886, -0.04890147224068642, -0.37643882632255554, -0.18421080708503723, -1.4160330295562744, -0.27245453000068665, -0.6387515664100647, -1.044389009475708, -0.963634192943573, 1.088606834411621, 0.8142589926719666, -0.3004520535469055, 1.6662007570266724, 0.034111205488443375, -0.40895697474479675, 0.1496274769306183, -0.417845755815506, -0.8588199615478516, 0.15516430139541626, -0.31415942311286926, -1.035361886024475, -0.1758764237165451, 0.21146440505981445, 1.3207664489746094, 0.09938418120145798, 0.6551346778869629, 0.5007304549217224, -0.49456077814102173, 0.029661647975444794, -1.2139897346496582, 0.1413501501083374, 1.4634431600570679, -0.3182970881462097, -1.0758578777313232, 0.6397040486335754, 0.9471718072891235, 0.19233785569667816, 0.24468259513378143, 0.3854719400405884, 0.4010064899921417, 1.6223737001419067, 0.04389262571930885, -0.08186085522174835, -0.3550676107406616, -1.7119001150131226, 0.06549622863531113, 0.01955035701394081, 0.38259127736091614, -0.27447986602783203, 0.08388163894414902, -0.8402142524719238, 0.3015426993370056, 0.11825977265834808, 0.6116611361503601, -0.014426950365304947, -0.9489712715148926, 0.386515736579895, -1.2236077785491943, -0.13631248474121094, -0.04562218487262726, 0.8007131218910217, 0.5822154879570007, -0.13823112845420837, 0.16022849082946777, -0.0529671236872673, -0.089784175157547, 0.7396839261054993, 0.2844461500644684, 0.08866273611783981, -0.7932934165000916, 0.48404935002326965, 0.5721569061279297, -0.5753000974655151, 0.7475913166999817, 0.2965204119682312, -0.8898375630378723, 0.8992537260055542, 0.03781009465456009, -1.3674818277359009, -0.4073498845100403, 0.3261857032775879, 0.6307119131088257, -0.43621188402175903, 0.19104433059692383, -0.1480357050895691, -1.3810676336288452, -0.9791134595870972, 1.1706880331039429, -0.4023398756980896, 0.4924742877483368, -0.47065532207489014, 0.31171715259552, 0.027616439387202263, -0.32825350761413574, 0.1374177783727646, -0.5205693244934082, -0.953689694404602, -1.0480905771255493, 0.024950752034783363, -1.060516119003296, 0.17295414209365845, -0.5151202082633972, -0.4902876317501068, 0.5082333087921143, -1.0772558450698853, -0.6684173941612244, -0.32564955949783325, 0.7777338624000549, -0.20905570685863495, -0.4044271409511566, -0.12434810400009155, -0.7232562303543091, 0.19748063385486603, -0.17923815548419952, 0.4080684781074524, -0.5819261074066162, 0.28502461314201355, 0.3306054472923279, -0.680390477180481, -1.1699364185333252, -0.17363300919532776, -0.07477213442325592, -1.392242431640625, 0.8017492294311523, -0.05641473829746246, -0.03714269399642944, -0.16956545412540436, 0.30733487010002136, 0.050166577100753784, 1.1270955801010132, -0.6331163048744202, 0.0535719059407711, 0.16099616885185242, -0.5104451179504395, -0.8492767810821533, -0.25435906648635864, -1.1161969900131226, -0.8087096810340881, -0.353763610124588, 0.6735406517982483, 0.4168267846107483, -2.078545093536377, 0.4830678403377533, -0.7829563617706299, 0.5293568968772888, -0.10097062587738037, 0.8253574371337891, 0.5136529803276062, 0.4265696406364441, -0.42140746116638184, -0.466457724571228, -0.6289936900138855, 0.3967437148094177, 0.6694988012313843, -0.532282829284668, 0.4725092649459839, 1.6782419681549072, 0.914046049118042, -1.0859566926956177, 0.7819401621818542, -0.5537161827087402, -0.16254252195358276, -1.2945661544799805, -0.04795989766716957, 0.5502265095710754, -0.8596470355987549, 1.3468958139419556, 0.7982251644134521, -1.1028697490692139, 0.2999389171600342, -0.3780987560749054, -0.9681941270828247, -0.4140930473804474, -0.04310104250907898, -1.0787222385406494, 0.18935967981815338, -0.034537263214588165, -0.4027480483055115, -0.03377929702401161, 0.10857456177473068, 0.38474902510643005, -0.4881875514984131, -0.6086155772209167, 0.04506923258304596, 0.4298088848590851, -0.4846963882446289, 0.6036319136619568, -0.17768599092960358, -0.7973557710647583, -0.3349546492099762, 0.010543029755353928, 0.7463395595550537, -0.37573176622390747, -0.014106913469731808, 1.107772946357727, -0.04496985673904419, 0.734370768070221, 0.4547162652015686, 0.551708996295929, 0.8296033143997192, -0.0038615702651441097, 0.7503449320793152, 0.579947292804718, 0.8321265578269958, -1.0255379676818848, -0.9246352314949036, 0.13377194106578827, 0.2005988359451294, 0.8320726752281189, 0.21591682732105255, 1.2637739181518555, -0.5484493970870972, 0.4267594516277313, -0.5379435420036316, -0.0170595683157444, -0.6934157609939575, -0.21519948542118073, -0.5448305606842041, -1.4981160163879395, -0.7274492979049683, -0.7195382118225098, -0.2793627679347992, 0.5626863837242126, 0.5134352445602417, 0.12058313935995102, -0.07891014963388443, 0.08203287422657013, -1.292364239692688, -0.6839028596878052, -0.6028690934181213, -0.8646397590637207, 0.9618616104125977, 0.9210137724876404, -1.2706071138381958, 0.2683940827846527, -0.09945932030677795, -0.4161059558391571, 1.1454015970230103, 0.26077404618263245, 1.802006483078003, -0.6781169772148132, -0.321834534406662, -0.17865167558193207, 0.42026135325431824, 0.3557683825492859, -0.8399435877799988, -0.22782623767852783, 0.8950446248054504, -0.2068934589624405, -0.19797568023204803, -0.8871893882751465, 0.1964787393808365, -0.6199299693107605, -0.739553689956665, -0.08310747891664505, 0.731185257434845, -0.00684779230505228, -1.4468456506729126, -1.4148627519607544, -0.49179157614707947, -0.5798094868659973, -0.3033018112182617, -0.013791155070066452, 0.4402352273464203, 0.27977052330970764, -0.441621869802475, -0.019307421520352364, 0.7726022005081177, -0.11809687316417694, 0.33408665657043457, -1.0479416847229004, 0.14555096626281738, 1.1819679737091064, 1.924567699432373, 0.479164719581604, 0.5336542725563049, 0.4837758541107178, -0.752791702747345, 0.07817548513412476, 0.06323894113302231, 0.23003435134887695, 0.2749711871147156, 0.2505570650100708, -0.16628023982048035, -0.2709282636642456, 0.051265567541122437, 0.22152693569660187, 0.20412108302116394, 0.3760668635368347, -0.48650291562080383, -0.7458503246307373, 0.49615076184272766, 0.9730392694473267, -0.5902050733566284, -0.025907959789037704, -0.9704580307006836, 0.5274077653884888, -0.6747746467590332, 0.30469825863838196, -0.37896737456321716, -0.5428811311721802, 1.0432313680648804, -0.9439184665679932, -0.22812005877494812, -0.3612246811389923, 0.38598883152008057, 0.6193822622299194, -1.4431390762329102, -0.32814690470695496, -0.777804434299469, 0.7142311334609985, 0.8071361184120178, 1.0595176219940186, 0.427400141954422, 0.376606285572052, 0.3490403890609741, 0.4760236442089081, 0.35061731934547424, 2.188823938369751, 0.22237445414066315, -0.27814748883247375, 0.2779131829738617, 0.46900859475135803, 0.05490986630320549, -0.4876849055290222, 0.651558518409729, 0.04269564896821976, -0.2962390184402466, 0.41028785705566406, 0.28791865706443787, -0.16491657495498657, 1.6924179792404175, 0.608210027217865, 0.07053440809249878, -0.3568195402622223, 0.4882003664970398, -0.2819926142692566, -0.3036823868751526, 0.4421609044075012, -0.4734654128551483, -0.10522125661373138, 0.06474882364273071, -0.22526225447654724, 0.7659170031547546, -0.10758499056100845, -0.3699089288711548, 0.5496735572814941, 0.5596752166748047, -0.3318250775337219, 0.5092176795005798, 0.2757013142108917, 1.3519253730773926, 0.5551180243492126, 0.9531159996986389, -0.7852402329444885, -0.3129001259803772, 1.117700219154358, -0.10658589005470276, 1.1060057878494263, 1.0599966049194336, 0.5366179943084717, 0.9544727802276611, -0.9302535057067871, -0.2502475380897522, 0.7032424211502075, 0.42097988724708557, 1.346376895904541, 0.15460239350795746, 0.34586820006370544, -0.5156879425048828, -0.4887523651123047, 0.03017006441950798, -0.22680234909057617, 0.43254655599594116, 0.08477333933115005, 0.47722098231315613, 1.1890708208084106, -1.3116189241409302, -0.25864386558532715, -0.7493957877159119, -0.17495158314704895, -0.9201875329017639, -1.0699251890182495, 0.5552598834037781, 0.5708003640174866, 0.8123469948768616, 0.8206857442855835, 0.24766972661018372, -0.5736672878265381, 0.4301544725894928, -1.41823410987854, 0.6620948314666748, 0.001343913609161973, 0.0025890888646245003, -0.7675254344940186, -0.3657228946685791, -0.12144066393375397, -0.6496540904045105, -0.34746208786964417, -0.39104029536247253, -0.7296422719955444, -0.2366686314344406, 0.22974610328674316, 0.794488251209259, 0.6647936105728149, 0.3300739526748657, 0.9622368216514587, 1.4139879941940308, 0.6748555898666382, -0.6023193597793579, 0.11106541007757187, -0.252238005399704, 0.21965014934539795, -0.46643462777137756, -0.18573921918869019, -1.0654261112213135, 0.13559918105602264, 0.36581599712371826, -1.0771701335906982, 0.3411857485771179, 1.3406457901000977, 1.3000662326812744, -0.3077342212200165, -1.0911980867385864, 0.9894099235534668, 0.02066637948155403, 0.7380203604698181, 0.46651414036750793, -0.5303075313568115, -0.11086861789226532, -0.39759159088134766, -1.9162049293518066, 1.2213962078094482, -0.7524135112762451, 0.17900888621807098, 0.6556541919708252, 1.0561585426330566, -0.2187669724225998, 0.8861989974975586, -0.26977837085723877, -0.08072154223918915, -0.15800142288208008, -0.05237436667084694, -0.8706967830657959, 0.4587551951408386, 0.8264576196670532, 0.16680079698562622, -0.6928014755249023, -0.37512749433517456, -0.8123827576637268, 1.5143113136291504, -0.8454084992408752, -0.13827760517597198, 0.8134505748748779, -0.7308304905891418, -0.44142788648605347, 0.31735485792160034, -0.21576239168643951, -0.6702114343643188, 0.17171569168567657, -0.12651784718036652, 1.4457967281341553, 0.6218411922454834, 0.05005565285682678, 1.3158726692199707, -0.5548030138015747, 0.4132041335105896, -0.08919763565063477, -0.46838629245758057, 1.0618377923965454, 0.5799614191055298, 0.40052348375320435, 0.6489914059638977, -0.29339897632598877, -0.5250451564788818, -0.524945080280304, -0.5788053274154663, 1.0946440696716309, -0.9598253965377808, -0.6948637962341309, -0.9698861837387085, -0.4427981972694397, 0.8813949823379517, 0.21367092430591583, 0.7873665690422058, -0.6314266324043274, -1.103076696395874, -1.021790623664856, 0.13566875457763672, 0.8530464172363281, 0.011353341862559319, 0.21199457347393036, 0.39692816138267517, -1.2920615673065186, 0.27483898401260376, 0.5339417457580566, -1.002760887145996, -0.0016384073533117771, -0.8442642688751221, 0.5724223256111145, 0.6436161398887634, -0.31388425827026367, 0.05044015496969223, 0.4399816691875458, -1.315121054649353, -0.47353896498680115, -0.15701402723789215, -0.6723420023918152, 0.07191869616508484, 0.9723365902900696, -1.3553804159164429, 0.7029191255569458, 0.1987934410572052, -0.03392903879284859, -0.5170676112174988, -0.1105697751045227, -1.3967642784118652, 0.34916073083877563, -0.11512687802314758, 0.46941980719566345, 0.20010097324848175, 1.2854851484298706, 1.0832430124282837, 0.5163906812667847, 0.4503551423549652, 0.5176281929016113, -0.38909006118774414, -0.28946420550346375, -0.11386313289403915, 0.5505459904670715, -0.30317190289497375, -1.0026665925979614, 0.11729377508163452, -0.5133219361305237, -0.8067635893821716, -0.0555877611041069, 1.1109435558319092, -0.23401671648025513, 0.5909938812255859, -0.32700955867767334, -1.3882564306259155, 0.17413388192653656, 0.4557071626186371, 0.14300207793712616, -0.47719308733940125, 0.014225313439965248, -0.47072121500968933, 0.25282108783721924, -0.3798513114452362, -0.262119323015213, 0.28190651535987854, 0.1387253999710083, 0.011363113299012184, 0.8470619916915894, -0.057229917496442795, 0.20576532185077667, -0.38882675766944885, 2.2217936515808105, 1.1309977769851685, -0.8566693663597107, 1.117572546005249, -0.2480388879776001, -0.710504949092865, -0.49097904562950134, -0.8096131086349487, -1.0576143264770508, 0.11867018789052963, 0.7729251980781555, 0.31097596883773804, 0.30210080742836, -0.36951473355293274, 0.19624081254005432, 0.16531500220298767, 0.7724676132202148, 0.6063863635063171, -0.796425998210907, -0.7140204906463623, 0.6428771615028381, 0.5052105784416199, -0.46741369366645813, -0.10926832258701324, 0.6773639917373657, 0.1417083889245987, 0.11211835592985153, 0.49857673048973083, 1.2110358476638794, -0.694033682346344, 0.7309693098068237, 0.6865601539611816, -0.3479471206665039, -0.6480861306190491, -0.07078469544649124, -1.7053804397583008, 0.15765410661697388, -0.8174028396606445, -1.2220635414123535, 0.5687757730484009, -1.2240221500396729, -1.1876964569091797, 0.0072962818667292595, -0.1131722554564476, -0.06337270140647888, -0.1702217161655426, -0.4209345579147339, 0.9292954206466675, -0.5349632501602173, 1.3616697788238525, 0.1820887178182602, 1.0994471311569214, -0.08557900041341782, -0.2905057966709137, -0.17485450208187103, -0.9182897210121155, -0.4089234173297882, -0.0730794370174408, 0.1804361194372177, 0.006157033611088991, 0.5646128058433533, -0.1956176608800888, -0.7315577268600464, 0.33451154828071594, 0.2723526954650879, 0.31221914291381836, -0.19401705265045166, -0.5870106220245361, 0.13754823803901672, -0.013825923204421997, -0.12455347925424576, -0.2606200575828552, -0.8647652268409729, -0.2825780212879181, -0.25194087624549866, -1.0301423072814941, 0.7601398825645447, -0.14637310802936554, 0.7526495456695557, -0.381409615278244, -0.8736507296562195, -0.23834723234176636, -0.9046099185943604, 0.47413554787635803, -0.07169058918952942, -0.48446154594421387, -1.1449620723724365, 0.24583664536476135, 0.3217315971851349, -1.2176207304000854, 0.1773366928100586, -0.025293894112110138, -0.008835437707602978, -0.15678755939006805, -0.47725415229797363, -0.5830484628677368, -0.7120856046676636, 0.38097044825553894, 0.332116961479187, 0.39336687326431274, 0.5181106328964233, -0.2613392174243927, -1.7305495738983154, 0.007613829802721739, 0.3838345408439636, 0.7530720829963684, 0.9460878968238831, 1.1012349128723145, 1.8181476593017578, -0.3596686124801636, -0.06644479185342789, 0.07094915211200714, 0.46462497115135193, -0.5579137802124023, -0.3374016284942627, -0.8044589757919312, 0.2310771644115448, -0.18465988337993622], [-0.0028198231011629105, 1.1157760620117188, -2.6761505603790283, -0.12161114066839218, 0.2925264835357666, 0.060342781245708466, 0.8118197321891785, -0.4708710014820099, -0.2420579344034195, -1.160138487815857, -0.9245257377624512, 0.7093574404716492, -0.12817047536373138, 1.0145745277404785, 0.418422132730484, 0.7613595128059387, 1.1403826475143433, 0.09222514182329178, -0.390145480632782, 1.2222235202789307, 0.4993436336517334, -1.435502529144287, -0.17564626038074493, -0.1343943327665329, 0.7508305311203003, 0.6010035276412964, -0.8858675956726074, 0.0746752992272377, -0.6183923482894897, -0.04700920730829239, 1.710179090499878, -0.2568410038948059, 0.7438058853149414, 0.016916023567318916, -1.538124680519104, -0.2821969985961914, 0.870788037776947, 0.4755147397518158, 0.5470173954963684, -0.6616230010986328, 1.9672958850860596, 0.2848615050315857, -0.2644194960594177, -1.7524076700210571, 0.2502174973487854, -0.5354312062263489, 0.050339389592409134, -0.6523058414459229, -0.07926762104034424, -1.1009650230407715, 0.07809635996818542, -0.24319221079349518, -0.21397943794727325, 1.3493093252182007, 0.4660249352455139, -1.2998615503311157, 1.1731114387512207, 0.9341313242912292, -0.24618273973464966, 0.22709931433200836, 1.0640746355056763, -0.23142145574092865, 0.9127905964851379, -0.025662440806627274, 0.5933570265769958, -0.443400114774704, 0.27411985397338867, 0.14577995240688324, 0.22729381918907166, 0.5030996203422546, 0.658237099647522, 0.5554311871528625, -0.25102055072784424, 0.41312798857688904, -0.6611096858978271, 0.5351828932762146, 0.5901113748550415, 0.6536387801170349, -0.2550532817840576, 0.5419158339500427, -1.143075942993164, 0.5141410827636719, 0.9485878348350525, -0.3373399078845978, -0.6495373845100403, 0.22629167139530182, 0.46865734457969666, 0.45239728689193726, -0.6329783797264099, 1.7208062410354614, 0.42720356583595276, 1.0633888244628906, 0.4627108573913574, -0.1479702889919281, 0.23796416819095612, -0.046248871833086014, -0.5254949331283569, -1.2702387571334839, -0.08793525397777557, -0.17130620777606964, -0.4432830512523651, -0.8493014574050903, 0.19827909767627716, 0.7657646536827087, 0.40111348032951355, 1.566344141960144, -0.03895245119929314, -0.33295726776123047, 0.635768473148346, -0.19692149758338928, -1.2827130556106567, 0.19874098896980286, -0.6482741236686707, -0.46037137508392334, 0.2380535900592804, 0.9112987518310547, 1.1478989124298096, -0.2236083447933197, 0.4758196473121643, 0.601006031036377, -0.5819004774093628, -0.3467082381248474, -1.293899416923523, 0.1631423383951187, 1.3726943731307983, 0.045909538865089417, -0.9211134910583496, 0.30415773391723633, 0.31539076566696167, 0.7753563523292542, 0.8702660799026489, -0.1301635205745697, 0.08707867562770844, 1.5626566410064697, -0.7747340798377991, 0.413394033908844, -0.6659937500953674, -0.9110851287841797, 0.458238810300827, 0.2764366567134857, 0.2572380006313324, -0.30346429347991943, -0.008654935285449028, -0.563980221748352, 0.24796099960803986, -0.4502470791339874, 0.3688981831073761, -0.37146586179733276, -0.9054535627365112, -0.24525265395641327, -1.1467634439468384, 0.29475459456443787, 0.22534188628196716, 1.1007453203201294, 0.8013691902160645, -0.524314820766449, -0.5374968647956848, -0.010950874537229538, 0.06568481773138046, 0.4697558879852295, 0.5828031897544861, 0.11485987901687622, -1.077450156211853, 0.07325297594070435, 0.9491686224937439, -1.0488379001617432, 0.39411425590515137, 0.22541919350624084, -0.6320345401763916, 0.9231850504875183, -0.27206745743751526, -1.2196458578109741, -0.3484675884246826, 0.21552474796772003, 0.5047268271446228, -0.17728972434997559, 0.6183469295501709, 0.29691433906555176, -1.1876834630966187, -0.9235363006591797, 1.0034414529800415, -0.458035409450531, 1.0160150527954102, -0.6195885539054871, 0.010250010527670383, -0.18703719973564148, -0.29322534799575806, -0.1577744483947754, -0.7302697896957397, -0.7300114631652832, -0.6720514893531799, -0.2584899663925171, -1.101183533668518, 0.69924396276474, -0.706271231174469, -0.5029340386390686, 0.5475342273712158, -0.5885146260261536, -0.4109753668308258, -0.09631739556789398, 0.6996030211448669, -0.45010483264923096, -0.6464154124259949, -0.22610071301460266, -0.5631945133209229, 0.541634202003479, 0.03478074446320534, 0.5162914395332336, -0.5462692975997925, 0.4579017460346222, 0.44231894612312317, -0.649334192276001, -1.8228428363800049, -0.008696507662534714, 0.16497796773910522, -1.5723682641983032, 0.6200472712516785, -0.0004880521446466446, -0.06306532770395279, 0.31261157989501953, -0.09187930822372437, 0.04131140559911728, 0.782508373260498, -0.5959559082984924, 0.06064692139625549, -0.5739291906356812, -0.02101990394294262, -1.2950000762939453, -0.24914973974227905, -0.12530528008937836, -1.1721218824386597, -0.4822002649307251, 0.5899652242660522, 0.6259782910346985, -1.2402865886688232, 0.7870767116546631, -0.4369746446609497, 0.18998199701309204, -0.0720055028796196, 1.015255331993103, 0.706523060798645, 0.34110739827156067, -0.8286339640617371, -0.47342514991760254, -0.6729630827903748, 0.03684019669890404, 0.8202531933784485, -0.33393654227256775, 0.15830527245998383, 1.0594464540481567, 1.277459740638733, -0.7369261384010315, 0.5688251256942749, -0.4479668438434601, -0.12638626992702484, -1.8420854806900024, -0.3850608170032501, 0.32251492142677307, -0.915396511554718, 0.9311253428459167, 0.7299076318740845, -2.0059235095977783, 0.39228904247283936, -0.10560978949069977, -0.028906600549817085, -0.4947807490825653, -0.5115354061126709, -0.4544996917247772, 0.3694639205932617, -0.3088075816631317, -0.408904492855072, -0.36585932970046997, -0.19695739448070526, 0.7872363924980164, -0.6560291051864624, -0.5838624238967896, -0.12034448981285095, 0.7884225845336914, 0.14784692227840424, 1.117051124572754, -0.05796169862151146, -1.345478892326355, -0.7041246294975281, 0.08321095257997513, 0.529660701751709, 0.19697551429271698, -0.03227046877145767, 0.8056545257568359, 0.2869899272918701, 0.47274482250213623, 0.45184144377708435, -0.4889199435710907, 0.6223495006561279, 0.628815770149231, 0.31170254945755005, 0.18250177800655365, 0.7859780788421631, -0.938330352306366, -0.6232382655143738, -0.4422529339790344, 0.826309084892273, 1.2633147239685059, 0.03181355074048042, 0.9409759044647217, -0.43287476897239685, -0.03172934800386429, -1.2186462879180908, -0.2452152967453003, -0.650403618812561, -0.1339634209871292, -0.43965762853622437, -1.297868013381958, -0.13706129789352417, -0.4377107322216034, -0.34480077028274536, 0.4158632755279541, 0.20218303799629211, 0.8623424172401428, 0.15006335079669952, 0.0361722931265831, -1.4473973512649536, -0.5917639136314392, 0.0014616474509239197, -0.6014490723609924, 0.6389827728271484, 1.8451262712478638, -1.1522901058197021, 0.2790762484073639, 0.16619248688220978, 0.14315445721149445, 0.4390221834182739, 0.1333126425743103, 1.0373014211654663, -0.8618685603141785, -0.14229705929756165, 0.44340479373931885, 0.6496434211730957, 0.2471732497215271, -0.6984741687774658, -0.561532735824585, 0.8939107656478882, 0.18568098545074463, -0.053817931562662125, -0.28943005204200745, 0.6741330027580261, -0.7632603645324707, -0.9266805052757263, -0.1817457675933838, 0.43954500555992126, 0.19960151612758636, -1.0277429819107056, -1.265846848487854, -0.79292231798172, -0.048702746629714966, -0.4376675486564636, 0.27950915694236755, 0.4873412847518921, 0.3759476840496063, -0.10220973938703537, -0.20588867366313934, 0.6738074421882629, 0.1067139059305191, 0.4503036439418793, -0.8200979828834534, 0.17916478216648102, 1.1860380172729492, 1.8373132944107056, 0.5353924036026001, 0.36343640089035034, 0.5088455677032471, -0.8362889885902405, 0.1021401658654213, 0.0762859657406807, 0.34834203124046326, 0.12846381962299347, -0.3110567033290863, -0.17123202979564667, -0.7173298001289368, 0.08934736996889114, 0.21027086675167084, -0.04310140758752823, 0.41818782687187195, -0.5920736193656921, -0.8199197053909302, 0.5127832889556885, 0.8509542346000671, -0.2269086092710495, 0.23345819115638733, -0.6827638745307922, 0.7931607961654663, -0.7388885021209717, 0.24690905213356018, -0.526452898979187, -0.3004627525806427, 0.67826247215271, -1.162887454032898, -0.3607190251350403, -0.21430206298828125, 0.470994770526886, 0.9541324973106384, -1.388878345489502, -0.29374420642852783, -0.6122921109199524, 0.648681640625, 1.0683081150054932, 0.6999523639678955, 0.47633033990859985, 0.4716246426105499, -0.5760011672973633, 0.3465891480445862, 0.6919347047805786, 1.667285680770874, -0.1787552535533905, -0.04806780070066452, 0.3573518693447113, -0.8329241275787354, -0.27790001034736633, -0.7066339254379272, 0.15276402235031128, 0.23236623406410217, -0.07978778332471848, 0.31970804929733276, 0.0675094798207283, -0.17835408449172974, 2.2376174926757812, 0.30049407482147217, 0.4388484060764313, 0.17439678311347961, 0.3712727129459381, -0.6561214923858643, -0.46220073103904724, 0.4113943874835968, -0.444498747587204, -0.3799828886985779, 0.11938337981700897, 0.03025214374065399, 0.4271557033061981, 0.29046630859375, -0.005061892792582512, 0.6177522540092468, 0.7318719029426575, 0.056950222700834274, -0.19368702173233032, 0.859557032585144, 1.256103754043579, 0.2939263582229614, 1.386722445487976, -0.9619196057319641, -0.620182454586029, 1.2754573822021484, -0.3608682155609131, 0.893416702747345, 0.5324523448944092, 0.5365183353424072, 1.2257977724075317, -1.2856359481811523, -0.1043260395526886, 0.7757651209831238, 0.020057927817106247, 1.077824354171753, -0.1759367734193802, 0.19966846704483032, -0.3002748489379883, -0.39894577860832214, -0.20554940402507782, -9.427405893802643e-05, 0.46471503376960754, -0.08061165362596512, 0.22854536771774292, 0.9607108235359192, -0.8562830090522766, -0.33067235350608826, -0.3707670569419861, -0.625816285610199, -1.182539939880371, -0.47465425729751587, 0.5623898506164551, 0.4340505003929138, 1.2304645776748657, 1.310883641242981, 0.5866408348083496, -1.028008222579956, 0.1678091585636139, -0.897739589214325, 0.49246543645858765, -0.24797073006629944, 0.06301112473011017, -0.5787336826324463, -0.5266452431678772, 0.4607309103012085, -0.28544747829437256, -0.5343177318572998, -0.05716030299663544, -0.3662998080253601, -1.0232843160629272, 0.7196400761604309, 0.597989559173584, 0.8838070034980774, 0.5020440220832825, 0.499743789434433, 0.5399678945541382, 0.23989371955394745, -0.4378305673599243, 0.12107902020215988, 0.01291186735033989, 0.5087525844573975, -0.17489409446716309, -0.43630561232566833, -1.0120984315872192, 0.19508887827396393, 0.6876407265663147, -0.23949329555034637, 0.5630353093147278, 1.2969380617141724, 1.673221230506897, -0.11194619536399841, -0.695122241973877, 0.7635161280632019, -0.49916529655456543, 1.1228200197219849, 0.5394834876060486, -0.38936835527420044, 0.40760698914527893, -0.11160560697317123, -1.7343989610671997, 1.4849907159805298, -0.6531360745429993, 0.0855613499879837, 0.7652040123939514, 1.0779019594192505, 0.4791003167629242, 1.0358569622039795, -0.6255294680595398, -0.004006918519735336, -0.36610308289527893, -0.7891416549682617, -0.32717815041542053, 0.9827044606208801, 0.39684224128723145, -0.4556652903556824, -0.7127521634101868, -0.3000662624835968, -0.5802121758460999, 0.816472589969635, -1.0703712701797485, 0.5682137608528137, 0.5245531797409058, -0.4251790940761566, 0.002630474977195263, -0.514298141002655, 0.35963767766952515, -1.2959758043289185, 0.15135709941387177, -0.10165213793516159, 1.2180907726287842, 0.7867202162742615, 0.08677104115486145, 0.8752498626708984, -0.5462058782577515, -0.24960856139659882, -0.526009202003479, -0.7983767986297607, 1.0706521272659302, 0.5694261789321899, 0.5870237350463867, 0.2986200749874115, -0.5765105485916138, -0.4859859049320221, -0.8990329504013062, 0.012598699890077114, 1.7227187156677246, -1.1810388565063477, -0.6886604428291321, -0.44475212693214417, -0.39014336466789246, 0.3462126553058624, -0.10762009024620056, 0.7050513625144958, -0.6946259140968323, -0.9771180748939514, -0.4237552583217621, -0.1306001842021942, 0.9881629347801208, -0.3630749583244324, 0.3611970543861389, 0.6170797348022461, -0.9244623780250549, 0.5148497819900513, 0.3642709255218506, -1.4424418210983276, 0.13240019977092743, -1.3992254734039307, 0.8392981290817261, 0.4802493453025818, -0.3977796733379364, 0.4642927348613739, 1.2060232162475586, -1.8536428213119507, -0.8435739874839783, -0.7037032246589661, -0.29580816626548767, 0.12784965336322784, 1.209036946296692, -1.678646206855774, 1.052708625793457, 0.13217684626579285, -0.39849916100502014, -0.3153071701526642, 0.031508225947618484, -1.0722649097442627, -0.08725936710834503, -0.40003472566604614, 0.42892029881477356, 0.5693300366401672, 0.9040549397468567, 0.46791478991508484, 0.7820925116539001, 0.10034490376710892, 0.8428748846054077, -1.0689072608947754, -0.8427324295043945, 0.15474437177181244, 0.5276548862457275, -0.4971717894077301, -1.16468346118927, 0.3282600939273834, -0.3584335148334503, -1.025078296661377, 0.011163618415594101, 1.0429447889328003, -0.45006951689720154, 0.37852540612220764, -0.5271130800247192, -0.5660040974617004, -0.31400376558303833, 0.4965716004371643, 0.6247528791427612, -1.0087132453918457, -0.2708636522293091, -0.6848442554473877, 0.33574748039245605, -0.7479097247123718, -0.22932401299476624, 0.7229143381118774, -0.07173464447259903, -0.8252002000808716, 0.5585306882858276, 0.029506783932447433, 0.6417175531387329, -0.6078155040740967, 1.4569860696792603, 0.6805092096328735, -0.7063013315200806, 0.9273843765258789, 0.11732058227062225, -0.17685146629810333, -0.779891312122345, -0.8938720226287842, -0.802925705909729, -0.24713736772537231, 0.5429551005363464, 0.576684296131134, -0.09773509949445724, -0.64961838722229, -0.038219500333070755, 0.446614146232605, 0.2510811686515808, 1.0375629663467407, -0.7974434494972229, -0.7707885503768921, 0.5093766450881958, 0.4196317493915558, -0.7914115190505981, -0.4376845061779022, 0.3970837891101837, -0.16765563189983368, -0.30183470249176025, 0.07028558850288391, 1.0252766609191895, -0.6809148192405701, 0.5956704020500183, 0.6262147426605225, -0.44824591279029846, -0.5948882102966309, 0.09394185245037079, -1.6411901712417603, -0.5207894444465637, -0.7713719606399536, -0.5641973614692688, 0.6844007968902588, -0.9554260969161987, -0.7917714715003967, 0.3647232949733734, -0.13774748146533966, -0.39790165424346924, -0.23719081282615662, 0.08098206669092178, 0.35349026322364807, -0.42258477210998535, 1.3369272947311401, -0.25992733240127563, 1.586531162261963, -0.3861117959022522, -0.2868979573249817, -0.32137343287467957, -0.5664754509925842, -0.2880096733570099, -0.4364742338657379, 0.32826724648475647, -0.23139327764511108, -0.16762802004814148, -0.5833325982093811, -0.47595059871673584, 0.029585065320134163, -0.2147521823644638, 0.3438867926597595, -0.036901846528053284, -1.3156384229660034, 0.4918944835662842, 1.0064059495925903, 0.09388060122728348, -0.5245935916900635, -1.0307624340057373, -0.4180513918399811, 0.48694321513175964, -0.45539969205856323, 0.5881503820419312, -0.5792208909988403, 1.0266368389129639, -0.04796529933810234, -0.5791592597961426, -0.3091413378715515, -1.0096112489700317, 0.8719939589500427, -0.4438443183898926, 0.1338626742362976, -0.3352045714855194, 0.07668221741914749, 0.2886281907558441, -1.1258742809295654, -0.03647088259458542, -0.06138520687818527, -0.045728567987680435, 0.3238079845905304, -0.6887767910957336, 0.06716417521238327, -0.5281164050102234, -0.23870444297790527, 0.30119603872299194, 0.5802748799324036, 0.6053229570388794, 0.24588648974895477, -1.686085820198059, 0.1323104053735733, 0.3425111770629883, -0.08099321275949478, 0.8341683745384216, 1.2401199340820312, 0.8586206436157227, 0.43998801708221436, -0.32623952627182007, 0.3365526795387268, 0.18510647118091583, -1.0701125860214233, 0.3291851580142975, -0.5710307955741882, -0.451533704996109, -0.21794696152210236], [0.3681657612323761, -0.031838156282901764, -2.459928035736084, -0.7651617527008057, -0.056081224232912064, -0.24489091336727142, 1.8173691034317017, -0.1901022344827652, -0.06255776435136795, -1.5353097915649414, -0.7312269806861877, 0.33043909072875977, 0.8767998218536377, 0.4073050916194916, 0.4780791699886322, 0.17301952838897705, 1.3521459102630615, 0.24465115368366241, 0.08144480735063553, 0.7331534624099731, -0.5450794696807861, -1.1047978401184082, -0.04312922805547714, -0.5034513473510742, -0.0127370934933424, 0.2758917212486267, -1.1418653726577759, 0.28946632146835327, -0.9896581172943115, -0.03583644703030586, 0.7203236222267151, -1.0428407192230225, 0.2603321671485901, 0.16507208347320557, -0.8462052941322327, 0.015049264766275883, 1.6641037464141846, 0.7172606587409973, 0.7927606701850891, 0.3347488045692444, 2.052597761154175, 0.31745707988739014, 1.1500251293182373, -0.8387081623077393, 0.008944448083639145, -0.7304919362068176, 1.367149829864502, -0.7231833338737488, -0.5010404586791992, -0.08842021226882935, 1.4349461793899536, -0.19263555109500885, -0.5319409966468811, 0.8959218859672546, 0.5745543241500854, -0.7387271523475647, 0.5179842114448547, -1.447225570678711, 0.0411655530333519, -0.6377593874931335, 0.8693774342536926, 0.12981896102428436, 0.06794513016939163, 1.1880813837051392, 0.1602543294429779, -1.183005928993225, -0.3743632137775421, 0.42580223083496094, -0.06753750145435333, -0.6264793276786804, 0.18462041020393372, 0.1264413595199585, -0.023844370618462563, 0.6135680079460144, -1.5296242237091064, 0.1633738875389099, 0.9211129546165466, 0.7883664965629578, 0.21564805507659912, 1.0153018236160278, -0.7113806009292603, 0.17026250064373016, 0.9724332690238953, -0.4124482274055481, 0.46375077962875366, -0.016275877133011818, 0.5405431985855103, -0.4101465940475464, -0.8867979049682617, 1.438563346862793, -0.29768720269203186, 0.19527554512023926, 0.24087484180927277, 0.08884960412979126, -0.40764275193214417, -0.33415937423706055, 0.3053407669067383, -0.21059244871139526, -0.08167419582605362, -0.18191632628440857, -0.9445763230323792, -1.1580032110214233, 0.1946353316307068, -0.1737082451581955, 1.0898771286010742, 1.7407798767089844, 0.4279560446739197, -0.6301180720329285, -0.4525262713432312, 0.1581990271806717, -1.0175833702087402, 0.1142222210764885, -0.5883414149284363, -1.072426676750183, -0.4927627146244049, 0.8121412992477417, 1.0668087005615234, -0.20522810518741608, 1.0351439714431763, 1.0236202478408813, -0.2002328485250473, -0.11087842285633087, 0.015616814605891705, 0.04906172677874565, 0.39606761932373047, -0.19421999156475067, -0.2657209038734436, -0.21873007714748383, 0.6636607646942139, 0.6264691948890686, 0.6828615069389343, -0.01027217973023653, 0.11125892400741577, 1.538573980331421, -0.3809579014778137, 0.1862897425889969, -0.0478726327419281, -0.9878835678100586, -0.23543605208396912, 0.17438967525959015, 0.8558505773544312, -0.9745966196060181, -0.3974047303199768, -0.012892399914562702, -0.32781434059143066, -0.7271813154220581, 0.5183209776878357, -0.21655242145061493, -0.31500980257987976, -0.7822337746620178, -0.9239712357521057, -0.45142337679862976, 0.28552865982055664, 0.8037049174308777, 0.8084412217140198, -0.7321837544441223, -0.6440605521202087, 0.45688462257385254, 0.20775999128818512, -0.22325026988983154, 0.7194863557815552, -0.23095254600048065, -0.5000853538513184, 0.4286063015460968, 0.3953326344490051, -0.6948782801628113, -0.4724065065383911, 0.9975688457489014, 0.5690299868583679, 0.1364593654870987, -0.5240446329116821, 0.16345062851905823, -1.3678842782974243, -1.140981912612915, 0.4561753273010254, -0.0820605605840683, 1.4842464923858643, -0.308335542678833, -1.5958333015441895, -1.2657440900802612, 1.244641900062561, -0.4829949736595154, 0.42515379190444946, -0.40285223722457886, 0.258015513420105, -0.6733631491661072, 0.12711173295974731, 0.16520443558692932, -0.6796994209289551, -0.26485443115234375, -0.4304712116718292, -0.10637831687927246, -0.6439041495323181, 0.5023093223571777, -0.5786958932876587, -0.4237849712371826, 0.5423569083213806, -0.6957409977912903, -1.0018223524093628, -0.4802326261997223, 0.14781199395656586, -0.24036848545074463, -1.7560460567474365, 0.6514887809753418, -0.671562671661377, 1.2401726245880127, -0.955608069896698, 0.443241149187088, -1.2090641260147095, -0.2255619466304779, 0.49843624234199524, 0.43378540873527527, -0.3674169182777405, 0.4693520665168762, -0.6669744253158569, -1.430066466331482, 0.44669589400291443, 0.09352952241897583, -0.2908910810947418, -0.0767882764339447, -0.2388361096382141, 0.8333168625831604, 0.7083380222320557, -0.673053503036499, 0.6324928998947144, -0.12940940260887146, 0.015592600218951702, -0.587775707244873, -0.2144167274236679, 0.822666347026825, -0.38964831829071045, -0.7648522853851318, 0.9324312806129456, 0.5248907804489136, -0.9452700614929199, 0.17051191627979279, -0.15189658105373383, 0.08391782641410828, -0.4012625217437744, 0.4019967019557953, 0.7600375413894653, 0.14069846272468567, 0.41088613867759705, -0.24379554390907288, -0.7266443967819214, 0.9905474185943604, 0.8396660685539246, -0.6011087894439697, 0.6113777756690979, 1.351919412612915, 1.1429295539855957, -0.14776982367038727, 0.6488644480705261, -0.018304914236068726, -0.6866177320480347, -0.6957728266716003, -0.9673004150390625, 0.4046081304550171, -1.10018789768219, 1.4038891792297363, 0.7951256632804871, -0.3262728452682495, -0.6286113262176514, -0.0042452155612409115, -0.2768602967262268, -0.5677655339241028, -0.4284367263317108, 0.46824824810028076, 0.008076192811131477, -0.48239752650260925, -0.24772793054580688, -0.09129958599805832, -0.0753851979970932, 0.1345071643590927, -0.428689181804657, 0.49295851588249207, 0.31196704506874084, 0.23589852452278137, 0.04926914721727371, 1.2331193685531616, 0.34552454948425293, -1.4949002265930176, -0.29194700717926025, 0.008132628165185452, -0.210911363363266, 0.002245369367301464, -0.4435167908668518, 0.6745705008506775, 0.07845913618803024, -0.4361952543258667, -0.10554368793964386, 0.9556537866592407, -0.3555890917778015, 0.5134099721908569, -0.35067620873451233, 0.13219614326953888, 1.4403355121612549, -0.4570268392562866, -0.5915398001670837, 0.14420263469219208, 0.4708945155143738, 0.8022081851959229, 0.19198118150234222, 0.9716382622718811, -0.025265252217650414, -0.36288949847221375, -0.40556877851486206, -0.187762051820755, -0.46341457962989807, -0.03901416435837746, -0.584956169128418, -1.179102897644043, -0.4538908302783966, -0.2335810512304306, 0.16958990693092346, 0.5029547214508057, 0.69893878698349, 0.4557676613330841, 0.8599614500999451, 0.09876225888729095, -0.08860227465629578, 0.5551764369010925, 0.23350226879119873, -0.7468759417533875, 0.4742756485939026, 0.5414488315582275, -1.3533309698104858, 0.12524493038654327, 0.1220628023147583, 0.1017616018652916, 0.5261750221252441, 0.039073362946510315, 0.14215509593486786, -1.2036052942276, -0.35184046626091003, 0.4244808852672577, 1.1583751440048218, -0.7664558291435242, 0.053037822246551514, -0.590160608291626, 0.5868862867355347, 0.8579103946685791, 0.8066418766975403, -0.41849833726882935, 1.1283178329467773, -0.642029881477356, -0.765142560005188, -0.4036860466003418, 0.20061342418193817, 0.7400676012039185, -0.43992894887924194, -0.7583969831466675, 0.2174205780029297, -0.332745760679245, -0.40252289175987244, 0.8914322853088379, -0.3163961172103882, 0.4573878049850464, -0.32262372970581055, 0.3313230276107788, 0.6927400231361389, -0.5335599184036255, 0.2338491976261139, -1.239630937576294, 0.6617880463600159, 1.0732554197311401, 1.751615047454834, 0.14799083769321442, 0.3651745319366455, 0.4373592436313629, -0.12027833610773087, 0.21426819264888763, 0.14651192724704742, 1.0430017709732056, -0.1791083812713623, -0.15366068482398987, -0.36925438046455383, -0.6110462546348572, -0.085926353931427, 0.05045847222208977, 0.45127996802330017, 0.3635088801383972, -1.1861063241958618, -0.14492271840572357, 1.209093689918518, 1.0153462886810303, -0.7758303880691528, -0.26502352952957153, 0.20864738523960114, 0.031939540058374405, -0.2661663293838501, 0.025165973231196404, -0.3057243227958679, -0.1301119178533554, 0.5018800497055054, -1.5185610055923462, 0.7413727045059204, 0.9549863338470459, -0.218706414103508, 0.45242637395858765, -1.4297373294830322, 0.41839733719825745, -1.0048856735229492, 0.7241331338882446, 0.5231839418411255, 0.040715981274843216, 0.4100794196128845, 0.1835457682609558, 0.2638531029224396, 0.23748788237571716, -0.015644829720258713, 1.2207469940185547, -0.5235627293586731, 0.14415961503982544, 0.009221120737493038, -0.613422691822052, 0.6897541880607605, -0.24573275446891785, -0.6381076574325562, -0.1498836725950241, 0.059421781450510025, 0.168848916888237, 0.15577638149261475, -0.05465254560112953, 2.3256595134735107, 0.3618350923061371, 0.13411182165145874, -0.03816773742437363, -0.32496216893196106, -1.3314783573150635, -0.1418556571006775, -0.025136923417448997, 0.236083522439003, -1.085587739944458, -0.2197723239660263, 0.49137282371520996, 0.2651158273220062, 0.2931915521621704, 0.22525526583194733, 0.06872902810573578, 0.5352818369865417, 0.3854880928993225, 0.7648630142211914, 0.6445133090019226, 1.4795469045639038, -0.13100354373455048, 0.6734827756881714, -0.5633068680763245, -0.3999882936477661, 0.19519735872745514, -0.7830716371536255, 0.2462255358695984, 0.5523865818977356, 0.15209755301475525, 0.930730402469635, -1.660893440246582, -0.20873600244522095, 1.310314655303955, 0.22187228500843048, 1.0798531770706177, 0.8212985992431641, 0.23377981781959534, 0.029316283762454987, 0.07851091027259827, 0.27261999249458313, -0.11087249964475632, 0.8037967681884766, 0.6096410751342773, -0.1995197981595993, 1.0132055282592773, -0.8141394257545471, 0.003448547562584281, -0.7906668782234192, -0.4031030237674713, -0.11491671204566956, -1.2708255052566528, 0.40340670943260193, 0.9067167639732361, 0.7400898933410645, 1.216482400894165, 0.21274083852767944, -1.7791099548339844, 0.69969242811203, -0.6235780715942383, -0.1835537850856781, -0.8467634916305542, -0.8377035856246948, -0.6982970833778381, -0.2660283148288727, 0.0366964191198349, 0.02089635841548443, -0.08773303031921387, -0.5493305325508118, 0.2558816075325012, -0.7425603270530701, 1.1302422285079956, 0.7559885382652283, 1.258395791053772, 0.2148919403553009, 0.26492780447006226, -0.009882916696369648, 0.8583818078041077, -0.6474348902702332, 0.036018334329128265, 0.6351751089096069, -0.618404746055603, -0.7539142966270447, -1.7294331789016724, -0.8617345094680786, 1.4227828979492188, 0.8685662746429443, -0.44240328669548035, -0.43093809485435486, 1.0128997564315796, 1.166511058807373, -0.28986793756484985, -0.35273611545562744, 0.26302391290664673, -0.9891103506088257, 0.43405547738075256, 0.6225698590278625, -0.6426807045936584, -0.5444246530532837, -0.9704039096832275, -1.5007988214492798, 0.5698083639144897, 0.20292910933494568, -0.2593689560890198, 0.42868107557296753, 1.0110116004943848, 0.4327407777309418, 0.26048803329467773, -0.31285449862480164, 0.5159377455711365, -0.531110942363739, 0.6910595297813416, -0.8793213367462158, 0.659443736076355, -0.20664361119270325, 0.18519775569438934, -0.5638743042945862, 0.6126536726951599, -0.21523542702198029, 0.015631860122084618, -0.5261462926864624, -0.06970831006765366, 0.29701414704322815, 0.7492117881774902, -0.47667840123176575, -0.3815670311450958, 0.2793501317501068, -0.4931916892528534, -0.1122409850358963, -0.6692039966583252, 0.7434548139572144, 0.05670485273003578, -1.4182847738265991, -0.239610955119133, -0.3656897246837616, -0.037159040570259094, 0.04526432603597641, -0.6218516230583191, 1.6926321983337402, 0.8193944692611694, 0.5750724673271179, 0.6535367965698242, -0.44726383686065674, 0.3050444722175598, -0.34907078742980957, 0.7035507559776306, 1.3553466796875, -0.6802181005477905, 0.22086846828460693, -0.1956057846546173, -0.7225221395492554, 0.24491015076637268, -0.22608056664466858, 0.06199515610933304, -0.8001269698143005, -0.8255493640899658, -0.6825212836265564, -0.33477985858917236, 0.5869776606559753, -0.010148223489522934, -0.48326295614242554, 0.5859284996986389, -1.1809139251708984, -0.35647961497306824, 0.43735530972480774, -1.0291956663131714, -0.4109179675579071, -1.383960485458374, 0.551770031452179, 0.14771725237369537, 1.1624627113342285, 0.05340156704187393, 0.4784069061279297, -1.145229458808899, -1.0364638566970825, -0.8134616613388062, -0.055544883012771606, 0.8293038606643677, 0.42592859268188477, -1.0878868103027344, 0.7246264219284058, 0.36601021885871887, -0.26461365818977356, -0.7266992330551147, 0.06236466392874718, -0.29225873947143555, 0.28085756301879883, -0.2601448893547058, 0.4483984708786011, 0.16714833676815033, 1.1176140308380127, 0.7130688428878784, 1.1518473625183105, 0.8370899558067322, 1.0776070356369019, -1.056018352508545, -0.32137417793273926, -0.3426746428012848, 0.8414547443389893, -1.2028146982192993, -0.6385138630867004, -0.5335033535957336, -0.9964515566825867, -0.4217670261859894, 0.5292300581932068, 0.519156813621521, -0.8695055842399597, -0.5715409517288208, -1.515110731124878, 0.5597087740898132, -0.8888206481933594, -0.1337786465883255, 0.007842754013836384, -0.553290605545044, 0.48116734623908997, 0.12915778160095215, -0.4632242023944855, -1.1909403800964355, -0.9069709181785583, 0.4205273389816284, 0.44002002477645874, -0.9175572395324707, 0.5626019835472107, 0.20327796041965485, -0.164287731051445, -0.7628527283668518, 1.3838320970535278, 1.6761441230773926, -0.009465521201491356, 0.2838335931301117, -0.47884079813957214, 0.6364989280700684, 0.40589460730552673, -0.7978194952011108, 0.06713628023862839, -0.6246308088302612, 0.7259085178375244, 0.09332015365362167, -0.2596748173236847, 0.0750102698802948, 0.28080517053604126, -0.3388994634151459, 0.14474545419216156, 0.7700204849243164, -0.10224289447069168, -0.8952184915542603, 1.380150318145752, 0.7865402698516846, -0.3821813762187958, -0.2736569344997406, 0.7183178067207336, 0.38542693853378296, 0.1432507187128067, 0.5172150135040283, 0.844612181186676, -1.237534999847412, 0.4259948432445526, 0.09873069822788239, -0.054306644946336746, 0.03728248551487923, -0.7247014045715332, -1.5630282163619995, -0.41176533699035645, -0.560477077960968, -1.2089101076126099, 0.029981564730405807, -1.0414714813232422, -0.17830371856689453, 0.11440415680408478, -0.03213290125131607, 0.4831271767616272, -0.8973010182380676, 0.030270757153630257, -0.9963438510894775, -0.003104392671957612, 0.4200747013092041, -0.5212502479553223, 0.5941575169563293, -0.29284170269966125, -0.3826773762702942, -1.102800726890564, -0.023585904389619827, 0.03222241625189781, 0.42149242758750916, 0.12133333086967468, -0.44582515954971313, -0.13272720575332642, -0.7060645222663879, -0.5496354699134827, 0.4876587986946106, -1.2204357385635376, 0.1157526969909668, -0.0606808103621006, -1.2134448289871216, 0.36538493633270264, 0.9572460055351257, -0.2913050949573517, -0.12831003963947296, -0.6839431524276733, -0.31761616468429565, 0.35073232650756836, 0.08236084133386612, 0.07052401453256607, -0.3502925932407379, 0.8803417086601257, -0.02001572586596012, -0.4914458990097046, 0.25837117433547974, -0.46902862191200256, 0.7937739491462708, -0.48136982321739197, 0.4783448278903961, 0.8051706552505493, -0.1792004555463791, 1.0510282516479492, -0.914286732673645, 0.1560809314250946, 0.25225532054901123, -0.14049167931079865, 0.1589011698961258, -0.5282823443412781, -1.313554286956787, 0.24646563827991486, 0.06469665467739105, 0.5612870454788208, 0.36976417899131775, 0.10667701810598373, -0.006996444426476955, -0.9605422019958496, 0.5277560353279114, 0.2108311653137207, -0.6221827268600464, 0.25590816140174866, 1.7750520706176758, 1.858909249305725, 0.3573552966117859, 0.5614404678344727, 0.227325901389122, 0.44523921608924866, -1.2467213869094849, -0.6457891464233398, -0.929860532283783, -0.03990095108747482, -0.8577861785888672], [0.07677395641803741, 1.3806259632110596, -1.2699363231658936, -1.5356322526931763, 0.28784123063087463, -0.6600820422172546, 0.3808666467666626, 0.09548139572143555, -0.11653673648834229, -0.943620502948761, -1.2869826555252075, 0.2603827714920044, 0.7064964771270752, 1.3548978567123413, 1.1988393068313599, 0.18649962544441223, 0.47548431158065796, -1.0430010557174683, 0.1967732459306717, 0.7167782187461853, 0.6623823642730713, 0.2816668748855591, -0.3298620581626892, -0.712647557258606, 0.3337882161140442, 0.26225709915161133, -1.3182188272476196, -0.12607836723327637, -1.2256340980529785, -0.5030423998832703, 1.0629892349243164, -0.8521609902381897, 0.6328336596488953, -0.5084280967712402, -2.006047248840332, -0.8524157404899597, 1.0501313209533691, 0.7970028519630432, -0.39185667037963867, 0.23745490610599518, 1.163370966911316, 0.8688482642173767, 0.07946927100419998, -1.2634555101394653, 0.8793937563896179, -0.7095260620117188, 0.3003305494785309, -0.6453291177749634, 0.21897484362125397, -1.2830053567886353, 0.9315306544303894, -0.9804143309593201, -0.1349584311246872, 0.6443076133728027, 0.6426131129264832, 0.45295456051826477, -0.47361186146736145, 0.3182075619697571, 0.5347548127174377, 0.0762651264667511, 1.2109607458114624, 0.5530859231948853, -1.133271336555481, 0.6734282374382019, 0.1683398187160492, -0.02213137410581112, -0.21751420199871063, 0.34552910923957825, -0.7009471654891968, -0.19861863553524017, 0.048688288778066635, 0.4266055226325989, -0.7008364200592041, 0.18486183881759644, -1.34322988986969, 0.7325365543365479, 0.2292095571756363, 0.3040083050727844, 0.430677592754364, 0.9410544037818909, -0.9943044781684875, -0.6342321634292603, 0.3019806146621704, -0.7355782389640808, 0.5559640526771545, 0.17867693305015564, 0.4085918068885803, -0.7705969214439392, -0.39057350158691406, 1.7995176315307617, -0.4921817481517792, 0.34358084201812744, -0.122661292552948, -0.15047724545001984, -0.2145165205001831, -0.31304284930229187, 0.40370622277259827, -0.542175829410553, 0.13593944907188416, -0.16933231055736542, -0.7189620733261108, -0.31108638644218445, 0.41670727729797363, -0.08561930805444717, 0.81560879945755, 1.351537823677063, 0.42163193225860596, -0.9785571098327637, -0.48656484484672546, -0.1423010230064392, 0.4801396131515503, -0.4237585961818695, -1.172247290611267, -1.4889798164367676, -0.6606987714767456, 0.5740432739257812, 0.9610428810119629, 0.03470531478524208, 0.9044538736343384, 1.309261679649353, -0.8128468990325928, -0.2621709406375885, -0.15001904964447021, 0.5778190493583679, 0.9277558326721191, 0.26243653893470764, -0.5886715650558472, -0.058925922960042953, -0.04187340661883354, -0.23356039822101593, -0.18212147057056427, 0.31275075674057007, -0.5020715594291687, 0.8131093382835388, -0.2330971360206604, 0.829891562461853, -0.45073482394218445, -0.6139722466468811, 0.5421504378318787, -0.5819083452224731, 0.2945268452167511, -0.7967106103897095, -0.8748414516448975, -0.9362154006958008, 0.3065093159675598, -0.6610477566719055, 0.09301811456680298, -0.1657586246728897, -0.6893379092216492, 0.5363911390304565, -0.5183603167533875, 0.6062725186347961, -0.16856464743614197, 1.358058214187622, -0.15808986127376556, 0.060468029230833054, 0.6049166321754456, -0.1453263759613037, -0.30961480736732483, -0.3202655613422394, 0.7158974409103394, 0.47444602847099304, -0.8426102995872498, 0.8267077803611755, -0.06057871878147125, -0.21555764973163605, 0.6185052990913391, 0.16059890389442444, -0.5764971375465393, 0.7836573719978333, -0.6300258636474609, -0.03356556221842766, -0.336588978767395, 0.18668901920318604, 0.5999709367752075, -0.13327720761299133, 1.1702325344085693, -0.7807235717773438, -0.19164608418941498, -0.8150057792663574, 0.6520563960075378, -0.8523508906364441, 0.17207194864749908, 0.13949546217918396, 0.347182035446167, -0.30826592445373535, -0.22873236238956451, -0.6627998948097229, 0.3976166546344757, -0.48923248052597046, -0.837409257888794, 0.01728380285203457, -1.0773849487304688, 0.2311161905527115, -0.19557271897792816, -0.9966260194778442, 0.9091746211051941, -1.1049385070800781, -0.38074779510498047, 0.5220676064491272, -0.22319923341274261, 0.03329313173890114, -0.9423344731330872, 0.396999329328537, -0.874788761138916, 0.9802021384239197, -0.10028577595949173, 0.09327081590890884, -0.4843990206718445, -0.032881058752536774, 1.0841795206069946, -0.23211826384067535, -0.41474974155426025, 0.8798545598983765, 0.31414005160331726, -0.7258337140083313, -0.09912698715925217, 0.4129366874694824, -0.012055560946464539, -0.044803619384765625, 0.8503963947296143, 0.0005677081644535065, 1.241368293762207, 0.9740049242973328, 0.09024330973625183, 0.09999401122331619, -0.9174879193305969, -0.2298884391784668, -1.0496505498886108, 0.2580782175064087, -0.6691705584526062, -1.1030375957489014, 0.6451396942138672, 0.7325820922851562, 0.19750022888183594, 0.9518560171127319, -0.3246753215789795, 0.809966504573822, 0.8839257955551147, 0.8911351561546326, 0.378470778465271, -0.328023761510849, -0.5228123068809509, -0.09553094953298569, -0.2057301104068756, 0.32259050011634827, 0.9379257559776306, -0.013096507638692856, -0.7358396649360657, 1.2085250616073608, -0.3378508388996124, -0.16680823266506195, 0.6601868271827698, -0.03360723704099655, -0.11990771442651749, -0.8607083559036255, 0.023753192275762558, 0.22966264188289642, -0.7933010458946228, 1.1439464092254639, 0.8388224840164185, -1.2664599418640137, -0.32092586159706116, -0.2074742317199707, -0.5341672301292419, -0.5014175772666931, -0.45322224497795105, -0.9018877148628235, 0.21845240890979767, -0.0757814422249794, 0.08929818123579025, -0.026647543534636497, 0.10307558625936508, 0.9529176354408264, -0.0035988306626677513, -0.05710273236036301, -0.3997691571712494, 0.3708120882511139, 0.5552378296852112, 0.7013579607009888, 0.3442513942718506, -1.7392083406448364, -0.48397621512413025, -0.06709574908018112, 0.2580215036869049, 0.3122435212135315, -0.49801307916641235, 0.5791497826576233, 0.45479488372802734, -0.8046103715896606, 0.3223384618759155, 0.06951528042554855, -0.3217509686946869, -0.47366780042648315, 0.1352577656507492, 0.3997054100036621, 0.3202735483646393, -0.6104236245155334, -0.891555666923523, -0.4419594705104828, 0.26130592823028564, 1.1269536018371582, 0.6493079662322998, 0.9161345362663269, 0.48089855909347534, -0.17252230644226074, -0.3969975709915161, -0.25686514377593994, -0.2886400818824768, 0.19382351636886597, 0.07124646753072739, -0.545630156993866, -0.2362951785326004, -0.21415407955646515, 0.057872410863637924, 1.60462486743927, 0.2937034070491791, 1.1085001230239868, 0.616168200969696, -0.14651483297348022, -0.7783207297325134, -0.5816746950149536, 0.5759197473526001, -1.052229642868042, -0.002659915015101433, 1.1434717178344727, -0.6389883160591125, -0.03269163519144058, -0.5278652310371399, -0.24851027131080627, 1.0929487943649292, 0.12289006263017654, 0.20727598667144775, -0.7444596290588379, -0.2144932746887207, -0.5034123063087463, 1.2480567693710327, 0.004542395938187838, 0.36008894443511963, 0.006451457738876343, -0.29231998324394226, 0.4241555631160736, 0.8982851505279541, -0.26882490515708923, 0.6584389209747314, -0.12912389636039734, -0.3083720803260803, -0.7276343107223511, 0.5432356595993042, 1.0483380556106567, -0.23921829462051392, -0.0661541223526001, -0.7357192039489746, -0.1704714447259903, -0.7258622646331787, 0.6096521615982056, 0.5895826816558838, 1.1225143671035767, 0.18101397156715393, 0.4686220586299896, 0.6326187252998352, -0.13210873305797577, 0.022387726232409477, -0.5591018795967102, 0.8971781134605408, 0.4096233546733856, 1.2036272287368774, 0.058178387582302094, -0.5088319182395935, 0.4270830750465393, -0.7456441521644592, -0.15033145248889923, 0.259827196598053, 0.5951660871505737, -0.5921875238418579, -0.6611849665641785, -1.067111611366272, 0.10493308305740356, 0.13352075219154358, -0.31967440247535706, 0.27178800106048584, 0.1823800653219223, -0.5125186443328857, -0.7436568140983582, 0.7173309922218323, 0.27253809571266174, -0.23074352741241455, -0.36237362027168274, 0.18888568878173828, 0.29103586077690125, 0.0079725980758667, -0.20175319910049438, -0.5132974982261658, 0.1045583188533783, -0.07576772570610046, -0.44578227400779724, -0.7607650756835938, -0.020222440361976624, -0.0974377766251564, 0.18571016192436218, -0.5206632614135742, -0.1202344074845314, -0.25559866428375244, -0.38780614733695984, 0.9081661701202393, 0.29545891284942627, 0.3104698061943054, -0.03160027787089348, -0.744675874710083, -0.15091195702552795, 0.28390854597091675, 0.6200782060623169, 0.0964110866189003, 0.7609161734580994, -0.5780855417251587, -0.4238855838775635, 0.27341678738594055, -0.5212638974189758, -0.35722091794013977, -0.12736453115940094, -1.1084481477737427, 0.3737258017063141, -0.2365940511226654, -0.3500305116176605, 1.5649844408035278, -0.2843477427959442, 0.25674188137054443, 0.7082337737083435, -0.40497130155563354, -1.0971463918685913, 0.3312560021877289, 0.5651206374168396, 0.6428191661834717, -0.42487746477127075, 0.6661490201950073, 0.11274012178182602, -0.36083313822746277, 1.1911230087280273, -0.5230044722557068, 0.7252320051193237, 0.3486858308315277, -1.3880549669265747, 0.09366907924413681, 0.4326212704181671, 0.9352934956550598, 0.7396877408027649, 0.2833280563354492, -0.19006019830703735, -1.2919390201568604, 0.7980775237083435, -0.44194120168685913, 0.730673611164093, 0.7631547451019287, -0.07725837081670761, 1.5956802368164062, -1.1789462566375732, -0.7006160020828247, 0.6847208142280579, 0.5323665142059326, 0.3379839360713959, 0.8768864274024963, 0.06324831396341324, -0.8279657959938049, 0.08402083069086075, 0.7857793569564819, -0.11285524070262909, 0.5985491275787354, -0.4420994818210602, -0.4452437162399292, 0.4258463680744171, -0.22881484031677246, 0.3422882556915283, -0.1778225600719452, -0.3183348476886749, -0.2191949039697647, 0.025645582005381584, 0.3065781891345978, 0.41716232895851135, 0.4557121694087982, 1.5496201515197754, -0.8877393007278442, -1.5756070613861084, 0.2399551272392273, -0.6641305685043335, 0.22716374695301056, 0.8130924105644226, -0.641526997089386, -0.43324699997901917, -0.8688603043556213, -0.40343207120895386, 0.2255474179983139, -0.7950252890586853, -0.2795006036758423, 0.036226462572813034, -1.5510789155960083, 0.05888598412275314, 0.16077403724193573, 1.5132378339767456, 0.9455281496047974, 0.2767052948474884, 0.13431093096733093, 0.3379494845867157, -0.0667891651391983, 0.30335167050361633, -0.029513690620660782, -0.8096449971199036, 0.868901789188385, -0.9498786330223083, -0.6156595945358276, 0.8785766959190369, 1.0949335098266602, 0.3215770721435547, -0.26678037643432617, 0.4775385856628418, 1.346093773841858, -0.36143413186073303, -0.4660737216472626, 0.11159200966358185, -0.9312162399291992, 0.8688282370567322, 0.3134683072566986, -0.8811243772506714, -0.4928604066371918, -0.15748059749603271, -1.908845067024231, 0.929354190826416, -0.538619339466095, -0.9004946947097778, 0.12061671912670135, 0.1754385530948639, 0.5971811413764954, 0.44589802622795105, -0.6867509484291077, 0.19522801041603088, 0.5713384747505188, -0.578320324420929, -0.9203327298164368, -0.020842308178544044, 0.5815801024436951, 0.05561407282948494, -0.29661107063293457, 0.550616443157196, 0.5506563782691956, 0.4861295819282532, 0.5607157349586487, 0.16276758909225464, 0.7191662192344666, 0.6269069910049438, 0.49483972787857056, -1.7959730625152588, -0.05693226680159569, -0.9808796644210815, 0.22775311768054962, -0.3470669388771057, 1.0499666929244995, -0.3290523588657379, -1.1209434270858765, -0.008448265492916107, 0.4484178125858307, -0.5815371870994568, -0.5077971816062927, -0.5145175457000732, 0.4334772825241089, 0.6245616674423218, -0.9602362513542175, 0.10073895752429962, -0.2579309940338135, -0.8000388145446777, -0.5235157608985901, 0.5557928085327148, 0.8035745024681091, -1.172700047492981, -0.13555078208446503, 0.3886544704437256, 0.14246851205825806, 0.07037915289402008, -0.10416383296251297, -0.05367007479071617, -0.9977031946182251, -0.9110884666442871, -0.21748588979244232, 0.0929533913731575, 0.5551129579544067, -0.34759992361068726, 0.018439941108226776, 0.14802969992160797, -1.6698623895645142, 0.5637828707695007, 0.16440066695213318, -1.184288501739502, -0.40341007709503174, -1.1307461261749268, 0.834144651889801, 0.6086521148681641, -0.1953401416540146, 0.2487819492816925, 0.7998754978179932, -0.506863534450531, -0.6897277235984802, -1.4294092655181885, 0.010800709947943687, 0.7598833441734314, 1.183397650718689, -0.834864616394043, 0.4853964149951935, 0.585618793964386, -0.25289568305015564, 0.22920653223991394, 0.18972837924957275, -1.3923678398132324, -0.5434566140174866, 0.3747464716434479, 0.5102306008338928, 0.5031461715698242, 0.9333145022392273, -0.0062044532969594, 0.2667692005634308, 0.18640179932117462, 0.451277494430542, -0.14275723695755005, -0.026061540469527245, -0.5534740090370178, 0.1552751660346985, -1.0083777904510498, -0.7735018730163574, 0.8361942172050476, -0.303524911403656, -0.4120694696903229, 0.642204761505127, 0.9817479848861694, -0.28353151679039, -0.20404116809368134, 0.005872579291462898, 0.6107168793678284, -0.446209192276001, 0.9331203699111938, -0.06275397539138794, -0.7416232824325562, -0.25580549240112305, -0.17144939303398132, 0.3710358440876007, -0.598864734172821, 0.3688177466392517, 0.35131141543388367, 0.03695237636566162, -0.4252743721008301, 0.6982394456863403, 0.428684800863266, -0.051401782780885696, -0.40762782096862793, 1.1867016553878784, 1.4739235639572144, -0.3987923264503479, 0.10511352866888046, 0.0917266309261322, 0.08420447260141373, 0.3073676526546478, -0.27444493770599365, -0.7230938673019409, -0.5136095881462097, 0.9412675499916077, 0.25601473450660706, -0.24044929444789886, -0.8557400107383728, 0.1756233274936676, -0.13141801953315735, -0.08104298263788223, 0.9796038269996643, -0.09278750419616699, -0.42163050174713135, 0.8281049132347107, -0.03720657154917717, -0.27082523703575134, 0.2495735138654709, 0.381132572889328, 0.4663940668106079, 0.18828947842121124, 0.3468914330005646, 0.4162493348121643, -0.11815428733825684, 1.0734953880310059, 0.5507495999336243, -0.3650485575199127, -0.521422803401947, -0.7849568724632263, -1.5338629484176636, -0.13090185821056366, -0.3194580376148224, -0.8435891270637512, 0.25848227739334106, -0.5081692934036255, -0.17257514595985413, 0.4420216977596283, -0.13005298376083374, 0.34449660778045654, -0.7162193059921265, 0.002079254947602749, 0.41401979327201843, 0.22765688598155975, 1.2774194478988647, -0.20293031632900238, 0.9105727672576904, 0.47310206294059753, 0.28167977929115295, -0.1058100014925003, -0.04701106250286102, -0.04849773645401001, 0.6158990263938904, -0.6271253228187561, -0.9315049052238464, -0.017217809334397316, -0.44522199034690857, -0.5182167887687683, 0.42193347215652466, 0.31086456775665283, 0.7137261033058167, 0.056439775973558426, -1.1453378200531006, -0.6624892950057983, 0.42977187037467957, 0.4649963676929474, -0.7050033211708069, -0.22242037951946259, -0.3356916308403015, 0.28504976630210876, -0.3140261173248291, 0.8836768865585327, -0.2769641876220703, 0.510994553565979, 0.8934174180030823, 0.06513644754886627, -1.179043173789978, -0.32954010367393494, 1.0783615112304688, -0.5624997615814209, 0.5850046277046204, -1.0615414381027222, -0.038976531475782394, -0.4773730933666229, -0.43601498007774353, -0.07759978622198105, -0.03612527996301651, -0.8314492106437683, -0.08014488965272903, -0.4907747507095337, -1.0464671850204468, -0.7646406888961792, 0.32006576657295227, 1.1116158962249756, -0.8605642914772034, 0.29647326469421387, 0.30594244599342346, -1.0659517049789429, 0.8152735233306885, 0.38615065813064575, -0.019138673320412636, 0.14671479165554047, 1.4974867105484009, 1.5170304775238037, -0.0737675279378891, -0.3280562162399292, -0.44858065247535706, 0.5113017559051514, -0.6719384789466858, -0.0006050984375178814, -0.5500922203063965, 0.24620871245861053, -0.45770585536956787], [0.32628145813941956, 1.921994924545288, -1.8438161611557007, -1.6716302633285522, 0.20231404900550842, -0.015833202749490738, -0.13701274991035461, 0.4930061399936676, -0.5480270385742188, -0.8625169396400452, -1.2527518272399902, 1.0902810096740723, 1.3410555124282837, 1.4350016117095947, 0.6010682582855225, 0.4681169092655182, 0.7468911409378052, -0.43957144021987915, 0.2608230412006378, 0.988936722278595, 0.6037111282348633, -0.4545603394508362, -0.5417208671569824, -0.8849959373474121, 0.376421183347702, 0.5439892411231995, -1.7898749113082886, -0.5557032823562622, -0.9383565783500671, -1.163804054260254, 0.9228030443191528, -0.5239741802215576, -0.45720118284225464, -0.3194696307182312, -1.9668363332748413, -1.1137357950210571, 0.30314627289772034, 0.5314669013023376, -0.09669595211744308, 0.9851673245429993, 0.7203163504600525, 0.6611511707305908, -0.027006305754184723, -1.3035968542099, 1.0258238315582275, -0.35567882657051086, -0.42483001947402954, -0.9469076991081238, 0.03579145297408104, -1.30118989944458, 0.5728465914726257, -0.6417860984802246, 0.27525773644447327, 0.24963942170143127, 0.4898563623428345, 0.9237989783287048, -0.017878353595733643, 1.0143877267837524, 0.17540761828422546, 0.05254814773797989, 1.374118447303772, 0.061194583773612976, -0.8162965774536133, -0.14761880040168762, 0.5750535726547241, 0.09022631496191025, 0.5517956018447876, 0.9095413684844971, -0.6485456228256226, 0.39853715896606445, 0.48608890175819397, 0.3136425316333771, -0.6566770672798157, 0.16952066123485565, -1.2922732830047607, 0.07957404106855392, 0.02910531498491764, -0.15570993721485138, -0.10089302062988281, 1.1618151664733887, -1.013416051864624, -0.42471519112586975, 0.15214252471923828, -0.30506572127342224, 0.5836457014083862, 0.37861981987953186, -0.264467716217041, -0.6653295159339905, -0.09602612257003784, 1.2638189792633057, -0.3510333001613617, 0.37358978390693665, 0.06856510043144226, 0.010496617294847965, -0.5739095211029053, -0.8061501979827881, 0.5518168210983276, -0.7401300072669983, 0.09525644779205322, -0.8716109991073608, -0.4627341628074646, -0.7348576784133911, 0.9255443215370178, 0.6875876188278198, 1.0488221645355225, 1.4501607418060303, 0.5332505702972412, -0.8640580773353577, -0.749352753162384, 0.5414978265762329, 0.357870489358902, 0.05776806175708771, -1.3973170518875122, -1.0774434804916382, -0.5060680508613586, 0.6095068454742432, 0.672960102558136, -0.7220097184181213, 1.0778712034225464, 0.9914866089820862, -0.3939964771270752, -0.9294272661209106, -0.9683211445808411, 1.0144442319869995, 1.2311354875564575, 0.38691309094429016, -0.5197381973266602, 0.1069340929389, 0.06860335916280746, -0.654815137386322, 0.18378053605556488, 0.15978489816188812, -0.7340490818023682, 0.5831504464149475, 0.2264251559972763, 1.0997834205627441, -0.23438136279582977, -0.767601728439331, 0.9034432172775269, -0.6586472988128662, -0.025968117639422417, -0.832632839679718, -0.8011084794998169, -0.8466947674751282, -0.2215806245803833, -0.007217132020741701, -0.2500390112400055, 0.06975405663251877, -1.3568999767303467, 0.208119735121727, -1.2241454124450684, 0.5093085169792175, -0.013803769834339619, 1.605486512184143, -0.368936151266098, 0.5774706602096558, 0.7968924045562744, -0.10582393407821655, -0.5603663325309753, 0.6197933554649353, 0.697787344455719, 0.17120002210140228, -1.189841389656067, 1.0047580003738403, 0.2608114778995514, -1.233959674835205, 1.5259195566177368, 0.0665464848279953, -0.1791219264268875, 0.9268644452095032, -0.9688248634338379, -0.07550641894340515, -0.4406132102012634, 0.3646884858608246, 0.5037547945976257, -0.4684503972530365, 0.7340047955513, -0.588437020778656, 0.03339190408587456, -0.6586658954620361, -0.11519312858581543, -0.6598106622695923, 0.26612234115600586, 0.10100862383842468, 0.3869819939136505, 0.07626812160015106, -0.1792334020137787, -0.5374497771263123, -0.6062873005867004, -0.18344494700431824, -1.4539765119552612, 0.22566714882850647, -1.5918716192245483, -0.23589195311069489, -0.2521922290325165, -0.9430881142616272, 0.5307716131210327, -0.056691478937864304, -0.061659932136535645, 0.39255619049072266, -0.47626376152038574, -0.4151713252067566, -1.4469114542007446, -0.2323208749294281, -1.1352373361587524, 0.8214721083641052, -0.26324713230133057, 0.5368818044662476, -0.5719915628433228, 0.2939355671405792, 1.3041318655014038, 0.19142763316631317, -1.115421175956726, 0.5656251311302185, 0.14131957292556763, -1.0933688879013062, -0.510585367679596, -0.03082440234720707, 0.2770423889160156, 0.7134939432144165, 0.8184497356414795, -0.04501519352197647, 0.5049569010734558, 0.6663867235183716, 0.0326785147190094, 0.15279550850391388, -1.190064787864685, -0.2662827968597412, -1.259790301322937, 0.16163946688175201, -0.6679757833480835, -0.3478807806968689, 1.2690485715866089, 1.0751953125, -0.5624279379844666, 0.8082947731018066, -0.2392202615737915, 0.6055549383163452, 1.0276012420654297, 0.8687385320663452, 0.26377296447753906, 0.5113332271575928, -0.8912036418914795, -0.31505292654037476, -0.3970082402229309, -0.22788240015506744, 1.3154546022415161, -0.020423606038093567, -0.21163073182106018, 1.1457171440124512, -0.4072229564189911, -0.3712880313396454, 0.24524709582328796, 0.33339792490005493, 0.2602875828742981, -0.743812620639801, 0.496398001909256, -0.2963584065437317, -0.7750941514968872, 1.1495059728622437, 0.4616168141365051, -1.7530144453048706, -0.8398271203041077, -0.31427711248397827, 0.19254624843597412, -0.3674203157424927, -0.20587724447250366, -0.9680440425872803, 0.8115509748458862, -0.12438299506902695, -0.06318913400173187, 0.28651291131973267, 0.1525839865207672, 0.6435204148292542, -0.24160441756248474, 0.017664644867181778, -0.27045726776123047, 0.5982337594032288, 0.24926769733428955, 0.5567165613174438, -0.4826154112815857, -2.1075241565704346, -0.40297025442123413, -0.3394581079483032, 0.5485498905181885, 0.4245069622993469, 0.23126542568206787, 0.562647819519043, 0.7647535800933838, -0.7552887201309204, 0.19237573444843292, -0.32801276445388794, -0.059713710099458694, -0.3571797311306, 0.3822251558303833, 0.419647753238678, 0.444487988948822, -0.29399603605270386, -0.9007295966148376, -0.5202773213386536, 0.03646309673786163, 1.0049872398376465, 0.5848501324653625, 1.090376615524292, -0.8205570578575134, -0.32100656628608704, -0.5141026973724365, -0.11904411762952805, -0.38543203473091125, 0.040820252150297165, -0.7569805979728699, -0.6316142678260803, -0.0896049216389656, -0.31751877069473267, -0.27875816822052, 0.9595367312431335, 0.05806224048137665, 1.755568265914917, 0.9431763887405396, 0.028942424803972244, -1.3298413753509521, -0.9544206857681274, 0.1322891116142273, -1.5635044574737549, 0.7143761515617371, 0.7062350511550903, -0.4286474585533142, 0.5969552397727966, -0.49471864104270935, -0.4685184359550476, 0.34855008125305176, -0.35567933320999146, 0.4157079756259918, -0.8248999714851379, -0.6629984378814697, -0.2084028422832489, 0.8815548419952393, 0.33322766423225403, -0.11069443076848984, -0.8767024874687195, -0.17720316350460052, -0.07595599442720413, -0.023650670424103737, -0.4701460301876068, 0.6491262912750244, 0.39567285776138306, -0.43569815158843994, -0.8240566849708557, 0.8203206062316895, 1.5768378973007202, -0.4325883388519287, 0.45622754096984863, -0.9315774440765381, 0.08635024726390839, -0.3813677728176117, 0.2583676278591156, 0.8617459535598755, 0.8048073053359985, 0.2933904230594635, -0.20629693567752838, 0.5075393915176392, -0.2671978771686554, 0.37372300028800964, -0.7517489194869995, 0.5076594948768616, 0.3063996136188507, 1.3463307619094849, 0.540214478969574, -0.12579475343227386, 0.5157300233840942, -0.665781557559967, -0.1305118203163147, 0.26297974586486816, 0.10400483012199402, 0.12097002565860748, -0.7570230960845947, -0.7166616320610046, 0.3823951482772827, -0.19890251755714417, -0.29629257321357727, -0.7919244170188904, -0.07655724883079529, 0.22896379232406616, -0.27073410153388977, 0.6169727444648743, -0.7015929818153381, -0.4822019636631012, 0.2645951807498932, 0.01374020054936409, 0.49269455671310425, -0.3579406440258026, -0.5238772630691528, -0.3082645833492279, 0.1684679239988327, -0.053362198173999786, -0.4853450357913971, -0.8702687621116638, -0.13819098472595215, 0.29169517755508423, 0.2661742866039276, -1.129875659942627, -0.5948014855384827, -0.03521718084812164, 0.0874939113855362, 0.0747426375746727, 0.7236540913581848, 0.8609139323234558, -0.5332314372062683, -0.08113593608140945, 0.23638123273849487, 0.509820282459259, 0.8381580114364624, 0.20922161638736725, 0.1690434217453003, -0.8833410739898682, -0.06413203477859497, 0.20596428215503693, -0.2733859717845917, -0.49117711186408997, -0.0970301404595375, -1.146910309791565, -0.2219427227973938, -0.3538982570171356, -0.40590420365333557, 1.4894709587097168, 0.2035006433725357, 0.3327224552631378, 1.1141564846038818, -0.3460330665111542, -0.7081987857818604, 0.4072197675704956, 0.4760606586933136, 0.3461824655532837, 0.20811259746551514, 0.8914614915847778, 0.6089432835578918, 0.4450323283672333, 0.6301257610321045, -0.607553243637085, 0.9468105435371399, 0.2939413785934448, -1.097240686416626, -0.324153333902359, 0.3885394036769867, 0.60442715883255, 0.5444966554641724, 0.5050492286682129, -0.15039299428462982, -1.4969936609268188, 1.2711853981018066, -0.19836977124214172, 0.9853341579437256, 0.5737542510032654, 0.8500818610191345, 1.6078319549560547, -1.0703760385513306, -0.34462302923202515, 0.3776947259902954, 0.43214473128318787, 0.4383682608604431, 0.2740427851676941, 0.4435046911239624, -1.2104065418243408, -0.002690340159460902, 0.5343762040138245, 0.1622038632631302, 0.7730218768119812, -0.6013630032539368, 0.026755886152386665, 0.388381689786911, -0.1389656364917755, 0.39500343799591064, -0.1651509702205658, -0.3874412775039673, 0.4807324707508087, -0.13056010007858276, 0.3164575397968292, 0.5604800581932068, 0.5937709808349609, 1.4995479583740234, -0.8690816164016724, -1.0902836322784424, 0.24272464215755463, -0.9049389958381653, 0.22798562049865723, 0.7292012572288513, -0.7249905467033386, -0.2775983214378357, -1.443016529083252, -0.2866688668727875, 0.11959762871265411, -0.4158547520637512, 0.06024222448468208, -0.017409900203347206, -0.810282289981842, -0.48075273633003235, -0.20853914320468903, 1.209523320198059, 1.2033406496047974, 0.8972777724266052, 0.6116865873336792, 0.3635473847389221, -0.3131341338157654, 0.5730659365653992, 0.11014824360609055, -0.43653520941734314, 0.27834340929985046, -0.8705494999885559, -1.1916322708129883, 0.7054147124290466, 1.222516655921936, 0.7093570232391357, 0.24029986560344696, 1.0502737760543823, 1.6712604761123657, -1.1749762296676636, -0.8926350474357605, 0.027996979653835297, -0.303139865398407, 0.8183532953262329, 0.1607932448387146, -0.766061007976532, -0.38317254185676575, 0.8560749888420105, -2.139199733734131, 1.2572312355041504, 0.023616008460521698, -1.177493929862976, -0.16642363369464874, -0.15061528980731964, 0.8394911885261536, 0.6331800818443298, -0.7193549275398254, 0.2059614062309265, 0.8520855903625488, -0.9469015002250671, -1.165853500366211, 0.5227713584899902, 0.12376154959201813, 0.6835066080093384, -0.3985799551010132, 0.6405400037765503, 0.5379164218902588, 0.15469014644622803, 0.7055099606513977, 0.687292754650116, 1.1010980606079102, 0.2541060149669647, 0.13413268327713013, -2.012146472930908, -0.44248631596565247, -0.9401341676712036, 0.21601149439811707, -0.018429363146424294, 1.4530588388442993, -0.00797165185213089, -0.5498302578926086, 0.5145759582519531, -0.10168828070163727, -0.4139029085636139, -0.7966955900192261, -0.5916980504989624, 0.9342043995857239, 0.3111436665058136, -0.5062512159347534, 0.029113883152604103, -0.19317716360092163, -0.3447759449481964, 0.031942371279001236, 0.27447211742401123, 0.7150377631187439, -1.6119859218597412, -0.5487121343612671, -0.018032655119895935, 0.12169229239225388, 0.10493858903646469, -0.07969033718109131, 0.2249501794576645, -0.9573458433151245, -1.399789571762085, -0.4323793053627014, -0.2197655737400055, 0.39912161231040955, -0.8846858739852905, -0.4661245346069336, -0.2308633029460907, -1.514255404472351, 1.0943628549575806, -0.15689167380332947, -1.2026069164276123, -0.543502688407898, -1.2641332149505615, 0.8812037706375122, 0.02996455691754818, -0.015667326748371124, 0.3930860459804535, 0.5968249440193176, -0.6094823479652405, 0.042818740010261536, -0.8341696858406067, 0.2027437835931778, 1.1029630899429321, 1.5576844215393066, -0.592064619064331, 0.09595954418182373, 0.26277032494544983, -0.13548073172569275, -0.252492755651474, 0.0018544960767030716, -1.1401474475860596, 0.476962685585022, 0.4002560079097748, 0.40213075280189514, 0.12061886489391327, 1.2865357398986816, 0.11374077945947647, 0.5577254891395569, -0.05327247828245163, 0.09392517805099487, -0.2099967896938324, -0.3024241030216217, -0.6886435747146606, 0.5080843567848206, -1.3149341344833374, -0.5191829204559326, 0.34016865491867065, -0.42769676446914673, -0.03928418084979057, 0.9438234567642212, 0.31547921895980835, -0.5457804799079895, -0.05009844899177551, 0.2320999801158905, 0.1584288775920868, -0.6565319299697876, 0.8080421686172485, 0.1547589898109436, -0.9842249751091003, -0.3773038387298584, 0.5442464351654053, 0.928969144821167, -0.9595156908035278, 0.35439613461494446, -0.07940296083688736, 0.5883737802505493, -0.24569754302501678, 0.7757411599159241, 0.44152697920799255, -0.400869756937027, -0.4765317738056183, 0.7872925400733948, 1.1573410034179688, 0.4301438629627228, 0.5114505887031555, 0.9462358951568604, -0.09942968189716339, 0.85714191198349, -0.28585517406463623, 0.07644322514533997, -1.2068402767181396, 0.3050263226032257, -0.19104769825935364, 0.012373348698019981, -0.6180023550987244, 0.5640604496002197, -0.002321343868970871, 0.08747400343418121, 0.6379756331443787, 0.3143670856952667, -0.343485027551651, 0.4043079614639282, 0.4278314411640167, -0.09134960174560547, 0.35973644256591797, 0.29796889424324036, 0.7806059718132019, -0.018494660034775734, 0.04020410403609276, 0.42041733860969543, 0.020128769800066948, -0.05504637584090233, 0.33908721804618835, -0.5320942401885986, -0.08824704587459564, -0.49916601181030273, -1.1825436353683472, 0.15439045429229736, 0.03934433311223984, -0.5795400738716125, 0.37233036756515503, -1.2862071990966797, -0.7325308918952942, -0.02168266661465168, -0.36025822162628174, -0.11701890826225281, -0.5725500583648682, -0.46781468391418457, 0.21520398557186127, 0.5981494188308716, 2.2312748432159424, 0.31078580021858215, 0.9591943025588989, 0.05696026608347893, 0.4245966970920563, 0.34365060925483704, -0.16864128410816193, 0.30956950783729553, 0.06860929727554321, -0.4056532680988312, -0.5579878687858582, -0.399827241897583, -0.5457080006599426, -0.3831396996974945, 0.9546093344688416, 0.10156671702861786, 0.43333005905151367, 0.10568835586309433, -1.4238373041152954, -1.0913137197494507, 0.835342288017273, 1.142175555229187, -1.4291720390319824, -0.21156786382198334, -0.04225519672036171, -0.19126658141613007, 0.18268823623657227, 1.2029647827148438, -0.6328698396682739, 0.8119885325431824, 0.2647917568683624, 0.09795812517404556, -1.0874240398406982, -0.3583873510360718, 0.3327762186527252, -0.6354967355728149, 0.420609712600708, -0.7771114706993103, -0.1082257553935051, -0.2797192335128784, -0.42594656348228455, -0.012362940236926079, 0.0016988329589366913, -0.23184140026569366, 0.36320674419403076, 0.3572237193584442, -0.8116267919540405, -0.5855244398117065, 0.9373539686203003, 0.31587743759155273, -0.3421449363231659, 0.6621325612068176, -0.5537499785423279, -0.9797406792640686, 0.7922824025154114, 0.6998917460441589, 0.2949279844760895, 0.5726812481880188, 1.9333553314208984, 1.531845211982727, -0.1836836040019989, -0.47384992241859436, -0.42108672857284546, 0.6684868335723877, -1.0128319263458252, -0.908044159412384, -0.2188391387462616, -0.08383277803659439, 0.3255707919597626], [0.5193480849266052, 1.7859516143798828, -1.7993453741073608, -1.3912668228149414, 0.1955994814634323, -0.11059939116239548, 0.6606051325798035, 0.5829099416732788, -0.5074655413627625, -0.8368289470672607, -0.7840495705604553, 0.6290220022201538, 0.8014944791793823, 1.6868261098861694, 1.1346769332885742, -0.34313899278640747, 0.6819494366645813, -0.8339492082595825, 0.85716313123703, 1.0355364084243774, 0.6186221837997437, 0.4631226062774658, -1.0007305145263672, -0.5786211490631104, 0.23049406707286835, 0.49928706884384155, -1.223922610282898, 0.21471847593784332, -1.7427558898925781, -1.0909901857376099, 0.9517908692359924, -0.4429440200328827, 0.13894255459308624, -0.8119634985923767, -2.0206048488616943, -1.4815655946731567, 1.425286889076233, 0.7472032904624939, -0.2214793711900711, 0.8999022245407104, 1.1890426874160767, 0.49301615357398987, -0.47199109196662903, -1.2587236166000366, 0.45145630836486816, 0.20563501119613647, 0.27356743812561035, -0.4688415825366974, -0.17449891567230225, -1.464880347251892, 0.5824679136276245, -0.4733082950115204, 0.6089394688606262, 0.6273667812347412, 0.9545872807502747, 0.4364170730113983, -0.31986483931541443, 0.7652508616447449, 0.20833691954612732, -0.2431047409772873, 1.0984054803848267, 0.2233646661043167, -0.8905618786811829, -0.22973015904426575, 0.05463726446032524, -0.213655486702919, 0.6292083859443665, 0.0687914788722992, -0.4710254967212677, 0.21853050589561462, 0.7765047550201416, 0.31460800766944885, -0.994964063167572, -0.10537492483854294, -1.644531488418579, -0.08845892548561096, -0.05870194733142853, 0.3247775435447693, 0.01799158565700054, 0.6232848167419434, -1.4117311239242554, 0.008343391120433807, 0.03298274427652359, -0.3769003748893738, 1.0129867792129517, 0.5928239822387695, 0.21269133687019348, -0.28940489888191223, 0.15972022712230682, 1.6724212169647217, -0.35887372493743896, 0.6646257638931274, 0.3096955418586731, -0.03700695186853409, -0.5354713797569275, -0.8766143321990967, 0.10406885296106339, 0.2679412364959717, 0.04902934283018112, -0.4515400230884552, -0.46221402287483215, -0.8591393232345581, 1.1956065893173218, 0.5062585473060608, 0.6593780517578125, 1.4426970481872559, 0.9645792245864868, -1.0037025213241577, -1.1442071199417114, -0.27280357480049133, 0.1617051512002945, -0.2863631546497345, -0.9372252225875854, -0.6930733919143677, -0.4377995729446411, -0.02099008858203888, 0.9584504961967468, 0.023118067532777786, 0.5204366445541382, 0.4811493456363678, -0.1014513447880745, -0.4911905825138092, -0.38058221340179443, 0.9675328135490417, 0.9740108251571655, -0.3465670943260193, -0.7883988618850708, -0.03357242792844772, 0.400234580039978, -0.8901227116584778, 0.12350883334875107, 0.3708838224411011, -0.3314967453479767, 0.8635138869285583, 0.11231624335050583, 0.6335203647613525, -0.17091555893421173, -0.2566530704498291, 0.42544829845428467, -0.9846084117889404, 0.056157294660806656, -0.9268414378166199, -0.5954148769378662, -0.824393630027771, 0.7612440586090088, -0.37275153398513794, 0.50630784034729, 0.20159770548343658, -1.1380540132522583, 0.405594140291214, -0.8111740946769714, 0.04819962754845619, 0.4156876504421234, 1.751101016998291, -0.2572847902774811, 0.25652238726615906, 0.9375028610229492, 0.2969514727592468, -0.5341964364051819, 0.7657194137573242, 0.7558263540267944, 0.2491227239370346, -1.471136450767517, 1.4291753768920898, 0.03201182559132576, -0.724635899066925, 1.4600753784179688, 0.16366344690322876, -0.06725581735372543, 0.7731029391288757, -0.9996261596679688, -0.10634621232748032, -0.6616307497024536, 0.48125872015953064, 0.11830821633338928, 0.3188090920448303, 1.2678658962249756, -0.7456645965576172, -0.7653156518936157, -0.5239382386207581, 0.2727971374988556, -0.13111089169979095, -0.2516029477119446, -0.5377378463745117, 0.3563210368156433, -0.5392113327980042, -0.21896734833717346, -0.7168830633163452, -0.14087693393230438, -0.47264039516448975, -1.1952475309371948, 0.6869494915008545, -1.765775442123413, -0.4020042419433594, -0.12387782335281372, -1.3577935695648193, 0.8886827230453491, -0.8590592741966248, -0.37035053968429565, 0.3420894742012024, -0.275333046913147, -0.09057123959064484, -0.980134904384613, 0.3122754693031311, -0.8932620286941528, 0.29374703764915466, -0.6928994655609131, 0.48448070883750916, -0.7248426079750061, 0.4254568815231323, 0.7750774621963501, 0.41645199060440063, -0.5094700455665588, 0.94403076171875, 0.20338965952396393, -1.29009211063385, -0.25742781162261963, 0.364517480134964, 0.5655887126922607, 0.721987247467041, 0.6175711154937744, -0.16081342101097107, 0.9840577840805054, 0.9161324501037598, 0.008998681791126728, 0.5420976877212524, -1.0854729413986206, -0.6197888851165771, -1.2693079710006714, 0.35471272468566895, -0.5247376561164856, -1.4891331195831299, 0.5619978308677673, 0.9843361973762512, -1.042291283607483, 0.24550189077854156, -0.34207403659820557, 0.3393198549747467, 0.9472107887268066, 1.1755715608596802, -0.24312081933021545, 0.2577071189880371, -0.26085591316223145, -0.4101385772228241, -0.5482375621795654, 0.5688050389289856, 1.5687625408172607, 0.3504275977611542, 0.2137308120727539, 1.5215041637420654, -0.6616315245628357, -0.34428051114082336, 0.44541600346565247, -0.10183797776699066, 0.273436963558197, -0.573299765586853, -0.058543816208839417, -0.7985246181488037, -1.4682389497756958, 1.4354205131530762, 0.6990247368812561, -1.7357362508773804, -0.572251558303833, -0.29880496859550476, 0.07263975590467453, -0.687491774559021, 0.1596325784921646, -0.3412320017814636, 0.35327476263046265, -0.1812170147895813, -0.2720208168029785, 0.15888670086860657, -0.3088493347167969, 0.6587729454040527, -0.021130641922354698, -0.07115179300308228, -0.23852065205574036, 0.18338385224342346, 0.8277117013931274, 0.5120276808738708, -0.14902140200138092, -1.9781694412231445, 0.08654291927814484, -0.25236591696739197, 0.8004918098449707, 0.18204903602600098, -0.16628940403461456, -0.1577802151441574, 0.7736806869506836, -0.4779304265975952, -0.3496286869049072, 0.044071607291698456, -0.6984631419181824, -0.2000410258769989, -0.5149655342102051, 0.6156690716743469, 0.13984182476997375, -0.5466985702514648, -0.8995656967163086, -0.44777676463127136, 0.07654811441898346, 1.1587094068527222, 0.43910926580429077, 1.4650722742080688, -0.4381992220878601, -0.477418452501297, -0.3219563066959381, -0.26432347297668457, -0.05926550179719925, 0.4040326476097107, -0.5436484813690186, -0.29132479429244995, -0.8522951006889343, -0.41323167085647583, -0.023703744634985924, 1.4383964538574219, -0.16348762810230255, 1.1627683639526367, 0.5700196027755737, -0.09194187819957733, -1.0234746932983398, -0.724425196647644, 0.3853370249271393, -1.4751591682434082, 0.827521800994873, 0.7445236444473267, -0.3342941105365753, 0.5057541728019714, -0.10825823247432709, -0.056981004774570465, 0.9716952443122864, 0.370715469121933, 0.35611873865127563, -0.6298778057098389, -0.3571292459964752, -0.14898884296417236, 0.6223989725112915, 0.0725899338722229, -0.011521072126924992, -1.071547031402588, 0.06927691400051117, 0.1998584270477295, -0.16255956888198853, -0.4078364372253418, 0.965665340423584, -0.450690895318985, -0.25762519240379333, -0.5962539911270142, 0.4334246814250946, 1.4826387166976929, 0.18484312295913696, 0.3305957317352295, -0.7069781422615051, -0.38575437664985657, -0.37975582480430603, 0.7853954434394836, 1.0420244932174683, 0.7642727494239807, -0.19345489144325256, 0.34337204694747925, 0.9118444919586182, 0.20790265500545502, -0.03964288905262947, -1.032914638519287, 1.0329951047897339, 0.2694509029388428, 1.1611878871917725, 0.5468913912773132, -0.18195655941963196, 0.03254270926117897, -0.05537259951233864, -0.21725493669509888, 0.062021780759096146, 0.11759260296821594, 0.29499125480651855, -0.5280197858810425, -0.520553708076477, 0.08222727477550507, -0.21720285713672638, -0.22942744195461273, 0.3833785951137543, 0.05394989252090454, 0.12565462291240692, -0.12512291967868805, 0.7665659785270691, -1.0027884244918823, -0.28040897846221924, -0.2894912660121918, -0.7476683855056763, 0.2867209017276764, -0.024670036509633064, -1.1200153827667236, -0.10589016228914261, 0.21239390969276428, 0.027820654213428497, -0.74410080909729, -0.9590764045715332, -0.4949905276298523, 0.30806463956832886, 0.7786392569541931, -1.1768288612365723, -0.022646663710474968, -0.2800322473049164, 0.2822081744670868, 0.26859328150749207, 0.04956101253628731, 0.5586400032043457, -0.18470433354377747, -0.07029121369123459, 0.470537930727005, 0.48344945907592773, 0.9621421694755554, 0.3237602412700653, -0.2810395061969757, -0.6927223801612854, -0.14956513047218323, 0.7559905648231506, -0.30221015214920044, -0.5699727535247803, 0.15734849870204926, -1.391878366470337, -0.040813859552145004, -0.8259053826332092, -0.4237261712551117, 1.1147133111953735, 0.010712350718677044, -0.3412685692310333, 1.1155805587768555, -0.2057335376739502, -1.447776198387146, 0.03750839829444885, 0.19320736825466156, 0.1727646142244339, -0.1755513697862625, 0.6774948835372925, 0.6615558862686157, -0.12523099780082703, 0.6199765205383301, -0.1177813708782196, 0.5732809901237488, -0.43197891116142273, -0.9766362309455872, 0.38596850633621216, 0.5082759857177734, 1.0769011974334717, 0.8251823782920837, 0.6464030146598816, -0.8705875277519226, -1.4599580764770508, 0.9395490288734436, -0.5762816667556763, 0.9111087322235107, 0.7165445685386658, 0.9706860184669495, 1.5875078439712524, -1.7860888242721558, -0.176711767911911, 0.7892964482307434, 0.4554746150970459, 0.8821069598197937, 0.38945308327674866, 0.24192969501018524, -0.7371686697006226, 0.12529803812503815, 0.4393424391746521, -0.01450119074434042, 0.32796990871429443, -0.26754000782966614, -0.5611038208007812, 0.5297099351882935, -0.698894739151001, -0.33483147621154785, 0.23802070319652557, -0.37058448791503906, 0.3746880888938904, -0.5010955929756165, 0.07178405672311783, 0.99283367395401, 0.8427188396453857, 1.249766230583191, -1.1508381366729736, -1.570353627204895, 0.4460562467575073, -0.44892042875289917, 0.011139526031911373, 0.6699689030647278, -0.9029281139373779, -0.3863792419433594, -1.2967665195465088, -0.2821268141269684, 0.6027872562408447, -0.3534564673900604, -0.20408698916435242, -0.4235520362854004, -0.7870963215827942, 0.2126058042049408, -0.008032413199543953, 1.4538942575454712, 1.1017324924468994, 0.6772112250328064, 0.5107054710388184, -0.4818325638771057, -0.5959444046020508, -0.014473016373813152, 0.0356704518198967, -0.6059489846229553, 0.3006620407104492, -0.8658905029296875, -0.9983261227607727, 1.1925157308578491, 1.227047085762024, 0.5645139217376709, 0.593419075012207, 1.1186528205871582, 1.893712043762207, -0.8537284731864929, -0.7745137214660645, -0.07370935380458832, -0.3308170437812805, 0.4721696972846985, 0.5615953803062439, -0.4063717722892761, -0.38949617743492126, 0.4157743453979492, -2.6056313514709473, 1.0043383836746216, 0.3861253261566162, -0.5072072744369507, -0.2078286111354828, -0.5337724685668945, 0.9241587519645691, 0.7920590043067932, -1.0557254552841187, 0.07003310322761536, 0.5135042071342468, -1.4143885374069214, -1.144117832183838, -0.28705650568008423, 0.4110807776451111, 0.7441458702087402, -0.8629262447357178, 0.7835168838500977, 0.20003686845302582, 0.489617258310318, 0.8057211637496948, 0.5339271426200867, 1.0128098726272583, 0.7649571895599365, -0.04681891202926636, -1.873822569847107, -0.1060902327299118, -0.7781344056129456, 0.2153978943824768, -0.33765795826911926, 1.4187045097351074, 0.46621423959732056, -0.649263858795166, 1.0697591304779053, -0.10211044549942017, -0.9470861554145813, -0.8563531637191772, -0.7192962765693665, 0.47532957792282104, 0.6175459027290344, -0.718001127243042, -0.17597469687461853, -0.7040005922317505, -0.1671663075685501, -0.36171674728393555, 0.271236777305603, 0.8557673692703247, -1.3044861555099487, -0.6543206572532654, 0.23654088377952576, -0.028566328808665276, 0.3450753390789032, -0.06472256779670715, 0.626688539981842, -0.658508837223053, -1.0942307710647583, -1.1759312152862549, 0.4079534709453583, 0.23996751010417938, -0.6809229254722595, -0.2879221737384796, 0.23005090653896332, -1.9900811910629272, 1.171910285949707, -0.4305958151817322, -1.1557484865188599, -0.27347588539123535, -0.77254718542099, 0.9877549409866333, -0.5173100829124451, 0.3365649878978729, 0.4656921625137329, 0.6974507570266724, -0.27796247601509094, -0.24059629440307617, -1.1890721321105957, 0.591027557849884, 1.3997375965118408, 0.8978816866874695, -0.6934682130813599, 0.7492884993553162, 0.10301363468170166, -0.6559833288192749, -0.08550361543893814, 0.032695140689611435, -1.8142409324645996, 0.45472609996795654, 0.5192579030990601, 0.6240037679672241, 0.6160475015640259, 1.1677912473678589, 0.6744846701622009, 0.9109872579574585, -0.36766302585601807, 0.1716138869524002, 0.21487519145011902, -0.24760939180850983, -0.6973125338554382, 0.42241743206977844, -1.4119926691055298, -0.8093987107276917, 0.6767822504043579, -0.7149267196655273, -0.27623969316482544, 0.9219108819961548, 0.05292040482163429, -0.036474570631980896, 0.017061632126569748, 0.06520219147205353, 0.18602675199508667, -0.6891626715660095, 1.0126140117645264, 0.21191559731960297, -1.0626696348190308, -0.36152321100234985, 0.582615315914154, 0.6296408772468567, -1.2899359464645386, 0.3086138665676117, -0.4257262349128723, 0.5642387270927429, 0.11019787192344666, 0.5551988482475281, 0.8757394552230835, -0.37168511748313904, -0.7461464405059814, 0.7606821656227112, 1.6087974309921265, -0.12565627694129944, -0.07049403339624405, 1.005842685699463, 0.14788605272769928, 0.2668799161911011, 0.1587291955947876, -0.463177889585495, -1.4011168479919434, 1.0153543949127197, -0.22792740166187286, -0.7035015225410461, -0.6163703203201294, 0.29231536388397217, -0.7633339166641235, -0.07059428840875626, 0.7589263319969177, 0.29867106676101685, -0.354458749294281, 0.7760723233222961, 0.3288755714893341, -0.14540702104568481, 0.46987617015838623, 0.3741964101791382, 0.5333572626113892, -0.38907739520072937, 0.46731191873550415, 0.06311012804508209, 0.007363041862845421, 0.055689360946416855, 0.14458557963371277, -0.0905189961194992, 0.4413492679595947, -0.6508772969245911, -1.9871207475662231, -0.16509880125522614, -0.6499739289283752, -0.10201883316040039, 0.7032983303070068, -0.9125736355781555, -0.3290926516056061, 0.19942902028560638, -0.10578639805316925, 0.009519878774881363, -1.1589696407318115, -0.5386360287666321, 0.0778437927365303, 0.5082961320877075, 1.4954010248184204, 0.350646048784256, 0.9144012331962585, 0.1859542578458786, 0.5034169554710388, 0.13760478794574738, -0.1939295083284378, -0.005503354128450155, 0.25907033681869507, 0.02589190937578678, -0.5312998294830322, 0.05000489950180054, -0.4360402524471283, -0.3999398648738861, 0.9644352197647095, -0.6028683185577393, 0.17757150530815125, -0.05039898678660393, -1.6414649486541748, -0.5789861083030701, -0.012078415602445602, 0.6762238144874573, -0.6325118541717529, -0.1554969698190689, -0.23607957363128662, 0.19260157644748688, -0.05495990067720413, 0.8181559443473816, 0.06491943448781967, 1.3778408765792847, 0.676440954208374, -0.1251082718372345, -1.2305402755737305, -0.45048075914382935, 0.6348522901535034, -0.3906988799571991, 0.22389085590839386, -0.8917437791824341, -0.06091396138072014, -0.30137935280799866, -0.7284929156303406, 0.2210829108953476, 0.21254689991474152, -0.3946245014667511, -0.17506837844848633, -0.05331439524888992, -0.7551557421684265, -1.1608291864395142, 0.6623319387435913, 1.0909428596496582, -0.24505387246608734, 0.11970584839582443, -0.341786652803421, -0.5373943448066711, 0.35932087898254395, 0.5516642928123474, 0.41438624262809753, 0.45617181062698364, 1.5153915882110596, 2.0122148990631104, -0.0007575768977403641, -0.18024367094039917, -0.09768415987491608, 0.557902455329895, -1.2017624378204346, -0.1796901822090149, -0.5314472317695618, -0.06701204925775528, -0.2711241841316223], [0.48334330320358276, 1.5124090909957886, -1.4560174942016602, -1.3149583339691162, 0.53092360496521, -0.7229890823364258, 0.5858429670333862, 0.7813279628753662, -0.6293761730194092, -1.2713872194290161, -1.228276014328003, 0.874670684337616, 0.5297130346298218, 0.7659842371940613, 1.0646103620529175, 0.22772669792175293, 1.2102043628692627, -0.6947996020317078, 0.14607533812522888, 0.9073978066444397, 0.6909390687942505, 0.13153280317783356, -0.2414659708738327, -0.9402483701705933, 0.7657018303871155, 0.12671443819999695, -1.3268200159072876, 0.8137428760528564, -1.3574645519256592, -1.5534119606018066, 1.3490560054779053, -0.9365476369857788, 0.35554835200309753, -0.5556647181510925, -1.6047074794769287, -0.901674747467041, 1.1282137632369995, 0.40121132135391235, -0.3977653384208679, 0.797925591468811, 1.500998616218567, 0.7940434813499451, -0.388313353061676, -1.018828272819519, 1.2008761167526245, -0.5341607332229614, 0.2619413435459137, -0.8886392712593079, -0.36802759766578674, -1.6219565868377686, 0.6367905139923096, -0.4076932966709137, -0.10243361443281174, 0.6370826959609985, 0.8160709142684937, 0.5170797109603882, -0.3060416281223297, 0.5520661473274231, -0.09220892190933228, -0.8850880861282349, 0.9286638498306274, 0.45615553855895996, -0.7533618211746216, 0.8041175603866577, -0.05273834615945816, -0.3248971402645111, -0.19230493903160095, 0.5445044636726379, -0.3371324837207794, -0.3694128692150116, 0.6426125764846802, 0.2928849458694458, -0.6206579208374023, 0.06339138001203537, -1.417046070098877, 0.22605641186237335, 0.2026747316122055, 0.2582281529903412, -0.18622513115406036, 1.3233662843704224, -0.4215999245643616, -0.6563271284103394, -0.463463693857193, -0.9905315041542053, 0.5305593013763428, -0.25652843713760376, 0.03165234625339508, -0.0029624514281749725, -0.40880832076072693, 1.9176852703094482, -0.11548809707164764, 0.06919555366039276, -0.2436271756887436, 0.5154539346694946, -0.5168254971504211, -0.7074613571166992, -0.025516383349895477, 0.24066868424415588, -0.16282328963279724, -0.467204749584198, -0.7882360219955444, -0.5143865346908569, 0.8012073040008545, 0.37180450558662415, 0.24810342490673065, 1.3280545473098755, 1.0241353511810303, -1.0840098857879639, -0.782650887966156, -0.22125017642974854, -0.2918529808521271, -0.2047978788614273, -0.6685206890106201, -0.7578142881393433, -1.3915550708770752, -0.059047553688287735, 0.9081129431724548, -0.00018780911341309547, 0.7892851233482361, 1.0066235065460205, -0.6065202951431274, -1.1858909130096436, -0.18655891716480255, 0.35701704025268555, 0.936279833316803, -0.2514718472957611, -0.9042997360229492, -0.18389007449150085, 0.7234559655189514, -0.4059368669986725, -0.03721456602215767, 0.27157479524612427, -0.27971363067626953, 1.0895476341247559, 0.36607763171195984, 0.9175659418106079, 0.18675115704536438, -0.717913031578064, 0.3933548033237457, -0.7012238502502441, -0.10016117990016937, -0.6439882516860962, -0.4953523278236389, -0.8971671462059021, 0.18022695183753967, -0.7718931436538696, -0.5508302450180054, 0.3315001428127289, -0.8434079885482788, 0.9576162695884705, -0.9486193060874939, 0.48432329297065735, -0.07156114280223846, 1.6393802165985107, -0.12140002846717834, 0.7371865510940552, 0.7433789968490601, 0.36406180262565613, -0.6957382559776306, 0.051748115569353104, 1.105031967163086, 0.2966386079788208, -1.3129780292510986, 0.9792352318763733, 0.3708422780036926, -0.49262431263923645, 0.6817227005958557, 0.5266921520233154, -0.5138969421386719, 0.8118484020233154, -1.1953414678573608, -0.2550944983959198, -0.670260488986969, 0.6335482597351074, -0.20181314647197723, 0.3278084695339203, 1.150070071220398, -1.151540756225586, -1.286281704902649, -1.0649603605270386, 0.32183438539505005, -0.5821604132652283, 0.12496335059404373, 0.14186754822731018, 0.09242565184831619, 0.2609426975250244, -0.10590406507253647, -0.8481811881065369, 0.2201840728521347, -0.7443735599517822, -0.8629354238510132, 0.1815875917673111, -1.1243298053741455, 0.10348399728536606, -0.21892227232456207, -0.9345365166664124, 0.6510105133056641, -1.1341700553894043, 0.24957819283008575, 0.35261231660842896, 0.06212877854704857, -0.4494125545024872, -1.3450170755386353, 0.03360667824745178, -0.5323390960693359, 0.6649784445762634, 0.08529738336801529, -0.0682426393032074, -0.5446248054504395, 0.6173002123832703, 1.2713335752487183, 0.026981418952345848, -0.3818730413913727, 0.5148479342460632, 0.7105885744094849, -1.016824722290039, -0.25720176100730896, 0.6573435664176941, 0.39883679151535034, 0.2996789216995239, 0.829353392124176, 0.010514296591281891, 0.7134179472923279, 0.613294243812561, 0.2075568288564682, -0.02027835324406624, -1.6167171001434326, 0.11676709353923798, -1.0446754693984985, -0.6907974481582642, -0.14022044837474823, -0.978874921798706, 0.6257860660552979, 0.724330484867096, -0.07777270674705505, 0.990475058555603, -0.12841156125068665, 0.4442325532436371, 0.3575799763202667, 1.4968957901000977, 0.5225791335105896, 0.15172195434570312, -0.656599223613739, 0.39179903268814087, -0.16738887131214142, 0.013844098895788193, 1.1853864192962646, -0.013841399922966957, -0.3126120865345001, 1.89449942111969, 0.06084166467189789, -0.16702499985694885, 0.7103089094161987, -0.08514430373907089, 0.05356423184275627, -0.5015965104103088, 0.14993201196193695, 0.0298320185393095, -1.051234483718872, 1.0615328550338745, 0.9030657410621643, -1.9230475425720215, -0.4394603669643402, -0.13959527015686035, -0.6130842566490173, -0.6114928722381592, -0.15079213678836823, -0.6700913906097412, 0.3394078016281128, -0.13492532074451447, -0.30747082829475403, 0.2579571306705475, 0.03909287974238396, 0.7704579830169678, -0.27843084931373596, -0.08446435630321503, 0.10972633212804794, 0.23385056853294373, 0.32452571392059326, 1.1188050508499146, -0.38975778222084045, -1.8809844255447388, -0.43649670481681824, -0.6521341800689697, 0.5385175347328186, 0.5753493309020996, -0.7886673212051392, 0.1259620487689972, 1.0432982444763184, -0.538062572479248, -0.09082116186618805, -0.04671400785446167, 0.14865481853485107, 0.14100144803524017, -0.6354559659957886, 1.1157509088516235, 0.28633633255958557, -0.5365705490112305, -0.5157297849655151, -0.7747673988342285, 0.139798104763031, 0.7812918424606323, 0.8823477625846863, 0.9595873355865479, 0.5013225078582764, 0.026491304859519005, -0.9057283997535706, -0.03540647402405739, -0.11200685054063797, 0.3117915689945221, -0.5444461703300476, -0.8471958041191101, -0.3657948076725006, -0.5476369857788086, -0.10953493416309357, 1.1746922731399536, -0.09668312966823578, 0.9956067800521851, 0.8955346941947937, 0.19342239201068878, -0.8288874626159668, -0.8412532806396484, 0.2115691602230072, -1.3859530687332153, 0.6446406841278076, 0.6895976662635803, -0.1464506834745407, 0.52989262342453, -0.09587980806827545, 0.2644481956958771, 0.7667312026023865, 0.42169004678726196, 0.1225278303027153, -0.8944647312164307, -0.14207576215267181, -0.08729307353496552, 1.1257692575454712, 0.12319584935903549, 0.0163510013371706, -0.12593358755111694, -0.5406284928321838, -0.37371230125427246, 0.7403380870819092, 0.1716257631778717, 0.6176930665969849, -0.19258463382720947, -0.23381634056568146, -0.49041587114334106, 0.925520122051239, 1.5019603967666626, -0.203485369682312, 0.8094407320022583, -0.7914735078811646, -0.2467762976884842, -0.6841509938240051, 0.9603711366653442, 0.5981417298316956, 1.1739516258239746, 0.6011718511581421, -0.06608449667692184, 1.1429808139801025, 0.0036788880825042725, 0.5093615055084229, -1.2436240911483765, 0.29271751642227173, 0.43379664421081543, 1.255142092704773, -0.06447680294513702, -0.06773661822080612, 0.4860093593597412, -0.01988997682929039, -0.8438672423362732, -0.1530395746231079, 0.6209047436714172, 0.08265314251184464, -0.468149334192276, -0.5983436107635498, -0.042367495596408844, -0.3049158751964569, -0.27562668919563293, 0.33112484216690063, -0.10832341760396957, -0.3341312110424042, -0.4760165810585022, 0.1960781067609787, -0.3651808798313141, -0.33703598380088806, -0.05928735062479973, 0.07110559940338135, 0.10790754109621048, -0.17404957115650177, -0.057433001697063446, 0.39057281613349915, -0.04578704759478569, 0.33927664160728455, -0.32034558057785034, -0.9157488942146301, -0.15434905886650085, -0.3969530165195465, 0.5611595511436462, -1.4843553304672241, -0.447642058134079, -0.43858519196510315, 0.44078725576400757, -0.33817583322525024, -0.06417211890220642, -0.06912403553724289, -0.11114072054624557, 0.3825731575489044, -0.40365713834762573, 0.6508499383926392, 1.1552002429962158, 0.06285158544778824, -0.1949406862258911, 0.22295349836349487, -0.39531034231185913, 0.5663830637931824, -0.6329490542411804, -0.45297956466674805, 0.165178582072258, -1.0584772825241089, 0.1449003666639328, 0.06806173920631409, -0.38483160734176636, 1.6634912490844727, -0.1431533694267273, -0.1449294537305832, 0.6523390412330627, 0.5148594975471497, -1.1917223930358887, 0.8542355298995972, 0.3994849920272827, 0.4486970603466034, -0.28064966201782227, 0.4595043659210205, 0.06220242753624916, -0.2566704750061035, 0.7051467299461365, -0.14420638978481293, 0.7388644218444824, 0.2456897348165512, -0.7788202166557312, 0.0018805647268891335, 0.6139256954193115, 0.984778881072998, 0.49681901931762695, 0.9679874777793884, -0.6627629995346069, -0.9806779623031616, 1.0804346799850464, -0.16048529744148254, 1.3758784532546997, 1.0898786783218384, 0.6422354578971863, 1.5304384231567383, -1.5152485370635986, -0.04956504702568054, 0.7567339539527893, 0.4579410254955292, 0.05214110389351845, 0.41043081879615784, 0.43408963084220886, -0.765720546245575, -0.07098497450351715, 0.7794910073280334, -0.3851009011268616, 1.0776537656784058, -0.6271846890449524, -0.2875177264213562, 0.11172207444906235, -1.090762734413147, 0.24756382405757904, -0.4455147385597229, -0.6278384923934937, 0.2043098658323288, -0.5024244785308838, 0.3633207678794861, 0.7694116234779358, 0.6749237179756165, 1.7330824136734009, -0.8534750938415527, -1.9106534719467163, 0.3247850835323334, -1.1273701190948486, -0.2712315022945404, 0.7185085415840149, -0.4905109107494354, -0.9788638949394226, -0.7883789539337158, -0.09180134534835815, 0.5240770578384399, 0.0024933628737926483, 0.14763756096363068, -0.22998666763305664, -1.0813716650009155, 0.17704781889915466, -0.24114571511745453, 1.002690315246582, 0.8742110729217529, 0.5253573060035706, 0.30458107590675354, 0.6718440651893616, 0.07550262659788132, -0.35404226183891296, -0.4212496876716614, -0.45701998472213745, 0.5869827270507812, -0.7074496746063232, -1.3534938097000122, 0.6559668183326721, 0.9349241852760315, 0.31555986404418945, -0.09915235638618469, 0.858574628829956, 1.5213873386383057, -0.8460241556167603, -0.859083354473114, 0.006229297257959843, -1.1479805707931519, 0.11044656485319138, 0.1172972247004509, -1.3343453407287598, -0.15312357246875763, -0.23879995942115784, -1.7289061546325684, 1.4941083192825317, -0.0036963969469070435, -0.8808702826499939, -0.26789721846580505, 0.3078826665878296, 0.23706664144992828, 0.5220023989677429, -0.348295658826828, 0.011040092445909977, 0.35698360204696655, -1.032547116279602, -1.1963781118392944, 0.19944141805171967, 0.35984495282173157, 0.24793191254138947, -0.18616798520088196, 0.6702951192855835, 0.15462203323841095, 0.5059248805046082, 0.5107313990592957, 0.4976089894771576, 0.9133033752441406, 0.4606287479400635, 0.12654522061347961, -1.847848892211914, 0.09161529690027237, -0.9702394008636475, 0.05699748918414116, -0.27920305728912354, 1.5677247047424316, 0.6876378059387207, -0.28038305044174194, 0.2124636471271515, 0.09408543258905411, -0.7662369012832642, -0.45709162950515747, -1.1672232151031494, 0.9593214392662048, 0.15117961168289185, -0.60824054479599, -0.0482354499399662, -0.553616464138031, -0.4761486351490021, -0.3885425329208374, 0.5059452652931213, 0.641997754573822, -1.1908107995986938, -0.7556341290473938, 0.3107708692550659, -0.2092134654521942, 0.0422530472278595, 0.4213278293609619, -0.03063609078526497, -0.7033678889274597, -1.0651636123657227, -0.6532014012336731, 0.09037644416093826, 0.48117050528526306, -0.6633765697479248, -0.5555694103240967, -0.026777775958180428, -1.7546207904815674, 0.6674804091453552, -0.28265106678009033, -1.003585696220398, -0.6723447442054749, -0.9551448822021484, 0.7741599082946777, 0.37218618392944336, 0.0977889820933342, 0.38749805092811584, 0.4193805754184723, -0.9060044884681702, -0.5829275250434875, -0.9827781915664673, -0.0516018383204937, 0.6648346185684204, 0.8922699093818665, -0.5878857970237732, 0.8579850196838379, 0.636772632598877, -0.7520997524261475, 0.7188552021980286, 0.00843833014369011, -1.3428013324737549, 0.6054381132125854, 0.5620010495185852, 0.4265614449977875, 0.530478298664093, 1.2015174627304077, 0.3680718243122101, 0.6713839173316956, 0.21476757526397705, 0.7352321147918701, -0.12265341728925705, -0.45020338892936707, -0.6814208626747131, 0.16048306226730347, -1.0051535367965698, -0.9289332628250122, 0.362419068813324, -0.20208334922790527, -0.3495650887489319, 0.5082305073738098, 0.14181479811668396, -0.393783301115036, -0.2329416573047638, -0.6565433740615845, 0.16985554993152618, -0.5740055441856384, 0.5415439605712891, 0.4518778920173645, -0.6762003302574158, -0.4108239710330963, 0.27729332447052, 0.665558397769928, -1.3085206747055054, 0.017170408740639687, 0.28752627968788147, 0.5489909052848816, -0.8114131093025208, 0.8299291133880615, 0.5143610835075378, -0.320320188999176, -0.2622169554233551, 1.6291450262069702, 1.6589853763580322, -0.11668440699577332, 0.5570585131645203, 0.5862647294998169, 0.23974160850048065, -0.003310857340693474, -0.43608880043029785, -0.7994334101676941, 0.012254534289240837, 1.0301295518875122, -0.2523457109928131, 0.3614351153373718, -0.8567031025886536, 0.9788732528686523, -0.48217034339904785, 0.1995202600955963, 0.7294568419456482, 0.4628271460533142, -0.6765085458755493, 0.7045953869819641, 0.501030683517456, -0.06482811272144318, -0.08461259305477142, 0.35738876461982727, 0.6991820931434631, -0.10431990772485733, 0.6566556096076965, 0.38451388478279114, -0.3179793357849121, 0.4109804928302765, 0.2924852669239044, -0.4913056194782257, 0.5552816390991211, -0.14949925243854523, -1.159897804260254, -0.3766302764415741, 0.06593269109725952, -0.8740301132202148, 0.09261208027601242, -0.440702348947525, 0.22367221117019653, 0.3435077667236328, -0.17324692010879517, 0.5958063006401062, -1.1742414236068726, -0.16660459339618683, -0.28460341691970825, 0.19562679529190063, 1.395342469215393, 0.0695134773850441, 1.1896347999572754, 0.024602919816970825, -0.013479482382535934, -0.3843015134334564, 0.058417126536369324, -0.3673783838748932, 0.38021770119667053, -0.22504524886608124, -0.395122766494751, -0.10041287541389465, -0.5319383144378662, -0.30805549025535583, 0.8668094873428345, 0.36274516582489014, 0.25069278478622437, -0.035572245717048645, -1.0516201257705688, -0.6886139512062073, 0.6221965551376343, 0.3151184916496277, -0.36558401584625244, -0.446973592042923, -0.27054572105407715, -0.06463460624217987, -0.016962382942438126, 1.1775017976760864, -0.6425945162773132, 0.4683365523815155, -0.31209033727645874, 0.31469398736953735, -0.9366633892059326, -0.3787270784378052, 0.8008769750595093, -0.5786105990409851, 0.60594642162323, -0.9626825451850891, -0.1464925855398178, -0.5010687112808228, -0.8261776566505432, -0.28592222929000854, -0.1454887092113495, -0.7716889381408691, 0.08899487555027008, 0.1571168452501297, -0.6394593715667725, -0.8593134880065918, 0.6643503904342651, 0.7877932786941528, -0.3434155583381653, 0.3718147277832031, -0.8479602932929993, -1.0936906337738037, 0.12598025798797607, 0.0962774008512497, 0.4690539836883545, 0.3877990245819092, 1.8644733428955078, 2.1510448455810547, 0.2440742552280426, -0.31250235438346863, -0.08002451062202454, 0.8036041259765625, -0.8463281393051147, -0.8349109292030334, -0.5145363211631775, -0.062259070575237274, 0.07673206180334091], [1.0899949073791504, 0.7509233355522156, -1.494874358177185, -0.9559431076049805, 1.0290119647979736, 0.5361577272415161, 0.869834840297699, 0.9159483909606934, -0.10586194694042206, -0.6210784316062927, -1.6175508499145508, 0.4901221990585327, -0.06465915590524673, 1.06734037399292, 0.5171496272087097, 0.21162164211273193, 1.300948977470398, 0.02250494435429573, -0.2478865534067154, 0.21007946133613586, 0.10043271631002426, -0.35542261600494385, 0.08697479218244553, -0.07724232971668243, 0.26408934593200684, 0.2957109212875366, -1.2531291246414185, -0.21682162582874298, -1.4455080032348633, -0.6089966297149658, 0.9693036079406738, -1.178305745124817, -0.5489514470100403, -0.2860060930252075, -1.7921626567840576, -0.2798708975315094, 0.6765385866165161, 0.7808229327201843, 0.5162895917892456, 1.0440444946289062, 2.061617851257324, -0.19540420174598694, -0.2904767692089081, -1.301134705543518, 0.23820936679840088, -0.5486639738082886, 0.7058125138282776, -0.9480266571044922, -0.4664456844329834, -1.5962063074111938, 1.2554819583892822, -0.23187780380249023, 0.5054449439048767, 1.0408935546875, 1.6362091302871704, -0.27580422163009644, -0.45254871249198914, -0.274738609790802, 0.9737206101417542, -0.16970115900039673, 1.5808179378509521, 0.29809218645095825, -0.5561549663543701, 1.2700749635696411, -0.064345583319664, -0.28525325655937195, -0.23124653100967407, 0.3472188413143158, -0.6336156129837036, 0.2837813198566437, 0.6212777495384216, 0.44236230850219727, -0.34437718987464905, 0.34104305505752563, -1.2806980609893799, 0.08961697667837143, 0.5365105271339417, 0.43778377771377563, 0.5114162564277649, 1.003418207168579, -1.032867193222046, 0.06564973294734955, -0.4835933744907379, -0.5154492855072021, 1.032397747039795, -0.33093613386154175, 0.2592030465602875, -0.2875957489013672, -1.0454697608947754, 2.310612916946411, 0.019612561911344528, -0.6334980726242065, -0.14084075391292572, -0.9186083078384399, -0.420263409614563, -0.5415054559707642, -0.379379540681839, -0.45786142349243164, -1.2056522369384766, -0.07035418599843979, -0.8630859851837158, -1.0184078216552734, 0.10056034475564957, 0.1434682011604309, 0.5086216926574707, 1.3580361604690552, 0.332491934299469, -0.9981326460838318, -0.17873147130012512, 0.07845094799995422, -0.13497090339660645, 0.4647570252418518, -1.0913548469543457, -1.2739598751068115, -0.590217649936676, 0.9653388261795044, 1.10643470287323, -0.3306652009487152, -0.15213654935359955, 0.4295400083065033, -0.6935776472091675, -0.1525712013244629, -0.8825258612632751, 0.29927492141723633, 0.7045629620552063, 0.5251876711845398, -0.26721665263175964, 0.1797017902135849, 0.5744091868400574, -0.1543918251991272, 0.0020492179319262505, -0.09455318003892899, 0.3901764750480652, 0.7091304659843445, -0.3290579915046692, 1.2201886177062988, -0.41691720485687256, -0.5980426669120789, -0.27980557084083557, -0.115179643034935, 0.1096530556678772, 0.035203829407691956, -0.7211288809776306, -0.5851032137870789, 1.072137475013733, -0.8512997031211853, 0.027406364679336548, -0.4149540066719055, -0.7899847030639648, -0.0631643757224083, -0.9099217057228088, 0.5393829345703125, -0.05873149633407593, 0.869513988494873, 0.5644525289535522, 0.7164792418479919, 0.1783294379711151, 0.6803874969482422, -0.10874233394861221, 0.2681485712528229, 1.3060840368270874, 0.05088585242629051, -0.40328821539878845, 1.145850419998169, 0.5730876922607422, -0.26685187220573425, -0.2593497931957245, 0.755768358707428, 0.16468161344528198, 0.3088034987449646, -0.6656063199043274, -0.2405858337879181, -0.3757811188697815, 0.7071635723114014, -0.23200620710849762, 0.22422733902931213, 0.6785671710968018, -0.7435188293457031, -0.8425109386444092, -0.09202162176370621, 0.5313181281089783, -0.1272970587015152, 0.7245228886604309, -0.5947278738021851, 0.6369777917861938, -0.114435113966465, 0.4867396950721741, -0.14141790568828583, -0.04719031974673271, -0.8381322026252747, -0.5726163387298584, -0.5871478915214539, -0.9460849761962891, 0.01926056668162346, -0.4954168498516083, -1.5918384790420532, 0.3110337555408478, -0.7261645197868347, 0.07666625827550888, 0.008480452932417393, -0.5880045294761658, -0.26900216937065125, -1.3022069931030273, 0.26858794689178467, -0.4641677439212799, 0.11882349848747253, -0.6358698010444641, 0.0874868705868721, -1.1727582216262817, 0.05488848686218262, 0.9300203919410706, 0.5766138434410095, -0.1752217561006546, 1.2691251039505005, -0.11539110541343689, -1.0110623836517334, -0.14717593789100647, 0.4398494064807892, 0.244759202003479, -0.055435001850128174, 0.24505680799484253, -0.2654699683189392, 0.5549740791320801, 0.32441800832748413, 0.5848062038421631, 0.16725802421569824, -1.1605786085128784, -0.23220233619213104, -0.9010010957717896, -0.6265136003494263, -0.44703570008277893, -1.1478455066680908, 0.9866000413894653, 0.7876211404800415, -0.7747789621353149, 1.1145873069763184, -0.5157098174095154, 0.05907266214489937, 0.06256982684135437, 0.8880363702774048, 0.05479740351438522, 0.5249205827713013, -0.4438687860965729, -0.1814327985048294, -0.2383790761232376, 0.4311739206314087, 0.9880825877189636, 0.007728365249931812, -0.03433055058121681, 1.1881494522094727, 0.11781270056962967, 0.40694886445999146, 0.6790400743484497, 0.25945526361465454, -0.16400402784347534, -0.4217691421508789, -0.1795891523361206, -0.680546224117279, -0.4202187657356262, 1.202072262763977, 1.4196968078613281, -1.3688373565673828, -0.5575072765350342, -0.27325525879859924, -0.38150614500045776, -0.20569713413715363, 0.3466675579547882, -0.2705131769180298, 0.7248174548149109, -0.004707593470811844, -0.10874543339014053, 0.24710723757743835, -0.18069572746753693, 0.3828892707824707, 0.05520469322800636, -0.2604234516620636, -0.31092745065689087, 0.06111074239015579, 0.24791841208934784, 0.6089916229248047, -0.7594075202941895, -1.0112054347991943, -0.3679315745830536, 0.3099328279495239, 0.40648552775382996, -0.18041805922985077, -1.3409870862960815, 0.5477344989776611, 0.6918084025382996, -0.4414382874965668, 0.06708353757858276, 0.7268375754356384, -0.4088904559612274, 0.3120899796485901, -0.1003303974866867, 0.6362255215644836, 0.3028450608253479, -0.5196684002876282, -1.0996495485305786, -0.8558611273765564, 0.504640519618988, 1.2711020708084106, 0.30516573786735535, 1.421650767326355, 0.4549518823623657, -0.3382059633731842, -0.14119014143943787, 0.07973909378051758, -1.096752643585205, -0.3821619153022766, -0.6776304244995117, -1.026107668876648, 0.29504790902137756, -0.38051003217697144, 0.2925468981266022, 1.5395143032073975, -0.024997228756546974, 1.0932596921920776, 0.6828879714012146, -0.4925990104675293, -0.9866980314254761, -0.14287519454956055, 0.6378663182258606, -1.091401219367981, 0.5917119979858398, 0.9982197880744934, -0.5295757055282593, -0.4822564125061035, 0.40979892015457153, 0.38382574915885925, 1.024817943572998, -0.8734779953956604, 0.4957978129386902, -1.0867788791656494, -0.11408217996358871, -0.4738748073577881, 1.0279134511947632, -0.24677792191505432, 0.05423495173454285, -0.9049584269523621, -0.01436435803771019, 0.7242281436920166, -0.2725313603878021, -0.14482080936431885, 0.5604716539382935, -0.7581015229225159, -0.463364839553833, -0.6021742224693298, 0.6902270317077637, 1.0996596813201904, -0.014191065914928913, 0.1630421131849289, -0.19327767193317413, -0.38627055287361145, -0.4066312611103058, 0.37594425678253174, -0.24385888874530792, 0.6513928771018982, -0.016737954691052437, 0.4162321090698242, 1.2126840353012085, -0.4187221825122833, 0.023514559492468834, -1.4850974082946777, 0.13515381515026093, 0.5985710024833679, 1.2369310855865479, -0.028476186096668243, 0.06988271325826645, 0.24375921487808228, -0.36485955119132996, 0.3331417441368103, 0.11904197931289673, 1.0953267812728882, -0.09456757456064224, -0.7689926624298096, -0.8275123834609985, -0.533573567867279, -0.0443384014070034, -0.48533082008361816, 0.2706223726272583, -0.15321744978427887, -0.5360719561576843, -0.972748339176178, 1.047960638999939, 0.32770344614982605, 0.10376518964767456, -0.7199926972389221, 0.33438077569007874, 0.06791606545448303, 0.012509765103459358, 0.5568132400512695, -0.5248838663101196, 0.09025280177593231, 0.5657995939254761, -0.8885124325752258, -0.9548236727714539, 1.071096420288086, 0.2805061638355255, 0.4659073054790497, -0.9136292934417725, 0.21484942734241486, -0.46455833315849304, 1.0689191818237305, 0.32151249051094055, -0.2152968794107437, 0.1516980677843094, 0.7308057546615601, -0.9317957162857056, -0.1102553978562355, 0.007900918833911419, 0.9143660664558411, -0.37890708446502686, -0.11743208020925522, -0.6894235610961914, -0.13384883105754852, 0.3126656711101532, 0.5837169885635376, -0.6161325573921204, -0.6264556646347046, -0.4453642666339874, 0.24310095608234406, 0.002990737557411194, 0.038370281457901, 1.7640119791030884, 0.07390603423118591, -0.45066335797309875, 0.8166974782943726, 0.3088007867336273, -1.2777429819107056, 0.4002995491027832, 0.32935237884521484, -0.1731557846069336, -0.4420018494129181, -0.15089580416679382, 0.11168770492076874, 0.015090162865817547, 0.8731406331062317, -0.1873323619365692, 0.3218270540237427, 0.10259629040956497, -0.2471373975276947, 0.09606630355119705, 0.6564711928367615, 1.1455475091934204, 0.6648083925247192, 1.3018386363983154, -0.5872259736061096, -0.9451276063919067, 1.171480655670166, -0.38340625166893005, 0.2550216615200043, 0.4115103483200073, -0.19354015588760376, 1.3653361797332764, -1.084282398223877, -0.2585986852645874, 0.5033338665962219, -0.4457396864891052, 0.5617784857749939, 0.09741012006998062, 0.10893162339925766, -0.5377691388130188, 0.541968822479248, 0.27114588022232056, -0.17016351222991943, 0.7219981551170349, -0.06318724900484085, -0.2998203635215759, 0.039477620273828506, -1.0111639499664307, 0.5699869394302368, -0.5718100070953369, -0.41806212067604065, 0.4299241900444031, -0.008128399029374123, 0.35683342814445496, 0.8628504872322083, 0.10858479142189026, 2.635101556777954, -0.2230287492275238, -1.6967978477478027, 0.2178323119878769, -0.4071250855922699, -0.10769066959619522, 0.19306734204292297, -0.0413239486515522, -0.8634107708930969, -0.7940466403961182, 0.09214290976524353, 0.7722923159599304, -0.3758394718170166, 0.07941988855600357, 0.08239294588565826, -1.2866252660751343, -0.1613815277814865, 0.5121865272521973, 1.3988691568374634, 1.166837453842163, 0.439474880695343, 0.3121001422405243, 0.4835515320301056, -0.07078203558921814, -0.6267488598823547, 0.22698292136192322, 0.2539827823638916, 0.13404399156570435, -0.6618649959564209, -0.5615576505661011, 0.7958593368530273, 0.8981786966323853, 0.08038844913244247, -0.0062330481596291065, 1.3455361127853394, 0.8984318375587463, 0.10345608741044998, -0.4985176622867584, 0.11793026328086853, -1.4122371673583984, 0.17813044786453247, 0.38736873865127563, -0.47655045986175537, -0.09496510028839111, -0.541425883769989, -1.5745435953140259, 0.6211282014846802, 0.016475534066557884, -0.7756680846214294, -0.016381990164518356, 1.1246256828308105, 0.418204128742218, 0.48020675778388977, -0.2606959640979767, -0.009422184899449348, 0.5226970911026001, -0.42314818501472473, -1.0961668491363525, 0.2142055630683899, 0.0890519991517067, 0.15430830419063568, -0.6228377223014832, 0.5674508213996887, 0.1537935882806778, 0.07605421543121338, -0.03036331571638584, 0.37536561489105225, 0.854557454586029, 0.6576260924339294, 0.7531024217605591, -1.691765546798706, 0.139678955078125, -0.1201818585395813, -0.09879874438047409, -0.43399733304977417, 0.9966339468955994, 0.5693304538726807, -0.04081825539469719, -0.36482712626457214, -0.14834646880626678, -0.8990360498428345, -0.1769089549779892, -1.2167668342590332, 1.1465812921524048, 0.4149961471557617, -0.7543209195137024, -0.45511049032211304, -0.640929102897644, -0.559980571269989, -0.8239620327949524, 0.8793855309486389, 0.5413584113121033, -0.7347427010536194, -0.7576485872268677, -0.09968970715999603, -0.18196777999401093, 0.7509267926216125, -0.33490100502967834, -0.2961289584636688, -1.1377142667770386, -1.5585261583328247, -0.4140923321247101, 0.41686221957206726, 1.0733195543289185, -0.363705039024353, 0.1924228072166443, -0.009713136591017246, -1.3867013454437256, 0.9046265482902527, 0.14117029309272766, -0.8785357475280762, -0.28160035610198975, -0.8085359930992126, 0.5336436033248901, 0.26647770404815674, 0.37404555082321167, -0.31416964530944824, 0.7740567326545715, -1.1029102802276611, -1.038061499595642, -0.9568594694137573, 0.09304915368556976, 0.2964020371437073, 0.3412996232509613, -0.4512137174606323, 1.1781203746795654, 0.10541525483131409, -0.7878287434577942, -0.0008023586124181747, -0.10119058936834335, -0.7154396772384644, -0.005736378952860832, 0.9185376167297363, 0.2972261607646942, 0.35532888770103455, 0.9536833167076111, 0.021884702146053314, 0.3670685291290283, 0.12042608112096786, 0.6671217083930969, -0.945544958114624, -0.2648354768753052, -0.025916114449501038, -0.16901801526546478, -0.7906678318977356, -0.8499509692192078, -0.1227467805147171, -0.15421907603740692, -1.071692705154419, 0.8445626497268677, 0.6691906452178955, -1.0604727268218994, 0.3061770498752594, -0.7287088632583618, 0.3216026723384857, 0.019178949296474457, 0.22721034288406372, 0.11320167034864426, -0.505702793598175, -0.4454502463340759, 0.15854603052139282, 0.3165908753871918, -0.9379745125770569, -0.22731554508209229, -0.09057691693305969, 0.0650855079293251, -0.7100082635879517, 0.7498055100440979, 0.4287741780281067, -0.4461284875869751, -0.7075940370559692, 1.3451358079910278, 1.5724574327468872, -0.26042479276657104, -0.15280592441558838, 0.28239455819129944, 0.20920835435390472, -0.13847388327121735, -0.5208309888839722, -0.7145273685455322, -0.029964199289679527, 0.8355987071990967, 0.49913281202316284, 0.5346706509590149, -0.13400185108184814, 0.6771014332771301, -0.22580167651176453, 0.07612265646457672, 0.018880493938922882, 0.07305416464805603, -0.6088389754295349, 0.6594595313072205, 0.4197886288166046, 0.0542105957865715, 0.4817032217979431, 0.4923158884048462, 0.021676955744624138, 0.05826099216938019, 1.0102133750915527, 0.2738780379295349, -0.21778514981269836, 0.661684513092041, 0.7522718906402588, -0.5236421823501587, 0.06097456440329552, -0.4541533589363098, -1.566522479057312, -0.19208472967147827, -0.3729613721370697, -1.0473212003707886, 0.6219092011451721, -0.8408010005950928, 0.03699561208486557, 0.598772406578064, 0.01180991716682911, 0.22618666291236877, -0.5599034428596497, 0.12469454854726791, -0.4045824110507965, 0.6488109230995178, 0.3994494676589966, -0.4979918897151947, 1.6725918054580688, 0.02273309975862503, -0.3735469579696655, -0.9265364408493042, 0.058022383600473404, 0.13111041486263275, 0.38058438897132874, -0.13610495626926422, 0.06059498339891434, 0.08148914575576782, -0.7907617092132568, -0.4688171148300171, -0.07244199514389038, -0.23588049411773682, 0.09358897060155869, -0.5444109439849854, -1.060682773590088, -0.3276025056838989, 0.28393951058387756, 0.3203982412815094, -0.2673056125640869, -0.7977970838546753, -0.3327096402645111, 0.6815717816352844, 0.036117587238550186, 1.1967145204544067, -0.6125324368476868, 0.7124963402748108, 0.42217880487442017, -0.0176980122923851, 0.06490333378314972, 0.12654463946819305, 0.6722924113273621, 0.1211479976773262, 0.8773038387298584, -0.19998902082443237, -0.258427232503891, 0.017799606546759605, -0.9766445755958557, -0.04031156003475189, 0.1531134396791458, -0.584483802318573, 0.04721399396657944, -0.5515251159667969, -0.7580823302268982, -0.6956192255020142, -0.4873460829257965, 0.130471333861351, -0.183668315410614, 0.31093937158584595, -0.9014307856559753, -0.3129805028438568, 0.460757315158844, 0.27152684330940247, -0.14238429069519043, 0.6229407787322998, 1.2474578619003296, 2.0623271465301514, 0.4083510935306549, -0.2839885354042053, -0.584843635559082, 0.6271197199821472, -1.218303918838501, -0.35857322812080383, -1.4578323364257812, 0.33615079522132874, -0.18110249936580658], [0.7497368454933167, 1.3498591184616089, -2.172292470932007, -1.5881892442703247, -0.03525746986269951, -0.10464414954185486, 1.1912555694580078, 0.6032661199569702, -0.380621075630188, -1.4927177429199219, -1.3969918489456177, 0.7670795321464539, 0.11303986608982086, 1.0515087842941284, 0.3797885477542877, 0.38102567195892334, 1.1876786947250366, 0.00770528893917799, 0.6376985311508179, 0.6411573886871338, -0.1884785145521164, 0.22717145085334778, -0.01520706806331873, -0.016385706141591072, 0.5978853106498718, 0.9304656982421875, -1.189231514930725, 0.2159116566181183, -1.737237811088562, -1.1558119058609009, 1.3987793922424316, -1.245409369468689, 0.11450057476758957, -0.9243862628936768, -1.476584792137146, -0.18051695823669434, 0.5841405987739563, 0.33336398005485535, -0.4835642874240875, 0.8766230940818787, 2.127882242202759, 0.28927093744277954, -0.9017784595489502, -0.6224992871284485, 0.4757022261619568, -0.831712007522583, 0.5473321676254272, -1.771068811416626, -0.5282933712005615, -1.5511577129364014, 0.7719354629516602, -0.7417307496070862, -0.21366047859191895, 0.9778196811676025, 1.0772573947906494, 0.057322949171066284, -0.3170028328895569, 0.4079764485359192, -0.09282511472702026, 0.11864513158798218, 1.6110358238220215, -0.15408897399902344, -0.03238635137677193, 1.2842930555343628, -0.1789000779390335, 0.10764221847057343, -0.24432320892810822, 0.026827828958630562, -0.6031993627548218, 0.5130684971809387, 0.8602616190910339, -0.2145054191350937, -0.6478827595710754, 0.2792970836162567, -2.0185468196868896, 0.27786821126937866, 0.42609313130378723, 0.201289564371109, 0.19135944545269012, 1.408045768737793, -0.44281643629074097, 0.3755761384963989, -0.7052471041679382, -0.9450652003288269, 0.1209627240896225, -0.5963158011436462, 0.3440763056278229, -0.7134822010993958, -1.2285163402557373, 1.3885304927825928, 0.4343456029891968, -0.05757014825940132, 0.5032264590263367, 0.04537351429462433, -0.2732878625392914, -0.4798540472984314, -0.10237323492765427, -0.03701406344771385, -0.25522077083587646, -1.0368727445602417, 0.02711852453649044, -0.8144035339355469, 0.6490422487258911, 0.6434070467948914, 0.617068350315094, 1.0660678148269653, 0.31515970826148987, -0.6883290410041809, -0.9829447269439697, -0.4538814425468445, -0.6986566185951233, -0.26704078912734985, -0.8573678731918335, -0.638031005859375, -0.9532942175865173, 0.9888944625854492, 1.2206674814224243, -0.8870853185653687, 0.2860361933708191, 1.2951059341430664, -0.4880262315273285, -1.0189619064331055, -0.17149750888347626, -0.20539195835590363, 1.3322657346725464, -0.3805159330368042, -0.6683109402656555, 0.20527392625808716, 0.1689125895500183, -0.34368622303009033, 0.6275997757911682, -0.32964012026786804, -0.18777599930763245, 0.860478401184082, 0.12283934652805328, 0.8689073920249939, -0.015075267292559147, -0.4894753396511078, 0.3499267101287842, -0.22807416319847107, -0.14596427977085114, -0.452095627784729, -0.5262007713317871, -0.37965595722198486, 0.7681388258934021, -0.367231547832489, -0.010688729584217072, 0.057114165276288986, -0.5848777294158936, 0.5033074617385864, -0.9849233627319336, 0.0016814526170492172, 0.2947312593460083, 1.6177301406860352, 0.39858299493789673, 0.05659942328929901, 0.4293455481529236, 0.326087087392807, -0.02056649513542652, 0.795266330242157, 0.9190932512283325, 0.017404919490218163, -0.6489474177360535, 0.8360152840614319, 1.0299816131591797, -0.6547256112098694, 0.3075418472290039, 0.3570508658885956, 0.03456401452422142, 0.6763147711753845, -0.9169993996620178, -0.7332804799079895, 0.015554605051875114, 0.5968160033226013, -0.3481476604938507, -0.43905574083328247, 1.1441112756729126, -0.9989149570465088, -1.1151360273361206, -0.7232507467269897, 0.6522575616836548, -0.9274588227272034, 1.012717843055725, -0.5068460702896118, 0.605755090713501, 0.3551595211029053, -0.40503016114234924, -0.33112791180610657, -0.13963335752487183, -0.9047116637229919, -1.1698188781738281, -0.32217928767204285, -0.8653867244720459, 0.19818685948848724, -0.7316752672195435, -1.1765758991241455, -0.011040693148970604, -1.3109034299850464, 0.19596882164478302, 0.050818633288145065, 0.14222954213619232, -0.02801935188472271, -1.345610499382019, -0.27120712399482727, -0.5844573378562927, 0.7685985565185547, -0.4058702886104584, 0.5056234002113342, -0.45478472113609314, 0.06034315377473831, 0.8484426140785217, -0.3226495683193207, -0.654642641544342, 0.9572309851646423, 0.5102941393852234, -1.2916702032089233, -0.27107539772987366, 0.3104858696460724, 0.1036379337310791, -0.20462895929813385, 0.8760085105895996, -0.08065517991781235, 0.5807107090950012, 0.4302847981452942, -0.005449168384075165, -0.01821484975516796, -1.5728065967559814, -0.11703478544950485, -0.6772109270095825, -0.24187235534191132, -0.7462785243988037, -0.34182876348495483, 1.0619640350341797, 0.8031489253044128, -0.5026435852050781, 1.1902517080307007, -0.3449864983558655, 0.09773795306682587, 0.2094869315624237, 0.4990690052509308, 1.128784418106079, -0.2022334337234497, -0.03116975910961628, 0.06625305861234665, -0.1846190094947815, -0.10167689621448517, 1.1420506238937378, -0.19570086896419525, 0.016812000423669815, 1.4323492050170898, 0.07784625887870789, -0.6178925037384033, 0.7492607235908508, 0.11093548685312271, 0.2030748426914215, -0.8352175354957581, -0.12578119337558746, 0.10771499574184418, -0.9433782696723938, 1.1691025495529175, 0.7769278883934021, -1.4559886455535889, -0.29740050435066223, -0.201022669672966, -0.3899967074394226, -0.28120386600494385, 0.33704036474227905, -0.46550360321998596, 0.5570310950279236, -0.03251083195209503, -0.09520186483860016, 0.2880485951900482, -0.07284781336784363, 0.5620551705360413, 0.12145739048719406, -0.0842440277338028, 0.02972196415066719, 0.6022840738296509, -0.018862633034586906, 0.9341028928756714, -0.12383092194795609, -1.7642523050308228, -0.6882904171943665, -1.1560386419296265, 0.7586441040039062, -0.18041928112506866, -0.3917165696620941, 0.7948985695838928, 1.1299947500228882, -0.2668938636779785, 0.5593478679656982, 0.4652692973613739, 0.14474281668663025, -0.1374322921037674, 0.5769934058189392, 1.0657535791397095, 0.7723239660263062, -1.0678592920303345, -0.43660327792167664, -0.6981118321418762, -0.2805282473564148, 1.0547016859054565, 0.3586045503616333, 1.3302475214004517, 0.09955252707004547, -0.1027831882238388, -1.2283287048339844, 0.181118443608284, -0.8512352108955383, -0.2838285565376282, -0.3785158097743988, -1.228786587715149, -0.00709433201700449, -0.8156706094741821, 0.05460210517048836, 1.0938800573349, 0.23325592279434204, 1.548574447631836, 1.0608679056167603, -0.28754723072052, -1.2999910116195679, -0.6600329875946045, 1.0175801515579224, -1.2253965139389038, 0.6431993246078491, 0.682637095451355, -0.2581844925880432, 0.04891616106033325, 0.021608486771583557, 0.47577619552612305, 1.2228337526321411, -0.06526545435190201, 0.5644844770431519, -0.605426549911499, -0.25483211874961853, 0.13480569422245026, 0.6656885147094727, -0.4590834975242615, -0.43883126974105835, -0.45856034755706787, 0.013369815424084663, -0.10281869024038315, 0.12119594216346741, -0.5996864438056946, 0.38157543540000916, -0.5044858455657959, -0.39881736040115356, -0.2195790559053421, 0.6408476829528809, 2.192129373550415, -0.16839773952960968, 0.07074964046478271, -0.3171652555465698, -0.4146893620491028, -0.46578994393348694, 0.4617418944835663, 0.025465214625000954, 0.6032674312591553, 0.08479473739862442, 0.02763814479112625, 1.262349009513855, -0.09025221318006516, 0.2540920078754425, -1.5442874431610107, -0.031951043754816055, 0.1604713797569275, 1.6829344034194946, 0.48930999636650085, 0.11400438845157623, 0.2633587419986725, -0.33637914061546326, 0.3437342643737793, -0.5026872158050537, 1.1594343185424805, 0.020704379305243492, -0.41739943623542786, -0.4445677101612091, -0.42253410816192627, 0.09881646931171417, -0.4549669325351715, -0.31379184126853943, 0.7316092848777771, -0.1496260166168213, -0.3129754066467285, 0.15054084360599518, 0.061475757509469986, -0.3189038038253784, 0.18093562126159668, 0.3886207938194275, -0.10897888988256454, 0.026526369154453278, -0.0394236221909523, -0.3395139276981354, -0.07830386608839035, 1.1648534536361694, -0.6939939856529236, -0.2678094506263733, 0.5007926821708679, 0.0798255130648613, 0.6733771562576294, -1.5653388500213623, 0.10127521306276321, -0.590256929397583, 0.7336430549621582, -0.3511071801185608, -0.6506603360176086, 0.23719079792499542, 0.23060205578804016, -0.3926742672920227, -0.1852095127105713, -0.054894305765628815, 1.2562001943588257, 0.292275995016098, -0.7846606969833374, 0.11751820147037506, -0.11708758026361465, 0.1899419128894806, 0.7076650261878967, -0.3578033447265625, -0.3032149076461792, -0.3290351629257202, 0.11143963038921356, -0.34028780460357666, -0.3818443715572357, 1.7331429719924927, 0.1579999327659607, -0.477054625749588, 0.6188092231750488, 0.13079647719860077, -0.5824834108352661, 0.41698718070983887, 0.279402494430542, 0.40051260590553284, 0.14229649305343628, 0.5195862054824829, 0.49253976345062256, -0.19240623712539673, 0.7237186431884766, 0.18846218287944794, -0.08894587308168411, 0.2558201253414154, -0.8896585702896118, 0.3539184033870697, 0.17733994126319885, 1.0644680261611938, 0.7709688544273376, 0.5130475759506226, -0.9180302023887634, -0.5739614963531494, 1.1808406114578247, 0.4711390435695648, 1.267928123474121, 0.670172393321991, 0.15423698723316193, 1.3985782861709595, -1.6073815822601318, -0.059059157967567444, 0.36953026056289673, 0.05806706100702286, 0.6267785429954529, 0.6674371361732483, 0.30914944410324097, -1.0720504522323608, -0.12951958179473877, -0.33934253454208374, -1.0314600467681885, 1.187355875968933, -0.17416909337043762, -0.12782621383666992, 1.0551644563674927, -0.27841079235076904, -0.1195220947265625, -0.38652464747428894, -1.2056924104690552, 0.5376530289649963, -0.5610280632972717, 0.218642458319664, 0.8701152205467224, 0.7078458070755005, 0.7691283226013184, -0.7045876383781433, -1.3962427377700806, 0.16239561140537262, -1.4171339273452759, -0.13764694333076477, 0.3014460504055023, -0.18863876163959503, -1.7022004127502441, -1.2703967094421387, -0.3285895586013794, 0.14561837911605835, -0.47411274909973145, -0.2114356905221939, 0.32339727878570557, -1.1968823671340942, -0.427918404340744, 0.2874075174331665, 1.535683035850525, 0.7248944044113159, -0.32483044266700745, 0.945258617401123, 0.3673074543476105, -0.12336275726556778, 0.13115592300891876, 0.0272198636084795, 0.5661038756370544, 0.23898819088935852, -0.998375415802002, -0.9997740387916565, 0.644108235836029, 0.767539918422699, 0.05152058228850365, -0.22017331421375275, 0.7643116116523743, 1.8919750452041626, -0.7840059995651245, -0.6953185796737671, 0.7482004761695862, -0.6981304287910461, 0.05312985181808472, 0.06218837574124336, -0.9078904986381531, 0.09976066648960114, -0.3117081820964813, -1.6514613628387451, 1.3624045848846436, -0.40128573775291443, -0.6961249709129333, 0.6484448313713074, 0.7775405645370483, -0.18749411404132843, 0.6101210117340088, -0.2896020710468292, -0.09061641991138458, 0.3571629524230957, -0.4600784182548523, -1.4832124710083008, 0.21017885208129883, 1.375265121459961, 0.28562548756599426, -0.672856867313385, 0.48267194628715515, -0.2874147593975067, 0.19585296511650085, -0.05377496778964996, 0.9330063462257385, 0.8081949949264526, 0.48970332741737366, 0.5693985819816589, -1.0715652704238892, 0.07986533641815186, -1.5791003704071045, 0.0704307109117508, -0.5669780373573303, 0.9659290313720703, 0.4852137267589569, -0.24490994215011597, 0.42415645718574524, 0.02932920679450035, -0.6840465068817139, -0.4434415102005005, -0.9207288026809692, 1.094016432762146, 0.5573188662528992, -0.7190935611724854, 0.14347226917743683, -0.5334513783454895, -0.07960668951272964, -0.321819007396698, 0.5038580298423767, 0.6035212278366089, -1.78287935256958, -0.8184314966201782, 0.23964422941207886, -0.3411097228527069, -0.8436015844345093, 0.5961167216300964, 0.042910136282444, -0.3916681408882141, -1.2322297096252441, -1.1307042837142944, 0.6123818755149841, 0.8599706292152405, -0.2859610915184021, -0.29512813687324524, 0.06552906334400177, -0.9470828771591187, -0.023704132065176964, -0.4958750307559967, -0.7610123157501221, -0.5341871380805969, -0.7658945918083191, 1.297717809677124, 0.5090906620025635, 1.0272266864776611, -0.46295246481895447, 0.9023258090019226, -0.7632737755775452, -0.14687655866146088, -0.9442318081855774, -0.02587631717324257, 0.9442312717437744, 0.9940779209136963, -0.9173881411552429, 0.991532564163208, 0.33633628487586975, -0.5843871235847473, -0.8155969977378845, -0.13795319199562073, -0.42642942070961, 0.18588361144065857, 0.49289003014564514, 0.007702012546360493, 0.676171064376831, 1.5491470098495483, -0.3026810884475708, 0.9681845903396606, 0.522533118724823, 0.8307088613510132, -0.3342699706554413, -0.7689548134803772, -0.6991788744926453, -0.4097643196582794, -0.5693212151527405, -0.7516419291496277, 0.6552410125732422, -0.8765504360198975, -0.7986929416656494, 0.2373291403055191, 0.8988913893699646, -0.7640868425369263, 0.4202530086040497, -0.9971375465393066, 0.22582285106182098, -0.8012135028839111, 0.8107532262802124, -0.08830974996089935, -0.8661852478981018, -1.3478785753250122, -0.0977979227900505, 0.13535885512828827, -0.6494157910346985, -0.41294366121292114, 0.32577553391456604, 0.5901281833648682, -0.6584653258323669, 0.9706502556800842, -0.2612444758415222, -0.1190272644162178, -0.0009085081983357668, 2.028658151626587, 1.7988239526748657, 0.2539386749267578, 0.4455139935016632, 0.3882642388343811, -0.29758524894714355, -0.3154047429561615, -0.827650249004364, -0.6549291610717773, 0.24187874794006348, 0.8120161890983582, 0.04943434149026871, 0.061784811317920685, -0.3997327387332916, 1.0177233219146729, -0.5714775323867798, -0.6105653047561646, 0.8109496235847473, 0.3438400626182556, -0.598405659198761, 0.7206992506980896, 0.39339005947113037, 0.28188467025756836, 0.7699061036109924, 0.2759529948234558, 0.7135456800460815, -0.9102778434753418, 0.8591049313545227, 0.3979339599609375, -0.40654879808425903, 0.9328677654266357, 0.18618135154247284, -0.9575427770614624, 0.553515613079071, -0.134647399187088, -1.4261507987976074, -0.5549536943435669, -0.19829879701137543, -0.698724627494812, 0.4069744944572449, -0.4364532232284546, 0.19843249022960663, 0.4746186137199402, -0.3001629710197449, 0.09652291238307953, -0.9107968211174011, 0.24784688651561737, -0.6221266388893127, 0.40726438164711, 0.8364746570587158, -0.27714115381240845, 1.5512443780899048, -0.2946521043777466, -0.7293006181716919, -0.1446237415075302, -0.4439963102340698, -0.2567424178123474, -0.0212150439620018, -0.3210917115211487, -0.5652949213981628, -0.1581871658563614, 0.07235211133956909, -0.45525404810905457, 0.5773187279701233, 0.577521800994873, 0.5126860737800598, -0.39811578392982483, -0.9130818843841553, -0.722255527973175, 0.9152210354804993, 0.2756298780441284, -0.403260737657547, -0.414504736661911, 0.27051496505737305, 0.6386077404022217, 0.13821566104888916, 0.956875741481781, -1.0872104167938232, 0.4658239781856537, 0.5838418006896973, 0.02606637217104435, -0.8608431816101074, -0.1785232275724411, 0.6980642080307007, -0.11109700798988342, 0.6267642378807068, -0.06440560519695282, -0.13076214492321014, -0.0066995322704315186, -0.9472395181655884, 0.27139461040496826, 0.21554571390151978, -0.14447177946567535, 0.32104170322418213, -0.7514855265617371, -0.5600653886795044, -1.0511435270309448, 0.29605698585510254, 0.4802379012107849, 0.04038356617093086, 0.6590381860733032, -0.45639458298683167, -1.2891095876693726, -0.22452318668365479, 0.5031581521034241, 0.5606600046157837, 0.8409788012504578, 1.6783344745635986, 2.175102710723877, 0.05687260627746582, -0.38943228125572205, -0.4549707770347595, 0.7025190591812134, -1.0866005420684814, -0.2058081477880478, -0.8925247192382812, 0.29317423701286316, -0.026898900046944618], [0.4175654947757721, 1.1076370477676392, -0.8686848878860474, -0.31670722365379333, 0.6700303554534912, 0.1857779324054718, 1.4144986867904663, 0.039431601762771606, 0.32513704895973206, -0.34178274869918823, -0.8103511929512024, -0.04314091429114342, 0.9073023200035095, 1.0382386445999146, 0.17342035472393036, 0.43932148814201355, 1.2018141746520996, -0.19438372552394867, 0.06324456632137299, 1.177187442779541, -0.20500406622886658, -0.48502498865127563, -0.3936218321323395, 0.46366822719573975, -0.46958959102630615, 0.62691330909729, -1.6320855617523193, -0.14471638202667236, -1.2199453115463257, -0.7330194711685181, 1.4256380796432495, -0.7838892936706543, -0.2974412441253662, 0.15485088527202606, -1.6922802925109863, -0.14423459768295288, 0.9322534203529358, 0.5491613149642944, 0.7861988544464111, 0.30539631843566895, 1.8858084678649902, -0.13029375672340393, -0.10280441492795944, -1.2981586456298828, 0.9277600646018982, -0.6415098309516907, 1.233984112739563, -1.6143600940704346, -0.06607773900032043, -0.4737853407859802, 0.6126260757446289, 0.04215867444872856, 0.24271509051322937, 1.035241961479187, 0.810572624206543, -1.0933760404586792, -0.17203757166862488, -0.14271478354930878, 0.241120383143425, 0.722758412361145, 0.9688540697097778, 0.6628650426864624, -0.0537450946867466, 0.7930533289909363, 0.6573354005813599, 0.31770798563957214, -0.016489343717694283, 0.3822340667247772, -1.162078857421875, 0.4776698350906372, 0.3716121315956116, 0.1945437341928482, -0.5639527440071106, 0.16578885912895203, -0.038918446749448776, 0.9192758798599243, 0.7843204140663147, 0.6330474019050598, 0.2726345658302307, 1.0320979356765747, -0.5828375816345215, 0.16480493545532227, 0.038848619908094406, -0.8598964214324951, 0.21265792846679688, -0.05378323420882225, -0.011237452737987041, -0.8246335387229919, -0.6385494470596313, 1.7039543390274048, 0.18507766723632812, 0.2424173206090927, 0.498071551322937, -0.6982290148735046, 0.015821631997823715, -0.8481962084770203, 0.6776198744773865, -0.6193865537643433, -0.9686539173126221, -0.07282711565494537, -0.9140639305114746, -0.9249046444892883, 0.38180437684059143, 0.5607761740684509, 1.100868821144104, 1.2152999639511108, -0.6993275880813599, -0.8547204732894897, -0.48287829756736755, 0.0856226310133934, -0.05752729997038841, 0.401979923248291, -0.7138481140136719, -0.22973483800888062, 0.4675045907497406, 1.3085473775863647, 1.3214819431304932, -0.11403678357601166, 0.4323035180568695, 0.7033257484436035, -0.22047725319862366, -0.2832215130329132, -0.810422956943512, 0.3918687701225281, 0.20903563499450684, 1.2286884784698486, -0.2989662289619446, -0.2501594126224518, 0.44459033012390137, 0.44753456115722656, 0.40074923634529114, 0.11744686216115952, -0.055248893797397614, 1.008682370185852, -0.286072701215744, 0.843859851360321, -0.5701661705970764, -1.3395500183105469, -0.013028251938521862, -0.3318619728088379, 0.8366624712944031, -0.4729281961917877, -0.7721909880638123, -0.2757374048233032, -0.0682339146733284, -0.27563369274139404, -0.46253716945648193, 0.007473666220903397, -0.4819176495075226, -0.26081690192222595, -1.2588717937469482, -0.08129781484603882, -0.3750113844871521, 0.7080538868904114, -0.31879138946533203, -0.24826103448867798, 0.13830819725990295, 0.6395281553268433, 0.3329326808452606, 0.1807154417037964, 1.1176968812942505, 0.2577856183052063, -0.6534621715545654, 1.1106071472167969, 0.5295169949531555, -0.1829490065574646, 0.7100266218185425, 0.015019233338534832, 0.06199377402663231, 0.4108545184135437, -0.35460925102233887, -0.8325937986373901, -0.08988851308822632, -0.17803791165351868, 0.4412958323955536, -0.21285127103328705, 1.5239241123199463, 0.01802576147019863, -1.113625168800354, -1.3677716255187988, 1.1088509559631348, -0.3475266993045807, 0.03370020166039467, -0.7814205288887024, 0.6175874471664429, -0.7371373772621155, 0.18789178133010864, 0.8420279026031494, -0.05314061790704727, -1.020450234413147, -0.6623467206954956, -0.24414394795894623, -0.9193558692932129, 0.4966588616371155, -0.8829782605171204, -0.7968816757202148, 0.5483164191246033, -0.752514660358429, -0.24439966678619385, -0.1738419085741043, -0.3322847783565521, -0.3783547878265381, -1.2715353965759277, 0.3261720538139343, -0.21647994220256805, 0.49499842524528503, -0.20426227152347565, 0.11096341162919998, -0.33392077684402466, -0.4299013018608093, 0.798760175704956, 1.0522569417953491, -1.0775463581085205, 0.6373053193092346, -0.6184424757957458, -0.6210764050483704, 0.06750239431858063, -0.11678609997034073, 0.09864183515310287, -0.2806858718395233, 0.15102049708366394, -0.3861066997051239, 0.6903775930404663, 0.18379166722297668, 0.6404000520706177, -0.22717970609664917, -1.1212875843048096, -0.7195385098457336, -0.7826631665229797, -0.18392236530780792, -0.8015263080596924, -0.786749005317688, 1.1933417320251465, 0.5818836092948914, -0.8645581007003784, 0.8197804689407349, -0.9448475241661072, 0.0077622029930353165, 0.39635169506073, 0.6912371516227722, 0.10494906455278397, 0.402424693107605, -0.25713515281677246, -0.41121187806129456, -0.5298791527748108, 0.4631474018096924, 0.6835426688194275, 0.17665740847587585, 0.4634036123752594, 1.0417948961257935, 1.299845576286316, -0.09488740563392639, 0.7554970979690552, 0.2474251538515091, -0.329819917678833, -1.4925233125686646, -0.04419628903269768, -0.1732005923986435, -0.6910645961761475, 1.3051902055740356, 0.3520154058933258, -1.1446263790130615, -0.9077672958374023, 0.19757455587387085, -0.1996781975030899, -0.25176799297332764, 0.217622771859169, -1.1363002061843872, 1.2939095497131348, 0.10661867260932922, 0.28678399324417114, 0.0356203131377697, -0.0789293423295021, 0.6053616404533386, -0.061238594353199005, -0.18047256767749786, -0.8449308276176453, -0.09511521458625793, 0.806327760219574, 0.5575022101402283, 0.7264428734779358, -1.2389726638793945, -0.43930718302726746, 0.046093832701444626, 0.10728982836008072, -0.5914789438247681, -0.23564524948596954, 1.3790942430496216, 0.16400381922721863, -0.405924528837204, -0.017709992825984955, 0.612910270690918, -0.5905670523643494, -0.6877666115760803, 0.41342443227767944, 0.9144115447998047, 0.793805718421936, -0.8908658623695374, -1.0704345703125, -0.26931628584861755, 0.6384009718894958, 0.725982129573822, 0.7888630032539368, 1.083817720413208, -0.4994613230228424, -0.38867971301078796, -0.44571778178215027, -0.20344707369804382, -0.9799846410751343, -0.5467895269393921, -0.24450837075710297, -0.99098801612854, -0.04616434499621391, 0.11120913177728653, -0.1670869141817093, 0.9124234914779663, -0.1300252377986908, 1.1033233404159546, 0.526495099067688, -0.41451922059059143, -0.30212172865867615, 0.14358486235141754, 0.4234364330768585, -0.6045193672180176, 0.6738994121551514, 0.9451583623886108, -0.5652377605438232, -0.4542589485645294, 0.48068392276763916, 0.1157279834151268, 0.2204963117837906, 0.06468132883310318, 0.1755504161119461, -1.2935599088668823, -0.3478386402130127, -0.2461903691291809, 0.8586094379425049, 0.32500749826431274, 0.21226008236408234, -0.699429452419281, 0.05501555651426315, 1.0336064100265503, -0.11058567464351654, -0.8509907722473145, 0.9918678998947144, -0.48159685730934143, -0.5227309465408325, 0.08247318863868713, 0.48521459102630615, 0.9968665838241577, -0.532020628452301, -0.34398534893989563, -0.19008852541446686, -0.3265170156955719, -0.07833681255578995, -0.3036828935146332, -0.5949552059173584, 0.6275882124900818, 0.32799431681632996, 0.12827323377132416, 0.6879814267158508, -1.1300921440124512, -0.13126254081726074, -1.1199493408203125, 0.6255267858505249, 0.571935772895813, 1.2632633447647095, -0.007740522734820843, -0.03915252909064293, 0.08069968223571777, -0.16212579607963562, 0.1274113953113556, 0.39601385593414307, 0.4700968563556671, -0.31888487935066223, -0.18680857121944427, -0.32100948691368103, 0.36803051829338074, -0.2971572279930115, -0.6301289796829224, -0.11617860943078995, 0.6903365850448608, -1.1623202562332153, -1.022371530532837, 0.6468603014945984, 0.19341857731342316, -0.5783531069755554, -0.6878153085708618, 0.08288081735372543, 1.0675318241119385, -0.30126073956489563, 0.7381209135055542, -0.4660661518573761, -0.3443242907524109, -0.05411115661263466, -0.8895983695983887, -0.9469146132469177, 0.01331295631825924, 0.3940645456314087, 0.9293098449707031, -1.2193471193313599, 0.14592856168746948, -0.940091609954834, 0.4904712438583374, 0.7018898129463196, -0.0249874796718359, 0.42276933789253235, 0.5531160235404968, -0.7379401326179504, -0.035110458731651306, 0.06678395718336105, 1.2689330577850342, 0.20214466750621796, 0.269055038690567, -0.11719809472560883, -0.1953437626361847, 0.06475727260112762, -0.31478720903396606, -0.09365277737379074, -0.4168172776699066, -0.26429006457328796, -0.2572630047798157, -0.18828193843364716, 0.4373572766780853, 1.761500358581543, -0.09497659653425217, -0.13055171072483063, 0.7150636911392212, -0.8520095348358154, -0.3195718824863434, -0.5891555547714233, 1.0110914707183838, -0.34094569087028503, -0.8586474061012268, 0.4539009630680084, 0.6048668026924133, 0.9308480024337769, 0.024471323937177658, -0.2065492570400238, 0.5104953050613403, 0.8362678289413452, -0.16325773298740387, -0.18540449440479279, 0.5905130505561829, 1.142163634300232, 0.526595950126648, 0.5282408595085144, -0.5597389340400696, -0.5899118781089783, 1.2241559028625488, -1.2465291023254395, 0.16456936299800873, 0.5551307201385498, 0.16046679019927979, 1.144640564918518, -1.3001998662948608, -0.582168459892273, 0.018154585734009743, -0.3130759596824646, 0.3827529549598694, 0.08224832266569138, 0.006949706003069878, -0.12304548174142838, 0.04561937600374222, 0.19211645424365997, 0.2134496569633484, 0.8530445694923401, -0.06342235952615738, -0.1490153968334198, 0.09819970279932022, -0.4903586208820343, 0.06966176629066467, -0.9639682769775391, -0.33042269945144653, -0.07561258226633072, -0.6344621181488037, -0.04395350441336632, 0.12727153301239014, 0.037676844745874405, 1.5512995719909668, -0.5938795804977417, -1.1365447044372559, 0.5666555166244507, -0.564628005027771, 0.5138370990753174, -0.9699444770812988, -0.42544907331466675, -0.7948916554450989, -0.6725316643714905, -0.08589527755975723, 0.43098902702331543, -0.32728004455566406, -0.5180179476737976, -0.600726842880249, -0.30331653356552124, 0.22672641277313232, 0.8200679421424866, 1.2030143737792969, 0.835111141204834, 0.39116567373275757, 0.09179452061653137, 0.27783846855163574, -0.4931781589984894, 0.24293631315231323, 0.4764416217803955, 0.2622087895870209, -0.4961337149143219, -1.1458326578140259, -0.5113202929496765, 1.18280827999115, 1.2287123203277588, -0.4014681279659271, -0.1887228637933731, 1.6691093444824219, 0.7751889824867249, 0.10379091650247574, -0.45346421003341675, 0.7284900546073914, -0.2324654459953308, 1.1509943008422852, 0.4525456428527832, -1.2774577140808105, 0.07461864501237869, -0.34235143661499023, -1.6283059120178223, 0.7386499643325806, -0.24101227521896362, -1.5897349119186401, 0.7811915278434753, 1.191827654838562, 0.27701476216316223, 0.9926680326461792, -0.08507685363292694, 0.5848726034164429, -0.29833441972732544, -0.10621482878923416, -1.6668572425842285, 0.6040905714035034, 0.8798165321350098, 0.0530240498483181, -1.0582735538482666, 0.27748903632164, 0.031701941043138504, 0.17536866664886475, 0.25802895426750183, 0.41103366017341614, 0.8919334411621094, 0.590207040309906, 0.1988135427236557, -0.8721904754638672, 0.05039256066083908, -0.23454883694648743, -0.1414032131433487, -0.3903355002403259, 1.3096387386322021, -0.01956523396074772, 0.01661008596420288, -0.5102691650390625, 0.8241902589797974, -0.6831910610198975, -0.857166588306427, -0.9545758366584778, 0.8641310334205627, 0.328961580991745, -0.22071944177150726, -0.3465445637702942, -0.27189257740974426, -0.8044634461402893, -0.8461595773696899, -0.4104146957397461, 1.4449645280838013, -1.0915435552597046, -0.17548048496246338, -0.27624770998954773, -0.08664675801992416, -0.16295437514781952, 0.1349882036447525, 0.23167653381824493, -1.4915225505828857, -1.6846919059753418, -0.7787802219390869, -0.062378011643886566, 1.0081852674484253, -0.24325445294380188, 0.39776721596717834, 0.08469275385141373, -1.6745256185531616, 0.6995202302932739, -0.356402188539505, -1.0301870107650757, -0.8706955909729004, -1.157412052154541, 0.9111830592155457, -0.47339561581611633, 0.1464470773935318, -0.03963788226246834, 1.278438687324524, -0.7486578822135925, -1.3859282732009888, -0.328919380903244, -0.2501199543476105, 0.8258238434791565, 0.2431512475013733, -0.03780103102326393, 0.9358522891998291, 0.26846224069595337, -0.6430750489234924, -0.6341462731361389, 1.2235389947891235, -1.2693979740142822, 0.1700543612241745, 0.32577547430992126, 0.9154601097106934, 0.49748843908309937, 1.1176142692565918, 0.4643378257751465, 0.656546950340271, 0.1836654543876648, 0.8371703028678894, -0.14904393255710602, -0.7173354029655457, 0.14041808247566223, -0.08297888189554214, -1.025296688079834, -1.535361409187317, 0.04202118515968323, -0.6191550493240356, -0.7609112858772278, 0.433884859085083, 1.4794646501541138, -1.1831259727478027, 0.09883210062980652, -0.3648586869239807, 1.220941185951233, -0.15567784011363983, 0.31355971097946167, 0.4177384078502655, -0.8594526052474976, 0.12636201083660126, -0.48330429196357727, -0.09520186483860016, -0.605914294719696, -0.2349119633436203, 0.3851109445095062, 0.13445943593978882, -0.26985132694244385, 0.5214061141014099, 0.44491714239120483, -0.6456178426742554, -0.7859262228012085, 1.6447771787643433, 1.1511551141738892, -0.282990962266922, 0.6087368726730347, 0.3397684693336487, 0.128363236784935, -0.00847243145108223, -0.5762879848480225, -0.1246298998594284, -0.11867286264896393, 0.7279196977615356, -0.030968403443694115, 0.29910194873809814, -0.5829150676727295, -0.3021691143512726, 0.889836847782135, 0.3674508333206177, 0.500426173210144, 0.43174412846565247, -0.3138929009437561, 0.6468903422355652, 0.4327588379383087, -0.49508771300315857, 0.14028143882751465, 0.3828134536743164, 0.028311695903539658, -0.5410025715827942, 0.4478023052215576, 0.4069467782974243, 0.07741513848304749, 0.38956961035728455, 0.1981126219034195, -0.14796403050422668, -0.5718412399291992, -0.9711602330207825, -1.7823703289031982, -0.6260014176368713, -0.20800907909870148, -0.5196224451065063, 1.2239116430282593, -1.4022517204284668, -0.41744139790534973, 0.01574878580868244, -0.3407423794269562, -0.3777138292789459, -0.46742475032806396, -0.23189683258533478, -0.5353155732154846, 0.4239497184753418, 1.4805364608764648, -0.5795149803161621, 1.1127079725265503, 0.25917792320251465, -0.6308309435844421, -0.3516840934753418, -0.3760315179824829, -0.48240169882774353, 0.33629918098449707, 0.02014012821018696, -0.2589186131954193, 0.13024838268756866, -0.5695700645446777, -0.13784007728099823, -0.30703189969062805, 0.13912059366703033, 0.7890332937240601, -0.6273014545440674, -0.7266086339950562, -0.466407835483551, 0.49774083495140076, -0.6992236375808716, -1.0685832500457764, -0.7569212317466736, -0.3764069974422455, 0.08067285269498825, -0.37493181228637695, 0.34319832921028137, -0.35420653223991394, 0.3620503842830658, 1.0215548276901245, -0.15616276860237122, -0.36561599373817444, -0.6791626811027527, 0.16248242557048798, -0.10925780236721039, 0.08459896594285965, -0.07763998955488205, -0.42200714349746704, 0.30115100741386414, -1.3708528280258179, 0.7612196803092957, 0.22977933287620544, -0.39770352840423584, 0.2512359917163849, -0.3541571795940399, -0.685298502445221, -0.46878430247306824, -0.7418652176856995, 0.894841730594635, -0.088199183344841, 0.20270627737045288, 0.29561281204223633, -1.0126765966415405, 0.4903644919395447, 0.6554880738258362, -0.130862757563591, 1.2025290727615356, 1.2531191110610962, 0.94356769323349, -0.22061020135879517, -0.3600175082683563, -0.2191305011510849, 0.9626439213752747, -0.9570536613464355, -0.2715488076210022, -1.087486743927002, 0.6086085438728333, 0.00935332104563713], [0.11202623695135117, 1.132148265838623, -2.399587631225586, -0.48053792119026184, 0.20819959044456482, -0.0177528765052557, 1.3860243558883667, 0.6474320292472839, -0.007369489409029484, -0.5364418029785156, -0.8268380761146545, -0.5656125545501709, 0.9651023745536804, 0.5545603632926941, -0.015825310721993446, -0.23413847386837006, 0.6174245476722717, -0.020079437643289566, 0.7530302405357361, 0.8850399255752563, -0.6405256986618042, 1.5601234436035156, 0.5393140912055969, 0.020052941516041756, 0.37494444847106934, 0.5745375156402588, -0.4837314188480377, 0.3333435654640198, -1.2122819423675537, -1.0568821430206299, 0.8219599723815918, -1.178237795829773, 0.20452772080898285, 0.8223569393157959, -0.5090976357460022, -0.020262861624360085, 1.2269929647445679, 1.282385230064392, 0.7944536209106445, 1.231442928314209, 2.494378089904785, -0.9746019244194031, -0.11593521386384964, -0.9392584562301636, 0.8562461733818054, -0.8982654809951782, 0.41878411173820496, -1.1833720207214355, -0.7880436182022095, -0.62808758020401, 0.13148000836372375, 0.7597866654396057, 0.8080139756202698, 1.239983320236206, 0.7935656905174255, -0.19120152294635773, 0.7449623346328735, -0.2782118022441864, 0.5127381086349487, 0.37956422567367554, 0.28075850009918213, -0.32643839716911316, -0.4929613173007965, 0.8118429780006409, 0.6999512314796448, 0.3688822388648987, -0.6607190370559692, 0.3802796006202698, 0.22631298005580902, -0.1844063103199005, 0.9732499122619629, 0.5339332222938538, -0.15015102922916412, 0.7977975010871887, -0.8994932770729065, 0.15233565866947174, 0.17839273810386658, 0.5176824331283569, 1.1059645414352417, 0.7783722281455994, -0.8814364671707153, -0.09174743294715881, 1.0968515872955322, -0.11805250495672226, 1.0209770202636719, 0.5268601179122925, 0.48899179697036743, -0.5979142189025879, -0.3476911783218384, 1.6707793474197388, -0.5728294849395752, -0.1849481761455536, 0.5841287970542908, 0.9555666446685791, -0.11191421002149582, -0.21569129824638367, -0.4248236119747162, 0.13819655776023865, 0.1771906614303589, -1.2386205196380615, -1.1972695589065552, -0.6313077211380005, 0.5245435237884521, 0.9414962530136108, -0.06490753591060638, 1.2862818241119385, 0.428937703371048, -0.4660032093524933, -1.101103663444519, -0.1648566573858261, -0.344953715801239, 0.4280104339122772, -0.4687153697013855, -0.591801643371582, -0.7831341028213501, 1.1498130559921265, 0.1600998193025589, 0.025862235575914383, 0.8578181862831116, 0.3223569095134735, -0.9940718412399292, 0.39067941904067993, 0.3274199068546295, 0.32601308822631836, 0.8410234451293945, 0.8578765392303467, -0.27236127853393555, 0.10783079266548157, 0.45132583379745483, 0.015829358249902725, 0.014298065565526485, -0.37584733963012695, 0.4912749230861664, 0.7475030422210693, -0.9929928183555603, 0.6808822154998779, -0.025425024330615997, -0.778753936290741, -0.32426977157592773, 0.0716886892914772, 0.7577229142189026, -0.35151252150535583, 0.5629280209541321, -1.015014886856079, -0.09425457566976547, -1.0529887676239014, 0.22878168523311615, -0.31326794624328613, -0.369610071182251, -0.0003637464251369238, -0.812625527381897, 0.7492383122444153, 0.19379587471485138, 0.7292624711990356, 0.7897395491600037, -0.6825189590454102, -0.18752074241638184, 0.4114890992641449, -0.15466056764125824, 0.8819400668144226, 0.4864276647567749, -0.293805330991745, -0.9180176258087158, 0.4949910044670105, 0.5212442874908447, -0.7909238934516907, -0.2767966389656067, 0.47975850105285645, -0.2103523164987564, 0.4981288015842438, -0.7762411832809448, -0.8199299573898315, -0.7418444752693176, 0.5911216139793396, 0.252143532037735, -0.9297513961791992, 0.6897858381271362, -0.6878165006637573, -0.6798053979873657, -1.6992231607437134, 0.8988386988639832, -0.3387101888656616, -0.07990794628858566, -0.15672458708286285, 0.626855731010437, -0.2452041059732437, -0.3502965569496155, -0.5546723008155823, -0.5311865210533142, -0.43336549401283264, -0.8433401584625244, -0.23796233534812927, -1.1246010065078735, 0.43761134147644043, 0.03988020494580269, -0.8821530342102051, 0.4442601501941681, -1.002152919769287, -0.8205069303512573, -0.4025171101093292, 0.22583156824111938, -0.5804014801979065, -0.7924793362617493, 0.17511044442653656, -0.6340295076370239, -0.0764261931180954, -1.336153268814087, 0.8263950347900391, -0.7122492790222168, 0.7310804724693298, 0.433301717042923, -0.029163094237446785, -0.7889946103096008, 1.414323329925537, -0.6614903211593628, -1.087765097618103, 0.21961617469787598, 0.29963311553001404, -0.21348202228546143, 0.27842217683792114, 0.8845083713531494, 0.257610946893692, 0.25377190113067627, 0.23436453938484192, 0.6245884895324707, -0.7246227264404297, -0.663489580154419, -0.5845686197280884, -1.0715949535369873, 0.5822107195854187, -1.0401688814163208, -1.1915788650512695, 1.0023270845413208, -0.08857803791761398, -0.3599417507648468, 0.3916272521018982, 0.39864128828048706, 0.14777952432632446, 0.8538467884063721, -0.006021205335855484, 0.3091776669025421, -0.7015035152435303, 0.5085723400115967, -0.9248998165130615, -0.685636579990387, 0.07280970364809036, 0.2433438003063202, -0.01938810758292675, 1.139755129814148, 0.7893649339675903, -0.6333211064338684, 0.07770630717277527, 0.7086034417152405, -0.22489343583583832, -0.07150591164827347, -1.0436642169952393, -0.9303921461105347, 0.2242281138896942, -0.3052780330181122, 1.9194624423980713, 1.0300383567810059, -1.333124041557312, -0.09350275248289108, 0.10321546345949173, 0.07630432397127151, -0.514448344707489, -0.33283039927482605, -0.6041536331176758, -0.0729951485991478, -0.19923599064350128, -0.3593132495880127, 0.979097306728363, -0.12418302148580551, 1.0154896974563599, -1.1556479930877686, 0.4007611572742462, -0.3802027702331543, 0.27846264839172363, 0.03915927931666374, 0.9989159107208252, 0.9275009036064148, -1.118237018585205, -0.8675150275230408, -0.11928257346153259, 0.5916181802749634, -0.644649088382721, 0.46849381923675537, 0.7190628051757812, 0.5045991539955139, -0.6313884854316711, 0.2893853187561035, 1.043735384941101, 0.014988874085247517, 0.35584619641304016, -0.4694533348083496, 0.3337636888027191, 0.7499540448188782, -1.3710293769836426, -0.7627076506614685, 0.17245833575725555, 0.8319786787033081, 0.6019086241722107, 1.0280014276504517, 1.1717493534088135, 0.6001115441322327, 0.42403802275657654, -0.07463818043470383, -1.1367138624191284, -0.3193778991699219, -0.6247544884681702, -0.46679234504699707, -0.6784830689430237, 0.22453349828720093, -0.03023601695895195, -0.7133111357688904, 0.49302616715431213, -0.5477923154830933, 0.8152191042900085, 0.6480957269668579, -0.45894286036491394, -0.08154191076755524, -0.031385164707899094, 0.13802345097064972, -0.3821381628513336, 0.3893238604068756, 0.9118360877037048, -0.4912065863609314, 0.5317896008491516, 0.283418208360672, 0.6051428318023682, 1.2249891757965088, 0.289992094039917, -0.22651909291744232, -1.0622174739837646, -0.5111973881721497, -0.05848041549324989, 0.19094447791576385, 0.05690382048487663, 0.19822748005390167, -1.632946491241455, 0.18904848396778107, 0.7936278581619263, 0.7661550045013428, -0.3579716980457306, 0.8556581139564514, -0.6997800469398499, -0.7281539440155029, -0.5249986052513123, -0.1358110010623932, 0.4600561857223511, -0.4683343470096588, -0.5468737483024597, -0.17249463498592377, -0.33673369884490967, 0.07457884401082993, 0.1637117713689804, 0.16941168904304504, 0.8776508569717407, -0.46124136447906494, -0.2968309223651886, 1.738667607307434, -0.08469662815332413, -0.08742848038673401, -1.4278528690338135, 0.9264481663703918, 0.26934903860092163, 0.732688844203949, 0.5561689734458923, 0.530795156955719, 0.41172391176223755, -0.34736761450767517, -0.03463298827409744, -0.014371257275342941, 1.2191520929336548, 0.193726047873497, -0.327829509973526, -0.6930184960365295, 0.2755751609802246, -0.43471968173980713, -0.5717342495918274, -0.6131902933120728, 0.29763662815093994, -0.5358553528785706, -0.16001345217227936, 0.15019038319587708, -0.19317150115966797, -0.4731995165348053, 0.02562675252556801, -0.2564433813095093, 0.478572279214859, 0.07720458507537842, -0.35887420177459717, -0.7205114364624023, -0.4749531149864197, -0.002157021313905716, -1.438946008682251, 0.2768809497356415, 0.2843784689903259, -0.05463054031133652, 0.5873602628707886, -0.8185912370681763, 0.14493806660175323, 0.5854743123054504, 0.5959216952323914, 0.3923572599887848, -0.3646039068698883, 0.31424954533576965, -0.08995267003774643, -0.22328612208366394, 0.24554131925106049, -0.1336144506931305, 1.930308222770691, 0.3125952482223511, 0.2675812840461731, 0.3381047546863556, 0.5954362750053406, 0.18569929897785187, -1.0619868040084839, -0.25093239545822144, 0.713863730430603, -0.3747234642505646, 0.18862071633338928, -0.7685800790786743, -0.3070678114891052, 1.5358591079711914, 0.4818285405635834, 0.36220744252204895, 1.016740083694458, -0.9447190165519714, -0.11798732727766037, -0.03862372785806656, 0.600409209728241, 0.8693141341209412, -1.0644220113754272, 0.47422677278518677, 0.004512373823672533, -0.8802805542945862, 0.4830544590950012, 0.5506243705749512, 0.38633978366851807, -0.47621938586235046, 0.0651715025305748, 0.9358088374137878, -0.20155201852321625, 0.8868131637573242, 0.6644569635391235, 0.5934548377990723, -0.8122308850288391, -0.10665930807590485, 0.6650477647781372, -0.07827677577733994, 0.9692967534065247, 0.5755065679550171, 0.3336760997772217, 1.4836937189102173, -0.6091750264167786, -0.162187397480011, 0.5273537635803223, 0.391940712928772, 0.993500828742981, 0.8157985210418701, 0.2829563021659851, -0.595920741558075, -0.021796002984046936, 0.6184610724449158, -1.1441056728363037, 0.7097493410110474, 0.5835834741592407, -0.3109108507633209, 0.04789157211780548, -0.13614162802696228, -0.4951946437358856, -0.2744276225566864, -0.9142912030220032, -0.7172549962997437, -0.8874263167381287, 0.20138044655323029, 1.051639437675476, -0.533223032951355, 0.429387629032135, -0.2690499722957611, -0.7348334193229675, 0.5163024067878723, -1.1738255023956299, -0.1528974026441574, -0.24976278841495514, -0.6080332398414612, -0.5328059792518616, -1.0764644145965576, -0.46142295002937317, 0.24839630722999573, -0.7077202200889587, -0.6887988448143005, 0.31574586033821106, -1.3648531436920166, 0.042662546038627625, 0.4132463335990906, 1.38588547706604, 0.3689296543598175, -0.24713139235973358, 0.17068010568618774, 0.26479941606521606, -0.7492250204086304, -0.03713947907090187, 1.063245415687561, -0.6368709802627563, 0.2728956639766693, -1.4457862377166748, -0.7301730513572693, 1.3517067432403564, 0.531787097454071, -0.5389312505722046, 0.018356522545218468, 0.15252354741096497, 1.1167608499526978, -0.21160762012004852, -0.5329179763793945, 0.11039993911981583, -0.19871382415294647, 0.9749115109443665, 0.14417923986911774, -0.6048415303230286, -0.7897987961769104, -0.32349684834480286, -2.0416204929351807, 0.9321791529655457, 0.2816484868526459, -1.8227463960647583, 0.4625157415866852, 0.36057281494140625, -0.2950321435928345, 0.5226060152053833, -0.5471645593643188, -0.5338478684425354, 0.029834086075425148, 0.012052265927195549, -1.3337372541427612, 0.11781950294971466, -0.3032073676586151, -0.010265611112117767, -0.14653290808200836, 0.0434054434299469, -0.005329053848981857, 1.015263319015503, -0.3285611867904663, 0.740810215473175, 0.425674170255661, 0.584251344203949, 0.10997641086578369, -0.06376004219055176, 0.15642675757408142, -1.1777491569519043, -0.303120493888855, -0.6896400451660156, 1.1849440336227417, -0.052071064710617065, -0.4988279640674591, -0.08056614547967911, -0.7151316404342651, -0.18819774687290192, -0.3906434178352356, -0.7034308910369873, 0.19646768271923065, 0.5768109560012817, 0.17500901222229004, -0.08459960669279099, -0.20936711132526398, 0.39077088236808777, -0.6385108232498169, -0.4380766451358795, 0.8537279367446899, -1.7742462158203125, 0.06191851571202278, -0.8839051723480225, -0.3474307954311371, -0.3377349078655243, -0.16046717762947083, 0.32839417457580566, -1.2529321908950806, -0.169994056224823, -1.3609641790390015, -0.18206000328063965, 1.2606076002120972, -0.5214066505432129, 0.1809668391942978, 0.7205485105514526, -1.4373302459716797, 0.5266152620315552, 0.012121081352233887, -1.4875547885894775, 0.10056690871715546, -1.139129638671875, 1.0699336528778076, -0.9850590229034424, 0.12238537520170212, -0.2625059485435486, 0.7626810669898987, -1.0801373720169067, -1.4182446002960205, -0.07122316211462021, -0.3536625802516937, 0.7572792768478394, 0.904663622379303, -0.24659085273742676, 1.3144572973251343, 0.8454247713088989, -0.5662325024604797, -0.3614242672920227, 0.36030805110931396, -0.7477600574493408, 0.07562211900949478, 0.777156412601471, 0.056284282356500626, 0.2601274847984314, 0.7150648832321167, -0.41610339283943176, 0.6901172399520874, 0.5435307621955872, 0.6778886914253235, -0.3919351398944855, -0.4952029287815094, -0.4980001747608185, 0.017695525661110878, -0.5670216679573059, -0.08856752514839172, -0.08939731866121292, -0.9865357279777527, -0.6899642944335938, 0.7652719616889954, 0.883561372756958, -0.5879665017127991, -0.47973042726516724, -0.7369384169578552, 0.566921591758728, -1.0495706796646118, 0.14397147297859192, -0.032077085226774216, -0.5174282789230347, 0.32330358028411865, -0.5303929448127747, -0.3116666078567505, -0.3159727454185486, -0.4160362780094147, 0.00831202045083046, 0.2661437392234802, -0.29699695110321045, 0.22158381342887878, 0.6552371978759766, -0.17079196870326996, -0.16213883459568024, 1.8979970216751099, 1.2126123905181885, -0.4868757426738739, 0.5301858186721802, -0.3654150068759918, -0.29828202724456787, 0.5667750239372253, -0.604620099067688, -0.08564551919698715, -0.6777462959289551, 0.314638614654541, 0.054160069674253464, -0.28708165884017944, -0.9697577357292175, -0.5312318801879883, -0.28394296765327454, 0.5858138203620911, 0.045278944075107574, -0.0024161338806152344, -0.33222275972366333, 1.3150973320007324, 0.2256777435541153, -0.39734286069869995, 0.22183476388454437, 0.08190680295228958, 0.3407299816608429, 0.18518640100955963, 0.7561233043670654, 0.10959012806415558, -0.07796254009008408, 0.48555704951286316, -0.14250071346759796, 0.2850480079650879, 0.37173765897750854, -0.7648383975028992, -1.614190697669983, -0.327671080827713, -0.670386791229248, -0.5472548604011536, 0.6783369183540344, -0.23710325360298157, 0.0269966721534729, 0.4607141315937042, 0.022864466533064842, -0.13570046424865723, -0.8023859262466431, -0.15552248060703278, -0.06889605522155762, 0.12937462329864502, 0.2784636616706848, -0.43978792428970337, 1.319138526916504, 0.31164154410362244, -0.004534682258963585, 0.044519610702991486, -0.6594595313072205, -0.45421546697616577, 0.22454895079135895, 0.029926929622888565, -0.3287758231163025, -0.004659026861190796, -0.03544017672538757, -0.5311082005500793, 0.4458995759487152, -0.16232579946517944, 0.3619050085544586, 0.003271050751209259, -0.9742931127548218, 0.02130657620728016, 1.1406059265136719, -0.11621969193220139, -0.7865350842475891, -0.489853173494339, -0.45626962184906006, 0.42740610241889954, 0.1927376091480255, 0.3568439781665802, -1.1531322002410889, 1.4675525426864624, 0.6299083232879639, -0.07269120216369629, 0.20514033734798431, -0.2923023998737335, 0.31420156359672546, -0.8303155303001404, 0.980499267578125, 0.05822622403502464, -0.11315440386533737, 0.15938131511211395, -0.5389386415481567, 0.018826112151145935, -0.2807879149913788, 0.3766089379787445, 0.899186372756958, -0.8001682162284851, -0.680718719959259, -0.3861953020095825, 0.1238226518034935, 0.9947250485420227, 0.04073430970311165, -0.07118771225214005, -0.02373863011598587, -1.2603973150253296, -0.16957531869411469, 0.025299392640590668, 0.04983771964907646, -0.050788916647434235, 1.0477466583251953, 2.1341419219970703, 0.41511258482933044, -0.27416735887527466, -0.16454418003559113, 0.7293832898139954, -0.6205145120620728, -0.11978030949831009, -0.7482923865318298, -0.28738701343536377, -0.6378082633018494], [0.1268572211265564, 1.8703793287277222, -2.107581853866577, 0.060935039073228836, -0.41868293285369873, 0.3765559792518616, 0.9806077480316162, 0.20548385381698608, -0.27270427346229553, -0.20133784413337708, -0.6034663915634155, 0.37304365634918213, 0.6658509969711304, 0.3585895299911499, 0.11082735657691956, 0.41304516792297363, -0.2174305021762848, 0.47289717197418213, 2.067333221435547, 0.8635741472244263, -0.27965062856674194, -1.0766334533691406, -0.4489867091178894, -0.045902155339717865, -0.6695761680603027, 0.7777286767959595, -0.46190452575683594, -0.11620746552944183, -1.2331717014312744, -1.4034063816070557, 0.7536184191703796, -0.4951134920120239, 0.018669236451387405, 0.11232320964336395, -1.7520263195037842, -0.8492259979248047, 2.074281692504883, 0.7776957154273987, 0.07920762151479721, 0.40651339292526245, 2.1632556915283203, 0.04928085207939148, -0.3586863577365875, -0.9805063009262085, 0.7873028516769409, 0.4232759475708008, 0.4749695658683777, -1.1186109781265259, 0.33504676818847656, -0.28357309103012085, 0.5867950320243835, 0.6177499294281006, 0.43555784225463867, 1.0626593828201294, 0.44595178961753845, -0.8393982648849487, -0.1703062355518341, 1.2384333610534668, -0.05714939534664154, 0.7580394744873047, 0.5393602848052979, 0.12799905240535736, 0.6261177062988281, 0.7366429567337036, 1.2606627941131592, 0.030875839293003082, 0.6103433966636658, 0.46662697196006775, -0.08497180044651031, -0.4633510708808899, 0.4917672574520111, -0.20213791728019714, -0.7068850994110107, -0.08023244142532349, -0.628792405128479, 0.6678952574729919, -0.2643741965293884, 0.8362327814102173, -0.37775370478630066, 0.6860806941986084, -0.6536315083503723, -0.20975230634212494, 0.8392248749732971, 0.07360299676656723, 0.37382563948631287, 0.4547048807144165, 0.37633436918258667, -0.580529510974884, 0.23756438493728638, 0.9664564728736877, 0.5029057860374451, 0.4862525463104248, 0.6043481230735779, -0.24803116917610168, -0.19076594710350037, -0.6300498247146606, -0.3153696060180664, -1.3822600841522217, -0.4307882785797119, -1.1438052654266357, -0.18073050677776337, -1.203027367591858, 0.11645984649658203, 0.794753909111023, 0.48543262481689453, 1.8156914710998535, -0.13448160886764526, -0.26104363799095154, -0.8396908044815063, 0.13149844110012054, -0.23636066913604736, 0.4349726438522339, 0.1315433531999588, -1.5362720489501953, 0.0392824150621891, 0.7104300260543823, 1.2995023727416992, -0.2219657301902771, 0.3106755018234253, 0.6911865472793579, -0.9297671318054199, 0.06658579409122467, -0.09060791879892349, 0.09784066677093506, 0.25503265857696533, 0.3615487813949585, -0.6762682199478149, -0.4027762711048126, -0.03686603158712387, 0.3099823594093323, 0.3622822165489197, -0.5444098114967346, -0.042353201657533646, 0.6854519844055176, -1.191306710243225, 1.1480965614318848, 0.1303318589925766, -0.6064194440841675, -0.11661718040704727, -0.47623103857040405, 0.48649561405181885, -0.4899638593196869, -0.9670252799987793, -0.6787395477294922, -0.2925594747066498, -0.7954709529876709, 0.47710418701171875, 0.5547515153884888, -0.9463990926742554, 0.19852226972579956, -0.9738671183586121, 0.5889869928359985, 0.2278544008731842, 0.7880642414093018, -0.039670541882514954, -0.22468741238117218, 1.1573623418807983, -0.01835968717932701, 0.08186303824186325, 0.890404224395752, 0.6497235894203186, 0.5142033696174622, -0.5055941343307495, 0.9633430242538452, 0.022753126919269562, -0.8617942333221436, 0.7688350677490234, 0.4050575792789459, -0.0631709173321724, 0.09446577727794647, -0.37501031160354614, -0.2606505751609802, -0.9574567675590515, 0.7902781963348389, 0.5084953904151917, -0.8448139429092407, 0.9254698753356934, -0.44920748472213745, -0.8506767749786377, -2.181602954864502, 0.15658676624298096, -0.014081870205700397, 0.5587061643600464, 0.6498340368270874, 0.9323612451553345, -0.6775221824645996, -0.02786404639482498, -0.2250491976737976, -0.32396718859672546, -1.0291008949279785, -1.118318796157837, 0.3320038318634033, -0.8118457794189453, 0.18191780149936676, -0.1633160561323166, -0.610985517501831, 0.9661996364593506, -0.21789517998695374, -0.4375372529029846, -0.0953022688627243, -0.4677840769290924, -0.6800801753997803, -1.1972566843032837, -0.12539581954479218, -0.34056803584098816, 0.6192260384559631, -1.2440769672393799, 0.31603288650512695, -0.7164427042007446, 0.38788339495658875, 0.9058900475502014, -0.3209199011325836, -1.1099073886871338, 0.7374986410140991, 0.21938253939151764, -1.5731010437011719, 0.40500086545944214, -0.005716340616345406, 0.43472787737846375, 0.1405288428068161, 0.24715980887413025, 0.9352480173110962, 0.8284248113632202, 0.36868637800216675, 1.0906699895858765, -0.3340713381767273, -1.0373268127441406, -0.9194537401199341, -0.6558816432952881, 0.2891736328601837, -0.8724023103713989, -1.0553209781646729, 0.4373946189880371, 0.7214877605438232, -0.36204907298088074, 1.2265580892562866, 0.3218018114566803, -0.2272781878709793, 0.4280833601951599, 0.6915909051895142, 0.22042883932590485, 1.1282111406326294, -1.131169080734253, -0.9504649639129639, -0.4027712941169739, -0.35798296332359314, 0.1262570470571518, -0.7242840528488159, 0.2494666576385498, 1.330280065536499, 1.5921499729156494, -0.37104088068008423, 0.4772568643093109, -0.438540518283844, 0.0881372019648552, -0.6649086475372314, 0.3074212074279785, -0.038401808589696884, -0.732650876045227, 0.9602015018463135, 0.7351862192153931, -1.2134822607040405, 0.5937576293945312, 0.04968739673495293, 0.46563616394996643, -0.43946748971939087, 0.02123287320137024, -0.45188310742378235, 0.6136930584907532, 0.2692343592643738, 0.009937804192304611, -0.05432150512933731, -0.5316502451896667, 0.5406227111816406, -0.13912582397460938, -0.18610486388206482, -0.3510957360267639, 0.2880439758300781, -0.04530344158411026, 0.2679968774318695, 0.26890116930007935, -1.4446051120758057, -1.2345305681228638, -0.2635790705680847, 0.4964194893836975, 0.36534711718559265, 0.680908739566803, 0.7329403758049011, 1.114140510559082, 0.07534565031528473, -0.1479901820421219, 0.1482832282781601, -0.6097645163536072, -0.25180336833000183, -0.2736859917640686, -0.6469003558158875, 0.4225422143936157, -0.27857017517089844, -0.3492293357849121, -0.040281299501657486, 0.4428470730781555, 0.5845521688461304, 1.4722740650177002, 1.313335657119751, -0.9357032775878906, -0.041604261845350266, -0.3274894058704376, -0.15191872417926788, -1.1390190124511719, -1.0962607860565186, 0.08787790685892105, -0.9236769676208496, -0.1614813357591629, -0.2647852301597595, -0.2401018738746643, 0.4843235909938812, 0.1268632411956787, 0.4106943905353546, 1.4331823587417603, -0.18427716195583344, -0.7748286128044128, -0.4443719983100891, -0.215695321559906, -0.9917992353439331, 0.6166297793388367, 0.6216299533843994, -0.9752886891365051, -0.7035373449325562, -0.10033786296844482, 0.31904280185699463, 0.5947057008743286, -0.23019173741340637, 0.5788267850875854, -0.7273997664451599, -0.8812326788902283, 0.5323869585990906, 1.0026400089263916, 0.7207235097885132, -0.15935875475406647, -0.8926715850830078, 0.1401222050189972, 0.6330030560493469, 0.38486531376838684, -0.7528924345970154, 0.36969882249832153, -0.08850501477718353, -0.38476699590682983, -0.2811230421066284, 0.13846059143543243, 0.8295807838439941, -0.6336060762405396, -0.5148838758468628, 0.21516817808151245, 0.14121469855308533, -1.3629565238952637, 0.6406465172767639, 0.07401677221059799, 1.1285474300384521, 0.2929767966270447, -0.2543456554412842, 1.1099154949188232, -0.34700632095336914, 0.023181870579719543, -1.9185110330581665, 0.6556581854820251, 0.9078885912895203, 1.2897634506225586, 0.8482829928398132, -0.14571380615234375, 0.020222142338752747, -0.4032997488975525, 0.5944397449493408, -0.12900111079216003, 0.6122068762779236, -0.25365880131721497, -0.28651875257492065, 0.019868992269039154, -0.5566695928573608, -0.0896911770105362, -0.5188730359077454, -0.3236842453479767, 0.6795058250427246, -0.16286993026733398, -0.058588266372680664, 0.47403448820114136, -0.1174878254532814, -0.8345886468887329, -0.8219759464263916, -0.13531261682510376, 0.24340218305587769, 0.28850695490837097, 0.322639524936676, -0.4286521077156067, -0.3246096968650818, 0.27052080631256104, -0.6186509132385254, 0.00044542551040649414, -0.5028886795043945, -0.20906749367713928, 1.02485191822052, -1.1040198802947998, -0.4996345043182373, -0.10115428268909454, -0.031842008233070374, 0.943913459777832, 0.2138231098651886, -0.22590941190719604, -0.056791964918375015, -0.32434338331222534, 0.1548653244972229, -0.24828481674194336, 1.1809799671173096, 0.781754732131958, -0.30736851692199707, -0.08409322053194046, 0.293517142534256, 0.5130143165588379, -0.7591971158981323, -0.47532111406326294, 0.3777257800102234, -1.302420735359192, -0.08172982931137085, -0.23371785879135132, -0.003377724438905716, 1.1184496879577637, -0.1682758927345276, 0.5888153910636902, 0.6713480949401855, -0.747346043586731, -0.11513392627239227, -0.045360442250967026, 0.7053586840629578, -0.9044190645217896, -0.2569226622581482, 0.3621536195278168, -0.006811417639255524, -0.3797016739845276, 0.2631751298904419, 0.3294251561164856, 0.47162753343582153, 0.10843956470489502, -0.49277710914611816, 0.5058729648590088, 0.4945492446422577, 0.445216566324234, 1.3824100494384766, 0.5188212394714355, -0.26112306118011475, -0.8682852983474731, 1.4130651950836182, -0.4411119520664215, 0.38483381271362305, 0.13507738709449768, 0.5002065300941467, 1.147169828414917, -1.2572736740112305, -0.6835076212882996, 0.6995674967765808, 0.32897546887397766, -0.19737647473812103, -0.26097628474235535, 0.3402576446533203, -1.355210781097412, -0.36825376749038696, 0.1632942408323288, 0.02704242244362831, 0.26756173372268677, -0.05008430778980255, -0.06925045698881149, 0.244961217045784, -0.0199180506169796, 0.050102557986974716, -0.7032996416091919, -0.129257470369339, 0.30187052488327026, -0.3930984139442444, 0.38196083903312683, 0.25182899832725525, 0.4219430387020111, 0.059676431119441986, -0.47364357113838196, -0.5938528180122375, 0.2182755023241043, -0.7949929237365723, 0.35182592272758484, -0.533760130405426, -0.5126999020576477, -0.47472846508026123, -0.7718427181243896, -0.9551326036453247, -0.269656240940094, -0.19635191559791565, 0.39558500051498413, 0.45759257674217224, -1.3512417078018188, 0.3896612524986267, 0.24302077293395996, 1.272841215133667, 0.8142163753509521, 0.21939370036125183, -0.3191685378551483, -0.012207895517349243, -0.4939430356025696, 0.4020702838897705, 0.23986712098121643, -0.13169628381729126, -0.23328953981399536, -1.209306240081787, -0.49021559953689575, 1.3497518301010132, 0.11272484064102173, 0.33874520659446716, 0.294067919254303, 0.3581587076187134, 1.8427456617355347, -0.42492127418518066, -0.5184842944145203, 0.8038516044616699, 0.12208405137062073, 0.706234335899353, 0.3057709336280823, -0.9033284187316895, -0.6216694116592407, -0.315015971660614, -1.218794345855713, 1.6506285667419434, 0.3389533758163452, -1.0985820293426514, 0.06423668563365936, 0.8097115755081177, 0.3929014205932617, 0.9568884372711182, -1.0243326425552368, -0.1550079584121704, 0.896294891834259, -0.37392133474349976, -1.050734043121338, 0.3324326276779175, 0.7619069814682007, 1.2318720817565918, -0.37670549750328064, 0.32809245586395264, -0.7321100234985352, 0.14679598808288574, -0.13120508193969727, -0.08739975839853287, 0.4796026349067688, 0.38932567834854126, 0.4315693974494934, -0.5784988403320312, 0.4607698917388916, -0.6922060251235962, 0.566338300704956, -0.12250245362520218, 1.6046500205993652, 0.35617825388908386, -0.7625311613082886, 0.3934793174266815, -0.6521955728530884, 0.01693597622215748, -0.48403075337409973, -0.5954133868217468, 0.5069305300712585, 1.1845966577529907, -0.19804245233535767, 0.5147759914398193, -0.05135681480169296, -0.5703723430633545, -0.606644868850708, -0.15968731045722961, 0.5300223231315613, -0.47330164909362793, 0.36953848600387573, -0.43260639905929565, 0.3045503795146942, -0.07205478847026825, -0.24550679326057434, 0.056733548641204834, -0.6112679243087769, -1.3903748989105225, -0.8812612891197205, -0.30682265758514404, 0.35656923055648804, -0.7428919672966003, 0.2118774652481079, 0.2715044319629669, -1.5038628578186035, 0.7442887425422668, -0.125564843416214, -2.048508644104004, -0.08445697277784348, -0.4884021282196045, 0.7394955158233643, -0.5784074068069458, 0.015741854906082153, 0.23505863547325134, 0.6837598085403442, -0.9390870332717896, -1.1487979888916016, -0.8828940391540527, -0.12013611197471619, 0.7218202352523804, 0.6576661467552185, -1.1477185487747192, 1.0702921152114868, -0.5129880309104919, -0.2833121716976166, -0.2714589238166809, -0.20735988020896912, -0.8740938901901245, -0.29893261194229126, 0.2927825450897217, -0.1882076859474182, 0.20786133408546448, 1.147108554840088, 0.8813896775245667, 0.6144607067108154, 0.11524355411529541, -0.17357036471366882, -1.3821241855621338, -0.3217769265174866, -0.21772021055221558, -0.5295605659484863, -0.9897778630256653, -0.48421406745910645, -0.07294531166553497, -0.5111439824104309, -0.7760598063468933, 1.0622022151947021, 1.4824490547180176, -1.176565408706665, 0.5028356909751892, 0.19790086150169373, 0.10339358448982239, -1.279529333114624, 0.4365151524543762, -0.4443846344947815, 0.11747489869594574, 0.7941370606422424, 0.20057925581932068, 0.4833531975746155, -0.9610621929168701, -0.2902086079120636, 0.2900692820549011, 0.2194218784570694, -0.39261049032211304, 0.3146599531173706, 0.522417426109314, 0.30336111783981323, -0.32228410243988037, 1.4205050468444824, 0.261442631483078, -0.3780457377433777, 0.3062293529510498, 0.1761489361524582, -0.4735541045665741, -0.3851308226585388, 0.07934801280498505, 0.431438148021698, -0.9555554389953613, 0.33530503511428833, 0.08067195117473602, 0.26968082785606384, -0.09751993417739868, 0.3026092052459717, -0.010314365848898888, 0.17203909158706665, 1.2942619323730469, 0.3893486261367798, -0.9084221124649048, 1.0669960975646973, 0.5525877475738525, -0.09251611679792404, 0.7973175644874573, -0.5338740348815918, 0.1896388828754425, 0.21478796005249023, 0.2979080080986023, 0.10445288568735123, -0.27829551696777344, 1.2171859741210938, 0.8033331036567688, -0.011230206117033958, -0.26793697476387024, -0.6673777103424072, -1.1594722270965576, -0.6728084087371826, 0.016470829024910927, 0.4258861839771271, 0.5108649134635925, -0.9421457648277283, -0.6746628284454346, -0.17963051795959473, 0.6245854496955872, -0.11707388609647751, -0.14690828323364258, 0.21276675164699554, -0.2083767056465149, -0.6280936002731323, 0.690666675567627, -0.6960327625274658, 1.0498313903808594, 0.5119492411613464, -0.05785498023033142, -1.0579771995544434, 0.10860052704811096, 0.5251073241233826, -0.1876171976327896, 0.39480412006378174, 0.1422964334487915, 0.2864511013031006, -0.9043405055999756, -0.06848487257957458, -0.09445424377918243, 0.2368396520614624, 0.5110592842102051, 0.23466148972511292, -1.558429479598999, 0.2672450840473175, 0.6146239042282104, -0.45883238315582275, -0.2801324725151062, -0.15653842687606812, -0.7931063175201416, 0.25812339782714844, 0.06840342283248901, 0.3078007996082306, -0.46100687980651855, 0.6263431310653687, 0.4133164882659912, 0.012179560959339142, -0.9717876315116882, -1.0678644180297852, 0.7754318714141846, -0.21498961746692657, 0.7037031650543213, -0.5033034682273865, 0.17163491249084473, 0.4088422656059265, -0.6405088901519775, -0.20665544271469116, -0.15364959836006165, -0.5110126733779907, -0.08846345543861389, -1.0743868350982666, -0.4014459550380707, -1.0383713245391846, -0.17848363518714905, 0.4680502116680145, 0.24731367826461792, -0.011729083955287933, 0.05843408405780792, -1.078185796737671, -0.32991623878479004, 0.7536776065826416, -0.04176284745335579, 0.14603032171726227, 1.4747785329818726, 1.7189509868621826, 0.307860404253006, 0.1514328420162201, -0.2846885621547699, 0.16990019381046295, -0.8526804447174072, 0.3162255585193634, -0.8575280904769897, -0.26155519485473633, -0.5733687877655029], [-0.5938746333122253, 1.7009835243225098, -2.1853394508361816, -0.24158231914043427, 0.5067654252052307, 0.14089654386043549, 1.293782114982605, -0.32601726055145264, -0.16637557744979858, -1.0364463329315186, -0.45878636837005615, 0.32243210077285767, 0.7095611095428467, 1.0833818912506104, 0.35414740443229675, 0.6736005544662476, 0.3401857912540436, -0.163908451795578, 0.6942148208618164, 1.2341996431350708, 0.34798628091812134, -1.2701044082641602, -0.2581457495689392, -0.19897721707820892, 0.08568504452705383, -0.3897830545902252, -0.43797263503074646, -0.0398775078356266, -0.6140038967132568, -0.6744182705879211, 0.9237887263298035, -0.21794600784778595, 0.37364494800567627, -0.27809271216392517, -1.0684117078781128, -1.1465619802474976, 0.44964325428009033, -0.359950989484787, -1.0826976299285889, 0.17031486332416534, 2.0379745960235596, -0.04039768502116203, -0.12718108296394348, -1.2595739364624023, 0.5434054732322693, -0.3113824129104614, 0.2765251100063324, -0.6045423746109009, -0.2256610095500946, -1.06777822971344, 0.44954603910446167, -0.4453229010105133, 0.5122482180595398, 0.9581810235977173, 0.42420145869255066, -0.44176238775253296, -0.02938961237668991, 0.9238321185112, -0.325227826833725, 0.4083385467529297, 0.9412536025047302, 0.42820775508880615, 0.3231278955936432, 1.1810681819915771, 0.4156431555747986, -0.4651270806789398, 0.5691156983375549, 0.21025224030017853, 0.5638522505760193, 0.44433310627937317, 0.6828102469444275, 0.35823044180870056, -0.3744560480117798, -0.22768400609493256, -0.4859974980354309, -0.03999566286802292, -0.46018746495246887, 0.39661306142807007, -0.21894079446792603, 0.3174584209918976, -0.30989348888397217, 0.800713300704956, -0.007087950594723225, -0.5348353385925293, 0.4511767327785492, -0.11991530656814575, 0.07794231921434402, -0.683448076248169, -0.704188883304596, 1.208247423171997, -0.09640452265739441, 0.012775547802448273, 0.905886709690094, -0.6379119157791138, -0.45091888308525085, -1.102596402168274, -0.211052805185318, -0.5088613033294678, 0.11642108857631683, -1.2027490139007568, -0.5522611737251282, -0.7790234088897705, 0.15355806052684784, 0.489681601524353, 0.37868115305900574, 1.6420848369598389, 0.7702323794364929, -0.285724937915802, -0.7152062654495239, 0.14446014165878296, 0.504176139831543, -0.2017875462770462, -0.9224060773849487, -0.4059564769268036, -0.1899007260799408, 0.678275465965271, 1.2619695663452148, -0.11649569123983383, 0.7539871335029602, 0.29525208473205566, -0.33032482862472534, -0.9598996639251709, -0.6936723589897156, 0.08280809223651886, 1.515468955039978, -0.19920532405376434, -0.7582783102989197, -0.05124397948384285, -0.43131163716316223, -0.25302380323410034, 0.47963255643844604, -0.10217534750699997, -0.1661132276058197, 0.6543874740600586, -0.40767714381217957, 1.1860392093658447, 0.06862073391675949, -0.9081641435623169, 0.1342039555311203, 0.40261906385421753, -0.16472728550434113, 0.3214060664176941, -0.6671748161315918, -0.7525513172149658, 1.089616060256958, -1.0375888347625732, 0.02152620255947113, -0.23728182911872864, -0.43231886625289917, 0.6724902391433716, -1.129516363143921, 0.03265134617686272, 0.011244475841522217, 1.9053630828857422, 0.21733352541923523, -0.10482367128133774, 0.5458182692527771, 0.13919179141521454, 0.1621864140033722, 0.4780479073524475, 1.5669931173324585, -0.38371598720550537, -0.9427812099456787, 1.3563790321350098, 0.15755538642406464, -0.7102497220039368, 0.6983957886695862, 0.2669369876384735, -0.6885591745376587, 0.44172611832618713, -0.15959309041500092, -0.21839703619480133, -1.299238681793213, 0.7711195945739746, -0.34471073746681213, 0.18363869190216064, 1.4871840476989746, 0.07048754394054413, -0.8092162013053894, -0.5451430082321167, 0.6487491726875305, -0.6564377546310425, 0.018007857725024223, 0.3495458662509918, 0.6621027588844299, -0.4524688422679901, -0.45440220832824707, -0.7745545506477356, 0.011794345453381538, -1.0707917213439941, -0.8445507884025574, -0.3764677345752716, -1.5039575099945068, 0.7500734925270081, -0.9356483221054077, -0.7116559743881226, 0.7180752158164978, -0.2309141606092453, -0.10266361385583878, -0.2948549687862396, -0.21051044762134552, -0.13047584891319275, -1.5256417989730835, 0.27612704038619995, -0.7836705446243286, 0.6570632457733154, -0.2483072429895401, 0.904909074306488, -0.2188732773065567, 0.47737571597099304, 1.0861883163452148, -0.6246727705001831, -1.1833959817886353, 0.4255085289478302, 0.09054487198591232, -1.1088494062423706, 0.2502420246601105, 0.11889612674713135, -0.0811186209321022, 0.42205289006233215, 0.3395840525627136, -0.057857125997543335, 0.37702545523643494, -0.013715543784201145, 0.6204662322998047, 0.08686292171478271, -0.7344498634338379, -0.25345900654792786, -0.4089919924736023, 0.27464184165000916, -0.9974384903907776, -0.7786960005760193, -0.03994038328528404, 0.041170381009578705, -1.2669914960861206, 1.254937767982483, -0.5147725939750671, 0.15021036565303802, 0.9181257486343384, 1.220845341682434, 0.6717270016670227, 0.1425231248140335, -0.13938374817371368, 0.5955314636230469, -0.7146826386451721, -0.40042340755462646, 0.9803747534751892, -0.1663827896118164, -0.10987680405378342, 1.496689796447754, 0.5672829151153564, -0.13845226168632507, 0.7892618775367737, -0.7519540786743164, 0.3518829047679901, -0.5787582993507385, 0.25492843985557556, -0.2585434317588806, -1.05055570602417, 0.8550530076026917, 0.13708147406578064, -0.6340544819831848, 0.21205675601959229, -0.13466113805770874, 0.5137747526168823, -0.37320876121520996, -0.1589004099369049, -0.2587202787399292, 0.21178090572357178, -0.4252718687057495, -0.4081408977508545, 0.14020445942878723, -0.7035978436470032, 1.0282843112945557, -0.028283942490816116, -0.2700507938861847, 0.2309429794549942, 1.5704859495162964, 0.4332694113254547, 1.2741895914077759, -0.0922318547964096, -1.5793733596801758, -0.7865507006645203, -0.06921867281198502, 0.7289533615112305, -0.31070277094841003, -0.3065413236618042, 0.22346509993076324, 0.9973517060279846, -0.3234096169471741, 1.3371281623840332, -0.13375677168369293, -0.09970979392528534, 0.2067522555589676, -0.23850888013839722, 0.4240926504135132, 0.10667318105697632, -0.6830182671546936, -0.6417882442474365, -0.06268216669559479, 0.7109038829803467, 1.1996303796768188, 1.2114615440368652, 0.8076050877571106, 0.11538314819335938, 0.5267949104309082, -0.4158174395561218, 0.2483772337436676, -0.37150147557258606, -0.6726650595664978, -0.3075541853904724, -0.3824811577796936, -0.8665175437927246, -0.15220791101455688, 0.0773148313164711, 0.9986861348152161, -0.28732824325561523, 1.0353333950042725, 0.12682728469371796, -1.2967851161956787, -1.5176092386245728, -0.0062205493450164795, -0.015524497255682945, -1.2485274076461792, 0.7300524711608887, 1.625989317893982, -1.1243832111358643, -0.04948127642273903, 0.5070598721504211, 0.12603285908699036, 0.3845760226249695, 0.7974684834480286, 0.24313880503177643, -0.987739086151123, -0.18998898565769196, -0.37867432832717896, 1.1633800268173218, -0.4557448923587799, 0.0732748880982399, -0.18870140612125397, 0.7975847721099854, 0.6993590593338013, 0.09837479889392853, 0.14575695991516113, 0.5290018916130066, -0.6928461790084839, -0.5311117172241211, -0.14725281298160553, 0.41827160120010376, 0.690747857093811, -0.0779692754149437, -1.1465392112731934, -0.6837747693061829, -0.14858384430408478, -0.5204073786735535, 0.7523475885391235, 0.4085516929626465, 1.0276594161987305, 0.06968383491039276, 0.08553649485111237, 1.1130263805389404, -0.11313224583864212, 0.3448021113872528, -1.4265069961547852, 0.8989978432655334, 0.8583579063415527, 1.1928352117538452, 0.2901725769042969, -0.005739610642194748, 0.27958300709724426, -0.6029396653175354, 0.020059939473867416, -0.27701300382614136, 0.5833548307418823, 0.2687655985355377, -0.651913583278656, -0.17295941710472107, -0.02117609977722168, 0.061683643609285355, -0.10269226133823395, 0.026168888434767723, 0.3254778981208801, -0.09234568476676941, -0.1255510002374649, 1.5359681844711304, 0.21656301617622375, -0.11219971626996994, -0.9217179417610168, 0.5179750919342041, 0.2426406443119049, -0.5497268438339233, -0.352607786655426, -0.03427981585264206, 0.11113478243350983, 0.6191396713256836, -0.19202233850955963, -0.15023477375507355, -0.555324137210846, 0.8155210018157959, 1.2749942541122437, -1.534912347793579, -0.24239343404769897, -0.9860202074050903, 0.7846634387969971, 0.9013646245002747, -0.2962718904018402, 0.97159343957901, 0.34013164043426514, -0.27513548731803894, 0.03671508654952049, 0.6724822521209717, 1.2354620695114136, -0.13029508292675018, 0.23275528848171234, 0.03863580524921417, -0.19763441383838654, 0.7025299668312073, -0.9242969155311584, -0.599534273147583, 0.06694955378770828, -0.6545402407646179, -0.02093678154051304, 0.35903993248939514, -0.41556915640830994, 1.1534483432769775, 0.492666631937027, 0.1257728487253189, 0.48737210035324097, 0.35669445991516113, -0.9321689009666443, 0.2553249001502991, -0.1337786763906479, -0.1006515845656395, -0.13946056365966797, 0.12074701488018036, -0.41823524236679077, 0.16221599280834198, 0.10571431368589401, 0.2557782530784607, 0.04120877385139465, -0.24816225469112396, -0.318440318107605, 0.17075982689857483, 0.3682788014411926, 0.6042187213897705, 1.2852803468704224, 1.5364961624145508, -0.2901856005191803, -0.600203812122345, 0.7161617279052734, 0.06425811350345612, 0.4333830773830414, 0.8994869589805603, 0.5454114079475403, 1.1342835426330566, -0.9644442796707153, 0.42281660437583923, 1.3563247919082642, -0.5342283248901367, 0.49765729904174805, -0.068075031042099, 0.21117202937602997, -1.4644184112548828, 0.2875519394874573, 0.2841624617576599, 0.04274487495422363, 0.7900580763816833, -0.05728905275464058, 0.25895726680755615, 0.45202142000198364, -0.27146831154823303, 0.46061959862709045, -0.2905142307281494, -0.11006040871143341, -0.1777406632900238, 0.02277008816599846, 1.030684232711792, 0.6923537850379944, 0.664958119392395, 0.9477069973945618, -0.5615395903587341, -1.6987543106079102, 0.5117691159248352, -0.7979394197463989, 0.21804878115653992, -0.21188129484653473, -0.1974261850118637, -0.39422374963760376, -0.9763217568397522, -0.3503307104110718, -0.3893093168735504, -0.4460713863372803, -0.9309197068214417, -0.30307573080062866, -0.9829122424125671, 0.0766320750117302, -0.5475688576698303, 1.0693374872207642, 0.515840470790863, 0.45793473720550537, 0.7373751997947693, 0.12374135106801987, -0.5258360505104065, 0.18713970482349396, -0.4428865909576416, -0.17499367892742157, -0.22265349328517914, -1.1704407930374146, -0.5901612043380737, 0.5456269383430481, 0.6941822171211243, 0.45246556401252747, 0.4812563359737396, 0.6869919300079346, 0.9752688407897949, -0.9668270945549011, -0.4511573016643524, 0.44905462861061096, -0.2118949443101883, 0.8208773136138916, 0.17977409064769745, -1.0162937641143799, -0.0620422437787056, -0.16789838671684265, -2.227416515350342, 1.1467362642288208, 0.1513756811618805, -0.3149532377719879, 0.5667961239814758, 0.5379419326782227, -0.002417993266135454, 1.3694286346435547, -0.5824409127235413, -0.00997666735202074, 0.1924293041229248, -0.8419045805931091, -1.4226936101913452, 1.0295097827911377, 0.737669050693512, 0.155255526304245, -1.4150723218917847, 0.03983812779188156, -0.43289268016815186, -0.7320353984832764, -0.3782888948917389, -0.46435773372650146, 0.5794650316238403, 0.6734387278556824, 0.10486210882663727, -0.9822748303413391, 0.07032755762338638, -0.6064445376396179, 0.7044041752815247, 0.6712051033973694, 0.3865344822406769, 0.9982378482818604, -0.4050574004650116, 0.9532471299171448, -0.6491085290908813, -0.34698620438575745, 0.3091142475605011, -0.37494131922721863, 0.44344890117645264, 0.472817063331604, 0.2376098334789276, 0.609367311000824, -0.06826512515544891, -0.5939094424247742, -0.5134033560752869, 0.11545303463935852, 0.7568651437759399, -0.7198031544685364, -0.3607352674007416, -0.3229178488254547, -0.4325924217700958, 0.16090106964111328, 0.6065806150436401, -0.020700804889202118, -1.0235356092453003, -0.5456609725952148, -0.47748997807502747, -0.41099146008491516, 0.6419628262519836, -0.36547932028770447, 0.3936183750629425, 0.14380614459514618, -1.3588995933532715, 0.6600341200828552, 0.1395753175020218, -2.216620683670044, -0.09884577244520187, -0.9597642421722412, 0.8746340870857239, 0.31612399220466614, 0.36829298734664917, 0.5859822630882263, 1.0105869770050049, -0.8880736827850342, -0.2708301246166229, -1.0098090171813965, -0.3696145713329315, 0.6218228340148926, 0.6914486289024353, -0.7205517292022705, 0.7916579246520996, 0.4503602683544159, -0.6388286352157593, -0.4727921187877655, 0.4638834595680237, -1.5279167890548706, -0.04649287089705467, 0.4414297342300415, 0.1718863546848297, 0.11425919085741043, 1.3356099128723145, 0.23706139624118805, 0.9317641854286194, -0.18208131194114685, 1.2528131008148193, -0.44140055775642395, -0.8377143740653992, -0.08983319997787476, 0.3537125289440155, -1.1085633039474487, -0.6641251444816589, 0.02922702394425869, -0.9194967746734619, -0.508021354675293, 0.28290313482284546, 0.940793514251709, -0.21044719219207764, 0.5764443874359131, -0.21011391282081604, -0.06268424540758133, -1.2856407165527344, 0.181965172290802, 0.4480275809764862, -1.3596298694610596, -0.574738621711731, -0.27009880542755127, 0.6912358403205872, -1.211273193359375, 0.4627833068370819, 1.376493215560913, 0.3940267264842987, -0.433640718460083, -0.03459080681204796, -0.0522601418197155, 0.5843615531921387, -1.1161504983901978, 0.6130434274673462, 0.3354455828666687, -0.16617915034294128, -0.12490666657686234, 0.8138637542724609, -0.1834181845188141, 0.2428494691848755, 0.0018467903137207031, -1.2383689880371094, -1.0042192935943604, 0.5143170952796936, 0.03456120193004608, 0.21840929985046387, 0.289169043302536, 0.7180418968200684, -0.41193896532058716, -0.1393134891986847, 1.579651117324829, -0.4910794794559479, -1.1106547117233276, 0.5936363339424133, 0.7569945454597473, -0.4720918834209442, 0.16119477152824402, 0.13252630829811096, 0.547301173210144, -0.0316879004240036, 0.8637607097625732, 0.2131066620349884, -0.8067994713783264, 0.2508494555950165, -0.06460665911436081, -0.9341630935668945, 0.27542462944984436, -0.21100522577762604, -1.0635697841644287, -0.47305822372436523, -0.5826793909072876, 0.03752071037888527, 0.5500637292861938, -1.3522043228149414, -1.1902891397476196, -0.007141639944165945, -0.0603279247879982, 0.038101546466350555, -0.7302168011665344, 0.16444970667362213, -0.8620937466621399, -0.2114013135433197, 0.9158480763435364, -0.4583677351474762, 1.3547015190124512, 0.1587178111076355, 0.05442476272583008, -0.01471959613263607, -0.13594874739646912, -0.0035579977557063103, -0.3915407955646515, -0.22400124371051788, -1.2716970443725586, -0.27730390429496765, -0.6360233426094055, -0.6135163307189941, 0.4631379246711731, -0.5769692659378052, 0.10926618427038193, -0.0827455073595047, -1.0695085525512695, 0.31274309754371643, -0.01000990904867649, 0.2872653603553772, -1.0230752229690552, -0.9359179735183716, -0.32498908042907715, 0.3521752953529358, 0.21829308569431305, 1.3333357572555542, -0.17892728745937347, 1.0128021240234375, 0.38916048407554626, -0.8635921478271484, -1.006186604499817, -0.0967082753777504, 1.5915734767913818, -0.6107531785964966, 0.5701251029968262, -0.34232860803604126, -0.5347778797149658, -0.17455053329467773, -1.2728705406188965, -0.132170170545578, 0.28105250000953674, -0.16154277324676514, -0.3654858469963074, -0.29656702280044556, -0.6450470685958862, -0.27155742049217224, 0.4453218877315521, -0.1564471572637558, 0.5638753771781921, 0.29507362842559814, -0.31954866647720337, -1.0390901565551758, -0.29340577125549316, 0.1836797446012497, -0.47743502259254456, 0.15188418328762054, 1.2322518825531006, 1.5357331037521362, -0.041044682264328, -0.42633095383644104, -0.2187291830778122, 0.7388021945953369, -1.140832781791687, -0.08919654041528702, -0.8692733645439148, -0.3944137394428253, 0.27502962946891785], [0.5222412347793579, 1.2732374668121338, -1.8672730922698975, -1.001229166984558, 1.4122461080551147, 0.6230877637863159, 0.47853487730026245, 0.5308550596237183, -0.08649026602506638, -0.4319004714488983, -0.4437362551689148, 0.5583253502845764, 1.2370043992996216, 1.8307600021362305, 0.6926263570785522, -0.5078340172767639, 0.9222701787948608, -0.33406543731689453, 0.222126767039299, 1.4628636837005615, -0.1314006745815277, -0.46628591418266296, -1.336051344871521, -0.09925210475921631, 0.0778493583202362, 0.5787363648414612, -1.4501593112945557, -0.7186765670776367, -1.2388603687286377, -0.4659549593925476, 0.545620322227478, -0.2637248635292053, -0.8794450163841248, -0.08553905040025711, -2.193638563156128, -0.34193506836891174, 0.6754105091094971, -0.5834181904792786, -0.7463638186454773, 0.6478387713432312, 2.0825634002685547, -0.198125958442688, 0.09577631205320358, -0.8245369791984558, 0.6303480267524719, -0.6899356245994568, -0.3852246105670929, -0.7348649501800537, -0.25951215624809265, -0.9539889693260193, 0.2050047665834427, -0.5556530952453613, 0.11634133756160736, 0.3031386733055115, 0.948630154132843, -0.18663443624973297, -0.8884410858154297, 0.6435648202896118, 0.051784757524728775, -0.35802632570266724, 0.7534526586532593, 0.5353298783302307, -1.340503454208374, 0.6674892902374268, 0.27238279581069946, 0.2951062023639679, -0.31928855180740356, 0.797358512878418, -0.38372498750686646, -0.012441636063158512, 0.4047257602214813, 0.09497381746768951, -0.12190291285514832, 0.6131507754325867, -0.6354085803031921, -0.337848037481308, 0.29362788796424866, -0.3440655767917633, 0.24954625964164734, 0.3233260214328766, -0.8534573912620544, 0.3689318597316742, 0.30452096462249756, -0.8955947756767273, 1.3610955476760864, -0.5645427107810974, 0.1071491539478302, -0.27167049050331116, -0.5561806559562683, 1.8935312032699585, 0.42860695719718933, -0.029797859489917755, 0.511036217212677, -0.951500654220581, -0.28174856305122375, -0.8435849547386169, -0.2690280079841614, -0.951259970664978, -0.9315392971038818, -0.8915695548057556, -0.8021833896636963, 0.031159164384007454, 0.41915419697761536, 0.8918635249137878, 0.6405419707298279, 0.9096044898033142, 0.6678819060325623, -0.37601497769355774, -0.34583231806755066, -0.05625538527965546, 0.9555829167366028, 0.35575464367866516, -0.6854560375213623, -0.9924258589744568, -0.3952030837535858, 1.0596950054168701, 1.1141424179077148, -0.3248702883720398, 0.7953193187713623, 0.23285537958145142, -0.17102493345737457, -0.04779977351427078, -1.0958261489868164, 0.3831707537174225, 1.0853760242462158, 0.45367172360420227, -0.1501990258693695, 0.025815404951572418, -0.2617771327495575, -0.0785192921757698, -0.15040798485279083, 0.03562329709529877, -0.11543535441160202, 0.26462647318840027, -0.37249934673309326, 1.8052443265914917, -0.5934536457061768, -0.9032726287841797, 0.3768143057823181, 0.0145264882594347, 1.0777884721755981, 0.5214566588401794, -0.8108222484588623, -0.8386138081550598, 0.42045509815216064, -0.28599268198013306, -0.08122219145298004, -0.2916356027126312, -0.29548001289367676, 0.5033225417137146, -0.743628978729248, 0.3018486201763153, -0.10965076833963394, 1.2416234016418457, -0.4244484603404999, 0.22316138446331024, 0.3879823088645935, 0.5734500885009766, 0.2794590890407562, 0.41680508852005005, 1.1748629808425903, 0.009800281375646591, -0.790628969669342, 1.4615411758422852, 0.12131007015705109, 0.049981143325567245, 0.4150344729423523, 0.07794103771448135, -0.03854634240269661, -0.12070581316947937, -0.7091560363769531, -0.2110103964805603, -0.33712926506996155, 0.45312902331352234, 0.13507527112960815, 0.0017171446233987808, 1.0734912157058716, -0.471102237701416, -0.911582350730896, -0.6799108386039734, -0.24555720388889313, -0.4154733717441559, 0.4575802981853485, -0.6742497086524963, 1.2335865497589111, -0.3670995235443115, -0.12417776882648468, 0.12516562640666962, 0.10750973969697952, -1.1406043767929077, -1.123464822769165, 0.5869605541229248, -1.3417223691940308, 0.6799910068511963, -0.4154886305332184, -0.9897521734237671, 0.8664910793304443, -0.13176999986171722, -0.04632740467786789, -0.29276591539382935, -0.44871747493743896, -0.5222934484481812, -1.0927101373672485, -0.11482483148574829, -1.124464750289917, 0.7513787746429443, -0.22138111293315887, 0.4059614837169647, -0.8062036037445068, -0.2692030668258667, 0.7432586550712585, -0.39821892976760864, -0.8826518654823303, 1.358184576034546, 0.24030879139900208, -0.175235316157341, -0.3432157039642334, -0.45208606123924255, 0.0587417334318161, 0.19447937607765198, 0.3126482665538788, -0.43597397208213806, 0.2244420051574707, 0.2546042501926422, -0.024010170251131058, -0.6353172659873962, -1.0065299272537231, -0.4063466787338257, -0.9704826474189758, 0.4789488613605499, -0.8756982088088989, -1.6210919618606567, 0.8018987774848938, 0.674143373966217, -1.076401948928833, 1.2779903411865234, -1.1185591220855713, 0.588847279548645, 0.47846388816833496, 0.4851965010166168, 0.2570776641368866, 0.72202068567276, -0.5680150985717773, 0.6180905103683472, -0.2184842824935913, -0.36534371972084045, 0.4305422902107239, -0.18093131482601166, -0.9781926274299622, 1.112406611442566, 0.265147864818573, -0.08918309211730957, 0.9056854248046875, 0.06048201769590378, 0.7476736903190613, -0.9215601086616516, 0.25828641653060913, -0.10059446841478348, -0.43316203355789185, 1.015960454940796, 0.43513616919517517, -1.1915075778961182, -0.6200114488601685, -0.524893045425415, -1.0469423532485962, -0.17109426856040955, -0.11299816519021988, -1.0999466180801392, 0.8116335868835449, -0.5153542757034302, 0.19159692525863647, -0.05518138408660889, -0.682590663433075, 1.0123258829116821, 0.011319148354232311, -0.4892452657222748, -0.4137718677520752, -0.08168105036020279, 0.9289670586585999, 0.42422914505004883, 0.4610106348991394, -0.5684159398078918, -0.29244285821914673, -0.5953384041786194, 1.1623128652572632, -0.8262650966644287, -0.5606383085250854, 0.29564738273620605, 0.7547739148139954, -0.8640111088752747, 0.6260117292404175, 0.16535241901874542, -0.5693945288658142, 0.09406346827745438, -0.22671183943748474, 0.31457680463790894, 0.07089118659496307, -0.8613123297691345, -0.6568910479545593, -0.5700086951255798, 0.7990249991416931, 1.054323673248291, 1.548592209815979, 0.97161865234375, 0.7881119251251221, -0.4555872082710266, 0.6640048027038574, 0.4752189815044403, 0.12669701874256134, -0.6086346507072449, -0.5565155148506165, -0.03191515803337097, -0.04434750974178314, -0.2919117212295532, -0.4063221514225006, 1.3839980363845825, 0.22040370106697083, 1.1595288515090942, 0.3484160304069519, -0.5071543455123901, -0.9205906391143799, -0.44860967993736267, 0.20192773640155792, -0.6035988330841064, 0.33204028010368347, 0.34214985370635986, -0.7481552362442017, 0.26871925592422485, 0.24301718175411224, 0.0987507775425911, 0.6868352293968201, -0.13344842195510864, 0.7376008033752441, -1.1209789514541626, -0.32627877593040466, -0.21219977736473083, 1.3504409790039062, 0.5850812196731567, 0.255344033241272, -0.5926393270492554, -0.21962876617908478, 0.5780003666877747, 0.1873798966407776, 0.06376048922538757, 0.8413222432136536, -0.3258468806743622, -0.6892415285110474, -0.3132249414920807, -0.0653415247797966, 1.0766395330429077, 0.1781829297542572, -0.06135212630033493, -0.03618001192808151, 0.029152952134609222, -0.20910030603408813, 0.3482653498649597, 0.5087555646896362, 0.8841610550880432, 0.3181922435760498, 0.0640367642045021, 0.8184351921081543, -0.19209685921669006, 0.5035051107406616, -0.777368426322937, 0.5232298970222473, 0.4012550711631775, 1.2727636098861694, -0.05751736834645271, -0.4135885536670685, 0.4836086332798004, -0.448696106672287, -0.0019437829032540321, -0.019392739981412888, 0.7461438179016113, 0.20829813182353973, -0.6035187840461731, -0.7380764484405518, 0.7121312022209167, -0.28859949111938477, -0.4497697353363037, 0.10880571603775024, 0.13354572653770447, -0.4837268888950348, -0.651160478591919, 1.075665831565857, 0.12084788084030151, 0.13108545541763306, -1.1357810497283936, -0.32433077692985535, 0.2734036445617676, -0.03452393040060997, -0.2214551419019699, -0.9306913614273071, 0.6386997103691101, -0.2431555688381195, -0.8905283212661743, -0.9003562927246094, 0.024526525288820267, 0.3996129035949707, 1.0388888120651245, -0.6488269567489624, -0.2743377387523651, -0.036055050790309906, -0.4265216290950775, 0.37604445219039917, 0.3671439588069916, -0.18825338780879974, 0.5081247091293335, -0.6600132584571838, -0.11404258012771606, 0.11994744837284088, 1.0913971662521362, -0.3517889976501465, -0.06672889739274979, 0.13255196809768677, 0.5935996174812317, 0.046687278896570206, -0.28825265169143677, -0.88358074426651, -0.9421825408935547, -0.9630908966064453, 0.17902061343193054, 0.22745965421199799, 0.05062289163470268, 0.5362399220466614, 0.1806652992963791, -0.12728236615657806, 1.1916251182556152, -0.4732970595359802, -0.6646952629089355, 0.6296190023422241, 0.3018700182437897, -0.04508126527070999, -0.19899117946624756, 0.7150894999504089, 0.6035483479499817, 0.40351197123527527, 0.821564793586731, -0.030312640592455864, 0.8597414493560791, 0.9398890733718872, -0.21870939433574677, -0.5058046579360962, 0.7063854336738586, 1.1621330976486206, 1.3823734521865845, 1.1589934825897217, -0.057999737560749054, -1.2113542556762695, 0.5801264643669128, -0.5307384133338928, 0.0753817930817604, 0.9947780966758728, 0.07568028569221497, 1.4086259603500366, -0.8620490431785583, -0.07218129932880402, 0.511236846446991, -0.19901695847511292, -0.25619029998779297, 0.14139088988304138, 0.5375183820724487, -0.4259292781352997, 0.01399151049554348, 0.6844476461410522, 0.23276126384735107, 0.7117116451263428, 0.1831618696451187, -0.0006161965429782867, -0.4030100107192993, -0.3491196036338806, -0.0813770741224289, -0.3808436691761017, -0.3285607397556305, 0.17609509825706482, 1.1514183282852173, -0.1615973263978958, -0.19752728939056396, 0.0567660853266716, 1.7785578966140747, -0.5526986122131348, -1.2093167304992676, 0.6828629970550537, -0.5524956583976746, -0.0634486973285675, -0.4636833667755127, -0.3610197603702545, -0.36126717925071716, -0.48118677735328674, 0.0023276647552847862, -0.00926988385617733, -0.5143764019012451, -0.6348066926002502, -0.2518284320831299, -0.7187083959579468, -0.4097108840942383, 0.27934205532073975, 0.8301138877868652, 0.9577833414077759, 0.8178202509880066, 0.3697315454483032, -0.28419268131256104, 0.5229368209838867, 0.43876415491104126, -0.22621330618858337, 0.13578368723392487, 0.583993673324585, -1.5868144035339355, -0.8953036069869995, 0.4059540331363678, 1.4109742641448975, 0.6410495042800903, 0.23844411969184875, 1.5111202001571655, 1.5386165380477905, -0.8587995171546936, -0.4118650257587433, 0.0054468195885419846, -0.3270631432533264, 0.7502854466438293, 0.4532749652862549, -1.1721750497817993, -0.14976854622364044, -0.29185426235198975, -1.8603931665420532, 0.6064040064811707, -0.41754019260406494, -0.9741061925888062, 0.18560130894184113, 0.6286459565162659, 0.244947612285614, 0.896294116973877, -1.5521719455718994, 0.5703085660934448, -0.2861892879009247, -0.3550068438053131, -1.0847305059432983, 0.592664897441864, 0.40247321128845215, 0.8196603059768677, -0.7683172225952148, 0.14900094270706177, 0.0181255042552948, -0.5910010933876038, 0.749059796333313, 1.1239176988601685, 0.6959511637687683, 0.37133875489234924, 0.22686229646205902, -1.4853078126907349, 0.06221042573451996, -0.9651877880096436, 0.1627219170331955, -0.1734127253293991, 0.837123453617096, -0.04124623164534569, -0.45100411772727966, -0.20437516272068024, 0.40073010325431824, -1.0364521741867065, -0.2854684591293335, -0.5965114235877991, 0.7735487818717957, 0.17955441772937775, 0.1703302264213562, -0.051923494786024094, -0.820670485496521, -0.8898358345031738, -0.5633115172386169, -0.49722564220428467, 0.8276143074035645, -0.5176734328269958, -0.6393781304359436, -0.39961689710617065, 0.06783194839954376, 0.4895733892917633, 0.21622063219547272, -0.3678543269634247, -1.309699296951294, -1.612352967262268, -0.6714199185371399, -0.0835309848189354, 0.4045919179916382, -1.018723964691162, 1.1553959846496582, -0.6250790357589722, -1.425347089767456, 0.8305545449256897, 0.014829069375991821, -1.156768798828125, -0.8097047805786133, -1.1733002662658691, 1.156724452972412, -0.05527977645397186, 0.22118300199508667, -0.07347045838832855, 0.8882049918174744, -0.4532565474510193, -0.51106196641922, -0.7807153463363647, 0.5072504281997681, 0.52672278881073, 0.8730340003967285, -0.8773818612098694, 0.6110727190971375, -0.07391492277383804, -0.09782332926988602, -0.3098531663417816, 0.1596081554889679, -0.9560025334358215, -0.01881684735417366, 1.0136613845825195, 0.7000775337219238, 0.44103482365608215, 1.1231262683868408, -0.3132938742637634, 0.7309688329696655, -0.5048704147338867, 0.3150961995124817, -0.5307364463806152, 0.3192112445831299, -0.173336461186409, 0.4306422472000122, -0.9281203150749207, -0.445438951253891, 0.6050914525985718, -0.6658200025558472, -0.8688288331031799, 0.26799094676971436, 1.1607824563980103, -0.3998906910419464, 0.0009242366068065166, -0.0591810867190361, 0.8129311203956604, -1.016806721687317, 0.5049417018890381, 0.6255496144294739, -0.3603302538394928, -0.17112115025520325, -0.31552067399024963, 0.9914746880531311, -0.6190219521522522, -0.052827950567007065, 0.3189350366592407, 0.255853533744812, -0.3843521475791931, 0.24458414316177368, 1.3209054470062256, -0.8918887972831726, -0.20119772851467133, 1.51374351978302, 1.325993299484253, -0.08116966485977173, -0.1440359503030777, 0.18690571188926697, 0.15817193686962128, 0.8138834834098816, -0.1998179405927658, -0.03702234849333763, -0.04450235888361931, 0.17458051443099976, -0.6074405312538147, -0.17841202020645142, -0.6545785665512085, 0.30145856738090515, 0.06429824978113174, -0.5098852515220642, 0.803581953048706, 0.5778899788856506, -0.3385534882545471, 0.607154369354248, -0.1064927726984024, -0.2191910445690155, 0.27381712198257446, -0.3100835084915161, 0.37303251028060913, 0.16011959314346313, 0.8568114638328552, 0.1802883893251419, 0.27168500423431396, 0.41873103380203247, 0.4278416335582733, -0.0581364780664444, -0.03770142048597336, -0.4774317741394043, -2.105203628540039, -0.29155728220939636, 0.05041716992855072, -0.6819749474525452, 0.6839185357093811, -1.068365454673767, -0.3950536847114563, -0.11581547558307648, 0.05388632416725159, -0.02492690458893776, -0.6328122615814209, -0.25763487815856934, -0.34465765953063965, 0.20818397402763367, 1.1685281991958618, 0.07075442373752594, 1.1458266973495483, -0.21388067305088043, -0.09390652179718018, 0.1559305489063263, -0.03407550975680351, -0.1368142068386078, 0.24033448100090027, 0.24181298911571503, -0.4458736479282379, 0.23562853038311005, -0.6017543077468872, -0.5782273411750793, -0.015986070036888123, 0.46881991624832153, 0.21664993464946747, 0.0018501360900700092, -1.2129251956939697, -0.24188917875289917, 0.38325247168540955, 0.6176571249961853, -0.9251811504364014, -0.9703301191329956, -0.5655838847160339, 0.3763303756713867, -0.20375777781009674, 1.6447045803070068, -0.6288201808929443, 0.8168241381645203, 0.992114245891571, -0.09643839299678802, -0.7416544556617737, -0.022852353751659393, 0.8684940338134766, -0.3711204528808594, 1.1815282106399536, 0.28691256046295166, 0.17520016431808472, 0.09844336658716202, -0.8480468392372131, -0.7626145482063293, 0.24230435490608215, -0.6981905698776245, 0.5627710819244385, -0.7307425737380981, -1.090057611465454, -0.7919809818267822, 0.4948740601539612, -0.3146984577178955, -0.32927650213241577, 0.7373319864273071, 0.03689400479197502, -1.0186256170272827, 0.2119341939687729, -0.14430710673332214, -0.6878464221954346, 0.5415525436401367, 1.5579074621200562, 1.06797194480896, -0.38085073232650757, -0.39541390538215637, -0.17733784019947052, 1.038881778717041, -1.579301118850708, -0.45703527331352234, -0.7750880122184753, -0.008561978116631508, -0.16065165400505066], [0.1695675551891327, 1.5944541692733765, -2.888674020767212, -0.6617189049720764, 0.41676878929138184, 0.28242167830467224, 1.5058305263519287, -0.30950507521629333, 0.7181710004806519, -0.21147365868091583, -0.9400073885917664, 0.15514229238033295, 1.4194347858428955, -0.04012482985854149, 0.22617067396640778, 0.3927910029888153, 0.44812700152397156, -0.0022498047910630703, 0.5978440046310425, 1.3434675931930542, -0.2760702669620514, -0.24618996679782867, -0.9702972173690796, -0.3011825680732727, -0.5083418488502502, 0.2392401546239853, -0.6817577481269836, -0.7285376191139221, -1.0554537773132324, -0.8372402191162109, 1.1466522216796875, -0.4287816882133484, -0.2728289067745209, -0.12235663086175919, -1.6354061365127563, -0.772980809211731, 0.9186621904373169, 0.20453369617462158, 0.28995752334594727, 0.2520400583744049, 2.1272904872894287, 1.224181056022644, 0.27290233969688416, -1.010733962059021, 0.5097242593765259, 0.544556200504303, 0.7450619339942932, -0.9980458617210388, 0.44258183240890503, -0.6212138533592224, 1.1449252367019653, -0.584234893321991, -0.474807471036911, 1.0104674100875854, 0.7348094582557678, 0.2549915015697479, 0.3514663279056549, 0.8400428891181946, 0.4100934565067291, -0.6601240038871765, 0.31743571162223816, 0.8707641959190369, -0.011230722069740295, 1.1460824012756348, 0.4448435306549072, -0.21239696443080902, 0.15066629648208618, 0.8688225150108337, -0.17837311327457428, -0.45623815059661865, 0.5828825235366821, 0.06748468428850174, -0.2334742546081543, 0.2175954431295395, -1.422085165977478, 1.0637840032577515, -0.09476649016141891, -0.07688869535923004, -0.11096178740262985, 0.45120033621788025, -0.7375524640083313, 0.5617783069610596, 0.7558122873306274, 0.24772943556308746, 0.7458564043045044, -0.2799488604068756, 0.1495330035686493, -0.6322683095932007, 0.05333187058568001, 1.8583526611328125, 0.04884260520339012, -0.3794788420200348, 0.24063093960285187, -0.8113816976547241, 0.3478533923625946, -0.28480401635169983, -0.15505439043045044, -0.7858749628067017, -0.6844231486320496, -0.5165552496910095, -0.8892032504081726, -0.7367367744445801, 0.5163414478302002, -0.1193707138299942, 0.2933445870876312, 0.5304381847381592, 0.22424890100955963, -0.3489201068878174, -0.5724084973335266, -0.5004444718360901, -0.42050790786743164, 1.0686259269714355, -1.0484641790390015, -0.3317791521549225, -0.45402735471725464, 0.7786250710487366, 0.9425089359283447, 0.4994291365146637, 0.9315835237503052, 1.393045425415039, -1.4137274026870728, -0.1653001308441162, -0.9839186668395996, 0.7498974800109863, 0.20262788236141205, 1.3841605186462402, -0.9178256392478943, -0.5388847589492798, 0.2501308023929596, -0.15573382377624512, 0.5281844139099121, -0.2354649156332016, -0.35593584179878235, 0.665189266204834, -0.1276838183403015, 0.9375208020210266, -0.6722901463508606, -0.4491680860519409, 0.7109089493751526, -0.07696360349655151, 0.9509592652320862, 0.2756398618221283, -0.6004862785339355, -0.36990687251091003, -0.5565305352210999, -0.53971928358078, 0.41594168543815613, -0.30929476022720337, -0.9329938888549805, -0.11192508041858673, -0.5882331132888794, 1.114530324935913, 0.08234567940235138, 1.5335100889205933, -0.4550248980522156, -0.04324732720851898, 0.5106722116470337, -0.07710152864456177, 0.568555474281311, 0.03098948486149311, 0.7556613087654114, 0.031419605016708374, -0.37287068367004395, 1.287513017654419, -0.09723532199859619, -0.5119696855545044, -0.2912137508392334, 0.20754720270633698, -1.2308114767074585, 0.25209978222846985, -0.38643878698349, -0.4044090211391449, -0.525351345539093, 0.22703582048416138, 0.5979557037353516, -0.5554645657539368, 1.4806069135665894, -0.7651109099388123, -1.2534422874450684, -1.3788058757781982, 0.2774779796600342, -0.8175619840621948, 0.1963684856891632, -0.3723907172679901, 0.19759134948253632, -0.6908310651779175, 0.23230774700641632, 0.22272321581840515, -0.35571566224098206, -1.3939361572265625, -0.2610325813293457, 0.43379953503608704, -1.0712170600891113, -0.03920607641339302, -1.0348517894744873, -1.2130513191223145, 1.2303578853607178, -0.2854926884174347, -0.4008677899837494, -0.4063049554824829, -1.1841959953308105, 0.08321157097816467, -0.9543261528015137, -0.32825300097465515, -0.8041872978210449, 1.3139197826385498, -0.5076474547386169, 0.23267045617103577, -0.6383023858070374, 0.5738459229469299, 1.5102298259735107, 0.2111639380455017, -1.0815964937210083, 0.7264207005500793, -0.15086787939071655, -0.28317761421203613, 0.4233078956604004, -0.08717619627714157, -0.19297590851783752, -0.04667969420552254, -0.15992270410060883, -0.04496022313833237, 0.6057575941085815, 0.08106973022222519, 0.7883168458938599, -0.6843807697296143, -0.1256021410226822, -0.9109671115875244, -0.24969500303268433, 0.2945781350135803, -0.11604536324739456, -1.341407299041748, -0.15073555707931519, 0.19801586866378784, -0.1334184855222702, 0.9733854532241821, 0.05289158225059509, 0.1840183585882187, 1.1637117862701416, 0.4366060793399811, 0.7936614751815796, 0.17252682149410248, -0.540625810623169, -0.5495553612709045, -0.5153584480285645, -0.31416231393814087, 0.907332181930542, -0.5794278383255005, 0.007668932434171438, 1.8432425260543823, 1.3764269351959229, -0.22645330429077148, 0.15221619606018066, 0.15957583487033844, 0.11980409175157547, -0.8324614763259888, -0.1506911665201187, 0.3547540605068207, -0.6494125127792358, 0.7835788726806641, 1.0793112516403198, -0.8587286472320557, 0.229900062084198, -0.1170690506696701, 0.24707920849323273, -0.44808587431907654, -0.5380411744117737, -0.20319819450378418, 0.043595775961875916, 0.043993983417749405, -0.13228583335876465, 0.06422918289899826, -0.7728288769721985, 0.7606436014175415, 0.25534117221832275, -0.5460507273674011, -0.7010690569877625, -0.08823644369840622, 0.08410118520259857, 0.6146352291107178, -0.4273990988731384, -1.9111225605010986, -0.33666086196899414, -0.2783258259296417, 0.09722676873207092, -0.17239955067634583, -0.4314008951187134, 0.48764410614967346, 0.5544789433479309, 0.1355811059474945, 0.0988825187087059, 0.6676223278045654, -0.48948192596435547, 0.16830015182495117, 0.5447670817375183, 0.6503681540489197, 0.362935334444046, 0.006678852718323469, -0.5471903681755066, -0.7114834785461426, 0.6636313796043396, 1.0711450576782227, 1.1462568044662476, 1.7171766757965088, 0.4819417893886566, -0.31927135586738586, -0.5287496447563171, -0.36995837092399597, 0.4585128128528595, -1.3348479270935059, -0.18772119283676147, -0.3279033899307251, -0.6757904887199402, -0.27509167790412903, -0.8725444674491882, 1.476377248764038, 0.477791428565979, 1.487912654876709, 0.8071301579475403, 0.1334569752216339, -0.18771295249462128, -0.03408708795905113, 0.9459157586097717, -0.8587403297424316, 0.5859373807907104, 1.0445653200149536, -0.8223653435707092, -0.27812740206718445, 0.003645650576800108, 0.413217157125473, 0.9785184860229492, 0.10882820188999176, 0.08535400032997131, -1.5878562927246094, -0.7414700984954834, -0.17943020164966583, 1.4429203271865845, 0.13705968856811523, -0.016516055911779404, -0.13082869350910187, 1.0265581607818604, 0.38204529881477356, 0.1051737368106842, -0.013313686475157738, 0.15467743575572968, -0.6091665625572205, -0.726714015007019, 0.44117435812950134, 0.7586207985877991, 0.9383135437965393, -0.11224012821912766, -0.3594939410686493, 0.03028690814971924, 0.3264416754245758, -0.18283189833164215, 0.9454077482223511, 0.08438056707382202, 0.8818616271018982, 0.004763833247125149, 0.6193910241127014, 1.0889767408370972, -0.6343435645103455, 0.49221426248550415, -1.011513113975525, 0.726924479007721, 0.8410319089889526, 0.6872808933258057, 0.23301683366298676, 0.07098694890737534, 0.11964872479438782, -1.0002758502960205, 0.15310963988304138, -0.05318857729434967, 0.5809357166290283, 0.06732475012540817, -0.00253984029404819, 0.20646509528160095, 0.2056821882724762, -0.6144672632217407, -0.13956645131111145, 0.44582509994506836, 0.1440797746181488, -0.8400096297264099, -1.138121485710144, 0.5813058614730835, -0.30083760619163513, -0.9729049205780029, -0.3893909752368927, -0.5660148859024048, 0.6334837079048157, 0.2945600152015686, 1.203710913658142, -0.17630305886268616, 0.24191561341285706, 0.49537643790245056, -1.9338765144348145, -0.16566528379917145, 0.27200257778167725, -0.05374366417527199, 0.09362906217575073, -0.7841362953186035, -1.0147480964660645, -0.14902812242507935, 0.02968212403357029, 0.5433886647224426, 0.24259540438652039, -0.04025522992014885, -0.035956479609012604, -0.1782585233449936, -0.9212244749069214, 0.04037518426775932, 0.5876778960227966, -0.6769093871116638, -0.2395719438791275, 0.42436283826828003, -0.12740835547447205, 0.39942699670791626, -0.1488761007785797, -0.635577380657196, -0.3848274350166321, -0.05854537710547447, -0.03457175940275192, -0.28660038113594055, -0.2967565357685089, 1.0142067670822144, 0.3712402582168579, 0.08902022987604141, 0.40137922763824463, -0.4083429276943207, -1.6850037574768066, 0.38850584626197815, 0.7066124677658081, -0.328605979681015, -0.0933346226811409, 1.0629199743270874, -0.10510028898715973, 0.3302750885486603, 0.2686789035797119, 0.02407877705991268, 1.0639309883117676, 0.5722811222076416, -0.09774430841207504, -0.6934739947319031, -0.21609750390052795, 0.5593973398208618, 1.3802040815353394, 0.2783925235271454, 0.2683829963207245, -0.3338589072227478, 0.31215861439704895, -0.48271074891090393, 0.3786156177520752, 1.2594776153564453, 0.19805192947387695, 1.5497304201126099, -2.15171480178833, 0.16463178396224976, -0.06182321533560753, -0.1633097380399704, 0.30913519859313965, -0.5664418935775757, 0.3072047531604767, -1.2848527431488037, 0.16627764701843262, 0.14336571097373962, 0.4043924808502197, 0.4784032106399536, -0.1823967695236206, -0.09044703096151352, 1.1303691864013672, -1.2705374956130981, 0.04074912518262863, -0.4742933213710785, 0.37643224000930786, -0.49664783477783203, 0.2767508327960968, 0.1557990461587906, -0.05299277976155281, 0.38876017928123474, 1.1640779972076416, -0.07344454526901245, -1.2663078308105469, 0.7037802338600159, -0.36971965432167053, 0.7289218306541443, -0.3973829746246338, 0.15038520097732544, -0.6684895753860474, -0.752475917339325, -0.10534566640853882, 0.7665531039237976, -0.5447542071342468, -0.47306719422340393, 0.04433276876807213, -1.1947211027145386, 0.08989416062831879, 0.48081710934638977, 1.003623604774475, 0.48599761724472046, 0.6532518863677979, 0.4011682868003845, 0.7422412633895874, 0.13862916827201843, -0.20210646092891693, 0.017491525039076805, -0.20893129706382751, 0.4111228287220001, -1.0395809412002563, -0.7030948996543884, 0.528656542301178, 0.5805584788322449, 0.29356276988983154, 0.4584028124809265, 1.2407258749008179, 2.206024646759033, 0.08944587409496307, -0.8875030875205994, 0.31720760464668274, -0.34469571709632874, 0.2565302848815918, 0.15635713934898376, -0.5442342162132263, -0.21368096768856049, -0.6495023965835571, -1.7087316513061523, 0.3507073223590851, -0.2126675397157669, -1.286864161491394, 0.9321357607841492, 0.2588666081428528, -0.05676213279366493, 0.7531515955924988, -0.7075090408325195, 0.3479454517364502, 0.2709367573261261, 0.07096146047115326, -1.4870339632034302, 0.40624281764030457, 1.1020629405975342, 0.8283472657203674, -1.1458806991577148, 0.3845062553882599, -0.13154801726341248, -0.16371876001358032, 0.40605998039245605, 0.3852671682834625, 0.5405439138412476, 0.7677827477455139, 0.4609878957271576, -1.1387079954147339, 0.009175513871014118, -0.9491146206855774, -0.5841947197914124, 0.33953872323036194, 0.35434845089912415, -0.3364236354827881, -0.1308239847421646, -0.043836746364831924, -0.31415146589279175, -0.7185704112052917, -0.49512529373168945, 0.016549570485949516, 0.8590365052223206, 0.4283115565776825, 0.018633075058460236, -0.021081196144223213, -0.05772583186626434, -0.48577073216438293, -0.3772694766521454, -0.15539045631885529, 0.7191939353942871, -1.1503517627716064, -0.30906954407691956, -0.27618730068206787, -0.17277976870536804, -0.5831419229507446, -0.1121828630566597, -0.5435357093811035, -1.1552484035491943, -1.2038732767105103, -0.46838438510894775, -0.6883593201637268, 1.133543848991394, -0.6257585883140564, 0.20530997216701508, -0.03704833984375, -1.0764542818069458, -0.12078368663787842, 0.10132786631584167, -1.0943493843078613, -0.548707127571106, -0.759041965007782, 1.2098878622055054, -0.47099170088768005, 0.11878671497106552, 0.32590657472610474, 0.8496298789978027, -0.8659087419509888, -0.9912183284759521, -0.5644464492797852, 0.06616714596748352, 0.8856185674667358, 1.2002249956130981, -1.2756166458129883, 0.9885098934173584, 0.08227690309286118, -1.1445797681808472, 0.09125329554080963, 0.9276734590530396, -0.734243631362915, -0.16891297698020935, 0.18550115823745728, 0.6670069694519043, 0.725628137588501, 1.646349549293518, -0.029706725850701332, 0.764512300491333, 0.5537168383598328, 0.6205834746360779, -0.3919709324836731, -0.08271283656358719, 0.05688714608550072, 0.3018200993537903, -1.074129581451416, -0.544705331325531, 0.2877778708934784, -1.2759569883346558, -0.8256831765174866, 0.9274412989616394, 1.012251615524292, -0.975014328956604, 0.12478991597890854, -0.5881841778755188, 0.2844720780849457, -0.9823344945907593, 0.045023974031209946, -1.376190423965454, -0.09811056405305862, 0.3119078278541565, -0.34774214029312134, 0.6304624676704407, -0.865943193435669, -0.07223350554704666, 0.5379338264465332, 0.35957401990890503, -0.6857492327690125, 0.7686964869499207, 0.6087849140167236, 0.2628495693206787, -0.5284656286239624, 1.4016120433807373, 1.277845025062561, -0.011682420037686825, -0.19795428216457367, 0.12755894660949707, 0.01929829642176628, 0.7632059454917908, -1.142083764076233, -0.4387657642364502, -0.3795875906944275, 0.3711443245410919, -0.06102302297949791, -0.18313829600811005, -0.02485533058643341, -0.03290635719895363, 0.23691490292549133, 0.33316776156425476, -0.17973865568637848, -0.22242707014083862, -0.23183950781822205, 0.6862861514091492, 0.4528275430202484, -0.10370247811079025, -0.2603631913661957, 0.7008001208305359, -0.4714019298553467, -0.5052270889282227, 0.7090473175048828, 0.11519132554531097, 0.006268427241593599, 0.6495590209960938, 0.5678787231445312, 0.09823296219110489, -0.3108646869659424, -0.37429407238960266, -1.261732816696167, -0.6211766600608826, -0.32317879796028137, -0.41820380091667175, 0.47213032841682434, -0.5204192399978638, -1.004379153251648, 0.31173866987228394, 0.5436895489692688, 0.26269015669822693, -0.11268103867769241, 0.5283454656600952, 0.21359920501708984, -0.5354686975479126, 1.0161786079406738, -0.16426584124565125, 1.3286672830581665, -0.3213099241256714, -0.6352643370628357, -0.739766538143158, -0.04646886885166168, -0.20890291035175323, -0.6746876835823059, 0.17236177623271942, -0.17382140457630157, -0.18326038122177124, 0.06916061043739319, 0.16469398140907288, -0.04104125499725342, 0.6891764998435974, 0.11150862276554108, -0.16399642825126648, -1.6006560325622559, 0.05973407253623009, 0.8635914921760559, -0.5993743538856506, -0.301129549741745, -0.5538713335990906, -0.8871066570281982, 0.6958526372909546, -0.4253688156604767, 0.7443413734436035, -0.7269054055213928, 0.12486107647418976, 0.39997586607933044, -0.29526740312576294, -0.9021367430686951, -0.6237759590148926, 1.4325124025344849, -0.41986361145973206, 1.0183387994766235, -0.15228918194770813, -0.16520768404006958, -0.6642246246337891, -1.2558029890060425, -0.9670363664627075, 0.7268689870834351, 0.128616601228714, 0.1548677384853363, -1.4847288131713867, -0.8882107734680176, -0.48824888467788696, 0.12362377345561981, -0.10689260810613632, 0.16262105107307434, 0.5741006731987, -0.6774056553840637, -1.093626618385315, -0.22947688400745392, 0.3278490900993347, -0.4392212927341461, 0.2880638837814331, 1.2606756687164307, 1.2554771900177002, 0.16962522268295288, -0.1850752830505371, 0.5221723318099976, 1.1890666484832764, -0.8232683539390564, 0.2669621706008911, -0.9815759658813477, -0.02683740295469761, 0.07144995033740997], [0.3367466926574707, 1.745367169380188, -2.727437973022461, -0.8687025904655457, 0.659944474697113, -0.1408555507659912, 0.8031864166259766, -0.15530087053775787, -0.2004619985818863, -0.024669064208865166, -0.956173837184906, 0.40356382727622986, 0.9493284225463867, 1.0792938470840454, 0.7682635188102722, -0.4369325637817383, 0.10352076590061188, 0.25361984968185425, 0.8935645818710327, 0.7406260967254639, -0.8241040706634521, -0.7462575435638428, -0.6361877918243408, -0.07477421313524246, 0.6189957857131958, 0.16984829306602478, -0.8673374056816101, 0.10378306359052658, -0.5839738845825195, -0.5696879625320435, 2.069430112838745, -0.630211591720581, 0.3309737741947174, 0.39492449164390564, -1.2946895360946655, 0.7909557819366455, 1.2202160358428955, 0.2519938349723816, 0.4257470965385437, 0.7476876974105835, 2.3805954456329346, 1.3703339099884033, -0.3393324315547943, -0.847084105014801, 0.06786390393972397, 0.0753273293375969, -0.038943395018577576, -1.043884515762329, 0.46924155950546265, -1.011743426322937, 0.5014305710792542, 0.5902186632156372, 0.2806634306907654, 1.497971773147583, -0.06802217662334442, -0.7963380813598633, 0.921220600605011, 0.7088530659675598, 0.10980760306119919, 1.2400389909744263, -0.11469458043575287, 1.162662148475647, 1.0643712282180786, 0.8002893328666687, 0.9340360164642334, -1.0656496286392212, 0.1832333505153656, 0.3968573212623596, -0.06549438834190369, 0.1702939122915268, 0.4133670926094055, -0.19959482550621033, -0.5685074329376221, 0.6705688238143921, -0.751528799533844, 0.7071642875671387, 0.23695920407772064, 0.6334116458892822, 0.05559636652469635, 0.10309164971113205, -0.9947774410247803, 0.19264496862888336, 0.5340871810913086, -0.23276779055595398, 0.3259664475917816, -0.0015688706189393997, 0.20666271448135376, -0.29838621616363525, -0.8223103880882263, 1.7481026649475098, -0.683929443359375, 0.06547853350639343, 0.54949951171875, 0.0819416344165802, 0.03542771562933922, -0.47475743293762207, -0.5043356418609619, -1.1751792430877686, -0.2850289046764374, -0.3039197027683258, -0.10066709667444229, -0.8352891802787781, -0.10254454612731934, 0.39544209837913513, 0.5965757966041565, 1.8173624277114868, -0.17516477406024933, -1.1205449104309082, 0.00018178741447627544, -0.14702416956424713, -0.8572846055030823, 0.4436642527580261, -0.2676646411418915, -1.4779701232910156, 0.09772300720214844, 1.016533374786377, 0.8723958730697632, 0.29484620690345764, 0.6937792301177979, 0.5814675688743591, -0.6691786646842957, -0.6548154354095459, -0.5448592305183411, -0.2655971050262451, 1.5936282873153687, -0.3957064151763916, -0.6165443658828735, -0.5232998728752136, 0.12078431993722916, 0.0836929902434349, 0.45265230536460876, -0.34680041670799255, 0.31804683804512024, 0.6093674302101135, -0.6058354377746582, 0.3513380289077759, -0.14519742131233215, -0.7974200248718262, 0.6449401378631592, 0.6242750287055969, 0.14938734471797943, -0.7700900435447693, 0.10095632076263428, -1.1256911754608154, 0.5607722997665405, -0.7607350945472717, 0.8468970060348511, -1.0060110092163086, -0.9133976697921753, 0.0053381482139229774, -1.172943353652954, 0.020565127953886986, 0.11067275702953339, 1.084980845451355, 0.34520184993743896, -0.5447975993156433, 0.7752910256385803, 0.2714497447013855, -0.25016072392463684, 0.5352773070335388, 0.4600572884082794, 0.0905432477593422, -0.06923869997262955, 1.157012701034546, 0.0662703588604927, -1.182586431503296, 0.7300495505332947, 0.6561977863311768, -1.0294163227081299, 1.3455942869186401, -0.3631250858306885, -0.33740848302841187, -0.9012040495872498, 0.07544110715389252, 0.25063860416412354, -0.5034614205360413, 0.8323842287063599, -0.14603370428085327, -0.7861727476119995, -1.163614273071289, 0.8030644655227661, 0.37233448028564453, 0.9557769298553467, 0.21171420812606812, 0.3584676682949066, 0.05270880088210106, -0.9375603795051575, 0.13709978759288788, -0.1432660073041916, -0.6591348052024841, -0.8119228482246399, -0.18294848501682281, -1.0889164209365845, 0.00027063116431236267, -0.08522236347198486, -0.7577471733093262, 0.31534940004348755, -0.11059165000915527, -0.8567895293235779, 0.13538126647472382, -0.04174164682626724, -0.5911686420440674, -1.1086376905441284, -0.328616738319397, -1.182915210723877, 0.4550246000289917, -0.5509699583053589, 0.2972007095813751, -0.280140221118927, 0.6497443318367004, 1.1938611268997192, -0.9608433842658997, -1.351930022239685, 0.6289898157119751, 0.04948798194527626, -1.1523925065994263, 0.7310590147972107, -0.4938846230506897, -0.16780610382556915, -0.05027289316058159, -0.9160873889923096, 0.1407824158668518, 0.7933614253997803, -0.43375566601753235, 1.1317375898361206, -0.1395934373140335, -0.2743780016899109, -0.8063997030258179, -0.13365104794502258, 0.3026515245437622, -0.7714465856552124, -0.9078161120414734, 0.9947120547294617, 0.28451085090637207, -1.3410612344741821, 1.0833208560943604, -0.16823925077915192, -0.28635814785957336, -0.2270624041557312, 0.6289164423942566, 0.7854308485984802, 0.4690125584602356, -0.9087312817573547, -0.20447349548339844, -0.9295573830604553, 0.3126351833343506, 0.6897483468055725, -0.4036441147327423, 0.18586672842502594, 1.814022183418274, 0.7203337550163269, -0.7830436825752258, 0.33761319518089294, -0.44665318727493286, 0.12490588426589966, -1.3092937469482422, -0.4043031930923462, 0.5569071173667908, -1.0552891492843628, 0.895429790019989, 0.12651821970939636, -1.6263644695281982, 0.15482644736766815, -0.4286704659461975, 0.13079124689102173, -0.11643798649311066, -0.22123180329799652, -0.9564083814620972, -0.100007064640522, -0.1806400865316391, -0.44935929775238037, -0.0846523568034172, -0.12453805655241013, 0.6971824765205383, -0.604137122631073, -0.9646855592727661, -0.3811919391155243, 0.7063561677932739, -0.20654787123203278, 0.7466951608657837, 0.004831151105463505, -1.0067942142486572, -1.2954368591308594, -0.09635178744792938, 0.5318923592567444, 0.4896461069583893, -0.13149824738502502, 0.6197654008865356, 0.925500214099884, 0.4267067611217499, -0.03710422292351723, 0.5585852265357971, 0.5261415839195251, 0.27524855732917786, 0.5674316883087158, -0.7794229388237, 1.073472023010254, -0.4734151065349579, -0.7133952379226685, -0.3913019299507141, 0.9008716940879822, 1.2400884628295898, 0.5480316281318665, 0.9991703033447266, 0.013895970769226551, -0.004357762169092894, -0.6524303555488586, 0.27416563034057617, -0.07146033644676208, -0.4600960910320282, 0.32622453570365906, -1.0753145217895508, 0.05165078863501549, -0.25015464425086975, -0.09769371151924133, 0.46071696281433105, 0.5562340617179871, 0.852528989315033, 0.0277545303106308, -0.40501856803894043, -0.8158940076828003, -0.9025605916976929, -0.2327904999256134, -0.7082115411758423, 0.8208271861076355, 1.3533591032028198, -1.3034467697143555, -0.04985983297228813, 0.35074955224990845, -0.6570946574211121, 0.8274803757667542, -0.04684557393193245, 1.0384546518325806, -0.7313903570175171, -0.07538711279630661, 0.013723200187087059, 0.7101081013679504, 0.1585886925458908, -0.6097146272659302, -0.4627472460269928, 0.43415841460227966, 0.6736263632774353, 0.14708873629570007, -0.5598552823066711, 0.18771809339523315, -0.6558336019515991, -0.7476145029067993, -0.18830490112304688, 0.2763049304485321, 0.5034998655319214, 0.14540457725524902, -1.0112996101379395, -0.5008217096328735, -0.08826158940792084, -0.43448856472969055, 0.38744404911994934, -0.039830464869737625, 0.8186743855476379, -0.01510148961097002, 0.2746467590332031, 1.2130393981933594, -0.29502081871032715, 0.24221062660217285, -0.923025906085968, 0.3980899751186371, 0.8830153346061707, 1.4877578020095825, 0.594822347164154, -0.4558566212654114, 0.04429753124713898, -1.3800098896026611, -0.29931262135505676, -0.7547680139541626, 0.6521161794662476, -0.13794639706611633, -0.4117718040943146, -0.3507247269153595, -0.23231573402881622, -0.11947844922542572, -0.02694583684206009, -0.1754886955022812, -0.1434284895658493, -0.11585839837789536, -0.21290993690490723, 0.7260125875473022, 1.0167510509490967, -0.7818929553031921, -0.8734380602836609, -0.6942471265792847, 0.936872661113739, -0.21519020199775696, 0.5632987022399902, -0.21237973868846893, -0.5039461255073547, 0.7169585227966309, -1.44945228099823, 0.2204243540763855, -0.3525720238685608, -0.5720753073692322, 0.672213077545166, -1.0233579874038696, -0.5878537893295288, 0.02510187029838562, -0.4821798503398895, 1.1543750762939453, 0.6891694068908691, 0.29188627004623413, 0.06018399819731712, 0.2962018847465515, -0.25020095705986023, -0.15826968848705292, 1.145850419998169, 0.010073893703520298, -0.5083593726158142, 0.05713703855872154, -0.5049046277999878, 0.5125398635864258, -0.6652097702026367, -0.3242582082748413, 0.0853966474533081, 1.0666242837905884, 0.22979584336280823, -0.04212595894932747, -0.40753382444381714, 1.5806270837783813, 0.18145743012428284, 0.08008076995611191, -0.09424802660942078, -0.17347106337547302, -0.853104293346405, 0.2359602451324463, 0.05560952425003052, -0.3378751575946808, -0.1931048184633255, 0.38975849747657776, -0.09635350853204727, -0.04218616709113121, 0.31324219703674316, 0.20285622775554657, 0.187333345413208, 0.5436577200889587, -0.7349933385848999, 0.3165612816810608, -0.3308260142803192, 0.9378288984298706, 1.0803606510162354, 1.3988093137741089, 0.15650799870491028, -0.9181262850761414, 1.5725741386413574, 0.1863657683134079, 0.6265187859535217, 1.354886770248413, 0.8186006546020508, 1.0434377193450928, -1.0786585807800293, -0.4172944128513336, 0.6210744976997375, 0.0030360582750290632, 0.8106878399848938, -0.1226424053311348, 0.06432732939720154, -1.168887734413147, -0.15827427804470062, 0.7778478860855103, -0.6741891503334045, 0.6022063493728638, 0.1803470253944397, 0.5457886457443237, 1.0134905576705933, -0.8571704626083374, -0.15029844641685486, -1.066975474357605, -0.5851998925209045, -0.8186284303665161, -0.479476660490036, 0.6247068643569946, 0.7183042168617249, 0.7653615474700928, 0.09533523768186569, 0.07927689701318741, -0.5639004707336426, 0.3257405757904053, -0.7185567021369934, 0.37433677911758423, 0.2840569317340851, -0.21904118359088898, -0.5654810070991516, -0.7662814855575562, -0.08849433064460754, -0.579075813293457, -0.7029700875282288, -0.12464027851819992, -0.37935933470726013, -1.1710292100906372, 0.1473756581544876, -0.0525524728000164, 0.9295275211334229, 0.7576196193695068, 1.366941213607788, 0.08625198155641556, 0.8637126684188843, -0.47185033559799194, 0.22742941975593567, 0.34782469272613525, -0.4748882055282593, 0.19967158138751984, -0.6574519276618958, -0.9354161024093628, 0.3032916784286499, 0.6651442646980286, -0.3528614938259125, 0.33043724298477173, 0.736792802810669, 1.3305809497833252, -0.5471038818359375, -0.42957526445388794, 0.5055550336837769, -0.3931792676448822, 0.6968532204627991, 0.5793069005012512, -1.2732222080230713, -0.10940626263618469, -0.24320557713508606, -1.4948116540908813, 1.479712963104248, 0.04295062646269798, -0.8870928883552551, 0.6271300911903381, 0.16142740845680237, 0.18762628734111786, 0.7007512450218201, -0.8392649292945862, -0.12823757529258728, 0.04045512154698372, 0.48920151591300964, -0.582050621509552, -0.004572439007461071, 0.5981011986732483, -0.218453511595726, -0.6864250302314758, -0.2708246111869812, -0.15833669900894165, 0.20167098939418793, -0.45332857966423035, 0.410658597946167, 0.9969295859336853, 0.09114956110715866, -0.29243403673171997, -1.0482161045074463, 0.5682460069656372, -0.506434440612793, 0.7151994109153748, 0.5085912346839905, 1.0176818370819092, 0.6300575137138367, -0.6476863026618958, 0.5544654726982117, -0.4924432635307312, 0.0332786999642849, -0.7326369881629944, -0.3840959370136261, 0.6158801913261414, 0.1423455774784088, 0.8686271905899048, 1.4947785139083862, 0.034653227776288986, -1.0792852640151978, -0.3192537724971771, -0.4738672971725464, 1.514309287071228, -0.6265375018119812, -0.575958788394928, -0.7175330519676208, -0.3043050467967987, 0.16774123907089233, 0.09742248803377151, 0.4960986077785492, -0.8646366596221924, -1.7840815782546997, -0.25984475016593933, -0.5422249436378479, 0.570206880569458, -0.3245331048965454, 0.38241633772850037, 0.6926447153091431, -1.2799988985061646, 0.488837331533432, 0.4293607771396637, -1.616483449935913, 0.6130666732788086, -0.7418121099472046, 0.6191960573196411, 0.25589361786842346, -0.23843857645988464, 0.3717573881149292, 0.5266862511634827, -0.7784631848335266, -0.7199558615684509, -1.1018836498260498, -0.3242529034614563, 0.3315865099430084, 1.0320433378219604, -1.221134901046753, 1.9086308479309082, -0.17738576233386993, -0.5466683506965637, -0.19185718894004822, 0.47843340039253235, -0.8145110011100769, -0.19912518560886383, -0.33433637022972107, -0.0022961788345128298, -0.20272071659564972, 1.12252938747406, 0.652726411819458, 0.9808343648910522, 0.14637590944766998, 1.3921095132827759, -0.9637690186500549, -0.7725879549980164, -0.9716424942016602, 0.20356416702270508, -0.6101729273796082, -0.38202404975891113, 0.12573949992656708, -0.3956944942474365, -0.7040084004402161, 0.13769981265068054, 1.2554645538330078, -0.3950783610343933, 0.6130684018135071, 0.4209119975566864, -0.15908262133598328, -0.7926846146583557, 0.4384862184524536, 0.18397009372711182, -0.4855585992336273, -0.10735484957695007, -0.9776932001113892, 0.9701806306838989, -0.5942983627319336, -0.025924842804670334, 0.7549536228179932, 0.7087736129760742, -0.27096399664878845, 0.5193200707435608, 0.25959086418151855, 0.34292834997177124, -0.5590569376945496, 0.8792223930358887, 1.146951675415039, -0.6943273544311523, 0.3171497583389282, 0.019739311188459396, -0.11007167398929596, -0.18744318187236786, -0.33068060874938965, -0.3985538184642792, -0.09716899693012238, -0.021946588531136513, 0.2543531358242035, -0.2904256582260132, -0.5273637175559998, 0.12917473912239075, -0.47733962535858154, 0.10893717408180237, 1.427870273590088, -0.43830573558807373, -1.0090140104293823, 1.2532238960266113, 0.22258321940898895, -0.40299761295318604, -0.21938905119895935, 0.06420569866895676, -0.16448892652988434, 0.3956456184387207, 0.7034064531326294, 0.23500367999076843, -0.6480138301849365, 0.7784838080406189, 1.12282133102417, 0.026928557083010674, -0.4519246518611908, -1.325101613998413, -1.640946626663208, -0.7107045650482178, -0.7603548765182495, -0.6284500360488892, 0.24625638127326965, -0.05943944305181503, -1.0707025527954102, 0.11621776223182678, 0.018475940451025963, 0.21697397530078888, -0.4103017747402191, -0.2294362485408783, -0.2793828547000885, -0.9644718766212463, 0.6701415181159973, -0.4774053990840912, 1.3941764831542969, 0.08133465051651001, 0.06010706350207329, -0.1721978634595871, -0.20147857069969177, -0.21697185933589935, 0.8470875024795532, -0.09599237889051437, -0.5460041761398315, -0.20385323464870453, -0.43934735655784607, -0.4262242317199707, 0.6784402132034302, 0.17368482053279877, 0.525252103805542, -0.3690861165523529, -1.4534716606140137, -0.04168742150068283, 1.2717623710632324, -0.1796402782201767, -0.5029948353767395, -0.7118792533874512, -0.6370792984962463, 0.8804455399513245, -0.03509703651070595, 0.8168154358863831, -0.9487463235855103, 0.8382511138916016, 0.8718401193618774, -1.028741717338562, -0.08299598842859268, -0.8689274787902832, 0.8780278563499451, -0.4590614140033722, 0.6913545727729797, -0.8890947699546814, 0.41550570726394653, 0.3681412637233734, -1.7381328344345093, -0.8906653523445129, -0.7716681361198425, -0.5083652138710022, -0.3480455279350281, -0.6372570395469666, -0.6942088603973389, -0.45619767904281616, 0.18329522013664246, 0.42710375785827637, -0.08074616640806198, 1.0989768505096436, -0.15199163556098938, -1.2334080934524536, 0.4354843199253082, 0.5321823358535767, 0.690203070640564, 0.6284448504447937, 1.10038161277771, 1.2379320859909058, -0.18081091344356537, -0.10696951299905777, -0.26428040862083435, 0.8381742238998413, -0.4297734498977661, 0.4799639582633972, -0.29047268629074097, -0.27933675050735474, -0.06043972074985504], [0.8450943827629089, 1.9337806701660156, -2.97733998298645, 0.11610313504934311, 0.9403656125068665, 0.05082640424370766, 0.6976273059844971, -0.32962432503700256, -0.2249482274055481, -0.7497565150260925, -0.8477506637573242, -0.06364519149065018, 1.082769513130188, 0.7511652708053589, 0.49986329674720764, -0.16488121449947357, -0.10892362147569656, -0.02520914375782013, 0.8004512190818787, 1.2463055849075317, 0.3620455265045166, -0.5270326137542725, -0.6829664707183838, 0.1642652004957199, -0.04341323673725128, 0.16700750589370728, -1.1024178266525269, -0.32662156224250793, -1.061662197113037, -0.6811010241508484, 1.5260664224624634, -0.3167397081851959, 0.7214042544364929, -0.6266542077064514, -2.0655057430267334, -1.000912070274353, 1.0292648077011108, -0.4144822657108307, -0.11255915462970734, -0.2154495120048523, 1.8010402917861938, 1.168929100036621, -0.22800537943840027, -1.4094774723052979, -0.8476971387863159, 0.10417730361223221, 1.1646831035614014, -0.2012997269630432, -0.2816782593727112, -0.7907166481018066, 0.7209141850471497, -0.2234029769897461, 0.2732838988304138, 1.9725353717803955, 0.20216359198093414, -0.04177544265985489, 0.6472927927970886, 0.9620842337608337, -0.48190850019454956, 0.6738826632499695, 0.8740978240966797, -0.6363419890403748, 0.7673813104629517, 0.5066123604774475, -0.07757038623094559, -0.2081567496061325, -0.00579855777323246, 0.41758421063423157, 0.5638405084609985, -0.04470929503440857, 0.9987841248512268, 0.38937655091285706, 0.17084455490112305, 0.19002650678157806, -0.5096645355224609, 0.5526094436645508, 0.31178948283195496, 0.33727413415908813, -0.014509767293930054, 0.3539230525493622, -1.1211867332458496, 0.5011233687400818, 1.1391997337341309, 0.6408106088638306, 0.3565317690372467, 0.738694965839386, 0.710719645023346, -1.0432554483413696, -0.5663349628448486, 1.1624971628189087, 0.09140442311763763, 0.6267003417015076, 1.1540639400482178, -0.2846481502056122, -0.6667328476905823, -0.6626110672950745, 0.1245916336774826, -1.6910208463668823, -0.4491462707519531, -0.3394731879234314, -0.4169805347919464, -0.41331470012664795, 0.3683297038078308, 1.3126320838928223, -0.09191927313804626, 1.088499665260315, -0.17630839347839355, -0.7331674695014954, 0.6981446743011475, -0.41193681955337524, -0.5604050159454346, 0.5553783774375916, 0.28861260414123535, -1.5368411540985107, -0.43417930603027344, 0.8220968246459961, 1.0457346439361572, 0.1505810022354126, 0.3904837667942047, 0.04444074258208275, -0.38443872332572937, -0.476322740316391, -1.3143749237060547, -0.22972002625465393, 0.987112283706665, -0.789290726184845, -0.6452450752258301, 0.17605510354042053, 0.43639448285102844, -0.29311004281044006, 0.4610505998134613, -0.5267753601074219, 0.14721539616584778, 0.712058961391449, -0.5107136964797974, 0.551689624786377, -0.03365836292505264, -0.8916141390800476, -0.47325193881988525, 1.2550605535507202, 0.35744476318359375, 0.13705594837665558, 0.18894675374031067, -0.36801889538764954, 0.47996869683265686, -0.656602144241333, 0.6716965436935425, -0.18614661693572998, -0.3368997871875763, 0.20611831545829773, -0.9724122881889343, 0.4150824248790741, -0.3874381184577942, 0.8176804780960083, 0.4316757619380951, -0.2341962605714798, 0.284974068403244, -0.5387235879898071, -0.04459284991025925, 0.7198988795280457, 0.4967460036277771, -0.02487603947520256, -0.3133886158466339, 0.4647597372531891, -0.021947789937257767, -0.36395788192749023, -0.4883785545825958, 0.3277074098587036, -0.8420222997665405, 1.13540780544281, -0.18760265409946442, -1.1433769464492798, -1.3927172422409058, 0.26111549139022827, 0.25568675994873047, -0.08686655759811401, 2.01450514793396, -0.27779844403266907, -0.3930851221084595, -0.608222484588623, 0.3935544192790985, -0.017510434612631798, 0.17639999091625214, 0.08730684965848923, 0.9106431007385254, -0.019002199172973633, -0.03299471363425255, -0.5130457282066345, -0.9326042532920837, -0.9874203205108643, -0.7320036888122559, 0.012170841917395592, -1.6128066778182983, 0.7923619151115417, -0.31666073203086853, -0.677560567855835, 0.9542128443717957, -0.30893585085868835, -0.960232138633728, -0.0836176797747612, -0.19902649521827698, -0.3462788760662079, -0.839509904384613, -0.349549263715744, -0.3535018265247345, 1.0389586687088013, -0.7906191349029541, 1.1911743879318237, -0.7116585373878479, 0.2751275897026062, 0.7291775941848755, -0.8536421060562134, -0.5460901260375977, 0.8495173454284668, -0.006435702089220285, -2.4916398525238037, 0.8466176986694336, 0.4997144937515259, 0.3435334861278534, -0.6530561447143555, 0.05696411803364754, 0.5157169699668884, 0.011500570923089981, -0.36219605803489685, 0.6821463704109192, -0.6904708743095398, -0.3426227569580078, -1.3176668882369995, -0.002824980765581131, -0.5483747124671936, -1.0192582607269287, -0.43155887722969055, -0.10290376842021942, 0.17031094431877136, -1.2113171815872192, -0.2672673761844635, 0.08051696419715881, 0.04578617587685585, 0.5754444003105164, 0.4452361464500427, 0.33240315318107605, 0.8017204403877258, -0.7389134764671326, -0.34353700280189514, -0.5707578063011169, 0.41583162546157837, 0.7165035605430603, -0.6808513402938843, -0.05755161494016647, 1.619871973991394, 0.14555083215236664, -0.8130474090576172, 1.0597718954086304, -0.5488685965538025, 0.3908342123031616, -0.7714079022407532, -0.6548983454704285, 0.07555128633975983, -0.7264310717582703, 1.107642650604248, 0.3284628391265869, -0.7927704453468323, 1.025253415107727, -0.3818429112434387, -0.04107397049665451, -0.6821574568748474, -0.8296362161636353, -0.7122156023979187, 0.13615810871124268, -0.7802268862724304, -0.0379040353000164, -1.0742682218551636, -0.3413253724575043, 0.8490669131278992, -0.048462290316820145, -0.7310328483581543, 0.10470449179410934, 1.0690172910690308, -0.4977235794067383, 0.9241893887519836, -0.42100778222084045, -0.721024751663208, -0.36429527401924133, 0.01568276807665825, 0.6327409744262695, 0.2649639844894409, 0.04730335623025894, 0.9415105581283569, 0.6766791939735413, 0.666138768196106, 0.28446176648139954, -0.013327628374099731, 0.14285694062709808, 0.20884691178798676, 0.4171483814716339, 0.16037596762180328, 0.28167641162872314, -0.5443587303161621, -0.8842498064041138, -0.44977566599845886, 0.45481982827186584, 1.4293625354766846, 0.8106591701507568, 2.001636028289795, -0.3538072109222412, 0.7315150499343872, -0.5685328245162964, -0.10514726489782333, -0.05593596771359444, -0.7590820789337158, -0.1254206895828247, -0.38496825098991394, -0.3162233531475067, -0.6483535170555115, -0.01464085839688778, 0.36350217461586, 1.0097633600234985, 0.797530472278595, 0.16599591076374054, -0.36963847279548645, -0.988966703414917, -0.6523037552833557, -0.009577635675668716, -0.7282416820526123, 0.14110998809337616, 0.8029180765151978, -1.3758198022842407, 0.3712455928325653, -0.32140663266181946, 0.08839975297451019, 0.7020217180252075, 0.10047955811023712, 0.6151776313781738, -0.9353819489479065, -0.42029818892478943, -0.2281905561685562, 1.006680965423584, 0.6938956379890442, 0.15015265345573425, -0.24751640856266022, 0.4224644601345062, 0.9573764801025391, 0.6116449236869812, -0.48504677414894104, 0.5474849939346313, -0.498453825712204, -0.7446210980415344, -0.07435029745101929, 0.8446359038352966, -0.12090948969125748, -0.2034073770046234, -1.3947088718414307, -0.33211013674736023, 0.00886352825909853, -0.7658243775367737, 0.9693548679351807, 0.28518950939178467, 0.14901335537433624, 0.03484001010656357, -0.0028582923114299774, 1.1068223714828491, -0.18626506626605988, 0.4190515875816345, -0.3178258538246155, 0.8866927623748779, 0.8639748692512512, 1.458834171295166, 0.8542578220367432, -0.05695407837629318, -0.27713513374328613, -1.0832215547561646, -0.029375417158007622, -0.28439509868621826, 0.6748085021972656, 0.27723628282546997, -0.2892736494541168, -0.27125489711761475, 0.07494194060564041, 0.30405011773109436, -0.2504567801952362, 0.6861040592193604, -0.013425055891275406, -0.8005465269088745, -0.3182516098022461, 0.5583019852638245, 0.8666993975639343, -0.86384516954422, -0.5245984792709351, -0.58216792345047, 0.28648465871810913, -0.812355101108551, 0.9446275234222412, -0.7629683613777161, -0.3643644154071808, 0.7829872369766235, -0.9267452955245972, -0.17661312222480774, -0.7425552606582642, -0.5139339566230774, 1.376595139503479, -0.7248768210411072, -0.31510215997695923, -0.34241780638694763, -0.10043132305145264, 1.2278681993484497, 0.5297071933746338, 0.2501112222671509, 0.6302008032798767, -0.34504425525665283, 0.623201310634613, 0.605421245098114, 1.423587679862976, -0.5590534806251526, -0.575392484664917, 0.7877249121665955, -0.16763247549533844, 0.36489808559417725, -1.38785719871521, 0.2886728048324585, -0.16242516040802002, 0.11797663569450378, -0.010274356231093407, 0.5052979588508606, -0.056055858731269836, 1.5636794567108154, 0.6081250309944153, -0.2682819962501526, -0.2887114882469177, -0.23199811577796936, -1.0661123991012573, 0.2559400200843811, 0.5934098958969116, -0.4218578338623047, 0.14268775284290314, 0.3606038987636566, 0.34754231572151184, 0.8449269533157349, 0.304715633392334, -0.026854991912841797, 0.37738317251205444, 0.5042102336883545, -0.49233487248420715, 0.00697360560297966, 0.3381381630897522, 1.6542012691497803, 0.5501418709754944, 0.7896491289138794, -0.5794979929924011, -1.2261531352996826, 0.9951075315475464, -0.28600651025772095, 0.7959651947021484, 0.6992180943489075, 0.36504194140434265, 0.9213886857032776, -1.2338597774505615, 0.19423554837703705, 0.7030105590820312, 0.246579110622406, 0.736757218837738, 0.380108118057251, 0.538990318775177, -1.145833134651184, 0.0152374766767025, 0.1549260914325714, -0.41534724831581116, 0.3948970437049866, 0.46165797114372253, 0.06576195359230042, 0.7639230489730835, -0.5764918327331543, 0.07710324227809906, -1.648314118385315, 0.20470547676086426, 0.0069653186947107315, 0.3475223183631897, 0.46145641803741455, 1.3042480945587158, 0.18034180998802185, 0.5378263592720032, 0.16010673344135284, -1.1927653551101685, 0.16347673535346985, -0.14838841557502747, 0.38440823554992676, 0.23670098185539246, -0.1634225994348526, -0.612572193145752, -0.18288306891918182, -0.18385860323905945, -0.032147713005542755, -0.17297382652759552, -0.35602059960365295, -0.3586941063404083, -0.9555804133415222, 0.4548393487930298, 0.40123575925827026, 0.09949726611375809, -0.10947661846876144, 0.7104361057281494, 0.25431114435195923, 0.4852292239665985, -0.2904488742351532, 0.3881293833255768, 0.3006752133369446, -0.16377699375152588, -0.3503667712211609, -0.6392337679862976, -1.2463122606277466, 0.28220102190971375, 0.6443015336990356, 0.17788401246070862, 0.2511175870895386, 0.5743221044540405, 1.5770220756530762, -1.0561753511428833, -0.7669622302055359, 0.24649040400981903, 0.14257396757602692, 1.0949034690856934, 0.3550463616847992, -0.52896648645401, -0.7276359796524048, -0.11897000670433044, -1.9064475297927856, 0.7034308910369873, 0.0015547946095466614, -0.9428233504295349, 0.42447054386138916, -0.43479642271995544, 0.3147047460079193, 0.5129379034042358, -0.2699089050292969, 0.8315537571907043, 0.048814840614795685, -0.2671114504337311, -0.25756508111953735, 0.4317026138305664, 0.935001790523529, 0.3097771406173706, -0.7839524745941162, 0.4319860637187958, -0.7316486239433289, 0.05506282299757004, 0.014232903718948364, 0.07846984267234802, 0.6054192185401917, -0.052303362637758255, -0.031011318787932396, -0.5403254628181458, 0.40050971508026123, -0.8118345141410828, -0.25468167662620544, -0.4465232789516449, 0.5747270584106445, -0.4501219093799591, -0.11937639117240906, 0.5593444108963013, -0.8740547895431519, 0.3530135452747345, -0.2672605514526367, -0.15408174693584442, 0.40733781456947327, 0.5964620113372803, 0.2581411600112915, 0.8754575848579407, -0.8113047480583191, 0.2040117233991623, -0.8970711827278137, -0.1879212111234665, 1.74175226688385, -0.23256486654281616, -0.14418376982212067, -0.5801430344581604, -0.6934810876846313, 0.1527245044708252, -0.0089262081310153, 0.829702615737915, -0.8098506331443787, -0.9986734986305237, -0.24409401416778564, 0.11246412992477417, 0.6424464583396912, -0.34238243103027344, 1.1921823024749756, 0.4276828169822693, -0.8346397876739502, 0.34232398867607117, -0.1921231597661972, -0.8080695271492004, 0.11406980454921722, -1.2075512409210205, 0.013330037705600262, -0.13568951189517975, -0.014742588624358177, 0.16585730016231537, 1.1036087274551392, -0.5058599710464478, -0.8108305335044861, -1.6427403688430786, -1.1226012706756592, 0.48652228713035583, 1.061918020248413, -1.486225962638855, 0.7746220827102661, -0.5454830527305603, -0.43539726734161377, 0.18818119168281555, -0.2039157599210739, -0.6423664689064026, -0.09775347262620926, -0.004207042045891285, 0.4923465847969055, -0.39338797330856323, 1.500666618347168, 0.6058023571968079, 0.755054771900177, 0.0837126299738884, 1.1730701923370361, -0.8810800909996033, 0.04944106191396713, -0.14365439116954803, 0.5491819977760315, -0.45610231161117554, 0.32048726081848145, 0.3793361783027649, -1.1378636360168457, -0.9400355219841003, 0.0038674166426062584, 0.8268068432807922, -0.7632372379302979, 0.33705252408981323, -0.5277586579322815, -0.8439235091209412, -0.7538160681724548, 0.5494505763053894, -0.6783473491668701, -0.45071354508399963, 0.31017985939979553, -0.8988228440284729, 0.11405280977487564, -0.7416696548461914, 0.13555780053138733, 0.8167011737823486, 0.6049496531486511, -0.8442674875259399, 0.17941021919250488, 0.6609086990356445, 0.5498105883598328, -0.660971462726593, 0.8113663792610168, 0.9814948439598083, -0.3750322759151459, 0.18869858980178833, -0.054408926516771317, -0.3337549567222595, 0.3409557044506073, 0.05108942463994026, -0.49416595697402954, -0.584251344203949, 0.6584997773170471, -0.28482314944267273, -0.3736802339553833, 0.24373821914196014, 0.45054706931114197, 0.2356242686510086, 0.8385589122772217, 1.2844572067260742, -0.8058011531829834, -0.8303534984588623, 0.4421747624874115, 0.2867754101753235, -0.6287636160850525, 0.36147359013557434, 0.11763325333595276, -0.20283326506614685, 0.6197633147239685, 0.7409870028495789, 0.9905840754508972, -0.877409040927887, 1.056943416595459, 0.8128563761711121, -0.09631402790546417, 0.013502966612577438, -0.7574455142021179, -1.5252158641815186, 0.025084298104047775, -0.8481396436691284, -0.3614942729473114, 0.5197179317474365, -0.6779927611351013, -1.155291199684143, 0.3612370789051056, 0.49787554144859314, -0.6118303537368774, 0.10368333011865616, 0.4439774751663208, -0.34319010376930237, -0.6656268239021301, 0.5345122814178467, 0.12548282742500305, 1.414842963218689, -0.24229590594768524, -0.1702704280614853, -0.10014896839857101, -0.1287151426076889, 0.8729179501533508, 0.0042151231318712234, 0.01046384871006012, -0.47255656123161316, 0.5049284100532532, -0.8247079849243164, -1.032953143119812, 0.08976466953754425, -0.6302922368049622, 0.2412123829126358, -0.39803412556648254, -1.1510887145996094, 0.6134921312332153, -0.25196608901023865, -0.24278533458709717, -0.5186403393745422, -1.0409001111984253, -0.4476330280303955, 0.518750786781311, -0.3476535379886627, 0.6172833442687988, 0.3928837776184082, 0.5753346681594849, 0.502104640007019, -1.187046766281128, -1.1124283075332642, -0.6023639440536499, 1.2799714803695679, 0.1297549605369568, 0.03862715885043144, -0.3976326584815979, -0.0070455027744174, -0.10566940903663635, -0.9645292162895203, -0.6689277291297913, -0.35885927081108093, -0.07316020131111145, -0.44424787163734436, -1.1838887929916382, -1.1710861921310425, -0.6496477723121643, 0.9373262524604797, 0.4661363959312439, 0.18193450570106506, 0.4354286789894104, 0.03277387097477913, -1.5379765033721924, -0.0834198072552681, 0.8541207909584045, 0.6543486714363098, 0.5701562762260437, 1.6008515357971191, 0.6572083830833435, -0.10496751219034195, 0.18071435391902924, -0.45644503831863403, 0.2580879330635071, -1.4758729934692383, -0.3804047405719757, -1.0733590126037598, -0.3598095178604126, 0.3436152935028076], [0.5236385464668274, 1.360308051109314, -2.1064836978912354, -0.6354657411575317, 2.2398056983947754, 0.35133498907089233, 0.8467134833335876, 0.02122628502547741, 0.022978205233812332, -0.46203693747520447, -0.5268329977989197, 0.7260488271713257, 0.07380736619234085, 1.027334451675415, 1.0709012746810913, -0.1918269246816635, 0.3144683241844177, 0.47410398721694946, -0.2208956480026245, 0.4054548144340515, -1.187605857849121, -0.25020545721054077, -0.8105477094650269, 0.07799021899700165, -0.09319761395454407, 0.44277942180633545, -0.6988920569419861, 0.011657781898975372, -0.6575709581375122, -0.8736495971679688, 0.8713124990463257, -0.7718655467033386, -0.2111641764640808, 0.7026090621948242, -2.818528652191162, 0.11492414772510529, 1.1540117263793945, -0.34991756081581116, -0.42205968499183655, 0.7654991745948792, 2.386561870574951, -0.07038954645395279, -0.2432853877544403, -1.6595721244812012, -0.41428259015083313, 0.46606776118278503, 0.8769480586051941, -0.7340298295021057, -0.3440254330635071, -0.6288967728614807, 0.337371826171875, -0.16848494112491608, 0.6079452633857727, 0.9441313743591309, 0.6113834381103516, -0.614506185054779, 0.7453787326812744, 0.69645756483078, 0.35643309354782104, 0.08834829926490784, 0.2770269811153412, -0.014469880610704422, -0.7093833684921265, 1.456139326095581, 0.12445637583732605, 0.08849728852510452, -0.6272972226142883, 1.1193214654922485, -0.01790096051990986, -0.26096203923225403, 0.5474594831466675, -0.14623600244522095, -0.5284869074821472, 0.31474512815475464, -0.5485039353370667, 0.585089385509491, 0.6665047407150269, -0.12670409679412842, 0.5460749864578247, 0.44100573658943176, -1.544500708580017, 0.27092474699020386, 0.759875476360321, -0.8746902346611023, 0.8155316114425659, 0.3041548728942871, 0.19297654926776886, -0.6014150977134705, -0.6858000159263611, 1.1492446660995483, 0.5162176489830017, 0.006282164715230465, 0.8524330854415894, -1.0852108001708984, -0.45329615473747253, -0.5068692564964294, -0.17010557651519775, -1.0004994869232178, -1.078535795211792, -0.5149333477020264, -0.7350547909736633, -0.07359989732503891, 0.4212900996208191, 0.5354727506637573, -0.070074163377285, 1.354651927947998, 0.00848774891346693, -0.038235265761613846, -0.1717745065689087, -0.3576394021511078, -0.619818389415741, 0.82734614610672, -0.5223347544670105, -1.2546446323394775, -0.09736451506614685, 0.16218610107898712, 0.9709392786026001, 0.27632540464401245, 0.4275873005390167, 0.9285415410995483, -0.04995773360133171, -0.08661419153213501, -0.7706277966499329, 0.3902297019958496, 0.5723848342895508, -0.10921585559844971, -0.8662375211715698, 0.06834019720554352, 0.4052484333515167, -0.22696621716022491, 0.18289107084274292, -0.20191343128681183, 0.3125187158584595, 1.201368808746338, -0.3001154065132141, 1.0163017511367798, -0.23520183563232422, -1.2383837699890137, 0.34697484970092773, -0.12815570831298828, 0.9484373927116394, -0.4665915369987488, 0.07492238283157349, -1.0673798322677612, 0.18370862305164337, -0.7535752654075623, 0.5314751863479614, -0.5986168384552002, -0.7071989178657532, 0.37156277894973755, -1.290352463722229, 0.5592761039733887, 0.06461955606937408, 1.0309100151062012, 0.46851128339767456, 0.04696503281593323, 0.6101589202880859, 0.27179715037345886, 0.5386374592781067, 0.4471491575241089, 0.5537781715393066, -0.480839341878891, -0.9452015161514282, 0.4750072956085205, 0.15168648958206177, -0.41910508275032043, 0.2588672637939453, 0.3891298770904541, -0.6151265501976013, 0.6066645383834839, -0.41888242959976196, -0.34370774030685425, -1.1381773948669434, 0.3198995590209961, 0.36552590131759644, 0.21749012172222137, 1.3010553121566772, -0.4821985065937042, -1.504940390586853, -0.3798481225967407, 0.667773425579071, 0.4713437557220459, 0.6380557417869568, -0.44403550028800964, 1.0688296556472778, 0.17851881682872772, 0.2537086009979248, 0.1816541701555252, 0.3355221450328827, -1.4656031131744385, -1.2022664546966553, -0.09369204193353653, -0.84006667137146, 0.2641906142234802, 0.2750962972640991, -0.7781802415847778, 0.8034839630126953, -1.0790350437164307, -0.433142751455307, -0.09274856001138687, -0.6307401657104492, -0.8149498105049133, -0.7184069752693176, -0.215783953666687, -0.404665470123291, 0.03040519915521145, -0.5745923519134521, 0.5164651274681091, -0.7850260138511658, -0.515014111995697, 0.7223575711250305, 0.3496658205986023, -0.7838386297225952, 0.7416968941688538, -0.7503350973129272, -0.815594494342804, -0.01913035660982132, 0.44099023938179016, 0.08726246654987335, -0.32793399691581726, 0.19512279331684113, -0.3714796304702759, -0.1436389982700348, -0.5442360639572144, 0.17752200365066528, -0.7555526494979858, -0.1523539125919342, -1.0727006196975708, -0.8913170099258423, -0.13397997617721558, -0.6133823394775391, -2.24301815032959, 0.1935979425907135, 0.37509632110595703, -1.2601635456085205, 0.5219172239303589, 0.23456481099128723, 0.7150493264198303, 0.40014198422431946, 0.7576999664306641, 0.3560519814491272, 1.2417633533477783, -1.029949426651001, 0.5332315564155579, -0.3613349199295044, 0.5942026376724243, 0.8676980137825012, -0.8055075407028198, -0.2839724123477936, 1.1173336505889893, 0.6168757081031799, 0.43739742040634155, 0.7952566742897034, -0.36568543314933777, 0.6553670167922974, -0.7382680177688599, -0.3973621726036072, -0.2664168179035187, -0.38717642426490784, 1.3672791719436646, 0.7693808078765869, -1.213979959487915, 0.08220391720533371, 0.20664972066879272, -0.4757888615131378, -1.329572319984436, 0.012343683280050755, -0.37319472432136536, 0.2378210723400116, -0.4311337172985077, 0.03005911596119404, 0.1538086235523224, 0.07065236568450928, 0.7110568284988403, -0.6758699417114258, -0.24245451390743256, -0.12178265303373337, -0.11798093467950821, 0.6713065505027771, 1.0604990720748901, 0.07491061836481094, -0.08534349501132965, -0.2951118052005768, -0.2290666699409485, 0.6799182295799255, -0.18695829808712006, -0.4601067304611206, 0.7957353591918945, 0.6661871075630188, 0.5448327660560608, -0.10545415431261063, -0.030851993709802628, -1.039777159690857, 0.7909572124481201, 0.13396424055099487, 0.07831670343875885, 0.7724056243896484, -0.7075972557067871, -0.538513720035553, -0.4785347878932953, 0.49176448583602905, 1.1422655582427979, 0.9072715044021606, 1.7582712173461914, 0.38743847608566284, 0.1320769041776657, -0.03850126639008522, -0.29387062788009644, -0.011571270413696766, -0.4104580581188202, -0.7698169946670532, -0.8745054006576538, -0.582543134689331, -0.5254709124565125, 0.5779154896736145, 1.1436830759048462, -0.21093951165676117, 1.0203696489334106, 0.19669322669506073, -0.5397098064422607, -0.7808748483657837, 0.24315237998962402, 0.29897958040237427, -0.538581371307373, -0.03511275723576546, 0.6742207407951355, -1.0565781593322754, 0.07102248817682266, -0.47406041622161865, -0.08387435972690582, 1.5110245943069458, -0.367572158575058, 0.6164736747741699, -1.2056199312210083, -0.5222097635269165, -0.3139193058013916, 1.8513882160186768, 0.5895909667015076, 0.03501307964324951, -0.08795972168445587, 0.3120216131210327, 0.459164559841156, -0.1234966292977333, -0.5149530172348022, 1.0148379802703857, -0.8701804280281067, -1.3400505781173706, -0.4653543531894684, -0.11893964558839798, 0.24650456011295319, -0.7609834671020508, -0.41362765431404114, -0.1296144723892212, -0.1533806174993515, -0.32605770230293274, 0.281502902507782, 0.4062277376651764, 0.1265224814414978, -0.14339853823184967, 0.33261820673942566, 1.4707010984420776, -0.20700019598007202, 0.03795685991644859, -1.1185803413391113, 0.2712724208831787, 0.9178495407104492, 1.391800045967102, 0.5370795130729675, -0.014415188692510128, 0.6769065260887146, 0.05055601894855499, -0.10273896157741547, 0.06155099347233772, 0.6876447200775146, 0.4173707067966461, -0.6238600015640259, -0.3266430199146271, -0.42979419231414795, 0.21972636878490448, 0.42651796340942383, 0.04107752442359924, 0.4207868278026581, -0.5276074409484863, -0.5078483819961548, 0.9750146269798279, 0.46608036756515503, -0.42750313878059387, -1.0317966938018799, -0.12280261516571045, 0.9332637190818787, -0.6617761254310608, 0.07298514246940613, -0.47099316120147705, -0.0009114723652601242, -0.05038733035326004, -0.8508402705192566, -0.5062193870544434, 0.2549193501472473, 0.1228121891617775, 1.3216369152069092, -0.24660691618919373, -0.5339013338088989, -0.020998340100049973, -0.09169432520866394, 0.14903460443019867, 0.26427188515663147, 0.368366539478302, 0.26931118965148926, -0.2562086880207062, -0.44586753845214844, 0.31519895792007446, 1.75105881690979, -0.44018858671188354, -0.30444273352622986, 0.33971625566482544, -0.3393597900867462, 0.19703030586242676, -0.24007022380828857, -0.6001814603805542, -1.1110663414001465, -1.0318522453308105, -0.12160630524158478, -0.148126021027565, -0.0070834169164299965, 1.1705527305603027, 0.346435010433197, 0.12336450070142746, 0.51004958152771, -0.3936198353767395, -0.7903154492378235, 0.3009532690048218, 0.29401248693466187, -0.0309244766831398, -0.10458432137966156, 0.03545863926410675, 0.04439312964677811, -0.32792776823043823, 0.033528655767440796, -0.03951350972056389, 0.564301609992981, 0.21099668741226196, -0.07333289086818695, 0.015082518570125103, 0.49045082926750183, 1.0003693103790283, 0.5908252000808716, 0.8241459727287292, -0.5947383046150208, -1.188289761543274, 0.47035783529281616, -0.590782105922699, 0.17906644940376282, 0.6212950348854065, 0.2456032633781433, 1.1107395887374878, -1.8446705341339111, -0.443183034658432, 0.9035957455635071, -0.17685867846012115, -0.008619315922260284, 0.08959602564573288, 0.6427713632583618, -0.51921546459198, 0.19182640314102173, 1.1746008396148682, 0.35981684923171997, 0.6434780955314636, 0.09194693714380264, 0.6864864230155945, -0.029752492904663086, -0.35230714082717896, -0.43368303775787354, -0.3129272162914276, -0.49327096343040466, 0.21307982504367828, -0.07182144373655319, 0.7487191557884216, 0.8112719058990479, 0.1774783879518509, 1.232588529586792, 0.17736555635929108, -1.3974039554595947, 0.6881212592124939, -0.03045070916414261, -0.3418896198272705, -0.29510053992271423, -0.3669140040874481, -0.5875505208969116, -0.09110986441373825, 0.45267799496650696, -0.09544818103313446, -0.6881634593009949, -0.8081533312797546, 0.013602197170257568, -0.9952343702316284, 0.7465187907218933, 0.3273584842681885, 0.6339572668075562, 0.18035250902175903, 0.677344024181366, 0.5031765699386597, 0.3773674964904785, -0.5015382170677185, -0.11211210489273071, -0.02342192456126213, 0.023241275921463966, -0.026485418900847435, -1.2459872961044312, -0.6617780327796936, -0.37250879406929016, 1.063386082649231, 0.3682079017162323, 0.6277008056640625, 1.4678325653076172, 1.5031228065490723, 0.19538764655590057, -0.5692099332809448, -0.007794308941811323, -0.819538414478302, 0.3759081959724426, 1.032297134399414, -0.3687949776649475, -0.1899193674325943, -1.2197626829147339, -1.3401603698730469, 1.098844289779663, 0.07739760726690292, -1.2922999858856201, 0.03351924568414688, 0.3508945405483246, -0.020059019327163696, 0.8015850186347961, -0.5672829747200012, 0.8114063739776611, -0.10853715240955353, -0.6198859214782715, -0.4922374188899994, 0.5782638788223267, 0.38437941670417786, 0.6488455533981323, -0.9606549739837646, 0.4222724437713623, -0.41760191321372986, -0.3610277473926544, 0.5342822074890137, 0.5803540349006653, 0.9014454483985901, 0.7038854956626892, 0.18855084478855133, 0.26141858100891113, 0.06712663173675537, -1.230820655822754, -0.12806378304958344, -0.8696253895759583, 0.8138936161994934, -0.04636964201927185, 0.19408096373081207, 0.4537937641143799, -0.3340767025947571, -0.599882960319519, -0.3931436538696289, -0.24214564263820648, 0.7694333791732788, 0.7177976369857788, -0.0414360910654068, -0.3270924687385559, -1.1343812942504883, -0.32303357124328613, -0.598696231842041, -0.645254373550415, 1.257407784461975, -0.04564766213297844, 0.054255206137895584, -0.1151890903711319, -0.33683067560195923, 0.6045895218849182, -0.3096936345100403, 0.19577950239181519, -1.5537583827972412, -1.41496741771698, -1.5992432832717896, -0.03046598844230175, 0.36903467774391174, -0.4524988532066345, 0.739200234413147, 0.4643208682537079, -1.1201667785644531, 0.5094641447067261, 0.46918973326683044, -0.9422160983085632, 0.07505287230014801, -1.6070071458816528, 0.5400099754333496, 0.24923181533813477, 0.3516674041748047, -0.06070702150464058, 0.8285034894943237, -1.3337856531143188, -1.665724754333496, -0.11253193765878677, 0.8061877489089966, 0.9338968396186829, 0.5949644446372986, -1.1014726161956787, 1.3011555671691895, 0.37904998660087585, -0.49958112835884094, -0.566996157169342, -0.7322869300842285, -1.1083112955093384, 0.5084869265556335, 0.2525518238544464, 1.4679646492004395, 0.1197291910648346, 1.212135910987854, 0.10129808634519577, 0.29904797673225403, -0.21253077685832977, -0.008436620235443115, -0.4526248276233673, -0.13020087778568268, -0.25569039583206177, 0.807242751121521, -0.7600657939910889, 0.10462763160467148, -0.4484196901321411, -0.9301833510398865, -1.8847217559814453, 0.15699255466461182, 1.1100529432296753, -0.1265123188495636, 0.6664758324623108, 0.2180912047624588, 0.20313340425491333, -1.2425529956817627, -0.00946742482483387, 0.5701170563697815, -0.5040192008018494, -0.23623397946357727, -0.31406518816947937, 0.3398417830467224, -0.20160862803459167, -0.13100673258304596, 0.2456652671098709, 0.2657380998134613, -0.9109857678413391, 0.561719536781311, 0.6558454632759094, -0.49358513951301575, -0.036934178322553635, 1.6420644521713257, 0.9012852907180786, 0.32158201932907104, 0.0036926837638020515, 0.06758607178926468, 0.09133893251419067, 0.42766284942626953, -0.20123116672039032, -0.16064582765102386, 0.172105610370636, 0.41277772188186646, -0.04610600695014, -0.06292254477739334, -0.7289516925811768, -0.20645670592784882, -0.581472635269165, -0.20128493010997772, 0.9572990536689758, -0.31534942984580994, -0.7704252600669861, 0.6215980648994446, -0.422518253326416, -0.20224951207637787, 0.2735438048839569, -0.08787627518177032, -1.196318507194519, 0.09328562021255493, 1.0431530475616455, 0.4897930920124054, -0.5433120131492615, 0.6255139708518982, 0.786110520362854, 0.49365803599357605, 0.07156852632761002, -0.0437922403216362, -2.467313766479492, -0.05075838416814804, -0.6250775456428528, -0.7315633296966553, 1.534791350364685, -0.618178129196167, -0.9448035359382629, 0.24634398519992828, 0.6884818077087402, 0.04620639607310295, 0.5114060044288635, -0.16992081701755524, 0.048910561949014664, -0.2362285703420639, 0.16984006762504578, -0.6589578986167908, 1.3012967109680176, 0.32469815015792847, -0.3490069508552551, -0.10663639008998871, -0.08989717066287994, -0.06482726335525513, 0.09542687982320786, 0.11700110882520676, -0.5447932481765747, 1.1077008247375488, -0.05542979761958122, -1.0799744129180908, 0.16689547896385193, 0.4819898009300232, -0.196913480758667, 0.18493349850177765, -1.2146886587142944, 0.5676136612892151, 0.41591185331344604, 0.3473275303840637, -0.5465077757835388, -0.7777706384658813, -0.9255702495574951, 0.5153918266296387, -1.4222146272659302, 1.3278107643127441, -0.18140438199043274, 1.010912537574768, 0.9282466173171997, -0.5978580117225647, -0.35229799151420593, -0.232144296169281, 0.3290882706642151, 0.254734605550766, 0.2853945791721344, -0.31952977180480957, 0.12779895961284637, 0.19337265193462372, -1.4653526544570923, -0.015508739277720451, -0.5680603384971619, 0.2720169425010681, 0.15964071452617645, -1.4194520711898804, -0.4586980938911438, -0.49348413944244385, -0.03593114763498306, 0.357468843460083, -0.17335891723632812, 0.6534013748168945, 0.13013237714767456, -0.7359965443611145, -0.1928049921989441, 0.3270789384841919, 0.10482560098171234, 0.19117708504199982, 1.6565815210342407, 1.36981201171875, 0.742885172367096, 0.12908843159675598, -0.4639330804347992, 0.5531821250915527, -0.7260738611221313, -0.04404420778155327, -0.5663886070251465, -0.0654616728425026, 0.03749900683760643], [1.0813614130020142, 1.0741063356399536, -2.1841719150543213, -1.4675272703170776, 0.8159412741661072, 0.3631075322628021, -0.19747591018676758, -0.20683521032333374, -0.587999701499939, -0.6780514717102051, -1.1567304134368896, 0.6464138627052307, 0.9291284084320068, 1.2380560636520386, 0.5421227812767029, -0.27281978726387024, 1.2723808288574219, -0.47969314455986023, 0.03784271702170372, 0.6725338697433472, 0.4166320562362671, 0.3202784061431885, -0.4903111755847931, 0.5837584137916565, 0.19369807839393616, 0.6139256358146667, -0.642582356929779, -0.06509296596050262, -0.7319162487983704, -1.6024199724197388, 1.975630283355713, -0.8594670295715332, 0.44709983468055725, 0.015263880603015423, -1.723929762840271, -1.0971615314483643, 0.8217827081680298, 0.4027734696865082, -0.4661429226398468, 1.0263301134109497, 1.1983901262283325, 1.0937302112579346, -0.31987711787223816, -0.9660235643386841, 0.13466601073741913, -0.15696972608566284, -0.4835818111896515, -1.1299059391021729, 0.7776118516921997, -0.4000823497772217, 0.9855343103408813, -0.17568336427211761, 0.1605207920074463, 1.194329857826233, 0.35029366612434387, 0.9189924597740173, -0.022129356861114502, -0.30275610089302063, 0.9836482405662537, -1.036887526512146, 0.9964567422866821, -0.038186654448509216, -0.25842753052711487, 0.5780508518218994, 0.4039110243320465, -0.10671402513980865, 0.0916372761130333, 0.919195830821991, 0.05837177485227585, -0.8575305342674255, 0.9733405113220215, -0.016110321506857872, -0.509006679058075, 1.0424199104309082, -2.040363073348999, 1.203174114227295, 0.2903693914413452, 0.026021631434559822, 0.33537808060646057, 0.715050995349884, -1.07379150390625, -0.06601575016975403, 1.0004304647445679, -0.30367735028266907, 0.4659534692764282, 0.128080353140831, 0.33408987522125244, -0.9839301109313965, -0.3551345765590668, 1.144508719444275, 0.08235950022935867, -0.19944585859775543, 0.6718859076499939, -0.36878702044487, -0.09205997735261917, 0.0107608987018466, 0.4180353581905365, -0.20533429086208344, -0.5773025751113892, -0.7187678217887878, -0.44883549213409424, -0.6344443559646606, 0.1252790093421936, 0.7311960458755493, 0.5453882813453674, 1.1365212202072144, 0.1699099987745285, -0.6595519781112671, -0.563640296459198, 0.1977291852235794, 0.1854156255722046, -0.11302580684423447, -0.2917689383029938, -0.756749153137207, -0.4688706398010254, 0.001314481720328331, 0.3355778753757477, -0.41977426409721375, 1.002120018005371, 1.0791990756988525, -1.0682222843170166, -0.20695345103740692, -0.9641738533973694, 0.018639901652932167, 0.5650526285171509, 0.2512795031070709, -0.17688053846359253, -0.4336300492286682, 0.051704373210668564, 0.0788666158914566, -0.5909593105316162, 0.23260889947414398, -0.14474421739578247, 0.8977960348129272, -0.4841286540031433, 0.7297704815864563, 0.12657694518566132, -0.21835559606552124, 0.7253500819206238, -0.4550948143005371, 0.19933173060417175, -0.08563903719186783, -0.230721116065979, -0.7454130053520203, 0.33470281958580017, 0.03649264946579933, 0.22547708451747894, -0.12635768949985504, -0.7469847202301025, 0.3974056541919708, -0.22758357226848602, 0.6973578333854675, 0.1946399211883545, 0.7898253798484802, -0.6726595759391785, 0.2176247537136078, 0.16620241105556488, 0.02316204272210598, -0.47183850407600403, 0.3506545126438141, 0.23015743494033813, 0.14120593667030334, -1.0498907566070557, 1.0494871139526367, -0.13439638912677765, -0.33706584572792053, 0.07678960263729095, -0.5959458947181702, -0.8597829937934875, 0.4636602997779846, -1.0572388172149658, -0.5284690856933594, -0.17853227257728577, 0.8907692432403564, -0.16179153323173523, 0.15817007422447205, 1.0602972507476807, -1.4805961847305298, -0.7384172677993774, -0.9856827855110168, 0.4047899842262268, -0.9824933409690857, 0.3558770418167114, 0.11795094609260559, 0.5716996788978577, -0.38359346985816956, -0.15488676726818085, -0.192435160279274, 0.04737544432282448, -0.6211857795715332, -1.1909736394882202, 0.15877334773540497, -1.0737746953964233, 0.2720203995704651, 0.20187067985534668, -0.9577038288116455, 0.3492175340652466, -0.5028788447380066, -0.8516145348548889, 0.6306553483009338, -1.0322954654693604, 0.006870364770293236, -0.8937716484069824, -0.39701932668685913, -0.9716134667396545, -0.012151670642197132, -0.3063916862010956, 0.17752620577812195, -0.930140495300293, 0.08647636324167252, 0.8700321316719055, -0.3826391398906708, -0.5450615882873535, 0.6451791524887085, 0.39239302277565, -0.8097158670425415, 0.010231252759695053, 0.9658254981040955, 0.3506411910057068, -0.1838955283164978, 0.831416130065918, 0.45480796694755554, 1.0683825016021729, 0.06836335361003876, 0.024680670350790024, 0.05335491895675659, -1.3405282497406006, -0.5546320080757141, -0.8474419116973877, -0.32934755086898804, -0.4415495693683624, -1.3021224737167358, 0.5718527436256409, 0.8082979917526245, -0.7893651723861694, 0.3964182138442993, -0.30456769466400146, -0.1057780310511589, 0.20203152298927307, 1.1070342063903809, 0.3145109713077545, 0.012166363187134266, -0.6751025915145874, -0.2642221748828888, -0.5824649930000305, 0.3680807948112488, 0.14475680887699127, -0.1753993034362793, -0.10025208443403244, 1.5829523801803589, 0.25835156440734863, -0.3146895170211792, 0.31012552976608276, 0.07542643696069717, 0.3396758437156677, -0.9497696757316589, -0.7071757316589355, 0.43091362714767456, -1.0912877321243286, 0.5262851715087891, 0.465921550989151, -1.7349268198013306, -0.2802334129810333, -0.3536323010921478, -0.17066062986850739, -1.0774505138397217, -0.584027111530304, 0.03667007014155388, 0.306011438369751, -0.5971218943595886, -0.2631906270980835, -0.16008485853672028, -0.06551232188940048, 0.6910786628723145, -0.5969478487968445, -0.3584210276603699, -0.09321989119052887, 0.167107492685318, -0.14737334847450256, 0.4107198417186737, -0.29176267981529236, -1.0246444940567017, -0.23374919593334198, 0.27535462379455566, 0.3367144465446472, -0.1581258326768875, -0.33842799067497253, 0.6036367416381836, 0.4864028990268707, -0.2502608001232147, -0.04586820304393768, 0.059108931571245193, -0.14343073964118958, 0.06884395331144333, 0.6542330384254456, 0.7495844960212708, 0.6178498268127441, 0.1411316841840744, -0.5232410430908203, -0.8497293591499329, 1.3338347673416138, 0.44941893219947815, 0.9053336977958679, 1.4192885160446167, 0.03960263356566429, 0.17308972775936127, -1.3267189264297485, -0.3095510005950928, -0.027507971972227097, -0.8009650707244873, -0.01929321140050888, -0.5199321508407593, 0.0054494584910571575, -0.3512580990791321, -0.014555512927472591, 1.4245193004608154, 0.5093806385993958, 0.6468501091003418, 0.47326138615608215, 0.16855891048908234, -1.2294894456863403, -0.6397153735160828, 0.6765874028205872, -1.1840697526931763, 0.6563746333122253, 0.9361791610717773, -1.0289682149887085, 0.4468483328819275, -1.0999705791473389, -0.11295420676469803, 0.922295331954956, -0.26069921255111694, 0.47554895281791687, -1.0913548469543457, -0.9754443764686584, 0.155738964676857, -0.03270484879612923, 0.43264687061309814, -0.14452214539051056, -0.5306427478790283, 0.39470374584198, 0.5959537029266357, 0.513817548751831, 0.20561055839061737, 0.8536243438720703, -0.3534833788871765, -0.8656007051467896, -0.27502572536468506, 0.7629597187042236, 0.710984468460083, -0.2025994211435318, -0.17984241247177124, -0.34973278641700745, 0.05076112598180771, -0.2694862186908722, 0.7479724884033203, 0.4575484097003937, 0.5143636465072632, 0.4662708640098572, -0.0692678913474083, 0.7169044017791748, -0.1760767549276352, 0.7955005764961243, -1.2322579622268677, 0.4612897038459778, -0.037373606115579605, 1.0534319877624512, 0.08408001810312271, -0.16143739223480225, 0.276845246553421, -0.9990934133529663, 0.4597824811935425, -0.23010586202144623, 0.44805455207824707, 0.02719867043197155, -0.7236944437026978, -0.6393250823020935, -0.17578470706939697, -0.607008695602417, 0.0076480433344841, 0.048773542046546936, -0.30693304538726807, -0.26892971992492676, -1.047514796257019, 1.2568669319152832, 0.2256249338388443, -0.5998278260231018, -0.0044365739449858665, -0.6561869382858276, 0.7138395309448242, -0.3743663728237152, -0.1141929179430008, -0.5055372714996338, -0.05206197872757912, 0.5423229932785034, -1.4535250663757324, -0.6657407879829407, 0.059467609971761703, 0.1174069195985794, -0.3199709951877594, -1.0843608379364014, -0.06733211874961853, 0.2711176574230194, 0.07707862555980682, 0.16739563643932343, 0.15539056062698364, 0.5946862101554871, 0.1787879914045334, 0.07765724509954453, -0.18732793629169464, 0.11349987983703613, 1.10682213306427, -0.4287584125995636, 0.010370587930083275, -0.5388678312301636, -0.5335487723350525, -0.04185974597930908, -0.5516353249549866, 0.31210780143737793, -0.004624612629413605, -0.4551680386066437, 0.10866626352071762, 0.19746184349060059, -0.35386645793914795, 0.8314235210418701, 1.1275944709777832, -0.2336329221725464, 1.2070462703704834, -0.3076385259628296, -0.9987184405326843, 0.7329217195510864, 0.040166135877370834, 0.586833119392395, 0.1984356939792633, 0.04313627630472183, 0.15625235438346863, 0.1547696739435196, 0.6680788397789001, -0.1776355803012848, 0.8295182585716248, 0.29838135838508606, -0.6346609592437744, 0.43684154748916626, 0.24368013441562653, 0.8906379342079163, 1.3114484548568726, 0.34372371435165405, -0.1081017479300499, -0.6161530017852783, 0.857986330986023, 0.06736402958631516, 0.5672180652618408, 0.5790196061134338, 0.4995622932910919, 1.634885311126709, -0.9756720662117004, -0.08811018615961075, 0.3425874710083008, 0.7874347567558289, 0.2916778326034546, 0.48445212841033936, 0.35200798511505127, -0.7221890091896057, 0.6639329791069031, 0.2955537438392639, -0.02918889746069908, 0.20322570204734802, -0.14006567001342773, 0.11328473687171936, 1.1374183893203735, -0.7540345191955566, 0.24061782658100128, 0.22477968037128448, -0.4793075621128082, -0.4162624180316925, 0.26760658621788025, -0.3267305791378021, 0.7393409013748169, -0.06172637641429901, 0.4750202000141144, -0.5454245805740356, -0.5412189364433289, 0.2589989900588989, -0.9903204441070557, 0.43715327978134155, 0.7335132956504822, -1.0199662446975708, -0.5013460516929626, -0.790751576423645, 0.2168796956539154, 0.14159992337226868, -0.4668946862220764, 0.3149414658546448, 0.1897895634174347, -1.1791391372680664, -0.7246169447898865, 0.25115346908569336, 0.29202088713645935, 0.014515450224280357, 0.7848364114761353, 0.8120538592338562, 0.4857115149497986, 0.11876481771469116, 0.5974854230880737, -0.5029386281967163, -0.5511078238487244, 0.38217639923095703, -1.010048747062683, -1.3324649333953857, 0.5570365190505981, 0.6946753263473511, 0.3456868529319763, -0.7698874473571777, 1.260128378868103, 1.796591877937317, -0.7464837431907654, -0.6243771910667419, 0.5204706192016602, -0.33475515246391296, 0.2457306981086731, 0.04396125674247742, -0.5149611234664917, -0.07007484138011932, 0.08581827580928802, -1.4236066341400146, 0.8543826341629028, -0.37206563353538513, -0.9211243391036987, 0.014622525312006474, 0.34571143984794617, 0.7104598879814148, 0.7538201808929443, -0.6455368399620056, 0.5373032689094543, 0.9251338839530945, -0.9453825950622559, -0.9009761810302734, -0.33225908875465393, 0.5550894737243652, 0.7945215702056885, -0.8264460563659668, -0.037114303559064865, -0.23280872404575348, 0.3881952464580536, 0.8001591563224792, 0.6474478244781494, 0.503263533115387, 0.7401400208473206, 0.542378842830658, -1.0879045724868774, -0.3066330552101135, -1.0839139223098755, -0.05915485695004463, 0.1470436155796051, 0.6009569764137268, -0.5775323510169983, -0.19295665621757507, 0.24928230047225952, -0.6350382566452026, -0.1260221153497696, -0.38561543822288513, -0.2763810157775879, 1.0442700386047363, 0.41743984818458557, -0.876121997833252, -0.09316282719373703, -0.1940286010503769, -0.5292131900787354, 0.28462982177734375, -0.46306002140045166, 1.242773175239563, -0.9187269806861877, -0.15822936594486237, 0.1040857657790184, 0.2522019147872925, 0.10817509144544601, 0.13666988909244537, 0.32024651765823364, -0.8330974578857422, -1.6347957849502563, -0.43290528655052185, 0.48647212982177734, 0.6661540865898132, -0.6550412178039551, 0.16953641176223755, 0.53469318151474, -1.5644536018371582, 0.12370231747627258, 0.32055947184562683, -1.0335259437561035, 0.5517011880874634, -0.8280289769172668, 0.5615845322608948, 1.0647259950637817, -0.2794307768344879, 0.15294364094734192, 0.3690865635871887, -0.7064782977104187, -0.4982229471206665, -0.7317252159118652, 0.2604093551635742, 0.7113211750984192, 1.3601619005203247, -0.7880261540412903, 0.8780643343925476, -0.5427061319351196, -0.009807745926082134, 0.5209366679191589, 0.2785959243774414, -0.8886798024177551, -0.16347822546958923, 0.8216776847839355, 0.2569761872291565, -0.12315564602613449, 1.3240946531295776, -0.46443459391593933, 0.7752653956413269, -0.13267500698566437, -0.7415505051612854, -0.1682075411081314, 0.414010226726532, -1.1462032794952393, -0.35164350271224976, -0.797003448009491, -0.6553479433059692, 0.03100016340613365, -0.5281221270561218, -0.6573691368103027, 0.30630257725715637, 0.6566860675811768, -0.5102803111076355, 0.2214348316192627, 0.2970084547996521, -0.5481704473495483, -0.43709418177604675, 0.7727190256118774, -0.47851791977882385, 0.16756638884544373, 0.15359258651733398, -0.660905659198761, 0.40732207894325256, -0.8744989633560181, 0.023588092997670174, 0.1606137901544571, -0.12304449826478958, -0.2538200914859772, 0.6153250932693481, 0.8034124374389648, -0.12115959078073502, -0.5225114226341248, 1.4935259819030762, 1.2491228580474854, -0.10663717240095139, 0.3078490197658539, 0.06873442232608795, -0.27081942558288574, 0.37711772322654724, -0.44475460052490234, -0.8676738739013672, -0.367876261472702, 1.0018415451049805, -0.20371009409427643, -0.08116047829389572, -0.29030510783195496, 0.05126534029841423, -0.41510435938835144, 0.3043607473373413, -0.05724112316966057, -0.10949564725160599, -0.10761695355176926, 0.6145375370979309, 0.10368804633617401, -0.5826621055603027, -0.17236469686031342, 0.11674421280622482, 0.44277530908584595, 0.4139416515827179, 0.018705526366829872, -0.11299854516983032, 0.028990011662244797, 0.7463400363922119, 0.2299705147743225, -0.4016343653202057, 0.28993669152259827, -0.41236749291419983, -1.3489282131195068, -0.003883674740791321, -0.7062160968780518, -0.9122022390365601, 0.5996055603027344, -0.926272451877594, -0.5935683846473694, 0.6197908520698547, -0.023318592458963394, 0.5238885879516602, -0.6311811804771423, 0.1867179572582245, 1.0644103288650513, 0.06051301956176758, 1.5966756343841553, 0.08302832394838333, 0.6307662129402161, 0.7206422686576843, -0.07853754609823227, -0.4048343300819397, -0.8572415709495544, 0.0810447633266449, 0.05995189771056175, 0.04916638135910034, -0.35418736934661865, 0.12588471174240112, -0.09162283688783646, -0.7866196036338806, 0.5175307989120483, 0.559604287147522, 0.2019050121307373, 0.030816011130809784, -1.2185744047164917, 0.32723408937454224, 0.5332979559898376, 0.20379705727100372, -0.868879497051239, -0.17256397008895874, -0.7193610072135925, 0.17695900797843933, 0.20336955785751343, 0.9804989099502563, -0.2934819459915161, 0.6885631680488586, -0.095285564661026, 0.2733718454837799, -0.4362742006778717, -0.4069138765335083, 0.5374575853347778, -0.1653146892786026, 0.26206082105636597, -0.5011754631996155, 0.1918250024318695, -0.41812416911125183, -1.1028636693954468, -0.3362465798854828, 0.42498451471328735, 0.3095274865627289, -0.35795024037361145, -0.4864918887615204, -1.0523381233215332, -0.5996405482292175, 0.7823271155357361, 0.08434851467609406, -0.1015748605132103, 0.8237066864967346, -0.5629622340202332, -0.8102506399154663, 0.7843004465103149, 0.039746079593896866, 0.21244026720523834, 0.29883909225463867, 1.2656272649765015, 1.557538390159607, -0.19318769872188568, 0.2088930606842041, 0.0942218154668808, 0.6467500329017639, -0.7583659887313843, -0.009740293957293034, -0.3740827739238739, 0.8573700785636902, 0.547469973564148], [-0.10803024470806122, 0.3472050130367279, -1.3867559432983398, -1.0013949871063232, 1.597456455230713, -0.9298052191734314, -0.07315647602081299, 0.670966625213623, -0.02409428358078003, 1.162136197090149, -0.25997188687324524, -0.428402304649353, 1.1951543092727661, 0.27344009280204773, 0.7517148852348328, 0.2237693965435028, 1.0960416793823242, 0.045416008681058884, 0.8402508497238159, 0.032512959092855453, -1.4627599716186523, -0.25145280361175537, 0.33117493987083435, 0.32764098048210144, 0.8005227446556091, 0.6139127016067505, -1.2237861156463623, -0.6302927732467651, -1.1066983938217163, -0.8774165511131287, 1.8914517164230347, 0.31684213876724243, -0.797657310962677, -0.9355025291442871, -0.18468111753463745, 0.4271642863750458, 0.7029919028282166, 0.9825591444969177, -0.7912851572036743, 0.8743581175804138, 1.2341363430023193, 1.087899923324585, -0.1871500313282013, -1.7027710676193237, 1.2393203973770142, -0.16143344342708588, 0.987328052520752, -0.4130585789680481, -0.1285114288330078, -0.21157395839691162, 0.12782572209835052, -0.677768886089325, 0.8478555679321289, 0.2959447503089905, 0.6093969941139221, 0.4559969902038574, -0.17566904425621033, -0.8530757427215576, -0.20257999002933502, 0.43130412697792053, 0.7510742545127869, -0.18099752068519592, -1.038081169128418, 0.5232135653495789, -0.6781173348426819, 0.3314359188079834, -0.12061654776334763, 0.38847675919532776, 0.6336339116096497, -0.03308701515197754, 0.8279466032981873, -0.19248992204666138, -0.23073026537895203, 0.8539828062057495, -0.5214794874191284, 0.29605498909950256, 0.4560015797615051, 0.2997639775276184, 0.3916066884994507, 0.2062450796365738, 0.04434359446167946, -0.10835348814725876, 1.119847059249878, -0.004892975091934204, 0.021995991468429565, 0.40838557481765747, 0.6405155658721924, 0.06745569407939911, -0.1323028802871704, 1.5190749168395996, 1.1403635740280151, 0.31906571984291077, 0.0850621908903122, -0.31419190764427185, 0.7196909189224243, 0.934873640537262, 0.23313365876674652, -0.3400534689426422, -0.4114414155483246, -0.7424763441085815, -1.087171196937561, 0.09090027213096619, 0.30901846289634705, -0.02343606948852539, 0.6793044209480286, 0.8344632983207703, 1.0579661130905151, 0.35417455434799194, -0.4751330614089966, -0.9962804913520813, -1.2223002910614014, 0.1255398690700531, -0.580774188041687, -1.1209951639175415, 0.5541894435882568, -0.10253670811653137, 1.1018993854522705, -0.8175908327102661, -0.8393580913543701, 1.0135090351104736, -1.041237235069275, 0.30930832028388977, 0.6970286965370178, 0.8312110900878906, -0.21631433069705963, 0.19453319907188416, -0.20531730353832245, -0.49589356780052185, -0.3795388340950012, -0.9301047325134277, -0.4772548973560333, 0.31446051597595215, 0.508152425289154, 0.13378335535526276, -0.4649444818496704, -0.09066445380449295, -0.5127943158149719, -0.9644066095352173, 0.18074935674667358, -0.004287809133529663, 0.2758325934410095, -0.10123162716627121, -0.32641950249671936, -0.19916968047618866, 0.5300227403640747, 0.20608378946781158, -0.7564029097557068, -0.32194003462791443, -0.29341816902160645, -0.12263057380914688, -0.3718603253364563, 0.1592249572277069, 0.004845976829528809, 1.048187494277954, -0.4284549653530121, -0.6035504341125488, 0.1439710259437561, -0.2281244546175003, -0.15008284151554108, 1.418912410736084, 0.061906810849905014, -0.13941870629787445, -1.5027809143066406, 1.227439522743225, -0.1446765959262848, -0.24108053743839264, 0.835880696773529, -0.0783153623342514, 0.8295822739601135, 0.8171297907829285, -0.8301950693130493, -0.7563303709030151, -0.2328103929758072, 0.5695480704307556, 0.49576178193092346, -0.7093603610992432, 0.7952898144721985, -0.4276755750179291, -0.11777149140834808, -0.41711148619651794, 0.11977604776620865, -0.3495883345603943, 0.577532172203064, 0.1645776480436325, 0.31180521845817566, -0.9853636622428894, 0.2787514626979828, -0.47743678092956543, -0.9081305861473083, -0.08306695520877838, -1.1159409284591675, 0.3445168435573578, -0.6131823658943176, -0.7001240253448486, -0.566990077495575, -0.13600283861160278, 0.7037816643714905, -0.2077304720878601, -0.1053411066532135, -0.5840564966201782, -0.8611083030700684, -0.22133010625839233, -0.5301491022109985, 0.4884866774082184, -0.37121158838272095, 0.4952692687511444, 0.4311913847923279, 0.10725952684879303, -0.6107922792434692, 0.0817239060997963, 0.20438000559806824, -0.1393672078847885, -0.5135073661804199, 0.2583111822605133, -0.062386274337768555, -0.13647353649139404, 0.6852321028709412, -0.16389989852905273, -0.6137983202934265, 0.6341509819030762, 1.0939406156539917, 1.6805838346481323, -0.04644421488046646, -0.344537615776062, -0.17365853488445282, -0.5476399660110474, -0.09951228648424149, -0.782417893409729, 0.5139321088790894, -0.2100631445646286, -0.0710923820734024, -1.5859142541885376, 1.669706106185913, 1.4387277364730835, -1.5188862085342407, -0.8924114108085632, 0.08964221924543381, -0.018279075622558594, -0.19009041786193848, 1.1682825088500977, 0.3288600444793701, 0.1601848006248474, -0.12376569956541061, -0.6145402789115906, -0.6880741715431213, 0.9324814081192017, 1.469198226928711, -0.4112758934497833, 0.37340256571769714, 0.9598979949951172, 0.5274423956871033, -0.15003298223018646, 1.1312400102615356, -0.09333601593971252, -0.12068314105272293, -0.03840792924165726, 0.2465018481016159, -0.20960062742233276, 0.2974281311035156, 0.5298264622688293, 0.5835583209991455, -0.9906521439552307, -0.9484879970550537, 0.21777822077274323, 0.0254561435431242, -0.75403892993927, 0.1018078476190567, -0.22791935503482819, -0.24258260428905487, 0.5588608384132385, 0.21585221588611603, 0.7124587893486023, -0.2448360174894333, 0.15188264846801758, -0.34520140290260315, 0.284130722284317, -0.5874291062355042, -0.30000990629196167, -0.937060534954071, 0.36757171154022217, -0.45807528495788574, -0.20937035977840424, 0.46456268429756165, 0.4449232220649719, 0.6422581672668457, 0.39152792096138, -0.18159794807434082, 0.8298996090888977, 0.8346670866012573, -0.7169370651245117, 0.18017007410526276, 0.7596414089202881, 0.2598196566104889, 0.39794689416885376, 0.5770818591117859, 0.5851110816001892, 0.9602938890457153, -0.8371198177337646, -0.8645694255828857, -0.14600561559200287, 0.5043753385543823, 0.6762139797210693, 0.7445847392082214, 1.5692627429962158, 0.14670535922050476, 0.4047843813896179, -0.29955318570137024, -0.09197773039340973, 1.0923916101455688, -0.5498515963554382, -1.36883544921875, -0.6297406554222107, -0.8030728101730347, -0.1632879674434662, 0.5927854776382446, 0.7269213199615479, -0.32691100239753723, -0.4764820337295532, 0.14436523616313934, -0.5516148209571838, 0.6247249245643616, -0.3464924395084381, -0.42349350452423096, -0.30280688405036926, -0.02068115770816803, 1.09135103225708, -0.7689036130905151, -0.5663332343101501, 0.25942811369895935, -0.5830487012863159, 0.42803776264190674, -0.13617528975009918, 1.901279330253601, -0.3088757395744324, -1.134390950202942, -0.5900744795799255, 0.007220372557640076, 0.8615641593933105, 0.1216689720749855, 0.2357373684644699, -0.018059812486171722, 0.009683946147561073, -0.4080376625061035, -0.7963724732398987, 0.660847544670105, -0.7014608383178711, -0.16184931993484497, -0.10381872951984406, -0.01162794791162014, -0.4838868975639343, -1.1347792148590088, -0.1396559476852417, -0.09749042987823486, -0.4805760085582733, 0.3536263704299927, 0.6989927887916565, -0.16909857094287872, 1.1401946544647217, 0.18073225021362305, -0.4693087339401245, -0.3614281415939331, -0.6893006563186646, -0.6359832286834717, -0.5466911196708679, 1.3625342845916748, 0.7433173060417175, 0.6102838516235352, 0.48529496788978577, 0.34583529829978943, 0.19923223555088043, -0.5845617055892944, -0.3508816957473755, 0.6784693002700806, -0.006585713475942612, -0.1406848132610321, -1.2645795345306396, -0.45277974009513855, -0.11556418240070343, -0.06510362029075623, 0.27387356758117676, 0.16908438503742218, 0.020812075585126877, -0.5640627145767212, 0.022693052887916565, 1.2461168766021729, 0.500819206237793, 0.2285609096288681, -0.4283369779586792, -0.33665144443511963, -0.1810532808303833, -0.34758260846138, 0.573769211769104, -0.5749596357345581, 0.16750460863113403, 0.38593217730522156, -0.02518557570874691, 0.041769180446863174, 0.8056637644767761, -0.2945050299167633, 0.3334181606769562, -1.4116766452789307, -1.1895209550857544, -0.16609348356723785, 0.8111449480056763, 0.019099289551377296, -0.34159716963768005, -0.17293289303779602, -0.4130823612213135, -0.10700157284736633, 0.22056472301483154, -0.16766734421253204, -0.29756227135658264, 0.5098986625671387, -0.23096773028373718, 0.10106872022151947, 1.4043045043945312, 0.4767838418483734, -0.31594058871269226, -0.18595068156719208, 0.3989467918872833, 0.8094147443771362, -1.0115687847137451, -0.2544604539871216, -0.31360602378845215, 0.8565862774848938, 0.23601314425468445, 0.3279257118701935, 0.7347729206085205, 0.6132856607437134, -0.6900837421417236, 0.8119152784347534, 0.6085273027420044, 0.36015966534614563, 0.48074325919151306, -0.20505790412425995, 0.18329574167728424, -0.5554497838020325, -0.11281408369541168, -0.4467746317386627, -0.6314408779144287, -0.23607119917869568, -0.26331520080566406, -1.0279309749603271, -0.25221943855285645, 0.5086572170257568, 0.8471421599388123, -0.08767980337142944, -0.32045501470565796, -0.9631993770599365, 0.5875962972640991, 0.4680434763431549, -0.5377574563026428, 0.2504006028175354, 0.7213531732559204, 1.5051029920578003, -0.45662081241607666, 0.12625201046466827, -0.44876301288604736, 0.07496130466461182, -0.18367940187454224, 0.5839053988456726, 0.360278457403183, -1.048757553100586, 0.351622611284256, -0.5274584293365479, -0.28545212745666504, 0.13164283335208893, 0.7956319451332092, 1.0031068325042725, 0.466185986995697, -0.5337311625480652, 0.13855229318141937, -0.5219939351081848, -0.8297187089920044, -0.7594203352928162, 0.10916180163621902, 0.10970363765954971, 0.33899372816085815, 0.004117108881473541, 1.5897804498672485, -0.6602464318275452, -0.42971935868263245, 0.2793000042438507, -1.254390001296997, 0.23390929400920868, -0.30011221766471863, 0.7180382013320923, -0.12662529945373535, -0.5441002249717712, 0.24227750301361084, -0.4176989197731018, 0.4496128261089325, 0.1916390210390091, 0.4658207893371582, -0.1689179390668869, -0.24575510621070862, 0.5418820977210999, 0.8739117383956909, -0.16664887964725494, -0.027964450418949127, 0.5665596723556519, 1.1837794780731201, -0.09069569408893585, -0.10395780950784683, 0.19623081386089325, 0.17178572714328766, 0.4461663067340851, 0.04133104532957077, -0.8000134825706482, -0.031742535531520844, -0.6163975596427917, -0.8058049082756042, 0.17490467429161072, 0.717471182346344, 0.7233355641365051, -0.4856531023979187, 0.632508397102356, 0.5897984504699707, -0.6401344537734985, 0.2410484105348587, 0.3017038404941559, -0.04607916623353958, 0.11550198495388031, -0.33801504969596863, -1.3354641199111938, 1.4978643655776978, -0.06191682070493698, -0.982734203338623, 0.5058057308197021, 0.30719244480133057, -0.6410292387008667, -0.043716058135032654, -0.8053435683250427, -0.442647248506546, 1.2412723302841187, -0.8722198009490967, -0.9928833842277527, 0.04996838793158531, -0.4664388597011566, 0.585377037525177, -0.7189899682998657, -0.7318633198738098, 0.10542716830968857, 0.6384883522987366, -1.7885401248931885, 0.052639249712228775, -0.09192822873592377, 0.19713804125785828, -0.29576823115348816, 0.2595024108886719, -0.6278185844421387, -0.4125734865665436, -0.4372769892215729, -0.4459678530693054, 0.5474146604537964, -1.0708118677139282, 0.8697524666786194, -0.20798033475875854, 0.023504897952079773, -0.5528010725975037, 0.7056105732917786, -0.26030027866363525, 0.5171338319778442, 0.6855929493904114, -1.3402472734451294, -0.0017471984028816223, 0.3290405869483948, -1.1069139242172241, 0.24133458733558655, 0.511512815952301, 0.2915850579738617, -2.298755645751953, -1.3598226308822632, -0.7677887082099915, 0.4114227890968323, 0.10521525889635086, -0.1108708381652832, 0.08725932985544205, -1.1668559312820435, -1.1268017292022705, -0.5264861583709717, -0.8325028419494629, 0.12818565964698792, 0.8102801442146301, -0.2851441502571106, -0.16373063623905182, -1.1708650588989258, 0.0057720765471458435, -0.0043027363717556, -0.5300033092498779, -0.27697303891181946, -0.8213955760002136, 0.9634449481964111, -0.27715325355529785, 0.9984115958213806, 0.25654736161231995, 0.9573509693145752, -0.18832166492938995, -1.783003330230713, 0.3052951693534851, -0.5018310546875, -0.16634772717952728, 0.36969688534736633, -1.5886564254760742, 0.6805827021598816, -0.35975757241249084, -0.8461042046546936, -0.47136980295181274, 0.5099180340766907, 0.10350655019283295, -0.30822500586509705, 0.1516025960445404, 0.0456978976726532, -0.276780366897583, 0.9917379021644592, 0.05157153308391571, 0.8071220517158508, 0.07118123024702072, 1.0369011163711548, -0.44194626808166504, 0.4902377426624298, -1.2149174213409424, 0.1666260063648224, -1.13372802734375, -0.732029378414154, -0.17003370821475983, -1.233503818511963, -0.1690937578678131, -0.39434051513671875, 0.5694332718849182, -0.21675308048725128, -0.03621402382850647, -0.5672090649604797, -1.2369126081466675, -0.38411441445350647, 0.13190169632434845, -0.3846810460090637, 0.3536974787712097, -0.14243756234645844, 0.042104944586753845, -0.36129042506217957, -0.9234910607337952, -0.3988179862499237, 0.39144983887672424, -0.34933996200561523, -0.7392917275428772, 1.0006052255630493, 0.5835909247398376, 0.2329438328742981, -0.5307384729385376, 0.765368640422821, 1.348490595817566, 0.43578729033470154, -0.09257323294878006, -0.10438999533653259, 0.47601422667503357, 0.6774281859397888, 0.03192742168903351, 0.4607701897621155, -0.14827267825603485, 0.8311569094657898, -0.4158247709274292, -0.7263569831848145, -0.6198006868362427, -0.9136744737625122, 0.48752471804618835, 0.3523443639278412, 0.168767511844635, -0.4492863714694977, 0.23201411962509155, 0.918898344039917, 0.4935806393623352, 0.4994943141937256, -0.03224553167819977, 0.33522164821624756, -0.10162080079317093, 0.338957816362381, 0.4597085416316986, 0.6562201380729675, -0.3718439042568207, 0.32924535870552063, 0.24204391241073608, 0.28452107310295105, -0.3704371154308319, -0.05397750437259674, -1.4487426280975342, -0.07088515907526016, -1.0959362983703613, 0.18680298328399658, 0.44731706380844116, -1.1950945854187012, -0.6476463079452515, -0.7034520506858826, -0.21060946583747864, 0.3325422704219818, 0.37415555119514465, -0.4448671042919159, 0.804550290107727, -0.10209913551807404, 0.36941659450531006, 0.08681356906890869, 0.5478684306144714, -0.15338967740535736, -0.17251597344875336, -0.0783483162522316, -1.170065999031067, 0.4873584508895874, -0.12334025651216507, 0.5293481945991516, -0.7621291279792786, -0.3377223312854767, -0.23052777349948883, -0.7775793671607971, 1.43929123878479, 1.7442326545715332, 0.45273178815841675, -0.5062747597694397, 0.23287178575992584, -0.07881148159503937, 0.8158915042877197, 1.6476668119430542, -0.4998853802680969, -0.3804246783256531, -1.17522394657135, 0.2981271743774414, -0.9635002017021179, 0.32361164689064026, -0.03217312693595886, 1.3228858709335327, -0.056430649012327194, 0.8136886954307556, -0.09308073669672012, -0.7304412722587585, -0.3456195592880249, -0.25690367817878723, 0.7528963088989258, -1.4077025651931763, -0.43597012758255005, 0.5651123523712158, -0.6947013735771179, 0.8877063393592834, -0.23391039669513702, 0.6159376502037048, 0.20393827557563782, -0.10710039734840393, -0.6595228910446167, -1.300212025642395, -0.6338443756103516, 0.37607112526893616, 0.1107223704457283, 0.6898693442344666, -0.9123657941818237, -0.48099485039711, 0.13577139377593994, -0.2159823179244995, 0.09535093605518341, 0.32347390055656433, 1.0419667959213257, 1.0428240299224854, 1.0116685628890991, 0.151570662856102, -0.9761862754821777, 1.0560622215270996, -0.0707591325044632, -0.13335853815078735, 0.06970356404781342, -0.5406243801116943, 0.5455614924430847]], node_map={'5aca51fd-22c4-45c3-b7b3-50ed488de038': Node(page_content='How to Do Great Work\\n\\nJuly 2023\\n\\nIf you collected lists of techniques for doing great work in a lot of different fields, what would the intersection look like? I decided to find out by making it.\\n\\nPartly my goal was to create a guide that could be used by someone working in any field. But I was also curious about the shape of the intersection. And one thing this exercise shows is that it does have a definite shape; it\\'s not just a point labelled \"work hard.\"\\n\\nThe following recipe assumes you\\'re very ambitious.\\n\\nThe first step is to decide what to work on. The work you choose needs to have three qualities: it has to be something you have a natural aptitude for, that you have a deep interest in, and that offers scope to do great work.\\n\\nIn practice you don\\'t have to worry much about the third criterion. Ambitious people are if anything already too conservative about it. So all you need to do is find something you have an aptitude for and great interest in. [1]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5aca51fd-22c4-45c3-b7b3-50ed488de038'), 'ea8d692d-2d93-41a6-b814-721f8a0eba80': Node(page_content='That sounds straightforward, but it\\'s often quite difficult. When you\\'re young you don\\'t know what you\\'re good at or what different kinds of work are like. Some kinds of work you end up doing may not even exist yet. So while some people know what they want to do at 14, most have to figure it out.\\n\\nThe way to figure out what to work on is by working. If you\\'re not sure what to work on, guess. But pick something and get going. You\\'ll probably guess wrong some of the time, but that\\'s fine. It\\'s good to know about multiple things; some of the biggest discoveries come from noticing connections between different fields.\\n\\nDevelop a habit of working on your own projects. Don\\'t let \"work\" mean something other people tell you to do. If you do manage to do great work one day, it will probably be on a project of your own. It may be within some bigger project, but you\\'ll be driving your part of it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ea8d692d-2d93-41a6-b814-721f8a0eba80', wins=1), 'defa86f2-201a-493b-9e51-4c52b6d22f82': Node(page_content=\"What should your projects be? Whatever seems to you excitingly ambitious. As you grow older and your taste in projects evolves, exciting and important will converge. At 7 it may seem excitingly ambitious to build huge things out of Lego, then at 14 to teach yourself calculus, till at 21 you're starting to explore unanswered questions in physics. But always preserve excitingness.\\n\\nThere's a kind of excited curiosity that's both the engine and the rudder of great work. It will not only drive you, but if you let it have its way, will also show you what to work on.\\n\\nWhat are you excessively curious about — curious to a degree that would bore most other people? That's what you're looking for.\\n\\nOnce you've found something you're excessively interested in, the next step is to learn enough about it to get you to one of the frontiers of knowledge. Knowledge expands fractally, and from a distance its edges look smooth, but once you learn enough to get close to one, they turn out to be full of gaps.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='defa86f2-201a-493b-9e51-4c52b6d22f82'), '7a41dd22-0f90-4920-9659-427308ab5374': Node(page_content=\"The next step is to notice them. This takes some skill, because your brain wants to ignore such gaps in order to make a simpler model of the world. Many discoveries have come from asking questions about things that everyone else took for granted. [2]\\n\\nIf the answers seem strange, so much the better. Great work often has a tincture of strangeness. You see this from painting to math. It would be affected to try to manufacture it, but if it appears, embrace it.\\n\\nBoldly chase outlier ideas, even if other people aren't interested in them — in fact, especially if they aren't. If you're excited about some possibility that everyone else ignores, and you have enough expertise to say precisely what they're all overlooking, that's as good a bet as you'll find. [3]\\n\\nFour steps: choose a field, learn enough to get to the frontier, notice gaps, explore promising ones. This is how practically everyone who's done great work has done it, from painters to physicists.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7a41dd22-0f90-4920-9659-427308ab5374'), 'fbe6561c-75ae-48bf-8f1e-285cae90085e': Node(page_content=\"Steps two and four will require hard work. It may not be possible to prove that you have to work hard to do great things, but the empirical evidence is on the scale of the evidence for mortality. That's why it's essential to work on something you're deeply interested in. Interest will drive you to work harder than mere diligence ever could.\\n\\nThe three most powerful motives are curiosity, delight, and the desire to do something impressive. Sometimes they converge, and that combination is the most powerful of all.\\n\\nThe big prize is to discover a new fractal bud. You notice a crack in the surface of knowledge, pry it open, and there's a whole world inside.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='fbe6561c-75ae-48bf-8f1e-285cae90085e'), 'e1a13047-9806-4639-a2a6-9404cfd2b86b': Node(page_content=\"Let's talk a little more about the complicated business of figuring out what to work on. The main reason it's hard is that you can't tell what most kinds of work are like except by doing them. Which means the four steps overlap: you may have to work at something for years before you know how much you like it or how good you are at it. And in the meantime you're not doing, and thus not learning about, most other kinds of work. So in the worst case you choose late based on very incomplete information. [4]\\n\\nThe nature of ambition exacerbates this problem. Ambition comes in two forms, one that precedes interest in the subject and one that grows out of it. Most people who do great work have a mix, and the more you have of the former, the harder it will be to decide what to do.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e1a13047-9806-4639-a2a6-9404cfd2b86b'), 'cd2f5b64-32e8-42f0-ba14-4f22a0d37803': Node(page_content=\"The educational systems in most countries pretend it's easy. They expect you to commit to a field long before you could know what it's really like. And as a result an ambitious person on an optimal trajectory will often read to the system as an instance of breakage.\\n\\nIt would be better if they at least admitted it — if they admitted that the system not only can't do much to help you figure out what to work on, but is designed on the assumption that you'll somehow magically guess as a teenager. They don't tell you, but I will: when it comes to figuring out what to work on, you're on your own. Some people get lucky and do guess correctly, but the rest will find themselves scrambling diagonally across tracks laid down on the assumption that everyone does.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd2f5b64-32e8-42f0-ba14-4f22a0d37803'), 'ed92cc5f-6350-4ac8-9097-605342ed58f1': Node(page_content=\"What should you do if you're young and ambitious but don't know what to work on? What you should not do is drift along passively, assuming the problem will solve itself. You need to take action. But there is no systematic procedure you can follow. When you read biographies of people who've done great work, it's remarkable how much luck is involved. They discover what to work on as a result of a chance meeting, or by reading a book they happen to pick up. So you need to make yourself a big target for luck, and the way to do that is to be curious. Try lots of things, meet lots of people, read lots of books, ask lots of questions. [5]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ed92cc5f-6350-4ac8-9097-605342ed58f1', wins=1), '9dbdc198-e1f6-446b-9b95-bbd6be77492e': Node(page_content=\"When in doubt, optimize for interestingness. Fields change as you learn more about them. What mathematicians do, for example, is very different from what you do in high school math classes. So you need to give different types of work a chance to show you what they're like. But a field should become increasingly interesting as you learn more about it. If it doesn't, it's probably not for you.\\n\\nDon't worry if you find you're interested in different things than other people. The stranger your tastes in interestingness, the better. Strange tastes are often strong ones, and a strong taste for work means you'll be productive. And you're more likely to find new things if you're looking where few have looked before.\\n\\nOne sign that you're suited for some kind of work is when you like even the parts that other people find tedious or frightening.\\n\\nBut fields aren't people; you don't owe them any loyalty. If in the course of working on one thing you discover another that's more exciting, don't be afraid to switch.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dbdc198-e1f6-446b-9b95-bbd6be77492e'), 'ebd76502-a324-4fe9-86db-58b4f1184052': Node(page_content=\"If you're making something for people, make sure it's something they actually want. The best way to do this is to make something you yourself want. Write the story you want to read; build the tool you want to use. Since your friends probably have similar interests, this will also get you your initial audience.\\n\\nThis should follow from the excitingness rule. Obviously the most exciting story to write will be the one you want to read. The reason I mention this case explicitly is that so many people get it wrong. Instead of making what they want, they try to make what some imaginary, more sophisticated audience wants. And once you go down that route, you're lost. [6]\\n\\nThere are a lot of forces that will lead you astray when you're trying to figure out what to work on. Pretentiousness, fashion, fear, money, politics, other people's wishes, eminent frauds. But if you stick to what you find genuinely interesting, you'll be proof against all of them. If you're interested, you're not astray.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebd76502-a324-4fe9-86db-58b4f1184052'), 'bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa': Node(page_content=\"Following your interests may sound like a rather passive strategy, but in practice it usually means following them past all sorts of obstacles. You usually have to risk rejection and failure. So it does take a good deal of boldness.\\n\\nBut while you need boldness, you don't usually need much planning. In most cases the recipe for doing great work is simply: work hard on excitingly ambitious projects, and something good will come of it. Instead of making a plan and then executing it, you just try to preserve certain invariants.\\n\\nThe trouble with planning is that it only works for achievements you can describe in advance. You can win a gold medal or get rich by deciding to as a child and then tenaciously pursuing that goal, but you can't discover natural selection that way.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa'), '2f6da706-f47d-4336-b3f6-78ff254eae9c': Node(page_content='I think for most people who want to do great work, the right strategy is not to plan too much. At each stage do whatever seems most interesting and gives you the best options for the future. I call this approach \"staying upwind.\" This is how most people who\\'ve done great work seem to have done it.\\n\\nEven when you\\'ve found something exciting to work on, working on it is not always straightforward. There will be times when some new idea makes you leap out of bed in the morning and get straight to work. But there will also be plenty of times when things aren\\'t like that.\\n\\nYou don\\'t just put out your sail and get blown forward by inspiration. There are headwinds and currents and hidden shoals. So there\\'s a technique to working, just as there is to sailing.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2f6da706-f47d-4336-b3f6-78ff254eae9c'), '29ad26ae-8a90-4634-aff2-b4f662e421e0': Node(page_content=\"For example, while you must work hard, it's possible to work too hard, and if you do that you'll find you get diminishing returns: fatigue will make you stupid, and eventually even damage your health. The point at which work yields diminishing returns depends on the type. Some of the hardest types you might only be able to do for four or five hours a day.\\n\\nIdeally those hours will be contiguous. To the extent you can, try to arrange your life so you have big blocks of time to work in. You'll shy away from hard tasks if you know you might be interrupted.\\n\\nIt will probably be harder to start working than to keep working. You'll often have to trick yourself to get over that initial threshold. Don't worry about this; it's the nature of work, not a flaw in your character. Work has a sort of activation energy, both per day and per project. And since this threshold is fake in the sense that it's higher than the energy required to keep going, it's ok to tell yourself a lie of corresponding magnitude to get over it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='29ad26ae-8a90-4634-aff2-b4f662e421e0'), 'cd668cf0-3881-44b4-ad84-628203f14f72': Node(page_content='It\\'s usually a mistake to lie to yourself if you want to do great work, but this is one of the rare cases where it isn\\'t. When I\\'m reluctant to start work in the morning, I often trick myself by saying \"I\\'ll just read over what I\\'ve got so far.\" Five minutes later I\\'ve found something that seems mistaken or incomplete, and I\\'m off.\\n\\nSimilar techniques work for starting new projects. It\\'s ok to lie to yourself about how much work a project will entail, for example. Lots of great things began with someone saying \"How hard could it be?\"\\n\\nThis is one case where the young have an advantage. They\\'re more optimistic, and even though one of the sources of their optimism is ignorance, in this case ignorance can sometimes beat knowledge.\\n\\nTry to finish what you start, though, even if it turns out to be more work than you expected. Finishing things is not just an exercise in tidiness or self-discipline. In many projects a lot of the best work happens in what was meant to be the final stage.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd668cf0-3881-44b4-ad84-628203f14f72'), '25f94528-87d2-4c1a-9f75-3670e66aefd6': Node(page_content=\"Another permissible lie is to exaggerate the importance of what you're working on, at least in your own mind. If that helps you discover something new, it may turn out not to have been a lie after all. [7]\\n\\nSince there are two senses of starting work — per day and per project — there are also two forms of procrastination. Per-project procrastination is far the more dangerous. You put off starting that ambitious project from year to year because the time isn't quite right. When you're procrastinating in units of years, you can get a lot not done. [8]\\n\\nOne reason per-project procrastination is so dangerous is that it usually camouflages itself as work. You're not just sitting around doing nothing; you're working industriously on something else. So per-project procrastination doesn't set off the alarms that per-day procrastination does. You're too busy to notice it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='25f94528-87d2-4c1a-9f75-3670e66aefd6'), '7fae8eb9-3a0f-4651-9d30-3973508310f4': Node(page_content=\"The way to beat it is to stop occasionally and ask yourself: Am I working on what I most want to work on? When you're young it's ok if the answer is sometimes no, but this gets increasingly dangerous as you get older. [9]\\n\\nGreat work usually entails spending what would seem to most people an unreasonable amount of time on a problem. You can't think of this time as a cost, or it will seem too high. You have to find the work sufficiently engaging as it's happening.\\n\\nThere may be some jobs where you have to work diligently for years at things you hate before you get to the good part, but this is not how great work happens. Great work happens by focusing consistently on something you're genuinely interested in. When you pause to take stock, you're surprised how far you've come.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7fae8eb9-3a0f-4651-9d30-3973508310f4'), '1f84089c-1ae3-4652-9f00-ba02164c24d3': Node(page_content=\"The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='1f84089c-1ae3-4652-9f00-ba02164c24d3', wins=1), '857bbce1-c4c8-4095-b9ac-c988d50addfc': Node(page_content=\"Something that grows exponentially can become so valuable that it's worth making an extraordinary effort to get it started. But since we underrate exponential growth early on, this too is mostly done unconsciously: people push through the initial, unrewarding phase of learning something new because they know from experience that learning new things always takes an initial push, or they grow their audience one fan at a time because they have nothing better to do. If people consciously realized they could invest in exponential growth, many more would do it.\\n\\nWork doesn't just happen when you're trying to. There's a kind of undirected thinking you do when walking or taking a shower or lying in bed that can be very powerful. By letting your mind wander a little, you'll often solve problems you were unable to solve by frontal attack.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='857bbce1-c4c8-4095-b9ac-c988d50addfc'), 'f41b7677-9e6c-46e2-92fd-993606e5835e': Node(page_content=\"You have to be working hard in the normal way to benefit from this phenomenon, though. You can't just walk around daydreaming. The daydreaming has to be interleaved with deliberate work that feeds it questions. [10]\\n\\nEveryone knows to avoid distractions at work, but it's also important to avoid them in the other half of the cycle. When you let your mind wander, it wanders to whatever you care about most at that moment. So avoid the kind of distraction that pushes your work out of the top spot, or you'll waste this valuable type of thinking on the distraction instead. (Exception: Don't avoid love.)\\n\\nConsciously cultivate your taste in the work done in your field. Until you know which is the best and what makes it so, you don't know what you're aiming for.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f41b7677-9e6c-46e2-92fd-993606e5835e'), '4cb188bc-4106-4204-a6c7-ea3752f34543': Node(page_content=\"And that is what you're aiming for, because if you don't try to be the best, you won't even be good. This observation has been made by so many people in so many different fields that it might be worth thinking about why it's true. It could be because ambition is a phenomenon where almost all the error is in one direction — where almost all the shells that miss the target miss by falling short. Or it could be because ambition to be the best is a qualitatively different thing from ambition to be good. Or maybe being good is simply too vague a standard. Probably all three are true. [11]\\n\\nFortunately there's a kind of economy of scale here. Though it might seem like you'd be taking on a heavy burden by trying to be the best, in practice you often end up net ahead. It's exciting, and also strangely liberating. It simplifies things. In some ways it's easier to try to be the best than to try merely to be good.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cb188bc-4106-4204-a6c7-ea3752f34543', wins=1), 'b2c1b809-e821-452c-a352-4b82293e0d98': Node(page_content=\"One way to aim high is to try to make something that people will care about in a hundred years. Not because their opinions matter more than your contemporaries', but because something that still seems good in a hundred years is more likely to be genuinely good.\\n\\nDon't try to work in a distinctive style. Just try to do the best job you can; you won't be able to help doing it in a distinctive way.\\n\\nStyle is doing things in a distinctive way without trying to. Trying to is affectation.\\n\\nAffectation is in effect to pretend that someone other than you is doing the work. You adopt an impressive but fake persona, and while you're pleased with the impressiveness, the fakeness is what shows in the work. [12]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b2c1b809-e821-452c-a352-4b82293e0d98'), 'a49d877b-69b4-4171-880a-9931fd094a4d': Node(page_content='The temptation to be someone else is greatest for the young. They often feel like nobodies. But you never need to worry about that problem, because it\\'s self-solving if you work on sufficiently ambitious projects. If you succeed at an ambitious project, you\\'re not a nobody; you\\'re the person who did it. So just do the work and your identity will take care of itself.\\n\\n\"Avoid affectation\" is a useful rule so far as it goes, but how would you express this idea positively? How would you say what to be, instead of what not to be? The best answer is earnest. If you\\'re earnest you avoid not just affectation but a whole set of similar vices.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='a49d877b-69b4-4171-880a-9931fd094a4d'), '88e2775e-93a9-47b0-a512-2fb4080c590b': Node(page_content=\"The core of being earnest is being intellectually honest. We're taught as children to be honest as an unselfish virtue — as a kind of sacrifice. But in fact it's a source of power too. To see new ideas, you need an exceptionally sharp eye for the truth. You're trying to see more truth than others have seen so far. And how can you have a sharp eye for the truth if you're intellectually dishonest?\\n\\nOne way to avoid intellectual dishonesty is to maintain a slight positive pressure in the opposite direction. Be aggressively willing to admit that you're mistaken. Once you've admitted you were mistaken about something, you're free. Till then you have to carry it. [13]\\n\\nAnother more subtle component of earnestness is informality. Informality is much more important than its grammatically negative name implies. It's not merely the absence of something. It means focusing on what matters instead of what doesn't.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88e2775e-93a9-47b0-a512-2fb4080c590b', wins=2), '6546e3fd-326b-413e-a345-374e27163847': Node(page_content='What formality and affectation have in common is that as well as doing the work, you\\'re trying to seem a certain way as you\\'re doing it. But any energy that goes into how you seem comes out of being good. That\\'s one reason nerds have an advantage in doing great work: they expend little effort on seeming anything. In fact that\\'s basically the definition of a nerd.\\n\\nNerds have a kind of innocent boldness that\\'s exactly what you need in doing great work. It\\'s not learned; it\\'s preserved from childhood. So hold onto it. Be the one who puts things out there rather than the one who sits back and offers sophisticated-sounding criticisms of them. \"It\\'s easy to criticize\" is true in the most literal sense, and the route to great work is never easy.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6546e3fd-326b-413e-a345-374e27163847'), '531a5c72-e191-4563-863a-a797751b1fc6': Node(page_content=\"There may be some jobs where it's an advantage to be cynical and pessimistic, but if you want to do great work it's an advantage to be optimistic, even though that means you'll risk looking like a fool sometimes. There's an old tradition of doing the opposite. The Old Testament says it's better to keep quiet lest you look like a fool. But that's advice for seeming smart. If you actually want to discover new things, it's better to take the risk of telling people your ideas.\\n\\nSome people are naturally earnest, and with others it takes a conscious effort. Either kind of earnestness will suffice. But I doubt it would be possible to do great work without being earnest. It's so hard to do even if you are. You don't have enough margin for error to accommodate the distortions introduced by being affected, intellectually dishonest, orthodox, fashionable, or cool. [14]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='531a5c72-e191-4563-863a-a797751b1fc6', wins=2), 'c333306a-d7e5-4c78-b4ce-bebcee166ce5': Node(page_content=\"Great work is consistent not only with who did it, but with itself. It's usually all of a piece. So if you face a decision in the middle of working on something, ask which choice is more consistent.\\n\\nYou may have to throw things away and redo them. You won't necessarily have to, but you have to be willing to. And that can take some effort; when there's something you need to redo, status quo bias and laziness will combine to keep you in denial about it. To beat this ask: If I'd already made the change, would I want to revert to what I have now?\\n\\nHave the confidence to cut. Don't keep something that doesn't fit just because you're proud of it, or because it cost you a lot of effort.\\n\\nIndeed, in some kinds of work it's good to strip whatever you're doing to its essence. The result will be more concentrated; you'll understand it better; and you won't be able to lie to yourself about whether there's anything real there.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c333306a-d7e5-4c78-b4ce-bebcee166ce5'), 'c75308b1-0b08-4e09-a009-df856bef3945': Node(page_content='Mathematical elegance may sound like a mere metaphor, drawn from the arts. That\\'s what I thought when I first heard the term \"elegant\" applied to a proof. But now I suspect it\\'s conceptually prior — that the main ingredient in artistic elegance is mathematical elegance. At any rate it\\'s a useful standard well beyond math.\\n\\nElegance can be a long-term bet, though. Laborious solutions will often have more prestige in the short term. They cost a lot of effort and they\\'re hard to understand, both of which impress people, at least temporarily.\\n\\nWhereas some of the very best work will seem like it took comparatively little effort, because it was in a sense already there. It didn\\'t have to be built, just seen. It\\'s a very good sign when it\\'s hard to say whether you\\'re creating something or discovering it.\\n\\nWhen you\\'re doing work that could be seen as either creation or discovery, err on the side of discovery. Try thinking of yourself as a mere conduit through which the ideas take their natural shape.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c75308b1-0b08-4e09-a009-df856bef3945', wins=1), '4f2c5ade-5e17-4002-a1a4-2187f5d88171': Node(page_content=\"(Strangely enough, one exception is the problem of choosing a problem to work on. This is usually seen as search, but in the best case it's more like creating something. In the best case you create the field in the process of exploring it.)\\n\\nSimilarly, if you're trying to build a powerful tool, make it gratuitously unrestrictive. A powerful tool almost by definition will be used in ways you didn't expect, so err on the side of eliminating restrictions, even if you don't know what the benefit will be.\\n\\nGreat work will often be tool-like in the sense of being something others build on. So it's a good sign if you're creating ideas that others could use, or exposing questions that others could answer. The best ideas have implications in many different areas.\\n\\nIf you express your ideas in the most general form, they'll be truer than you intended.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4f2c5ade-5e17-4002-a1a4-2187f5d88171'), '599933be-8cc7-47b3-9079-771faeffc324': Node(page_content='True by itself is not enough, of course. Great ideas have to be true and new. And it takes a certain amount of ability to see new ideas even once you\\'ve learned enough to get to one of the frontiers of knowledge.\\n\\nIn English we give this ability names like originality, creativity, and imagination. And it seems reasonable to give it a separate name, because it does seem to some extent a separate skill. It\\'s possible to have a great deal of ability in other respects — to have a great deal of what\\'s often called \"technical ability\" — and yet not have much of this.\\n\\nI\\'ve never liked the term \"creative process.\" It seems misleading. Originality isn\\'t a process, but a habit of mind. Original thinkers throw off new ideas about whatever they focus on, like an angle grinder throwing off sparks. They can\\'t help it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='599933be-8cc7-47b3-9079-771faeffc324'), 'df268d9c-bb83-4274-adec-131a05765453': Node(page_content=\"If the thing they're focused on is something they don't understand very well, these new ideas might not be good. One of the most original thinkers I know decided to focus on dating after he got divorced. He knew roughly as much about dating as the average 15 year old, and the results were spectacularly colorful. But to see originality separated from expertise like that made its nature all the more clear.\\n\\nI don't know if it's possible to cultivate originality, but there are definitely ways to make the most of however much you have. For example, you're much more likely to have original ideas when you're working on something. Original ideas don't come from trying to have original ideas. They come from trying to build or understand something slightly too difficult. [15]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='df268d9c-bb83-4274-adec-131a05765453'), '7390fd94-b307-468e-9888-4ba2fc15eb38': Node(page_content=\"Talking or writing about the things you're interested in is a good way to generate new ideas. When you try to put ideas into words, a missing idea creates a sort of vacuum that draws it out of you. Indeed, there's a kind of thinking that can only be done by writing.\\n\\nChanging your context can help. If you visit a new place, you'll often find you have new ideas there. The journey itself often dislodges them. But you may not have to go far to get this benefit. Sometimes it's enough just to go for a walk. [16]\\n\\nIt also helps to travel in topic space. You'll have more new ideas if you explore lots of different topics, partly because it gives the angle grinder more surface area to work on, and partly because analogies are an especially fruitful source of new ideas.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7390fd94-b307-468e-9888-4ba2fc15eb38'), '9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b': Node(page_content=\"Don't divide your attention evenly between many topics though, or you'll spread yourself too thin. You want to distribute it according to something more like a power law. [17] Be professionally curious about a few topics and idly curious about many more.\\n\\nCuriosity and originality are closely related. Curiosity feeds originality by giving it new things to work on. But the relationship is closer than that. Curiosity is itself a kind of originality; it's roughly to questions what originality is to answers. And since questions at their best are a big component of answers, curiosity at its best is a creative force.\\n\\nHaving new ideas is a strange game, because it usually consists of seeing things that were right under your nose. Once you've seen a new idea, it tends to seem obvious. Why did no one think of this before?\\n\\nWhen an idea seems simultaneously novel and obvious, it's probably a good one.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b'), '6f83f951-f81a-4afc-9dbc-91e43bbaea88': Node(page_content=\"Seeing something obvious sounds easy. And yet empirically having new ideas is hard. What's the source of this apparent contradiction? It's that seeing the new idea usually requires you to change the way you look at the world. We see the world through models that both help and constrain us. When you fix a broken model, new ideas become obvious. But noticing and fixing a broken model is hard. That's how new ideas can be both obvious and yet hard to discover: they're easy to see after you do something hard.\\n\\nOne way to discover broken models is to be stricter than other people. Broken models of the world leave a trail of clues where they bash against reality. Most people don't want to see these clues. It would be an understatement to say that they're attached to their current model; it's what they think in; so they'll tend to ignore the trail of clues left by its breakage, however conspicuous it may seem in retrospect.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6f83f951-f81a-4afc-9dbc-91e43bbaea88', wins=1), 'c9a8c206-a7da-456c-82a6-635ab33aa7b3': Node(page_content=\"To find new ideas you have to seize on signs of breakage instead of looking away. That's what Einstein did. He was able to see the wild implications of Maxwell's equations not so much because he was looking for new ideas as because he was stricter.\\n\\nThe other thing you need is a willingness to break rules. Paradoxical as it sounds, if you want to fix your model of the world, it helps to be the sort of person who's comfortable breaking rules. From the point of view of the old model, which everyone including you initially shares, the new model usually breaks at least implicit rules.\\n\\nFew understand the degree of rule-breaking required, because new ideas seem much more conservative once they succeed. They seem perfectly reasonable once you're using the new model of the world they brought with them. But they didn't at the time; it took the greater part of a century for the heliocentric model to be generally accepted, even among astronomers, because it felt so wrong.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c9a8c206-a7da-456c-82a6-635ab33aa7b3'), 'f5be2dd9-c85c-418c-a716-eb0b78880cae': Node(page_content=\"Indeed, if you think about it, a good new idea has to seem bad to most people, or someone would have already explored it. So what you're looking for is ideas that seem crazy, but the right kind of crazy. How do you recognize these? You can't with certainty. Often ideas that seem bad are bad. But ideas that are the right kind of crazy tend to be exciting; they're rich in implications; whereas ideas that are merely bad tend to be depressing.\\n\\nThere are two ways to be comfortable breaking rules: to enjoy breaking them, and to be indifferent to them. I call these two cases being aggressively and passively independent-minded.\\n\\nThe aggressively independent-minded are the naughty ones. Rules don't merely fail to stop them; breaking rules gives them additional energy. For this sort of person, delight at the sheer audacity of a project sometimes supplies enough activation energy to get it started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f5be2dd9-c85c-418c-a716-eb0b78880cae'), 'e2362524-ba22-4fb7-8c77-d289a352850b': Node(page_content=\"The other way to break rules is not to care about them, or perhaps even to know they exist. This is why novices and outsiders often make new discoveries; their ignorance of a field's assumptions acts as a source of temporary passive independent-mindedness. Aspies also seem to have a kind of immunity to conventional beliefs. Several I know say that this helps them to have new ideas.\\n\\nStrictness plus rule-breaking sounds like a strange combination. In popular culture they're opposed. But popular culture has a broken model in this respect. It implicitly assumes that issues are trivial ones, and in trivial matters strictness and rule-breaking are opposed. But in questions that really matter, only rule-breakers can be truly strict.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2362524-ba22-4fb7-8c77-d289a352850b'), '018ff54f-2f81-408b-8b62-20443ab66da9': Node(page_content=\"An overlooked idea often doesn't lose till the semifinals. You do see it, subconsciously, but then another part of your subconscious shoots it down because it would be too weird, too risky, too much work, too controversial. This suggests an exciting possibility: if you could turn off such filters, you could see more new ideas.\\n\\nOne way to do that is to ask what would be good ideas for someone else to explore. Then your subconscious won't shoot them down to protect you.\\n\\nYou could also discover overlooked ideas by working in the other direction: by starting from what's obscuring them. Every cherished but mistaken principle is surrounded by a dead zone of valuable ideas that are unexplored because they contradict it.\\n\\nReligions are collections of cherished but mistaken principles. So anything that can be described either literally or metaphorically as a religion will have valuable unexplored ideas in its shadow. Copernicus and Darwin both made discoveries of this type. [18]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='018ff54f-2f81-408b-8b62-20443ab66da9'), '88ff37b8-75c7-48aa-9441-f8cba80464b1': Node(page_content=\"What are people in your field religious about, in the sense of being too attached to some principle that might not be as self-evident as they think? What becomes possible if you discard it?\\n\\nPeople show much more originality in solving problems than in deciding which problems to solve. Even the smartest can be surprisingly conservative when deciding what to work on. People who'd never dream of being fashionable in any other way get sucked into working on fashionable problems.\\n\\nOne reason people are more conservative when choosing problems than solutions is that problems are bigger bets. A problem could occupy you for years, while exploring a solution might only take days. But even so I think most people are too conservative. They're not merely responding to risk, but to fashion as well. Unfashionable problems are undervalued.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88ff37b8-75c7-48aa-9441-f8cba80464b1'), '963e48ca-37ea-4002-b0b2-78fa521f3597': Node(page_content=\"One of the most interesting kinds of unfashionable problem is the problem that people think has been fully explored, but hasn't. Great work often takes something that already exists and shows its latent potential. Durer and Watt both did this. So if you're interested in a field that others think is tapped out, don't let their skepticism deter you. People are often wrong about this.\\n\\nWorking on an unfashionable problem can be very pleasing. There's no hype or hurry. Opportunists and critics are both occupied elsewhere. The existing work often has an old-school solidity. And there's a satisfying sense of economy in cultivating ideas that would otherwise be wasted.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='963e48ca-37ea-4002-b0b2-78fa521f3597'), '263b1659-4c96-4db0-a5b9-6e766bc7a928': Node(page_content='But the most common type of overlooked problem is not explicitly unfashionable in the sense of being out of fashion. It just doesn\\'t seem to matter as much as it actually does. How do you find these? By being self-indulgent — by letting your curiosity have its way, and tuning out, at least temporarily, the little voice in your head that says you should only be working on \"important\" problems.\\n\\nYou do need to work on important problems, but almost everyone is too conservative about what counts as one. And if there\\'s an important but overlooked problem in your neighborhood, it\\'s probably already on your subconscious radar screen. So try asking yourself: if you were going to take a break from \"serious\" work to work on something just because it would be really interesting, what would you do? The answer is probably more important than it seems.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='263b1659-4c96-4db0-a5b9-6e766bc7a928', wins=2), 'f3a439f9-a726-4007-90d3-d7e4ac34c811': Node(page_content=\"Originality in choosing problems seems to matter even more than originality in solving them. That's what distinguishes the people who discover whole new fields. So what might seem to be merely the initial step — deciding what to work on — is in a sense the key to the whole game.\\n\\nFew grasp this. One of the biggest misconceptions about new ideas is about the ratio of question to answer in their composition. People think big ideas are answers, but often the real insight was in the question.\\n\\nPart of the reason we underrate questions is the way they're used in schools. In schools they tend to exist only briefly before being answered, like unstable particles. But a really good question can be much more than that. A really good question is a partial discovery. How do new species arise? Is the force that makes objects fall to earth the same as the one that keeps planets in their orbits? By even asking such questions you were already in excitingly novel territory.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f3a439f9-a726-4007-90d3-d7e4ac34c811'), 'ac0c284a-93cc-4f20-8f95-644471bc59e2': Node(page_content=\"Unanswered questions can be uncomfortable things to carry around with you. But the more you're carrying, the greater the chance of noticing a solution — or perhaps even more excitingly, noticing that two unanswered questions are the same.\\n\\nSometimes you carry a question for a long time. Great work often comes from returning to a question you first noticed years before — in your childhood, even — and couldn't stop thinking about. People talk a lot about the importance of keeping your youthful dreams alive, but it's just as important to keep your youthful questions alive. [19]\\n\\nThis is one of the places where actual expertise differs most from the popular picture of it. In the popular picture, experts are certain. But actually the more puzzled you are, the better, so long as (a) the things you're puzzled about matter, and (b) no one else understands them either.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ac0c284a-93cc-4f20-8f95-644471bc59e2'), '43d899d8-1f03-4594-89b0-c8d98a5b6feb': Node(page_content=\"Think about what's happening at the moment just before a new idea is discovered. Often someone with sufficient expertise is puzzled about something. Which means that originality consists partly of puzzlement — of confusion! You have to be comfortable enough with the world being full of puzzles that you're willing to see them, but not so comfortable that you don't want to solve them. [20]\\n\\nIt's a great thing to be rich in unanswered questions. And this is one of those situations where the rich get richer, because the best way to acquire new questions is to try answering existing ones. Questions don't just lead to answers, but also to more questions.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='43d899d8-1f03-4594-89b0-c8d98a5b6feb'), '36d31bd1-f966-4b1b-97de-447c6e1a6413': Node(page_content=\"The best questions grow in the answering. You notice a thread protruding from the current paradigm and try pulling on it, and it just gets longer and longer. So don't require a question to be obviously big before you try answering it. You can rarely predict that. It's hard enough even to notice the thread, let alone to predict how much will unravel if you pull on it.\\n\\nIt's better to be promiscuously curious — to pull a little bit on a lot of threads, and see what happens. Big things start small. The initial versions of big things were often just experiments, or side projects, or talks, which then grew into something bigger. So start lots of small things.\\n\\nBeing prolific is underrated. The more different things you try, the greater the chance of discovering something new. Understand, though, that trying lots of things will mean trying lots of things that don't work. You can't have a lot of good ideas without also having a lot of bad ones. [21]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='36d31bd1-f966-4b1b-97de-447c6e1a6413'), '2351f0d2-96fe-4a21-845f-11bf4e69dbd6': Node(page_content=\"Though it sounds more responsible to begin by studying everything that's been done before, you'll learn faster and have more fun by trying stuff. And you'll understand previous work better when you do look at it. So err on the side of starting. Which is easier when starting means starting small; those two ideas fit together like two puzzle pieces.\\n\\nHow do you get from starting small to doing something great? By making successive versions. Great things are almost always made in successive versions. You start with something small and evolve it, and the final version is both cleverer and more ambitious than anything you could have planned.\\n\\nIt's particularly useful to make successive versions when you're making something for people — to get an initial version in front of them quickly, and then evolve it based on their response.\\n\\nBegin by trying the simplest thing that could possibly work. Surprisingly often, it does. If it doesn't, this will at least get you started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2351f0d2-96fe-4a21-845f-11bf4e69dbd6'), '55306b2a-343d-4e44-8b24-25e471975cd3': Node(page_content='Don\\'t try to cram too much new stuff into any one version. There are names for doing this with the first version (taking too long to ship) and the second (the second system effect), but these are both merely instances of a more general principle.\\n\\nAn early version of a new project will sometimes be dismissed as a toy. It\\'s a good sign when people do this. That means it has everything a new idea needs except scale, and that tends to follow. [22]\\n\\nThe alternative to starting with something small and evolving it is to plan in advance what you\\'re going to do. And planning does usually seem the more responsible choice. It sounds more organized to say \"we\\'re going to do x and then y and then z\" than \"we\\'re going to try x and see what happens.\" And it is more organized; it just doesn\\'t work as well.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='55306b2a-343d-4e44-8b24-25e471975cd3'), '8776ddf1-1e65-458c-9cc2-63a7fe40f800': Node(page_content=\"Planning per se isn't good. It's sometimes necessary, but it's a necessary evil — a response to unforgiving conditions. It's something you have to do because you're working with inflexible media, or because you need to coordinate the efforts of a lot of people. If you keep projects small and use flexible media, you don't have to plan as much, and your designs can evolve instead.\\n\\nTake as much risk as you can afford. In an efficient market, risk is proportionate to reward, so don't look for certainty, but for a bet with high expected value. If you're not failing occasionally, you're probably being too conservative.\\n\\nThough conservatism is usually associated with the old, it's the young who tend to make this mistake. Inexperience makes them fear risk, but it's when you're young that you can afford the most.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8776ddf1-1e65-458c-9cc2-63a7fe40f800'), 'c325c260-d37e-4bb0-a8b8-7d2633f1c55e': Node(page_content=\"Even a project that fails can be valuable. In the process of working on it, you'll have crossed territory few others have seen, and encountered questions few others have asked. And there's probably no better source of questions than the ones you encounter in trying to do something slightly too hard.\\n\\nUse the advantages of youth when you have them, and the advantages of age once you have those. The advantages of youth are energy, time, optimism, and freedom. The advantages of age are knowledge, efficiency, money, and power. With effort you can acquire some of the latter when young and keep some of the former when old.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c325c260-d37e-4bb0-a8b8-7d2633f1c55e'), '9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62': Node(page_content='The old also have the advantage of knowing which advantages they have. The young often have them without realizing it. The biggest is probably time. The young have no idea how rich they are in time. The best way to turn this time to advantage is to use it in slightly frivolous ways: to learn about something you don\\'t need to know about, just out of curiosity, or to try building something just because it would be cool, or to become freakishly good at something.\\n\\nThat \"slightly\" is an important qualification. Spend time lavishly when you\\'re young, but don\\'t simply waste it. There\\'s a big difference between doing something you worry might be a waste of time and doing something you know for sure will be. The former is at least a bet, and possibly a better one than you think. [23]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62'), '8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7': Node(page_content=\"The most subtle advantage of youth, or more precisely of inexperience, is that you're seeing everything with fresh eyes. When your brain embraces an idea for the first time, sometimes the two don't fit together perfectly. Usually the problem is with your brain, but occasionally it's with the idea. A piece of it sticks out awkwardly and jabs you when you think about it. People who are used to the idea have learned to ignore it, but you have the opportunity not to. [24]\\n\\nSo when you're learning about something for the first time, pay attention to things that seem wrong or missing. You'll be tempted to ignore them, since there's a 99% chance the problem is with you. And you may have to set aside your misgivings temporarily to keep progressing. But don't forget about them. When you've gotten further into the subject, come back and check if they're still there. If they're still viable in the light of your present knowledge, they probably represent an undiscovered idea.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7'), 'ebcb18af-82cb-4367-bb8f-60de302902d8': Node(page_content=\"One of the most valuable kinds of knowledge you get from experience is to know what you don't have to worry about. The young know all the things that could matter, but not their relative importance. So they worry equally about everything, when they should worry much more about a few things and hardly at all about the rest.\\n\\nBut what you don't know is only half the problem with inexperience. The other half is what you do know that ain't so. You arrive at adulthood with your head full of nonsense — bad habits you've acquired and false things you've been taught — and you won't be able to do great work till you clear away at least the nonsense in the way of whatever type of work you want to do.\\n\\nMuch of the nonsense left in your head is left there by schools. We're so used to schools that we unconsciously treat going to school as identical with learning, but in fact schools have all sorts of strange qualities that warp our ideas about learning and thinking.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebcb18af-82cb-4367-bb8f-60de302902d8'), '16440cdc-9b76-475c-bd3a-8e43dae9a434': Node(page_content=\"For example, schools induce passivity. Since you were a small child, there was an authority at the front of the class telling all of you what you had to learn and then measuring whether you did. But neither classes nor tests are intrinsic to learning; they're just artifacts of the way schools are usually designed.\\n\\nThe sooner you overcome this passivity, the better. If you're still in school, try thinking of your education as your project, and your teachers as working for you rather than vice versa. That may seem a stretch, but it's not merely some weird thought experiment. It's the truth, economically, and in the best case it's the truth intellectually as well. The best teachers don't want to be your bosses. They'd prefer it if you pushed ahead, using them as a source of advice, rather than being pulled by them through the material.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='16440cdc-9b76-475c-bd3a-8e43dae9a434'), '017c0f04-9f7c-4c8f-b6e9-23539e87f9a1': Node(page_content='Schools also give you a misleading impression of what work is like. In school they tell you what the problems are, and they\\'re almost always soluble using no more than you\\'ve been taught so far. In real life you have to figure out what the problems are, and you often don\\'t know if they\\'re soluble at all.\\n\\nBut perhaps the worst thing schools do to you is train you to win by hacking the test. You can\\'t do great work by doing that. You can\\'t trick God. So stop looking for that kind of shortcut. The way to beat the system is to focus on problems and solutions that others have overlooked, not to skimp on the work itself.\\n\\nDon\\'t think of yourself as dependent on some gatekeeper giving you a \"big break.\" Even if this were true, the best way to get it would be to focus on doing good work rather than chasing influential people.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c0f04-9f7c-4c8f-b6e9-23539e87f9a1'), 'c8acb19e-fb92-4e15-a633-895f474f5fd1': Node(page_content=\"And don't take rejection by committees to heart. The qualities that impress admissions officers and prize committees are quite different from those required to do great work. The decisions of selection committees are only meaningful to the extent that they're part of a feedback loop, and very few are.\\n\\nPeople new to a field will often copy existing work. There's nothing inherently bad about that. There's no better way to learn how something works than by trying to reproduce it. Nor does copying necessarily make your work unoriginal. Originality is the presence of new ideas, not the absence of old ones.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c8acb19e-fb92-4e15-a633-895f474f5fd1'), '5358b733-dcf2-4681-99ff-dd89b89c6718': Node(page_content='There\\'s a good way to copy and a bad way. If you\\'re going to copy something, do it openly instead of furtively, or worse still, unconsciously. This is what\\'s meant by the famously misattributed phrase \"Great artists steal.\" The really dangerous kind of copying, the kind that gives copying a bad name, is the kind that\\'s done without realizing it, because you\\'re nothing more than a train running on tracks laid down by someone else. But at the other extreme, copying can be a sign of superiority rather than subordination. [25]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5358b733-dcf2-4681-99ff-dd89b89c6718', wins=1), 'f087a707-515e-4c49-9772-187a7075ed75': Node(page_content=\"In many fields it's almost inevitable that your early work will be in some sense based on other people's. Projects rarely arise in a vacuum. They're usually a reaction to previous work. When you're first starting out, you don't have any previous work; if you're going to react to something, it has to be someone else's. Once you're established, you can react to your own. But while the former gets called derivative and the latter doesn't, structurally the two cases are more similar than they seem.\\n\\nOddly enough, the very novelty of the most novel ideas sometimes makes them seem at first to be more derivative than they are. New discoveries often have to be conceived initially as variations of existing things, even by their discoverers, because there isn't yet the conceptual vocabulary to express them.\\n\\nThere are definitely some dangers to copying, though. One is that you'll tend to copy old things — things that were in their day at the frontier of knowledge, but no longer are.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f087a707-515e-4c49-9772-187a7075ed75'), 'daf67766-a44c-4c3b-bd77-dc6d1045d490': Node(page_content=\"And when you do copy something, don't copy every feature of it. Some will make you ridiculous if you do. Don't copy the manner of an eminent 50 year old professor if you're 18, for example, or the idiom of a Renaissance poem hundreds of years later.\\n\\nSome of the features of things you admire are flaws they succeeded despite. Indeed, the features that are easiest to imitate are the most likely to be the flaws.\\n\\nThis is particularly true for behavior. Some talented people are jerks, and this sometimes makes it seem to the inexperienced that being a jerk is part of being talented. It isn't; being talented is merely how they get away with it.\\n\\nOne of the most powerful kinds of copying is to copy something from one field into another. History is so full of chance discoveries of this type that it's probably worth giving chance a hand by deliberately learning about other kinds of work. You can take ideas from quite distant fields if you let them be metaphors.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='daf67766-a44c-4c3b-bd77-dc6d1045d490'), '18f9beba-e410-4473-97ad-959d232cd009': Node(page_content=\"Negative examples can be as inspiring as positive ones. In fact you can sometimes learn more from things done badly than from things done well; sometimes it only becomes clear what's needed when it's missing.\\n\\nIf a lot of the best people in your field are collected in one place, it's usually a good idea to visit for a while. It will increase your ambition, and also, by showing you that these people are human, increase your self-confidence. [26]\\n\\nIf you're earnest you'll probably get a warmer welcome than you might expect. Most people who are very good at something are happy to talk about it with anyone who's genuinely interested. If they're really good at their work, then they probably have a hobbyist's interest in it, and hobbyists always want to talk about their hobbies.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='18f9beba-e410-4473-97ad-959d232cd009'), 'e4ed843d-1771-424a-91fc-5b74bcd2bc37': Node(page_content=\"It may take some effort to find the people who are really good, though. Doing great work has such prestige that in some places, particularly universities, there's a polite fiction that everyone is engaged in it. And that is far from true. People within universities can't say so openly, but the quality of the work being done in different departments varies immensely. Some departments have people doing great work; others have in the past; others never have.\\n\\nSeek out the best colleagues. There are a lot of projects that can't be done alone, and even if you're working on one that can be, it's good to have other people to encourage you and to bounce ideas off.\\n\\nColleagues don't just affect your work, though; they also affect you. So work with people you want to become like, because you will.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e4ed843d-1771-424a-91fc-5b74bcd2bc37'), '6c16f93b-75ea-4884-8959-b8d243716257': Node(page_content=\"Quality is more important than quantity in colleagues. It's better to have one or two great ones than a building full of pretty good ones. In fact it's not merely better, but necessary, judging from history: the degree to which great work happens in clusters suggests that one's colleagues often make the difference between doing great work and not.\\n\\nHow do you know when you have sufficiently good colleagues? In my experience, when you do, you know. Which means if you're unsure, you probably don't. But it may be possible to give a more concrete answer than that. Here's an attempt: sufficiently good colleagues offer surprising insights. They can see and do things that you can't. So if you have a handful of colleagues good enough to keep you on your toes in this sense, you're probably over the threshold.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6c16f93b-75ea-4884-8959-b8d243716257'), '41972435-555e-4d47-977a-b91de1f27a90': Node(page_content=\"Most of us can benefit from collaborating with colleagues, but some projects require people on a larger scale, and starting one of those is not for everyone. If you want to run a project like that, you'll have to become a manager, and managing well takes aptitude and interest like any other kind of work. If you don't have them, there is no middle path: you must either force yourself to learn management as a second language, or avoid such projects. [27]\\n\\nHusband your morale. It's the basis of everything when you're working on ambitious projects. You have to nurture and protect it like a living organism.\\n\\nMorale starts with your view of life. You're more likely to do great work if you're an optimist, and more likely to if you think of yourself as lucky than if you think of yourself as a victim.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='41972435-555e-4d47-977a-b91de1f27a90'), 'e2821136-b037-4332-bbbd-de2fcbeae316': Node(page_content=\"Indeed, work can to some extent protect you from your problems. If you choose work that's pure, its very difficulties will serve as a refuge from the difficulties of everyday life. If this is escapism, it's a very productive form of it, and one that has been used by some of the greatest minds in history.\\n\\nMorale compounds via work: high morale helps you do good work, which increases your morale and helps you do even better work. But this cycle also operates in the other direction: if you're not doing good work, that can demoralize you and make it even harder to. Since it matters so much for this cycle to be running in the right direction, it can be a good idea to switch to easier work when you're stuck, just so you start to get something done.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2821136-b037-4332-bbbd-de2fcbeae316', wins=1), '4593e897-c389-4639-98bd-7c159e1b3eae': Node(page_content='One of the biggest mistakes ambitious people make is to allow setbacks to destroy their morale all at once, like a balloon bursting. You can inoculate yourself against this by explicitly considering setbacks a part of your process. Solving hard problems always involves some backtracking.\\n\\nDoing great work is a depth-first search whose root node is the desire to. So \"If at first you don\\'t succeed, try, try again\" isn\\'t quite right. It should be: If at first you don\\'t succeed, either try again, or backtrack and then try again.\\n\\n\"Never give up\" is also not quite right. Obviously there are times when it\\'s the right choice to eject. A more precise version would be: Never let setbacks panic you into backtracking more than you need to. Corollary: Never abandon the root node.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4593e897-c389-4639-98bd-7c159e1b3eae'), 'b00c903d-199c-47b5-9884-f47a81649533': Node(page_content=\"It's not necessarily a bad sign if work is a struggle, any more than it's a bad sign to be out of breath while running. It depends how fast you're running. So learn to distinguish good pain from bad. Good pain is a sign of effort; bad pain is a sign of damage.\\n\\nAn audience is a critical component of morale. If you're a scholar, your audience may be your peers; in the arts, it may be an audience in the traditional sense. Either way it doesn't need to be big. The value of an audience doesn't grow anything like linearly with its size. Which is bad news if you're famous, but good news if you're just starting out, because it means a small but dedicated audience can be enough to sustain you. If a handful of people genuinely love what you're doing, that's enough.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b00c903d-199c-47b5-9884-f47a81649533'), '53911edb-1d5b-42d8-8f83-00572631b56a': Node(page_content=\"To the extent you can, avoid letting intermediaries come between you and your audience. In some types of work this is inevitable, but it's so liberating to escape it that you might be better off switching to an adjacent type if that will let you go direct. [28]\\n\\nThe people you spend time with will also have a big effect on your morale. You'll find there are some who increase your energy and others who decrease it, and the effect someone has is not always what you'd expect. Seek out the people who increase your energy and avoid those who decrease it. Though of course if there's someone you need to take care of, that takes precedence.\\n\\nDon't marry someone who doesn't understand that you need to work, or sees your work as competition for your attention. If you're ambitious, you need to work; it's almost like a medical condition; so someone who won't let you work either doesn't understand you, or does and doesn't care.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='53911edb-1d5b-42d8-8f83-00572631b56a', wins=1), '4cc70f37-da0e-44f9-a413-70a2f96e884a': Node(page_content=\"Ultimately morale is physical. You think with your body, so it's important to take care of it. That means exercising regularly, eating and sleeping well, and avoiding the more dangerous kinds of drugs. Running and walking are particularly good forms of exercise because they're good for thinking. [29]\\n\\nPeople who do great work are not necessarily happier than everyone else, but they're happier than they'd be if they didn't. In fact, if you're smart and ambitious, it's dangerous not to be productive. People who are smart and ambitious but don't achieve much tend to become bitter.\\n\\nIt's ok to want to impress other people, but choose the right people. The opinion of people you respect is signal. Fame, which is the opinion of a much larger group you might or might not respect, just adds noise.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cc70f37-da0e-44f9-a413-70a2f96e884a'), '017c6cc7-ee83-4bdb-a16f-fb64224418df': Node(page_content='The prestige of a type of work is at best a trailing indicator and sometimes completely mistaken. If you do anything well enough, you\\'ll make it prestigious. So the question to ask about a type of work is not how much prestige it has, but how well it could be done.\\n\\nCompetition can be an effective motivator, but don\\'t let it choose the problem for you; don\\'t let yourself get drawn into chasing something just because others are. In fact, don\\'t let competitors make you do anything much more specific than work harder.\\n\\nCuriosity is the best guide. Your curiosity never lies, and it knows more than you do about what\\'s worth paying attention to.\\n\\nNotice how often that word has come up. If you asked an oracle the secret to doing great work and the oracle replied with a single word, my bet would be on \"curiosity.\"\\n\\nThat doesn\\'t translate directly to advice. It\\'s not enough just to be curious, and you can\\'t command curiosity anyway. But you can nurture it and let it drive you.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c6cc7-ee83-4bdb-a16f-fb64224418df'), '518b39aa-59f8-4cb7-9c23-4ac7197f8250': Node(page_content=\"Curiosity is the key to all four steps in doing great work: it will choose the field for you, get you to the frontier, cause you to notice the gaps in it, and drive you to explore them. The whole process is a kind of dance with curiosity.\\n\\nBelieve it or not, I tried to make this essay as short as I could. But its length at least means it acts as a filter. If you made it this far, you must be interested in doing great work. And if so you're already further along than you might realize, because the set of people willing to want to is small.\\n\\nThe factors in doing great work are factors in the literal, mathematical sense, and they are: ability, interest, effort, and luck. Luck by definition you can't do anything about, so we can ignore that. And we can assume effort, if you do in fact want to do great work. So the problem boils down to ability and interest. Can you find a kind of work where your ability and interest will combine to yield an explosion of new ideas?\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='518b39aa-59f8-4cb7-9c23-4ac7197f8250', wins=1), '4bd8c91f-16e5-4aab-a361-b2e98eee6b10': Node(page_content=\"Here there are grounds for optimism. There are so many different ways to do great work, and even more that are still undiscovered. Out of all those different types of work, the one you're most suited for is probably a pretty close match. Probably a comically close match. It's just a question of finding it, and how far into it your ability and interest can take you. And you can only answer that by trying.\\n\\nMany more people could try to do great work than do. What holds them back is a combination of modesty and fear. It seems presumptuous to try to be Newton or Shakespeare. It also seems hard; surely if you tried something like that, you'd fail. Presumably the calculation is rarely explicit. Few people consciously decide not to try to do great work. But that's what's going on subconsciously; they shy away from the question.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4bd8c91f-16e5-4aab-a361-b2e98eee6b10'), '5098c334-acd7-4051-8409-88ae99b130c4': Node(page_content=\"So I'm going to pull a sneaky trick on you. Do you want to do great work, or not? Now you have to decide consciously. Sorry about that. I wouldn't have done it to a general audience. But we already know you're interested.\\n\\nDon't worry about being presumptuous. You don't have to tell anyone. And if it's too hard and you fail, so what? Lots of people have worse problems than that. In fact you'll be lucky if it's the worst problem you have.\\n\\nYes, you'll have to work hard. But again, lots of people have to work hard. And if you're working on something you find very interesting, which you necessarily will if you're on the right path, the work will probably feel less burdensome than a lot of your peers'.\\n\\nThe discoveries are out there, waiting to be made. Why not by you?\\n\\nNotes\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5098c334-acd7-4051-8409-88ae99b130c4'), '85fcc3b5-ead2-41ce-bd52-c45b5555894f': Node(page_content='Notes\\n\\n[1] I don\\'t think you could give a precise definition of what counts as great work. Doing great work means doing something important so well that you expand people\\'s ideas of what\\'s possible. But there\\'s no threshold for importance. It\\'s a matter of degree, and often hard to judge at the time anyway. So I\\'d rather people focused on developing their interests rather than worrying about whether they\\'re important or not. Just try to do something amazing, and leave it to future generations to say if you succeeded.\\n\\n[2] A lot of standup comedy is based on noticing anomalies in everyday life. \"Did you ever notice...?\" New ideas come from doing this about nontrivial things. Which may help explain why people\\'s reaction to a new idea is often the first half of laughing: Ha!\\n\\n[3] That second qualifier is critical. If you\\'re excited about something most authorities discount, but you can\\'t give a more precise explanation than \"they don\\'t get it,\" then you\\'re starting to drift into the territory of cranks.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='85fcc3b5-ead2-41ce-bd52-c45b5555894f'), '2e5f7714-e0a8-4be5-ab6f-433a316b1c41': Node(page_content=\"[4] Finding something to work on is not simply a matter of finding a match between the current version of you and a list of known problems. You'll often have to coevolve with the problem. That's why it can sometimes be so hard to figure out what to work on. The search space is huge. It's the cartesian product of all possible types of work, both known and yet to be discovered, and all possible future versions of you.\\n\\nThere's no way you could search this whole space, so you have to rely on heuristics to generate promising paths through it and hope the best matches will be clustered. Which they will not always be; different types of work have been collected together as much by accidents of history as by the intrinsic similarities between them.\\n\\n[5] There are many reasons curious people are more likely to do great work, but one of the more subtle is that, by casting a wide net, they're more likely to find the right thing to work on in the first place.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2e5f7714-e0a8-4be5-ab6f-433a316b1c41'), 'f43e912a-048c-44f0-8a64-9b58b1fa4f58': Node(page_content=\"[6] It can also be dangerous to make things for an audience you feel is less sophisticated than you, if that causes you to talk down to them. You can make a lot of money doing that, if you do it in a sufficiently cynical way, but it's not the route to great work. Not that anyone using this m.o. would care.\\n\\n[7] This idea I learned from Hardy's A Mathematician's Apology, which I recommend to anyone ambitious to do great work, in any field.\\n\\n[8] Just as we overestimate what we can do in a day and underestimate what we can do over several years, we overestimate the damage done by procrastinating for a day and underestimate the damage done by procrastinating for several years.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f43e912a-048c-44f0-8a64-9b58b1fa4f58'), 'af0eafcf-c1b7-46cd-b1b2-223f4aed0984': Node(page_content=\"[9] You can't usually get paid for doing exactly what you want, especially early on. There are two options: get paid for doing work close to what you want and hope to push it closer, or get paid for doing something else entirely and do your own projects on the side. Both can work, but both have drawbacks: in the first approach your work is compromised by default, and in the second you have to fight to get time to do it.\\n\\n[10] If you set your life up right, it will deliver the focus-relax cycle automatically. The perfect setup is an office you work in and that you walk to and from.\\n\\n[11] There may be some very unworldly people who do great work without consciously trying to. If you want to expand this rule to cover that case, it becomes: Don't try to be anything except the best.\\n\\n[12] This gets more complicated in work like acting, where the goal is to adopt a fake persona. But even here it's possible to be affected. Perhaps the rule in such fields should be to avoid unintentional affectation.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='af0eafcf-c1b7-46cd-b1b2-223f4aed0984'), '6afc67d5-0fd7-48a8-829f-201370a6be57': Node(page_content='[13] It\\'s safe to have beliefs that you treat as unquestionable if and only if they\\'re also unfalsifiable. For example, it\\'s safe to have the principle that everyone should be treated equally under the law, because a sentence with a \"should\" in it isn\\'t really a statement about the world and is therefore hard to disprove. And if there\\'s no evidence that could disprove one of your principles, there can\\'t be any facts you\\'d need to ignore in order to preserve it.\\n\\n[14] Affectation is easier to cure than intellectual dishonesty. Affectation is often a shortcoming of the young that burns off in time, while intellectual dishonesty is more of a character flaw.\\n\\n[15] Obviously you don\\'t have to be working at the exact moment you have the idea, but you\\'ll probably have been working fairly recently.\\n\\n[16] Some say psychoactive drugs have a similar effect. I\\'m skeptical, but also almost totally ignorant of their effects.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6afc67d5-0fd7-48a8-829f-201370a6be57'), '875a91c1-a9d8-4c9b-a094-4e865ec91c81': Node(page_content=\"[17] For example you might give the nth most important topic (m-1)/m^n of your attention, for some m > 1. You couldn't allocate your attention so precisely, of course, but this at least gives an idea of a reasonable distribution.\\n\\n[18] The principles defining a religion have to be mistaken. Otherwise anyone might adopt them, and there would be nothing to distinguish the adherents of the religion from everyone else.\\n\\n[19] It might be a good exercise to try writing down a list of questions you wondered about in your youth. You might find you're now in a position to do something about some of them.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='875a91c1-a9d8-4c9b-a094-4e865ec91c81'), '9dc1d1d4-e75c-4e42-9567-9d7f2e048319': Node(page_content='[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they\\'re generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling\\'s \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you\\'re wasting time is to ask if you\\'re producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don\\'t.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dc1d1d4-e75c-4e42-9567-9d7f2e048319', wins=1), 'e2cbfecc-dc00-438a-ab59-b82bfd683a65': Node(page_content=\"[24] Another related advantage is that if you haven't said anything publicly yet, you won't be biased toward evidence that supports your earlier conclusions. With sufficient integrity you could achieve eternal youth in this respect, but few manage to. For most people, having previously published opinions has an effect similar to ideology, just in quantity 1.\\n\\n[25] In the early 1630s Daniel Mytens made a painting of Henrietta Maria handing a laurel wreath to Charles I. Van Dyck then painted his own version to show how much better he was.\\n\\n[26] I'm being deliberately vague about what a place is. As of this writing, being in the same physical place has advantages that are hard to duplicate, but that could change.\\n\\n[27] This is false when the work the other people have to do is very constrained, as with SETI@home or Bitcoin. It may be possible to expand the area in which it's false by defining similarly restricted protocols with more freedom of action in the nodes.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2cbfecc-dc00-438a-ab59-b82bfd683a65'), 'd64ee58e-fa36-495b-8ef7-df70c6375e80': Node(page_content='[28] Corollary: Building something that enables people to go around intermediaries and engage directly with their audience is probably a good idea.\\n\\n[29] It may be helpful always to walk or run the same route, because that frees attention for thinking. It feels that way to me, and there is some historical evidence for it.\\n\\nThanks to Trevor Blackwell, Daniel Gackle, Pam Graham, Tom Howard, Patrick Hsu, Steve Huffman, Jessica Livingston, Henry Lloyd-Baker, Bob Metcalfe, Ben Miller, Robert Morris, Michael Nielsen, Courtenay Pipkin, Joris Poort, Mieke Roos, Rajat Suri, Harj Taggar, Garry Tan, and my younger son for suggestions and for reading drafts.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='d64ee58e-fa36-495b-8ef7-df70c6375e80'), '8941624d-30a5-4c1f-936b-72b3c0e8feb1': Node(page_content='What I Worked On\\n\\nFebruary 2021\\n\\nBefore college the two main things I worked on, outside of school, were writing and programming. I didn\\'t write essays. I wrote what beginning writers were supposed to write then, and probably still are: short stories. My stories were awful. They had hardly any plot, just characters with strong feelings, which I imagined made them deep.\\n\\nThe first programs I tried writing were on the IBM 1401 that our school district used for what was then called \"data processing.\" This was in 9th grade, so I was 13 or 14. The school district\\'s 1401 happened to be in the basement of our junior high school, and my friend Rich Draves and I got permission to use it. It was like a mini Bond villain\\'s lair down there, with all these alien-looking machines — CPU, disk drives, printer, card reader — sitting up on a raised floor under bright fluorescent lights.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8941624d-30a5-4c1f-936b-72b3c0e8feb1', wins=1), '2ddb6920-17bc-405e-9cbe-5b2852d92feb': Node(page_content='The language we used was an early version of Fortran. You had to type programs on punch cards, then stack them in the card reader and press a button to load the program into memory and run it. The result would ordinarily be to print something on the spectacularly loud printer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2ddb6920-17bc-405e-9cbe-5b2852d92feb'), '2cae8c4f-333e-4615-8808-6e9ab6f79097': Node(page_content=\"I was puzzled by the 1401. I couldn't figure out what to do with it. And in retrospect there's not much I could have done with it. The only form of input to programs was data stored on punched cards, and I didn't have any data stored on punched cards. The only other option was to do things that didn't rely on any input, like calculate approximations of pi, but I didn't know enough math to do anything interesting of that type. So I'm not surprised I can't remember any programs I wrote, because they can't have done much. My clearest memory is of the moment I learned it was possible for programs not to terminate, when one of mine didn't. On a machine without time-sharing, this was a social as well as a technical error, as the data center manager's expression made clear.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2cae8c4f-333e-4615-8808-6e9ab6f79097', wins=1), 'd0f65811-4213-4ff8-bf54-07ee86007f73': Node(page_content='With microcomputers, everything changed. Now you could have a computer sitting right in front of you, on a desk, that could respond to your keystrokes as it was running instead of just churning through a stack of punch cards and then stopping. [1]\\n\\nThe first of my friends to get a microcomputer built it himself. It was sold as a kit by Heathkit. I remember vividly how impressed and envious I felt watching him sitting in front of it, typing programs right into the computer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d0f65811-4213-4ff8-bf54-07ee86007f73'), '0cc36135-748a-47b8-9a05-cf6d0a8ea13b': Node(page_content=\"Computers were expensive in those days and it took me years of nagging before I convinced my father to buy one, a TRS-80, in about 1980. The gold standard then was the Apple II, but a TRS-80 was good enough. This was when I really started programming. I wrote simple games, a program to predict how high my model rockets would fly, and a word processor that my father used to write at least one book. There was only room in memory for about 2 pages of text, so he'd write 2 pages at a time and then print them out, but it was a lot better than a typewriter.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0cc36135-748a-47b8-9a05-cf6d0a8ea13b', wins=1), '8ced309b-74f2-4240-917b-e28b30dc433b': Node(page_content=\"Though I liked programming, I didn't plan to study it in college. In college I was going to study philosophy, which sounded much more powerful. It seemed, to my naive high school self, to be the study of the ultimate truths, compared to which the things studied in other fields would be mere domain knowledge. What I discovered when I got to college was that the other fields took up so much of the space of ideas that there wasn't much left for these supposed ultimate truths. All that seemed left for philosophy were edge cases that people in other fields felt could safely be ignored.\\n\\nI couldn't have put this into words when I was 18. All I knew at the time was that I kept taking philosophy courses and they kept being boring. So I decided to switch to AI.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8ced309b-74f2-4240-917b-e28b30dc433b'), '01436d32-d282-4de9-9b73-7faec7d1b772': Node(page_content=\"AI was in the air in the mid 1980s, but there were two things especially that made me want to work on it: a novel by Heinlein called The Moon is a Harsh Mistress, which featured an intelligent computer called Mike, and a PBS documentary that showed Terry Winograd using SHRDLU. I haven't tried rereading The Moon is a Harsh Mistress, so I don't know how well it has aged, but when I read it I was drawn entirely into its world. It seemed only a matter of time before we'd have Mike, and when I saw Winograd using SHRDLU, it seemed like that time would be a few years at most. All you had to do was teach SHRDLU more words.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01436d32-d282-4de9-9b73-7faec7d1b772'), 'c7dd7bbf-08ac-408f-b975-8274b58b91ca': Node(page_content=\"There weren't any classes in AI at Cornell then, not even graduate classes, so I started trying to teach myself. Which meant learning Lisp, since in those days Lisp was regarded as the language of AI. The commonly used programming languages then were pretty primitive, and programmers' ideas correspondingly so. The default language at Cornell was a Pascal-like language called PL/I, and the situation was similar elsewhere. Learning Lisp expanded my concept of a program so fast that it was years before I started to have a sense of where the new limits were. This was more like it; this was what I had expected college to do. It wasn't happening in a class, like it was supposed to, but that was ok. For the next couple years I was on a roll. I knew what I was going to do.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c7dd7bbf-08ac-408f-b975-8274b58b91ca'), 'd7d640a0-9b5e-4e18-a7fe-7655b8ae5979': Node(page_content='For my undergraduate thesis, I reverse-engineered SHRDLU. My God did I love working on that program. It was a pleasing bit of code, but what made it even more exciting was my belief — hard to imagine now, but not unique in 1985 — that it was already climbing the lower slopes of intelligence.\\n\\nI had gotten into a program at Cornell that didn\\'t make you choose a major. You could take whatever classes you liked, and choose whatever you liked to put on your degree. I of course chose \"Artificial Intelligence.\" When I got the actual physical diploma, I was dismayed to find that the quotes had been included, which made them read as scare-quotes. At the time this bothered me, but now it seems amusingly accurate, for reasons I was about to discover.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d7d640a0-9b5e-4e18-a7fe-7655b8ae5979'), '90c72e6c-8c79-4feb-86ae-f8f685cf5e7c': Node(page_content='I applied to 3 grad schools: MIT and Yale, which were renowned for AI at the time, and Harvard, which I\\'d visited because Rich Draves went there, and was also home to Bill Woods, who\\'d invented the type of parser I used in my SHRDLU clone. Only Harvard accepted me, so that was where I went.\\n\\nI don\\'t remember the moment it happened, or if there even was a specific moment, but during the first year of grad school I realized that AI, as practiced at the time, was a hoax. By which I mean the sort of AI in which a program that\\'s told \"the dog is sitting on the chair\" translates this into some formal representation and adds it to the list of things it knows.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='90c72e6c-8c79-4feb-86ae-f8f685cf5e7c'), 'd5b018a6-f262-4758-b059-4da34cd51a58': Node(page_content=\"What these programs really showed was that there's a subset of natural language that's a formal language. But a very proper subset. It was clear that there was an unbridgeable gap between what they could do and actually understanding natural language. It was not, in fact, simply a matter of teaching SHRDLU more words. That whole way of doing AI, with explicit data structures representing concepts, was not going to work. Its brokenness did, as so often happens, generate a lot of opportunities to write papers about various band-aids that could be applied to it, but it was never going to get us Mike.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d5b018a6-f262-4758-b059-4da34cd51a58'), 'd52b4a20-0c6f-455d-9362-e99f3f87f0b4': Node(page_content=\"So I looked around to see what I could salvage from the wreckage of my plans, and there was Lisp. I knew from experience that Lisp was interesting for its own sake and not just for its association with AI, even though that was the main reason people cared about it at the time. So I decided to focus on Lisp. In fact, I decided to write a book about Lisp hacking. It's scary to think how little I knew about Lisp hacking when I started writing that book. But there's nothing like writing a book about something to help you learn it. The book, On Lisp, wasn't published till 1993, but I wrote much of it in grad school.\\n\\nComputer Science is an uneasy alliance between two halves, theory and systems. The theory people prove things, and the systems people build things. I wanted to build things. I had plenty of respect for theory — indeed, a sneaking suspicion that it was the more admirable of the two halves — but building things seemed so much more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d52b4a20-0c6f-455d-9362-e99f3f87f0b4'), 'a7e3201d-8d1c-4f50-87cc-0674b17ce7c8': Node(page_content=\"The problem with systems work, though, was that it didn't last. Any program you wrote today, no matter how good, would be obsolete in a couple decades at best. People might mention your software in footnotes, but no one would actually use it. And indeed, it would seem very feeble work. Only people with a sense of the history of the field would even realize that, in its time, it had been good.\\n\\nThere were some surplus Xerox Dandelions floating around the computer lab at one point. Anyone who wanted one to play around with could have one. I was briefly tempted, but they were so slow by present standards; what was the point? No one else wanted one either, so off they went. That was what happened to systems work.\\n\\nI wanted not just to build things, but to build things that would last.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a7e3201d-8d1c-4f50-87cc-0674b17ce7c8'), '88ce0eef-afcd-4066-b99a-ab84ade3eb18': Node(page_content=\"In this dissatisfied state I went in 1988 to visit Rich Draves at CMU, where he was in grad school. One day I went to visit the Carnegie Institute, where I'd spent a lot of time as a kid. While looking at a painting there I realized something that might seem obvious, but was a big surprise to me. There, right on the wall, was something you could make that would last. Paintings didn't become obsolete. Some of the best ones were hundreds of years old.\\n\\nAnd moreover this was something you could make a living doing. Not as easily as you could by writing software, of course, but I thought if you were really industrious and lived really cheaply, it had to be possible to make enough to survive. And as an artist you could be truly independent. You wouldn't have a boss, or even need to get research funding.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='88ce0eef-afcd-4066-b99a-ab84ade3eb18'), '9f8eaf30-eedb-4747-97bb-c5c699392270': Node(page_content=\"I had always liked looking at paintings. Could I make them? I had no idea. I'd never imagined it was even possible. I knew intellectually that people made art — that it didn't just appear spontaneously — but it was as if the people who made it were a different species. They either lived long ago or were mysterious geniuses doing strange things in profiles in Life magazine. The idea of actually being able to make art, to put that verb before that noun, seemed almost miraculous.\\n\\nThat fall I started taking art classes at Harvard. Grad students could take classes in any department, and my advisor, Tom Cheatham, was very easy going. If he even knew about the strange classes I was taking, he never said anything.\\n\\nSo now I was in a PhD program in computer science, yet planning to be an artist, yet also genuinely in love with Lisp hacking and working away at On Lisp. In other words, like many a grad student, I was working energetically on multiple projects that were not my thesis.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f8eaf30-eedb-4747-97bb-c5c699392270'), 'c14d29a3-c37e-4821-ae34-c407c6676ee1': Node(page_content='I didn\\'t see a way out of this situation. I didn\\'t want to drop out of grad school, but how else was I going to get out? I remember when my friend Robert Morris got kicked out of Cornell for writing the internet worm of 1988, I was envious that he\\'d found such a spectacular way to get out of grad school.\\n\\nThen one day in April 1990 a crack appeared in the wall. I ran into professor Cheatham and he asked if I was far enough along to graduate that June. I didn\\'t have a word of my dissertation written, but in what must have been the quickest bit of thinking in my life, I decided to take a shot at writing one in the 5 weeks or so that remained before the deadline, reusing parts of On Lisp where I could, and I was able to respond, with no perceptible delay \"Yes, I think so. I\\'ll give you something to read in a few days.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c14d29a3-c37e-4821-ae34-c407c6676ee1'), '48b6ee95-ea42-4980-9ad5-1dd6a2062500': Node(page_content=\"I picked applications of continuations as the topic. In retrospect I should have written about macros and embedded languages. There's a whole world there that's barely been explored. But all I wanted was to get out of grad school, and my rapidly written dissertation sufficed, just barely.\\n\\nMeanwhile I was applying to art schools. I applied to two: RISD in the US, and the Accademia di Belli Arti in Florence, which, because it was the oldest art school, I imagined would be good. RISD accepted me, and I never heard back from the Accademia, so off to Providence I went.\\n\\nI'd applied for the BFA program at RISD, which meant in effect that I had to go to college again. This was not as strange as it sounds, because I was only 25, and art schools are full of people of different ages. RISD counted me as a transfer sophomore and said I had to do the foundation that summer. The foundation means the classes that everyone has to take in fundamental subjects like drawing, color, and design.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='48b6ee95-ea42-4980-9ad5-1dd6a2062500'), '92b5cdd8-6d6d-4d9c-9510-48a3096427b8': Node(page_content=\"Toward the end of the summer I got a big surprise: a letter from the Accademia, which had been delayed because they'd sent it to Cambridge England instead of Cambridge Massachusetts, inviting me to take the entrance exam in Florence that fall. This was now only weeks away. My nice landlady let me leave my stuff in her attic. I had some money saved from consulting work I'd done in grad school; there was probably enough to last a year if I lived cheaply. Now all I had to do was learn Italian.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='92b5cdd8-6d6d-4d9c-9510-48a3096427b8'), '01fdd3e3-243a-4e82-9c18-5d7492d029c1': Node(page_content=\"Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01fdd3e3-243a-4e82-9c18-5d7492d029c1', wins=1), '0f488de3-2fec-444b-9cd1-58ffd491a687': Node(page_content=\"I'm only up to age 25 and already there are such conspicuous patterns. Here I was, yet again about to attend some august institution in the hopes of learning about some prestigious subject, and yet again about to be disappointed. The students and faculty in the painting department at the Accademia were the nicest people you could imagine, but they had long since arrived at an arrangement whereby the students wouldn't require the faculty to teach anything, and in return the faculty wouldn't require the students to learn anything. And at the same time all involved would adhere outwardly to the conventions of a 19th century atelier. We actually had one of those little stoves, fed with kindling, that you see in 19th century studio paintings, and a nude model sitting as close to it as possible without getting burned. Except hardly anyone else painted her besides me. The rest of the students spent their time chatting or occasionally trying to imitate things they'd seen in American art magazines.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f488de3-2fec-444b-9cd1-58ffd491a687'), 'e8486722-e708-4b69-a5ef-1469253415c8': Node(page_content=\"Our model turned out to live just down the street from me. She made a living from a combination of modelling and making fakes for a local antique dealer. She'd copy an obscure old painting out of a book, and then he'd take the copy and maltreat it to make it look old. [3]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e8486722-e708-4b69-a5ef-1469253415c8'), 'c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee': Node(page_content=\"While I was a student at the Accademia I started painting still lives in my bedroom at night. These paintings were tiny, because the room was, and because I painted them on leftover scraps of canvas, which was all I could afford at the time. Painting still lives is different from painting people, because the subject, as its name suggests, can't move. People can't sit for more than about 15 minutes at a time, and when they do they don't sit very still. So the traditional m.o. for painting people is to know how to paint a generic person, which you then modify to match the specific person you're painting. Whereas a still life you can, if you want, copy pixel by pixel from what you're seeing. You don't want to stop there, of course, or you get merely photographic accuracy, and what makes a still life interesting is that it's been through a head. You want to emphasize the visual cues that tell you, for example, that the reason the color changes suddenly at a certain point is that it's the edge of an object. By\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee', wins=1), '00ad760e-6fbb-43ca-a51c-519425b2aaff': Node(page_content='of an object. By subtly emphasizing such things you can make paintings that are more realistic than photographs not just in some metaphorical sense, but in the strict information-theoretic sense. [4]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='00ad760e-6fbb-43ca-a51c-519425b2aaff'), 'f7f0e91c-4312-46dc-b4d1-ff380e0f7227': Node(page_content='I liked painting still lives because I was curious about what I was seeing. In everyday life, we aren\\'t consciously aware of much we\\'re seeing. Most visual perception is handled by low-level processes that merely tell your brain \"that\\'s a water droplet\" without telling you details like where the lightest and darkest points are, or \"that\\'s a bush\" without telling you the shape and position of every leaf. This is a feature of brains, not a bug. In everyday life it would be distracting to notice every leaf on every bush. But when you have to paint something, you have to look more closely, and when you do there\\'s a lot to see. You can still be noticing new things after days of trying to paint something people usually take for granted, just as you can after days of trying to write an essay about something people usually take for granted.\\n\\nThis is not the only way to paint. I\\'m not 100% sure it\\'s even a good way to paint. But it seemed a good enough bet to be worth trying.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f7f0e91c-4312-46dc-b4d1-ff380e0f7227'), '395264d3-3625-46d0-8636-110e597f48b7': Node(page_content=\"Our teacher, professor Ulivi, was a nice guy. He could see I worked hard, and gave me a good grade, which he wrote down in a sort of passport each student had. But the Accademia wasn't teaching me anything except Italian, and my money was running out, so at the end of the first year I went back to the US.\\n\\nI wanted to go back to RISD, but I was now broke and RISD was very expensive, so I decided to get a job for a year and then return to RISD the next fall. I got one at a company called Interleaf, which made software for creating documents. You mean like Microsoft Word? Exactly. That was how I learned that low end software tends to eat high end software. But Interleaf still had a few years to live yet. [5]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='395264d3-3625-46d0-8636-110e597f48b7'), '32082230-290a-46db-a914-19f705defd46': Node(page_content=\"Interleaf had done something pretty bold. Inspired by Emacs, they'd added a scripting language, and even made the scripting language a dialect of Lisp. Now they wanted a Lisp hacker to write things in it. This was the closest thing I've had to a normal job, and I hereby apologize to my boss and coworkers, because I was a bad employee. Their Lisp was the thinnest icing on a giant C cake, and since I didn't know C and didn't want to learn it, I never understood most of the software. Plus I was terribly irresponsible. This was back when a programming job meant showing up every day during certain working hours. That seemed unnatural to me, and on this point the rest of the world is coming around to my way of thinking, but at the time it caused a lot of friction. Toward the end of the year I spent much of my time surreptitiously working on On Lisp, which I had by this time gotten a contract to publish.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='32082230-290a-46db-a914-19f705defd46'), 'b102bff3-51da-44e2-9679-ed6445de3808': Node(page_content='The good part was that I got paid huge amounts of money, especially by art student standards. In Florence, after paying my part of the rent, my budget for everything else had been $7 a day. Now I was getting paid more than 4 times that every hour, even when I was just sitting in a meeting. By living cheaply I not only managed to save enough to go back to RISD, but also paid off my college loans.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='b102bff3-51da-44e2-9679-ed6445de3808'), '17ed5227-f4f7-4c2b-a28e-4265a141653e': Node(page_content=\"I learned some useful things at Interleaf, though they were mostly about what not to do. I learned that it's better for technology companies to be run by product people than sales people (though sales is a real skill and people who are good at it are really good at it), that it leads to bugs when code is edited by too many people, that cheap office space is no bargain if it's depressing, that planned meetings are inferior to corridor conversations, that big, bureaucratic customers are a dangerous source of money, and that there's not much overlap between conventional office hours and the optimal time for hacking, or conventional offices and the optimal place for it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='17ed5227-f4f7-4c2b-a28e-4265a141653e'), '03c17beb-1dbd-4c5a-9445-4d4f0c57379f': Node(page_content='But the most important thing I learned, and which I used in both Viaweb and Y Combinator, is that the low end eats the high end: that it\\'s good to be the \"entry level\" option, even though that will be less prestigious, because if you\\'re not, someone else will be, and will squash you against the ceiling. Which in turn means that prestige is a danger sign.\\n\\nWhen I left to go back to RISD the next fall, I arranged to do freelance work for the group that did projects for customers, and this was how I survived for the next several years. When I came back to visit for a project later on, someone told me about a new thing called HTML, which was, as he described it, a derivative of SGML. Markup language enthusiasts were an occupational hazard at Interleaf and I ignored him, but this HTML thing later became a big part of my life.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='03c17beb-1dbd-4c5a-9445-4d4f0c57379f'), 'ad27e028-f220-4b7e-a914-a2c67860e511': Node(page_content='In the fall of 1992 I moved back to Providence to continue at RISD. The foundation had merely been intro stuff, and the Accademia had been a (very civilized) joke. Now I was going to see what real art school was like. But alas it was more like the Accademia than not. Better organized, certainly, and a lot more expensive, but it was now becoming clear that art school did not bear the same relationship to art that medical school bore to medicine. At least not the painting department. The textile department, which my next door neighbor belonged to, seemed to be pretty rigorous. No doubt illustration and architecture were too. But painting was post-rigorous. Painting students were supposed to express themselves, which to the more worldly ones meant to try to cook up some sort of distinctive signature style.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad27e028-f220-4b7e-a914-a2c67860e511'), 'd996dddb-ee2a-4347-b6ff-0adf7c382d19': Node(page_content='A signature style is the visual equivalent of what in show business is known as a \"schtick\": something that immediately identifies the work as yours and no one else\\'s. For example, when you see a painting that looks like a certain kind of cartoon, you know it\\'s by Roy Lichtenstein. So if you see a big painting of this type hanging in the apartment of a hedge fund manager, you know he paid millions of dollars for it. That\\'s not always why artists have a signature style, but it\\'s usually why buyers pay a lot for such work. [6]\\n\\nThere were plenty of earnest students too: kids who \"could draw\" in high school, and now had come to what was supposed to be the best art school in the country, to learn to draw even better. They tended to be confused and demoralized by what they found at RISD, but they kept going, because painting was what they did. I was not one of the kids who could draw in high school, but at RISD I was definitely closer to their tribe than the tribe of signature style seekers.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d996dddb-ee2a-4347-b6ff-0adf7c382d19'), 'e6849fc6-388f-4476-905f-c07b44d846ff': Node(page_content=\"I learned a lot in the color class I took at RISD, but otherwise I was basically teaching myself to paint, and I could do that for free. So in 1993 I dropped out. I hung around Providence for a bit, and then my college friend Nancy Parmet did me a big favor. A rent-controlled apartment in a building her mother owned in New York was becoming vacant. Did I want it? It wasn't much more than my current place, and New York was supposed to be where the artists were. So yes, I wanted it! [7]\\n\\nAsterix comics begin by zooming in on a tiny corner of Roman Gaul that turns out not to be controlled by the Romans. You can do something similar on a map of New York City: if you zoom in on the Upper East Side, there's a tiny corner that's not rich, or at least wasn't in 1993. It's called Yorkville, and that was my new home. Now I was a New York artist — in the strictly technical sense of making paintings and living in New York.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6849fc6-388f-4476-905f-c07b44d846ff'), 'dd3809f5-9bbd-440d-b993-2b25e729584d': Node(page_content=\"I was nervous about money, because I could sense that Interleaf was on the way down. Freelance Lisp hacking work was very rare, and I didn't want to have to program in another language, which in those days would have meant C++ if I was lucky. So with my unerring nose for financial opportunity, I decided to write another book on Lisp. This would be a popular book, the sort of book that could be used as a textbook. I imagined myself living frugally off the royalties and spending all my time painting. (The painting on the cover of this book, ANSI Common Lisp, is one that I painted around this time.)\\n\\nThe best thing about New York for me was the presence of Idelle and Julian Weber. Idelle Weber was a painter, one of the early photorealists, and I'd taken her painting class at Harvard. I've never known a teacher more beloved by her students. Large numbers of former students kept in touch with her, including me. After I moved to New York I became her de facto studio assistant.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='dd3809f5-9bbd-440d-b993-2b25e729584d'), '6097a0d7-807d-4820-9ecd-7e8e373cc23d': Node(page_content=\"She liked to paint on big, square canvases, 4 to 5 feet on a side. One day in late 1994 as I was stretching one of these monsters there was something on the radio about a famous fund manager. He wasn't that much older than me, and was super rich. The thought suddenly occurred to me: why don't I become rich? Then I'll be able to work on whatever I want.\\n\\nMeanwhile I'd been hearing more and more about this new thing called the World Wide Web. Robert Morris showed it to me when I visited him in Cambridge, where he was now in grad school at Harvard. It seemed to me that the web would be a big deal. I'd seen what graphical user interfaces had done for the popularity of microcomputers. It seemed like the web would do the same for the internet.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6097a0d7-807d-4820-9ecd-7e8e373cc23d'), '8821373c-c593-4754-bce4-07fdf2b9bed1': Node(page_content=\"If I wanted to get rich, here was the next train leaving the station. I was right about that part. What I got wrong was the idea. I decided we should start a company to put art galleries online. I can't honestly say, after reading so many Y Combinator applications, that this was the worst startup idea ever, but it was up there. Art galleries didn't want to be online, and still don't, not the fancy ones. That's not how they sell. I wrote some software to generate web sites for galleries, and Robert wrote some to resize images and set up an http server to serve the pages. Then we tried to sign up galleries. To call this a difficult sale would be an understatement. It was difficult to give away. A few galleries let us make sites for them for free, but none paid us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8821373c-c593-4754-bce4-07fdf2b9bed1'), '5190c08b-1add-44df-a89c-71da5b21a81f': Node(page_content='Then some online stores started to appear, and I realized that except for the order buttons they were identical to the sites we\\'d been generating for galleries. This impressive-sounding thing called an \"internet storefront\" was something we already knew how to build.\\n\\nSo in the summer of 1995, after I submitted the camera-ready copy of ANSI Common Lisp to the publishers, we started trying to write software to build online stores. At first this was going to be normal desktop software, which in those days meant Windows software. That was an alarming prospect, because neither of us knew how to write Windows software or wanted to learn. We lived in the Unix world. But we decided we\\'d at least try writing a prototype store builder on Unix. Robert wrote a shopping cart, and I wrote a new site generator for stores — in Lisp, of course.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5190c08b-1add-44df-a89c-71da5b21a81f'), '0c153247-5ff8-48f7-bd31-5139f0fc7302': Node(page_content=\"We were working out of Robert's apartment in Cambridge. His roommate was away for big chunks of time, during which I got to sleep in his room. For some reason there was no bed frame or sheets, just a mattress on the floor. One morning as I was lying on this mattress I had an idea that made me sit up like a capital L. What if we ran the software on the server, and let users control it by clicking on links? Then we'd never have to write anything to run on users' computers. We could generate the sites on the same server we'd serve them from. Users wouldn't need anything more than a browser.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0c153247-5ff8-48f7-bd31-5139f0fc7302'), '4ed7e80d-dc07-49eb-8d99-cb33fb56d042': Node(page_content=\"This kind of software, known as a web app, is common now, but at the time it wasn't clear that it was even possible. To find out, we decided to try making a version of our store builder that you could control through the browser. A couple days later, on August 12, we had one that worked. The UI was horrible, but it proved you could build a whole store through the browser, without any client software or typing anything into the command line on the server.\\n\\nNow we felt like we were really onto something. I had visions of a whole new generation of software working this way. You wouldn't need versions, or ports, or any of that crap. At Interleaf there had been a whole group called Release Engineering that seemed to be at least as big as the group that actually wrote the software. Now you could just update the software right on the server.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='4ed7e80d-dc07-49eb-8d99-cb33fb56d042'), '1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e': Node(page_content=\"We started a new company we called Viaweb, after the fact that our software worked via the web, and we got $10,000 in seed funding from Idelle's husband Julian. In return for that and doing the initial legal work and giving us business advice, we gave him 10% of the company. Ten years later this deal became the model for Y Combinator's. We knew founders needed something like this, because we'd needed it ourselves.\\n\\nAt this stage I had a negative net worth, because the thousand dollars or so I had in the bank was more than counterbalanced by what I owed the government in taxes. (Had I diligently set aside the proper proportion of the money I'd made consulting for Interleaf? No, I had not.) So although Robert had his graduate student stipend, I needed that seed funding to live on.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e', wins=1), '1f39257d-0248-4959-b47d-f2447a171058': Node(page_content=\"We originally hoped to launch in September, but we got more ambitious about the software as we worked on it. Eventually we managed to build a WYSIWYG site builder, in the sense that as you were creating pages, they looked exactly like the static ones that would be generated later, except that instead of leading to static pages, the links all referred to closures stored in a hash table on the server.\\n\\nIt helped to have studied art, because the main goal of an online store builder is to make users look legit, and the key to looking legit is high production values. If you get page layouts and fonts and colors right, you can make a guy running a store out of his bedroom look more legit than a big company.\\n\\n(If you're curious why my site looks so old-fashioned, it's because it's still made with this software. It may look clunky today, but in 1996 it was the last word in slick.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1f39257d-0248-4959-b47d-f2447a171058'), 'a5d7623b-6552-4ca9-a712-8cb0986696fe': Node(page_content='In September, Robert rebelled. \"We\\'ve been working on this for a month,\" he said, \"and it\\'s still not done.\" This is funny in retrospect, because he would still be working on it almost 3 years later. But I decided it might be prudent to recruit more programmers, and I asked Robert who else in grad school with him was really good. He recommended Trevor Blackwell, which surprised me at first, because at that point I knew Trevor mainly for his plan to reduce everything in his life to a stack of notecards, which he carried around with him. But Rtm was right, as usual. Trevor turned out to be a frighteningly effective hacker.\\n\\nIt was a lot of fun working with Robert and Trevor. They\\'re the two most independent-minded people I know, and in completely different ways. If you could see inside Rtm\\'s brain it would look like a colonial New England church, and if you could see inside Trevor\\'s it would look like the worst excesses of Austrian Rococo.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a5d7623b-6552-4ca9-a712-8cb0986696fe'), '6e31fe4b-e85c-4ad7-a092-be367364b972': Node(page_content=\"We opened for business, with 6 stores, in January 1996. It was just as well we waited a few months, because although we worried we were late, we were actually almost fatally early. There was a lot of talk in the press then about ecommerce, but not many people actually wanted online stores. [8]\\n\\nThere were three main parts to the software: the editor, which people used to build sites and which I wrote, the shopping cart, which Robert wrote, and the manager, which kept track of orders and statistics, and which Trevor wrote. In its time, the editor was one of the best general-purpose site builders. I kept the code tight and didn't have to integrate with any other software except Robert's and Trevor's, so it was quite fun to work on. If all I'd had to do was work on this software, the next 3 years would have been the easiest of my life. Unfortunately I had to do a lot more, all of it stuff I was worse at than programming, and the next 3 years were instead the most stressful.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6e31fe4b-e85c-4ad7-a092-be367364b972', wins=1), '7a732a06-6878-41be-9947-1c07a23ea4a7': Node(page_content=\"There were a lot of startups making ecommerce software in the second half of the 90s. We were determined to be the Microsoft Word, not the Interleaf. Which meant being easy to use and inexpensive. It was lucky for us that we were poor, because that caused us to make Viaweb even more inexpensive than we realized. We charged $100 a month for a small store and $300 a month for a big one. This low price was a big attraction, and a constant thorn in the sides of competitors, but it wasn't because of some clever insight that we set the price low. We had no idea what businesses paid for things. $300 a month seemed like a lot of money to us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7a732a06-6878-41be-9947-1c07a23ea4a7'), '9f865fd1-57c6-4f67-ac9d-4f0d17bd751b': Node(page_content='We did a lot of things right by accident like that. For example, we did what\\'s now called \"doing things that don\\'t scale,\" although at the time we would have described it as \"being so lame that we\\'re driven to the most desperate measures to get users.\" The most common of which was building stores for them. This seemed particularly humiliating, since the whole raison d\\'etre of our software was that people could use it to make their own stores. But anything to get users.\\n\\nWe learned a lot more about retail than we wanted to know. For example, that if you could only have a small image of a man\\'s shirt (and all images were small then by present standards), it was better to have a closeup of the collar than a picture of the whole shirt. The reason I remember learning this was that it meant I had to rescan about 30 images of men\\'s shirts. My first set of scans were so beautiful too.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f865fd1-57c6-4f67-ac9d-4f0d17bd751b'), '0df392b3-eb59-4359-b340-6e211caa3aae': Node(page_content='Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we\\'d have so many users that I couldn\\'t scan their images for them, but in the meantime there was nothing more important to do.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0df392b3-eb59-4359-b340-6e211caa3aae', wins=1), 'd57da0e4-fee3-4442-aa88-7c461dc9c4b4': Node(page_content=\"Another thing I didn't get at the time is that growth rate is the ultimate test of a startup. Our growth rate was fine. We had about 70 stores at the end of 1996 and about 500 at the end of 1997. I mistakenly thought the thing that mattered was the absolute number of users. And that is the thing that matters in the sense that that's how much money you're making, and if you're not making enough, you might go out of business. But in the long term the growth rate takes care of the absolute number. If we'd been a startup I was advising at Y Combinator, I would have said: Stop being so stressed out, because you're doing fine. You're growing 7x a year. Just don't hire too many more people and you'll soon be profitable, and then you'll control your own destiny.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d57da0e4-fee3-4442-aa88-7c461dc9c4b4', wins=1), '9bc68607-b275-4e2e-877a-8b9f23e349c2': Node(page_content=\"Alas I hired lots more people, partly because our investors wanted me to, and partly because that's what startups did during the Internet Bubble. A company with just a handful of employees would have seemed amateurish. So we didn't reach breakeven until about when Yahoo bought us in the summer of 1998. Which in turn meant we were at the mercy of investors for the entire life of the company. And since both we and our investors were noobs at startups, the result was a mess even by startup standards.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9bc68607-b275-4e2e-877a-8b9f23e349c2'), '5d19d396-aa70-4bf0-992e-069c632de8ad': Node(page_content=\"It was a huge relief when Yahoo bought us. In principle our Viaweb stock was valuable. It was a share in a business that was profitable and growing rapidly. But it didn't feel very valuable to me; I had no idea how to value a business, but I was all too keenly aware of the near-death experiences we seemed to have every few months. Nor had I changed my grad student lifestyle significantly since we started. So when Yahoo bought us it felt like going from rags to riches. Since we were going to California, I bought a car, a yellow 1998 VW GTI. I remember thinking that its leather seats alone were by far the most luxurious thing I owned.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5d19d396-aa70-4bf0-992e-069c632de8ad'), '56272a9f-8b83-4b82-a1a2-598765c2b068': Node(page_content=\"The next year, from the summer of 1998 to the summer of 1999, must have been the least productive of my life. I didn't realize it at the time, but I was worn out from the effort and stress of running Viaweb. For a while after I got to California I tried to continue my usual m.o. of programming till 3 in the morning, but fatigue combined with Yahoo's prematurely aged culture and grim cube farm in Santa Clara gradually dragged me down. After a few months it felt disconcertingly like working at Interleaf.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='56272a9f-8b83-4b82-a1a2-598765c2b068'), 'fd511710-4a0b-4af9-834f-8c2d984a6dd0': Node(page_content=\"Yahoo had given us a lot of options when they bought us. At the time I thought Yahoo was so overvalued that they'd never be worth anything, but to my astonishment the stock went up 5x in the next year. I hung on till the first chunk of options vested, then in the summer of 1999 I left. It had been so long since I'd painted anything that I'd half forgotten why I was doing this. My brain had been entirely full of software and men's shirts for 4 years. But I had done this to get rich so I could paint, I reminded myself, and now I was rich, so I should go paint.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='fd511710-4a0b-4af9-834f-8c2d984a6dd0'), 'e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8': Node(page_content='When I said I was leaving, my boss at Yahoo had a long conversation with me about my plans. I told him all about the kinds of pictures I wanted to paint. At the time I was touched that he took such an interest in me. Now I realize it was because he thought I was lying. My options at that point were worth about $2 million a month. If I was leaving that kind of money on the table, it could only be to go and start some new startup, and if I did, I might take people with me. This was the height of the Internet Bubble, and Yahoo was ground zero of it. My boss was at that moment a billionaire. Leaving then to start a new startup must have seemed to him an insanely, and yet also plausibly, ambitious plan.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8'), '07e153a7-98c9-45f5-9873-0415175e5887': Node(page_content=\"But I really was quitting to paint, and I started immediately. There was no time to lose. I'd already burned 4 years getting rich. Now when I talk to founders who are leaving after selling their companies, my advice is always the same: take a vacation. That's what I should have done, just gone off somewhere and done nothing for a month or two, but the idea never occurred to me.\\n\\nSo I tried to paint, but I just didn't seem to have any energy or ambition. Part of the problem was that I didn't know many people in California. I'd compounded this problem by buying a house up in the Santa Cruz Mountains, with a beautiful view but miles from anywhere. I stuck it out for a few more months, then in desperation I went back to New York, where unless you understand about rent control you'll be surprised to hear I still had my apartment, sealed up like a tomb of my old life. Idelle was in New York at least, and there were other people trying to paint there, even though I didn't know any of them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='07e153a7-98c9-45f5-9873-0415175e5887'), 'e6f53cbc-6f54-4287-ad99-52473f5e3cfa': Node(page_content=\"When I got back to New York I resumed my old life, except now I was rich. It was as weird as it sounds. I resumed all my old patterns, except now there were doors where there hadn't been. Now when I was tired of walking, all I had to do was raise my hand, and (unless it was raining) a taxi would stop to pick me up. Now when I walked past charming little restaurants I could go in and order lunch. It was exciting for a while. Painting started to go better. I experimented with a new kind of still life where I'd paint one painting in the old way, then photograph it and print it, blown up, on canvas, and then use that as the underpainting for a second still life, painted from the same objects (which hopefully hadn't rotted yet).\\n\\nMeanwhile I looked for an apartment to buy. Now I could actually choose what neighborhood to live in. Where, I asked myself and various real estate agents, is the Cambridge of New York? Aided by occasional visits to actual Cambridge, I gradually realized there wasn't one. Huh.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6f53cbc-6f54-4287-ad99-52473f5e3cfa'), '209c154b-eaa4-4d0c-9ee3-9de983548416': Node(page_content='Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='209c154b-eaa4-4d0c-9ee3-9de983548416', wins=1), '725c5f11-2423-4e18-bc97-752009c281de': Node(page_content=\"I got so excited about this idea that I couldn't think about anything else. It seemed obvious that this was the future. I didn't particularly want to start another company, but it was clear that this idea would have to be embodied as one, so I decided to move to Cambridge and start it. I hoped to lure Robert into working on it with me, but there I ran into a hitch. Robert was now a postdoc at MIT, and though he'd made a lot of money the last time I'd lured him into working on one of my schemes, it had also been a huge time sink. So while he agreed that it sounded like a plausible idea, he firmly refused to work on it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='725c5f11-2423-4e18-bc97-752009c281de'), '9b17eb54-1f33-4904-bc1a-b18254f2f85a': Node(page_content='Hmph. Well, I\\'d do it myself then. I recruited Dan Giffin, who had worked for Viaweb, and two undergrads who wanted summer jobs, and we got to work trying to build what it\\'s now clear is about twenty companies and several open source projects worth of software. The language for defining applications would of course be a dialect of Lisp. But I wasn\\'t so naive as to assume I could spring an overt Lisp on a general audience; we\\'d hide the parentheses, like Dylan did.\\n\\nBy then there was a name for the kind of company Viaweb was, an \"application service provider,\" or ASP. This name didn\\'t last long before it was replaced by \"software as a service,\" but it was current for long enough that I named this new company after it: it was going to be called Aspra.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9b17eb54-1f33-4904-bc1a-b18254f2f85a', wins=1), '1185a7b9-b8da-441e-89b1-12b8a81c2502': Node(page_content=\"I started working on the application builder, Dan worked on network infrastructure, and the two undergrads worked on the first two services (images and phone calls). But about halfway through the summer I realized I really didn't want to run a company — especially not a big one, which it was looking like this would have to be. I'd only started Viaweb because I needed the money. Now that I didn't need money anymore, why was I doing this? If this vision had to be realized as a company, then screw the vision. I'd build a subset that could be done as an open source project.\\n\\nMuch to my surprise, the time I spent working on this stuff was not wasted after all. After we started Y Combinator, I would often encounter startups working on parts of this new architecture, and it was very useful to have spent so much time thinking about it and even trying to write some of it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1185a7b9-b8da-441e-89b1-12b8a81c2502', wins=1), '33017a92-fecc-4bf1-ae08-cc414c62cbf7': Node(page_content=\"The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='33017a92-fecc-4bf1-ae08-cc414c62cbf7'), 'a746d02f-1466-434d-addd-04b936502bec': Node(page_content=\"Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a746d02f-1466-434d-addd-04b936502bec', wins=1), 'ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881': Node(page_content=\"In the print era, the channel for publishing essays had been vanishingly small. Except for a few officially anointed thinkers who went to the right parties in New York, the only people allowed to publish essays were specialists writing about their specialties. There were so many essays that had never been written, because there had been no way to publish them. Now they could be, and I was going to write them. [12]\\n\\nI've worked on several different things, but to the extent there was a turning point where I figured out what to work on, it was when I started publishing essays online. From then on I knew that whatever else I did, I'd always write essays too.\\n\\nI knew that online essays would be a marginal medium at first. Socially they'd seem more like rants posted by nutjobs on their GeoCities sites than the genteel and beautifully typeset compositions published in The New Yorker. But by this point I knew enough to find that encouraging instead of discouraging.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881', wins=1), '836f9505-8112-4300-a484-655731655443': Node(page_content=\"One of the most conspicuous patterns I've noticed in my life is how well it has worked, for me at least, to work on things that weren't prestigious. Still life has always been the least prestigious form of painting. Viaweb and Y Combinator both seemed lame when we started them. I still get the glassy eye from strangers when they ask what I'm writing, and I explain that it's an essay I'm going to publish on my web site. Even Lisp, though prestigious intellectually in something like the way Latin is, also seems about as hip.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='836f9505-8112-4300-a484-655731655443', wins=1), 'ad36fb50-0350-45a4-925e-29f0980a9cba': Node(page_content=\"It's not that unprestigious types of work are good per se. But when you find yourself drawn to some kind of work despite its current lack of prestige, it's a sign both that there's something real to be discovered there, and that you have the right kind of motives. Impure motives are a big danger for the ambitious. If anything is going to lead you astray, it will be the desire to impress people. So while working on things that aren't prestigious doesn't guarantee you're on the right track, it at least guarantees you're not on the most common type of wrong one.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad36fb50-0350-45a4-925e-29f0980a9cba', wins=2), '271b9209-34c1-4eb9-a7d4-5c8cb047c3a7': Node(page_content=\"Over the next several years I wrote lots of essays about all kinds of different topics. O'Reilly reprinted a collection of them as a book, called Hackers & Painters after one of the essays in it. I also worked on spam filters, and did some more painting. I used to have dinners for a group of friends every thursday night, which taught me how to cook for groups. And I bought another building in Cambridge, a former candy factory (and later, twas said, porn studio), to use as an office.\\n\\nOne night in October 2003 there was a big party at my house. It was a clever idea of my friend Maria Daniels, who was one of the thursday diners. Three separate hosts would all invite their friends to one party. So for every guest, two thirds of the other guests would be people they didn't know but would probably like. One of the guests was someone I didn't know but would turn out to like a lot: a woman called Jessica Livingston. A couple days later I asked her out.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='271b9209-34c1-4eb9-a7d4-5c8cb047c3a7'), '7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc': Node(page_content='Jessica was in charge of marketing at a Boston investment bank. This bank thought it understood startups, but over the next year, as she met friends of mine from the startup world, she was surprised how different reality was. And how colorful their stories were. So she decided to compile a book of interviews with startup founders.\\n\\nWhen the bank had financial problems and she had to fire half her staff, she started looking for a new job. In early 2005 she interviewed for a marketing job at a Boston VC firm. It took them weeks to make up their minds, and during this time I started telling her about all the things that needed to be fixed about venture capital. They should make a larger number of smaller investments instead of a handful of giant ones, they should be funding younger, more technical founders instead of MBAs, they should let the founders remain as CEO, and so on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc'), 'ce520b00-c87c-4bfe-a179-0fa11c9d5273': Node(page_content=\"One of my tricks for writing essays had always been to give talks. The prospect of having to stand up in front of a group of people and tell them something that won't waste their time is a great spur to the imagination. When the Harvard Computer Society, the undergrad computer club, asked me to give a talk, I decided I would tell them how to start a startup. Maybe they'd be able to avoid the worst of the mistakes we'd made.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce520b00-c87c-4bfe-a179-0fa11c9d5273', wins=1), 'e9a82e89-0d8f-480b-9f26-1acfffaab9a1': Node(page_content='So I gave this talk, in the course of which I told them that the best sources of seed funding were successful startup founders, because then they\\'d be sources of advice too. Whereupon it seemed they were all looking expectantly at me. Horrified at the prospect of having my inbox flooded by business plans (if I\\'d only known), I blurted out \"But not me!\" and went on with the talk. But afterward it occurred to me that I should really stop procrastinating about angel investing. I\\'d been meaning to since Yahoo bought us, and now it was 7 years later and I still hadn\\'t done one angel investment.\\n\\nMeanwhile I had been scheming with Robert and Trevor about projects we could work on together. I missed working with them, and it seemed like there had to be something we could collaborate on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e9a82e89-0d8f-480b-9f26-1acfffaab9a1'), '073bc744-8e07-42e7-8595-39496927fe88': Node(page_content=\"As Jessica and I were walking home from dinner on March 11, at the corner of Garden and Walker streets, these three threads converged. Screw the VCs who were taking so long to make up their minds. We'd start our own investment firm and actually implement the ideas we'd been talking about. I'd fund it, and Jessica could quit her job and work for it, and we'd get Robert and Trevor as partners too. [13]\\n\\nOnce again, ignorance worked in our favor. We had no idea how to be angel investors, and in Boston in 2005 there were no Ron Conways to learn from. So we just made what seemed like the obvious choices, and some of the things we did turned out to be novel.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='073bc744-8e07-42e7-8595-39496927fe88'), '7ffe9bfd-9225-407c-9048-5ae1b0f25fc6': Node(page_content=\"There are multiple components to Y Combinator, and we didn't figure them all out at once. The part we got first was to be an angel firm. In those days, those two words didn't go together. There were VC firms, which were organized companies with people whose job it was to make investments, but they only did big, million dollar investments. And there were angels, who did smaller investments, but these were individuals who were usually focused on other things and made investments on the side. And neither of them helped founders enough in the beginning. We knew how helpless founders were in some respects, because we remembered how helpless we'd been. For example, one thing Julian had done for us that seemed to us like magic was to get us set up as a company. We were fine writing fairly difficult software, but actually getting incorporated, with bylaws and stock and all that stuff, how on earth did you do that? Our plan was not only to make seed investments, but to do for startups everything Julian had done for\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7ffe9bfd-9225-407c-9048-5ae1b0f25fc6'), '83ef6c3c-2575-48c1-bf79-8376e2afe2e1': Node(page_content='Julian had done for us.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='83ef6c3c-2575-48c1-bf79-8376e2afe2e1'), 'f4142432-6daa-4c6b-ad89-00e3712c373c': Node(page_content='YC was not organized as a fund. It was cheap enough to run that we funded it with our own money. That went right by 99% of readers, but professional investors are thinking \"Wow, that means they got all the returns.\" But once again, this was not due to any particular insight on our part. We didn\\'t know how VC firms were organized. It never occurred to us to try to raise a fund, and if it had, we wouldn\\'t have known where to start. [14]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f4142432-6daa-4c6b-ad89-00e3712c373c', wins=1), 'a4c983c2-a43c-49f6-9ca0-db73867728a9': Node(page_content=\"The most distinctive thing about YC is the batch model: to fund a bunch of startups all at once, twice a year, and then to spend three months focusing intensively on trying to help them. That part we discovered by accident, not merely implicitly but explicitly due to our ignorance about investing. We needed to get experience as investors. What better way, we thought, than to fund a whole bunch of startups at once? We knew undergrads got temporary jobs at tech companies during the summer. Why not organize a summer program where they'd start startups instead? We wouldn't feel guilty for being in a sense fake investors, because they would in a similar sense be fake founders. So while we probably wouldn't make much money out of it, we'd at least get to practice being investors on them, and they for their part would probably have a more interesting summer than they would working at Microsoft.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4c983c2-a43c-49f6-9ca0-db73867728a9', wins=1), '0198787d-a061-45f0-92d5-e45f6e7ae912': Node(page_content='We\\'d use the building I owned in Cambridge as our headquarters. We\\'d all have dinner there once a week — on tuesdays, since I was already cooking for the thursday diners on thursdays — and after dinner we\\'d bring in experts on startups to give talks.\\n\\nWe knew undergrads were deciding then about summer jobs, so in a matter of days we cooked up something we called the Summer Founders Program, and I posted an announcement on my site, inviting undergrads to apply. I had never imagined that writing essays would be a way to get \"deal flow,\" as investors call it, but it turned out to be the perfect source. [15] We got 225 applications for the Summer Founders Program, and we were surprised to find that a lot of them were from people who\\'d already graduated, or were about to that spring. Already this SFP thing was starting to feel more serious than we\\'d intended.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0198787d-a061-45f0-92d5-e45f6e7ae912'), '745dd18f-832f-4d1e-b688-319f7c617464': Node(page_content=\"We invited about 20 of the 225 groups to interview in person, and from those we picked 8 to fund. They were an impressive group. That first batch included reddit, Justin Kan and Emmett Shear, who went on to found Twitch, Aaron Swartz, who had already helped write the RSS spec and would a few years later become a martyr for open access, and Sam Altman, who would later become the second president of YC. I don't think it was entirely luck that the first batch was so good. You had to be pretty bold to sign up for a weird thing like the Summer Founders Program instead of a summer job at a legit place like Microsoft or Goldman Sachs.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='745dd18f-832f-4d1e-b688-319f7c617464'), 'bf8387d0-b094-4f59-8c13-ca1014ea67ac': Node(page_content='The deal for startups was based on a combination of the deal we did with Julian ($10k for 10%) and what Robert said MIT grad students got for the summer ($6k). We invested $6k per founder, which in the typical two-founder case was $12k, in return for 6%. That had to be fair, because it was twice as good as the deal we ourselves had taken. Plus that first summer, which was really hot, Jessica brought the founders free air conditioners. [16]\\n\\nFairly quickly I realized that we had stumbled upon the way to scale startup funding. Funding startups in batches was more convenient for us, because it meant we could do things for a lot of startups at once, but being part of a batch was better for the startups too. It solved one of the biggest problems faced by founders: the isolation. Now you not only had colleagues, but colleagues who understood the problems you were facing and could tell you how they were solving them.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='bf8387d0-b094-4f59-8c13-ca1014ea67ac'), '526ba90a-5223-4530-a966-baea4886bdc1': Node(page_content='As YC grew, we started to notice other advantages of scale. The alumni became a tight community, dedicated to helping one another, and especially the current batch, whose shoes they remembered being in. We also noticed that the startups were becoming one another\\'s customers. We used to refer jokingly to the \"YC GDP,\" but as YC grows this becomes less and less of a joke. Now lots of startups get their initial set of customers almost entirely from among their batchmates.\\n\\nI had not originally intended YC to be a full-time job. I was going to do three things: hack, write essays, and work on YC. As YC grew, and I grew more excited about it, it started to take up a lot more than a third of my attention. But for the first few years I was still able to work on other things.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='526ba90a-5223-4530-a966-baea4886bdc1', wins=1), 'aa1dfbc4-133a-4f2d-99fe-c0ebce320d09': Node(page_content=\"In the summer of 2006, Robert and I started working on a new version of Arc. This one was reasonably fast, because it was compiled into Scheme. To test this new Arc, I wrote Hacker News in it. It was originally meant to be a news aggregator for startup founders and was called Startup News, but after a few months I got tired of reading about nothing but startups. Plus it wasn't startup founders we wanted to reach. It was future startup founders. So I changed the name to Hacker News and the topic to whatever engaged one's intellectual curiosity.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='aa1dfbc4-133a-4f2d-99fe-c0ebce320d09'), 'c8505964-4597-440a-9044-033cf10ca40e': Node(page_content=\"HN was no doubt good for YC, but it was also by far the biggest source of stress for me. If all I'd had to do was select and help founders, life would have been so easy. And that implies that HN was a mistake. Surely the biggest source of stress in one's work should at least be something close to the core of the work. Whereas I was like someone who was in pain while running a marathon not from the exertion of running, but because I had a blister from an ill-fitting shoe. When I was dealing with some urgent problem during YC, there was about a 60% chance it had to do with HN, and a 40% chance it had do with everything else combined. [17]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c8505964-4597-440a-9044-033cf10ca40e'), '251faa7a-72ec-4bd9-ad69-1af024efbbc4': Node(page_content=\"As well as HN, I wrote all of YC's internal software in Arc. But while I continued to work a good deal in Arc, I gradually stopped working on Arc, partly because I didn't have time to, and partly because it was a lot less attractive to mess around with the language now that we had all this infrastructure depending on it. So now my three projects were reduced to two: writing essays and working on YC.\\n\\nYC was different from other kinds of work I've done. Instead of deciding for myself what to work on, the problems came to me. Every 6 months there was a new batch of startups, and their problems, whatever they were, became our problems. It was very engaging work, because their problems were quite varied, and the good founders were very effective. If you were trying to learn the most you could about startups in the shortest possible time, you couldn't have picked a better way to do it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='251faa7a-72ec-4bd9-ad69-1af024efbbc4'), '454a991d-29ac-4982-a8e5-72a02f0ef5a2': Node(page_content='There were parts of the job I didn\\'t like. Disputes between cofounders, figuring out when people were lying to us, fighting with people who maltreated the startups, and so on. But I worked hard even at the parts I didn\\'t like. I was haunted by something Kevin Hale once said about companies: \"No one works harder than the boss.\" He meant it both descriptively and prescriptively, and it was the second part that scared me. I wanted YC to be good, so if how hard I worked set the upper bound on how hard everyone else worked, I\\'d better work very hard.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='454a991d-29ac-4982-a8e5-72a02f0ef5a2'), 'edd1ff8d-62c3-4e10-95c6-6ef7b27a4531': Node(page_content='One day in 2010, when he was visiting California for interviews, Robert Morris did something astonishing: he offered me unsolicited advice. I can only remember him doing that once before. One day at Viaweb, when I was bent over double from a kidney stone, he suggested that it would be a good idea for him to take me to the hospital. That was what it took for Rtm to offer unsolicited advice. So I remember his exact words very clearly. \"You know,\" he said, \"you should make sure Y Combinator isn\\'t the last cool thing you do.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edd1ff8d-62c3-4e10-95c6-6ef7b27a4531'), '71c27b46-b79b-48ef-ad7e-3a0400ece844': Node(page_content=\"At the time I didn't understand what he meant, but gradually it dawned on me that he was saying I should quit. This seemed strange advice, because YC was doing great. But if there was one thing rarer than Rtm offering advice, it was Rtm being wrong. So this set me thinking. It was true that on my current trajectory, YC would be the last thing I did, because it was only taking up more of my attention. It had already eaten Arc, and was in the process of eating essays too. Either YC was my life's work or I'd have to leave eventually. And it wasn't, so I would.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='71c27b46-b79b-48ef-ad7e-3a0400ece844'), '949a121e-1e69-45a4-98cd-e7f7c47c8bf9': Node(page_content=\"In the summer of 2012 my mother had a stroke, and the cause turned out to be a blood clot caused by colon cancer. The stroke destroyed her balance, and she was put in a nursing home, but she really wanted to get out of it and back to her house, and my sister and I were determined to help her do it. I used to fly up to Oregon to visit her regularly, and I had a lot of time to think on those flights. On one of them I realized I was ready to hand YC over to someone else.\\n\\nI asked Jessica if she wanted to be president, but she didn't, so we decided we'd try to recruit Sam Altman. We talked to Robert and Trevor and we agreed to make it a complete changing of the guard. Up till that point YC had been controlled by the original LLC we four had started. But we wanted YC to last for a long time, and to do that it couldn't be controlled by the founders. So if Sam said yes, we'd let him reorganize YC. Robert and I would retire, and Jessica and Trevor would become ordinary partners.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='949a121e-1e69-45a4-98cd-e7f7c47c8bf9'), 'ee41cd68-792e-4ebf-aa6c-672740604a7e': Node(page_content=\"When we asked Sam if he wanted to be president of YC, initially he said no. He wanted to start a startup to make nuclear reactors. But I kept at it, and in October 2013 he finally agreed. We decided he'd take over starting with the winter 2014 batch. For the rest of 2013 I left running YC more and more to Sam, partly so he could learn the job, and partly because I was focused on my mother, whose cancer had returned.\\n\\nShe died on January 15, 2014. We knew this was coming, but it was still hard when it did.\\n\\nI kept working on YC till March, to help get that batch of startups through Demo Day, then I checked out pretty completely. (I still talk to alumni and to new startups working on things I'm interested in, but that only takes a few hours a week.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ee41cd68-792e-4ebf-aa6c-672740604a7e'), '70bcf8a8-1e2c-4cbd-a93f-ade0c453e437': Node(page_content=\"What should I do next? Rtm's advice hadn't included anything about that. I wanted to do something completely different, so I decided I'd paint. I wanted to see how good I could get if I really focused on it. So the day after I stopped working on YC, I started painting. I was rusty and it took a while to get back into shape, but it was at least completely engaging. [18]\\n\\nI spent most of the rest of 2014 painting. I'd never been able to work so uninterruptedly before, and I got to be better than I had been. Not good enough, but better. Then in November, right in the middle of a painting, I ran out of steam. Up till that point I'd always been curious to see how the painting I was working on would turn out, but suddenly finishing this one seemed like a chore. So I stopped working on it and cleaned my brushes and haven't painted since. So far anyway.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='70bcf8a8-1e2c-4cbd-a93f-ade0c453e437'), 'de347d59-7d93-4174-b095-30666d86c163': Node(page_content=\"I realize that sounds rather wimpy. But attention is a zero sum game. If you can choose what to work on, and you choose a project that's not the best one (or at least a good one) for you, then it's getting in the way of another project that is. And at 50 there was some opportunity cost to screwing around.\\n\\nI started writing essays again, and wrote a bunch of new ones over the next few months. I even wrote a couple that weren't about startups. Then in March 2015 I started working on Lisp again.\\n\\nThe distinctive thing about Lisp is that its core is a language defined by writing an interpreter in itself. It wasn't originally intended as a programming language in the ordinary sense. It was meant to be a formal model of computation, an alternative to the Turing machine. If you want to write an interpreter for a language in itself, what's the minimum set of predefined operators you need? The Lisp that John McCarthy invented, or more accurately discovered, is an answer to that question. [19]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='de347d59-7d93-4174-b095-30666d86c163'), 'd8717b54-2764-42ab-a7b9-7dc8f36ee9b4': Node(page_content=\"McCarthy didn't realize this Lisp could even be used to program computers till his grad student Steve Russell suggested it. Russell translated McCarthy's interpreter into IBM 704 machine language, and from that point Lisp started also to be a programming language in the ordinary sense. But its origins as a model of computation gave it a power and elegance that other languages couldn't match. It was this that attracted me in college, though I didn't understand why at the time.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d8717b54-2764-42ab-a7b9-7dc8f36ee9b4'), 'ab5cf714-67cb-4e35-a7a5-cef31b3093c2': Node(page_content=\"McCarthy's 1960 Lisp did nothing more than interpret Lisp expressions. It was missing a lot of things you'd want in a programming language. So these had to be added, and when they were, they weren't defined using McCarthy's original axiomatic approach. That wouldn't have been feasible at the time. McCarthy tested his interpreter by hand-simulating the execution of programs. But it was already getting close to the limit of interpreters you could test that way — indeed, there was a bug in it that McCarthy had overlooked. To test a more complicated interpreter, you'd have had to run it, and computers then weren't powerful enough.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ab5cf714-67cb-4e35-a7a5-cef31b3093c2'), 'ccc691c6-2730-445f-a301-3e6d29614239': Node(page_content=\"Now they are, though. Now you could continue using McCarthy's axiomatic approach till you'd defined a complete programming language. And as long as every change you made to McCarthy's Lisp was a discoveredness-preserving transformation, you could, in principle, end up with a complete language that had this quality. Harder to do than to talk about, of course, but if it was possible in principle, why not try? So I decided to take a shot at it. It took 4 years, from March 26, 2015 to October 12, 2019. It was fortunate that I had a precisely defined goal, or it would have been hard to keep at it for so long.\\n\\nI wrote this new Lisp, called Bel, in itself in Arc. That may sound like a contradiction, but it's an indication of the sort of trickery I had to engage in to make this work. By means of an egregious collection of hacks I managed to make something close enough to an interpreter written in itself that could actually run. Not fast, but fast enough to test.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ccc691c6-2730-445f-a301-3e6d29614239'), '6c6c1376-f7e2-4435-84ea-1324fd16912e': Node(page_content='I had to ban myself from writing essays during most of this time, or I\\'d never have finished. In late 2015 I spent 3 months writing essays, and when I went back to working on Bel I could barely understand the code. Not so much because it was badly written as because the problem is so convoluted. When you\\'re working on an interpreter written in itself, it\\'s hard to keep track of what\\'s happening at what level, and errors can be practically encrypted by the time you get them.\\n\\nSo I said no more essays till Bel was done. But I told few people about Bel while I was working on it. So for years it must have seemed that I was doing nothing, when in fact I was working harder than I\\'d ever worked on anything. Occasionally after wrestling for hours with some gruesome bug I\\'d check Twitter or HN and see someone asking \"Does Paul Graham still code?\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6c6c1376-f7e2-4435-84ea-1324fd16912e'), '0f927fda-431c-4163-9b61-6b3c9eff403b': Node(page_content=\"Working on Bel was hard but satisfying. I worked on it so intensively that at any given time I had a decent chunk of the code in my head and could write more there. I remember taking the boys to the coast on a sunny day in 2015 and figuring out how to deal with some problem involving continuations while I watched them play in the tide pools. It felt like I was doing life right. I remember that because I was slightly dismayed at how novel it felt. The good news is that I had more moments like this over the next few years.\\n\\nIn the summer of 2016 we moved to England. We wanted our kids to see what it was like living in another country, and since I was a British citizen by birth, that seemed the obvious choice. We only meant to stay for a year, but we liked it so much that we still live there. So most of Bel was written in England.\\n\\nIn the fall of 2019, Bel was finally finished. Like McCarthy's original Lisp, it's a spec rather than an implementation, although like McCarthy's Lisp it's a spec expressed as code.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f927fda-431c-4163-9b61-6b3c9eff403b'), '6af9ede9-1b89-44db-a81f-20ce45d1802a': Node(page_content=\"Now that I could write essays again, I wrote a bunch about topics I'd had stacked up. I kept writing essays through 2020, but I also started to think about other things I could work on. How should I choose what to do? Well, how had I chosen what to work on in the past? I wrote an essay for myself to answer that question, and I was surprised how long and messy the answer turned out to be. If this surprised me, who'd lived it, then I thought perhaps it would be interesting to other people, and encouraging to those with similarly messy lives. So I wrote a more detailed version for others to read, and this is the last sentence of it.\\n\\nNotes\\n\\n[1] My experience skipped a step in the evolution of computers: time-sharing machines with interactive OSes. I went straight from batch processing to microcomputers, which made microcomputers seem all the more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6af9ede9-1b89-44db-a81f-20ce45d1802a'), '67d6eed8-0267-4500-a3b2-8c7ed2ac83a6': Node(page_content=\"[2] Italian words for abstract concepts can nearly always be predicted from their English cognates (except for occasional traps like polluzione). It's the everyday words that differ. So if you string together a lot of abstract concepts with a few simple verbs, you can make a little Italian go a long way.\\n\\n[3] I lived at Piazza San Felice 4, so my walk to the Accademia went straight down the spine of old Florence: past the Pitti, across the bridge, past Orsanmichele, between the Duomo and the Baptistery, and then up Via Ricasoli to Piazza San Marco. I saw Florence at street level in every possible condition, from empty dark winter evenings to sweltering summer days when the streets were packed with tourists.\\n\\n[4] You can of course paint people like still lives if you want to, and they're willing. That sort of portrait is arguably the apex of still life painting, though the long sitting does tend to produce pained expressions in the sitters.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='67d6eed8-0267-4500-a3b2-8c7ed2ac83a6'), 'edacd5b2-60d6-434b-ac59-273dd42896e8': Node(page_content=\"[5] Interleaf was one of many companies that had smart people and built impressive technology, and yet got crushed by Moore's Law. In the 1990s the exponential growth in the power of commodity (i.e. Intel) processors rolled up high-end, special-purpose hardware and software companies like a bulldozer.\\n\\n[6] The signature style seekers at RISD weren't specifically mercenary. In the art world, money and coolness are tightly coupled. Anything expensive comes to be seen as cool, and anything seen as cool will soon become equally expensive.\\n\\n[7] Technically the apartment wasn't rent-controlled but rent-stabilized, but this is a refinement only New Yorkers would know or care about. The point is that it was really cheap, less than half market price.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edacd5b2-60d6-434b-ac59-273dd42896e8'), '46a2d3c9-dcd7-4d1d-a520-af1518532c01': Node(page_content=\"[8] Most software you can launch as soon as it's done. But when the software is an online store builder and you're hosting the stores, if you don't have any users yet, that fact will be painfully obvious. So before we could launch publicly we had to launch privately, in the sense of recruiting an initial set of users and making sure they had decent-looking stores.\\n\\n[9] We'd had a code editor in Viaweb for users to define their own page styles. They didn't know it, but they were editing Lisp expressions underneath. But this wasn't an app editor, because the code ran when the merchants' sites were generated, not when shoppers visited them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='46a2d3c9-dcd7-4d1d-a520-af1518532c01'), 'a4bd607d-62be-4ee7-a34d-3bd5305da820': Node(page_content=\"[10] This was the first instance of what is now a familiar experience, and so was what happened next, when I read the comments and found they were full of angry people. How could I claim that Lisp was better than other languages? Weren't they all Turing complete? People who see the responses to essays I write sometimes tell me how sorry they feel for me, but I'm not exaggerating when I reply that it has always been like this, since the very beginning. It comes with the territory. An essay must tell readers things they don't already know, and some people dislike being told such things.\\n\\n[11] People put plenty of stuff on the internet in the 90s of course, but putting something online is not the same as publishing it online. Publishing online means you treat the online version as the (or at least a) primary version.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4bd607d-62be-4ee7-a34d-3bd5305da820', wins=1), '6d435c9f-7f32-4be9-931b-854ce5d29546': Node(page_content=\"[12] There is a general lesson here that our experience with Y Combinator also teaches: Customs continue to constrain you long after the restrictions that caused them have disappeared. Customary VC practice had once, like the customs about publishing essays, been based on real constraints. Startups had once been much more expensive to start, and proportionally rare. Now they could be cheap and common, but the VCs' customs still reflected the old world, just as customs about writing essays still reflected the constraints of the print era.\\n\\nWhich in turn implies that people who are independent-minded (i.e. less influenced by custom) will have an advantage in fields affected by rapid change (where customs are more likely to be obsolete).\\n\\nHere's an interesting point, though: you can't always predict which fields will be affected by rapid change. Obviously software and venture capital will be, but who would have predicted that essay writing would be?\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6d435c9f-7f32-4be9-931b-854ce5d29546', wins=1), '522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e': Node(page_content=\"[13] Y Combinator was not the original name. At first we were called Cambridge Seed. But we didn't want a regional name, in case someone copied us in Silicon Valley, so we renamed ourselves after one of the coolest tricks in the lambda calculus, the Y combinator.\\n\\nI picked orange as our color partly because it's the warmest, and partly because no VC used it. In 2005 all the VCs used staid colors like maroon, navy blue, and forest green, because they were trying to appeal to LPs, not founders. The YC logo itself is an inside joke: the Viaweb logo had been a white V on a red circle, so I made the YC logo a white Y on an orange square.\\n\\n[14] YC did become a fund for a couple years starting in 2009, because it was getting so big I could no longer afford to fund it personally. But after Heroku got bought we had enough money to go back to being self-funded.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e', wins=1), '27b2bd1d-8de5-4424-ba1f-323592eaf441': Node(page_content='[15] I\\'ve never liked the term \"deal flow,\" because it implies that the number of new startups at any given time is fixed. This is not only false, but it\\'s the purpose of YC to falsify it, by causing startups to be founded that would not otherwise have existed.\\n\\n[16] She reports that they were all different shapes and sizes, because there was a run on air conditioners and she had to get whatever she could, but that they were all heavier than she could carry now.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='27b2bd1d-8de5-4424-ba1f-323592eaf441'), 'edabe432-0c59-4ba5-aa37-d5cddb072669': Node(page_content=\"[17] Another problem with HN was a bizarre edge case that occurs when you both write essays and run a forum. When you run a forum, you're assumed to see if not every conversation, at least every conversation involving you. And when you write essays, people post highly imaginative misinterpretations of them on forums. Individually these two phenomena are tedious but bearable, but the combination is disastrous. You actually have to respond to the misinterpretations, because the assumption that you're present in the conversation means that not responding to any sufficiently upvoted misinterpretation reads as a tacit admission that it's correct. But that in turn encourages more; anyone who wants to pick a fight with you senses that now is their chance.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edabe432-0c59-4ba5-aa37-d5cddb072669'), 'e508308d-e2bf-46db-a3c4-c98d86a7d9d4': Node(page_content=\"[18] The worst thing about leaving YC was not working with Jessica anymore. We'd been working on YC almost the whole time we'd known each other, and we'd neither tried nor wanted to separate it from our personal lives, so leaving was like pulling up a deeply rooted tree.\\n\\n[19] One way to get more precise about the concept of invented vs discovered is to talk about space aliens. Any sufficiently advanced alien civilization would certainly know about the Pythagorean theorem, for example. I believe, though with less certainty, that they would also know about the Lisp in McCarthy's 1960 paper.\\n\\nBut if so there's no reason to suppose that this is the limit of the language that might be known to them. Presumably aliens need numbers and errors and I/O too. So it seems likely there exists at least one path out of McCarthy's Lisp along which discoveredness is preserved.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e508308d-e2bf-46db-a3c4-c98d86a7d9d4'), 'cf0b9256-68dd-4e82-86f0-7a7464e0d0fe': Node(page_content='Thanks to Trevor Blackwell, John Collison, Patrick Collison, Daniel Gackle, Ralph Hazell, Jessica Livingston, Robert Morris, and Harj Taggar for reading drafts of this.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='cf0b9256-68dd-4e82-86f0-7a7464e0d0fe')}, run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), node_filter=NodeFilter(llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), threshold=1.5, context_scoring_prompt=Prompt(name='score_context', instruction='\\n Given a context, perform the following task and output the answer in VALID JSON format: Assess the provided context and assign a numerical score of 1 (Low), 2 (Medium), or 3 (High) for each of the following criteria in your JSON response:\\n\\nclarity: Evaluate the precision and understandability of the information presented. High scores (3) are reserved for contexts that are both precise in their information and easy to understand. Low scores (1) are for contexts where the information is vague or hard to comprehend.\\ndepth: Determine the level of detailed examination and the inclusion of innovative insights within the context. A high score indicates a comprehensive and insightful analysis, while a low score suggests a superficial treatment of the topic.\\nstructure: Assess how well the content is organized and whether it flows logically. High scores are awarded to contexts that demonstrate coherent organization and logical progression, whereas low scores indicate a lack of structure or clarity in progression.\\nrelevance: Judge the pertinence of the content to the main topic, awarding high scores to contexts tightly focused on the subject without unnecessary digressions, and low scores to those that are cluttered with irrelevant information.\\nStructure your JSON output to reflect these criteria as keys with their corresponding scores as values\\n ', output_format_instruction='The output should be a well-formatted JSON instance that conforms to the JSON schema below.\\n\\nAs an example, for the schema {\"properties\": {\"foo\": {\"title\": \"Foo\", \"description\": \"a list of strings\", \"type\": \"array\", \"items\": {\"type\": \"string\"}}}, \"required\": [\"foo\"]}\\nthe object {\"foo\": [\"bar\", \"baz\"]} is a well-formatted instance of the schema. The object {\"properties\": {\"foo\": [\"bar\", \"baz\"]}} is not well-formatted.\\n\\nHere is the output JSON schema:\\n```\\n{\"type\": \"object\", \"properties\": {\"clarity\": {\"title\": \"Clarity\", \"type\": \"integer\"}, \"depth\": {\"title\": \"Depth\", \"type\": \"integer\"}, \"structure\": {\"title\": \"Structure\", \"type\": \"integer\"}, \"relevance\": {\"title\": \"Relevance\", \"type\": \"integer\"}}, \"required\": [\"clarity\", \"depth\", \"structure\", \"relevance\"]}\\n```\\n\\nDo not return any preamble or explanations, return only a pure JSON string surrounded by triple backticks (```).', examples=[{'context': 'The Pythagorean theorem is a fundamental principle in geometry. It states that in a right-angled triangle, the square of the length of the hypotenuse (the side opposite the right angle) is equal to the sum of the squares of the lengths of the other two sides. This can be written as a^2 + b^2 = c^2 where c represents the length of the hypotenuse, and a and b represent the lengths of the other two sides.', 'output': {'clarity': 3, 'depth': 1, 'structure': 3, 'relevance': 3}}, {'context': 'Albert Einstein (14 March 1879 - 18 April 1955) was a German-born theoretical physicist who is widely held to be one of the greatest and most influential scientists of all time.', 'output': {'clarity': 3, 'depth': 2, 'structure': 3, 'relevance': 3}}, {'context': \"I love chocolate. It's really tasty. Oh, and by the way, the earth orbits the sun, not the other way around. Also, my favorite color is blue.\", 'output': {'clarity': 2, 'depth': 1, 'structure': 1, 'relevance': 1}}], input_keys=['context'], output_key='output', output_type='json', language='english')), question_filter=QuestionFilter(llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), filter_question_prompt=Prompt(name='filter_question', instruction='\\nAsses the given question for clarity and answerability given enough domain knowledge, consider the following criteria:\\n1.Independence: Can the question be understood and answered without needing additional context or access to external references not provided within the question itself? Questions should be self-contained, meaning they do not rely on specific documents, tables, or prior knowledge not shared within the question.\\n2.Clear Intent: Is it clear what type of answer or information the question seeks? The question should convey its purpose without ambiguity, allowing for a direct and relevant response.\\nBased on these criteria, assign a verdict of \"1\" if a question is specific, independent, and has a clear intent, making it understandable and answerable based on the details provided. Assign \"0\" if it fails to meet one or more of these criteria due to vagueness, reliance on external references, or ambiguity in intent.\\nProvide feedback and a verdict in JSON format, including suggestions for improvement if the question is deemed unclear. Highlight aspects of the question that contribute to its clarity or lack thereof, and offer advice on how it could be reframed or detailed for better understanding and answerability.\\n', output_format_instruction='The output should be a well-formatted JSON instance that conforms to the JSON schema below.\\n\\nAs an example, for the schema {\"properties\": {\"foo\": {\"title\": \"Foo\", \"description\": \"a list of strings\", \"type\": \"array\", \"items\": {\"type\": \"string\"}}}, \"required\": [\"foo\"]}\\nthe object {\"foo\": [\"bar\", \"baz\"]} is a well-formatted instance of the schema. The object {\"properties\": {\"foo\": [\"bar\", \"baz\"]}} is not well-formatted.\\n\\nHere is the output JSON schema:\\n```\\n{\"type\": \"object\", \"properties\": {\"feedback\": {\"title\": \"Feedback\", \"type\": \"string\"}, \"verdict\": {\"title\": \"Verdict\", \"type\": \"integer\"}}, \"required\": [\"feedback\", \"verdict\"]}\\n```\\n\\nDo not return any preamble or explanations, return only a pure JSON string surrounded by triple backticks (```).', examples=[{'question': 'What is the discovery about space?', 'output': {'feedback': \"The question is too vague and broad, asking for a 'discovery about space' without specifying any particular aspect, time frame, or context of interest. This could refer to a wide range of topics, from the discovery of new celestial bodies to advancements in space travel technology. To improve clarity and answerability, the question could specify the type of discovery (e.g., astronomical, technological), the time frame (e.g., recent, historical), or the context (e.g., within a specific research study or space mission).\", 'verdict': 0}}, {'question': \"How does ALMA-13B-R perform compared to other translation models in the WMT'23 study, based on the results in context1 and context2?\", 'output': {'feedback': \"This question asks for a comparison of the ALMA-13B-R model's performance against other translation models within the WMT'23 study, specifically referring to results in 'context1' and 'context2'. While it clearly specifies the model of interest (ALMA-13B-R) and the study (WMT'23), it assumes access to and understanding of 'context1' and 'context2' without explaining what these contexts entail. This makes the question unclear for those not familiar with the WMT'23 study or these specific contexts. To improve clarity and answerability for a broader audience, the question could benefit from defining or describing 'context1' and 'context2' or explaining the criteria used for comparison in these contexts.\", 'verdict': 0}}, {'question': 'How do KIWI-XXL and XCOMET compare to the gold standard references in Table 1 in terms of evaluation scores, translation model performance, and success rate in surpassing the references?', 'output': {'feedback': \"The question requests a comparison between KIWI-XXL and XCOMET models and gold standard references in 'Table 1', focusing on evaluation scores, translation model performance, and success rates in surpassing the references. It specifies the models and criteria for comparison, making the intent clear. However, the question assumes access to 'Table 1' without providing its content or context, making it unclear for those without direct access to the source material. To be clearer and more answerable for a general audience, the question could include a brief description of the content or key findings of 'Table 1', or alternatively, frame the question in a way that does not rely on specific, unpublished documents.\", 'verdict': 0}}, {'question': 'What is the configuration of UL2 training objective in OpenMoE and why is it a better choice for pre-training?', 'output': {'feedback': 'The question asks for the configuration of the UL2 training objective within the OpenMoE framework and the rationale behind its suitability for pre-training. It is clear in specifying the topic of interest (UL2 training objective, OpenMoE) and seeks detailed information on both the configuration and the reasons for its effectiveness in pre-training. However, the question might be challenging for those unfamiliar with the specific terminology or the context of OpenMoE and UL2. For broader clarity and answerability, it would be helpful if the question included a brief explanation or context about OpenMoE and the UL2 training objective, or clarified the aspects of pre-training effectiveness it refers to (e.g., efficiency, accuracy, generalization).', 'verdict': 1}}, {'question': 'What is the detailed configuration of the UL2 training objective in OpenMoE, based on the provided context?', 'output': {'feedback': \"The question seeks detailed information on the UL2 training objective's configuration within the OpenMoE framework, mentioning 'the provided context' without actually including or describing this context within the query. This makes the question unclear for those who do not have access to the unspecified context. For the question to be clear and answerable, it needs to either include the relevant context directly within the question or be framed in a way that does not require external information. Detailing the specific aspects of the configuration of interest (e.g., loss functions, data augmentation techniques) could also help clarify the query.\", 'verdict': 0}}], input_keys=['question'], output_key='output', output_type='json', language='english')), question_answer_prompt=Prompt(name='answer_formulate', instruction=\"Answer the question using the information from the given context. Output verdict as '1' if answer is present '-1' if answer is not present in the context.\", output_format_instruction='', examples=[{'context': 'Climate change is significantly influenced by human activities, notably the emission of greenhouse gases from burning fossil fuels. The increased greenhouse gas concentration in the atmosphere traps more heat, leading to global warming and changes in weather patterns.', 'question': 'How do human activities contribute to climate change?', 'answer': {'answer': 'Human activities contribute to climate change primarily through the emission of greenhouse gases from burning fossil fuels. These emissions increase the concentration of greenhouse gases in the atmosphere, which traps more heat and leads to global warming and altered weather patterns.', 'verdict': '1'}}, {'context': 'The concept of artificial intelligence (AI) has evolved over time, but it fundamentally refers to machines designed to mimic human cognitive functions. AI can learn, reason, perceive, and, in some instances, react like humans, making it pivotal in fields ranging from healthcare to autonomous vehicles.', 'question': 'What are the key capabilities of artificial intelligence?', 'answer': {'answer': 'Artificial intelligence is designed to mimic human cognitive functions, with key capabilities including learning, reasoning, perception, and reacting to the environment in a manner similar to humans. These capabilities make AI pivotal in various fields, including healthcare and autonomous driving.', 'verdict': '1'}}, {'context': 'The novel \"Pride and Prejudice\" by Jane Austen revolves around the character Elizabeth Bennet and her family. The story is set in the 19th century in rural England and deals with issues of marriage, morality, and misconceptions.', 'question': \"What year was 'Pride and Prejudice' published?\", 'answer': {'answer': 'The answer to given question is not present in context', 'verdict': '-1'}}], input_keys=['context', 'question'], output_key='answer', output_type='json', language='english'), find_relevant_context_prompt=Prompt(name='find_relevant_context', instruction='Given a question and set of contexts, find the most relevant contexts to answer the question.', output_format_instruction='', examples=[{'question': 'What is the capital of France?', 'contexts': ['1. France is a country in Western Europe. It has several cities, including Paris, Lyon, and Marseille. Paris is not only known for its cultural landmarks like the Eiffel Tower and the Louvre Museum but also as the administrative center.', '2. The capital of France is Paris. It is also the most populous city in France, with a population of over 2 million people. Paris is known for its cultural landmarks like the Eiffel Tower and the Louvre Museum.', '3. Paris is the capital of France. It is also the most populous city in France, with a population of over 2 million people. Paris is known for its cultural landmarks like the Eiffel Tower and the Louvre Museum.'], 'output': {'relevant_contexts': [1, 2]}}, {'question': 'How does caffeine affect the body and what are its common sources?', 'contexts': ['1. Caffeine is a central nervous system stimulant. It can temporarily ward off drowsiness and restore alertness. It primarily affects the brain, where it alters the function of neurotransmitters.', '2. Regular physical activity is essential for maintaining good health. It can help control weight, combat health conditions, boost energy, and promote better sleep.', '3. Common sources of caffeine include coffee, tea, cola, and energy drinks. These beverages are consumed worldwide and are known for providing a quick boost of energy.'], 'output': {'relevant_contexts': [1, 2]}}], input_keys=['question', 'contexts'], output_key='output', output_type='json', language='english'), rewrite_invalid_question_prompt=Prompt(name='rewrite_question', instruction='Given a context, question and feedback, rewrite the question to improve its clarity and answerability based on the feedback provided.', output_format_instruction='', examples=[{'context': \"The Eiffel Tower was constructed using iron and was originally intended as a temporary exhibit for the 1889 World's Fair held in Paris. Despite its initial temporary purpose, the Eiffel Tower quickly became a symbol of Parisian ingenuity and an iconic landmark of the city, attracting millions of visitors each year. The tower's design, created by Gustave Eiffel, was initially met with criticism from some French artists and intellectuals, but it has since been celebrated as a masterpiece of structural engineering and architectural design.\", 'question': 'Who created the design for the Tower?', 'feedback': \"The question asks about the creator of the design for 'the Tower', but it does not specify which tower it refers to. There are many towers worldwide, and without specifying the exact tower, the question is unclear and unanswerable. To improve the question, it should include the name or a clear description of the specific tower in question.\", 'output': 'Who created the design for the Eiffel Tower?'}, {'context': \"'Exploring Zero-Shot Learning in Neural Networks' was published by Smith and Lee in 2021, focusing on the application of zero-shot learning techniques in artificial intelligence.\", 'question': 'What datasets were used for the zero-shot evaluations in this study?', 'feedback': \"The question asks about the datasets used for zero-shot evaluations in 'this study', without specifying or providing any details about the study in question. This makes the question unclear for those who do not have access to or knowledge of the specific study. To improve clarity and answerability, the question should specify the study it refers to, or provide enough context about the study for the question to be understood and answered independently.\", 'output': 'What datasets were used for the zero-shot evaluations Exploring Zero-Shot Learning in Neural Networks paper?'}], input_keys=['context', 'question', 'feedback'], output_key='output', output_type='str', language='english'), max_tries=5, is_async=True, seed_question_prompt=Prompt(name='seed_question', instruction='Generate a question that can be fully answered from given context. The question should be formed using topic', output_format_instruction='', examples=[{'context': 'Photosynthesis in plants involves converting light energy into chemical energy, using chlorophyll and other pigments to absorb light. This process is crucial for plant growth and the production of oxygen.', 'keyphrase': 'Photosynthesis', 'question': 'What is the role of photosynthesis in plant growth?'}, {'context': 'The Industrial Revolution, starting in the 18th century, marked a major turning point in history as it led to the development of factories and urbanization.', 'keyphrase': 'Industrial Revolution', 'question': 'How did the Industrial Revolution mark a major turning point in history?'}, {'context': 'The process of evaporation plays a crucial role in the water cycle, converting water from liquid to vapor and allowing it to rise into the atmosphere.', 'keyphrase': 'Evaporation', 'question': 'Why is evaporation important in the water cycle?'}], input_keys=['context', 'keyphrase'], output_key='question', output_type='str', language='english'))\n", "max retries exceeded for SimpleEvolution(generator_llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), docstore=InMemoryDocumentStore(splitter=, nodes=[Node(page_content='How to Do Great Work\\n\\nJuly 2023\\n\\nIf you collected lists of techniques for doing great work in a lot of different fields, what would the intersection look like? I decided to find out by making it.\\n\\nPartly my goal was to create a guide that could be used by someone working in any field. But I was also curious about the shape of the intersection. And one thing this exercise shows is that it does have a definite shape; it\\'s not just a point labelled \"work hard.\"\\n\\nThe following recipe assumes you\\'re very ambitious.\\n\\nThe first step is to decide what to work on. The work you choose needs to have three qualities: it has to be something you have a natural aptitude for, that you have a deep interest in, and that offers scope to do great work.\\n\\nIn practice you don\\'t have to worry much about the third criterion. Ambitious people are if anything already too conservative about it. So all you need to do is find something you have an aptitude for and great interest in. [1]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5aca51fd-22c4-45c3-b7b3-50ed488de038'), Node(page_content='That sounds straightforward, but it\\'s often quite difficult. When you\\'re young you don\\'t know what you\\'re good at or what different kinds of work are like. Some kinds of work you end up doing may not even exist yet. So while some people know what they want to do at 14, most have to figure it out.\\n\\nThe way to figure out what to work on is by working. If you\\'re not sure what to work on, guess. But pick something and get going. You\\'ll probably guess wrong some of the time, but that\\'s fine. It\\'s good to know about multiple things; some of the biggest discoveries come from noticing connections between different fields.\\n\\nDevelop a habit of working on your own projects. Don\\'t let \"work\" mean something other people tell you to do. If you do manage to do great work one day, it will probably be on a project of your own. It may be within some bigger project, but you\\'ll be driving your part of it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ea8d692d-2d93-41a6-b814-721f8a0eba80', wins=1), Node(page_content=\"What should your projects be? Whatever seems to you excitingly ambitious. As you grow older and your taste in projects evolves, exciting and important will converge. At 7 it may seem excitingly ambitious to build huge things out of Lego, then at 14 to teach yourself calculus, till at 21 you're starting to explore unanswered questions in physics. But always preserve excitingness.\\n\\nThere's a kind of excited curiosity that's both the engine and the rudder of great work. It will not only drive you, but if you let it have its way, will also show you what to work on.\\n\\nWhat are you excessively curious about — curious to a degree that would bore most other people? That's what you're looking for.\\n\\nOnce you've found something you're excessively interested in, the next step is to learn enough about it to get you to one of the frontiers of knowledge. Knowledge expands fractally, and from a distance its edges look smooth, but once you learn enough to get close to one, they turn out to be full of gaps.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='defa86f2-201a-493b-9e51-4c52b6d22f82'), Node(page_content=\"The next step is to notice them. This takes some skill, because your brain wants to ignore such gaps in order to make a simpler model of the world. Many discoveries have come from asking questions about things that everyone else took for granted. [2]\\n\\nIf the answers seem strange, so much the better. Great work often has a tincture of strangeness. You see this from painting to math. It would be affected to try to manufacture it, but if it appears, embrace it.\\n\\nBoldly chase outlier ideas, even if other people aren't interested in them — in fact, especially if they aren't. If you're excited about some possibility that everyone else ignores, and you have enough expertise to say precisely what they're all overlooking, that's as good a bet as you'll find. [3]\\n\\nFour steps: choose a field, learn enough to get to the frontier, notice gaps, explore promising ones. This is how practically everyone who's done great work has done it, from painters to physicists.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7a41dd22-0f90-4920-9659-427308ab5374'), Node(page_content=\"Steps two and four will require hard work. It may not be possible to prove that you have to work hard to do great things, but the empirical evidence is on the scale of the evidence for mortality. That's why it's essential to work on something you're deeply interested in. Interest will drive you to work harder than mere diligence ever could.\\n\\nThe three most powerful motives are curiosity, delight, and the desire to do something impressive. Sometimes they converge, and that combination is the most powerful of all.\\n\\nThe big prize is to discover a new fractal bud. You notice a crack in the surface of knowledge, pry it open, and there's a whole world inside.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='fbe6561c-75ae-48bf-8f1e-285cae90085e'), Node(page_content=\"Let's talk a little more about the complicated business of figuring out what to work on. The main reason it's hard is that you can't tell what most kinds of work are like except by doing them. Which means the four steps overlap: you may have to work at something for years before you know how much you like it or how good you are at it. And in the meantime you're not doing, and thus not learning about, most other kinds of work. So in the worst case you choose late based on very incomplete information. [4]\\n\\nThe nature of ambition exacerbates this problem. Ambition comes in two forms, one that precedes interest in the subject and one that grows out of it. Most people who do great work have a mix, and the more you have of the former, the harder it will be to decide what to do.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e1a13047-9806-4639-a2a6-9404cfd2b86b'), Node(page_content=\"The educational systems in most countries pretend it's easy. They expect you to commit to a field long before you could know what it's really like. And as a result an ambitious person on an optimal trajectory will often read to the system as an instance of breakage.\\n\\nIt would be better if they at least admitted it — if they admitted that the system not only can't do much to help you figure out what to work on, but is designed on the assumption that you'll somehow magically guess as a teenager. They don't tell you, but I will: when it comes to figuring out what to work on, you're on your own. Some people get lucky and do guess correctly, but the rest will find themselves scrambling diagonally across tracks laid down on the assumption that everyone does.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd2f5b64-32e8-42f0-ba14-4f22a0d37803'), Node(page_content=\"What should you do if you're young and ambitious but don't know what to work on? What you should not do is drift along passively, assuming the problem will solve itself. You need to take action. But there is no systematic procedure you can follow. When you read biographies of people who've done great work, it's remarkable how much luck is involved. They discover what to work on as a result of a chance meeting, or by reading a book they happen to pick up. So you need to make yourself a big target for luck, and the way to do that is to be curious. Try lots of things, meet lots of people, read lots of books, ask lots of questions. [5]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ed92cc5f-6350-4ac8-9097-605342ed58f1', wins=1), Node(page_content=\"When in doubt, optimize for interestingness. Fields change as you learn more about them. What mathematicians do, for example, is very different from what you do in high school math classes. So you need to give different types of work a chance to show you what they're like. But a field should become increasingly interesting as you learn more about it. If it doesn't, it's probably not for you.\\n\\nDon't worry if you find you're interested in different things than other people. The stranger your tastes in interestingness, the better. Strange tastes are often strong ones, and a strong taste for work means you'll be productive. And you're more likely to find new things if you're looking where few have looked before.\\n\\nOne sign that you're suited for some kind of work is when you like even the parts that other people find tedious or frightening.\\n\\nBut fields aren't people; you don't owe them any loyalty. If in the course of working on one thing you discover another that's more exciting, don't be afraid to switch.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dbdc198-e1f6-446b-9b95-bbd6be77492e'), Node(page_content=\"If you're making something for people, make sure it's something they actually want. The best way to do this is to make something you yourself want. Write the story you want to read; build the tool you want to use. Since your friends probably have similar interests, this will also get you your initial audience.\\n\\nThis should follow from the excitingness rule. Obviously the most exciting story to write will be the one you want to read. The reason I mention this case explicitly is that so many people get it wrong. Instead of making what they want, they try to make what some imaginary, more sophisticated audience wants. And once you go down that route, you're lost. [6]\\n\\nThere are a lot of forces that will lead you astray when you're trying to figure out what to work on. Pretentiousness, fashion, fear, money, politics, other people's wishes, eminent frauds. But if you stick to what you find genuinely interesting, you'll be proof against all of them. If you're interested, you're not astray.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebd76502-a324-4fe9-86db-58b4f1184052'), Node(page_content=\"Following your interests may sound like a rather passive strategy, but in practice it usually means following them past all sorts of obstacles. You usually have to risk rejection and failure. So it does take a good deal of boldness.\\n\\nBut while you need boldness, you don't usually need much planning. In most cases the recipe for doing great work is simply: work hard on excitingly ambitious projects, and something good will come of it. Instead of making a plan and then executing it, you just try to preserve certain invariants.\\n\\nThe trouble with planning is that it only works for achievements you can describe in advance. You can win a gold medal or get rich by deciding to as a child and then tenaciously pursuing that goal, but you can't discover natural selection that way.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa'), Node(page_content='I think for most people who want to do great work, the right strategy is not to plan too much. At each stage do whatever seems most interesting and gives you the best options for the future. I call this approach \"staying upwind.\" This is how most people who\\'ve done great work seem to have done it.\\n\\nEven when you\\'ve found something exciting to work on, working on it is not always straightforward. There will be times when some new idea makes you leap out of bed in the morning and get straight to work. But there will also be plenty of times when things aren\\'t like that.\\n\\nYou don\\'t just put out your sail and get blown forward by inspiration. There are headwinds and currents and hidden shoals. So there\\'s a technique to working, just as there is to sailing.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2f6da706-f47d-4336-b3f6-78ff254eae9c'), Node(page_content=\"For example, while you must work hard, it's possible to work too hard, and if you do that you'll find you get diminishing returns: fatigue will make you stupid, and eventually even damage your health. The point at which work yields diminishing returns depends on the type. Some of the hardest types you might only be able to do for four or five hours a day.\\n\\nIdeally those hours will be contiguous. To the extent you can, try to arrange your life so you have big blocks of time to work in. You'll shy away from hard tasks if you know you might be interrupted.\\n\\nIt will probably be harder to start working than to keep working. You'll often have to trick yourself to get over that initial threshold. Don't worry about this; it's the nature of work, not a flaw in your character. Work has a sort of activation energy, both per day and per project. And since this threshold is fake in the sense that it's higher than the energy required to keep going, it's ok to tell yourself a lie of corresponding magnitude to get over it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='29ad26ae-8a90-4634-aff2-b4f662e421e0'), Node(page_content='It\\'s usually a mistake to lie to yourself if you want to do great work, but this is one of the rare cases where it isn\\'t. When I\\'m reluctant to start work in the morning, I often trick myself by saying \"I\\'ll just read over what I\\'ve got so far.\" Five minutes later I\\'ve found something that seems mistaken or incomplete, and I\\'m off.\\n\\nSimilar techniques work for starting new projects. It\\'s ok to lie to yourself about how much work a project will entail, for example. Lots of great things began with someone saying \"How hard could it be?\"\\n\\nThis is one case where the young have an advantage. They\\'re more optimistic, and even though one of the sources of their optimism is ignorance, in this case ignorance can sometimes beat knowledge.\\n\\nTry to finish what you start, though, even if it turns out to be more work than you expected. Finishing things is not just an exercise in tidiness or self-discipline. In many projects a lot of the best work happens in what was meant to be the final stage.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd668cf0-3881-44b4-ad84-628203f14f72'), Node(page_content=\"Another permissible lie is to exaggerate the importance of what you're working on, at least in your own mind. If that helps you discover something new, it may turn out not to have been a lie after all. [7]\\n\\nSince there are two senses of starting work — per day and per project — there are also two forms of procrastination. Per-project procrastination is far the more dangerous. You put off starting that ambitious project from year to year because the time isn't quite right. When you're procrastinating in units of years, you can get a lot not done. [8]\\n\\nOne reason per-project procrastination is so dangerous is that it usually camouflages itself as work. You're not just sitting around doing nothing; you're working industriously on something else. So per-project procrastination doesn't set off the alarms that per-day procrastination does. You're too busy to notice it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='25f94528-87d2-4c1a-9f75-3670e66aefd6'), Node(page_content=\"The way to beat it is to stop occasionally and ask yourself: Am I working on what I most want to work on? When you're young it's ok if the answer is sometimes no, but this gets increasingly dangerous as you get older. [9]\\n\\nGreat work usually entails spending what would seem to most people an unreasonable amount of time on a problem. You can't think of this time as a cost, or it will seem too high. You have to find the work sufficiently engaging as it's happening.\\n\\nThere may be some jobs where you have to work diligently for years at things you hate before you get to the good part, but this is not how great work happens. Great work happens by focusing consistently on something you're genuinely interested in. When you pause to take stock, you're surprised how far you've come.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7fae8eb9-3a0f-4651-9d30-3973508310f4'), Node(page_content=\"The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='1f84089c-1ae3-4652-9f00-ba02164c24d3', wins=1), Node(page_content=\"Something that grows exponentially can become so valuable that it's worth making an extraordinary effort to get it started. But since we underrate exponential growth early on, this too is mostly done unconsciously: people push through the initial, unrewarding phase of learning something new because they know from experience that learning new things always takes an initial push, or they grow their audience one fan at a time because they have nothing better to do. If people consciously realized they could invest in exponential growth, many more would do it.\\n\\nWork doesn't just happen when you're trying to. There's a kind of undirected thinking you do when walking or taking a shower or lying in bed that can be very powerful. By letting your mind wander a little, you'll often solve problems you were unable to solve by frontal attack.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='857bbce1-c4c8-4095-b9ac-c988d50addfc'), Node(page_content=\"You have to be working hard in the normal way to benefit from this phenomenon, though. You can't just walk around daydreaming. The daydreaming has to be interleaved with deliberate work that feeds it questions. [10]\\n\\nEveryone knows to avoid distractions at work, but it's also important to avoid them in the other half of the cycle. When you let your mind wander, it wanders to whatever you care about most at that moment. So avoid the kind of distraction that pushes your work out of the top spot, or you'll waste this valuable type of thinking on the distraction instead. (Exception: Don't avoid love.)\\n\\nConsciously cultivate your taste in the work done in your field. Until you know which is the best and what makes it so, you don't know what you're aiming for.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f41b7677-9e6c-46e2-92fd-993606e5835e'), Node(page_content=\"And that is what you're aiming for, because if you don't try to be the best, you won't even be good. This observation has been made by so many people in so many different fields that it might be worth thinking about why it's true. It could be because ambition is a phenomenon where almost all the error is in one direction — where almost all the shells that miss the target miss by falling short. Or it could be because ambition to be the best is a qualitatively different thing from ambition to be good. Or maybe being good is simply too vague a standard. Probably all three are true. [11]\\n\\nFortunately there's a kind of economy of scale here. Though it might seem like you'd be taking on a heavy burden by trying to be the best, in practice you often end up net ahead. It's exciting, and also strangely liberating. It simplifies things. In some ways it's easier to try to be the best than to try merely to be good.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cb188bc-4106-4204-a6c7-ea3752f34543', wins=1), Node(page_content=\"One way to aim high is to try to make something that people will care about in a hundred years. Not because their opinions matter more than your contemporaries', but because something that still seems good in a hundred years is more likely to be genuinely good.\\n\\nDon't try to work in a distinctive style. Just try to do the best job you can; you won't be able to help doing it in a distinctive way.\\n\\nStyle is doing things in a distinctive way without trying to. Trying to is affectation.\\n\\nAffectation is in effect to pretend that someone other than you is doing the work. You adopt an impressive but fake persona, and while you're pleased with the impressiveness, the fakeness is what shows in the work. [12]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b2c1b809-e821-452c-a352-4b82293e0d98'), Node(page_content='The temptation to be someone else is greatest for the young. They often feel like nobodies. But you never need to worry about that problem, because it\\'s self-solving if you work on sufficiently ambitious projects. If you succeed at an ambitious project, you\\'re not a nobody; you\\'re the person who did it. So just do the work and your identity will take care of itself.\\n\\n\"Avoid affectation\" is a useful rule so far as it goes, but how would you express this idea positively? How would you say what to be, instead of what not to be? The best answer is earnest. If you\\'re earnest you avoid not just affectation but a whole set of similar vices.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='a49d877b-69b4-4171-880a-9931fd094a4d'), Node(page_content=\"The core of being earnest is being intellectually honest. We're taught as children to be honest as an unselfish virtue — as a kind of sacrifice. But in fact it's a source of power too. To see new ideas, you need an exceptionally sharp eye for the truth. You're trying to see more truth than others have seen so far. And how can you have a sharp eye for the truth if you're intellectually dishonest?\\n\\nOne way to avoid intellectual dishonesty is to maintain a slight positive pressure in the opposite direction. Be aggressively willing to admit that you're mistaken. Once you've admitted you were mistaken about something, you're free. Till then you have to carry it. [13]\\n\\nAnother more subtle component of earnestness is informality. Informality is much more important than its grammatically negative name implies. It's not merely the absence of something. It means focusing on what matters instead of what doesn't.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88e2775e-93a9-47b0-a512-2fb4080c590b', wins=2), Node(page_content='What formality and affectation have in common is that as well as doing the work, you\\'re trying to seem a certain way as you\\'re doing it. But any energy that goes into how you seem comes out of being good. That\\'s one reason nerds have an advantage in doing great work: they expend little effort on seeming anything. In fact that\\'s basically the definition of a nerd.\\n\\nNerds have a kind of innocent boldness that\\'s exactly what you need in doing great work. It\\'s not learned; it\\'s preserved from childhood. So hold onto it. Be the one who puts things out there rather than the one who sits back and offers sophisticated-sounding criticisms of them. \"It\\'s easy to criticize\" is true in the most literal sense, and the route to great work is never easy.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6546e3fd-326b-413e-a345-374e27163847'), Node(page_content=\"There may be some jobs where it's an advantage to be cynical and pessimistic, but if you want to do great work it's an advantage to be optimistic, even though that means you'll risk looking like a fool sometimes. There's an old tradition of doing the opposite. The Old Testament says it's better to keep quiet lest you look like a fool. But that's advice for seeming smart. If you actually want to discover new things, it's better to take the risk of telling people your ideas.\\n\\nSome people are naturally earnest, and with others it takes a conscious effort. Either kind of earnestness will suffice. But I doubt it would be possible to do great work without being earnest. It's so hard to do even if you are. You don't have enough margin for error to accommodate the distortions introduced by being affected, intellectually dishonest, orthodox, fashionable, or cool. [14]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='531a5c72-e191-4563-863a-a797751b1fc6', wins=2), Node(page_content=\"Great work is consistent not only with who did it, but with itself. It's usually all of a piece. So if you face a decision in the middle of working on something, ask which choice is more consistent.\\n\\nYou may have to throw things away and redo them. You won't necessarily have to, but you have to be willing to. And that can take some effort; when there's something you need to redo, status quo bias and laziness will combine to keep you in denial about it. To beat this ask: If I'd already made the change, would I want to revert to what I have now?\\n\\nHave the confidence to cut. Don't keep something that doesn't fit just because you're proud of it, or because it cost you a lot of effort.\\n\\nIndeed, in some kinds of work it's good to strip whatever you're doing to its essence. The result will be more concentrated; you'll understand it better; and you won't be able to lie to yourself about whether there's anything real there.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c333306a-d7e5-4c78-b4ce-bebcee166ce5'), Node(page_content='Mathematical elegance may sound like a mere metaphor, drawn from the arts. That\\'s what I thought when I first heard the term \"elegant\" applied to a proof. But now I suspect it\\'s conceptually prior — that the main ingredient in artistic elegance is mathematical elegance. At any rate it\\'s a useful standard well beyond math.\\n\\nElegance can be a long-term bet, though. Laborious solutions will often have more prestige in the short term. They cost a lot of effort and they\\'re hard to understand, both of which impress people, at least temporarily.\\n\\nWhereas some of the very best work will seem like it took comparatively little effort, because it was in a sense already there. It didn\\'t have to be built, just seen. It\\'s a very good sign when it\\'s hard to say whether you\\'re creating something or discovering it.\\n\\nWhen you\\'re doing work that could be seen as either creation or discovery, err on the side of discovery. Try thinking of yourself as a mere conduit through which the ideas take their natural shape.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c75308b1-0b08-4e09-a009-df856bef3945', wins=1), Node(page_content=\"(Strangely enough, one exception is the problem of choosing a problem to work on. This is usually seen as search, but in the best case it's more like creating something. In the best case you create the field in the process of exploring it.)\\n\\nSimilarly, if you're trying to build a powerful tool, make it gratuitously unrestrictive. A powerful tool almost by definition will be used in ways you didn't expect, so err on the side of eliminating restrictions, even if you don't know what the benefit will be.\\n\\nGreat work will often be tool-like in the sense of being something others build on. So it's a good sign if you're creating ideas that others could use, or exposing questions that others could answer. The best ideas have implications in many different areas.\\n\\nIf you express your ideas in the most general form, they'll be truer than you intended.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4f2c5ade-5e17-4002-a1a4-2187f5d88171'), Node(page_content='True by itself is not enough, of course. Great ideas have to be true and new. And it takes a certain amount of ability to see new ideas even once you\\'ve learned enough to get to one of the frontiers of knowledge.\\n\\nIn English we give this ability names like originality, creativity, and imagination. And it seems reasonable to give it a separate name, because it does seem to some extent a separate skill. It\\'s possible to have a great deal of ability in other respects — to have a great deal of what\\'s often called \"technical ability\" — and yet not have much of this.\\n\\nI\\'ve never liked the term \"creative process.\" It seems misleading. Originality isn\\'t a process, but a habit of mind. Original thinkers throw off new ideas about whatever they focus on, like an angle grinder throwing off sparks. They can\\'t help it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='599933be-8cc7-47b3-9079-771faeffc324'), Node(page_content=\"If the thing they're focused on is something they don't understand very well, these new ideas might not be good. One of the most original thinkers I know decided to focus on dating after he got divorced. He knew roughly as much about dating as the average 15 year old, and the results were spectacularly colorful. But to see originality separated from expertise like that made its nature all the more clear.\\n\\nI don't know if it's possible to cultivate originality, but there are definitely ways to make the most of however much you have. For example, you're much more likely to have original ideas when you're working on something. Original ideas don't come from trying to have original ideas. They come from trying to build or understand something slightly too difficult. [15]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='df268d9c-bb83-4274-adec-131a05765453'), Node(page_content=\"Talking or writing about the things you're interested in is a good way to generate new ideas. When you try to put ideas into words, a missing idea creates a sort of vacuum that draws it out of you. Indeed, there's a kind of thinking that can only be done by writing.\\n\\nChanging your context can help. If you visit a new place, you'll often find you have new ideas there. The journey itself often dislodges them. But you may not have to go far to get this benefit. Sometimes it's enough just to go for a walk. [16]\\n\\nIt also helps to travel in topic space. You'll have more new ideas if you explore lots of different topics, partly because it gives the angle grinder more surface area to work on, and partly because analogies are an especially fruitful source of new ideas.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7390fd94-b307-468e-9888-4ba2fc15eb38'), Node(page_content=\"Don't divide your attention evenly between many topics though, or you'll spread yourself too thin. You want to distribute it according to something more like a power law. [17] Be professionally curious about a few topics and idly curious about many more.\\n\\nCuriosity and originality are closely related. Curiosity feeds originality by giving it new things to work on. But the relationship is closer than that. Curiosity is itself a kind of originality; it's roughly to questions what originality is to answers. And since questions at their best are a big component of answers, curiosity at its best is a creative force.\\n\\nHaving new ideas is a strange game, because it usually consists of seeing things that were right under your nose. Once you've seen a new idea, it tends to seem obvious. Why did no one think of this before?\\n\\nWhen an idea seems simultaneously novel and obvious, it's probably a good one.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b'), Node(page_content=\"Seeing something obvious sounds easy. And yet empirically having new ideas is hard. What's the source of this apparent contradiction? It's that seeing the new idea usually requires you to change the way you look at the world. We see the world through models that both help and constrain us. When you fix a broken model, new ideas become obvious. But noticing and fixing a broken model is hard. That's how new ideas can be both obvious and yet hard to discover: they're easy to see after you do something hard.\\n\\nOne way to discover broken models is to be stricter than other people. Broken models of the world leave a trail of clues where they bash against reality. Most people don't want to see these clues. It would be an understatement to say that they're attached to their current model; it's what they think in; so they'll tend to ignore the trail of clues left by its breakage, however conspicuous it may seem in retrospect.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6f83f951-f81a-4afc-9dbc-91e43bbaea88', wins=1), Node(page_content=\"To find new ideas you have to seize on signs of breakage instead of looking away. That's what Einstein did. He was able to see the wild implications of Maxwell's equations not so much because he was looking for new ideas as because he was stricter.\\n\\nThe other thing you need is a willingness to break rules. Paradoxical as it sounds, if you want to fix your model of the world, it helps to be the sort of person who's comfortable breaking rules. From the point of view of the old model, which everyone including you initially shares, the new model usually breaks at least implicit rules.\\n\\nFew understand the degree of rule-breaking required, because new ideas seem much more conservative once they succeed. They seem perfectly reasonable once you're using the new model of the world they brought with them. But they didn't at the time; it took the greater part of a century for the heliocentric model to be generally accepted, even among astronomers, because it felt so wrong.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c9a8c206-a7da-456c-82a6-635ab33aa7b3'), Node(page_content=\"Indeed, if you think about it, a good new idea has to seem bad to most people, or someone would have already explored it. So what you're looking for is ideas that seem crazy, but the right kind of crazy. How do you recognize these? You can't with certainty. Often ideas that seem bad are bad. But ideas that are the right kind of crazy tend to be exciting; they're rich in implications; whereas ideas that are merely bad tend to be depressing.\\n\\nThere are two ways to be comfortable breaking rules: to enjoy breaking them, and to be indifferent to them. I call these two cases being aggressively and passively independent-minded.\\n\\nThe aggressively independent-minded are the naughty ones. Rules don't merely fail to stop them; breaking rules gives them additional energy. For this sort of person, delight at the sheer audacity of a project sometimes supplies enough activation energy to get it started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f5be2dd9-c85c-418c-a716-eb0b78880cae'), Node(page_content=\"The other way to break rules is not to care about them, or perhaps even to know they exist. This is why novices and outsiders often make new discoveries; their ignorance of a field's assumptions acts as a source of temporary passive independent-mindedness. Aspies also seem to have a kind of immunity to conventional beliefs. Several I know say that this helps them to have new ideas.\\n\\nStrictness plus rule-breaking sounds like a strange combination. In popular culture they're opposed. But popular culture has a broken model in this respect. It implicitly assumes that issues are trivial ones, and in trivial matters strictness and rule-breaking are opposed. But in questions that really matter, only rule-breakers can be truly strict.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2362524-ba22-4fb7-8c77-d289a352850b'), Node(page_content=\"An overlooked idea often doesn't lose till the semifinals. You do see it, subconsciously, but then another part of your subconscious shoots it down because it would be too weird, too risky, too much work, too controversial. This suggests an exciting possibility: if you could turn off such filters, you could see more new ideas.\\n\\nOne way to do that is to ask what would be good ideas for someone else to explore. Then your subconscious won't shoot them down to protect you.\\n\\nYou could also discover overlooked ideas by working in the other direction: by starting from what's obscuring them. Every cherished but mistaken principle is surrounded by a dead zone of valuable ideas that are unexplored because they contradict it.\\n\\nReligions are collections of cherished but mistaken principles. So anything that can be described either literally or metaphorically as a religion will have valuable unexplored ideas in its shadow. Copernicus and Darwin both made discoveries of this type. [18]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='018ff54f-2f81-408b-8b62-20443ab66da9'), Node(page_content=\"What are people in your field religious about, in the sense of being too attached to some principle that might not be as self-evident as they think? What becomes possible if you discard it?\\n\\nPeople show much more originality in solving problems than in deciding which problems to solve. Even the smartest can be surprisingly conservative when deciding what to work on. People who'd never dream of being fashionable in any other way get sucked into working on fashionable problems.\\n\\nOne reason people are more conservative when choosing problems than solutions is that problems are bigger bets. A problem could occupy you for years, while exploring a solution might only take days. But even so I think most people are too conservative. They're not merely responding to risk, but to fashion as well. Unfashionable problems are undervalued.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88ff37b8-75c7-48aa-9441-f8cba80464b1'), Node(page_content=\"One of the most interesting kinds of unfashionable problem is the problem that people think has been fully explored, but hasn't. Great work often takes something that already exists and shows its latent potential. Durer and Watt both did this. So if you're interested in a field that others think is tapped out, don't let their skepticism deter you. People are often wrong about this.\\n\\nWorking on an unfashionable problem can be very pleasing. There's no hype or hurry. Opportunists and critics are both occupied elsewhere. The existing work often has an old-school solidity. And there's a satisfying sense of economy in cultivating ideas that would otherwise be wasted.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='963e48ca-37ea-4002-b0b2-78fa521f3597'), Node(page_content='But the most common type of overlooked problem is not explicitly unfashionable in the sense of being out of fashion. It just doesn\\'t seem to matter as much as it actually does. How do you find these? By being self-indulgent — by letting your curiosity have its way, and tuning out, at least temporarily, the little voice in your head that says you should only be working on \"important\" problems.\\n\\nYou do need to work on important problems, but almost everyone is too conservative about what counts as one. And if there\\'s an important but overlooked problem in your neighborhood, it\\'s probably already on your subconscious radar screen. So try asking yourself: if you were going to take a break from \"serious\" work to work on something just because it would be really interesting, what would you do? The answer is probably more important than it seems.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='263b1659-4c96-4db0-a5b9-6e766bc7a928', wins=2), Node(page_content=\"Originality in choosing problems seems to matter even more than originality in solving them. That's what distinguishes the people who discover whole new fields. So what might seem to be merely the initial step — deciding what to work on — is in a sense the key to the whole game.\\n\\nFew grasp this. One of the biggest misconceptions about new ideas is about the ratio of question to answer in their composition. People think big ideas are answers, but often the real insight was in the question.\\n\\nPart of the reason we underrate questions is the way they're used in schools. In schools they tend to exist only briefly before being answered, like unstable particles. But a really good question can be much more than that. A really good question is a partial discovery. How do new species arise? Is the force that makes objects fall to earth the same as the one that keeps planets in their orbits? By even asking such questions you were already in excitingly novel territory.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f3a439f9-a726-4007-90d3-d7e4ac34c811'), Node(page_content=\"Unanswered questions can be uncomfortable things to carry around with you. But the more you're carrying, the greater the chance of noticing a solution — or perhaps even more excitingly, noticing that two unanswered questions are the same.\\n\\nSometimes you carry a question for a long time. Great work often comes from returning to a question you first noticed years before — in your childhood, even — and couldn't stop thinking about. People talk a lot about the importance of keeping your youthful dreams alive, but it's just as important to keep your youthful questions alive. [19]\\n\\nThis is one of the places where actual expertise differs most from the popular picture of it. In the popular picture, experts are certain. But actually the more puzzled you are, the better, so long as (a) the things you're puzzled about matter, and (b) no one else understands them either.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ac0c284a-93cc-4f20-8f95-644471bc59e2'), Node(page_content=\"Think about what's happening at the moment just before a new idea is discovered. Often someone with sufficient expertise is puzzled about something. Which means that originality consists partly of puzzlement — of confusion! You have to be comfortable enough with the world being full of puzzles that you're willing to see them, but not so comfortable that you don't want to solve them. [20]\\n\\nIt's a great thing to be rich in unanswered questions. And this is one of those situations where the rich get richer, because the best way to acquire new questions is to try answering existing ones. Questions don't just lead to answers, but also to more questions.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='43d899d8-1f03-4594-89b0-c8d98a5b6feb'), Node(page_content=\"The best questions grow in the answering. You notice a thread protruding from the current paradigm and try pulling on it, and it just gets longer and longer. So don't require a question to be obviously big before you try answering it. You can rarely predict that. It's hard enough even to notice the thread, let alone to predict how much will unravel if you pull on it.\\n\\nIt's better to be promiscuously curious — to pull a little bit on a lot of threads, and see what happens. Big things start small. The initial versions of big things were often just experiments, or side projects, or talks, which then grew into something bigger. So start lots of small things.\\n\\nBeing prolific is underrated. The more different things you try, the greater the chance of discovering something new. Understand, though, that trying lots of things will mean trying lots of things that don't work. You can't have a lot of good ideas without also having a lot of bad ones. [21]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='36d31bd1-f966-4b1b-97de-447c6e1a6413'), Node(page_content=\"Though it sounds more responsible to begin by studying everything that's been done before, you'll learn faster and have more fun by trying stuff. And you'll understand previous work better when you do look at it. So err on the side of starting. Which is easier when starting means starting small; those two ideas fit together like two puzzle pieces.\\n\\nHow do you get from starting small to doing something great? By making successive versions. Great things are almost always made in successive versions. You start with something small and evolve it, and the final version is both cleverer and more ambitious than anything you could have planned.\\n\\nIt's particularly useful to make successive versions when you're making something for people — to get an initial version in front of them quickly, and then evolve it based on their response.\\n\\nBegin by trying the simplest thing that could possibly work. Surprisingly often, it does. If it doesn't, this will at least get you started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2351f0d2-96fe-4a21-845f-11bf4e69dbd6'), Node(page_content='Don\\'t try to cram too much new stuff into any one version. There are names for doing this with the first version (taking too long to ship) and the second (the second system effect), but these are both merely instances of a more general principle.\\n\\nAn early version of a new project will sometimes be dismissed as a toy. It\\'s a good sign when people do this. That means it has everything a new idea needs except scale, and that tends to follow. [22]\\n\\nThe alternative to starting with something small and evolving it is to plan in advance what you\\'re going to do. And planning does usually seem the more responsible choice. It sounds more organized to say \"we\\'re going to do x and then y and then z\" than \"we\\'re going to try x and see what happens.\" And it is more organized; it just doesn\\'t work as well.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='55306b2a-343d-4e44-8b24-25e471975cd3'), Node(page_content=\"Planning per se isn't good. It's sometimes necessary, but it's a necessary evil — a response to unforgiving conditions. It's something you have to do because you're working with inflexible media, or because you need to coordinate the efforts of a lot of people. If you keep projects small and use flexible media, you don't have to plan as much, and your designs can evolve instead.\\n\\nTake as much risk as you can afford. In an efficient market, risk is proportionate to reward, so don't look for certainty, but for a bet with high expected value. If you're not failing occasionally, you're probably being too conservative.\\n\\nThough conservatism is usually associated with the old, it's the young who tend to make this mistake. Inexperience makes them fear risk, but it's when you're young that you can afford the most.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8776ddf1-1e65-458c-9cc2-63a7fe40f800'), Node(page_content=\"Even a project that fails can be valuable. In the process of working on it, you'll have crossed territory few others have seen, and encountered questions few others have asked. And there's probably no better source of questions than the ones you encounter in trying to do something slightly too hard.\\n\\nUse the advantages of youth when you have them, and the advantages of age once you have those. The advantages of youth are energy, time, optimism, and freedom. The advantages of age are knowledge, efficiency, money, and power. With effort you can acquire some of the latter when young and keep some of the former when old.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c325c260-d37e-4bb0-a8b8-7d2633f1c55e'), Node(page_content='The old also have the advantage of knowing which advantages they have. The young often have them without realizing it. The biggest is probably time. The young have no idea how rich they are in time. The best way to turn this time to advantage is to use it in slightly frivolous ways: to learn about something you don\\'t need to know about, just out of curiosity, or to try building something just because it would be cool, or to become freakishly good at something.\\n\\nThat \"slightly\" is an important qualification. Spend time lavishly when you\\'re young, but don\\'t simply waste it. There\\'s a big difference between doing something you worry might be a waste of time and doing something you know for sure will be. The former is at least a bet, and possibly a better one than you think. [23]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62'), Node(page_content=\"The most subtle advantage of youth, or more precisely of inexperience, is that you're seeing everything with fresh eyes. When your brain embraces an idea for the first time, sometimes the two don't fit together perfectly. Usually the problem is with your brain, but occasionally it's with the idea. A piece of it sticks out awkwardly and jabs you when you think about it. People who are used to the idea have learned to ignore it, but you have the opportunity not to. [24]\\n\\nSo when you're learning about something for the first time, pay attention to things that seem wrong or missing. You'll be tempted to ignore them, since there's a 99% chance the problem is with you. And you may have to set aside your misgivings temporarily to keep progressing. But don't forget about them. When you've gotten further into the subject, come back and check if they're still there. If they're still viable in the light of your present knowledge, they probably represent an undiscovered idea.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7'), Node(page_content=\"One of the most valuable kinds of knowledge you get from experience is to know what you don't have to worry about. The young know all the things that could matter, but not their relative importance. So they worry equally about everything, when they should worry much more about a few things and hardly at all about the rest.\\n\\nBut what you don't know is only half the problem with inexperience. The other half is what you do know that ain't so. You arrive at adulthood with your head full of nonsense — bad habits you've acquired and false things you've been taught — and you won't be able to do great work till you clear away at least the nonsense in the way of whatever type of work you want to do.\\n\\nMuch of the nonsense left in your head is left there by schools. We're so used to schools that we unconsciously treat going to school as identical with learning, but in fact schools have all sorts of strange qualities that warp our ideas about learning and thinking.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebcb18af-82cb-4367-bb8f-60de302902d8'), Node(page_content=\"For example, schools induce passivity. Since you were a small child, there was an authority at the front of the class telling all of you what you had to learn and then measuring whether you did. But neither classes nor tests are intrinsic to learning; they're just artifacts of the way schools are usually designed.\\n\\nThe sooner you overcome this passivity, the better. If you're still in school, try thinking of your education as your project, and your teachers as working for you rather than vice versa. That may seem a stretch, but it's not merely some weird thought experiment. It's the truth, economically, and in the best case it's the truth intellectually as well. The best teachers don't want to be your bosses. They'd prefer it if you pushed ahead, using them as a source of advice, rather than being pulled by them through the material.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='16440cdc-9b76-475c-bd3a-8e43dae9a434'), Node(page_content='Schools also give you a misleading impression of what work is like. In school they tell you what the problems are, and they\\'re almost always soluble using no more than you\\'ve been taught so far. In real life you have to figure out what the problems are, and you often don\\'t know if they\\'re soluble at all.\\n\\nBut perhaps the worst thing schools do to you is train you to win by hacking the test. You can\\'t do great work by doing that. You can\\'t trick God. So stop looking for that kind of shortcut. The way to beat the system is to focus on problems and solutions that others have overlooked, not to skimp on the work itself.\\n\\nDon\\'t think of yourself as dependent on some gatekeeper giving you a \"big break.\" Even if this were true, the best way to get it would be to focus on doing good work rather than chasing influential people.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c0f04-9f7c-4c8f-b6e9-23539e87f9a1'), Node(page_content=\"And don't take rejection by committees to heart. The qualities that impress admissions officers and prize committees are quite different from those required to do great work. The decisions of selection committees are only meaningful to the extent that they're part of a feedback loop, and very few are.\\n\\nPeople new to a field will often copy existing work. There's nothing inherently bad about that. There's no better way to learn how something works than by trying to reproduce it. Nor does copying necessarily make your work unoriginal. Originality is the presence of new ideas, not the absence of old ones.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c8acb19e-fb92-4e15-a633-895f474f5fd1'), Node(page_content='There\\'s a good way to copy and a bad way. If you\\'re going to copy something, do it openly instead of furtively, or worse still, unconsciously. This is what\\'s meant by the famously misattributed phrase \"Great artists steal.\" The really dangerous kind of copying, the kind that gives copying a bad name, is the kind that\\'s done without realizing it, because you\\'re nothing more than a train running on tracks laid down by someone else. But at the other extreme, copying can be a sign of superiority rather than subordination. [25]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5358b733-dcf2-4681-99ff-dd89b89c6718', wins=1), Node(page_content=\"In many fields it's almost inevitable that your early work will be in some sense based on other people's. Projects rarely arise in a vacuum. They're usually a reaction to previous work. When you're first starting out, you don't have any previous work; if you're going to react to something, it has to be someone else's. Once you're established, you can react to your own. But while the former gets called derivative and the latter doesn't, structurally the two cases are more similar than they seem.\\n\\nOddly enough, the very novelty of the most novel ideas sometimes makes them seem at first to be more derivative than they are. New discoveries often have to be conceived initially as variations of existing things, even by their discoverers, because there isn't yet the conceptual vocabulary to express them.\\n\\nThere are definitely some dangers to copying, though. One is that you'll tend to copy old things — things that were in their day at the frontier of knowledge, but no longer are.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f087a707-515e-4c49-9772-187a7075ed75'), Node(page_content=\"And when you do copy something, don't copy every feature of it. Some will make you ridiculous if you do. Don't copy the manner of an eminent 50 year old professor if you're 18, for example, or the idiom of a Renaissance poem hundreds of years later.\\n\\nSome of the features of things you admire are flaws they succeeded despite. Indeed, the features that are easiest to imitate are the most likely to be the flaws.\\n\\nThis is particularly true for behavior. Some talented people are jerks, and this sometimes makes it seem to the inexperienced that being a jerk is part of being talented. It isn't; being talented is merely how they get away with it.\\n\\nOne of the most powerful kinds of copying is to copy something from one field into another. History is so full of chance discoveries of this type that it's probably worth giving chance a hand by deliberately learning about other kinds of work. You can take ideas from quite distant fields if you let them be metaphors.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='daf67766-a44c-4c3b-bd77-dc6d1045d490'), Node(page_content=\"Negative examples can be as inspiring as positive ones. In fact you can sometimes learn more from things done badly than from things done well; sometimes it only becomes clear what's needed when it's missing.\\n\\nIf a lot of the best people in your field are collected in one place, it's usually a good idea to visit for a while. It will increase your ambition, and also, by showing you that these people are human, increase your self-confidence. [26]\\n\\nIf you're earnest you'll probably get a warmer welcome than you might expect. Most people who are very good at something are happy to talk about it with anyone who's genuinely interested. If they're really good at their work, then they probably have a hobbyist's interest in it, and hobbyists always want to talk about their hobbies.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='18f9beba-e410-4473-97ad-959d232cd009'), Node(page_content=\"It may take some effort to find the people who are really good, though. Doing great work has such prestige that in some places, particularly universities, there's a polite fiction that everyone is engaged in it. And that is far from true. People within universities can't say so openly, but the quality of the work being done in different departments varies immensely. Some departments have people doing great work; others have in the past; others never have.\\n\\nSeek out the best colleagues. There are a lot of projects that can't be done alone, and even if you're working on one that can be, it's good to have other people to encourage you and to bounce ideas off.\\n\\nColleagues don't just affect your work, though; they also affect you. So work with people you want to become like, because you will.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e4ed843d-1771-424a-91fc-5b74bcd2bc37'), Node(page_content=\"Quality is more important than quantity in colleagues. It's better to have one or two great ones than a building full of pretty good ones. In fact it's not merely better, but necessary, judging from history: the degree to which great work happens in clusters suggests that one's colleagues often make the difference between doing great work and not.\\n\\nHow do you know when you have sufficiently good colleagues? In my experience, when you do, you know. Which means if you're unsure, you probably don't. But it may be possible to give a more concrete answer than that. Here's an attempt: sufficiently good colleagues offer surprising insights. They can see and do things that you can't. So if you have a handful of colleagues good enough to keep you on your toes in this sense, you're probably over the threshold.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6c16f93b-75ea-4884-8959-b8d243716257'), Node(page_content=\"Most of us can benefit from collaborating with colleagues, but some projects require people on a larger scale, and starting one of those is not for everyone. If you want to run a project like that, you'll have to become a manager, and managing well takes aptitude and interest like any other kind of work. If you don't have them, there is no middle path: you must either force yourself to learn management as a second language, or avoid such projects. [27]\\n\\nHusband your morale. It's the basis of everything when you're working on ambitious projects. You have to nurture and protect it like a living organism.\\n\\nMorale starts with your view of life. You're more likely to do great work if you're an optimist, and more likely to if you think of yourself as lucky than if you think of yourself as a victim.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='41972435-555e-4d47-977a-b91de1f27a90'), Node(page_content=\"Indeed, work can to some extent protect you from your problems. If you choose work that's pure, its very difficulties will serve as a refuge from the difficulties of everyday life. If this is escapism, it's a very productive form of it, and one that has been used by some of the greatest minds in history.\\n\\nMorale compounds via work: high morale helps you do good work, which increases your morale and helps you do even better work. But this cycle also operates in the other direction: if you're not doing good work, that can demoralize you and make it even harder to. Since it matters so much for this cycle to be running in the right direction, it can be a good idea to switch to easier work when you're stuck, just so you start to get something done.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2821136-b037-4332-bbbd-de2fcbeae316', wins=1), Node(page_content='One of the biggest mistakes ambitious people make is to allow setbacks to destroy their morale all at once, like a balloon bursting. You can inoculate yourself against this by explicitly considering setbacks a part of your process. Solving hard problems always involves some backtracking.\\n\\nDoing great work is a depth-first search whose root node is the desire to. So \"If at first you don\\'t succeed, try, try again\" isn\\'t quite right. It should be: If at first you don\\'t succeed, either try again, or backtrack and then try again.\\n\\n\"Never give up\" is also not quite right. Obviously there are times when it\\'s the right choice to eject. A more precise version would be: Never let setbacks panic you into backtracking more than you need to. Corollary: Never abandon the root node.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4593e897-c389-4639-98bd-7c159e1b3eae'), Node(page_content=\"It's not necessarily a bad sign if work is a struggle, any more than it's a bad sign to be out of breath while running. It depends how fast you're running. So learn to distinguish good pain from bad. Good pain is a sign of effort; bad pain is a sign of damage.\\n\\nAn audience is a critical component of morale. If you're a scholar, your audience may be your peers; in the arts, it may be an audience in the traditional sense. Either way it doesn't need to be big. The value of an audience doesn't grow anything like linearly with its size. Which is bad news if you're famous, but good news if you're just starting out, because it means a small but dedicated audience can be enough to sustain you. If a handful of people genuinely love what you're doing, that's enough.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b00c903d-199c-47b5-9884-f47a81649533'), Node(page_content=\"To the extent you can, avoid letting intermediaries come between you and your audience. In some types of work this is inevitable, but it's so liberating to escape it that you might be better off switching to an adjacent type if that will let you go direct. [28]\\n\\nThe people you spend time with will also have a big effect on your morale. You'll find there are some who increase your energy and others who decrease it, and the effect someone has is not always what you'd expect. Seek out the people who increase your energy and avoid those who decrease it. Though of course if there's someone you need to take care of, that takes precedence.\\n\\nDon't marry someone who doesn't understand that you need to work, or sees your work as competition for your attention. If you're ambitious, you need to work; it's almost like a medical condition; so someone who won't let you work either doesn't understand you, or does and doesn't care.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='53911edb-1d5b-42d8-8f83-00572631b56a', wins=1), Node(page_content=\"Ultimately morale is physical. You think with your body, so it's important to take care of it. That means exercising regularly, eating and sleeping well, and avoiding the more dangerous kinds of drugs. Running and walking are particularly good forms of exercise because they're good for thinking. [29]\\n\\nPeople who do great work are not necessarily happier than everyone else, but they're happier than they'd be if they didn't. In fact, if you're smart and ambitious, it's dangerous not to be productive. People who are smart and ambitious but don't achieve much tend to become bitter.\\n\\nIt's ok to want to impress other people, but choose the right people. The opinion of people you respect is signal. Fame, which is the opinion of a much larger group you might or might not respect, just adds noise.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cc70f37-da0e-44f9-a413-70a2f96e884a'), Node(page_content='The prestige of a type of work is at best a trailing indicator and sometimes completely mistaken. If you do anything well enough, you\\'ll make it prestigious. So the question to ask about a type of work is not how much prestige it has, but how well it could be done.\\n\\nCompetition can be an effective motivator, but don\\'t let it choose the problem for you; don\\'t let yourself get drawn into chasing something just because others are. In fact, don\\'t let competitors make you do anything much more specific than work harder.\\n\\nCuriosity is the best guide. Your curiosity never lies, and it knows more than you do about what\\'s worth paying attention to.\\n\\nNotice how often that word has come up. If you asked an oracle the secret to doing great work and the oracle replied with a single word, my bet would be on \"curiosity.\"\\n\\nThat doesn\\'t translate directly to advice. It\\'s not enough just to be curious, and you can\\'t command curiosity anyway. But you can nurture it and let it drive you.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c6cc7-ee83-4bdb-a16f-fb64224418df'), Node(page_content=\"Curiosity is the key to all four steps in doing great work: it will choose the field for you, get you to the frontier, cause you to notice the gaps in it, and drive you to explore them. The whole process is a kind of dance with curiosity.\\n\\nBelieve it or not, I tried to make this essay as short as I could. But its length at least means it acts as a filter. If you made it this far, you must be interested in doing great work. And if so you're already further along than you might realize, because the set of people willing to want to is small.\\n\\nThe factors in doing great work are factors in the literal, mathematical sense, and they are: ability, interest, effort, and luck. Luck by definition you can't do anything about, so we can ignore that. And we can assume effort, if you do in fact want to do great work. So the problem boils down to ability and interest. Can you find a kind of work where your ability and interest will combine to yield an explosion of new ideas?\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='518b39aa-59f8-4cb7-9c23-4ac7197f8250', wins=1), Node(page_content=\"Here there are grounds for optimism. There are so many different ways to do great work, and even more that are still undiscovered. Out of all those different types of work, the one you're most suited for is probably a pretty close match. Probably a comically close match. It's just a question of finding it, and how far into it your ability and interest can take you. And you can only answer that by trying.\\n\\nMany more people could try to do great work than do. What holds them back is a combination of modesty and fear. It seems presumptuous to try to be Newton or Shakespeare. It also seems hard; surely if you tried something like that, you'd fail. Presumably the calculation is rarely explicit. Few people consciously decide not to try to do great work. But that's what's going on subconsciously; they shy away from the question.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4bd8c91f-16e5-4aab-a361-b2e98eee6b10'), Node(page_content=\"So I'm going to pull a sneaky trick on you. Do you want to do great work, or not? Now you have to decide consciously. Sorry about that. I wouldn't have done it to a general audience. But we already know you're interested.\\n\\nDon't worry about being presumptuous. You don't have to tell anyone. And if it's too hard and you fail, so what? Lots of people have worse problems than that. In fact you'll be lucky if it's the worst problem you have.\\n\\nYes, you'll have to work hard. But again, lots of people have to work hard. And if you're working on something you find very interesting, which you necessarily will if you're on the right path, the work will probably feel less burdensome than a lot of your peers'.\\n\\nThe discoveries are out there, waiting to be made. Why not by you?\\n\\nNotes\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5098c334-acd7-4051-8409-88ae99b130c4'), Node(page_content='Notes\\n\\n[1] I don\\'t think you could give a precise definition of what counts as great work. Doing great work means doing something important so well that you expand people\\'s ideas of what\\'s possible. But there\\'s no threshold for importance. It\\'s a matter of degree, and often hard to judge at the time anyway. So I\\'d rather people focused on developing their interests rather than worrying about whether they\\'re important or not. Just try to do something amazing, and leave it to future generations to say if you succeeded.\\n\\n[2] A lot of standup comedy is based on noticing anomalies in everyday life. \"Did you ever notice...?\" New ideas come from doing this about nontrivial things. Which may help explain why people\\'s reaction to a new idea is often the first half of laughing: Ha!\\n\\n[3] That second qualifier is critical. If you\\'re excited about something most authorities discount, but you can\\'t give a more precise explanation than \"they don\\'t get it,\" then you\\'re starting to drift into the territory of cranks.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='85fcc3b5-ead2-41ce-bd52-c45b5555894f'), Node(page_content=\"[4] Finding something to work on is not simply a matter of finding a match between the current version of you and a list of known problems. You'll often have to coevolve with the problem. That's why it can sometimes be so hard to figure out what to work on. The search space is huge. It's the cartesian product of all possible types of work, both known and yet to be discovered, and all possible future versions of you.\\n\\nThere's no way you could search this whole space, so you have to rely on heuristics to generate promising paths through it and hope the best matches will be clustered. Which they will not always be; different types of work have been collected together as much by accidents of history as by the intrinsic similarities between them.\\n\\n[5] There are many reasons curious people are more likely to do great work, but one of the more subtle is that, by casting a wide net, they're more likely to find the right thing to work on in the first place.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2e5f7714-e0a8-4be5-ab6f-433a316b1c41'), Node(page_content=\"[6] It can also be dangerous to make things for an audience you feel is less sophisticated than you, if that causes you to talk down to them. You can make a lot of money doing that, if you do it in a sufficiently cynical way, but it's not the route to great work. Not that anyone using this m.o. would care.\\n\\n[7] This idea I learned from Hardy's A Mathematician's Apology, which I recommend to anyone ambitious to do great work, in any field.\\n\\n[8] Just as we overestimate what we can do in a day and underestimate what we can do over several years, we overestimate the damage done by procrastinating for a day and underestimate the damage done by procrastinating for several years.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f43e912a-048c-44f0-8a64-9b58b1fa4f58'), Node(page_content=\"[9] You can't usually get paid for doing exactly what you want, especially early on. There are two options: get paid for doing work close to what you want and hope to push it closer, or get paid for doing something else entirely and do your own projects on the side. Both can work, but both have drawbacks: in the first approach your work is compromised by default, and in the second you have to fight to get time to do it.\\n\\n[10] If you set your life up right, it will deliver the focus-relax cycle automatically. The perfect setup is an office you work in and that you walk to and from.\\n\\n[11] There may be some very unworldly people who do great work without consciously trying to. If you want to expand this rule to cover that case, it becomes: Don't try to be anything except the best.\\n\\n[12] This gets more complicated in work like acting, where the goal is to adopt a fake persona. But even here it's possible to be affected. Perhaps the rule in such fields should be to avoid unintentional affectation.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='af0eafcf-c1b7-46cd-b1b2-223f4aed0984'), Node(page_content='[13] It\\'s safe to have beliefs that you treat as unquestionable if and only if they\\'re also unfalsifiable. For example, it\\'s safe to have the principle that everyone should be treated equally under the law, because a sentence with a \"should\" in it isn\\'t really a statement about the world and is therefore hard to disprove. And if there\\'s no evidence that could disprove one of your principles, there can\\'t be any facts you\\'d need to ignore in order to preserve it.\\n\\n[14] Affectation is easier to cure than intellectual dishonesty. Affectation is often a shortcoming of the young that burns off in time, while intellectual dishonesty is more of a character flaw.\\n\\n[15] Obviously you don\\'t have to be working at the exact moment you have the idea, but you\\'ll probably have been working fairly recently.\\n\\n[16] Some say psychoactive drugs have a similar effect. I\\'m skeptical, but also almost totally ignorant of their effects.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6afc67d5-0fd7-48a8-829f-201370a6be57'), Node(page_content=\"[17] For example you might give the nth most important topic (m-1)/m^n of your attention, for some m > 1. You couldn't allocate your attention so precisely, of course, but this at least gives an idea of a reasonable distribution.\\n\\n[18] The principles defining a religion have to be mistaken. Otherwise anyone might adopt them, and there would be nothing to distinguish the adherents of the religion from everyone else.\\n\\n[19] It might be a good exercise to try writing down a list of questions you wondered about in your youth. You might find you're now in a position to do something about some of them.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='875a91c1-a9d8-4c9b-a094-4e865ec91c81'), Node(page_content='[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they\\'re generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling\\'s \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you\\'re wasting time is to ask if you\\'re producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don\\'t.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dc1d1d4-e75c-4e42-9567-9d7f2e048319', wins=1), Node(page_content=\"[24] Another related advantage is that if you haven't said anything publicly yet, you won't be biased toward evidence that supports your earlier conclusions. With sufficient integrity you could achieve eternal youth in this respect, but few manage to. For most people, having previously published opinions has an effect similar to ideology, just in quantity 1.\\n\\n[25] In the early 1630s Daniel Mytens made a painting of Henrietta Maria handing a laurel wreath to Charles I. Van Dyck then painted his own version to show how much better he was.\\n\\n[26] I'm being deliberately vague about what a place is. As of this writing, being in the same physical place has advantages that are hard to duplicate, but that could change.\\n\\n[27] This is false when the work the other people have to do is very constrained, as with SETI@home or Bitcoin. It may be possible to expand the area in which it's false by defining similarly restricted protocols with more freedom of action in the nodes.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2cbfecc-dc00-438a-ab59-b82bfd683a65'), Node(page_content='[28] Corollary: Building something that enables people to go around intermediaries and engage directly with their audience is probably a good idea.\\n\\n[29] It may be helpful always to walk or run the same route, because that frees attention for thinking. It feels that way to me, and there is some historical evidence for it.\\n\\nThanks to Trevor Blackwell, Daniel Gackle, Pam Graham, Tom Howard, Patrick Hsu, Steve Huffman, Jessica Livingston, Henry Lloyd-Baker, Bob Metcalfe, Ben Miller, Robert Morris, Michael Nielsen, Courtenay Pipkin, Joris Poort, Mieke Roos, Rajat Suri, Harj Taggar, Garry Tan, and my younger son for suggestions and for reading drafts.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='d64ee58e-fa36-495b-8ef7-df70c6375e80'), Node(page_content='What I Worked On\\n\\nFebruary 2021\\n\\nBefore college the two main things I worked on, outside of school, were writing and programming. I didn\\'t write essays. I wrote what beginning writers were supposed to write then, and probably still are: short stories. My stories were awful. They had hardly any plot, just characters with strong feelings, which I imagined made them deep.\\n\\nThe first programs I tried writing were on the IBM 1401 that our school district used for what was then called \"data processing.\" This was in 9th grade, so I was 13 or 14. The school district\\'s 1401 happened to be in the basement of our junior high school, and my friend Rich Draves and I got permission to use it. It was like a mini Bond villain\\'s lair down there, with all these alien-looking machines — CPU, disk drives, printer, card reader — sitting up on a raised floor under bright fluorescent lights.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8941624d-30a5-4c1f-936b-72b3c0e8feb1', wins=1), Node(page_content='The language we used was an early version of Fortran. You had to type programs on punch cards, then stack them in the card reader and press a button to load the program into memory and run it. The result would ordinarily be to print something on the spectacularly loud printer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2ddb6920-17bc-405e-9cbe-5b2852d92feb'), Node(page_content=\"I was puzzled by the 1401. I couldn't figure out what to do with it. And in retrospect there's not much I could have done with it. The only form of input to programs was data stored on punched cards, and I didn't have any data stored on punched cards. The only other option was to do things that didn't rely on any input, like calculate approximations of pi, but I didn't know enough math to do anything interesting of that type. So I'm not surprised I can't remember any programs I wrote, because they can't have done much. My clearest memory is of the moment I learned it was possible for programs not to terminate, when one of mine didn't. On a machine without time-sharing, this was a social as well as a technical error, as the data center manager's expression made clear.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2cae8c4f-333e-4615-8808-6e9ab6f79097', wins=1), Node(page_content='With microcomputers, everything changed. Now you could have a computer sitting right in front of you, on a desk, that could respond to your keystrokes as it was running instead of just churning through a stack of punch cards and then stopping. [1]\\n\\nThe first of my friends to get a microcomputer built it himself. It was sold as a kit by Heathkit. I remember vividly how impressed and envious I felt watching him sitting in front of it, typing programs right into the computer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d0f65811-4213-4ff8-bf54-07ee86007f73'), Node(page_content=\"Computers were expensive in those days and it took me years of nagging before I convinced my father to buy one, a TRS-80, in about 1980. The gold standard then was the Apple II, but a TRS-80 was good enough. This was when I really started programming. I wrote simple games, a program to predict how high my model rockets would fly, and a word processor that my father used to write at least one book. There was only room in memory for about 2 pages of text, so he'd write 2 pages at a time and then print them out, but it was a lot better than a typewriter.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0cc36135-748a-47b8-9a05-cf6d0a8ea13b', wins=1), Node(page_content=\"Though I liked programming, I didn't plan to study it in college. In college I was going to study philosophy, which sounded much more powerful. It seemed, to my naive high school self, to be the study of the ultimate truths, compared to which the things studied in other fields would be mere domain knowledge. What I discovered when I got to college was that the other fields took up so much of the space of ideas that there wasn't much left for these supposed ultimate truths. All that seemed left for philosophy were edge cases that people in other fields felt could safely be ignored.\\n\\nI couldn't have put this into words when I was 18. All I knew at the time was that I kept taking philosophy courses and they kept being boring. So I decided to switch to AI.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8ced309b-74f2-4240-917b-e28b30dc433b'), Node(page_content=\"AI was in the air in the mid 1980s, but there were two things especially that made me want to work on it: a novel by Heinlein called The Moon is a Harsh Mistress, which featured an intelligent computer called Mike, and a PBS documentary that showed Terry Winograd using SHRDLU. I haven't tried rereading The Moon is a Harsh Mistress, so I don't know how well it has aged, but when I read it I was drawn entirely into its world. It seemed only a matter of time before we'd have Mike, and when I saw Winograd using SHRDLU, it seemed like that time would be a few years at most. All you had to do was teach SHRDLU more words.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01436d32-d282-4de9-9b73-7faec7d1b772'), Node(page_content=\"There weren't any classes in AI at Cornell then, not even graduate classes, so I started trying to teach myself. Which meant learning Lisp, since in those days Lisp was regarded as the language of AI. The commonly used programming languages then were pretty primitive, and programmers' ideas correspondingly so. The default language at Cornell was a Pascal-like language called PL/I, and the situation was similar elsewhere. Learning Lisp expanded my concept of a program so fast that it was years before I started to have a sense of where the new limits were. This was more like it; this was what I had expected college to do. It wasn't happening in a class, like it was supposed to, but that was ok. For the next couple years I was on a roll. I knew what I was going to do.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c7dd7bbf-08ac-408f-b975-8274b58b91ca'), Node(page_content='For my undergraduate thesis, I reverse-engineered SHRDLU. My God did I love working on that program. It was a pleasing bit of code, but what made it even more exciting was my belief — hard to imagine now, but not unique in 1985 — that it was already climbing the lower slopes of intelligence.\\n\\nI had gotten into a program at Cornell that didn\\'t make you choose a major. You could take whatever classes you liked, and choose whatever you liked to put on your degree. I of course chose \"Artificial Intelligence.\" When I got the actual physical diploma, I was dismayed to find that the quotes had been included, which made them read as scare-quotes. At the time this bothered me, but now it seems amusingly accurate, for reasons I was about to discover.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d7d640a0-9b5e-4e18-a7fe-7655b8ae5979'), Node(page_content='I applied to 3 grad schools: MIT and Yale, which were renowned for AI at the time, and Harvard, which I\\'d visited because Rich Draves went there, and was also home to Bill Woods, who\\'d invented the type of parser I used in my SHRDLU clone. Only Harvard accepted me, so that was where I went.\\n\\nI don\\'t remember the moment it happened, or if there even was a specific moment, but during the first year of grad school I realized that AI, as practiced at the time, was a hoax. By which I mean the sort of AI in which a program that\\'s told \"the dog is sitting on the chair\" translates this into some formal representation and adds it to the list of things it knows.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='90c72e6c-8c79-4feb-86ae-f8f685cf5e7c'), Node(page_content=\"What these programs really showed was that there's a subset of natural language that's a formal language. But a very proper subset. It was clear that there was an unbridgeable gap between what they could do and actually understanding natural language. It was not, in fact, simply a matter of teaching SHRDLU more words. That whole way of doing AI, with explicit data structures representing concepts, was not going to work. Its brokenness did, as so often happens, generate a lot of opportunities to write papers about various band-aids that could be applied to it, but it was never going to get us Mike.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d5b018a6-f262-4758-b059-4da34cd51a58'), Node(page_content=\"So I looked around to see what I could salvage from the wreckage of my plans, and there was Lisp. I knew from experience that Lisp was interesting for its own sake and not just for its association with AI, even though that was the main reason people cared about it at the time. So I decided to focus on Lisp. In fact, I decided to write a book about Lisp hacking. It's scary to think how little I knew about Lisp hacking when I started writing that book. But there's nothing like writing a book about something to help you learn it. The book, On Lisp, wasn't published till 1993, but I wrote much of it in grad school.\\n\\nComputer Science is an uneasy alliance between two halves, theory and systems. The theory people prove things, and the systems people build things. I wanted to build things. I had plenty of respect for theory — indeed, a sneaking suspicion that it was the more admirable of the two halves — but building things seemed so much more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d52b4a20-0c6f-455d-9362-e99f3f87f0b4'), Node(page_content=\"The problem with systems work, though, was that it didn't last. Any program you wrote today, no matter how good, would be obsolete in a couple decades at best. People might mention your software in footnotes, but no one would actually use it. And indeed, it would seem very feeble work. Only people with a sense of the history of the field would even realize that, in its time, it had been good.\\n\\nThere were some surplus Xerox Dandelions floating around the computer lab at one point. Anyone who wanted one to play around with could have one. I was briefly tempted, but they were so slow by present standards; what was the point? No one else wanted one either, so off they went. That was what happened to systems work.\\n\\nI wanted not just to build things, but to build things that would last.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a7e3201d-8d1c-4f50-87cc-0674b17ce7c8'), Node(page_content=\"In this dissatisfied state I went in 1988 to visit Rich Draves at CMU, where he was in grad school. One day I went to visit the Carnegie Institute, where I'd spent a lot of time as a kid. While looking at a painting there I realized something that might seem obvious, but was a big surprise to me. There, right on the wall, was something you could make that would last. Paintings didn't become obsolete. Some of the best ones were hundreds of years old.\\n\\nAnd moreover this was something you could make a living doing. Not as easily as you could by writing software, of course, but I thought if you were really industrious and lived really cheaply, it had to be possible to make enough to survive. And as an artist you could be truly independent. You wouldn't have a boss, or even need to get research funding.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='88ce0eef-afcd-4066-b99a-ab84ade3eb18'), Node(page_content=\"I had always liked looking at paintings. Could I make them? I had no idea. I'd never imagined it was even possible. I knew intellectually that people made art — that it didn't just appear spontaneously — but it was as if the people who made it were a different species. They either lived long ago or were mysterious geniuses doing strange things in profiles in Life magazine. The idea of actually being able to make art, to put that verb before that noun, seemed almost miraculous.\\n\\nThat fall I started taking art classes at Harvard. Grad students could take classes in any department, and my advisor, Tom Cheatham, was very easy going. If he even knew about the strange classes I was taking, he never said anything.\\n\\nSo now I was in a PhD program in computer science, yet planning to be an artist, yet also genuinely in love with Lisp hacking and working away at On Lisp. In other words, like many a grad student, I was working energetically on multiple projects that were not my thesis.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f8eaf30-eedb-4747-97bb-c5c699392270'), Node(page_content='I didn\\'t see a way out of this situation. I didn\\'t want to drop out of grad school, but how else was I going to get out? I remember when my friend Robert Morris got kicked out of Cornell for writing the internet worm of 1988, I was envious that he\\'d found such a spectacular way to get out of grad school.\\n\\nThen one day in April 1990 a crack appeared in the wall. I ran into professor Cheatham and he asked if I was far enough along to graduate that June. I didn\\'t have a word of my dissertation written, but in what must have been the quickest bit of thinking in my life, I decided to take a shot at writing one in the 5 weeks or so that remained before the deadline, reusing parts of On Lisp where I could, and I was able to respond, with no perceptible delay \"Yes, I think so. I\\'ll give you something to read in a few days.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c14d29a3-c37e-4821-ae34-c407c6676ee1'), Node(page_content=\"I picked applications of continuations as the topic. In retrospect I should have written about macros and embedded languages. There's a whole world there that's barely been explored. But all I wanted was to get out of grad school, and my rapidly written dissertation sufficed, just barely.\\n\\nMeanwhile I was applying to art schools. I applied to two: RISD in the US, and the Accademia di Belli Arti in Florence, which, because it was the oldest art school, I imagined would be good. RISD accepted me, and I never heard back from the Accademia, so off to Providence I went.\\n\\nI'd applied for the BFA program at RISD, which meant in effect that I had to go to college again. This was not as strange as it sounds, because I was only 25, and art schools are full of people of different ages. RISD counted me as a transfer sophomore and said I had to do the foundation that summer. The foundation means the classes that everyone has to take in fundamental subjects like drawing, color, and design.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='48b6ee95-ea42-4980-9ad5-1dd6a2062500'), Node(page_content=\"Toward the end of the summer I got a big surprise: a letter from the Accademia, which had been delayed because they'd sent it to Cambridge England instead of Cambridge Massachusetts, inviting me to take the entrance exam in Florence that fall. This was now only weeks away. My nice landlady let me leave my stuff in her attic. I had some money saved from consulting work I'd done in grad school; there was probably enough to last a year if I lived cheaply. Now all I had to do was learn Italian.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='92b5cdd8-6d6d-4d9c-9510-48a3096427b8'), Node(page_content=\"Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01fdd3e3-243a-4e82-9c18-5d7492d029c1', wins=1), Node(page_content=\"I'm only up to age 25 and already there are such conspicuous patterns. Here I was, yet again about to attend some august institution in the hopes of learning about some prestigious subject, and yet again about to be disappointed. The students and faculty in the painting department at the Accademia were the nicest people you could imagine, but they had long since arrived at an arrangement whereby the students wouldn't require the faculty to teach anything, and in return the faculty wouldn't require the students to learn anything. And at the same time all involved would adhere outwardly to the conventions of a 19th century atelier. We actually had one of those little stoves, fed with kindling, that you see in 19th century studio paintings, and a nude model sitting as close to it as possible without getting burned. Except hardly anyone else painted her besides me. The rest of the students spent their time chatting or occasionally trying to imitate things they'd seen in American art magazines.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f488de3-2fec-444b-9cd1-58ffd491a687'), Node(page_content=\"Our model turned out to live just down the street from me. She made a living from a combination of modelling and making fakes for a local antique dealer. She'd copy an obscure old painting out of a book, and then he'd take the copy and maltreat it to make it look old. [3]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e8486722-e708-4b69-a5ef-1469253415c8', wins=1), Node(page_content=\"While I was a student at the Accademia I started painting still lives in my bedroom at night. These paintings were tiny, because the room was, and because I painted them on leftover scraps of canvas, which was all I could afford at the time. Painting still lives is different from painting people, because the subject, as its name suggests, can't move. People can't sit for more than about 15 minutes at a time, and when they do they don't sit very still. So the traditional m.o. for painting people is to know how to paint a generic person, which you then modify to match the specific person you're painting. Whereas a still life you can, if you want, copy pixel by pixel from what you're seeing. You don't want to stop there, of course, or you get merely photographic accuracy, and what makes a still life interesting is that it's been through a head. You want to emphasize the visual cues that tell you, for example, that the reason the color changes suddenly at a certain point is that it's the edge of an object. By\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee', wins=1), Node(page_content='of an object. By subtly emphasizing such things you can make paintings that are more realistic than photographs not just in some metaphorical sense, but in the strict information-theoretic sense. [4]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='00ad760e-6fbb-43ca-a51c-519425b2aaff'), Node(page_content='I liked painting still lives because I was curious about what I was seeing. In everyday life, we aren\\'t consciously aware of much we\\'re seeing. Most visual perception is handled by low-level processes that merely tell your brain \"that\\'s a water droplet\" without telling you details like where the lightest and darkest points are, or \"that\\'s a bush\" without telling you the shape and position of every leaf. This is a feature of brains, not a bug. In everyday life it would be distracting to notice every leaf on every bush. But when you have to paint something, you have to look more closely, and when you do there\\'s a lot to see. You can still be noticing new things after days of trying to paint something people usually take for granted, just as you can after days of trying to write an essay about something people usually take for granted.\\n\\nThis is not the only way to paint. I\\'m not 100% sure it\\'s even a good way to paint. But it seemed a good enough bet to be worth trying.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f7f0e91c-4312-46dc-b4d1-ff380e0f7227'), Node(page_content=\"Our teacher, professor Ulivi, was a nice guy. He could see I worked hard, and gave me a good grade, which he wrote down in a sort of passport each student had. But the Accademia wasn't teaching me anything except Italian, and my money was running out, so at the end of the first year I went back to the US.\\n\\nI wanted to go back to RISD, but I was now broke and RISD was very expensive, so I decided to get a job for a year and then return to RISD the next fall. I got one at a company called Interleaf, which made software for creating documents. You mean like Microsoft Word? Exactly. That was how I learned that low end software tends to eat high end software. But Interleaf still had a few years to live yet. [5]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='395264d3-3625-46d0-8636-110e597f48b7'), Node(page_content=\"Interleaf had done something pretty bold. Inspired by Emacs, they'd added a scripting language, and even made the scripting language a dialect of Lisp. Now they wanted a Lisp hacker to write things in it. This was the closest thing I've had to a normal job, and I hereby apologize to my boss and coworkers, because I was a bad employee. Their Lisp was the thinnest icing on a giant C cake, and since I didn't know C and didn't want to learn it, I never understood most of the software. Plus I was terribly irresponsible. This was back when a programming job meant showing up every day during certain working hours. That seemed unnatural to me, and on this point the rest of the world is coming around to my way of thinking, but at the time it caused a lot of friction. Toward the end of the year I spent much of my time surreptitiously working on On Lisp, which I had by this time gotten a contract to publish.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='32082230-290a-46db-a914-19f705defd46'), Node(page_content='The good part was that I got paid huge amounts of money, especially by art student standards. In Florence, after paying my part of the rent, my budget for everything else had been $7 a day. Now I was getting paid more than 4 times that every hour, even when I was just sitting in a meeting. By living cheaply I not only managed to save enough to go back to RISD, but also paid off my college loans.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='b102bff3-51da-44e2-9679-ed6445de3808'), Node(page_content=\"I learned some useful things at Interleaf, though they were mostly about what not to do. I learned that it's better for technology companies to be run by product people than sales people (though sales is a real skill and people who are good at it are really good at it), that it leads to bugs when code is edited by too many people, that cheap office space is no bargain if it's depressing, that planned meetings are inferior to corridor conversations, that big, bureaucratic customers are a dangerous source of money, and that there's not much overlap between conventional office hours and the optimal time for hacking, or conventional offices and the optimal place for it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='17ed5227-f4f7-4c2b-a28e-4265a141653e'), Node(page_content='But the most important thing I learned, and which I used in both Viaweb and Y Combinator, is that the low end eats the high end: that it\\'s good to be the \"entry level\" option, even though that will be less prestigious, because if you\\'re not, someone else will be, and will squash you against the ceiling. Which in turn means that prestige is a danger sign.\\n\\nWhen I left to go back to RISD the next fall, I arranged to do freelance work for the group that did projects for customers, and this was how I survived for the next several years. When I came back to visit for a project later on, someone told me about a new thing called HTML, which was, as he described it, a derivative of SGML. Markup language enthusiasts were an occupational hazard at Interleaf and I ignored him, but this HTML thing later became a big part of my life.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='03c17beb-1dbd-4c5a-9445-4d4f0c57379f'), Node(page_content='In the fall of 1992 I moved back to Providence to continue at RISD. The foundation had merely been intro stuff, and the Accademia had been a (very civilized) joke. Now I was going to see what real art school was like. But alas it was more like the Accademia than not. Better organized, certainly, and a lot more expensive, but it was now becoming clear that art school did not bear the same relationship to art that medical school bore to medicine. At least not the painting department. The textile department, which my next door neighbor belonged to, seemed to be pretty rigorous. No doubt illustration and architecture were too. But painting was post-rigorous. Painting students were supposed to express themselves, which to the more worldly ones meant to try to cook up some sort of distinctive signature style.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad27e028-f220-4b7e-a914-a2c67860e511'), Node(page_content='A signature style is the visual equivalent of what in show business is known as a \"schtick\": something that immediately identifies the work as yours and no one else\\'s. For example, when you see a painting that looks like a certain kind of cartoon, you know it\\'s by Roy Lichtenstein. So if you see a big painting of this type hanging in the apartment of a hedge fund manager, you know he paid millions of dollars for it. That\\'s not always why artists have a signature style, but it\\'s usually why buyers pay a lot for such work. [6]\\n\\nThere were plenty of earnest students too: kids who \"could draw\" in high school, and now had come to what was supposed to be the best art school in the country, to learn to draw even better. They tended to be confused and demoralized by what they found at RISD, but they kept going, because painting was what they did. I was not one of the kids who could draw in high school, but at RISD I was definitely closer to their tribe than the tribe of signature style seekers.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d996dddb-ee2a-4347-b6ff-0adf7c382d19'), Node(page_content=\"I learned a lot in the color class I took at RISD, but otherwise I was basically teaching myself to paint, and I could do that for free. So in 1993 I dropped out. I hung around Providence for a bit, and then my college friend Nancy Parmet did me a big favor. A rent-controlled apartment in a building her mother owned in New York was becoming vacant. Did I want it? It wasn't much more than my current place, and New York was supposed to be where the artists were. So yes, I wanted it! [7]\\n\\nAsterix comics begin by zooming in on a tiny corner of Roman Gaul that turns out not to be controlled by the Romans. You can do something similar on a map of New York City: if you zoom in on the Upper East Side, there's a tiny corner that's not rich, or at least wasn't in 1993. It's called Yorkville, and that was my new home. Now I was a New York artist — in the strictly technical sense of making paintings and living in New York.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6849fc6-388f-4476-905f-c07b44d846ff'), Node(page_content=\"I was nervous about money, because I could sense that Interleaf was on the way down. Freelance Lisp hacking work was very rare, and I didn't want to have to program in another language, which in those days would have meant C++ if I was lucky. So with my unerring nose for financial opportunity, I decided to write another book on Lisp. This would be a popular book, the sort of book that could be used as a textbook. I imagined myself living frugally off the royalties and spending all my time painting. (The painting on the cover of this book, ANSI Common Lisp, is one that I painted around this time.)\\n\\nThe best thing about New York for me was the presence of Idelle and Julian Weber. Idelle Weber was a painter, one of the early photorealists, and I'd taken her painting class at Harvard. I've never known a teacher more beloved by her students. Large numbers of former students kept in touch with her, including me. After I moved to New York I became her de facto studio assistant.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='dd3809f5-9bbd-440d-b993-2b25e729584d'), Node(page_content=\"She liked to paint on big, square canvases, 4 to 5 feet on a side. One day in late 1994 as I was stretching one of these monsters there was something on the radio about a famous fund manager. He wasn't that much older than me, and was super rich. The thought suddenly occurred to me: why don't I become rich? Then I'll be able to work on whatever I want.\\n\\nMeanwhile I'd been hearing more and more about this new thing called the World Wide Web. Robert Morris showed it to me when I visited him in Cambridge, where he was now in grad school at Harvard. It seemed to me that the web would be a big deal. I'd seen what graphical user interfaces had done for the popularity of microcomputers. It seemed like the web would do the same for the internet.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6097a0d7-807d-4820-9ecd-7e8e373cc23d'), Node(page_content=\"If I wanted to get rich, here was the next train leaving the station. I was right about that part. What I got wrong was the idea. I decided we should start a company to put art galleries online. I can't honestly say, after reading so many Y Combinator applications, that this was the worst startup idea ever, but it was up there. Art galleries didn't want to be online, and still don't, not the fancy ones. That's not how they sell. I wrote some software to generate web sites for galleries, and Robert wrote some to resize images and set up an http server to serve the pages. Then we tried to sign up galleries. To call this a difficult sale would be an understatement. It was difficult to give away. A few galleries let us make sites for them for free, but none paid us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8821373c-c593-4754-bce4-07fdf2b9bed1'), Node(page_content='Then some online stores started to appear, and I realized that except for the order buttons they were identical to the sites we\\'d been generating for galleries. This impressive-sounding thing called an \"internet storefront\" was something we already knew how to build.\\n\\nSo in the summer of 1995, after I submitted the camera-ready copy of ANSI Common Lisp to the publishers, we started trying to write software to build online stores. At first this was going to be normal desktop software, which in those days meant Windows software. That was an alarming prospect, because neither of us knew how to write Windows software or wanted to learn. We lived in the Unix world. But we decided we\\'d at least try writing a prototype store builder on Unix. Robert wrote a shopping cart, and I wrote a new site generator for stores — in Lisp, of course.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5190c08b-1add-44df-a89c-71da5b21a81f'), Node(page_content=\"We were working out of Robert's apartment in Cambridge. His roommate was away for big chunks of time, during which I got to sleep in his room. For some reason there was no bed frame or sheets, just a mattress on the floor. One morning as I was lying on this mattress I had an idea that made me sit up like a capital L. What if we ran the software on the server, and let users control it by clicking on links? Then we'd never have to write anything to run on users' computers. We could generate the sites on the same server we'd serve them from. Users wouldn't need anything more than a browser.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0c153247-5ff8-48f7-bd31-5139f0fc7302'), Node(page_content=\"This kind of software, known as a web app, is common now, but at the time it wasn't clear that it was even possible. To find out, we decided to try making a version of our store builder that you could control through the browser. A couple days later, on August 12, we had one that worked. The UI was horrible, but it proved you could build a whole store through the browser, without any client software or typing anything into the command line on the server.\\n\\nNow we felt like we were really onto something. I had visions of a whole new generation of software working this way. You wouldn't need versions, or ports, or any of that crap. At Interleaf there had been a whole group called Release Engineering that seemed to be at least as big as the group that actually wrote the software. Now you could just update the software right on the server.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='4ed7e80d-dc07-49eb-8d99-cb33fb56d042'), Node(page_content=\"We started a new company we called Viaweb, after the fact that our software worked via the web, and we got $10,000 in seed funding from Idelle's husband Julian. In return for that and doing the initial legal work and giving us business advice, we gave him 10% of the company. Ten years later this deal became the model for Y Combinator's. We knew founders needed something like this, because we'd needed it ourselves.\\n\\nAt this stage I had a negative net worth, because the thousand dollars or so I had in the bank was more than counterbalanced by what I owed the government in taxes. (Had I diligently set aside the proper proportion of the money I'd made consulting for Interleaf? No, I had not.) So although Robert had his graduate student stipend, I needed that seed funding to live on.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e', wins=1), Node(page_content=\"We originally hoped to launch in September, but we got more ambitious about the software as we worked on it. Eventually we managed to build a WYSIWYG site builder, in the sense that as you were creating pages, they looked exactly like the static ones that would be generated later, except that instead of leading to static pages, the links all referred to closures stored in a hash table on the server.\\n\\nIt helped to have studied art, because the main goal of an online store builder is to make users look legit, and the key to looking legit is high production values. If you get page layouts and fonts and colors right, you can make a guy running a store out of his bedroom look more legit than a big company.\\n\\n(If you're curious why my site looks so old-fashioned, it's because it's still made with this software. It may look clunky today, but in 1996 it was the last word in slick.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1f39257d-0248-4959-b47d-f2447a171058', wins=1), Node(page_content='In September, Robert rebelled. \"We\\'ve been working on this for a month,\" he said, \"and it\\'s still not done.\" This is funny in retrospect, because he would still be working on it almost 3 years later. But I decided it might be prudent to recruit more programmers, and I asked Robert who else in grad school with him was really good. He recommended Trevor Blackwell, which surprised me at first, because at that point I knew Trevor mainly for his plan to reduce everything in his life to a stack of notecards, which he carried around with him. But Rtm was right, as usual. Trevor turned out to be a frighteningly effective hacker.\\n\\nIt was a lot of fun working with Robert and Trevor. They\\'re the two most independent-minded people I know, and in completely different ways. If you could see inside Rtm\\'s brain it would look like a colonial New England church, and if you could see inside Trevor\\'s it would look like the worst excesses of Austrian Rococo.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a5d7623b-6552-4ca9-a712-8cb0986696fe'), Node(page_content=\"We opened for business, with 6 stores, in January 1996. It was just as well we waited a few months, because although we worried we were late, we were actually almost fatally early. There was a lot of talk in the press then about ecommerce, but not many people actually wanted online stores. [8]\\n\\nThere were three main parts to the software: the editor, which people used to build sites and which I wrote, the shopping cart, which Robert wrote, and the manager, which kept track of orders and statistics, and which Trevor wrote. In its time, the editor was one of the best general-purpose site builders. I kept the code tight and didn't have to integrate with any other software except Robert's and Trevor's, so it was quite fun to work on. If all I'd had to do was work on this software, the next 3 years would have been the easiest of my life. Unfortunately I had to do a lot more, all of it stuff I was worse at than programming, and the next 3 years were instead the most stressful.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6e31fe4b-e85c-4ad7-a092-be367364b972', wins=1), Node(page_content=\"There were a lot of startups making ecommerce software in the second half of the 90s. We were determined to be the Microsoft Word, not the Interleaf. Which meant being easy to use and inexpensive. It was lucky for us that we were poor, because that caused us to make Viaweb even more inexpensive than we realized. We charged $100 a month for a small store and $300 a month for a big one. This low price was a big attraction, and a constant thorn in the sides of competitors, but it wasn't because of some clever insight that we set the price low. We had no idea what businesses paid for things. $300 a month seemed like a lot of money to us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7a732a06-6878-41be-9947-1c07a23ea4a7'), Node(page_content='We did a lot of things right by accident like that. For example, we did what\\'s now called \"doing things that don\\'t scale,\" although at the time we would have described it as \"being so lame that we\\'re driven to the most desperate measures to get users.\" The most common of which was building stores for them. This seemed particularly humiliating, since the whole raison d\\'etre of our software was that people could use it to make their own stores. But anything to get users.\\n\\nWe learned a lot more about retail than we wanted to know. For example, that if you could only have a small image of a man\\'s shirt (and all images were small then by present standards), it was better to have a closeup of the collar than a picture of the whole shirt. The reason I remember learning this was that it meant I had to rescan about 30 images of men\\'s shirts. My first set of scans were so beautiful too.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f865fd1-57c6-4f67-ac9d-4f0d17bd751b'), Node(page_content='Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we\\'d have so many users that I couldn\\'t scan their images for them, but in the meantime there was nothing more important to do.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0df392b3-eb59-4359-b340-6e211caa3aae', wins=1), Node(page_content=\"Another thing I didn't get at the time is that growth rate is the ultimate test of a startup. Our growth rate was fine. We had about 70 stores at the end of 1996 and about 500 at the end of 1997. I mistakenly thought the thing that mattered was the absolute number of users. And that is the thing that matters in the sense that that's how much money you're making, and if you're not making enough, you might go out of business. But in the long term the growth rate takes care of the absolute number. If we'd been a startup I was advising at Y Combinator, I would have said: Stop being so stressed out, because you're doing fine. You're growing 7x a year. Just don't hire too many more people and you'll soon be profitable, and then you'll control your own destiny.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d57da0e4-fee3-4442-aa88-7c461dc9c4b4', wins=1), Node(page_content=\"Alas I hired lots more people, partly because our investors wanted me to, and partly because that's what startups did during the Internet Bubble. A company with just a handful of employees would have seemed amateurish. So we didn't reach breakeven until about when Yahoo bought us in the summer of 1998. Which in turn meant we were at the mercy of investors for the entire life of the company. And since both we and our investors were noobs at startups, the result was a mess even by startup standards.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9bc68607-b275-4e2e-877a-8b9f23e349c2'), Node(page_content=\"It was a huge relief when Yahoo bought us. In principle our Viaweb stock was valuable. It was a share in a business that was profitable and growing rapidly. But it didn't feel very valuable to me; I had no idea how to value a business, but I was all too keenly aware of the near-death experiences we seemed to have every few months. Nor had I changed my grad student lifestyle significantly since we started. So when Yahoo bought us it felt like going from rags to riches. Since we were going to California, I bought a car, a yellow 1998 VW GTI. I remember thinking that its leather seats alone were by far the most luxurious thing I owned.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5d19d396-aa70-4bf0-992e-069c632de8ad'), Node(page_content=\"The next year, from the summer of 1998 to the summer of 1999, must have been the least productive of my life. I didn't realize it at the time, but I was worn out from the effort and stress of running Viaweb. For a while after I got to California I tried to continue my usual m.o. of programming till 3 in the morning, but fatigue combined with Yahoo's prematurely aged culture and grim cube farm in Santa Clara gradually dragged me down. After a few months it felt disconcertingly like working at Interleaf.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='56272a9f-8b83-4b82-a1a2-598765c2b068'), Node(page_content=\"Yahoo had given us a lot of options when they bought us. At the time I thought Yahoo was so overvalued that they'd never be worth anything, but to my astonishment the stock went up 5x in the next year. I hung on till the first chunk of options vested, then in the summer of 1999 I left. It had been so long since I'd painted anything that I'd half forgotten why I was doing this. My brain had been entirely full of software and men's shirts for 4 years. But I had done this to get rich so I could paint, I reminded myself, and now I was rich, so I should go paint.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='fd511710-4a0b-4af9-834f-8c2d984a6dd0'), Node(page_content='When I said I was leaving, my boss at Yahoo had a long conversation with me about my plans. I told him all about the kinds of pictures I wanted to paint. At the time I was touched that he took such an interest in me. Now I realize it was because he thought I was lying. My options at that point were worth about $2 million a month. If I was leaving that kind of money on the table, it could only be to go and start some new startup, and if I did, I might take people with me. This was the height of the Internet Bubble, and Yahoo was ground zero of it. My boss was at that moment a billionaire. Leaving then to start a new startup must have seemed to him an insanely, and yet also plausibly, ambitious plan.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8'), Node(page_content=\"But I really was quitting to paint, and I started immediately. There was no time to lose. I'd already burned 4 years getting rich. Now when I talk to founders who are leaving after selling their companies, my advice is always the same: take a vacation. That's what I should have done, just gone off somewhere and done nothing for a month or two, but the idea never occurred to me.\\n\\nSo I tried to paint, but I just didn't seem to have any energy or ambition. Part of the problem was that I didn't know many people in California. I'd compounded this problem by buying a house up in the Santa Cruz Mountains, with a beautiful view but miles from anywhere. I stuck it out for a few more months, then in desperation I went back to New York, where unless you understand about rent control you'll be surprised to hear I still had my apartment, sealed up like a tomb of my old life. Idelle was in New York at least, and there were other people trying to paint there, even though I didn't know any of them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='07e153a7-98c9-45f5-9873-0415175e5887'), Node(page_content=\"When I got back to New York I resumed my old life, except now I was rich. It was as weird as it sounds. I resumed all my old patterns, except now there were doors where there hadn't been. Now when I was tired of walking, all I had to do was raise my hand, and (unless it was raining) a taxi would stop to pick me up. Now when I walked past charming little restaurants I could go in and order lunch. It was exciting for a while. Painting started to go better. I experimented with a new kind of still life where I'd paint one painting in the old way, then photograph it and print it, blown up, on canvas, and then use that as the underpainting for a second still life, painted from the same objects (which hopefully hadn't rotted yet).\\n\\nMeanwhile I looked for an apartment to buy. Now I could actually choose what neighborhood to live in. Where, I asked myself and various real estate agents, is the Cambridge of New York? Aided by occasional visits to actual Cambridge, I gradually realized there wasn't one. Huh.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6f53cbc-6f54-4287-ad99-52473f5e3cfa'), Node(page_content='Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='209c154b-eaa4-4d0c-9ee3-9de983548416', wins=1), Node(page_content=\"I got so excited about this idea that I couldn't think about anything else. It seemed obvious that this was the future. I didn't particularly want to start another company, but it was clear that this idea would have to be embodied as one, so I decided to move to Cambridge and start it. I hoped to lure Robert into working on it with me, but there I ran into a hitch. Robert was now a postdoc at MIT, and though he'd made a lot of money the last time I'd lured him into working on one of my schemes, it had also been a huge time sink. So while he agreed that it sounded like a plausible idea, he firmly refused to work on it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='725c5f11-2423-4e18-bc97-752009c281de'), Node(page_content='Hmph. Well, I\\'d do it myself then. I recruited Dan Giffin, who had worked for Viaweb, and two undergrads who wanted summer jobs, and we got to work trying to build what it\\'s now clear is about twenty companies and several open source projects worth of software. The language for defining applications would of course be a dialect of Lisp. But I wasn\\'t so naive as to assume I could spring an overt Lisp on a general audience; we\\'d hide the parentheses, like Dylan did.\\n\\nBy then there was a name for the kind of company Viaweb was, an \"application service provider,\" or ASP. This name didn\\'t last long before it was replaced by \"software as a service,\" but it was current for long enough that I named this new company after it: it was going to be called Aspra.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9b17eb54-1f33-4904-bc1a-b18254f2f85a', wins=1), Node(page_content=\"I started working on the application builder, Dan worked on network infrastructure, and the two undergrads worked on the first two services (images and phone calls). But about halfway through the summer I realized I really didn't want to run a company — especially not a big one, which it was looking like this would have to be. I'd only started Viaweb because I needed the money. Now that I didn't need money anymore, why was I doing this? If this vision had to be realized as a company, then screw the vision. I'd build a subset that could be done as an open source project.\\n\\nMuch to my surprise, the time I spent working on this stuff was not wasted after all. After we started Y Combinator, I would often encounter startups working on parts of this new architecture, and it was very useful to have spent so much time thinking about it and even trying to write some of it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1185a7b9-b8da-441e-89b1-12b8a81c2502', wins=1), Node(page_content=\"The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='33017a92-fecc-4bf1-ae08-cc414c62cbf7', wins=1), Node(page_content=\"Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a746d02f-1466-434d-addd-04b936502bec', wins=1), Node(page_content=\"In the print era, the channel for publishing essays had been vanishingly small. Except for a few officially anointed thinkers who went to the right parties in New York, the only people allowed to publish essays were specialists writing about their specialties. There were so many essays that had never been written, because there had been no way to publish them. Now they could be, and I was going to write them. [12]\\n\\nI've worked on several different things, but to the extent there was a turning point where I figured out what to work on, it was when I started publishing essays online. From then on I knew that whatever else I did, I'd always write essays too.\\n\\nI knew that online essays would be a marginal medium at first. Socially they'd seem more like rants posted by nutjobs on their GeoCities sites than the genteel and beautifully typeset compositions published in The New Yorker. But by this point I knew enough to find that encouraging instead of discouraging.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881', wins=1), Node(page_content=\"One of the most conspicuous patterns I've noticed in my life is how well it has worked, for me at least, to work on things that weren't prestigious. Still life has always been the least prestigious form of painting. Viaweb and Y Combinator both seemed lame when we started them. I still get the glassy eye from strangers when they ask what I'm writing, and I explain that it's an essay I'm going to publish on my web site. Even Lisp, though prestigious intellectually in something like the way Latin is, also seems about as hip.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='836f9505-8112-4300-a484-655731655443', wins=1), Node(page_content=\"It's not that unprestigious types of work are good per se. But when you find yourself drawn to some kind of work despite its current lack of prestige, it's a sign both that there's something real to be discovered there, and that you have the right kind of motives. Impure motives are a big danger for the ambitious. If anything is going to lead you astray, it will be the desire to impress people. So while working on things that aren't prestigious doesn't guarantee you're on the right track, it at least guarantees you're not on the most common type of wrong one.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad36fb50-0350-45a4-925e-29f0980a9cba', wins=2), Node(page_content=\"Over the next several years I wrote lots of essays about all kinds of different topics. O'Reilly reprinted a collection of them as a book, called Hackers & Painters after one of the essays in it. I also worked on spam filters, and did some more painting. I used to have dinners for a group of friends every thursday night, which taught me how to cook for groups. And I bought another building in Cambridge, a former candy factory (and later, twas said, porn studio), to use as an office.\\n\\nOne night in October 2003 there was a big party at my house. It was a clever idea of my friend Maria Daniels, who was one of the thursday diners. Three separate hosts would all invite their friends to one party. So for every guest, two thirds of the other guests would be people they didn't know but would probably like. One of the guests was someone I didn't know but would turn out to like a lot: a woman called Jessica Livingston. A couple days later I asked her out.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='271b9209-34c1-4eb9-a7d4-5c8cb047c3a7'), Node(page_content='Jessica was in charge of marketing at a Boston investment bank. This bank thought it understood startups, but over the next year, as she met friends of mine from the startup world, she was surprised how different reality was. And how colorful their stories were. So she decided to compile a book of interviews with startup founders.\\n\\nWhen the bank had financial problems and she had to fire half her staff, she started looking for a new job. In early 2005 she interviewed for a marketing job at a Boston VC firm. It took them weeks to make up their minds, and during this time I started telling her about all the things that needed to be fixed about venture capital. They should make a larger number of smaller investments instead of a handful of giant ones, they should be funding younger, more technical founders instead of MBAs, they should let the founders remain as CEO, and so on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc'), Node(page_content=\"One of my tricks for writing essays had always been to give talks. The prospect of having to stand up in front of a group of people and tell them something that won't waste their time is a great spur to the imagination. When the Harvard Computer Society, the undergrad computer club, asked me to give a talk, I decided I would tell them how to start a startup. Maybe they'd be able to avoid the worst of the mistakes we'd made.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce520b00-c87c-4bfe-a179-0fa11c9d5273', wins=1), Node(page_content='So I gave this talk, in the course of which I told them that the best sources of seed funding were successful startup founders, because then they\\'d be sources of advice too. Whereupon it seemed they were all looking expectantly at me. Horrified at the prospect of having my inbox flooded by business plans (if I\\'d only known), I blurted out \"But not me!\" and went on with the talk. But afterward it occurred to me that I should really stop procrastinating about angel investing. I\\'d been meaning to since Yahoo bought us, and now it was 7 years later and I still hadn\\'t done one angel investment.\\n\\nMeanwhile I had been scheming with Robert and Trevor about projects we could work on together. I missed working with them, and it seemed like there had to be something we could collaborate on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e9a82e89-0d8f-480b-9f26-1acfffaab9a1'), Node(page_content=\"As Jessica and I were walking home from dinner on March 11, at the corner of Garden and Walker streets, these three threads converged. Screw the VCs who were taking so long to make up their minds. We'd start our own investment firm and actually implement the ideas we'd been talking about. I'd fund it, and Jessica could quit her job and work for it, and we'd get Robert and Trevor as partners too. [13]\\n\\nOnce again, ignorance worked in our favor. We had no idea how to be angel investors, and in Boston in 2005 there were no Ron Conways to learn from. So we just made what seemed like the obvious choices, and some of the things we did turned out to be novel.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='073bc744-8e07-42e7-8595-39496927fe88'), Node(page_content=\"There are multiple components to Y Combinator, and we didn't figure them all out at once. The part we got first was to be an angel firm. In those days, those two words didn't go together. There were VC firms, which were organized companies with people whose job it was to make investments, but they only did big, million dollar investments. And there were angels, who did smaller investments, but these were individuals who were usually focused on other things and made investments on the side. And neither of them helped founders enough in the beginning. We knew how helpless founders were in some respects, because we remembered how helpless we'd been. For example, one thing Julian had done for us that seemed to us like magic was to get us set up as a company. We were fine writing fairly difficult software, but actually getting incorporated, with bylaws and stock and all that stuff, how on earth did you do that? Our plan was not only to make seed investments, but to do for startups everything Julian had done for\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7ffe9bfd-9225-407c-9048-5ae1b0f25fc6'), Node(page_content='Julian had done for us.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='83ef6c3c-2575-48c1-bf79-8376e2afe2e1'), Node(page_content='YC was not organized as a fund. It was cheap enough to run that we funded it with our own money. That went right by 99% of readers, but professional investors are thinking \"Wow, that means they got all the returns.\" But once again, this was not due to any particular insight on our part. We didn\\'t know how VC firms were organized. It never occurred to us to try to raise a fund, and if it had, we wouldn\\'t have known where to start. [14]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f4142432-6daa-4c6b-ad89-00e3712c373c', wins=1), Node(page_content=\"The most distinctive thing about YC is the batch model: to fund a bunch of startups all at once, twice a year, and then to spend three months focusing intensively on trying to help them. That part we discovered by accident, not merely implicitly but explicitly due to our ignorance about investing. We needed to get experience as investors. What better way, we thought, than to fund a whole bunch of startups at once? We knew undergrads got temporary jobs at tech companies during the summer. Why not organize a summer program where they'd start startups instead? We wouldn't feel guilty for being in a sense fake investors, because they would in a similar sense be fake founders. So while we probably wouldn't make much money out of it, we'd at least get to practice being investors on them, and they for their part would probably have a more interesting summer than they would working at Microsoft.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4c983c2-a43c-49f6-9ca0-db73867728a9', wins=1), Node(page_content='We\\'d use the building I owned in Cambridge as our headquarters. We\\'d all have dinner there once a week — on tuesdays, since I was already cooking for the thursday diners on thursdays — and after dinner we\\'d bring in experts on startups to give talks.\\n\\nWe knew undergrads were deciding then about summer jobs, so in a matter of days we cooked up something we called the Summer Founders Program, and I posted an announcement on my site, inviting undergrads to apply. I had never imagined that writing essays would be a way to get \"deal flow,\" as investors call it, but it turned out to be the perfect source. [15] We got 225 applications for the Summer Founders Program, and we were surprised to find that a lot of them were from people who\\'d already graduated, or were about to that spring. Already this SFP thing was starting to feel more serious than we\\'d intended.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0198787d-a061-45f0-92d5-e45f6e7ae912'), Node(page_content=\"We invited about 20 of the 225 groups to interview in person, and from those we picked 8 to fund. They were an impressive group. That first batch included reddit, Justin Kan and Emmett Shear, who went on to found Twitch, Aaron Swartz, who had already helped write the RSS spec and would a few years later become a martyr for open access, and Sam Altman, who would later become the second president of YC. I don't think it was entirely luck that the first batch was so good. You had to be pretty bold to sign up for a weird thing like the Summer Founders Program instead of a summer job at a legit place like Microsoft or Goldman Sachs.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='745dd18f-832f-4d1e-b688-319f7c617464'), Node(page_content='The deal for startups was based on a combination of the deal we did with Julian ($10k for 10%) and what Robert said MIT grad students got for the summer ($6k). We invested $6k per founder, which in the typical two-founder case was $12k, in return for 6%. That had to be fair, because it was twice as good as the deal we ourselves had taken. Plus that first summer, which was really hot, Jessica brought the founders free air conditioners. [16]\\n\\nFairly quickly I realized that we had stumbled upon the way to scale startup funding. Funding startups in batches was more convenient for us, because it meant we could do things for a lot of startups at once, but being part of a batch was better for the startups too. It solved one of the biggest problems faced by founders: the isolation. Now you not only had colleagues, but colleagues who understood the problems you were facing and could tell you how they were solving them.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='bf8387d0-b094-4f59-8c13-ca1014ea67ac'), Node(page_content='As YC grew, we started to notice other advantages of scale. The alumni became a tight community, dedicated to helping one another, and especially the current batch, whose shoes they remembered being in. We also noticed that the startups were becoming one another\\'s customers. We used to refer jokingly to the \"YC GDP,\" but as YC grows this becomes less and less of a joke. Now lots of startups get their initial set of customers almost entirely from among their batchmates.\\n\\nI had not originally intended YC to be a full-time job. I was going to do three things: hack, write essays, and work on YC. As YC grew, and I grew more excited about it, it started to take up a lot more than a third of my attention. But for the first few years I was still able to work on other things.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='526ba90a-5223-4530-a966-baea4886bdc1', wins=1), Node(page_content=\"In the summer of 2006, Robert and I started working on a new version of Arc. This one was reasonably fast, because it was compiled into Scheme. To test this new Arc, I wrote Hacker News in it. It was originally meant to be a news aggregator for startup founders and was called Startup News, but after a few months I got tired of reading about nothing but startups. Plus it wasn't startup founders we wanted to reach. It was future startup founders. So I changed the name to Hacker News and the topic to whatever engaged one's intellectual curiosity.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='aa1dfbc4-133a-4f2d-99fe-c0ebce320d09'), Node(page_content=\"HN was no doubt good for YC, but it was also by far the biggest source of stress for me. If all I'd had to do was select and help founders, life would have been so easy. And that implies that HN was a mistake. Surely the biggest source of stress in one's work should at least be something close to the core of the work. Whereas I was like someone who was in pain while running a marathon not from the exertion of running, but because I had a blister from an ill-fitting shoe. When I was dealing with some urgent problem during YC, there was about a 60% chance it had to do with HN, and a 40% chance it had do with everything else combined. [17]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c8505964-4597-440a-9044-033cf10ca40e'), Node(page_content=\"As well as HN, I wrote all of YC's internal software in Arc. But while I continued to work a good deal in Arc, I gradually stopped working on Arc, partly because I didn't have time to, and partly because it was a lot less attractive to mess around with the language now that we had all this infrastructure depending on it. So now my three projects were reduced to two: writing essays and working on YC.\\n\\nYC was different from other kinds of work I've done. Instead of deciding for myself what to work on, the problems came to me. Every 6 months there was a new batch of startups, and their problems, whatever they were, became our problems. It was very engaging work, because their problems were quite varied, and the good founders were very effective. If you were trying to learn the most you could about startups in the shortest possible time, you couldn't have picked a better way to do it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='251faa7a-72ec-4bd9-ad69-1af024efbbc4'), Node(page_content='There were parts of the job I didn\\'t like. Disputes between cofounders, figuring out when people were lying to us, fighting with people who maltreated the startups, and so on. But I worked hard even at the parts I didn\\'t like. I was haunted by something Kevin Hale once said about companies: \"No one works harder than the boss.\" He meant it both descriptively and prescriptively, and it was the second part that scared me. I wanted YC to be good, so if how hard I worked set the upper bound on how hard everyone else worked, I\\'d better work very hard.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='454a991d-29ac-4982-a8e5-72a02f0ef5a2'), Node(page_content='One day in 2010, when he was visiting California for interviews, Robert Morris did something astonishing: he offered me unsolicited advice. I can only remember him doing that once before. One day at Viaweb, when I was bent over double from a kidney stone, he suggested that it would be a good idea for him to take me to the hospital. That was what it took for Rtm to offer unsolicited advice. So I remember his exact words very clearly. \"You know,\" he said, \"you should make sure Y Combinator isn\\'t the last cool thing you do.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edd1ff8d-62c3-4e10-95c6-6ef7b27a4531'), Node(page_content=\"At the time I didn't understand what he meant, but gradually it dawned on me that he was saying I should quit. This seemed strange advice, because YC was doing great. But if there was one thing rarer than Rtm offering advice, it was Rtm being wrong. So this set me thinking. It was true that on my current trajectory, YC would be the last thing I did, because it was only taking up more of my attention. It had already eaten Arc, and was in the process of eating essays too. Either YC was my life's work or I'd have to leave eventually. And it wasn't, so I would.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='71c27b46-b79b-48ef-ad7e-3a0400ece844'), Node(page_content=\"In the summer of 2012 my mother had a stroke, and the cause turned out to be a blood clot caused by colon cancer. The stroke destroyed her balance, and she was put in a nursing home, but she really wanted to get out of it and back to her house, and my sister and I were determined to help her do it. I used to fly up to Oregon to visit her regularly, and I had a lot of time to think on those flights. On one of them I realized I was ready to hand YC over to someone else.\\n\\nI asked Jessica if she wanted to be president, but she didn't, so we decided we'd try to recruit Sam Altman. We talked to Robert and Trevor and we agreed to make it a complete changing of the guard. Up till that point YC had been controlled by the original LLC we four had started. But we wanted YC to last for a long time, and to do that it couldn't be controlled by the founders. So if Sam said yes, we'd let him reorganize YC. Robert and I would retire, and Jessica and Trevor would become ordinary partners.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='949a121e-1e69-45a4-98cd-e7f7c47c8bf9'), Node(page_content=\"When we asked Sam if he wanted to be president of YC, initially he said no. He wanted to start a startup to make nuclear reactors. But I kept at it, and in October 2013 he finally agreed. We decided he'd take over starting with the winter 2014 batch. For the rest of 2013 I left running YC more and more to Sam, partly so he could learn the job, and partly because I was focused on my mother, whose cancer had returned.\\n\\nShe died on January 15, 2014. We knew this was coming, but it was still hard when it did.\\n\\nI kept working on YC till March, to help get that batch of startups through Demo Day, then I checked out pretty completely. (I still talk to alumni and to new startups working on things I'm interested in, but that only takes a few hours a week.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ee41cd68-792e-4ebf-aa6c-672740604a7e'), Node(page_content=\"What should I do next? Rtm's advice hadn't included anything about that. I wanted to do something completely different, so I decided I'd paint. I wanted to see how good I could get if I really focused on it. So the day after I stopped working on YC, I started painting. I was rusty and it took a while to get back into shape, but it was at least completely engaging. [18]\\n\\nI spent most of the rest of 2014 painting. I'd never been able to work so uninterruptedly before, and I got to be better than I had been. Not good enough, but better. Then in November, right in the middle of a painting, I ran out of steam. Up till that point I'd always been curious to see how the painting I was working on would turn out, but suddenly finishing this one seemed like a chore. So I stopped working on it and cleaned my brushes and haven't painted since. So far anyway.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='70bcf8a8-1e2c-4cbd-a93f-ade0c453e437'), Node(page_content=\"I realize that sounds rather wimpy. But attention is a zero sum game. If you can choose what to work on, and you choose a project that's not the best one (or at least a good one) for you, then it's getting in the way of another project that is. And at 50 there was some opportunity cost to screwing around.\\n\\nI started writing essays again, and wrote a bunch of new ones over the next few months. I even wrote a couple that weren't about startups. Then in March 2015 I started working on Lisp again.\\n\\nThe distinctive thing about Lisp is that its core is a language defined by writing an interpreter in itself. It wasn't originally intended as a programming language in the ordinary sense. It was meant to be a formal model of computation, an alternative to the Turing machine. If you want to write an interpreter for a language in itself, what's the minimum set of predefined operators you need? The Lisp that John McCarthy invented, or more accurately discovered, is an answer to that question. [19]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='de347d59-7d93-4174-b095-30666d86c163'), Node(page_content=\"McCarthy didn't realize this Lisp could even be used to program computers till his grad student Steve Russell suggested it. Russell translated McCarthy's interpreter into IBM 704 machine language, and from that point Lisp started also to be a programming language in the ordinary sense. But its origins as a model of computation gave it a power and elegance that other languages couldn't match. It was this that attracted me in college, though I didn't understand why at the time.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d8717b54-2764-42ab-a7b9-7dc8f36ee9b4'), Node(page_content=\"McCarthy's 1960 Lisp did nothing more than interpret Lisp expressions. It was missing a lot of things you'd want in a programming language. So these had to be added, and when they were, they weren't defined using McCarthy's original axiomatic approach. That wouldn't have been feasible at the time. McCarthy tested his interpreter by hand-simulating the execution of programs. But it was already getting close to the limit of interpreters you could test that way — indeed, there was a bug in it that McCarthy had overlooked. To test a more complicated interpreter, you'd have had to run it, and computers then weren't powerful enough.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ab5cf714-67cb-4e35-a7a5-cef31b3093c2'), Node(page_content=\"Now they are, though. Now you could continue using McCarthy's axiomatic approach till you'd defined a complete programming language. And as long as every change you made to McCarthy's Lisp was a discoveredness-preserving transformation, you could, in principle, end up with a complete language that had this quality. Harder to do than to talk about, of course, but if it was possible in principle, why not try? So I decided to take a shot at it. It took 4 years, from March 26, 2015 to October 12, 2019. It was fortunate that I had a precisely defined goal, or it would have been hard to keep at it for so long.\\n\\nI wrote this new Lisp, called Bel, in itself in Arc. That may sound like a contradiction, but it's an indication of the sort of trickery I had to engage in to make this work. By means of an egregious collection of hacks I managed to make something close enough to an interpreter written in itself that could actually run. Not fast, but fast enough to test.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ccc691c6-2730-445f-a301-3e6d29614239'), Node(page_content='I had to ban myself from writing essays during most of this time, or I\\'d never have finished. In late 2015 I spent 3 months writing essays, and when I went back to working on Bel I could barely understand the code. Not so much because it was badly written as because the problem is so convoluted. When you\\'re working on an interpreter written in itself, it\\'s hard to keep track of what\\'s happening at what level, and errors can be practically encrypted by the time you get them.\\n\\nSo I said no more essays till Bel was done. But I told few people about Bel while I was working on it. So for years it must have seemed that I was doing nothing, when in fact I was working harder than I\\'d ever worked on anything. Occasionally after wrestling for hours with some gruesome bug I\\'d check Twitter or HN and see someone asking \"Does Paul Graham still code?\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6c6c1376-f7e2-4435-84ea-1324fd16912e'), Node(page_content=\"Working on Bel was hard but satisfying. I worked on it so intensively that at any given time I had a decent chunk of the code in my head and could write more there. I remember taking the boys to the coast on a sunny day in 2015 and figuring out how to deal with some problem involving continuations while I watched them play in the tide pools. It felt like I was doing life right. I remember that because I was slightly dismayed at how novel it felt. The good news is that I had more moments like this over the next few years.\\n\\nIn the summer of 2016 we moved to England. We wanted our kids to see what it was like living in another country, and since I was a British citizen by birth, that seemed the obvious choice. We only meant to stay for a year, but we liked it so much that we still live there. So most of Bel was written in England.\\n\\nIn the fall of 2019, Bel was finally finished. Like McCarthy's original Lisp, it's a spec rather than an implementation, although like McCarthy's Lisp it's a spec expressed as code.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f927fda-431c-4163-9b61-6b3c9eff403b'), Node(page_content=\"Now that I could write essays again, I wrote a bunch about topics I'd had stacked up. I kept writing essays through 2020, but I also started to think about other things I could work on. How should I choose what to do? Well, how had I chosen what to work on in the past? I wrote an essay for myself to answer that question, and I was surprised how long and messy the answer turned out to be. If this surprised me, who'd lived it, then I thought perhaps it would be interesting to other people, and encouraging to those with similarly messy lives. So I wrote a more detailed version for others to read, and this is the last sentence of it.\\n\\nNotes\\n\\n[1] My experience skipped a step in the evolution of computers: time-sharing machines with interactive OSes. I went straight from batch processing to microcomputers, which made microcomputers seem all the more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6af9ede9-1b89-44db-a81f-20ce45d1802a'), Node(page_content=\"[2] Italian words for abstract concepts can nearly always be predicted from their English cognates (except for occasional traps like polluzione). It's the everyday words that differ. So if you string together a lot of abstract concepts with a few simple verbs, you can make a little Italian go a long way.\\n\\n[3] I lived at Piazza San Felice 4, so my walk to the Accademia went straight down the spine of old Florence: past the Pitti, across the bridge, past Orsanmichele, between the Duomo and the Baptistery, and then up Via Ricasoli to Piazza San Marco. I saw Florence at street level in every possible condition, from empty dark winter evenings to sweltering summer days when the streets were packed with tourists.\\n\\n[4] You can of course paint people like still lives if you want to, and they're willing. That sort of portrait is arguably the apex of still life painting, though the long sitting does tend to produce pained expressions in the sitters.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='67d6eed8-0267-4500-a3b2-8c7ed2ac83a6'), Node(page_content=\"[5] Interleaf was one of many companies that had smart people and built impressive technology, and yet got crushed by Moore's Law. In the 1990s the exponential growth in the power of commodity (i.e. Intel) processors rolled up high-end, special-purpose hardware and software companies like a bulldozer.\\n\\n[6] The signature style seekers at RISD weren't specifically mercenary. In the art world, money and coolness are tightly coupled. Anything expensive comes to be seen as cool, and anything seen as cool will soon become equally expensive.\\n\\n[7] Technically the apartment wasn't rent-controlled but rent-stabilized, but this is a refinement only New Yorkers would know or care about. The point is that it was really cheap, less than half market price.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edacd5b2-60d6-434b-ac59-273dd42896e8'), Node(page_content=\"[8] Most software you can launch as soon as it's done. But when the software is an online store builder and you're hosting the stores, if you don't have any users yet, that fact will be painfully obvious. So before we could launch publicly we had to launch privately, in the sense of recruiting an initial set of users and making sure they had decent-looking stores.\\n\\n[9] We'd had a code editor in Viaweb for users to define their own page styles. They didn't know it, but they were editing Lisp expressions underneath. But this wasn't an app editor, because the code ran when the merchants' sites were generated, not when shoppers visited them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='46a2d3c9-dcd7-4d1d-a520-af1518532c01'), Node(page_content=\"[10] This was the first instance of what is now a familiar experience, and so was what happened next, when I read the comments and found they were full of angry people. How could I claim that Lisp was better than other languages? Weren't they all Turing complete? People who see the responses to essays I write sometimes tell me how sorry they feel for me, but I'm not exaggerating when I reply that it has always been like this, since the very beginning. It comes with the territory. An essay must tell readers things they don't already know, and some people dislike being told such things.\\n\\n[11] People put plenty of stuff on the internet in the 90s of course, but putting something online is not the same as publishing it online. Publishing online means you treat the online version as the (or at least a) primary version.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4bd607d-62be-4ee7-a34d-3bd5305da820', wins=1), Node(page_content=\"[12] There is a general lesson here that our experience with Y Combinator also teaches: Customs continue to constrain you long after the restrictions that caused them have disappeared. Customary VC practice had once, like the customs about publishing essays, been based on real constraints. Startups had once been much more expensive to start, and proportionally rare. Now they could be cheap and common, but the VCs' customs still reflected the old world, just as customs about writing essays still reflected the constraints of the print era.\\n\\nWhich in turn implies that people who are independent-minded (i.e. less influenced by custom) will have an advantage in fields affected by rapid change (where customs are more likely to be obsolete).\\n\\nHere's an interesting point, though: you can't always predict which fields will be affected by rapid change. Obviously software and venture capital will be, but who would have predicted that essay writing would be?\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6d435c9f-7f32-4be9-931b-854ce5d29546', wins=1), Node(page_content=\"[13] Y Combinator was not the original name. At first we were called Cambridge Seed. But we didn't want a regional name, in case someone copied us in Silicon Valley, so we renamed ourselves after one of the coolest tricks in the lambda calculus, the Y combinator.\\n\\nI picked orange as our color partly because it's the warmest, and partly because no VC used it. In 2005 all the VCs used staid colors like maroon, navy blue, and forest green, because they were trying to appeal to LPs, not founders. The YC logo itself is an inside joke: the Viaweb logo had been a white V on a red circle, so I made the YC logo a white Y on an orange square.\\n\\n[14] YC did become a fund for a couple years starting in 2009, because it was getting so big I could no longer afford to fund it personally. But after Heroku got bought we had enough money to go back to being self-funded.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e', wins=1), Node(page_content='[15] I\\'ve never liked the term \"deal flow,\" because it implies that the number of new startups at any given time is fixed. This is not only false, but it\\'s the purpose of YC to falsify it, by causing startups to be founded that would not otherwise have existed.\\n\\n[16] She reports that they were all different shapes and sizes, because there was a run on air conditioners and she had to get whatever she could, but that they were all heavier than she could carry now.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='27b2bd1d-8de5-4424-ba1f-323592eaf441'), Node(page_content=\"[17] Another problem with HN was a bizarre edge case that occurs when you both write essays and run a forum. When you run a forum, you're assumed to see if not every conversation, at least every conversation involving you. And when you write essays, people post highly imaginative misinterpretations of them on forums. Individually these two phenomena are tedious but bearable, but the combination is disastrous. You actually have to respond to the misinterpretations, because the assumption that you're present in the conversation means that not responding to any sufficiently upvoted misinterpretation reads as a tacit admission that it's correct. But that in turn encourages more; anyone who wants to pick a fight with you senses that now is their chance.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edabe432-0c59-4ba5-aa37-d5cddb072669'), Node(page_content=\"[18] The worst thing about leaving YC was not working with Jessica anymore. We'd been working on YC almost the whole time we'd known each other, and we'd neither tried nor wanted to separate it from our personal lives, so leaving was like pulling up a deeply rooted tree.\\n\\n[19] One way to get more precise about the concept of invented vs discovered is to talk about space aliens. Any sufficiently advanced alien civilization would certainly know about the Pythagorean theorem, for example. I believe, though with less certainty, that they would also know about the Lisp in McCarthy's 1960 paper.\\n\\nBut if so there's no reason to suppose that this is the limit of the language that might be known to them. Presumably aliens need numbers and errors and I/O too. So it seems likely there exists at least one path out of McCarthy's Lisp along which discoveredness is preserved.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e508308d-e2bf-46db-a3c4-c98d86a7d9d4'), Node(page_content='Thanks to Trevor Blackwell, John Collison, Patrick Collison, Daniel Gackle, Ralph Hazell, Jessica Livingston, Robert Morris, and Harj Taggar for reading drafts of this.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='cf0b9256-68dd-4e82-86f0-7a7464e0d0fe')], node_embeddings_list=[[-0.4864840507507324, 1.4953278303146362, -2.483095169067383, -0.13090671598911285, 0.5388283133506775, 0.03263700380921364, 1.6049073934555054, 0.36927375197410583, 0.376899778842926, -0.32016417384147644, 0.07661844789981842, -0.5045113563537598, 0.9932118654251099, 0.46091392636299133, 0.7749782800674438, 0.9791772365570068, 0.8240299224853516, -0.8413733839988708, 0.6601390242576599, 1.3214250802993774, -0.0014541863929480314, -0.4771997928619385, 0.07429936528205872, 0.03984106332063675, -0.09612180292606354, -0.12854205071926117, -1.0106065273284912, -0.13552778959274292, -1.2062469720840454, -1.2566789388656616, 0.09926658868789673, -0.5969429612159729, 0.0797877088189125, -0.5030465722084045, -0.863521158695221, 0.22742527723312378, 1.751513957977295, 1.4107850790023804, 0.6539307832717896, -0.049645375460386276, 1.7124297618865967, -0.6065614223480225, -0.09038663655519485, -1.2873902320861816, 0.6141224503517151, -0.7533595561981201, 1.3934601545333862, -0.8361425399780273, 0.12231005728244781, -0.02527104876935482, -0.8479353785514832, -0.388369083404541, 0.9572935104370117, 0.6533073782920837, 0.3450480103492737, 0.10119814425706863, 0.5645934343338013, 0.3290162682533264, 0.7490019202232361, -0.8425675630569458, 0.8562667965888977, 0.2986101508140564, -0.16312725841999054, 0.956280529499054, 0.18660210072994232, -0.7380489706993103, 0.19443431496620178, -0.042870186269283295, -0.9188985228538513, -0.32503587007522583, 0.37486231327056885, -0.12768426537513733, 0.10120801627635956, 0.5478570461273193, -1.463741660118103, 0.7016229033470154, 0.8774287104606628, 0.6986828446388245, 0.242282435297966, 0.918313205242157, -0.18654917180538177, -0.5197450518608093, 0.6731451153755188, -0.34729307889938354, 0.5859284996986389, -0.20247028768062592, 0.5007225871086121, -0.4599517583847046, -0.6350828409194946, 1.3337548971176147, 0.6650770306587219, 0.27963149547576904, 0.745192289352417, 0.1925511658191681, -0.706494152545929, -0.456095814704895, 0.3918251693248749, 0.5511340498924255, -0.8179551959037781, -0.5342932343482971, -1.003893494606018, -0.8676432967185974, 0.4654110372066498, 0.14215533435344696, -0.26477742195129395, 1.1163444519042969, 0.9311187267303467, -0.2409319430589676, -0.7403976917266846, -0.14410300552845, -0.11927824467420578, 0.24945108592510223, -0.831882119178772, -1.1742546558380127, -0.6094582676887512, 1.3488527536392212, 1.680446982383728, -0.43459680676460266, 1.1821043491363525, 1.0273462533950806, 0.4146674871444702, -0.9667333364486694, -0.2677384614944458, 0.8891524076461792, 0.4087006151676178, 0.14999008178710938, -0.7848932147026062, -1.168020248413086, 0.04931287094950676, -0.007302671205252409, 0.3466438353061676, 0.08718530088663101, -0.25867927074432373, 0.6377221345901489, -1.0164848566055298, 0.940284013748169, -0.4555308520793915, -0.4656195640563965, 0.10037780553102493, -0.4937652349472046, 0.41780993342399597, -0.38811758160591125, -0.299204021692276, -0.3402453064918518, 0.21063047647476196, -0.37330830097198486, 0.1334509402513504, -0.8741703629493713, -0.6385286450386047, 0.08279707282781601, -1.0080052614212036, 0.27800291776657104, 0.6665276885032654, 0.19590061902999878, -0.03686940297484398, -0.06524474173784256, 0.35422196984291077, 0.45578640699386597, 0.49152231216430664, 0.3231486976146698, 1.0174719095230103, -0.21855074167251587, -0.9000975489616394, 0.6486086249351501, 0.7941189408302307, -0.7382852435112, 0.3381063640117645, 0.49302586913108826, 0.5660306215286255, 1.0242059230804443, -0.22204113006591797, -0.8297144770622253, -0.26603496074676514, 0.15612533688545227, -0.13804891705513, -0.5354702472686768, 1.7772196531295776, -0.41576120257377625, -1.4959434270858765, -0.9221198558807373, 0.8635861277580261, -0.5337693095207214, 0.5428102016448975, -0.12925800681114197, -0.006798029411584139, -0.6638987064361572, 0.7628021240234375, 0.1651991903781891, -0.8000989556312561, -0.5578874945640564, -0.28020697832107544, 0.04170459136366844, -0.5740565061569214, 0.10696211457252502, -0.7794063091278076, -0.07896891236305237, 0.2929765582084656, -1.9465612173080444, -0.4136141538619995, -0.17718680202960968, -0.5294054746627808, -0.18766257166862488, -0.5769191980361938, 0.9238768815994263, -0.5683004260063171, 1.148861289024353, -0.9523991346359253, 0.9919272661209106, -0.5582164525985718, 0.5712845921516418, 0.6332875490188599, 0.03987528011202812, -0.6593706011772156, 0.8304091095924377, -0.29218727350234985, -1.5043035745620728, -0.06861027330160141, 0.604152500629425, -0.8428583741188049, 0.02139166370034218, 0.11010527610778809, -0.0374000184237957, 0.3474631607532501, 0.134092777967453, 0.24004912376403809, 0.06575784832239151, -0.6132557988166809, -0.449791818857193, -1.0398544073104858, 0.06678025424480438, -0.5211718082427979, -0.7613722681999207, 0.6515987515449524, -0.1048809140920639, -0.7440483570098877, -0.14736463129520416, 0.12449736148118973, 1.358614444732666, 0.3712126910686493, 1.3060123920440674, 0.32902052998542786, 0.4818570613861084, 0.16507375240325928, -0.403365820646286, -0.2599639594554901, 1.0439560413360596, 0.5630043148994446, -0.03142046555876732, 0.23179379105567932, 1.161116361618042, 1.357587456703186, -0.27601414918899536, 0.9227680563926697, 0.07535906136035919, -0.1400170624256134, -0.7634768486022949, -0.9875643253326416, 0.49662089347839355, -0.3044302761554718, 1.8602900505065918, 0.6348282098770142, -1.1338945627212524, 0.258952260017395, 0.05048736184835434, -0.41620317101478577, -0.46701309084892273, -0.6092929244041443, -0.8003408908843994, -0.4618443250656128, -0.21072936058044434, -0.6562128663063049, 0.37345728278160095, -0.1380358338356018, 0.44051072001457214, -0.7580539584159851, -1.3042107820510864, -0.6466823220252991, 0.057890791445970535, -0.25264856219291687, 1.4553565979003906, 0.495835542678833, -1.2061182260513306, -0.36699068546295166, 0.3047058582305908, 0.6620574593544006, 0.610964834690094, -0.009077725000679493, 0.6451467871665955, 0.35781168937683105, -1.033898115158081, 0.05771877244114876, 0.09978344291448593, -0.01823464408516884, -0.11920860409736633, -0.34799909591674805, 0.6403312087059021, 1.4997375011444092, -1.1170541048049927, -0.43419477343559265, -0.6393699049949646, 0.5955172181129456, 1.83098566532135, 0.44622448086738586, 0.7924044728279114, 0.07948658615350723, -0.21424907445907593, -0.03365898132324219, -0.7351117134094238, -1.1587777137756348, -0.14470358192920685, -0.8133431077003479, -1.1081510782241821, -0.6399529576301575, -0.5836365222930908, -0.04823201149702072, 0.3113213777542114, -0.38585320115089417, -0.02064032480120659, 1.514155626296997, -0.20877645909786224, -0.4331432282924652, -0.6479352712631226, 0.5128329992294312, -0.5013390183448792, 0.1703261137008667, 1.700183391571045, -0.7974804639816284, -0.6085972189903259, 0.16185623407363892, 0.4215621054172516, -0.1978544294834137, 1.1134042739868164, 0.05850605666637421, -1.341753363609314, -0.9876771569252014, 0.2342088371515274, 1.4850772619247437, -0.29661092162132263, 0.48468950390815735, -0.22470246255397797, 0.7247509956359863, 0.6032288074493408, -0.5868939161300659, -1.0654345750808716, 1.4457513093948364, -0.3439600169658661, -0.4960450232028961, -0.17079654335975647, 0.5452933311462402, 0.42754805088043213, -0.3220060169696808, -0.9048166871070862, -0.4495933949947357, -0.7373155951499939, 0.10886538028717041, 0.5721672177314758, -0.22332359850406647, 1.2284318208694458, -0.4999241232872009, -0.19005508720874786, 0.7815330624580383, 0.8681657314300537, -0.3793509900569916, -0.8809196352958679, 0.3760776221752167, 0.7392125129699707, 1.3769245147705078, -0.17826591432094574, 0.17852512001991272, 0.9797710180282593, 0.6399626731872559, -0.1204434409737587, 0.46684926748275757, 1.1811004877090454, -0.38026729226112366, 0.6723397970199585, -1.269701600074768, 0.016828233376145363, -0.013311827555298805, -0.7737100124359131, -0.2618798315525055, 0.9120712876319885, -0.6972975134849548, -0.867381751537323, 0.6442795991897583, 0.23807421326637268, -0.019191332161426544, -0.12437578290700912, 0.28963401913642883, 0.4819529056549072, -0.156572625041008, -0.12950283288955688, -0.3729536235332489, -0.03210362792015076, 0.01254374347627163, -1.102274775505066, -0.08934585750102997, 0.18384571373462677, -0.08077319711446762, 1.3221306800842285, -0.621619462966919, 0.12974736094474792, -1.1539034843444824, -0.13277393579483032, 0.5453199744224548, -0.7359796166419983, 0.3887213468551636, 0.03783005475997925, 0.1337936967611313, 0.3154546022415161, 0.11973193287849426, 2.170264482498169, -0.08577362447977066, -0.10385073721408844, 0.4783230721950531, -0.021054813638329506, -0.2103542685508728, -0.9993698596954346, -0.39852601289749146, 0.07840584218502045, -0.311281681060791, -0.12490491569042206, 0.5241817235946655, -0.09970910102128983, 1.703011393547058, 1.1719911098480225, 0.5574577450752258, 0.11698168516159058, 0.06578563153743744, -0.6458771228790283, -0.2881545424461365, 0.5147825479507446, -0.6344001293182373, -0.6870360374450684, -0.401914119720459, 0.18223480880260468, -0.7134068012237549, 0.38949429988861084, 0.683576226234436, 0.40536344051361084, -0.006641748361289501, 0.3234425485134125, 0.2646399736404419, 0.8518924713134766, 1.0499662160873413, 1.4853832721710205, 0.19854964315891266, -0.9766244292259216, -0.5216121077537537, 0.14666278660297394, -0.5127107501029968, 0.15583264827728271, 0.42920199036598206, 1.196698546409607, 1.034114956855774, -1.3651326894760132, -0.07042748481035233, 0.2790479063987732, 0.6284422278404236, 0.5966250896453857, 1.1302331686019897, -0.9467818737030029, -0.052118606865406036, 0.4411720931529999, 0.5663307905197144, -0.17442145943641663, -0.24892474710941315, 0.3761994242668152, -0.6440271735191345, 0.8194637894630432, -0.8886706233024597, 0.452502965927124, -0.7640030980110168, -0.8166048526763916, 0.13193413615226746, -0.8551043272018433, -0.16186925768852234, 0.48991820216178894, 0.7327815890312195, 1.2326518297195435, -0.2560814321041107, -0.861160933971405, 0.09156633168458939, -0.9370567202568054, 0.6710080504417419, -0.5694254040718079, -0.6655397415161133, -0.8271812200546265, -0.39884480834007263, -0.4058659076690674, 0.1791781485080719, -0.43065014481544495, -0.28494206070899963, -0.7286369204521179, -1.3619372844696045, 0.6563009023666382, 1.2224546670913696, 1.7455487251281738, 1.1589974164962769, -0.44041937589645386, 0.41388386487960815, 0.0012405912857502699, -1.3806440830230713, -0.09402249753475189, 0.8506878614425659, -0.02931027300655842, 0.3702852725982666, -1.4281792640686035, -0.4547490179538727, 0.06478706747293472, 0.007101014256477356, -0.5073710083961487, 1.0537631511688232, 0.699770987033844, 1.1404316425323486, -0.21720319986343384, -0.7101011872291565, 0.7401707768440247, -0.7416391968727112, 0.7974838018417358, 0.7599862813949585, -0.032167382538318634, -1.4077223539352417, -0.7132616639137268, -1.3464022874832153, 0.3726373314857483, -0.4093955159187317, -0.7578126788139343, 0.9836755990982056, 0.6008113622665405, 0.8755245804786682, 0.5445013642311096, -1.207647442817688, 0.26085853576660156, 0.06888733804225922, -0.3390505611896515, -0.8218275308609009, 0.02165374904870987, 0.3732382357120514, -0.14445346593856812, 0.23948442935943604, 0.39477118849754333, 0.040843892842531204, -0.6245413422584534, -0.16595597565174103, 0.04144813120365143, 0.31525734066963196, 0.5413529276847839, 0.05178333818912506, -0.7409623861312866, -0.051476411521434784, -0.5970669388771057, -0.450377494096756, -0.4719521999359131, 1.1608638763427734, 0.05060403794050217, -0.7776395678520203, -0.22644439339637756, 0.20142270624637604, -0.9119824171066284, 0.20337475836277008, -0.6210832595825195, 0.633095920085907, 0.7724893093109131, 0.09968167543411255, -0.5874606370925903, -0.29977351427078247, 0.03867649659514427, 0.04668499156832695, 0.4471057057380676, 0.31716665625572205, -1.7476564645767212, 0.00022490054834634066, 0.17692694067955017, -0.686568558216095, -0.6285669803619385, -0.05823054909706116, 0.13873380422592163, -1.1641279458999634, -0.6990417838096619, -0.3869599401950836, 0.8934739828109741, 0.9007747173309326, -0.9428307414054871, 0.4952140748500824, 1.3800077438354492, -1.618570327758789, 0.7026103138923645, -0.5327660441398621, -1.6226803064346313, -0.32584404945373535, -0.7362183928489685, 0.5861504673957825, -0.5209220051765442, 0.45349442958831787, -0.3442174196243286, 1.155558705329895, -1.4392129182815552, -1.7026771306991577, -1.2527408599853516, -0.3043428659439087, 1.5757249593734741, 0.5375774502754211, -0.3168468475341797, 1.6441760063171387, 1.422086477279663, -0.3701988160610199, -0.8100652098655701, 0.21271643042564392, -1.0588411092758179, -0.018628206104040146, 0.5888960957527161, 0.42660462856292725, 0.6234060525894165, 0.8501317501068115, 0.3700736463069916, 1.5171966552734375, -0.2632322609424591, 1.4128687381744385, -0.9273568391799927, -0.8189752101898193, 0.5682811737060547, 0.6821929216384888, -1.4808132648468018, -1.3075262308120728, -0.3991391062736511, -0.5632664561271667, -0.33524152636528015, -0.09572520107030869, 0.26891690492630005, -0.2835579514503479, -0.11138652265071869, -0.8638671636581421, 0.8083613514900208, -0.9339322447776794, 0.1427474319934845, -0.0031674527563154697, -0.3786966800689697, -0.03400310128927231, 1.0078201293945312, -0.28335508704185486, -2.029181480407715, -0.1163470670580864, 0.19117650389671326, 0.5940204858779907, -1.0862820148468018, 0.17665429413318634, 0.2528420686721802, 0.27239465713500977, -0.17994074523448944, 2.1409494876861572, 0.8216951489448547, -0.6055282354354858, -0.26278671622276306, 0.23389559984207153, -0.41914528608322144, 0.2729293406009674, -0.9524579644203186, -0.8105363845825195, -0.7522731423377991, 1.013993740081787, 0.2345469444990158, 0.5389344692230225, -0.25316640734672546, 0.39761894941329956, -0.2399633824825287, 0.011293256655335426, 1.5864683389663696, -1.0937626361846924, -0.36979544162750244, 0.5917309522628784, 0.08077359199523926, -0.6819072961807251, 0.27771416306495667, 0.5732125639915466, 0.61294025182724, -1.2371845245361328, 0.7193108797073364, 0.4108108580112457, -0.9333896636962891, 0.6148304343223572, 0.43206506967544556, -0.5029415488243103, -0.17245350778102875, -0.45186108350753784, -1.7772626876831055, -0.2665807008743286, -0.1840539425611496, -0.426052451133728, 1.034081220626831, -1.0003129243850708, -0.3953058421611786, 0.7386963367462158, -0.7327293157577515, -0.13644543290138245, -0.6374603509902954, 0.2577351927757263, -0.15362760424613953, -0.4327804148197174, 1.2466089725494385, 0.28286808729171753, 1.3237837553024292, 0.07075303047895432, 0.21751610934734344, -1.5321215391159058, -0.1418807953596115, -0.45741209387779236, -0.30032992362976074, -0.2629093825817108, 0.054488275200128555, 1.1303176879882812, -0.04624050855636597, -0.8897368907928467, -0.23950664699077606, 0.13743874430656433, 0.9924253225326538, 0.12109889835119247, -0.6786760091781616, 0.48097091913223267, 0.49176719784736633, 0.15034602582454681, 0.09690239280462265, -0.4726406931877136, -0.646044909954071, -0.39116230607032776, -0.5770983695983887, 0.11890588700771332, -0.25356990098953247, 0.7826312780380249, 0.43924763798713684, -0.21402406692504883, -0.3667421340942383, -1.2852896451950073, 0.8288066387176514, -0.47107937932014465, -0.7125102281570435, 0.02994934283196926, -0.31071484088897705, -0.09900836646556854, -0.20278987288475037, 0.5238033533096313, 0.4074316620826721, -0.36703482270240784, -0.05883868783712387, -1.2347214221954346, -0.6211671233177185, -0.2126273214817047, 0.2643027901649475, 1.0639921426773071, -0.019644614309072495, -0.195327490568161, 0.04137634485960007, -0.9405891299247742, 0.07086382806301117, 0.17125330865383148, 0.43744030594825745, 0.6838149428367615, 1.2986122369766235, 2.0996789932250977, 0.5884167551994324, 0.20228005945682526, -0.4811590909957886, 0.7988602519035339, -0.532646894454956, -0.35231730341911316, -0.7695010304450989, -0.7009415030479431, -0.39163246750831604], [-0.2762235105037689, 1.0435179471969604, -2.147933006286621, 0.17702092230319977, 0.4676657021045685, -0.17406833171844482, 1.0754215717315674, -0.1986594945192337, 0.03638250008225441, -0.5488455891609192, -1.0492887496948242, -0.21867531538009644, 0.6868480443954468, 0.5931729078292847, -0.06991837173700333, 0.2988024353981018, 0.8736750483512878, -0.5168519616127014, 0.5584871768951416, 1.122403860092163, 0.44882744550704956, -0.8136898279190063, 0.3054348826408386, 0.07413244247436523, -0.16741672158241272, 0.02150951512157917, -1.4033187627792358, -0.6280221343040466, -0.7395836710929871, -0.937179684638977, 0.5416960716247559, -1.2958731651306152, 0.286794513463974, 0.020528770983219147, -0.9370978474617004, -1.0245035886764526, 1.222577452659607, 1.1457678079605103, 0.9215420484542847, 0.315981924533844, 1.560907006263733, -0.22851651906967163, 0.06862188130617142, -1.3104591369628906, -0.11360728740692139, -0.37366148829460144, 0.8356195688247681, -1.1418182849884033, 0.26620572805404663, 0.06606942415237427, 0.12958109378814697, -0.5726176500320435, 0.4822477102279663, 1.177152156829834, 0.9044185280799866, -0.37794968485832214, 0.3986935317516327, 0.2430546134710312, 0.7013170719146729, -0.11224061250686646, 1.5856280326843262, 0.4902336299419403, -0.7472681403160095, 1.5452443361282349, -0.17273958027362823, -0.45807763934135437, -0.15327085554599762, -0.17386522889137268, 0.3580778241157532, 0.19921933114528656, 0.7662603855133057, 0.22445276379585266, -0.1263090968132019, 0.7572992444038391, -1.3925268650054932, 0.5292388200759888, 0.5424891114234924, 0.6076132655143738, 0.43336737155914307, 0.9932827949523926, 0.39540916681289673, 0.03523635491728783, 0.3637565076351166, -0.32457202672958374, 0.03027627058327198, -0.23367834091186523, 0.1011764332652092, 0.1691635698080063, -0.2564716637134552, 1.917168140411377, 0.7053709626197815, -0.15163420140743256, -0.24908021092414856, -0.1941699981689453, -0.3549090027809143, -0.6743176579475403, 0.6422973275184631, 0.48472678661346436, -0.8488268852233887, -0.8885774612426758, -0.7712924480438232, -0.5819073915481567, -0.3925069570541382, -0.26628240942955017, 0.36407244205474854, 1.2617264986038208, -0.26471081376075745, -0.8662840723991394, -0.28924259543418884, 0.07268410921096802, -0.8701607584953308, -0.02933628298342228, -0.8742074370384216, -0.5897912383079529, -0.6483034491539001, 1.1810640096664429, 0.8855341076850891, -0.5284353494644165, 0.8733596205711365, 0.5858824253082275, -0.36969897150993347, -0.6537447571754456, -0.693209171295166, 0.6939261555671692, 0.5696896910667419, 0.992433488368988, -0.4603581428527832, -0.8321208357810974, 0.35519489645957947, -0.09910981357097626, 0.46007177233695984, 0.028178295120596886, -0.3780938386917114, 1.1898322105407715, -0.7141819596290588, 1.233057975769043, -0.7085003852844238, -0.5793725848197937, -0.09041060507297516, 0.47430935502052307, 0.7506034970283508, -0.16685596108436584, -0.6031367778778076, -0.7475606799125671, 0.5222858190536499, -0.45633402466773987, -0.38295653462409973, -0.4645574986934662, -0.7880285382270813, 0.37265247106552124, -1.022291898727417, 0.6139141917228699, 0.3619597554206848, 0.6345071792602539, 0.406679630279541, -0.03402864187955856, 0.04392712935805321, 0.03396403044462204, 0.9067963361740112, 0.4219152331352234, 0.5078160166740417, -0.0367269404232502, -0.7368472218513489, 1.2974371910095215, 0.4119081497192383, -0.3024914562702179, -0.38621053099632263, 1.373828411102295, 0.18685749173164368, 0.9678274989128113, -0.9153609275817871, 0.34008151292800903, -0.7315624356269836, 0.35045602917671204, 0.5127485394477844, -0.2073451578617096, 1.0623242855072021, -0.30001118779182434, -1.1843314170837402, -0.7621354460716248, 0.8719851970672607, -0.5297222137451172, -0.3276306092739105, -0.5053360462188721, 0.10218438506126404, -0.09255043417215347, 0.4837804138660431, -0.5009375810623169, -1.2976456880569458, -0.5108283758163452, -0.44907528162002563, -0.3826083838939667, -0.521337628364563, 0.3665682077407837, -0.09790810197591782, -0.6941621899604797, 0.014517505653202534, -1.0349246263504028, -0.28082016110420227, 0.1376040279865265, -0.5323244333267212, -0.27229830622673035, -0.6817211508750916, 0.5964270234107971, -0.32075512409210205, 1.7278969287872314, -1.213127851486206, 0.754491925239563, -0.5594972968101501, 0.04744010046124458, 1.3652361631393433, -0.39029932022094727, -0.9625536799430847, 0.787190854549408, 0.29716041684150696, -1.638767123222351, 0.017138736322522163, 0.2549121379852295, -0.46535465121269226, 0.26275238394737244, 0.020476682111620903, 0.6726825833320618, 0.790407121181488, 0.2706238329410553, 0.3091830313205719, 0.21481910347938538, -0.986110270023346, -0.07905810326337814, -0.3572339117527008, 0.5393883585929871, -0.12977546453475952, -0.7793175578117371, 1.1137893199920654, 0.7425740361213684, -0.9360461831092834, -0.07774105668067932, -0.0503075011074543, -0.3017916977405548, -0.052580732852220535, 1.6790940761566162, 0.5552127957344055, 0.1764427274465561, 0.27044010162353516, -0.7549957036972046, -0.7949334383010864, 0.4919065833091736, 1.3662703037261963, -0.407819002866745, 0.43830862641334534, 1.6993573904037476, 1.1992107629776, 0.1377868503332138, 0.1215856522321701, 0.4438161253929138, -0.05240321159362793, -0.5634496212005615, -0.7863461971282959, 0.34546276926994324, -1.0506172180175781, 1.0068838596343994, 0.6986384391784668, -0.735052764415741, -0.8421558141708374, 0.1438516080379486, -0.1515084207057953, -0.578880250453949, -0.8708451986312866, -0.38435158133506775, -0.3300357460975647, -0.04915918782353401, 0.1723911166191101, -0.022562328726053238, -0.029402798041701317, 0.21788261830806732, -0.9054563045501709, -0.7481980323791504, -0.23460374772548676, 0.6905785799026489, -0.15270397067070007, 1.288449764251709, -0.5917378067970276, -1.5346674919128418, -0.2819984555244446, 0.061902642250061035, 0.8594236969947815, 0.2729814052581787, -0.6170285940170288, -0.11593996733427048, 0.32282623648643494, -0.34302404522895813, 0.6633561253547668, 0.04462987929582596, 0.4348137676715851, 0.017683817073702812, 0.025532543659210205, 0.8104696273803711, 0.9549503922462463, -0.7910693883895874, -1.4875832796096802, -0.05836310237646103, 0.1759985089302063, 1.0051599740982056, 0.6051481366157532, 0.6548299193382263, 0.20201575756072998, -0.6423584222793579, -0.8680848479270935, -0.10372292995452881, -0.7151662707328796, -0.6489991545677185, -0.8457215428352356, -0.715534508228302, -0.23710547387599945, -0.1068524494767189, -0.03278028592467308, 1.0171564817428589, 0.06959261745214462, 0.6896021962165833, 1.3978790044784546, -0.5672703981399536, -0.6061393618583679, -0.1300804615020752, 0.3184666335582733, -1.1271706819534302, 0.5954163074493408, 1.3206405639648438, -1.5060230493545532, -0.6460133194923401, -0.4422643780708313, 0.03681860864162445, -0.5730381608009338, 0.2123924046754837, -0.3311940133571625, -1.1054514646530151, -0.8132855892181396, -0.1899007111787796, 1.001909852027893, -0.5232822895050049, 0.3192318379878998, -0.5945964455604553, 0.2968616485595703, 0.8749769926071167, -0.17431806027889252, -0.42200618982315063, 0.4689674973487854, -0.7449824810028076, -0.769957423210144, -0.5218564867973328, 0.25933778285980225, 1.5799952745437622, -0.45882710814476013, -0.5617051720619202, -0.7480464577674866, 0.4190049469470978, -0.21595542132854462, 0.3527986705303192, -0.2863916754722595, 0.7623932957649231, -0.0027284277603030205, -0.1729700118303299, 0.8004288077354431, -0.11178229004144669, -0.18529869616031647, -1.2415571212768555, 0.3869352638721466, 0.49797555804252625, 0.9276190996170044, -0.18568868935108185, 0.755973756313324, 0.32934603095054626, 0.16104422509670258, 0.2121131867170334, 0.5857518911361694, 1.1674331426620483, -0.03676112741231918, -0.36383670568466187, -0.5896072387695312, -0.6619505286216736, -0.018521619960665703, -0.6746865510940552, 0.13586625456809998, 0.2822858393192291, -0.9299793243408203, -0.6642640829086304, 0.7846919298171997, 0.6515389680862427, -0.03240605816245079, -0.08476271480321884, 0.12402061372995377, 0.8537225127220154, -0.16936571896076202, -0.29546573758125305, -0.2760045826435089, 0.3766329288482666, 0.6409080028533936, -1.5674262046813965, 0.28945937752723694, 0.255682110786438, 0.2669807970523834, 0.5434024930000305, -0.8712978363037109, 0.11624662578105927, -0.4316636025905609, 0.3645147979259491, 0.7678184509277344, 0.029643375426530838, 0.17946885526180267, -0.04125203564763069, 0.1556069254875183, -0.2757226526737213, -0.0009713852778077126, 1.2906922101974487, -0.34439000487327576, 0.10170125216245651, -0.16375622153282166, -0.14707794785499573, -0.6718043088912964, -0.1478005349636078, -0.45539596676826477, 0.48428118228912354, -0.18099655210971832, 0.7917231321334839, 0.40884625911712646, -0.22421365976333618, 0.9982113838195801, -0.004923101980239153, 0.7484694123268127, 0.9320806264877319, 0.27514851093292236, -1.432821273803711, -0.4181910753250122, 0.15149396657943726, -0.25633588433265686, -1.2022221088409424, -0.7795764207839966, 0.18536770343780518, 0.31146496534347534, 0.1936621516942978, 0.027174359187483788, 0.6568194031715393, 0.4829258918762207, 0.060606949031353, 0.03578454256057739, 0.6012817025184631, 0.9215062260627747, 1.0010809898376465, 0.4110986888408661, -0.143641859292984, -1.1087698936462402, 0.875560998916626, -1.2190407514572144, 0.09938657283782959, 0.46377718448638916, -0.07816727459430695, 0.9879717230796814, -1.2367697954177856, -0.3341219425201416, 0.625045657157898, -0.03579201176762581, 0.4767037630081177, 0.6615999341011047, -0.48928430676460266, 0.36733463406562805, 0.5950943827629089, -0.2960995137691498, -0.5438185930252075, 0.3246203064918518, -0.15124687552452087, 0.040042806416749954, 0.743457019329071, -0.9852390289306641, 0.9047005772590637, -0.9020677804946899, -0.4366312623023987, -0.5283105373382568, -0.46307000517845154, 0.42792338132858276, 0.17534495890140533, -0.08231165260076523, 1.2524513006210327, -0.05874139443039894, -1.0363754034042358, -0.05980587378144264, -0.5312548875808716, 0.5199055075645447, -0.42625850439071655, -0.5723546147346497, -0.14504240453243256, -0.5885515213012695, 0.2698417901992798, 0.9218564033508301, -0.6785215735435486, -0.1781175434589386, -0.24496671557426453, -1.6866037845611572, 0.013640522956848145, 0.27014878392219543, 1.1194919347763062, 0.6333684325218201, -0.4151111841201782, 0.4590245187282562, 0.6538079380989075, -1.1724302768707275, 0.1351732462644577, 0.3366554379463196, -0.4300615191459656, -0.42835062742233276, -1.287503957748413, -0.5059044361114502, 1.0661108493804932, 0.807515025138855, -0.13012942671775818, 0.2980881929397583, 1.0550698041915894, 1.4484394788742065, -0.26129716634750366, -0.13152047991752625, 0.7205493450164795, -0.35648924112319946, 0.23053069412708282, 0.6570132970809937, -0.008349809795618057, -0.3678499758243561, -0.7074211835861206, -1.8485291004180908, 0.7129113078117371, -0.519183337688446, -0.6190979480743408, 1.1408069133758545, 0.6176238059997559, 0.7867937684059143, 0.20219603180885315, -0.5444259643554688, 0.2820621132850647, 0.12122189998626709, 0.1360563039779663, -1.5216646194458008, 0.27906641364097595, 0.506258487701416, -0.4165571331977844, 0.15797750651836395, -0.10242167115211487, -0.1912005990743637, -0.6846937537193298, -0.2155650109052658, 0.48054346442222595, 0.35689398646354675, 0.28129222989082336, 0.48466014862060547, -0.3540821075439453, 0.3330104947090149, -0.5787815451622009, -0.9055835008621216, 0.2824101448059082, 0.6702770590782166, 0.5127533674240112, -0.622739851474762, -0.19960016012191772, -0.012654340825974941, -0.03917400911450386, -0.16835783421993256, -0.7701234817504883, 1.013226866722107, 0.23178087174892426, -0.2112000584602356, -0.3894290030002594, -0.5127435922622681, -0.31206586956977844, -0.5716086030006409, 0.36741235852241516, 0.3718002438545227, -1.5295112133026123, 0.013336212374269962, 0.36746373772621155, -0.8094426989555359, -0.2686251401901245, -0.10070651024580002, 0.5963056087493896, -0.9319296479225159, -0.5529571175575256, -0.7326639294624329, 0.6081287264823914, 0.737280547618866, -0.4040399491786957, 0.6978673934936523, 0.7727034687995911, -1.409510612487793, 0.44052091240882874, 0.30862048268318176, -0.8307693004608154, 0.08769655972719193, -1.272884726524353, 0.754736602306366, -0.16507290303707123, 0.23800736665725708, -0.061387017369270325, 1.6221545934677124, -1.3637794256210327, -0.5103985071182251, -0.98374342918396, 0.10340876877307892, 1.1313689947128296, 1.0435782670974731, -0.19796739518642426, 1.0952953100204468, 0.7303349375724792, -1.017189860343933, -0.028401857241988182, -0.10565095394849777, -0.6615384221076965, 0.4383907616138458, 0.4558967351913452, 0.3688057065010071, 0.4640614986419678, 1.494846224784851, 0.1931179016828537, 0.6166942119598389, 0.4229682683944702, 1.3507643938064575, -1.2228933572769165, -0.32641321420669556, 0.24100039899349213, 0.5139521956443787, -0.7440794706344604, -1.1815953254699707, -0.1045801118016243, -0.7589271664619446, -0.7573317885398865, 0.3972143232822418, 0.27664873003959656, -0.608190655708313, -0.29785048961639404, -0.040723297744989395, 0.5170796513557434, -0.4233982264995575, 0.36507776379585266, 0.36523979902267456, -0.20566248893737793, -0.39831969141960144, 0.62625652551651, -0.4921216666698456, -1.837116003036499, 0.40285688638687134, 0.6305745840072632, 0.48441725969314575, -0.6745423078536987, 0.36442285776138306, 0.49986422061920166, 0.1225128173828125, -0.5913260579109192, 1.4407618045806885, 1.3125909566879272, -0.9261640906333923, 0.07208440452814102, 0.5946183800697327, 0.29107168316841125, 0.08718232810497284, -0.7867512106895447, -1.043257474899292, -0.8161843419075012, 0.7998484373092651, 0.5085076689720154, 0.13694727420806885, -0.4299597442150116, 0.18988071382045746, 0.10666681826114655, 0.17549192905426025, 1.0603926181793213, -1.1690526008605957, -0.5264047384262085, 0.45648589730262756, 0.17067596316337585, 0.2044835090637207, 0.8313398361206055, 0.3921031951904297, 0.8484909534454346, -0.6007767915725708, 0.07813427597284317, 1.0489864349365234, -0.8333816528320312, 0.14057795703411102, 0.022272519767284393, -0.8520503044128418, 0.3815549910068512, -0.15956465899944305, -1.6466693878173828, 0.1313883513212204, -0.6255310773849487, -0.96354740858078, 0.2688208222389221, -1.1019372940063477, -0.7384890913963318, 0.4322347342967987, -0.11941927671432495, 0.036213867366313934, -0.6296105980873108, 0.4298686683177948, 0.006603708956390619, 0.2927655875682831, 1.2613826990127563, -0.4415152370929718, 0.8011163473129272, -0.3162899613380432, -0.3427336812019348, -1.7419034242630005, 0.4552565813064575, -0.07053724676370621, 0.3840051591396332, -0.6466817855834961, -0.08200104534626007, -0.16534258425235748, -0.20568497478961945, -0.49233341217041016, 0.4930437505245209, -0.38738712668418884, 0.3392791450023651, 0.6558170914649963, -0.319947749376297, -0.9171062111854553, 0.3178272247314453, 0.7039527893066406, -0.15048128366470337, -0.7037985324859619, -0.37274256348609924, -0.3240579068660736, -0.06992074847221375, 0.9478099346160889, 0.048167407512664795, 1.0039992332458496, 0.16811442375183105, -0.40129774808883667, -0.31423085927963257, -0.9295132160186768, 0.5617550611495972, -0.9760094285011292, 0.5315940380096436, -0.6186608076095581, -0.39129725098609924, -0.21295146644115448, -0.6033167839050293, 0.6972644329071045, 0.8647212386131287, -0.09541777521371841, 0.07909313589334488, -0.9700567722320557, -0.8174899220466614, -0.4017753601074219, 0.04471824690699577, 1.1843539476394653, 0.3203049302101135, -0.03442711755633354, -0.038286514580249786, -0.88640958070755, 0.27989116311073303, -0.028285518288612366, -0.3017543852329254, -0.0950838252902031, 0.9656713604927063, 1.7933372259140015, 0.48112210631370544, 0.42965537309646606, 0.07469786703586578, 0.5968982577323914, -0.24530011415481567, -0.2842484414577484, -0.4399813115596771, -0.8960545659065247, 0.3499375879764557], [0.10801251232624054, 1.7401522397994995, -2.004685163497925, -0.013756264932453632, 0.46990564465522766, -0.09817343950271606, 1.0337167978286743, -0.7275130748748779, 0.06275860220193863, -0.9594452381134033, -0.041161082684993744, 0.002737252041697502, 1.0470868349075317, 0.9073339104652405, 0.06230712682008743, 0.2721346616744995, 0.6164716482162476, -0.5832828879356384, 0.4377419948577881, 0.6583498120307922, -0.05294511839747429, -0.7676753401756287, 0.3792605400085449, 0.6497117280960083, -0.5750406384468079, 0.11493223160505295, -1.1959681510925293, -0.355874627828598, -0.42068973183631897, -0.28657102584838867, 0.617831826210022, -0.5199248194694519, -0.09212622046470642, 0.796649158000946, -0.9034935832023621, -0.9956817030906677, 1.2648956775665283, 1.1272697448730469, 0.5215920805931091, 0.9303048253059387, 1.961841344833374, -0.13033883273601532, -0.26226767897605896, -1.2785544395446777, 0.20684336125850677, -0.03878951817750931, 0.9396726489067078, -1.1952977180480957, 1.079596757888794, -0.2160481959581375, 0.16004779934883118, -0.371097594499588, 0.2386314570903778, 1.130516529083252, 1.0556528568267822, 0.24282494187355042, 0.23902598023414612, -0.38138964772224426, 1.1875102519989014, -0.30475884675979614, 1.088246464729309, -0.4114841818809509, 0.04692479968070984, 1.03854238986969, -0.01849622093141079, -0.7731118202209473, -0.18290138244628906, -0.054048653692007065, 0.3973965048789978, -0.31569191813468933, 0.8083475828170776, -0.40772777795791626, -0.5355914235115051, 0.607290506362915, -1.4212182760238647, 0.43492385745048523, 0.9969441890716553, 0.7605239152908325, 0.011025622487068176, 0.6093167066574097, -0.02329808659851551, -0.2535631060600281, 0.7433437705039978, -0.48467499017715454, -0.2570962607860565, -0.32314810156822205, -0.11344855278730392, 0.2023288607597351, -0.33540791273117065, 1.5074325799942017, 0.8763335943222046, -0.16716663539409637, 0.3543393909931183, -0.33623939752578735, 0.11790471524000168, -0.1457562893629074, 1.1417365074157715, 0.02808462455868721, -0.5720534920692444, -0.7655102014541626, -0.792769193649292, -0.49629002809524536, 0.36323001980781555, -0.17114640772342682, 0.20714043080806732, 1.512047290802002, 0.0009512528777122498, -0.40133482217788696, -0.29975777864456177, -0.25598809123039246, -0.6401874423027039, -0.3543626070022583, -1.1671040058135986, -1.1768426895141602, -0.6768673658370972, 0.9605981707572937, 0.785286545753479, -0.17791502177715302, 0.5244778990745544, 0.9009268283843994, 0.01819670759141445, -0.5757376551628113, -0.12253886461257935, 0.3224334716796875, 0.387971967458725, 0.384628027677536, -0.1739397495985031, -0.6393897533416748, -0.2890353500843048, 0.26819658279418945, 0.8214815855026245, -0.10562773793935776, -0.6168711185455322, 0.8173802495002747, -0.28828299045562744, 1.228018879890442, -0.8340940475463867, -0.04660706967115402, 0.3593929409980774, -0.03898192197084427, 0.5136744976043701, -0.8579070568084717, -0.7633877396583557, -0.49234798550605774, -0.2947230637073517, -0.17913416028022766, 0.11236213147640228, -0.16316808760166168, -0.7053623795509338, -0.2889974117279053, -1.0708112716674805, 0.4124296307563782, 0.7504978775978088, 0.11623312532901764, 0.11777595430612564, -0.4069848358631134, -0.11274606734514236, -0.036096516996622086, 0.47387465834617615, 0.21128080785274506, 0.38859453797340393, 0.2780325412750244, -1.11577308177948, 1.531077265739441, -0.014412112534046173, -0.2923133969306946, -0.07846318185329437, 0.7512256503105164, 0.17025789618492126, 1.0332809686660767, -0.8297569751739502, -0.31964603066444397, -0.37630075216293335, 0.2468092441558838, 0.7946517467498779, -0.902556836605072, 1.7031571865081787, -0.8692577481269836, -0.6985952258110046, -1.4133952856063843, 0.6264949440956116, -0.7505237460136414, 0.37732893228530884, -0.10295719653367996, -0.10911288857460022, -0.5864593982696533, 0.2353944480419159, -0.7103467583656311, -0.8502374887466431, 0.3109040856361389, -0.24498458206653595, -0.4034404754638672, -0.8538030982017517, 0.07205609232187271, -0.2909931540489197, -0.7112600207328796, 0.6529890894889832, -0.7724153995513916, -1.2493230104446411, -0.10407561808824539, 0.11412355303764343, -0.45475736260414124, -0.7403374910354614, 0.3752003312110901, -0.5344462394714355, 1.3770086765289307, -1.3175843954086304, 0.8744733929634094, -0.4042850434780121, 0.3822861611843109, 0.9417547583580017, -0.19853194057941437, -0.32560184597969055, 0.8140034079551697, -0.22872687876224518, -1.341357946395874, 0.8273959159851074, 0.2700549364089966, -0.5059314966201782, 0.4126582741737366, 0.6338122487068176, 0.10626190155744553, 0.18265976011753082, 0.05084032565355301, 0.6049526929855347, -0.2111956626176834, -0.3948642909526825, -0.8485051393508911, -0.30226826667785645, 0.6413218379020691, -0.5846388339996338, -1.177329421043396, 1.1982091665267944, 0.7965415120124817, -0.5674648284912109, 0.39337870478630066, -0.11471656709909439, 0.2070888727903366, 0.21035675704479218, 0.6619669795036316, 0.6380754113197327, 0.6249905824661255, 0.09116952121257782, -0.7682010531425476, -0.8708110451698303, -0.2560720443725586, 0.4169076979160309, 0.41615456342697144, 0.3269367516040802, 0.8974785804748535, 1.0648773908615112, 0.10369407385587692, 0.1445799022912979, 0.987510085105896, 0.38433486223220825, -0.7161148190498352, -0.8677762150764465, 0.4417758584022522, -0.8190637826919556, 0.6375711560249329, 1.039402961730957, -0.7823986411094666, -0.49345189332962036, -0.3289353549480438, 0.07798880338668823, -0.3394383192062378, -1.0905482769012451, -0.8244019746780396, -0.5032138228416443, -0.008694642223417759, 0.007830934599041939, 0.8861221671104431, -0.15216746926307678, 0.5764645934104919, -0.33377012610435486, -0.14516404271125793, -0.2683849334716797, 0.5561696290969849, 0.025772955268621445, 0.9186933636665344, -0.5569642186164856, -1.2386317253112793, -0.5361276865005493, 0.5771404504776001, 0.35496577620506287, 0.02576231025159359, 0.052800845354795456, 0.35074323415756226, 0.29581794142723083, -0.6537510752677917, 0.2731890380382538, -0.16892191767692566, 0.06690704077482224, -0.04349164664745331, 0.011032402515411377, 0.5366957187652588, 0.23649117350578308, -0.6834043860435486, -0.8222976326942444, -0.007139451336115599, 0.35363543033599854, 0.5184109807014465, 0.1928253173828125, 0.6825733780860901, -0.3045707643032074, -0.10357116162776947, -0.6443458199501038, -0.06737066060304642, -1.137366533279419, -0.012035202234983444, -1.1167898178100586, -1.1685371398925781, -0.019353477284312248, 0.09815815091133118, -0.25492480397224426, 0.7408860921859741, -0.48711898922920227, 0.9044485092163086, 0.8972805142402649, -0.8493083715438843, -0.6182687878608704, -0.3122641146183014, 0.07758362591266632, -1.0421996116638184, 0.5607411861419678, 1.1039438247680664, -0.42242130637168884, -0.7920158505439758, -0.041192006319761276, 0.23801745474338531, 0.30481860041618347, -0.47042980790138245, -0.4561900794506073, -1.4186221361160278, -0.737011730670929, 0.23527905344963074, 1.098156452178955, -0.2905939817428589, 0.4218972623348236, -0.5900270938873291, 0.7805193662643433, 1.0995358228683472, 0.031505733728408813, -0.9009912014007568, 0.2454940229654312, -0.5770244598388672, -0.5268307328224182, -0.1506161093711853, 1.351220726966858, 0.6452804207801819, -0.7073574662208557, -0.2869483530521393, -0.21308736503124237, -0.11972580850124359, -0.44463226199150085, 0.46407562494277954, -0.1309611052274704, 0.48656198382377625, -0.5893849730491638, -0.3361823558807373, 0.15127301216125488, -0.12886810302734375, -0.3050435781478882, -1.7562625408172607, 0.11956152319908142, -0.08256423473358154, 1.0796821117401123, 0.2602229416370392, 0.3797282576560974, 0.02091595157980919, 0.2722172439098358, 0.28837350010871887, -0.22750426828861237, 1.3126158714294434, 0.24354209005832672, 0.24104365706443787, -0.8451530337333679, -0.6258048415184021, -0.13075995445251465, -1.0786837339401245, 0.027880549430847168, 0.2605611979961395, -0.6628673076629639, -0.3449086844921112, 0.9223315119743347, 0.32291293144226074, -0.3343217372894287, -0.13160528242588043, 0.3409169316291809, 0.025871388614177704, 0.06577689945697784, -0.09256428480148315, -0.4311670660972595, -0.4276534616947174, -0.10644099116325378, -1.6818304061889648, -0.22990165650844574, 0.3223208785057068, 0.2132495939731598, 0.7453029751777649, -1.2918957471847534, 0.3808995187282562, -0.7912184000015259, 0.5450199246406555, 0.7460896968841553, 0.01996104046702385, 0.6355336904525757, -0.09285186231136322, 0.05010610073804855, -0.24443523585796356, 0.13749198615550995, 1.3882039785385132, -0.44234102964401245, -0.16063635051250458, -0.33362969756126404, -0.20869790017604828, -0.24662631750106812, -0.8572916984558105, -0.3187721073627472, 0.038675080984830856, -0.3701474964618683, -0.20343232154846191, 0.3282511532306671, 0.09861112385988235, 1.1134803295135498, 0.3710140883922577, 0.5801358819007874, -0.2816110849380493, -0.634441614151001, -0.44802114367485046, -0.09773337095975876, -0.022662481293082237, -0.24158433079719543, 0.03419005498290062, -0.4585174322128296, 0.3439682126045227, 0.28189417719841003, 0.5950731635093689, 0.7359358668327332, 0.9311003684997559, 0.40898844599723816, 0.2680285573005676, -0.3138572573661804, 0.24801446497440338, 0.45715054869651794, 1.2755014896392822, 0.005973958410322666, 0.016802119091153145, -0.9432833790779114, 1.1459347009658813, -1.535841941833496, -0.0013031763955950737, 0.25520938634872437, 0.22471995651721954, 1.636498212814331, -1.7709736824035645, -0.6002069115638733, 0.27009040117263794, 0.5187397599220276, 0.058323848992586136, 0.21238034963607788, -0.6634615659713745, -0.30559858679771423, 0.721740186214447, 0.12489597499370575, -0.049410950392484665, 0.43211573362350464, -0.7939012050628662, -0.37689757347106934, 0.6266393661499023, -0.6827001571655273, 0.327294260263443, -0.394898384809494, 0.10623566061258316, -0.5883302688598633, -0.2110442966222763, 0.3156891167163849, 0.3466353416442871, -0.1988985389471054, 0.2973625957965851, -0.9410373568534851, -0.9579915404319763, 0.030708782374858856, -0.5836580991744995, 0.5566057562828064, -0.5715861916542053, 0.13908806443214417, -0.6285477876663208, -0.9823972582817078, -0.029419776052236557, 0.9172491431236267, -0.44280990958213806, -0.46748629212379456, 0.03266741707921028, -1.3130459785461426, -0.30391383171081543, 0.49524497985839844, 1.2200661897659302, 1.0066163539886475, -0.36572200059890747, 1.182149887084961, 0.6659702658653259, -1.3205769062042236, 0.006272770464420319, 0.3695535659790039, -0.4000898599624634, -0.6173727512359619, -1.392958402633667, -1.1210384368896484, 0.22945457696914673, 0.03151427581906319, 0.09704206138849258, 0.618180513381958, 0.9033966660499573, 1.3970578908920288, -0.022139428183436394, -0.8767309784889221, 1.3358255624771118, -0.41851356625556946, 0.6863635778427124, 0.948106586933136, -0.7170662879943848, -0.5349456071853638, -0.4348243474960327, -1.2362866401672363, 1.4556320905685425, -0.08008792251348495, -0.6863674521446228, 1.2079120874404907, 0.44913753867149353, 0.25276291370391846, 0.2440376579761505, -0.7053561806678772, 0.023744763806462288, 0.16696318984031677, 0.5823046565055847, -1.1198527812957764, 0.13075894117355347, 0.8936587572097778, 0.07643261551856995, 0.03480914607644081, 0.35109543800354004, -0.17440146207809448, 0.021161291748285294, 0.6180580258369446, -0.29909607768058777, 0.5905869603157043, 1.0578397512435913, 1.1830121278762817, -0.9151061773300171, 0.44486042857170105, -0.6839634776115417, -0.4599032700061798, 0.05466612055897713, 0.4701465368270874, 0.1403607726097107, -0.21517124772071838, 0.24372999370098114, -0.4117335379123688, -0.6898625493049622, -0.5081716179847717, -1.0494604110717773, 0.6559800505638123, 0.16188335418701172, -0.45316964387893677, 0.010348235256969929, -0.06762449443340302, -0.6298923492431641, 0.11395513266324997, 0.3974166214466095, 0.4552866816520691, -1.4533677101135254, 0.2518029808998108, 0.4275006949901581, -0.3116087019443512, 0.04663268104195595, 0.002955838805064559, 0.05312925949692726, -1.0363030433654785, -0.9954673647880554, -1.049862265586853, 0.40802326798439026, 0.7952602505683899, -0.38218164443969727, 0.10834471881389618, 0.9291192293167114, -1.31931471824646, 0.15606819093227386, 0.035494960844516754, -1.110870361328125, 0.06836442649364471, -1.3262085914611816, 0.9970922470092773, -0.01894642785191536, 0.38345175981521606, 0.09538228064775467, 1.2597792148590088, -0.8955082297325134, -0.729472815990448, -1.0431795120239258, 0.03536071255803108, 1.0215129852294922, 1.274376630783081, -0.5197412371635437, 0.884963870048523, 0.0902925655245781, -0.3064115345478058, -0.5738537907600403, -0.20084501802921295, -0.5982933640480042, 0.42901936173439026, 0.12001208961009979, 0.2739903926849365, 0.30975890159606934, 0.6353069543838501, 0.6312077045440674, 1.0753393173217773, -0.023620540276169777, 1.320803165435791, -1.1154483556747437, -0.11627896875143051, 0.43464216589927673, 0.39162319898605347, -1.2366714477539062, -1.1019419431686401, -0.16668638586997986, -0.5098460912704468, -0.5198227167129517, 0.269309937953949, 0.6133402585983276, -0.5925387740135193, 0.02746567130088806, -0.3722062110900879, 0.4054059386253357, -0.13296225666999817, 0.08089376240968704, -0.31518790125846863, -0.02888556197285652, -0.2027217298746109, 0.4293847978115082, 0.14140260219573975, -1.6945128440856934, -0.12096085399389267, 0.6072260141372681, 0.3002909719944, -0.8209370970726013, 0.5617448091506958, 0.45964619517326355, 0.5385533571243286, -0.5153942704200745, 1.6742804050445557, 0.9171797633171082, -0.5163480043411255, -0.1009453758597374, 0.49926355481147766, 0.09723276644945145, 0.5463661551475525, -1.3209342956542969, 0.4617544710636139, -0.9750621914863586, 0.8820978403091431, 0.6482841372489929, 0.4992206394672394, -0.3331625759601593, 0.4376950263977051, -0.3864971101284027, 0.3330962061882019, 0.568320095539093, -1.2264131307601929, -0.2757630944252014, 0.8823752403259277, 0.4439452588558197, -0.5393132567405701, 0.18164031207561493, 0.41483303904533386, 0.5316603779792786, -0.5040627121925354, 0.04802648723125458, 1.0137578248977661, -0.6151056885719299, 0.5535139441490173, 0.11976093798875809, -0.6868206262588501, 0.2605084180831909, -0.5458053350448608, -0.8469961285591125, -0.43180879950523376, -0.7393752932548523, -1.5558979511260986, 0.4943247139453888, -1.1138986349105835, -0.8502416610717773, 0.4136356711387634, -0.27209874987602234, -0.12560568749904633, -0.03488307073712349, 0.11678367853164673, -0.25203123688697815, -0.32788437604904175, 0.7118555307388306, -0.5496906042098999, 1.200585126876831, 0.2631281018257141, 0.024570157751441002, -0.9931600093841553, 0.11211524158716202, 1.0037070512771606, -0.2403661012649536, -0.2147376984357834, 0.6082332730293274, -0.0022877678275108337, 0.13183265924453735, 0.23164524137973785, 0.039705466479063034, -0.054880138486623764, 0.7428910136222839, 0.7404381632804871, -0.3402714729309082, 0.0028741154819726944, 0.08290069550275803, 0.3493387699127197, -0.18852366507053375, -0.2506430149078369, -0.693641722202301, -0.1162959560751915, -0.42433908581733704, 0.05701172724366188, -0.5838339924812317, 0.46727070212364197, 0.42421942949295044, -0.736735463142395, 0.03290907293558121, -0.795698881149292, 0.5687485337257385, -0.7042875289916992, 0.8362991213798523, 0.2916830778121948, 0.12072327733039856, 0.05686409771442413, -0.5818049907684326, 0.5294286608695984, 0.6459257006645203, 0.03884623199701309, 0.14437063038349152, -0.782994270324707, -0.8032065629959106, -0.5650615692138672, 0.5371084809303284, 1.6286554336547852, 0.28220224380493164, 0.20231737196445465, 0.3451188802719116, -0.5822598934173584, 0.383114755153656, -0.0554957278072834, 0.07330925017595291, 0.3262375593185425, 1.4966890811920166, 1.8064745664596558, 0.5958225131034851, 0.6060192584991455, 0.2368721216917038, 0.548785388469696, -0.6195372939109802, -0.8588204383850098, -0.5887480974197388, -0.3174104392528534, -0.0767427384853363], [0.2624015212059021, 1.478757619857788, -2.4849510192871094, -0.3478687107563019, 1.043252944946289, 0.8166347146034241, 1.3748162984848022, 0.05148276314139366, 0.6020443439483643, -0.46565842628479004, 0.0519840307533741, -0.1789296567440033, 0.718146026134491, 1.1136423349380493, -0.10148387402296066, 0.8411595225334167, 0.7561543583869934, -0.9999678730964661, 0.8331830501556396, 0.7293510437011719, -0.3187803030014038, -0.008703858591616154, 0.30912813544273376, 0.13834969699382782, -0.6564419865608215, -0.08616037666797638, -1.3353486061096191, -0.32994967699050903, -0.1576271653175354, -1.3836101293563843, 1.066054105758667, -0.5544627904891968, -0.4900217354297638, -0.24361561238765717, -0.7317301034927368, -0.5431115627288818, 1.6287397146224976, 1.308882474899292, 0.8404388427734375, 1.0196775197982788, 1.5892982482910156, -0.16608360409736633, -0.05397574603557587, -1.5804626941680908, 0.12278886884450912, -0.45654740929603577, 0.6548374891281128, -1.08904230594635, 0.6682493090629578, -0.550342857837677, 0.36558082699775696, 0.44251829385757446, 0.8014483451843262, 0.8619442582130432, 0.17619486153125763, 0.5399944186210632, -0.048969198018312454, -0.17937082052230835, 2.0705766677856445, -0.6231793761253357, 1.1514588594436646, 0.16530002653598785, 0.10013396292924881, 0.24468675255775452, 0.33505427837371826, 0.029211068525910378, -0.7622979283332825, 0.9677170515060425, 0.3689159154891968, -1.1224136352539062, 0.5476427674293518, 0.28843414783477783, 0.06386956572532654, 0.7236948609352112, -1.8876762390136719, 0.8281145095825195, 0.5627033114433289, 1.043967604637146, 0.13995444774627686, 0.849648654460907, -0.38961854577064514, -0.19371679425239563, 0.8960064649581909, -0.19408728182315826, 0.6995401978492737, -0.41886165738105774, 0.3931300938129425, -0.771913468837738, -0.4092974066734314, 1.3020496368408203, 0.03943462669849396, -0.09989827871322632, 0.37519586086273193, -0.448026567697525, 0.13841426372528076, -0.41087499260902405, 0.5429008603096008, 0.008024636656045914, -0.9044497013092041, -1.0733882188796997, -0.9620575308799744, -0.843664824962616, -0.5152467489242554, -0.29681187868118286, -0.7091808319091797, 1.5514250993728638, 0.319512277841568, 0.37527748942375183, 0.19737392663955688, 0.30594614148139954, -0.7138950824737549, -0.4859659969806671, -0.487746000289917, -0.9115239381790161, -0.8098945021629333, 0.44589248299598694, 1.040587306022644, -0.401591956615448, 0.75066077709198, 1.2183631658554077, -0.5162286758422852, 0.46717071533203125, -0.3324207365512848, 0.5446309447288513, 0.2709965705871582, 0.65218186378479, -0.7129713296890259, -0.8893372416496277, 0.5049474835395813, -0.1405859887599945, 0.7702723145484924, 0.1059018224477768, -0.3238271176815033, 0.9899681210517883, -0.7852070331573486, 0.924942672252655, -0.043105050921440125, -0.27982082962989807, 0.32816800475120544, -0.2752861976623535, 0.11282496154308319, -0.25346052646636963, -0.5545422434806824, -0.5159963965415955, -0.02264379896223545, -1.1150853633880615, -0.08845128864049911, -0.11211808770895004, -0.7848736643791199, -0.03278520330786705, -0.5588028430938721, 0.6323474049568176, 0.6354861855506897, 0.8185372948646545, 0.5147333741188049, -0.34586429595947266, 0.3499945402145386, 0.14142154157161713, 0.5281873941421509, 0.1156000867486, 0.470119446516037, -0.1318068504333496, -0.9280646443367004, 1.1468929052352905, 0.042547378689050674, -0.5052033066749573, 0.9580056667327881, 0.48998603224754333, 0.3767263889312744, 0.674286961555481, -1.0010074377059937, 0.07227948307991028, -0.6469976902008057, 0.21925824880599976, -0.26446011662483215, -0.23892736434936523, 0.787628173828125, -1.514567494392395, -1.3394633531570435, -0.5245693325996399, 0.6887292861938477, -0.8274527788162231, 0.35356074571609497, 0.4743536114692688, 0.7488804459571838, -0.5430992841720581, 0.3391479551792145, 0.05589867755770683, -0.6011093854904175, -0.8797019720077515, -0.41957953572273254, -0.5728978514671326, -0.8890525102615356, 0.04113377258181572, -0.04897518828511238, -0.47351208329200745, 0.2826786935329437, -1.3771278858184814, -0.6952084898948669, -0.40771743655204773, -0.4475068151950836, -0.5709606409072876, -1.1429575681686401, 0.872765839099884, -0.3192250728607178, 0.8634790778160095, -1.055463433265686, 1.0756175518035889, -0.7020883560180664, -0.03565725311636925, 0.4080994129180908, -0.0948449969291687, 0.06660331785678864, 0.6086380481719971, -0.7858341932296753, -1.2567836046218872, 1.0164008140563965, -0.0015497393906116486, -0.28163111209869385, 0.39672866463661194, 0.2737213373184204, 0.4585283696651459, 0.05062964931130409, -0.07019808888435364, 0.4521341919898987, 0.18854759633541107, -1.2088500261306763, -0.8597833514213562, -0.5546852350234985, 0.25594794750213623, -0.5893504619598389, -0.7092527151107788, 0.8212499618530273, 0.14181070029735565, -0.2058515101671219, 0.15085969865322113, -0.5040002465248108, -0.3079420328140259, 0.6390330195426941, 1.2936152219772339, 0.27955362200737, 0.4609842896461487, -0.31908687949180603, 0.10924877971410751, -0.1705697625875473, 0.6726192831993103, 0.7081126570701599, -0.11808700114488602, 0.08477992564439774, 1.444206953048706, 0.834803581237793, 0.29696762561798096, 0.4177016019821167, 0.05097868666052818, -0.3547806739807129, -0.6036457419395447, -1.042223334312439, 0.6233624815940857, -0.18610981106758118, 1.201638102531433, 0.5498614311218262, -0.6532349586486816, 0.11215724796056747, -0.11009734123945236, -0.4689174294471741, -0.4869863986968994, -0.810358464717865, 0.2156832069158554, -0.40469831228256226, -0.19602803885936737, 0.012266958132386208, 0.5294481515884399, -0.27372249960899353, 0.49235227704048157, -0.8539975881576538, -0.07805421948432922, 0.02234080620110035, 0.46101638674736023, 0.23854520916938782, 0.8905319571495056, -0.5038647055625916, -1.1299684047698975, -0.4345601499080658, -0.281109482049942, 0.9681785702705383, -0.05611153319478035, 0.4387713074684143, -0.403389573097229, 0.31162673234939575, -0.48775389790534973, 0.27014732360839844, -0.010148432105779648, -0.02742084674537182, 0.45489779114723206, -0.6194477081298828, 0.3055984377861023, 1.424221158027649, -0.5769718885421753, -0.7579941749572754, -0.5111896395683289, 0.824682891368866, 0.895017147064209, 1.2308685779571533, 1.4416857957839966, 0.3577919006347656, 0.12836073338985443, -0.2030058652162552, -0.44081494212150574, -0.8184372186660767, -0.7991872429847717, -0.5078191757202148, -0.6762086153030396, -0.37806978821754456, -0.06338418275117874, 0.14669662714004517, 0.6616639494895935, -0.1269146353006363, 0.8908211588859558, 1.542635440826416, -0.2066839188337326, -0.8120040893554688, 0.2221103310585022, -0.1496739536523819, -1.0251048803329468, 0.5724160671234131, 0.7044910192489624, -1.022097110748291, -0.8514164686203003, -0.656618595123291, 0.06214884668588638, 0.6756892204284668, 0.10004988312721252, -0.30732882022857666, -1.1848045587539673, -0.9576493501663208, -0.4601729214191437, 1.1796609163284302, -0.20242874324321747, 0.0791732668876648, -0.811670184135437, 0.07148965448141098, 0.15801948308944702, -0.7398173809051514, -0.8123195767402649, 0.7488853335380554, -0.7628440856933594, -0.38228097558021545, 0.2112068384885788, 0.25813010334968567, -0.15257516503334045, -0.6153128147125244, -0.14316925406455994, 0.13699625432491302, -0.07161487638950348, -0.2165609449148178, 0.7302780151367188, 0.13510718941688538, 1.077891230583191, 0.20974351465702057, -0.5175093412399292, 1.1168718338012695, -0.15983113646507263, -0.1535727083683014, -1.2018568515777588, 0.33737656474113464, -0.09076416492462158, 1.5068105459213257, 0.11303569376468658, 0.9752611517906189, 0.2808680534362793, 0.2745416760444641, 0.13526737689971924, 0.3585244417190552, 1.4154791831970215, 0.3229539394378662, -0.548845648765564, -0.34975412487983704, 0.005903742276132107, -0.005199737381190062, -0.7417136430740356, -0.7784575819969177, 0.38512396812438965, -0.43923717737197876, -1.271399736404419, 0.9204506874084473, 0.36010998487472534, -0.5579041838645935, -0.7065880298614502, -0.19038650393486023, 0.8326646089553833, 0.022538527846336365, 0.17455706000328064, -0.8377483487129211, 0.3479725122451782, -0.1850261688232422, -1.4240025281906128, 0.06573644280433655, 0.7894104719161987, 0.08159443736076355, 0.5071418881416321, -1.0388679504394531, 0.22272305190563202, -0.10918329656124115, 0.6941282153129578, 0.32049527764320374, -0.5549417734146118, 0.17449960112571716, 0.07603368908166885, 0.5532093644142151, 0.12868660688400269, 0.23960816860198975, 1.5379014015197754, -0.02558302879333496, -0.06141955405473709, 0.5762155055999756, -0.13075514137744904, -0.0031811995431780815, -0.5605348348617554, -0.6525914072990417, -0.0013317442499101162, -0.04918481037020683, 0.31172654032707214, -0.07259504497051239, -0.6218045949935913, 1.494405746459961, 1.3380173444747925, 0.40031424164772034, 0.7493155598640442, -0.3464108407497406, -0.4895746111869812, 0.34534889459609985, 0.6723459959030151, -0.0318727008998394, -0.9032614231109619, -0.3327111601829529, 0.030449645593762398, -0.4134844243526459, 0.5031440854072571, 0.09358684718608856, 0.8588635921478271, 0.15310679376125336, 0.38500139117240906, -0.34839004278182983, 0.03229888156056404, 0.6341962218284607, 1.7246989011764526, -0.05989157781004906, -0.13558828830718994, -0.7307185530662537, 0.7970162630081177, -1.3367395401000977, -0.2544417083263397, 0.5190500617027283, 0.7090532183647156, 1.2749872207641602, -1.9146728515625, -0.7873866558074951, 0.3929021656513214, 0.3968425393104553, 0.6621072888374329, 0.3840138018131256, 0.12471947073936462, -0.19467857480049133, 0.49765151739120483, 0.5520491003990173, -0.2880251407623291, -0.253378689289093, 0.07637662440538406, -0.08675935864448547, -0.12954504787921906, -0.7790033221244812, 0.7258589863777161, -0.519189178943634, -0.2740902006626129, -0.8343279361724854, -0.32784178853034973, 0.18866494297981262, 0.7330381274223328, 0.28151631355285645, 1.177242398262024, -0.07632016390562057, -0.4079296290874481, 0.601882815361023, -0.5507228374481201, 0.3021993041038513, 0.06080891191959381, -0.7437050342559814, -0.455559104681015, -1.1417838335037231, -0.19828657805919647, 0.4555739760398865, -0.8919369578361511, 0.07347877323627472, -0.43353062868118286, -1.4097758531570435, 0.004637557547539473, 0.9251989722251892, 1.156551718711853, 0.9232827425003052, 0.2176039218902588, 0.186819925904274, 0.9178867340087891, -0.842926561832428, -0.11287675052881241, 0.1718108206987381, -0.14195869863033295, 0.09658334404230118, -1.7123476266860962, -0.4114535450935364, 0.3179496228694916, 0.11964063346385956, -0.3033916652202606, 0.2901507318019867, 1.1561264991760254, 1.0083332061767578, -0.14297108352184296, -0.580247163772583, 0.28890660405158997, -0.9925051331520081, 0.1397813856601715, 0.5132163763046265, -0.7966015934944153, -0.0999758318066597, -0.4853486716747284, -0.9773833155632019, 0.7350562810897827, -0.7436516284942627, -0.7808681130409241, 1.1829878091812134, -0.08733881264925003, 0.2799917161464691, 0.4213060736656189, -0.3354288637638092, 0.3018556535243988, 0.6963522434234619, -0.276234894990921, -0.9527466297149658, 0.10575124621391296, 0.5261749625205994, 0.49660754203796387, -0.05304047837853432, 0.7627595067024231, 0.5634832382202148, -0.28247642517089844, 0.22735081613063812, -0.009191320277750492, 0.6713594794273376, 0.9824463725090027, 0.6881142258644104, -0.8824561238288879, -0.19361896812915802, -0.7750246524810791, -0.879105806350708, 0.12318813800811768, 0.37964314222335815, -0.3498540222644806, -1.1669528484344482, -0.5222716927528381, -0.40528419613838196, -0.031277988106012344, 0.14455293118953705, -0.7082638740539551, 0.8129667639732361, 0.014895768836140633, -0.13244351744651794, 0.034440502524375916, -0.4902280867099762, -0.18021342158317566, 0.055744484066963196, -0.01838049665093422, 0.34267616271972656, -1.6444225311279297, -0.19834646582603455, 0.05604953318834305, -0.5203763842582703, 0.11412648111581802, 0.33228057622909546, 0.5249267816543579, -1.4267339706420898, -1.3222347497940063, -1.0348318815231323, 0.1716352254152298, 0.7071461081504822, -1.464162826538086, 0.1250821053981781, 1.6059556007385254, -1.9071565866470337, -0.33553948998451233, 0.4710334539413452, -1.4549973011016846, -0.18928441405296326, -1.604570984840393, 1.1021896600723267, -0.18877866864204407, 0.19570624828338623, -0.5113556981086731, 1.4349619150161743, -0.9874256253242493, -1.6347509622573853, -0.4798542857170105, -0.13557526469230652, 0.5465113520622253, 1.0988726615905762, -0.6374061107635498, 1.138185977935791, 0.65234375, -0.4379740059375763, -0.8048437833786011, 0.30853116512298584, -0.9512988924980164, 0.6991510987281799, 0.2931666672229767, 0.1159379780292511, 0.19047145545482635, 1.2239283323287964, -0.3952083885669708, 0.9401617646217346, 0.19939498603343964, 1.1688776016235352, -1.1620045900344849, -0.1556577980518341, -0.1308588683605194, 0.47757020592689514, -1.3290661573410034, -0.21819891035556793, -0.6731084585189819, -0.6344332695007324, -1.249241828918457, 0.690073549747467, 0.5188474655151367, -1.0487686395645142, -0.1652234047651291, -0.11560361832380295, 0.447224885225296, -0.3570307195186615, 0.0783017948269844, -0.14669835567474365, -0.08075596392154694, 0.29100722074508667, 0.4492504596710205, -0.1945137232542038, -1.7481226921081543, 0.2535116970539093, 0.26583898067474365, 0.6029338240623474, -0.6094457507133484, 0.8043069839477539, 0.6658835411071777, -0.38022056221961975, -0.6025951504707336, 1.7169848680496216, 0.8446548581123352, -0.3196799159049988, -0.22220748662948608, 0.17401356995105743, 0.39259371161460876, 0.6761637926101685, -0.44305482506752014, 0.4683360159397125, -0.8297353386878967, 0.772311806678772, 0.39460307359695435, 0.3208118677139282, -0.6426733136177063, -0.02278665080666542, -0.5331943035125732, 0.3274219036102295, 0.04595963656902313, -0.955920934677124, 0.13010366261005402, 0.9787425994873047, 0.20758050680160522, -0.6988789439201355, 0.7844803929328918, 0.5968615412712097, -0.10753010213375092, -0.0830683708190918, 0.62876296043396, 0.44874587655067444, -1.1596921682357788, 0.4372084140777588, 0.638005793094635, -0.15090565383434296, -0.2666245698928833, -0.8264731168746948, -0.8080670833587646, -0.016283484175801277, -0.18941710889339447, -0.9537336826324463, 0.48750460147857666, -0.9268849492073059, -0.8438416123390198, 0.6442979574203491, -0.302682101726532, -0.19134852290153503, -0.20073439180850983, 0.5658091306686401, -0.4339909255504608, 0.4971258044242859, 0.9435189962387085, -0.6871581077575684, 0.5872192978858948, 0.34914880990982056, -0.38513118028640747, -1.0468546152114868, -0.45968103408813477, -0.31249284744262695, 0.36859437823295593, -0.3926648199558258, 0.260883629322052, 0.6392585635185242, 0.10460298508405685, -0.6328880190849304, 0.23876963555812836, 0.12305634468793869, 0.15584653615951538, -0.43483954668045044, -0.15759970247745514, 0.3791789710521698, 0.35733333230018616, 0.6197731494903564, -0.04080818593502045, -1.2194416522979736, -0.4086208641529083, 0.3368340730667114, -0.36427047848701477, 0.2983398139476776, -0.11842961609363556, 1.0452642440795898, 0.01580449938774109, 0.08224038034677505, -0.23825882375240326, -0.8899075388908386, -0.23957347869873047, -0.3986341953277588, 0.4456826448440552, -0.06360075622797012, -0.5032121539115906, 0.008643228560686111, -1.1531285047531128, 0.33130916953086853, -0.24838887155056, 0.14796172082424164, -0.2026737928390503, -0.9385685324668884, -1.0307823419570923, -0.28809601068496704, 0.35795655846595764, 0.9331397414207458, 0.24334529042243958, 0.13753753900527954, -0.3800719976425171, -0.7074911594390869, 0.5862389802932739, 0.08566340059041977, -0.09532129019498825, 0.2986864745616913, 1.1780906915664673, 1.7674169540405273, 0.2937249541282654, 0.4372052252292633, -0.0651395320892334, 0.40185144543647766, 0.3766496479511261, -0.3758625090122223, -0.42873767018318176, -0.2439148724079132, 0.3065917491912842], [-0.22785523533821106, 2.2373828887939453, -2.2456398010253906, 0.4039178192615509, 1.0387638807296753, -0.11745643615722656, 1.0879347324371338, -0.061171337962150574, -0.21780507266521454, -0.15630672872066498, -0.47304943203926086, -0.38628050684928894, 0.35573649406433105, 0.6189746856689453, 0.04966402053833008, 0.7730790972709656, 0.8258230686187744, -0.41605350375175476, 1.0061343908309937, 1.3454910516738892, 0.1671840101480484, -0.42834052443504333, 0.10946690291166306, 0.20513346791267395, -0.8351485729217529, 0.3865463137626648, -0.7504324316978455, -0.6073112487792969, -0.6499089598655701, -1.12537682056427, 0.9982943534851074, -0.6764819622039795, 0.37343183159828186, 0.06117478758096695, -0.7907814383506775, -0.5771318674087524, 1.6982972621917725, 1.694701075553894, 0.37593355774879456, 0.4299807548522949, 1.2656840085983276, -0.47502750158309937, 0.06333303451538086, -1.613202691078186, -0.45652511715888977, -0.05063660815358162, 0.9907670021057129, -0.7896416187286377, 0.11879066377878189, -0.3696594834327698, 0.33121055364608765, -0.31715908646583557, 1.1016967296600342, 0.5559731125831604, 0.4234812557697296, 0.3370603621006012, 0.4151964783668518, -0.32297733426094055, 0.7522987127304077, -0.37494972348213196, 1.323598861694336, -0.3735935389995575, -0.3726560175418854, 0.3168726861476898, 0.5787918567657471, -0.7958365678787231, 0.9602218270301819, 0.06519154459238052, -0.19409680366516113, -0.08878346532583237, 0.3467271029949188, 0.09259974956512451, -0.6883520483970642, -0.1808028221130371, -1.4201687574386597, 0.12185791879892349, 1.1777855157852173, 1.0398036241531372, 0.19258713722229004, 0.7513161301612854, -0.3234427273273468, -0.10868306457996368, 0.9617471694946289, -0.05418969318270683, 0.346606582403183, -0.22006560862064362, -0.031655699014663696, -0.48713770508766174, -0.2068920135498047, 1.6697067022323608, 0.1238255575299263, 0.25098344683647156, 0.4620455205440521, -0.36308005452156067, -0.022850699722766876, -0.6870232820510864, 0.22523684799671173, 0.1846543252468109, -0.5707270503044128, -0.21202591061592102, -1.1479065418243408, -1.418201208114624, 0.52789306640625, -0.28137555718421936, -0.06044241040945053, 1.2523077726364136, 0.5107556581497192, 0.03099033422768116, -0.6808274388313293, 0.012660758569836617, -0.44523385167121887, 0.327173113822937, -0.7778862118721008, -1.2376118898391724, -0.2320006638765335, 0.78693687915802, 1.2697993516921997, 0.17065081000328064, 0.0079941526055336, 0.8590127825737, 0.30191272497177124, -0.20837071537971497, -0.23785966634750366, 1.3643471002578735, -0.2902359366416931, 0.26249760389328003, -0.7015889883041382, -0.31122463941574097, -0.0499800406396389, 0.056275609880685806, 0.5543016791343689, 0.6328334808349609, -0.23826216161251068, 0.8704175353050232, -0.49474313855171204, 0.8045950531959534, -0.8202505111694336, -0.040825482457876205, -0.36539867520332336, -0.3312375843524933, 0.2515961229801178, -0.5990952253341675, -0.5639703869819641, 0.027106909081339836, -0.783245861530304, -0.4375079572200775, 0.2244163304567337, -0.09656219929456711, -0.7461557984352112, 0.029319074004888535, -1.1512269973754883, 0.26073595881462097, 0.7936707735061646, -0.1108248233795166, 0.5877388715744019, 0.02898314595222473, 0.4267706573009491, 0.19675005972385406, 0.173061341047287, 0.6443688869476318, 0.8950648903846741, -0.08364826440811157, -1.2384164333343506, 0.9267991185188293, 0.5905659794807434, -0.005758625455200672, 0.7864751815795898, 0.6371635794639587, 0.4106811285018921, 0.7701586484909058, -0.6394748091697693, -0.8000850677490234, -0.5670034289360046, 0.6700995564460754, 0.22765451669692993, 0.04039822891354561, 0.657564640045166, -0.3825187087059021, -1.7282981872558594, -1.2009201049804688, 0.8305754661560059, -0.6803281307220459, 0.04719000309705734, 0.6090233325958252, 0.23843327164649963, -0.4381226897239685, 0.45305389165878296, -0.1429382562637329, -0.29509857296943665, -0.20584693551063538, -0.8415999412536621, -0.09151758253574371, -0.24340040981769562, 0.3680608868598938, -0.13700321316719055, -0.47340208292007446, 0.39216476678848267, -1.4327318668365479, -0.7093251347541809, -0.2233094573020935, 0.20894896984100342, -0.5785483121871948, -0.693469226360321, 0.17641426622867584, -0.6479983925819397, 1.1649354696273804, -1.6401363611221313, 1.0612270832061768, -0.719397246837616, 0.6104215383529663, 0.3585023283958435, 0.18409806489944458, -0.4097810983657837, 0.8869937658309937, -0.003151940181851387, -1.9291714429855347, 0.2914007604122162, 0.41503047943115234, -0.4114908277988434, 0.4555265009403229, 0.14920751750469208, 0.35501906275749207, 0.10180817544460297, -0.09668587893247604, 0.4678270220756531, 0.13471975922584534, -0.5889852643013, -1.2965023517608643, -0.5481626987457275, 0.07369954138994217, -0.3475653827190399, -1.2513482570648193, 1.3173245191574097, 0.209189772605896, -0.8095027804374695, 0.47465750575065613, -0.23481255769729614, 0.25462159514427185, 0.21581405401229858, 1.524114966392517, 0.3839344382286072, -0.22387300431728363, 0.34418973326683044, -0.6807446479797363, -0.5712338089942932, 0.738266110420227, 0.3405890166759491, 0.0004492737352848053, 0.005168125033378601, 1.2309365272521973, 1.2280027866363525, -0.4383864998817444, 0.15749689936637878, 0.22917580604553223, -0.11135576665401459, -0.8419535756111145, -0.7102165222167969, 0.11398406326770782, -0.7441355586051941, 1.7042020559310913, 1.2807896137237549, -0.8806345462799072, -0.2472328096628189, 0.12979747354984283, -0.4990723729133606, -0.18466344475746155, -0.9382440447807312, -0.7368553280830383, -0.468222051858902, 0.4400516450405121, -0.3618190586566925, 0.5173205137252808, -0.3201025724411011, 0.17253142595291138, -0.561395525932312, -0.561120867729187, -0.028090575709939003, 0.08333232998847961, -0.032432787120342255, 0.6592358350753784, -0.07771491259336472, -1.6923094987869263, -0.25250402092933655, 0.3384104073047638, 0.40801510214805603, -0.051035404205322266, 0.19047430157661438, -0.10251335054636002, 0.18840017914772034, -0.12188772857189178, 0.18307951092720032, -0.07939623296260834, -0.13656778633594513, -0.06420347094535828, -0.4572482705116272, 0.751613199710846, 0.7964110970497131, -1.4375678300857544, -0.10237818211317062, -0.21322119235992432, 0.6144965291023254, 1.4580918550491333, 0.4532800018787384, 1.2205331325531006, -0.1574595868587494, 0.1318710744380951, -0.41426992416381836, -0.8730002045631409, -1.5337077379226685, -0.25328513979911804, -0.6585462093353271, -0.9961957931518555, 0.11334224790334702, 0.3800256550312042, 0.2329310029745102, 0.09445065259933472, -0.6522655487060547, 0.5999457836151123, 1.2106988430023193, -0.25038468837738037, -0.7876133322715759, -0.2670644223690033, -0.5368695259094238, -0.9697149991989136, 0.6671193838119507, 1.25532066822052, -1.4191025495529175, -0.6917511224746704, 0.28731489181518555, 0.33742162585258484, 1.1755023002624512, 0.3711440861225128, 0.2203143686056137, -1.0666007995605469, -0.9707087278366089, -0.13176363706588745, 0.9916465282440186, -0.47089672088623047, -0.4248453676700592, -0.3691237270832062, 0.5684471130371094, 0.3692469596862793, -0.7938137650489807, -0.31105339527130127, 0.834223747253418, -0.42786967754364014, -0.8009086847305298, 0.2896675169467926, 0.6664333343505859, -0.06061217561364174, -0.6309053897857666, -0.7034061551094055, -0.8021005392074585, -0.35134798288345337, -0.059238821268081665, 0.3877880275249481, 0.22573091089725494, 0.6255958080291748, -0.32770997285842896, -0.29150140285491943, 0.643143355846405, 0.2102525681257248, -0.16475924849510193, -1.1775397062301636, 0.40160512924194336, 0.44887495040893555, 0.8748040199279785, 0.22998543083667755, 0.3831334412097931, 0.5868667960166931, 0.3024653494358063, 0.013214340433478355, 0.6185821294784546, 1.3439040184020996, 1.0275715589523315, 0.37387004494667053, -0.40235358476638794, -0.33980000019073486, -0.4987275004386902, -0.23505094647407532, -0.048826664686203, 0.38468384742736816, -0.4338268041610718, -0.6301988363265991, 0.7159565091133118, 0.2809445261955261, -0.7637959718704224, -0.1553489714860916, 0.22177529335021973, 0.6448743343353271, -0.1816481500864029, -0.20270395278930664, -0.660963237285614, -0.3120761811733246, -0.25419753789901733, -1.2251139879226685, -0.27979186177253723, 0.3992200791835785, -0.07934024930000305, 0.9750484228134155, -0.8373006582260132, 0.5144224166870117, -1.1992701292037964, 0.8619219064712524, 0.5308647155761719, -0.1908080279827118, 0.16122180223464966, 0.0034679267555475235, 0.32791686058044434, 0.4081834554672241, 0.3463399410247803, 1.001857876777649, 0.12229528278112411, 0.2771366238594055, 0.48293814063072205, -0.5336170196533203, -0.15507951378822327, -1.344577670097351, -0.5770959854125977, 0.12171752005815506, -0.6862106919288635, -0.35818105936050415, 0.3081471621990204, -0.2167980968952179, 0.6121984720230103, 0.8398903608322144, 0.1955101490020752, 0.7753261923789978, -0.10122480243444443, -0.41777852177619934, -0.33269309997558594, 0.13795585930347443, -0.22062155604362488, -0.21612298488616943, 0.2788400948047638, 0.780462384223938, -0.08182253688573837, 0.6348367929458618, 0.2780235707759857, 0.6660827398300171, 0.14638078212738037, 0.608199417591095, -0.09329154342412949, 0.43260204792022705, 1.0097886323928833, 1.4630616903305054, -0.004486028105020523, -0.5588210225105286, -0.8541399836540222, 0.5827996730804443, -1.4147005081176758, 0.27169710397720337, 0.2775648236274719, 0.7650831937789917, 1.5924240350723267, -1.4296770095825195, 0.024846158921718597, 0.8151515126228333, 0.5080351233482361, 0.7830361127853394, 0.45957353711128235, -0.6802054643630981, -0.23567259311676025, 0.5539263486862183, 0.4990188777446747, -0.201370969414711, 0.031061163172125816, 0.11705554276704788, -0.3592835068702698, 0.676120400428772, -0.8242924809455872, 0.1832466572523117, -0.39754432439804077, -0.35605213046073914, -0.3017062842845917, -0.869106113910675, 0.3011229634284973, 0.5058380961418152, 0.7926794290542603, 0.8871760368347168, -0.008831813931465149, -1.2816401720046997, -0.04390927031636238, -0.7897673845291138, 0.262423574924469, -0.5269729495048523, -1.1324187517166138, -0.9064223766326904, -0.975821316242218, -0.3381868600845337, 0.07346390187740326, -0.1823660433292389, -0.3484361171722412, -0.7252933979034424, -1.053511619567871, 0.5903090238571167, 1.1240233182907104, 1.0815178155899048, 1.2436503171920776, -0.08844584971666336, 1.2112510204315186, -0.07083891332149506, -0.9564362168312073, -0.21427389979362488, 0.4003485143184662, -0.0661611258983612, 0.058248016983270645, -1.3436353206634521, -0.6340950131416321, 0.4714076817035675, 0.3050670027732849, -0.3202850818634033, 1.1198039054870605, 1.2631739377975464, 1.030511498451233, -0.03188025578856468, -0.40522706508636475, 0.5286447405815125, -0.2601882815361023, 0.4125155508518219, 0.7643907070159912, -0.09843427687883377, -0.1317296326160431, -0.6893662810325623, -1.2082099914550781, 1.0282814502716064, -0.38580945134162903, 0.08351331949234009, 0.9014619588851929, -0.18340040743350983, 0.752819836139679, 0.18440182507038116, -0.572883129119873, 0.4942838251590729, 0.21766670048236847, -0.855937659740448, -0.8478487730026245, -0.259954035282135, 0.3068452775478363, -0.02540876530110836, -0.08002474159002304, -0.12645210325717926, 0.09135639667510986, 0.33650660514831543, -0.1317652016878128, -0.16257542371749878, 0.3609243929386139, 0.5876141786575317, 0.3676932454109192, -0.8410636186599731, -0.3502233326435089, -0.7978652715682983, -0.49398908019065857, -0.0011064107529819012, 0.5370075702667236, 0.43492192029953003, -0.6158583760261536, -0.030067339539527893, -0.608780026435852, -0.5227062106132507, -0.20613296329975128, -0.11372826993465424, 0.725375771522522, 0.5665811896324158, 0.21150177717208862, -0.6520248651504517, -0.667655885219574, -0.1759267896413803, 0.00135841965675354, 0.13258874416351318, 0.596627414226532, -0.9785099029541016, -0.19970624148845673, 0.26574668288230896, -0.349173903465271, 0.18168634176254272, -0.11250142008066177, 0.4113949239253998, -0.7173133492469788, -0.9050090312957764, -0.7571355104446411, -0.05439654737710953, 0.6891889572143555, -0.5716102719306946, 0.7194176316261292, 0.5658722519874573, -1.7777851819992065, 0.40875443816185, -0.4140724241733551, -1.8564372062683105, 0.20718428492546082, -1.2322415113449097, 0.8898681998252869, 0.014213060960173607, -0.14009533822536469, -0.05138031020760536, 1.0494617223739624, -1.4758667945861816, -0.9621855020523071, -0.9361824989318848, -0.418047159910202, 1.1094287633895874, 0.850042998790741, -0.3838527798652649, 1.376530408859253, 0.39087605476379395, -0.12416452914476395, -0.7102813720703125, 0.3994019627571106, -0.3975943624973297, 0.53331458568573, 0.3883848488330841, 0.1137750893831253, 0.3804532289505005, 0.7829322814941406, 0.17566461861133575, 1.0241636037826538, 0.040135834366083145, 1.437720775604248, -1.0993973016738892, -0.49947401881217957, 0.3249814808368683, 0.8260900378227234, -1.3328232765197754, -1.2086108922958374, -0.4666571319103241, -0.681257963180542, -0.6169041991233826, -0.09526293724775314, 0.5952696800231934, -0.18727031350135803, -0.33590078353881836, -0.32517746090888977, 0.7967218160629272, -0.9823150038719177, 0.16991585493087769, 0.5272596478462219, -0.3392471373081207, -0.5543686151504517, 0.16436506807804108, -0.2265574038028717, -1.5293238162994385, 0.286716490983963, -0.3584386110305786, 0.15837813913822174, -0.7491689324378967, 0.5346406698226929, 0.39795994758605957, 0.3394485116004944, -0.047064971178770065, 1.3778786659240723, 0.5624397993087769, -0.3553043305873871, -0.3246922194957733, -0.03311822563409805, -0.39619356393814087, -0.361591637134552, -0.8569578528404236, -0.4018113315105438, -0.8431091904640198, 1.2672182321548462, 0.07544556260108948, 0.08424710482358932, -0.5047550797462463, 0.42975592613220215, -0.6449558138847351, 0.18752285838127136, 0.4737573564052582, -0.8028111457824707, -0.1956975758075714, 1.209696650505066, 0.5173267722129822, -0.7870743274688721, 0.24643678963184357, 0.29795947670936584, 0.49633538722991943, -0.5833953022956848, 0.15127168595790863, 1.0107226371765137, -0.5652956366539001, -0.12134787440299988, -0.17238961160182953, -0.4170668125152588, -0.10677313804626465, -0.34982946515083313, -1.5665847063064575, -0.24645264446735382, -0.5636792182922363, -0.5325038433074951, 1.1282145977020264, -1.253427505493164, -0.37121883034706116, 0.3741675913333893, -0.04232078418135643, 0.26854291558265686, 0.1369909644126892, -0.10202227532863617, -0.3672889471054077, 0.340505450963974, 1.0550708770751953, -0.29288455843925476, 1.0701528787612915, 0.2617706060409546, 0.26335248351097107, -0.7948395609855652, -0.1477934718132019, -0.17801421880722046, 0.028010301291942596, -0.1461229771375656, 0.1400335282087326, 0.6812500357627869, 0.16310171782970428, -0.6949052810668945, -0.016715796664357185, -0.22329162061214447, 0.41105377674102783, -0.48476114869117737, 0.022644754499197006, 0.5008945465087891, 0.4706219732761383, 0.4112304449081421, -0.25457388162612915, -0.8354753255844116, -0.6752229332923889, -0.5314415693283081, -0.7362421154975891, 0.06391126662492752, -0.5500633120536804, 1.151565670967102, 0.2927199900150299, -0.413712739944458, -0.49549710750579834, -0.5633295178413391, 0.6058862805366516, -0.005080765578895807, 0.04150596633553505, -0.24057906866073608, 0.3801710307598114, 0.15292701125144958, -0.7512966990470886, 0.5423058271408081, 0.6582276821136475, -0.39334720373153687, 0.18535862863063812, -1.2157025337219238, -0.8664947748184204, -0.4907052218914032, 0.6293572783470154, 2.192929983139038, 0.7340728044509888, 0.021966028958559036, -0.19479504227638245, -0.8613547682762146, -0.4868135452270508, 0.17566965520381927, 0.7177695035934448, -0.17515714466571808, 1.5901761054992676, 2.3413054943084717, 0.40558990836143494, 0.40250280499458313, -0.04108231142163277, 0.5087684988975525, -0.7433497905731201, -0.34147557616233826, -0.9038982391357422, -0.10477621853351593, 0.42237383127212524], [-0.17672094702720642, 1.621644377708435, -2.274167060852051, 0.4035872519016266, 0.384313702583313, 0.4594663381576538, 1.4124928712844849, -0.4941955804824829, -0.4209184944629669, -0.30006319284439087, -0.7752721309661865, 0.04752945154905319, 0.7782857418060303, 0.19357255101203918, 0.7556052207946777, 1.0532811880111694, 0.9120571613311768, -0.5455566048622131, 0.7457415461540222, 1.0691030025482178, 0.02881619520485401, -0.2779920697212219, 0.2840351164340973, -0.14054080843925476, -0.6868820786476135, 0.10131917148828506, -1.4494373798370361, -1.0033546686172485, -0.635256826877594, -0.8047274947166443, 0.3527170419692993, -0.1812538504600525, 0.2250131517648697, 0.04734416678547859, -1.1464118957519531, -0.7365709543228149, 1.8949440717697144, 0.9517704248428345, 0.6520074605941772, 0.6554428339004517, 1.0794038772583008, -0.9507446885108948, 0.45174655318260193, -1.245727777481079, 0.7819578647613525, -0.19849224388599396, 0.8180361390113831, -0.6016074419021606, 0.4932107627391815, -0.725473165512085, 0.3994295597076416, -0.2100500613451004, 0.15582218766212463, 0.8113975524902344, 0.6298880577087402, 0.03170875087380409, 0.40494152903556824, 0.3293026089668274, 0.4678110182285309, -0.6314868927001953, 1.2135289907455444, -0.13608084619045258, -0.1261187046766281, 1.5204734802246094, 0.2078344076871872, -0.7189492583274841, 0.32267627120018005, 0.5933084487915039, 0.2993795871734619, -0.4071042835712433, 0.7255382537841797, 0.4722817838191986, -0.4519162178039551, 0.9087212085723877, -1.5260109901428223, 0.7315530180931091, 0.9958367347717285, 0.6104435324668884, 0.14101985096931458, 0.6987362504005432, 0.07204294949769974, -0.23342975974082947, 0.7984232902526855, 0.09455779194831848, -0.07481686025857925, 0.2679775655269623, 0.8630573749542236, -0.2942022681236267, -0.06266313791275024, 1.410448670387268, 0.5876668095588684, 0.6340188384056091, 0.5578529238700867, -0.5865656137466431, -0.44935712218284607, -0.38140642642974854, 0.5229847431182861, 0.42069122195243835, -1.3778409957885742, -0.813398540019989, -0.9012076258659363, -0.7917594909667969, -0.04102421551942825, -0.1412895768880844, 0.5602254867553711, 1.2617332935333252, 0.45408278703689575, 0.06672004610300064, -0.5973274111747742, 0.21495206654071808, -0.6430007815361023, 0.07338336110115051, -1.0570656061172485, -0.7134658098220825, -1.0913310050964355, 1.0581395626068115, 0.7509440183639526, -0.259839802980423, 0.3944483995437622, 0.8185912370681763, -0.448466956615448, -0.649453341960907, 0.225660040974617, 0.8203412890434265, 0.7478656768798828, 0.49789103865623474, -0.6451820731163025, -0.7548779249191284, 0.15579931437969208, 0.4905361831188202, 0.497760146856308, -0.21501874923706055, 0.1404886096715927, 1.0141605138778687, -1.076125144958496, 1.4987527132034302, -0.9201064109802246, -0.9069100618362427, -0.5336041450500488, 0.29911887645721436, 1.0022563934326172, 0.024627361446619034, -0.035226114094257355, -0.48040324449539185, 0.010248793289065361, -0.4656359851360321, -0.07753001153469086, -0.27715134620666504, -0.9584395885467529, 0.24474453926086426, -0.9040161967277527, 0.9041545391082764, 0.10487519204616547, 0.7347759008407593, 0.36988893151283264, -0.0722104087471962, 0.2115197777748108, 0.4713189899921417, 0.44279736280441284, -0.06927560269832611, 0.9622827768325806, -0.0030493754893541336, -1.164194107055664, 1.0652683973312378, 0.4324782192707062, -0.3484989106655121, -0.15353259444236755, 0.9549651145935059, 0.07385013997554779, 0.5795741677284241, -0.1706533133983612, -0.1339409053325653, -0.8706281185150146, 0.5690674781799316, 0.3351391851902008, -0.06584782153367996, 1.8708980083465576, -0.5023415684700012, -1.745489239692688, -1.2192944288253784, 0.42906418442726135, -0.7910353541374207, -0.22541138529777527, 0.16147840023040771, 0.03593318164348602, -0.8949916958808899, 0.7601486444473267, -0.5107277035713196, -0.5069928765296936, -1.080614686012268, -0.21723297238349915, -0.3500916659832001, -0.7601171731948853, 0.10623271018266678, -0.21275442838668823, -0.7723716497421265, 0.4460251033306122, -1.570190668106079, -0.41208693385124207, -0.17766010761260986, -0.23852145671844482, -0.5799693465232849, -0.8290969729423523, 0.8330252766609192, -0.011396314948797226, 1.115666151046753, -0.9006977081298828, 1.118242859840393, -0.6287444233894348, 0.03168186545372009, 1.1937310695648193, 0.2561441957950592, -0.9192126393318176, 1.1953223943710327, 0.13194260001182556, -1.7445112466812134, 0.8767375349998474, 0.7096145749092102, -0.14244908094406128, 0.3661361634731293, 0.15978915989398956, 0.12623360753059387, 0.2714722752571106, -0.05696553364396095, 0.014565303921699524, -0.48992353677749634, -0.6549461483955383, -0.7589261531829834, -0.6192569732666016, 0.4925718605518341, -0.7835414409637451, -1.4424089193344116, 1.3022106885910034, 0.6132326126098633, -0.9971462488174438, 0.003561088815331459, 0.09761645644903183, 0.20759153366088867, 0.3705812692642212, 1.5896081924438477, 0.2919814884662628, 0.24466830492019653, -0.4638054370880127, -0.6112381815910339, -0.2687491476535797, 0.23822227120399475, 1.265608787536621, 0.4333534240722656, 0.27850988507270813, 1.2821680307388306, 1.062999963760376, 0.1538589894771576, 0.5637555122375488, -0.10873405635356903, -0.43637919425964355, -0.6752830147743225, -1.112574577331543, 0.530585527420044, -0.535300612449646, 1.3609321117401123, 0.7543901801109314, -0.5647104382514954, 0.2071121335029602, 0.12215876579284668, -0.09686890989542007, -0.22251062095165253, -0.7451666593551636, -0.13548371195793152, 0.06599050760269165, -0.2967747449874878, -0.4123019874095917, 0.7306304574012756, -0.5947848558425903, 0.2592189908027649, -0.6760563254356384, -0.5667694211006165, -1.3332529067993164, 0.43069350719451904, -0.17397016286849976, 1.022047519683838, 0.05600109323859215, -1.3636418581008911, -0.7355663776397705, -0.05567963793873787, 0.668621301651001, 0.23113077878952026, 0.3388499617576599, 0.13149189949035645, 0.5873106122016907, -0.5563694834709167, 0.5114798545837402, -0.21615596115589142, -0.23426276445388794, -0.20943768322467804, 0.04221830144524574, 0.4361480176448822, 0.9592086672782898, -0.5326777696609497, -0.8887330293655396, -0.08838757872581482, 0.32800209522247314, 1.3151488304138184, 0.5986949801445007, 0.44583994150161743, 0.3506544828414917, -0.8531807661056519, -0.7096635699272156, -0.439167320728302, -1.1625043153762817, -0.7016194462776184, -1.0009536743164062, -1.0856831073760986, -0.10598666220903397, 0.05614222586154938, -0.02632240392267704, 0.6418297290802002, -0.29575926065444946, 0.6719126105308533, 1.9306538105010986, -0.12414267659187317, -0.4533098340034485, 0.04339456930756569, -0.3611205816268921, -0.9146994948387146, 0.1548391729593277, 1.2869495153427124, -1.1850471496582031, -0.9243360757827759, -0.059701696038246155, 0.6508095860481262, 0.24179749190807343, -0.2238229215145111, -0.20008130371570587, -1.4263900518417358, -0.3742203712463379, -0.21475890278816223, 1.615312099456787, -0.45433640480041504, -0.3824353516101837, -0.20793265104293823, 0.6053348183631897, 1.0818042755126953, -0.4613765776157379, -0.6795815825462341, 0.8983929753303528, -0.5074393153190613, -0.6674280762672424, 0.25895383954048157, 0.43235570192337036, 0.7507489323616028, -0.7326796650886536, -0.5059598684310913, -0.39870622754096985, 0.18819914758205414, -0.0422525629401207, 0.5057674646377563, -0.21507062017917633, 1.295356273651123, -0.3898327052593231, -0.17342303693294525, 0.6133860945701599, -0.5604179501533508, 0.21746811270713806, -1.0939052104949951, 0.3259452283382416, 0.33903366327285767, 1.1190154552459717, 0.07106717675924301, 0.3625059425830841, 0.23847438395023346, 0.6711313128471375, -0.18836797773838043, 0.36385205388069153, 1.2080860137939453, 0.43435442447662354, 0.07555446028709412, -0.8043442964553833, -0.32252129912376404, 0.048852983862161636, -0.3669002652168274, 0.11053802073001862, 0.9038928747177124, -1.149665355682373, -1.0418907403945923, 0.760492205619812, 0.5037440061569214, -0.3152388632297516, -0.377229243516922, -0.414554625749588, 0.7111827731132507, -0.28892549872398376, 0.19771568477153778, -0.970137357711792, -0.04645948112010956, 0.04300058260560036, -1.3380776643753052, 0.12231703847646713, 0.6618890166282654, 0.45942530035972595, 0.25327593088150024, -1.0110735893249512, 0.4014015197753906, -0.7621094584465027, 0.4506908059120178, 0.7297048568725586, 0.5493136048316956, 0.18752454221248627, 0.0738459974527359, -0.254395455121994, -0.02400893345475197, 0.0610659122467041, 1.813439965248108, -0.49400466680526733, 0.3960399031639099, 0.38737285137176514, -0.37298867106437683, -0.6456005573272705, -0.6203044652938843, -0.3779016435146332, -0.05838238447904587, -0.05698086693882942, 0.10105618089437485, 0.4577978551387787, -0.8269091844558716, 1.660125732421875, 0.4971850514411926, 0.6336691379547119, 0.8483002185821533, -0.07691136747598648, -0.8489494919776917, -0.3246220648288727, 0.4684239327907562, 0.036262672394514084, -0.7522971630096436, -0.5840819478034973, 0.08409802615642548, -0.020554518327116966, 0.2873615324497223, 0.3511892557144165, 1.3022618293762207, 0.5006539821624756, 0.7309169769287109, -0.052676159888505936, 0.5853807330131531, 0.9384487867355347, 0.6134957075119019, 0.2801113426685333, -0.25894567370414734, -0.9930904507637024, 0.863281786441803, -0.811209499835968, -0.46123746037483215, 0.2808692157268524, -0.2279597520828247, 1.4238858222961426, -1.2751785516738892, -0.6291172504425049, 0.6251279711723328, 0.4948138892650604, 0.3362131714820862, 0.7858352065086365, -0.5932830572128296, -0.5526740550994873, 0.8109477162361145, 0.2870769202709198, -0.39765334129333496, -0.053268127143383026, 0.33694908022880554, -0.5447695851325989, 0.3768480122089386, -0.6943851709365845, 0.2891412079334259, -0.8161470890045166, 0.6001183986663818, -0.5557524561882019, -0.6833103895187378, -0.3063233494758606, 0.39231258630752563, 0.654050886631012, 1.2657290697097778, -0.24361105263233185, -1.2479197978973389, 0.34734734892845154, -0.7009727358818054, 0.29866963624954224, -1.065300464630127, -0.2938941419124603, -0.8728664517402649, -0.09849037975072861, 0.10683559626340866, 0.7607333660125732, -0.29042765498161316, -0.4300994575023651, -0.5604560375213623, -1.5680922269821167, 0.5784745812416077, 0.6087546944618225, 1.5022138357162476, 0.4784398078918457, 0.1765984743833542, 0.7247817516326904, 0.5773820281028748, -0.7570422887802124, -0.2432907521724701, 0.47681763768196106, -0.18023110926151276, 0.295930415391922, -1.4919335842132568, -0.03836807608604431, 0.5759286284446716, 0.18645797669887543, -0.3262290060520172, 0.7410531640052795, 1.0195975303649902, 1.1009430885314941, -0.4120155870914459, -0.24971537292003632, 0.5524557828903198, -0.07171134650707245, 0.1402348130941391, 0.36255353689193726, 0.2765149474143982, -0.8585891723632812, -0.4612407386302948, -0.8981433510780334, 0.6773684024810791, 0.26108822226524353, -0.598041296005249, 0.5827190279960632, 0.1612267643213272, 1.5498688220977783, 0.7372630834579468, -0.03460770845413208, 0.6936190724372864, -0.14372645318508148, -0.36772772669792175, -1.0830944776535034, 0.5902937054634094, -0.14672839641571045, 0.1791212260723114, -0.4269416630268097, 0.3725645840167999, -0.22534531354904175, -0.06028739735484123, -0.23603187501430511, 0.3950091302394867, 0.3910825848579407, 0.9062830805778503, 0.6192708611488342, -0.5611864328384399, 0.1360102742910385, -0.9019784927368164, -0.6523467898368835, -0.31108152866363525, 0.012072283774614334, -0.07599187642335892, -0.33983808755874634, 0.3206765949726105, -0.2982216477394104, -0.9587849974632263, 0.19878335297107697, -0.7118752002716064, 0.7035545110702515, 0.2456919252872467, 0.27063533663749695, -0.016169890761375427, -0.2248014658689499, 0.10115034133195877, -0.2126585990190506, 0.6063427329063416, 0.11813722550868988, -1.218124270439148, -0.14309270679950714, 0.3369000256061554, -0.8286210894584656, -0.21056243777275085, -0.2000841349363327, 0.09848268330097198, -0.8457618355751038, -0.9775633811950684, -0.5999213457107544, 0.39645177125930786, 0.6285902857780457, -0.6467127203941345, 0.4145409166812897, 0.9095190167427063, -1.3968205451965332, 0.2969128489494324, -0.16292904317378998, -0.9054487943649292, -0.18177221715450287, -0.7828019857406616, 1.1237536668777466, 0.07354189455509186, 0.11642570793628693, 0.42301324009895325, 0.9758509397506714, -1.7529877424240112, -1.3993269205093384, -0.9197384715080261, 0.13245373964309692, 1.0678025484085083, 0.6514393091201782, -0.4037073254585266, 0.864725649356842, 1.1428323984146118, -0.6345378160476685, -0.28981420397758484, -0.18779145181179047, -1.0034691095352173, 0.5082188844680786, 0.6355360150337219, 0.1632813811302185, 0.4454038441181183, 1.1446596384048462, -0.0784306526184082, 0.7492548823356628, 0.19844353199005127, 1.2192716598510742, -1.2009333372116089, -0.4096483290195465, 0.2747323215007782, 0.6617680191993713, -1.2617946863174438, -1.0070991516113281, -0.6135569214820862, -0.6263745427131653, -0.5498185753822327, 0.2798953354358673, 0.508453905582428, -0.8183160424232483, -0.756921112537384, -1.1447710990905762, 0.36157557368278503, -0.5895327925682068, -0.2303004413843155, -0.24611704051494598, -0.4852203130722046, -0.5534419417381287, 0.5230114459991455, 0.05006246268749237, -2.046889066696167, 0.11317754536867142, -0.11490461230278015, 0.3078150749206543, -0.9126355051994324, 0.47834235429763794, 0.020322300493717194, 0.3208328187465668, -0.4337858557701111, 1.1763752698898315, 0.8633029460906982, -0.30897384881973267, -0.4137845039367676, 0.09050966799259186, 0.415031760931015, 0.18720079958438873, -1.1262657642364502, -0.6818907260894775, -1.1898150444030762, 0.9454784393310547, 0.5725075006484985, -0.04057908430695534, 0.31797724962234497, 0.2903331518173218, -0.2786630392074585, 0.7966693043708801, 0.8681538105010986, -1.2792531251907349, -0.4065851867198944, 0.574900209903717, 0.39759352803230286, -0.6269723176956177, 0.2140411138534546, 0.5357787013053894, 0.6853694915771484, -0.9596107602119446, 0.28282907605171204, 0.5029609799385071, -0.6981082558631897, -0.048038091510534286, 0.33587977290153503, -0.2798900306224823, 0.11938376724720001, -0.38726314902305603, -1.3705730438232422, -0.17890416085720062, -0.18538247048854828, -0.4953806698322296, 0.5297460556030273, -1.5113966464996338, -0.7555738091468811, 0.7259737253189087, -0.2754901647567749, -0.3599949777126312, -0.3780193626880646, 0.4376867115497589, -0.30926257371902466, -0.17068341374397278, 1.1211299896240234, -0.15019868314266205, 1.0933077335357666, 0.12372332066297531, 0.16023454070091248, -1.4398189783096313, -0.8530095815658569, 0.34197723865509033, 0.8183348178863525, -0.2898850739002228, 0.41416051983833313, -0.06291097402572632, -0.5211632251739502, -1.015488624572754, -0.2013387531042099, 0.0028494475409388542, 0.09674163162708282, 0.05892609432339668, -0.4833894968032837, -0.42172348499298096, 0.3724115788936615, 1.025126338005066, -0.7568652629852295, -1.0816134214401245, -0.9806352257728577, -0.030974017456173897, -0.43847113847732544, 0.43270066380500793, -0.6580321192741394, 1.1325007677078247, 0.43991512060165405, -0.03159681707620621, -0.44413477182388306, -0.6769497990608215, 1.1363445520401, -0.46175578236579895, 0.1922561079263687, 0.08510585129261017, -0.1566716432571411, 0.13914740085601807, -0.8373937010765076, -0.16212362051010132, 0.36205536127090454, 0.1247391626238823, -0.11481288075447083, -0.9666321873664856, -0.9213067293167114, -0.3844809830188751, 0.43658894300460815, 1.12208890914917, 0.3153340518474579, -0.023747775703668594, -0.007308878004550934, -0.9531449675559998, 0.3328474164009094, -0.39151695370674133, -0.11357565224170685, 0.0841764286160469, 1.7333825826644897, 2.1333484649658203, 0.831139862537384, 0.4526994526386261, -0.629386842250824, 0.3331376314163208, -0.6586752533912659, -0.175201416015625, -0.35302209854125977, -0.568543016910553, -0.2309112399816513], [-0.6581152677536011, 1.6396565437316895, -2.0918335914611816, 0.21144556999206543, 1.988892674446106, 0.8692334294319153, 1.7479602098464966, 0.007288071326911449, 0.7443130612373352, -0.6643525958061218, -0.8148419857025146, 0.0009867050684988499, 0.23365418612957, 0.6420363783836365, 0.17292553186416626, 0.2910539209842682, 0.44178301095962524, -0.11875453591346741, 0.6033714413642883, 1.0447782278060913, 0.5562571883201599, -0.09175687283277512, -0.002002950757741928, 0.8667835593223572, -0.043135955929756165, 0.27421313524246216, -1.3533529043197632, -0.4085557162761688, -1.148576021194458, -1.077439546585083, 1.2231637239456177, -0.8302479386329651, 0.3157443106174469, -0.18784290552139282, -1.9789751768112183, -0.4917010962963104, 0.9419385194778442, 0.7265887260437012, 0.35737115144729614, 0.3456543982028961, 1.526041865348816, -0.05362454429268837, -0.2858382761478424, -1.7358548641204834, -0.8027259111404419, 0.4575214684009552, 1.07957923412323, -0.970197856426239, 0.01466461829841137, -0.053149253129959106, 0.3152987062931061, -0.6516901850700378, 1.1984084844589233, 1.1165733337402344, 0.908905029296875, -0.31695011258125305, 0.6134877800941467, 0.04814188554883003, 0.18932677805423737, -0.6376225352287292, 1.31403648853302, 0.2269701212644577, -1.3410485982894897, 0.2230507880449295, -0.3338388204574585, 0.39297008514404297, -0.031457725912332535, 0.5866495370864868, 0.37174224853515625, 0.09879516810178757, 0.982003927230835, 0.610760509967804, -0.8074008226394653, -0.017712360247969627, -1.0464398860931396, -0.26738014817237854, 0.41705241799354553, 0.5839055776596069, 0.7924792766571045, 1.2276469469070435, -0.35434356331825256, 0.24041114747524261, -0.046741221100091934, 0.15855644643306732, 0.2120853215456009, 0.5975332856178284, 0.3614216446876526, -0.6894967555999756, -0.7201101183891296, 1.727138638496399, 0.26971662044525146, -0.01373034343123436, 0.6476876139640808, -0.5264800190925598, -0.16968683898448944, -0.7948935627937317, 0.03327731788158417, -0.25332218408584595, -0.46048256754875183, -0.9129361510276794, -0.5677998661994934, -0.9182329773902893, 0.0036889472976326942, -0.29568052291870117, 0.31468307971954346, 1.221415638923645, 0.08505845814943314, -0.4512940049171448, -0.1066618338227272, -0.4705670177936554, -0.0197521410882473, 0.8978608846664429, -0.8004733324050903, -0.544815719127655, -0.24225062131881714, 0.872047483921051, 0.6640069484710693, -0.11565695703029633, 0.7196035981178284, 0.012874136678874493, -0.2921285927295685, 0.18882186710834503, -0.8144233822822571, 0.9922434687614441, 0.5660260915756226, 0.6803079843521118, -0.39412474632263184, -0.5032685399055481, 0.915925920009613, -0.18606993556022644, 0.7875991463661194, 0.036083489656448364, 0.042570073157548904, 0.9560336470603943, -0.4758816659450531, 1.514431357383728, -0.20694942772388458, -0.6872221827507019, -0.12378933280706406, -0.07290240377187729, -0.027457384392619133, 0.2292357087135315, -0.23877397179603577, -1.078084111213684, 0.48669853806495667, -0.6522760987281799, 0.5626681447029114, 0.48015767335891724, -0.34652575850486755, -0.015156403183937073, -1.134990930557251, 0.5096065998077393, 0.07355474680662155, 0.9275142550468445, 0.4105859100818634, 0.18579019606113434, 1.19817316532135, 0.3920058012008667, 0.6262179017066956, 0.48459577560424805, 0.9465669989585876, 0.10777980089187622, -1.4264730215072632, 1.2354944944381714, -0.1781725138425827, -0.14001084864139557, 0.7918780446052551, 0.7553600072860718, -0.10740560293197632, 0.8709064722061157, -0.4516354501247406, -0.7891861200332642, -0.6671082973480225, 0.7474825382232666, 0.08423222601413727, -0.0808676928281784, 1.279272437095642, -0.5557361841201782, -1.5509603023529053, -0.7259911894798279, 1.097446322441101, -0.4807933270931244, 0.7506093978881836, -0.12738710641860962, 0.9357742667198181, -0.6485020518302917, -0.20274317264556885, -0.2957143783569336, -0.10169155150651932, -0.7800664305686951, -0.8847349882125854, -0.5479387640953064, -1.1233819723129272, -0.28002315759658813, -0.12967030704021454, -0.6134681105613708, 0.384316086769104, -0.9378303289413452, -0.6014409065246582, 0.5301374793052673, 0.2474128156900406, -0.34644097089767456, -0.8024130463600159, -0.39129534363746643, -0.5358843207359314, 0.3044261932373047, -1.0719411373138428, 1.0461825132369995, -1.00257408618927, 0.4438139498233795, 1.0608363151550293, 0.13487029075622559, -1.1454194784164429, 1.1915688514709473, 0.3782971203327179, -1.6498253345489502, 0.7013893723487854, 0.25823473930358887, 0.015639981254935265, -0.23266510665416718, 0.1887558400630951, 0.14287212491035461, 0.5157338380813599, 0.22496266663074493, 0.505422830581665, -0.04491134732961655, -1.2849950790405273, -1.1077110767364502, -0.6498677730560303, 0.41077202558517456, 0.09820220619440079, -1.334010362625122, 0.8311668038368225, 0.6471247673034668, -0.8897184133529663, 0.12615251541137695, -0.21325771510601044, -0.13713116943836212, 0.7203191518783569, 1.3846596479415894, 0.07539670914411545, 0.9236953854560852, 0.42353588342666626, -0.3835046589374542, -0.34953996539115906, 0.11125072091817856, 1.476477861404419, -0.26900938153266907, 0.15365146100521088, 1.0636173486709595, 0.57392418384552, 0.14467507600784302, -0.2551376521587372, -0.4032003879547119, -0.3683132827281952, -0.990772545337677, -0.6292861104011536, -0.3688407838344574, -0.25829049944877625, 1.898073434829712, 0.7074134349822998, -0.5515446662902832, -0.8386452794075012, 0.20120809972286224, -0.330753356218338, -0.3209131062030792, -0.5170084238052368, -0.6074069142341614, 0.04345569387078285, -0.002529754303395748, 0.01077295746654272, 0.2421169877052307, 0.18091124296188354, 0.747439444065094, -0.3129713833332062, -0.7956451177597046, -0.801705539226532, -0.030621889978647232, 0.1532469093799591, 0.7134752869606018, -0.15084101259708405, -0.9073165655136108, 0.05995254963636398, -0.040614936500787735, 1.4766643047332764, -0.5490111112594604, 0.21282552182674408, 0.04521356523036957, 0.9452296495437622, 0.09237750619649887, 0.4234088063240051, 0.43172532320022583, -0.09129589796066284, 0.2833346724510193, 0.19148853421211243, 0.634295642375946, 0.6983973979949951, -1.187738299369812, -1.231213092803955, -0.11421467363834381, 0.2751219868659973, 1.6655490398406982, 0.6458724737167358, 0.8969991207122803, -0.21200738847255707, -0.16705168783664703, -0.7400158643722534, -0.3845461308956146, -0.4828025698661804, -0.5653649568557739, -1.0880398750305176, -0.7179571390151978, -0.0609130784869194, -0.3315350413322449, 0.5396719574928284, 0.11340634524822235, -0.7334431409835815, 1.0302125215530396, 0.6367818713188171, -0.4976157546043396, -0.964978039264679, -0.30024921894073486, -0.30188775062561035, -0.9579609036445618, 0.5057946443557739, 1.3898637294769287, -1.4518625736236572, -1.2591711282730103, -0.2072848081588745, -0.037904705852270126, 1.1325910091400146, -0.06904638558626175, 0.3085000216960907, -1.1013015508651733, -0.5281079411506653, -0.5554431676864624, 1.1294457912445068, -0.0839659720659256, -0.8122780919075012, -1.3915657997131348, 0.18951639533042908, 0.7086938619613647, -0.6247121095657349, 0.2966194450855255, 0.8214610815048218, -0.5829710960388184, -0.41960862278938293, -0.6356569528579712, 0.13567228615283966, 1.0104910135269165, -0.6808119416236877, -0.40949463844299316, -0.5662455558776855, -0.49295544624328613, -0.5681283473968506, 0.8570418357849121, 0.6466465592384338, 0.7528921961784363, 0.6941189169883728, -0.38182318210601807, 1.626700758934021, -0.6815651655197144, 0.2882443070411682, -1.3664920330047607, 0.39740461111068726, 0.6911579966545105, 1.1379272937774658, -0.28814342617988586, 0.41881823539733887, 0.041022107005119324, -0.3532048165798187, 0.009773443453013897, 0.3824272155761719, 1.0041112899780273, 0.47531431913375854, -0.6530548930168152, 0.28856533765792847, -0.27501481771469116, -0.9197410941123962, -1.1796811819076538, -0.4639698266983032, 0.669352650642395, -0.6607048511505127, -0.4538109302520752, 1.6408473253250122, 0.622808039188385, 0.009979795664548874, -0.3493759036064148, -0.3318824768066406, 1.345896601676941, 0.20054635405540466, -0.5010256171226501, -0.16708339750766754, 0.380031943321228, 0.05158940330147743, -0.7321094274520874, -0.5368868112564087, -0.19873039424419403, 0.6729457974433899, 0.8990111947059631, -1.0907222032546997, -0.17310269176959991, -0.25513318181037903, 0.6299825310707092, 0.35570093989372253, 0.02495594508945942, -0.22520489990711212, -0.20054301619529724, 0.07024449110031128, 0.02091214619576931, 0.5397087931632996, 1.0816036462783813, -0.08383605629205704, -0.4250226318836212, 0.09748802334070206, 0.3893337845802307, 0.1302809715270996, -0.06272342056035995, -0.4915623962879181, 0.092011958360672, -0.9751074314117432, -0.2649708390235901, -0.15330065786838531, -0.3852986991405487, 1.212648630142212, 0.10145675390958786, 0.41055747866630554, 1.1496647596359253, 0.5221176147460938, -1.3051589727401733, 0.11340637505054474, 0.004885035566985607, -0.4315088987350464, -0.7101557850837708, 0.21523422002792358, 0.26444101333618164, -0.032384879887104034, 0.15977998077869415, 0.32174357771873474, 0.9128842353820801, -0.38956350088119507, 0.6578835248947144, 0.2694575786590576, 0.5917918682098389, 0.9446987509727478, 0.9907920956611633, 0.6985624432563782, -0.2569906711578369, -1.1338565349578857, 0.6751337051391602, -1.0385656356811523, 0.20308510959148407, 0.8081520795822144, 0.3800327181816101, 0.8402061462402344, -2.5167124271392822, -1.0465526580810547, 0.2023410052061081, 0.12040463835000992, 0.39183178544044495, 0.8657310009002686, -0.39043110609054565, -0.5415728092193604, 0.19034601747989655, -0.07418972998857498, -0.43121641874313354, 0.45442333817481995, -0.15435287356376648, -0.17240199446678162, 0.28777337074279785, -0.6267033219337463, 0.2057761251926422, -0.6123049855232239, -0.5363758206367493, 0.13426774740219116, -0.22765617072582245, 0.023654330521821976, 0.7745926380157471, 0.7321226596832275, 0.6808139681816101, -1.2068984508514404, -1.1506491899490356, 0.6981436610221863, -0.2230987399816513, -0.1076788380742073, 0.007249295711517334, -0.4409750699996948, -0.6454651355743408, -0.5244570970535278, -0.7496327757835388, 0.9617720246315002, -0.26270872354507446, -0.9568430185317993, -0.6293336749076843, -1.403826117515564, -0.7274718284606934, 0.3307349383831024, 1.1179611682891846, 1.4143266677856445, 0.5182601809501648, 0.23173105716705322, -0.12761026620864868, -0.932005763053894, 0.21672481298446655, 0.42410770058631897, 0.10393192619085312, -0.3816944658756256, -0.9535780549049377, -0.6067425012588501, 0.7222273945808411, 1.112208604812622, -0.23356148600578308, 0.6685919761657715, 1.3128118515014648, 0.9919762015342712, -0.3573344647884369, -1.4228472709655762, 0.7491172552108765, -0.11735163629055023, 0.40030452609062195, 0.7705652117729187, -0.3132505714893341, -0.5013763904571533, 0.21995648741722107, -1.631919503211975, 0.706847608089447, -0.5675978064537048, -1.146405577659607, 0.7148941159248352, 0.28319644927978516, 0.7690178155899048, 0.8350341320037842, -0.8492114543914795, 0.3049406111240387, 0.5664389729499817, -0.5158408284187317, -0.6322757005691528, 0.4975210428237915, 0.2641817033290863, 0.4927695393562317, -0.2157207727432251, 0.6818507313728333, 0.13822327554225922, -1.2769142389297485, 0.04507329314947128, 0.5643845200538635, 0.1408894956111908, 0.6996368765830994, 0.6571593880653381, -1.1718829870224, 0.39087724685668945, -0.60269695520401, -0.42654964327812195, -0.6420485973358154, 0.16514547169208527, 0.9191845655441284, -0.15798072516918182, 0.12386025488376617, -0.4065704047679901, -0.7121105790138245, -0.7174025774002075, -0.8157095909118652, 0.43816670775413513, 0.5793955326080322, -0.6873641610145569, 0.02234232984483242, -0.8435823321342468, -0.4181007444858551, -0.634009599685669, -0.3518305718898773, 0.3161231279373169, -1.3110215663909912, -0.42548874020576477, 0.1963663399219513, -0.545257031917572, -0.6561908721923828, -0.2969011068344116, 0.43229421973228455, -0.4727764129638672, -1.1313577890396118, -1.021220088005066, 0.6602450609207153, 0.7088720202445984, -0.8553982973098755, 0.5135540962219238, 0.090912826359272, -1.7144170999526978, 0.11504613608121872, -0.5746828317642212, -1.0062119960784912, -0.03330615535378456, -1.024814486503601, 0.9582509398460388, -0.21479836106300354, -0.004597063641995192, -0.07655398547649384, 1.455157995223999, -1.4572057723999023, -0.9930209517478943, -0.944467306137085, -0.019029885530471802, 1.1680593490600586, 0.5338999032974243, -0.6168878078460693, 1.7325602769851685, 0.3274848759174347, -1.0771112442016602, -0.5103893876075745, 0.5814847946166992, -1.0276274681091309, 0.38284817337989807, 0.4684281051158905, 0.6862058639526367, 0.5805323719978333, 1.606066107749939, 0.10107779502868652, 0.5140860080718994, 0.15267519652843475, 0.30327144265174866, -0.5604091286659241, -0.8523921966552734, -0.4066084027290344, 0.6738668084144592, -1.4037044048309326, -0.867386519908905, -0.2009590119123459, -0.1287134289741516, -1.1773762702941895, 0.5444958806037903, 0.43523845076560974, -0.9748692512512207, 0.4151756167411804, 0.5346125364303589, 0.3019174039363861, -0.15331634879112244, 1.1079885959625244, 0.7701334953308105, -1.2048759460449219, -0.16088242828845978, -0.14449657499790192, -0.2821897268295288, -0.9922645092010498, 0.170105442404747, -0.11981365829706192, 0.24211017787456512, -0.025116760283708572, 0.16097526252269745, 0.6778253316879272, -0.5662406086921692, -0.5006389021873474, 1.4298062324523926, 0.8695401549339294, -0.5552879571914673, -0.35635238885879517, 0.8462905287742615, -0.10818566381931305, 0.8644427061080933, 0.0522179938852787, 0.5161607265472412, -0.3394297659397125, 0.7696083188056946, 0.3404395878314972, 0.07135429978370667, -0.34423479437828064, 0.16552422940731049, -0.6872947216033936, 0.5744602084159851, 0.2137278914451599, -0.8396568894386292, -0.6430959701538086, 1.2607755661010742, 0.13866645097732544, 0.00965836551040411, 0.40581220388412476, 0.37013810873031616, 0.5122069716453552, -0.08073817193508148, 0.4329625070095062, 0.6509307026863098, -1.1614587306976318, 0.07907421886920929, -0.23275204002857208, 0.11419246345758438, 0.28231361508369446, 0.02779802680015564, -1.9185917377471924, 0.7027381658554077, -0.8600049614906311, -0.55577152967453, 0.7679347991943359, -0.7801126837730408, -0.6932699084281921, -0.03110515885055065, 0.14121192693710327, 0.25118324160575867, 0.03290870785713196, -0.5970875024795532, -0.19157004356384277, 0.7183504104614258, 0.13556469976902008, -0.8479203581809998, 1.3544224500656128, -0.35772058367729187, -0.05882987752556801, -0.5068572163581848, -0.24334834516048431, -0.16549701988697052, 0.8450995683670044, -0.127470925450325, -0.38415008783340454, 0.9920724630355835, -0.3463003635406494, -0.80471271276474, 0.20748279988765717, -0.14100483059883118, 0.20388759672641754, -0.3104933798313141, -0.29032304883003235, -0.28514546155929565, 0.3649105131626129, 0.5975886583328247, -0.7322986721992493, -0.37438684701919556, -0.49564212560653687, 0.20674599707126617, -0.5265288949012756, 0.7640729546546936, -0.5595723986625671, 1.1949005126953125, -0.03643948584794998, -0.6021814942359924, -0.3427211046218872, -0.06800267100334167, 0.5456691384315491, 0.07258205860853195, 0.5696225762367249, -0.28956639766693115, -0.22331811487674713, -1.1343809366226196, -0.7791057229042053, 0.04974576085805893, 0.9079607129096985, 0.02514035440981388, -0.3339470624923706, -0.8469246029853821, -0.4850563704967499, -0.812861442565918, -0.15560492873191833, 0.753617525100708, 0.2555370628833771, 0.12512587010860443, 0.0892556831240654, -0.6474204659461975, 0.5251177549362183, -0.10454187542200089, 0.45586398243904114, 0.4096349775791168, 1.0810012817382812, 1.3183454275131226, 0.20346562564373016, 0.09976989030838013, -0.4208381175994873, 0.9278064370155334, -0.7007107734680176, -0.2463027536869049, -0.8064283132553101, -0.3816251754760742, 0.10385258495807648], [-0.27454328536987305, 1.425248146057129, -2.473788022994995, 0.18851768970489502, 0.747577428817749, 0.24007061123847961, 1.9964004755020142, -0.6006693243980408, 0.5000813007354736, -0.4443661570549011, -0.8832708597183228, -0.2886675298213959, 0.4508390724658966, 0.5978891849517822, 0.1739782840013504, 1.035631537437439, 0.5739539265632629, -0.7612840533256531, 0.10249457508325577, 1.0397311449050903, 0.38166627287864685, -0.8832384347915649, -0.1657762974500656, 0.9842340350151062, -0.48326271772384644, -0.0017935093492269516, -1.3307781219482422, -0.42761433124542236, -0.9005762338638306, -0.8043467998504639, 0.5658870935440063, -0.9161427617073059, 0.13711169362068176, 0.2258627712726593, -1.2307945489883423, -0.013796673156321049, 2.2469382286071777, 0.629023015499115, 1.312562108039856, 0.12630338966846466, 1.4421058893203735, -0.25249141454696655, 0.532541811466217, -1.6288481950759888, 0.42093899846076965, -0.4086221158504486, 1.607401967048645, -0.5808631777763367, 0.5682916641235352, -0.41656479239463806, -0.09461664408445358, -0.6416246294975281, 0.4859810769557953, 0.2939690351486206, 1.066848635673523, 0.4546400010585785, 0.864008903503418, -0.18475943803787231, 0.36261993646621704, -0.5559713840484619, 1.5450283288955688, -0.4326685667037964, -0.452117919921875, 0.7016952633857727, 0.04077203944325447, -0.3652760982513428, 0.0018812473863363266, 0.41167527437210083, -0.23031693696975708, 0.05330197885632515, 1.1890476942062378, 0.1916859745979309, -0.1379489302635193, 0.4557284414768219, -0.9527162909507751, 0.48207512497901917, 0.2994747459888458, 1.16520094871521, 0.4341644048690796, 0.4805445671081543, -0.1838318556547165, -0.2311563342809677, 1.317625641822815, -0.19113211333751678, -0.41630613803863525, -0.14840221405029297, 0.8415820598602295, -0.09493211656808853, -0.44754865765571594, 0.6623340845108032, 0.6861459612846375, 0.45643705129623413, 0.737109899520874, -0.11122877150774002, 0.045752547681331635, -0.3706904351711273, 0.42969512939453125, 0.10708053410053253, -0.7015456557273865, -1.1579780578613281, -0.4994562566280365, -0.7754604816436768, -0.15890353918075562, -0.3537745773792267, 0.3184329867362976, 1.4330556392669678, 0.245415598154068, 0.36686187982559204, -0.2800128161907196, -0.06078847125172615, -0.6196436285972595, 0.34080180525779724, -0.8927160501480103, -2.128944158554077, -0.9649144411087036, 0.9117366671562195, 1.0711191892623901, 0.6920451521873474, 0.6496323347091675, 0.5355376601219177, -0.636315107345581, 0.09535837173461914, 0.4079660177230835, 0.7294147610664368, 0.5938639640808105, 0.5923471450805664, -0.5392408967018127, -0.8402851223945618, 0.40718185901641846, 0.24776223301887512, 0.8975234031677246, -0.2778395712375641, -0.2765229642391205, 1.2921383380889893, -0.6354930400848389, 0.9262838959693909, -0.5607758164405823, -0.5787657499313354, -0.2511771619319916, -0.11594871431589127, 0.6489545702934265, -0.44700491428375244, 0.020072804763913155, -0.022362466901540756, 0.024602385237812996, -0.2867301404476166, -0.09466928243637085, -0.2905648350715637, -0.6631776094436646, -0.39743974804878235, -1.1704050302505493, 0.5172235369682312, 0.028794893994927406, 0.3533609211444855, 0.5477669835090637, -0.1806195229291916, 0.27119189500808716, 0.04471024125814438, 1.0191235542297363, -0.47458338737487793, 0.3317815363407135, -0.09445103257894516, -1.275453805923462, 0.9032799005508423, -0.46362489461898804, -0.07540750503540039, 0.30942925810813904, 1.3545984029769897, 0.1952441781759262, 0.8842577934265137, -0.6429494023323059, -0.5701197385787964, -0.550195038318634, 0.38712072372436523, 0.2998899519443512, -0.6003699898719788, 1.3275424242019653, -0.23364095389842987, -1.7680678367614746, -1.4452210664749146, 0.5515474677085876, -1.0133411884307861, 0.35576096177101135, -0.1424977034330368, 0.23622502386569977, -0.29681020975112915, 0.8142991662025452, -0.2904830873012543, -0.26558464765548706, -0.28266632556915283, 0.04429549723863602, -0.633459746837616, -0.5848469138145447, -0.22546742856502533, -0.028946325182914734, 0.12918037176132202, 0.8433138728141785, -1.1651191711425781, -0.8881934881210327, -0.3118138909339905, -0.5239109396934509, -0.29025518894195557, -0.619945764541626, 0.42429089546203613, -0.05795690789818764, 0.5367283225059509, -0.8440421223640442, 1.0844193696975708, -0.39964327216148376, 0.5358250737190247, 1.325459599494934, -0.2618407607078552, -0.8514742851257324, 0.6486230492591858, -0.33718204498291016, -1.3047142028808594, 0.2569555640220642, 0.13472643494606018, -0.3715941309928894, 0.25885486602783203, -0.0640893280506134, 0.392205148935318, 0.0783151239156723, -0.1859387904405594, 0.5042192339897156, -0.046528566628694534, -0.22482632100582123, -1.1861050128936768, -0.6245672106742859, 0.5606610178947449, -1.175590991973877, -1.176238775253296, 0.8610309958457947, 0.6593891382217407, -0.43399399518966675, -0.12367048859596252, -0.14137764275074005, 0.5419302582740784, 0.14935114979743958, 1.7682645320892334, 0.3828936815261841, 0.9676015973091125, 0.27608945965766907, -0.11882670968770981, 0.1908598095178604, 0.5390812754631042, 0.7329879999160767, 0.315986692905426, -0.38663890957832336, 1.07125723361969, 1.4591532945632935, 0.6792522072792053, 0.41146233677864075, 0.03535105660557747, -0.22893552482128143, -0.8155779242515564, -1.2413264513015747, 0.5441871285438538, -0.15195664763450623, 1.370805263519287, 0.44565701484680176, -0.49772465229034424, -0.49018827080726624, 0.5197749137878418, 0.13809582591056824, -0.06819126009941101, -0.6898052096366882, -0.6618720889091492, -0.6810809969902039, -0.1800168752670288, -0.29350194334983826, 0.3319132626056671, 0.3576008379459381, 0.7791083455085754, -0.45399370789527893, -0.6296060681343079, -0.5494325160980225, 0.38567182421684265, 0.039976853877305984, 1.0458025932312012, 0.10345398634672165, -1.6282073259353638, 0.17492012679576874, 0.30707064270973206, 0.7746044397354126, -0.1964452564716339, 0.06732071936130524, -0.32496029138565063, 0.6858394145965576, -0.6354727149009705, 0.24709928035736084, -0.2734098732471466, -0.6493735313415527, 0.43783286213874817, 0.02084643766283989, 0.6984687447547913, 1.0356274843215942, -1.0462663173675537, -1.3430275917053223, 0.3282996714115143, 0.4254671037197113, 1.3282039165496826, 0.32040369510650635, 1.7226717472076416, -0.6618586778640747, -0.05256873741745949, -0.5222612619400024, -0.9737938046455383, -1.2628543376922607, -1.1423736810684204, -0.532518208026886, -0.9129317402839661, -0.5410722494125366, -0.3700718283653259, -0.2625488042831421, 0.8624935150146484, -0.4825930893421173, 0.1791190356016159, 1.838229775428772, -0.20559807121753693, -0.6624566912651062, 0.049977824091911316, -0.15025272965431213, -0.14236664772033691, 0.34510836005210876, 1.7092748880386353, -1.18328058719635, -0.4910675287246704, -0.2124335616827011, 0.16030941903591156, 0.2740347385406494, 0.5415363311767578, -0.09337466955184937, -1.3960171937942505, -1.0935815572738647, -0.38786566257476807, 1.2191587686538696, -0.011452202685177326, -0.23762251436710358, -0.5315608978271484, 0.10712356865406036, 0.8472549319267273, -0.8234347105026245, -0.3229411542415619, 0.9074970483779907, -0.2811811566352844, -0.5718308687210083, -0.14113451540470123, 0.3820496201515198, 0.2560393214225769, -1.3925957679748535, -0.7763330340385437, -0.7643254995346069, -0.46983519196510315, -0.2671373188495636, 0.787003755569458, -0.19155898690223694, 1.2505412101745605, -0.4803999066352844, -0.45357996225357056, 0.5479021668434143, 0.12716221809387207, -0.3700968623161316, -0.4207545518875122, 0.4365848898887634, 0.7015870809555054, 1.3090624809265137, -0.5151556730270386, 0.5560107231140137, 0.7855034470558167, -0.014665277674794197, -0.03623589128255844, 0.6379216313362122, 1.0049247741699219, -0.39462727308273315, -0.012431547045707703, -0.25556233525276184, -0.6096992492675781, 0.009861811995506287, -0.6254783868789673, 0.07841984182596207, 0.2656395733356476, -1.151702880859375, -0.5849944353103638, 1.1201571226119995, 0.16904519498348236, -0.19762152433395386, -0.5721360445022583, 0.7407260537147522, 0.9445149898529053, 0.08363979309797287, 0.2680281400680542, -0.6335284113883972, -0.16180039942264557, 0.2474054992198944, -1.506066918373108, -0.01728067360818386, 0.6143786907196045, 0.12791720032691956, 0.9730930924415588, -0.811971127986908, 0.10831339657306671, -1.0749422311782837, 0.9767677783966064, 0.695914626121521, 0.019915126264095306, 0.3035047650337219, -0.09276293218135834, -0.04307720437645912, -0.2413501888513565, 0.49949735403060913, 1.9311468601226807, 0.023499445989727974, -0.33397409319877625, -0.0706402063369751, -0.2147853523492813, -0.3961041271686554, -0.5973381400108337, -0.2090451717376709, 0.3810751438140869, -0.5566296577453613, -0.2096259891986847, 0.3041226863861084, -0.1453997939825058, 1.1134778261184692, 0.2142602503299713, 0.3835349678993225, 0.13281862437725067, 0.33409151434898376, -1.108399748802185, 0.04780171439051628, 0.6216959953308105, -0.08466114848852158, -1.1490384340286255, -0.3861519694328308, 0.4135529398918152, 0.47161105275154114, 0.13914088904857635, 0.3456834554672241, 0.8803189396858215, 0.7073302268981934, 0.43794262409210205, -0.18146871030330658, 1.0409377813339233, 0.5917208194732666, 1.2670918703079224, 0.030098911374807358, -0.24668213725090027, -0.33401793241500854, 0.2506087124347687, -1.5602327585220337, 0.27943727374076843, 0.6051269173622131, -0.23101404309272766, 1.2293899059295654, -2.108853578567505, -1.167397141456604, 0.07508737593889236, 0.37854307889938354, 0.26508980989456177, 0.8187055587768555, -0.6412606835365295, 0.3356730341911316, 0.638616681098938, 0.01065896824002266, -0.5354845523834229, 0.12249456346035004, -0.38179776072502136, 0.10716325789690018, 0.22443924844264984, -0.9926148056983948, 0.48401984572410583, -0.2992400825023651, -0.1682147979736328, -0.41218042373657227, -0.7823048830032349, -0.00534213799983263, 0.503109872341156, -0.06421828269958496, 1.7314485311508179, -0.41604670882225037, -0.8105464577674866, -0.1391807645559311, -0.7543358206748962, 0.450236052274704, -0.7111301422119141, 0.12284629791975021, -0.9224792122840881, 0.2471843808889389, -0.002190595492720604, 0.29387956857681274, -0.06320270895957947, -0.22502046823501587, -0.4731811285018921, -1.2668333053588867, 0.09471014887094498, 1.0348786115646362, 1.3644509315490723, 0.5335782766342163, -0.1240929439663887, 0.9941956400871277, 0.3287806510925293, -0.887189507484436, -0.29699015617370605, 0.09107483178377151, -0.24298587441444397, 0.26169368624687195, -1.29612398147583, 0.040930453687906265, -0.23294474184513092, 0.02242649719119072, -0.10189793258905411, 0.7885066270828247, 1.210290551185608, 0.8537927269935608, 0.06712044030427933, -0.5454643368721008, 1.1694236993789673, -0.3014961779117584, 1.0431874990463257, 0.7981936931610107, -0.43874114751815796, -1.3224811553955078, -0.591907262802124, -1.1454987525939941, 0.20491871237754822, -0.2284993976354599, -0.4833020269870758, 1.1447694301605225, 0.2738354206085205, 0.7837026715278625, 0.05704944208264351, -0.37322527170181274, 0.6304904222488403, -0.20568184554576874, 0.01750589907169342, -1.1618742942810059, 0.3608757555484772, 0.10114121437072754, -0.1612694263458252, 0.23633208870887756, 0.5783504843711853, 0.02735128253698349, -0.2978568971157074, -0.1199134811758995, 0.7575226426124573, -0.023732688277959824, 0.9751861095428467, 0.5821990966796875, -0.5248481035232544, 0.3577549457550049, -0.5746115446090698, -0.7693359851837158, 0.06743663549423218, 0.27994468808174133, 0.2002672702074051, -0.22657456994056702, -0.2006121724843979, -0.26709964871406555, -0.26992830634117126, 0.16878212988376617, -0.676616370677948, 0.5425662994384766, 0.1629818081855774, 0.3710450530052185, -0.27034592628479004, -0.1551169604063034, 0.18562845885753632, -0.2379283607006073, 0.33685943484306335, 0.4753641188144684, -1.188109278678894, 0.01703527569770813, 0.5705560445785522, -0.7935360074043274, -0.4318634271621704, -0.12977062165737152, 0.5051866769790649, -1.0627940893173218, -1.3307684659957886, -1.055600881576538, 0.547513484954834, 0.6038030982017517, -0.5246458649635315, 0.6753920912742615, 0.550494909286499, -1.220957636833191, 0.35867229104042053, 0.4694640636444092, -1.2689796686172485, -0.3209938108921051, -0.5236920714378357, 0.2792767584323883, -0.0032407157123088837, 0.2821144461631775, 0.21042056381702423, 1.0185285806655884, -1.8295326232910156, -1.937091588973999, -1.124551773071289, -0.617756724357605, 0.5919860005378723, 0.6422494053840637, -0.9717826247215271, 0.6299955248832703, 0.488127201795578, -0.45444223284721375, -0.9874730110168457, 0.20733879506587982, -0.49238258600234985, 0.1683253049850464, -0.5012680888175964, 0.7376731634140015, 0.19269080460071564, 0.7078273892402649, 0.3121352791786194, 0.9203892350196838, 0.2501837909221649, 0.9574254751205444, -1.2000864744186401, -0.25715044140815735, 0.2650505304336548, 0.39985644817352295, -1.868503451347351, -1.0173779726028442, -0.6048519611358643, -0.5168826580047607, -1.0382161140441895, 0.029716383665800095, 0.5943052172660828, -1.3019477128982544, 0.04907919093966484, -0.7655948996543884, 0.5205225944519043, -0.4835059642791748, 0.44918668270111084, -0.0961957797408104, -0.05138147622346878, -0.2779037654399872, -0.037953078746795654, -0.2438279688358307, -1.5727367401123047, -0.15489034354686737, 0.24585068225860596, 0.6600902676582336, -1.1509792804718018, 0.6861390471458435, 0.3580750823020935, 0.44752123951911926, -0.5917017459869385, 1.5869972705841064, 0.36278849840164185, -0.3876418173313141, -0.0009035961702466011, 0.48610278964042664, -0.004454853944480419, 0.9031898379325867, -0.8302504420280457, -0.047643423080444336, -0.7187725305557251, 0.4340156316757202, 0.3022669851779938, 0.29095515608787537, -0.2562728524208069, 0.17871008813381195, -0.17333468794822693, 0.3706655204296112, 0.638883650302887, -0.7741885781288147, -0.4974518418312073, 0.5916680097579956, 0.034728050231933594, -0.587908148765564, 0.20187370479106903, 0.45588988065719604, 0.1724061220884323, -0.7009902000427246, 0.8209311366081238, 0.028700904920697212, -0.8280840516090393, 0.5015048384666443, -0.3075910806655884, -0.5460540652275085, -0.338985800743103, 0.13245336711406708, -0.8982371687889099, -0.043968964368104935, -0.5201408863067627, -0.30953919887542725, 0.8737525939941406, -1.619057536125183, -0.7480952739715576, 0.5955162644386292, -0.5788583755493164, -0.4483410716056824, -0.05225008726119995, 0.2435772567987442, 0.3996870517730713, -0.15963150560855865, 0.7775701284408569, -0.5481452345848083, 1.519425392150879, -0.12976707518100739, -0.2176464945077896, -1.599205493927002, -0.38047999143600464, 0.4803895652294159, 0.020843110978603363, -0.3111215829849243, 0.11030600219964981, 0.18438920378684998, -0.5659557580947876, -0.630122721195221, 0.032110318541526794, 0.6605083346366882, 0.5604189038276672, 0.19880782067775726, -0.018161065876483917, 0.32863855361938477, 0.46263840794563293, 1.1899651288986206, -0.6630096435546875, -0.6593703031539917, -0.7752782702445984, -0.09416479617357254, -0.4791030287742615, 0.538923442363739, 0.45019155740737915, 0.7449751496315002, 0.2455090582370758, -0.18384557962417603, -0.5544754266738892, -1.0295262336730957, -0.429593563079834, -0.1302286833524704, 0.21445733308792114, 0.22149860858917236, -0.3111080825328827, 0.021465929225087166, -0.861899733543396, -0.14638489484786987, 0.5300970077514648, -0.07304376363754272, 0.37914490699768066, -0.9697610139846802, -0.4197864830493927, -0.22127065062522888, 0.2581969201564789, 1.2375156879425049, -0.0552690327167511, 0.4665910005569458, 0.03661464899778366, -0.9676557779312134, 0.7278875112533569, -0.004708103835582733, -0.08895399421453476, 0.36869871616363525, 1.1615257263183594, 2.283677339553833, 0.8413439989089966, 0.12064892053604126, -0.3865496516227722, 0.07218039035797119, -0.4303421676158905, -0.13036197423934937, -0.2688993513584137, -0.11474040150642395, -0.3926011621952057], [-0.10231316089630127, 1.542541742324829, -2.5506792068481445, 0.013770210556685925, 1.2372721433639526, 0.5622664093971252, 1.1710025072097778, -0.9833927154541016, 0.1498948037624359, -0.3079138994216919, -0.3785657584667206, 0.4632406234741211, 0.6828749179840088, 0.4239039719104767, -0.45974239706993103, 0.7621223330497742, 0.764174222946167, -0.4301944375038147, 0.8106884360313416, 0.5587571859359741, -0.38365012407302856, 0.18004631996154785, 0.792761504650116, -0.05460880696773529, -0.8478711247444153, 0.36871448159217834, -1.2890188694000244, -0.3753182590007782, -0.3124174475669861, -0.9001851081848145, -0.05127725377678871, -0.22348536550998688, -0.010182750411331654, 0.5973308086395264, -1.102583885192871, -0.7767161726951599, 1.0224993228912354, 1.5099375247955322, 0.7008718848228455, 1.1153331995010376, 1.5115242004394531, 0.08390673995018005, 0.2979271709918976, -1.6554392576217651, 0.723034679889679, -0.010783819481730461, 1.0885413885116577, -0.5856197476387024, 0.7545608878135681, -0.3287335932254791, 0.07870077341794968, -0.5825939178466797, 0.3568214476108551, 1.0353864431381226, 0.938971757888794, -0.2800944149494171, 0.44765397906303406, 0.43912073969841003, 1.0784560441970825, -0.8654992580413818, 1.0047310590744019, -0.127078577876091, -0.2456158697605133, 0.838921070098877, -0.11633844673633575, -0.013134530745446682, -0.2689526081085205, 0.19662906229496002, -0.3315935730934143, -0.2791432738304138, 0.3744652271270752, 0.31373801827430725, -0.9511387944221497, 0.8101162314414978, -1.186665654182434, 0.6297048926353455, 0.7611989378929138, 0.28999945521354675, 0.2186119109392166, 0.25517287850379944, -0.11349886655807495, 0.08669935911893845, 0.5192532539367676, 0.035532526671886444, 0.5262278318405151, 0.11843375116586685, 0.6235029697418213, -0.7701300382614136, -0.4527175724506378, 1.4729357957839966, 0.1048300713300705, 0.05931166559457779, 0.7939170002937317, -0.41254153847694397, -0.8020449280738831, -0.4894216060638428, 0.6362111568450928, -0.11138636618852615, -1.1058419942855835, -1.09734308719635, -0.45135369896888733, -0.6384994983673096, 0.259846031665802, 0.36946073174476624, 0.04388076066970825, 1.076377034187317, -0.1404271274805069, 0.0741674154996872, -0.3683939278125763, 0.05495676025748253, -0.020158806815743446, 0.6962958574295044, -1.1231826543807983, -1.2435716390609741, -0.426788866519928, 1.2117348909378052, 1.0080504417419434, -0.6785250902175903, 0.6132621765136719, 1.0413048267364502, -0.2725670635700226, -0.27276936173439026, -0.22333978116512299, 0.6949103474617004, 0.4352472424507141, 0.651987612247467, -0.4928848147392273, -0.6242700815200806, 0.18361616134643555, -0.2150023877620697, 0.5492573976516724, -0.2766513526439667, -0.3070913851261139, 1.100867748260498, -1.0243871212005615, 1.3780319690704346, -0.465109258890152, -0.3676786720752716, 0.10224078595638275, -0.24221384525299072, 0.8622627258300781, -0.37735283374786377, -0.2501908540725708, -0.658111035823822, -0.06965436041355133, -0.12603361904621124, -0.21702317893505096, -0.22171999514102936, -0.4089087247848511, 0.3007877469062805, -0.8146853446960449, 1.0381641387939453, 0.36342111229896545, 0.572378933429718, 0.13966664671897888, -0.3910057842731476, 0.31160110235214233, 0.4819345474243164, 1.0633087158203125, -0.286376953125, 1.0811105966567993, -0.16222122311592102, -0.9859532713890076, 0.945068895816803, 0.6298798322677612, -0.16987749934196472, 0.18016240000724792, 0.8748063445091248, -0.07519809901714325, 0.7374365925788879, -0.9230512976646423, -0.24188455939292908, -0.1223180964589119, 0.055103760212659836, 0.5046265721321106, -0.7511190176010132, 1.0255671739578247, -0.7083187103271484, -0.9875540137290955, -1.2366834878921509, 0.12454628944396973, -0.7122258543968201, 0.25384119153022766, -0.20629337430000305, 0.9651548266410828, -0.5340790152549744, 0.038932204246520996, -0.10718107968568802, -1.1991050243377686, -0.8907564878463745, -0.6217089891433716, -0.7304518222808838, -1.1152387857437134, 0.21884861588478088, -0.6517482995986938, -0.5078680515289307, 0.24859540164470673, -0.9185852408409119, -0.6684621572494507, -0.4868849217891693, -0.48254844546318054, -0.2011757344007492, -1.175481915473938, 0.5747261643409729, -0.6006377339363098, 1.1641041040420532, -1.072034239768982, 0.9367864727973938, -0.6275250315666199, -0.14257913827896118, 1.0604329109191895, -0.022112812846899033, -0.30105921626091003, 0.8900443911552429, -0.12390142679214478, -1.169551968574524, 0.7359105348587036, 0.3674589991569519, -0.5237475037574768, 0.6366515159606934, 0.8875514268875122, -0.17835716903209686, 0.37832990288734436, 0.05626624450087547, 0.33793261647224426, -0.31086742877960205, -0.5590149164199829, -0.500451385974884, -0.6186354756355286, 0.15344814956188202, -0.323744535446167, -1.2546131610870361, 1.1128665208816528, 0.2933349311351776, -0.9001065492630005, 0.009009882807731628, 0.29597607254981995, -0.06082524359226227, 0.8123360276222229, 0.91533362865448, 0.301168829202652, 0.708925724029541, -0.46245452761650085, -0.24760958552360535, -0.7188349962234497, -0.04996161162853241, 1.2519092559814453, -0.039388809353113174, 0.21923215687274933, 1.5847285985946655, 1.2612569332122803, -0.13160733878612518, 0.10082478076219559, 0.7669843435287476, -0.1704980880022049, -0.893307626247406, -0.8012451529502869, 0.09899440407752991, -0.2967660427093506, 1.1355485916137695, 1.0471404790878296, -1.1951130628585815, 0.0756956934928894, 0.06576573848724365, 0.23449182510375977, -0.23210817575454712, -0.8790729641914368, 0.4227767884731293, -0.2950938045978546, 0.37890490889549255, -0.11291307955980301, 0.5149054527282715, -0.15805242955684662, 1.0213947296142578, -0.6982010006904602, -0.3518829047679901, -0.6107677221298218, 0.9321362376213074, 0.18050290644168854, 0.4681689441204071, 0.14338427782058716, -1.604533314704895, -1.031211018562317, 0.1114993467926979, 0.9869373440742493, 0.3990553617477417, 0.18813714385032654, -0.21920625865459442, 0.025228600949048996, -0.11942527443170547, 0.2552604377269745, -0.17545486986637115, 0.29564592242240906, -0.1384926289319992, 0.16741999983787537, 0.12490396201610565, 1.1198104619979858, -0.6858652830123901, -0.8614170551300049, 0.13930542767047882, 0.19448663294315338, 1.525374412536621, 0.7330523729324341, 1.1587047576904297, 0.06768381595611572, -0.07266384363174438, -0.8443458676338196, -0.9565651416778564, -0.6795392036437988, -0.4303591847419739, -1.3113727569580078, -0.8221682906150818, -0.1656128615140915, -0.55936199426651, -0.09720733016729355, 0.6690772771835327, -0.5879802703857422, 0.9274789690971375, 1.5463922023773193, -0.7789992690086365, -0.6651318669319153, -0.05892867222428322, 0.4395228624343872, -0.9051902294158936, 0.8236761689186096, 1.84831964969635, -1.0919811725616455, -0.5457037687301636, -0.6144863367080688, -0.16474387049674988, 0.4446415901184082, -0.020250754430890083, -0.41060671210289, -1.8632646799087524, -1.1042113304138184, -0.21932528913021088, 1.7312614917755127, -0.18162395060062408, 0.03912055119872093, -0.7200474739074707, 0.6599632501602173, 0.4607388377189636, -0.7686264514923096, -1.0631790161132812, 0.19647951424121857, 0.044099994003772736, -0.36838632822036743, -0.34212827682495117, 0.6643418073654175, 0.7577449679374695, -0.5689123868942261, -0.9387974739074707, -0.20941196382045746, 0.32425016164779663, -0.44323062896728516, -0.1592494547367096, 0.5313073396682739, 0.5729627013206482, -0.4962719976902008, -0.15714192390441895, 0.09878645092248917, -0.8122641444206238, -0.014000770635902882, -1.3217641115188599, 0.1454285830259323, 0.32762351632118225, 1.1397291421890259, 0.21541288495063782, 0.27942073345184326, 0.16170242428779602, 0.0653095617890358, -0.21413572132587433, 0.3824671506881714, 1.4677616357803345, 0.0968833640217781, -0.20568901300430298, -0.4631725549697876, -0.45684221386909485, -0.37969258427619934, -1.070909857749939, -0.4569498598575592, 0.7219296097755432, -0.5487783551216125, -0.8021495342254639, 0.7812312841415405, 0.5312719345092773, -0.352776437997818, 0.022265251725912094, 0.16864950954914093, 1.36404287815094, -0.5969666838645935, 0.12551578879356384, -0.7331348657608032, -0.0887996107339859, -0.06338667869567871, -1.3067954778671265, -0.01719859056174755, 0.5497382879257202, 0.6907269954681396, 0.4764687716960907, -1.0307122468948364, -0.2841529846191406, -0.5874122381210327, 0.12901939451694489, 0.20666776597499847, -0.08399499207735062, 0.06683816760778427, -0.2527499198913574, -0.38235077261924744, -0.2763349115848541, -0.04451845958828926, 0.8099690675735474, -0.7226864695549011, -0.16078747808933258, -0.421735018491745, -0.013569526374340057, -0.5876710414886475, -0.21350660920143127, -0.35397741198539734, -0.22176241874694824, 0.10328330844640732, 0.15161888301372528, 0.17505960166454315, -0.22549806535243988, 1.3397938013076782, 0.16507376730442047, 0.5567508339881897, 0.6023733019828796, -0.1666577309370041, -1.033624291419983, 0.32829979062080383, 0.688874363899231, -0.40866225957870483, -0.5758578777313232, -0.5424262285232544, 0.3932817876338959, -0.453635573387146, 0.4818716049194336, 0.35679197311401367, 0.9649537801742554, 0.31783828139305115, -0.0311411265283823, -0.5730422735214233, -0.2233525663614273, 0.30160167813301086, 1.0901328325271606, -0.2754804790019989, -0.09268797934055328, -1.2909021377563477, 0.3277031481266022, -1.1064784526824951, 0.21449647843837738, 0.9402879476547241, 0.17463965713977814, 1.5316561460494995, -1.9385480880737305, -0.530474066734314, 0.5879806280136108, 0.18471533060073853, 0.544795572757721, 0.33414652943611145, -0.4558317959308624, -0.404636412858963, 0.5872147679328918, -0.0040379236452281475, 0.07860153913497925, 0.13993483781814575, -0.17041023075580597, -0.3180626332759857, 0.3715268671512604, -0.444863885641098, 0.8071303963661194, -0.4712575376033783, -0.236494243144989, 0.18375618755817413, -0.36825937032699585, 0.37709417939186096, 0.48847898840904236, 0.15499845147132874, 0.23617017269134521, -0.7237904667854309, -0.6926307082176208, 0.7848001718521118, -0.0032785525545477867, 0.3889795243740082, -0.5996139645576477, -0.06568867713212967, -0.05742857977747917, -0.38202378153800964, -0.3360244631767273, 0.5791136622428894, -0.2892870604991913, -0.23548899590969086, -0.5113545060157776, -1.5420078039169312, 0.02063687890768051, 0.5218178629875183, 1.131056547164917, 0.491170734167099, -0.46287938952445984, 0.3044077455997467, 0.49470627307891846, -1.3692916631698608, 0.25185850262641907, -0.3278457820415497, -0.42320147156715393, -0.1937026083469391, -1.4921913146972656, -0.16021472215652466, 0.021147506311535835, 0.6954541206359863, -0.01055359560996294, 0.6064412593841553, 1.3094336986541748, 1.7628625631332397, -0.5567868947982788, -0.6697114109992981, 0.7414041757583618, -0.37405872344970703, -0.04736978933215141, 0.5947000980377197, -0.5397692322731018, -0.4372890591621399, -0.6372461318969727, -1.2026474475860596, 1.2542550563812256, -0.8802140355110168, -0.9853997826576233, 1.1265109777450562, 0.2109367549419403, 0.7281823754310608, 0.9126255512237549, -0.49580323696136475, 0.5049984455108643, 0.3734165132045746, -0.7737831473350525, -1.2983771562576294, 1.0880351066589355, 0.035630300641059875, 0.39841461181640625, -0.5003156065940857, 0.3175101578235626, 0.22790409624576569, -0.6711214184761047, 0.29877883195877075, 0.09810654819011688, 0.24119725823402405, 0.7790305018424988, 0.8906238675117493, -0.3474443256855011, 0.17594687640666962, -0.3380889892578125, -0.17808935046195984, -0.03397656977176666, 0.5956985354423523, -0.4026908278465271, -0.1748562753200531, -0.17582154273986816, -0.14316070079803467, -0.24385017156600952, -0.5544984936714172, -0.3557758629322052, 0.6142158508300781, 0.3305511176586151, 0.2797183692455292, -0.26503708958625793, -0.38660910725593567, -0.5863239169120789, -0.020095383748412132, -0.014618908055126667, 0.2307777851819992, -1.3416123390197754, 0.13984133303165436, 0.43040338158607483, -0.5588451623916626, -0.272504061460495, -0.6167787313461304, -0.11988294869661331, -1.3602426052093506, -0.945042073726654, -0.8792372345924377, -0.020984122529625893, 0.6616271734237671, -1.5229853391647339, 0.32758721709251404, 0.9598925113677979, -1.3961480855941772, 0.07414960116147995, 0.4627076983451843, -1.607606291770935, -0.2701992392539978, -1.2757964134216309, 1.5566531419754028, -0.030643846839666367, -0.03216054290533066, 0.18140672147274017, 0.6325477957725525, -0.9557703733444214, -1.357481598854065, -0.6582772731781006, 0.23560455441474915, 0.8833414316177368, 0.9673000574111938, -0.4287685751914978, 1.246781826019287, 1.0405534505844116, -0.8495060801506042, -0.6080679297447205, 0.15687815845012665, -1.0468999147415161, 0.5808387994766235, 0.22291123867034912, 0.1998300999403, 0.20388686656951904, 1.1699297428131104, 0.31060725450515747, 1.2345633506774902, 0.24783524870872498, 0.9884822368621826, -0.9889090657234192, -0.6905050873756409, -0.1682056039571762, 0.5721977949142456, -1.4590911865234375, -1.344221591949463, -0.17662836611270905, -0.8422954082489014, -0.8720694780349731, 0.6875048875808716, 0.468600869178772, -0.29717808961868286, 0.4505036771297455, -0.3565726578235626, 0.5957347750663757, -0.5679238438606262, 0.36896440386772156, -0.16046357154846191, -0.4259026050567627, -0.314787358045578, 0.23775869607925415, -0.13212712109088898, -1.0563921928405762, 0.22726784646511078, -0.21258646249771118, 0.43681198358535767, -0.3643760681152344, 0.9410406947135925, 1.0715736150741577, 0.5488640666007996, -0.26743853092193604, 1.3162517547607422, 1.3982576131820679, -0.03836870566010475, -0.1872359663248062, 0.814820408821106, 0.509753942489624, 0.768521785736084, -0.7204880714416504, -0.12821219861507416, -1.011518955230713, 0.7026308178901672, 0.5050060153007507, 0.24486373364925385, -0.05056528002023697, 0.0544915497303009, -0.12523813545703888, 0.17313963174819946, 0.5205854177474976, -1.1925253868103027, 0.12609200179576874, 0.983284592628479, 0.051209427416324615, -0.11633514612913132, 0.09831403940916061, 0.7051864266395569, 0.22666507959365845, -0.5739220380783081, 0.5311790108680725, 0.968930721282959, -0.9394833445549011, 0.4768018424510956, 0.041474226862192154, -0.19579121470451355, 0.193698912858963, -0.5787867903709412, -1.0476593971252441, -0.11306217312812805, -0.5519726872444153, -0.7485575079917908, 0.6102635860443115, -0.9818041324615479, -1.2752563953399658, 0.016918767243623734, -0.08363431692123413, -0.49797818064689636, -0.07990339398384094, 0.0737743228673935, 0.1138148233294487, 0.9072331786155701, 0.8419924974441528, -0.3928593099117279, 1.3123260736465454, 0.2579287886619568, -0.20670375227928162, -0.840013861656189, -0.510047972202301, 0.3029838800430298, -0.5252906084060669, -0.17613661289215088, 0.6152767539024353, 0.2730642855167389, 0.4264106750488281, -0.10901393741369247, 0.20321249961853027, -0.02613331377506256, 0.3865772783756256, 0.3827623426914215, -0.35024744272232056, -0.07350252568721771, 0.24549318850040436, 0.48904454708099365, -0.22958187758922577, -0.3687293231487274, -0.35881054401397705, 0.29008811712265015, -0.5874639749526978, 0.33941149711608887, -0.626034677028656, 1.1880614757537842, 0.4938359260559082, -0.3051072359085083, -0.6594597697257996, -0.653170645236969, 0.5531207323074341, -0.5670992732048035, 0.9048628211021423, -0.20669645071029663, -0.019692618399858475, -0.3180420994758606, -1.0417417287826538, 0.7642834186553955, 0.5779191255569458, -0.12159989774227142, -0.0037934044376015663, -1.2632064819335938, -0.41582420468330383, -0.46182867884635925, 0.717191219329834, 0.9226292967796326, 0.15292513370513916, 0.12685425579547882, -0.2537633776664734, -1.3269237279891968, 0.5053715109825134, -0.3277422785758972, 0.4282628893852234, 0.28540122509002686, 1.5336966514587402, 1.6879991292953491, 0.5692395567893982, 0.5159778594970703, -0.12402727454900742, 0.7566080093383789, -0.16173724830150604, -0.6294638514518738, -0.45296141505241394, -0.402966171503067, 0.7261004447937012], [-0.5504437685012817, 1.6988457441329956, -2.4347567558288574, -0.09955545514822006, 0.9236358404159546, 0.34286391735076904, 1.1964350938796997, -0.3242260217666626, -0.22195957601070404, -0.7027676701545715, -0.1476317197084427, 0.3379792273044586, 0.2751501500606537, 1.1706074476242065, 0.9123806357383728, 0.897379457950592, 0.9562603831291199, -0.13769812881946564, 0.5283569693565369, 1.6610535383224487, -0.9517268538475037, -0.9164197444915771, -0.10789318382740021, -0.08491668105125427, -0.7345659732818604, -0.11060842871665955, -1.8143551349639893, -0.5817765593528748, -0.9156638979911804, -0.9867561459541321, 0.21527370810508728, -0.295510858297348, -0.49505600333213806, 0.260782927274704, -1.3040486574172974, -0.47153759002685547, 0.3287571370601654, 0.42163917422294617, 0.1567041575908661, 1.0629537105560303, 1.7504345178604126, 0.18072117865085602, -0.4136602580547333, -1.3577938079833984, 0.07841046899557114, -0.6107240319252014, 1.6713573932647705, -0.5535105466842651, -0.17470411956310272, -1.0064283609390259, 0.6623156666755676, -0.9049625396728516, 0.3650875687599182, 0.3475257158279419, 0.8119980096817017, 0.1426817625761032, -0.10406515002250671, -0.037887219339609146, 0.7338320016860962, -0.39071157574653625, 0.27867403626441956, 0.8095948100090027, -0.3059232831001282, 1.36448335647583, -0.34816473722457886, 0.07969595491886139, -0.8839495778083801, 1.078170657157898, -0.15081210434436798, -0.700598418712616, 1.1580523252487183, -0.3947907090187073, -0.2040833681821823, -0.271232932806015, -1.40916907787323, 0.10330571234226227, 0.18250393867492676, 0.3929603397846222, 0.7761706709861755, 0.22314518690109253, 0.06158037111163139, -0.02229228802025318, 0.914658784866333, -0.7737895250320435, 0.0020392099395394325, -0.2217862755060196, 0.8373197913169861, -0.46396276354789734, -0.6739827990531921, 1.217921495437622, 0.8514751195907593, -0.33418914675712585, 1.0842992067337036, -0.9585481286048889, -0.21167123317718506, -0.9172548055648804, -0.2629491984844208, -0.3602893352508545, -0.46294209361076355, -0.7801081538200378, -0.3576008677482605, -0.636303186416626, 0.1705806702375412, -0.4616509974002838, -0.6844292283058167, 0.9141449928283691, 0.43281108140945435, 0.07235179841518402, -0.021181747317314148, -0.028456728905439377, -0.2196047306060791, -0.03056037798523903, -1.2211273908615112, -1.1706455945968628, -0.7161030173301697, 0.806367039680481, 1.2175956964492798, 0.3830437958240509, 0.5981156229972839, 0.7160210013389587, -0.16160069406032562, -0.11418352276086807, -0.004570509307086468, 0.14294150471687317, 0.5889280438423157, 0.07568424940109253, -0.5264231562614441, -0.23634928464889526, 0.033398646861314774, -0.31840839982032776, -0.4152161478996277, -0.28199535608291626, -0.2729857563972473, 0.5328395962715149, -0.5872698426246643, 1.8781616687774658, 0.1683129221200943, -0.5240161418914795, -0.13347628712654114, -0.08621957153081894, 0.6018090844154358, -0.2921738922595978, 0.18594543635845184, -1.2398982048034668, -0.4967271089553833, -0.25572243332862854, -0.10160931944847107, -0.01303035020828247, -0.5416425466537476, 0.3281210958957672, -0.6687162518501282, 0.37599658966064453, 0.7230812907218933, 1.0529108047485352, 0.02942262962460518, -0.5032589435577393, 0.7480480074882507, 0.06699782609939575, 0.8083342909812927, -0.31616246700286865, 0.5590718984603882, -0.5019392371177673, -1.3005530834197998, 0.8017234802246094, 0.32404330372810364, -0.11592186242341995, 0.41480860114097595, 1.6034148931503296, -0.27851295471191406, 0.8374485373497009, -0.7128769159317017, 0.45527133345603943, -1.5822551250457764, 0.5227130055427551, 0.02374323643743992, -0.9671816825866699, 1.3527302742004395, -0.48090028762817383, -1.3786026239395142, -0.7508375644683838, 0.9525460600852966, -0.7960389852523804, -0.007741612382233143, -0.5131558179855347, 0.628607451915741, -0.351875364780426, 0.3109595775604248, -0.5331376194953918, 0.36444079875946045, -0.4015820026397705, -0.7770418524742126, -0.5665847063064575, -0.7373068332672119, 0.11921676993370056, -0.28282877802848816, -0.46478942036628723, 0.8873735070228577, -1.1105695962905884, -0.28044161200523376, 0.25529512763023376, 0.26033368706703186, -0.05829012393951416, -0.36041539907455444, 0.424457848072052, -0.4702688753604889, 0.47449058294296265, -0.5737406015396118, 0.3714025020599365, -0.748053789138794, -0.4163599908351898, 0.8529875874519348, 0.01703258790075779, -0.7336828708648682, 0.7715087532997131, -0.1740194857120514, -0.7774103283882141, 0.8174789547920227, 0.16705870628356934, -0.7474225759506226, -0.020482895895838737, 0.22257238626480103, 0.06401965022087097, -0.4049835503101349, -0.032326262444257736, 0.38679584860801697, -0.28900834918022156, -0.9286813735961914, -0.6057255864143372, -0.804553747177124, 0.41732102632522583, -1.2400627136230469, -1.2616387605667114, 0.31008732318878174, 0.6540287137031555, -0.4803992211818695, -0.1919018030166626, 0.1650664061307907, 0.3053862750530243, 0.9207254648208618, 0.5569131374359131, -0.1323503702878952, 0.40029585361480713, -0.4189484119415283, 0.27404317259788513, -0.5544177889823914, 0.3322477340698242, 0.40416035056114197, -0.6472058892250061, -0.09809400886297226, 1.2337186336517334, 0.9730891585350037, 0.5310215950012207, 0.7901497483253479, -0.36719053983688354, -0.04480467736721039, -0.8736417293548584, -0.7380337119102478, 0.2337130457162857, -0.25961488485336304, 1.584839105606079, 0.3398831784725189, -0.4510171115398407, -0.28286290168762207, -0.43357518315315247, -0.3472122251987457, -0.3451229929924011, -0.446447491645813, -0.6038488149642944, -0.5792033076286316, 0.012421153485774994, -0.9225979447364807, 0.27119752764701843, 0.2006719559431076, 0.22139237821102142, -0.16029150784015656, -0.3298788368701935, 0.09792481362819672, 0.21172770857810974, 0.17854885756969452, 1.2759450674057007, -0.38528263568878174, -1.3291338682174683, -0.3350982367992401, -0.46447402238845825, 0.48898327350616455, -0.48686710000038147, -0.14161449670791626, 0.20840580761432648, 0.697212815284729, -1.1400986909866333, 0.09326688200235367, -0.10611899942159653, -0.37185850739479065, -0.19046345353126526, 0.2987547516822815, 0.740350067615509, 0.6847918033599854, -0.42270374298095703, -0.4507676064968109, -0.0948338508605957, 0.202593594789505, 1.0718934535980225, 0.8611963987350464, 1.2582298517227173, -0.48036855459213257, 0.25559869408607483, 0.3058697283267975, 0.17619436979293823, -0.2571813464164734, -0.995954155921936, -0.7107735276222229, -0.7075791358947754, -0.4871407449245453, 0.034369051456451416, 0.6050713658332825, 1.3959531784057617, -0.3638356029987335, 1.2651845216751099, 0.7017500996589661, -0.8636437654495239, -1.3522135019302368, 0.15514080226421356, 0.44812825322151184, -0.0015246113762259483, 0.457279235124588, 1.2386459112167358, -0.2111176699399948, -0.7755663990974426, -0.010411020368337631, -0.8901336193084717, 0.6124408841133118, 0.20402821898460388, -0.22150753438472748, -1.5317378044128418, -0.5747197270393372, -0.3692266643047333, 1.7573490142822266, 0.3921319842338562, -0.3625742197036743, -0.14614172279834747, 0.022888433188199997, 0.5708303451538086, 0.12190134078264236, -0.585429310798645, 0.6022192239761353, 0.008900880813598633, -0.6567378044128418, 0.08792215585708618, 0.8175268173217773, 0.5620852112770081, -0.7445506453514099, -0.895983874797821, -0.32014572620391846, -0.34423545002937317, -0.9321059584617615, 0.24509869515895844, 0.16872327029705048, 0.7525082230567932, -0.7413657903671265, -0.3797591030597687, 0.7762516736984253, 0.09277883917093277, 0.23473377525806427, -1.4716757535934448, 0.33485162258148193, 0.47322750091552734, 1.2131224870681763, 0.19083328545093536, 0.1315062791109085, 0.636528730392456, 0.1435973346233368, -0.12811757624149323, 0.5326734781265259, 0.01566297747194767, 0.04217839986085892, -0.20871730148792267, -0.3666320741176605, 0.3200606405735016, -0.07722119987010956, -0.44894540309906006, 0.16593687236309052, 0.7762595415115356, -1.1411840915679932, -0.5408492684364319, 0.6880658864974976, 0.5477315187454224, -0.5844806432723999, -0.7499300241470337, 0.7050067782402039, 0.46284881234169006, -1.114670753479004, 0.32452264428138733, -0.5909906625747681, -0.1840941607952118, 0.3131815195083618, -1.4361908435821533, -0.2429606169462204, -0.1328931450843811, 0.4138181209564209, 0.7469090223312378, -1.2263190746307373, -0.3168322443962097, 0.0016717934049665928, 0.28508588671684265, 0.9916803240776062, 0.16140389442443848, 0.6927906274795532, 0.29383185505867004, -0.2733875811100006, -0.38089999556541443, 0.14049378037452698, 1.7634669542312622, 0.1856893002986908, -0.04622581601142883, 0.28107109665870667, 0.49240803718566895, -0.2742401957511902, -0.06437642872333527, 0.08267434686422348, -0.22822542488574982, -0.5071195960044861, 0.190407395362854, -0.09172419458627701, 0.18111003935337067, 1.3471488952636719, 0.23998531699180603, 0.4507794678211212, 0.3142945170402527, -0.5730406641960144, -0.7904426455497742, 0.15963563323020935, 0.23615524172782898, -0.4156394898891449, -0.8682800531387329, 0.05225125700235367, 0.20516633987426758, 0.44922956824302673, 0.603977620601654, 0.4823031723499298, 1.869663953781128, 0.11646996438503265, -0.21538382768630981, -0.0170203298330307, 0.34672632813453674, 0.9566695094108582, 1.2901005744934082, 0.41261985898017883, -0.03609290346503258, -1.1297932863235474, 0.8507664203643799, -0.500283420085907, 0.009566066786646843, 0.7507582306861877, 0.10096427798271179, 1.0199041366577148, -0.9118465185165405, -0.4770265221595764, 0.5063832998275757, -0.007537243887782097, -0.07822060585021973, 0.17997244000434875, -0.4053542912006378, -0.2759513854980469, 0.23146240413188934, 0.12871888279914856, 0.45255374908447266, 0.8782485127449036, -0.6151639819145203, 0.45780959725379944, 0.16609813272953033, -0.5438476800918579, 0.5198086500167847, -0.529620349407196, 0.6460844874382019, -0.27046361565589905, -0.22240778803825378, 0.03580596297979355, 0.7994433045387268, 0.015012710355222225, 1.5441277027130127, -0.4387739598751068, -0.7679281234741211, 0.39429739117622375, -0.4565463066101074, 0.49148446321487427, -0.7147799730300903, 0.3334307372570038, 0.16059240698814392, -0.0837029367685318, -0.22624339163303375, -0.26316338777542114, -0.8718962669372559, -0.9581984877586365, -0.7628484964370728, -0.7899670600891113, 0.33991119265556335, 0.9752700328826904, 1.206581473350525, 1.0247141122817993, 0.5960108041763306, 0.7144023776054382, 0.6207512617111206, -0.7080824971199036, -0.5608307123184204, -0.14724406599998474, -0.7662475109100342, 0.30566754937171936, -1.3151988983154297, -0.301540732383728, 0.679844081401825, 0.8192260265350342, -0.013321724720299244, 0.6369622349739075, 0.8421425819396973, 1.2717005014419556, -0.5058252811431885, -0.9130959510803223, 0.6090035438537598, -0.42022502422332764, 0.7784875631332397, 0.6034804582595825, -0.8740461468696594, -0.4821685254573822, -1.1314469575881958, -1.4184004068374634, 1.1445306539535522, 0.020984752103686333, -0.2161659300327301, 1.195000171661377, 0.668705940246582, -0.5336891412734985, 0.7485933899879456, -0.08602040261030197, 0.30007311701774597, 0.2849707305431366, -0.15334369242191315, -0.4138699173927307, 0.5529584288597107, 0.2746056616306305, 0.7050802111625671, -0.11680078506469727, 0.9495900869369507, -0.6123939156532288, -0.0511857308447361, 0.5849425196647644, 0.18850725889205933, 0.366794228553772, 1.3086202144622803, 0.728536069393158, -0.24457786977291107, 0.5363046526908875, -0.06781528890132904, -0.4582426846027374, -0.19637930393218994, 0.5344889760017395, -0.0740995705127716, -0.4929695725440979, -0.1376267820596695, 0.2886516749858856, -0.438800573348999, -0.23662438988685608, -0.8525302410125732, 0.558769166469574, 0.2904717028141022, 0.3264968991279602, 0.2828105688095093, -0.1729932576417923, -0.30374157428741455, -0.1727915108203888, 0.10709346830844879, 0.6321166753768921, -1.201332926750183, 0.10589326173067093, 0.20087899267673492, -0.5744897127151489, -0.11646297574043274, 0.4078391194343567, -0.5085281133651733, -0.945101797580719, -0.757643461227417, -0.8608863949775696, 0.1747441589832306, 0.4770706593990326, -0.7518993020057678, 0.8373271822929382, 0.2008899301290512, -1.5325531959533691, -0.0364542230963707, 0.1619102656841278, -1.2164652347564697, -0.6155609488487244, -1.323028564453125, 0.966626763343811, 0.6047762632369995, 0.402078777551651, -0.29514986276626587, 0.8271195888519287, -1.5960347652435303, -1.3415566682815552, -1.2116798162460327, -0.03814031928777695, 0.9474483132362366, 0.4258292019367218, -0.5363762974739075, 1.1480724811553955, -0.03082229383289814, -0.4549078345298767, -0.5774925351142883, 0.4462273418903351, -0.5761388540267944, 0.4799702763557434, -0.11946440488100052, 0.6181394457817078, -0.3621458411216736, 1.3071480989456177, 0.19965499639511108, 1.6381449699401855, 0.19250988960266113, 1.2445061206817627, -0.6907202005386353, 0.3157598376274109, -0.7905004620552063, 0.695820152759552, -1.2361822128295898, -0.3872195780277252, -0.055356938391923904, -1.0293117761611938, -0.7479600310325623, 0.5135972499847412, 0.7178340554237366, -0.9256037473678589, -0.6092715859413147, -0.9981293082237244, 0.5777417421340942, -0.8129792809486389, 0.29986900091171265, -0.5376174449920654, -0.4906492233276367, -0.035214588046073914, -0.05671007186174393, -0.23636631667613983, -0.8970663547515869, 0.1286071538925171, 0.7354360222816467, 0.03674684464931488, -0.5733070373535156, 0.9759699106216431, 1.020867109298706, 0.586301326751709, -1.3409051895141602, 1.466450572013855, 0.9388426542282104, -0.14439062774181366, -0.19991447031497955, 0.2899887263774872, 0.24870966374874115, 0.3832384943962097, -0.49500542879104614, -0.30376026034355164, -0.3763745427131653, 0.7558353543281555, -0.030981458723545074, 0.16042596101760864, -0.10441979020833969, 0.036605849862098694, -0.3224185109138489, -0.19108568131923676, 0.9434860944747925, -0.8989689350128174, 0.12261945754289627, 1.2693437337875366, -0.006271610036492348, -0.3464325964450836, -0.3026454746723175, 0.4701710343360901, -0.14513376355171204, -0.41036754846572876, 1.0700443983078003, 0.9217126965522766, -1.1109453439712524, 0.22074764966964722, 0.19524599611759186, 0.030648328363895416, 0.135538250207901, -0.2614927291870117, -1.4409860372543335, -0.5100566744804382, -0.20875991880893707, -1.1907442808151245, 0.5528069138526917, -1.241154670715332, -0.5978883504867554, 0.15648230910301208, 0.2952360510826111, -0.15484073758125305, -0.08348984271287918, 0.2064276933670044, -0.33008724451065063, -0.04120873287320137, 0.4939925968647003, -0.24721656739711761, 0.9556857347488403, 0.047906018793582916, 0.22730380296707153, -0.6024202108383179, -0.4273228943347931, 0.3663718104362488, 0.3721833825111389, -0.03347228094935417, -0.2300073802471161, 0.7444348335266113, -0.11378500610589981, -1.0071905851364136, 0.1524752527475357, 0.5805057287216187, 0.8348162174224854, -0.7125467658042908, -0.5287206768989563, 0.01111016608774662, 0.3026379346847534, 0.8490278720855713, -0.033945824950933456, -0.5035400986671448, -0.7923649549484253, 0.32146283984184265, -1.1829739809036255, 0.7913932800292969, -0.30255740880966187, 0.2532350718975067, 0.7935570478439331, -0.584807813167572, 0.153462752699852, 0.01788582094013691, 0.21010136604309082, -0.07162296772003174, 0.10756196081638336, 0.3868451416492462, -0.17841389775276184, 0.18389278650283813, -0.8639879822731018, 0.7157042622566223, 0.5731704235076904, -0.3295125365257263, -0.1996798813343048, -0.7642883062362671, -0.7882051467895508, -0.6414603590965271, 0.23672063648700714, 0.3828791677951813, 0.057707011699676514, 0.2574450969696045, 0.026418685913085938, -0.6606862545013428, 0.00016190065070986748, 0.4206637740135193, -0.6119818687438965, 0.3743831217288971, 1.4700182676315308, 1.0845836400985718, 0.19785867631435394, 0.4998818337917328, -0.6077418923377991, 0.23938484489917755, -0.259286105632782, -0.3503479063510895, 0.1384253054857254, -0.17287683486938477, 0.23879434168338776], [-0.26269057393074036, 2.0114192962646484, -2.2336983680725098, 0.4929974377155304, 0.6928521990776062, 0.3636435866355896, 1.491621494293213, -0.5336926579475403, 0.4684593081474304, -0.6953877210617065, -0.5014642477035522, -0.6642090082168579, 0.9079687595367432, 0.9542452692985535, 0.43884792923927307, 0.8040472865104675, 0.8979049921035767, -0.6204701066017151, 0.6565388441085815, 0.9153786897659302, -0.04164694622159004, -0.43873006105422974, 0.23863442242145538, 0.5939335823059082, -0.4104519188404083, 0.363055944442749, -0.703499436378479, -0.9149930477142334, -1.2014180421829224, -1.362367868423462, 0.5098375082015991, -0.32799679040908813, 0.2617669105529785, 0.107327900826931, -1.160182237625122, -0.016792774200439453, 1.2377567291259766, 1.011857032775879, 0.54903244972229, -0.2792036235332489, 1.9158673286437988, -0.4021987318992615, 0.003141420427709818, -1.7142643928527832, 0.34084951877593994, -0.19737836718559265, 1.2263822555541992, -1.2867348194122314, 0.11037658900022507, -0.5939464569091797, 0.5458009243011475, -0.2548089921474457, 0.6962236166000366, 0.6242616176605225, 0.7642725110054016, -0.19377441704273224, 0.2564209997653961, 0.1234837993979454, 0.5186502933502197, -0.1948477327823639, 1.3379642963409424, -0.16702833771705627, -0.16639673709869385, 0.526890218257904, 0.528293251991272, -0.6074504256248474, -0.2604891359806061, 0.2683236598968506, -0.4072893559932709, 0.23851189017295837, 0.6705740094184875, 0.16182848811149597, -0.8496447205543518, -0.17836865782737732, -1.4012296199798584, 0.6680701971054077, 0.5436201095581055, 0.7200532555580139, 0.414384663105011, 0.6665703058242798, -0.7430622577667236, -0.5872821807861328, 0.7042810916900635, -0.181522399187088, 0.4720442295074463, -0.12632428109645844, 0.023060154169797897, -0.29092341661453247, -0.5276744365692139, 1.511279821395874, 0.3041727542877197, 0.3873533308506012, 0.7182657122612, -0.2967642545700073, -0.16927766799926758, -0.01007022149860859, 0.11829552054405212, -0.5794825553894043, -0.7536958456039429, -0.8282163143157959, -0.059288427233695984, -0.7268345952033997, 0.4687325954437256, 0.5678189396858215, -0.21822497248649597, 0.791469931602478, 0.5359109044075012, -0.2423679232597351, -0.8424282073974609, -0.22770872712135315, -0.2877729535102844, 0.29914653301239014, -0.9612720012664795, -1.5803552865982056, -0.6913624405860901, 1.095920205116272, 1.5164291858673096, -0.024105418473482132, 0.6817717552185059, 0.6143604516983032, -0.33906981348991394, -0.3932625651359558, 0.35416027903556824, 0.47609376907348633, 0.5570744276046753, 0.8954012393951416, -0.9800295233726501, -1.1690316200256348, 0.6085212230682373, 0.0840839296579361, 0.7517768740653992, 0.16701993346214294, -0.5617154836654663, 0.9189208745956421, -0.7236605882644653, 1.152702808380127, -0.7122853398323059, -0.4367685317993164, 0.16812396049499512, -0.561413049697876, 0.4990890622138977, -0.5374579429626465, -0.37514275312423706, -0.7236433625221252, -0.04498446732759476, -0.7692813873291016, 0.4493982195854187, -0.2609812915325165, -0.7759830951690674, 0.20168116688728333, -1.243154764175415, 0.03669073432683945, 0.5598572492599487, 0.8554090261459351, 0.4597587585449219, 0.010767445899546146, 0.542873203754425, 0.45654749870300293, 0.3651176691055298, 0.25362104177474976, 1.1331787109375, -0.03313804417848587, -0.9156506061553955, 0.782070517539978, 0.22695326805114746, -0.02498757839202881, 1.160386323928833, 0.979955792427063, -0.11647126823663712, 1.0946993827819824, 0.0822807103395462, -0.5901702642440796, -0.31976190209388733, 1.134545922279358, 0.456643283367157, -0.9332370758056641, 1.412773847579956, -0.39645814895629883, -2.1313581466674805, -1.348833680152893, 0.8572283387184143, -0.35299593210220337, 0.08373171836137772, 0.020030293613672256, -0.05336323380470276, -0.9692203998565674, 0.5827077627182007, 0.2571190595626831, -0.922582745552063, -0.7166142463684082, -0.23030471801757812, 0.027305006980895996, -1.023283839225769, 0.021501077339053154, -0.376489520072937, -0.6680989265441895, 0.3850119113922119, -1.4471001625061035, -0.7181569337844849, 0.45343393087387085, -0.07897671312093735, -0.37234580516815186, -0.5979475378990173, 0.27567827701568604, -0.41234371066093445, 1.0653630495071411, -1.5178043842315674, 0.9889734983444214, -0.3510042428970337, 0.562024712562561, 0.8564882278442383, -0.07798640429973602, -1.1416232585906982, 0.5673927068710327, 0.13341644406318665, -1.712676763534546, 0.6617212295532227, 0.5069401860237122, -0.5126201510429382, 0.03879540041089058, -0.33995527029037476, -0.2381402552127838, -0.20595629513263702, 0.4376299977302551, 0.5732395648956299, 0.2999749183654785, -0.6179823279380798, -0.7602820992469788, -0.5855077505111694, 0.09390889108181, -0.5471364259719849, -1.0863393545150757, 0.6762786507606506, 0.5127570629119873, -0.6575967073440552, 0.11385641992092133, 0.2628142237663269, 0.9297724366188049, 0.23842522501945496, 1.6646445989608765, 0.24326887726783752, 0.4703977704048157, 0.38419467210769653, -0.21149605512619019, -0.7294315099716187, 0.9872545003890991, 0.6088828444480896, 0.12560918927192688, 0.08354247361421585, 1.544917106628418, 0.9481974244117737, -0.15398208796977997, 0.5374734997749329, -0.30019059777259827, 0.03424731642007828, -0.5352964997291565, -0.9765655994415283, 0.033719491213560104, -0.7397266626358032, 1.8434094190597534, 0.9310778975486755, -1.2165923118591309, -0.23742039501667023, -0.0973464623093605, -0.19457823038101196, 0.07834912836551666, -0.3944268822669983, -0.5132687091827393, -0.352963924407959, 0.44035351276397705, -0.13941314816474915, 0.3098851442337036, -0.0067077623680233955, 0.7887827157974243, -0.8618192672729492, -0.9172731637954712, -0.5157670974731445, 0.03567681089043617, 0.19271983206272125, 1.2079596519470215, 0.38298654556274414, -1.5997685194015503, -0.4073837399482727, 0.3194635510444641, 1.0650583505630493, 0.17898809909820557, 0.2806265652179718, 0.36520206928253174, 0.19696828722953796, -0.30562102794647217, 0.12868425250053406, 0.3082641363143921, 0.13601332902908325, 0.4948658049106598, -0.3599897027015686, 0.6268380880355835, 0.7479705810546875, -1.9244191646575928, -0.5736370086669922, 0.05416953191161156, 0.5655966997146606, 1.8464305400848389, 0.7616503238677979, 1.050661563873291, -0.17166171967983246, -0.013963605277240276, -0.6606816649436951, -0.7489047646522522, -1.28086519241333, -0.6414490938186646, -0.7100054025650024, -0.8051431775093079, -0.11534818261861801, 0.3308711647987366, -0.1252979040145874, 0.29994073510169983, -0.366788387298584, 0.4449195861816406, 1.807259440422058, -0.2906961441040039, -0.6291738152503967, -0.3849119246006012, -0.32694947719573975, -0.6559039354324341, 0.5653226971626282, 1.2212014198303223, -1.1476718187332153, -0.6899683475494385, 0.6188065409660339, 0.09340991079807281, 0.4588963985443115, 0.5139611959457397, -0.09632362425327301, -1.2984614372253418, -1.1991820335388184, 0.02246735990047455, 1.543149471282959, -0.11128281056880951, -0.4544670581817627, -0.6735665798187256, 0.2882290780544281, 0.06685100495815277, -0.4539496600627899, -0.28703802824020386, 0.6430302262306213, -0.9718316793441772, -0.24039748311042786, -0.48293426632881165, 0.2983151376247406, 0.4081823229789734, -0.8059329986572266, -0.6595480442047119, -0.6585550308227539, -0.5005329847335815, -0.36671361327171326, 0.665229320526123, 0.0683252140879631, 1.6246418952941895, -0.2122282087802887, 0.19425857067108154, 0.9030159711837769, 0.7064982652664185, -0.3999911844730377, -0.7417800426483154, 0.448916494846344, 0.7999135851860046, 0.7578120231628418, -0.09655455499887466, 0.29192453622817993, 0.5272811651229858, 0.5097281336784363, 0.22246187925338745, 0.5474591851234436, 1.4145066738128662, 0.30490177869796753, 0.15792900323867798, -1.1957672834396362, -0.09061700105667114, -0.20761840045452118, -0.9072245359420776, 0.3103591799736023, 0.7179979681968689, -0.41357529163360596, -0.5353257656097412, 1.187492847442627, 0.1025998443365097, -0.5551974177360535, -0.10467939078807831, 0.014925525523722172, 1.093205213546753, 0.10820549726486206, -0.030265217646956444, -0.28525441884994507, -0.08461356163024902, 0.31014344096183777, -1.19462251663208, -0.22996553778648376, 0.09453420341014862, 0.3955349326133728, 1.0817584991455078, -0.45719271898269653, 0.07088581472635269, -1.0951324701309204, -0.00497552752494812, 0.5417134761810303, -0.3889732360839844, 0.35304439067840576, -0.08185270428657532, -0.41778379678726196, -0.11441948264837265, 0.5820696949958801, 1.3497884273529053, -0.5046313405036926, -0.31583866477012634, -0.06516920775175095, -0.3127886652946472, -0.2433624267578125, -0.7980043888092041, -0.5441420078277588, 0.23852887749671936, -0.8647211194038391, -0.14836350083351135, -0.04748857766389847, -0.5078795552253723, 1.4456119537353516, 0.41131722927093506, 0.3820263147354126, 0.05804537981748581, -0.25519609451293945, -0.6375430226325989, 0.06576407700777054, 0.26777973771095276, -0.10134708881378174, -0.42008620500564575, -0.37401172518730164, 0.5327736139297485, -0.4030492901802063, 0.42235565185546875, 0.4336407780647278, 0.6585126519203186, -0.15215378999710083, 0.3402481973171234, 0.05102530121803284, 0.6321139931678772, 1.1357605457305908, 0.9784810543060303, 0.6010862588882446, -0.25714921951293945, -0.29162442684173584, 0.4238853454589844, -0.940781831741333, 0.3523573577404022, 0.9756699800491333, 0.5146024823188782, 0.8901586532592773, -1.4842360019683838, -0.8927700519561768, 0.7749748229980469, 0.505622386932373, 0.6231623291969299, 1.0429720878601074, -0.44319793581962585, 0.5473634004592896, 0.43196922540664673, 0.1984228491783142, 0.03968214616179466, 0.1667291522026062, -0.07857357710599899, -0.5052698254585266, 0.7268751263618469, -1.138807773590088, 0.49565669894218445, -0.6466060876846313, -0.682146430015564, -0.4496658444404602, -0.9018077850341797, 0.06151410937309265, 0.44083887338638306, 0.6514855623245239, 0.911104679107666, -0.5127918720245361, -0.8086066842079163, -0.20865553617477417, -0.5726895928382874, 0.474854439496994, -0.6245242357254028, -0.12042311578989029, -1.1166762113571167, -0.1970173418521881, -0.5050241947174072, 0.565375566482544, -0.3600369095802307, -0.8022246360778809, -0.6725780963897705, -1.3095595836639404, -0.04646521434187889, 1.0824575424194336, 1.5022475719451904, 0.6873831748962402, -0.24990767240524292, 0.37346935272216797, -0.2734885811805725, -1.189269781112671, 0.142356276512146, 0.7872583866119385, 0.21416157484054565, -0.037625752389431, -1.027363657951355, -0.43616968393325806, -0.002361040562391281, 0.004517490044236183, -0.23113776743412018, 0.9400039911270142, 0.7231108546257019, 0.8489489555358887, -0.3742603063583374, -0.678591787815094, -0.06410536170005798, -0.5805956125259399, 0.7174372673034668, 0.7786324620246887, -0.852377712726593, -0.5462737083435059, -0.6342540383338928, -0.8559633493423462, 0.8455460071563721, -0.8122730255126953, -0.8621054887771606, 1.0793702602386475, 0.26369673013687134, 0.13317489624023438, 0.43068528175354004, -0.8127452731132507, 0.6316298842430115, 0.016963263973593712, -0.25353896617889404, -1.3015968799591064, 0.09746788442134857, 0.43248414993286133, -0.14706745743751526, -0.4206162095069885, 0.3716297149658203, -0.1017417311668396, 0.05605969950556755, -0.4918431043624878, 0.3191552460193634, 0.5933464765548706, 0.9977996349334717, -0.004427550360560417, -0.6514534950256348, 0.2421913892030716, -0.6656690239906311, -0.8186299800872803, -0.06654669344425201, 0.6612812876701355, 0.22170360386371613, -0.8193974494934082, -0.07570675760507584, -0.20454207062721252, -0.4672602415084839, -0.30332744121551514, -0.43303075432777405, 0.5719465017318726, 0.4846835434436798, 0.561267077922821, -0.25568825006484985, -0.1257420927286148, -0.4288538992404938, -0.763357400894165, 0.2044440507888794, 0.5988982915878296, -1.3184314966201782, -0.26289260387420654, 0.4825974106788635, -0.744732677936554, -1.0398002862930298, -0.025688057765364647, 0.10788464546203613, -1.4252009391784668, -0.9772909283638, -1.2436251640319824, 0.7232221364974976, 0.427232563495636, -0.9106371402740479, 0.6702471971511841, 0.5538550615310669, -1.5415964126586914, 0.4775247573852539, -0.5404620170593262, -1.4360486268997192, 0.17468306422233582, -0.8880102634429932, 0.6353490352630615, -0.3064448833465576, -0.3013104200363159, 0.010254180058836937, 0.999243974685669, -1.4851853847503662, -1.279937982559204, -0.9238395094871521, -0.4377080798149109, 1.5659878253936768, 0.46344733238220215, -0.6017889380455017, 1.669480800628662, 0.9765470623970032, -0.4136342406272888, -0.07313628494739532, 0.33301445841789246, -0.6679912209510803, -0.09925080090761185, 0.5788660049438477, 0.6094176769256592, 0.6274701356887817, 1.1108403205871582, 0.31605714559555054, 0.9744268655776978, 0.167551651597023, 1.088139295578003, -0.8186361789703369, -0.7822808027267456, 0.4050236642360687, 0.9482909440994263, -0.7633578777313232, -0.4900081157684326, -0.6162055730819702, -0.5087133646011353, -1.1487654447555542, -0.2494555413722992, 0.6232054233551025, -0.5316593050956726, 0.5059218406677246, -0.46667641401290894, 0.811269998550415, -0.6045956015586853, 0.4088911712169647, 0.35318055748939514, -0.15030185878276825, -0.4096721410751343, 0.22459127008914948, -0.32819753885269165, -1.590163230895996, 0.47039973735809326, 0.3027569651603699, -0.29890328645706177, -0.18418382108211517, 0.07116229832172394, 0.3494841158390045, 0.30574703216552734, -0.42006707191467285, 1.959320068359375, 0.6042090058326721, -0.6981472373008728, -0.1137780100107193, 0.40550678968429565, -0.10263322293758392, 0.4044750928878784, -0.3431853652000427, -0.3488963842391968, -0.7827485799789429, 0.9006261229515076, 0.2958064675331116, 0.17868191003799438, -0.3764718174934387, 0.5081087350845337, -0.5308345556259155, 0.2790171205997467, 1.3510868549346924, -0.9979552030563354, -0.25343579053878784, 1.4925488233566284, 0.11515539884567261, -0.6519705057144165, 0.4761820435523987, 0.40391770005226135, -0.1075267642736435, -0.7067677974700928, 0.33249062299728394, 0.7960066795349121, -0.8441070318222046, 0.5632385015487671, -0.4890797436237335, -0.4522758722305298, 0.06478658318519592, -0.6285920739173889, -1.513300895690918, -0.02899783104658127, -0.2703174352645874, -0.8868210911750793, 1.011546015739441, -1.2070021629333496, -0.40099868178367615, 0.7622008323669434, -0.15376709401607513, -0.03395049646496773, -0.162305548787117, -0.050955332815647125, 0.027334697544574738, -0.19035673141479492, 1.1491109132766724, -0.38267815113067627, 1.4485032558441162, -0.021464388817548752, -0.023627422749996185, -1.134710431098938, -0.1095079705119133, 0.2388937920331955, -0.05797616019845009, -0.3349906802177429, 0.10004738718271255, 1.0610406398773193, -0.08137556910514832, -0.6003401279449463, 0.19261473417282104, -0.15207186341285706, 0.39023858308792114, 0.10568058490753174, -0.14575359225273132, 0.5054386854171753, 0.7049840092658997, 0.5127711296081543, -0.6231209635734558, -0.4235053062438965, -0.6322464346885681, 0.3018656373023987, -0.5205928087234497, -0.058527104556560516, 0.08264818787574768, 0.9780523777008057, 0.503089189529419, -0.24727141857147217, -0.8233237266540527, -1.032639741897583, 0.4773940443992615, 0.19891777634620667, -0.18938995897769928, -0.36934906244277954, -0.08274690806865692, -0.5103470683097839, -0.7747089862823486, 0.05011153966188431, 0.47865891456604004, -0.2244039922952652, 0.5621212720870972, -1.1973400115966797, -0.8326431512832642, -0.4847605526447296, 0.41086632013320923, 1.4962728023529053, 0.6089668869972229, 0.30829280614852905, 0.39090055227279663, -1.3175266981124878, -0.12171228229999542, 0.07084901630878448, 0.8511179089546204, 0.3987749516963959, 1.3806633949279785, 2.122384786605835, 0.29429003596305847, 0.07181181758642197, -0.2171260118484497, 0.48199158906936646, -0.6847634315490723, -0.3570733070373535, -0.6663975715637207, -0.5373631715774536, -0.7365257740020752], [0.16929972171783447, 1.4101616144180298, -3.0822412967681885, -0.3959779143333435, 0.3171832859516144, 0.4027473032474518, 1.1384221315383911, -1.129006266593933, 0.10062458366155624, -0.970025360584259, -0.11561718583106995, -0.21165087819099426, 0.3884228765964508, 1.2441200017929077, 0.7955259680747986, 0.9754440784454346, 1.107479453086853, -0.6606162786483765, 0.45860496163368225, 0.21131333708763123, 0.08712107688188553, -0.8118746280670166, 0.5310503244400024, 0.7717674970626831, -0.6558167338371277, -0.29048678278923035, -0.9122682213783264, -0.37997502088546753, -1.2976000308990479, -1.5631163120269775, 0.6094422936439514, -0.6751211285591125, -0.5918026566505432, -0.9823375940322876, -1.5797522068023682, -0.786465048789978, 0.8719318509101868, 0.5876774787902832, 0.4215773344039917, -0.09860426187515259, 1.19271981716156, -0.51641845703125, 0.19555895030498505, -1.1168158054351807, 0.8702453374862671, -0.7299513816833496, 1.76693856716156, -1.1473180055618286, -0.2873325049877167, -0.4113541543483734, 0.3810955882072449, -0.5424908995628357, 0.2243167757987976, 0.30924543738365173, 0.5441774725914001, -0.3165150582790375, 1.1570676565170288, 0.5833053588867188, 0.33819580078125, -0.3861781656742096, 1.3117581605911255, -0.40788090229034424, 0.2664754390716553, 0.874168336391449, -0.0937063992023468, -0.584723949432373, -0.34747952222824097, 0.22970591485500336, -0.05410327389836311, -0.08111545443534851, 1.2916240692138672, -0.32804960012435913, -0.3910471200942993, -0.25868117809295654, -1.8146042823791504, 0.7787150740623474, 0.9474179148674011, 0.3403931260108948, -0.18741676211357117, 0.5077787041664124, 0.21403953433036804, -0.7118709087371826, -0.2062217742204666, -0.4002017080783844, 0.8269836902618408, 0.4009975790977478, 1.091957688331604, -0.3989965617656708, -1.1852951049804688, 1.2334119081497192, 0.32665756344795227, -0.5833746790885925, 1.0540999174118042, -0.39210015535354614, -0.0711640864610672, -0.4292597472667694, 0.1164344772696495, -0.254478394985199, -0.911028265953064, -1.0211910009384155, -0.6210671067237854, -0.9725121855735779, 0.051263172179460526, -0.0667872279882431, 0.38428178429603577, 1.1864739656448364, 0.7891483902931213, -0.5658130645751953, -0.5436538457870483, -0.4670662581920624, -0.30728498101234436, 0.40750303864479065, -0.5917841792106628, -0.8023138046264648, -0.828959584236145, 1.5297750234603882, 1.8529456853866577, -0.4558458626270294, 0.6939961314201355, 1.5220916271209717, -0.47900885343551636, -0.6383665204048157, -0.40283605456352234, 0.85679692029953, 0.9896119832992554, 1.046937346458435, -0.9882315993309021, -0.6583964824676514, 0.561352550983429, -0.18184687197208405, 0.7386539578437805, -0.07988999783992767, -0.4461783170700073, 1.098158359527588, -1.0249496698379517, 0.6498847007751465, -0.12462998181581497, 0.04135879874229431, 0.8857417106628418, 0.36782342195510864, 0.15522170066833496, -0.8186819553375244, -0.3256031274795532, -0.6230951547622681, 0.16083136200904846, 0.34408146142959595, -0.07264763861894608, -0.04757281020283699, -0.5721502304077148, -0.11791862547397614, -0.5346806049346924, 0.5083780288696289, 0.4152297377586365, 1.065128207206726, 0.2239614576101303, -0.20107485353946686, 0.009750776924192905, 0.1592094451189041, 0.8649749159812927, 0.20751558244228363, 1.445747971534729, -0.08872710168361664, -0.4488685429096222, 0.5498854517936707, 0.5133881568908691, -0.44514986872673035, 0.136947900056839, 0.7387660145759583, 0.18465514481067657, 0.6556522250175476, -0.8208406567573547, -0.6932047009468079, -0.5415316820144653, 0.15434181690216064, 0.4768821895122528, -0.33837562799453735, 1.7054173946380615, -0.7487560510635376, -1.8281599283218384, -1.1038204431533813, 0.20021022856235504, -0.1362723708152771, 0.681069552898407, 0.07219855487346649, 0.08846043050289154, -0.4865931272506714, 0.2130812406539917, -0.41146257519721985, -0.9079980254173279, -0.6377514600753784, -0.3148641586303711, -0.3235219120979309, -0.5631729960441589, 0.32384607195854187, -0.6701923608779907, -0.6870296001434326, 1.0925631523132324, -1.307889461517334, -0.37786582112312317, 0.1843688189983368, -0.12690649926662445, 0.1499357670545578, -0.7035434246063232, 0.21932241320610046, -0.43963921070098877, 1.504140019416809, -0.3098110258579254, 0.9571660757064819, -0.2879191040992737, -0.25334852933883667, 0.8341786861419678, 0.6144946813583374, -0.9816992282867432, 0.02289498783648014, 0.13834019005298615, -1.837928056716919, 0.6068100929260254, 0.9312645196914673, -0.5648164749145508, -0.14049988985061646, 0.22898131608963013, 0.559136152267456, 0.3361155092716217, 0.00940363947302103, 0.32658445835113525, -0.3386511206626892, -1.1617541313171387, -0.5683713555335999, -0.20941102504730225, -0.1452711671590805, -0.33935147523880005, -0.5186963081359863, 0.21963709592819214, 0.34055793285369873, -0.4765728712081909, 0.06003076955676079, 0.6460596323013306, 1.1063547134399414, 0.3918803632259369, 1.0367244482040405, 0.6856208443641663, -0.11611419171094894, -0.333476722240448, -0.6229157447814941, -0.5523785352706909, 1.6271579265594482, 1.0836553573608398, 0.03980432078242302, 0.14159469306468964, 1.5744788646697998, 1.8852440118789673, -0.33981695771217346, 0.47607240080833435, -0.1388060450553894, -0.23627698421478271, -0.23980584740638733, -1.1310296058654785, 0.558284342288971, -0.8522430658340454, 1.2022182941436768, 0.804244875907898, -0.9002599716186523, 0.07095666974782944, -0.4169601500034332, 0.5827407836914062, -0.36292240023612976, -0.6861838698387146, 0.4208104610443115, -0.04718296229839325, -0.25131452083587646, -0.153213769197464, 0.06551478803157806, -0.0008138539269566536, 0.6574157476425171, -1.0505810976028442, -1.008886456489563, -0.5461398363113403, 0.43294423818588257, -0.020019829273223877, 1.6883264780044556, -0.17108634114265442, -2.167924165725708, -0.36756131052970886, 0.4198002219200134, 0.8358104228973389, 0.38608527183532715, -0.45997557044029236, 0.80601567029953, 0.20249372720718384, -0.9426900744438171, 0.7835072875022888, 0.2857104539871216, 0.16208331286907196, -0.014790000393986702, -0.025771310552954674, 0.27321064472198486, 1.263859748840332, -0.5077283978462219, -0.575555145740509, -0.43432071805000305, 0.04598259925842285, 1.466101884841919, 0.15053729712963104, 1.1585001945495605, -0.08399134129285812, 0.5016459822654724, -0.07221788167953491, -0.38202622532844543, -0.23683632910251617, -0.8738523125648499, -0.6999766230583191, -0.274402379989624, -0.2190876007080078, 0.014157038182020187, -0.43547943234443665, 1.0497618913650513, 0.09604883193969727, 0.3857101798057556, 1.2286652326583862, 0.1516154557466507, -0.855198085308075, 0.19103631377220154, 0.02021515928208828, -0.6590859889984131, 0.42060908675193787, 0.9010944962501526, -1.2333927154541016, -0.43038469552993774, -0.27389079332351685, 0.3933463394641876, 0.14693264663219452, 0.14109653234481812, 0.5720295906066895, -1.0380254983901978, -0.500953197479248, 0.07434285432100296, 1.7084065675735474, -0.18150685727596283, -0.10825556516647339, -0.1606757789850235, 0.8327076435089111, 0.027736375108361244, -0.5381829142570496, -0.8332752585411072, 0.7823852300643921, -0.3577013909816742, 0.17113010585308075, 0.3354690968990326, 0.3959420621395111, 0.9481950402259827, -0.6659355759620667, -0.27667298913002014, -0.7181344628334045, -0.15112680196762085, -0.22940295934677124, 0.4792536795139313, 0.03968040645122528, 1.1097912788391113, 0.24017761647701263, 0.4988463521003723, 0.48184657096862793, 0.9285743236541748, -0.11547920107841492, -1.1862002611160278, 0.6341949105262756, 0.4194563031196594, 1.5052001476287842, 0.31221169233322144, 0.15331856906414032, 0.7995601296424866, 0.30328473448753357, -0.1423197239637375, -0.10437901318073273, 0.9136380553245544, 0.04669030383229256, -0.03588982671499252, -0.25842612981796265, -0.018218034878373146, 0.5565174221992493, -0.6987921595573425, 0.5087830424308777, 0.43891069293022156, -1.1582564115524292, -0.27022817730903625, 1.245129942893982, 0.46002593636512756, -0.7024285793304443, -0.42351478338241577, 0.5597983598709106, -0.11717800050973892, -0.24914364516735077, 0.2502003312110901, 0.07273554056882858, 0.1401969939470291, 0.4993569254875183, -0.9552090167999268, -0.1143757700920105, 1.098607063293457, -0.1551102101802826, 0.6955353021621704, -0.7675998210906982, -0.02156871370971203, -1.3795193433761597, 0.423726350069046, 0.36215415596961975, -0.507342517375946, 0.6384831666946411, -0.30910035967826843, -0.36528778076171875, -0.25248053669929504, 0.6545921564102173, 1.356984257698059, -0.5933350324630737, -0.11423857510089874, -0.2889280617237091, -0.33195871114730835, -0.22108852863311768, -0.306016206741333, -0.7221257090568542, 0.3982258141040802, -0.8052533268928528, 0.7648022174835205, 0.21107079088687897, -0.049360062927007675, 0.8268499374389648, 0.3373260796070099, 0.5894221067428589, 0.049157194793224335, 0.2373746931552887, -1.399300217628479, 0.30608534812927246, 0.3590940535068512, -0.5129749774932861, -0.7213110327720642, -0.22311550378799438, 0.31649303436279297, -0.1098281666636467, 0.12227089703083038, 0.8654654026031494, 0.8863031268119812, 0.11438194662332535, 0.1420644223690033, -0.545226514339447, 0.8578542470932007, 1.473433256149292, 1.4843316078186035, 1.3599532842636108, -0.5810451507568359, 0.003036783542484045, 0.3217774033546448, -1.26633620262146, -0.2634502351284027, 0.6004208922386169, 0.807145893573761, 1.348612666130066, -1.8215254545211792, -0.6712039113044739, 0.4735735356807709, 0.5988741517066956, 0.2757609486579895, 1.0827550888061523, -0.20688007771968842, -0.2048252522945404, 0.16865520179271698, -0.0014264564961194992, 0.4319404661655426, 0.12328983098268509, -0.49170053005218506, -0.5000820159912109, 0.8181315660476685, -1.023725986480713, 1.0906426906585693, -1.0011295080184937, -0.49789077043533325, -0.03891478851437569, -0.6906682252883911, 0.591384768486023, 0.9757914543151855, 0.49339014291763306, 1.4457751512527466, -0.019768906757235527, -0.9828906655311584, -0.46058669686317444, -1.095821738243103, 0.7211762070655823, -0.4938296675682068, 0.1049651950597763, -0.824246883392334, -0.3279697895050049, -0.46296387910842896, 0.5869256258010864, -0.48608070611953735, -0.6780022382736206, 0.0736382007598877, -1.4828810691833496, 0.4438602328300476, 0.4891706705093384, 0.6300000548362732, 0.1350964456796646, -0.796352744102478, 0.21109560132026672, 0.07022249698638916, -1.0667511224746704, -0.07503850013017654, 0.6316882967948914, 0.016515957191586494, 0.17798149585723877, -1.232384443283081, -0.807341992855072, 0.605688214302063, -0.06389254331588745, -0.24887917935848236, 0.03127853944897652, 0.8835394978523254, 1.6083565950393677, -0.8408352136611938, -0.27684882283210754, -0.01878528669476509, -0.29396966099739075, 0.8019323348999023, -0.0073944199830293655, -0.028099622577428818, -1.352612853050232, -0.8491153717041016, -1.6040881872177124, 0.7764459252357483, -0.6391651034355164, -0.5986232757568359, 1.0665044784545898, 0.5501449704170227, 0.6873553395271301, 0.7745851874351501, -0.42687246203422546, 0.27630674839019775, 0.5459844470024109, -1.170095682144165, -0.8005552291870117, 0.30599287152290344, 0.8337897658348083, 0.2515328824520111, -0.36244261264801025, 1.004014492034912, 0.3451218605041504, -0.08814848959445953, -0.35095831751823425, 0.39917683601379395, -0.24512577056884766, 0.4539095461368561, 0.11341513693332672, 0.030038509517908096, -0.11396002024412155, -0.7175747752189636, -0.7626832723617554, 0.23830486834049225, 0.3928702175617218, 0.14485570788383484, -0.2965206503868103, -0.6639001369476318, -0.2353346198797226, -0.21839550137519836, 0.18666352331638336, -0.3990607261657715, 1.27420175075531, 0.8274683356285095, -0.02382243238389492, -0.16388177871704102, -0.3784768283367157, 0.28814300894737244, -0.42257779836654663, 0.21776391565799713, 0.09730749577283859, -2.152337074279785, 0.014469554647803307, 0.559123158454895, -1.2912198305130005, -0.8723791241645813, -0.24290211498737335, 0.04961560294032097, -1.4999951124191284, -0.9457247853279114, -0.8455987572669983, 0.4596710503101349, 1.0518056154251099, -0.745298445224762, -0.0996503159403801, 0.8879314064979553, -1.0479782819747925, 0.1228090450167656, -0.33726802468299866, -0.4013060927391052, -0.12364931404590607, -0.7430512309074402, 0.3759456276893616, 0.6880264282226562, 0.31624966859817505, -0.004075328819453716, 0.9964417815208435, -1.828176498413086, -1.0124846696853638, -1.0178145170211792, -0.6787549257278442, 0.9384507536888123, 0.8715365529060364, -1.1996163129806519, 0.9920644760131836, 1.2372958660125732, 0.007589858025312424, -0.14194656908512115, 0.3278225362300873, 0.02962728962302208, 0.5200198888778687, -0.1068175882101059, 0.6224192976951599, 0.2772268056869507, 0.6302675008773804, 0.24816009402275085, 1.2238889932632446, 0.6655367612838745, 0.9645123481750488, -0.5779192447662354, -0.5211672782897949, 0.07323861867189407, 1.1498188972473145, -1.473427653312683, -0.49523860216140747, -0.207221120595932, -1.2483936548233032, -1.1848325729370117, -0.31296205520629883, 0.3888109028339386, -0.47048139572143555, -0.016078099608421326, -1.1709089279174805, 0.7868117094039917, -0.8862394094467163, 0.12222666293382645, -0.06136227771639824, -0.05431602895259857, 0.3848222494125366, 1.1114439964294434, -0.9397552013397217, -0.8430331349372864, 0.1748633235692978, -0.25192663073539734, -0.3946431577205658, -1.1464331150054932, 0.16342796385288239, -0.17855700850486755, 0.07399271428585052, -0.6890990138053894, 1.7410866022109985, 0.6029654145240784, -0.29266631603240967, 0.14110079407691956, 0.3234487473964691, 0.4454096257686615, 0.27824243903160095, -0.6791248321533203, -0.9890503287315369, -0.678091824054718, 1.6865664720535278, 0.6413828730583191, 0.7091473937034607, 0.17398323118686676, -0.1957857757806778, -0.07509731501340866, 0.13959690928459167, 1.0246057510375977, -1.883447289466858, -0.22508738934993744, 0.6872912645339966, 0.11201488971710205, -0.20026259124279022, 0.31544506549835205, 0.5895508527755737, 0.37791943550109863, -0.48625072836875916, 0.752541720867157, 0.3717937171459198, -0.8306861519813538, 1.2316107749938965, -0.08526117354631424, -0.28524813055992126, -0.28817853331565857, -0.1696341335773468, -0.9341937303543091, -0.12414462864398956, -0.2186303287744522, -0.7730350494384766, 0.3666325509548187, -1.384461760520935, 0.26834338903427124, 0.5454273819923401, -0.8840712904930115, -0.12584124505519867, -0.11289827525615692, 1.1145379543304443, -0.031465958803892136, -0.4937208592891693, 0.5905942916870117, 0.09629732370376587, 1.2449297904968262, 0.3210165798664093, 0.15043754875659943, -1.6953856945037842, -0.2573888897895813, -0.02974294312298298, -0.7122797966003418, -0.13562829792499542, -0.37498632073402405, 0.3546619713306427, -0.2843400835990906, -0.8351455330848694, 0.6032931208610535, -0.14287599921226501, -0.1862923502922058, 0.09234710782766342, -0.8068573474884033, -0.2461022436618805, 1.19815194606781, 0.6329699158668518, 0.18228018283843994, -0.5850820541381836, -0.8364099860191345, 0.812301754951477, -0.7765295505523682, 0.44738635420799255, -0.47775155305862427, 0.6441017985343933, -0.40743425488471985, -0.05928266793489456, -0.5972024202346802, -0.9506908655166626, 0.338937371969223, -0.735546350479126, -0.1327277272939682, 0.01696551777422428, -0.34953489899635315, -0.15978200733661652, -1.3249653577804565, 0.47850877046585083, 0.6941253542900085, -0.07010604441165924, -0.21010762453079224, -1.0846644639968872, -0.8630236387252808, -0.04159722849726677, -0.17960357666015625, 0.0476071760058403, 0.3982005715370178, 0.3850715160369873, 0.10139204561710358, -1.0156716108322144, 0.03942758962512016, 0.4062829613685608, -0.0024155848659574986, 0.33640339970588684, 0.9053518772125244, 1.414316177368164, 0.6837261319160461, 0.18389669060707092, -0.45035117864608765, -0.013592347502708435, -0.8553619980812073, -0.18809325993061066, -0.6290979981422424, -0.3913171589374542, -0.22772128880023956], [0.5282629132270813, 1.6232267618179321, -2.8511526584625244, -0.1685606986284256, 0.5842646360397339, -0.03017278201878071, 0.9437267184257507, -0.13223887979984283, 0.15241269767284393, -0.27334100008010864, -0.8732209205627441, -0.06864295154809952, -0.42386868596076965, 0.12076998502016068, 0.7348502278327942, 0.5215221047401428, 0.8771207332611084, -0.7366580963134766, 0.34650182723999023, 0.5196231603622437, -0.15973010659217834, -0.04995044693350792, 0.3016519844532013, -0.20240335166454315, -0.4907805621623993, 0.9147211909294128, -0.8931825757026672, -0.1492389291524887, -0.18548917770385742, -1.361373782157898, 1.0211137533187866, -0.7030619382858276, 0.23840248584747314, -0.7158133387565613, -1.6537432670593262, -0.05980653315782547, 1.2262660264968872, 1.2223715782165527, 0.7218245267868042, 0.5329490900039673, 0.6273571848869324, -0.6017782688140869, 0.5821639895439148, -1.3426768779754639, -0.33701035380363464, 0.43110087513923645, 0.7352538108825684, 0.40950244665145874, -0.34647026658058167, -0.3394204080104828, 0.8051391839981079, -1.0086721181869507, 0.06543061137199402, 0.6451385021209717, 1.5031908750534058, -0.9225350618362427, -0.057535722851753235, -0.37174537777900696, 0.3042508065700531, -0.9560897946357727, 1.438683032989502, 0.5178950428962708, -0.4876239001750946, 0.7859818339347839, 0.24882830679416656, -0.5515839457511902, 0.45297807455062866, 0.5356830954551697, 0.11878112703561783, -0.5120239853858948, 0.4152301847934723, 0.3676033914089203, -0.8251270651817322, 0.14226971566677094, -0.6083292365074158, 0.5440050363540649, 0.46671295166015625, 0.9287704825401306, 0.7160620093345642, 0.9518672227859497, -0.12606702744960785, -0.19569048285484314, 0.6850468516349792, -0.11308244615793228, 0.9026884436607361, 0.07609743624925613, 0.8419991731643677, -0.5519885420799255, -0.013645418919622898, 2.042081117630005, 0.25890785455703735, -0.059522807598114014, 0.6742025017738342, -0.20634731650352478, -0.47209882736206055, -0.6211192011833191, 0.4528493583202362, 0.3093309998512268, -1.3676661252975464, -0.3371962010860443, -0.772699773311615, -1.3122822046279907, 0.3741820156574249, -0.6659296154975891, -0.37091878056526184, 0.8316687941551208, -0.16761276125907898, -0.22406423091888428, -0.4074912965297699, -0.22379744052886963, -0.06292359530925751, 0.7253360152244568, -0.7497643232345581, -1.5245648622512817, -0.2479410469532013, 0.7254437804222107, 1.4707913398742676, -0.34042617678642273, 0.062090251594781876, 0.5747948288917542, -0.2288903146982193, -0.4319941997528076, -0.4783633053302765, 1.2663216590881348, 0.19842518866062164, 0.4115808606147766, -0.7126296758651733, 0.25749120116233826, 0.571013331413269, -0.3198258578777313, 0.21264095604419708, 0.2699510455131531, -0.6987191438674927, 0.8312110304832458, -0.8269022703170776, 1.2322319746017456, -0.30349865555763245, -0.248849019408226, -0.5448383092880249, 0.14261308312416077, 0.5732617378234863, -0.13124430179595947, -0.09973060339689255, -0.26371392607688904, -0.6154563426971436, -0.27908438444137573, -0.19934885203838348, -0.5592212080955505, -0.5199173092842102, 0.6530314087867737, -0.7246450185775757, 0.7126919031143188, -0.12428274750709534, 0.23973233997821808, 0.7702597379684448, -0.4149557054042816, -0.11539050936698914, 0.324923574924469, 0.2874956727027893, 0.736910879611969, 0.7568473219871521, -0.2934744358062744, -0.9689946174621582, 0.40740352869033813, 0.6449424624443054, -0.4343240559101105, -0.4460417330265045, 1.533677577972412, 0.002925530541688204, 0.8422108292579651, -0.3969722092151642, -0.7580869197845459, -0.22423461079597473, -0.4042585790157318, -0.210385262966156, 0.48527979850769043, 1.373586893081665, -0.7673208713531494, -1.440949559211731, -1.1111549139022827, 0.5004854202270508, -0.1548081934452057, 0.46663767099380493, -0.06209971755743027, 0.38121530413627625, -0.5986777544021606, 0.7193583250045776, -0.41199880838394165, -0.41626811027526855, -0.3314880132675171, -0.6498023271560669, -0.1542624682188034, -0.16504333913326263, 0.35184216499328613, -0.46118471026420593, -0.873323380947113, 0.9788697957992554, -0.9519496560096741, -0.07444626837968826, -0.7915846109390259, 0.031711943447589874, -0.4664197266101837, -0.4137677252292633, 0.38251861929893494, -0.6020734906196594, 0.911523699760437, -0.8685393929481506, 0.7963494658470154, -0.7014105319976807, -0.5468330979347229, 0.8350479602813721, 0.1354185938835144, -0.38229891657829285, 0.23770597577095032, 0.21665365993976593, -1.2661327123641968, -0.06114200875163078, 0.5232771635055542, -0.5537495613098145, 0.5341600179672241, 0.5339253544807434, 0.18155667185783386, 0.8683897256851196, -0.0025402086321264505, 0.4118506908416748, -0.521475613117218, -0.8466241359710693, -0.4068705439567566, -0.36419349908828735, -0.4008499085903168, -0.07049200683832169, -0.8396075963973999, 0.8921579122543335, 0.18861974775791168, -0.7644494771957397, 0.2787136137485504, -0.5857254266738892, 0.5080357789993286, -0.048950809985399246, 0.8444715142250061, 0.6375975608825684, 0.5445282459259033, -0.28837910294532776, -0.2812599837779999, -1.056612253189087, 0.6658169031143188, -0.11254191398620605, -1.012096881866455, 0.3662482798099518, 0.8065603375434875, 0.5015037059783936, -0.22449390590190887, 0.4708613455295563, -0.05741839110851288, -0.06459805369377136, -0.4083150327205658, -0.8306195139884949, -0.07615025341510773, -0.6741278767585754, 1.5616382360458374, 0.6966391205787659, -0.2985006868839264, 0.2036903202533722, 0.3411486744880676, -0.5321729183197021, -0.4452359080314636, -0.3741142451763153, -0.2152635157108307, -0.7684791684150696, -0.15258939564228058, -0.06000099703669548, 0.43668332695961, 0.1054985523223877, 0.7599144577980042, -0.26881712675094604, -0.9055840373039246, 0.17899321019649506, -0.220280259847641, 0.11390602588653564, 0.36566299200057983, -0.3518903851509094, -1.3638770580291748, -0.3436795473098755, 0.4253186583518982, 0.6316262483596802, -0.2046075463294983, -0.05874112248420715, -0.20085509121418, 0.4371323585510254, 0.012377124279737473, 0.20632487535476685, 0.15133801102638245, -0.2889293432235718, 0.8813958168029785, -0.39581114053726196, 0.29670417308807373, 1.4073495864868164, -0.34860628843307495, -0.698214590549469, -0.5094029307365417, 0.4070991277694702, 1.2665891647338867, 0.14619077742099762, 1.1975141763687134, 0.2476244419813156, 0.1427074670791626, -0.35039037466049194, -0.2650146782398224, -1.2159385681152344, -0.25366005301475525, -1.1856082677841187, -0.9988745450973511, 0.3740127682685852, 0.5875067114830017, 0.0008813384920358658, 0.851545512676239, -0.311345636844635, 0.18487992882728577, 1.3277643918991089, -0.6396785378456116, 0.07995540648698807, -0.18176032602787018, 0.06394737213850021, -0.5603997707366943, -0.010502945631742477, 1.0732313394546509, -1.2775886058807373, -0.25553515553474426, -0.5634902715682983, 0.5399630069732666, 0.9559435844421387, -0.07742604613304138, 0.36509114503860474, -1.6514285802841187, -0.9834167957305908, 0.13505740463733673, 0.6182674169540405, 0.25636816024780273, -0.05807334929704666, -0.27917927503585815, 0.41798555850982666, 0.9629608988761902, -0.47368282079696655, -0.5820030570030212, 0.6760753393173218, -0.28742659091949463, -1.1399847269058228, 0.21314886212348938, 0.43732258677482605, 0.3082354962825775, -0.6142244935035706, -0.7687952518463135, -0.6687250137329102, -0.38545092940330505, 0.2084779292345047, 0.16425380110740662, 0.10045839101076126, 1.1414276361465454, -0.03349582850933075, -0.2980635464191437, 0.8547637462615967, 0.3029005825519562, 0.4548579454421997, -1.2557398080825806, 0.2592044770717621, 0.656879186630249, 1.0500404834747314, 0.39929258823394775, 0.4802609384059906, 0.07960773259401321, 0.5037857294082642, -0.7492687106132507, 0.633728563785553, 1.461267113685608, 0.278312623500824, 0.24156232178211212, -0.5778475403785706, -0.39980652928352356, -0.08148077875375748, 0.11692992597818375, -0.4219822585582733, 0.1840590536594391, -0.647505521774292, -0.6878513097763062, 1.1760838031768799, 0.34367868304252625, 0.07022538781166077, -0.3758651912212372, 0.3466182053089142, 0.9238764047622681, -0.35809335112571716, -0.22909200191497803, -0.41606688499450684, -0.07666719704866409, 0.6676979064941406, -1.025256633758545, -0.1540081948041916, 0.3885449469089508, 0.12487111240625381, 0.42260295152664185, -0.4439740777015686, 0.6781728863716125, -0.34642642736434937, 0.6110095381736755, 0.6192811727523804, -0.4231191575527191, -0.056416574865579605, 0.45416438579559326, -0.15690448880195618, -0.39772310853004456, -0.1831478625535965, 0.1704087257385254, -1.0923773050308228, -0.205749049782753, 0.7196674346923828, 0.0861923024058342, 0.015926387161016464, 0.1289701610803604, -0.30978643894195557, 0.3919442892074585, -0.5018953680992126, 0.404379665851593, -0.1834843009710312, -0.6223249435424805, 0.5989074110984802, 0.3426710069179535, 0.0658775344491005, 0.6076812148094177, -0.23041602969169617, -1.125138759613037, 0.5311988592147827, 0.3324602544307709, -0.19288723170757294, -0.5042257308959961, 0.12238489836454391, 0.6977643966674805, -0.19686970114707947, 0.5894811749458313, 0.07527667284011841, 0.7983503937721252, 0.25999027490615845, -0.060638878494501114, 0.5864912271499634, 0.9213356971740723, 0.47007128596305847, 1.383198618888855, -0.4471982419490814, -1.309687614440918, -0.3529498279094696, 0.12073035538196564, -0.9860404133796692, 0.4493895471096039, 0.7942984104156494, -0.32921892404556274, 1.8512024879455566, -1.6923191547393799, 0.10211130976676941, 0.9234803915023804, 0.36384716629981995, 0.48269033432006836, 0.3857229948043823, -0.6841370463371277, 0.008817414753139019, 0.5389615297317505, -0.13664188981056213, -0.3400774300098419, 0.2812061309814453, 0.729200541973114, -0.2893422842025757, 0.6782357692718506, -0.9771151542663574, 0.5523521304130554, -0.49076855182647705, -0.38730674982070923, 0.3901885151863098, -0.7017860412597656, -0.31376275420188904, 0.9081708788871765, 0.16131290793418884, 1.484609603881836, 0.4330753684043884, -0.9297013282775879, -0.10924152284860611, -0.7833751440048218, 0.142558753490448, 0.0336630754172802, -0.5344159603118896, -0.7729257345199585, 0.22657836973667145, 0.3992893397808075, 0.8532532453536987, 0.16890034079551697, -0.1453808844089508, -0.0758950337767601, -0.7565610408782959, 1.116017460823059, 0.913547158241272, 0.8835686445236206, -0.20570741593837738, -0.4447692632675171, -0.01863809861242771, 0.6852023005485535, -0.6595548391342163, -0.9392226338386536, -0.07668501883745193, -0.3653327226638794, -0.07838544249534607, -0.7504892945289612, -0.5326364636421204, 0.3269282281398773, 0.17394863069057465, 0.07822252064943314, 0.502050518989563, 1.1592403650283813, 1.4785254001617432, -0.4682069718837738, -0.3844435214996338, 0.4004110097885132, -0.43993502855300903, -0.040680304169654846, 0.4374649226665497, -0.566335141658783, 0.3540346622467041, -0.6450782418251038, -1.5660245418548584, 0.4233303666114807, -0.13555674254894257, -0.8068929314613342, 0.9128360748291016, 0.5979050993919373, 1.5476773977279663, 0.4015450179576874, -1.047390103340149, -0.04646507650613785, -0.16216549277305603, -0.12918463349342346, -0.5503699779510498, 0.7439938187599182, -0.23863539099693298, 0.8728013038635254, -0.0625731348991394, -0.5293327569961548, 0.1959470510482788, 0.5477011203765869, -0.479904443025589, -0.34719526767730713, 0.03944535553455353, 0.26744115352630615, -0.14578138291835785, -0.6574145555496216, 0.45881426334381104, -0.21795685589313507, -0.3430945873260498, -0.28041499853134155, 1.0455645322799683, -0.24988003075122833, 0.5995488166809082, 0.4516233205795288, -0.7607564926147461, -0.29605403542518616, -0.3465270698070526, 0.27167370915412903, 0.6883445382118225, 0.20355045795440674, 0.8010972738265991, -1.131006121635437, -0.5259138941764832, -0.32468974590301514, -0.003408293705433607, 0.5736336708068848, 1.1401431560516357, -0.7933183908462524, 0.5995977520942688, 0.31582772731781006, -1.1569355726242065, -0.28330692648887634, -0.10481670498847961, -0.14432187378406525, -1.1424707174301147, -0.46599915623664856, -0.8848447203636169, 0.12224536389112473, 0.5575668215751648, -0.2614862620830536, 0.7469624876976013, 0.6238872408866882, -1.3494302034378052, 0.19377176463603973, 0.24099135398864746, -1.2126654386520386, 0.036441005766391754, -0.9675673842430115, 0.4766846001148224, 0.4010196626186371, 0.055978529155254364, -0.3933889865875244, 0.18965478241443634, -1.7103346586227417, -0.9442280530929565, -1.1688958406448364, -0.09941194206476212, 0.6582918167114258, 0.39920011162757874, -0.9849667549133301, 1.349670171737671, 0.4181320369243622, -0.48878979682922363, 0.03398580849170685, -0.1670379787683487, -0.22084061801433563, 0.9906129837036133, 0.17158257961273193, 0.11060687899589539, 0.3911585509777069, 0.4443073272705078, -0.20000961422920227, 0.8914147615432739, 0.6908685564994812, 1.2373297214508057, -0.4561700224876404, -0.18386077880859375, 0.5088130235671997, 1.1770622730255127, -0.8544993996620178, -0.7058643102645874, -0.5994321703910828, -0.5341870784759521, -0.6251339912414551, 0.12000110745429993, 1.113840937614441, -0.38299646973609924, 0.040130868554115295, -0.7295875549316406, 0.9594566822052002, -0.4340982735157013, 0.09760113060474396, -0.2231166511774063, -0.26311036944389343, -0.40513938665390015, 0.24630679190158844, -0.15586106479167938, -1.7174389362335205, 0.2829558253288269, -0.20436856150627136, -0.1930062472820282, -0.5950860977172852, 0.6549185514450073, 0.3046253025531769, 0.7043965458869934, -0.3808496296405792, 1.4637342691421509, 0.7033870816230774, -0.4898015558719635, -0.294930100440979, -0.09097958356142044, 0.05273183062672615, -0.19840854406356812, -0.6729416251182556, -0.9546105861663818, -1.075169324874878, 1.600809931755066, 0.3232937455177307, -0.17247943580150604, -0.592583954334259, 0.2530187666416168, 0.16053706407546997, 0.35640135407447815, -0.014135732315480709, -1.5348094701766968, -0.9296132922172546, 0.8332113027572632, 0.3490377962589264, -0.12617437541484833, -0.07109982520341873, 0.49490851163864136, 0.663955807685852, -0.11033948510885239, 0.36658987402915955, 0.46376359462738037, -0.6093508005142212, -0.18113143742084503, -0.04424704611301422, -0.27164334058761597, -0.07493767142295837, 0.017780238762497902, -0.565884530544281, 0.2609569728374481, -0.16964565217494965, -0.25563183426856995, 0.9157506823539734, -0.9832145571708679, 0.2456086128950119, -0.02453056536614895, -0.1556132733821869, 0.31339213252067566, -0.36211538314819336, 0.7462096214294434, 0.22949697077274323, 0.583916187286377, 0.4924665093421936, -0.11482715606689453, 1.2313393354415894, -0.09468292444944382, 0.4698166251182556, -1.2927016019821167, 0.4201149344444275, -0.03975125029683113, -0.13005274534225464, -0.1530470997095108, 0.23797017335891724, 1.0086311101913452, 0.0032948097214102745, -0.06489043682813644, 0.27918073534965515, -0.06263265758752823, 0.1499708890914917, -0.16790322959423065, -0.8574004173278809, 0.5576984286308289, 0.48796162009239197, 1.0227421522140503, -0.357403963804245, -1.271079659461975, -0.6028629541397095, 0.3980792164802551, -0.6611301302909851, 0.7213061451911926, -0.5830022692680359, 1.1871662139892578, -0.0379893034696579, 0.0004154574126005173, -0.6836216449737549, 0.0506233312189579, 0.018925268203020096, -0.004851434845477343, -0.12462779134511948, -0.9691595435142517, 0.7246516942977905, -0.8750758171081543, -0.8686232566833496, -0.7465183734893799, 0.07559032738208771, -0.5183427929878235, -0.3734823763370514, -0.9082202315330505, -0.8697099089622498, -0.642543375492096, -0.09972009807825089, 0.7379918098449707, -0.13851124048233032, -0.2077605128288269, -0.9553146958351135, -0.6718056797981262, -0.292205810546875, -0.03828881308436394, -0.11871056258678436, -0.525571346282959, 0.8031128644943237, 1.892031192779541, 0.5415928363800049, 0.19909320771694183, -0.7125316858291626, 0.5363519191741943, -1.0637565851211548, 0.01567050628364086, -0.5987042784690857, -0.5080622434616089, -0.19254004955291748], [0.6358144283294678, 1.2439895868301392, -2.5517003536224365, -0.3331723213195801, 0.3549256920814514, 0.29693663120269775, 0.8737603425979614, -0.5344955921173096, -0.37961599230766296, -0.24281610548496246, -0.6464278101921082, -0.7490995526313782, 0.27598342299461365, 1.0957391262054443, 0.7511743307113647, 0.8195441961288452, 1.514665126800537, -0.7715020775794983, 0.3179202973842621, 1.0617215633392334, 0.19058506190776825, -0.7346155643463135, 0.15770898759365082, 0.08205154538154602, -0.17927438020706177, 0.6027950644493103, -1.7761355638504028, -0.766471803188324, -0.6055748462677002, -0.9127917885780334, 1.0336599349975586, -0.7803210616111755, -0.2765287458896637, -0.2647882103919983, -1.1875592470169067, -0.17892134189605713, 1.5901776552200317, 0.3681119680404663, 0.779373049736023, -0.07451581954956055, 1.3674952983856201, -0.11094674468040466, -0.07763492316007614, -1.0111606121063232, -0.21174739301204681, -0.34597519040107727, 0.3088412582874298, -0.2368272989988327, 0.2316695749759674, -0.5218692421913147, 0.8469379544258118, -0.4203417897224426, 0.05886581167578697, 1.1834107637405396, 1.4559152126312256, -0.40067702531814575, 0.14233751595020294, -0.07935411483049393, 0.7635942697525024, -0.760449230670929, 1.2606754302978516, -0.05157012492418289, -0.14501778781414032, 1.1607006788253784, -0.2890964448451996, -0.5123867988586426, -0.10851284116506577, 0.6276516318321228, 0.3665522038936615, 0.14285695552825928, 0.8273539543151855, 0.7267860770225525, -0.16848261654376984, 0.5788809061050415, -0.7258867621421814, 0.3990717828273773, 0.5787389874458313, 1.038668155670166, -0.05004119873046875, 0.8305784463882446, -0.19364893436431885, 0.1369723528623581, 0.10974591225385666, -0.2753390967845917, 0.4324730336666107, -0.010172867216169834, 0.5847464799880981, -0.570787250995636, -0.6701101064682007, 1.9993741512298584, 0.14786042273044586, -0.28137296438217163, 0.2711644470691681, -0.36387133598327637, -0.4790099859237671, -0.4458273947238922, 0.2515234053134918, 0.5441283583641052, -1.077621579170227, -0.44485941529273987, -0.42841389775276184, -0.4433414041996002, -0.23803254961967468, -0.5207685828208923, -0.12318312376737595, 0.9081166386604309, 0.561543345451355, -0.41255828738212585, -0.4468938708305359, -0.29744845628738403, -0.392494797706604, 0.5136638879776001, -0.9675231575965881, -1.0170284509658813, -0.6094841361045837, 1.14211106300354, 1.639076590538025, -0.7636558413505554, 0.7089719176292419, 0.5944957733154297, -0.5834812521934509, -0.7432635426521301, -0.5982111096382141, -0.11198652535676956, 1.0486308336257935, 0.7448509931564331, -0.7140852808952332, -0.4970702826976776, 0.40958619117736816, -0.35793712735176086, 0.3539491891860962, 0.302890419960022, -0.6765826344490051, 0.9314281940460205, -0.766031801700592, 1.3351529836654663, -0.1867162585258484, -0.5443379282951355, 0.23853056132793427, 0.2594095468521118, 0.23265400528907776, 0.07449551671743393, -0.36034172773361206, -0.16618433594703674, 0.20816640555858612, -0.4936138391494751, -0.020505232736468315, -0.37387815117836, -0.8776880502700806, 0.5373461842536926, -0.7674164772033691, 0.28741273283958435, 0.6122225522994995, 1.139527678489685, 0.30767759680747986, 0.05832713842391968, -0.12838852405548096, 0.06387072056531906, 0.7261581420898438, -0.12639856338500977, 0.4871602952480316, 0.36101070046424866, -0.8708975315093994, 0.5426876544952393, 0.37303459644317627, -0.5923373103141785, -0.4872087836265564, 1.2100318670272827, -0.04114712029695511, 0.3382180333137512, -0.25855639576911926, -0.36031490564346313, -0.5137773752212524, 0.20452551543712616, 0.5499405264854431, -0.8250439763069153, 1.3117601871490479, -0.26130226254463196, -1.1101233959197998, -0.8862547278404236, 0.7011932134628296, 0.17195439338684082, 0.5604786276817322, -0.048114113509655, -0.010256553068757057, -0.7228820323944092, 0.4484715163707733, -0.4296245574951172, -0.8856084942817688, -0.5203465819358826, -0.18760070204734802, -0.20435908436775208, -0.400210976600647, 0.6762340664863586, -0.9448055028915405, -0.9827843904495239, 0.42120853066444397, -0.7856794595718384, -0.0009163473732769489, 0.2522353529930115, 0.07784799486398697, -0.586465060710907, -0.9864205718040466, 0.39301928877830505, -0.5394814610481262, 1.459145188331604, -1.4756700992584229, 0.7350525259971619, -0.7799158096313477, -0.4219863712787628, 0.9617011547088623, 0.22251209616661072, -0.6150119304656982, 0.6201176047325134, 0.45003706216812134, -1.087813138961792, 0.2103847861289978, 0.7321033477783203, -0.4851878583431244, -0.028211086988449097, -0.11354697495698929, -0.0554836243391037, 0.9511890411376953, -0.3702549338340759, 0.5095800161361694, -0.19375737011432648, -0.6260300278663635, -0.4500471353530884, -0.903954803943634, -0.2985292077064514, -0.4134468734264374, -0.9503284692764282, 0.7193939685821533, 0.2657243609428406, -0.4085308015346527, -0.08230599761009216, -0.5819078087806702, 0.4831694960594177, 0.40678849816322327, 1.5653263330459595, 0.3516695499420166, 0.574353039264679, -0.35093310475349426, -0.22778409719467163, -0.8281764388084412, 0.4275149405002594, 0.4911552965641022, -0.44162803888320923, 0.38186073303222656, 0.7418912649154663, 1.2390819787979126, 0.26821741461753845, 0.530493438243866, 0.014204222708940506, 0.026094159111380577, -0.2589748203754425, -0.9763257503509521, 0.27427834272384644, -0.2769296169281006, 1.2676825523376465, 0.5758411288261414, -1.1943140029907227, -0.1316298544406891, 0.09987253695726395, -0.07772906869649887, -0.5085663199424744, -0.5768461227416992, -0.46321386098861694, -0.4014051556587219, 0.1135491281747818, 0.21908223628997803, 0.36479178071022034, -0.09993298351764679, 0.479617178440094, -0.4790586233139038, -1.0544984340667725, -0.5062369704246521, 0.5682671666145325, -0.19074007868766785, 1.2487744092941284, -0.5375664830207825, -1.4296592473983765, -0.40020751953125, 0.3771010935306549, 0.5973208546638489, -0.2567860186100006, -0.7968371510505676, 0.11069739609956741, -0.10136362165212631, -0.25449520349502563, 0.5075969696044922, 0.3968101739883423, 0.5995320677757263, 0.05160330608487129, 0.09539823234081268, 0.4817815124988556, 0.9150925278663635, -0.8212217688560486, -0.8739755153656006, -0.6575671434402466, 0.297446608543396, 1.0190706253051758, 0.36078283190727234, 0.8715600967407227, 0.49050185084342957, 0.3534814119338989, -0.09964101761579514, 0.49610933661460876, -1.0659503936767578, -0.7965732216835022, -0.7937098145484924, -1.3224115371704102, -0.2389668971300125, -0.32517415285110474, 0.2552519142627716, 0.650496244430542, -0.07272391766309738, 0.11135361343622208, 1.534313440322876, -0.4701348543167114, -0.6972801089286804, 0.10937788337469101, -0.017112670466303825, -0.6944504976272583, 0.4863497316837311, 1.2129989862442017, -1.1471649408340454, -0.4868408739566803, -0.3116022050380707, 0.21453386545181274, -0.01157393865287304, 0.15434256196022034, -0.08267606794834137, -1.1573127508163452, -0.025639090687036514, -0.41946521401405334, 1.2613097429275513, -0.1153738796710968, -0.43451380729675293, -0.2442512810230255, 0.1904660016298294, 1.1428120136260986, 0.11201369762420654, -0.0910283774137497, 0.604637861251831, -0.8298274278640747, -0.36515524983406067, -0.001454292330890894, 0.6983041763305664, 0.30537039041519165, -0.6903519034385681, -0.38481366634368896, -0.44550174474716187, 0.15679886937141418, -0.41776925325393677, 1.0166772603988647, -0.03972269967198372, 0.9172707200050354, 0.730566143989563, -0.04042527824640274, 1.3552414178848267, -0.04180275276303291, 0.1789996325969696, -1.5463923215866089, 0.0440177321434021, 0.6074672937393188, 1.289053201675415, 0.4022291600704193, 0.4073910415172577, 0.3652211129665375, 0.2859830856323242, 0.25873199105262756, 0.34642836451530457, 1.4635009765625, -0.3324078321456909, -0.2640073597431183, -0.8345947861671448, -0.17312756180763245, 0.49283576011657715, -0.5038012862205505, 0.10571122169494629, 0.40734076499938965, -0.9205392003059387, -0.6124093532562256, 1.0202897787094116, 0.5651392936706543, -0.190519317984581, -0.30073410272598267, 0.5197485089302063, 0.6410068273544312, -0.32656189799308777, 0.3523159325122833, -0.3382169008255005, -0.019628500565886497, 0.7419619560241699, -0.9116501808166504, -0.11660368740558624, 0.3985241651535034, 0.25039899349212646, 0.2215544879436493, -1.1005477905273438, 0.6351248025894165, -0.6967925429344177, 0.4886408746242523, 0.6457164883613586, -0.41566532850265503, -0.26233622431755066, -0.19324378669261932, -0.3678933382034302, -0.4117855727672577, -0.11451300978660583, 1.1361122131347656, -0.8388757705688477, -0.003810744732618332, 0.16889502108097076, -0.4287286102771759, -0.03302459791302681, -0.5681619644165039, 0.10420253127813339, 0.018733320757746696, -0.3061307966709137, 0.28949257731437683, -0.12010101228952408, -0.28582999110221863, 0.9874975681304932, 0.38689878582954407, 0.41887134313583374, 0.33644190430641174, -0.06173355132341385, -1.2321646213531494, 0.26433050632476807, 0.3327901363372803, 0.29385489225387573, -0.5466154217720032, -0.3218599259853363, 0.18971215188503265, 0.2431110292673111, 0.32123681902885437, -0.18137751519680023, 0.5773425698280334, 0.42270809412002563, 0.08299166709184647, -0.005475040525197983, 0.5442029237747192, 0.7967174053192139, 1.0974897146224976, 0.31037604808807373, -0.5107350945472717, -0.6920328140258789, 0.7599009275436401, -1.1053725481033325, 0.3677870035171509, 0.6243224143981934, 0.3077906370162964, 1.452190637588501, -1.414576768875122, -0.3339058458805084, 1.1383452415466309, -0.02856897935271263, 0.1723535805940628, 0.9221097826957703, -0.29484930634498596, 0.19147072732448578, 0.7251675128936768, -0.04227123409509659, -0.3312089443206787, 0.28484925627708435, -0.2568439245223999, 0.1247042566537857, 0.707419216632843, -0.8706649541854858, 1.0892256498336792, -0.9065878391265869, 0.10057529807090759, 0.37098589539527893, -0.595517635345459, 0.0033118044957518578, 0.9668292999267578, 0.23405961692333221, 2.0897200107574463, -0.044692233204841614, -1.0099889039993286, -0.33169856667518616, -1.05536949634552, 0.1105763167142868, -0.40325650572776794, -0.07456421852111816, -1.0089918375015259, -0.10340932011604309, -0.17330974340438843, 1.236624836921692, -0.17315317690372467, -0.3295123279094696, -0.23740200698375702, -1.3204163312911987, 0.8375997543334961, 0.5611581802368164, 0.8501497507095337, 0.08309689909219742, 0.2600792348384857, -0.22276929020881653, 0.6457537412643433, -0.803598165512085, -0.4168379306793213, 0.4536695182323456, 0.10178090631961823, -0.4045838713645935, -0.9817925095558167, -0.7376807332038879, 0.48425719141960144, 0.6174507141113281, 0.2804722785949707, -0.13721057772636414, 1.2959504127502441, 1.4206558465957642, -0.4971480369567871, -0.36437830328941345, 0.2375422716140747, -0.43931180238723755, 0.3604864776134491, 0.06438001245260239, 0.014769896864891052, -0.4667840898036957, -0.2578728199005127, -1.8778860569000244, 0.7254621982574463, 0.04039423167705536, -0.647962749004364, 0.9022120833396912, 0.5083907842636108, 0.8983566164970398, 0.343403697013855, -0.17335934937000275, 0.2680499851703644, -0.3805578351020813, 0.28289666771888733, -1.0661827325820923, 0.44932445883750916, 0.37774139642715454, 0.22929534316062927, -0.03427205607295036, 0.5294992327690125, -0.02796429954469204, 0.2571409046649933, -0.25353607535362244, 0.312057226896286, 0.3098283112049103, 0.2899710536003113, 0.36159849166870117, -0.9084604382514954, 0.30210891366004944, 0.20306162536144257, -1.2015718221664429, -0.3122355043888092, 0.06207922473549843, 0.20694346725940704, -0.10975635051727295, -0.17580220103263855, -0.6764608025550842, -0.2112409621477127, -0.15833128988742828, -0.3303886651992798, 1.1021825075149536, -0.1783955693244934, -0.060295332223176956, -0.119082510471344, -0.26175767183303833, -0.1990475058555603, -0.7852910161018372, 0.2575516104698181, 0.42806681990623474, -1.3749271631240845, 0.4464503526687622, 0.044432323426008224, -1.307815670967102, -0.08908350020647049, 0.06941116601228714, -0.22991852462291718, -0.887955367565155, -1.3770097494125366, -0.5461810827255249, 0.2413392812013626, 0.5913599729537964, 0.18548917770385742, 0.9698053598403931, 0.6039881110191345, -1.0282772779464722, 0.2513272762298584, 0.08431645482778549, -0.39323073625564575, -0.5659304261207581, -1.3987494707107544, 0.9688037633895874, 0.16237930953502655, 0.33771812915802, 0.053981952369213104, 0.46548962593078613, -1.7569442987442017, -1.079461693763733, -0.7865216135978699, -0.6738104820251465, 0.8282499313354492, 1.0810184478759766, -1.0311949253082275, 0.9775528311729431, 0.4882471263408661, -0.10501887649297714, 0.4616177976131439, 0.1364404857158661, -0.35298681259155273, 0.667799174785614, 0.5086526870727539, 0.1935177743434906, 0.33970293402671814, 0.7667389512062073, 0.14807632565498352, 1.1171622276306152, 0.49725115299224854, 0.9919506907463074, -0.8068721294403076, 0.0367405079305172, 0.12000873684883118, 0.888752818107605, -0.759666919708252, -0.5284726023674011, -0.2629527747631073, -0.7574398517608643, -0.6381853818893433, 0.07703474164009094, 0.8887221217155457, -0.7279006242752075, -0.3858165144920349, -0.9338157773017883, -0.009210814721882343, -0.44232213497161865, 0.16825395822525024, -0.021302901208400726, -0.3699137270450592, -0.029482970014214516, -0.016064990311861038, 0.13102921843528748, -1.6792227029800415, 0.5432923436164856, 0.2594987750053406, -0.2290014922618866, -0.48774588108062744, 0.04015057906508446, 0.35022470355033875, 0.34959736466407776, -0.921046793460846, 1.2992233037948608, 1.166338562965393, -0.3496823012828827, -0.23683665692806244, 0.17138850688934326, 0.19379019737243652, 0.7091178894042969, -0.6571555733680725, -0.7051215767860413, -0.8479861617088318, 1.521591067314148, 0.5752334594726562, 0.4290917217731476, -0.10900019854307175, 0.3590586185455322, -0.1948472559452057, 0.5129032731056213, 1.0497218370437622, -1.845421314239502, -0.48032549023628235, 0.892267107963562, 0.5477249026298523, -0.4100226163864136, 0.666359007358551, 0.8484897017478943, 0.37598469853401184, -0.4356555640697479, 0.5315659642219543, 0.8000906109809875, -1.07918381690979, 0.1722540557384491, 0.07195910066366196, -0.5453694462776184, 0.01713947020471096, -0.10452780872583389, -1.2628161907196045, 0.263040155172348, -0.24586473405361176, -1.2590500116348267, -0.04637924209237099, -1.1447136402130127, -0.273425817489624, 0.3943072259426117, -0.11115789413452148, -0.4059869349002838, -0.30351555347442627, 1.0854320526123047, -0.42286795377731323, 0.09063706547021866, 0.15780837833881378, -0.15056924521923065, 1.021140694618225, -0.4239732325077057, 0.1713642179965973, -1.6741896867752075, -0.041530758142471313, 0.48344138264656067, 0.331180214881897, -0.33085307478904724, 0.03912918642163277, 0.4545123279094696, -0.24725428223609924, -0.5471403002738953, -0.16926723718643188, -0.3238980770111084, -0.3628655970096588, -0.5787107348442078, -0.8156455755233765, 0.10060302168130875, -0.1225171834230423, 0.708730936050415, -0.16518259048461914, -0.9924581050872803, -0.12102866917848587, 0.4795481562614441, -0.4622722864151001, 1.0159865617752075, -0.5144180655479431, 0.4417477548122406, -0.027138765901327133, 0.02364754118025303, -0.14622259140014648, -0.16675874590873718, 0.3006170690059662, -0.03296886384487152, 0.30412158370018005, -0.3398270010948181, -0.1329679936170578, -0.44603997468948364, -1.0634087324142456, 0.07806043326854706, 0.21886536478996277, -0.32974711060523987, 0.06151226907968521, -0.9421772360801697, -0.9721459746360779, -0.5306875109672546, -0.18040968477725983, 0.5190033912658691, 0.1668255776166916, -0.31894734501838684, -0.14098721742630005, -1.0151668787002563, 0.6395937204360962, 0.1170126423239708, -0.15748964250087738, -0.22580507397651672, 1.3275666236877441, 1.7592430114746094, 0.671608567237854, 0.18354961276054382, -0.2499343603849411, 0.169184148311615, -1.0514997243881226, -0.5035713315010071, -0.6103329062461853, -0.3973672688007355, -0.19403167068958282], [0.8913699984550476, 1.7378484010696411, -2.3055267333984375, -0.7541120648384094, 0.7060104012489319, -0.18602517247200012, 1.349100112915039, -0.3970383107662201, -0.19346076250076294, -0.9383531212806702, -1.0003197193145752, -0.5026552081108093, 0.06803261488676071, 0.9337188601493835, 0.35512575507164, 0.5987035036087036, 1.2695376873016357, -0.1213163360953331, 0.13716639578342438, 0.521019697189331, 0.41854166984558105, -0.8378854990005493, 0.3463168144226074, 0.0784609392285347, 0.3153357207775116, 0.7909010052680969, -1.1547534465789795, -1.160088300704956, -0.9897585511207581, -0.7046907544136047, 1.1862223148345947, -0.6353041529655457, 0.09226186573505402, -0.6439980864524841, -1.2046138048171997, -1.5900847911834717, 1.425357699394226, 1.2139792442321777, 0.41745302081108093, 0.06838709115982056, 1.259320855140686, -0.7885478138923645, 0.2379438430070877, -1.6946916580200195, -0.9954556822776794, -0.22412286698818207, 0.6607784032821655, 0.09358394891023636, -0.3460289239883423, -0.8611909747123718, 0.8874953389167786, -0.5452931523323059, 0.6305255889892578, 1.1227517127990723, 0.9605259895324707, -0.9680730700492859, 0.016344327479600906, -0.6218119263648987, 0.18086479604244232, -0.0644194632768631, 1.386039137840271, 0.699296236038208, -0.55142742395401, 1.2531068325042725, 0.006143223028630018, -0.8580607175827026, 0.06615771353244781, 0.49365323781967163, 0.04904348403215408, 0.7438593506813049, -0.013345584273338318, 0.549801766872406, -0.19253499805927277, 0.3089815676212311, -1.1130740642547607, 0.17248770594596863, 0.8490884900093079, 0.9302887320518494, 0.334812730550766, 0.7701945304870605, 0.2658489942550659, 0.37084612250328064, 0.6266513466835022, -0.051463428884744644, 0.7371729612350464, -0.36589315533638, 0.40387916564941406, -0.15942052006721497, -0.42133307456970215, 1.466940999031067, 0.12377532571554184, -0.5160478353500366, 0.7088815569877625, 0.24750731885433197, -0.6860157251358032, -0.5758151412010193, 0.15425923466682434, 0.028941692784428596, -1.0712807178497314, 0.01770324632525444, -0.8709589242935181, -0.7615352272987366, -0.13367155194282532, 0.26384881138801575, -0.627188503742218, 1.2637583017349243, 0.5649892687797546, -0.3831440806388855, -0.3059323728084564, -0.1583789885044098, -0.10487698018550873, 0.7274715900421143, -1.4900693893432617, -1.002395749092102, -0.021867146715521812, 1.1120753288269043, 1.5394816398620605, -0.7578985095024109, 0.5367583632469177, 0.3543476462364197, -0.9895948171615601, -0.9907037615776062, -0.3796980679035187, 0.6172290444374084, 0.26886487007141113, 0.5298639535903931, -0.44655755162239075, -0.19901424646377563, 0.3387387990951538, -0.08768688142299652, 0.7983332276344299, 0.12428003549575806, -0.8580807447433472, 0.7475330829620361, -0.7621252536773682, 1.350935459136963, -0.5147169828414917, -0.8801290988922119, -0.15768858790397644, 0.28197216987609863, -0.06491564959287643, 0.26481199264526367, -0.5231205224990845, -0.7678371667861938, -0.1496831327676773, -0.27804815769195557, 0.0853482112288475, -0.19042731821537018, -0.765383780002594, 0.1743556410074234, -0.9437412619590759, 0.14255446195602417, 0.3790622353553772, 0.9246425628662109, 0.585536003112793, -0.5746858716011047, -0.562934160232544, -0.2944452166557312, 0.14676779508590698, 0.41513699293136597, 0.7196233868598938, -0.04341062903404236, -1.393489122390747, 1.2009319067001343, 0.20192310214042664, -0.9092013835906982, -0.001955387182533741, 1.3909872770309448, -0.5585278868675232, 0.41788366436958313, 0.2480548471212387, -0.984287440776825, -0.4718625545501709, 0.06032513082027435, 0.47324150800704956, -0.3380677402019501, 0.6499307751655579, -0.36874204874038696, -0.9705155491828918, -0.7886980772018433, 0.7174561619758606, -0.16492217779159546, 0.17580468952655792, 0.016223039478063583, -0.09588003903627396, -1.1651145219802856, 0.08745771646499634, -0.8092997670173645, -0.658206045627594, -0.2555049955844879, -1.0298823118209839, 0.04038205370306969, -0.17227108776569366, 0.41253623366355896, -0.6047770977020264, -1.1143232583999634, 0.27675798535346985, -0.9469994902610779, -0.1039169654250145, 0.10512898862361908, -0.07511366158723831, -0.36428359150886536, -1.3384984731674194, 0.10717035830020905, -0.12035264819860458, 0.7193917036056519, -1.2921006679534912, 0.770207405090332, -0.5927860140800476, -0.7457613945007324, 1.1666733026504517, 0.20144742727279663, -0.3599279522895813, 0.7405065298080444, 0.3251052796840668, -1.6449607610702515, -0.021220285445451736, 0.7790067791938782, -0.7014991044998169, -0.009496885351836681, 0.1659967303276062, -0.023958006873726845, 1.672978162765503, 0.4672296941280365, 0.7683281302452087, -0.2766222059726715, -0.3826819956302643, -0.4068097770214081, -0.7920375466346741, -0.32338204979896545, -0.1747092306613922, -1.2151618003845215, 0.2117040902376175, -0.08543073385953903, -0.9432520270347595, 0.4488680362701416, 0.18774265050888062, 0.20980463922023773, 0.3746863603591919, 0.7229803204536438, 0.2591606080532074, 0.7067131400108337, -0.7224551439285278, -0.211997389793396, -0.7352244853973389, -0.15666133165359497, 0.48957905173301697, -0.22642746567726135, 0.4867461919784546, 0.9981966614723206, 0.8530920743942261, -0.11704712361097336, -0.08540478348731995, -0.3690020442008972, 0.37538477778434753, -0.39769038558006287, -0.7631992101669312, -0.3635822534561157, -0.3860630989074707, 1.6274988651275635, 0.7882596254348755, -0.994354784488678, 0.4607807993888855, 0.0675194188952446, -0.13828182220458984, -0.15421690046787262, -0.8422175049781799, -0.35031065344810486, 0.2647970914840698, -0.14271238446235657, -0.10023718327283859, 0.20058561861515045, 0.21787302196025848, 0.5442959666252136, -0.46912336349487305, -0.7701863050460815, -0.41458311676979065, -0.029848521575331688, -0.37950050830841064, 1.065511703491211, 0.005510070361196995, -1.418949007987976, -0.6818097829818726, 0.2589391767978668, 0.525071382522583, -0.05481255427002907, -0.6109985709190369, 0.23502376675605774, 0.030100692063570023, -0.446687251329422, 0.568718433380127, 0.14085742831230164, -0.1580393761396408, 0.879850447177887, -0.11470922827720642, 0.49073144793510437, 0.8503913283348083, -0.5714831948280334, -0.48212140798568726, -0.6049574613571167, 1.208038091659546, 1.5614302158355713, 0.6399955153465271, 1.7863223552703857, 0.7146025896072388, -0.26957762241363525, -0.2798800468444824, -0.5066392421722412, -0.8197265863418579, -0.8857371211051941, -1.009718656539917, -0.6148656606674194, 0.5084603428840637, 0.7224730253219604, 0.5232752561569214, 0.5063661932945251, -0.14741374552249908, 0.5918586254119873, 1.271007776260376, 0.07666820287704468, -0.6240354180335999, 0.3978300988674164, -0.4943723678588867, -0.916944146156311, 0.3630312979221344, 0.9370750188827515, -1.2931941747665405, -0.43602287769317627, 0.4019140303134918, 0.02266061305999756, 0.4164589047431946, -0.5130179524421692, 0.5501143336296082, -1.5663458108901978, -1.0152854919433594, -0.453948438167572, 1.3870396614074707, -0.0017915188800543547, -0.5200271606445312, -0.031218716874718666, 0.4169663190841675, 0.8709995746612549, 0.6530522704124451, -0.5395250916481018, 0.9154775142669678, -1.238786220550537, -0.5276440978050232, -0.11407288163900375, 0.6811766028404236, 0.3741912841796875, -0.4606873393058777, -0.6544368863105774, -0.6518288254737854, -0.32595276832580566, 0.2770649790763855, 0.5684312582015991, -0.12743906676769257, 1.2408217191696167, 0.7427777051925659, -0.24235382676124573, 0.570228099822998, 0.2989856004714966, -0.23141752183437347, -1.3488614559173584, 0.4971219003200531, 0.32026419043540955, 1.091836929321289, 0.8897293210029602, -0.028963664546608925, -0.029059674590826035, -0.286973774433136, -0.019175661727786064, 0.25105541944503784, 1.1947767734527588, 0.48251092433929443, 0.06105252355337143, -0.7863543629646301, -0.47333192825317383, 0.17573761940002441, 0.04827194660902023, -0.3319362699985504, 0.7733578085899353, -0.6714543104171753, -0.7641770839691162, 0.7061965465545654, 0.08724724501371384, -0.17841275036334991, 0.04387335479259491, -0.10219649970531464, 0.39153626561164856, -0.6789893507957458, 0.012913629412651062, -0.4890577495098114, -0.18973146378993988, 0.48123642802238464, -0.5089981555938721, -0.4468183219432831, 0.5153235793113708, 0.6450312733650208, 0.7410792112350464, -0.8563901782035828, 0.46278852224349976, -0.6632112264633179, 0.9162367582321167, 0.13706155121326447, -0.2572477459907532, 0.151563361287117, 0.4799099862575531, -0.7289667725563049, 0.33890435099601746, 0.27274462580680847, 1.0833582878112793, -0.7489359974861145, 0.8753601908683777, 0.47205135226249695, -0.3732970952987671, 0.19513723254203796, 0.38592422008514404, -0.22993424534797668, 0.638239324092865, -0.1689947247505188, -0.03923961892724037, -0.08836168050765991, -0.1804850995540619, 0.6139649748802185, 0.7033701539039612, 0.24136534333229065, 0.9770304560661316, -0.22303688526153564, -1.4843803644180298, 0.3830033540725708, 0.6748286485671997, -0.007895240560173988, -0.5845018625259399, -0.2759828269481659, -0.019358772784471512, 0.06554754078388214, 0.9689454436302185, 0.152427539229393, 0.7965729236602783, 0.24335481226444244, -0.18341736495494843, 0.10324081778526306, 0.7247920632362366, 0.7057753801345825, 0.5546377897262573, -0.09807553887367249, -1.447099208831787, -0.7722687125205994, 0.5206040740013123, -0.3987002670764923, 0.5525725483894348, 0.29887092113494873, 0.2004896104335785, 1.2148003578186035, -1.2629188299179077, 0.46234142780303955, 0.6680520176887512, 0.1246630921959877, 0.647970974445343, 0.7730740308761597, -0.07374142110347748, -0.3341886103153229, 0.4832248091697693, 0.3595735728740692, -0.4307704567909241, -0.49425265192985535, -0.2763773202896118, -0.3648250102996826, 0.6396977305412292, -0.5738548636436462, 0.024096062406897545, -1.0017273426055908, -0.5295014977455139, 0.3205699026584625, -0.4379885196685791, 0.49707603454589844, 0.8117730617523193, 0.4155644476413727, 1.5972630977630615, 0.1601366251707077, -0.8872804641723633, -0.455457866191864, -0.6657041311264038, 0.9311821460723877, -0.833957314491272, -0.1756879836320877, -1.101116418838501, -0.5356668829917908, -0.16222819685935974, 0.8516557216644287, -0.4209659993648529, -0.2844267189502716, -0.3502655327320099, -0.8380461931228638, 0.7013880610466003, 0.910142183303833, 0.8962969183921814, 0.6758405566215515, 0.37478727102279663, -0.15352463722229004, 0.4273649752140045, -0.11495356261730194, -0.5398867130279541, 0.11622034013271332, -0.38275837898254395, -0.11494371294975281, -0.6652233600616455, -0.7232229113578796, 0.7358915209770203, 0.734248161315918, 0.44778844714164734, 0.3506163954734802, 0.36921122670173645, 1.0420838594436646, -0.2090648114681244, -0.39135172963142395, 0.03469313681125641, -0.5725078582763672, 0.8322287797927856, 0.32118743658065796, -0.11406350135803223, -0.2975514829158783, -0.10094214230775833, -1.4575694799423218, 0.3257657587528229, -0.3731728792190552, -1.1780362129211426, 0.9346336126327515, 0.6396148800849915, 0.2699906826019287, 0.5805137753486633, -0.24534165859222412, 0.19132304191589355, -0.09748221188783646, -0.44325023889541626, -0.9793424606323242, 0.46499326825141907, 0.4813758432865143, -0.31984853744506836, -0.41467994451522827, -0.1384110450744629, 0.3561270534992218, -0.07052313536405563, -0.46171072125434875, -0.23569989204406738, 0.5621100664138794, 0.6822329759597778, -0.44531142711639404, -0.7301889657974243, 0.6909453868865967, 0.19543172419071198, -0.04522079601883888, -0.18666468560695648, 0.730877161026001, 0.5635621547698975, 0.43798333406448364, 0.17517594993114471, -0.8503175377845764, -0.26739874482154846, -0.05868593975901604, -0.354198157787323, 0.945786714553833, 0.3974517583847046, 0.06533879041671753, -0.7832220196723938, -0.6287528276443481, 0.09607543051242828, -0.7076398134231567, 0.5834692120552063, 1.0171993970870972, -1.2232600450515747, 0.16562993824481964, 0.07649075984954834, -0.6907128095626831, 0.10264845937490463, -0.3498172163963318, -0.49741432070732117, -0.790151059627533, -0.985318660736084, -0.15569010376930237, 0.2799031436443329, 0.20468086004257202, -0.05573740974068642, 0.982772707939148, 0.7529550194740295, -1.0165101289749146, 0.1350286900997162, -0.011571228504180908, -0.8786577582359314, -0.1600421816110611, -1.1013938188552856, 0.8211843371391296, -0.3747549057006836, 0.6133813261985779, -0.36288437247276306, 1.0755324363708496, -1.5283653736114502, -0.7744671106338501, -1.156713604927063, 0.3762564957141876, 0.42208433151245117, 1.1567919254302979, -1.2947221994400024, 1.19792902469635, 0.45085465908050537, -0.5577513575553894, 0.191306471824646, -0.48145291209220886, -0.25323620438575745, 0.6512122750282288, 0.44371920824050903, 0.6928382515907288, 0.19187140464782715, 0.8160338997840881, 0.153778538107872, 0.9664729833602905, 0.30886322259902954, 1.3457996845245361, -0.9307011961936951, 0.01501499954611063, 0.4465496838092804, 0.9524150490760803, -0.6175209879875183, -0.5420951247215271, 0.06445128470659256, -0.429208368062973, -0.9230215549468994, 0.3623304069042206, 1.1738455295562744, -0.7216712832450867, 0.4074177145957947, -0.35842737555503845, 0.3399367332458496, -0.9489379525184631, 1.118515968322754, 0.0476544052362442, -0.4069465696811676, -0.29367971420288086, -0.12596012651920319, -0.4390687048435211, -1.434456467628479, 0.05808534845709801, 0.45259028673171997, -0.5523822903633118, -0.9484094381332397, 0.2994271516799927, 0.3228543698787689, 0.6134087443351746, -0.6458325982093811, 0.9082740545272827, 0.4861936867237091, -0.7724004983901978, -0.12557215988636017, 0.2474605292081833, 0.16382093727588654, 0.3031148314476013, -0.5293582081794739, -0.7161017656326294, -1.679877519607544, 1.172871470451355, 0.3982206881046295, 0.1957545280456543, -0.6716163754463196, 0.19442418217658997, -0.39079806208610535, 0.329924076795578, 1.3480204343795776, -1.145321011543274, -0.7236579060554504, 0.9114865660667419, 0.5104880928993225, -0.4622671604156494, 0.35176244378089905, 1.0680603981018066, 0.6065831184387207, -0.08658374100923538, 0.11145805567502975, 0.6107749342918396, -0.5968903303146362, 0.904288113117218, 0.20267491042613983, 0.25723156332969666, 0.030290931463241577, -0.3797614872455597, -1.6485092639923096, 0.14509359002113342, -0.611045777797699, -0.5335115194320679, 0.383465051651001, -1.140418291091919, -0.11191031336784363, 0.40748509764671326, 0.11749330163002014, 0.2003621608018875, -0.03812215104699135, 0.4484793245792389, -0.8003684282302856, 0.7141209244728088, 0.5841391086578369, 0.11170599609613419, 0.7590853571891785, -0.16503967344760895, -0.150737926363945, -1.4913231134414673, -0.1570160686969757, 0.45480579137802124, 0.5125664472579956, -0.4771724045276642, -0.1818920224905014, 0.8693300485610962, -0.4127328097820282, -0.08059894293546677, -0.19141831994056702, -0.9977365732192993, 0.16519273817539215, -0.6178665161132812, -0.8593533039093018, 0.49434125423431396, 0.14681139588356018, 1.0043948888778687, -0.6085758805274963, -1.3166842460632324, -1.0785294771194458, 0.7590958476066589, -0.42448845505714417, 1.1226938962936401, -0.25897687673568726, 1.0703709125518799, -0.04388560727238655, -0.047876276075839996, -0.29559728503227234, -0.2909562587738037, 0.6286367177963257, -0.12176871299743652, 0.2774636149406433, -0.019595906138420105, 0.26632386445999146, -0.34321868419647217, -0.6976439356803894, -0.026247022673487663, 0.11628513038158417, -0.4845993220806122, 0.03222104534506798, -0.6234474182128906, -0.9774419069290161, -0.8928912281990051, -0.17129185795783997, 1.3077657222747803, 0.34707605838775635, 0.12906785309314728, 0.034975823014974594, -1.3373180627822876, -0.01795428805053234, 0.40020260214805603, -0.886678159236908, -0.06633341312408447, 1.489339828491211, 1.3989914655685425, 0.44462835788726807, 0.2264980673789978, -0.11256567388772964, 0.8555609583854675, -0.731156587600708, 0.26789072155952454, -1.1883536577224731, -0.05011110380291939, -0.43024730682373047], [0.38617831468582153, 1.48563551902771, -2.437533378601074, -0.34590286016464233, 0.9808434844017029, 0.023377761244773865, 1.846603274345398, -0.6154314279556274, 0.4199925363063812, -0.5051085948944092, -0.5181677341461182, -0.8254944086074829, 0.04138365015387535, 0.7055740356445312, 0.19605578482151031, 0.5286830067634583, 1.384753704071045, -0.3806757926940918, 0.47467514872550964, 1.456534504890442, 0.5167080760002136, -0.49539750814437866, 0.05900140851736069, -0.16595377027988434, -0.1793506145477295, 0.0916009321808815, -1.2120301723480225, -0.8817811012268066, -0.9173277616500854, -0.46324706077575684, 0.5964342951774597, -0.9386832118034363, -0.2667962908744812, -0.348084956407547, -1.4167814254760742, -0.39364492893218994, 1.5788192749023438, 1.115721344947815, 0.5798823237419128, -0.20157518982887268, 1.8822492361068726, -0.5234207510948181, 0.5643120408058167, -1.537546157836914, 0.12043315172195435, -0.537926971912384, 0.5583755373954773, -0.789177656173706, -0.03140610456466675, -0.34554073214530945, 0.5040091872215271, -0.9666668176651001, 0.492995947599411, 0.8796382546424866, 0.8633916974067688, -0.26175639033317566, 0.5101714730262756, 0.20454426109790802, 0.2295796275138855, -0.9012109637260437, 1.304155707359314, 0.27137503027915955, -0.2093910425901413, 1.1527858972549438, -0.07590873539447784, -0.4523542821407318, -0.08253451436758041, 0.2304966151714325, -1.174681305885315, 0.5065271258354187, 0.1148173063993454, -0.04172405228018761, -0.6156381964683533, 0.24551023542881012, -1.0614315271377563, 0.835575520992279, 0.47929033637046814, 0.49084916710853577, 0.7339455485343933, 0.8197098970413208, -0.7185752987861633, -0.6087784767150879, 0.1748037189245224, -0.7014462947845459, 0.01059647835791111, 0.24460414052009583, 0.7010740637779236, -0.6089053153991699, -0.7510234117507935, 1.9173486232757568, 0.35121163725852966, 0.11448303610086441, 0.2811397910118103, 0.019602790474891663, -0.4523455798625946, -0.941430926322937, 0.9341944456100464, 0.18776829540729523, -1.2250508069992065, -0.30399850010871887, -1.3655320405960083, -0.9765754342079163, 0.05191933363676071, -0.026754140853881836, -0.10770289599895477, 1.0508031845092773, 0.617986261844635, -0.7553985118865967, -0.5639901161193848, -0.07351063936948776, -0.4633345305919647, -0.10372402518987656, -0.6691278219223022, -0.9907609820365906, -0.1168130561709404, 1.8779805898666382, 1.299603819847107, -0.2049073427915573, 0.2663704752922058, 0.7771225571632385, -0.19439885020256042, -0.5796508193016052, -0.5455191731452942, 0.6276376843452454, 0.4439205527305603, 0.3730281591415405, -0.5722305178642273, -0.30946752429008484, -0.27612796425819397, 0.30700060725212097, 0.7041693329811096, 0.3296336233615875, -0.18538540601730347, 1.009043574333191, -1.094872236251831, 1.4692668914794922, -0.9242660999298096, -0.2553626298904419, -0.4031372666358948, 0.00522086676210165, 0.6928163766860962, -0.0850568413734436, -0.4364303946495056, 0.06856989115476608, 0.4313875138759613, -0.6315233707427979, -0.0542399100959301, -0.23184122145175934, -0.7976127862930298, 0.4278038442134857, -1.130829930305481, 0.5452008843421936, 0.534246027469635, 0.6211087703704834, 0.34575173258781433, -0.22919844090938568, 0.06761251389980316, 0.2727018892765045, 0.4744742214679718, 0.08249235153198242, 1.1252833604812622, -0.18154677748680115, -0.9082026481628418, 1.182396411895752, 0.34078559279441833, 0.15411068499088287, -0.28605207800865173, 1.034732699394226, 0.4773235619068146, 1.0426284074783325, -0.43711167573928833, -0.7553830146789551, -0.10090954601764679, 0.22115816175937653, 0.2431911826133728, -0.46128368377685547, 1.2029961347579956, 0.010775575414299965, -1.6923508644104004, -0.9306754469871521, 0.46078842878341675, -0.6860076189041138, 0.3976761996746063, -0.19344420731067657, 0.7066640257835388, -0.4257509410381317, 0.8798708915710449, -0.3373226523399353, -0.4159725606441498, -0.5014632344245911, -0.9884420037269592, -0.25105154514312744, -0.4868205487728119, 0.35105255246162415, -0.4408798813819885, -0.8093105554580688, 0.48663654923439026, -1.3914296627044678, -0.2845930755138397, -0.15101191401481628, -0.49303120374679565, -0.2784130275249481, -0.9648770093917847, 0.4609927833080292, -0.6375251412391663, 1.0787817239761353, -1.3841910362243652, 1.0995121002197266, -0.38145703077316284, 0.14750880002975464, 1.0965808629989624, 0.10487987846136093, -0.6855744123458862, 0.8633438348770142, -0.3472152352333069, -1.2198371887207031, -0.025164218619465828, 0.37472182512283325, -0.4936450719833374, 0.37301456928253174, 0.1725267916917801, 0.15640409290790558, 0.7230570912361145, 0.19411465525627136, 0.6412382125854492, -0.3496626317501068, -0.9781731963157654, -0.5920968055725098, -0.8986081480979919, 0.5821306109428406, -0.3988072872161865, -0.5335614085197449, 0.37856051325798035, -0.06920439004898071, -1.072512149810791, -1.7210841178894043e-05, -0.2950846254825592, 0.6941792964935303, 0.383868545293808, 1.3803482055664062, 0.9501574039459229, 0.09652295708656311, 0.05214676633477211, -0.6310020685195923, -0.8417701125144958, 0.9662083983421326, 0.8436211943626404, -0.2053397297859192, -0.24061600863933563, 0.8130329251289368, 1.4425125122070312, -0.14762037992477417, 0.3771393895149231, 0.40115025639533997, -0.28423574566841125, -1.089234471321106, -0.4098004996776581, 0.6646834015846252, -0.4222484529018402, 1.382560133934021, 0.8585498332977295, -0.5633418560028076, -0.4261057674884796, -0.21950657665729523, -0.5822968482971191, -0.24201828241348267, -1.006330132484436, -0.3751603662967682, -0.29312169551849365, -0.030725345015525818, 0.11673489958047867, 0.4570985734462738, 0.2785445749759674, 0.5146393179893494, -0.07683751732110977, -0.9064144492149353, -0.3506612777709961, 0.2918896973133087, 0.1722971647977829, 1.015601396560669, -0.026907160878181458, -1.6975904703140259, -0.0009888315107673407, 0.13004599511623383, 0.7746536135673523, 0.4295509159564972, -0.3994118869304657, 0.1325792819261551, 0.04263812676072121, -0.24484284222126007, 0.4382924437522888, 0.1766224503517151, -0.13253453373908997, 0.20354413986206055, -0.6296511292457581, 0.8346594572067261, 1.145371913909912, -1.167689323425293, -0.7496680021286011, -0.3734170198440552, 0.2602887749671936, 1.6039748191833496, 0.5239627361297607, 0.9435205459594727, 0.2685442566871643, -0.3520587980747223, -0.3043820559978485, -0.032022424042224884, -1.1010643243789673, -0.6249038577079773, -0.3252545893192291, -1.0561001300811768, -0.2242731899023056, -0.24672900140285492, 0.0694139152765274, 0.6030623316764832, -0.38073259592056274, 0.4390539526939392, 1.5146043300628662, -0.3958836495876312, -0.34644678235054016, 0.2504054307937622, 0.17365646362304688, -0.6997710466384888, 0.05707278102636337, 1.1505955457687378, -1.022451400756836, -0.7154358625411987, -0.31516557931900024, 0.5829870104789734, 0.5297279357910156, -0.11757608503103256, 0.5640925168991089, -1.859628677368164, -0.670680582523346, -0.3659370541572571, 1.3258405923843384, -0.5094713568687439, -0.15764164924621582, -0.3392273485660553, 0.13957074284553528, 0.9199427962303162, -0.3672716021537781, -0.5455644726753235, 0.8690212368965149, -0.48903268575668335, -0.7219529747962952, -0.1322767436504364, 0.5144235491752625, 0.7715868949890137, -0.3848249316215515, -0.4596341550350189, -0.7316585183143616, -0.5766631960868835, -0.3073839843273163, 0.46572479605674744, -0.2220887541770935, 0.5466582775115967, 0.17346477508544922, 0.3548968434333801, 0.6714382171630859, 0.6843281388282776, -0.4059765040874481, -0.9524338245391846, 0.07794854044914246, 0.8307563662528992, 1.1566035747528076, 0.2149200737476349, 0.3550342619419098, 0.7045952677726746, 0.10568004101514816, 1.112725019454956, 0.5534102320671082, 1.154318928718567, -0.28573355078697205, -0.22042635083198547, -0.7687734961509705, -0.25582191348075867, 0.05277499556541443, -0.14063064754009247, -0.18879255652427673, 0.16034245491027832, -0.9535959959030151, -0.9015564322471619, 0.9581417441368103, 0.7575202584266663, -0.23474520444869995, -0.5107262134552002, 0.5079891085624695, 0.1755456179380417, -0.08699148148298264, 0.38874751329421997, -0.5309665203094482, -0.05642811954021454, -0.015923356637358665, -1.2148417234420776, -0.35372889041900635, 0.686254620552063, 0.6928856372833252, 0.8094851970672607, -0.5614439845085144, 0.7820767760276794, -1.0673694610595703, 0.5867405533790588, 0.6364836096763611, -0.503552258014679, 0.25023382902145386, -0.05401746556162834, -0.5698136687278748, -0.17637062072753906, -0.1087222769856453, 0.9849066138267517, -0.9322993755340576, -0.09557217359542847, 0.2853280007839203, -0.4586007297039032, -0.22228780388832092, -0.5139912366867065, -0.298705518245697, 0.2616112530231476, -0.3347112834453583, 0.5358377695083618, 0.29094699025154114, -0.26927071809768677, 1.5329515933990479, 0.4226081371307373, 0.012576214969158173, 0.7094882726669312, 0.7338969707489014, -1.2693860530853271, 0.09777689725160599, 0.220565527677536, -0.1889936923980713, -0.885262131690979, -0.21361544728279114, 0.48004350066185, -0.6600780487060547, 0.5961093306541443, 0.21815374493598938, 0.48200738430023193, 0.31496796011924744, 0.13068798184394836, 0.3163221478462219, 0.8033883571624756, 1.1085835695266724, 0.9121147394180298, 0.14035092294216156, -0.8080419898033142, -0.3973745107650757, 0.13049061596393585, -1.4077552556991577, 0.3625073730945587, 0.7753920555114746, 0.3599702715873718, 1.3112843036651611, -1.4674456119537354, -0.5032567381858826, 0.5726309418678284, 0.29668113589286804, 0.8224745988845825, 0.9562662839889526, -0.6366238594055176, 0.15565472841262817, 0.5693874359130859, 0.07234436273574829, -0.6319422125816345, 0.4052915871143341, -0.20090055465698242, -0.7365095615386963, 0.2569323480129242, -0.9470497369766235, 0.5945621132850647, -0.025632474571466446, -0.6239302158355713, -0.14592081308364868, -0.9482000470161438, 0.16389359533786774, 0.31878483295440674, 0.5038381814956665, 2.026522397994995, -0.528113842010498, -0.9736077785491943, -0.007701309397816658, -1.0096204280853271, 0.25777485966682434, -0.5906752347946167, -0.43192389607429504, -0.729729413986206, 0.08311256021261215, -0.440502792596817, 0.8347567915916443, -0.22384367883205414, -0.5428155064582825, -0.5505965352058411, -1.196987509727478, 0.3520931303501129, 1.5522935390472412, 1.2244997024536133, 0.3169459104537964, -0.251657098531723, 0.45997175574302673, 0.28723177313804626, -0.8396236300468445, -0.35922059416770935, 0.23015232384204865, 0.13260596990585327, -0.00546632707118988, -1.1659839153289795, -0.7092186212539673, 0.5900591015815735, 0.40099769830703735, -0.16675949096679688, 0.9217649102210999, 1.3044192790985107, 0.9183385968208313, -0.4236249625682831, -0.3818928301334381, 0.38567695021629333, -0.6199917793273926, 0.4509182870388031, 0.8333762288093567, 0.022208325564861298, -1.1452006101608276, -0.6633715033531189, -0.9436110854148865, 0.5263415575027466, -0.23912300169467926, -0.9099996089935303, 1.466617465019226, 0.19942152500152588, 1.0638147592544556, 0.05837385728955269, -0.4470594823360443, 0.41922464966773987, -0.04147526994347572, 0.0033373553305864334, -1.144217610359192, 0.46715807914733887, 0.03347208723425865, -0.28328147530555725, -0.16584423184394836, 0.3510565161705017, 0.2628248929977417, 0.13969938457012177, 0.22179217636585236, 0.17067986726760864, 0.3970376253128052, -0.0683380737900734, -0.08143221586942673, -0.7843679189682007, 0.4212404191493988, -0.6411397457122803, -0.6207751035690308, 0.44619107246398926, 0.49316340684890747, 0.6638614535331726, -0.15958906710147858, -0.4260590970516205, -0.3960783779621124, -0.4363689720630646, -0.26089996099472046, 0.03443211689591408, 0.5612810850143433, 0.09753178805112839, 0.31714364886283875, -0.6410512924194336, -0.8868372440338135, -0.32851359248161316, -0.36098065972328186, 0.3814801573753357, 0.4893004298210144, -0.7761828899383545, 0.8267933130264282, 0.3757534921169281, -1.346042275428772, 0.34510043263435364, -0.5482414364814758, 0.28328055143356323, -0.94826740026474, -0.8232879042625427, -0.6421098113059998, 0.319399356842041, 0.40683430433273315, -0.5500730276107788, 1.2106685638427734, 0.851676344871521, -1.072363257408142, 0.4286487400531769, 0.056321822106838226, -0.6675920486450195, -0.15703117847442627, -0.8666642904281616, 0.6553717255592346, -0.03264366462826729, 0.6371857523918152, -0.5150893330574036, 1.7708638906478882, -1.5657718181610107, -1.1351090669631958, -1.1012966632843018, -0.48129716515541077, 1.348645567893982, 0.6740400791168213, -0.5417579412460327, 1.55141019821167, 0.4332934319972992, -0.37092724442481995, -0.19848394393920898, -0.19809603691101074, -0.4486660063266754, 0.11214735358953476, 0.4157518148422241, 0.755413293838501, 0.265652596950531, 0.8400713205337524, 0.15031707286834717, 0.8551929593086243, 0.3536970019340515, 1.1520421504974365, -0.7377668619155884, -0.4962274134159088, 0.67662513256073, 1.141656517982483, -0.8883094787597656, -1.3509119749069214, 0.07962431013584137, -0.5855759382247925, -0.7504224181175232, 0.010997457429766655, 0.5261212587356567, -0.27747124433517456, 0.29550373554229736, -0.5349626541137695, 0.39041557908058167, -0.5538346767425537, 0.2834344506263733, 0.3787389397621155, -0.5692672729492188, -0.9326086640357971, 0.4352043569087982, 0.019813179969787598, -2.0400590896606445, -0.19476871192455292, 0.2217884063720703, 0.2748597264289856, -0.9631636142730713, 0.723273754119873, 0.26465022563934326, 0.24796591699123383, -0.928719162940979, 1.831276774406433, 0.648521363735199, -0.6013936996459961, -0.09895090758800507, 0.4770621657371521, 0.3238699734210968, -0.028314605355262756, -1.0844281911849976, -0.610683023929596, -0.5302436947822571, 1.0866484642028809, 0.6686657071113586, 0.5781750679016113, -0.11200615763664246, 0.056450147181749344, 0.14151129126548767, -0.050536610186100006, 0.8884975910186768, -1.0295586585998535, -0.10073478519916534, 0.802046537399292, 0.25991296768188477, 0.09336449950933456, 0.11426091194152832, 0.8044854998588562, 0.5356305837631226, -1.1193467378616333, 0.21267719566822052, 0.22531747817993164, -0.7165660262107849, 0.7224134206771851, 0.22229596972465515, -0.38044148683547974, 0.13116604089736938, -0.3000544309616089, -1.106665849685669, 0.19378933310508728, -0.6328067779541016, -0.8087222576141357, 0.49216559529304504, -0.9703896045684814, -0.6124650835990906, 0.26234447956085205, 0.07306740432977676, 0.13408440351486206, -0.6823686361312866, 0.842372715473175, -0.1427888125181198, 0.09220343083143234, 1.0900667905807495, -0.008123229257762432, 1.6002135276794434, -0.49128836393356323, 0.3426190912723541, -1.6138867139816284, 0.27150505781173706, 0.35380280017852783, 0.24619849026203156, -0.22762037813663483, -0.20138025283813477, 0.4722098112106323, -0.051791712641716, -0.5892987251281738, -0.378377765417099, 0.1150154247879982, 0.12297994643449783, -0.030373353511095047, -1.2987785339355469, -0.08718402683734894, 0.26320067048072815, 0.9234421849250793, -0.020569531247019768, -0.6684070229530334, -0.9155912399291992, 0.23569168150424957, -0.6831536889076233, 0.6396180391311646, -0.6399670243263245, 0.41012704372406006, 0.6320397853851318, -0.4942606985569, -0.7826765179634094, -0.595834493637085, 0.9819990992546082, 0.18983829021453857, 0.1381787359714508, -0.4508000612258911, -0.12865839898586273, -0.08821304142475128, -0.915049135684967, 0.5985240936279297, 0.5098671913146973, -0.5325279831886292, 0.4960523247718811, -1.5376607179641724, -0.5186719298362732, -0.6442906856536865, -0.12966659665107727, 0.940662682056427, -0.1260342001914978, -0.155926913022995, 0.14745785295963287, -1.0728716850280762, 0.24088382720947266, 0.5831632018089294, -0.6602495312690735, 0.20057417452335358, 1.5183035135269165, 2.2311904430389404, 0.4484383165836334, -0.1595427244901657, -0.57815021276474, 0.29628780484199524, -0.8730894327163696, -0.1721130758523941, -0.8406224846839905, -0.7067888379096985, -0.4219820201396942], [0.7998701333999634, 1.7986658811569214, -2.743407726287842, -0.24230735003948212, 0.9534332752227783, 0.24091725051403046, 1.7064011096954346, -0.3409430682659149, 0.05650847777724266, -0.25539323687553406, 0.1227121502161026, 0.06601251661777496, 1.7660269737243652, 0.9851018786430359, 0.25398603081703186, 0.566478967666626, -0.02257576957345009, -0.7657016515731812, 0.3503440022468567, 0.8212364315986633, 0.510863721370697, 0.051796335726976395, 0.38390710949897766, 0.036433953791856766, -0.3446310758590698, 1.0381295680999756, -1.6083498001098633, -0.9339393377304077, -0.7395435571670532, -1.0210754871368408, 1.17326021194458, 0.20619851350784302, -0.5570310354232788, 0.3140009343624115, -1.6404377222061157, -0.0017782773356884718, 1.6318349838256836, 0.44743478298187256, 0.65504390001297, 0.5105332136154175, 1.6541506052017212, -0.20376260578632355, 0.42711949348449707, -0.4106318950653076, 0.004043250344693661, 0.020591462031006813, 0.5837726593017578, -0.14590799808502197, 0.2125484049320221, -0.282539039850235, 0.211678147315979, -0.5968566536903381, 0.10885286331176758, 1.2681818008422852, 0.9104905724525452, 0.48258736729621887, -0.04141993820667267, -0.4261474609375, 0.6592069268226624, -1.011250376701355, 1.3551536798477173, 0.2725311815738678, -0.10481879115104675, 0.8608505725860596, 0.3570690453052521, -0.5751456618309021, 0.4860825836658478, 0.40973031520843506, -0.024246834218502045, -0.1700390875339508, 0.5473964214324951, -0.049094002693891525, -1.1821694374084473, 0.03818976506590843, -0.8408995866775513, 0.5394043922424316, 0.5230528116226196, 0.5906153917312622, 0.34985798597335815, 1.0817251205444336, -0.1167793869972229, 0.2095521092414856, 0.056544117629528046, -0.29499372839927673, 0.7007165551185608, 0.2942960858345032, -0.021724870428442955, -0.8813791871070862, -1.0913962125778198, 1.601536750793457, 0.7676013112068176, -0.05828769877552986, 0.4191523790359497, -0.547633707523346, -0.8346008658409119, -1.374326229095459, -0.0028020236641168594, -0.6715551018714905, -0.9248345494270325, -0.7779697775840759, -0.9293174147605896, -0.20806784927845, 0.2491936832666397, -0.12681140005588531, 0.15695936977863312, 1.3780434131622314, -0.17387820780277252, -0.3876855671405792, -0.4529622197151184, -0.07170937210321426, -0.5099340677261353, -0.21956028044223785, -0.9177122712135315, -1.2478257417678833, -0.5004096031188965, 0.991168200969696, 1.2060612440109253, -0.1290816068649292, 0.39464330673217773, 0.5445940494537354, -0.6042179465293884, -0.16939744353294373, -0.35758382081985474, -0.08743877708911896, 0.31065282225608826, 0.8172101378440857, -0.4389847218990326, -0.27537962794303894, 0.14972834289073944, -0.2159125804901123, 0.8320485353469849, 0.18148474395275116, -0.7559400796890259, 0.9467660188674927, -0.2174631953239441, 1.6809169054031372, -0.8788813352584839, -0.1794176697731018, 0.054116811603307724, 0.23792825639247894, 0.3887081444263458, -0.10241900384426117, 0.0952918529510498, 0.3117222785949707, -0.41873398423194885, 0.33542895317077637, 0.33983030915260315, -0.6028457283973694, -0.2340831309556961, 0.056948527693748474, -1.0213828086853027, 0.38680732250213623, -0.07120159268379211, 0.5099081993103027, 0.31437572836875916, 0.1656261682510376, 0.5225070714950562, -0.16450950503349304, 0.6792722344398499, 0.43173953890800476, 0.40787893533706665, 0.044791195541620255, -0.8754953742027283, 0.9365984201431274, 0.10737583041191101, -0.4999462366104126, 0.43434467911720276, 0.3894805610179901, -0.8592984080314636, 0.7943141460418701, -0.6147679090499878, -0.634635865688324, -0.3060877025127411, 0.020869864150881767, -0.3995265066623688, -0.1768311709165573, 1.9239413738250732, -0.6791166067123413, -1.0762625932693481, -1.8532230854034424, 0.6517337560653687, -0.599609911441803, 0.2868506610393524, 0.44777044653892517, 1.0882118940353394, -0.5714032649993896, 0.2170082926750183, 0.23312881588935852, -0.6643626093864441, -0.9263960719108582, -0.8288955092430115, -0.6793582439422607, -0.4509597420692444, 0.8791781067848206, -0.6444188952445984, -0.6276821494102478, 1.3118326663970947, -1.8221243619918823, -0.07634539902210236, -0.2306782752275467, 0.020239681005477905, -0.18368835747241974, -1.1775377988815308, 0.14111900329589844, -0.2262841910123825, 1.0462316274642944, -0.8387264609336853, 0.6273966431617737, -0.7820100784301758, -0.02981686405837536, 1.3951977491378784, 0.00447919312864542, -0.8035318851470947, 0.8087434768676758, -0.03326813504099846, -1.8942389488220215, 0.3053043782711029, 0.42697224020957947, -0.3184052109718323, -0.012813802808523178, 0.0846644714474678, -0.23498088121414185, -0.31169164180755615, 0.7121758460998535, 0.7557374238967896, -0.3880349397659302, -0.15967978537082672, -0.8491629958152771, -0.8016102313995361, 0.46068474650382996, -1.1300511360168457, -0.8204930424690247, 0.5002448558807373, -0.13748204708099365, -0.6386234760284424, 0.10507150739431381, 0.015206604264676571, 0.47253626585006714, 0.3879885673522949, 1.2676148414611816, 0.5348492860794067, 0.18326200544834137, -0.6622141003608704, -0.14961937069892883, -0.5545752048492432, -0.43527671694755554, 1.1646960973739624, -0.3242834210395813, -0.5406484007835388, 1.5234116315841675, 1.0980184078216553, 0.041977740824222565, 0.90468829870224, 0.14430952072143555, 0.5173866748809814, -0.6639602184295654, -0.4668736755847931, 0.1394481062889099, -0.2695522606372833, 0.8163546323776245, 1.0183833837509155, -0.8304077386856079, -0.09107028692960739, -0.3567734956741333, -0.6724267601966858, -0.7281071543693542, -0.610942542552948, -0.37584900856018066, -0.4410459101200104, 0.02061467431485653, 0.0022417083382606506, 0.3614308834075928, -0.9819027781486511, 0.6852307319641113, -0.727279007434845, -0.3244680166244507, -0.2518666684627533, 0.059133853763341904, 0.5239742398262024, 0.23752209544181824, 0.002585143782198429, -1.1881579160690308, -0.8039926290512085, 0.29315993189811707, 1.1887434720993042, 0.44502460956573486, 0.01493292860686779, 0.46272093057632446, 0.3114403784275055, -0.09598114341497421, 0.33449625968933105, -0.0063146683387458324, -0.12876367568969727, -0.07508879899978638, 0.08862382173538208, 0.8824001550674438, 1.0886837244033813, -0.6285104751586914, -0.7987892031669617, -0.5319778323173523, 0.5243653059005737, 1.0351027250289917, 1.1582437753677368, 1.0864508152008057, -0.12994173169136047, 0.35908228158950806, -0.5837275385856628, -0.030158277601003647, -0.3936030864715576, -0.6935646533966064, -0.3151787519454956, -0.5202456116676331, -0.3025958836078644, -0.04802614450454712, 0.11393860727548599, 0.1736019104719162, -0.2651349604129791, 0.6317731142044067, 1.395131230354309, -0.3639748692512512, -0.8321073651313782, -0.7451940178871155, -0.12751281261444092, -0.7007027268409729, 0.22795559465885162, 0.4805009961128235, -0.7272565960884094, -0.5925469994544983, -0.049493346363306046, 0.534436047077179, 0.968885600566864, -0.32832300662994385, 0.30274271965026855, -1.5537117719650269, -0.20824246108531952, -0.2723073661327362, 0.9001396894454956, -0.004229946993291378, -0.008318296633660793, -0.1566706895828247, -0.4386684000492096, 1.0625087022781372, 0.15017732977867126, -0.7930523753166199, 0.5018211007118225, -0.07756620645523071, -0.9429003000259399, -0.2686273455619812, 0.27889591455459595, 1.0236083269119263, -0.47061705589294434, -0.305306613445282, -0.16423623263835907, -0.1372995227575302, -0.016755491495132446, 0.5459805130958557, -0.0987541526556015, 0.8317604660987854, -0.059271179139614105, -0.7908069491386414, 0.5163245797157288, 0.12327511608600616, -0.10672162473201752, -0.76873779296875, 0.31156736612319946, 0.8257635235786438, 0.940621554851532, 0.6307348012924194, 0.6934441328048706, 0.7546018958091736, -0.23294535279273987, -0.5857431888580322, 0.7330621480941772, 1.020749807357788, 0.4024950861930847, -0.04893902689218521, -0.1633274108171463, 0.42146655917167664, -0.15269729495048523, -0.531572699546814, 0.16779182851314545, 0.23634107410907745, -0.24696044623851776, -0.718756914138794, 0.4645726680755615, 0.6130914688110352, -0.16917315125465393, -0.6508974432945251, 0.21582461893558502, 0.7630685567855835, 0.05347045511007309, 0.0674886479973793, -0.4242912232875824, -0.03875931724905968, -0.38090601563453674, -1.1500097513198853, 0.27184465527534485, 0.8997752070426941, -0.2759530544281006, 0.9013567566871643, -0.5948525071144104, -0.3224104046821594, -0.6321043372154236, 0.41758525371551514, 0.5415975451469421, -0.18818168342113495, 0.5912284255027771, 0.08834318816661835, -0.1969461739063263, -0.27969294786453247, 0.26449525356292725, 1.0352028608322144, -0.7396438717842102, -0.2301207184791565, 0.5037351846694946, 0.03782273083925247, 0.4013119339942932, -0.8775623440742493, -0.6951342821121216, -0.030570680275559425, -0.6461881399154663, 0.3403726816177368, -0.002258762251585722, 0.2084498554468155, 0.8480995893478394, 0.8716696500778198, -0.1414971798658371, 0.5047438144683838, -0.6499055027961731, -0.7164623141288757, 0.15128189325332642, 0.652756929397583, -0.17777694761753082, -0.3455227017402649, -0.7014653086662292, 0.28220391273498535, 0.2953612804412842, 1.1793255805969238, 0.08004332333803177, 1.1348503828048706, 1.0043857097625732, -0.26450982689857483, -0.5260048508644104, 0.5699000954627991, 1.5856760740280151, 1.5191630125045776, 0.25073373317718506, -0.5179501175880432, -0.6384169459342957, 0.7019636631011963, -0.5445066690444946, 0.6783753037452698, 1.2213002443313599, -0.27851295471191406, 1.610228180885315, -1.3369264602661133, -0.30510029196739197, 0.9806814789772034, 0.9302427768707275, 0.8766884207725525, 0.01875940151512623, 0.1674046665430069, -0.2943591773509979, 0.34071311354637146, 0.26332616806030273, -0.2681907117366791, 0.33835068345069885, 0.014780059456825256, -0.37031129002571106, 0.6985533237457275, -1.318082571029663, 0.4798167943954468, -0.7292213439941406, -0.0741933062672615, -0.30734071135520935, -0.5704063773155212, 0.03930249810218811, 0.5740531086921692, 0.1760101467370987, 1.0568443536758423, -0.10343775898218155, -1.7966673374176025, -0.027310334146022797, -0.7854881882667542, 0.14061489701271057, -0.03476559370756149, -0.4904209077358246, -0.6667832136154175, -0.5490939021110535, -0.39256078004837036, 0.31637895107269287, -0.07655581831932068, 0.15543723106384277, -0.29856353998184204, -1.7185924053192139, -0.5616719126701355, 0.9666920304298401, 1.282284140586853, 0.7368438839912415, 0.018383368849754333, -0.34706154465675354, 0.38032248616218567, -1.1114643812179565, -0.4323577284812927, 0.449867844581604, -0.02890353463590145, 0.30097517371177673, -1.1292787790298462, -0.6220539212226868, 0.6912280321121216, 0.042534880340099335, 0.19847986102104187, 0.9689904451370239, 1.0191305875778198, 1.31111478805542, -0.7340764403343201, -0.9018258452415466, 0.12806732952594757, -0.6311502456665039, 0.44823944568634033, 0.792314887046814, -0.558223307132721, -0.4440614581108093, -0.845036506652832, -1.1580349206924438, 1.0418341159820557, -0.5651825666427612, -1.1418452262878418, 1.1898013353347778, 0.8037095069885254, 0.47418928146362305, 0.42193880677223206, -0.884714663028717, -0.09911049902439117, 0.7203643321990967, 0.09571518003940582, -0.7880941033363342, 0.3064960241317749, 0.6401360630989075, 0.010837347246706486, -0.3704812824726105, 0.1518685519695282, -0.30040594935417175, -0.26249685883522034, 0.5355527997016907, 0.3355221748352051, -0.04833042249083519, 0.9467447400093079, 0.9115912914276123, -0.8137122988700867, 0.12408645451068878, -0.6744290590286255, -0.06819991767406464, -0.37935319542884827, 0.19306160509586334, -0.03159530460834503, 0.23123297095298767, -0.1236853152513504, -0.5583124160766602, -0.5096368193626404, -0.5287874341011047, -0.05493750795722008, 1.5192580223083496, -0.29662463068962097, 0.3959203064441681, -0.7188582420349121, -0.21614040434360504, -0.22380192577838898, -0.09749098122119904, 0.5124212503433228, 1.1715309619903564, -1.4696823358535767, 0.2520197927951813, 0.5490394234657288, -0.6999961137771606, 0.19280318915843964, -0.2763189375400543, -0.15849743783473969, -1.4333668947219849, -1.3426519632339478, -0.4592670202255249, -0.01014222577214241, 0.9061001539230347, -0.28998011350631714, 0.5767534971237183, -0.07574362307786942, -1.836490511894226, 0.7812434434890747, 0.45082396268844604, -1.3732796907424927, -0.5368853211402893, -1.664038896560669, 0.7151618003845215, -0.9243975281715393, -0.6031238436698914, 0.02352367714047432, 0.9574592113494873, -1.5541036128997803, -0.8855659365653992, -1.2618412971496582, 0.060907330363988876, 1.6114776134490967, 1.5571725368499756, -1.813278079032898, 1.3928160667419434, 0.07779978215694427, -0.8093145489692688, -0.11113256216049194, 0.8734574317932129, -1.0101747512817383, -0.24959801137447357, 0.43612995743751526, 0.24417001008987427, -0.1437021791934967, 0.9480010271072388, -0.2512684464454651, 1.3789770603179932, 0.3688226044178009, 1.0474077463150024, -0.9583378434181213, -0.5369808673858643, -0.09803435951471329, 1.1813302040100098, -1.1646639108657837, -0.4390714764595032, -0.2590496838092804, -0.7953241467475891, -1.2816765308380127, 0.31859341263771057, -0.24509499967098236, -1.1637004613876343, 0.49416303634643555, -0.8825221657752991, 0.8265672922134399, -0.5753212571144104, 0.34758836030960083, -0.4444618225097656, -0.27434900403022766, -0.30906006693840027, 0.18801170587539673, -0.054111238569021225, -1.1308852434158325, -0.2266910821199417, 0.43459561467170715, -0.31432363390922546, -0.6469797492027283, 0.5277359485626221, 0.869256854057312, -0.2892254889011383, -0.9280980229377747, 1.2603981494903564, 1.1448843479156494, 0.42058199644088745, -0.4669809639453888, 0.480953186750412, 0.191341370344162, 0.5040805339813232, -0.5418692231178284, -0.3933199942111969, -0.2896936535835266, 0.5350598096847534, 0.3515099883079529, 0.6278715133666992, -0.12975916266441345, 0.22878700494766235, -0.5182243585586548, 0.7885328531265259, 0.4398966431617737, -0.6108158230781555, -0.44805875420570374, 1.1564476490020752, 0.4802716374397278, 0.21777507662773132, -0.0822344645857811, 0.8373404145240784, 0.5005601644515991, -0.48884955048561096, 0.14580410718917847, 0.4537462890148163, -0.7703120112419128, 0.7000391483306885, 0.2704766094684601, 0.6137365698814392, 0.010862989351153374, -0.5444737076759338, -0.9562037587165833, -0.9113837480545044, -0.30367904901504517, -0.7003291845321655, 0.23422406613826752, -1.3096604347229004, -0.7034512758255005, -0.029788436368107796, 0.04003360867500305, 0.26324543356895447, 0.4984726905822754, -0.3516036868095398, -0.35833314061164856, -0.41728076338768005, 0.8728955388069153, -0.30609917640686035, 0.32849249243736267, -0.13762593269348145, -0.5803995728492737, -0.3893751800060272, -0.20771630108356476, -0.11844310164451599, 0.3178749680519104, -0.5327504277229309, -0.6886278390884399, 0.07858913391828537, -0.5327871441841125, -1.0835903882980347, -0.14931242167949677, 0.35516664385795593, 0.2389475256204605, -0.1237703338265419, -1.4278604984283447, 0.5384157299995422, 1.1796013116836548, -0.36544016003608704, -0.6369223594665527, -0.7735869884490967, -1.089131474494934, 0.7681206464767456, -0.3420078754425049, 0.7301173806190491, -0.884426474571228, 0.5834882855415344, 0.9790217280387878, -0.6502793431282043, -0.08259985595941544, -0.511810839176178, 0.8302934169769287, -0.13625216484069824, 0.6118712425231934, 0.018010681495070457, 0.6619779467582703, -0.6160621643066406, -1.1361007690429688, -0.1694633811712265, 0.5526328086853027, -0.0252202358096838, 0.625722348690033, -1.196022391319275, -0.9785856604576111, -0.0706099420785904, 0.746983528137207, 0.45547178387641907, 0.11621531844139099, -0.20700013637542725, -0.3245905339717865, -1.0166895389556885, -0.1292269378900528, 0.06612692773342133, -0.07393155992031097, 0.04441018030047417, 1.706327199935913, 1.6128101348876953, 0.17363721132278442, -0.2644115090370178, -0.2499338835477829, 0.8011996150016785, -1.2361934185028076, -0.09528457373380661, -0.45639681816101074, -0.1946360319852829, 0.4231894910335541], [0.17974981665611267, 2.5534701347351074, -2.851006507873535, 0.22735512256622314, 1.4354698657989502, 0.6204962730407715, 1.16908597946167, -0.1265755593776703, 0.40156787633895874, -0.6621720194816589, -0.30006924271583557, 0.25640979409217834, 1.09389066696167, 1.0969064235687256, 0.37333908677101135, 0.57274329662323, 0.3967881202697754, -0.8560584783554077, 0.3776210844516754, 0.7194836139678955, 0.32699108123779297, -0.31736642122268677, 0.3141865134239197, 0.1334676891565323, -0.6987326741218567, 0.5786443948745728, -0.9320130944252014, -0.47155946493148804, -0.5391885638237, -0.9937498569488525, 2.08219575881958, -0.6048064827919006, -0.3038909137248993, 0.5064741373062134, -1.9676673412322998, -0.6760667562484741, 1.4369235038757324, 0.4088168144226074, 0.6115415692329407, 0.389845609664917, 1.2942965030670166, -0.26454469561576843, 0.6428079009056091, -0.8779078125953674, -0.33837252855300903, 0.3685864806175232, 0.970349133014679, -0.6273768544197083, 0.3515613079071045, -0.6802532076835632, 0.5876399278640747, -0.15680527687072754, 0.3116009831428528, 1.3037492036819458, 0.919120192527771, 0.003486890345811844, 1.082369089126587, -0.34924083948135376, 0.15192903578281403, -0.290316641330719, 1.1151564121246338, -0.28776830434799194, 0.44957131147384644, 0.10694772005081177, 0.3177274465560913, -0.26969295740127563, 0.21227680146694183, 0.36721643805503845, 0.5644056797027588, 0.17406779527664185, 0.6374768018722534, -0.17508795857429504, -0.9958392381668091, -0.11505824327468872, -0.7740058302879333, 0.7240562438964844, 0.8064152002334595, 0.5958976149559021, 0.1860874891281128, 0.7908660769462585, -0.7362762093544006, -0.02845907211303711, 0.2558225095272064, -0.4142008125782013, 0.7941757440567017, 0.5459257364273071, 0.16844013333320618, -1.3063970804214478, -0.6965376138687134, 1.6308636665344238, 0.8806555271148682, -0.035687122493982315, 0.022178124636411667, -0.3332268297672272, -0.6049376130104065, -1.2992008924484253, 0.25516119599342346, -0.5713396668434143, -0.704277515411377, -0.5883870720863342, -0.767937421798706, -0.13803938031196594, 0.24351748824119568, 0.009110960178077221, 0.19982050359249115, 1.2901129722595215, 0.3544773757457733, -0.4095563590526581, -0.7268736362457275, 0.3791574239730835, -0.07302187383174896, 0.1902206987142563, -0.6807429790496826, -1.3845360279083252, -0.8241376876831055, 0.8006969690322876, 1.277933120727539, 0.3651743531227112, 0.7990747690200806, 0.6458405256271362, -0.4935935139656067, 0.012351732701063156, -0.33754414319992065, 0.37467944622039795, 0.6393247842788696, 0.9482293128967285, -0.4624934792518616, -0.4290986657142639, 0.34407979249954224, -0.18651938438415527, 0.3354337811470032, -0.243070587515831, -0.050154224038124084, 0.7067902088165283, -0.35498911142349243, 1.3761351108551025, -0.913455069065094, -0.3627973794937134, 0.07776510715484619, 0.19184686243534088, 0.21599248051643372, -0.17695637047290802, -0.0768592357635498, 0.17871764302253723, -0.154770627617836, -0.04307524859905243, 0.6815119385719299, -0.3684563636779785, -0.7481963038444519, 0.04661843925714493, -1.6659538745880127, 0.6209321618080139, -0.475151002407074, 0.7693681120872498, 0.7039677500724792, -0.3033785820007324, 0.5479076504707336, 0.018217414617538452, 0.6911925077438354, 0.14996376633644104, 0.3034631609916687, 0.40556883811950684, -1.1360723972320557, 0.7371852397918701, 0.549399733543396, -0.609866201877594, 0.9123971462249756, 0.39082804322242737, -0.3820594549179077, 0.5019269585609436, -1.0577785968780518, -0.6947075724601746, -0.41465944051742554, 0.2904190421104431, 0.07234865427017212, 0.17788824439048767, 1.5462175607681274, -0.642681360244751, -1.1843185424804688, -1.722034215927124, 0.45204371213912964, -0.48201191425323486, 0.004722909070551395, 0.5575405359268188, 1.0901196002960205, -0.266666442155838, 0.21553421020507812, 0.20773287117481232, -0.5996850728988647, -0.938417911529541, -0.7798843383789062, -0.21240635216236115, -0.9848135709762573, 0.3810957074165344, -0.6116982102394104, -0.1995571106672287, 0.887675404548645, -1.0174953937530518, -0.12844061851501465, -0.09484279900789261, -0.013437099754810333, -0.39654430747032166, -1.0691313743591309, -0.1408335566520691, -0.3384582996368408, 0.7735369801521301, -1.1124814748764038, 1.0123242139816284, -0.4589318633079529, 0.1369665116071701, 1.440381407737732, -0.16621635854244232, -1.0721001625061035, 0.5162116885185242, -0.4353528320789337, -2.0063846111297607, 0.6351503729820251, 0.3110451102256775, -0.5368891954421997, 0.32011428475379944, 0.07265239953994751, 0.394641637802124, -0.17991821467876434, 0.4000172019004822, 0.6995142698287964, -1.1124019622802734, -0.4835076928138733, -1.5705556869506836, -0.32717087864875793, 0.4858001172542572, -0.7027531266212463, -0.904679536819458, 0.9002336263656616, 0.2556419372558594, -0.7727574110031128, 0.009861531667411327, -0.13168743252754211, 0.20060622692108154, 0.38133758306503296, 1.523794174194336, 0.6236032843589783, 0.411010205745697, -0.6971442103385925, -0.1506061553955078, -0.6322988271713257, -0.01799406111240387, 0.7767104506492615, -0.40295663475990295, -0.42777207493782043, 1.2277042865753174, 0.8805761337280273, -0.2227630615234375, 0.56756192445755, -0.5775939226150513, 0.13673527538776398, -1.0236330032348633, -0.48456740379333496, 0.06410621851682663, -0.49046769738197327, 1.1747212409973145, 0.9740167856216431, -1.3663303852081299, -0.17033331096172333, -0.056160688400268555, 0.1550883650779724, -0.1745034158229828, -0.5360596179962158, -0.2897063195705414, -0.20515750348567963, 0.037127092480659485, -0.009978408925235271, 0.13625475764274597, -0.8665109872817993, 0.32587766647338867, -0.8034510612487793, -0.39468246698379517, -0.05412705987691879, 0.19442424178123474, 0.3233051300048828, 0.25360533595085144, -0.5228216052055359, -1.2124886512756348, -0.9334815740585327, 0.21169865131378174, 1.3291839361190796, 0.16266706585884094, 0.5409641265869141, 0.49008095264434814, 0.07490108907222748, -0.22724448144435883, 0.4388541579246521, 0.19392089545726776, -0.22884684801101685, -0.036188118159770966, -0.030968721956014633, 0.8070081472396851, 1.0932718515396118, -1.1517629623413086, -0.7406632900238037, -0.12698397040367126, 1.268007516860962, 0.6870458722114563, 1.0682446956634521, 0.7739114165306091, -0.2118278592824936, 0.13986194133758545, -0.2613373398780823, -0.45606544613838196, -0.5659922957420349, -0.9338297843933105, -0.2065344601869583, -0.12631581723690033, -1.0087567567825317, 0.302217960357666, -0.0023386646062135696, -0.1588059812784195, -0.1647404432296753, 0.35083574056625366, 1.6371409893035889, -0.39042022824287415, -1.0949510335922241, -0.7486640214920044, -0.45744431018829346, -0.8335117101669312, 0.5133793950080872, 0.6051830053329468, -0.7925251126289368, -0.4975038766860962, 0.5117895603179932, 0.23185884952545166, 0.6221411824226379, -0.38702476024627686, 0.5295413732528687, -1.4645216464996338, -0.8952542543411255, -0.646754264831543, 1.351905107498169, 0.6361063718795776, -0.32019904255867004, -0.6950266361236572, -0.12759289145469666, 0.5281959772109985, -0.1809263825416565, -0.330338716506958, 0.6801515817642212, -0.2192922979593277, -0.7907797694206238, -0.20966380834579468, 0.20791344344615936, 0.7043471932411194, -0.9060957431793213, -0.14909793436527252, -0.13563144207000732, 0.0953855887055397, -0.0339345708489418, 0.7683698534965515, 0.9374675750732422, 0.4416942596435547, -0.12299371510744095, -0.9060351252555847, 0.12061136215925217, -0.34960466623306274, -0.19247287511825562, -1.1748135089874268, 0.4621712565422058, 0.9614266157150269, 0.7398189306259155, 0.6234707236289978, 0.3502840995788574, 0.9849671721458435, -0.034586772322654724, -0.7110838890075684, 0.3503277897834778, 1.0839059352874756, 0.4377134442329407, 0.07290304452180862, -0.07326430082321167, 0.38030993938446045, 0.23590952157974243, -0.7186129093170166, 0.10500170290470123, 0.3554441034793854, -0.2531367540359497, -0.3977547883987427, 0.529933750629425, 0.41390693187713623, -0.49982544779777527, -0.5865429639816284, 0.06116248667240143, 1.1233552694320679, 0.505878210067749, 0.39717650413513184, -0.256592333316803, -0.5686262845993042, -0.3543265461921692, -0.842917263507843, -0.3435564637184143, 0.1858540177345276, 0.2991461753845215, 0.9093098044395447, -0.8710035681724548, -0.57784104347229, -0.9432927370071411, 0.7256687879562378, 0.5498594045639038, 0.09484114497900009, 0.7213202714920044, 0.10389313101768494, 0.005205690860748291, -0.03179537504911423, 0.5723568797111511, 1.121157169342041, -0.38273733854293823, -0.27614307403564453, 0.19845019280910492, 0.10273483395576477, -0.13605238497257233, -0.8188373446464539, -0.26181328296661377, 0.0409327931702137, -0.7008458375930786, -0.5882760286331177, 0.1445550173521042, 0.18458081781864166, 0.9244149923324585, 0.8114888668060303, 0.2045111060142517, 0.6765648126602173, -0.7115538716316223, -1.0044808387756348, -0.085394948720932, 0.799527108669281, -0.2499440610408783, -0.2509169578552246, -0.5060081481933594, 0.5092150568962097, 0.3256814777851105, 0.7446578741073608, -0.029990628361701965, 0.8386159539222717, 0.7520661354064941, 0.1260930299758911, -0.6898794174194336, 0.9329427480697632, 1.1856626272201538, 1.434457540512085, 0.8918392658233643, -0.43255484104156494, -0.6036460399627686, 0.8503372669219971, -0.6618221402168274, 0.6781842708587646, 1.0479811429977417, 0.21634116768836975, 1.8114413022994995, -1.1796079874038696, -0.7886968851089478, 1.0957088470458984, 0.48854684829711914, 0.44916313886642456, 0.12374268472194672, 0.14452676475048065, -0.5608556270599365, 0.39770716428756714, 0.5521559715270996, 0.07978930324316025, 0.3129703998565674, -0.16179291903972626, -0.01023537665605545, 0.5011795163154602, -0.6782413721084595, 0.3963696360588074, -0.9238763451576233, 0.014102326706051826, -0.317817747592926, -0.4601931869983673, 0.2566886246204376, 0.587407648563385, 0.2742268443107605, 0.6200272440910339, -0.47798699140548706, -1.3663843870162964, 0.11436563730239868, -1.3541784286499023, 0.2930338382720947, -0.6091064214706421, -0.862113356590271, -0.26864656805992126, -0.3979630470275879, -0.4653463363647461, 0.38815128803253174, 0.06296680122613907, -0.4158381223678589, -0.06423325836658478, -1.116389513015747, -0.3204697370529175, 0.7400600910186768, 1.3287267684936523, 0.5566631555557251, 0.0011472105979919434, 0.17446401715278625, 0.5990592241287231, -1.1955697536468506, -0.09795752912759781, 0.09260288625955582, 0.014204081147909164, 0.23828953504562378, -0.8731385469436646, -0.7053835391998291, 0.4664626717567444, 0.4375291168689728, -0.07464128732681274, 0.8046377897262573, 0.8907897472381592, 0.9952405095100403, -0.6319879293441772, -0.5338212847709656, -0.46738070249557495, -0.294735848903656, 0.5660625100135803, 0.75400710105896, -0.41574275493621826, -0.40298593044281006, -0.36284103989601135, -1.579253911972046, 1.3207283020019531, 0.07132658362388611, -0.5361096262931824, 0.25424033403396606, 0.639507532119751, 0.813937246799469, -0.039214130491018295, -0.5711205005645752, 0.032859332859516144, 0.1962365061044693, 0.009653091430664062, -0.48463380336761475, 0.4228029251098633, 0.06935203075408936, -0.22761133313179016, -0.3141506314277649, 0.06089191511273384, -0.30895155668258667, -0.3181213140487671, 0.07343453168869019, 0.7882051467895508, -0.20932075381278992, 0.7398816347122192, 0.1470911204814911, -0.9071078300476074, 0.3634299635887146, -0.669520914554596, -0.1504705846309662, -0.10402828454971313, 0.4981324374675751, -0.002465873956680298, 0.001566283404827118, -0.35400545597076416, -0.6508017778396606, -0.43077629804611206, -0.6340051889419556, -0.02812967263162136, 1.098335862159729, -0.3660375475883484, 0.516755998134613, -0.364753782749176, 0.1565297693014145, -0.22717435657978058, -0.3560670018196106, 0.5515310764312744, 0.6041451692581177, -1.2351932525634766, -0.24963097274303436, 0.2982006072998047, -0.3998405933380127, -0.0656772032380104, -0.1906828135251999, 0.5706397891044617, -1.7232294082641602, -1.019230604171753, -0.9578360319137573, -0.5816156268119812, 1.067613124847412, -0.5538185238838196, 0.7016558647155762, -0.026102788746356964, -1.8312348127365112, 0.6930679082870483, 0.19297334551811218, -1.87245774269104, -0.23251643776893616, -1.578683614730835, 0.6519376039505005, -1.1909756660461426, -0.3787844181060791, -0.03165781497955322, 1.6267989873886108, -2.2710423469543457, -1.2272326946258545, -1.0015987157821655, -0.3702026903629303, 1.2925219535827637, 0.6409088373184204, -1.3247581720352173, 0.9307369589805603, 0.3915548622608185, -0.5670374035835266, -0.34319087862968445, 0.7911659479141235, -0.9892697334289551, 0.06730320304632187, 0.09758178889751434, 0.49718594551086426, -0.2611885964870453, 0.7907532453536987, -0.29422175884246826, 0.954952597618103, -0.05966119095683098, 0.7798082828521729, -0.2833411693572998, -0.6022292971611023, 0.5049647688865662, 1.193284034729004, -1.0296491384506226, -0.6529865264892578, -0.762786865234375, -0.71329665184021, -1.514709711074829, 0.1911599487066269, 0.46169036626815796, -0.9196491837501526, 0.15179996192455292, -0.7203023433685303, 0.8031977415084839, -0.7593886852264404, -0.14559906721115112, 0.058722712099552155, -0.0920485258102417, 0.10495930165052414, -0.2430325150489807, 0.20998790860176086, -1.4322195053100586, -0.10459505766630173, 0.3254375457763672, 0.19190937280654907, -0.22851379215717316, 0.6497186422348022, 1.179704189300537, -0.18114179372787476, -0.7134701013565063, 1.2021763324737549, 0.9781484603881836, 0.10817025601863861, -0.6100382208824158, 0.28672656416893005, -0.0026000365614891052, 0.7567758560180664, -0.7063002586364746, -0.11892584711313248, -0.7170623540878296, 0.4407230019569397, 0.41073039174079895, 0.03622063621878624, -0.18977269530296326, -0.35768041014671326, -0.571304202079773, 0.9207248687744141, 0.45483070611953735, -0.4944891631603241, -0.24812251329421997, 1.1989468336105347, 0.4446774125099182, -0.20802776515483856, -0.32057082653045654, 0.33558040857315063, 0.33685576915740967, 0.06848248839378357, 0.26493531465530396, 0.5862247347831726, -0.8180976510047913, 0.6521322727203369, -0.04466647654771805, 0.36725735664367676, -0.022317707538604736, -0.6721487045288086, -1.324756383895874, -0.3633052110671997, -0.349892795085907, -0.6944955587387085, 0.662889838218689, -1.4344991445541382, -0.6161419749259949, 0.1915120929479599, 0.3544226288795471, -0.08403241634368896, 0.07946383208036423, -0.23646539449691772, -0.3166840672492981, -0.03435099869966507, 1.091662883758545, -0.5979149341583252, 0.922730565071106, 0.4792167842388153, -0.5341132879257202, -0.5390572547912598, -0.3895307183265686, 0.2701474130153656, 0.34879451990127563, -0.3786279559135437, -0.5293091535568237, 0.32475435733795166, -0.4823301434516907, -0.7453258037567139, 0.3165399432182312, 0.09145832806825638, 0.11743272095918655, 0.1877763420343399, -0.7016794681549072, 1.0900694131851196, 1.5747853517532349, 0.27847936749458313, -0.7673514485359192, -0.9211968183517456, -0.8903771638870239, 0.19556117057800293, -0.3140108585357666, 0.6147931814193726, -0.4735533595085144, 1.2631809711456299, 0.507520854473114, -0.2480871081352234, -0.7993546724319458, -0.3019847273826599, 0.32219043374061584, 0.3176671862602234, 0.6123141646385193, -0.17151571810245514, 0.4692060649394989, -0.49901294708251953, -1.2800289392471313, 0.007545972242951393, 0.3223324418067932, 0.09356074035167694, 0.5194991230964661, -0.681820273399353, -0.710350513458252, -0.3176020383834839, 0.5368899703025818, 1.003478765487671, 0.4959506690502167, 0.19128219783306122, -0.37163037061691284, -1.076294183731079, -0.03150862455368042, 0.02590293437242508, 0.1919039487838745, -0.06960636377334595, 1.8786954879760742, 1.5211155414581299, 0.8216391801834106, 0.06628676503896713, -0.10361133515834808, 0.6849864721298218, -0.7286837697029114, -0.3217996060848236, -0.9412881731987, -0.3654676079750061, 0.35077667236328125], [0.03597282990813255, 1.5644361972808838, -2.0824456214904785, -0.03580111637711525, 0.20133887231349945, -0.21522587537765503, 2.089434862136841, -0.7032407522201538, 0.5316605567932129, -1.1843500137329102, -0.29676008224487305, -0.17795027792453766, 0.2684856653213501, 0.7945030331611633, 0.21366137266159058, 1.744667649269104, 0.8099814057350159, -0.43747347593307495, 0.23402221500873566, 0.4795045256614685, -0.5183221101760864, 0.09353013336658478, 0.36673274636268616, -0.16308799386024475, -0.1449020653963089, 1.0807263851165771, -1.0496599674224854, -0.2955073416233063, -0.8706651329994202, -0.8583686947822571, 0.5879886150360107, -0.4381639063358307, -0.2931012511253357, -0.2974391281604767, -1.649061918258667, -0.4961056411266327, 1.1778959035873413, 1.044690489768982, 0.18413281440734863, 0.6307650804519653, 1.8801848888397217, -0.5053853988647461, 0.503487229347229, -1.853340983390808, 0.07517287135124207, -0.07614007592201233, 1.189509630203247, -0.9539983868598938, -0.3248988091945648, -0.08027001470327377, 0.8176323175430298, -0.2918647229671478, 0.7034425735473633, 0.7583647966384888, 1.3866554498672485, -0.7135798931121826, 1.1345716714859009, -0.17323331534862518, 0.6380676031112671, -0.9045591354370117, 1.883923053741455, 0.07465219497680664, -0.3921775221824646, 1.281251072883606, -0.22495923936367035, -1.0433460474014282, -0.3729100525379181, 0.2180260419845581, -0.6308855414390564, 0.18709836900234222, -0.09488595277070999, 0.14288724958896637, -0.4589729607105255, 1.0340344905853271, -1.4259779453277588, 0.43050631880760193, 1.0695728063583374, 0.5302525758743286, 0.652101457118988, 0.5727896690368652, -0.2688598930835724, -0.18354757130146027, 0.34201177954673767, -1.0790413618087769, 0.384029358625412, 0.7255169749259949, 0.5972636342048645, -1.1452580690383911, -0.27219104766845703, 1.5758510828018188, 0.5846494436264038, -0.5349611639976501, 0.4695851504802704, -0.2058248072862625, 0.1793651580810547, -0.1864718794822693, 0.8345175981521606, -0.22347111999988556, -0.766941249370575, -0.3590952157974243, -0.76882404088974, -0.37878555059432983, 0.1528298258781433, -0.16484597325325012, -0.0027850684709846973, 0.9285728335380554, 0.2519669830799103, -0.19484733045101166, 0.08544925600290298, 0.09454533457756042, -0.18134064972400665, 0.29443004727363586, -0.6863011717796326, -1.320900797843933, -0.6176305413246155, 0.9384986758232117, 1.3372544050216675, -0.004716992378234863, 1.002545952796936, 0.9215106964111328, -1.007228970527649, -0.22543534636497498, 0.009836461395025253, 0.7217788100242615, 0.5960741639137268, 0.48678654432296753, -1.1593719720840454, -0.9219552278518677, -0.013788387179374695, -0.19078652560710907, 0.8392856121063232, -0.10481622070074081, -0.28738296031951904, 1.5144085884094238, -1.6440997123718262, 1.3541877269744873, -0.2773972451686859, -0.19230785965919495, 0.09694628417491913, -0.2747212052345276, 0.6597422361373901, -0.06148982420563698, -0.8359341621398926, -0.4694620966911316, -0.4341123104095459, -0.39481261372566223, -0.034521762281656265, -0.4751073718070984, -0.9640884399414062, 0.38562875986099243, -0.7091708183288574, 0.6090498566627502, 0.2153610736131668, 0.36772066354751587, 0.9042027592658997, -0.6545352935791016, -0.18680799007415771, 0.4787535071372986, 0.7783039808273315, 0.21992957592010498, 1.5463008880615234, 0.030858103185892105, -1.1065138578414917, 0.7285277247428894, 0.861504077911377, -0.11777996271848679, 0.4558829367160797, 0.9221218824386597, 0.14838047325611115, 0.42004746198654175, -0.5372975468635559, -1.0374269485473633, -0.7643002271652222, 0.10051801800727844, 0.1589181125164032, 0.0057635121047496796, 1.3096823692321777, -0.7434956431388855, -1.3406225442886353, -1.040404200553894, 0.6529053449630737, -0.3510589003562927, -0.09337866306304932, 0.1912999451160431, 0.3151428997516632, -0.931771457195282, 0.4826696813106537, -0.10486999899148941, -0.7240336537361145, -0.22169534862041473, -0.19586169719696045, -0.2266773134469986, -0.15056417882442474, -0.3341440260410309, -1.1630481481552124, -0.6570578813552856, 0.26654741168022156, -1.258212924003601, -0.19824086129665375, 0.071462482213974, -0.5084933042526245, -0.10809635370969772, -1.3602180480957031, 0.5445874333381653, -0.6404201984405518, 1.0207107067108154, -0.7640066742897034, 0.8503262400627136, -0.785700798034668, -0.5347713232040405, 0.9274687767028809, 0.12375866621732712, -0.741804301738739, 0.7111219167709351, -0.03202446177601814, -1.4387257099151611, -0.10930902510881424, 0.02482772432267666, -0.6429131031036377, 0.6976845860481262, 0.031772613525390625, 0.35988521575927734, 0.5538610219955444, 0.1512642204761505, 0.11761178821325302, -0.07520417124032974, -0.6455870866775513, -0.6963742971420288, -0.21618212759494781, 0.06413459032773972, -0.45358946919441223, -1.2939187288284302, 0.784644603729248, 0.6721291542053223, -1.0467299222946167, 0.26041141152381897, -0.1356612741947174, 0.9973035454750061, 0.0656658411026001, 0.9365142583847046, 1.2000434398651123, 0.8046106100082397, -0.31348106265068054, -0.5682368278503418, -1.044626235961914, 0.7656755447387695, 0.8257191777229309, -0.16921141743659973, -0.13337211310863495, 0.6418788433074951, 1.5459157228469849, -0.1659352332353592, 0.6350354552268982, 0.07758048176765442, 0.0476442351937294, -1.2155218124389648, -1.120450496673584, 0.18442374467849731, -0.26320043206214905, 1.3681427240371704, 0.5776615142822266, -0.9779420495033264, 0.4397066533565521, 0.19098712503910065, -0.24681304395198822, -0.01885678991675377, -0.7999303340911865, 0.21183952689170837, 0.07981083542108536, -0.3882617652416229, 0.11454268544912338, 0.01848486065864563, -0.2557518184185028, 0.6076902151107788, -0.30715176463127136, -0.8541407585144043, -0.6180291175842285, 0.27775755524635315, -0.06457935273647308, 1.1458839178085327, 0.2011856734752655, -2.014038324356079, 0.06048790365457535, -0.3835294246673584, 0.9057693481445312, 0.025572100654244423, -0.47746509313583374, 0.29009515047073364, 0.5941057205200195, -0.5257839560508728, 0.29977017641067505, 0.09805899858474731, -0.3592507839202881, 0.5677393078804016, -0.04024358466267586, 0.0902840718626976, 1.5208063125610352, -0.4991898834705353, -1.0009020566940308, 0.44320547580718994, 1.0807522535324097, 1.9836527109146118, 0.7850472331047058, 1.6052089929580688, -0.27470266819000244, 0.28124353289604187, -0.5243617296218872, -0.19083240628242493, -1.2062827348709106, -0.6326372027397156, -0.6786976456642151, -0.7906637787818909, -0.06269046664237976, 0.12243509292602539, 0.396179735660553, 1.1242057085037231, -0.3016754388809204, 0.029209300875663757, 1.2349494695663452, 0.11292381584644318, 0.0743257999420166, 0.5384932160377502, 0.08762622624635696, -0.826423704624176, -0.2312086522579193, 1.1848053932189941, -1.0023609399795532, -0.6294550895690918, 0.11273904889822006, 0.09365824609994888, 0.7669008374214172, 0.1413564682006836, 0.12597918510437012, -2.017881155014038, -0.7934243083000183, 0.19571447372436523, 1.6704355478286743, -0.2796561121940613, -0.09427908807992935, -0.33441853523254395, 0.7436700463294983, 0.6275312900543213, -0.20894204080104828, -1.4100862741470337, 0.9049285054206848, -0.22909387946128845, -1.0209511518478394, 0.12160646170377731, 0.5030229091644287, 0.8126904368400574, -0.5054435729980469, -0.6762477159500122, -0.531435489654541, -0.6390476226806641, 0.1386222094297409, 0.5875226259231567, -0.20406575500965118, 0.9004214406013489, 0.09008544683456421, -0.06078866124153137, 0.5428285002708435, 0.0884125754237175, -0.45020854473114014, -1.2251574993133545, 0.5115000009536743, 0.00040138140320777893, 1.2486037015914917, 0.5751742124557495, 0.2474854588508606, 0.24810104072093964, 0.24279743432998657, 0.3748719394207001, -0.009109941311180592, 1.240208387374878, 0.1701703667640686, 0.9098321795463562, -0.3880736529827118, -0.012846441008150578, -0.001602410338819027, -0.30230000615119934, -0.48345446586608887, 0.8524736166000366, -1.4529372453689575, -0.628515362739563, 1.149442434310913, 0.5057438611984253, -0.14902600646018982, -0.2732001841068268, 0.4711735248565674, 1.005873203277588, 0.21500656008720398, -0.4281306266784668, -0.6563535928726196, -0.8927717804908752, 0.13677039742469788, -1.1787121295928955, 0.23789335787296295, 1.001785397529602, 0.21505850553512573, 0.818473219871521, -0.32958388328552246, 0.14507396519184113, -1.0632269382476807, 0.4794621467590332, 0.8941329121589661, -0.5013859272003174, 0.3664328455924988, 0.49239662289619446, -0.08292687684297562, -0.004970367066562176, 0.6259562969207764, 1.0101242065429688, -0.9236982464790344, 0.25330790877342224, 0.708269476890564, -0.7265477776527405, -0.3986387252807617, -0.2604030966758728, -0.8820714354515076, 0.14503556489944458, -0.3437040448188782, 0.014375997707247734, -0.17618194222450256, -0.31396758556365967, 1.2565350532531738, 0.3180087208747864, 0.21474991738796234, 0.05156407132744789, -0.5548840165138245, -0.38814085721969604, 0.36630889773368835, 0.07047316431999207, -0.29838618636131287, -1.0488381385803223, -1.0461294651031494, 0.49732810258865356, -0.3433097004890442, 0.8216984868049622, -0.1531381607055664, 0.2701999843120575, -0.10244593024253845, 0.12643565237522125, 0.2837885916233063, 0.8524888753890991, 0.2963797450065613, 1.1968400478363037, 0.06966284662485123, -0.6984184384346008, -0.4426904022693634, 0.3290267884731293, -0.9097811579704285, 0.8838645219802856, 0.14777790009975433, 0.3471551835536957, 1.2975544929504395, -1.3045406341552734, 0.04473976045846939, 0.5470048189163208, 0.5526426434516907, 0.7986351847648621, 1.0849977731704712, -0.5943892598152161, -0.2608155608177185, 0.48883816599845886, -0.21209773421287537, 0.4331410825252533, 0.03441349044442177, 0.06462486833333969, -0.5580511689186096, 0.22896495461463928, -0.9098548889160156, 0.33063364028930664, -0.28987735509872437, -0.7836727499961853, -0.24443571269512177, -1.0188345909118652, -0.31855687499046326, 0.5606188178062439, 0.20363183319568634, 1.901313304901123, -0.15629981458187103, -0.8025803565979004, 0.09516313672065735, -0.6820786595344543, 0.8614878058433533, -0.7820156216621399, -0.5006053447723389, -0.9072892665863037, -0.24248389899730682, -0.12488451600074768, 0.3607187867164612, -0.8633164763450623, -0.6870905160903931, -0.187530979514122, -0.8505861759185791, 0.3326111137866974, 0.7679113149642944, 1.1146504878997803, 0.1188831478357315, -0.7892550826072693, 0.4782158434391022, -0.09680107235908508, -0.3687998354434967, -0.4902189373970032, 0.31540733575820923, -0.09653395414352417, 0.027371609583497047, -1.3581441640853882, -0.6698557734489441, 0.45032986998558044, 0.4439442753791809, -0.11688753217458725, 1.0588780641555786, 1.1066886186599731, 1.128345012664795, -0.4726390540599823, -0.2935134768486023, 0.2997700870037079, -0.37913650274276733, -0.010498509742319584, 0.22246986627578735, -0.23568663001060486, -0.30369576811790466, -0.65101557970047, -1.2139613628387451, 0.3501245379447937, -0.13607755303382874, -0.6508437991142273, 0.8178021907806396, 0.630646824836731, 0.6258779764175415, 0.41229134798049927, -0.7453706860542297, 0.43504101037979126, 0.14497312903404236, -0.9513497948646545, -0.7263599634170532, 0.5735490918159485, 0.35578054189682007, 0.4562699496746063, -0.014323852956295013, 0.2571091055870056, 0.045473791658878326, 0.05861912667751312, -0.6758546233177185, 0.5087673664093018, 0.24744541943073273, 0.7965136766433716, -0.3161652386188507, -0.5305554270744324, 0.19865307211875916, -0.35582828521728516, 0.00671660341322422, 0.28947094082832336, 1.105675220489502, -0.3188314735889435, 0.18195201456546783, -0.6074918508529663, -0.5405337810516357, -0.5098872780799866, -0.7464559078216553, -0.2700824439525604, 0.655707836151123, 0.37800487875938416, 0.5407971143722534, -0.7847204208374023, -0.17093800008296967, 0.44201794266700745, 0.0025813353713601828, 0.4422759413719177, 0.05913843214511871, -0.8979513049125671, -0.1816282868385315, 0.5970066785812378, -0.5230851173400879, 0.07116769254207611, -0.12845194339752197, -0.2525347173213959, -1.4354795217514038, -1.0901433229446411, -0.9473419785499573, 0.17579278349876404, 0.7457313537597656, -1.0737930536270142, 0.9549959897994995, 0.6352105736732483, -1.3601919412612915, 0.511660635471344, 0.19984975457191467, -1.4506099224090576, -0.32044968008995056, -1.5438412427902222, 0.7922843098640442, 0.24119062721729279, 0.5423014760017395, -0.2854093015193939, 0.8710741400718689, -1.2450240850448608, -0.8822925090789795, -0.7065232992172241, -0.19602513313293457, 0.581928551197052, 0.6760416626930237, -0.9035550355911255, 1.03835928440094, 0.9554638266563416, -0.7540158033370972, -0.47256550192832947, -0.3788639008998871, -0.5227175951004028, 0.5193644762039185, -0.14307783544063568, 0.9662619829177856, 0.5620966553688049, 0.5024125576019287, 0.5031545162200928, 1.0076960325241089, 0.34273993968963623, 1.12770676612854, -0.8516929745674133, -0.4136107861995697, 0.34275534749031067, 1.2398920059204102, -0.7722883820533752, -0.8893226385116577, -0.183841735124588, -0.6657826900482178, -1.2981244325637817, 0.43800804018974304, 1.2354848384857178, -0.2526127099990845, 0.20984585583209991, -1.0597411394119263, 0.4912897050380707, -1.3317725658416748, 0.308033287525177, -0.5043310523033142, -0.4062120020389557, -0.40606579184532166, 0.21640704572200775, -0.3220703601837158, -0.8856378197669983, 0.033751390874385834, 0.44071558117866516, -0.09674011915922165, -0.7415403723716736, 0.8746040463447571, 0.4023773670196533, 0.7615509629249573, -0.5078614354133606, 1.620158076286316, 0.9373247027397156, -0.2577134668827057, 0.2560836970806122, -0.09437523037195206, 0.026009781286120415, 0.2482946217060089, -0.7217459082603455, -0.5342651009559631, -1.46317458152771, 1.1500238180160522, 0.21211855113506317, 0.13023853302001953, -0.6567361950874329, 0.18341709673404694, -0.24571551382541656, 0.3677620589733124, 0.6925351619720459, -1.2312015295028687, -0.46492666006088257, 0.5482768416404724, 0.23405785858631134, -0.2553585469722748, 0.06007261574268341, 0.3181609511375427, 0.2762075662612915, -0.49062466621398926, 0.12314864248037338, 0.505989670753479, -1.019543170928955, 0.4393720328807831, 0.07097465544939041, -0.2121477872133255, -0.10136638581752777, -0.5092065334320068, -1.2730967998504639, 0.30066704750061035, -0.5075381398200989, -1.0624765157699585, 0.6795816421508789, -1.3687069416046143, 0.02639917843043804, 0.2912401854991913, -0.2622995674610138, -0.24978917837142944, -0.05831038951873779, 0.7824112176895142, 0.11720867455005646, 0.08144082874059677, 1.1405680179595947, -0.4040023386478424, 1.3822177648544312, 0.41031941771507263, 0.17142631113529205, -1.178123950958252, -0.4648509919643402, 0.14896972477436066, -0.4204350709915161, 0.04580559581518173, -0.061751872301101685, 0.42669060826301575, -0.4390307068824768, -0.07376378029584885, -0.1482015997171402, 0.5834776759147644, 0.09960795193910599, 0.006418648175895214, -0.4986060559749603, 0.6338694095611572, 1.1360608339309692, 0.5766484141349792, 0.002327151596546173, -0.8205289840698242, -0.5595187544822693, 0.48649725317955017, -0.5794574618339539, 0.6698092818260193, -0.03783934935927391, 1.0770983695983887, -0.15715496242046356, -0.2785811424255371, -0.7517103552818298, -0.7667440176010132, -0.026251930743455887, 0.17806780338287354, 0.2785325348377228, -0.35089072585105896, -0.22984519600868225, -0.05394182354211807, -0.6428567171096802, 0.06858891993761063, -0.13412977755069733, -0.2016046643257141, -0.18689186871051788, -1.4008280038833618, -1.0295593738555908, -0.16020093858242035, -0.45215779542922974, 1.0773627758026123, 0.32318171858787537, 0.12513409554958344, -0.4554589092731476, -1.4445507526397705, -0.23196718096733093, 0.35417863726615906, -1.1248522996902466, 0.30388081073760986, 1.2342803478240967, 1.778123140335083, 0.8306286931037903, 0.1067931205034256, -0.5312548875808716, 0.5459620356559753, -0.23253460228443146, 0.1791975051164627, -0.5452834963798523, -0.1751798540353775, -0.16183939576148987], [-0.28775379061698914, 1.6365820169448853, -2.1061136722564697, 0.7371761798858643, 0.9194611310958862, 0.8419415950775146, 1.0671097040176392, -0.12865743041038513, -0.11451692879199982, -0.086463563144207, -0.024720316752791405, -0.037626542150974274, 0.9201013445854187, 0.6065061688423157, 1.11990487575531, 0.38320595026016235, 0.6795989274978638, -0.3431828022003174, 1.006448745727539, 1.1356624364852905, -0.4649266004562378, -1.1410754919052124, -0.3882480263710022, -0.7822344899177551, -0.22849346697330475, 0.6622926592826843, -1.7200731039047241, -0.5203911662101746, -1.637873888015747, -0.8892760276794434, 0.69507896900177, -0.01758766546845436, 0.21451421082019806, -0.438551664352417, -1.0478330850601196, 0.05781317502260208, 1.5462855100631714, 1.7923051118850708, 1.4557989835739136, -0.03973126783967018, 1.586472988128662, -0.39215147495269775, 0.2819829285144806, -0.8966035842895508, -0.3311801552772522, -0.6477994918823242, 1.0531784296035767, -0.042704831808805466, 0.4467218518257141, -0.9331889748573303, 0.13733071088790894, -1.2943278551101685, 0.6093951463699341, 0.32033148407936096, 1.689271092414856, -0.32638469338417053, 0.36723411083221436, 0.42820367217063904, -0.3299791216850281, -1.2903071641921997, 0.8453119397163391, -0.41246816515922546, -0.17684952914714813, 1.1632272005081177, 0.17471164464950562, -0.3723805248737335, -0.13872338831424713, 0.5208297371864319, -0.2480056881904602, -0.16942882537841797, 1.0556221008300781, -0.176923468708992, -0.8757433295249939, 0.6903428435325623, -1.3763279914855957, -0.11920007318258286, 0.12157398462295532, 0.5209108591079712, 0.4159240424633026, 0.11255602538585663, 0.33391982316970825, -0.9074199795722961, 0.22381970286369324, 0.005948746111243963, -0.17143699526786804, 0.21910807490348816, 0.7132577896118164, 0.11594682931900024, -0.4142921268939972, 1.4754472970962524, 0.7849063277244568, 0.1655370593070984, 0.6046944260597229, 0.10122280567884445, -1.2489405870437622, -0.5300172567367554, 0.4541449546813965, -0.01968921720981598, -1.1560999155044556, 0.14802061021327972, 0.01504054106771946, 0.09772699326276779, 0.48201972246170044, 0.847717821598053, 0.005657228175550699, 0.8065346479415894, 0.9068278670310974, 0.4548003673553467, -0.2822626233100891, -0.5576552748680115, 0.014772315509617329, 0.45011889934539795, -0.9976243376731873, -1.046709418296814, -1.4791427850723267, 1.2014834880828857, 1.3462145328521729, 0.23933114111423492, 0.4374561309814453, 0.8944715857505798, -0.15311464667320251, -0.5567761063575745, 0.17647133767604828, 0.7641564607620239, 0.7446303367614746, 0.38802778720855713, -0.8990898132324219, -0.9652231335639954, 0.32308119535446167, 0.5720903873443604, 0.3921965956687927, -0.6334148645401001, -0.2429257035255432, 0.8286266326904297, -0.962444007396698, 1.745849370956421, -0.4317333996295929, -0.896203339099884, -0.3254488706588745, -0.6598726511001587, 0.46273350715637207, 0.11364723742008209, -0.17928466200828552, -0.3070181608200073, 0.01793801039457321, -0.7160071134567261, 0.6099675893783569, 0.18565630912780762, -1.032045602798462, 0.5703482031822205, -0.653180718421936, 0.42083966732025146, 0.3443361520767212, 0.6179835796356201, -0.23642325401306152, -0.3070738613605499, 0.8044977784156799, 0.3286440074443817, 0.35166066884994507, 0.1825183928012848, 0.9655631184577942, -0.1575777381658554, -0.5956442356109619, 0.4411914646625519, 0.18644459545612335, -0.7210705280303955, 0.16127893328666687, 1.113607406616211, 0.5717892050743103, 1.4583112001419067, -0.10755650699138641, -0.33921849727630615, -0.39050984382629395, 0.6999205946922302, 0.8471238017082214, -0.6839771866798401, 1.1384010314941406, -0.07433577626943588, -2.331056594848633, -1.1500732898712158, 0.26393750309944153, -0.2962988615036011, 0.40441179275512695, -0.3244074881076813, 0.42424866557121277, -0.9705125689506531, 0.3355753719806671, -0.1525021344423294, -0.32077139616012573, -0.8586128950119019, -0.07832533121109009, -0.3723646402359009, -0.4190608561038971, -0.1951415240764618, -0.37854909896850586, -0.30033859610557556, 0.520839512348175, -2.069235324859619, -0.3834022283554077, 0.410176545381546, 0.0047107720747590065, -0.2031143456697464, -1.1152722835540771, 0.5403915047645569, -0.12453431636095047, 1.2034401893615723, -1.3196855783462524, 1.23009192943573, -0.7224399447441101, 0.5704479217529297, 1.0303094387054443, 0.1482231467962265, -0.8886518478393555, 0.5763124823570251, 0.1076352670788765, -0.9835926294326782, 0.15992462635040283, 0.10164306312799454, 0.005796365439891815, 0.36032596230506897, -0.3381231427192688, -0.3422246277332306, 0.2603762149810791, 0.20972608029842377, 0.27118945121765137, -0.4051935076713562, -0.6629860997200012, -0.4979388117790222, -1.1912226676940918, 0.18176046013832092, -0.8553500771522522, -1.1619017124176025, 0.7450481653213501, 0.4352187216281891, -1.1768112182617188, 0.5740596055984497, 0.3377394676208496, 0.5246608257293701, 0.18758128583431244, 1.6099215745925903, -0.2821958661079407, 0.4516471028327942, -0.27871543169021606, 0.354194700717926, -0.4482853412628174, 0.3412328362464905, 0.8639428019523621, -0.21634092926979065, -0.11514730751514435, 1.2343618869781494, 1.0131404399871826, 0.37018176913261414, 0.6493145227432251, -0.10073404014110565, -0.050213564187288284, -0.9182757139205933, -0.6065819263458252, 0.7377575635910034, -0.01613980531692505, 2.0284035205841064, 0.9039748311042786, -0.7122235894203186, 0.1436597853899002, -0.10231460630893707, 0.042689207941293716, -0.0618545301258564, -0.8075048327445984, -1.1417465209960938, -0.22313977777957916, 0.31616446375846863, -0.6104639768600464, 1.1087762117385864, -0.46616318821907043, 0.25680777430534363, -0.3033551275730133, -0.6492854356765747, -1.1976522207260132, 0.9336404800415039, 0.060092225670814514, 0.7487271428108215, -0.4496314227581024, -1.1820704936981201, -0.35859620571136475, -0.29301267862319946, 0.7726864218711853, 0.3231784403324127, 0.7335788011550903, -0.15344780683517456, 0.5243748426437378, -0.21760421991348267, 0.22336460649967194, -0.5228245258331299, 0.42544010281562805, -0.06732968986034393, 0.14302317798137665, 0.43929028511047363, 1.2828731536865234, -0.8929614424705505, -0.48302364349365234, -0.4191450774669647, 0.344432532787323, 1.9484686851501465, 0.12836593389511108, 0.4100046157836914, -0.16688595712184906, 0.35507673025131226, -0.03573915362358093, -0.09345307946205139, -1.2569695711135864, -0.8993554711341858, -0.7906755208969116, -0.12975886464118958, -0.6341806650161743, 0.10275829583406448, 0.027085628360509872, 0.13538195192813873, -0.6199333667755127, 0.7068692445755005, 1.414279580116272, 0.20364247262477875, -0.8105369210243225, -0.49672067165374756, -0.2060426026582718, -0.5651489496231079, 1.0278568267822266, 1.0272393226623535, -1.0923614501953125, -0.46435946226119995, 0.22084346413612366, -0.5952425599098206, 0.6655948162078857, 0.1428019255399704, 0.11052722483873367, -0.8388282656669617, -0.8876752853393555, -0.32765263319015503, 1.096105933189392, -0.11212573945522308, -0.5244642496109009, -0.2884644567966461, 0.37220144271850586, 0.5528163313865662, -0.44347694516181946, -0.547463059425354, 1.2326539754867554, -0.22885142266750336, -0.830841064453125, -0.024798035621643066, 0.8715574741363525, 0.6214520931243896, -0.46963104605674744, -0.635514497756958, -0.37847900390625, -0.3268243670463562, -1.0618374347686768, 0.3482787013053894, -0.07210315763950348, 1.0412232875823975, -0.0263057854026556, 0.1758493334054947, 0.7887506484985352, 0.05949108675122261, 0.3318978548049927, -1.421579360961914, 0.18502779304981232, 0.8889727592468262, 0.8805332183837891, -0.13271287083625793, 0.10244195908308029, 0.4056605398654938, 0.47385281324386597, -0.05271149054169655, 0.14251205325126648, 0.18307748436927795, 0.413893461227417, 0.4306374788284302, -0.4733974039554596, 0.23427079617977142, -0.09856561571359634, -0.625995397567749, 0.6708315014839172, 0.5770532488822937, -0.8122356534004211, 0.09468715637922287, 0.30356502532958984, -0.02988762967288494, -0.7106636762619019, -0.6553558111190796, -0.31829512119293213, 1.210325837135315, -0.6164993047714233, 0.2613564729690552, -0.16634929180145264, 0.12033119797706604, 0.1808518022298813, -1.1400187015533447, -0.16241641342639923, 0.09921189397573471, 0.7709927558898926, 0.9987260699272156, -0.7292863726615906, 0.2829790413379669, -0.7263444066047668, 0.42099735140800476, 0.12361130118370056, -0.2873140275478363, 0.08559375256299973, 0.6015241742134094, -0.30731359124183655, 0.086632139980793, 0.5196290016174316, 1.46147620677948, -0.5903193354606628, -0.006669769063591957, 0.16570018231868744, 0.2081492394208908, -0.9060525894165039, -0.13230817019939423, -0.3835490942001343, -0.12099528312683105, -0.4018656015396118, -0.25314319133758545, 0.3633551597595215, -0.37389180064201355, 1.7788163423538208, 1.3118054866790771, 0.3077641427516937, 0.3511882722377777, 0.4801163971424103, -1.1818164587020874, -0.3030959367752075, 0.33144569396972656, 0.22415918111801147, -0.594392716884613, -0.585536777973175, 0.1570807248353958, -0.13399076461791992, 0.7877799868583679, 0.5324079394340515, 0.7613143920898438, 0.5983237028121948, 0.2821881175041199, 0.12177804857492447, 1.128106713294983, 1.422425389289856, 0.24470195174217224, 0.6367777585983276, 0.11984241753816605, -1.0618911981582642, 0.04150725528597832, -0.3400457203388214, -0.18791450560092926, 1.1350513696670532, 0.5054102540016174, 1.2921233177185059, -2.138878583908081, -0.21374447643756866, 0.9190651178359985, 0.8320674300193787, 0.12987004220485687, 0.9830609560012817, -0.6298448443412781, -0.1798957884311676, 0.7557693123817444, 0.16340042650699615, 0.1987893432378769, -0.31098058819770813, -0.07249755412340164, -0.6657128930091858, 0.22293350100517273, -0.516989529132843, 0.8582946062088013, -0.9023743271827698, 0.0819660872220993, 0.08396807312965393, -1.621987223625183, -0.4122365415096283, -0.06272969394922256, 0.40963849425315857, 1.0701262950897217, -0.8395653367042542, -0.6814038753509521, -0.03317109867930412, -0.612181544303894, 0.25403547286987305, -0.21847018599510193, -0.05043353885412216, -0.5336998701095581, 0.26006218791007996, -0.5837659239768982, 0.7887845039367676, -0.5320619940757751, -0.5889376997947693, -1.2400034666061401, -1.1787748336791992, 0.3219371736049652, 0.9590534567832947, 0.984691858291626, 0.8289424180984497, 0.07350995391607285, -0.4389995336532593, -0.0388774499297142, -0.871235191822052, -0.43552446365356445, 0.2769036889076233, 0.32657045125961304, 0.9757012724876404, -0.9037570357322693, -0.6302939057350159, -0.011155284009873867, 0.6367171406745911, -0.18780624866485596, 0.7393816709518433, 1.4095953702926636, 1.623499870300293, -0.6059987545013428, -0.2149832397699356, 0.5317087173461914, 0.2987510561943054, 0.11064261943101883, 0.7525129318237305, 0.10522276163101196, -1.1317869424819946, -0.9389976263046265, -1.0957274436950684, 0.7733033895492554, 0.14954040944576263, -0.936642050743103, 0.7861090898513794, -0.3101820945739746, 0.6172553300857544, 0.5128659009933472, -0.37539657950401306, 0.5499218702316284, -0.2599748969078064, 0.02972843125462532, -0.824999213218689, 0.9794179201126099, -0.11231569945812225, 0.020592430606484413, 0.082712322473526, 0.6073463559150696, 0.13570141792297363, -0.1961592137813568, -0.13174548745155334, 1.1364786624908447, -0.6964209675788879, 0.42994585633277893, 0.7441651821136475, -1.0098443031311035, -0.06430473178625107, -0.26805180311203003, -0.5079792141914368, 0.054737359285354614, 0.8535948991775513, 0.0772470086812973, -0.48607638478279114, 0.2343485802412033, -0.6315668225288391, -1.1378000974655151, -0.21857866644859314, -0.6947318315505981, -0.18324419856071472, 0.5227506160736084, 0.06289117783308029, 0.6698912978172302, -0.1699509620666504, 0.04452985152602196, -0.8039484024047852, -0.3150775134563446, -0.31147778034210205, -1.0976471900939941, -0.05519946292042732, 0.2528591752052307, -1.3296072483062744, -0.5492103099822998, -0.4828537404537201, -0.11999896168708801, -0.29366394877433777, -1.7986441850662231, -1.1459625959396362, -0.10948217660188675, 0.6920411586761475, -1.1129506826400757, 0.8525949120521545, -0.08464115113019943, -1.3784867525100708, 0.08986793458461761, -0.26070651412010193, -1.196905493736267, 0.11931219696998596, -0.4813616871833801, 0.7866464853286743, -0.6897967457771301, 0.269707590341568, -1.0907299518585205, 0.72662353515625, -2.2369203567504883, -1.909042239189148, -1.1653032302856445, 0.4960334300994873, 1.2149524688720703, 0.5425902605056763, -0.6133431196212769, 1.12376070022583, 0.7535567879676819, 0.06619279831647873, -0.4386567175388336, 0.4686932861804962, -0.3347887098789215, -0.04806727543473244, 0.8017273545265198, 0.5189047455787659, 0.7372758984565735, 0.7537882328033447, -0.10577528923749924, 1.3326267004013062, 0.24570617079734802, 0.6692363619804382, -0.7529191374778748, -0.21733959019184113, 0.25231459736824036, 0.8619715571403503, -0.61154705286026, -1.5114651918411255, -0.1305103600025177, -0.11881799250841141, -0.4237377941608429, -0.39450502395629883, 0.23079174757003784, -0.6486577987670898, -0.14864321053028107, -0.8058608174324036, 0.07257883995771408, -0.5765514969825745, 0.38471168279647827, -0.22959508001804352, -0.7293609380722046, -0.5637949109077454, 0.29975786805152893, 0.045081451535224915, -1.3485020399093628, 0.14916598796844482, -0.37126898765563965, 0.02179133892059326, -0.028487784788012505, -0.033755138516426086, 0.9473444223403931, 0.46504485607147217, -0.698722779750824, 1.3735487461090088, 0.6145844459533691, -0.604766845703125, 0.2789565622806549, 0.11377792060375214, -0.4853416085243225, 0.4632648825645447, -0.6312204599380493, 0.0734073594212532, -1.2908399105072021, 0.7069618701934814, 0.4219745695590973, -0.09916868060827255, 0.8323653936386108, -0.05182560160756111, -0.888620913028717, 1.0365842580795288, 0.5489115118980408, -0.8203865885734558, -0.31745848059654236, 1.600164771080017, -0.1178940162062645, -0.8638229370117188, -0.22044160962104797, -0.3061547875404358, 0.11958315968513489, -0.946910560131073, 1.099827527999878, 0.505864679813385, -0.7579770088195801, 0.6233853101730347, 0.3372243344783783, 0.09803654253482819, -0.040611766278743744, -0.3649115264415741, -1.5001647472381592, 0.06981221586465836, -0.7696580290794373, -0.954485297203064, -0.10131275653839111, -1.89443039894104, -0.9603428840637207, 0.8078324198722839, -0.06930292397737503, -0.6666055917739868, -0.14827416837215424, -0.10840008407831192, 0.6583273410797119, -0.3261374533176422, 0.6134731769561768, -0.35715875029563904, 1.1646547317504883, -0.499545693397522, 0.4700932204723358, -0.8133773803710938, -0.35163453221321106, 0.2254873663187027, 0.4187299311161041, -0.22422127425670624, -0.17941002547740936, 0.44487616419792175, -0.5905160903930664, -1.219107985496521, 0.10705038160085678, 0.7831684947013855, -0.23849965631961823, 0.04529417306184769, -0.8900520205497742, -0.1479269415140152, 0.31713712215423584, 1.339459776878357, -0.06634404510259628, -0.23138532042503357, -0.7576087713241577, 0.1812390834093094, -0.7715078592300415, 0.6819149851799011, -0.6830770373344421, 0.5974650979042053, 0.4234198033809662, -1.1607588529586792, -0.4871685206890106, -0.6554819941520691, 0.727375328540802, -0.36718618869781494, -0.21476656198501587, 0.8349728584289551, 0.17360959947109222, 0.14727860689163208, -1.0440986156463623, 0.027035217732191086, 0.30292800068855286, 0.2230033427476883, 0.047093119472265244, -1.2808741331100464, -0.2500225007534027, -0.5794899463653564, 0.5768272876739502, 0.938632071018219, 0.8965821862220764, 0.3940795660018921, 0.36976495385169983, -1.4596000909805298, 0.8012756109237671, 0.0397217683494091, 0.23458391427993774, 0.22353798151016235, 1.409896731376648, 1.8104791641235352, 0.8729486465454102, 0.07312421500682831, -0.7570836544036865, 0.728749692440033, -0.9738569259643555, -0.280661016702652, -0.13656778633594513, -0.9463114142417908, -0.7714447379112244], [-0.37081530690193176, 1.7691588401794434, -2.9353299140930176, -0.6081176400184631, 0.001981433480978012, 0.25810670852661133, 1.6382832527160645, 0.5919187664985657, 0.11418531835079193, -0.4647561013698578, -0.6640365123748779, 0.43519556522369385, 0.43038973212242126, 1.4916678667068481, 1.2496082782745361, 0.01226949691772461, 0.3697751462459564, -0.5722693800926208, 0.6826551556587219, 1.9142701625823975, -0.6345639228820801, -1.4390732049942017, -0.2439032793045044, 0.05548612400889397, -0.04029552638530731, 0.05392327159643173, -1.4989447593688965, -0.5688801407814026, -1.2387925386428833, -1.9082391262054443, 0.7503457069396973, -0.6899264454841614, -0.11714176833629608, 0.1937842220067978, -0.9246042966842651, -0.6233881711959839, 1.1924593448638916, 0.9721937775611877, 0.7495318055152893, -0.032811373472213745, 2.2740867137908936, -0.1583244800567627, 0.3451155126094818, -1.059995412826538, 0.16554462909698486, 0.09758143126964569, 0.9337689876556396, -0.9746219515800476, -0.502978503704071, -0.199894979596138, -0.010057075880467892, -1.161598801612854, 0.8680908679962158, 0.28059592843055725, 1.176857829093933, -0.28768131136894226, 0.8181624412536621, 0.6906242370605469, 0.43403053283691406, -0.6150317788124084, 0.47690993547439575, 0.5401620864868164, -0.419623464345932, 1.7452472448349, -0.24554060399532318, -0.7498436570167542, -0.473113089799881, 0.591343343257904, 0.09799621999263763, -0.23902194201946259, 0.3378444015979767, -0.25141581892967224, -0.16147594153881073, 0.14198525249958038, -1.1325018405914307, 0.167199969291687, -0.11004988104104996, -0.08143730461597443, 0.513103187084198, 0.45706063508987427, -0.3469935953617096, -0.1699221134185791, 0.7086388468742371, -0.247345969080925, 0.9545711874961853, 0.33998870849609375, 0.5131994485855103, 0.5801197290420532, -0.45794588327407837, 1.745200514793396, 0.5986310243606567, -0.4129120111465454, 0.2484852820634842, -0.11099722236394882, -0.7594183683395386, -0.8259685635566711, -0.3500683307647705, -0.5695300102233887, -0.45336830615997314, -0.5993584394454956, -0.5300028920173645, -0.30890944600105286, -0.22260791063308716, -0.3953348994255066, -0.883544385433197, 1.184219479560852, -0.06761724501848221, 0.038193922489881516, -0.6438242793083191, -0.6233416199684143, -0.40371742844581604, 0.4700855314731598, -1.2631241083145142, -0.5379543900489807, -0.9882264137268066, 1.4829753637313843, 1.1897975206375122, 0.15902526676654816, 0.05629076436161995, 0.5457465052604675, -0.22564782202243805, -0.9053683280944824, 0.2598061263561249, 0.8654447197914124, 0.3530058264732361, -0.05838755890727043, -0.7555152773857117, -1.0185470581054688, 0.4300502836704254, -0.1324416995048523, 0.11728379875421524, -0.2274775356054306, -0.1262710988521576, 0.7153869271278381, -0.6921207308769226, 1.3102198839187622, -0.34622836112976074, -1.3939350843429565, -0.5687101483345032, -0.1322157084941864, 0.5450040102005005, -0.9594866037368774, -0.8104197382926941, -0.45981350541114807, -0.24895036220550537, -0.9287713766098022, 0.9507396221160889, -0.36363258957862854, -0.9317713975906372, 0.3456166982650757, -0.4328966438770294, 0.1436806619167328, 0.7080725431442261, 0.8028989434242249, 0.18503394722938538, -0.6099935173988342, 0.02255503460764885, -0.23059676587581635, 0.2069750428199768, 0.17056721448898315, 1.0619463920593262, 0.051736291497945786, -0.3724040687084198, 0.7271413803100586, 0.725068986415863, -0.6238527894020081, 0.4077354669570923, 1.2427473068237305, -0.4529391825199127, 0.45229265093803406, 0.403473436832428, 0.05264701694250107, -0.6199114918708801, 0.7618309855461121, 0.48858311772346497, -1.3693885803222656, 0.9525048136711121, -1.0560489892959595, -1.1537736654281616, -1.3000799417495728, 0.4318903088569641, -0.9052721261978149, 0.11325307935476303, -0.5483019351959229, 0.6182363033294678, -0.41350963711738586, 0.9192529320716858, -0.8377445936203003, -0.3305874764919281, -0.3745618462562561, -0.14396442472934723, -0.1151285320520401, -0.4985138475894928, 0.10685015469789505, -0.16859525442123413, -0.0017148926854133606, 0.7170659303665161, -1.3251982927322388, -0.3506147563457489, 0.5819145441055298, 0.2706322968006134, -0.44074907898902893, -1.0303682088851929, 0.7573756575584412, -0.9360969066619873, 0.830637514591217, -0.6062952280044556, 0.8511916995048523, -1.1184773445129395, 0.11488541215658188, 1.098757266998291, -0.28503599762916565, -0.7107465863227844, 0.2687748074531555, 0.3174165189266205, -0.8342331051826477, -0.17369145154953003, 0.006423003971576691, -0.42720574140548706, 0.6140437722206116, -0.08255083113908768, 0.3681100606918335, 0.4111212193965912, 0.5278588533401489, 0.46162185072898865, -0.30849677324295044, -0.5212018489837646, -0.04584473744034767, -0.5213871002197266, 0.5560283660888672, -0.558419406414032, -1.578478455543518, 0.04360279440879822, 0.4682764410972595, -1.241310954093933, 0.0689673200249672, 0.5613552927970886, 0.33736029267311096, 0.230056494474411, 0.8661445379257202, 0.913662850856781, 1.106268048286438, -0.18239903450012207, -0.8005877733230591, -0.41803961992263794, 0.906190812587738, 0.8312483429908752, -0.2154916226863861, 0.0005999244749546051, 1.3158804178237915, 0.8481705784797668, 0.18663010001182556, 0.42085495591163635, -0.3089746832847595, 0.18880359828472137, -1.0145987272262573, -0.42963907122612, 0.9465025067329407, -0.43249690532684326, 2.2516682147979736, 1.2381314039230347, -1.4664239883422852, -0.3148774206638336, 0.319027841091156, -0.7667285799980164, -0.3374207615852356, -0.6532233357429504, -0.13612540066242218, -0.4254230558872223, 0.11627772450447083, 0.0310836024582386, 0.6625509262084961, -0.3842278718948364, 0.5506724119186401, -0.2893943786621094, -0.5655182003974915, -0.2563108503818512, 0.9001717567443848, -0.16096128523349762, 1.5348318815231323, 0.09231889247894287, -2.095343828201294, 0.0033695874735713005, 0.1893099993467331, 0.45442095398902893, 0.3629399240016937, 0.17001543939113617, -0.0807299017906189, 0.3332856297492981, -0.6378160119056702, 0.2824586033821106, -0.263348251581192, -0.29664137959480286, -0.20339082181453705, -0.2661018371582031, 0.5554718971252441, 0.8517674803733826, -0.16234412789344788, -0.4541010558605194, -0.327351838350296, 0.41252633929252625, 1.084180474281311, 0.8144843578338623, 1.0308642387390137, -0.12260103970766068, -0.32989510893821716, 0.2847435176372528, -1.1448034048080444, -0.4347638487815857, -0.9785125255584717, -1.3306509256362915, -1.0469977855682373, 0.15753833949565887, 0.020037904381752014, 0.18613436818122864, 0.7496630549430847, -0.1882636845111847, 1.0392881631851196, 0.8054189682006836, -0.0697418600320816, -0.3292310833930969, -0.3302677869796753, 0.4017353653907776, 0.19869787991046906, 0.3806149363517761, 1.0982029438018799, -1.0202754735946655, -0.7721350193023682, -0.7568647861480713, -0.28972893953323364, 0.4022205173969269, 0.48868319392204285, -0.08591678738594055, -1.6056143045425415, -0.2551361918449402, 0.5297535061836243, 1.0668166875839233, -0.14022064208984375, 0.007834481075406075, -0.3320310711860657, 0.6777034401893616, 0.43596959114074707, 0.34361857175827026, -0.7270129323005676, 1.4952112436294556, -0.4403669834136963, -0.3263344466686249, 0.010905064642429352, 0.05869925394654274, 1.373576045036316, -0.501533567905426, -0.3169991374015808, -0.41808730363845825, -0.7521241307258606, -0.5401511192321777, 0.7135800123214722, -0.013361876830458641, 1.131570816040039, 0.2399616688489914, 0.1594352275133133, 1.3557718992233276, 0.3782382309436798, -0.19715960323810577, -2.0828301906585693, 0.8106377720832825, 1.2656373977661133, 0.9240629076957703, 0.16541272401809692, 0.5820589065551758, 0.5612357258796692, 0.3734363317489624, -0.04890890419483185, 0.07252602279186249, 0.48138415813446045, -0.37514758110046387, 0.24944430589675903, -0.31203532218933105, 0.10703291743993759, -0.07125525921583176, -0.22467324137687683, -0.20009776949882507, 0.5119684338569641, -1.5193488597869873, -0.6255496144294739, 0.5202793478965759, 0.11208949238061905, -0.8180305361747742, -0.12506969273090363, 0.4691663682460785, 0.3948214054107666, -0.3183309733867645, 0.8130155801773071, -0.18346327543258667, 0.17402273416519165, -0.304281085729599, -1.892533302307129, 0.14214633405208588, -0.005530667491257191, -0.48331665992736816, 0.5784686207771301, -0.7181364297866821, -0.26157665252685547, -0.11416763812303543, 0.9334515929222107, 0.27598893642425537, -0.378689169883728, 0.4258510172367096, -0.0803346186876297, 0.5043810606002808, -0.4872654378414154, 0.150221049785614, 0.9178441762924194, -0.2700008749961853, 0.13863568007946014, 0.5494892597198486, 0.21689416468143463, 0.02773435041308403, 0.37418287992477417, -0.20314523577690125, 0.38370510935783386, -0.5408257246017456, 0.28629645705223083, 0.38213011622428894, 0.2286403328180313, 1.387453556060791, 0.14014601707458496, 0.3284280598163605, 0.5575615167617798, -0.2694619297981262, -1.8156688213348389, 0.36228376626968384, 0.2522474229335785, 0.3922395706176758, -0.9603133201599121, -0.06032317876815796, 0.6168875694274902, -0.025430861860513687, 0.7067226767539978, 0.17768995463848114, 0.8789620399475098, 0.28491121530532837, -1.0217920541763306, -0.04072954133152962, 1.2650785446166992, 0.9436925649642944, 1.4833046197891235, -0.32288435101509094, -0.8424920439720154, -1.12115478515625, 0.2673787474632263, -0.9486635327339172, -0.1301218718290329, 0.5124531388282776, 0.01429081428796053, 1.1261675357818604, -1.5394489765167236, -0.05744033306837082, 0.8117567300796509, -0.047464095056056976, 0.46152475476264954, 0.1934479922056198, 0.3287763297557831, -0.3526234030723572, 0.4299449026584625, -0.26979491114616394, 0.03833211958408356, 0.28473812341690063, -0.2439790517091751, -0.022588610649108887, 1.063872218132019, -0.8806912899017334, 0.2039964646100998, -0.17884038388729095, -0.4462180435657501, -0.10987786203622818, -0.8813746571540833, 0.5666110515594482, -0.43409281969070435, 0.5146914720535278, 1.8938897848129272, -0.016096465289592743, -1.0972511768341064, 0.25104478001594543, -1.1496297121047974, 1.0258692502975464, -0.524582028388977, -0.26849064230918884, -0.3173534870147705, 0.1323150396347046, -0.8052237033843994, 0.5443627834320068, -1.2114416360855103, -0.2216307818889618, -0.7490965723991394, -1.0673047304153442, 0.7686409950256348, 0.52157062292099, 1.2526692152023315, 0.8289296627044678, -0.021042760461568832, 0.04326285049319267, 0.5109070539474487, -0.4017782211303711, -0.6166050434112549, 0.08745496720075607, -0.31315550208091736, 0.7020887136459351, -1.2494291067123413, -0.25645554065704346, 0.4218091070652008, 0.38493022322654724, 0.5748347640037537, 1.3013070821762085, 1.1429671049118042, 2.1892309188842773, -0.6287941336631775, -0.39852115511894226, -0.15812461078166962, -0.6868590712547302, 0.780049741268158, 0.8032482266426086, -0.9318267703056335, -1.0271252393722534, -0.9182759523391724, -0.9622198939323425, 0.6938914060592651, -0.6439119577407837, -0.7091494202613831, 1.748382806777954, 0.5691695213317871, 0.33460843563079834, 0.569008469581604, -0.7962943315505981, 0.3791573643684387, -0.27175140380859375, -0.1067805364727974, -1.1753085851669312, 0.7403972744941711, 0.23102617263793945, 0.3349076807498932, 0.3239513337612152, 0.6271689534187317, -0.3136979639530182, -0.12737111747264862, 0.7889791131019592, 0.40342918038368225, 0.8180778622627258, 0.31351086497306824, 0.28382909297943115, -0.5906009674072266, -0.28668013215065, -0.8727368116378784, -0.30233004689216614, -0.3086502254009247, 0.9069324135780334, -0.3802492022514343, -0.894178032875061, -0.5839646458625793, -0.3629089295864105, -0.36927422881126404, 0.23165464401245117, -0.8513492941856384, 1.0207035541534424, -0.42170608043670654, -0.31478700041770935, -0.03946319967508316, -0.48786646127700806, -0.2522737383842468, -0.045329347252845764, -0.1525050699710846, -0.01892789453268051, -1.775591254234314, 0.10564927011728287, -0.07733899354934692, -1.138338565826416, 0.2208409160375595, 0.07935107499361038, -0.0944683700799942, -1.2489311695098877, -0.5542457699775696, -0.9515981674194336, 0.328921914100647, 0.8130122423171997, -0.6728956699371338, 1.127216100692749, 0.5816655158996582, -1.1743429899215698, 0.3110850155353546, -0.5352941155433655, -0.5194490551948547, -0.8331954479217529, -1.469322681427002, 0.9193122386932373, -0.6796011328697205, 0.6918540596961975, -0.12591128051280975, 0.8404159545898438, -1.1005362272262573, -0.7123515009880066, -0.7018448710441589, -0.09121452271938324, 0.772009015083313, 0.4381406307220459, -0.6858547329902649, 1.5845873355865479, 0.9832070469856262, -0.3350878953933716, 0.05701546370983124, 0.6662681698799133, -0.44446516036987305, 0.19889670610427856, 0.09269337356090546, 0.7977603077888489, 0.4968157112598419, 1.128279447555542, 0.021978341042995453, 1.2923388481140137, 0.5822916626930237, 0.5324717164039612, -0.32297903299331665, 0.4016832709312439, -0.09663555026054382, 0.9467164874076843, -0.5339424014091492, -0.5570205450057983, -0.05472754314541817, -0.7038038969039917, -0.679445743560791, -0.04416337609291077, 0.2747398912906647, -1.4781253337860107, -0.020261920988559723, -1.0761016607284546, 0.9862310290336609, -1.167135238647461, 0.6606630086898804, -0.5336005091667175, -0.3052003085613251, -0.35345369577407837, 0.43118804693222046, -0.1417551338672638, -0.8909218907356262, 0.24630068242549896, 0.5147097706794739, 0.16085223853588104, -1.0680404901504517, 0.38909274339675903, 1.500409483909607, 0.45449069142341614, -1.0500946044921875, 1.868550419807434, 0.6687649488449097, -0.24207580089569092, 0.18548236787319183, -0.14323033392429352, 0.6805738806724548, 0.6547496914863586, -1.1154836416244507, 0.0815105214715004, -1.2727419137954712, 0.927192747592926, -0.44413650035858154, -0.08779215067625046, -0.8355165719985962, -0.062418319284915924, -0.16830025613307953, 0.2917476296424866, 0.9613510966300964, -0.5189769268035889, -0.24937430024147034, 0.9486685991287231, 0.014689730480313301, -0.03641735389828682, -0.002837616950273514, 0.9689722657203674, -0.07564598321914673, -0.8061964511871338, 0.6951403021812439, 0.26176345348358154, -0.8199928402900696, 0.7274096608161926, 0.9046626687049866, -0.08346530795097351, 0.03270302712917328, -0.5309700965881348, -1.46121084690094, 0.23520369827747345, -0.7091416716575623, -0.6909871697425842, 0.544823408126831, -0.7714313268661499, -0.4040580093860626, 0.4927985966205597, 0.8390418887138367, -0.6287755370140076, -0.02127969264984131, -0.06894755363464355, -0.8122812509536743, -1.0316212177276611, 1.5356411933898926, -0.21110183000564575, 2.1473708152770996, 0.02329602837562561, 0.6900224089622498, -1.0667668581008911, -0.09938263893127441, -0.22978027164936066, 0.44295763969421387, 0.2459067702293396, 0.05153419077396393, 0.5293300747871399, -0.862177848815918, -0.19826139509677887, 0.08531950414180756, 0.25657472014427185, 0.44313791394233704, -0.052993275225162506, -1.2197387218475342, 0.2139759063720703, 0.6406848430633545, 0.31226804852485657, -0.20491711795330048, -0.7084100246429443, -1.1197715997695923, 0.7033692598342896, -0.3463691473007202, 0.3891754448413849, -0.08657031506299973, 0.3410405218601227, 0.060446787625551224, -0.49012428522109985, -0.16351428627967834, -0.6999216675758362, 0.41292548179626465, -0.4149501919746399, 0.4880247116088867, 0.2677432894706726, 0.3010753095149994, 0.017056070268154144, -0.4301202893257141, 0.11733588576316833, 0.03047635592520237, -0.5295091271400452, -0.09649114310741425, -1.109056830406189, -0.8401820063591003, -0.5610905289649963, 0.7390492558479309, -0.09593625366687775, 0.4195305109024048, -0.028452176600694656, 0.3508226275444031, -1.4580739736557007, -0.10267338901758194, 0.3092375695705414, -0.37826046347618103, 0.45524561405181885, 1.171463966369629, 1.6652836799621582, 0.3891347348690033, -0.1386769562959671, -0.45325586199760437, 0.7406321167945862, -0.397672563791275, -0.14659109711647034, -0.23375527560710907, -0.9624246954917908, -0.4473665952682495], [-0.2660030424594879, 0.5169986486434937, -1.8136500120162964, -1.0038013458251953, 0.5608078837394714, 0.1942720115184784, 1.022495985031128, 0.5085186958312988, 0.05441991984844208, 0.1840435415506363, -1.0973360538482666, 0.7236887812614441, 0.17701466381549835, 1.1531811952590942, 0.6564359664916992, 1.7719097137451172, 0.7319284081459045, -0.6692825555801392, 0.37713247537612915, 1.67587411403656, -0.27590253949165344, -0.44871649146080017, -0.07661380618810654, 0.8380119204521179, -0.026637397706508636, -0.2766604721546173, -1.0285100936889648, -0.5955503582954407, -1.4550487995147705, -1.1423449516296387, 0.42948824167251587, -0.03547989949584007, 0.829985499382019, 0.9654435515403748, -1.1198780536651611, 0.2557434141635895, 0.7054511904716492, 1.8115181922912598, 0.9627755880355835, 0.5866503119468689, 1.5640161037445068, 0.07596027851104736, 0.10484420508146286, -1.5292348861694336, -0.6695379018783569, -0.7317020893096924, 0.8674051761627197, -1.189716100692749, 0.6841955184936523, -0.25840356945991516, 0.5653988122940063, -1.2755368947982788, 0.1522783637046814, 0.49315330386161804, 1.7534908056259155, -1.1049270629882812, 0.797166645526886, 0.4195269048213959, -0.18894073367118835, -0.5425865650177002, 0.5735137462615967, 0.007533084601163864, -0.6857747435569763, 1.6534727811813354, 0.6419671177864075, -0.44492802023887634, -0.4266597032546997, 0.4560074508190155, -0.1751197725534439, 0.115043506026268, 0.8331315517425537, 0.4476078748703003, -0.7438600063323975, 0.5857361555099487, -1.1612452268600464, -0.11235588043928146, 0.5132369995117188, 0.25812986493110657, 1.284895658493042, -0.1902584731578827, -0.3588119447231293, -0.29613763093948364, 0.8763607144355774, -0.6288920640945435, 0.43442538380622864, 0.3537796437740326, 0.6634334921836853, -0.6951018571853638, -0.651534378528595, 0.6887964010238647, 0.8459024429321289, 0.04331060126423836, 0.23578768968582153, -1.0495564937591553, 0.14476057887077332, -0.5666710138320923, 0.12867073714733124, 0.39043012261390686, -0.9674418568611145, -0.604841947555542, -0.5394454598426819, -0.09978511929512024, -0.37498438358306885, -0.06425587832927704, -0.6873173117637634, 0.9929776191711426, 0.2504105865955353, 0.5585203170776367, 0.05011073499917984, -0.29961344599723816, 0.3129650950431824, 0.6083093285560608, -0.3333019018173218, -1.2350765466690063, -0.10873060673475266, 0.9730703234672546, 0.8434517979621887, -0.45889759063720703, 0.7609685063362122, 0.5804144144058228, 0.25604334473609924, 0.3533269762992859, -0.00978370662778616, 1.0292960405349731, 0.6869054436683655, 0.44213032722473145, -0.9118576049804688, -0.3283618092536926, 0.10971226543188095, -0.29727277159690857, 0.12259510904550552, -0.45934465527534485, 0.06388090550899506, 0.6124584674835205, -0.6532242894172668, 0.960788369178772, -0.2444951832294464, -0.9862377047538757, -0.09119624644517899, -0.27487310767173767, 0.8613286018371582, 0.22954365611076355, -0.9771079421043396, -0.7082914113998413, -0.9658006429672241, -0.9802242517471313, 0.1586235612630844, -0.47102415561676025, -0.22433528304100037, 0.7402671575546265, -0.8320215940475464, -0.035433441400527954, 0.7802154421806335, 0.7360290884971619, 0.34135574102401733, 0.024252399802207947, 0.24540501832962036, -0.04470013827085495, 0.3032285273075104, -0.059539347887039185, 0.683230996131897, -0.09278559684753418, -0.8955672979354858, 0.7594965696334839, 0.1488935649394989, -0.39145398139953613, 0.23089063167572021, 1.1733769178390503, -0.19809919595718384, 0.8369134068489075, 0.28617948293685913, -0.4264407753944397, -0.9959376454353333, 0.8629820346832275, 0.485679030418396, -0.69648677110672, 0.8450661897659302, -0.47367432713508606, -1.320346713066101, -0.8820706009864807, 0.6659635305404663, -0.7672532200813293, 0.5895887017250061, 0.08889247477054596, 0.06746311485767365, -0.8174536824226379, 0.5353104472160339, -0.08691110461950302, -0.5627652406692505, -0.4529780447483063, -0.5814895629882812, -0.6730977296829224, -0.7857767343521118, -0.13282150030136108, -0.7414737939834595, -0.45764490962028503, 0.3682016432285309, -0.8242930173873901, -0.6048378348350525, -0.0005927905440330505, 0.05532967299222946, -0.336373895406723, -0.42005762457847595, 0.810782253742218, -0.5646077394485474, 0.8439634442329407, -0.957263708114624, 0.22518645226955414, -0.3704580068588257, -0.3756183385848999, 1.430661678314209, -0.31598085165023804, -0.6421663165092468, 0.007162046153098345, -0.39765214920043945, -0.9805271625518799, 0.26034045219421387, 0.28859031200408936, -0.7781209945678711, 0.2115372121334076, -0.378513365983963, -0.19663240015506744, 0.32414954900741577, 0.09074217081069946, 0.12163568288087845, -0.12837542593479156, -0.14615516364574432, -0.45529472827911377, -1.0845167636871338, -0.1023375540971756, -0.8168536424636841, -0.8302849531173706, 0.9642910361289978, 0.3021230101585388, -1.1024396419525146, 0.6839702129364014, -0.5160762071609497, 1.0653139352798462, -0.25344282388687134, 1.3861238956451416, 0.7423017024993896, 1.0865107774734497, 0.26640579104423523, -0.025282062590122223, -0.8957992196083069, 0.1940344125032425, 0.7302687168121338, -0.4679216742515564, 0.13007445633411407, 0.6130484938621521, 0.984534740447998, -0.07890234142541885, -0.2848742604255676, -1.0968008041381836, 0.3840453624725342, -0.6995187401771545, -0.8460994958877563, 0.5356665253639221, -0.35176733136177063, 2.050513505935669, 0.5467084646224976, -1.5183727741241455, -0.007027474232017994, 0.3879404067993164, -0.4923149347305298, -0.34078413248062134, -0.671237051486969, -0.7474463582038879, 0.21848087012767792, 0.494197279214859, -0.0909605324268341, 0.9093632698059082, -0.8550547957420349, 0.7471249103546143, -0.15379995107650757, -0.3116343915462494, 0.025811780244112015, 0.205037921667099, -0.20518581569194794, 2.041862964630127, -0.025087282061576843, -1.1888318061828613, 0.49998074769973755, -0.10572139173746109, 0.6148669123649597, 0.04816734418272972, 0.23863941431045532, 0.2787930965423584, 0.4348314702510834, -0.33000773191452026, 0.4473828971385956, -0.07679535448551178, -0.4007018506526947, 0.3457326889038086, 0.18551458418369293, 0.45184263586997986, 0.8646541237831116, -0.5746065974235535, -0.90299391746521, 0.4830213487148285, 0.8243387937545776, 1.2249417304992676, 0.20529183745384216, 0.7433717250823975, -0.16438859701156616, 0.10944323986768723, -0.8223639726638794, -0.5943968296051025, -0.4636046290397644, -0.9239126443862915, -0.7476054430007935, -0.9783945083618164, 0.03781671077013016, 1.038750410079956, 0.29081031680107117, 0.798467755317688, -0.37203070521354675, 0.0024178382009267807, 1.421875, -0.7422256469726562, -0.5417179465293884, 0.09662657231092453, 0.24093014001846313, 0.5056753158569336, 0.6731916069984436, 0.31222569942474365, -0.9499028921127319, -0.29336023330688477, 0.054742634296417236, -0.09860608726739883, 0.3768514394760132, -0.027846748009324074, -0.29772016406059265, -1.8644553422927856, -1.0622583627700806, 0.18908093869686127, 1.0729795694351196, -0.4057575464248657, -0.6875746250152588, 0.5290939211845398, 0.2839353680610657, 0.054734013974666595, 0.3521696627140045, -0.8841450214385986, 0.5038936138153076, -0.8070884346961975, -1.2532758712768555, -0.09072494506835938, 0.597923994064331, 0.8450713753700256, -0.652712881565094, -1.1169846057891846, -0.32539302110671997, -0.6701648235321045, -0.9939460158348083, -0.5446760058403015, 0.0595407634973526, 0.9077613353729248, -0.4205209016799927, 0.002023502951487899, 1.2969688177108765, -0.4022303521633148, 0.010763236321508884, -1.3832484483718872, 1.0916520357131958, 0.1613970845937729, 0.884037971496582, 0.3290785551071167, -0.20245973765850067, 1.1349138021469116, 0.17945550382137299, -0.1840572953224182, 0.22834588587284088, 1.0970531702041626, -0.2607683837413788, -0.5955701470375061, -0.5751575231552124, 0.26698794960975647, -0.19525332748889923, -0.601103663444519, -0.4701377749443054, 0.4537096321582794, -1.239226222038269, -0.4115374982357025, 1.3551980257034302, 0.2502557039260864, -0.28939276933670044, 0.44960319995880127, 1.042801856994629, 0.3198886513710022, -0.2873341739177704, 0.21114106476306915, -0.4483819603919983, 0.042567621916532516, 0.15394793450832367, -0.8529157638549805, -0.07990585267543793, -0.41622915863990784, 0.12238562852144241, 0.6783363819122314, -1.2434977293014526, 0.0758325457572937, -0.021826311945915222, 1.2241215705871582, 0.47377076745033264, -0.5696666240692139, 0.5282676815986633, -0.09552206844091415, 0.2017926722764969, -0.1328052580356598, -0.7340127825737, 1.4790879487991333, -0.005425311625003815, -0.24506957828998566, -0.1858472377061844, -0.306361585855484, 0.698554277420044, -0.1810096949338913, -0.38497963547706604, 0.4921751022338867, -0.6292313933372498, -0.0013118656352162361, 0.10496804118156433, 0.23260311782360077, 0.831822395324707, 0.1338927298784256, 0.7948625087738037, 0.6300117373466492, -0.3366665244102478, -0.1529378741979599, -0.6128740310668945, 0.34998819231987, -0.07877881824970245, -0.857017993927002, -0.12622860074043274, 0.6679669618606567, 0.15174297988414764, 0.5020031332969666, 0.290660560131073, 1.3660706281661987, -0.13739651441574097, -0.0681794062256813, 0.5276390910148621, 1.0652714967727661, 0.37003928422927856, 1.0865564346313477, 0.1375129520893097, -1.137876033782959, -0.19607970118522644, 0.8276941180229187, -0.8488451838493347, 0.19161319732666016, 0.48324957489967346, 0.40129169821739197, 1.2353899478912354, -1.6439481973648071, -0.8529923558235168, 0.5564520359039307, 0.1397036463022232, 0.30796265602111816, 1.252285122871399, -0.015215311199426651, 0.17492356896400452, 0.30397364497184753, -0.10783708840608597, -0.2221374213695526, 0.7730727791786194, 0.33129093050956726, 0.30972376465797424, 0.918064296245575, -1.056854009628296, 0.7648187279701233, -0.7780184745788574, -0.07111728936433792, 0.4252933859825134, -0.5615943670272827, -0.015571804717183113, 0.38278719782829285, 0.25980138778686523, 1.432533621788025, -1.0787845849990845, -0.7948650121688843, 0.6474558711051941, -1.173663854598999, -0.08582963049411774, -0.6255320906639099, -0.47731998562812805, -0.35821568965911865, -0.18874666094779968, -0.18386481702327728, -0.21098899841308594, -0.7013658285140991, -0.5794859528541565, -0.5783801078796387, -0.8341494798660278, 0.4905470609664917, 0.9033621549606323, 1.557504653930664, -0.5128047466278076, 0.020236505195498466, 0.08586982637643814, 0.40350136160850525, -0.6841021776199341, -0.056676723062992096, -0.048331305384635925, 0.2276788353919983, -0.2240411937236786, -1.2641980648040771, -0.549662709236145, 0.37700554728507996, 0.09134622663259506, -0.510248064994812, 0.472611665725708, 0.4378078579902649, 0.8641008734703064, -0.11845582723617554, -0.8568677306175232, 0.6557433009147644, -0.3525933027267456, 0.4589587152004242, 0.9429015517234802, -1.3133796453475952, -0.820937991142273, -0.9118828773498535, -1.1986134052276611, 0.6358237862586975, 0.2915484607219696, -0.5342434048652649, 1.212548851966858, 0.554545521736145, 0.44492360949516296, 0.9371321797370911, -1.2059110403060913, 0.25814077258110046, -0.3646490275859833, -0.40830716490745544, -1.7655376195907593, 1.1263190507888794, 0.5608116984367371, 0.2087230533361435, -0.23224611580371857, 0.12409548461437225, -0.44300442934036255, 0.009766551665961742, -0.9943661689758301, 1.0522723197937012, 0.5533103346824646, 0.9049335718154907, -0.3342013955116272, -0.28531238436698914, -0.3362971842288971, -0.9306595325469971, -0.566498875617981, -0.2545432448387146, 1.3641475439071655, 0.03505729138851166, 0.09698875993490219, -0.3611033856868744, -0.08568232506513596, -0.5907272696495056, -0.6570875644683838, -0.4926285147666931, 0.22012700140476227, 0.3570074737071991, -0.24591076374053955, -0.22930000722408295, 0.46976858377456665, -0.007749849930405617, -0.10044009983539581, 0.36459872126579285, 0.08283005654811859, -1.3421896696090698, 0.3521723747253418, -0.03557388484477997, -1.0908669233322144, -0.4488500654697418, -0.31637752056121826, -0.4114476144313812, -0.9875587821006775, -0.4985702335834503, -1.9448813199996948, 0.9933617115020752, 0.8078666925430298, -0.8552855849266052, 0.9756001234054565, 0.3077164888381958, -1.261850118637085, -0.2973635494709015, -0.10910478979349136, -0.7623297572135925, -0.4942493140697479, -1.0477334260940552, 0.17804266512393951, 0.628944993019104, 0.33574333786964417, -0.20501063764095306, 0.2520366609096527, -1.49660325050354, -0.5097548961639404, -0.596141517162323, -0.566223680973053, 0.6869027614593506, 0.36709678173065186, -0.4404151737689972, 1.1483423709869385, 0.6906683444976807, 0.3261885643005371, 0.06560970097780228, -0.1426423043012619, -0.7011374235153198, 0.7915517687797546, 0.6593140363693237, 0.37225010991096497, -0.016806185245513916, 0.9354159832000732, 0.1225380152463913, 0.8095089197158813, 0.8311992883682251, 0.6478132605552673, -0.1015373170375824, -0.3088197708129883, -0.2417403757572174, 1.4759935140609741, -0.6492127776145935, -0.6769955158233643, -0.6079485416412354, -1.1063350439071655, -0.9829199314117432, -0.7277279496192932, 1.3978954553604126, -0.7840586304664612, -0.433801531791687, -0.7174078226089478, 0.45024484395980835, -0.9117026925086975, 1.5069347620010376, 0.42270904779434204, -0.46049070358276367, 0.36368927359580994, 0.10839834809303284, -0.3419187366962433, -0.6232585310935974, 0.8760153651237488, 0.4132315218448639, -0.2885448932647705, 0.07893963158130646, 0.0847376212477684, 0.5349367260932922, 0.37441280484199524, -0.44239410758018494, 1.9393810033798218, 0.6915857195854187, 0.16518759727478027, 0.048298828303813934, 0.5511053204536438, 0.37437379360198975, 0.6886245608329773, -0.5605112314224243, -0.5003998279571533, -0.6370638012886047, 0.842428982257843, -0.5561941862106323, 0.2525319755077362, -0.8442595601081848, -0.15291006863117218, -0.4154745638370514, 0.670355498790741, 1.0982030630111694, -1.0810259580612183, -0.07439775764942169, 0.9094720482826233, -0.6049157381057739, -0.004835896193981171, -0.15093056857585907, 0.6624516248703003, -0.33018046617507935, -0.06227347254753113, 1.3304853439331055, 0.7366217970848083, -0.8972615003585815, 0.3846006989479065, 0.355051726102829, 0.13787049055099487, -0.17468926310539246, -0.18652625381946564, -0.9231517314910889, 0.0987493023276329, 0.1484174132347107, -1.1701918840408325, 0.6232871413230896, -1.1085678339004517, -0.7962214946746826, -0.0172492116689682, -0.3725554645061493, -0.5067257881164551, -0.4474713206291199, -0.45645079016685486, -0.1585882008075714, -0.38138508796691895, 0.47272980213165283, -0.3426523506641388, 1.309013843536377, -0.13349425792694092, -0.04473094269633293, -1.0696022510528564, -0.12817886471748352, 0.19989606738090515, 0.3723512887954712, -0.16259025037288666, -0.2852625846862793, 0.9035022258758545, 0.09148666262626648, -0.8927236199378967, -0.3036516308784485, -0.31685662269592285, -0.20859138667583466, -0.3644644021987915, -0.21399931609630585, 0.040949299931526184, 1.0490729808807373, 1.0980297327041626, 0.7048647403717041, -1.0412667989730835, -0.6872120499610901, -0.2252800166606903, -0.6994669437408447, 0.9125115871429443, 0.2758055329322815, 0.5657142400741577, 0.21786940097808838, -0.17589835822582245, -0.021680396050214767, -0.0484115406870842, 0.439240425825119, 0.045431531965732574, 0.4922029972076416, 0.5574375987052917, -0.041467733681201935, 0.09444049745798111, -0.5813080668449402, 0.6313037276268005, -0.25007107853889465, 0.06375593692064285, 0.06287574768066406, -0.7779520750045776, -0.5919661521911621, -0.39512741565704346, 0.29663902521133423, 1.0553981065750122, 0.8942986726760864, -0.05579163879156113, 0.18685197830200195, -1.2381762266159058, 0.5211899876594543, -0.0621173195540905, -0.4139135777950287, -0.22526969015598297, 0.5373762249946594, 1.0197316408157349, 0.27434495091438293, 0.05566622316837311, -0.20141837000846863, -0.11351125687360764, -0.3842257559299469, -0.45510271191596985, -0.9752432107925415, -0.3530494272708893, -0.1903584599494934], [0.38498058915138245, 0.8477745056152344, -2.666747570037842, -1.0466417074203491, 1.4858349561691284, -0.033301543444395065, 1.1331743001937866, 0.31832143664360046, 0.8321809768676758, 0.7950726747512817, -0.3919226825237274, -0.4064694941043854, -0.04676933214068413, 1.2741339206695557, 0.8611035943031311, 0.5624397993087769, 0.6215924620628357, -1.135305643081665, 0.8163381814956665, 1.2048332691192627, -0.06614615023136139, 0.002717326395213604, -1.314380168914795, 0.026980450376868248, 0.5425735712051392, 0.8075462579727173, -1.409798502922058, -0.01440754160284996, -0.5769913196563721, -0.6686378121376038, 0.4579665958881378, -1.3322086334228516, 0.35320520401000977, 1.3997730016708374, -1.8003722429275513, -0.33905747532844543, 1.3243192434310913, 1.540400743484497, 0.539577066898346, -0.07804188877344131, 2.014233112335205, 0.5690619349479675, -0.4449789524078369, -0.872448742389679, -0.42534130811691284, 0.13271795213222504, -0.4175681471824646, -0.6662288308143616, 0.4038139879703522, -0.5768283009529114, 0.561273455619812, -1.0363050699234009, 0.6950674057006836, 0.695608377456665, 0.8563533425331116, -0.3506969213485718, 0.4950273633003235, 0.9398349523544312, 0.3573967218399048, -0.37010157108306885, 0.6214407682418823, -0.5485000014305115, -0.44059374928474426, 1.0653165578842163, 0.018726233392953873, 0.20647187530994415, -0.7716876864433289, 0.5366835594177246, 0.24198421835899353, -0.42544880509376526, 0.7319338917732239, -0.4805328845977783, -0.3930802345275879, 0.5638512372970581, -0.8270836472511292, 0.1414014995098114, 0.9013266563415527, 0.6474785208702087, 0.6427106857299805, 0.026391008868813515, -0.6726537346839905, 0.29117780923843384, 1.6072461605072021, -0.4106771945953369, 0.30594879388809204, 0.1640116423368454, 0.16482079029083252, -0.752274215221405, 0.26441898941993713, 1.446046233177185, 0.900784969329834, 0.6787002682685852, 0.09594863653182983, -0.2749066650867462, 0.12629838287830353, -0.35985326766967773, -0.28635814785957336, -0.3769606351852417, -1.2633404731750488, -0.4452941119670868, -1.0878316164016724, -0.654829740524292, -0.03613905608654022, 0.24737873673439026, -0.4904705286026001, 1.3565765619277954, 0.04021672531962395, 0.41445329785346985, -0.33869293332099915, -0.33213356137275696, -0.5886976718902588, 0.7815259099006653, -0.5596820116043091, -0.4340052902698517, -0.05379364639520645, 1.239163875579834, 0.5275267362594604, -0.8085996508598328, 0.2782582640647888, 1.1962366104125977, 0.29583740234375, -0.206883504986763, -0.10238099843263626, 1.158823847770691, 0.9389784336090088, 0.3706047534942627, 0.003012001048773527, -0.6727284789085388, -0.14210422337055206, -0.39387452602386475, -0.34196093678474426, -0.6181981563568115, 0.37423470616340637, 0.11152727156877518, -1.035496473312378, 0.9174805879592896, -0.15287038683891296, -0.937551736831665, 0.2329913228750229, 0.06176231801509857, 0.4577995240688324, 0.01895475573837757, -0.05987715348601341, -0.947616696357727, 0.0077034058049321175, -0.49680861830711365, 0.12514573335647583, -0.33628636598587036, -0.10650258511304855, 0.6415460109710693, -1.0027258396148682, -0.4580971300601959, 1.3619297742843628, 1.036683440208435, -0.29940053820610046, -0.4863617718219757, 0.16005061566829681, -0.4893445372581482, 0.8091374635696411, 0.6871536374092102, 0.5683306455612183, 0.49720174074172974, -1.2515419721603394, 1.756652593612671, 0.1529219150543213, -0.01932533085346222, 0.1258205771446228, 0.946608304977417, -0.26015281677246094, 0.630099356174469, -0.5104109644889832, -0.45146000385284424, -0.25583982467651367, 0.7489207983016968, 0.8284514546394348, -0.4596976339817047, 0.7635964751243591, -0.6110326647758484, -0.612028181552887, -0.6548120975494385, 0.7047761082649231, 0.21507614850997925, 0.5055899024009705, 0.08021658658981323, 0.3488549590110779, -0.752956211566925, 0.4567036032676697, -0.9974684119224548, 0.012873650528490543, -0.1491738259792328, -1.1117236614227295, 0.0689406469464302, -1.5519039630889893, 0.28823432326316833, 0.09309056401252747, -0.4143848717212677, 0.42072126269340515, -1.333075761795044, -0.6401029825210571, 0.8887134790420532, 0.029129520058631897, -0.5681784152984619, -0.09374640136957169, 0.020838294178247452, -0.7791480422019958, 0.5002221465110779, -1.1484705209732056, 0.5656701326370239, -0.5429680943489075, 0.11137790232896805, 1.6250807046890259, -0.27030402421951294, -0.2643046975135803, -0.04834888130426407, 0.2339010089635849, -0.5128438472747803, 0.5883771181106567, 0.29100292921066284, -0.5344502925872803, 0.4391407370567322, -0.18554194271564484, 0.3070002794265747, 0.3581698536872864, -0.5187311172485352, -0.12164914608001709, -0.4473121762275696, -0.015582219697535038, -0.7620205879211426, -1.009142279624939, -0.3161066770553589, -1.4440858364105225, -1.745220422744751, 0.4378563463687897, 0.3394742012023926, -0.9074970483779907, 0.05130744352936745, -0.002075136173516512, 0.5509770512580872, 0.044477708637714386, 1.2045642137527466, 0.45653173327445984, 1.9134622812271118, -0.31698426604270935, -0.19422666728496552, -1.5908825397491455, 0.5914236307144165, 0.75603848695755, -0.5570054054260254, 0.1667238026857376, 0.45835739374160767, 0.9734030961990356, 0.1557488888502121, 0.1367952525615692, -0.560998797416687, -0.06441657245159149, -0.6311628222465515, -0.4359641671180725, 0.5155434012413025, -0.18203367292881012, 1.7221182584762573, 1.1949034929275513, -1.976070761680603, -0.2298361212015152, 0.12755313515663147, -0.528249979019165, 0.23879827558994293, -0.7045286893844604, -0.3894185721874237, -0.04392264410853386, 0.5846378207206726, 0.1868770569562912, 0.8431611061096191, -0.7772135138511658, 0.5280781388282776, -0.21493187546730042, -0.1633104681968689, -0.5097192525863647, -0.3207561671733856, -0.6067590713500977, 1.5015404224395752, -0.6487501859664917, -0.477642685174942, -0.09769310802221298, 0.01583024114370346, 0.0658835619688034, -0.08165346831083298, 0.05379103124141693, 0.8262473940849304, 0.3427714705467224, -0.031463924795389175, 0.6438851952552795, 0.06900563091039658, -0.2657114863395691, 0.6616650819778442, 0.15131452679634094, 0.9556049108505249, 1.1079479455947876, -0.46715953946113586, -0.18905656039714813, -0.5840219855308533, 0.8038531541824341, 0.41578784584999084, 0.6266187429428101, 0.7510857582092285, -0.08928626775741577, -0.40729132294654846, 0.37886252999305725, -1.4781385660171509, -0.0976317748427391, -0.9221776127815247, -1.264265775680542, -0.8521767854690552, 0.2843579053878784, 0.3562301695346832, 0.05668516457080841, 0.1395595371723175, -0.6287189722061157, 0.6017053723335266, 1.3173983097076416, -0.22336208820343018, -0.3813343346118927, 0.16419030725955963, -0.7504013180732727, -0.4063856303691864, 0.028547346591949463, 0.16738317906856537, -0.6245307922363281, 0.25337889790534973, -0.22436705231666565, -0.4893178939819336, 0.8479005098342896, 0.045720793306827545, 0.030945362523198128, -0.840014636516571, -0.9374721050262451, 0.6798499226570129, 0.6655757427215576, 0.2399919331073761, -0.625616729259491, -0.173199862241745, 1.3662731647491455, 0.5144771337509155, 0.6141737103462219, -0.5271021723747253, 1.3306752443313599, -0.7626994252204895, -1.2695680856704712, -0.9720796346664429, 0.688654363155365, 1.1496331691741943, -0.44785064458847046, -0.1530718356370926, -0.08318722993135452, -1.0587354898452759, -0.5830208659172058, -0.27749815583229065, 0.5692156553268433, 0.9600686430931091, 0.16599313914775848, -0.8289068341255188, 1.2944648265838623, -0.26661327481269836, 0.31500446796417236, -1.5084306001663208, 0.3373676538467407, 0.5648759603500366, 0.5486988425254822, -0.23209211230278015, 0.07671026885509491, 1.2219829559326172, 0.07987920194864273, -0.3986019790172577, -0.11383794993162155, 1.3938878774642944, -0.5683620572090149, -0.9938187003135681, -0.43124523758888245, 0.2786344289779663, 0.39316701889038086, -0.21943911910057068, 0.1220955103635788, 0.2929856777191162, -0.5114671587944031, 0.4600071609020233, 1.0787094831466675, 0.0676959753036499, -0.6076127290725708, -0.4020741581916809, 0.141413614153862, 0.046756286174058914, 0.06238477677106857, 1.0245850086212158, -0.8506225943565369, -0.4117370843887329, 0.6537638902664185, -1.3895478248596191, -0.2763325870037079, 0.1332133710384369, -0.5310049057006836, 0.30906468629837036, -0.8674600720405579, 0.2151193469762802, 0.4003315269947052, 1.1897510290145874, -0.3931611478328705, 0.12893816828727722, 0.46773096919059753, 0.09645520150661469, 1.0579142570495605, -0.0024588368833065033, 0.2111215889453888, 1.2458852529525757, -0.6237940788269043, -0.1849859207868576, -0.10002187639474869, 0.17556659877300262, 0.3762950301170349, -0.8946007490158081, -0.015231595374643803, -0.6637422442436218, 0.04898015037178993, -0.5638264417648315, -0.1730721890926361, -0.42514747381210327, 0.4626710116863251, 0.9378321170806885, 0.3567921817302704, 0.6600643992424011, -0.7616814970970154, -0.6970614790916443, 0.756880521774292, 0.1919613778591156, -0.13311384618282318, -0.1947345733642578, -0.1920345276594162, 0.4970778822898865, 0.615959107875824, 0.18442027270793915, 0.18579451739788055, 1.1608760356903076, -0.46675530076026917, -0.6955916285514832, -0.2592131793498993, -0.020802229642868042, 0.8065929412841797, 0.7550696134567261, 0.052313245832920074, -0.47461745142936707, -0.8669780492782593, 0.25938767194747925, -0.39685913920402527, -0.09688066691160202, 1.1316263675689697, 0.8343411684036255, 0.9576730132102966, -1.8049495220184326, -1.0579116344451904, 0.8374481797218323, -0.09158290922641754, 0.1976572424173355, 0.5095705986022949, 0.4676801860332489, 0.2112036645412445, 0.47163158655166626, 0.03414858877658844, -0.13751479983329773, -0.19737884402275085, -0.19997917115688324, 0.10136505216360092, 0.8648913502693176, -0.10919174551963806, 1.1222882270812988, -0.5496350526809692, 0.061993323266506195, 0.23095834255218506, -0.4275583326816559, -0.27428558468818665, 0.38802120089530945, -0.1149977594614029, 1.147668480873108, -0.7864685654640198, -0.6474774479866028, 0.04418906942009926, -0.2472507655620575, -0.40636274218559265, 0.44590604305267334, -0.24437926709651947, -0.3696185052394867, -0.036550264805555344, -0.6057697534561157, 0.5439329147338867, -0.23188024759292603, -0.23180854320526123, -0.8358711004257202, -1.1419841051101685, 0.4440889060497284, 0.388576477766037, 0.7687505483627319, 0.11226716637611389, 0.6024997234344482, 0.4232965409755707, -0.013233326375484467, -0.19678351283073425, 0.4747426509857178, -0.584284245967865, -0.32260411977767944, -0.02382604219019413, -1.4989804029464722, -0.9684926867485046, 0.41122522950172424, 0.46255242824554443, -0.11529728025197983, 0.5222962498664856, 0.8826437592506409, 1.4039521217346191, 0.43998757004737854, -0.49755367636680603, 0.3609521687030792, -0.1063951775431633, 1.0277308225631714, 0.6247286796569824, -0.0013817483559250832, -0.6065016388893127, -1.3225598335266113, -1.2167024612426758, 0.5892977714538574, -0.022891227155923843, -1.6579091548919678, 0.906780481338501, 0.5805593729019165, 0.07643453776836395, 1.0948004722595215, -0.02496509626507759, 0.4580199718475342, -0.1192966029047966, -0.3933354914188385, -1.1508327722549438, 0.6189714074134827, -0.06148475781083107, 0.5477012991905212, -0.09409483522176743, 0.8672662377357483, -0.011301608756184578, 0.7172553539276123, 0.8480778336524963, 0.6409918665885925, 1.2110192775726318, -0.4860716164112091, 0.6942254900932312, -0.2172834277153015, -0.14035579562187195, -0.7523976564407349, -1.4485565423965454, -1.3934612274169922, 0.3187068700790405, -0.6715885996818542, -0.6783575415611267, -0.32586392760276794, -0.6429780125617981, -0.6994114518165588, -0.5611933469772339, 0.6367633938789368, 0.8742473721504211, 0.027186697348952293, -0.4594593346118927, -0.9622414112091064, -0.18852578103542328, -0.46713852882385254, -0.5298980474472046, -0.553763747215271, 0.5977160930633545, -1.5507227182388306, 0.366132527589798, -0.026884673163294792, -0.4108620584011078, 0.3915334939956665, -1.0689165592193604, -0.0028864878695458174, -0.8016063570976257, -1.3420982360839844, -1.3236966133117676, 0.08927152305841446, 1.4913673400878906, 0.017986087128520012, 0.8919916152954102, 0.6901822686195374, -1.2628158330917358, 0.06362500786781311, -0.2662183940410614, -1.2671921253204346, 0.09823229908943176, -1.048008680343628, 0.3708512783050537, -0.5476408004760742, 0.15502852201461792, -0.1656743288040161, 0.6048164963722229, -1.4225990772247314, -0.6892884373664856, -0.3305858075618744, -0.40367037057876587, 0.7081342935562134, 0.9785377383232117, -1.2371429204940796, 1.607354998588562, 0.7219067215919495, 0.6978744864463806, -0.3485722541809082, 0.19336803257465363, -0.7396193146705627, 0.8492804169654846, -0.2639103829860687, -0.3121875822544098, 1.0370168685913086, 0.5818876624107361, 0.050287727266550064, 0.6491165161132812, 0.2602594196796417, -0.4716170132160187, -0.4483836591243744, -0.09774965792894363, -0.7656734585762024, 1.024421215057373, -0.6415332555770874, -0.8243322372436523, -0.5360927581787109, -0.4183410108089447, -1.016819715499878, -0.5015531778335571, 0.6384271383285522, -0.585050106048584, -0.7935870289802551, -0.08430919796228409, -0.04880937188863754, 0.2950870394706726, 1.0051020383834839, 0.2205069214105606, -0.1838306486606598, -0.0633690282702446, 0.07066496461629868, 0.7882154583930969, -0.6831448078155518, 0.7801647782325745, 0.7849733233451843, -0.3422906994819641, -0.3333795964717865, 0.020701471716165543, 1.5831646919250488, 0.45700693130493164, -0.06547871232032776, 1.588207721710205, 0.7846248745918274, 0.10059963911771774, -0.2029774934053421, 0.2693018913269043, 0.4753198027610779, 0.6899654865264893, -0.5050898790359497, 0.65876704454422, -0.742737352848053, 1.1372660398483276, 0.34064340591430664, -0.6226291060447693, -1.1520583629608154, -0.6672013401985168, -0.6842959523200989, 0.25324195623397827, 0.43919914960861206, -1.700846791267395, 0.1498289704322815, 0.722693681716919, -0.33856725692749023, 0.03960245102643967, -0.4972297251224518, 1.6874550580978394, -0.32024306058883667, -0.06243233010172844, 0.5936113595962524, -0.107950858771801, -0.4421713650226593, 0.7639362812042236, 0.4342431128025055, 0.44106221199035645, -0.6021807789802551, -0.3642055094242096, -1.1473809480667114, -0.33062708377838135, -0.08709259331226349, -0.9738045334815979, 0.20664265751838684, -0.7216300964355469, -1.3893052339553833, 0.7346757650375366, 0.43674206733703613, -0.22974391281604767, -0.21057243645191193, -0.4065712094306946, -0.41568607091903687, -0.4416252672672272, 0.1448468118906021, -0.6100507378578186, 1.0688704252243042, -0.3067609965801239, 0.244066521525383, -1.271080732345581, -0.6380565166473389, 0.3445875644683838, 0.20159341394901276, 0.15193502604961395, -0.24694034457206726, 0.15890197455883026, -0.8485349416732788, -1.0306779146194458, -0.007156726438552141, 0.9102832078933716, -0.5001605749130249, -0.1091175451874733, -1.6997581720352173, -0.08920435607433319, 0.4417203366756439, 1.3609989881515503, -0.6346187591552734, -0.9297557473182678, -0.761080801486969, 0.3046077489852905, -0.9275761842727661, 0.7366471290588379, -0.1902359277009964, 0.881888747215271, 0.7895835041999817, -0.5653547644615173, -0.08195801824331284, 0.637723445892334, 0.37796249985694885, -0.36207619309425354, 0.8783352971076965, 0.48520734906196594, 0.23169668018817902, -0.6608421802520752, -0.480467826128006, 0.24771662056446075, -1.175126552581787, 0.16194261610507965, -0.07032115012407303, -0.2659519910812378, -0.6247453093528748, -0.8217701315879822, 0.9506067037582397, 0.7306979298591614, -0.13958029448986053, -0.3967551589012146, 0.9516667127609253, -1.1308720111846924, 0.4770546555519104, -0.38712364435195923, -0.0675068125128746, 0.21122555434703827, 0.36152565479278564, 1.6269785165786743, 0.30341681838035583, -0.04437847062945366, 0.19139106571674347, 0.42033687233924866, -0.03867499157786369, -0.19593122601509094, -1.0271962881088257, -0.3850017189979553, -0.49361738562583923], [-0.4039975702762604, 1.567246437072754, -2.454486131668091, -0.5325807929039001, 0.5764238238334656, 0.4017532467842102, 0.7741941213607788, -0.14197401702404022, -0.3552495241165161, -0.08753342926502228, -0.9303935766220093, 0.0029481202363967896, -0.33598634600639343, 1.6173219680786133, 0.747900664806366, 0.9200094938278198, 0.4641093313694, -0.8951345086097717, 1.56911301612854, 0.8908112049102783, 0.017243029549717903, -0.8655163049697876, 0.2086361199617386, -0.4424656927585602, 0.22916279733181, -0.3552764356136322, -1.362306833267212, -0.730455219745636, -1.0361543893814087, -1.4208428859710693, 0.9504685401916504, -0.41520199179649353, -0.21087898313999176, 0.08418735861778259, -1.5045535564422607, -0.12229745090007782, 1.9611575603485107, 1.2454845905303955, 0.9031251072883606, 0.21070532500743866, 0.9971327781677246, -0.18461330235004425, -0.10014206916093826, -0.7597801685333252, 0.23168182373046875, 0.050428688526153564, 0.23529836535453796, -0.825527548789978, -0.6680246591567993, -0.47272032499313354, 0.33397823572158813, -1.42233145236969, 0.46014389395713806, 0.6379274129867554, 1.6140719652175903, -0.728411078453064, 0.2463342249393463, 0.6997942328453064, 0.6183819770812988, -0.45303571224212646, 0.7877586483955383, 0.09241613745689392, -0.7315456867218018, 0.9259798526763916, -0.28557145595550537, -0.15705068409442902, 0.32439982891082764, 0.40022844076156616, -0.10038051009178162, 0.15369433164596558, -0.13378863036632538, 0.2358972430229187, -0.5133141279220581, 0.43185171484947205, -0.9522096514701843, 0.024854427203536034, 0.3325309157371521, 0.8098448514938354, 0.3053109645843506, 0.44465211033821106, -0.08012189716100693, -0.19430828094482422, 0.011382689699530602, -0.07142001390457153, 1.3355447053909302, 0.19816572964191437, 0.9501034021377563, -0.5408794283866882, -0.9778209328651428, 1.8918840885162354, 0.7143443822860718, 0.3704602122306824, 0.14957928657531738, -0.2125500589609146, 0.10295538604259491, -0.6137621402740479, 0.07757971435785294, -0.8248592615127563, -0.8144166469573975, -0.9405831098556519, -0.5653049945831299, -0.9285401105880737, -0.1658596247434616, -0.29611051082611084, -0.19261297583580017, 1.6039694547653198, 0.14626441895961761, -0.01772366836667061, -0.552929162979126, -0.08225864917039871, -0.07851818203926086, 0.4251571297645569, -0.5013488531112671, -0.3876660466194153, -0.6602245569229126, 1.0347275733947754, 1.6329545974731445, -0.4698294401168823, 0.0498335100710392, 1.5440582036972046, -0.4259217381477356, -0.41471850872039795, -1.2052381038665771, 0.5323293209075928, 0.022712405771017075, 0.5142934322357178, -0.37762895226478577, -0.26475468277931213, 0.03945711627602577, -0.048219989985227585, 0.2513516843318939, -0.28202709555625916, -0.10242238640785217, 0.3809608817100525, -0.8448432087898254, 1.7354048490524292, 0.040460534393787384, -0.7328086495399475, 0.14013373851776123, -0.4383299648761749, 0.38260677456855774, 0.23408930003643036, -0.8558709621429443, -0.8754010796546936, 0.08414161950349808, -0.8716900944709778, 0.2501450181007385, -0.1641089767217636, -0.711392879486084, 0.4123947024345398, -0.6817701458930969, 0.19573554396629333, 0.17040643095970154, 0.013058941811323166, 0.38589322566986084, 0.43256306648254395, 0.3869653046131134, -0.034955598413944244, 0.36550453305244446, 0.39804768562316895, 0.4770476222038269, -0.16131888329982758, -0.8248659372329712, 0.8762059807777405, 0.30886679887771606, 0.05846641957759857, 0.5298073887825012, 0.4716569185256958, 0.4755428433418274, 0.5564373135566711, -0.25946909189224243, 0.058958977460861206, -0.7897709012031555, 0.29668956995010376, 0.2087996006011963, -1.0234540700912476, 1.4751344919204712, -0.3473563492298126, -1.0735329389572144, -1.3485556840896606, -0.594321608543396, -0.16601209342479706, 0.565222978591919, 0.18457773327827454, 0.5408768653869629, -0.9528020620346069, 0.2861503064632416, -0.034295909106731415, -0.48740753531455994, -1.075920820236206, -0.7676175832748413, -0.07219544053077698, -0.6208111643791199, 0.2802962362766266, -0.4215170443058014, -1.3346527814865112, 0.5365539789199829, -1.0874031782150269, -0.22191457450389862, -0.524188756942749, -0.4956459105014801, -0.6620922684669495, -0.38381722569465637, 0.5058380961418152, -0.6951536536216736, 0.9563895463943481, -0.35257309675216675, 0.8019141554832458, -1.0650408267974854, -0.04747883975505829, 1.132233738899231, 0.5013578534126282, -0.77092045545578, 0.6629058122634888, 0.6155647039413452, -1.754852056503296, 0.11093633621931076, -0.17049291729927063, -0.5374531149864197, 0.07160115242004395, 0.23707105219364166, -0.2723887860774994, 0.33096590638160706, 0.3650367259979248, 0.48103007674217224, -0.03736283257603645, -0.8080278635025024, -0.08132879436016083, -0.7636566758155823, -0.0567723885178566, -0.9651663899421692, -0.2889307141304016, 0.9113168120384216, 0.17769229412078857, -1.0399328470230103, 0.11844993382692337, 0.5672493577003479, 0.9541136622428894, 0.5937155485153198, 1.5589210987091064, 0.5430312752723694, 1.297218680381775, -0.3647877871990204, -0.35009947419166565, -0.9628210663795471, 0.2020605355501175, 0.26502227783203125, -0.8060773611068726, -0.10853633284568787, 0.8863605260848999, 1.133660912513733, 0.16687354445457458, -0.21369428932666779, -0.8489271402359009, -0.12384507060050964, -0.4675901532173157, -0.28123167157173157, -0.0930938720703125, 0.03809366375207901, 1.3274437189102173, 0.24032604694366455, -1.6340638399124146, -0.2616470754146576, -0.06077263504266739, 0.027282148599624634, -0.05800097435712814, -1.0677059888839722, -0.02965952828526497, -0.37190067768096924, 0.11418486386537552, 0.44543418288230896, 0.6858100295066833, -0.514374315738678, 0.265575110912323, -0.3443578779697418, -1.3437672853469849, -0.5254268050193787, 1.0245872735977173, -0.07892392575740814, 1.180762529373169, -0.3695715665817261, -1.1273137331008911, -0.5608668923377991, -0.4284776747226715, 1.3601948022842407, 0.9892288446426392, 0.4077052175998688, 0.3767029643058777, 0.27268776297569275, -0.39005303382873535, 0.11620977520942688, -0.022231247276067734, -0.6558383107185364, -0.3584860563278198, -0.18912214040756226, 0.5720157027244568, 1.351871371269226, -0.8508009314537048, -0.4921340346336365, -0.14960886538028717, -0.14047300815582275, 1.3507925271987915, 0.478259414434433, 1.3430159091949463, -0.10775198042392731, 0.30185773968696594, -0.1572149097919464, 0.007214600220322609, -0.8879612684249878, -0.7336682677268982, -0.9259184002876282, -0.4815343916416168, 0.16235876083374023, 0.41120776534080505, 0.58030104637146, 0.3918047547340393, -0.2571081221103668, -0.2395165115594864, 1.109815001487732, 0.33196327090263367, -0.6456356048583984, 0.15872278809547424, 0.07809879630804062, -0.44679224491119385, -0.16345377266407013, 0.5375540852546692, -0.7812602519989014, -0.5322491526603699, -0.3647499978542328, 0.27057355642318726, 0.8485561013221741, -0.3201504051685333, 0.026914376765489578, -1.0431052446365356, -1.0354970693588257, -0.033055420964956284, 1.4310106039047241, 0.01465071551501751, 0.12357978522777557, -0.41067445278167725, 0.36449337005615234, 1.1424480676651, -0.6694301962852478, 0.14788781106472015, 0.4836737811565399, -0.058514710515737534, -0.9616433382034302, -0.3316357433795929, -0.16178172826766968, 0.4642423391342163, -0.4052486717700958, -0.07525541633367538, -0.13578926026821136, -0.7767823338508606, -0.7350539565086365, 0.6452937722206116, -0.1728658676147461, 1.1274386644363403, 0.13500671088695526, -0.1322687864303589, 1.4387929439544678, 0.5294972658157349, 0.5208969116210938, -1.254626989364624, 0.3430858850479126, 0.26400792598724365, 0.7085919976234436, 1.127393364906311, -0.1874728798866272, 0.9043378233909607, 0.48870915174484253, -0.054510097950696945, 0.15439455211162567, 1.2792612314224243, -0.3513813316822052, -0.09666134417057037, -1.1600996255874634, 0.5694308876991272, -0.18490839004516602, -1.2596819400787354, -0.46692025661468506, -0.03846561536192894, -0.9548551440238953, -1.2396724224090576, 1.0850461721420288, 0.03554524853825569, -0.1611175835132599, -0.27477365732192993, 0.6332583427429199, 0.724865198135376, -0.6727511286735535, 0.7172505259513855, -0.7203074097633362, 0.2442987710237503, 0.586006760597229, -0.7819197773933411, 0.28628626465797424, 0.14947904646396637, 0.04129519686102867, 1.1416200399398804, -0.9459152221679688, 0.20694434642791748, 0.23553010821342468, 0.42579320073127747, -0.01754683442413807, -0.24629448354244232, 0.37335026264190674, 0.13206711411476135, -0.2820214629173279, -0.6960124373435974, 0.16349220275878906, 0.6585639715194702, -0.22128458321094513, 0.4003664553165436, 0.40863561630249023, -0.06850827485322952, -0.42491650581359863, -0.6664323210716248, -0.5046391487121582, 0.27483227849006653, -0.3756282329559326, -0.012315968051552773, 0.515313446521759, 0.34181344509124756, 1.2640315294265747, 0.9764572978019714, 0.5228299498558044, 0.8418210744857788, -0.248914897441864, -1.2240043878555298, 0.5824313759803772, 0.2336786538362503, -0.2866970896720886, -0.16156324744224548, 0.3149951994419098, 0.3847567141056061, -0.645534336566925, 0.5506976842880249, 0.40096113085746765, 1.4034453630447388, -0.003375008702278137, 0.04335856810212135, -0.2786387801170349, 0.3842129707336426, 0.6950293779373169, 1.3586347103118896, 0.5633189678192139, -0.2536986470222473, -1.285900354385376, 0.7140961289405823, -1.1041148900985718, 0.041824761778116226, 0.5470398664474487, -0.03526601940393448, 1.4073195457458496, -1.2305330038070679, -0.3095359206199646, 0.26829293370246887, 0.6061891913414001, 0.11233169585466385, 0.2136332243680954, 0.04938485100865364, -0.5476744174957275, 0.3461918532848358, -0.024585027247667313, -0.3442721962928772, -0.34680941700935364, 0.5226778984069824, -0.40611034631729126, 0.7618846893310547, -0.23675484955310822, 0.7724860906600952, -0.6086682677268982, 0.11969837546348572, 0.476201593875885, -0.4870820641517639, 0.11639101058244705, 0.36080026626586914, 0.5020052790641785, 1.8524823188781738, -0.2466898262500763, -0.9044588804244995, 0.16496048867702484, -0.5189434289932251, 0.21099461615085602, -0.2502317726612091, -0.5686947703361511, -0.21708214282989502, -0.39827263355255127, -0.15437966585159302, 0.5276404023170471, 0.14584973454475403, -0.6518329977989197, -0.318987637758255, -1.7239928245544434, 0.09201716631650925, 0.8116918206214905, 1.0519570112228394, 1.0218157768249512, -0.023713624104857445, -0.6829685568809509, 0.31295230984687805, -0.861161470413208, 0.09104073792695999, 0.11844158172607422, -0.13736893236637115, -0.03521313890814781, -1.327728271484375, -0.6674505472183228, 0.9066374897956848, -0.10811369121074677, 0.5661900639533997, 1.0631568431854248, 1.8952594995498657, 1.1382008790969849, -0.41283610463142395, -0.6496155858039856, -0.17172065377235413, -0.6078734397888184, 1.0476537942886353, 1.2059553861618042, 0.3851783871650696, -0.8828200101852417, -0.531592607498169, -1.3995320796966553, 1.185154676437378, 0.05966871976852417, -1.5045808553695679, 0.739669680595398, 0.46880999207496643, 0.7458485960960388, 0.5144268274307251, -0.7926559448242188, 0.8684523105621338, 0.2922024130821228, -0.67107754945755, -1.0329662561416626, 0.5559304356575012, -0.13739052414894104, 0.515920102596283, -0.24987530708312988, 0.643001139163971, 0.3570767343044281, -0.12528148293495178, 0.2682400941848755, 0.40099456906318665, 0.44871318340301514, 0.8048309683799744, -0.07766012102365494, -1.5389714241027832, -0.035143159329891205, -0.7359646558761597, -0.09518631547689438, -0.1726517677307129, 0.7702917456626892, 0.029391175135970116, -0.20077575743198395, -0.8201618790626526, -0.4217565357685089, -0.7241798639297485, -0.0445694662630558, -0.3614499270915985, 1.164170265197754, 0.17311088740825653, -0.4910274147987366, -0.6118150353431702, -0.5163955092430115, -0.013072491623461246, -0.7647776007652283, 0.6215550899505615, 0.18364061415195465, -1.3444983959197998, 0.3681757152080536, 0.2590543031692505, -1.3962959051132202, -0.3218008875846863, -0.692467987537384, 0.4244857430458069, -1.4580979347229004, -1.1846081018447876, -0.40584880113601685, -0.19751764833927155, 0.6692866086959839, -0.6189976930618286, 0.3799407184123993, 0.43729227781295776, -1.3895344734191895, 0.32004761695861816, 0.10841149091720581, -0.36068466305732727, -0.3525806963443756, -1.1340219974517822, 0.5488413572311401, 0.06633763760328293, 0.2665778398513794, -0.27936363220214844, 0.13206133246421814, -1.453223466873169, -0.7343607544898987, -0.7581297755241394, -0.6787225604057312, 0.8203120231628418, 0.479677677154541, -0.9319786429405212, 1.4909268617630005, 0.802114725112915, -0.7575095891952515, 0.2651524245738983, -0.3805404603481293, -0.4601183235645294, -0.2019815742969513, 1.234565258026123, 0.794358491897583, -0.06775301694869995, 1.214990258216858, 0.6300133466720581, 0.8639834523200989, 0.6839208602905273, 1.0464754104614258, -0.6587956547737122, -0.5413029193878174, 0.05363094434142113, 0.6871927976608276, -0.8675839900970459, -0.49811020493507385, -0.4837811291217804, -0.7094342708587646, -0.8167668581008911, 0.11392885446548462, 0.30740177631378174, -0.6177374124526978, 0.6386317014694214, -0.4921976625919342, 1.0242197513580322, -1.2415666580200195, 0.07212020456790924, -0.41477638483047485, -0.7631187438964844, 0.4149789810180664, 0.3981505334377289, 0.5161483287811279, -1.5587645769119263, 0.510187566280365, 0.3262835443019867, -0.3127075135707855, -0.3227311372756958, 0.17868541181087494, 0.8026725053787231, 0.08412285149097443, -0.5939019322395325, 1.4135234355926514, 1.162975549697876, 0.4477703273296356, -0.31307923793792725, 0.2841331660747528, -0.036438390612602234, 0.6525664925575256, -0.16646254062652588, -0.26767411828041077, -0.6154961585998535, 1.599366545677185, 0.10970529168844223, 0.8558030128479004, -0.3473285734653473, 0.2609885632991791, -0.37685132026672363, 0.11157603561878204, 0.877159595489502, -0.6937670707702637, -0.7878459095954895, 1.0469093322753906, -0.5374360084533691, 0.08155490458011627, 0.6568354964256287, 0.5501248240470886, 0.315615177154541, -0.8397009968757629, 0.14829102158546448, 0.73785799741745, -0.6646761298179626, 0.7061139941215515, 0.2796149253845215, -0.2632487118244171, -0.5424882769584656, -0.1443479359149933, -0.5777239203453064, 0.04692975431680679, 0.01610640250146389, -0.6826488375663757, 0.7018227577209473, -0.8798500299453735, -0.8219815492630005, 0.18613694608211517, -0.28000572323799133, -0.7381503582000732, -0.25370684266090393, 0.6438646912574768, -0.17403395473957062, 0.06516223400831223, 0.5488022565841675, 0.17517930269241333, 1.0099555253982544, -0.4278407096862793, 0.20799893140792847, -1.4298772811889648, 0.2900615632534027, 0.4497114419937134, 0.7258549928665161, -0.10819076001644135, 0.21986213326454163, 1.2448430061340332, -0.8256425261497498, -0.8037031292915344, 0.6489945650100708, -0.22675564885139465, 0.4332936704158783, 0.21146170794963837, -0.7471565008163452, 0.10970499366521835, 0.6061800718307495, 1.1520099639892578, -0.13080672919750214, -0.28591683506965637, -0.6437861323356628, 0.3598332405090332, -0.4684072732925415, 0.3129107356071472, -0.3610188961029053, 1.1858800649642944, 0.8586834669113159, -0.5954038500785828, -0.5590359568595886, -0.2659120261669159, 0.45832714438438416, -0.5654654502868652, 0.1180390864610672, -0.16326002776622772, 0.36897698044776917, -0.40472865104675293, -0.5164494514465332, 0.2460404485464096, -0.0729692131280899, -0.4786686897277832, 0.2076711505651474, -1.309252381324768, -0.7410976886749268, -0.5002172589302063, 0.2825775742530823, -0.1691828966140747, 0.1332462877035141, -0.1994689702987671, -0.1710391640663147, -0.9459012150764465, -0.66248619556427, -0.037155598402023315, -0.14749455451965332, -0.02970055863261223, 0.9347957968711853, 1.46122407913208, 0.6748156547546387, -0.23951251804828644, -0.5496573448181152, 0.9322878122329712, -1.1339020729064941, -0.490321546792984, -0.1823890507221222, -0.6758778095245361, -0.34642666578292847], [-0.294297456741333, 0.9849588871002197, -2.4829342365264893, -0.35062623023986816, 1.2614811658859253, 0.32577645778656006, 1.340859293937683, -0.010169191285967827, 0.4539296627044678, 0.022292256355285645, -0.30646955966949463, -0.4606895446777344, -0.05950310081243515, 1.270057201385498, 1.1390721797943115, 0.5391178727149963, 1.1112853288650513, -0.6219075918197632, 0.5893509984016418, 0.6903173327445984, -0.6112375259399414, -0.6391729712486267, -0.022335929796099663, 0.40376564860343933, 0.036744337528944016, 0.5672711133956909, -1.8369044065475464, 0.014313464052975178, -1.0729660987854004, -0.9552651047706604, 0.3360471725463867, -1.1511493921279907, -0.06834288686513901, 1.0962802171707153, -1.5811002254486084, 0.031734999269247055, 1.957174301147461, 0.8091030716896057, 1.157585859298706, 0.30605900287628174, 2.0114455223083496, -0.003364583943039179, -0.5345317721366882, -1.146445870399475, -0.34996965527534485, -0.3411642611026764, 0.4957444369792938, -0.6816248893737793, 0.40048134326934814, -1.2264341115951538, 0.4859485924243927, -1.279980182647705, 0.8593239188194275, 0.7290857434272766, 1.67877995967865, -0.7767730355262756, 0.2857377529144287, 0.33195412158966064, 0.6528258919715881, -0.45701688528060913, 0.6526766419410706, -0.1940673589706421, -0.08654502034187317, 0.6933984160423279, 0.06944729387760162, -0.05775342881679535, -0.1834525316953659, 0.29254472255706787, 0.09422563016414642, -0.27999427914619446, 1.0313868522644043, 0.35851889848709106, -0.8044200539588928, 0.7612705230712891, -1.3842946290969849, 0.3977181613445282, 0.4886569678783417, 0.6645155549049377, 0.41459423303604126, 0.08128035068511963, -0.2486003041267395, -0.37433570623397827, 0.7721210718154907, -0.10716038197278976, -0.07090055197477341, 0.05329081416130066, 0.5567120313644409, -0.37482860684394836, -0.4430778920650482, 1.278422474861145, 0.49194252490997314, -0.15286986529827118, 0.034965574741363525, -0.15750712156295776, -0.5718221068382263, -0.33653077483177185, 0.003519628196954727, -0.5720184445381165, -1.1692434549331665, -0.287375807762146, -0.051065851002931595, -0.6588159203529358, -0.469814270734787, 0.15820001065731049, -1.1649837493896484, 1.1154847145080566, 0.23261012136936188, -0.6340736150741577, -0.26056402921676636, -0.19634641706943512, -0.3946586549282074, 0.5314737558364868, -0.7989981770515442, -0.843295693397522, -1.0019395351409912, 1.112951397895813, 0.8082189559936523, 0.08277805894613266, 0.5412709712982178, 1.0100234746932983, 0.32864999771118164, 0.05681268498301506, 0.010749970562756062, 0.7345442175865173, 0.52118980884552, 0.5181697607040405, -0.6838564276695251, -0.7558575868606567, 0.3054923117160797, -0.654350757598877, 0.7417227625846863, -0.692611813545227, 0.03770720586180687, 0.11886462569236755, -0.6677979826927185, 1.4412262439727783, 0.08678670972585678, -0.8582194447517395, 0.3796501159667969, -0.6127179861068726, 1.2155394554138184, -0.02924969419836998, -0.07955145090818405, -1.0542758703231812, -0.005696096923202276, -1.1712886095046997, 0.028824878856539726, -0.3706335723400116, -0.6578758358955383, 0.12732148170471191, -1.4962050914764404, 0.1986396461725235, 1.1990330219268799, 0.709351122379303, 0.5073480010032654, -0.015971677377820015, 0.040015242993831635, -0.05274417623877525, 0.7046456933021545, 0.03220728039741516, 0.5938267111778259, 0.281513512134552, -0.967643678188324, 0.7800909876823425, 0.11034785956144333, 0.1347183734178543, 0.20503848791122437, 1.3799721002578735, -0.2629888355731964, 0.5587570667266846, 0.0007447856478393078, 0.07203620672225952, 0.05041872337460518, 0.6921157240867615, 0.43999356031417847, -1.1059561967849731, 0.8096775412559509, -0.848170816898346, -1.3687057495117188, -1.1398831605911255, 0.3182772696018219, -0.2440148890018463, 0.33630144596099854, 0.18294717371463776, 0.3088099956512451, -0.7211920619010925, 0.5858455300331116, -0.6836537718772888, -0.41887032985687256, -0.6808134913444519, -0.14300522208213806, -0.07497849315404892, -1.0872621536254883, 0.00832337699830532, 0.2032497525215149, -0.6291077136993408, 0.4465736150741577, -1.0358242988586426, -0.1805913746356964, 1.1095941066741943, -0.21227560937404633, -0.21420538425445557, 0.17195236682891846, 0.5976065993309021, -0.6251026391983032, 0.7118856906890869, -0.4235232174396515, 0.8818439245223999, -0.4978562891483307, -0.18958905339241028, 1.0575860738754272, -0.4115425944328308, -0.2778879404067993, 0.06927180290222168, 0.5643416047096252, -1.162723422050476, 0.4379170536994934, 0.47338250279426575, -0.44152411818504333, 0.10834793746471405, -0.01438521221280098, 0.31606802344322205, 0.5037183165550232, -0.2096351534128189, 0.48317617177963257, 0.0677647590637207, -0.5572630167007446, -0.3076072037220001, -0.4600396156311035, -0.36600327491760254, -1.2508363723754883, -0.7361400127410889, 0.5867645144462585, 0.8608503341674805, -1.2786777019500732, 0.09974811226129532, 0.426354318857193, 0.641211986541748, 0.2535374164581299, 1.0854425430297852, 0.33857834339141846, 1.5361266136169434, -0.41111475229263306, -0.35870835185050964, -1.0090947151184082, 1.243775725364685, 0.807427704334259, -0.9826040863990784, 0.24371230602264404, 0.7409947514533997, 0.7598940134048462, 0.08578101545572281, 0.446550577878952, -0.5180661082267761, -0.36467376351356506, -0.30676281452178955, -1.394495964050293, 0.1676512062549591, 0.13599161803722382, 1.921829342842102, 1.2259734869003296, -1.5526167154312134, -0.266715943813324, 0.05379871651530266, 0.21806158125400543, -0.4141782820224762, -0.6530058979988098, -0.32654884457588196, 0.20521794259548187, 0.40974223613739014, 0.18734009563922882, 0.7607566714286804, -0.8190310597419739, 0.5651307702064514, -0.5032110214233398, -0.27753978967666626, -0.48091697692871094, 0.28209972381591797, -0.42410364747047424, 1.3617377281188965, -0.5408918261528015, -1.2790883779525757, 0.24854817986488342, 0.09232733398675919, 0.43811318278312683, 0.03417529910802841, -0.35757318139076233, 0.2075733244419098, 0.2539278566837311, -0.5426950454711914, 0.3257889747619629, 0.37861600518226624, 0.43242761492729187, 0.13578641414642334, 0.2718867361545563, 0.6765018701553345, 0.832183837890625, -0.5445266366004944, -0.6144790649414062, -0.42482462525367737, 0.3875982463359833, 1.4837777614593506, 0.11525435000658035, 1.0575026273727417, 0.7140464186668396, -0.12336879223585129, 0.10140789300203323, -0.6215750575065613, -0.38744306564331055, -1.1458619832992554, -0.8581308126449585, -0.8983962535858154, 0.208890900015831, 0.011652063578367233, 0.008127579465508461, 0.14120110869407654, -0.3363781273365021, 0.38906601071357727, 1.5752089023590088, -0.23328334093093872, -0.5041293501853943, 0.11726244539022446, -0.9643484950065613, -0.7473412156105042, 0.38894692063331604, 1.1114099025726318, -1.0013525485992432, -0.25292330980300903, -0.014621978625655174, -0.37123748660087585, 0.48242896795272827, -0.3130612373352051, -0.2858305275440216, -0.9149788022041321, -0.3421505391597748, 0.5180373787879944, 1.1914409399032593, -0.059424735605716705, -0.3009405732154846, -0.4010140597820282, 0.2185618132352829, 0.5564079880714417, -0.21476882696151733, -0.6475265026092529, 1.3530287742614746, -0.8882684111595154, -0.7969688177108765, -0.358165979385376, 0.5838065147399902, 0.6334252953529358, -0.5681118965148926, -0.4608999490737915, -0.30657047033309937, -0.705007791519165, -0.4647473990917206, -0.14665254950523376, 0.06151456758379936, 1.5235332250595093, 0.080681212246418, 0.3444789946079254, 1.292126178741455, -0.19369402527809143, 0.1226814016699791, -1.7483323812484741, 0.5359993577003479, 0.8820922374725342, 0.8264431357383728, -0.056913841515779495, -0.16390225291252136, 0.3883691132068634, 0.3870411217212677, 0.324941486120224, 0.2649611234664917, 1.1195954084396362, -0.5044069290161133, 0.06657465547323227, -0.5433419346809387, 0.5773540139198303, -0.24211625754833221, -0.7925764918327332, 0.45644205808639526, -0.13149183988571167, -0.946688175201416, -0.36276593804359436, 1.1661540269851685, -0.4192174971103668, -0.01212373748421669, -0.6501342058181763, 0.2656014561653137, 0.8512361645698547, -0.8638709187507629, 0.8601223230361938, -0.43659108877182007, -0.07080432772636414, 0.3122963309288025, -1.1496670246124268, 0.06930308043956757, -0.07057192176580429, -0.4216388463973999, 0.5850290060043335, -0.6754624843597412, 0.5144742727279663, 0.40636956691741943, 1.0328540802001953, 0.045147303491830826, -0.785398542881012, 0.4894663393497467, -0.04451780021190643, 0.22321942448616028, -0.15566571056842804, 0.6457779407501221, 0.921263575553894, -0.6515629887580872, 0.08333070576190948, -0.348125159740448, -0.09171368181705475, -0.09852451086044312, -0.5057462453842163, 0.2654823660850525, 0.10868332535028458, -0.37852558493614197, -0.12666796147823334, -0.1337822824716568, -0.18688957393169403, 1.1941111087799072, 0.3760424256324768, 0.21984437108039856, 0.22302812337875366, -0.22353853285312653, -1.1239542961120605, 0.6503067016601562, 0.18730077147483826, 0.05306687206029892, -0.8435320258140564, 0.2798854410648346, 0.3260034918785095, -0.11193385720252991, 0.2708168923854828, -0.10050348192453384, 0.8159232139587402, -0.5234367847442627, -0.680482804775238, -0.29223984479904175, 0.41958096623420715, 0.7229635715484619, 1.0879924297332764, 0.1807544231414795, -0.465326189994812, -0.9011367559432983, 0.5644262433052063, -1.2322642803192139, -0.08532629907131195, 1.3602302074432373, 0.6863709688186646, 1.5947662591934204, -1.5751111507415771, -0.9180880188941956, 0.574115514755249, -0.055583782494068146, 0.38550886511802673, 0.8004748225212097, 0.009224208071827888, -0.02673451416194439, 0.2990119457244873, -0.19221371412277222, -0.1304648220539093, -0.6501814126968384, 0.2142970710992813, 0.05112231522798538, 0.7971874475479126, -0.8962085247039795, 0.849563717842102, -0.6886099576950073, 0.06147921830415726, 0.08371727168560028, -0.47633492946624756, 0.013942766934633255, 0.5146242380142212, -0.2144792526960373, 1.903415322303772, -0.8693971037864685, -0.9472066164016724, 0.16989430785179138, -1.0218989849090576, 0.5870518088340759, 0.3546561896800995, -0.49619337916374207, -0.2676297724246979, 0.14957775175571442, -0.5666429400444031, 1.02489173412323, -0.6898539066314697, -0.5849893093109131, -1.2127848863601685, -1.4451854228973389, 0.9738461971282959, 0.9096874594688416, 1.0077296495437622, -0.22537174820899963, 0.03820088878273964, 0.13025391101837158, -0.08228164166212082, -0.29023271799087524, 0.423575222492218, -0.13565801084041595, -0.2270747870206833, 0.09925075620412827, -1.9476937055587769, -0.25265663862228394, 0.19101901352405548, 0.2390020191669464, 0.012512763030827045, 0.7266431450843811, 0.8195861577987671, 1.4550570249557495, 0.09571398049592972, -0.30964425206184387, 0.0943063497543335, -0.7041123509407043, 0.5463906526565552, 0.856090784072876, -0.3038899004459381, -0.7617571949958801, -0.2707825005054474, -0.8039973378181458, 0.3740907907485962, -0.3646966218948364, -1.4660612344741821, 1.0388156175613403, 0.22693851590156555, 0.6903011798858643, 0.0548708550632, -0.3549013137817383, 0.6623106598854065, 0.17172963917255402, -0.26916924118995667, -1.2306557893753052, 0.7869227528572083, 0.43661361932754517, 0.2897043228149414, 0.4080413281917572, 0.9256974458694458, -0.0732736811041832, 0.3533158302307129, 0.3655758798122406, 0.7627233862876892, 0.6244168877601624, 0.313075453042984, 0.3876994848251343, -0.4741816818714142, 0.24821633100509644, -0.08068184554576874, -1.4023172855377197, -0.5491117835044861, 0.500394344329834, -0.1441572606563568, -0.9142904281616211, -0.7153770327568054, -0.26053276658058167, -0.3274611830711365, -0.5280057787895203, -0.303016722202301, 0.8256589770317078, 0.022441616281867027, -0.38779217004776, 0.015396837145090103, -0.390908420085907, 0.21827588975429535, -0.33591121435165405, 0.41844773292541504, 0.8474816679954529, -2.096083641052246, -0.2281646728515625, -0.00809661764651537, -1.0608603954315186, -0.7409272789955139, -0.7073086500167847, 0.5627982020378113, -0.8126484751701355, -1.3231780529022217, -1.0069375038146973, -0.4237821698188782, 1.1222596168518066, -0.434542179107666, 1.1520304679870605, 0.6385204792022705, -1.7981914281845093, 0.6249082684516907, -0.3629106283187866, -1.1686615943908691, -0.4256244897842407, -1.086061954498291, 0.37490326166152954, -0.3185631036758423, 0.11847055703401566, -0.5364798903465271, 0.672408401966095, -1.9681025743484497, -1.2371457815170288, -1.0294474363327026, -0.39334240555763245, 0.6621471643447876, 0.6150094866752625, -0.699198842048645, 2.213083267211914, 0.3635847568511963, 0.03689894452691078, 0.51919025182724, 0.4505397379398346, -0.19790449738502502, 0.19036409258842468, -0.05005311220884323, 0.9854609966278076, 0.8376280665397644, 0.5936527848243713, 0.302194207906723, 0.9720754027366638, 0.3642639219760895, -0.260974258184433, -0.5202882289886475, -0.2645062208175659, -0.12308533489704132, 1.0067505836486816, -0.47209006547927856, -0.8243107795715332, -0.4099988639354706, 0.197118878364563, -1.2200393676757812, -0.29320472478866577, 0.26190197467803955, -0.5074003338813782, 0.22311994433403015, -0.23383967578411102, 0.12803760170936584, -0.46403056383132935, 0.783579409122467, 0.08380821347236633, -0.17978709936141968, -0.44670674204826355, 0.7097876667976379, 0.11974149197340012, -1.125821828842163, 0.41411536931991577, 0.49385055899620056, -0.2858787775039673, -0.435291588306427, -0.25365403294563293, 1.0354466438293457, 0.242187038064003, -0.31683284044265747, 1.3419044017791748, 0.39558809995651245, 0.026815146207809448, -0.1930892914533615, 0.594946563243866, 0.6155312657356262, 0.7459695339202881, 0.02748921513557434, 0.14824801683425903, -0.9520297646522522, 1.3178194761276245, -0.05967262387275696, 0.3985149562358856, -0.567038893699646, 0.19630679488182068, -0.7724217772483826, 0.550002932548523, 0.7246047258377075, -1.883915662765503, -0.28574109077453613, 0.9838868975639343, -0.04134387895464897, -0.22357122600078583, -0.15857218205928802, 1.4656673669815063, -0.6783026456832886, -0.2727908790111542, 0.5131208896636963, 0.01670638471841812, -0.833112359046936, 0.5311478972434998, 0.3021025061607361, 0.03947567939758301, -0.41755884885787964, -0.47329598665237427, -1.2935523986816406, 0.06680058687925339, -0.28392133116722107, -0.32199564576148987, 0.8985700011253357, -0.754708468914032, -1.157322645187378, 0.3085322678089142, 0.4902791976928711, -1.04570472240448, 0.415479451417923, -0.2558830976486206, -0.13294164836406708, -0.3814654052257538, 0.5428376197814941, -1.0232514142990112, 1.2385926246643066, 0.25488343834877014, 0.478882372379303, -0.7464762330055237, -0.3585323691368103, 0.2655653655529022, 0.3005198538303375, 0.08439383655786514, -0.4417092204093933, 1.4086132049560547, -0.3107270300388336, -1.0150545835494995, 0.43514445424079895, 0.14545349776744843, -0.26906463503837585, 0.41448974609375, -1.0630682706832886, 0.0024972744286060333, 0.40691304206848145, 1.1610480546951294, -0.502266526222229, -1.0862034559249878, -0.9459079504013062, -0.1128949373960495, -0.5569848418235779, 0.8059195280075073, 0.0885547325015068, 0.3906518220901489, -0.04563690721988678, -0.3571245074272156, -0.04053832218050957, 0.08333522826433182, 0.25686508417129517, -0.043954815715551376, 0.5142253041267395, 0.624173104763031, -0.27651020884513855, -0.2516382038593292, -0.5830267667770386, 0.004406759515404701, -0.5939382910728455, 0.02211647294461727, 0.21315138041973114, -0.4615631699562073, -0.9036324620246887, -0.7770985960960388, 0.8610363602638245, 0.5282672047615051, -0.06500931829214096, -0.16598257422447205, 0.601161777973175, -0.7464743852615356, 0.7074688076972961, -0.13892638683319092, 0.18787281215190887, 0.4548701345920563, 0.23814068734645844, 1.333891749382019, 0.8501226305961609, 0.4345804750919342, -0.6333063244819641, 0.2256319224834442, -0.7353410720825195, -0.3133803606033325, -0.4921853244304657, -0.38040077686309814, -0.43821388483047485], [0.380515456199646, 0.8804630637168884, -1.4909257888793945, -0.6855615973472595, 0.9061470627784729, -0.7268432974815369, 1.2823817729949951, 0.21898317337036133, 0.2627768814563751, -0.2525000274181366, -1.1043661832809448, -0.21538974344730377, 0.5861181616783142, 0.7929779887199402, 0.502707302570343, 0.9689315557479858, 0.9376448392868042, -0.8000574707984924, 1.054359793663025, 1.4539192914962769, 0.35133615136146545, -0.4979341924190521, -0.0013332185335457325, -0.18221430480480194, -0.23708690702915192, -0.45113417506217957, -0.7293152213096619, -0.19685649871826172, -0.9820813536643982, -1.0188915729522705, 1.0389575958251953, -0.5845215320587158, 0.2930868864059448, -0.5682390332221985, -1.3696377277374268, -0.2220178246498108, 1.828224539756775, 0.8636540174484253, 0.7139690518379211, 0.10388868302106857, 1.810598611831665, -0.17397554218769073, -0.5505977272987366, -2.340137004852295, 0.4043519198894501, -0.10110463947057724, 1.620195746421814, -1.2682005167007446, 0.14595988392829895, -0.6567569375038147, 0.22148169577121735, -0.44075214862823486, -0.010679122060537338, 1.0661025047302246, 0.7114951014518738, -1.0142728090286255, 1.153212547302246, 0.38948750495910645, 0.6360083222389221, -0.8896535038948059, 0.27577340602874756, -0.07662127166986465, -0.7466456890106201, 1.175345540046692, -0.6793477535247803, -0.370024710893631, 0.4205104112625122, 0.46266865730285645, -0.22402392327785492, 0.038834989070892334, 0.2243669033050537, 0.9807053804397583, -0.2892197072505951, 0.8385677933692932, -1.5426074266433716, 0.3242179751396179, 0.6891577839851379, 0.6984122395515442, 0.5239061713218689, 0.558983325958252, -0.8169179558753967, -0.12844742834568024, 0.4177889823913574, 0.28155630826950073, 0.19998124241828918, 0.5990858674049377, 1.0669690370559692, -0.5544193387031555, -0.1349601447582245, 1.9012364149093628, 0.35734620690345764, -0.31525397300720215, 0.7896724343299866, 0.08556165546178818, -0.36465537548065186, -0.505314290523529, 0.6121199131011963, 0.10121165961027145, -1.19119131565094, -0.2673873007297516, -0.6668723225593567, -0.9460668563842773, -0.0007552066817879677, -0.0841992124915123, -0.06960447877645493, 1.2058618068695068, 0.6953808665275574, -0.34107038378715515, -0.7915000319480896, -0.06913016736507416, -0.19290447235107422, -0.18011866509914398, -0.33414366841316223, -0.4546630382537842, -0.5267885327339172, 0.5305677652359009, 1.6493406295776367, -0.869827151298523, 0.27036532759666443, 0.7425394058227539, -0.1404602825641632, -0.7384419441223145, -0.06280124187469482, 0.32236871123313904, 0.3593987226486206, -0.32623758912086487, -1.1682515144348145, -0.2516798973083496, 0.7485212087631226, 0.010609176009893417, 0.3623979389667511, 0.1464129090309143, -0.034834131598472595, 1.097908854484558, -0.7403415441513062, 0.8699283599853516, -0.2796073257923126, -0.7846060395240784, -0.26970601081848145, -0.6058712005615234, 0.6073203086853027, 0.0013697431422770023, -0.4059005081653595, -0.018668660894036293, 0.1448889672756195, -0.5691009163856506, 0.3855118751525879, -0.10874725878238678, -0.8647156953811646, 0.3301503658294678, -0.6121878623962402, -0.3887997567653656, 0.0713413879275322, 0.16158710420131683, 0.5900927186012268, -0.23168794810771942, 0.4801318943500519, 0.18833917379379272, 0.3329924941062927, 0.3231028616428375, 0.5452026724815369, -0.35682782530784607, -0.8622092604637146, 0.6241135597229004, 0.6633266806602478, -0.5281600952148438, 0.06118909269571304, 0.9574565291404724, 0.4730546772480011, 0.6407048106193542, -0.02396230213344097, -0.4106181859970093, -0.32198652625083923, 0.49778440594673157, 0.3420783281326294, -0.18301276862621307, 1.2500168085098267, -0.7153200507164001, -1.0957117080688477, -0.9634302854537964, 0.9227604866027832, 0.5852691531181335, 0.8322737812995911, -0.1464492231607437, 0.5185145735740662, -0.3831997513771057, 0.6353046298027039, -0.013508561998605728, -0.4222088158130646, -0.5947442650794983, -0.3205353617668152, -0.24232681095600128, -0.42575013637542725, 0.4284968376159668, -0.3998948037624359, -0.8261156678199768, 0.5683667063713074, -1.1815776824951172, -1.1405763626098633, -0.18585845828056335, -0.24012848734855652, -0.3439912796020508, -0.38472771644592285, 0.521886944770813, -0.43908968567848206, 0.5807127356529236, -1.0579438209533691, 0.30181798338890076, -1.1726102828979492, -0.0839628204703331, 1.2295342683792114, 0.33507728576660156, -0.5610499978065491, 0.30615147948265076, -0.24707244336605072, -0.9782696962356567, 0.7350807785987854, 1.1426507234573364, -0.44268056750297546, 0.09705371409654617, -0.3358612358570099, 0.12507212162017822, 0.8843255043029785, 0.3870847225189209, 0.8814881443977356, -0.5246861577033997, -0.3227291405200958, -1.2732045650482178, -0.7827884554862976, -0.3084464967250824, 0.06648648530244827, -0.8350538015365601, 0.4869662821292877, 0.1055218055844307, -0.7360489368438721, 0.4449334740638733, -0.08869795501232147, 0.8745348453521729, 0.46119824051856995, 1.0279731750488281, 0.5121182203292847, 0.6251653432846069, -0.008415904827415943, -0.33679598569869995, -0.39728716015815735, 0.5832586884498596, 0.993827223777771, -0.491152286529541, 1.0124990940093994, 1.2139900922775269, 0.9752500653266907, -0.3843807578086853, 0.2985367476940155, -0.6568841338157654, -0.27916619181632996, -1.0253945589065552, -0.1877128630876541, 0.5564565658569336, -0.3529767394065857, 1.9145365953445435, 0.10897457599639893, -1.0663623809814453, -0.3109776973724365, 0.7690114974975586, -0.5470817685127258, -0.6306325197219849, -0.8592293858528137, -0.9052028059959412, -0.012885666452348232, 0.19559191167354584, 0.11656305193901062, 0.33720386028289795, -0.00418481370434165, 0.9084384441375732, -0.2804130017757416, -0.8068053722381592, -0.8207371234893799, -0.5410204529762268, -0.3339082896709442, 1.2243402004241943, 0.22421300411224365, -0.6776334643363953, -0.7124641537666321, 0.5848150849342346, 0.29638180136680603, 0.38150742650032043, -0.7163451910018921, -0.1955324113368988, -0.05124673992395401, 0.5580536723136902, -0.17403288185596466, 0.27072590589523315, -0.3838023245334625, -0.2496391385793686, 0.07920364290475845, 0.46341267228126526, 1.218241810798645, -0.9877119064331055, -1.1007274389266968, -0.07891333848237991, -0.08397480845451355, 1.6293941736221313, 0.37559717893600464, 1.0169485807418823, 0.7747072577476501, 0.14352552592754364, -0.5358700156211853, -0.17308825254440308, -0.7152697443962097, -0.46817710995674133, -0.3110097050666809, -0.6445677876472473, -0.06455469876527786, -0.06762337684631348, -0.3678143322467804, 0.09005807340145111, -0.11847279220819473, 0.014550640247762203, 0.8147478699684143, -0.3264904320240021, -0.45383980870246887, 0.15668520331382751, 0.053137823939323425, -0.9461759924888611, 0.27675795555114746, 1.169603705406189, -0.7974447011947632, -0.5182260870933533, 0.1561117321252823, 0.32179075479507446, -0.09441564232110977, 0.2986644208431244, 0.5698422193527222, -1.3831018209457397, -0.9465277791023254, -0.45971086621284485, 1.4294030666351318, -0.5291990041732788, 0.4961625337600708, 0.19985730946063995, -0.09663521498441696, 0.7932934761047363, 0.4320952594280243, -0.4880329966545105, 1.0107359886169434, 0.0920543298125267, -0.24329113960266113, -0.41172415018081665, 0.4526417851448059, 0.606206476688385, -0.26000142097473145, -0.26160237193107605, -0.33627477288246155, -0.6361537575721741, 0.20060399174690247, 0.17523443698883057, -0.2838890254497528, 0.939533531665802, 0.15049636363983154, 0.4345155954360962, 1.2349021434783936, -0.7701282501220703, 0.5982180237770081, -1.4709185361862183, 0.6453903913497925, 0.8395342826843262, 1.3864845037460327, -0.011748791672289371, -0.06423340737819672, 0.42093583941459656, 0.26443782448768616, -0.31291311979293823, -0.06800166517496109, 1.3633674383163452, -0.17536306381225586, 0.8445192575454712, -0.41747304797172546, 0.2562689781188965, 0.3817981779575348, -0.8054807186126709, 0.4828464984893799, 0.32449963688850403, -1.3870880603790283, -1.0882009267807007, 0.7623897194862366, 0.11332903802394867, -0.19427365064620972, -0.3356446921825409, -0.1729428470134735, 0.7293646335601807, 0.09503158181905746, 0.0398421473801136, -0.7988200187683105, -0.3145158290863037, 0.10507123172283173, -0.5993289351463318, -0.3213527500629425, -0.22124381363391876, 0.09124349802732468, 0.6250158548355103, -1.114362359046936, 0.3836635947227478, -0.6768244504928589, 0.26747316122055054, 0.4519061744213104, -1.0416250228881836, 0.27780681848526, -0.6481860280036926, -0.021282827481627464, -0.06357023119926453, -0.5949326753616333, 1.1796358823776245, -0.24407628178596497, -0.26227614283561707, -0.2120063155889511, -0.01277270819991827, -0.1208273321390152, -0.6291250586509705, -0.2079911231994629, -0.12660180032253265, -0.6410158276557922, 0.010513583198189735, 0.3330850899219513, 0.4793277084827423, 1.9251688718795776, 0.05010282248258591, 0.2544618546962738, -0.1428215503692627, 0.3376884460449219, -1.3067963123321533, 0.29155436158180237, 0.2890368402004242, 0.40345874428749084, -0.07342074811458588, -0.24257011711597443, 0.30945390462875366, -0.4294366240501404, 0.15785279870033264, -0.7935309410095215, 0.2719648778438568, -0.32791948318481445, 0.10370580852031708, 0.26346078515052795, 0.5525121092796326, 1.0425935983657837, 0.47702136635780334, -0.2015419453382492, -0.691848635673523, -0.7813102006912231, -0.15673498809337616, -1.0384663343429565, 0.6745771169662476, 0.8027405142784119, 0.14303939044475555, 1.45142662525177, -1.4439972639083862, -0.44035524129867554, 0.4207761585712433, 0.4754331409931183, 0.4793415665626526, 0.8878300189971924, -0.07416758686304092, 0.6468927264213562, 0.8814554214477539, 0.3243592381477356, -0.4149910807609558, 0.16816464066505432, 0.8173760771751404, -0.11745614558458328, 0.4950670897960663, -0.6254593729972839, 0.3322930634021759, -1.1486597061157227, 0.28271108865737915, 0.19735582172870636, -0.23713542520999908, 0.2130281627178192, 0.3350238800048828, 0.9529521465301514, 1.4990915060043335, -0.8236428499221802, -0.8511589765548706, 0.5840552449226379, -0.9817056655883789, -0.054718952625989914, -1.0795010328292847, -0.43009814620018005, -0.7449175715446472, -0.6532590985298157, -0.32353565096855164, 0.6102994084358215, -0.26191776990890503, 0.12904921174049377, -0.5604975819587708, -0.6968564987182617, 0.856582522392273, 0.45664918422698975, 1.3425110578536987, 0.6427993178367615, 0.3436552882194519, 0.2949742078781128, 1.0623104572296143, -0.7546831369400024, -0.24014966189861298, 0.19517642259597778, 0.004160200245678425, -0.417176216840744, -0.656920850276947, -1.0542649030685425, 0.42655158042907715, 0.752954363822937, -0.31986016035079956, -0.18901130557060242, 1.0564343929290771, 1.1290156841278076, -0.5084846019744873, -0.29130348563194275, 0.28874167799949646, -0.6897023320198059, 0.14555616676807404, -0.12736818194389343, -0.2547672390937805, -0.32517534494400024, -0.5586408972740173, -0.9736126661300659, 1.0599088668823242, 0.21176068484783173, -0.6232684254646301, 0.5288231372833252, 0.10362985730171204, 1.1036792993545532, 0.7774884700775146, -0.7943432927131653, 0.6767989993095398, -0.41107168793678284, -0.0712549090385437, -0.9401594996452332, 0.4457865357398987, -0.2342931479215622, 0.15965934097766876, -0.03236541897058487, 0.13908639550209045, 0.6062063574790955, -0.045884065330028534, -0.1813979297876358, 0.14268898963928223, 0.9427304863929749, 0.3307819962501526, -0.2715981900691986, -0.3622024357318878, 0.06637313216924667, -0.5412538647651672, -0.7742016911506653, -0.9612538814544678, 1.0783880949020386, 0.2844058871269226, 0.025058791041374207, -0.40080526471138, 0.368123859167099, -1.0514799356460571, -0.4336882531642914, -0.8126972913742065, 0.4282751977443695, -0.79441899061203, 0.08440425992012024, -0.7950516939163208, -0.15237665176391602, -0.5641865134239197, -0.34908974170684814, 0.5007704496383667, 0.3170030415058136, -1.7322074174880981, 0.4517403841018677, 0.11776524037122726, -0.6082342267036438, -0.2900397777557373, -0.6543685793876648, 0.1107943058013916, -1.3670426607131958, -0.9732155799865723, -1.3689405918121338, 0.09624088555574417, 0.7370638251304626, -0.5470309853553772, 0.6268671154975891, 1.2096343040466309, -1.11283278465271, 0.5687495470046997, -0.5508925914764404, -0.7967149019241333, -0.22969818115234375, -0.6286446452140808, 0.852053165435791, 0.3979422152042389, 0.6688953638076782, -0.007479977793991566, 0.762019693851471, -1.034530758857727, -0.9425898790359497, -0.7108405828475952, -0.7912149429321289, 1.232108235359192, 0.8550269603729248, -0.6128141283988953, 1.8068584203720093, 0.8022470474243164, -0.3943129777908325, -0.1758069097995758, 0.16587455570697784, -1.265580415725708, 0.4651687443256378, 0.6143988370895386, 0.13684237003326416, 0.4038436710834503, 1.297255039215088, 0.4725302457809448, 0.4025717079639435, 0.512048602104187, 0.763553261756897, 0.1437598615884781, -0.2201586812734604, -0.15290409326553345, 0.38759511709213257, -0.9897051453590393, -0.729276716709137, 0.1391787976026535, -0.5387192964553833, -1.0969864130020142, 0.5278986096382141, 0.372945636510849, -0.7993736267089844, 0.157024547457695, -0.796604335308075, 0.7295801639556885, -0.737803041934967, 0.717494785785675, 0.15721778571605682, -0.40380388498306274, -0.3222275376319885, 0.6991022229194641, 0.12866665422916412, -1.706404209136963, 0.46125537157058716, -0.025702357292175293, -0.6242182850837708, -0.015784963965415955, 0.5879354476928711, -0.2723785638809204, 0.36959192156791687, -0.6058239340782166, 1.1473171710968018, 1.730825662612915, -0.6526924967765808, -0.4145863950252533, 0.4341963231563568, 0.4252454340457916, 0.3611930310726166, -0.06805938482284546, -0.6874803304672241, -1.026660442352295, 1.2459497451782227, 0.4818025529384613, 0.2424306571483612, -0.6674546599388123, 0.010486011393368244, 0.036629870533943176, 0.27340421080589294, 1.235921859741211, -1.1624847650527954, -0.373965322971344, 0.8974652886390686, 0.21238337457180023, 0.18683011829853058, 0.863360583782196, 1.0079559087753296, 0.299417108297348, -0.5423943400382996, 0.15514689683914185, 0.9038910269737244, -0.6228816509246826, 0.5174164175987244, 0.4764711260795593, 0.023560473695397377, -0.0846969410777092, -0.949072003364563, -1.3680810928344727, 0.027259964495897293, -0.09300407767295837, -0.5861075520515442, 0.35085752606391907, -1.3860527276992798, -0.42122820019721985, 0.20628497004508972, 0.12633836269378662, -0.5107364058494568, -0.9291707873344421, 0.044725947082042694, -0.5594902634620667, 0.1427750438451767, 0.6296548843383789, -0.007627992425113916, 1.1292445659637451, -0.4531199336051941, -0.33722248673439026, -1.4888266324996948, -0.5820279121398926, 0.1420775055885315, 0.17508697509765625, -0.4429945945739746, 0.062009476125240326, 0.834658145904541, -0.03644571080803871, -0.472348153591156, -0.06414664536714554, -0.2567155659198761, -0.09425817430019379, -0.3805507719516754, -0.9785142540931702, 0.12304040789604187, 0.35453346371650696, 0.2157105952501297, 0.18181227147579193, -0.8870770335197449, -1.2922558784484863, 0.2929213345050812, -0.34977513551712036, 0.01307774893939495, -0.5650293231010437, 0.5785147547721863, 0.6212148070335388, -0.053207483142614365, -0.28636232018470764, -0.6859336495399475, 0.435686320066452, 0.3359244763851166, 0.26862961053848267, 0.14893804490566254, -0.046275749802589417, -0.5079648494720459, -1.185544490814209, 0.3566269278526306, -0.39490294456481934, -0.6293763518333435, 0.228080153465271, -1.495822548866272, -0.7986130118370056, -0.8882039785385132, 0.014116769656538963, 0.9018784761428833, -0.06460661441087723, -0.09510685503482819, -0.2892525792121887, -1.1246072053909302, 0.4533941149711609, 0.2452293187379837, -0.03403860330581665, 0.5063837766647339, 1.4682809114456177, 1.7461470365524292, 0.8350427746772766, 0.19246292114257812, -0.13674624264240265, 0.3460860848426819, -0.4961531460285187, -0.325196772813797, -0.9871131777763367, 0.15585869550704956, -0.40213626623153687], [0.6463314890861511, 2.217033863067627, -1.9859415292739868, -0.8176897764205933, 0.8060814738273621, 0.1432967633008957, 2.0467770099639893, -0.03600826486945152, 0.3088098466396332, 0.2834240794181824, -0.5967426300048828, -0.3326491415500641, 1.704366683959961, 1.1165496110916138, 0.2297755628824234, 0.5368732810020447, 0.7432666420936584, -0.15761835873126984, 1.7061123847961426, 1.266566276550293, -0.6787086129188538, -0.20638218522071838, -0.3044768273830414, 0.13159514963626862, 0.1985756754875183, 0.44229552149772644, -0.8708475828170776, -0.07677987962961197, -1.0285520553588867, -1.229278802871704, 0.5060560703277588, -0.7436637878417969, 0.35495415329933167, 0.2435232400894165, -0.8678478598594666, -0.34761419892311096, 1.6437677145004272, 1.7919447422027588, 1.129785418510437, 0.32698938250541687, 2.466961145401001, 0.1861858367919922, -0.19483253359794617, -1.0848863124847412, 0.45992955565452576, 1.073733925819397, 0.07313542813062668, -1.6277852058410645, 0.2179228663444519, -0.09478945285081863, 0.3802812993526459, -0.17953671514987946, 1.226615071296692, 0.9613892436027527, 0.6265912652015686, 0.6035524606704712, 1.0501114130020142, 0.8942671418190002, 1.237517237663269, 0.45843595266342163, 0.5846251845359802, 0.2566106617450714, 0.2535499930381775, 0.30404582619667053, 0.7757208347320557, -0.49613383412361145, 0.4726012647151947, 0.05451377481222153, 0.293274462223053, -0.044943612068891525, 0.12178964167833328, -0.28162336349487305, -0.5971421599388123, 0.47316259145736694, -1.4078806638717651, 0.6970593929290771, 1.0756813287734985, 0.9960713386535645, 0.11286008358001709, 0.23660925030708313, -1.0638138055801392, -0.16980883479118347, 0.3992581069469452, -0.3818866014480591, 0.5558611154556274, -0.2806702256202698, 0.1448182314634323, -0.29741954803466797, -0.7296959757804871, 2.2687900066375732, 0.20745787024497986, -0.16552069783210754, -0.20736010372638702, -0.1234801709651947, -0.24552439153194427, -0.3353898525238037, 0.064927838742733, -0.2618619501590729, -0.9144207835197449, -0.4662512540817261, -0.4420839846134186, -0.31961292028427124, 0.07942222058773041, 0.6882199048995972, 0.18864946067333221, 2.1417574882507324, -0.026336882263422012, -0.13240104913711548, -1.497281789779663, -0.2437809258699417, -0.4808898866176605, -0.26208460330963135, -1.0660439729690552, -0.6731483340263367, -0.7221249341964722, 0.6743668913841248, 1.3331880569458008, -0.13372120261192322, -0.014708630740642548, 1.1166611909866333, -0.45739543437957764, -0.13213318586349487, 0.30545657873153687, 0.034869011491537094, 0.5476132035255432, 0.7756628394126892, -0.6168256998062134, -0.09308545291423798, 0.38129329681396484, -0.12274198234081268, 0.6607900857925415, 0.21133574843406677, 0.14719276130199432, 0.4941917955875397, -0.7286136150360107, 0.8751069903373718, -0.06262173503637314, -0.676918089389801, -0.06732091307640076, -0.6190927028656006, 0.1686353236436844, -1.0453755855560303, -0.9027175903320312, -0.9237833023071289, -0.356152206659317, -0.9177513122558594, 0.814233124256134, 0.09549464285373688, -0.521445095539093, 0.29452234506607056, -0.6016185283660889, -0.06829048693180084, -0.06276160478591919, 0.25779709219932556, 0.1554265171289444, -0.09090617299079895, 0.5752056241035461, 0.7717650532722473, 0.753940224647522, 0.5608004927635193, 0.38833168148994446, 0.329290509223938, -0.8262737393379211, -0.11822310090065002, -0.2382439225912094, -0.37630775570869446, 0.6876444816589355, -0.10352355986833572, 0.07243753969669342, 0.799547553062439, -0.5661849975585938, -0.34628981351852417, -0.16331689059734344, 0.77735435962677, 0.4399683177471161, -1.0162278413772583, 1.6659643650054932, -0.5927095413208008, -1.1586556434631348, -1.8158483505249023, -0.06059974804520607, -0.4050838053226471, 0.44067713618278503, -0.1315373182296753, 0.03229500353336334, -0.804429829120636, -0.1285933405160904, -0.05138123407959938, -0.4459565281867981, -0.7494386434555054, -0.5848419070243835, 0.3603503406047821, -1.8247826099395752, 0.5744513869285583, -0.24428382515907288, -0.6672115325927734, 0.7235956192016602, -0.7775393128395081, -1.6008366346359253, 0.632860004901886, 0.4525028169155121, -0.16047652065753937, -0.8395864963531494, 0.5478984713554382, -0.6621560454368591, 1.0985876321792603, -1.1848607063293457, 0.5598607063293457, -0.6381790637969971, 0.24412588775157928, 0.6260877251625061, 0.9449611306190491, -0.5170143246650696, 0.7884307503700256, 0.1546315997838974, -0.9928730130195618, 0.24625420570373535, 0.061031829565763474, -0.2155001163482666, 0.2823575735092163, 0.19468113780021667, -0.40525543689727783, 0.2570341229438782, 0.4931272566318512, 0.3742339015007019, 0.11057081073522568, -1.1689672470092773, -0.271377295255661, -0.8052434325218201, -0.12042688578367233, -0.601125180721283, -1.200927972793579, 1.0380345582962036, 0.8484737277030945, -0.839139461517334, 1.0032784938812256, -0.21813753247261047, -0.15360873937606812, 0.5017044544219971, 1.2728040218353271, 0.5716321468353271, -0.015748921781778336, -0.38700851798057556, -0.9083914160728455, -0.580584704875946, 0.46064674854278564, 0.5163466930389404, -0.4190610349178314, 0.8905637264251709, 1.1212167739868164, 0.6458556056022644, -0.3932957947254181, 0.13458389043807983, 0.2305212765932083, 0.16878214478492737, -1.2335708141326904, -0.3400450646877289, -0.20226150751113892, -0.06876112520694733, 1.8642133474349976, 0.6509633660316467, -1.7395864725112915, -0.22159022092819214, -0.5100565552711487, -0.20082315802574158, -0.44005778431892395, -0.7066136002540588, -0.503054678440094, 0.1454107165336609, 0.8182635307312012, -0.008511872962117195, 0.48372605443000793, -0.6621459126472473, 0.2573443651199341, -0.6828444600105286, -0.36615321040153503, -0.30109158158302307, 0.1340627670288086, -0.241446390748024, 1.1526457071304321, 0.6827200651168823, -1.3034453392028809, -1.2397664785385132, -0.05005471408367157, 0.6549842953681946, 0.5785756707191467, -0.3864629566669464, 1.1216105222702026, 0.4470759928226471, 0.03778820484876633, 0.6332193613052368, 0.596998929977417, -0.18368354439735413, -0.4362822473049164, -0.7511812448501587, 1.021031141281128, 0.6720985770225525, -1.7194703817367554, -0.47715112566947937, -0.6021714806556702, 0.5470523238182068, 1.6248024702072144, 0.9447598457336426, 0.6848503947257996, -0.21505597233772278, 0.42972350120544434, -0.48238101601600647, -0.15394073724746704, -0.4648478925228119, -0.5898407697677612, 0.30542248487472534, -0.6148120760917664, -0.24196399748325348, 0.117125004529953, -0.3090571165084839, 0.10054240375757217, -0.43936899304389954, 0.3887973427772522, 1.1210694313049316, -0.4214249551296234, -0.9190340042114258, -0.9596695303916931, 0.11099953949451447, -1.6177698373794556, 0.7261480689048767, 0.33456388115882874, -0.7093393206596375, -0.3602796494960785, 0.12339404970407486, -0.4532383680343628, 1.0824036598205566, -0.13558568060398102, 0.12245312333106995, -0.6623136401176453, -1.0126051902770996, -0.06393910199403763, 1.0852603912353516, 0.02700675278902054, 0.03901980072259903, -0.5233587622642517, 0.5678070783615112, 0.5167310833930969, 0.11896359920501709, -0.7175685167312622, 0.7237058877944946, -0.08873584866523743, -0.7045019865036011, -0.34841838479042053, 0.27270832657814026, 0.3916851282119751, -0.1572946459054947, -0.06996288150548935, 0.40070173144340515, -0.40387266874313354, -0.039145294576883316, 0.5931557416915894, 0.40859538316726685, 0.7484725117683411, 0.08354688435792923, -0.13115759193897247, 1.0985316038131714, 0.2415717989206314, 0.2504545748233795, -1.868651270866394, 0.9924039244651794, 0.8310431838035583, 0.10767021030187607, 0.757088303565979, -0.31673845648765564, 0.26177892088890076, 0.016235314309597015, -0.2130182832479477, -0.2936716079711914, 1.0609238147735596, 0.19879774749279022, 0.2559848427772522, -0.5425148010253906, 0.2552800178527832, -0.043569013476371765, -0.5972480177879333, 0.014562204480171204, 0.7872418761253357, -0.7768417000770569, -0.59972083568573, 0.5281020402908325, 0.6639194488525391, -0.7561144232749939, -0.7868679165840149, 0.4703467786312103, 0.454534113407135, 1.0250616073608398, 0.21543702483177185, -0.18067598342895508, -0.24449659883975983, -0.48285624384880066, -1.1783932447433472, -0.8626779913902283, 0.23471952974796295, -0.3608139455318451, 0.8430357575416565, -1.2309625148773193, -0.7108620405197144, -0.8301861882209778, -0.23631367087364197, 0.17127902805805206, 0.05893121659755707, 0.2817160487174988, -0.36000093817710876, 0.47506287693977356, -0.2953501343727112, 0.1864432692527771, 0.7424114942550659, 0.30117589235305786, -0.23107144236564636, -0.10864199697971344, 0.3944902718067169, -0.4908546805381775, -1.1061880588531494, -0.42229005694389343, 0.045183561742305756, -0.4087408185005188, 0.4363477826118469, -0.35837045311927795, -0.052891191095113754, 1.288167953491211, 0.9907382130622864, 0.4440658986568451, 0.8650945425033569, -0.6745599508285522, -0.21271875500679016, 0.3691418170928955, 0.6729266047477722, -0.1711277812719345, -0.2836666405200958, -0.31279176473617554, 0.6415077447891235, -0.37355443835258484, 0.7815470099449158, 0.3278253674507141, 1.1394346952438354, 0.2684757113456726, 0.13906338810920715, 0.244298055768013, 0.06638690829277039, 0.6500811576843262, 1.2748961448669434, 0.10011375695466995, -0.3679466247558594, -1.164178729057312, 0.8933787941932678, -1.009009838104248, 0.15666474401950836, 0.8847855925559998, 0.5075422525405884, 0.48941099643707275, -1.7044190168380737, -0.8095146417617798, 1.1034772396087646, 0.6624854207038879, 0.966373085975647, 0.5417951345443726, 0.5596033334732056, -0.9665563106536865, 0.3094058334827423, 0.6618585586547852, -0.22156426310539246, 0.4965750277042389, 0.13722649216651917, -0.6817378997802734, 0.6191042065620422, -0.3574286699295044, 0.5435844659805298, -0.7026324272155762, -0.4687332808971405, -0.3491796553134918, -1.105125069618225, 0.04446062818169594, 0.37529730796813965, -0.12143371254205704, 0.6056402921676636, -0.8761627078056335, -0.7470559477806091, 0.46278366446495056, -0.24469560384750366, 0.12282456457614899, 0.20930486917495728, -0.5739787220954895, -1.1989829540252686, -1.2387027740478516, -0.6431583166122437, 0.9990772008895874, -1.0371171236038208, -0.08042097091674805, -0.22879736125469208, -1.2625707387924194, -0.23140749335289001, 0.2844516634941101, 0.9807982444763184, 1.2365617752075195, 0.23250362277030945, 0.5897045135498047, 0.13663247227668762, -0.7470679879188538, 0.4325753152370453, 0.9413686990737915, -0.18042650818824768, -0.551015317440033, -1.800924301147461, -0.3551774322986603, 0.9953967332839966, 0.49371206760406494, -0.5375394225120544, 0.5245325565338135, 1.3226126432418823, 1.4217760562896729, 0.04048401489853859, -0.9882636070251465, 0.17182782292366028, -0.7251960039138794, -0.04103038087487221, 0.9357579350471497, -0.4030340313911438, -1.0485578775405884, -0.5748511552810669, -0.6548388004302979, 1.5627117156982422, -0.009392746724188328, -1.6595138311386108, 0.856390118598938, 0.8917071223258972, 0.017647290602326393, 0.8516604900360107, -1.1831207275390625, -0.031415536999702454, 0.20909656584262848, -0.4564570486545563, -1.2539441585540771, -0.23897022008895874, 0.2686026096343994, 0.8155367970466614, -0.23586808145046234, 0.30455929040908813, 0.24588948488235474, 0.740100085735321, 0.933753252029419, 0.2008397877216339, 0.1429673433303833, 0.7381823062896729, 1.0414724349975586, -1.128177285194397, -0.008953837677836418, -1.0853757858276367, -0.3692270517349243, -0.3001747727394104, 0.9439622759819031, 0.3815084397792816, -0.9423444867134094, -0.15140952169895172, -0.44149935245513916, -0.2170800268650055, -0.09654160588979721, 0.35368797183036804, 0.8195263147354126, 0.061877232044935226, -0.5530726313591003, 0.037726499140262604, -0.06361953169107437, -0.4644519090652466, -0.1351979821920395, -0.1916673481464386, 0.574018657207489, -1.2713842391967773, -0.36292558908462524, 0.3932623863220215, -0.11107853800058365, 0.15056072175502777, -1.263227939605713, -0.686356246471405, -1.5352368354797363, -1.4008805751800537, -1.013907551765442, -0.11253616213798523, 0.8739627599716187, -0.4627775549888611, 0.3319421410560608, 0.41509106755256653, -1.9169350862503052, 0.4908704161643982, -0.1254025250673294, -1.6762933731079102, -0.06915536522865295, -1.07826566696167, 0.9314826726913452, -0.2710459232330322, 0.10596346110105515, -0.2658955454826355, 0.847135603427887, -1.2168883085250854, -0.8796564340591431, -0.6278655529022217, -0.0544106587767601, 0.857149064540863, 1.0482587814331055, -0.8008912205696106, 1.5990229845046997, 0.59039705991745, -0.1803482472896576, -0.22434104979038239, -0.052649207413196564, -0.7959849238395691, 0.17856289446353912, 0.8464606404304504, -0.37453028559684753, 0.6721672415733337, 0.4283737540245056, 0.18171414732933044, 0.8224841952323914, -0.31511786580085754, 0.15771454572677612, -0.9977979063987732, -0.7377743721008301, -0.13355191051959991, 0.14140769839286804, -1.344067096710205, -0.42971113324165344, -0.25185465812683105, -0.5995156764984131, -0.2940041124820709, 0.4428596496582031, 0.6902731657028198, -0.7317230701446533, 0.14338289201259613, -0.18510869145393372, 0.1693216860294342, -0.5878351926803589, 0.06985463947057724, -0.0704444870352745, -0.25889289379119873, 0.525638997554779, 0.38954058289527893, -0.19230397045612335, -1.0344003438949585, 1.1649433374404907, 0.3592066764831543, -0.18216708302497864, -1.238384485244751, 0.35061895847320557, 1.0082550048828125, -0.6258347630500793, -0.3242955505847931, 1.445150375366211, 1.2838953733444214, -0.24087008833885193, -0.41072744131088257, 0.46798789501190186, -0.6222303509712219, 0.44950228929519653, -0.44202670454978943, 0.2051253318786621, -1.0598137378692627, 1.0662342309951782, 0.7725053429603577, 0.47198033332824707, -0.9145038723945618, -0.2684936821460724, -0.9847790598869324, 0.10958503931760788, 0.40840965509414673, -1.2036606073379517, -0.1391471028327942, 1.6168004274368286, -0.0802844986319542, 0.019691279157996178, 0.11022749543190002, 0.6161277890205383, 0.42207205295562744, -0.5191524624824524, -0.1310022473335266, 0.769042432308197, -0.176613911986351, 0.926643431186676, 0.2580007314682007, -0.18411779403686523, -0.0474766343832016, -1.1397470235824585, -0.9586920738220215, -0.3458692133426666, -0.4513362646102905, -1.2274380922317505, 0.9817428588867188, -1.0553486347198486, -0.27006351947784424, 0.32405000925064087, -0.1572224199771881, 0.05501244217157364, -0.3187451958656311, -0.23517219722270966, -0.11839045584201813, -0.07158688455820084, 0.477676123380661, -0.5314221382141113, 1.1059088706970215, 0.9849990606307983, -0.16324257850646973, -0.7313565611839294, -0.4292270839214325, 0.42243728041648865, 0.24659182131290436, -0.20713922381401062, 0.32596057653427124, 0.9435040354728699, 0.1226930245757103, -0.7291116714477539, 0.10548391938209534, 0.32198286056518555, 0.2980825901031494, -0.05201631039381027, -1.3878673315048218, -0.5103015303611755, 0.6772058606147766, 0.066433846950531, -0.19040492177009583, 0.128299281001091, -1.1137304306030273, 0.24700525403022766, 0.3209737539291382, 0.6161863207817078, -0.762077271938324, -0.1826244443655014, 0.717457115650177, -0.2773754298686981, 0.2710660994052887, -0.6472508907318115, 0.6680856347084045, -1.1680668592453003, 0.4962693154811859, -0.08364148437976837, 0.1216108500957489, -0.3954448401927948, -0.859531044960022, 0.49166545271873474, -1.0904077291488647, -0.3611580729484558, 0.29466062784194946, -0.7154354453086853, -0.8879500031471252, -0.946110188961029, 0.4124904274940491, 0.7763676643371582, 0.07902983576059341, 0.33195269107818604, 0.05252554640173912, -1.6396851539611816, -0.16571645438671112, 0.7552091479301453, -0.230988010764122, 0.8935613036155701, 1.0741219520568848, 1.6486124992370605, 0.6511510610580444, 0.11750242114067078, -0.48044073581695557, 0.3805791437625885, -0.4249834716320038, -0.7117263674736023, -1.1272122859954834, -0.38590872287750244, -0.7347943186759949], [0.7535638213157654, 1.9117498397827148, -1.6695785522460938, -0.63681560754776, 1.0812509059906006, -0.5016387104988098, 0.9615110754966736, -0.091621533036232, -0.461860716342926, -0.5832445621490479, 0.21216246485710144, -0.3810831308364868, 0.7782860398292542, 0.8551731705665588, 0.26162776350975037, 1.053710699081421, 0.9853198528289795, -0.9402648210525513, 0.7066128253936768, 0.734872579574585, 0.2644524872303009, -0.7691105008125305, 0.5166924595832825, 0.04677795246243477, -0.1565219759941101, -0.0018105348572134972, -0.778416633605957, -0.5468343496322632, -0.5179755687713623, -0.6405246257781982, 0.2895210087299347, -0.6931818723678589, -0.2617810070514679, 0.1290433555841446, -2.10400128364563, -0.7653036117553711, 0.9845274686813354, 1.3088467121124268, -0.13807129859924316, 0.21939833462238312, 1.3047131299972534, -0.07297404855489731, -0.08923261612653732, -1.3795520067214966, 0.2019791603088379, -0.6278102993965149, 1.4392621517181396, -0.6869413256645203, 0.3550947606563568, -0.762820303440094, 0.6400864720344543, -0.5329416990280151, 0.37758785486221313, 0.2256946712732315, 1.0332454442977905, 0.362307071685791, 0.5747786164283752, 0.09257857501506805, 1.0094624757766724, -1.053580403327942, 0.48278629779815674, 0.6327385902404785, -0.5225409269332886, 0.8583354353904724, -0.0007934896275401115, 0.5348697304725647, -0.28222882747650146, 0.1791837513446808, 0.17530180513858795, 0.03306994214653969, 0.8507807850837708, -0.0013055512681603432, 0.1337636262178421, 0.2947595715522766, -1.2108715772628784, 0.5806492567062378, 0.49518728256225586, 0.9122148752212524, 0.19478775560855865, 0.5855432748794556, 0.2113782912492752, -0.33171969652175903, 0.5607782006263733, -0.7849369645118713, 0.4903273284435272, 0.20872117578983307, 0.7338047623634338, -0.5462627410888672, 0.08401001989841461, 1.714412808418274, 0.22780083119869232, 0.010716388002038002, 0.49991971254348755, 0.06827285140752792, -0.7593399286270142, -0.5763429403305054, 0.8159151673316956, -0.16974380612373352, -0.9363662600517273, -0.7740476727485657, -0.4868435859680176, -0.4305419325828552, -0.48724380135536194, 0.2789436876773834, -0.420498251914978, 1.1198170185089111, 0.40797585248947144, 0.0649193599820137, -0.7030882239341736, 0.38031119108200073, -0.5252141952514648, -0.5558071732521057, -0.7697855830192566, -0.8371348977088928, -0.7081188559532166, 0.7726935744285583, 1.6570355892181396, -0.33998528122901917, 0.7729536294937134, 1.0913087129592896, -0.2728719711303711, 0.09392036497592926, -0.25252628326416016, 0.041106536984443665, 0.7120424509048462, 1.0585911273956299, -0.7936335802078247, -0.9221293926239014, 0.027014559134840965, -0.5742104053497314, -0.3446612060070038, -0.159025639295578, -0.4114490747451782, 0.7647839784622192, -0.22347135841846466, 0.7739152908325195, -0.5087864398956299, -0.46332335472106934, 0.5673921704292297, -0.1555006355047226, 0.5098618865013123, -0.00291277258656919, -0.5801079869270325, 0.0894533097743988, 0.2820790708065033, -0.04781423136591911, -0.10214045643806458, -0.4016677439212799, -0.6098678112030029, 0.31679201126098633, -0.9637584090232849, 0.4620279371738434, -0.17343178391456604, 0.7043792605400085, 0.34652769565582275, 0.2306821644306183, 0.16648371517658234, 0.48757341504096985, 0.5839377641677856, -0.36949509382247925, 0.799917995929718, 0.20228832960128784, -1.0012459754943848, 0.5253630876541138, -0.05385981500148773, -0.9039281010627747, 0.5751678347587585, 1.0034316778182983, 0.4800838530063629, 0.2634213864803314, -0.8528563976287842, -0.48636671900749207, -0.39854538440704346, 0.3074810802936554, 0.27258265018463135, -0.49020126461982727, 2.068108320236206, -0.7153941988945007, -0.8875502943992615, -0.8872898817062378, 0.21487484872341156, -0.8867482542991638, 0.30650565028190613, -0.34446534514427185, 0.32042261958122253, -0.5077788233757019, 0.4841030538082123, -0.46541792154312134, -0.6648093461990356, -0.34787213802337646, -0.2908247709274292, -0.15411825478076935, -0.6971225142478943, 0.9233537316322327, -0.9733275175094604, -0.6541680693626404, 0.6052546501159668, -1.2559318542480469, -0.2526837885379791, -0.24301770329475403, -0.7162014245986938, 0.05701020732522011, -0.9559584856033325, 0.7527267336845398, -0.19838207960128784, 0.8687087297439575, -0.9252411723136902, 0.9889011383056641, -0.237166628241539, -0.5310733914375305, 1.3766839504241943, -0.19416776299476624, -0.0779314860701561, 0.7069308757781982, -0.3112272620201111, -0.8537226915359497, 0.5564134120941162, 0.1901538372039795, -0.530671238899231, 0.6134459972381592, 0.30639272928237915, 0.12440348416566849, -0.4128260314464569, 0.3667096495628357, 0.004510114900767803, -0.3966793417930603, -1.1549806594848633, -0.5352473855018616, -1.0287659168243408, -0.05172056332230568, -0.1576703041791916, -1.3835278749465942, 0.8565059900283813, 0.10457388311624527, -0.15814052522182465, 0.10294963419437408, -0.5384092330932617, 0.10971696674823761, 0.6904995441436768, 1.3938385248184204, 0.47258496284484863, 0.16118647158145905, -0.455969899892807, 0.12686321139335632, -1.0244606733322144, 0.5707628726959229, 0.682338535785675, -0.2556244134902954, 0.16030187904834747, 1.5786644220352173, 0.869488537311554, 0.15846841037273407, 0.493533194065094, -0.4720028340816498, -0.06247125193476677, -0.8018210530281067, -0.6380189657211304, 0.38388803601264954, -0.48796460032463074, 0.7516100406646729, -0.04656428098678589, -0.7633256316184998, -0.3073592185974121, -0.008227270096540451, -0.5235620141029358, -0.2833225131034851, -0.16599905490875244, -0.653556764125824, -0.6576089262962341, 0.24689881503582, -0.505079984664917, 0.5099807381629944, 0.47106099128723145, 0.4358310401439667, -0.7793297171592712, -0.28117674589157104, -0.33664214611053467, 0.6723239421844482, -0.21359287202358246, 0.5066220164299011, 0.017376577481627464, -1.7715038061141968, -0.7385351657867432, 0.6225942969322205, 0.9378416538238525, -0.09960315376520157, -0.6016668081283569, 0.019133679568767548, 0.35359880328178406, -0.6898414492607117, 0.045811958611011505, 0.1523696482181549, -0.13814085721969604, -0.03949180990457535, -0.29403865337371826, 0.43977007269859314, 0.596062421798706, -0.7447607517242432, 0.12296821922063828, -0.6657362580299377, 0.5777091383934021, 1.2529090642929077, 0.5012194514274597, 1.218967318534851, 0.08297336846590042, -0.028187543153762817, -0.26488804817199707, -0.6235183477401733, -0.5641897320747375, -0.49088677763938904, -1.257942795753479, -0.5769439935684204, -0.09217863529920578, -0.4869633615016937, -0.6980041265487671, 0.9229900240898132, 0.1970800757408142, 0.23365822434425354, 1.2288153171539307, -0.8838627338409424, -0.6510854959487915, -0.5004246830940247, 0.4031071960926056, -0.8054494261741638, 0.3905586004257202, 1.303396224975586, -0.8836987614631653, -0.281470388174057, 0.08495815843343735, -0.22901910543441772, -0.13699333369731903, 0.7520512342453003, -0.22277535498142242, -0.9901431798934937, -0.9497789144515991, -0.5222926735877991, 1.6405450105667114, -0.48675215244293213, 0.244264155626297, -0.37512558698654175, 0.7507225275039673, -0.05945957079529762, -0.04401259124279022, -0.6010438799858093, 0.33132946491241455, -0.15017728507518768, -0.860112726688385, 0.16184432804584503, 0.5881518721580505, 0.7753109931945801, -0.4585076570510864, 0.023073852062225342, -0.4215788245201111, -0.07882490754127502, -0.0345420204102993, 0.3356077969074249, 0.19226087629795074, 1.084675908088684, -0.5889919996261597, -0.3983779549598694, 0.5955767631530762, 0.01647571101784706, -0.04907279089093208, -1.354291319847107, 0.27254098653793335, 0.9117833375930786, 1.4179835319519043, -0.15263092517852783, -0.2309899628162384, -0.01786552183330059, 0.34311869740486145, 0.09776079654693604, 0.39875033497810364, 1.234438180923462, 0.08050059527158737, -0.3871787488460541, -0.578345775604248, 0.21795110404491425, 0.08401303738355637, -0.6791945695877075, 0.0626227930188179, 0.28843802213668823, -0.7350505590438843, -0.46389734745025635, 0.701327383518219, 0.3999786972999573, -0.36033734679222107, -0.4548895061016083, 0.3847426176071167, 0.32106107473373413, -0.28996074199676514, 0.4040450155735016, -0.876906156539917, 0.188741996884346, -0.06831616163253784, -0.5361198782920837, -0.4212976396083832, 0.13377004861831665, 0.5097289085388184, 0.7142461538314819, -1.0886367559432983, -0.46898776292800903, -0.5359156131744385, 0.596531093120575, 0.4435517191886902, -1.0737265348434448, 0.6623729467391968, -0.13071367144584656, -0.3904396593570709, -0.43182238936424255, 0.20173116028308868, 1.1334257125854492, -0.8153356909751892, -0.46401047706604004, 0.21129947900772095, -0.4494021534919739, -0.06617662310600281, -0.5075027346611023, -0.13293449580669403, 0.08831220120191574, -0.26350486278533936, 0.03281271457672119, 0.04207871854305267, 0.03913242369890213, 1.3061705827713013, 0.6223005652427673, 0.659832775592804, 0.5220588445663452, 0.3366571068763733, -1.1101562976837158, -0.10338606685400009, 0.7786939144134521, -0.2164076417684555, -1.0290133953094482, -0.011912651360034943, 0.3453280031681061, -0.29058974981307983, 0.207534059882164, 0.18814533948898315, 0.5229686498641968, 0.39125677943229675, -0.18104495108127594, 0.001776757650077343, 0.12413008511066437, 0.5725439190864563, 1.448377013206482, 0.5122185945510864, -0.5652239918708801, -1.1568408012390137, 0.2009659856557846, -0.9031093120574951, 0.32416343688964844, 0.6321048736572266, 0.3940335214138031, 1.4180086851119995, -1.1020193099975586, -0.5876950025558472, 0.4530557096004486, 0.7210266590118408, 0.11367104202508926, 0.5112661123275757, -0.6174802184104919, -0.6625370383262634, 1.1699070930480957, 0.8873853087425232, 0.15386328101158142, -0.17614932358264923, 0.15294869244098663, 0.018017485737800598, 0.5156971216201782, -0.7156246304512024, 0.9184337258338928, -0.11291014403104782, -0.3212163746356964, 0.06287313252687454, 0.1180395632982254, 0.36984947323799133, 0.4448559284210205, 0.4230399429798126, 1.449851632118225, -0.6859295964241028, -0.7441350817680359, 0.12712246179580688, -0.7266960144042969, 0.6656122207641602, -0.26601505279541016, -0.19410298764705658, -0.09911781549453735, -0.9316328763961792, -0.45878368616104126, 0.3051290512084961, -0.23345647752285004, -0.2676098346710205, -0.31043148040771484, -0.922606348991394, 0.0011541559360921383, 0.3602994680404663, 0.9645581841468811, 0.293317586183548, -0.1592669039964676, 0.8051292300224304, 0.5513259172439575, -0.8585522174835205, 0.30810192227363586, 0.3071098327636719, -0.19913707673549652, 0.04032045602798462, -1.3502839803695679, -0.4614638686180115, -0.027755143120884895, 0.5674855709075928, 0.07486680895090103, 0.4007592499256134, 0.9469889998435974, 1.227467656135559, -0.12027261406183243, -0.18756745755672455, 0.7881416082382202, -0.6832625865936279, 0.2938081920146942, 0.7856616973876953, -0.5176202058792114, -0.0958779975771904, -1.1213593482971191, -1.469735860824585, 1.0148223638534546, -0.2906418740749359, -0.6683081984519958, 0.9821029901504517, 0.5686379075050354, 0.183048814535141, 0.7816236019134521, -0.24922271072864532, 0.37600383162498474, 0.6964736580848694, -0.7130527496337891, -1.2123641967773438, 0.14491403102874756, 0.3760713040828705, 0.12574748694896698, 0.1175563707947731, 0.27581000328063965, 0.5135581493377686, -0.9877010583877563, 0.24590612947940826, 0.1637285053730011, 0.018844572827219963, 0.9368706345558167, 0.6303209066390991, -0.7758406400680542, 0.2799413502216339, -0.4345111548900604, -0.9799968600273132, -0.2696574926376343, 0.7200864553451538, -0.29990795254707336, -0.13703759014606476, -0.8497818112373352, 0.09550422430038452, -0.09874864667654037, 0.28900521993637085, -0.6379825472831726, 0.9421029090881348, 0.6231908798217773, 0.0048542506992816925, -0.17981241643428802, -0.06309769302606583, -0.4146697521209717, -0.25740939378738403, 0.5428737998008728, 0.2026429921388626, -0.9317506551742554, 0.43833494186401367, 0.20553629100322723, 0.10808364301919937, -0.002782699652016163, -0.13171261548995972, 0.4808514416217804, -1.3637902736663818, -0.9223806858062744, -0.43685171008110046, 0.7182719707489014, 1.3227394819259644, -0.7772480845451355, 0.22131074965000153, 0.7162004113197327, -1.4855564832687378, 0.1002935990691185, 0.2525774836540222, -1.4121803045272827, 0.08528806269168854, -0.9392976760864258, 1.1326531171798706, 0.11466526985168457, 0.5116981267929077, -0.26071155071258545, 0.9033222198486328, -1.555173397064209, -1.3879470825195312, -0.4647885859012604, -0.031743183732032776, 0.8586589097976685, 0.9642615914344788, -0.3955176770687103, 0.7597141265869141, 0.6009649038314819, -0.2052137702703476, -0.3382401466369629, 0.3424065113067627, -0.6029096841812134, 0.3367588520050049, 0.3813924491405487, 0.7042654752731323, -0.022528184577822685, 1.0909782648086548, 0.05787046626210213, 1.1331883668899536, 0.05494026094675064, 1.1740188598632812, -0.6824368834495544, 0.19387204945087433, 0.18170040845870972, 0.39267122745513916, -1.4697223901748657, -1.0226151943206787, -0.38389718532562256, -1.2792630195617676, -0.5932184457778931, 0.6498018503189087, 0.8276950716972351, -0.5168827772140503, -0.12722915410995483, -0.44607144594192505, 0.26794376969337463, -1.2127774953842163, 0.17839600145816803, -0.07160890847444534, 0.2352837324142456, 0.37816014885902405, 0.21294309198856354, -0.18611189723014832, -1.3228319883346558, -0.5573621988296509, 0.3433396518230438, 0.1929270327091217, -0.5663954019546509, 1.0672553777694702, 0.5235937833786011, 0.19965305924415588, -0.5598524212837219, 1.4329150915145874, 1.1024398803710938, -0.5308791995048523, -0.4718465209007263, 0.6876365542411804, 0.3637597858905792, 0.5274492502212524, -0.9828736186027527, -0.8471313714981079, -0.31109899282455444, 1.022303581237793, 0.21639679372310638, 0.22047115862369537, -0.41772156953811646, -0.1631782054901123, 0.2840471863746643, -0.06755571067333221, 0.8288448452949524, -0.6925379037857056, 0.13588517904281616, 1.1015554666519165, 0.06094367802143097, -0.4049447178840637, 0.5533140897750854, 0.6359117031097412, -0.23940400779247284, -0.533444881439209, 0.9281613230705261, 0.3869423270225525, -1.2250869274139404, -0.041538089513778687, 0.22355681657791138, -0.5559988021850586, 0.0018913624808192253, -0.41020047664642334, -1.9455320835113525, -0.1135346069931984, -0.40163713693618774, -1.5292253494262695, -0.025592368096113205, -1.3483076095581055, -0.6889318227767944, 0.923907995223999, -0.5769832134246826, -0.8116152882575989, -0.18391577899456024, 0.4030109643936157, 0.39844247698783875, 0.6193679571151733, 0.8134317994117737, -0.5847507119178772, 0.7682149410247803, 0.3365603983402252, 0.06151743605732918, -0.9144759178161621, -0.28020158410072327, 0.3754218816757202, 0.2509397566318512, -0.49464887380599976, -0.4727519452571869, 0.20773357152938843, 0.21513624489307404, -0.48728764057159424, -0.019815918058156967, -0.40039169788360596, 0.9913003444671631, 0.22109360992908478, 0.3070097863674164, -0.01643386483192444, 0.5002360939979553, 0.7279480695724487, -0.11534847319126129, -0.8062735795974731, -0.7495446801185608, 0.21615147590637207, -0.8478332757949829, 1.0802834033966064, -0.30030882358551025, 0.5260644555091858, 0.5324903130531311, 0.006968694739043713, -0.801292896270752, -0.9057397842407227, 0.3630606532096863, -0.4440251290798187, 0.22634950280189514, -0.2608267068862915, -0.08625400811433792, -0.04956753924489021, -0.7022660374641418, 0.5107126832008362, -0.1535748392343521, -0.7373414039611816, 0.09316281974315643, -1.135910987854004, -0.9069554209709167, -0.7063965797424316, 0.28038373589515686, 1.1553188562393188, 0.3689801096916199, -0.07165682315826416, -0.22921122610569, -1.0891262292861938, -0.042200203984975815, -0.0214866790920496, 0.005715488456189632, 0.055847734212875366, 0.7679404020309448, 1.737564206123352, 0.6953933238983154, 0.19066771864891052, -0.1706135869026184, 0.3886670768260956, -0.21603283286094666, 0.23775379359722137, -0.4968268871307373, -0.11673882603645325, 0.12133656442165375], [0.5640549063682556, 1.1389379501342773, -2.1276042461395264, -0.28609490394592285, 0.7042540311813354, 0.23937225341796875, 0.5447288751602173, 0.09483520686626434, 0.42095813155174255, -0.8950446844100952, -0.008732324466109276, -0.5013962388038635, 1.0367152690887451, 0.7014316320419312, 0.19651001691818237, -0.41618046164512634, 0.07972367107868195, -0.8252811431884766, 0.6594791412353516, 1.4509246349334717, -0.3174809217453003, -0.552151620388031, 0.36655548214912415, 1.059190034866333, -0.03023596853017807, -0.2660433351993561, -1.7543827295303345, -0.80734783411026, -0.7430166602134705, -0.7991920113563538, 0.8646371960639954, -1.3013826608657837, -0.10522414743900299, -0.0029858851339668036, -1.217947006225586, -0.6771913766860962, 1.4195139408111572, 0.3255036175251007, 0.5712358355522156, 0.3084537386894226, 1.1064162254333496, 0.191915363073349, 0.25786247849464417, -1.9242390394210815, 0.7085512280464172, 0.4018876254558563, 0.758240282535553, -0.9586529731750488, 0.09346305578947067, -0.8701497912406921, 0.6644817590713501, -0.7916948795318604, 0.36764487624168396, 0.3617798089981079, 1.7145906686782837, 1.0079848766326904, 0.34938350319862366, 0.5057464241981506, 0.925902247428894, -0.5326868891716003, 0.2717078626155853, 0.3038228452205658, -0.013899065554141998, 0.9121122360229492, 0.506791889667511, -0.052658166736364365, -0.09774459153413773, 1.1686418056488037, 0.5851137638092041, -0.07696890830993652, 0.9304167032241821, -0.4123225212097168, -1.1554771661758423, 1.2113507986068726, -0.9578521251678467, 0.3066241443157196, 0.21491149067878723, 0.40567946434020996, -0.16047273576259613, 0.499931275844574, -0.5562044978141785, -0.46374523639678955, 0.7558009624481201, -0.17138902842998505, 0.9520137906074524, 0.3714205324649811, 0.1772167980670929, -0.26998502016067505, -0.5239136219024658, 1.824265718460083, 0.0630275085568428, 0.22267776727676392, 0.09070952236652374, 0.15772339701652527, -0.13527047634124756, -0.32180336117744446, 0.272391676902771, -0.2999175190925598, -0.5947311520576477, -0.6407411694526672, -0.7660523653030396, -0.5015101432800293, -0.20456819236278534, -1.0835437774658203, 0.4269205629825592, 0.8121801614761353, 0.20323042571544647, -0.18410080671310425, -0.6007434725761414, 0.26475846767425537, -0.11662949621677399, -0.2486260086297989, -0.770673394203186, -1.247866153717041, -0.7814152836799622, 0.24124029278755188, 1.0325977802276611, -0.502795398235321, 0.6971182823181152, 0.3995457887649536, -0.7366854548454285, -0.1467750519514084, 0.338117390871048, 0.29540738463401794, 0.24180342257022858, 0.8180651068687439, 0.09279235452413559, -1.3499428033828735, 0.1820620894432068, -0.5610482692718506, 0.34406334161758423, -0.21862702071666718, 0.5977519154548645, 0.49722304940223694, -0.21133637428283691, 0.5127721428871155, 0.30500510334968567, -1.1743110418319702, 0.42973563075065613, 0.07409746199846268, 0.6788187026977539, -0.10534662008285522, -0.1787770688533783, -0.13104432821273804, -0.4652719795703888, -0.8380548357963562, 0.6150928139686584, 0.100380539894104, -0.6336897611618042, 0.2637259364128113, -0.4294903576374054, -0.09048934280872345, 0.19764617085456848, 0.7781780958175659, -0.015885546803474426, -0.07215406000614166, -0.058031339198350906, 0.6794940233230591, 0.3630271255970001, -0.0789409950375557, 1.1073837280273438, 0.20208221673965454, -0.07987336069345474, 0.8793171048164368, -0.40881261229515076, -0.3564496338367462, -0.22789904475212097, 0.3721354901790619, 0.21808680891990662, -0.06715597212314606, -0.5798251032829285, -0.36359256505966187, -0.5322594046592712, 0.8480453491210938, 0.7369809150695801, -0.6908475756645203, 1.8069837093353271, -1.1968982219696045, -1.2166571617126465, -1.2070304155349731, -0.2979305684566498, -0.6063947081565857, 0.29027923941612244, -0.1715508997440338, 0.7358249425888062, -0.2719154357910156, 0.34528395533561707, -0.02139504998922348, -0.5195942521095276, -0.9975832104682922, -0.1446697860956192, 0.5454510450363159, -1.0687214136123657, 0.3338444232940674, -0.5732674598693848, -1.2536462545394897, 0.13876639306545258, -0.573771595954895, -0.5286414623260498, -0.3325536549091339, -0.32258033752441406, 0.1674504429101944, -1.1719298362731934, -0.0643853172659874, -0.28626760840415955, 1.1143090724945068, -1.2757166624069214, 1.1547236442565918, -0.7624929547309875, 0.33137357234954834, 1.5357167720794678, -0.10492290556430817, -1.1684726476669312, 1.059543251991272, -0.22308462858200073, -1.749906063079834, 0.615737795829773, 0.5285334587097168, -0.5810425877571106, 0.23764827847480774, 0.3992873430252075, 0.379120409488678, -0.09261268377304077, -0.23319083452224731, 0.3123742341995239, -0.7636294960975647, -0.45575740933418274, -0.9711589217185974, -0.6669912338256836, 0.4635580778121948, -0.4792138934135437, -1.5333235263824463, 1.0751148462295532, 0.2711871564388275, -1.1987022161483765, 0.6232507228851318, 0.09339794516563416, 0.47966548800468445, 0.26687127351760864, 1.3949511051177979, 0.3269234597682953, 0.23022010922431946, 0.1892411708831787, -0.31038111448287964, -1.1727752685546875, 0.2469344139099121, 1.0998913049697876, -0.5578466653823853, 0.4605313241481781, 0.5895100235939026, 0.7419750690460205, -0.12839893996715546, 0.2832680344581604, -0.0169671680778265, 0.00803949125111103, -0.16067682206630707, -0.3284073770046234, 1.1142407655715942, -0.5807023048400879, 1.1518288850784302, 0.3034060001373291, -0.8183757662773132, -0.5154639482498169, -0.19926586747169495, 0.5990626811981201, -0.7439359426498413, -1.3956574201583862, -0.11370494216680527, 0.16552172601222992, 0.08968523144721985, -0.5472049713134766, 0.9712827801704407, -0.420946329832077, 0.7110676765441895, -0.6768267750740051, -0.4614501893520355, -0.4448243975639343, 0.3382222652435303, -0.14983788132667542, 1.2447229623794556, -0.22927486896514893, -0.9612022042274475, -0.860357403755188, -0.1635691523551941, 0.21914927661418915, 0.17780669033527374, 0.26030048727989197, 0.22534526884555817, -0.3938039541244507, -0.10431239753961563, -0.09946396946907043, 0.030660925433039665, 0.026269514113664627, -0.6409268975257874, -0.043085962533950806, 1.134766936302185, 1.2793755531311035, -1.1140832901000977, -1.3334851264953613, -0.20412388443946838, 0.7968428730964661, 1.1119087934494019, 1.2181681394577026, 1.562622308731079, 0.19995343685150146, 0.7827876210212708, -0.30084487795829773, 0.23283426463603973, 0.0395902581512928, -0.7458412051200867, -0.5524143576622009, -0.45169612765312195, -0.22844403982162476, -0.028919382020831108, -0.407141774892807, 0.9319432377815247, 0.19927403330802917, 0.5459940433502197, 1.261197805404663, 0.42044058442115784, -1.2463055849075317, -0.3552084267139435, -0.34525129199028015, -0.64422607421875, 0.2865912914276123, 0.7260857820510864, -0.7092703580856323, -0.5000350475311279, -0.6307355165481567, 0.016390454024076462, 0.8992164134979248, 0.33433645963668823, -0.24537643790245056, -1.0835314989089966, -0.9816073179244995, -0.3640778660774231, 0.4072050154209137, -0.7207036018371582, 0.823469877243042, -0.2541351020336151, 0.9177435040473938, 0.3615871071815491, 0.23928125202655792, -0.6245490312576294, 1.0741578340530396, 0.1779487282037735, -0.8816838264465332, 0.5498883724212646, 0.43431907892227173, 1.2272131443023682, -0.44579359889030457, 0.1391201615333557, -0.32340362668037415, 0.18800145387649536, -0.5213172435760498, 0.6888860464096069, -0.07691295444965363, 1.0518490076065063, -0.16740986704826355, 0.2412949502468109, 0.9820985198020935, -0.5748986601829529, 0.03451740741729736, -1.5884352922439575, 0.7799105048179626, 0.3771542012691498, 0.7303506135940552, 0.09238190203905106, -0.39330023527145386, 0.18656672537326813, -0.6762600541114807, -0.13868685066699982, 0.21363139152526855, 0.8019233345985413, 0.5359527468681335, -0.07263558357954025, -0.07000011950731277, 0.5295908451080322, -1.1458337306976318, -0.6651559472084045, -0.14307084679603577, -0.40451768040657043, -1.451661467552185, -0.6165189743041992, 0.6976678967475891, 0.3353031575679779, -0.588448703289032, -0.48546189069747925, 0.3275916576385498, 0.8626909255981445, 0.49362069368362427, 0.11726102977991104, -0.9491744637489319, -0.46072089672088623, -0.010239135473966599, -0.9553648829460144, -0.1873084008693695, 0.06658229231834412, 0.20638807117938995, 0.10805513709783554, -1.0612612962722778, -0.3462061285972595, -0.17694169282913208, 0.5270137190818787, 0.9108430743217468, -0.05549505725502968, 0.7369107007980347, -0.14136618375778198, 0.10547958314418793, -0.12849007546901703, 0.31869369745254517, 1.702864646911621, -0.7293291091918945, 0.2697809338569641, 0.10905184596776962, -0.4496775269508362, 0.13807646930217743, -0.6462560296058655, -0.20804502069950104, 0.8397461771965027, -0.046752382069826126, 0.30469372868537903, 0.1588706225156784, 0.5170449614524841, 1.6687101125717163, 0.5459677577018738, 0.08221578598022461, 0.6517168879508972, -0.2097797393798828, -1.3502774238586426, 0.24123820662498474, -0.238305002450943, 0.052020907402038574, -0.6403497457504272, 0.11292216926813126, 0.20520111918449402, -0.0855523943901062, 0.707481861114502, 0.8054742813110352, 1.565783977508545, 0.5245651602745056, 0.20588940382003784, -0.15609440207481384, 0.25496572256088257, 1.061790943145752, 1.3934121131896973, 0.6758409738540649, -0.21542921662330627, -1.2788290977478027, 0.9644216895103455, -0.37416166067123413, 0.44345226883888245, 0.7485635876655579, -0.030895447358489037, 1.3874949216842651, -1.2276884317398071, -0.8997879028320312, 0.5298644304275513, -0.1680229753255844, 0.3184354603290558, 0.6190379858016968, 0.32501259446144104, -0.8012784123420715, 0.8898330330848694, 0.33825692534446716, 0.2638460397720337, 0.19745735824108124, 0.028104785829782486, -0.49510443210601807, 0.3437515199184418, 0.18220199644565582, 0.5057740807533264, -0.5735883712768555, 1.1307705640792847, -0.6944475173950195, -0.3854181170463562, 0.5745425224304199, 0.1708909571170807, 0.021698346361517906, 1.232267141342163, -0.4329889118671417, -1.3895694017410278, -0.13856150209903717, -0.6236681938171387, 0.6721748113632202, -0.28257980942726135, -0.2495448738336563, -0.19761395454406738, -1.2857089042663574, -0.3112446069717407, 0.9475558996200562, 0.705146312713623, -0.7027922868728638, -0.35876601934432983, -0.5430841445922852, 0.08700808137655258, -0.06918947398662567, 0.2994900345802307, -0.4473317265510559, 0.7672997117042542, -0.01083772350102663, -0.29423603415489197, -1.042965054512024, -0.0130357276648283, 0.656170666217804, -0.5229264497756958, 0.3957027196884155, -1.2273427248001099, -0.698582649230957, 0.2630215585231781, 0.05057171732187271, 0.0579543262720108, 0.4276205003261566, 0.9894260764122009, 1.2518631219863892, -0.2744380831718445, 0.07263319194316864, -0.32112953066825867, -0.9306186437606812, 0.3148508071899414, 0.6176234483718872, -0.7817451357841492, -0.6917173266410828, -0.8424502611160278, -1.724799633026123, 0.8048966526985168, 0.14703626930713654, -0.71266770362854, 1.3564051389694214, 0.736945629119873, 0.7612602114677429, 0.4876667261123657, -0.2460104376077652, 0.4784672260284424, -0.09891901165246964, -0.5030978918075562, -1.7615172863006592, -0.01653481088578701, -0.03781250864267349, -0.47746914625167847, -0.3335821330547333, 0.873856782913208, -0.08937584608793259, -0.2434173822402954, 0.02102820575237274, 0.8753812909126282, 0.046080563217401505, 0.7223654389381409, 0.17991890013217926, -0.561008632183075, 0.25585949420928955, -1.281783938407898, -0.6316245794296265, -0.5609804391860962, 0.3367159962654114, 0.31344062089920044, -1.1463874578475952, -0.040137842297554016, -0.1163197010755539, -0.40742188692092896, 0.29363012313842773, 0.1644590049982071, 0.8685909509658813, 0.19751591980457306, -0.32713180780410767, 0.20211422443389893, -0.3252732753753662, -0.29839950799942017, -0.8264963030815125, 0.11110077053308487, 0.5476585626602173, -1.4433510303497314, -0.5613096356391907, -0.032321490347385406, -0.62651127576828, -0.3641144931316376, -0.23676855862140656, 1.1235853433609009, -1.7058076858520508, -0.9049308896064758, -1.0159904956817627, -0.1289254128932953, 0.9957767724990845, -0.4705648720264435, 0.033419232815504074, -0.04550132527947426, -1.5073744058609009, 0.49957817792892456, -0.32205522060394287, -0.6588181853294373, -0.35998329520225525, -0.9648492336273193, 0.5360491871833801, -0.2456725686788559, 0.6258057951927185, -0.20433060824871063, 0.2734263837337494, -1.4868781566619873, -0.4018639624118805, -0.844677209854126, -0.26238158345222473, 1.1360870599746704, 0.44842010736465454, -0.830324649810791, 0.9056949019432068, 0.5451023578643799, -0.5235938429832458, 0.10178583115339279, 0.004403119441121817, 0.16920967400074005, -0.05905511975288391, 0.10172394663095474, 0.8704068064689636, -0.12687309086322784, 0.6473485827445984, 0.279020756483078, 0.3073939383029938, 0.5770611763000488, 0.6854516267776489, -0.35213884711265564, -0.13528946042060852, -0.4563407301902771, 0.944629430770874, -0.05572178587317467, -0.43032506108283997, -0.2714194357395172, -1.2743408679962158, -0.1665402054786682, 0.5651741027832031, 0.5895186066627502, -0.9368277192115784, -0.6154527068138123, -1.1898235082626343, 0.4374379813671112, -0.9082769155502319, 0.6246434450149536, 0.16620732843875885, -0.27100369334220886, 0.2331567108631134, -0.6952164769172668, -0.35147330164909363, -0.9720520377159119, 0.6611205339431763, 0.1713031530380249, -0.14268095791339874, -0.5461145043373108, 0.7415618896484375, -0.06875332444906235, -0.2664482295513153, -0.8703768849372864, 1.4000375270843506, 1.2995493412017822, -0.04342708736658096, 0.2998966872692108, 0.6360589265823364, -0.18005172908306122, 0.7969442009925842, -0.15212538838386536, -0.1999533325433731, -1.1870530843734741, 0.7014533877372742, 0.1495954543352127, 0.33061307668685913, 0.15610237419605255, 0.23976221680641174, -0.15381751954555511, 0.9255397915840149, 0.4536910951137543, -0.5888123512268066, 0.21890389919281006, 1.5239335298538208, 0.16455088555812836, 0.37122732400894165, 0.3184797763824463, 0.3254076838493347, 0.17844636738300323, -0.3269520103931427, 0.5291001796722412, 0.7693418860435486, -0.6364296674728394, 0.15673606097698212, -0.4471232295036316, -0.05905071273446083, -0.09068302810192108, -0.42788857221603394, -0.7468878626823425, 0.2463064044713974, -0.35005009174346924, -0.5932300090789795, -0.2190558761358261, -1.0374261140823364, -0.6604681015014648, 1.2800627946853638, -0.03453837335109711, 0.05753348022699356, -0.1751432716846466, 0.7924416661262512, -0.23230570554733276, -0.04516051337122917, 0.43631359934806824, 0.5308893322944641, 0.6182438135147095, 0.033591996878385544, 0.2512131929397583, -0.6637240052223206, -0.6457126140594482, 0.9832062721252441, -0.4323331117630005, -0.3703102469444275, 0.018931254744529724, 0.0022266125306487083, 0.3323742747306824, -0.7233185768127441, 0.565779447555542, -0.8147261142730713, -0.04963071644306183, -0.112190380692482, -1.0287188291549683, -0.37513795495033264, 0.7691766619682312, 1.1319133043289185, -0.24159568548202515, -0.8341712951660156, -0.747597336769104, 0.5960729122161865, -0.4027591645717621, 1.0302419662475586, 0.02464800328016281, 0.39537420868873596, 0.1974422186613083, -0.40038830041885376, 0.10312217473983765, -0.5862013101577759, 0.09848096966743469, -0.8452849388122559, 0.2744300067424774, -0.28719186782836914, -0.11056805402040482, 0.03991828113794327, -0.5174254179000854, 0.6071034073829651, -0.2748623192310333, 0.5112064480781555, 0.4026111960411072, -0.8034508228302002, -1.7991091012954712, -0.7518576979637146, 1.0551486015319824, 0.6638131737709045, 0.3379274606704712, -0.037424664944410324, 0.4193214178085327, -1.6702888011932373, -0.1961909830570221, 0.6873430013656616, 0.4814033508300781, -0.3711467981338501, 1.6159858703613281, 2.178252935409546, 0.3183189630508423, 0.3826313018798828, -0.044810548424720764, 0.7177100777626038, -1.2938569784164429, -1.1915323734283447, -0.4543825387954712, -0.03690146282315254, 0.5000806450843811], [0.5258632302284241, 1.1797676086425781, -1.8954617977142334, -0.20279604196548462, 0.5846714973449707, 0.7930235266685486, 0.7613068222999573, -0.32283586263656616, 0.5422583818435669, -1.0024559497833252, -0.5694453120231628, 0.15516401827335358, 0.043933477252721786, 0.5544344186782837, 0.09844835102558136, 0.49582818150520325, 0.44066882133483887, -0.981569230556488, 0.25941595435142517, 1.887636423110962, -0.033591195940971375, -0.7292613983154297, 0.27255451679229736, 0.5378667116165161, -0.19787754118442535, 0.025327876210212708, -1.689652442932129, -0.5507392883300781, -1.37882399559021, -0.28261542320251465, 1.1104516983032227, -1.3556758165359497, -0.6590588092803955, 0.28876227140426636, -1.5593128204345703, -0.2093406617641449, 1.6428735256195068, 0.2772756516933441, 0.9828801155090332, 0.29313763976097107, 2.102295160293579, 0.043463084846735, 0.2790156900882721, -1.798531174659729, 0.07938718795776367, 0.13375066220760345, 0.9619128704071045, -0.7215420007705688, 0.07560330629348755, -0.781715989112854, 0.10547878593206406, -0.5768729448318481, 1.4883164167404175, 0.5393966436386108, 1.85098397731781, 0.41876253485679626, 0.30896317958831787, 0.7496609687805176, 0.7335941791534424, -0.4514384865760803, 0.2829569876194, 0.05267520248889923, -0.6707361340522766, 1.3926587104797363, 0.26610618829727173, -0.26074346899986267, -0.04059337452054024, 0.8573951125144958, 0.2885522246360779, -0.27347326278686523, 0.9614622592926025, 0.09466255456209183, -0.9582549333572388, 0.36985015869140625, -1.3675694465637207, 0.7985801696777344, 0.3116655945777893, 0.9043565988540649, 0.06242075562477112, 0.20714472234249115, -0.1782890409231186, -0.2999371886253357, 0.6427500247955322, -0.3808724284172058, 0.352582722902298, -0.17427054047584534, 1.25246000289917, -0.4431810975074768, -0.09658131003379822, 1.196813941001892, 0.7725694179534912, 0.4650694727897644, -0.10032029449939728, -0.4993332028388977, -0.35511070489883423, -0.9104455709457397, 0.1796751171350479, -1.0358734130859375, -0.5605553388595581, -0.8350523710250854, -0.6391699314117432, -0.6715978384017944, -0.39128488302230835, -0.13677674531936646, 0.0058260951191186905, 1.2010424137115479, -0.056943874806165695, 0.5417172312736511, -0.5889672636985779, 0.4479035437107086, -0.31844520568847656, 0.44842636585235596, -1.0220117568969727, -1.3768610954284668, -1.244816780090332, 0.45746245980262756, 1.1524746417999268, -0.18939179182052612, 0.5278292298316956, 0.792593777179718, -0.6245083808898926, -0.07304771989583969, -0.4398820102214813, 0.0990012139081955, 0.7600480914115906, 0.6757206916809082, 0.15397298336029053, -1.0693806409835815, 0.9449202418327332, 0.03555652126669884, 0.37102827429771423, -0.474181592464447, 0.4216976761817932, 0.410970002412796, -0.6735045313835144, 0.7626746892929077, 0.564663827419281, -0.5300775766372681, -0.0379561111330986, 0.238589346408844, 0.8659197092056274, 0.006303738337010145, 0.10344202816486359, -0.7991798520088196, -0.41851842403411865, -0.6058555245399475, 0.6343303918838501, -0.3954184651374817, -0.6638665795326233, 0.28133484721183777, -0.7326763272285461, 0.2658167779445648, 0.09723199158906937, 0.48763179779052734, 0.46048927307128906, -0.08354906737804413, -0.3351120352745056, 0.20332756638526917, 0.2601644694805145, -0.4563559293746948, 0.4019661545753479, -0.10030820965766907, -0.4519898295402527, 0.9020575284957886, 0.5186232328414917, -0.09233000874519348, -0.04156133905053139, 0.508283257484436, -0.3433170020580292, 0.5635212063789368, -0.4852736294269562, -0.07720508426427841, -0.5477713346481323, 0.7878802418708801, 0.8166005611419678, -0.21353092789649963, 1.6906611919403076, -1.1296966075897217, -0.38054531812667847, -0.9763355255126953, -0.013354100286960602, -0.20353123545646667, 0.26594194769859314, -0.02541152387857437, 0.5384976863861084, -0.742713212966919, 0.6790944337844849, 0.08231118321418762, -0.725896954536438, -0.778377890586853, -0.39829063415527344, 0.11287370324134827, -1.4639296531677246, 0.35496675968170166, -0.16429713368415833, -1.0113085508346558, 0.4947710633277893, -0.17200148105621338, -0.39536339044570923, 0.10973075777292252, -0.46911585330963135, -0.3219768702983856, -0.30266815423965454, 0.3437604308128357, -0.1165708675980568, 0.41673704981803894, -0.8248962163925171, 0.6165279746055603, -0.562088668346405, 0.033230602741241455, 1.3853524923324585, 0.06293415278196335, -0.8134732246398926, 0.879584789276123, -0.15078850090503693, -1.9722174406051636, 0.39320772886276245, 0.24324773252010345, -0.5028321743011475, -0.05199447274208069, 0.44563910365104675, 0.9139267206192017, 0.30257219076156616, 0.2578010559082031, 0.7582540512084961, -0.5243353247642517, -0.4348679482936859, -0.6972733736038208, -0.8499345779418945, 0.2182648926973343, -0.4289475381374359, -1.047629714012146, 1.3140498399734497, 0.3781466782093048, -0.7332754135131836, -0.20329271256923676, 0.26128602027893066, -0.2621519863605499, -0.24382628500461578, 0.8392142653465271, 0.3128061890602112, 0.9348173141479492, -0.09278374910354614, -0.17826582491397858, -0.5615416765213013, 0.4059678912162781, 1.7012450695037842, -0.3655305504798889, 0.04929683357477188, 0.8777757883071899, 1.256471037864685, 0.12592343986034393, 0.20188263058662415, -0.023752450942993164, -0.40930506587028503, -0.8240026235580444, -1.092099905014038, 0.4895473122596741, -0.5200703144073486, 0.8023331165313721, 0.48325347900390625, -0.9464108347892761, -0.687434196472168, 0.24640244245529175, 0.549197793006897, -0.39259904623031616, -1.0516927242279053, -1.1102468967437744, -0.04047323018312454, 0.11329828202724457, -0.34390926361083984, 0.8204828500747681, -0.13280001282691956, 0.7462015151977539, -0.3991566300392151, -0.5533972978591919, -0.7606266140937805, 0.8653806447982788, -0.2996324300765991, 0.8890119791030884, -0.10673370212316513, -0.8957263231277466, -0.6829695701599121, -0.03166613727807999, 0.695118248462677, 0.23740500211715698, -0.10376804322004318, -0.3563973307609558, -0.0357220433652401, -0.4333670139312744, 0.1705125868320465, 0.06318799406290054, -0.1379951387643814, 0.15372306108474731, 0.6557937860488892, 0.5649990439414978, 1.357537865638733, -1.0952658653259277, -1.3588142395019531, -0.0850084200501442, 0.7911524772644043, 1.1080375909805298, 1.0818095207214355, 1.0916366577148438, -0.35205814242362976, -0.5219570398330688, -0.2424488067626953, -1.1402195692062378, -0.1492598056793213, -0.9213943481445312, -0.39349985122680664, -1.3232848644256592, -0.44458943605422974, -0.24013406038284302, -0.4281501770019531, 1.3734991550445557, 0.3099727928638458, 0.4044957756996155, 1.370311975479126, 0.38588014245033264, -1.2236316204071045, -0.6582884788513184, -0.19058628380298615, -0.8502135276794434, 0.4590931534767151, 1.1040546894073486, -1.433539867401123, -0.8760901689529419, -0.7306081652641296, 0.14244578778743744, 1.0757737159729004, 0.16671201586723328, -0.3430446684360504, -0.8597505688667297, -0.6922675967216492, -0.03207722306251526, 0.4373131990432739, 0.2539646625518799, 0.28571659326553345, -0.7297573685646057, 0.05402761697769165, 0.9093712568283081, 0.2840036451816559, -1.0307108163833618, 0.8797140121459961, -0.002699524164199829, -0.8580693602561951, -0.2545345723628998, 0.03766978532075882, 0.8068615794181824, -0.5129057168960571, -0.3039535880088806, -0.4214017689228058, -0.44213032722473145, -1.2515217065811157, 0.640505313873291, -0.36527353525161743, 0.975848913192749, -0.25383150577545166, 0.2779221832752228, 0.9788950681686401, -0.5808491706848145, -0.023431502282619476, -1.1793791055679321, 0.6679298877716064, 1.336423397064209, 0.5685094594955444, -0.5106172561645508, -0.08393219858407974, 1.0486396551132202, -0.6491580605506897, 0.21081851422786713, 0.6649914979934692, 1.0443835258483887, 0.35215920209884644, -0.06314554065465927, -0.07313553243875504, 0.17127351462841034, -0.28224262595176697, -0.9531462788581848, 0.4539901614189148, -0.5855610370635986, -1.6663463115692139, -0.9436658620834351, 1.1686437129974365, 0.31851106882095337, -0.12512746453285217, -0.8916422724723816, 0.18592612445354462, 0.8953322172164917, 0.010640215128660202, 0.8400835990905762, -0.8956087827682495, -0.17448759078979492, 0.2038612961769104, -0.7992246150970459, -1.0371562242507935, 0.4719986319541931, 0.12986385822296143, 0.6025600433349609, -0.6586219072341919, 0.09979315102100372, -0.3085489571094513, 0.7101190090179443, 0.8052381277084351, -0.04359372705221176, 0.5036664605140686, -0.029554050415754318, 0.008896454237401485, -0.6397498250007629, 0.42613911628723145, 1.8818870782852173, -0.33566588163375854, -0.006453223526477814, -0.4515444040298462, -0.3774089217185974, -0.15257528424263, 0.043758489191532135, -0.11754539608955383, -0.013049422763288021, -0.6188610792160034, -0.04007893055677414, 0.48041123151779175, 0.25070565938949585, 1.9686431884765625, 0.36432284116744995, 0.5669530630111694, 0.4184878468513489, -0.3776991069316864, -0.9234009981155396, -0.0987279862165451, 0.08660208433866501, -0.31287848949432373, -1.4896323680877686, -0.18607407808303833, 0.37462082505226135, 0.6360616087913513, 0.4092850089073181, 0.06305604428052902, 0.9573222994804382, -0.16263236105442047, -0.040086157619953156, -0.278652548789978, 0.6462686061859131, 0.8368521928787231, 1.0501513481140137, 0.4439437985420227, -0.9803990125656128, -0.6062799096107483, 0.8692620992660522, 0.10923196375370026, 0.3900992274284363, 0.7216216921806335, -0.09285667538642883, 0.5862029790878296, -2.1661837100982666, -0.8553035855293274, 0.03756321221590042, -0.01319928839802742, 0.6905713081359863, 0.15103361010551453, -0.3930100202560425, -0.7197095155715942, 0.4164871871471405, -0.3866264820098877, 0.009959869086742401, 0.8580410480499268, 0.24445505440235138, 0.11891372501850128, 0.48264870047569275, 0.06845768541097641, -0.05218120664358139, -0.7678247690200806, 0.544030487537384, -0.8386354446411133, -0.03066171333193779, 0.5610957145690918, -0.27602896094322205, -0.05548649653792381, 1.0730342864990234, -0.04384908080101013, -0.9174609184265137, 0.4915114641189575, -0.403134822845459, 0.5471709370613098, -0.20917882025241852, -0.9570545554161072, -0.17790168523788452, -0.10095246136188507, 0.045245639979839325, 0.49196189641952515, 0.07288578152656555, -0.5112155079841614, -1.275585651397705, -0.977878212928772, 0.3239629566669464, 1.0734515190124512, 1.2177205085754395, -0.41150951385498047, 0.5450605750083923, -0.21180149912834167, 1.1718826293945312, -0.7515227794647217, -0.318092942237854, -0.03480099141597748, -0.3431265950202942, 0.16249369084835052, -1.5999631881713867, -0.6508898735046387, 0.15287606418132782, 0.6488772630691528, 0.47012293338775635, 0.3776452839374542, 0.6866762638092041, 0.8312356472015381, -0.2534978985786438, -0.22516097128391266, 0.7782695293426514, -0.8750864267349243, 0.08724963665008545, 0.8609414100646973, -0.31370997428894043, -0.8155431747436523, -0.5568459033966064, -1.485923409461975, 0.995163083076477, -0.4737277328968048, -1.6026334762573242, 0.9083026647567749, 0.3223283290863037, 0.33891773223876953, 0.3620975613594055, -0.20469681918621063, 0.3041910231113434, -0.030368167906999588, -0.5969842672348022, -1.8991671800613403, 0.5888111591339111, 0.07057859748601913, -0.717979907989502, -0.09786292165517807, 1.1155428886413574, -0.3581668734550476, -0.4304344654083252, -0.355582058429718, 0.9462807178497314, 0.24415206909179688, 1.1232423782348633, 0.6441361904144287, -0.9188955426216125, 0.151129350066185, -1.0613677501678467, -0.7757796049118042, -0.3597713112831116, 0.7813172936439514, 0.11156738549470901, -0.4937247633934021, -0.4773281216621399, -0.30199700593948364, -0.5710226893424988, 0.03147822245955467, -0.26152873039245605, 1.2449424266815186, 0.4141782522201538, 0.08560070395469666, 0.46271395683288574, -0.03184249997138977, -0.7317608594894409, -0.6494009494781494, -0.15990105271339417, 0.7266854047775269, -1.2308077812194824, -0.1737106442451477, 0.13071441650390625, -0.8480136394500732, -0.3983079791069031, -0.8133889436721802, 0.6987190246582031, -1.3021445274353027, -0.8932301998138428, -0.7546367645263672, 0.003818245604634285, 1.4753971099853516, -0.2122322916984558, 0.6968417167663574, 0.37717992067337036, -1.6047487258911133, 0.8158921003341675, -0.3842020630836487, -1.0813778638839722, -0.11137033998966217, -0.8744145631790161, 0.23753774166107178, 0.13556896150112152, 0.6544238328933716, -0.04135698825120926, 1.4905787706375122, -1.8587874174118042, -0.9007517099380493, -0.9441027641296387, -0.24396400153636932, 0.9722293615341187, 0.7631608247756958, -0.9314415454864502, 1.403490662574768, 0.6124762296676636, -0.4154563248157501, 0.18272826075553894, 0.2006281614303589, -0.5804903507232666, -0.08667203038930893, -0.02322062849998474, 0.6074211597442627, 0.44791534543037415, 1.2310813665390015, 0.7523483037948608, 0.6190113425254822, 0.15615099668502808, 0.15530166029930115, 0.19566386938095093, -0.3221924304962158, -0.08878667652606964, 0.7102275490760803, -0.6343337893486023, -0.6590478420257568, -0.3550434708595276, -0.4574182629585266, -0.901344895362854, 0.7847247123718262, 0.7156475186347961, -1.2228007316589355, -0.045980699360370636, -0.9290323257446289, 0.21501848101615906, -0.7595945596694946, 0.7113049626350403, -0.24159622192382812, 0.7933288216590881, 0.15258751809597015, -0.42978137731552124, 0.5925967693328857, -1.0073370933532715, -0.28691738843917847, 0.5734651684761047, -0.040806885808706284, -0.45883601903915405, 0.512488842010498, 0.47857317328453064, 0.31855201721191406, -1.150072455406189, 1.5261645317077637, 1.380035638809204, -0.09426994621753693, 0.7483645081520081, 0.8045800924301147, -0.14136023819446564, 0.5256736874580383, -0.2658019959926605, -0.33940666913986206, -0.304176390171051, -0.06714016199111938, 0.9903637170791626, 0.7330495715141296, -0.7498666048049927, 0.09072305262088776, -0.36047834157943726, 1.0848990678787231, 1.0642706155776978, -0.6598135232925415, -0.16099384427070618, 0.670750617980957, -0.6074486970901489, 0.28569507598876953, 0.1987873613834381, 0.6051336526870728, 0.3755161762237549, -0.4161669909954071, 0.4457824230194092, 0.2077331393957138, -0.644412636756897, 0.968241274356842, 0.24595829844474792, 0.544776439666748, -0.06144434213638306, -0.33230212330818176, -1.0353655815124512, 0.43321549892425537, -0.9766801595687866, -0.7204427719116211, 0.8687200546264648, -1.8477685451507568, -1.1120378971099854, 0.6267890930175781, 0.5401425957679749, -0.994408130645752, -0.4649863541126251, 0.6498884558677673, -0.1137705072760582, 0.1504022479057312, 1.0487022399902344, -0.18057772517204285, 1.1081181764602661, 0.6400598883628845, -0.05060093104839325, -0.5378751754760742, -0.7475904822349548, 0.23012098670005798, -0.1796731948852539, -0.5093657374382019, 0.20891112089157104, 0.1175280436873436, -0.28726473450660706, -0.5145165324211121, 0.43148064613342285, -0.2543734312057495, -0.03349435329437256, 0.03942296653985977, -1.3528488874435425, -0.43725186586380005, 0.19301098585128784, 0.6741296648979187, -0.6517406702041626, -0.586808443069458, -1.1417121887207031, 0.707994818687439, -0.39386460185050964, 1.5359508991241455, 0.6427711248397827, 0.27056893706321716, 0.12605777382850647, -0.33216971158981323, -0.5302470922470093, -0.6883605718612671, 0.34189462661743164, -0.3145742118358612, 0.932629406452179, 0.21749413013458252, -0.19593755900859833, 0.29518643021583557, -1.2176368236541748, 1.0400023460388184, 0.15257158875465393, -0.24504664540290833, 0.03016090765595436, -0.8915032148361206, -1.2858576774597168, -0.830207109451294, 0.8615857362747192, 1.1013189554214478, 0.35542625188827515, 0.18423809111118317, -0.09903024137020111, -1.3338723182678223, -0.2019055187702179, 0.4360138773918152, 0.12858620285987854, -0.3511219322681427, 1.1756978034973145, 1.5151833295822144, -0.005260765552520752, 0.6898185014724731, -0.09015871584415436, 0.4074516296386719, -1.015485405921936, -0.20388926565647125, 0.2651783227920532, -0.10671534389257431, 0.14043910801410675], [-0.05834423750638962, 1.4030567407608032, -2.1457343101501465, -0.8305323719978333, 1.1332224607467651, -0.11222120374441147, 1.3141006231307983, -0.1624993532896042, 0.1373901069164276, -0.8220735788345337, 0.3131319582462311, -0.14783696830272675, 1.0983092784881592, 0.9908750057220459, 0.17807240784168243, 0.6449163556098938, 0.0972948968410492, -0.9162625670433044, 0.3212772309780121, 1.1492458581924438, 0.031024876981973648, -0.43453922867774963, -0.38937416672706604, 0.08763787895441055, -0.7058014869689941, 0.35716450214385986, -0.930901288986206, -0.12646721303462982, -1.6695878505706787, 0.045231182128190994, 1.0999441146850586, -2.0699479579925537, -0.6766623854637146, 0.37089136242866516, -2.249892234802246, -0.9705498814582825, 1.4916234016418457, 0.42410412430763245, -0.21991093456745148, -0.38877230882644653, 2.1969711780548096, -0.10935699194669724, 0.024740464985370636, -1.2356797456741333, 0.9379743933677673, -0.44691991806030273, 1.3496992588043213, -1.2873486280441284, -0.26932623982429504, -0.5141963958740234, 0.00018590129911899567, -0.33523988723754883, 0.6014680862426758, 0.6782354116439819, 1.1381702423095703, 0.24024204909801483, 1.1241352558135986, 0.11517783999443054, 1.0091100931167603, 0.2960878610610962, 0.5170935988426208, 0.426037460565567, -0.32116350531578064, 1.059327244758606, 0.5061865448951721, 0.5854440331459045, -0.9289119243621826, 0.7973567247390747, -0.5394164323806763, -0.9423935413360596, 1.3676868677139282, -0.32172760367393494, -0.5277689695358276, 0.1074669137597084, -1.149283528327942, 0.304473876953125, 0.7140419483184814, 0.49689528346061707, 0.40541043877601624, 0.27609676122665405, -0.6433628797531128, 0.15319649875164032, 1.26754629611969, -0.5642939209938049, 0.8113132119178772, 0.012103043496608734, 0.7710831165313721, -0.09062431007623672, -0.6599618792533875, 1.284255862236023, 0.21160565316677094, 0.3788922429084778, 0.512221097946167, -0.06132009997963905, -0.1781361997127533, -0.6159057021141052, 0.2926461100578308, -0.5170584321022034, -0.5822202563285828, -0.7979786992073059, -1.3117011785507202, -0.7744312286376953, 0.20234549045562744, -0.03492413088679314, 0.28178104758262634, 1.4168318510055542, -0.1632688194513321, -0.32785844802856445, -0.2894395887851715, 0.7571595907211304, -0.2220185548067093, -0.22132565081119537, -1.0019534826278687, -0.7290068864822388, -0.715481698513031, 1.0300626754760742, 1.613893747329712, -0.6407291889190674, 1.6873656511306763, 0.8002904653549194, -0.5891845226287842, 0.4602260887622833, 0.1488226056098938, -0.08466009050607681, 0.39335885643959045, 0.2930377125740051, -0.21317178010940552, -1.3011178970336914, 0.6430854797363281, -0.16019977629184723, 0.094886913895607, -0.6723697781562805, 0.014865310862660408, 1.3880882263183594, -0.36155515909194946, 1.078591227531433, 0.24957112967967987, -0.877975583076477, -0.3358475863933563, 0.08385276049375534, 0.7065910696983337, -0.4629890024662018, 0.2908177077770233, -0.8470995426177979, -0.1585901379585266, -0.2182924449443817, 0.3466528058052063, -0.8108577728271484, -0.3509202301502228, -0.36851832270622253, -0.49082475900650024, 0.16074751317501068, 0.6865488290786743, 0.6642578840255737, 0.5884276032447815, -0.7635766863822937, 0.11809737235307693, 0.08497173339128494, 0.9192211031913757, -0.0909971222281456, 0.4302833378314972, 0.06701967865228653, -0.43609774112701416, 0.7867843508720398, 0.07719682157039642, -0.3381330668926239, 0.34285545349121094, 1.0749242305755615, -0.24976450204849243, 0.39211639761924744, -0.9890090823173523, -0.011457645334303379, -0.6575134992599487, 0.4305553436279297, 0.5108442902565002, 0.12127707898616791, 2.121689796447754, -0.7070866227149963, -1.0168455839157104, -1.2333821058273315, 0.47941479086875916, -0.03047681599855423, -0.18355591595172882, -0.005387253127992153, 0.6109301447868347, -0.31352871656417847, 0.3523927628993988, -0.5803269743919373, -0.41925984621047974, -0.9537280201911926, -0.7167562246322632, -0.6545226573944092, -0.8042619228363037, -0.02206185832619667, -0.8617234826087952, -0.44429153203964233, 1.489059329032898, -1.5399041175842285, -0.6066287755966187, -0.06720584630966187, -0.3336693346500397, -0.129484161734581, -0.8272806406021118, -0.0611434280872345, -0.050709351897239685, 0.3657403588294983, -1.0503588914871216, 0.5959338545799255, -0.39191824197769165, -0.019412992522120476, 1.5099595785140991, 0.25892722606658936, -0.2396882176399231, 1.2366057634353638, -0.26282796263694763, -0.8299426436424255, 0.5441864132881165, 0.11827827990055084, -0.17472878098487854, 0.334724485874176, 0.7278569936752319, 0.24002279341220856, -0.11588605493307114, -0.1229260116815567, 0.773807168006897, -0.44129878282546997, -0.2838439345359802, -0.6720488667488098, -1.0831443071365356, 0.7081880569458008, -1.1119719743728638, -1.268519639968872, 0.8320491909980774, 0.3446333408355713, -0.33089977502822876, -0.3985756039619446, 0.6783385872840881, 0.4716985821723938, 0.12091153115034103, 0.8500562906265259, 0.47790205478668213, 0.7146545648574829, 0.04343098774552345, -0.08623559772968292, -0.6676040291786194, 0.46446436643600464, 1.4160128831863403, -0.1586659997701645, 0.15233662724494934, 1.320583462715149, 1.0059524774551392, 0.045041441917419434, 0.09731442481279373, -0.13604667782783508, 0.17968280613422394, -0.4107387959957123, -0.7832683324813843, 0.5116569995880127, -0.672582745552063, 0.9912118315696716, 0.7970370650291443, -1.2740199565887451, -0.40816086530685425, -0.3300524353981018, -0.20453855395317078, -0.4384605586528778, -1.116870403289795, -0.860141932964325, -0.31764575839042664, -0.22596094012260437, -0.4244413375854492, 0.29363223910331726, -0.24801860749721527, 0.38196247816085815, -0.6837800741195679, -0.5764856338500977, 0.44929325580596924, 0.5623871684074402, 0.3536224663257599, 1.1793488264083862, -0.0631752461194992, -1.142204999923706, -0.8192005157470703, -0.06815944612026215, 0.6383647918701172, 0.6612981557846069, 0.3130282461643219, 0.5194222331047058, 0.06062314659357071, -0.46012675762176514, 0.0018834518268704414, 0.36117589473724365, -0.12986846268177032, 0.08767874538898468, 0.3751484453678131, 0.586418628692627, 1.334716796875, -1.0815025568008423, -0.36210963129997253, -0.36859583854675293, 0.7045658230781555, 1.23141610622406, 1.3596857786178589, 1.1254909038543701, -0.3660799562931061, 0.11266622692346573, 0.05657259002327919, -1.1495873928070068, -0.22013434767723083, -0.5697259902954102, -0.6421744227409363, -0.24290135502815247, 0.15344475209712982, 0.1943584680557251, -0.2876872718334198, 1.157762885093689, 0.05697783827781677, 1.3052703142166138, 0.925112247467041, 0.13288645446300507, 0.0006813607178628445, 0.260343998670578, 0.6357606649398804, -0.6188869476318359, 0.2600763440132141, 1.0804989337921143, -0.9120773077011108, -0.32321372628211975, 0.012362552806735039, 0.29983648657798767, 0.5933666825294495, 0.5347391366958618, -0.3715500831604004, -1.3417129516601562, -0.9645387530326843, -0.0072553567588329315, 0.7222158908843994, 0.04211811721324921, 0.5735383629798889, -0.605318009853363, -0.06769352406263351, 1.0762951374053955, 0.5634754300117493, -0.8777288198471069, 0.664462149143219, 0.1981414407491684, -0.9744243621826172, 0.09138587862253189, 0.06942103803157806, 0.40372705459594727, -0.7475096583366394, 0.2372308373451233, -0.3722492754459381, -0.32365602254867554, -0.991221010684967, -0.17962174117565155, 0.15075933933258057, 0.37666022777557373, -0.5193056464195251, 0.16514849662780762, 0.6365184187889099, -0.08730949461460114, -0.1442890614271164, -1.3963733911514282, 0.7916886806488037, 0.6163349747657776, 0.6727033853530884, -0.3700330853462219, -0.1265229731798172, 0.3056710362434387, 0.4924427270889282, -0.21709567308425903, 0.06313426792621613, 0.8360872268676758, 0.10162894427776337, -0.3715173006057739, 0.06839447468519211, 0.10101928561925888, -0.40320003032684326, -0.8964757919311523, 0.19455228745937347, 0.15982048213481903, -0.992107093334198, -0.49359944462776184, 1.0252611637115479, 0.06091751903295517, -0.4935014843940735, -0.2897123694419861, 0.1292378306388855, 0.8732553720474243, -0.6404986381530762, 0.58675217628479, -0.8443677425384521, -0.4125153124332428, -0.2885490953922272, -1.0047380924224854, -0.6481664776802063, 0.6530287861824036, -0.3393518924713135, 0.8340125679969788, -0.9321423172950745, -0.1581386774778366, -0.09062442183494568, 0.8225732445716858, 0.21487803757190704, -0.47887539863586426, 0.9217212796211243, 0.3161510229110718, 0.3309164345264435, -0.2058899700641632, 0.4603140950202942, 1.7064812183380127, -0.07857101410627365, -0.7934995293617249, 0.0656944215297699, -0.17428617179393768, 0.21880567073822021, -0.6587491631507874, 0.024413179606199265, 0.4178715646266937, -0.47594118118286133, 0.23819449543952942, 0.06811252981424332, 0.6773688197135925, 1.5710439682006836, 0.6361687183380127, 0.5231505036354065, 0.4991726279258728, -0.62855064868927, -0.5059042572975159, -0.5152631998062134, -0.12051694095134735, -0.11313451826572418, -0.41942501068115234, -0.24361808598041534, 0.2712748348712921, -0.17230086028575897, 0.34862932562828064, 0.2609691619873047, 0.6706796288490295, 0.3716506063938141, -0.1828039437532425, 0.011254319921135902, -0.09421572834253311, 0.8243091106414795, 1.2825604677200317, 0.34377521276474, -0.8468063473701477, -0.4504986107349396, 0.4320845901966095, -0.98753821849823, 0.8566030263900757, 0.9136514067649841, 0.04427992179989815, 1.5135198831558228, -1.9505548477172852, -1.1565897464752197, 0.00041672028601169586, 0.3371349275112152, 0.8065714836120605, 0.22604554891586304, 0.2253936529159546, -0.702822208404541, 0.2637961804866791, 0.11341986805200577, -0.09883271157741547, 0.36889055371284485, -0.43723759055137634, 0.41749003529548645, 0.010573871433734894, -0.42505842447280884, 0.261709064245224, -0.5838168859481812, 0.11066187918186188, 0.038744885474443436, -0.11616725474596024, 0.46293339133262634, 0.6432498693466187, -0.43668586015701294, 0.7900601625442505, -0.6628398895263672, -0.87064129114151, 0.2937523424625397, -0.6292975544929504, 0.37185558676719666, -0.8766478300094604, -0.6953306198120117, -0.3265678286552429, -0.8268474340438843, -0.5358776450157166, 0.3442508280277252, -0.44073936343193054, -0.5451263785362244, -0.7267209887504578, -1.063417673110962, 0.2366528958082199, 0.873683512210846, 1.5573972463607788, -0.01099545881152153, 0.03109915740787983, 1.0179566144943237, 0.5955169796943665, -0.6362314224243164, 0.055809199810028076, 0.580733060836792, -1.1709673404693604, 0.06502240151166916, -1.5494829416275024, -0.760846734046936, 0.9916037321090698, 0.8754846453666687, 0.26218655705451965, 0.01652141846716404, 1.041133165359497, 1.3495126962661743, -0.07622333616018295, -0.36537712812423706, 0.5102626085281372, -0.2593425512313843, 0.9998127818107605, 1.0751103162765503, -0.8937580585479736, -0.5675251483917236, -0.8560096621513367, -1.5142155885696411, 1.6048153638839722, -0.6440255045890808, -1.284563660621643, 1.2201309204101562, 0.3057892322540283, -0.12884092330932617, 0.4399486482143402, 0.31141459941864014, 0.5207465291023254, 0.42566362023353577, -1.2446608543395996, -1.5370631217956543, 0.5960298180580139, 0.22914104163646698, -0.2512657344341278, -0.547931969165802, 0.04155660793185234, -0.5609361529350281, -0.27197304368019104, 0.601101815700531, 0.5339197516441345, 0.4664752185344696, 0.5390278697013855, 0.1266191303730011, -0.24432234466075897, 0.14608651399612427, -1.127828598022461, -0.6115006804466248, -1.1487984657287598, 0.007552495226264, -0.5895237326622009, -0.37011513113975525, -0.6015673875808716, 0.3052741587162018, -0.5798833966255188, -0.2970638871192932, -0.13588733971118927, 0.5401036739349365, 1.1285920143127441, -0.14161694049835205, 0.06422529369592667, 0.10150767862796783, -0.36762601137161255, -0.7842603921890259, -0.3562934994697571, 0.6863501071929932, -1.252402663230896, -0.08741462975740433, 0.07163776457309723, -0.7354849576950073, -0.7956127524375916, 0.15864290297031403, 0.6926437020301819, -1.6807256937026978, -0.7261330485343933, -1.4656989574432373, 0.6750658750534058, 0.9014858603477478, -0.6904168128967285, 0.45395341515541077, 0.18860572576522827, -1.392558217048645, 0.540350615978241, -0.08946097642183304, -1.4413073062896729, -0.9033600091934204, -0.9383701682090759, 0.7609230875968933, -0.5649523735046387, 0.15173768997192383, -0.2429835945367813, 0.7245241403579712, -1.0697530508041382, -1.2703063488006592, -0.6941919326782227, -0.1429549604654312, 1.1360658407211304, 0.7320075631141663, -1.0762417316436768, 0.7489074468612671, 1.15702223777771, -1.11351478099823, -0.8582149744033813, 0.7085060477256775, -0.9060386419296265, 0.27224424481391907, 0.14607731997966766, 1.4077057838439941, 0.4890011250972748, 1.5001652240753174, 0.36630675196647644, 1.0479767322540283, -0.38680407404899597, 0.7174150943756104, -0.5557788610458374, -0.16295507550239563, -0.30835625529289246, 0.44428959488868713, -0.8116782307624817, -0.7589665055274963, 0.349793404340744, -1.2752856016159058, -0.6784266233444214, 0.7806355357170105, 0.7090484499931335, -0.8046033978462219, -0.31211766600608826, -0.9985114932060242, 1.3723480701446533, -0.955328106880188, -0.1849684864282608, 0.38981056213378906, -0.13823896646499634, 0.09213877469301224, -0.7978468537330627, -0.4384614825248718, -1.4158929586410522, 0.11139362305402756, 0.2648802399635315, 0.5297899842262268, -1.264713168144226, 0.9176837801933289, 0.5640580058097839, 0.12446438521146774, -0.7221413850784302, 1.5245912075042725, 1.1420587301254272, -0.32166534662246704, 0.45282867550849915, 0.21957805752754211, 0.024532116949558258, 0.45040953159332275, -0.6458300948143005, -0.9188965559005737, -0.5027326941490173, -0.24311299622058868, 0.44532665610313416, -0.30303704738616943, -0.38675737380981445, -0.2966441810131073, 0.421381413936615, 0.9584967494010925, 1.15960693359375, -0.7355602383613586, 0.24342040717601776, 0.6916313171386719, -0.060797546058893204, -0.3688749372959137, 0.17837844789028168, 0.16762876510620117, 0.3303970396518707, -0.06593859195709229, 0.38085639476776123, 0.6087844967842102, -0.8593494296073914, 1.1644760370254517, 0.2194589227437973, 0.23945200443267822, 0.05561889335513115, -0.44488662481307983, -1.4219211339950562, -0.17366157472133636, -0.434167742729187, -0.959738552570343, 0.24543383717536926, -0.7375503778457642, -1.361695647239685, 0.7385725975036621, 0.18356703221797943, -0.5837218165397644, -0.23116302490234375, 0.3293578028678894, -0.027669234201312065, -0.3162339925765991, 0.7893120646476746, -0.668340265750885, 0.6872183680534363, 0.40073737502098083, -0.007154381833970547, -0.5211486220359802, -0.43814966082572937, 0.5299412608146667, -0.06843844056129456, -0.5951473712921143, -0.30168581008911133, 0.27308064699172974, 0.22404350340366364, -0.5831318497657776, 0.7212226986885071, -0.5959638953208923, 1.107351303100586, 0.30442580580711365, -0.9606050848960876, -0.18661010265350342, 0.9468112587928772, 0.08612821251153946, -0.4212106168270111, -1.0319249629974365, -1.122180461883545, 0.17823833227157593, -0.8814833760261536, 1.0426229238510132, 0.2296162247657776, 0.18405455350875854, 0.567863404750824, -0.37457066774368286, -0.1217082068324089, -0.9207580089569092, 0.3592713177204132, -0.27573591470718384, 0.6522560119628906, 0.0911698043346405, -0.49486953020095825, 0.7036281824111938, -0.657214879989624, 1.0889567136764526, 0.23117861151695251, 0.4493604898452759, 0.1337502896785736, -1.013007402420044, -1.0368527173995972, -0.3032594919204712, 0.7207503914833069, 1.5506458282470703, 0.3629917800426483, 0.06346691399812698, -0.11131203919649124, -1.3755329847335815, -0.31659969687461853, -0.13639743626117706, 0.13196450471878052, -0.7150377035140991, 1.474674105644226, 1.3831121921539307, 0.28773045539855957, 0.734345555305481, 0.41819900274276733, 0.9523268938064575, -0.8569992780685425, 0.06455563753843307, -0.8029426336288452, -0.2032599002122879, 0.465002179145813], [0.7649298906326294, 1.788999080657959, -2.9184887409210205, -0.29270318150520325, 1.4225475788116455, -0.019727982580661774, 1.5280002355575562, -0.31656765937805176, 0.11142715066671371, -0.3208579421043396, 0.6104017496109009, 0.10164498537778854, 0.9967535138130188, 0.8666127324104309, 0.23003143072128296, -0.21471178531646729, 0.45504119992256165, -1.120374083518982, 0.8327619433403015, 1.453359603881836, 0.10470795631408691, -0.5876526832580566, -0.00021814648061990738, 0.21623894572257996, -0.467591792345047, 0.021141771227121353, -1.3035541772842407, -0.24179355800151825, -0.25947296619415283, -0.7598205208778381, 0.8289885520935059, -1.0382084846496582, -0.024228297173976898, 0.9438295960426331, -1.5284804105758667, -0.8537464141845703, 1.549301266670227, 0.7119269371032715, -0.4846794605255127, 0.5323778986930847, 1.8884179592132568, 0.5151450037956238, -0.030796419829130173, -1.5906007289886475, 0.3960539698600769, 0.21823689341545105, 0.7641481161117554, -0.9826048612594604, 0.8137243986129761, -1.1041977405548096, 0.33667507767677307, -0.16436251997947693, 0.5907425284385681, 1.0936872959136963, 1.1929556131362915, 0.6356899738311768, 0.5508998036384583, 0.39521628618240356, 1.1322163343429565, 0.00966356135904789, 0.7894511818885803, -0.1302233636379242, 0.002291870303452015, 0.9295752048492432, 0.3133940100669861, -0.4046248197555542, 0.29114413261413574, 0.5267692804336548, 0.21642687916755676, -0.29590654373168945, 0.34721383452415466, -0.5035958886146545, -0.6085746884346008, 0.03136730566620827, -0.7240525484085083, 1.2151559591293335, 0.3467015326023102, 0.7225939035415649, 0.03515222296118736, 0.189880833029747, -0.3297433853149414, -0.4506710171699524, 0.8086110949516296, -0.10608666390180588, 0.7502685785293579, -0.25432831048965454, 0.05132744461297989, -1.1461734771728516, -0.38922563195228577, 1.6686382293701172, 1.0030415058135986, -0.1269913762807846, 0.8841969966888428, -0.32036229968070984, -0.26119107007980347, -1.032043695449829, 0.5566743016242981, -0.578216016292572, -0.6133445501327515, -0.7162150144577026, -1.1684619188308716, -0.7030330896377563, -0.2826452851295471, 0.24206319451332092, -0.4100399613380432, 1.3748438358306885, -0.13889075815677643, 0.436625212430954, -0.34193333983421326, 0.2856484055519104, -0.6055759787559509, 0.2194850742816925, -0.81331866979599, -0.9185255169868469, -0.8113951683044434, 1.1197887659072876, 1.5448887348175049, -0.22637853026390076, 1.0258562564849854, 0.8994266986846924, -0.5605856776237488, -0.04043186455965042, 0.503770112991333, 0.5643640756607056, 0.1998181939125061, 0.4923709034919739, -0.3505515158176422, -0.9440873265266418, 0.23466065526008606, 0.05077213793992996, 0.19604864716529846, -0.6622889041900635, -0.1811933070421219, 0.43213310837745667, -0.4300004243850708, 0.9877240657806396, -0.31814953684806824, -0.41991108655929565, 0.31034815311431885, 0.03756630793213844, 0.5332611799240112, -0.2449045330286026, -0.7045125961303711, -0.33526137471199036, -0.1693837195634842, -0.3906237781047821, 0.43415313959121704, -0.6928786039352417, -0.6759509444236755, -0.042212266474962234, -1.125152349472046, 0.2576671540737152, 0.3343682289123535, 0.7058567404747009, 0.11312741786241531, -0.3016602694988251, 0.04108665883541107, -0.031236516311764717, 0.3900945782661438, -0.40417858958244324, 0.2245340347290039, -0.23076780140399933, -0.8710676431655884, 1.2353527545928955, -0.0888594463467598, 0.04133593663573265, -0.3366617262363434, 0.11532671749591827, -0.02123914659023285, 0.17652860283851624, -1.0353779792785645, -0.1527732014656067, -0.29276782274246216, 0.6239067912101746, 0.8244901299476624, -0.3366610109806061, 1.7143875360488892, -1.0795564651489258, -0.8307463526725769, -1.8679885864257812, -0.03950582817196846, -0.2245413362979889, 0.11392446607351303, 0.07732724398374557, 0.3839776813983917, -0.28358009457588196, 0.6887021660804749, -0.7651524543762207, -0.036302439868450165, -1.063186764717102, -0.24204085767269135, 0.14443933963775635, -1.2773891687393188, 0.4047932028770447, -0.2874520719051361, -0.62602299451828, 1.1777719259262085, -1.1669716835021973, -0.7358514070510864, -0.6322435736656189, -0.8563474416732788, -0.7730780243873596, -0.7567923665046692, -0.0060807522386312485, -0.4871760904788971, 1.3371868133544922, -1.327787160873413, 1.2293238639831543, -0.3337048292160034, 0.263489305973053, 1.3397216796875, -0.39137202501296997, -0.3587400019168854, 0.9985786080360413, -0.3386635184288025, -1.199121117591858, 0.8093082308769226, 0.035260193049907684, -0.4421186149120331, 0.3131648004055023, 0.10862575471401215, 0.6746772527694702, 0.055717602372169495, 0.3859238028526306, 0.2990764379501343, -0.25865283608436584, -0.377187579870224, -1.1756160259246826, -0.8321683406829834, 0.2305673211812973, -1.1930547952651978, -1.745420217514038, 0.6375439763069153, 0.4805426597595215, -0.830462634563446, -0.026735031977295876, 0.40326979756355286, -0.04018343985080719, 0.3144369423389435, 0.7335614562034607, 0.48281511664390564, 0.7157934308052063, 0.23249344527721405, 0.02305808663368225, -1.3051387071609497, 0.05008307844400406, 1.0197049379348755, -0.3971095383167267, 0.2962726652622223, 1.0931050777435303, 0.8727594017982483, 0.15173235535621643, 0.3611645996570587, 0.10926032066345215, 0.006641260348260403, -1.3061902523040771, -0.8632863759994507, 1.4478081464767456, -0.7440841197967529, 1.0324201583862305, 0.8889323472976685, -1.174421787261963, -0.283749520778656, -0.5854042768478394, -0.05828229710459709, -0.524387776851654, -1.452239751815796, -0.708890438079834, -0.11442901194095612, -0.024664105847477913, 0.19158780574798584, 0.8602243065834045, 0.023687118664383888, 1.0735604763031006, -0.7845498323440552, -0.6511418223381042, -0.4247363805770874, 0.8102670907974243, 0.003507235087454319, 0.260116308927536, -0.22926990687847137, -1.0533331632614136, -0.9838526844978333, -0.0993284061551094, 0.5333366990089417, 0.4282545745372772, -0.08004535734653473, -0.33808761835098267, -0.2068188339471817, -0.7732143998146057, 0.34350526332855225, 0.19881221652030945, -0.2255180925130844, 0.2663724422454834, 0.1875341832637787, 0.8632108569145203, 0.8158404231071472, -0.7670581936836243, -0.608058750629425, -0.037760455161333084, 0.7488715648651123, 0.9433628916740417, 1.0758306980133057, 1.5779849290847778, -0.32605257630348206, 0.2422824203968048, -0.13560591638088226, -0.9833459854125977, -0.3227517902851105, -0.12640787661075592, -1.0849740505218506, -0.9175344109535217, -0.6105300784111023, -0.33185896277427673, -0.7365942001342773, 0.45236191153526306, -0.16744442284107208, 1.1037787199020386, 0.8492027521133423, -0.13178575038909912, -0.46434974670410156, -0.5485309362411499, 0.08596500754356384, -1.1447337865829468, 0.4602298140525818, 0.5893610715866089, -1.3032585382461548, -0.4042223393917084, -0.3787943720817566, -0.5798195004463196, 0.6258765459060669, 0.1810530573129654, -0.6387770175933838, -1.8998093605041504, -0.5830729007720947, -0.18440209329128265, 1.2510621547698975, 0.2963007092475891, 0.31201374530792236, -0.22729529440402985, 0.3313511312007904, 0.06456106901168823, -0.1811196655035019, -1.100935935974121, 0.5309063196182251, -0.4992883801460266, -0.623367428779602, 0.081583671271801, 0.8010326027870178, 0.550737202167511, 0.037955962121486664, -0.10106052458286285, -0.048228248953819275, -0.017388178035616875, -0.5865399837493896, 0.4783990681171417, 0.21272045373916626, 0.42812225222587585, -0.2985179126262665, -0.04198160022497177, 0.8619091510772705, -0.5501019358634949, -0.2247740477323532, -1.0931150913238525, 0.939469039440155, 0.36097243428230286, 0.6837334632873535, 0.22657828032970428, 0.22783242166042328, 0.44026899337768555, -0.6083042621612549, 0.4789629876613617, 0.050749052315950394, 1.460376262664795, 0.5001176595687866, -0.004104627296328545, -0.5171351432800293, 0.2702009975910187, -0.5048893094062805, -0.2613030970096588, 0.2599029541015625, 0.22028273344039917, -0.5697465538978577, -0.7688761353492737, 1.6022204160690308, 0.6906254887580872, -0.3845072388648987, -0.6911123394966125, -0.03232968598604202, 0.9705158472061157, -0.2291860580444336, 0.8642997741699219, -0.9029573202133179, -0.33162346482276917, 0.0634697824716568, -0.8660050630569458, 0.08635620772838593, 0.4579622447490692, 0.09870874881744385, 0.3650095462799072, -0.8677773475646973, 0.11398164927959442, -0.40730929374694824, 0.8879374861717224, 0.5868328809738159, 0.21641170978546143, 0.8159895539283752, -0.18793001770973206, 0.7820659875869751, -0.29969194531440735, 0.6090469360351562, 2.075723886489868, -0.7064242362976074, -0.25094693899154663, 0.14464670419692993, -0.2441866248846054, -0.3792911767959595, -0.8182306885719299, -0.7307117581367493, 0.35434550046920776, -0.15125125646591187, -0.32453685998916626, 0.20077991485595703, -0.058057449758052826, 1.5220133066177368, 0.534385085105896, 0.5265719294548035, 0.2759665548801422, -0.5078922510147095, -1.3723456859588623, 0.32370421290397644, 0.11455870419740677, 0.19879035651683807, -0.3820223808288574, -0.3977872133255005, -0.29354625940322876, -0.08950025588274002, 0.7597594261169434, 0.7744836807250977, 0.9506756663322449, 0.2532402276992798, 0.030346784740686417, -0.6022735834121704, 0.01683870330452919, 0.5559051036834717, 1.4833264350891113, 0.16561122238636017, -0.14284126460552216, -0.7698420882225037, 0.9950348138809204, -0.6108720302581787, 0.2249009758234024, 0.9762764573097229, 0.13444575667381287, 1.0320898294448853, -2.269914150238037, -0.7117684483528137, 0.40676939487457275, 0.31669747829437256, 0.4008035361766815, 0.021691767498850822, -0.19365578889846802, -0.7496290802955627, 0.7600564956665039, 0.8411781787872314, -0.049773648381233215, 0.2603763937950134, 0.13120806217193604, 0.5405662059783936, 0.40685662627220154, -0.7032308578491211, 0.5766550302505493, -0.6531403064727783, -0.09421301633119583, -0.27045923471450806, -0.6029985547065735, 0.8200799226760864, 0.03031783364713192, -0.25702357292175293, 0.4631614685058594, 0.07294027507305145, -0.5830540657043457, 0.26043587923049927, -0.39671590924263, 0.7877953052520752, -0.08420762419700623, -0.018989982083439827, -0.21594829857349396, -0.8229214549064636, -0.6843816041946411, 0.49208346009254456, -0.3942487835884094, 0.07587895542383194, -0.6587816476821899, -1.21317458152771, 0.11107510328292847, 1.182601809501648, 1.2074514627456665, 0.3274010121822357, 0.48503318428993225, 1.012398600578308, 0.8759448528289795, -0.9899570941925049, 0.1674586981534958, 0.009997253306210041, -0.4813814163208008, -0.31349265575408936, -1.8619085550308228, -1.027815818786621, 0.07076497375965118, 0.3194473385810852, 0.37598514556884766, -0.21928220987319946, 1.1681057214736938, 1.3821872472763062, -0.12997518479824066, -0.11965181678533554, 0.41240453720092773, -0.9089982509613037, 0.6711562871932983, 0.9118812680244446, -0.7013615369796753, -0.6408010125160217, -0.7238319516181946, -1.3130849599838257, 0.9198159575462341, -0.7453495860099792, -0.6224978566169739, 0.7960767149925232, -0.29457780718803406, -0.05270287021994591, 0.7733380794525146, -0.15312758088111877, 0.5765426754951477, 0.18820726871490479, 0.460396409034729, -1.2803139686584473, 0.532440721988678, 0.42477548122406006, 0.019623223692178726, -0.26537010073661804, 0.410888671875, 0.37746432423591614, -0.2674833834171295, 1.0386117696762085, 0.32499900460243225, 0.4768456220626831, 0.3865624666213989, 0.7548834085464478, -0.528952956199646, 0.5719911456108093, -1.1751399040222168, -0.3987760841846466, 0.012847216799855232, 0.47900480031967163, -0.37691953778266907, -0.34993472695350647, -0.32410019636154175, -0.6485702395439148, -0.6574475765228271, -0.2650514841079712, -0.10481692850589752, 1.2815850973129272, 0.5859438180923462, 0.22029860317707062, 0.14860230684280396, -0.657098650932312, -0.7113957405090332, -0.5144134759902954, -0.035175904631614685, 0.719661295413971, -0.6904153227806091, 0.12061644345521927, -0.15523932874202728, -0.25153809785842896, 0.06154574826359749, -0.5576533079147339, 0.36956101655960083, -1.6880918741226196, -1.3125101327896118, -0.3171151876449585, 0.22512038052082062, 1.2361078262329102, -0.6463137269020081, 0.95747309923172, 0.897474467754364, -1.1297311782836914, -0.0037705316208302975, -0.1306229680776596, -1.405391812324524, -0.2897810935974121, -1.1941112279891968, 1.026729941368103, -0.27070340514183044, 0.216609925031662, 0.3451943099498749, 1.51168692111969, -1.6169171333312988, -0.5984278321266174, -1.0247989892959595, -0.44979819655418396, 0.8114793300628662, 1.2099698781967163, -1.1241719722747803, 1.3682693243026733, 0.7188302874565125, -0.3093923330307007, -1.0641435384750366, 0.07463899999856949, -0.5108160376548767, -0.1446484625339508, -0.2512814998626709, 1.0432040691375732, -0.6081655621528625, 1.0512865781784058, 0.009651381522417068, 0.929128885269165, 0.3800163269042969, 0.933326244354248, -0.25593963265419006, -0.3588600158691406, -0.034279465675354004, 0.8140554428100586, -0.8968501091003418, -0.6277955174446106, 0.13175490498542786, -1.239479422569275, -0.894950270652771, 0.5051103830337524, 0.7479070425033569, -0.7496216297149658, -0.000650208443403244, -0.936077892780304, 0.49262988567352295, -0.9852553009986877, 0.45406389236450195, -0.16732048988342285, 0.3738120198249817, 0.22529864311218262, -0.34382903575897217, -0.11423343420028687, -1.2194912433624268, 0.03410853073000908, 0.8089070320129395, 0.08062795549631119, -1.1039282083511353, 0.9223492741584778, 0.7828563451766968, 0.43006712198257446, -0.13609789311885834, 0.9571931958198547, 1.1141078472137451, -0.29280537366867065, 0.02294270135462284, 0.4880044460296631, 0.24064232409000397, 0.7998490929603577, -1.202858328819275, -0.3173322081565857, -0.7360274195671082, -0.23600554466247559, 0.579958975315094, 0.07902868092060089, -0.4739755392074585, -0.17855314910411835, -0.6174530982971191, 0.9631153345108032, 0.6526080369949341, -0.7611971497535706, -0.2846704423427582, 1.2197093963623047, -0.4676941931247711, 0.1801675707101822, 0.13477826118469238, 0.4590255916118622, -0.05847710371017456, -0.2983446419239044, 0.6570658087730408, 0.5962428450584412, -0.47230878472328186, 0.5786316990852356, 0.34093236923217773, 0.32961806654930115, -0.08915849030017853, -1.0186647176742554, -1.4437885284423828, -0.4112415313720703, -0.7324104309082031, -0.8384053111076355, 0.15228936076164246, -1.0576351881027222, -1.5742892026901245, 0.6837036609649658, -0.07611217349767685, 0.046257536858320236, -0.11878127604722977, 0.6725884079933167, -0.31561875343322754, -0.4671546220779419, 1.190469741821289, -0.09657624363899231, 1.0279052257537842, 0.6279085278511047, -0.19304785132408142, -0.7429148554801941, -0.594127893447876, 1.04942786693573, -0.4390895664691925, -0.7284371256828308, -0.235964834690094, -0.17446596920490265, -0.36776039004325867, -0.5546767711639404, 0.3561515212059021, 0.20030325651168823, -0.0015277992933988571, 0.1282835453748703, -1.1230182647705078, 0.3170824348926544, 0.17998939752578735, 0.4504164159297943, -0.60648512840271, -0.7378005981445312, -0.7623894214630127, -0.008800026029348373, -0.807974100112915, 1.156101942062378, -0.09960633516311646, 0.598181426525116, 0.6201891899108887, -0.8421068787574768, -0.3956187665462494, -0.9390915632247925, 0.4583984911441803, -0.7200387120246887, 1.1083587408065796, 0.2112545669078827, -0.3280015289783478, 0.32232773303985596, -0.4394013583660126, 0.2976283133029938, -0.09398115426301956, 0.10046706348657608, 0.242203027009964, -1.0439541339874268, -0.9188016057014465, -0.742251455783844, 0.9838067293167114, 1.4404637813568115, -0.02915259450674057, 0.13176871836185455, 0.13340993225574493, -1.2863736152648926, 0.29271337389945984, 1.2055543661117554, 0.200711190700531, -0.22501863539218903, 1.6028951406478882, 1.965933084487915, 0.5996918082237244, 0.7524111866950989, 0.15390019118785858, 0.49131375551223755, -0.6934048533439636, -0.4128924608230591, -0.853878915309906, 0.11510711908340454, -0.07294754683971405], [0.06204887852072716, 1.5870583057403564, -2.197740077972412, -0.815377414226532, 1.787556767463684, 0.5712597370147705, 1.3746463060379028, 0.0833883211016655, 0.3262857496738434, 0.03570793941617012, -0.16422316431999207, -0.1986987292766571, 0.7123410701751709, 1.557588815689087, -0.22595860064029694, 0.32370826601982117, 0.34453284740448, -0.5159624814987183, 0.5455778241157532, 0.7386167645454407, 0.2922239601612091, -0.2003261148929596, -0.18809300661087036, 0.24058525264263153, -0.8959566950798035, 0.39835524559020996, -1.1701083183288574, -0.17712272703647614, -0.3723895847797394, -0.49709779024124146, 1.6569548845291138, -0.9837402105331421, -0.08954859524965286, -0.5508435368537903, -1.211328148841858, -0.7961907982826233, 2.0705323219299316, 1.6596791744232178, 0.774434506893158, 0.4541272222995758, 1.6636091470718384, 0.34000566601753235, -0.5862997174263, -1.4295635223388672, -0.42517584562301636, 0.0005143336020410061, 1.0325570106506348, -0.76048344373703, 0.15905538201332092, -0.7691909670829773, 0.35255274176597595, -0.2479877769947052, 1.3425781726837158, 0.615329384803772, 0.8678987622261047, 0.11988801509141922, 0.5690689086914062, 0.07347499579191208, 0.9339346289634705, -1.0124101638793945, 0.43483322858810425, 0.43527430295944214, 0.4597046673297882, 0.8874797224998474, -0.28107744455337524, 0.04604392498731613, -0.3762058615684509, 0.6308879256248474, 0.03371210768818855, -1.0710219144821167, 0.6832874417304993, 0.8466656804084778, -0.8563187122344971, 0.1740349382162094, -1.2703591585159302, 0.2584584653377533, 0.9879387617111206, 0.7018166780471802, -0.003941149916499853, 0.48092517256736755, 0.23685339093208313, 0.07534027099609375, 0.3236187994480133, -0.38027623295783997, 0.6266953349113464, 0.22675517201423645, -0.09513083845376968, -0.27814170718193054, -0.5512647032737732, 1.5078504085540771, 0.20215821266174316, -0.5258254408836365, 0.4122827351093292, -0.7838091254234314, -0.48146331310272217, -0.5746022462844849, -0.02592511475086212, -0.17106811702251434, -1.029325008392334, 0.02347715012729168, -0.7839526534080505, -0.6144102215766907, -0.1453535258769989, 0.19533631205558777, 0.2289370894432068, 1.1965142488479614, 0.24065643548965454, -0.08970421552658081, -0.6539661288261414, -0.20837359130382538, -0.5886841416358948, -0.0981956273317337, -0.406461626291275, -0.45535019040107727, -0.40618836879730225, -0.07360796630382538, 1.391653299331665, -0.6264008283615112, 0.9840452671051025, 0.7389591932296753, -0.6470722556114197, 0.2508963942527771, -0.7383183836936951, 0.5276336073875427, 0.974664568901062, -0.020846327766776085, -0.478349506855011, -0.44745293259620667, 0.7244747281074524, -0.4766346216201782, 0.8985998034477234, 0.561377763748169, 0.15460462868213654, 1.3951767683029175, -0.11189347505569458, 1.4042446613311768, 0.1037742868065834, -0.5226854681968689, -0.07646173238754272, -0.2500935196876526, 0.3644305467605591, 0.34439414739608765, -0.16273219883441925, -0.3321015238761902, 0.09236102551221848, -0.9132096767425537, 0.11289766430854797, -0.11907025426626205, -0.7319155335426331, 0.4535539746284485, -0.5895378589630127, 0.3621942102909088, 0.3159366846084595, 0.27808690071105957, 0.007532465737313032, -0.159019336104393, 1.1274299621582031, 1.0042818784713745, 0.25823232531547546, -0.14291702210903168, 0.505852460861206, 0.27881014347076416, -0.8280451893806458, 0.44352221488952637, 0.13734377920627594, -0.8271170854568481, 0.5196580290794373, 0.3567308187484741, 0.30166128277778625, 0.550436794757843, -0.9004128575325012, -0.14962950348854065, -0.36278367042541504, 0.6600422263145447, 0.6441190838813782, 0.3554975688457489, 1.5701090097427368, -1.4421749114990234, -1.5898082256317139, -0.8030487895011902, 0.7981928586959839, -0.33588624000549316, 0.5211395621299744, -0.2770162522792816, 0.6563820242881775, -0.43088677525520325, -0.24326901137828827, -0.06974251568317413, -0.23739077150821686, -1.2992284297943115, -0.5343078970909119, -0.14865772426128387, -0.7694333791732788, 0.7770494222640991, -0.0935342088341713, -0.8966630101203918, 0.44983866810798645, -0.8569076657295227, -0.4871008098125458, 0.17251139879226685, -0.19445635378360748, -0.12491864711046219, -0.457915335893631, 0.35610806941986084, -0.4954206049442291, 0.7354978919029236, -1.0449302196502686, 0.6862406730651855, -0.9932369589805603, 0.2263426035642624, 0.39382752776145935, 0.22205320000648499, 0.16975615918636322, 0.5178519487380981, -0.18174000084400177, -1.2247568368911743, 0.937509298324585, 0.8535733819007874, -0.43294602632522583, -0.14123855531215668, 0.5483008623123169, -0.08978033065795898, 0.6541629433631897, 0.13937868177890778, 1.0111829042434692, -0.29060056805610657, -1.0617619752883911, -0.8834639191627502, -0.46885257959365845, -0.02899288572371006, -0.26281607151031494, -1.3211122751235962, 0.9754411578178406, 1.0495649576187134, -0.6507487297058105, -0.22815540432929993, -0.2642522156238556, 0.06865733116865158, 0.1497565358877182, 0.956375777721405, 0.3996836245059967, 0.8657018542289734, -0.8889930248260498, -0.09339144825935364, -0.521271288394928, 0.1107935979962349, 0.7937599420547485, -0.7046820521354675, 0.581644594669342, 1.6205196380615234, 0.5545176863670349, 0.48280206322669983, 0.11948936432600021, -0.060140460729599, 0.6728676557540894, -1.0062984228134155, -0.3996104300022125, 0.32634252309799194, -0.3325912654399872, 1.0509059429168701, 0.40656155347824097, -0.8964855074882507, -0.46500545740127563, 0.4385124146938324, -0.07973970472812653, -0.6882026791572571, -0.39123615622520447, -0.583853006362915, -0.39276397228240967, -0.6185535788536072, -0.4914673864841461, 0.5687764286994934, -0.0104399798437953, 0.30942246317863464, 0.030717922374606133, -0.04632445052266121, -0.2156866043806076, -0.46679815649986267, -0.48884496092796326, 0.3249758780002594, -0.6094968914985657, -0.41376322507858276, -0.8234266042709351, -0.001466425135731697, 0.7679235339164734, 0.023325102403759956, -0.6402032971382141, -0.06487990915775299, 0.14820018410682678, 0.129316046833992, -0.18084150552749634, 0.45309364795684814, -0.4753357470035553, -0.5320566892623901, -0.5220423936843872, 0.3183477818965912, 0.9465246796607971, -0.3447416424751282, -0.962287187576294, -0.6249778270721436, 1.108217477798462, 1.4572621583938599, 0.6886483430862427, 1.8692243099212646, -0.37850168347358704, 0.19180573523044586, 0.0644165575504303, -0.22867947816848755, -0.26150527596473694, -0.4347996115684509, -0.6920140981674194, -0.006473305635154247, -0.20247168838977814, -0.2946324050426483, 0.13650570809841156, 0.608345627784729, -0.9197483062744141, 0.7480505108833313, 0.8894835114479065, -0.11755120009183884, -1.0621525049209595, 0.009773535653948784, -0.3945102393627167, -1.1168006658554077, 0.752185046672821, 0.6582348942756653, -0.7672545909881592, -0.8689171671867371, -0.40245941281318665, -0.7326241135597229, 1.1128515005111694, -0.08468522131443024, 0.15625359117984772, -0.9075300097465515, -0.7263091802597046, -0.04182606190443039, 0.7231494784355164, 0.42050614953041077, 0.18795229494571686, -0.9479635953903198, 0.052986029535532, 0.7383019924163818, -0.386752724647522, -0.7632211446762085, 0.7095959186553955, -0.6022753715515137, -1.0745245218276978, -0.16595521569252014, 0.705316960811615, 0.17541687190532684, -0.7530069351196289, 0.4345390200614929, -0.49686577916145325, -0.9425789713859558, -0.9108945727348328, 0.1950511336326599, 0.6130893230438232, 0.1710738092660904, 0.4608457088470459, -0.34655946493148804, 1.5476670265197754, -0.24423380196094513, 0.28260722756385803, -1.7867189645767212, 0.7961452007293701, 0.27412623167037964, 1.3497868776321411, -0.13799400627613068, 0.605147123336792, -0.3051154911518097, 0.13304363191127777, -0.11740391701459885, -0.02681855298578739, 1.0002446174621582, 0.09792715311050415, 0.21001265943050385, -0.10012707114219666, 0.07501644641160965, -0.10765640437602997, -0.749387264251709, -0.025609249249100685, 0.10241317003965378, -0.7141037583351135, -0.6300808191299438, 0.7136898636817932, 0.19698311388492584, -0.05368522182106972, -0.8394415974617004, -0.47037431597709656, 1.5364110469818115, 0.48089757561683655, 0.6487493515014648, -0.6756353974342346, 0.1634785681962967, -0.09505820274353027, -0.8030924201011658, -1.004244327545166, 0.2126605063676834, -0.468701034784317, 0.03944066911935806, -0.656295895576477, 0.06646137684583664, -0.6581440567970276, 0.32619723677635193, 0.4409022629261017, -0.34045571088790894, 0.17227385938167572, -0.27933722734451294, 0.5308183431625366, 0.028022730723023415, -0.1246139258146286, 1.2358328104019165, -0.28534573316574097, -0.8326671123504639, -0.2511610686779022, 0.04365971311926842, 0.3252578377723694, -0.48831912875175476, -0.25742265582084656, 0.1598876565694809, -0.7256737351417542, 0.05340591445565224, -0.14039146900177002, -0.07283851504325867, 0.6054096221923828, 0.6857656240463257, 0.31838807463645935, 1.099504828453064, -0.24669653177261353, -1.343522310256958, 0.05601642653346062, 0.06564506143331528, -0.45997706055641174, -0.5886663198471069, 0.22022180259227753, 0.5537390112876892, -0.027166126295924187, 0.5712268352508545, -0.08586238324642181, 0.6617331504821777, 0.12579859793186188, 0.1987229585647583, 0.21065454185009003, -0.14738206565380096, 0.7452875375747681, 1.384469747543335, 0.3597528636455536, 0.22024060785770416, -1.285284161567688, 0.07004119455814362, -1.6260225772857666, 0.39775681495666504, 1.2608317136764526, 0.33750006556510925, 1.5414917469024658, -2.166081428527832, -0.6168950200080872, 0.5424873232841492, -0.019624285399913788, 0.942021369934082, 0.7209579944610596, 0.02523627132177353, -0.37599581480026245, 0.5378032326698303, -0.06851731985807419, -0.1821594387292862, -0.06175495684146881, 0.10192815959453583, 0.05869830399751663, 0.24941381812095642, -0.906801164150238, 1.0529192686080933, -0.6524569392204285, -0.006933500990271568, -0.5831260681152344, 0.14530199766159058, 0.2499600052833557, 0.5040023922920227, 0.3071182370185852, 1.2203552722930908, -0.15642906725406647, -0.7787206768989563, 0.640599250793457, -0.6869986653327942, -0.004355519078671932, 0.37365207076072693, -0.6298232674598694, -0.3120027482509613, -1.0472612380981445, -0.5576255917549133, 0.9261888861656189, -0.20733845233917236, -0.4341375231742859, -0.6541250348091125, -1.1960827112197876, -0.013785925693809986, 0.9097804427146912, 1.3356497287750244, 0.27632835507392883, 0.7621346712112427, 0.42081451416015625, 0.3034282326698303, -0.0886441171169281, 0.029349002987146378, 0.7156895995140076, 0.533129096031189, -0.6642573475837708, -1.7362865209579468, -0.38232889771461487, 0.4877472221851349, 0.9739557504653931, -0.21050965785980225, -0.32157137989997864, 1.3680931329727173, 1.1160660982131958, -0.5152722001075745, -0.9339266419410706, 0.060349348932504654, -0.4549083709716797, -0.3339710533618927, -0.03717472404241562, -0.26997146010398865, 0.21471743285655975, -0.9644228219985962, -1.1670606136322021, 0.8714813590049744, -0.07733067870140076, -1.257709264755249, 0.5602302551269531, 0.04552784189581871, 0.4305706024169922, 0.9520360827445984, -0.38123995065689087, 0.47388505935668945, 0.43041783571243286, -0.6302927732467651, -0.5268321633338928, 0.29322367906570435, -0.10649753361940384, 0.5792675614356995, -0.3081035017967224, 0.7926540970802307, 0.3106362521648407, -0.8108478784561157, 0.5654343962669373, -0.10899920761585236, 0.9250665307044983, 1.1556521654129028, 0.4742942750453949, -0.909605860710144, 0.3010466694831848, -0.688258707523346, -0.9934941530227661, -0.23318630456924438, 0.7569024562835693, 0.481847882270813, -0.7598573565483093, -0.8403050303459167, -1.1059519052505493, -0.30429404973983765, -0.3145449459552765, -0.050614550709724426, 1.1710028648376465, -0.14420989155769348, 0.01723511703312397, 0.2204388678073883, -0.9499789476394653, -0.09149115532636642, -0.11800152063369751, -0.2848324775695801, 0.7051540613174438, -1.7423492670059204, 0.27394306659698486, 0.22324076294898987, -0.9163771867752075, 0.11853030323982239, -0.4228760600090027, 0.1323932260274887, -1.2287585735321045, -1.195296287536621, -1.4172279834747314, -0.44465944170951843, 1.0780465602874756, -0.2883869409561157, 0.6343216896057129, 0.5045567750930786, -1.820508360862732, -0.02652411349117756, 0.5287811160087585, -0.8893095254898071, 0.012805703096091747, -1.2291440963745117, 1.0950441360473633, -0.7106657028198242, 0.3221604824066162, -0.25627946853637695, 1.348434567451477, -1.2781028747558594, -1.3663467168807983, -0.8321942090988159, -0.4437393248081207, 0.6963427662849426, 0.6712966561317444, -0.719488799571991, 1.6721069812774658, 0.30987846851348877, -0.7310181260108948, -0.164558544754982, 0.4259483516216278, -0.8332686424255371, 0.7345494627952576, 0.6123800277709961, 0.1984986662864685, 0.24427473545074463, 1.4760823249816895, 0.1581614762544632, 0.6615937948226929, 0.10936097800731659, -0.08429154008626938, -0.6566863656044006, -0.5167722105979919, -0.35216236114501953, 0.5431832075119019, -1.1111305952072144, -0.4590502679347992, -0.124606654047966, -1.0589027404785156, -1.2508050203323364, 0.7770743370056152, 0.6759531497955322, -0.8429432511329651, -0.3215523064136505, 0.13035903871059418, 0.46183761954307556, -0.23197056353092194, 0.4222649037837982, 0.13767486810684204, 0.21037504076957703, 0.058990538120269775, 0.23111291229724884, 0.061741903424263, -1.5755095481872559, 0.5652080774307251, 0.170313760638237, -0.3496706783771515, -0.570359468460083, 0.7364986538887024, 1.015071153640747, -0.5587148666381836, -0.6784982085227966, 1.1496975421905518, 1.2814997434616089, 0.09231019020080566, -0.28178489208221436, 0.3858371078968048, 0.1505327820777893, 0.2329632043838501, -0.42644912004470825, 0.008756287395954132, -0.7568266987800598, 0.6594511866569519, 1.0051039457321167, -0.46443432569503784, -0.582373857498169, 0.17600701749324799, -0.9186302423477173, 0.44086378812789917, -0.05952445790171623, -0.7383261322975159, 0.24310851097106934, 1.0580650568008423, -0.39179837703704834, -0.8062569499015808, 0.16208021342754364, 0.24718120694160461, 0.3090549409389496, 0.08806972950696945, 0.39665284752845764, 0.8874596357345581, -0.9623028635978699, 1.1098177433013916, 0.6110259294509888, 0.2768884003162384, 0.3870771825313568, -0.8862575888633728, -0.9334453344345093, 0.21042580902576447, -0.5376614928245544, -1.4715325832366943, 0.32711878418922424, -1.221156358718872, -0.7625246047973633, 0.728792130947113, 0.004282377660274506, -0.6230817437171936, 0.2509250342845917, -0.08445841073989868, -0.20222586393356323, 0.6771011352539062, 0.13125406205654144, -0.8041852116584778, 0.7980987429618835, 0.3380488157272339, -0.10474103689193726, -1.3167129755020142, -0.4905721843242645, 0.4117940366268158, -0.024858852848410606, 0.04251778870820999, 0.050970740616321564, 0.28216949105262756, 0.06925870478153229, -1.081913709640503, 0.5049138069152832, -0.3391529619693756, 0.042411964386701584, -0.3183448016643524, 0.04279042035341263, 0.34928348660469055, 0.33285778760910034, 0.13877949118614197, -0.050036605447530746, -0.859413206577301, -0.6333263516426086, 0.41736477613449097, -0.05709018558263779, 1.2501614093780518, 0.09076634049415588, 0.4664826989173889, 0.5777735710144043, -0.5318470001220703, 0.03752706199884415, -0.21968898177146912, 0.18416941165924072, 0.1008542850613594, 0.7244275808334351, 0.009672826156020164, -0.4533982276916504, -0.29925477504730225, -1.3295783996582031, 0.2299225777387619, 0.08546492457389832, 0.007780059706419706, 0.031828511506319046, -0.9471961855888367, -0.7966296672821045, -0.6388148665428162, 0.6870354413986206, 0.656091034412384, 0.35857924818992615, 0.34986191987991333, -0.33258289098739624, -0.8392834067344666, -0.26944178342819214, -0.3931373059749603, 0.1516517996788025, -0.2576594054698944, 0.9613135457038879, 1.297977089881897, 0.2463158220052719, 0.7020904421806335, -0.15577605366706848, 0.6745094060897827, -0.5391032695770264, 0.08953182399272919, -0.7989265322685242, 0.41226017475128174, 0.44150301814079285], [-0.010241042822599411, 2.1648643016815186, -1.885530948638916, -0.42769137024879456, 1.346191167831421, 0.6056143045425415, 1.0538843870162964, 0.11919913440942764, 0.3910144567489624, -0.0662146657705307, 0.15360993146896362, -0.3389971852302551, 0.36938953399658203, 1.4806588888168335, 0.6382160186767578, 0.19623060524463654, 0.9016548991203308, -0.4901956021785736, 0.6603131890296936, 0.6951541900634766, -0.15311309695243835, -0.7828516364097595, -0.09769643843173981, -0.038208507001399994, -0.3905363380908966, 0.7340908646583557, -0.5217078924179077, -0.5856107473373413, -0.913671612739563, -1.1382116079330444, 1.7456573247909546, -0.5212833881378174, 0.4573914408683777, -0.32038626074790955, -0.6572132706642151, -0.9199526906013489, 1.5029864311218262, 1.1847567558288574, 0.7749277353286743, 0.1898954063653946, 1.5586538314819336, 0.24499525129795074, -0.32941934466362, -1.378240704536438, 0.8911489248275757, 0.015323124825954437, 1.3694785833358765, -1.2175098657608032, 0.006256274878978729, -0.6316511034965515, 0.5815264582633972, -0.43516427278518677, 0.9993395805358887, 0.1114826574921608, 0.9292066693305969, 0.05562353506684303, 0.12109687924385071, -0.01646345853805542, 1.0063613653182983, -1.0989595651626587, 0.4105852246284485, 0.08256137371063232, 0.6801915168762207, 0.2761284410953522, 0.161187544465065, 0.20464304089546204, -0.10752283036708832, 0.49029189348220825, -0.2868117392063141, -1.0573512315750122, 0.9274579882621765, -0.002363576553761959, -0.7344765663146973, -0.1766527146100998, -0.8018492460250854, 0.12357000261545181, 0.6387993097305298, 0.43036797642707825, 0.418678879737854, 0.41350892186164856, -0.628558337688446, 0.04146683216094971, 0.8925182819366455, -0.7438221573829651, 0.7534863352775574, 0.15598411858081818, 0.24533793330192566, -0.4478723406791687, -0.37116187810897827, 1.3117631673812866, 0.3332065939903259, -0.747901439666748, 0.3416909873485565, -0.7293687462806702, 0.3034079074859619, -0.7154933214187622, 0.04034269228577614, -0.33495816588401794, -0.8845378160476685, 0.0012044096365571022, -1.0804505348205566, -0.8745190501213074, 0.20568802952766418, 0.24902689456939697, -0.06554558128118515, 1.3160985708236694, 0.45492225885391235, 0.15752477943897247, -0.3490527868270874, -0.43088001012802124, -0.7215352654457092, 0.12749949097633362, -0.3366679549217224, -1.2956831455230713, -0.9753193855285645, 0.09063008427619934, 1.0806035995483398, 0.06087864190340042, 0.43480977416038513, 0.9789334535598755, -0.5617266297340393, 0.3573119044303894, -0.457105427980423, 0.9553398489952087, 0.46986058354377747, 0.5267769694328308, -0.3168569803237915, -0.7139930725097656, 0.5353124737739563, -0.019324244931340218, 0.2615100145339966, 0.5654380321502686, -0.30640146136283875, 1.4000080823898315, -0.8471556901931763, 1.1610136032104492, 0.6065255999565125, -0.7673601508140564, -0.1752629280090332, -0.8962333798408508, 0.5419901609420776, -0.3954899311065674, -0.04314534366130829, -0.33165475726127625, -0.12945771217346191, -0.9020587205886841, 0.6699749827384949, -0.4286389648914337, -0.7408718466758728, 0.27140265703201294, -0.9977108240127563, 0.620700478553772, -0.0432107113301754, 0.8606759309768677, -0.25056445598602295, -0.3587226867675781, 0.9323186278343201, 0.9285523891448975, 0.3673802614212036, -0.5322988629341125, 0.7373254299163818, -0.1467653214931488, -1.283445119857788, 0.5767792463302612, -0.31320035457611084, -0.2778857350349426, 0.2899284362792969, 0.5375611782073975, 0.04255770891904831, 0.9457060098648071, -1.0951861143112183, -0.6609740853309631, -0.19927598536014557, 0.5238093733787537, 0.584186851978302, 0.26165926456451416, 1.0406461954116821, -1.1962183713912964, -1.806290864944458, -0.5292739868164062, 0.5259855389595032, -0.6223422288894653, 0.34119969606399536, 0.01022525504231453, 0.7614277601242065, -0.26200565695762634, 0.5047796964645386, -0.2997918426990509, -0.249374121427536, -1.3813828229904175, -0.5747740864753723, -0.3914102017879486, -0.8295801281929016, 0.03607943654060364, 0.0597207210958004, -0.8382307887077332, 0.44981685280799866, -0.9248909950256348, -0.9170467257499695, 0.3682403266429901, -0.11839042603969574, 0.09245698899030685, -0.49379825592041016, 0.2809184491634369, -0.5083650350570679, 0.14057737588882446, -1.2614673376083374, 1.0773805379867554, -0.17345094680786133, 0.3639886677265167, 1.2475453615188599, 0.2573327422142029, -0.31623125076293945, 0.371815025806427, -1.061187982559204, -1.6497284173965454, 1.119310736656189, 0.4357907176017761, 0.2164679318666458, 0.650973379611969, 0.11818414181470871, 0.28791457414627075, 0.29048487544059753, -0.03697161749005318, 1.3048230409622192, -0.5468220114707947, -0.7879031896591187, -0.9940065145492554, -0.5562469959259033, 0.022734470665454865, -0.4947757124900818, -1.2167340517044067, 0.3602477014064789, 0.9805267453193665, -0.40303629636764526, 0.20957282185554504, -0.07198142260313034, -0.4324989914894104, 0.741487443447113, 0.5849097371101379, 0.2146264612674713, 0.9195685386657715, -0.7625578045845032, -0.43886932730674744, -0.35806143283843994, 0.1291569173336029, 0.9169811606407166, -0.7001651525497437, 0.165569007396698, 1.2192260026931763, 1.3539798259735107, -0.2564195394515991, -0.2864397168159485, 0.05221430957317352, -0.06178918480873108, -0.6524977684020996, -0.8791611194610596, 0.6819795370101929, -1.3070099353790283, 1.2785561084747314, 1.059221625328064, -1.0022319555282593, -0.3463587164878845, 0.2050173431634903, 0.0737590342760086, -0.5810118913650513, -0.7554621696472168, -0.24305087327957153, -0.04140903055667877, -0.12526564300060272, -0.2253609150648117, 0.7924027442932129, -0.10986404120922089, 0.9508999586105347, -0.10757742822170258, -0.06776552647352219, -0.8045316338539124, 0.0017716484144330025, 0.11599977314472198, 0.16307125985622406, -0.4002949893474579, -1.1566455364227295, -0.34451788663864136, -0.5269665122032166, 0.8155995607376099, 0.06936714053153992, 0.08109275996685028, 0.619463324546814, 0.3574277460575104, -0.09643879532814026, -0.25650349259376526, 0.477969229221344, -0.4196161925792694, -0.05509636178612709, -0.049317315220832825, 0.6210408806800842, 0.7929782867431641, -0.37808945775032043, -1.310280680656433, -0.2338486760854721, 0.7775014042854309, 0.8435903191566467, 0.42461588978767395, 1.3799536228179932, -0.6397777795791626, 0.013053679838776588, -0.050108619034290314, -0.14595064520835876, -0.2784361243247986, -0.3358851671218872, -0.1432095170021057, 0.011507975868880749, -0.4126478135585785, -0.39574581384658813, -0.26558464765548706, 1.084854006767273, -0.7097408771514893, 0.7115057706832886, 1.3534355163574219, -0.6101531982421875, -1.0790419578552246, 0.05965595692396164, -0.27727481722831726, -0.9681450128555298, 0.9978765845298767, 1.4008299112319946, -0.6439828276634216, -0.5693287253379822, -0.5133212208747864, -0.30821719765663147, 0.94910728931427, -0.40935271978378296, 0.3693016767501831, -0.964195966720581, -1.3464564085006714, -0.2859914302825928, 1.4454976320266724, 0.10225088149309158, 0.3321070075035095, -0.8071457147598267, -0.023036114871501923, 0.3046703338623047, 0.0004374687559902668, -0.37030673027038574, 0.6535813808441162, -0.4582774043083191, -0.5303844809532166, 0.1404470056295395, 0.5108899474143982, 0.4412868320941925, -0.470981627702713, -0.003151481505483389, -0.6698517799377441, -0.6826525330543518, -0.4793725609779358, 0.20008543133735657, 0.7485759854316711, 0.8823208212852478, 0.0210411436855793, -0.24797175824642181, 0.8324645161628723, 0.08146624267101288, -0.09990785270929337, -1.216064691543579, 0.7157909274101257, 0.8479332327842712, 0.847640335559845, 0.4678637385368347, 0.05760285258293152, -0.10027620941400528, -0.19229628145694733, -0.1972808539867401, 0.43541067838668823, 1.285901665687561, 0.7109403014183044, -0.5232700109481812, 0.5479177236557007, -0.06356948614120483, -0.22949938476085663, -0.47955870628356934, -0.008355812169611454, 0.34376442432403564, -0.7529590129852295, -0.5382990837097168, 1.2834631204605103, 0.12354647368192673, -0.32531386613845825, -0.8672890067100525, -0.6496151089668274, 1.1958544254302979, 0.6014546155929565, 0.25894415378570557, -0.12511363625526428, -0.24250410497188568, 0.2689589560031891, -0.8660176396369934, -0.7755043506622314, -0.265164315700531, -0.18407420814037323, 0.3157229721546173, -0.7806168794631958, 0.22064907848834991, -0.023904770612716675, 0.10672497004270554, 0.2691591680049896, -0.44886210560798645, 0.34954380989074707, -0.11454589664936066, 0.6099256873130798, 0.2142450362443924, 0.18877013027668, 1.1389061212539673, -0.60589599609375, -0.9784428477287292, 0.44704410433769226, -0.49243590235710144, 0.6186320185661316, -0.20367157459259033, -0.2220856100320816, 0.0768023282289505, -0.9905876517295837, -0.5735195279121399, -0.3351632058620453, -0.24740801751613617, 0.8446462154388428, 0.30840936303138733, 0.27248382568359375, 0.8440709710121155, -0.19018417596817017, -1.1728236675262451, 0.11959149688482285, -0.06522155553102493, -0.9237686991691589, -0.5621722936630249, -0.13273657858371735, 0.4323887825012207, -0.0943157747387886, 0.6610805988311768, 0.04358968138694763, 0.6101170778274536, 0.7152684330940247, -0.06711477786302567, 0.5109115242958069, 0.1847936362028122, 0.8546997308731079, 1.5909626483917236, 0.8576664924621582, -0.42619189620018005, -0.8955608606338501, 0.3432874083518982, -1.0200819969177246, 0.1949719786643982, 1.0770422220230103, 0.8707848787307739, 1.2557692527770996, -2.1213276386260986, -0.9737521409988403, 0.9909877777099609, 0.5839393734931946, 0.5880975127220154, 0.7325149178504944, -0.2187129408121109, -0.2569912374019623, 0.48559436202049255, 0.4598686397075653, -0.22528450191020966, -0.019519435241818428, 0.24892553687095642, -0.002052293624728918, 0.7234804034233093, -0.8353765606880188, 0.35783734917640686, -0.482072651386261, -0.17922154068946838, -0.8213653564453125, -0.30628731846809387, 0.3825196921825409, 0.2935350835323334, -0.0030659488402307034, 0.8259138464927673, -0.04159644618630409, -0.2382979691028595, 0.8892302513122559, -0.3257610499858856, 0.053362924605607986, 0.12671412527561188, 0.04292414337396622, -0.46074697375297546, -0.3640432059764862, -0.598425030708313, 0.13095121085643768, -0.16676685214042664, 0.09007681906223297, -0.4435211718082428, -1.1948440074920654, 0.023735662922263145, 0.8864195942878723, 0.453927606344223, 0.6317101716995239, 0.585223913192749, 0.40043047070503235, 0.4497324824333191, -0.1332543045282364, -0.035623177886009216, -0.297026127576828, 0.12329705059528351, -0.5069330930709839, -1.1548641920089722, -0.4963911175727844, -0.06871708482503891, 0.6932647824287415, -0.14609546959400177, 0.9302216172218323, 1.7819355726242065, 1.3298403024673462, -0.4663100242614746, -0.7451553344726562, 0.20500759780406952, -0.3209274709224701, -0.2711438536643982, 0.1014007180929184, -1.0223439931869507, 0.07466888427734375, -0.6735241413116455, -1.2074360847473145, 0.7021784782409668, -0.37553754448890686, -0.9228765964508057, 1.0525144338607788, -0.5086893439292908, 0.37744858860969543, 0.412460058927536, -0.4316389858722687, 0.6113175749778748, 0.7133157849311829, -1.076120376586914, -1.5258101224899292, 0.3887230455875397, 0.19426578283309937, 0.08616003394126892, -0.36958742141723633, 0.7609179615974426, 0.4764404892921448, -0.6424394845962524, 0.09379518032073975, 0.5046672224998474, -0.03663124144077301, 1.3556891679763794, 0.4477311074733734, -0.5106301307678223, 0.0104618389159441, -0.8942934274673462, -0.4428752362728119, 0.07704158127307892, 1.1338309049606323, 0.6184190511703491, -0.7428670525550842, -0.4667816162109375, -0.8943222761154175, -0.18563365936279297, -0.38611891865730286, -0.5520734786987305, 1.103026032447815, 0.17968440055847168, -0.18668919801712036, -0.1702636182308197, -0.5139814019203186, -0.5282554030418396, -0.14582209289073944, -0.23877082765102386, 0.9363887906074524, -1.1315562725067139, 0.05357997119426727, 0.48050180077552795, -0.7234634757041931, -0.025678725913167, -0.7247380018234253, 0.294669508934021, -1.3928256034851074, -0.7927213311195374, -1.3595833778381348, -0.2524119019508362, 0.8108716607093811, -1.0045602321624756, 0.29533255100250244, 0.13240234553813934, -1.5067061185836792, 0.5241653919219971, -0.05553128942847252, -1.749267339706421, 0.29728081822395325, -1.6399004459381104, 0.8097351789474487, -0.6563054323196411, 0.06114763766527176, 0.31559881567955017, 1.3348523378372192, -1.5499831438064575, -1.497882604598999, -0.9824731945991516, -0.25653016567230225, 0.6363863945007324, 0.7751397490501404, -1.0542010068893433, 1.7265859842300415, 0.334404319524765, -0.7917991280555725, -0.7822538018226624, 0.37479865550994873, -0.6207281947135925, 0.6055964231491089, 0.2530538737773895, 0.19579605758190155, 0.3523935079574585, 1.0252057313919067, 0.5360538363456726, 1.0462126731872559, 0.6255881190299988, -0.2093019336462021, -1.0072482824325562, 0.059516455978155136, -0.2743149697780609, 1.079171061515808, -1.4686917066574097, -0.7335643768310547, -0.5620849132537842, -0.5841325521469116, -1.0320169925689697, 0.7645288109779358, 0.7652186155319214, -0.7197645902633667, -0.311434805393219, -0.560365617275238, 0.6898224353790283, -0.3712717890739441, 0.2696257531642914, 0.0333118736743927, -0.25877639651298523, -0.04502008110284805, -0.17248648405075073, 0.0041731419041752815, -1.2613056898117065, 0.32091087102890015, -0.04452626407146454, -0.497140109539032, -0.24859486520290375, 0.5609650015830994, 0.723142683506012, -0.15970690548419952, -0.42113369703292847, 1.4695169925689697, 0.7544674277305603, -0.14019404351711273, 0.14801909029483795, 0.0965636596083641, -0.029916951432824135, 0.15821339190006256, -0.43581917881965637, 0.1422732025384903, -0.9961733222007751, 0.9679501056671143, 0.7551299333572388, -0.3885158598423004, -0.5742767453193665, -0.06364145874977112, -0.4593406021595001, 0.11337582767009735, 0.3051522374153137, -0.3901746869087219, -0.25408878922462463, 1.0732115507125854, 0.2946484684944153, -0.9737816452980042, 0.29765188694000244, 0.37700530886650085, -0.17821848392486572, -0.014810379594564438, 0.20185399055480957, 0.8594721555709839, -0.6186212301254272, 0.6404746770858765, 0.3757788836956024, 0.22513911128044128, 0.15823966264724731, -0.9698092341423035, -0.9562111496925354, 0.367721825838089, -0.6372638940811157, -0.7240803241729736, 1.193615198135376, -1.4889615774154663, -0.015334947034716606, 0.7985379099845886, -0.3682367503643036, -0.5424162149429321, -0.2849528193473816, -0.10035810619592667, 0.14518706500530243, 0.5679328441619873, 0.17096027731895447, -0.9187518358230591, 0.38351836800575256, 0.4757140278816223, -0.4672176241874695, -0.974706768989563, -0.28680217266082764, 0.13684974610805511, -0.5988157987594604, 0.08946724236011505, 0.32954299449920654, 0.662493884563446, 0.03626420348882675, -0.6169511079788208, 0.42080527544021606, 0.2729733884334564, 0.1303439736366272, -0.3707922399044037, 0.2638606131076813, 0.9510224461555481, 0.01882096752524376, 0.23051409423351288, -0.4468991756439209, -0.7677760720252991, -0.9356119632720947, 0.7586807012557983, -0.20000393688678741, 1.130018711090088, -0.10949954390525818, 0.5619486570358276, 0.15564636886119843, -0.4043050706386566, -0.5779027938842773, -0.6892538070678711, -0.03316526114940643, -0.6853761672973633, 1.18490731716156, -0.3940516710281372, -0.23291058838367462, -0.5927060842514038, -1.648816704750061, -0.09580463916063309, 0.032451122999191284, -0.1694774627685547, 0.4009031653404236, -1.0305944681167603, -0.6372278332710266, -0.5690318942070007, 0.6554935574531555, 1.062955617904663, 0.23602677881717682, 0.6259353160858154, 0.024497022852301598, -0.5341220498085022, -0.5276628136634827, 0.07046031206846237, 0.14721226692199707, 0.07993240654468536, 0.7731141448020935, 1.2839277982711792, 0.5142195224761963, 0.7401002049446106, -0.15243427455425262, 1.418492317199707, -0.4176160395145416, 0.1533522605895996, -0.717837393283844, 0.4072059690952301, 0.5702582597732544], [0.6734238266944885, 1.98456609249115, -2.105088710784912, 0.02627733163535595, 0.7864373326301575, -0.18845777213573456, 0.10759613662958145, -0.1689382642507553, 0.06318876892328262, -0.40709805488586426, -0.0402202233672142, 0.020737838000059128, 0.360910028219223, 1.0913516283035278, 0.017849484458565712, 0.835405707359314, 1.0308421850204468, -0.03505899757146835, 0.4587889015674591, 0.6439321041107178, 0.20253562927246094, -0.4115542471408844, 0.09261026233434677, -0.060590241104364395, -0.17069107294082642, 0.446982741355896, -1.076821208000183, -1.0915876626968384, -0.5078416466712952, -0.5702903270721436, 0.12010014802217484, -0.6720472574234009, 0.43354716897010803, 0.054129716008901596, -1.5823200941085815, -0.4055756628513336, 1.332391381263733, 0.7750107049942017, 0.5197969079017639, 0.5421979427337646, 1.04084312915802, 0.5385473966598511, 0.08755612373352051, -1.5908963680267334, -0.691619336605072, -0.5259299278259277, 1.4453034400939941, -0.42067354917526245, -0.005421179812401533, -0.33518511056900024, 0.43434691429138184, -0.7516856789588928, 1.210654854774475, 0.3569592237472534, 1.596254825592041, -0.6096628904342651, 0.374778151512146, 0.4592129588127136, -0.27456796169281006, -1.0128120183944702, 0.31776949763298035, -0.16076311469078064, 0.43616795539855957, 0.5774361491203308, 0.5172737836837769, 0.28222256898880005, -0.7144342660903931, 0.14911623299121857, 0.294430136680603, -0.3428594768047333, 1.5309531688690186, -0.45327773690223694, -0.6355299949645996, -0.04697195440530777, -1.077982783317566, 0.3689897656440735, 1.2221732139587402, 0.30395886301994324, 0.23762325942516327, 0.37211549282073975, 0.19065620005130768, -0.6671051383018494, 0.4722108244895935, -0.9135525226593018, 0.3381267488002777, 0.07140712440013885, 0.5225375294685364, -0.24210849404335022, -0.39677321910858154, 1.1275699138641357, 0.478994756937027, -0.389589786529541, 0.49747928977012634, -0.7293199300765991, -0.04459473863244057, -0.6406561136245728, 0.30407091975212097, -0.5088417530059814, -0.552364706993103, -0.4440821707248688, -0.3406323194503784, -0.4609284996986389, 0.12152974307537079, 0.28752195835113525, -0.6391642689704895, 1.0010331869125366, 0.3802298307418823, -0.23381775617599487, -0.3101469576358795, -0.39713966846466064, 0.08938563615083694, 0.41047024726867676, -0.3928040862083435, -1.588606834411621, 0.27740663290023804, 0.3943069279193878, 1.2454473972320557, -0.10509151965379715, 1.509179949760437, 1.2045812606811523, -0.02793939784169197, 0.022732868790626526, -0.3125690817832947, 0.8165558576583862, 0.4661901593208313, 0.08526137471199036, -0.035066213458776474, -0.7945680618286133, -0.249867781996727, -0.4281476140022278, 0.38870638608932495, -0.09648410975933075, 0.520203173160553, 0.6949729323387146, -0.5977796912193298, 1.46950101852417, 0.3837663531303406, -0.21372191607952118, 0.12273656576871872, -0.13961580395698547, 0.7315773367881775, 0.037520457059144974, -0.40536558628082275, -0.3236599862575531, -0.5200411677360535, -0.14578895270824432, 0.15473806858062744, -0.32331857085227966, -0.30047664046287537, 0.3852477967739105, -1.228986382484436, 0.2451895922422409, 0.08150027692317963, 0.4592020809650421, -0.2431563436985016, -0.5948007702827454, 0.5709871053695679, 0.7561560869216919, 0.294580340385437, -0.15083397924900055, 0.8139529228210449, 0.36296263337135315, -1.3785425424575806, 0.6899673342704773, 0.12759947776794434, -0.779933512210846, -0.1293305903673172, 0.5942903757095337, 0.18436257541179657, 0.77214515209198, -0.8195888996124268, -0.7576078176498413, -0.46970540285110474, 0.7413891553878784, 0.583705723285675, -0.5029780864715576, 1.4141123294830322, -1.0154223442077637, -1.233917236328125, -1.5768977403640747, 0.1879875361919403, -0.35608601570129395, 0.6227708458900452, -0.48480725288391113, 0.641487181186676, -0.4436318874359131, 0.8591602444648743, -0.41358473896980286, -0.9468666315078735, -0.9945549368858337, -0.492597371339798, 0.1511019617319107, -0.832722544670105, 0.5838871598243713, -0.4197116792201996, -1.060285210609436, -0.08994795382022858, -0.4241727888584137, -0.2316218763589859, -0.013086526654660702, 0.1477239578962326, -0.4045233726501465, -0.1756475865840912, 0.6337323784828186, -0.6607706546783447, 1.1129761934280396, -1.4036287069320679, 1.091103196144104, -0.6190611720085144, 0.04056345671415329, 0.695784866809845, 0.3613589107990265, -0.5114551186561584, 0.5282694697380066, -0.33928054571151733, -2.0909554958343506, 0.8887837529182434, 0.4456656575202942, -0.5668789148330688, -0.6252984404563904, 0.9012052416801453, 0.3800174593925476, -0.1045963317155838, -0.2418919801712036, 0.8564649224281311, -0.5493904948234558, -0.8640244007110596, -0.8071702122688293, -0.8837645053863525, -0.41026294231414795, -0.6618671417236328, -1.3574448823928833, 0.9816027879714966, 0.6665382385253906, -1.0383416414260864, 0.33692800998687744, 0.1415434628725052, 0.37768176198005676, 0.4395761489868164, 0.38902905583381653, 0.4312833845615387, 1.1151752471923828, -0.12036190927028656, 0.09348464012145996, -1.1930408477783203, 0.12335231155157089, 0.4277174174785614, -0.5801202654838562, 0.023144278675317764, 1.213301420211792, 1.46924889087677, 0.2213403433561325, -0.3254212737083435, 0.43043041229248047, 0.21019655466079712, -0.45485493540763855, -1.059509515762329, 0.2738349437713623, -0.7985036969184875, 1.094712495803833, 1.2367678880691528, -0.6484484076499939, -0.2759707272052765, 0.08830918371677399, 0.4238005578517914, -0.7061861753463745, -0.1871953010559082, -0.6498650908470154, -0.06777424365282059, 0.09327845275402069, -0.5957967638969421, 0.6468486785888672, 0.3311924338340759, 0.6957545876502991, 0.19400088489055634, 0.4806693494319916, -0.3815883994102478, 0.3181656002998352, -0.19338925182819366, 0.5003584623336792, -0.13446591794490814, -0.5572854280471802, -0.4028538763523102, 0.07071293145418167, 0.50803142786026, 0.3583028316497803, 0.28974688053131104, 0.28446853160858154, -0.4141836166381836, -0.6992663741111755, -0.001028131227940321, 0.10613293945789337, 0.24438630044460297, 0.17381778359413147, -0.04515039920806885, 0.1551763266324997, 0.32994896173477173, -0.8917825818061829, -0.5806114673614502, -0.2099420577287674, 0.46303778886795044, 1.834251880645752, 0.12586656212806702, 1.4799224138259888, -0.2946902811527252, 0.38533517718315125, -0.05355094373226166, 0.2295766919851303, -0.25142422318458557, -0.7979847192764282, -0.8278404474258423, 0.01123141311109066, 0.10185428708791733, 0.024766717106103897, -0.447172075510025, 0.6937376856803894, -0.9447520971298218, 0.46841293573379517, 1.3204129934310913, -0.9712421298027039, -1.1646442413330078, -0.293296217918396, -0.38082727789878845, -0.3353484272956848, 0.7740873098373413, 1.0495051145553589, -1.1983575820922852, -0.5113059282302856, -0.3893626928329468, -0.2971123158931732, 0.5778690576553345, 0.09950660169124603, 0.01768200658261776, -1.0129687786102295, -1.0244596004486084, -0.21131904423236847, 1.0995639562606812, 0.6045166254043579, 0.1855197250843048, -0.06160774827003479, 0.6025100350379944, 0.18819861114025116, 0.5116570591926575, -1.005568027496338, 0.17360185086727142, -0.1333380490541458, -1.0246167182922363, -0.37722477316856384, 0.8125084042549133, 0.7483343482017517, -0.5263426899909973, -0.4864702522754669, -0.5181681513786316, -0.41615232825279236, -0.2697339951992035, 0.09710335731506348, -0.2719643712043762, 0.7953689098358154, -0.818878710269928, -0.04822523891925812, -0.07925659418106079, 0.562636137008667, -0.06725089251995087, -1.937929391860962, 0.4343372583389282, 0.19422121345996857, 0.853879988193512, 0.1815330535173416, -0.29542315006256104, -0.34206342697143555, 0.10893318802118301, 0.15377278625965118, 0.434149831533432, 1.0988988876342773, -0.2241905927658081, 0.5140694379806519, -0.5381775498390198, -0.17154528200626373, -0.07862995564937592, -0.792465090751648, -0.03726665675640106, 0.24345049262046814, -0.7980942726135254, 0.11006977409124374, 0.9553665518760681, 0.34450608491897583, -0.3576997220516205, -0.020622264593839645, -0.0383896566927433, 0.58942049741745, -0.011604983359575272, 0.5199022889137268, 0.14300622045993805, 0.15933334827423096, 0.5734740495681763, -0.6871728301048279, -0.5379945039749146, -0.5213073492050171, 0.22648216784000397, 0.9858189225196838, -0.6298792362213135, 0.01121682021766901, -0.6634151339530945, 0.4113937020301819, -0.08148830384016037, -0.23869198560714722, 0.1638549566268921, -0.5056843161582947, 0.2502956688404083, -0.40010082721710205, 0.06080788001418114, 0.6308783292770386, -1.0097674131393433, -0.24310633540153503, 0.09580107778310776, -0.5686954855918884, 0.5758578181266785, 0.04417555406689644, 0.2269294410943985, 0.13521713018417358, -0.523302435874939, -0.9886568784713745, -0.10087732970714569, -0.35420286655426025, 0.7768678069114685, -0.2277059406042099, 0.49254459142684937, 0.49322041869163513, -0.3720221519470215, -0.9693977236747742, 0.5423212051391602, 0.15523800253868103, -0.38366788625717163, -0.5642015933990479, 0.33944907784461975, 0.6787614226341248, -0.1770787537097931, 0.6183505058288574, 0.5520281195640564, 1.4480149745941162, 0.32858529686927795, 0.11477464437484741, 0.010981951840221882, 0.7089415788650513, 0.7450876832008362, 0.9915114045143127, 0.8427344560623169, -0.4418572783470154, -0.7286754250526428, 0.342085599899292, -0.7850889563560486, 0.5593699216842651, 0.6092196106910706, 0.5599913001060486, 1.1540285348892212, -1.585166335105896, -0.7570436000823975, 0.7207658886909485, 0.12886878848075867, 0.12644246220588684, 0.7988370060920715, -0.7187033295631409, -0.8264862895011902, 0.4599446952342987, -0.4280923306941986, 0.6107802391052246, 0.3090340495109558, -0.3600858449935913, -0.2443055659532547, 1.0468907356262207, -0.5448569059371948, 0.7684410214424133, -0.7276172637939453, 0.12145231664180756, 0.4931650757789612, -0.5840567946434021, 0.45710697770118713, 0.2278028130531311, -0.1375303715467453, 1.021575689315796, -0.7797048687934875, -0.8084766864776611, 0.38150864839553833, -1.050585150718689, 0.014176882803440094, -0.30662989616394043, 0.3466531038284302, -0.44105157256126404, -0.24305300414562225, -0.5032693147659302, -0.18445493280887604, -0.03529224544763565, -0.5795403718948364, -0.2990807294845581, -0.7950919270515442, -0.0716036856174469, 1.00691556930542, 1.289340615272522, -0.3147689998149872, 0.48445606231689453, 0.4705292284488678, 0.08579334616661072, -0.4150550961494446, 0.00405290350317955, -0.1390341967344284, -0.15019656717777252, -0.16612133383750916, -1.6568363904953003, -0.8176797032356262, -0.48039475083351135, 0.7162132859230042, 0.154234379529953, 0.4483904242515564, 0.8329046368598938, 0.8861434459686279, -0.33514168858528137, -0.8069452047348022, 0.5985665321350098, -0.41171592473983765, 0.27303388714790344, 0.44165757298469543, -0.998685896396637, -0.5818746089935303, -1.1863861083984375, -1.2407647371292114, 0.6253607869148254, -0.41229012608528137, -0.8699366450309753, 0.6219950914382935, 0.3192541301250458, -0.479692280292511, 0.7457072138786316, -0.5898057818412781, 0.7794348001480103, -0.14009545743465424, -0.5138435363769531, -1.4062830209732056, 0.3972495198249817, 0.09614083915948868, 0.3625640273094177, 0.1824081689119339, 0.725400984287262, 0.2241344302892685, -0.41897186636924744, -0.3528168499469757, 0.14054575562477112, 0.46643778681755066, 0.8128892779350281, -0.10380158573389053, -0.39279815554618835, 0.0009296722710132599, -0.47304049134254456, -0.6242931485176086, 0.030867312103509903, 1.0591005086898804, 0.15875957906246185, -0.4501722753047943, -0.009431746788322926, -0.5297269225120544, -0.2829072177410126, -0.4993434548377991, -0.4503815770149231, 0.6913925409317017, 1.0919188261032104, -0.5012297034263611, 0.459990918636322, -0.29432716965675354, -0.3816838264465332, -0.5042616128921509, 0.6559320688247681, 0.9262708425521851, -0.903986930847168, 0.3671676516532898, 0.1419152170419693, -0.7640137672424316, -0.4554145634174347, -0.5059142112731934, 0.2709277868270874, -0.7236226797103882, -0.8436727523803711, -1.1375688314437866, 0.4999244213104248, 1.0962992906570435, -0.6539763808250427, 0.6417015790939331, 0.12417823076248169, -1.147244930267334, 0.4341735541820526, -0.6742525696754456, -1.842491626739502, 0.5002925395965576, -1.314946174621582, 0.7337889671325684, -0.20500394701957703, 1.015745997428894, -0.4378499686717987, 1.5362578630447388, -2.0936570167541504, -1.7787578105926514, -1.2460360527038574, 0.06300058215856552, 0.8615137338638306, 0.34479719400405884, -0.4114643335342407, 1.0224210023880005, 0.04432431235909462, 0.11503087729215622, -0.22206272184848785, -0.3467716872692108, -0.4970429539680481, 0.39261046051979065, 0.6864289045333862, 0.6799143552780151, -0.10864060372114182, 0.5974313020706177, 0.4567897319793701, 0.9913081526756287, 0.31655386090278625, 0.7879747152328491, -0.42827627062797546, -0.33240923285484314, 0.15418297052383423, 0.9251081943511963, -0.6802759766578674, -0.6770353317260742, -0.25082919001579285, -0.6079650521278381, -0.8497382402420044, 0.21158337593078613, 0.6488760113716125, -0.9075374007225037, -0.5661208629608154, -0.5675837397575378, 0.19225968420505524, -1.1615839004516602, 0.4198000729084015, -0.7186654210090637, 0.43156853318214417, 0.7635360360145569, -0.28592759370803833, 0.26412832736968994, -0.5995623469352722, -0.14545243978500366, 0.6421065926551819, -0.29679831862449646, -0.5789757370948792, 1.01702082157135, 0.2513315975666046, 0.7968092560768127, -0.4995809495449066, 1.2685211896896362, 0.6093214154243469, -0.07727456092834473, 0.18313226103782654, -0.046551235020160675, 0.30963391065597534, 0.5012816786766052, -0.7312294244766235, -0.22051113843917847, -0.8205028772354126, 1.0748435258865356, 0.41716888546943665, -0.2250726968050003, -0.07706252485513687, 0.37989911437034607, -0.48920419812202454, 0.3428021967411041, 1.3149693012237549, -0.5533936619758606, -0.3951272666454315, 1.2746309041976929, 0.15814107656478882, -0.8903118968009949, 0.4452475607395172, 0.42504361271858215, 0.041505906730890274, 0.4312869906425476, 0.5619747042655945, 0.8654760122299194, -1.0385245084762573, 0.8412553668022156, -0.23324410617351532, 0.17062930762767792, 0.22248512506484985, -0.6623019576072693, -1.0256096124649048, 0.5052738785743713, -0.7062199115753174, -1.3068808317184448, 0.4561821222305298, -1.2537496089935303, -0.4520341455936432, 1.08985435962677, 0.04173281788825989, -0.860485851764679, 0.0076552219688892365, -0.10237318277359009, 0.21886394917964935, 0.11783698201179504, 0.4404812157154083, -0.3288162648677826, 1.004108190536499, 0.5201194286346436, 0.11478356271982193, -1.0659435987472534, -0.029179314151406288, 0.5856293439865112, -0.3311977982521057, 0.04787929728627205, -0.4379962384700775, 0.3600674569606781, 0.14134113490581512, -0.4134010970592499, 0.19885963201522827, -0.27340462803840637, 0.7525490522384644, 0.5072845220565796, -0.19970671832561493, 0.5194352269172668, 1.0495051145553589, 0.5483649969100952, -0.23383142054080963, -0.8017608523368835, -0.9285402894020081, 0.8024858236312866, -0.35323792695999146, 0.9488596320152283, 0.23793268203735352, 0.8369626998901367, 0.43390020728111267, -0.713815450668335, -0.4851430654525757, -0.2561603784561157, 0.6167307496070862, 0.2956751883029938, 0.4171808063983917, 0.5230752825737, -0.036773666739463806, -0.055322401225566864, -0.756004810333252, 0.5089231729507446, 0.8321793675422668, -0.07032047212123871, -0.20891474187374115, -1.0417160987854004, -0.512908935546875, -1.1549439430236816, 0.8365541696548462, 0.8985011577606201, -0.19905395805835724, 0.4084811210632324, -0.08961787819862366, -1.0517657995224, -0.09912106394767761, -0.23568998277187347, 0.22474870085716248, -0.3777795135974884, 1.3639806509017944, 1.3481314182281494, 0.5622035264968872, 0.7735907435417175, -0.5688654780387878, 0.2688462734222412, -1.0626981258392334, -0.026196330785751343, -0.8513465523719788, -0.09565550833940506, -0.20725658535957336], [0.64341139793396, 1.570115327835083, -2.3799538612365723, -0.20766355097293854, 1.294832706451416, 0.3770662546157837, 1.895882248878479, -0.4497687816619873, 0.8106083869934082, -0.43860843777656555, -0.08846757560968399, -0.5425769090652466, -0.11808886379003525, 1.2326531410217285, 0.3333527743816376, 0.30989205837249756, 0.41617491841316223, -0.4036792814731598, 0.9150791764259338, 0.544759213924408, 0.0428340919315815, 0.15808439254760742, -0.030563991516828537, -0.08599084615707397, -0.15375222265720367, 0.39716511964797974, -0.40240374207496643, -0.9258700013160706, -1.1635596752166748, -1.0998413562774658, 0.563607394695282, -0.6598276495933533, 0.3704122006893158, -0.1546253263950348, -0.9439429640769958, -0.6721351742744446, 1.5952661037445068, 1.1592134237289429, -0.2906032204627991, 0.6754084229469299, 2.26023006439209, 0.5520356297492981, -0.09498022496700287, -1.5657063722610474, -0.1848682314157486, -0.501666247844696, 1.0940794944763184, -0.9447306394577026, -0.21771414577960968, -0.7343745231628418, 0.6988270878791809, -1.4091023206710815, 0.9788952469825745, 1.0327709913253784, 1.069847583770752, -0.42958077788352966, 0.6352008581161499, 0.5887093544006348, -0.08928465843200684, -0.5323191285133362, 0.6704968810081482, -0.672578752040863, -0.6303380727767944, 0.6333426833152771, -0.14509733021259308, 0.3065429925918579, -0.22597146034240723, 0.28994232416152954, 0.23435179889202118, -0.13033165037631989, 0.971039891242981, 0.08946263790130615, -0.37100526690483093, -0.3887863755226135, -0.9852781891822815, -0.025176892057061195, 0.38491687178611755, 0.5959635376930237, 0.3990517258644104, 0.3656938672065735, -0.5855558514595032, -0.05568584427237511, 0.8035316467285156, 0.2013394981622696, 0.3430441617965698, 0.19394540786743164, 0.23277536034584045, -0.9583917260169983, 0.02428482100367546, 1.8534228801727295, 0.8360955715179443, -1.0281955003738403, 0.4284622371196747, -1.3584930896759033, 0.4500448703765869, -0.3433689773082733, 0.3352554440498352, -0.6475440263748169, -0.37571021914482117, -0.48965612053871155, -0.5674890279769897, -0.8347620368003845, 0.2314804643392563, 0.6193720698356628, -0.2345198541879654, 0.9630982279777527, 0.21502141654491425, 0.4381822347640991, -0.8180912137031555, -0.4374167323112488, -0.1488141119480133, 1.387342095375061, -0.5049489736557007, -0.9381967186927795, -0.24473436176776886, 0.632373571395874, 1.4519315958023071, -0.22516244649887085, 0.8847128748893738, 0.6828731894493103, -1.0860438346862793, 0.3787602484226227, -0.13326534628868103, 1.1402226686477661, 0.5706298351287842, 0.2901248633861542, -0.11401631683111191, -0.1088109090924263, 0.7013629078865051, -0.26044467091560364, -0.253277450799942, -0.21231433749198914, -0.04890318959951401, 0.698821485042572, -1.035901427268982, 0.8199664354324341, 0.29992273449897766, -0.5544363856315613, -0.08563581854104996, -0.8318625092506409, 0.6543670296669006, 0.8541682958602905, -0.41747868061065674, -0.4843110144138336, 0.13648462295532227, -0.10755252838134766, 0.7315843105316162, -0.17029596865177155, -0.33406075835227966, 0.11084713786840439, -0.7644896507263184, 0.135148286819458, -0.11755838245153427, 0.8518868684768677, -0.3623327910900116, 0.4628693163394928, 0.6945244073867798, 0.2759771943092346, 0.5703003406524658, 0.29204970598220825, 0.7296308279037476, 0.601745069026947, -1.60890531539917, 0.7969928979873657, 0.41741570830345154, -0.1578567624092102, -0.025101976469159126, 0.9907873272895813, -0.5596681833267212, 0.9559909701347351, -0.8596972823143005, -0.44601160287857056, -0.5541794300079346, 0.8505552411079407, 0.5075049996376038, -0.05957465618848801, 1.556729793548584, -0.9571190476417542, -1.236610770225525, -1.4160327911376953, 0.23872312903404236, -0.2390955537557602, 0.7793104648590088, -0.402624249458313, 1.0989269018173218, -0.4453539252281189, 0.5302866697311401, -0.7763224244117737, -0.47356313467025757, -0.6982179880142212, -1.7384722232818604, 0.11467564851045609, -0.9892275333404541, 0.1632724404335022, -0.6213954091072083, -1.3032549619674683, 0.15439976751804352, -0.6589235067367554, -0.8456733226776123, -0.12613166868686676, -0.7272357940673828, -0.4035152494907379, -0.6006746292114258, -0.31693196296691895, -0.5470706820487976, 0.46204349398612976, -1.5919421911239624, 0.9401187300682068, -0.5306540727615356, -0.2619374692440033, 1.165071725845337, 0.037979625165462494, -0.5997238159179688, 0.9831306338310242, -0.20786091685295105, -1.942940354347229, 0.8318004012107849, 0.3665217161178589, 0.002054535783827305, 0.039468128234148026, 0.3114215135574341, 0.2922791838645935, 0.29339784383773804, -0.06697140634059906, 0.7890557050704956, -0.8966383337974548, -0.5807870626449585, -0.7837967276573181, -0.2733236253261566, -0.19353355467319489, -0.7144401669502258, -1.7830497026443481, 0.45258286595344543, 0.8854519724845886, -1.166649341583252, 0.22203916311264038, -0.11631809175014496, 0.13806301355361938, 0.9116194248199463, 0.16948623955249786, 0.10826696455478668, 1.2850592136383057, -0.07417996972799301, 0.11393444240093231, -0.7269124984741211, 0.43084168434143066, 0.841117799282074, -0.8760697841644287, 0.3894989490509033, 1.5577127933502197, 1.221795678138733, 0.033815838396549225, 0.3491949439048767, -0.15446922183036804, -0.17002707719802856, -1.481092095375061, -0.2781606912612915, 0.06096870079636574, -0.2639804184436798, 1.352034330368042, 1.3058173656463623, -1.114467978477478, -0.11464449763298035, -0.5130842328071594, 0.2484373152256012, -0.4910653829574585, -0.4837383031845093, 0.11995182186365128, 0.28010931611061096, 0.41924992203712463, -0.11456158757209778, 0.1269705593585968, -0.07992954552173615, 1.440900206565857, -0.3253876566886902, 0.6375315189361572, -0.6764269471168518, 0.12189915776252747, 0.04797247052192688, 0.39821550250053406, 0.20498710870742798, -0.7310382127761841, -0.40346869826316833, -0.25759345293045044, 1.0735012292861938, 0.1677628755569458, -0.004059943836182356, -0.099611796438694, 0.01673368364572525, -0.09020847827196121, 0.5272623300552368, 0.5357227325439453, -0.6365352272987366, 0.5361196398735046, 0.4051108956336975, 0.3627333641052246, 0.48470616340637207, -0.9247918128967285, -1.066579818725586, -0.03904607146978378, 0.38177743554115295, 1.3266639709472656, 0.8360105156898499, 2.066239595413208, -0.4926638603210449, -0.055092014372348785, 0.08728604018688202, -0.5888412594795227, 0.15193773806095123, -0.43292421102523804, -0.7833814024925232, -0.2868906557559967, -0.2825011909008026, 0.0819924995303154, -0.10085134208202362, 0.25734543800354004, -0.9087819457054138, 1.2313144207000732, 0.8698419332504272, -0.8068905472755432, -1.011374831199646, 0.22304727137088776, -0.1600121706724167, -0.22020624577999115, 0.7246760725975037, 0.5632186532020569, -1.2478028535842896, -0.3241916298866272, 0.05961981788277626, -0.2636469304561615, 1.2858258485794067, -0.036036133766174316, 0.7740305662155151, -1.5499730110168457, -0.791161060333252, -0.2756786346435547, 1.7882447242736816, 0.13474738597869873, -0.2732248306274414, -1.1676859855651855, 0.43026840686798096, -0.2289159893989563, -0.017018718644976616, -0.589332103729248, 0.9104899168014526, -0.17721745371818542, -0.92322838306427, -0.24310630559921265, 0.14978142082691193, 0.8329001069068909, -0.0686754658818245, 0.07498400658369064, -0.38262441754341125, -0.9972319006919861, -0.39089956879615784, 0.2897622585296631, 0.5639921426773071, 0.501050591468811, 0.06298313289880753, -0.7193618416786194, 1.1758642196655273, 0.026279989629983902, 0.041797950863838196, -1.4917542934417725, 0.766016960144043, 0.5415835976600647, 1.02644944190979, 0.17776739597320557, 0.12015141546726227, 0.057278845459222794, 0.13975980877876282, 0.09646786749362946, 0.05413876846432686, 0.8469012975692749, 0.6555770039558411, 0.21198707818984985, -0.1109849140048027, 0.26581868529319763, -0.29706430435180664, -0.7082566618919373, -0.03971129283308983, 0.4174981415271759, -0.16262437403202057, -0.652651309967041, 1.1578893661499023, 0.5965207815170288, -0.09913629293441772, -0.19600793719291687, -0.8387560844421387, 0.9748626351356506, 0.5473563075065613, 0.31856539845466614, -0.3130817711353302, 0.14395855367183685, 0.5050578117370605, -1.2985098361968994, -1.1948680877685547, -0.07371237874031067, -0.06381309032440186, 1.0508919954299927, -0.7087392807006836, -0.3570118546485901, -0.459884911775589, 0.12343651801347733, 0.2681947946548462, 0.35049182176589966, 0.3839808702468872, -0.11355414986610413, 0.5395309329032898, 0.49029502272605896, 0.2750152051448822, 0.8186760544776917, -1.1945127248764038, -0.23410959541797638, 0.08896201103925705, -0.036659907549619675, 0.3702850043773651, 0.07587169855833054, -0.4427487254142761, -0.6881034970283508, -1.1380174160003662, -0.681529700756073, -0.46081802248954773, -0.16372275352478027, 0.6073569059371948, 0.053462106734514236, 0.6109517216682434, 0.9844642877578735, -0.17425592243671417, -1.0598456859588623, 0.16896870732307434, 0.3867478668689728, -0.15421515703201294, -0.5543391108512878, 0.2679412364959717, 0.3001592755317688, -0.16599290072917938, 0.6518869400024414, 0.21470879018306732, 0.26101574301719666, -0.4928547441959381, 0.0032675843685865402, -0.20754162967205048, 0.5480153560638428, 0.36161330342292786, 1.2308690547943115, 1.0329921245574951, -0.39942485094070435, -0.7343346476554871, 0.34271883964538574, -1.0352730751037598, 0.1821257472038269, 0.7233229875564575, 0.154851496219635, 1.2657513618469238, -2.3131308555603027, -0.31101077795028687, 0.7105907201766968, 0.5811262726783752, 0.3070676624774933, 0.9796205759048462, -0.6214229464530945, -0.43708154559135437, 0.3001025915145874, -0.009408208541572094, 0.12798725068569183, 0.31573641300201416, 0.8232522010803223, -0.4934806823730469, 1.4401919841766357, -0.481979101896286, 0.5123002529144287, -0.7971675992012024, -0.5558621883392334, 0.2464754283428192, -0.3430304527282715, 0.3791757822036743, 0.6993764042854309, -0.45195239782333374, 0.6956620216369629, -0.32160335779190063, -0.5903260111808777, 0.6609339118003845, 0.06376725435256958, 0.08986793458461761, 0.1985013633966446, -0.2638345956802368, -0.40296095609664917, -0.7074083685874939, -0.7875151634216309, 0.292581707239151, -0.15059636533260345, -0.785499632358551, -0.19623281061649323, -1.1917853355407715, -0.28617429733276367, 1.2810734510421753, 1.2721561193466187, 0.20454439520835876, 0.4552127718925476, 0.5660194158554077, -0.05390060320496559, 0.01604606583714485, 0.41963934898376465, 0.05449764057993889, 0.4761029779911041, -0.29266926646232605, -1.7860993146896362, -0.6882767677307129, 0.17179086804389954, 0.9544302225112915, 0.1394777148962021, 0.7736148834228516, 1.3297439813613892, 1.3067539930343628, -0.13300779461860657, -0.8727728128433228, 0.5022556781768799, -0.428089439868927, 0.5439766049385071, 0.29181236028671265, -0.8228946924209595, -0.6624089479446411, -0.37941867113113403, -1.3115613460540771, -0.02506292425096035, -0.36305466294288635, -0.992130696773529, 0.5158865451812744, 0.18550662696361542, 0.011038318276405334, 0.7626363039016724, -0.5750333666801453, 0.4722149670124054, 0.20010288059711456, -1.0335556268692017, -1.1149959564208984, 0.5306062698364258, -0.24266766011714935, 0.8372036814689636, -0.8977805376052856, 0.6483702063560486, 0.324191153049469, -1.015734076499939, -0.13746358454227448, 0.3506641089916229, 1.0000793933868408, 0.5330843925476074, 0.2580786645412445, -0.3487539291381836, 0.32373908162117004, -0.5705750584602356, -0.9663158655166626, -0.6185030341148376, 0.8808305263519287, 0.29278600215911865, -0.6844604015350342, -0.009617868810892105, -0.5177854299545288, -0.4556201994419098, -0.5717213153839111, -0.27886009216308594, 0.482713907957077, 0.6321762800216675, -0.22946101427078247, -0.48359179496765137, -1.0434001684188843, -0.7676223516464233, -0.5642738342285156, -0.3104087710380554, 0.5567014217376709, -0.924872636795044, 0.18492642045021057, -0.13797754049301147, -1.0663585662841797, -0.0024744123220443726, -0.9725465178489685, 0.03691338375210762, -0.8242080211639404, -1.3487449884414673, -1.1823643445968628, 0.343816339969635, 0.9171589016914368, -1.2700529098510742, 1.0240001678466797, 0.23709791898727417, -1.1405755281448364, 0.4627934396266937, -0.4389668107032776, -1.5094190835952759, 0.16196538507938385, -1.635749340057373, 0.88900226354599, -0.3941853940486908, 0.7058009505271912, -0.0010381662286818027, 1.3731948137283325, -1.780730128288269, -0.7970592975616455, -0.8187347054481506, -0.11314325034618378, 0.8562906384468079, 0.678339958190918, -1.0445976257324219, 1.3783437013626099, 0.2783856987953186, -0.658521294593811, -0.5914177894592285, 0.09897775202989578, -0.6265415549278259, 0.18223899602890015, 0.33805254101753235, 0.635074257850647, 0.6186344623565674, 1.0328311920166016, -0.12031060457229614, 0.3384491205215454, 0.4484918713569641, -0.27785083651542664, -0.42439207434654236, -0.8513897657394409, -0.19189319014549255, 0.7523350715637207, -0.89447420835495, -0.17815515398979187, 0.05047640949487686, -0.9419651627540588, -1.3093727827072144, 0.5535127520561218, 0.997610330581665, -0.49827998876571655, 0.05834636092185974, -0.26772692799568176, 0.08871057629585266, -1.0760490894317627, 0.49583226442337036, -0.13159045577049255, -0.15093271434307098, -0.11707637459039688, -0.4200766682624817, 0.02747003547847271, -0.6604821085929871, 0.8565707206726074, 0.6092949509620667, -0.29367774724960327, -0.04268190264701843, 0.5555823445320129, 1.1577662229537964, 0.6561897397041321, -0.4945929944515228, 1.670647144317627, 1.2451694011688232, 0.12310352921485901, -0.017300600185990334, 0.9903951287269592, 0.043375127017498016, 0.9060891270637512, -0.6573111414909363, -0.28533393144607544, -0.47312724590301514, 0.47391942143440247, 0.301725834608078, -0.444497287273407, -0.4417150616645813, -0.20053403079509735, -0.4530530571937561, -0.12424960732460022, 0.568475604057312, -0.6244812607765198, -0.4157848060131073, 1.1906366348266602, -0.08320043236017227, -0.02424922026693821, 0.029999667778611183, 0.9980994462966919, -0.15730340778827667, -0.29316481947898865, 0.6386746764183044, 0.4095878303050995, -0.8651493787765503, 0.8734078407287598, 0.16049297153949738, 0.3154229521751404, -0.10802851617336273, -0.29256346821784973, -1.4584108591079712, 0.4565146565437317, -0.9079480171203613, -0.9035115242004395, 1.0714329481124878, -1.201509952545166, -0.8025083541870117, 0.4856034815311432, -0.12955647706985474, -0.5682606101036072, -0.5321288108825684, 0.08949725329875946, -0.05404660105705261, 0.2030395269393921, 0.5944226384162903, -0.6260056495666504, 0.9676778316497803, 0.13228261470794678, -0.10555455833673477, -0.17240886390209198, -0.5209750533103943, 0.9369432926177979, -0.5742694735527039, 0.3267407715320587, -0.35659855604171753, 0.37282073497772217, -0.24707360565662384, -0.9734219908714294, 0.15996184945106506, 0.20137269794940948, -0.20304806530475616, -0.21066312491893768, -0.3728933036327362, 0.5967699289321899, 0.19951121509075165, 0.34146398305892944, -0.8045132756233215, -0.5497006773948669, -0.6531245708465576, 0.29540854692459106, -0.5699556469917297, 1.1135841608047485, -0.5836142301559448, 1.1397318840026855, 0.16113115847110748, -0.5685351490974426, -0.45565250515937805, -0.3628218173980713, 0.17164576053619385, -0.3791961073875427, 1.0054529905319214, 0.4699237644672394, 0.12175624072551727, -0.5340004563331604, -1.0461636781692505, 0.49926239252090454, 0.4800092577934265, -0.20450779795646667, 0.268026202917099, -1.1860960721969604, -0.6419281959533691, -0.5393535494804382, 0.7195501327514648, 0.32628530263900757, -0.15933701395988464, -0.18629290163516998, 0.017247062176465988, -0.8425599932670593, 0.0849766805768013, 0.2404729276895523, 0.10283095389604568, 0.262391597032547, 0.9962970018386841, 1.707682490348816, 0.250308632850647, 0.08822053670883179, -0.16618764400482178, 0.9990584254264832, -0.4297357499599457, 0.10298764705657959, -0.7922431230545044, 0.05492985248565674, -0.1337910145521164], [0.03415742143988609, 1.7334480285644531, -1.9799940586090088, -1.1685237884521484, 1.395931601524353, 0.19966767728328705, 1.0289133787155151, -0.11009088158607483, 0.1986171454191208, -0.446150541305542, -0.049903083592653275, -0.21488697826862335, 1.1106592416763306, 1.3855317831039429, -0.0305120050907135, 0.3217240273952484, 0.5336903929710388, 0.06338631361722946, 0.6668434143066406, 0.8335056304931641, -0.6792657375335693, -0.44922035932540894, 0.09439938515424728, 0.5058587193489075, -0.4957827627658844, 0.5511695146560669, -0.8946033716201782, -0.5054042339324951, -1.3769947290420532, -0.12974373996257782, 1.3133355379104614, -1.5151126384735107, -0.19475236535072327, 0.25977712869644165, -1.2517898082733154, -0.5810561180114746, 1.380081057548523, 0.18051636219024658, 0.3671732246875763, 0.21706411242485046, 1.647964358329773, 0.4386036992073059, -0.14553016424179077, -1.7963716983795166, 0.1199524998664856, 0.3291529715061188, 0.9537290334701538, -1.0498770475387573, 0.47756659984588623, -0.8862125873565674, 0.9642132520675659, 0.13827060163021088, 2.0055665969848633, 0.655284583568573, 0.6990712285041809, 0.14931242167949677, 0.9179575443267822, 0.26008978486061096, 0.7855579257011414, -0.22212837636470795, 1.2872675657272339, 0.4160647690296173, -0.19372905790805817, 0.5318934321403503, 0.16265250742435455, -0.1222682073712349, -0.7009243965148926, 0.4120591878890991, 0.19221465289592743, -0.36388662457466125, 0.9670823216438293, 0.21777766942977905, -0.9966732859611511, 0.14458611607551575, -1.1829222440719604, 0.5655443668365479, 1.1229575872421265, 0.7213889360427856, 0.01871398650109768, 0.7361350059509277, -0.5539096593856812, -0.15083637833595276, 0.8125697374343872, -0.43176406621932983, 0.19372493028640747, 0.4990503787994385, 0.3761744797229767, -0.679690957069397, -0.5346507430076599, 1.0967864990234375, 0.1407819241285324, -0.21350543200969696, 0.6772711873054504, -0.32918745279312134, 0.3914961516857147, -0.4314715266227722, 0.7998514771461487, -1.1336498260498047, -0.8860716819763184, -0.44146308302879333, -0.9511108994483948, -0.7184846997261047, 0.35910478234291077, -0.06139635667204857, 0.22318623960018158, 1.14906907081604, 0.30494239926338196, -0.07895947247743607, -0.48377007246017456, 0.4566732347011566, -0.3361426293849945, -0.44798004627227783, -0.8607734441757202, -0.9200814366340637, -0.12358454614877701, 0.1666170209646225, 1.4530787467956543, 0.2359359860420227, 1.1493850946426392, 0.7098715305328369, -0.5780335664749146, 0.7476620078086853, 0.22115398943424225, 0.6871505379676819, 0.7092978954315186, 0.8039474487304688, -0.27599450945854187, -1.0953348875045776, 0.6524115800857544, -0.8966850638389587, 0.43657147884368896, -0.43432390689849854, 0.2553199827671051, 1.0390212535858154, -0.6389173269271851, 0.6956237554550171, 0.4303245544433594, -0.6358108520507812, 0.009701847098767757, 0.37482360005378723, 0.10822486877441406, -0.6099177598953247, -0.2313316911458969, -0.37899500131607056, 0.6872001886367798, -0.7211748361587524, 0.6459826231002808, -0.510354220867157, -0.8854093551635742, -0.4448501765727997, -0.7759844660758972, 0.6911142468452454, 0.444286584854126, 0.9645032286643982, 0.4487100839614868, -0.4216158092021942, 0.2626444399356842, 0.17869329452514648, 0.3547215163707733, 0.036728642880916595, 0.8236657977104187, 0.2580763101577759, -0.526233434677124, 0.9449905753135681, -0.007571886293590069, 0.0019253294449299574, 1.0537785291671753, 0.2271183729171753, -0.18075236678123474, 0.9090803861618042, -0.5705404281616211, -0.4388093650341034, -0.5895918607711792, 0.577724814414978, 0.41047200560569763, 0.1034160628914833, 1.3746001720428467, -1.2177692651748657, -1.3644837141036987, -0.8079995512962341, 0.5895416736602783, -0.21614153683185577, 0.38463732600212097, 0.22526098787784576, 1.0799815654754639, -0.8584200143814087, 0.47622787952423096, 0.06072114408016205, -0.8411048650741577, -1.0762524604797363, -0.4097662568092346, -0.37287867069244385, -0.7797958254814148, 0.07673468440771103, -0.23392172157764435, -0.56235271692276, 0.4008461534976959, -0.8544020056724548, -0.7309345602989197, 0.43007346987724304, -0.3841441869735718, -0.14227831363677979, -0.5944385528564453, 0.4494234323501587, -0.5705199837684631, 0.4546012878417969, -1.5211796760559082, 1.2993844747543335, -0.7496945261955261, -0.07760431617498398, 0.9999907612800598, 0.0077355182729661465, -0.4617611765861511, 0.6109358668327332, -0.8044702410697937, -1.017378807067871, 0.6688162684440613, 0.24329252541065216, -0.4070567190647125, 0.35658812522888184, 0.4826072156429291, 0.5779634714126587, 0.10198204964399338, 0.27065590023994446, 0.8501660823822021, -0.13188529014587402, -1.3996373414993286, -1.2821334600448608, -0.6951904892921448, 0.19467154145240784, -0.272449791431427, -1.0074455738067627, 0.9785897135734558, 0.5096851587295532, -1.2629557847976685, 0.2719125747680664, 0.5105331540107727, -0.1197512149810791, 0.4767060875892639, 0.704275906085968, 0.13263775408267975, 0.8977181315422058, -0.10080656409263611, 0.09664496034383774, -0.9794387817382812, 0.3309182822704315, 0.4923034906387329, -0.5296226739883423, 0.4470023810863495, 0.8578778505325317, 0.5390238761901855, 0.537630558013916, 0.06577829271554947, -0.23163379728794098, -0.005764790344983339, -0.9213749170303345, -0.6102089881896973, 0.41008561849594116, -0.6297637224197388, 0.9136307239532471, 0.8468473553657532, -1.3704936504364014, -0.5119035840034485, 0.07902127504348755, 0.43257787823677063, -0.5028973817825317, -0.8527795076370239, -0.45955032110214233, -0.1770625114440918, -0.3611309826374054, -0.028076136484742165, 0.6626242995262146, -0.1870766431093216, 0.4827907085418701, -0.04497770965099335, 0.05853637680411339, -0.059287458658218384, 0.11305735260248184, 0.366995632648468, 0.6079416871070862, -0.49162018299102783, -0.5910335779190063, -0.3080071210861206, -0.34619736671447754, 0.8045089840888977, 0.24413762986660004, -0.5488672256469727, 0.6630406975746155, 0.11720733344554901, -0.8564557433128357, 0.3690645098686218, 0.43067535758018494, 0.04344749450683594, 0.513870358467102, 0.27220848202705383, -0.01727904938161373, 1.0397685766220093, -1.2795233726501465, -1.01981520652771, -0.44748029112815857, 1.1636583805084229, 1.2613242864608765, 0.7481783032417297, 1.3358386754989624, -0.529545247554779, -0.045909103006124496, -0.138161301612854, -0.5639477968215942, -0.3187635838985443, -0.3181152045726776, -0.5653911232948303, -0.3549869656562805, -0.23078329861164093, 0.20003128051757812, 0.20045430958271027, 0.778279721736908, -0.1333507001399994, 0.5484133958816528, 1.0005613565444946, -0.4000333249568939, -0.7849438786506653, -0.14063666760921478, 0.09080548584461212, -0.24312031269073486, 0.9625166654586792, 0.8784067034721375, -1.6848084926605225, -0.25487303733825684, -0.06903278827667236, -0.11576655507087708, 0.41132110357284546, 0.352102130651474, 0.13272541761398315, -1.1060541868209839, -1.4046623706817627, -0.10193236172199249, 0.7355469465255737, 0.680045485496521, -0.12317163497209549, -0.9387986063957214, 0.5341102480888367, 0.5950049161911011, 0.4160023629665375, -1.116257905960083, 0.8708517551422119, -0.24035261571407318, -0.8385961055755615, -0.4300338625907898, 0.4907485246658325, 0.1754629760980606, -0.8103151321411133, -0.03811601921916008, -0.0850834771990776, -0.498752623796463, -0.21284781396389008, 0.5845053195953369, 0.3278428316116333, 0.6378841400146484, 0.5227402448654175, 0.25662925839424133, 0.7869310975074768, -0.029167290776968002, -0.42557626962661743, -1.7970725297927856, 1.1553136110305786, 0.29714280366897583, 0.7848827838897705, -0.32488664984703064, -0.013573420234024525, -0.10876158624887466, 0.24491405487060547, 0.19188281893730164, 0.10457026958465576, 1.2114697694778442, 0.39065200090408325, -0.3741593658924103, -0.3609384000301361, 0.11151781678199768, 0.009405188262462616, -0.8966290950775146, -0.06994659453630447, 0.07014282047748566, -0.5558176040649414, -0.4141494333744049, 1.1544344425201416, 0.02698015794157982, -0.5235650539398193, -0.34097209572792053, -0.0071661584079265594, 1.0422121286392212, 0.24331769347190857, 0.6254961490631104, -0.4282304644584656, -0.41901102662086487, -0.6039671301841736, -1.4047266244888306, -0.8626607060432434, -0.12104359269142151, 0.03219960629940033, 0.47831353545188904, -0.7918252348899841, -0.18249818682670593, -0.3026866316795349, 0.44710248708724976, 0.04851240664720535, -0.2041645050048828, 0.6114306449890137, -0.1857120841741562, 0.46139615774154663, 0.02754388377070427, 0.3886643350124359, 1.6166772842407227, -0.3150966167449951, -0.4040070176124573, -0.16409434378147125, -0.03148798272013664, 0.341047465801239, -0.6837354302406311, 0.3362218737602234, 0.232265442609787, -0.7936685085296631, -0.8422203660011292, -0.6819696426391602, 0.15144822001457214, 1.43013334274292, 0.4066871106624603, 0.2920514941215515, 0.16443774104118347, -0.47574615478515625, -1.3516377210617065, 0.03981916233897209, 0.09306053072214127, -0.3742313086986542, -0.597144603729248, 0.29521453380584717, 0.37123605608940125, -0.08913151919841766, 0.7446158528327942, 0.013975168578326702, 1.0344358682632446, 0.18933351337909698, -0.35675981640815735, -0.03429656848311424, 0.36915507912635803, 0.7202798128128052, 2.3207006454467773, 0.7450007796287537, -0.7355366349220276, -0.7955295443534851, 0.9183914661407471, -0.8058028221130371, 0.13575133681297302, 0.5707839727401733, 0.3451191484928131, 1.2702900171279907, -1.9079500436782837, -1.3989354372024536, 0.5316556692123413, 0.40333494544029236, 0.7152993083000183, 0.6379308104515076, -0.2013482302427292, -0.8211362361907959, 0.5473736524581909, 0.5772196650505066, 0.2941170334815979, 0.010804190300405025, -0.13307426869869232, 0.4420557916164398, 0.21734605729579926, -0.5097896456718445, 0.33437737822532654, -0.24945279955863953, -0.23822364211082458, -0.03184674307703972, -0.17922019958496094, 0.5121146440505981, 0.3115372359752655, -0.2238835096359253, 1.1903672218322754, -1.0884029865264893, -0.3010968565940857, 0.12819893658161163, -0.6812649965286255, 0.3039640486240387, -0.6893632411956787, -0.6594224572181702, -0.18027940392494202, -0.9804227352142334, -0.482356458902359, 0.13212920725345612, -0.8273394703865051, -0.5034433007240295, -0.6699502468109131, -0.4734022915363312, -0.11630527675151825, 0.6423763036727905, 1.4794197082519531, 0.35421431064605713, 0.6830573081970215, 0.777426540851593, 0.06924954801797867, -0.6724012494087219, 0.242100790143013, 0.8081682920455933, -0.2636494040489197, -0.0642714574933052, -1.3106056451797485, -0.7304772734642029, 0.516628086566925, 0.30748099088668823, 0.08643615990877151, 0.26206010580062866, 1.2756426334381104, 1.0251641273498535, 0.07170513272285461, -0.5341665744781494, 0.07517847418785095, -1.0385304689407349, 0.24590161442756653, 0.4317795932292938, -0.707737147808075, -0.3372374176979065, -0.5366159081459045, -1.4552689790725708, 0.8468238711357117, -0.4320921003818512, -0.8799867033958435, 0.8278507590293884, -0.34044742584228516, -0.05580886825919151, -0.027090713381767273, -0.3384077250957489, 0.6600168943405151, 0.18286758661270142, -0.5518956780433655, -1.385360598564148, 0.3377041220664978, 0.29227349162101746, 0.18020635843276978, -0.022613057866692543, 0.3049810528755188, 0.7092686295509338, -0.43337273597717285, -0.3077583909034729, 0.12867343425750732, 0.4785797894001007, 0.9843782782554626, -0.4437822699546814, -0.5576605796813965, 0.006378148682415485, -1.0618510246276855, -0.595262885093689, -0.06001288816332817, 0.029377838596701622, -0.24821223318576813, -0.4822903275489807, -0.1758250892162323, -0.5170972347259521, -0.12267951667308807, -0.31751877069473267, -0.11210598051548004, 1.0187958478927612, 0.4153558909893036, -0.7898771166801453, 0.10567692667245865, -0.2752780020236969, -0.7769407629966736, -0.5185586214065552, -0.40180325508117676, 0.8854281902313232, -1.0400413274765015, -0.41598621010780334, 0.06026490777730942, -0.18805748224258423, 0.03433358296751976, -0.3476107120513916, 0.4406100809574127, -1.3871036767959595, -1.59507155418396, -0.9404652714729309, 0.2575265169143677, 1.1289142370224, -1.2478885650634766, 0.6209105253219604, 0.6544348001480103, -1.7720956802368164, 0.2104388326406479, 0.08331736922264099, -1.0955394506454468, 0.3027385175228119, -1.262057900428772, 0.44029250741004944, -0.6910341382026672, 0.34550487995147705, -0.8290786743164062, 1.6756452322006226, -1.329634666442871, -1.5132980346679688, -0.8329538702964783, 0.23317685723304749, 0.23955097794532776, 0.904935359954834, -0.3236527442932129, 1.071104645729065, 0.6441947817802429, -0.6639665961265564, -0.6577615737915039, 0.47331926226615906, -0.703499436378479, 0.4007827043533325, 0.15465085208415985, 0.658881425857544, 0.041813068091869354, 0.7695144414901733, -0.5441446900367737, 0.5774179100990295, -0.3789968490600586, 0.11806227266788483, -0.08404051512479782, -0.47203195095062256, -0.09892837703227997, 0.7385664582252502, -0.8535171151161194, -0.46472516655921936, 0.1939416229724884, -0.7119271159172058, -1.4829089641571045, 0.9643808603286743, 0.940613329410553, -1.0347449779510498, -0.6129740476608276, 0.0054040467366576195, 0.15649324655532837, -0.9159114956855774, 0.5395856499671936, -0.28964483737945557, 0.2091449499130249, 0.18842415511608124, -0.30322694778442383, -0.421539843082428, -0.5360214710235596, 0.09770329296588898, 0.7548836469650269, 0.1970256268978119, -0.33412960171699524, 1.2191247940063477, 0.09017933905124664, 0.01055048406124115, -0.9579993486404419, 1.0060763359069824, 0.743845522403717, 0.08495037257671356, -0.005997165106236935, 0.06939494609832764, 0.3512006402015686, 0.8589085340499878, -0.6952931880950928, 0.371837854385376, -1.0889525413513184, 0.22625049948692322, 0.7763397693634033, -0.30277132987976074, -0.6579011082649231, -0.5132361650466919, -0.4962421655654907, 1.0589812994003296, 0.1824735850095749, -0.5707535743713379, 0.22600245475769043, 1.0705931186676025, 0.11533469706773758, -0.29138249158859253, 0.12025072425603867, 0.24235519766807556, -0.04121798276901245, 0.02565292827785015, -0.12848950922489166, 0.645168125629425, -0.6650627851486206, 0.36106815934181213, -0.09931507706642151, 0.26488766074180603, -0.2343471497297287, -0.8665980696678162, -1.2170344591140747, 0.27851495146751404, -0.9117846488952637, -1.138424038887024, 0.7500053644180298, -1.3882728815078735, -0.7929147481918335, 0.7020565867424011, -0.1370769888162613, -0.1157894879579544, -0.1488790214061737, -0.3365374207496643, -0.4631408452987671, 0.16981269419193268, 0.915507435798645, -0.6295821666717529, 1.007845401763916, 0.8215022087097168, 0.2875814437866211, -0.8455143570899963, -0.5685102939605713, 0.5827562212944031, 0.2580145299434662, -0.12590545415878296, -0.13364915549755096, 0.5929115414619446, -0.14375776052474976, -0.23531818389892578, 0.8137637972831726, -0.05068175867199898, 0.3675772249698639, -0.09467465430498123, -0.607789158821106, 0.5365492105484009, 0.6508463025093079, 0.3115353584289551, -0.7329890727996826, -1.2571684122085571, -1.1407780647277832, 0.5241327881813049, -0.3518679738044739, 0.7317033410072327, 0.2420216202735901, 1.1740925312042236, 0.10115151107311249, -0.30626335740089417, 0.05394405871629715, -0.8546609878540039, 0.06324919313192368, 0.03577083349227905, 0.8919398188591003, -0.48580998182296753, -0.02086859568953514, -0.2054206281900406, -0.9044468998908997, 0.4392491281032562, -0.0927312895655632, 0.457115113735199, -0.04091225937008858, -0.7902714014053345, -0.5803123712539673, -0.824342668056488, 0.46207043528556824, 1.7866723537445068, 0.3558836877346039, 0.27800485491752625, -0.19154776632785797, -1.0008008480072021, 0.31008824706077576, 0.2756316065788269, 0.4581854045391083, -0.18339720368385315, 0.7008524537086487, 1.0261950492858887, 0.19008170068264008, 0.7382199764251709, -0.41133546829223633, 0.4183002710342407, -0.40801557898521423, -0.23271270096302032, -0.47974464297294617, -0.05334112420678139, 0.21871834993362427], [0.41859233379364014, 1.9564801454544067, -2.356013536453247, -0.35427144169807434, 1.3553684949874878, 0.6586287617683411, 1.5047565698623657, -0.5197713971138, 0.7165552377700806, -0.2405809760093689, -0.1076102927327156, -0.7758241891860962, 0.27524808049201965, 1.400147557258606, 0.37667524814605713, 0.914047122001648, 0.7107900977134705, -0.18024270236492157, 0.8665611147880554, 1.1464332342147827, -0.18828698992729187, -0.32989010214805603, 0.057242922484874725, 0.17610864341259003, 0.3446492850780487, 0.8986542820930481, -0.40630778670310974, 0.3581670820713043, -0.8308984637260437, -0.7937400937080383, 0.17391328513622284, -0.07800880074501038, 0.16902200877666473, -0.3068075478076935, -1.1525466442108154, -0.8480618596076965, 1.9619638919830322, 0.937961220741272, 1.2989779710769653, 0.5737985372543335, 1.8460379838943481, -0.05101531744003296, 0.16922907531261444, -2.621666669845581, 0.2439166009426117, -0.22013744711875916, 0.628327488899231, -0.573144793510437, 0.5094385743141174, -0.3773147463798523, 0.9987568855285645, -0.5728431344032288, 1.0943584442138672, 0.540929913520813, 0.6596775650978088, -0.6406901478767395, 0.3188207149505615, 1.0960170030593872, 0.12152557075023651, -0.043320924043655396, 1.0511541366577148, 0.39464041590690613, -1.0372412204742432, 0.7481093406677246, -0.006951538845896721, -0.3447369337081909, 0.1592434048652649, 0.23160099983215332, 0.1717020720243454, -0.017886849120259285, 0.296039879322052, -0.5827378630638123, -0.3644658923149109, 0.06770764291286469, -0.8175718188285828, 0.39592593908309937, 0.8907937407493591, 1.0704323053359985, 0.33095693588256836, -0.15547338128089905, -0.3179163932800293, -0.20676273107528687, 0.49046406149864197, -0.20405273139476776, 0.46559450030326843, 0.7297629714012146, 0.7899459600448608, -0.35176438093185425, 0.2241184115409851, 1.3723475933074951, 0.8089106678962708, -0.2510131001472473, 0.5991971492767334, -0.21480907499790192, -0.250101238489151, -0.24610377848148346, 0.012885002419352531, -1.0623043775558472, -0.6779595613479614, -1.0533827543258667, -0.4307260811328888, -0.6411612033843994, -0.19010750949382782, 0.009510302916169167, -0.30484646558761597, 1.1789031028747559, 0.6342036724090576, 0.40144845843315125, -1.1337151527404785, 0.13017217814922333, -0.5030678510665894, 0.7968072295188904, -1.0773835182189941, -0.7134830355644226, -0.2335311472415924, 0.8403811454772949, 1.3181761503219604, -0.5543027520179749, 0.5819255113601685, 0.6181225776672363, -0.7811219692230225, 0.4115593731403351, -0.31653544306755066, 1.151572823524475, 0.8806987404823303, 0.763727068901062, -0.6388235688209534, -0.22404851019382477, 0.5170351266860962, 0.47180333733558655, -0.083842433989048, -0.7241384983062744, 0.0751766487956047, -0.17930705845355988, -0.6219104528427124, 1.3795301914215088, 0.00037564942613244057, -0.07322637736797333, 0.10309009253978729, -0.24811439216136932, 0.2872162163257599, -0.17759932577610016, -0.3429928719997406, -1.0596657991409302, 0.17870576679706573, -0.7131246328353882, 0.562129020690918, 0.18365749716758728, -0.5695406198501587, -0.11233774572610855, -1.4814571142196655, 0.8563281297683716, -0.358877569437027, 0.8577160835266113, 0.16529260575771332, 0.11236198991537094, 0.7026668190956116, 1.0582354068756104, 0.22033308446407318, -0.2024279683828354, 1.0011391639709473, -0.0729823037981987, -1.053565263748169, 0.8551155924797058, 0.3472033143043518, 0.026726311072707176, 0.8515254855155945, 0.6177075505256653, -0.41206058859825134, 1.0287305116653442, -0.8808794617652893, -0.7520983219146729, -0.6184867024421692, 0.6679604053497314, 1.2462979555130005, -0.9994481801986694, 1.5929913520812988, -0.7280726432800293, -0.7671019434928894, -1.6169525384902954, -0.08356087654829025, -0.011194592341780663, 0.9665279388427734, 0.01852094940841198, 1.0029628276824951, 0.024656057357788086, 0.7649442553520203, 0.05635199323296547, -0.3925635814666748, -0.9033961892127991, -0.6281908750534058, 0.44712334871292114, -1.1276237964630127, -0.19031843543052673, -0.2911069989204407, -1.1818876266479492, 0.4454405903816223, -0.7537552714347839, -0.8093227744102478, 0.2469158172607422, 0.024975750595331192, -0.6132460236549377, 0.10614029318094254, 0.8079543709754944, -0.8122594356536865, 0.3704902231693268, -1.3265647888183594, 0.7007449865341187, -0.35071051120758057, -0.2657291293144226, 0.9066363573074341, 0.197956845164299, -0.9959626197814941, 0.8414736390113831, 0.10025687515735626, -1.8820154666900635, 0.5182672142982483, 0.7639356851577759, -0.10133978724479675, 0.7447744011878967, 0.13922014832496643, -0.194532573223114, 0.5929774045944214, -0.04275834187865257, 0.7358137965202332, 0.1013033390045166, -1.5623691082000732, -0.9884749054908752, -0.10376647114753723, -0.3209475874900818, -0.26032838225364685, -1.0528470277786255, 0.9301160573959351, 0.7608629465103149, -1.13222074508667, 0.3402220606803894, 0.182060107588768, 0.149706169962883, 0.5900683403015137, 0.876614511013031, -0.28555870056152344, 1.137567400932312, -0.02421453408896923, 0.016283972188830376, -0.32736217975616455, 0.6496109366416931, 0.5841776132583618, -0.5580625534057617, -0.0030350368469953537, 1.0458356142044067, 1.2889626026153564, -0.10849804431200027, -0.0668095126748085, -0.37073904275894165, -0.0385703481733799, -1.155343770980835, -0.4623715579509735, -0.04802561551332474, 0.02145993337035179, 0.9089944958686829, 0.3151695132255554, -1.4154211282730103, 0.01191683765500784, 0.008633514866232872, 0.2678024470806122, 0.16264650225639343, -0.4146097004413605, -0.4111505150794983, -0.1993435174226761, 0.30724212527275085, 0.05911087244749069, 0.16657572984695435, -0.06230529397726059, 0.5471819639205933, -0.157894104719162, -0.7438116073608398, -0.9271214008331299, 0.013782620429992676, -0.24448499083518982, 0.8246548175811768, 0.5551515817642212, -1.1696860790252686, -0.32920897006988525, 0.1622808575630188, 0.8608046770095825, 0.6279216408729553, 0.10084139555692673, 0.7279794812202454, 0.1827200949192047, -0.2990398406982422, 0.9664241075515747, 0.7478869557380676, -0.2189239263534546, 0.1324673891067505, 0.22546043992042542, 0.3160777986049652, 0.9855666160583496, -1.4334369897842407, -0.6220727562904358, -0.14451701939105988, 0.4101840555667877, 1.2412794828414917, 1.0748519897460938, 0.9129382371902466, 0.0006776377558708191, -0.028473306447267532, 0.288083553314209, -0.9134028553962708, -0.3316405415534973, -0.7942031025886536, -0.5020414590835571, -0.3089936375617981, -0.6960024833679199, 0.3703644871711731, -0.12946780025959015, 0.17661598324775696, -0.12185588479042053, 0.5673843026161194, 1.5891389846801758, -0.8404045701026917, -1.0696548223495483, -0.19029678404331207, -0.1342155784368515, -0.8983986973762512, 0.7652752995491028, 1.4210493564605713, -1.6285663843154907, -0.13531048595905304, 0.5942860841751099, -0.7805489897727966, 0.9877657294273376, 0.16591890156269073, 0.2368330955505371, -0.6324003338813782, -1.0956963300704956, -0.46033158898353577, 2.116142988204956, 0.3086380958557129, 0.4371764063835144, -0.7932494282722473, 0.22341756522655487, -0.07190150767564774, -0.12229222804307938, -0.6430347561836243, 0.7105873823165894, -0.4266364276409149, -0.7962705492973328, -0.23778477311134338, 0.28468677401542664, 0.7030684947967529, -0.6822708249092102, -0.0790913999080658, -0.17963378131389618, 0.0625123381614685, 0.0366213284432888, 0.2622029781341553, 0.5620805621147156, 0.8781625628471375, -0.14659512042999268, 0.41165173053741455, 0.8864473700523376, -0.6806914806365967, 0.18587622046470642, -1.2749696969985962, 0.7289316058158875, 0.8503367900848389, 1.3156111240386963, 0.07480534166097641, -0.36835935711860657, -0.20323596894741058, 0.3421415686607361, -0.3647429645061493, 0.2317759096622467, 1.3208273649215698, 0.14325059950351715, 0.6053876280784607, -0.4500662684440613, -0.5166512727737427, 0.07274137437343597, -1.4762991666793823, -0.27256065607070923, 0.10870111733675003, -0.7247096300125122, -0.48209407925605774, 0.8439256548881531, -0.09214689582586288, -0.32608839869499207, -1.2285183668136597, -0.3658757209777832, 0.5201767086982727, 0.21333177387714386, -0.28622421622276306, -0.09617367386817932, 0.0705728530883789, 0.4162611961364746, -0.3929198384284973, -0.8636947870254517, -0.1403602957725525, 0.16490401327610016, 0.6941238045692444, -0.748900294303894, -0.6601961255073547, -0.5795566439628601, 0.44351810216903687, 0.4017145037651062, 0.06333741545677185, 0.3453013598918915, -0.6797975897789001, -0.2987706661224365, -0.31403616070747375, 0.05893855169415474, 1.3287872076034546, -0.6937127709388733, -0.2981456518173218, 0.40802958607673645, 0.04663674160838127, 0.5774327516555786, -0.5422605276107788, 0.3616841435432434, 0.03371860831975937, -0.5099676847457886, -0.19368764758110046, -0.6501607894897461, 0.16011841595172882, 1.3703618049621582, 0.5820488333702087, -0.039320558309555054, 0.5362800359725952, -0.3654828667640686, -1.3454967737197876, 0.3055587112903595, 0.35681354999542236, -0.575718104839325, -0.29079490900039673, 0.8154043555259705, 0.26881304383277893, -0.14874356985092163, -0.10224604606628418, -0.508133590221405, 0.8698720335960388, -0.24826695024967194, 0.18260519206523895, -0.1372537612915039, 0.43354424834251404, 0.22076287865638733, 1.0174566507339478, 0.9068028926849365, -0.9391087293624878, -1.1620774269104004, 0.20896115899085999, -0.7961083650588989, 0.3744187355041504, 0.8320257067680359, 0.3616398870944977, 1.0594465732574463, -1.5232164859771729, -0.9879397749900818, 0.16096176207065582, 0.12539327144622803, 0.82559734582901, 0.676574170589447, -0.6910673975944519, -0.7879905104637146, 0.08073966950178146, -0.08755791932344437, -0.06359340995550156, 0.36851802468299866, 0.3358919024467468, -0.10246606916189194, 0.5066074728965759, -0.9917138814926147, 0.3862382471561432, -0.2073945701122284, -0.309671014547348, -0.2632501423358917, -0.15829350054264069, 0.6047171950340271, 0.724132776260376, 0.40003445744514465, 1.7109146118164062, -1.0737653970718384, -0.7185673117637634, 0.16976402699947357, -0.7080277800559998, -0.08797486126422882, -0.5667889714241028, -0.8095342516899109, -0.16374877095222473, -0.3942543566226959, -0.6698552370071411, 0.881659984588623, -0.9186072945594788, -0.5452669858932495, -0.23960155248641968, -1.0485233068466187, 0.5052751898765564, 1.157447338104248, 1.4162424802780151, 0.554251492023468, 0.16995802521705627, 0.7769246101379395, -0.06510618329048157, -0.7520589232444763, 0.7915365099906921, -0.043109651654958725, 0.18536235392093658, -0.18620198965072632, -1.2787624597549438, -0.5090522766113281, 0.2094583362340927, 0.5217241644859314, 0.4006807208061218, 1.519712209701538, 1.1973423957824707, 0.3660804331302643, -0.2498936802148819, -0.8616556525230408, 0.0905376523733139, -0.7275328636169434, 0.4178333282470703, 0.27262943983078003, -0.36476069688796997, -0.31032487750053406, 0.008057000115513802, -0.782768726348877, 0.07594241946935654, -0.4691585898399353, -1.4118868112564087, 1.0440982580184937, -0.06954535096883774, 0.45185884833335876, 0.7732391357421875, -0.45251622796058655, 0.18884605169296265, -0.036624860018491745, -1.090673565864563, -1.205601453781128, 1.058562159538269, 0.3536613881587982, 0.37037351727485657, -0.3201519250869751, 0.5216547846794128, 0.49793902039527893, -0.2808299958705902, 0.033399492502212524, 0.40121692419052124, -0.1713523417711258, 0.5205663442611694, -0.13165470957756042, -0.7397119402885437, 0.4147411584854126, -0.44710132479667664, -0.5775741338729858, -0.14954774081707, 0.9394530653953552, -0.11583861708641052, -0.6554795503616333, -0.39670512080192566, -0.5103477835655212, -0.006226172670722008, -0.7092977166175842, -0.3825792670249939, 0.5958938598632812, 0.018705975264310837, -0.6383472084999084, 0.028827248141169548, 0.042483020573854446, -0.5210777521133423, -1.2413944005966187, 0.11680828034877777, 0.3997820019721985, -1.43035888671875, 0.46793463826179504, 0.2936672866344452, -0.5853136777877808, 0.2126464694738388, -0.8773190975189209, 0.37420862913131714, -1.8826137781143188, -1.6172600984573364, -1.1002978086471558, -0.019694378599524498, 0.7271712422370911, -0.29764115810394287, 0.7955940961837769, 0.714303195476532, -0.8131667971611023, -0.5628316402435303, -0.6719266176223755, -1.1169458627700806, -0.40406274795532227, -0.7215739488601685, 0.6941518187522888, -0.40757694840431213, 0.3477558195590973, -0.3009045720100403, 1.366440773010254, -1.5391911268234253, -1.793342113494873, -0.9819908142089844, -0.1047217845916748, 0.6168574094772339, 0.42381224036216736, -0.6541627049446106, 1.1140533685684204, 0.27844133973121643, -0.38693466782569885, 0.2193719893693924, 0.17463232576847076, -0.5707341432571411, 0.6018064022064209, 0.42014962434768677, 0.6945086717605591, 0.5069830417633057, 1.178056240081787, 0.03740439563989639, 0.5163565874099731, 0.48043349385261536, 0.10774971544742584, -0.6296392679214478, -0.2234991192817688, 0.04668080806732178, 0.5596134662628174, -1.1400165557861328, -0.4356829524040222, 0.16728565096855164, -0.8792318105697632, -0.5830622911453247, 0.8350939750671387, 1.3510551452636719, -0.5374854803085327, 0.08629489690065384, 0.07145223766565323, 0.17808428406715393, -1.270047903060913, 0.2051985263824463, -1.1120661497116089, -0.26489174365997314, -0.483833909034729, 0.18013030290603638, 0.5924134254455566, -1.5927551984786987, 0.11916755884885788, 0.45644262433052063, 0.04822013899683952, 0.9164525270462036, 0.7104161977767944, 0.7992008924484253, 0.05533018708229065, -0.5085734128952026, 1.853896141052246, 1.4962369203567505, -0.31621602177619934, -0.4442935287952423, 0.8614079356193542, -0.3953893482685089, 0.29644644260406494, -0.8378669619560242, -0.30682626366615295, -0.9814543724060059, 0.5750320553779602, 0.5719563364982605, -0.2676647901535034, -0.24723218381404877, -0.24191759526729584, 0.02556755393743515, -0.19625157117843628, 0.9056281447410583, -1.206527829170227, -0.24039854109287262, 0.49362245202064514, -0.10295655578374863, -0.3622519373893738, 0.27252382040023804, 0.9065815210342407, 0.5450108647346497, -0.7317206859588623, 0.30020657181739807, 0.7970907092094421, -0.9853953123092651, 1.1000335216522217, -0.47865161299705505, 0.2584764063358307, -0.3127698600292206, -0.5959730744361877, -1.046298861503601, 0.46280452609062195, -0.2136480212211609, -0.5940815210342407, 0.7417053580284119, -1.3931430578231812, -0.7951269745826721, 0.29579633474349976, -0.2621093988418579, -0.7065600156784058, -0.6584225296974182, -0.28435030579566956, -0.2985799312591553, 0.4790995419025421, 0.05292585492134094, -0.37755435705184937, 0.7532499432563782, 0.7388548851013184, 0.004144606646150351, -1.1033467054367065, -0.8245709538459778, 0.5799753665924072, -0.575943648815155, 0.06537948548793793, 0.6728289723396301, 1.7321372032165527, -0.3170776963233948, -1.0689609050750732, 0.5130501389503479, 0.39523255825042725, 0.07666067779064178, -0.021023843437433243, -0.8089483976364136, -0.6093312501907349, -0.3123171627521515, 1.0339782238006592, -1.3638575077056885, -1.0113050937652588, -0.705467939376831, 0.33274605870246887, -0.5784135460853577, 0.6215270757675171, -0.6536281704902649, 0.9160667061805725, 0.0973244458436966, -0.6540391445159912, -0.6347795724868774, -0.06184068322181702, 0.49358999729156494, -0.1251714676618576, 0.905681848526001, -0.06359059363603592, -0.49106860160827637, -0.8882789015769958, -1.0871011018753052, 0.32645657658576965, -0.27665162086486816, 0.19591380655765533, 0.2904876172542572, -0.9856472015380859, -0.16397331655025482, -1.2107537984848022, 0.4458441138267517, 1.0931278467178345, 0.3840581476688385, -0.07275976240634918, 0.22300894558429718, -1.2157281637191772, -0.37779924273490906, 0.14312173426151276, 0.2564050555229187, 0.5976402759552002, 0.41717565059661865, 1.4901866912841797, 0.7738776803016663, -0.11421036720275879, -0.8903694152832031, 0.12946192920207977, -0.4735865294933319, -0.20512238144874573, -0.7399477362632751, -0.45527368783950806, -0.25808030366897583], [0.2219424545764923, 1.9485046863555908, -2.245952606201172, -1.007666826248169, 1.1094610691070557, 0.2764046788215637, 0.9308558702468872, 0.22762979567050934, -0.10605742037296295, -0.3485185205936432, 0.25812917947769165, -0.0673447772860527, 0.9536536931991577, 0.9490875005722046, -0.5380074977874756, 0.776709258556366, 0.7869172692298889, -0.6693395376205444, 0.722302258014679, 1.61184823513031, 0.03626355528831482, -0.18002605438232422, 0.05174904689192772, -0.18991565704345703, -0.5192949175834656, 0.05850082263350487, -1.128975510597229, -1.1396037340164185, -0.9176783561706543, -0.9903120994567871, 1.02409827709198, -0.7868971228599548, -0.23518650233745575, 0.08751624077558517, -0.7589714527130127, -0.3052597641944885, 1.745934247970581, 1.010834813117981, 0.8932992219924927, -0.02014286443591118, 1.519810676574707, -0.3369411826133728, 0.19622845947742462, -1.2795664072036743, 0.5464909672737122, 0.1401604861021042, 0.41820576786994934, -0.3580508828163147, -0.24245871603488922, -0.9566723704338074, 1.428667426109314, 0.039260730147361755, 1.375649333000183, 1.2031705379486084, 0.368507444858551, -0.0017967303283512592, 0.34654414653778076, 0.4937438368797302, 0.7547193169593811, -0.09875824302434921, 0.031230201944708824, 0.2625797390937805, 0.18151040375232697, 0.5680009126663208, 0.1527854949235916, -0.5410609841346741, 0.6750897765159607, 0.4239884912967682, 0.1786099374294281, -0.6085377931594849, -0.36905378103256226, 0.47090843319892883, -0.5832985043525696, 0.46895334124565125, -1.706220269203186, 0.5938918590545654, 0.7960811853408813, 0.9118368625640869, -0.08183765411376953, 0.25006747245788574, -1.2032109498977661, 0.42808017134666443, 0.5229387879371643, 0.04481377452611923, 1.2761493921279907, -0.1429472416639328, 0.5204747915267944, -0.1485888659954071, -0.48650670051574707, 1.6826497316360474, 0.15938912332057953, 0.2974405288696289, -0.0521811842918396, -1.1873377561569214, -0.27778512239456177, -0.2835429012775421, 0.04285690560936928, -0.6681943535804749, -1.198606014251709, -0.8287588357925415, -0.37221670150756836, -0.7686914205551147, -0.04420030117034912, -0.05887787789106369, -0.08228342980146408, 2.0498669147491455, 0.2779352366924286, 0.5127529501914978, -1.1618887186050415, -0.21378546953201294, -0.34642282128334045, -0.10031305253505707, -0.8182240724563599, -0.6655097007751465, -0.21402738988399506, 0.23309063911437988, 1.42441987991333, -0.020755184814333916, 0.263440877199173, 0.71876460313797, -0.10833030939102173, -0.06754028052091599, 0.09778938442468643, 0.4331091344356537, 0.8418026566505432, 0.44166550040245056, -0.30112943053245544, -0.15105727314949036, 0.8379020094871521, -0.23111583292484283, -0.13527537882328033, -0.4423469603061676, 0.10780629515647888, 0.4269992411136627, -0.5966119170188904, 1.4809291362762451, -0.005247945431619883, 0.08957096934318542, -0.5275466442108154, -0.0022358614951372147, 0.18228480219841003, -0.640346348285675, -0.7388288378715515, -0.39598360657691956, 0.04837624356150627, -0.2865369915962219, 0.7478600740432739, -0.10743527859449387, -0.6883798837661743, 0.1764390468597412, -1.1390796899795532, 0.48759642243385315, 0.4402841627597809, 0.4723999500274658, 0.07374977320432663, -0.39339181780815125, 0.546000063419342, -0.0776575356721878, 0.28526169061660767, -0.38700294494628906, 0.9285258650779724, -0.14066335558891296, -1.346579909324646, 0.5223984122276306, 0.6702019572257996, -0.2816998064517975, 0.21605977416038513, 0.29988378286361694, 0.5526328682899475, 1.3304346799850464, -0.7562598586082458, -0.12399033457040787, -0.3142521381378174, 1.1787662506103516, 0.4424019455909729, -1.0819694995880127, 1.5204061269760132, -0.8809692859649658, -1.2600048780441284, -1.2655435800552368, -0.14432603120803833, -0.4164383113384247, 0.28010138869285583, -0.08116627484560013, 0.9407278895378113, -0.22228801250457764, 0.2417769879102707, -0.687279224395752, -0.501401960849762, -0.6883858442306519, -1.1625783443450928, -0.0804864764213562, -0.8904430866241455, 0.4561057388782501, -0.3466918468475342, -0.28881534934043884, 1.468929648399353, -0.910923182964325, -0.35224100947380066, -0.32821062207221985, 0.3624129593372345, -0.11407889425754547, -0.7875970005989075, 0.6652436852455139, -0.49996069073677063, 0.6786607503890991, -1.5227768421173096, 1.5262902975082397, -0.17444032430648804, 0.04952102154493332, 0.7064604163169861, 0.012623920105397701, -0.33187463879585266, 0.6723778247833252, -0.4207543432712555, -1.8117015361785889, 0.10180900245904922, 0.6341094374656677, -0.7100276350975037, -0.043469615280628204, 0.15627069771289825, 0.5608516931533813, 0.4033903479576111, 0.48898038268089294, 0.49188047647476196, -0.21299581229686737, -0.9584972262382507, -0.8556778430938721, -0.8797711730003357, 0.5527664422988892, -0.20119589567184448, -1.867554783821106, 0.3304002285003662, 0.5679107308387756, -0.8192451596260071, 0.27795472741127014, 0.03840218111872673, 0.39702096581459045, 0.6756560206413269, 1.6024184226989746, 0.23566970229148865, 0.36776289343833923, -0.7076936960220337, -0.12648707628250122, -0.6567769646644592, -0.08286955207586288, 0.8703124523162842, -0.7064455151557922, 0.7671306133270264, 1.5407936573028564, 0.24412600696086884, -0.3059062957763672, 0.408062607049942, 0.017746001482009888, -0.34919050335884094, -0.8651453256607056, -0.05208523944020271, 0.025255881249904633, -0.03445693850517273, 1.115053653717041, 0.6366250514984131, -0.8272659778594971, 0.3699222803115845, -0.3137165904045105, 0.13452918827533722, 0.042716603726148605, -0.6168230772018433, -0.07084035128355026, -0.49975860118865967, -0.46908342838287354, 0.24187706410884857, -0.05484464764595032, -0.2532440423965454, 0.4872727394104004, -0.13873708248138428, 0.05008137971162796, -0.5421649217605591, 0.10339447855949402, -0.1832023411989212, 0.6933233141899109, -0.24264301359653473, -1.5382558107376099, -0.6041397452354431, 0.5830317735671997, 0.3051726520061493, 0.6162744164466858, -0.40964028239250183, 0.33171531558036804, 0.060797251760959625, -0.07991039007902145, 0.24538813531398773, 0.2614850401878357, -0.27935218811035156, -0.00339469313621521, -0.9578942060470581, 0.8740473389625549, 1.1875927448272705, -1.4951962232589722, -0.660879909992218, -0.48507991433143616, 0.8260505795478821, 0.9922658801078796, 0.3895275592803955, 1.2474660873413086, 0.12013529986143112, 0.21270257234573364, 0.052125632762908936, -0.5117121338844299, -1.0891568660736084, -0.8236269950866699, -0.8079431653022766, -0.45321008563041687, -0.5730075240135193, -0.4741576910018921, -0.29933375120162964, 0.570879340171814, -0.19796426594257355, 0.3752345144748688, 1.6549251079559326, -0.18374423682689667, -1.0665053129196167, 0.03195774927735329, 0.11732307821512222, -1.0678921937942505, 0.6730120182037354, 0.6842135787010193, -0.22737890481948853, -0.5796210169792175, 0.3671872913837433, 0.6873863339424133, 0.7211669683456421, 0.15608534216880798, 0.0725162997841835, -1.7739373445510864, -0.9280814528465271, -0.5851432085037231, 1.2219691276550293, -0.08121569454669952, -0.05489661917090416, -0.250113308429718, 0.06604466587305069, 0.8621314167976379, 0.23394405841827393, -0.25638285279273987, 0.6681986451148987, 0.01624169759452343, -0.7410600781440735, -0.6468636393547058, 0.09745443612337112, 0.3714296221733093, -0.04248810559511185, 0.19953231513500214, 0.38122522830963135, 0.121697798371315, 0.09111035615205765, 0.7412069439888, 0.41129928827285767, 0.2482249140739441, -0.07193435728549957, 0.1885986030101776, 1.0462632179260254, -0.0022258199751377106, -0.05890004709362984, -1.2854183912277222, 0.9607869982719421, 0.2860838770866394, 0.994269073009491, -0.1077183336019516, -0.2100123018026352, -0.16345545649528503, 0.6848991513252258, 0.14710058271884918, -0.16133876144886017, 1.220285415649414, 0.02568439394235611, -0.36973482370376587, -0.23354516923427582, -0.3365788757801056, -0.1786031275987625, -0.20084266364574432, -0.08100713044404984, 0.18390537798404694, -1.3734409809112549, -1.3328336477279663, 0.4963124692440033, 0.21029618382453918, -0.7931250929832458, -0.8131171464920044, -0.28149405121803284, 0.7706913948059082, 0.15136949717998505, 0.7415717244148254, -0.4346485137939453, 0.7504109740257263, -0.22357283532619476, -1.0149646997451782, -0.23136834800243378, -0.138981893658638, 0.386679083108902, 0.45947906374931335, -0.7241154909133911, 0.07968834042549133, -0.5218262076377869, 0.3912983238697052, 0.6986158490180969, -0.540999174118042, 0.1564362496137619, -0.627589225769043, -0.2872789800167084, 0.36142319440841675, -0.19025547802448273, 1.0341850519180298, -0.047085508704185486, -0.17100396752357483, 0.17478936910629272, -0.16542230546474457, -0.36364108324050903, -0.8919656872749329, -0.1368361860513687, 0.2571381628513336, -0.8837701082229614, 0.3568083643913269, 0.1738874614238739, 0.3128417730331421, 1.967015266418457, 0.7296033501625061, 0.044214632362127304, 0.007546206936240196, -0.28341418504714966, -1.0836135149002075, 0.28509870171546936, 0.5222092270851135, -0.5633293390274048, -0.09459635615348816, 0.0373997688293457, 0.5319588780403137, -0.34218281507492065, 0.27314096689224243, 0.024731416255235672, 0.9864780306816101, 0.6224108338356018, -0.35860979557037354, 0.3077838122844696, 0.7332931756973267, 1.144854187965393, 1.3477133512496948, 0.7453836798667908, -1.018316388130188, -1.1609386205673218, 0.7703198790550232, -0.8126436471939087, -0.24715350568294525, 0.612754225730896, -0.029213042929768562, 0.8704379200935364, -1.5435433387756348, -0.5319311022758484, 1.4278826713562012, 0.20375922322273254, 0.38601019978523254, 0.358585387468338, 0.18713273108005524, -0.5309313535690308, 0.8152531385421753, 0.4455273747444153, -0.4079691469669342, 0.4312865734100342, 0.3925892114639282, -0.5779616236686707, 0.05578867346048355, -0.5027503371238708, 0.8540971875190735, -0.5499204993247986, 0.14435982704162598, -0.24213257431983948, -0.44239112734794617, 0.39704111218452454, 0.34389936923980713, -0.1405172049999237, 1.4039798974990845, -0.27772220969200134, -0.9734998941421509, 0.3679937422275543, -0.3888554275035858, 0.28838640451431274, -0.3865804672241211, -0.2682563066482544, -0.1658070683479309, -1.7307806015014648, -0.6778807044029236, 1.0292938947677612, -0.22631706297397614, -0.494422048330307, -0.253539502620697, -0.3457626402378082, -0.13735568523406982, 0.8303913474082947, 1.8590601682662964, 0.8836753368377686, 0.7678857445716858, 0.4190232455730438, 0.4259904623031616, -0.8298662304878235, -0.1959589272737503, 0.6784784197807312, 0.16611744463443756, -0.19348619878292084, -1.3000590801239014, -0.4495861530303955, 0.45364657044410706, 0.3940134644508362, -0.13891582190990448, 0.9884462356567383, 1.1014659404754639, 1.0400668382644653, -0.0814606323838234, -0.15852859616279602, 0.06109115108847618, -0.6261157989501953, 0.44565707445144653, 0.4539494514465332, -0.62858647108078, -0.5727785229682922, -0.776303231716156, -0.8851186633110046, 0.8995858430862427, -0.27570369839668274, -0.7957839965820312, -0.25722870230674744, 0.08610814064741135, 0.4460320472717285, 0.0833655446767807, -0.036875199526548386, 0.1762814074754715, 0.25504201650619507, -0.647951066493988, -1.1670480966567993, 0.06244033947587013, -0.1558995395898819, 0.3198939561843872, -0.8433205485343933, 0.5283116698265076, 1.2935073375701904, 0.1617438644170761, 0.19163596630096436, -0.014803527854382992, 0.3858414888381958, 0.677756130695343, 0.31415680050849915, -1.091539740562439, 0.531684398651123, -0.8594797849655151, -0.5341811180114746, -0.25043603777885437, 0.4217827022075653, -0.2516898214817047, -1.0910252332687378, -0.4199870228767395, 0.011005195789039135, -0.3259068429470062, 0.6704156398773193, -0.3070942759513855, 1.3262439966201782, 0.1473948210477829, -0.14440953731536865, 0.08446546643972397, -0.19047623872756958, -0.48186057806015015, -0.5853415131568909, -0.11170241981744766, -0.49240782856941223, -0.9521477818489075, 0.05707702413201332, -0.21891386806964874, -0.4951893389225006, -0.18596144020557404, -0.5164596438407898, 0.2826881408691406, -1.497707724571228, -1.2763041257858276, -1.1372311115264893, 0.4132683277130127, 1.2375129461288452, -0.9224740266799927, 0.4894968271255493, 0.43014001846313477, -1.3682646751403809, 0.05499469116330147, -0.06711218506097794, -0.9827180504798889, -0.18092823028564453, -0.924838662147522, 1.4780793190002441, -0.9014343619346619, 0.6556553244590759, 0.2980441451072693, 1.3454774618148804, -1.120638132095337, -1.842431902885437, -0.9029639959335327, -0.36962637305259705, 1.0488637685775757, 1.0595697164535522, -0.41333338618278503, 1.2000517845153809, 0.3599015176296234, -0.48564815521240234, -0.8370421528816223, -0.12402325123548508, -0.7591763138771057, 0.44860729575157166, 0.789513885974884, 0.16798092424869537, -0.38472020626068115, 1.2099775075912476, -0.5324991941452026, 0.9940276741981506, 0.031331971287727356, 0.6679506301879883, -0.9200452566146851, -0.49867162108421326, -0.2849622070789337, 0.2773045599460602, -0.9536186456680298, -1.1470097303390503, -0.10090498626232147, -0.8861194252967834, -1.0634578466415405, 1.2470704317092896, 1.1035629510879517, -0.5479912757873535, 0.1310001164674759, -0.6770874261856079, 0.3671620190143585, -0.8923549056053162, 0.7929168939590454, -0.9283008575439453, -0.0470409020781517, 0.4026390016078949, 0.06773342937231064, -0.09942418336868286, -1.2021887302398682, 0.20081593096256256, 0.4594348073005676, -0.5245171189308167, -0.3476109802722931, 0.9636313915252686, 0.8080378770828247, -0.7705492973327637, -0.28571921586990356, 1.1099170446395874, 0.8783771991729736, 0.21320894360542297, -0.705337643623352, 0.7901591062545776, 0.5861724615097046, 0.3129878044128418, -0.9307940602302551, -0.36018791794776917, -1.1209760904312134, 0.9177137613296509, 0.41355085372924805, 0.13973140716552734, -0.14094655215740204, -0.11885048449039459, -0.5923205018043518, 0.3694745898246765, 0.342490017414093, -0.5685296654701233, 0.021786432713270187, 1.628193974494934, -0.16507259011268616, -0.3246228098869324, 0.2918027341365814, 0.5067034959793091, 0.5825214385986328, -0.5712629556655884, 0.6723194718360901, 0.39855366945266724, -0.8360459804534912, 0.50290447473526, 0.6773145794868469, -0.03526173532009125, -0.07220043987035751, -0.16691230237483978, -1.0800882577896118, -0.33098188042640686, -0.02868313528597355, -0.19025729596614838, 0.6572365164756775, -0.9283124804496765, -0.8354736566543579, 1.0313005447387695, -0.37556618452072144, -0.19675278663635254, -0.5722238421440125, 0.009779762476682663, -0.8847149014472961, 0.37105870246887207, 0.6781578063964844, 0.18147726356983185, 1.6189844608306885, -0.14307865500450134, -0.16608552634716034, -1.5189443826675415, -0.47648128867149353, 0.7349095940589905, 0.20201356709003448, 0.22843116521835327, -0.2700583338737488, 1.1781704425811768, -0.3876841366291046, -1.2693678140640259, -0.14528900384902954, -0.5167185068130493, 0.14883796870708466, -0.572987973690033, -0.7897247076034546, -0.10140502452850342, 0.5660184621810913, 0.29235827922821045, -0.48797929286956787, -0.5625563263893127, -1.7147126197814941, 0.5320442318916321, -0.31151309609413147, 0.3729337453842163, -0.35652250051498413, 0.9696093201637268, -0.0668920949101448, -0.07653671503067017, -0.08064316213130951, -0.43285852670669556, 1.123918890953064, -0.5720177888870239, 0.7266137003898621, 0.12349144369363785, 0.43723466992378235, -0.43212392926216125, -0.7280764579772949, 0.37275636196136475, -0.38185712695121765, 0.43029531836509705, -0.16033531725406647, -1.0690382719039917, -0.31339526176452637, -1.309770107269287, 0.4128212630748749, 0.5913383960723877, 0.5064595341682434, -0.36832761764526367, 0.13710981607437134, -0.8765237331390381, -0.18461595475673676, 0.6345599293708801, -0.7691107392311096, 0.5831764936447144, 1.343164324760437, 1.502249002456665, 0.6881192326545715, 0.49273136258125305, -0.6696160435676575, 0.4615408182144165, -1.0049662590026855, 0.14923515915870667, -0.018035883083939552, -0.12130048125982285, -0.8436858057975769], [0.8588318824768066, 1.0719577074050903, -2.0251238346099854, -1.0220552682876587, 1.1646277904510498, 0.12213639914989471, 1.4130758047103882, 0.06611236929893494, 0.9158716201782227, -0.3448071777820587, -0.17520016431808472, -0.3821297883987427, 0.726627767086029, 0.8590417504310608, -0.07198189198970795, 0.7291536927223206, 0.6846271753311157, -0.9517124891281128, 0.5019204020500183, 0.5902108550071716, 0.38992246985435486, -0.23204723000526428, 0.5739514827728271, 0.3944345712661743, -0.6084487438201904, 0.7669993042945862, -0.8150810599327087, -0.5316598415374756, -0.6632155776023865, -0.10215741395950317, 0.6974100470542908, -1.2253828048706055, 0.2612220048904419, -0.24862140417099, -1.5401531457901, -0.3560502827167511, 1.9399590492248535, 1.0285067558288574, 0.7031362652778625, 0.3406246602535248, 1.729666829109192, 0.20370818674564362, -0.3599185645580292, -1.584710717201233, 0.24105161428451538, 0.06749449670314789, 0.33626633882522583, -0.1624317616224289, 0.4795183539390564, -1.130056619644165, 1.5810922384262085, -0.34812667965888977, 0.6842838525772095, 1.0093210935592651, 0.8135431408882141, -0.19195249676704407, 1.1801728010177612, -0.2373325526714325, 0.7142525315284729, -0.7618348002433777, 1.1906079053878784, -0.088904969394207, -0.7985698580741882, 1.26151704788208, -0.6431785821914673, -0.07249274104833603, -0.2455640286207199, -0.047071218490600586, -0.19868537783622742, -0.37415367364883423, 0.2944968044757843, 0.5231342911720276, -0.25887876749038696, 0.6207393407821655, -1.8717471361160278, 0.5694416165351868, 0.8103546500205994, 1.1597603559494019, -0.04166772961616516, 0.36431097984313965, -0.41039443016052246, -0.36796000599861145, 1.02031672000885, -0.5986936688423157, 0.37515050172805786, 0.2397618144750595, 0.9210869669914246, -0.5457926392555237, -0.1316242665052414, 1.0080902576446533, 0.5876140594482422, 0.04332964867353439, 0.07074723392724991, -0.6441951990127563, -0.24062305688858032, -0.42034152150154114, 0.6695768237113953, -0.19346663355827332, -1.2623250484466553, -0.26251283288002014, -0.5156214833259583, -0.7580682635307312, -0.4922489821910858, 0.3163069784641266, -0.30574721097946167, 1.3069884777069092, 0.2576638460159302, 0.2655509114265442, -0.5684645175933838, -0.3490019738674164, 0.1985219419002533, 0.3056921362876892, -0.5869193077087402, -0.8030363917350769, -0.739497184753418, 0.7230872511863708, 1.1682844161987305, -0.46241581439971924, 0.5349600315093994, 0.9796600341796875, -0.5583828687667847, 0.2119198590517044, 0.2787727415561676, 0.9307652115821838, 1.1265383958816528, 0.18141207098960876, -0.1720646172761917, 0.029733926057815552, 0.6274340748786926, 0.10977867990732193, 0.2521153390407562, -0.45787107944488525, 0.012913540005683899, 0.20017607510089874, -0.8059419989585876, 1.3537917137145996, 0.21820463240146637, -0.1555429846048355, 0.30521440505981445, 0.03472900390625, 0.8452278971672058, -0.1288466900587082, -0.5274577140808105, 0.10487629473209381, -0.46988916397094727, -0.3644162118434906, -0.1109343096613884, -0.33826306462287903, -1.0778250694274902, -0.3252844214439392, -1.5706652402877808, 0.19893062114715576, 0.031821757555007935, 0.10836251825094223, 0.11363396048545837, -0.13881225883960724, 0.23389926552772522, 0.07574817538261414, 0.2438134104013443, -0.5884215831756592, 0.5645676851272583, -0.0048178136348724365, -1.1902107000350952, 0.813519299030304, 0.0031006988137960434, -0.48890286684036255, 0.16509224474430084, 0.3543691039085388, 0.4278610348701477, 1.2319247722625732, -0.6191403269767761, -0.40229183435440063, 0.2822202444076538, 0.31157517433166504, 0.49727532267570496, -0.33293968439102173, 2.056816577911377, -1.303440809249878, -0.510711669921875, -0.5905082821846008, 0.4900359511375427, -0.5127477049827576, 0.0731523409485817, -0.266975075006485, 0.48262691497802734, -0.17339016497135162, 0.2680838108062744, -0.5329545736312866, -0.015995977446436882, -0.36247727274894714, -0.5134274959564209, 0.3869739770889282, -0.2887192964553833, 0.5359750390052795, -0.26482516527175903, -0.3473336100578308, 0.6103809475898743, -1.0938324928283691, -0.6551607847213745, -0.1713058352470398, -0.016392946243286133, -0.3007618486881256, -0.5898334980010986, 1.0526894330978394, -0.8422046899795532, 0.9377288222312927, -0.9135562181472778, 0.5783456563949585, -1.1254262924194336, -0.34864914417266846, 1.071101188659668, -0.558375358581543, -0.1177603155374527, 0.5344530940055847, -0.3268285393714905, -1.34169340133667, 0.18771518766880035, 0.96266770362854, -0.883945107460022, 0.5006462931632996, 0.5592195987701416, -0.18356147408485413, 0.7314007878303528, 0.5551068186759949, 0.6995137929916382, 0.22933131456375122, -1.0438752174377441, -0.835444450378418, -0.8249362111091614, 0.30055761337280273, -0.0965714156627655, -1.8586150407791138, 1.2401520013809204, 1.3151841163635254, -0.5742232203483582, 0.5282414555549622, -0.19194643199443817, 0.3104960024356842, 0.812086284160614, 0.9899424910545349, 0.26713547110557556, 0.7749127745628357, -0.3910108506679535, 0.4798433482646942, -0.6942225098609924, 0.2915780544281006, 0.5982215404510498, -0.30034583806991577, -0.161447674036026, 0.8813175559043884, 0.6070250868797302, -0.15805692970752716, 0.33280134201049805, -0.28853175044059753, 0.5871352553367615, -0.5940639972686768, -0.3350297212600708, 0.03664274886250496, -0.10723581165075302, 1.1752938032150269, 0.46660545468330383, -0.9381861686706543, 0.6438292860984802, 0.016739841550588608, 0.1816643625497818, -0.19064883887767792, -0.6363004446029663, -0.257347971200943, -0.640659749507904, -0.27051204442977905, -0.22000080347061157, -0.08929767459630966, 0.37252530455589294, 0.2223322093486786, -0.2869516909122467, -0.15471045672893524, -0.3464146852493286, -0.001181766390800476, -0.39169201254844666, 0.9474740624427795, -0.08976836502552032, -1.5581541061401367, -0.19581888616085052, 0.5349013805389404, 0.18718744814395905, 0.258587509393692, -0.33616429567337036, 0.6234713196754456, -0.04675016179680824, -0.09172050654888153, -0.12958180904388428, -0.13619881868362427, -0.5483307242393494, 0.20153971016407013, 0.34193867444992065, 0.3578732907772064, 0.7720755934715271, -0.37138575315475464, -0.8526932001113892, -0.34859782457351685, 1.2855738401412964, 1.0787309408187866, 0.6586858630180359, 1.378506064414978, 0.20387114584445953, -0.22067637741565704, 0.3939749598503113, -0.5427361726760864, -0.7944478988647461, -0.7566332221031189, -0.8270665407180786, -0.34321388602256775, -0.3094342052936554, 0.4761485755443573, -0.05125198885798454, 0.8922910094261169, -0.11619672924280167, 0.5875628590583801, 1.0759670734405518, -0.2023201733827591, -0.19791081547737122, 0.609900176525116, -0.1727408468723297, -0.6935747861862183, 0.24217629432678223, 0.19023609161376953, -0.829079806804657, -0.20323120057582855, 0.47646164894104004, 0.015011349692940712, 0.03778168186545372, 0.09975896030664444, -0.6444993615150452, -1.6725566387176514, -1.3804935216903687, -0.4448733627796173, 1.0273919105529785, 0.04905686154961586, 0.42590925097465515, -0.6866152882575989, 0.7780346274375916, 0.42364025115966797, 0.35919809341430664, -0.9748064875602722, 0.47630882263183594, -0.4569433033466339, -1.1051422357559204, -0.1345292329788208, 0.395327091217041, 0.6404218673706055, -0.20545107126235962, 0.3167746663093567, -0.3695406913757324, -0.32839372754096985, -0.05878908932209015, 0.4642305374145508, 0.5357310175895691, 0.5030724406242371, -0.13148994743824005, -0.3982159197330475, 0.7215049862861633, -0.5056158900260925, -0.3393506705760956, -1.6462411880493164, 0.906363844871521, 0.03770923987030983, 0.32693207263946533, -0.01837935671210289, -0.22086508572101593, 0.3547605574131012, 0.35136738419532776, 0.5026200413703918, 0.17513921856880188, 1.721121907234192, -0.2809222936630249, 0.2371589094400406, -0.41461580991744995, -0.10501326620578766, 0.20516690611839294, -0.7932171821594238, -0.24894988536834717, -0.009411133825778961, -1.133646845817566, -0.691892147064209, 1.425952434539795, -0.03685476630926132, -0.1819579303264618, -0.5998951196670532, -0.04884035885334015, 0.6441752910614014, 0.48958465456962585, 0.688271701335907, -0.6023455858230591, -0.12640391290187836, 0.27835944294929504, -0.2118242084980011, -0.15809261798858643, 0.05294468253850937, 0.2846011519432068, 0.5859981179237366, -0.8002840876579285, 0.02230820804834366, -0.64483243227005, 1.307326078414917, 0.18272732198238373, -0.38229599595069885, 0.15344387292861938, -0.8115668296813965, -0.1711987406015396, 0.17522487044334412, -0.28685876727104187, 0.44035428762435913, -0.6246872544288635, -0.5502816438674927, -0.5249782800674438, -0.13810138404369354, -0.10019678622484207, -0.3421293795108795, -0.35578519105911255, -0.056851062923669815, -0.5290843844413757, -0.10189054161310196, -0.4140397310256958, -0.08420296013355255, 0.7490975260734558, 0.8579192757606506, -0.00684964656829834, 0.5146265625953674, -0.3536683917045593, -1.0231642723083496, -0.009891491383314133, 0.5576176047325134, -0.26561689376831055, -0.5837342143058777, -0.21652698516845703, 0.1408603936433792, -0.25932860374450684, 0.27277812361717224, -0.4761374294757843, 0.6866739392280579, -0.3145446479320526, -0.2890351712703705, 0.1922566294670105, 1.339816689491272, 0.03930987790226936, 0.9792720079421997, 0.06997498869895935, -0.6517282724380493, -0.40305855870246887, 0.3096478283405304, -1.4419912099838257, 0.09197419881820679, 0.7068667411804199, 0.02283220738172531, 0.9654316902160645, -1.7656607627868652, -0.35070517659187317, 0.4037599563598633, -0.030214596539735794, 0.3319239020347595, 0.3820073902606964, -0.2972136437892914, -0.422534704208374, 0.9860090017318726, 0.3689587116241455, -0.6650641560554504, -0.13090285658836365, 0.19450095295906067, 0.10643154382705688, 0.05684264376759529, -0.5095613598823547, 1.383905053138733, -0.27176231145858765, 0.24290220439434052, 0.17203044891357422, -0.3814873695373535, 0.46158045530319214, 0.7759223580360413, -0.09386099874973297, 1.451780915260315, -0.9296383857727051, -0.8493688702583313, 0.2762361764907837, -0.5890810489654541, 0.19957296550273895, -0.3437731862068176, -0.3352104425430298, -0.5127277970314026, -0.7371044754981995, -0.2747076153755188, 1.1170806884765625, -0.12806600332260132, -0.017691753804683685, -0.047271259129047394, -0.5731841325759888, -0.11374122649431229, 0.8863969445228577, 1.4718284606933594, 0.14039751887321472, -0.2427273988723755, 0.7766781449317932, 1.2680436372756958, -0.7368313074111938, -0.19558438658714294, -0.3028883934020996, 0.05274440720677376, -0.5355951189994812, -1.5445610284805298, -0.7684516310691833, 0.2525262236595154, 0.6436886787414551, -0.17056283354759216, -0.253912091255188, 0.576489269733429, 0.8657644391059875, -0.18640068173408508, 0.06477785855531693, 0.4932681620121002, -0.7214034795761108, 0.40666812658309937, 0.2459626942873001, -0.17435799539089203, -0.6103155016899109, -0.8270050883293152, -0.9064547419548035, 0.18812650442123413, -0.5816874504089355, -1.1768202781677246, 0.0011078286916017532, -0.08536885678768158, 0.39140796661376953, -0.04979406297206879, -0.4657326936721802, 0.6856157183647156, 0.6431237459182739, 0.003650170750916004, -0.7170840501785278, 0.7142577171325684, 0.008767570368945599, 0.3469112515449524, -0.42109930515289307, 0.3620447516441345, 0.9058926105499268, -0.191959947347641, 0.2285149097442627, -0.5854737758636475, 0.5103054046630859, 0.7922422289848328, 0.4066230356693268, -1.1794558763504028, 0.034258004277944565, -0.1067483052611351, -0.5899131298065186, 0.17657896876335144, 0.10632001608610153, -0.4429784417152405, -0.12180624157190323, -0.15744026005268097, -0.45271188020706177, -0.8793914914131165, 0.29582613706588745, -0.4356166124343872, 0.8388339281082153, -0.012876570224761963, -0.4267703592777252, 0.041280679404735565, -0.21674618124961853, -0.24534650146961212, -0.3201735019683838, 0.08576040714979172, -0.1766931414604187, -1.0954270362854004, 0.6606294512748718, 0.07431303709745407, -0.4476173520088196, -0.013441860675811768, -1.0785852670669556, 0.7606942057609558, -1.4775969982147217, -1.3122098445892334, -1.057791829109192, 0.9066387414932251, 1.0718128681182861, -0.18816500902175903, 0.8238610029220581, 0.7885412573814392, -1.324571967124939, -0.023780282586812973, 0.18083499372005463, -0.9104081392288208, -0.4506538212299347, -0.49535495042800903, 0.4376503527164459, -0.24957901239395142, 0.6072718501091003, -0.521861732006073, 1.1768075227737427, -1.2691309452056885, -1.4393950700759888, -0.9613201022148132, -0.15589673817157745, 0.37276187539100647, 0.9793145656585693, -0.5035001039505005, 1.0323508977890015, 0.6625208258628845, -0.016992252320051193, -0.6164945363998413, -0.2993852496147156, -0.15439429879188538, 0.5078189373016357, 0.6636846661567688, 0.6090388298034668, 0.31445133686065674, 0.9551281929016113, -0.6572355031967163, 0.8222832679748535, 0.28915679454803467, 0.44106072187423706, -0.9128365516662598, -0.29698967933654785, 0.6264482736587524, 0.9714727997779846, -1.0744099617004395, -0.3779211938381195, -0.9813655018806458, -0.6196754574775696, -0.9995502233505249, 1.0204533338546753, 1.1801141500473022, -0.7283905744552612, 0.28973254561424255, -0.6551035642623901, -0.0726548582315445, -0.2103721797466278, 0.3796294033527374, -0.9586167335510254, 0.22884111106395721, -0.09707924723625183, -0.04348868876695633, -0.39670392870903015, -1.6829195022583008, 0.08863005042076111, 0.10715323686599731, -0.022541414946317673, -0.8283307552337646, 1.1707843542099, 0.8235913515090942, -0.13780730962753296, -0.2178277224302292, 2.2372491359710693, 1.7029623985290527, -0.013074973598122597, -1.0299750566482544, 0.7048029899597168, 0.3000122606754303, 0.1707310527563095, -1.091233491897583, 0.28669223189353943, -0.9394335746765137, 0.19288921356201172, 0.38690903782844543, -0.4267233610153198, -0.5082648396492004, 0.22141779959201813, -0.23584763705730438, 0.1321418136358261, 0.3205595910549164, -0.982404351234436, -0.03278924524784088, 0.7957881093025208, -0.3594902455806732, -0.4873311519622803, 0.4314613938331604, 1.5648165941238403, 0.06088164448738098, -0.3885612487792969, 0.16136641800403595, 0.06876087933778763, -0.8873611092567444, 1.3234679698944092, 0.3578563928604126, -0.06799840182065964, -0.2082430124282837, -0.867101788520813, -0.9204672574996948, -0.36607661843299866, -0.7475968599319458, -1.1925073862075806, -0.03221806883811951, -1.193254828453064, -0.4941411018371582, 1.05141019821167, -0.23029722273349762, -0.4922644793987274, -0.12465691566467285, 0.48183977603912354, -0.07609894871711731, 0.16666147112846375, 0.03981902077794075, -0.25876733660697937, 1.1542456150054932, 0.661457896232605, -0.5945484042167664, -1.5913565158843994, -0.8813382387161255, 0.16524383425712585, -0.6215692758560181, -0.10933215916156769, 0.5632648468017578, 0.5834481716156006, 0.06038415804505348, -0.30900079011917114, 0.046032823622226715, 0.3819390535354614, -0.49152979254722595, -0.054850023239851, -0.7715388536453247, 0.21494421362876892, 0.7312945127487183, 0.6820802092552185, -0.10115586966276169, -0.6242820620536804, -0.5861627459526062, 0.1893758326768875, 0.013310089707374573, 0.6263372898101807, -0.3988102078437805, 1.3411613702774048, -0.2168695032596588, 0.16579675674438477, -0.5413321852684021, -0.128316268324852, 0.4690462052822113, -0.19675490260124207, 0.7847834825515747, 0.3235207796096802, 0.23713725805282593, -0.8381333947181702, -0.8738950490951538, 0.3216455280780792, -0.6687549948692322, 0.35561132431030273, 0.10688559710979462, -0.8675569891929626, -0.5219964981079102, -0.5351666212081909, 0.4360825717449188, 0.8529530167579651, 0.3558865189552307, -0.6655393242835999, 0.17621783912181854, -0.8917481899261475, 0.4216930568218231, -0.05420718342065811, -0.1527712494134903, 0.3887079954147339, 0.49277225136756897, 1.2335540056228638, 0.45056629180908203, 0.6433104276657104, -0.8450483679771423, 0.12743453681468964, -0.07445034384727478, 0.042772673070430756, -0.531241238117218, 0.11435239017009735, -0.3511260449886322], [0.11446772515773773, 1.63265860080719, -2.0411860942840576, 0.031493350863456726, 1.8134243488311768, 0.49031469225883484, 1.3437947034835815, -0.5061196088790894, 0.34196990728378296, -1.0055789947509766, 0.3237752616405487, -0.5814164280891418, 0.854061484336853, 1.2221428155899048, -0.37289419770240784, -0.1150086522102356, 0.5343759059906006, -1.2644469738006592, 0.6838235855102539, 0.9979326725006104, 0.22726549208164215, -0.1893838793039322, 0.22548164427280426, 0.41950374841690063, -0.07350281625986099, 0.1907246857881546, -1.495455026626587, -0.687056303024292, -0.41669028997421265, -0.9145066142082214, 1.2954801321029663, -1.3584383726119995, 0.24393677711486816, 0.1768685281276703, -1.3157072067260742, -0.3686925172805786, 1.0655053853988647, 0.5522981882095337, -0.03714250400662422, 0.144415482878685, 1.5101628303527832, -0.48069533705711365, -0.03776850923895836, -1.7308045625686646, 0.3221139907836914, -0.08031290769577026, 0.6362156867980957, -1.313720464706421, 0.06686154007911682, -1.2364120483398438, 0.8163340091705322, -0.2600681781768799, 0.7197420001029968, 1.0877493619918823, 0.43178537487983704, 0.744070291519165, 0.1838008165359497, 0.0847567468881607, 1.5663528442382812, -0.2754487991333008, 0.5056770443916321, 0.006710566580295563, 0.22920215129852295, 0.3042010962963104, 0.02884850837290287, -0.3017546832561493, 0.45401978492736816, 0.8196654319763184, 0.13907645642757416, -0.027217447757720947, 0.5956951379776001, -0.047755759209394455, -0.5522996187210083, 0.2898346781730652, -1.2145076990127563, 0.20029084384441376, 0.964874804019928, 1.2054716348648071, -0.07875148952007294, 0.49747979640960693, -0.5735633373260498, -0.008556051179766655, 0.29669055342674255, -0.11199480295181274, 0.6884316205978394, 0.3057924211025238, -0.25190871953964233, -0.5252995491027832, -0.30370327830314636, 1.8266063928604126, 0.634698212146759, 0.1351061761379242, 0.6868492364883423, -0.8527026176452637, -0.3549535870552063, -0.4294489920139313, 0.29012593626976013, -0.854032576084137, -0.40768393874168396, -0.5340694785118103, -0.22426250576972961, -0.6542455554008484, -0.03695366531610489, 0.12729525566101074, 0.09655740857124329, 1.1188316345214844, -0.013775690458714962, 0.2541796565055847, -0.6942663192749023, 0.08084971457719803, -0.4651780128479004, 0.16156983375549316, -0.8298458456993103, -1.1345003843307495, -0.5583370327949524, 1.0027426481246948, 1.4403821229934692, -0.10911627858877182, 0.7567745447158813, 0.7961340546607971, -0.6378082633018494, 0.4095771908760071, -0.3180805444717407, 0.5648389458656311, 0.7348175048828125, 0.2497551441192627, -0.07990318536758423, -0.7626159191131592, 0.4309500753879547, -0.2223157435655594, -0.34446093440055847, -0.10573010891675949, -0.15960411727428436, 0.4325125515460968, -0.4665670394897461, 0.3880898058414459, -0.3260633945465088, -0.1370394080877304, 0.34303197264671326, -0.2910660207271576, 0.49640709161758423, -0.06481540203094482, -0.36201685667037964, 0.2376919537782669, 0.027425674721598625, -0.5876663327217102, 0.5408463478088379, 0.5930455923080444, -0.41171780228614807, 0.3281978368759155, -1.3335920572280884, -0.239765465259552, 0.7004368901252747, 0.20647810399532318, -0.12409854680299759, 0.17290471494197845, 0.28566959500312805, 0.4872925579547882, 0.41143491864204407, -0.19019868969917297, 0.7753404974937439, 0.09407471120357513, -0.9903281331062317, 0.8168940544128418, 0.5204144716262817, 0.3562823235988617, 0.7010427713394165, 0.03523767367005348, 0.13474680483341217, 0.7094715237617493, -0.9244902729988098, -0.6344186067581177, 0.3728138506412506, 0.6861147880554199, 0.6688384413719177, -0.4080185890197754, 2.126286745071411, -1.6858397722244263, -1.016348123550415, -0.982679009437561, 0.7358802556991577, -0.4268794655799866, 0.07518696039915085, 0.14599771797657013, 1.0042479038238525, -0.15040454268455505, 0.26621347665786743, -0.00014240900054574013, -0.40234988927841187, -1.1599152088165283, -1.342353105545044, 0.11158576607704163, -1.2907923460006714, 0.31653037667274475, -0.10745054483413696, -0.6287886500358582, 0.6036970615386963, -0.6617522835731506, -1.4024889469146729, 0.27090227603912354, -0.6137825846672058, -0.26520344614982605, -0.978808581829071, -0.14829319715499878, -0.16490858793258667, 1.0490641593933105, -1.304372787475586, 0.7421761155128479, -0.3731512129306793, 0.16452419757843018, 1.2207531929016113, -0.18430769443511963, -0.7416333556175232, 0.6674588322639465, -0.4892394542694092, -1.4885071516036987, 1.2435563802719116, 0.8140624165534973, -0.12831144034862518, 0.42089661955833435, 0.1916353851556778, 0.24261370301246643, -0.21019135415554047, 0.3373839259147644, 0.7713744640350342, -0.12246813625097275, -0.8330934047698975, -1.4211667776107788, -1.17068612575531, 0.25113946199417114, -0.5994123816490173, -1.105067253112793, 1.1237846612930298, 0.4413747489452362, -0.4835388660430908, 0.13388089835643768, -0.1307942122220993, -0.10206063836812973, 0.6111341714859009, 0.927824079990387, 0.5034804940223694, 0.33785292506217957, 0.13688525557518005, -0.20758508145809174, -0.12327796965837479, -0.09877090156078339, 0.6612262725830078, -0.5844650268554688, -0.0636526346206665, 1.1348977088928223, 0.6542518138885498, -0.44780465960502625, 0.04729935899376869, 0.0936715304851532, -0.30488115549087524, -1.2362316846847534, -0.3553178906440735, 0.18987762928009033, -0.7180060148239136, 1.1458734273910522, 0.6355894207954407, -0.5970994830131531, -0.6777869462966919, -0.3235119879245758, -0.8657785058021545, -0.691440224647522, -1.1108982563018799, -0.9183226823806763, -0.4850693345069885, -0.1990346759557724, -0.057582154870033264, -0.03545220568776131, -0.14343085885047913, 0.6020548343658447, -0.7858663201332092, -0.5748997926712036, -0.26481300592422485, 0.10236003994941711, 0.4018113911151886, 0.7018381953239441, -0.04626893624663353, -0.9260547161102295, -1.1984541416168213, 0.417275071144104, 1.1797807216644287, 0.32121947407722473, 0.10835380852222443, 0.21425631642341614, 0.1991460770368576, -0.03488462418317795, 0.26683181524276733, 0.16834433376789093, 0.4859170913696289, 0.4200142025947571, 0.0932111144065857, 0.49308860301971436, 1.030142903327942, -1.206809639930725, -0.8220608234405518, -0.7614068984985352, 1.1279606819152832, 0.9463540315628052, 1.089896321296692, 1.0824397802352905, -0.22173967957496643, 0.2937825918197632, -0.1296035498380661, -0.32308685779571533, -0.6749129295349121, -0.3621327579021454, -0.5609769225120544, -0.4250071048736572, -0.6845905184745789, -0.47810736298561096, -0.3148047924041748, 0.20326003432273865, -0.40947967767715454, 1.107614517211914, 1.2340950965881348, -0.6341788172721863, -1.4176781177520752, -0.7711868286132812, 0.04754703491926193, -1.2441976070404053, 0.6186754107475281, 0.7202721834182739, -0.9586371779441833, -0.5789233446121216, -0.019600246101617813, 0.012520821765065193, 0.9439801573753357, 0.2848254442214966, -0.48933470249176025, -1.3176764249801636, -0.6239752173423767, -0.32181233167648315, 1.141434669494629, 0.1424170285463333, 0.3556050658226013, -0.7794485092163086, -0.32108065485954285, 0.268099844455719, -0.13335277140140533, -0.7266116142272949, 0.44229093194007874, -0.24803996086120605, -0.4029207229614258, -0.4666357636451721, 0.20317977666854858, 0.5314826369285583, -0.5930960178375244, -0.01640941947698593, -0.23457327485084534, 0.17202366888523102, -0.2893085777759552, 0.9783207178115845, 0.2641619145870209, 0.3037118911743164, 0.19487923383712769, 0.14297491312026978, 0.8258881568908691, -0.46278974413871765, -0.2362128049135208, -1.124078631401062, 1.0085258483886719, 0.46362146735191345, 0.3315049111843109, -0.3390776813030243, 0.20103690028190613, 0.1221281960606575, -0.639591634273529, 0.5612014532089233, 0.49672967195510864, 1.520678162574768, 0.9731156826019287, -0.3989656865596771, -0.5311682820320129, 0.04635223001241684, -0.45731326937675476, -1.1897752285003662, -0.01971817947924137, 0.15202055871486664, -0.3727174401283264, -1.609989881515503, 1.2853126525878906, 0.8671234250068665, 0.12532873451709747, -0.6736254692077637, -0.17589354515075684, 1.5498671531677246, 0.37775564193725586, 0.205934539437294, -0.8005644083023071, 0.5666945576667786, -0.47071781754493713, -0.7362379431724548, -0.3806869089603424, -0.0059099383652210236, -0.0003462759777903557, 0.511184573173523, -1.1192846298217773, -0.029481712728738785, -0.5504505038261414, -0.3738972544670105, 0.7694682478904724, -0.48677507042884827, 0.31951674818992615, -0.6550431847572327, -0.19551508128643036, -0.16553884744644165, 0.5425372123718262, 1.6479547023773193, -1.1590442657470703, -0.3983924686908722, -0.293692409992218, -0.12011252343654633, -0.07184609025716782, -0.4960137605667114, -0.5194110870361328, 0.29620423913002014, -0.6629039645195007, 0.1763228327035904, -0.1520373821258545, 0.189182311296463, 1.6923489570617676, 0.04580913111567497, 0.20586726069450378, 0.5588030815124512, 0.06617842614650726, -0.9108847379684448, 0.14213207364082336, 0.019512172788381577, 0.3252200186252594, -0.009734252467751503, -0.20771469175815582, 0.4438144266605377, -0.38095417618751526, 0.5722604393959045, 0.39163199067115784, 0.7216596603393555, -0.25641047954559326, 0.641125500202179, -0.023699309676885605, 0.16669854521751404, 1.4150621891021729, 1.5428624153137207, 0.15461795032024384, -0.3907003104686737, -1.0261573791503906, 0.6493791341781616, -0.6675726175308228, 0.3136880695819855, 0.860328197479248, 0.26690763235092163, 0.6031944751739502, -1.7435206174850464, -0.6409996747970581, 0.6242554187774658, 0.0804014503955841, 1.297184944152832, 0.19083476066589355, -0.15749257802963257, -0.06435760110616684, 0.4843265414237976, 0.6358231902122498, -0.26414674520492554, 0.7522579431533813, 0.27723929286003113, -0.2749011516571045, 0.08831939101219177, -0.3469620943069458, 0.21880902349948883, -0.508817732334137, -0.0705493614077568, -0.06744157522916794, 0.0213988795876503, 0.8525698184967041, 0.6478012204170227, 0.5233592391014099, 0.41167640686035156, -0.38111189007759094, -0.8052688241004944, 0.02131865732371807, -0.32759419083595276, 0.08430690318346024, 0.07877404242753983, -1.0352171659469604, -0.3334902226924896, -1.3935900926589966, -0.8730053305625916, 0.17396701872348785, -0.8478536009788513, -0.6603281497955322, -0.5426884293556213, -0.7341434955596924, -0.2653772234916687, 0.9010605216026306, 1.0280333757400513, 0.37556999921798706, 0.3690427839756012, 0.5512044429779053, 0.13192234933376312, -0.8574618697166443, 0.2280653417110443, 0.30753421783447266, -0.14721424877643585, -0.4299719035625458, -1.3069002628326416, -0.7188036441802979, 0.2558039128780365, 0.4260801374912262, -0.2241630107164383, 0.6632714867591858, 1.3788318634033203, 1.270896553993225, -0.2495185136795044, -0.09487585723400116, 0.3839913308620453, -0.4211578667163849, 0.6936172246932983, 0.632631778717041, -0.6860462427139282, -0.1077507883310318, 0.30655336380004883, -1.0439294576644897, 1.1078274250030518, -0.19797591865062714, -1.0687764883041382, 0.22167891263961792, 0.2419148087501526, -0.04509814456105232, 0.5354444980621338, -0.4137958884239197, 0.3343101441860199, 0.23117586970329285, -0.11800722777843475, -1.130568265914917, -0.2641221284866333, 0.5697092413902283, 0.07798164337873459, -0.4695747494697571, 0.7414573431015015, 0.6164044737815857, -0.2126791775226593, 0.7383228540420532, 0.2840222418308258, 0.15694652497768402, 0.5144547820091248, 0.5021653771400452, -1.081882357597351, 0.041313089430332184, -0.49546533823013306, -0.7873474955558777, -0.2156401425600052, 0.08307992666959763, 0.3809097111225128, -0.9587209224700928, -0.526134192943573, -0.3247711658477783, -0.45841291546821594, -0.15519700944423676, -0.8657130599021912, 0.7448051571846008, 0.44624048471450806, 0.021491024643182755, 0.28678271174430847, -1.0354100465774536, -0.810796320438385, -0.1701941341161728, -0.7404114603996277, 0.726373016834259, -0.8673122525215149, 0.27075883746147156, -0.02802363783121109, 0.08345851302146912, -0.3954109251499176, -0.5591763854026794, 0.5740150213241577, -1.2855857610702515, -0.8324693441390991, -0.5731604695320129, 0.007877444848418236, 0.9213097095489502, -0.8256632685661316, 1.1107314825057983, 0.5467773079872131, -1.5559909343719482, 0.43564969301223755, -0.18329790234565735, -1.4267699718475342, -0.2781812250614166, -1.4049502611160278, 1.40092134475708, -0.5971283316612244, -0.00482454476878047, 0.13392852246761322, 1.6611145734786987, -0.8797390460968018, -1.1333626508712769, -0.37842661142349243, -0.358560711145401, 1.071660041809082, 1.1548385620117188, -0.4988894462585449, 1.2141122817993164, 0.08917441219091415, -0.3064649999141693, -0.4592247009277344, 0.21499688923358917, -0.5800039172172546, 0.38634616136550903, 0.2318653166294098, 0.06730826944112778, -0.17013375461101532, 1.0140633583068848, -0.1432199329137802, 0.7545623779296875, 0.009514624252915382, 1.080708622932434, -0.5211232304573059, -0.5340326428413391, 0.008818109519779682, 0.3119387626647949, -1.178428292274475, -0.5022624135017395, -0.2335921972990036, -0.9999534487724304, -0.7619879841804504, 0.6571395397186279, 1.097880244255066, -0.35105010867118835, 0.25702860951423645, -0.25584515929222107, 0.8213282823562622, -0.7458305954933167, 0.631214439868927, 0.531309962272644, -0.10752102732658386, 0.09431636333465576, -0.568928599357605, -0.05637391656637192, -1.4391533136367798, -0.15536460280418396, 0.5472769737243652, -0.17872996628284454, -0.24170881509780884, 0.7234249711036682, 0.3998924791812897, -0.4243932068347931, -0.5740950703620911, 1.651931643486023, 1.3276292085647583, -0.13922461867332458, -0.46948882937431335, 0.9453451633453369, 0.030317891389131546, 0.8744450807571411, -0.3757877051830292, 0.016763661056756973, -0.5592965483665466, 0.43582984805107117, 0.7699761986732483, 0.0336279422044754, -0.6546655297279358, 0.10469686985015869, -0.6339534521102905, 0.8982338905334473, 0.5922171473503113, -0.45421499013900757, -0.19007925689220428, 1.5000468492507935, -0.43298155069351196, -0.4242604076862335, 0.44633105397224426, 0.19927068054676056, 0.448905348777771, -0.19629596173763275, -0.03258476033806801, 1.251602292060852, -1.092937707901001, 0.4214901626110077, 0.6680797934532166, -0.12876176834106445, 0.3436548113822937, -0.7947117686271667, -1.57957124710083, -0.4925706386566162, -0.4079980254173279, -0.4462454617023468, 0.7647460699081421, -0.6615257859230042, -0.5812403559684753, 0.7168992161750793, 0.1806548535823822, -0.1826627105474472, -0.9516343474388123, 0.3637877106666565, -0.31133580207824707, 0.28283947706222534, 0.48500698804855347, -0.17569701373577118, 1.3068355321884155, 0.1851118803024292, -0.22043758630752563, -0.22406478226184845, -0.22280332446098328, 0.7057226896286011, 0.059098780155181885, -0.62946617603302, -0.4894404411315918, 0.777507483959198, 0.425958514213562, -0.5833439826965332, 0.671312153339386, -0.26086804270744324, 0.09443095326423645, -0.02890205755829811, -0.3137478828430176, 0.2906382381916046, 0.4919339418411255, 0.26234835386276245, -0.905741810798645, -0.5935152769088745, -0.970096230506897, 0.7583373785018921, -0.8173289895057678, 0.9240866303443909, -0.05109584331512451, 0.6680425405502319, 0.5392980575561523, -0.4643685221672058, -0.33830252289772034, -0.886146605014801, 0.5036368370056152, -0.35890674591064453, 0.3307921290397644, 0.13907557725906372, -0.2895243167877197, 0.22955924272537231, -0.7704201340675354, 0.42259326577186584, -0.23850584030151367, 0.516524612903595, 0.4859950840473175, -1.5653398036956787, -1.3630590438842773, -1.056212067604065, 1.1183074712753296, 1.1622318029403687, -0.24350138008594513, -0.246591717004776, 0.10332810133695602, -1.3588882684707642, 0.41027477383613586, 0.5334830284118652, 0.42754673957824707, 0.36657652258872986, 1.5635261535644531, 1.255340576171875, 0.10020219534635544, 0.47151443362236023, -0.24494697153568268, 0.7594771385192871, -1.1724969148635864, -0.05142250657081604, -0.7790200114250183, 0.45266640186309814, 0.016849011182785034], [0.08579034358263016, 0.9665300250053406, -2.1491470336914062, -0.5810498595237732, 1.3067703247070312, 0.539298951625824, 1.1702648401260376, -0.017355559393763542, 0.8249069452285767, -0.4825347661972046, -0.5966542363166809, -0.9854111671447754, 0.5771690607070923, 0.731289803981781, -0.5065193772315979, -0.2661239802837372, 1.1184078454971313, -0.8683478236198425, 0.8224180340766907, 0.271375447511673, -0.3293851912021637, -0.19057132303714752, -0.43109628558158875, 0.06661110371351242, -0.29216277599334717, -0.465059757232666, -1.2803205251693726, -0.3841879963874817, -1.1496864557266235, -0.5220039486885071, 1.1929651498794556, -0.948613703250885, 0.30670905113220215, 0.3062337636947632, -1.6410446166992188, -0.5600395798683167, 1.7316889762878418, 0.5783774256706238, 0.11701834946870804, 0.8721492886543274, 2.4797756671905518, 0.023067647591233253, 0.037936218082904816, -1.8381694555282593, -0.6488716006278992, 0.15645810961723328, 0.0642128512263298, -1.0515917539596558, 0.4902423918247223, -0.7940418124198914, 0.6500745415687561, -0.7134028673171997, 1.13283371925354, 1.6368635892868042, 0.7049881219863892, -0.2239999622106552, 0.4644470512866974, 0.4425335228443146, 0.865878701210022, 0.23888429999351501, 1.056510329246521, -0.5619534850120544, -0.29550111293792725, 0.7356494069099426, 0.015123276039958, -0.37358415126800537, -0.03890429437160492, 0.6389908790588379, -0.1256668120622635, -0.2969449460506439, 0.45405083894729614, -0.2067941427230835, -0.6223843097686768, 0.7631540894508362, -1.4947973489761353, 0.5088925957679749, 0.3017628490924835, 0.3704730272293091, 0.8604408502578735, 0.6049821376800537, -1.0351139307022095, 0.16303491592407227, 0.6401922106742859, -0.03798457607626915, -0.21029065549373627, 0.5821861624717712, -0.06799696385860443, -0.6592839360237122, 0.16316597163677216, 2.3369836807250977, 0.7004664540290833, 0.15755465626716614, 0.07894367724657059, -0.4429708421230316, -0.14053428173065186, 0.1690077930688858, 0.8590643405914307, -0.7331341505050659, -0.39420175552368164, -0.6681625247001648, -0.5514360666275024, -0.771726131439209, -0.1204596608877182, 0.4314013123512268, 0.06038577854633331, 0.9751138687133789, -0.07770611345767975, 0.20138953626155853, -0.19610577821731567, 0.10710005462169647, -1.108232855796814, -0.042906586080789566, -0.5377907156944275, -0.6975600719451904, -0.0970843955874443, 0.8153162002563477, 0.8345158696174622, 0.06401004642248154, 0.4783867299556732, 0.07016635686159134, 0.03446877747774124, 0.559786856174469, -0.1536828875541687, 0.6594626903533936, 0.30331873893737793, 0.5469632148742676, -0.9699798226356506, -1.0225714445114136, 0.3289145231246948, -0.22429867088794708, -0.0907701924443245, -0.11850001662969589, 0.2037273496389389, 1.225923776626587, -0.7129644155502319, 0.948981761932373, -0.640455961227417, -0.06082915887236595, -0.0834958478808403, -0.13282667100429535, 1.019860863685608, -0.2488284707069397, -0.2661289870738983, -0.19913971424102783, 0.6678711175918579, -0.694856584072113, 0.4695320725440979, 0.029842879623174667, -0.5512135028839111, -0.03802022337913513, -0.6561106443405151, 0.224402517080307, 0.3880283236503601, 0.1922176480293274, 0.22148174047470093, -0.019782787188887596, 0.09393949806690216, 0.05313533917069435, 0.41370972990989685, 0.4246908128261566, 0.4888468086719513, 0.4495764672756195, -0.5276788473129272, 1.1095024347305298, 0.739571750164032, 0.19918948411941528, 0.8443018794059753, 0.7247159481048584, 0.1330581158399582, 1.413939118385315, -0.27983176708221436, -0.9662197232246399, 0.41188547015190125, 0.34605738520622253, 0.6013336181640625, -0.6692747473716736, 1.844544529914856, -0.8732333779335022, -0.5090940594673157, -1.1684138774871826, 0.9133305549621582, 0.03141921013593674, 0.11190550774335861, -0.3284088373184204, 0.7074161767959595, -0.2972765862941742, -0.05524106323719025, -0.7415556907653809, 0.23194491863250732, -1.1243826150894165, -0.4994381070137024, -0.6284775137901306, -1.4504283666610718, -0.07128500938415527, -0.5892522931098938, -0.7426091432571411, 0.8131275773048401, -0.9544240832328796, -1.1601072549819946, 0.2933274805545807, -0.3384231925010681, -0.45560309290885925, -0.33326736092567444, 0.7152534127235413, -0.7276598811149597, 0.8681315183639526, -0.8870388865470886, 0.49713534116744995, -0.11452344059944153, -0.27711641788482666, 0.8278810381889343, -0.3062160909175873, -0.20228102803230286, 1.0633715391159058, -0.1904783695936203, -0.5757988691329956, 1.0109176635742188, 0.46705061197280884, -0.08081292361021042, 0.36254626512527466, -0.030711418017745018, 0.3459817171096802, 0.7705442905426025, 0.35953572392463684, 0.07590539008378983, -0.28996050357818604, -0.9433136582374573, -1.3290232419967651, -1.0051512718200684, 0.414584219455719, -0.540469765663147, -2.0575082302093506, 1.2242578268051147, 0.8175100684165955, -0.6199678182601929, -0.6275109648704529, -0.02118389680981636, 0.7150399684906006, 0.15427151322364807, 0.8287249207496643, 0.057367537170648575, 0.5189434289932251, 0.1416071355342865, -0.5583548545837402, -0.7357069849967957, 0.15110306441783905, 0.5445865392684937, -0.5474560856819153, 0.433172345161438, 0.5074397921562195, -0.05507723242044449, 0.3542350232601166, 0.7056486010551453, 0.18203632533550262, -0.2989438474178314, -0.9268969297409058, -0.36772680282592773, 0.6842559576034546, -0.21207216382026672, 1.3189027309417725, 1.1932108402252197, -0.9367966651916504, -0.709907054901123, 0.16757287085056305, -0.28303512930870056, -0.26441362500190735, -1.3030351400375366, -0.42257216572761536, 0.03667629510164261, 0.04067318141460419, -0.13231521844863892, 0.2871435582637787, -0.10008101910352707, 1.033485770225525, 0.019285596907138824, -0.040799565613269806, -0.617175281047821, 0.4059526026248932, 0.11194990575313568, 0.16940493881702423, 0.10008465498685837, -0.9902899265289307, -0.4117080271244049, 0.3133949637413025, 0.8167935609817505, 0.7899166345596313, -0.4536917507648468, 0.558122456073761, 0.39988842606544495, -0.12908323109149933, 0.4662003219127655, 1.001655101776123, -0.2686704099178314, 0.4555724859237671, -0.21180620789527893, 0.806713342666626, 0.9751613736152649, -1.2325108051300049, -1.0475107431411743, -0.9248031377792358, 0.5983667969703674, 1.0611605644226074, 0.9045275449752808, 1.4573036432266235, -0.023890655487775803, -0.7002729773521423, -0.7230091691017151, -0.5293029546737671, -0.8859498500823975, -0.241961270570755, -0.7350337505340576, -1.0046385526657104, -0.6778113842010498, -0.5091015100479126, -0.006288726348429918, 0.25173136591911316, -0.26435384154319763, 1.1620627641677856, 0.6465399265289307, 0.3721121549606323, -0.5289272665977478, 0.07085572928190231, 0.2760350704193115, -1.2972233295440674, 0.19850848615169525, 0.9621601700782776, -0.8490322232246399, -0.3915911614894867, -0.0206944327801466, -0.05029755085706711, 0.7479310631752014, -0.4954342544078827, 0.22523143887519836, -1.5504463911056519, -0.3395530879497528, 0.14728546142578125, 0.8379913568496704, 0.20261889696121216, -0.25890210270881653, -0.7734131217002869, 0.25274422764778137, 0.16320788860321045, -0.15544959902763367, -0.6108534932136536, 0.8814493417739868, -0.5494003295898438, -0.28337562084198, -0.541849672794342, 0.11537420749664307, 0.5434513092041016, -0.16416694223880768, 0.16318348050117493, -0.36997297406196594, -0.24775981903076172, -0.40208524465560913, 0.14940737187862396, 0.06345774978399277, -0.11518843472003937, 0.39234280586242676, 0.05576065927743912, 1.1913444995880127, -0.04052836820483208, -0.08387491106987, -1.583003044128418, 0.4829525649547577, 0.3812173008918762, 1.0229098796844482, -0.024857869371771812, 0.3209083080291748, 0.13207761943340302, -0.1499396115541458, 0.5431987047195435, -0.004297796171158552, 1.5271978378295898, 0.019870903342962265, -0.2818334698677063, -0.9566137194633484, -0.8414059281349182, 0.029222754761576653, -0.2561110854148865, 0.23607885837554932, -0.09373629093170166, -0.2983900010585785, -1.3037428855895996, 1.1062270402908325, 0.9160212874412537, -0.2996225655078888, -0.48621103167533875, -0.16980652511119843, 0.3861815631389618, 0.006133965216577053, 0.6798221468925476, -0.6391085386276245, -0.14499545097351074, -0.30498191714286804, -1.6186630725860596, -0.6558040380477905, -0.11153256893157959, -0.49870914220809937, 0.9340256452560425, -0.909915030002594, -0.2478075474500656, 0.017946757376194, 0.28239789605140686, 0.3326675295829773, 0.19682107865810394, 0.17520350217819214, -0.08614517748355865, -0.313426673412323, -0.03421998769044876, 0.5761994123458862, 1.6355831623077393, -0.6798723340034485, -0.7667638063430786, 0.19557270407676697, 0.432182252407074, -0.07802490144968033, -0.08680199086666107, -0.5527323484420776, -0.06654410064220428, -0.7296421527862549, -0.30530956387519836, 0.055185940116643906, -0.09890783578157425, 1.5691964626312256, 0.08806543052196503, 0.40318432450294495, 0.6025062799453735, -0.35836800932884216, -0.9352076053619385, 0.2780245244503021, 0.1298791468143463, 0.5308353900909424, -0.5385442972183228, -0.009949958883225918, 0.24028465151786804, -0.34685197472572327, 0.7596489787101746, 0.41108107566833496, 0.6496003866195679, -0.3878874182701111, -0.0410202220082283, 0.15045283734798431, 0.16666094958782196, 0.3946085572242737, 0.7453363537788391, 0.09701506048440933, -0.24802477657794952, -0.9415568709373474, 0.7439215779304504, -1.4417192935943604, 0.14902621507644653, 0.1960395723581314, -0.1499803513288498, 1.0808318853378296, -1.3561409711837769, -0.41367098689079285, -0.10566765815019608, -0.08732343465089798, 0.788237452507019, 0.5136120319366455, -0.12576763331890106, -0.234177827835083, 0.48379620909690857, 0.6477460861206055, -0.1832747459411621, 0.11879892647266388, 0.03791527450084686, 0.4043564796447754, 0.15090671181678772, -0.54929518699646, 0.36281058192253113, 0.206549733877182, -0.32093876600265503, -0.3443628251552582, 0.0591159351170063, 0.6520493626594543, 0.28832849860191345, -0.36156195402145386, 0.9337553977966309, -0.5891889333724976, -0.4507056772708893, 0.38721969723701477, -0.2650836110115051, -0.0022837112192064524, -0.46182548999786377, -0.915767252445221, 0.010557821951806545, -0.751991868019104, -0.45863020420074463, 0.7813800573348999, -0.8003413677215576, -1.1640764474868774, -0.969816267490387, -0.9860312938690186, -0.42484748363494873, 1.373435139656067, 1.66242516040802, 0.565116822719574, 0.3056650757789612, 0.9357622861862183, 0.34972718358039856, -0.10308437794446945, 0.030020155012607574, 0.2565879225730896, -0.22735685110092163, -0.13119706511497498, -1.505262851715088, -0.4366157352924347, 0.8523784875869751, 0.28795096278190613, -0.3761771619319916, -0.10271315276622772, 0.8995438814163208, 1.1279592514038086, 0.2659475803375244, -0.887478768825531, 0.7006884217262268, -0.7226125001907349, 1.1214643716812134, 0.793438196182251, 0.18337205052375793, 0.11015719175338745, -0.07125883549451828, -1.4055891036987305, 0.2874565124511719, -0.37280404567718506, -1.1272962093353271, 0.6728694438934326, 0.0381292961537838, 0.36541256308555603, 0.1912641078233719, -0.14616145193576813, 0.06022181734442711, 0.5754151344299316, -0.3603503704071045, -0.8106794953346252, -0.08280318975448608, 0.24331367015838623, 0.16118672490119934, -0.0030443286523222923, 0.2657414674758911, 0.4108760952949524, -0.13764667510986328, 0.8183148503303528, 0.3935535252094269, 0.9130957722663879, 0.42584776878356934, 0.3764379024505615, -1.1141407489776611, 0.7908082008361816, -0.7335763573646545, -0.6991745233535767, -0.313157320022583, -0.12686790525913239, -0.40155208110809326, -0.13305525481700897, -0.21826967597007751, -0.2708017826080322, -0.5398231744766235, -0.9507873058319092, -0.19543103873729706, 0.24970696866512299, -0.06683925539255142, -0.4504314959049225, -0.3079303801059723, -1.217219352722168, -0.9325832724571228, -0.4912789463996887, -0.11370068788528442, 0.4752946197986603, -1.203615427017212, 0.20803694427013397, -0.38923367857933044, 0.40552181005477905, 0.20115061104297638, -0.5444580316543579, 0.8939825892448425, -0.7063663601875305, -1.2374464273452759, -1.0743613243103027, 0.18976463377475739, 1.0639216899871826, -0.5527243614196777, 1.4056452512741089, 0.6462129950523376, -1.6688146591186523, -0.20223817229270935, 0.2606785297393799, -1.3789916038513184, 0.11683458089828491, -1.1816942691802979, 1.3976209163665771, -0.9192498922348022, 0.23217883706092834, -0.3470153212547302, 2.0894370079040527, -0.9829098582267761, -1.1935726404190063, -0.7195715308189392, -0.5495706796646118, 0.9715176820755005, 0.9287500381469727, -0.040153659880161285, 1.498038411140442, -0.03858085349202156, -0.5366474390029907, -0.4699857234954834, 0.050326548516750336, -0.9790663123130798, -0.08829193562269211, 0.06558133661746979, 0.40575674176216125, 0.5080094337463379, 0.7878233790397644, -1.1772688627243042, 0.23235011100769043, 0.686796247959137, 0.15862397849559784, -0.11594950407743454, -0.7612301111221313, 0.15384449064731598, 0.03999603912234306, -1.176060676574707, -0.8154285550117493, -0.1539807766675949, -0.7474815249443054, -0.6465857028961182, 0.7403934597969055, 1.0245338678359985, -0.7385284900665283, 0.35941869020462036, 0.4483843147754669, -0.11670734733343124, -0.4814324975013733, 0.6779251098632812, -0.049282755702733994, -0.25838133692741394, -0.7502081394195557, -0.06623277813196182, 0.09756886959075928, -1.153608798980713, -0.1246141716837883, 0.5175375938415527, 0.25165262818336487, -0.3174511194229126, 1.0788155794143677, 0.9622161984443665, 0.1524064987897873, -0.1665738970041275, 1.1763825416564941, 1.3103026151657104, -0.5981449484825134, -0.6992797255516052, 0.7585553526878357, 0.05480561405420303, 0.3965890109539032, -0.7105880975723267, 0.045450448989868164, -0.13672341406345367, 0.09355708956718445, 1.0319530963897705, -0.7939855456352234, -0.5892573595046997, -0.19567935168743134, -0.10999560356140137, 0.5300986170768738, 0.46107521653175354, -1.3009543418884277, -0.15763773024082184, 1.1320916414260864, 0.10935437679290771, -0.23052138090133667, -0.322421133518219, 1.047597050666809, 0.055780380964279175, -0.5646459460258484, 0.27553361654281616, 0.5238125920295715, -0.7168717980384827, 0.41630566120147705, 0.07878975570201874, 0.3354279696941376, 0.3420959413051605, -0.45928820967674255, -1.5837904214859009, 0.2205897867679596, -1.1038018465042114, -0.5286790132522583, 0.6599187254905701, -0.357033908367157, -1.2124242782592773, 0.6556174159049988, 0.5472791194915771, -0.12470560520887375, -0.3639748990535736, 0.26183027029037476, -0.5655839443206787, 0.23911212384700775, 0.7849092483520508, -0.7932956218719482, 1.2328795194625854, 0.300875186920166, 0.6208827495574951, -0.43676745891571045, -0.6609715223312378, 0.4710909128189087, 0.8112034797668457, -0.28605401515960693, -0.4748815894126892, 0.840053379535675, -0.17531119287014008, -0.41487041115760803, -0.28256529569625854, 0.020014062523841858, 0.1886512190103531, 0.10006475448608398, -1.2022037506103516, -0.7605516314506531, 0.18823032081127167, 1.0890082120895386, -0.581732451915741, -0.613975465297699, -0.9147800207138062, 0.20913246273994446, -0.4903333783149719, 0.7427486777305603, 0.2794678211212158, 0.7078784704208374, 0.09532617032527924, -0.392456591129303, 0.46699315309524536, -0.8035411238670349, -0.09764028340578079, -0.018165223300457, 0.5618883967399597, 0.11816231906414032, -0.04237627610564232, 0.02229084074497223, -0.6542379260063171, 0.5413920283317566, -0.011727026663720608, 0.3516818881034851, 0.4743744730949402, -1.1515800952911377, -0.8583217263221741, -0.859958827495575, 0.23120281100273132, 1.4552682638168335, -0.5511239171028137, -0.3129890263080597, 0.3813728988170624, -0.6229104399681091, 0.6935229301452637, 0.24168984591960907, 0.3873378336429596, 0.8714844584465027, 1.1309125423431396, 1.6056320667266846, -0.017517339438199997, -0.09435513615608215, -0.40776607394218445, 0.5301430225372314, -0.42301052808761597, -0.18987014889717102, -0.47771531343460083, 0.021184051409363747, 0.343891441822052], [0.7224237322807312, 1.8295392990112305, -2.0458004474639893, -0.22541342675685883, 1.3303943872451782, 0.16899999976158142, 1.3066356182098389, 0.04640882462263107, 0.42393064498901367, -0.5239149928092957, -0.7854247689247131, -0.18416592478752136, 0.2247047871351242, 0.9779449105262756, 0.12660349905490875, 0.5903921127319336, 0.80511873960495, -0.9343665838241577, 0.5197221040725708, 0.5368943214416504, 0.007130354642868042, -0.2153681069612503, 0.11225034296512604, 0.08009753376245499, -0.40193843841552734, -0.5555129051208496, -1.7931256294250488, -0.7435424327850342, -0.22737732529640198, -0.29309916496276855, 0.1988225281238556, -1.4885605573654175, 0.18428249657154083, 0.042986270040273666, -1.4244384765625, -1.2617875337600708, 1.8233017921447754, 0.5399016737937927, -0.03992054611444473, 0.056688569486141205, 2.188617467880249, 0.15627816319465637, 0.21863658726215363, -1.6437203884124756, 0.24210835993289948, 0.5751329064369202, 1.122635841369629, -0.46265098452568054, 0.0905478447675705, -1.2809423208236694, 0.4271858334541321, -0.8987820744514465, 1.149893045425415, 0.7401065230369568, 0.6205931901931763, 0.8269032835960388, 0.14033685624599457, 0.3555464744567871, 1.2729363441467285, -0.028895221650600433, 1.283310890197754, -0.3478463590145111, 0.9542673826217651, 0.6455002427101135, 0.2840852737426758, 0.03056051768362522, 0.002207278273999691, 0.9106682538986206, 0.6045058369636536, -0.6730978488922119, 0.5997231602668762, -0.24311545491218567, -0.7556298971176147, 0.8057223558425903, -1.1832867860794067, 0.4780714511871338, 0.2831076681613922, 0.6978167295455933, 0.14770303666591644, -0.09713238477706909, -0.604524552822113, -0.0932544469833374, 0.2097567468881607, -0.5273616909980774, -0.2127099186182022, -0.6441974639892578, 0.15636348724365234, -0.42298439145088196, 0.38269686698913574, 1.8840997219085693, 1.0150264501571655, -0.4813780188560486, 1.1333035230636597, -0.24494397640228271, -0.1540287733078003, -0.28557920455932617, 0.75833660364151, -0.2205381989479065, -0.7956053018569946, -0.48797768354415894, -0.5440462827682495, -0.6778969764709473, 0.04260933771729469, -0.2568533420562744, 0.7938668131828308, 1.3507080078125, -0.004867096897214651, 0.4108184576034546, -0.44801437854766846, 0.4723760783672333, -0.7963430285453796, -0.002440215554088354, -1.2080401182174683, -1.036882996559143, -1.611092209815979, 1.0478588342666626, 1.6180616617202759, 0.024416795000433922, 1.0873167514801025, 0.609916090965271, -0.5095402598381042, 0.4041464030742645, -0.050773583352565765, -0.21669834852218628, 0.49354681372642517, 0.36774805188179016, -0.7601550221443176, -0.5488681793212891, -0.10294640064239502, -0.5548052787780762, -0.06950655579566956, 0.6301178336143494, -0.22765614092350006, 1.0824214220046997, -0.7517502903938293, 0.8839454650878906, -0.32755738496780396, -0.0602736622095108, 0.23459170758724213, 0.12553590536117554, 0.6543365120887756, -0.6990876197814941, -0.45127856731414795, 0.5272378921508789, 0.09416954219341278, -1.6424047946929932, 0.7742940187454224, -0.19422996044158936, -0.9184854030609131, 0.042574524879455566, -0.37251076102256775, -0.18542519211769104, 0.15326596796512604, 0.06437307596206665, 0.20219717919826508, -0.18361690640449524, 0.5747413039207458, -0.28738629817962646, 0.5238422751426697, -0.06824342906475067, 0.7414047122001648, -0.19623158872127533, -0.7630608677864075, 0.19045136868953705, 0.48494434356689453, 0.23088091611862183, 0.4812777638435364, 0.35232627391815186, 0.21738089621067047, 0.7647445201873779, -0.7840246558189392, -0.7690842151641846, -0.3851514160633087, 0.5700180530548096, 0.7141746282577515, -0.41958609223365784, 1.7996597290039062, -1.2195470333099365, -0.051411982625722885, -1.10604727268219, 0.48506054282188416, 0.01683145761489868, 0.5576131343841553, 0.0018452275544404984, 0.6125305891036987, -0.25418421626091003, 0.04123358055949211, -0.5119054913520813, 0.03649432584643364, -0.8750604391098022, -0.5641624927520752, -0.38564327359199524, -0.6428540945053101, 0.14578886330127716, -0.07938958704471588, 0.07147113978862762, 0.9537602066993713, -0.7266855239868164, -1.1198762655258179, -0.5685085654258728, -0.9284958839416504, -0.3016011416912079, 0.05829811096191406, 0.6376924514770508, -0.041188787668943405, 1.5022367238998413, -0.7033901810646057, 1.0013984441757202, -0.8721113204956055, 0.05950112268328667, 1.4654510021209717, -0.5145449042320251, -0.2743833065032959, 1.1186082363128662, 0.00122052151709795, -0.6685394644737244, 0.7064040899276733, 0.521489679813385, 0.46032699942588806, 0.4221075177192688, 0.3605171740055084, -0.05725099518895149, 0.4707786738872528, 0.1604580581188202, 0.7591643333435059, -0.09592551738023758, -0.8397179841995239, -1.278408169746399, -1.2559218406677246, 0.6117169260978699, -0.6608179211616516, -2.703293561935425, 0.7936591506004333, 0.14338593184947968, -0.2227025032043457, 0.039388976991176605, -0.057761307805776596, 0.5388530492782593, -0.21483752131462097, 0.8623256683349609, 0.11915254592895508, 0.7406471967697144, -0.3540346920490265, 0.17943280935287476, 0.1603303700685501, -0.5882867574691772, 0.259494423866272, -0.4723283350467682, -0.14492936432361603, 0.6671037077903748, 0.8847458958625793, 0.0635683536529541, 0.863504946231842, 0.4160645306110382, -0.31583866477012634, -1.372761845588684, -0.4655385911464691, 1.4592863321304321, 0.09982459992170334, 0.7128459215164185, 0.8893234133720398, -0.3307865560054779, -0.3327869474887848, 0.18989188969135284, -0.40892094373703003, -0.34592360258102417, -1.2082279920578003, -1.0465251207351685, -0.6059190034866333, -0.3159150183200836, 0.05127446725964546, 0.43192437291145325, 0.5432096719741821, 1.0211089849472046, -0.06109033524990082, -0.9985631704330444, -0.48536792397499084, 1.2220335006713867, 0.432568222284317, 0.35914406180381775, -0.11554784327745438, -0.7886970639228821, -0.6205717325210571, 0.2280328869819641, 0.49449220299720764, -0.07534641027450562, -0.4743174910545349, 0.4604589343070984, 0.3540363907814026, -0.5177077054977417, 0.16467583179473877, 0.6170833706855774, 0.32465794682502747, -0.2600483298301697, -0.4238351583480835, 0.8432887196540833, 1.3477561473846436, -0.3268362879753113, -0.37825751304626465, -0.08393912762403488, 0.43627795577049255, 0.49991676211357117, 0.9480119347572327, 1.0815445184707642, -0.25028079748153687, -0.072530597448349, -0.3387680947780609, -0.12212498486042023, -0.6330716013908386, -0.5586845874786377, -1.0553922653198242, -0.051619019359350204, -0.7193134427070618, -0.29307082295417786, -0.27406740188598633, 0.3898855745792389, -0.16774038970470428, 0.6729554533958435, 0.8321244716644287, -0.40549373626708984, -1.0769482851028442, -0.05931483209133148, 0.33593326807022095, -2.1578123569488525, 0.44896960258483887, 0.6244033575057983, -0.5587481260299683, -0.8108129501342773, -1.1699296236038208, -0.36019325256347656, 0.6805173754692078, -0.23528358340263367, -0.19248908758163452, -1.1296766996383667, -0.2632794976234436, 0.12847578525543213, 1.140022873878479, -0.16717474162578583, 0.6036174297332764, -1.339642882347107, -0.14588670432567596, 0.4526980221271515, 0.397711843252182, -0.327911376953125, 0.17063724994659424, 0.16979430615901947, -0.7095388174057007, 0.497994989156723, 0.6093323230743408, -0.16861267387866974, -0.2512560486793518, 0.12422297149896622, -0.5478925704956055, -0.08548176288604736, -0.7701650857925415, 0.26896214485168457, -0.5170943737030029, 0.24114860594272614, -0.3428792655467987, 0.2218373566865921, 1.4506970643997192, -1.0880452394485474, -0.029040874913334846, -0.5704725384712219, 0.31788259744644165, 0.07910420000553131, 0.9506380558013916, 0.22404362261295319, 0.4673393666744232, 0.0196553822606802, 0.19098234176635742, 0.22750717401504517, -0.3225991129875183, 1.1073871850967407, 0.16878287494182587, 0.004682160448282957, -0.1875579059123993, -0.7983540296554565, -0.2181236296892166, -0.15909229218959808, 0.10932619124650955, 0.09058418869972229, -0.8011916279792786, -0.9837653636932373, 0.8126187324523926, 0.864758312702179, 0.09771603345870972, -1.0140124559402466, 0.03335946798324585, 1.5004252195358276, -0.24093729257583618, 1.3622606992721558, -0.33451560139656067, 0.013563527725636959, 0.3221281170845032, -1.5066157579421997, -0.46529054641723633, -0.42913109064102173, -1.410022258758545, 0.8249993324279785, -0.4205474853515625, 0.11604645848274231, -0.5755898356437683, 0.35679295659065247, 0.8398686647415161, 0.030303381383419037, 0.1785181760787964, -0.34004661440849304, 0.10176282376050949, -0.24817290902137756, 0.3996947407722473, 1.4400923252105713, -0.846132218837738, -0.5049555897712708, -0.1664356142282486, 0.316184937953949, 0.42834076285362244, -0.4637637734413147, -0.4856293499469757, -0.419043630361557, -0.37892574071884155, -0.334229975938797, 0.45458510518074036, 0.09797099977731705, 1.3120476007461548, -0.3303854763507843, 0.2733782231807709, -0.3014466166496277, -0.23884019255638123, -0.4028501808643341, 0.278840571641922, 0.15619896352291107, 0.3379664421081543, -0.49554356932640076, -0.3109266757965088, -0.17263811826705933, 0.15287970006465912, 0.1120247021317482, -0.01196835283190012, 0.6720857620239258, 0.5666801929473877, -0.0893113911151886, 0.4277249872684479, 0.07937084138393402, 0.2671416103839874, 1.0970638990402222, -0.5993790626525879, 0.09405313432216644, -0.3804624080657959, 0.39030721783638, -0.9673970937728882, 0.38148897886276245, 0.34815824031829834, -0.4423731565475464, 0.9009780883789062, -1.7030278444290161, -0.862316370010376, 0.8333242535591125, -0.24694235622882843, 0.3318508565425873, 0.30934447050094604, -0.2704271674156189, -0.40074124932289124, 1.17894446849823, 0.40333765745162964, -0.7091380953788757, -0.019785940647125244, -0.1446075439453125, 0.5960308313369751, -0.3301032781600952, -0.635991096496582, 0.8980413675308228, 0.12655465304851532, 0.3134346902370453, -0.04433532431721687, -0.6733026504516602, 0.5113201141357422, -0.08109914511442184, -0.13078966736793518, 1.0738667249679565, 0.07454691082239151, -0.2280173897743225, -0.028790825977921486, -0.40754687786102295, 0.46590837836265564, -0.21542806923389435, -0.3533945083618164, 0.0026004170067608356, -0.44329530000686646, -0.5188775062561035, 0.7990977764129639, -0.504246175289154, -0.34291762113571167, -0.3957669734954834, -0.5710426568984985, -0.10659565031528473, 0.13993743062019348, 0.5187124609947205, 0.5583760738372803, 0.3939077854156494, 1.0764802694320679, 0.703502893447876, -0.05501093715429306, -0.37905097007751465, 0.9021366238594055, -0.5858213901519775, -0.6918625235557556, -1.4601279497146606, -0.5835780501365662, 0.1856289505958557, -0.14544351398944855, -0.045699410140514374, -0.020396055653691292, 0.7028079032897949, 1.403887152671814, -0.44919049739837646, 0.17469516396522522, -0.04208222031593323, -1.0318865776062012, 0.8350499272346497, 0.032094597816467285, -0.5346053242683411, -0.2589409649372101, -0.8176278471946716, -1.0504475831985474, 0.7848440408706665, 0.4580225646495819, -0.679646372795105, 0.8806980848312378, -0.2830057144165039, 0.654689610004425, 0.16771546006202698, -0.010570725426077843, 0.08000342547893524, -0.2729051113128662, 0.7121840715408325, -0.8156740069389343, 0.025600140914320946, 0.5590283870697021, 0.11123589426279068, -0.018450025469064713, 0.3996872901916504, 0.05431549251079559, 0.1165669858455658, 0.7306562662124634, 0.4921020269393921, -0.0011516725644469261, 0.8205602765083313, 0.8594703078269958, -1.2916717529296875, -0.04335666075348854, 0.26463478803634644, -0.39905017614364624, -0.4411124289035797, 0.16705618798732758, -0.30972301959991455, -0.11341199278831482, -0.3391886353492737, -1.0080269575119019, -0.39365777373313904, -0.1334545612335205, 0.17461645603179932, 0.7870573997497559, 0.2749544382095337, -0.6276716589927673, 0.25560685992240906, -0.1359669417142868, -0.39745113253593445, -0.11465457826852798, -0.2219901978969574, 0.16899992525577545, -0.6817747354507446, 0.22410453855991364, -0.47958311438560486, 0.04405323043465614, -0.002013575518503785, -0.9461073875427246, 0.4497482180595398, -0.7582453489303589, -1.274625301361084, -0.8200101256370544, 0.3985516428947449, 1.2981194257736206, 0.2237219661474228, 1.4102718830108643, 0.8930872678756714, -1.0128505229949951, 0.04287881776690483, 0.48671653866767883, -1.4965225458145142, -0.17809179425239563, -1.0245023965835571, 0.9377931356430054, -1.1318237781524658, 0.5132545828819275, -0.558718204498291, 0.9903959631919861, -0.9163023829460144, -1.4053095579147339, -0.5275441408157349, -1.4076199531555176, 0.9039448499679565, 1.069538950920105, -0.6527093052864075, 0.6970885992050171, -0.17376480996608734, -0.47508031129837036, -0.6595808267593384, 0.18579928576946259, -0.5438677072525024, -0.06836157292127609, -0.3930032253265381, 0.8435852527618408, -0.0012593381106853485, 0.48037058115005493, -0.49626606702804565, 0.6888573169708252, 0.2121884822845459, 0.8454923033714294, 0.08539211750030518, 0.24534396827220917, -0.6326047778129578, -0.5022804737091064, -1.7285971641540527, -0.8287997245788574, -0.4595909118652344, -0.7134156823158264, -0.6055120229721069, 1.222651720046997, 0.6139397025108337, -0.6811115145683289, 0.31537294387817383, -0.4723716080188751, 0.10987625271081924, -0.9406066536903381, -0.4786314368247986, -0.3408494293689728, 0.3932364583015442, -0.4072321057319641, 0.013531656935811043, -0.11062880605459213, -1.4231462478637695, -0.16771265864372253, 0.9980468153953552, 0.31257835030555725, -0.2914575934410095, 0.5429317355155945, 1.0386309623718262, 0.7496126294136047, -1.0466301441192627, 1.3754233121871948, 1.0186372995376587, 0.12089838087558746, -0.3434337377548218, -0.33967387676239014, -0.3319041132926941, 0.7175233960151672, -0.6770259737968445, 0.08822164684534073, -0.3771328330039978, 0.405556857585907, 0.6250388622283936, -1.1426215171813965, -0.5455997586250305, -0.533940851688385, -0.00760198850184679, 0.6331084966659546, 0.25036928057670593, -0.7500683665275574, -0.5438640713691711, 1.0704282522201538, -0.07775604724884033, -1.110892653465271, -0.13602834939956665, 0.3838541805744171, 0.05032114312052727, -0.8412188291549683, 0.4982197880744934, 0.40612557530403137, -0.896084725856781, 0.8845333456993103, 0.5804699659347534, -0.15374641120433807, -0.16627418994903564, -0.26543375849723816, -0.4885227084159851, 0.13681793212890625, -0.04872477799654007, -0.2541466951370239, 0.6197739243507385, -0.7993480563163757, -0.302734375, 0.7747055292129517, 0.02327297441661358, -0.15831126272678375, 0.004389853682368994, 0.4495573043823242, -0.4777635335922241, 0.1622694432735443, -0.01409943401813507, -0.5696249604225159, 0.7369924783706665, 0.4450736939907074, -0.038209009915590286, -0.6041644215583801, -0.64401775598526, 0.9955146908760071, 0.17293235659599304, 0.04214852303266525, -0.7543458342552185, 0.8042081594467163, 0.2264648675918579, -0.5928992033004761, 0.16039682924747467, 0.9327892661094666, 0.4202900528907776, -0.32373327016830444, -0.48740434646606445, -0.6617145538330078, 0.6597296595573425, 0.44877108931541443, -0.712652325630188, -0.4437659680843353, -0.5974085330963135, -0.3932841122150421, -0.06132372096180916, 0.5613160133361816, 0.22559747099876404, -0.1333160698413849, 0.25999993085861206, -9.339209645986557e-05, 0.36854076385498047, -0.8480620384216309, 0.12203413248062134, 0.3461957275867462, 0.027517953887581825, 0.07530339062213898, -0.08587821573019028, 0.12235831469297409, -1.025701642036438, -0.04108309745788574, -0.6194392442703247, -0.1335086077451706, -0.08105269074440002, -0.9001086354255676, -1.4243175983428955, -0.4277871549129486, 0.8791224360466003, 0.9996047019958496, -0.3635751008987427, -0.28453415632247925, -0.16638612747192383, -0.5994595289230347, 0.5708795785903931, 0.6505879163742065, -0.03626352548599243, 0.6618660688400269, 1.3949131965637207, 1.9990267753601074, 0.22240813076496124, 0.46377283334732056, 0.18403030931949615, 0.5362515449523926, -0.9280419945716858, 0.566011905670166, -0.4404943883419037, 1.0578078031539917, 0.044388920068740845], [0.30203109979629517, 1.732083797454834, -1.864370584487915, 0.004346755333244801, 0.8828441500663757, -0.13674890995025635, 2.0133893489837646, -0.3206578195095062, 0.38509687781333923, -0.8156044483184814, 0.29146164655685425, -0.09538357704877853, 1.1313486099243164, 0.8323231935501099, 0.08860692381858826, -0.5808210968971252, 0.5907033681869507, -1.5175434350967407, 0.5687873959541321, 0.6454234719276428, 0.13852471113204956, -0.7439953088760376, -0.2678918242454529, -0.2638765573501587, -0.5747896432876587, 0.06732773035764694, -1.3797115087509155, -0.1463131457567215, -0.3658996820449829, -0.9751448035240173, 0.8959609866142273, -1.6655741930007935, -0.4622117280960083, -0.4569408893585205, -0.7557474374771118, -0.6362810730934143, 1.2375707626342773, 0.30745524168014526, 0.22121189534664154, 0.36986926198005676, 2.147611379623413, 0.12450147420167923, 0.11412855237722397, -1.7409743070602417, 0.6124315857887268, -0.3191415071487427, 0.9990980625152588, -0.8371857404708862, 0.905430257320404, -1.17601478099823, 0.28441107273101807, -0.4034336507320404, 0.5872105956077576, 1.425849199295044, 0.6121400594711304, 0.817794144153595, 0.19378980994224548, 0.5954394936561584, 0.9067147970199585, -0.07672504335641861, 0.6891658902168274, -0.5547826886177063, -0.22148597240447998, 0.5618467330932617, 0.0230375025421381, -0.4255230724811554, 0.36529263854026794, -0.012512960471212864, -0.14446794986724854, -0.25879961252212524, 0.35485541820526123, -0.28719714283943176, -0.21204476058483124, -0.27705907821655273, -1.3055651187896729, 1.2832996845245361, 0.4562603831291199, 0.6322289109230042, -0.16357797384262085, 0.5866581201553345, -1.0256844758987427, -0.47490549087524414, 0.589586079120636, -0.6272057294845581, 0.05572441220283508, 0.39413776993751526, -0.15538442134857178, -0.0038359835743904114, 0.0028717005625367165, 2.4292047023773193, 1.1385979652404785, 0.027561534196138382, 0.5718281269073486, 0.13934506475925446, -0.18290618062019348, -0.49327531456947327, 0.5012866258621216, -0.3109601140022278, -0.9362764954566956, 0.1316646784543991, -0.05636385828256607, -0.19384053349494934, -0.20088884234428406, -0.17237086594104767, -0.269050270318985, 1.4355603456497192, -0.3383353352546692, -0.044628482311964035, -0.03760942071676254, 0.4392460882663727, -0.7496887445449829, -0.23676708340644836, -0.9600573778152466, -1.5995796918869019, -0.6389593482017517, 0.8674674034118652, 1.9363720417022705, 0.18585166335105896, 0.6038022637367249, 0.7876138687133789, -0.08578736335039139, -0.23474432528018951, 0.15644754469394684, 0.4190254807472229, 0.03867124021053314, -0.006805183831602335, -0.5228613615036011, -0.7213423252105713, -0.210508331656456, 0.014958449639379978, 0.249365895986557, -0.3431830406188965, -0.3976897895336151, 0.2381342649459839, -0.10787110030651093, 1.0727876424789429, -0.8513760566711426, -0.30382898449897766, -0.2344709038734436, -0.05427198484539986, 0.5989503264427185, -0.7264909744262695, -0.502882182598114, 0.49726274609565735, -0.05588485300540924, -0.635511040687561, 0.24528135359287262, 0.40376996994018555, -0.76106196641922, -0.04540661349892616, -0.3406307101249695, 0.41395825147628784, 0.34600117802619934, -0.12883663177490234, -0.2832833230495453, 0.07237886637449265, 0.27417072653770447, 0.024395108222961426, 0.4921494126319885, 0.17357216775417328, -0.025036942213773727, -0.06225837767124176, -1.2360761165618896, 0.8529902696609497, 0.9381758570671082, -0.3039662539958954, 0.8677185773849487, 0.4968244433403015, -0.2698529362678528, 0.7155815362930298, -0.7457340359687805, -0.5805328488349915, 0.49360737204551697, 0.29718324542045593, 0.2986423373222351, 0.46768563985824585, 1.7876719236373901, -1.5027704238891602, -0.6563968062400818, -1.071243166923523, 0.6928065419197083, -0.5032787919044495, 0.20542404055595398, -0.43500691652297974, -0.01972934976220131, -0.41818028688430786, 0.44674625992774963, 0.0031672059558331966, -0.20837311446666718, -1.2076804637908936, -0.4214931130409241, -0.9120112657546997, -1.0877408981323242, 0.04684777185320854, -0.4839191436767578, -0.3871280550956726, 1.3998016119003296, -1.6442548036575317, -0.6906824707984924, -0.19083482027053833, -0.30645161867141724, -0.976811408996582, 0.07833350449800491, 0.44812148809432983, -0.2739633023738861, 1.4460493326187134, -1.235169768333435, 0.7150934934616089, -0.6239007115364075, -0.0862102285027504, 1.1045647859573364, -0.35267356038093567, -0.9498254656791687, 0.9709368348121643, -0.7089648246765137, -1.0624333620071411, 0.48004236817359924, 0.5281927585601807, -0.013322951272130013, 0.801723301410675, -0.09176839888095856, 0.00961852166801691, -0.03903520107269287, 0.16106092929840088, 0.7626338005065918, 0.25376203656196594, -0.5820277333259583, -1.395612120628357, -0.961879551410675, 0.7272025346755981, -0.9545619487762451, -1.2543659210205078, 0.7399831414222717, 0.0509784035384655, -0.5220096707344055, -0.07136736810207367, 0.07965605705976486, 0.5425503253936768, -0.2731514275074005, 1.0989996194839478, 0.7535675168037415, 0.07252354919910431, 0.3634148836135864, -0.4209451973438263, -0.3164435625076294, -0.14531567692756653, -0.3518478572368622, -0.43615061044692993, 0.3960191607475281, 1.3427726030349731, 0.8575579524040222, 0.255384236574173, 0.9148907661437988, 0.24582123756408691, -0.07015644758939743, -1.42576265335083, -0.03752606734633446, 0.7249060273170471, -0.8099137544631958, 1.3360847234725952, 1.1467164754867554, -0.4583239257335663, -0.4761115312576294, 0.13687428832054138, -0.32893553376197815, -0.5269083380699158, -1.3532154560089111, -0.8560007810592651, -0.7024442553520203, 0.6102410554885864, 0.5631133913993835, 0.5524582862854004, -0.25423604249954224, 0.5897006988525391, 0.2569078207015991, -0.6041383147239685, -0.2276737242937088, 0.5675647854804993, 0.8397865295410156, 0.7858039140701294, -0.32120728492736816, -0.8750871419906616, -0.878947913646698, 0.5616475343704224, 1.087168574333191, 0.5055260062217712, -0.1813323199748993, -0.45222318172454834, 0.43153372406959534, 0.3206634521484375, 0.25540128350257874, 0.7245166301727295, 0.2755805552005768, -0.02728159725666046, -0.16272445023059845, 0.7278682589530945, 0.4324455261230469, -1.6676177978515625, -1.1766633987426758, -0.6927623152732849, 0.5730416178703308, 0.9991704225540161, 0.9239087104797363, 0.9129180908203125, 0.1888824850320816, 0.505288302898407, -0.5903886556625366, -0.5011151432991028, -0.9056970477104187, -0.11722099035978317, -0.11103776097297668, -0.13970059156417847, -0.7480584979057312, -0.08238040655851364, -0.26670607924461365, 0.40993884205818176, 0.31406018137931824, 1.789512276649475, 0.9230123162269592, -0.30762821435928345, -0.26037803292274475, -0.4949699938297272, -0.41827285289764404, -1.0754646062850952, 0.5118840336799622, 0.8973748683929443, -0.597234308719635, -0.022516978904604912, 0.24299922585487366, 0.381142795085907, 0.6216894388198853, 0.4151054918766022, 0.4658832848072052, -1.1053071022033691, -0.7849603295326233, -0.20942647755146027, 1.0153577327728271, 0.04097723215818405, 0.37077564001083374, -0.551437258720398, -0.5359826683998108, 0.2421504706144333, -0.2015482634305954, -0.9005386829376221, 0.22314207255840302, 0.2057633250951767, -0.31641197204589844, -0.23675701022148132, 0.7739337086677551, -0.03250586614012718, -0.23330043256282806, -0.03521261736750603, -0.8169835209846497, 0.024772150442004204, -0.3698781132698059, 0.3345964550971985, -0.23172202706336975, 0.4084036350250244, 0.5042589902877808, -0.16251467168331146, 0.5630460381507874, -0.2983545660972595, -0.08090393245220184, -0.5884271860122681, 0.7422921061515808, 0.7261700630187988, 0.7839159369468689, 0.33646705746650696, -0.15316930413246155, 0.39867740869522095, -0.5599758625030518, 0.6437678933143616, 0.3898026943206787, 1.097497820854187, 0.22885344922542572, 0.39164999127388, -0.9343560934066772, -0.3495752215385437, 0.24211794137954712, -0.33789655566215515, 0.6521373391151428, 0.6049860715866089, -0.6792227029800415, -1.1950206756591797, 0.741210401058197, 0.11103571951389313, -0.20229969918727875, -0.621557354927063, -0.417831152677536, 0.7598319053649902, -0.21422292292118073, 0.1017901748418808, -0.412067711353302, -0.08068117499351501, 0.10912953317165375, -1.1257402896881104, -0.3358917832374573, 0.3036995232105255, -0.46607649326324463, 0.6037383079528809, -0.18610480427742004, 0.03168882802128792, -0.7383031249046326, 0.0896265059709549, 0.7585794925689697, -0.29968613386154175, -0.2835063338279724, 0.3595258891582489, -0.22429700195789337, -0.07499817758798599, 0.32231807708740234, 1.636929988861084, -0.8362871408462524, -0.8372224569320679, 0.05682617798447609, -0.39242058992385864, -0.38642483949661255, -0.8204950094223022, -0.6460384130477905, 0.22601830959320068, -0.5988333225250244, -0.09007695317268372, -0.15642379224300385, -0.1344747394323349, 1.2164201736450195, 0.011060405522584915, 0.5089064240455627, 0.3357236087322235, 0.0448627732694149, -1.1935343742370605, 0.13263820111751556, 0.48649272322654724, 0.7566967606544495, -0.3412334620952606, -0.14205580949783325, 0.27414804697036743, -0.6457751989364624, 1.1095114946365356, 0.010402207262814045, 0.17822043597698212, -0.0628068745136261, 0.054172057658433914, 0.2169361114501953, 1.0586237907409668, 1.378709316253662, 1.1532819271087646, 0.16506917774677277, 0.08880841732025146, -1.1622569561004639, 0.38333648443222046, -1.0220685005187988, 0.5223121047019958, 0.5539180040359497, -0.28183114528656006, 0.7559892535209656, -1.6276812553405762, -0.12723767757415771, 0.9093364477157593, 0.3332992494106293, 0.7685749530792236, 0.10340456664562225, -0.11653853952884674, 0.015656767413020134, 0.7803848385810852, 0.47101911902427673, -0.520171582698822, 0.6493537425994873, -0.30550628900527954, -0.07182057201862335, 0.4774496853351593, -1.3498432636260986, 0.2493630349636078, -0.5104730725288391, 0.26511046290397644, -0.8637666702270508, -0.3809765577316284, 0.17006976902484894, 0.08791066706180573, -0.061831340193748474, 0.7573462724685669, 0.0833408311009407, -0.6214846968650818, 0.08253014832735062, -0.45503726601600647, 0.23132029175758362, -0.04889872670173645, -0.35405227541923523, -0.5597969889640808, -0.5909998416900635, -0.0763867050409317, 0.16708116233348846, -0.8606957197189331, -0.048366520553827286, -0.5048062801361084, -1.168923258781433, 0.3426535725593567, 1.3030892610549927, 1.118729829788208, 0.3625643849372864, -0.30200299620628357, 0.48964008688926697, 0.5602572560310364, -1.0897678136825562, -0.27210721373558044, 0.10650318115949631, -0.18707765638828278, -0.037026338279247284, -1.2289719581604004, -0.0819484144449234, 0.4760591387748718, 0.3995768427848816, -0.06665143370628357, 0.1144065409898758, 0.590722918510437, 1.22907555103302, -0.39706185460090637, 0.13077223300933838, 0.49541139602661133, -0.5659520030021667, 0.9025853872299194, 0.45090118050575256, -0.6329284310340881, -0.3699745237827301, -0.5236948728561401, -1.021622657775879, 0.7332067489624023, -0.38618478178977966, -0.6521223187446594, 0.9514415860176086, -0.57248854637146, 0.5289373397827148, 0.2335694283246994, -0.5622166991233826, 0.5125428438186646, 0.23929667472839355, 1.3035515546798706, -0.6345164775848389, 0.3459074795246124, 0.5798631906509399, -0.15997308492660522, -0.1612435281276703, 0.3417491614818573, 0.08521468192338943, -0.060632750391960144, 0.9721086025238037, 0.19578152894973755, 1.2847338914871216, 0.686420738697052, 0.36274999380111694, -0.5551590323448181, 0.3480631411075592, -0.2980704605579376, -0.7286674380302429, -0.41832220554351807, -0.01882382109761238, 0.05291244015097618, -0.43583226203918457, -0.018825417384505272, -0.12162686884403229, -0.33579060435295105, -0.6599411964416504, -0.44088014960289, 0.3890407085418701, -0.3365112543106079, 0.27130430936813354, -0.7344678640365601, -0.7655655145645142, -1.1104588508605957, -0.27607104182243347, 0.3120732605457306, 0.9272593855857849, -0.41079482436180115, 0.28365811705589294, -0.15660475194454193, -0.2399742156267166, -0.3111891448497772, -0.7130649089813232, 0.580123245716095, -1.1195333003997803, -0.7694252729415894, -0.6806480288505554, 0.06255520135164261, 0.4734707474708557, -0.4903301000595093, 1.6463137865066528, 0.1420886516571045, -1.231147050857544, 0.6364583373069763, 0.3000139892101288, -1.0859073400497437, -0.43140241503715515, -1.294081211090088, 1.1431074142456055, -0.9419530630111694, -0.03506860509514809, -0.4790439009666443, 1.4501031637191772, -0.7876631021499634, -1.7085926532745361, -0.7838687896728516, -0.43702933192253113, 1.2147780656814575, 1.2122455835342407, -0.35034218430519104, 1.1214557886123657, 0.28261876106262207, -0.049175925552845, -0.7357747554779053, 0.46065396070480347, -0.25526997447013855, -0.15172557532787323, 0.14662212133407593, 0.49792617559432983, 0.06187134236097336, 1.0782760381698608, -0.41002988815307617, 0.7454817295074463, 0.4967081546783447, 1.3335438966751099, -0.28568705916404724, -0.08864668756723404, -0.41627493500709534, 0.21566994488239288, -1.386594295501709, -1.0110363960266113, 0.26690563559532166, -0.12951138615608215, -1.3272513151168823, 0.2128746509552002, 0.6378298997879028, -0.07320916652679443, 0.41418182849884033, -0.44829750061035156, 0.9618337154388428, -0.8002296686172485, 0.616207480430603, -0.08498293161392212, -0.3077273368835449, -0.4721403121948242, -0.0050684381276369095, 0.7711777091026306, -1.1680852174758911, -0.4244878888130188, 0.8363675475120544, -0.08061441779136658, -1.106155276298523, 0.25757646560668945, 0.827627420425415, 0.5143991112709045, -0.5425078868865967, 1.2565845251083374, 1.0275381803512573, -1.0122814178466797, -0.34609904885292053, 0.27647244930267334, 0.47413909435272217, 0.49517887830734253, -0.689828097820282, -0.40607669949531555, -0.43468689918518066, 0.7221671342849731, 0.7543533444404602, -0.04359053075313568, -0.7419277429580688, 0.07109779864549637, -0.39357706904411316, 0.658480703830719, 0.9643056392669678, -0.30926069617271423, -0.8610340356826782, 1.0209543704986572, 0.14058049023151398, -0.7969931364059448, 0.2258337289094925, 0.9886475205421448, -0.47444814443588257, -0.5418370962142944, 0.02365696430206299, 0.559300422668457, -0.28414386510849, 0.9914300441741943, 0.5960655808448792, 0.4137248992919922, 0.05544821172952652, -0.8461264967918396, -1.0921958684921265, -0.7973343133926392, -0.5769025683403015, -0.5634086728096008, 0.3094838559627533, -0.6694201827049255, -0.185855433344841, 0.6884834170341492, 0.333731472492218, 0.010992667637765408, -0.4185504913330078, 0.009270638227462769, -0.27175256609916687, -0.3624267280101776, 1.332814335823059, -0.5397108793258667, 1.2548454999923706, -0.13730700314044952, -0.17225413024425507, -0.1253913789987564, 0.3779022991657257, 0.03175890073180199, 0.32399702072143555, -0.3205259442329407, -1.0326780080795288, 0.29848605394363403, 0.16423766314983368, -0.9174571633338928, -0.16058039665222168, 0.7512354850769043, -0.2904280424118042, -0.24551323056221008, -0.6589924097061157, 0.018050920218229294, 0.5375207662582397, 0.32916271686553955, -0.6219419240951538, -0.7771847248077393, -0.6669154167175293, 0.4118102192878723, -0.5833995938301086, 0.5231728553771973, -0.0872127115726471, -0.03918446600437164, 0.316565603017807, -1.0546982288360596, -0.37847527861595154, -1.5055959224700928, 0.10564262419939041, -0.1975267380475998, 0.4000195860862732, 0.24391594529151917, 0.44143640995025635, -0.06573449075222015, -1.5861060619354248, 0.26392799615859985, -0.05249751731753349, 0.17193275690078735, 0.5167588591575623, -1.419873833656311, -0.2588326334953308, -0.8604240417480469, 0.7493600249290466, 1.0654032230377197, -0.573432445526123, -0.09316935390233994, 0.07927971333265305, -1.3963772058486938, 0.9374796748161316, 1.0752726793289185, 0.07475079596042633, 0.43741726875305176, 1.6073251962661743, 1.6609183549880981, -0.1831560581922531, 0.42721399664878845, -0.28979602456092834, 0.2770005166530609, -0.6740825176239014, 0.2959817051887512, -1.1990782022476196, -0.24079447984695435, -0.16156749427318573], [0.3386934995651245, 1.1733943223953247, -2.2018826007843018, -0.40188899636268616, 0.49030715227127075, -0.050496906042099, 1.4817920923233032, -0.05683612823486328, -0.5922566652297974, -0.7430782914161682, -0.4472900629043579, 0.161795973777771, 0.7275584936141968, 1.6061325073242188, 0.4174961447715759, 0.8099671006202698, 0.9930563569068909, -1.2115778923034668, 0.48831191658973694, 1.3141262531280518, 1.175187587738037, -0.2828359603881836, 0.08957497030496597, -0.7921100854873657, -0.5533705353736877, 0.20386090874671936, -1.493863582611084, -0.4848271608352661, -0.5578955411911011, -1.2183984518051147, 1.430481195449829, -1.0945119857788086, 0.060096051543951035, 0.238752081990242, -0.5979824662208557, -0.4894627630710602, 0.974502682685852, 0.33757492899894714, 0.4405132532119751, 0.413676917552948, 1.6193069219589233, -0.22872598469257355, 0.01704322174191475, -1.353206992149353, 0.4030289649963379, -0.32953110337257385, 1.3176994323730469, -0.7280900478363037, -0.21218840777873993, -0.9791789054870605, 0.3891710042953491, -0.11573589593172073, 0.5989707112312317, 1.164836049079895, 0.8086284399032593, 0.5964301228523254, 0.29501843452453613, 0.13705644011497498, 0.7281997799873352, -0.7717810869216919, 0.5441878437995911, 0.14059531688690186, -0.49126988649368286, 1.0344085693359375, 0.03911249339580536, -0.1003418117761612, 0.05177305266261101, 0.5914424061775208, 0.008967701345682144, 0.17837505042552948, 0.3547043204307556, 0.051860056817531586, -0.5325782299041748, 0.08936387300491333, -0.8675057888031006, -0.040197741240262985, 0.38013049960136414, 1.1471177339553833, 0.0722292959690094, 0.5991404056549072, -0.31978970766067505, -0.10849331319332123, 0.32581818103790283, -0.9887902140617371, 0.7039316892623901, -0.3720317482948303, 0.1664378046989441, 0.11319132149219513, -0.975321888923645, 2.168142318725586, 0.47121816873550415, 0.40126362442970276, 0.18507085740566254, -0.5839769244194031, -0.26612403988838196, -1.5900473594665527, 0.21152590215206146, 0.013676881790161133, -0.5749961137771606, -0.7642179727554321, -0.48240068554878235, -0.5232417583465576, 0.563873827457428, -0.6023284196853638, -0.22908858954906464, 1.7846143245697021, 0.6859645843505859, -0.27150508761405945, -0.6386957168579102, 0.11914674937725067, -0.4305521547794342, -0.5492822527885437, -0.6145421862602234, -0.6106101870536804, -0.969873309135437, 1.123635172843933, 1.5415726900100708, 0.2933133840560913, 0.34545519948005676, 0.6581252813339233, -1.028495192527771, -0.963861346244812, -0.3323286473751068, 0.24281594157218933, 0.8867055773735046, 0.2792627811431885, -1.1506298780441284, -0.7633658647537231, 0.8212578892707825, -0.11676641553640366, 0.39745283126831055, 0.19735990464687347, -0.46760204434394836, 0.8620367050170898, -0.1594141572713852, 1.8708064556121826, -0.07631222158670425, -0.5307655334472656, -0.017467275261878967, -0.3752974569797516, -0.22630958259105682, -0.6003185510635376, -0.09089194238185883, -0.31690317392349243, 0.6266334652900696, -0.44170576333999634, 0.23593075573444366, -0.5067426562309265, -0.8107756972312927, 0.5043770670890808, -0.5013179183006287, 0.18755270540714264, 0.27705591917037964, 1.4367386102676392, 0.43567195534706116, -0.24684037268161774, 0.6609499454498291, 0.029392927885055542, 0.6167590618133545, -0.6832798719406128, 0.4782050848007202, -0.5335212349891663, -1.0884360074996948, 0.537861168384552, 0.47774720191955566, 0.09681016206741333, 0.6148189902305603, 0.47051748633384705, -0.14682699739933014, 0.7276486754417419, -0.3438299298286438, -0.25058603286743164, -0.8766555786132812, 0.8978671431541443, -0.16087237000465393, 0.2547304630279541, 1.7574505805969238, -0.9277768731117249, -1.1592131853103638, -0.9431173205375671, 0.4002707004547119, -0.6966680884361267, -0.17656707763671875, 0.30726301670074463, 0.7374363541603088, -0.5477616786956787, 0.22344419360160828, -0.27716314792633057, -0.48272284865379333, -1.0350046157836914, -0.08700825273990631, -0.5467165112495422, -0.7218363881111145, 0.26911816000938416, -0.6029675006866455, -0.8398467302322388, 0.6234413981437683, -1.3218228816986084, -0.31837981939315796, -0.22736920416355133, -0.03694967180490494, -0.008694675751030445, -0.8838596343994141, 0.7461938261985779, -0.4599449932575226, 1.6543818712234497, -0.9015510082244873, 0.590430498123169, -0.9658079743385315, 0.567233145236969, 1.0936391353607178, -0.07535690069198608, -0.9025149941444397, 0.8329698443412781, -0.4063107967376709, -1.505113124847412, 0.6688224077224731, 0.2904512584209442, -0.20209921896457672, 0.5446761250495911, 0.09512333571910858, 0.32992419600486755, 0.19896414875984192, -0.447975218296051, 0.0921827107667923, 0.1271265596151352, -0.08579277247190475, -0.8476050496101379, -0.9288220405578613, 0.09809503704309464, -0.5307841897010803, -1.1561200618743896, 0.2816632390022278, -0.5302050709724426, -0.19380156695842743, -0.011399648152291775, -0.5597494840621948, 0.03674882650375366, -0.08823417872190475, 1.8483824729919434, 0.3188611567020416, 0.35567235946655273, 0.3726334273815155, 0.3599151372909546, -0.44814634323120117, -0.37204116582870483, 0.9852110147476196, -0.09186149388551712, 0.4825776517391205, 1.0736209154129028, 0.9004893898963928, -0.4413300156593323, 0.4757962226867676, -0.13977666199207306, -0.10785006731748581, -1.2300875186920166, 0.061066288501024246, 0.44135624170303345, -0.3224449157714844, 1.30340576171875, 0.7688091397285461, -0.7129107117652893, 0.007487759459763765, 0.08174637705087662, 0.2713829576969147, -0.5762665867805481, -0.13818885385990143, -0.7836279273033142, -0.31361299753189087, 0.26224392652511597, -0.34747758507728577, 0.4160197079181671, -0.29085925221443176, -0.01733209751546383, -0.5844959616661072, -0.016265109181404114, -0.17779110372066498, 0.6838403344154358, 0.09311869740486145, 1.1499584913253784, -0.5513824820518494, -2.0518205165863037, -0.7207797765731812, 0.02965092658996582, 1.3793084621429443, -0.22817394137382507, -0.06572697311639786, -0.45597535371780396, -0.026979615911841393, 0.062090031802654266, 0.2836914658546448, -0.08130012452602386, 0.6226274371147156, -0.1687694489955902, 0.014916256070137024, 0.6673892736434937, 0.8524196743965149, -0.7483234405517578, -0.8032379746437073, -0.5628727078437805, 0.4804065525531769, 0.9829562306404114, 0.7919706106185913, 0.6335016489028931, -0.22161222994327545, 0.375426322221756, -0.1602790355682373, -0.08120136708021164, -0.8851990103721619, -0.6757075786590576, 0.139820858836174, -0.9144079089164734, -1.0007284879684448, 0.2496456652879715, -0.3623260259628296, 0.457326740026474, -0.5096631646156311, 0.9211068749427795, 1.2761387825012207, -0.3435640335083008, -0.8040902614593506, -0.1431618183851242, -0.1299302577972412, -1.1153579950332642, 0.7614992260932922, 1.3304564952850342, -0.4848692715167999, -0.007919618859887123, 0.48357412219047546, 0.21056321263313293, 0.6351922154426575, 0.7359564900398254, -0.2910078763961792, -1.2970823049545288, -0.41302505135536194, -0.8186955451965332, 0.8277682662010193, -0.5050340294837952, 0.006565826013684273, -0.25864318013191223, 0.20560012757778168, 0.8891966342926025, -0.4106965661048889, -0.12018908560276031, 0.7432423830032349, -0.8004021644592285, -0.08283227682113647, -0.07789971679449081, -0.10866019129753113, 0.5878729224205017, -0.19828642904758453, -0.47092878818511963, -0.28533390164375305, 0.2171764075756073, -0.1503465175628662, 0.9199846982955933, -0.2598022222518921, 0.8284980654716492, 0.23806217312812805, -0.4256570041179657, 0.9263540506362915, -0.056872207671403885, -0.0371379554271698, -0.7406859397888184, 0.6467319130897522, 0.7726977467536926, 0.8949350714683533, 0.5576075315475464, 0.3460557758808136, 0.519414484500885, 0.25265398621559143, 0.14225374162197113, 0.17082075774669647, 0.6270233988761902, 0.1717483252286911, -0.1398003101348877, -0.4745202958583832, 0.010548972524702549, 0.34663721919059753, -0.4727174937725067, 0.477272629737854, 0.5458977818489075, -0.9158739447593689, -0.8213359117507935, 0.599557101726532, 0.5655355453491211, 0.0004736089613288641, -0.6488679647445679, 0.1719440221786499, 1.0388548374176025, 0.07329931855201721, 0.6961466670036316, -0.008975844830274582, -0.026360101997852325, 0.38967710733413696, 0.07093872874975204, -0.04780639708042145, 0.15407466888427734, 0.03348160535097122, 0.8601047992706299, -1.2180300951004028, -0.18182869255542755, -0.7925399541854858, 0.5604095458984375, 0.09014618396759033, -0.38611936569213867, 0.34695956110954285, 0.2283766120672226, -0.39443036913871765, 0.086814746260643, 0.4628778100013733, 1.3455466032028198, -0.8207204937934875, -0.31745645403862, -0.057153888046741486, -0.02049858495593071, 0.1880728155374527, -0.571708619594574, -0.4876617193222046, 0.37889859080314636, -0.8603056073188782, -0.19883084297180176, 0.11084412038326263, 0.20021983981132507, 1.4103690385818481, 0.5687711834907532, 0.19617965817451477, 0.5791023969650269, -0.21105283498764038, -1.4281684160232544, 0.17693521082401276, 0.6606403589248657, 0.6674507260322571, -0.13370294868946075, -0.6906518340110779, -0.07285695523023605, -0.16268762946128845, 0.20300742983818054, -0.40793249011039734, 0.14430205523967743, 0.8271179795265198, 0.02039572410285473, -0.8271310329437256, 0.8341664671897888, 1.049569845199585, 1.4826412200927734, 0.4212397634983063, -0.1993122398853302, -0.5756118893623352, 0.2900029420852661, -1.1519006490707397, 0.509280264377594, 0.9066978096961975, 0.3518759310245514, 1.305216670036316, -1.2127114534378052, -0.3014512360095978, 0.5498587489128113, 0.3104862570762634, 0.3003681004047394, 0.6733793616294861, 0.407344788312912, -0.050001539289951324, 1.0646976232528687, 0.10300123691558838, -0.6752936244010925, -0.022520044818520546, -0.11279382556676865, 0.08437585830688477, 0.6513634920120239, -1.0166822671890259, 0.5226106643676758, -0.9642539620399475, 0.3470337390899658, -0.4776982367038727, -0.7028475999832153, 0.14974059164524078, 0.3526255786418915, 0.5731439590454102, 1.2540398836135864, -0.31933629512786865, -1.3035283088684082, 0.2854832410812378, -0.7910289764404297, -0.16131126880645752, -0.40332889556884766, -0.011625564657151699, -0.6776787638664246, -0.6841599941253662, -0.09596752375364304, 0.5418822765350342, 0.20181536674499512, 0.18552426993846893, -0.3287583887577057, -1.131161093711853, 0.3368518352508545, 0.5784792304039001, 1.0696873664855957, 0.7474607825279236, 0.08499404788017273, 0.20852068066596985, 0.5874314904212952, -0.5318337678909302, -0.0008594999089837074, 0.3708387315273285, -0.5860657691955566, -0.1711118072271347, -1.361633062362671, -1.1959075927734375, 0.5579341650009155, 0.20383547246456146, 0.2444320023059845, 0.08703865110874176, 0.8735837340354919, 1.3187294006347656, -0.5684823393821716, -0.5157642960548401, 0.24203212559223175, -0.5282004475593567, 0.1911715716123581, 1.002106785774231, -0.509765625, -0.3252338767051697, -0.6453722715377808, -1.4305975437164307, 1.1124377250671387, -0.11975841969251633, -0.43263933062553406, 0.44316422939300537, 0.4242347776889801, 0.5688775181770325, 0.9684128761291504, -0.5553756952285767, 0.3764480948448181, -0.03497232496738434, 0.2719118297100067, -1.8078817129135132, 0.15849293768405914, 0.4894113838672638, 0.09292241185903549, -0.6283169388771057, 0.4445951581001282, 0.017509043216705322, -0.4087633788585663, 0.044510502368211746, -0.35914352536201477, 0.887589156627655, 1.3539807796478271, 0.4692647159099579, -0.6815687417984009, 0.4066309332847595, -0.4789638817310333, -0.6014671921730042, 0.05956599488854408, 0.5146140456199646, 0.9559245705604553, -0.2460322231054306, -0.11672503501176834, -0.3065800666809082, -0.5067967772483826, 0.10958632826805115, -0.5017414093017578, 1.3838798999786377, 0.1918203979730606, -0.17828184366226196, -0.27919405698776245, -0.014651878736913204, -0.639246940612793, -0.15524005889892578, 0.6916107535362244, 0.5420961380004883, -1.0782614946365356, 0.39306408166885376, 0.2395281344652176, -0.8028966784477234, -0.21491850912570953, -0.035423584282398224, -0.12464582920074463, -1.1585801839828491, -0.7701596021652222, -1.2728526592254639, 0.24949009716510773, 0.6118958592414856, -0.2749096155166626, -0.29377904534339905, 1.128692388534546, -1.768297553062439, 0.33803707361221313, 0.2817036211490631, -1.115239143371582, -0.5095372200012207, -1.193111777305603, 1.0556190013885498, -0.4818583130836487, 0.9355241656303406, 0.5889578461647034, 1.5324070453643799, -1.3865665197372437, -1.1520992517471313, -0.6522437334060669, -0.21007737517356873, 1.0360900163650513, 1.206563115119934, -0.7673304677009583, 0.49248477816581726, 0.9576671123504639, -0.3619198799133301, -0.4817294776439667, 0.6012435555458069, -0.8864187002182007, 0.4499577283859253, -0.19811663031578064, 0.5316792726516724, -0.02772192843258381, 0.8838456869125366, -0.18188031017780304, 1.3086045980453491, 0.22508522868156433, 1.6652486324310303, -0.7417767643928528, -0.8713052868843079, -0.0925152450799942, 0.4365674555301666, -1.3635895252227783, -0.9636940360069275, 0.24001021683216095, -0.1081455871462822, -0.8521863222122192, 0.27329930663108826, 0.4214639961719513, -0.5633363127708435, -0.7671195268630981, -1.2481147050857544, 0.6194326281547546, -0.757652223110199, 0.0555601641535759, -0.08377080410718918, -0.5470876097679138, -0.4819054901599884, 0.06775470077991486, 0.4392660856246948, -1.8783788681030273, -0.08163092285394669, 0.4269614517688751, 0.38309359550476074, -0.9312461614608765, 0.8860206007957458, 0.699512243270874, 0.33083775639533997, -0.7429352402687073, 1.1129181385040283, 1.1031171083450317, -0.4434748589992523, -0.5112346410751343, 0.023789772763848305, 0.36012816429138184, 0.8831425309181213, -0.648641049861908, -0.41379332542419434, -0.6880841255187988, 0.6399202942848206, 0.5698778629302979, 0.14792712032794952, -0.550096333026886, -0.1622716337442398, -0.4678267240524292, 0.6588197946548462, 1.0411370992660522, -0.7276505827903748, -0.6692066788673401, 1.0933730602264404, -0.19337809085845947, -0.45218899846076965, 0.2183178812265396, 0.960379421710968, 0.7001737356185913, -0.24086794257164001, 0.1994878053665161, 0.9480139017105103, -0.2997705042362213, 0.2953268587589264, -0.3585333228111267, -0.03120291605591774, -0.03848878666758537, -0.24346312880516052, -0.7828132510185242, -0.8827076554298401, -0.23120102286338806, -1.0458872318267822, -0.3023374080657959, -1.400740385055542, -1.1953529119491577, -0.20592227578163147, 0.04629021883010864, -0.6212794780731201, -0.34557026624679565, 0.34847626090049744, -0.6416305899620056, -0.389811635017395, 1.1880615949630737, -0.5345791578292847, 0.7536961436271667, -0.3549690842628479, -0.43895456194877625, -1.1577274799346924, 0.09869246184825897, -0.2680632174015045, 0.3263769745826721, -0.5017869472503662, -0.7905066013336182, -0.3244825601577759, -0.5756843686103821, -0.7761742472648621, 0.524747908115387, -0.8963369131088257, 0.0848555713891983, 0.0445244126021862, -0.6393629312515259, -0.15863320231437683, 1.162906289100647, 0.4343823492527008, 0.04860718920826912, -0.6454870700836182, -0.6003403663635254, 0.5620259046554565, -0.29815325140953064, 0.7506765723228455, -0.7749742269515991, 0.7026433348655701, 0.4659711718559265, -0.12615320086479187, -0.3565198481082916, -1.008961796760559, 0.7301778793334961, -0.0974586009979248, 0.29249778389930725, 0.27367404103279114, -0.4138003885746002, -0.3820096552371979, -1.1881331205368042, 0.576352596282959, 0.2238478660583496, -0.08421739935874939, 0.26522403955459595, -0.6589806079864502, -0.1408177763223648, -0.3371596336364746, 0.5483800172805786, 0.9472025632858276, -0.44578924775123596, 0.03875880688428879, -0.6334022283554077, -0.9535449147224426, -0.23486445844173431, 0.1977739781141281, -0.15466353297233582, 0.13754390180110931, 1.6687712669372559, 1.305503010749817, 0.6848632097244263, 0.009510054253041744, 0.09882766008377075, 0.8731308579444885, -0.8618261814117432, -0.41269055008888245, -0.9323133826255798, -0.46198537945747375, -0.04819043353199959], [0.223783940076828, 1.6408588886260986, -1.905994176864624, -0.5335535407066345, 0.3354435861110687, -0.14486221969127655, 1.1445494890213013, -0.8044408559799194, -0.6845272779464722, -0.7459452748298645, 0.31923285126686096, 0.10852780193090439, 0.8266927599906921, 1.24640691280365, 0.6768893599510193, 0.5585073828697205, 1.4914745092391968, -0.8625466227531433, 0.11394134908914566, 1.2514309883117676, 1.0751619338989258, -0.7665935158729553, 0.2638067901134491, -0.2661730945110321, -0.7745169997215271, 0.5343462228775024, -0.5480580925941467, -0.6266059875488281, -0.9043478965759277, -0.915236234664917, 1.89826238155365, -0.21895116567611694, 0.25950029492378235, -0.34805524349212646, -1.2521586418151855, -1.3560322523117065, 1.1022076606750488, -0.06072835996747017, 0.07686524838209152, -0.3688439130783081, 1.4533374309539795, 0.02362910844385624, 0.05290095508098602, -2.007230281829834, 0.29826393723487854, -0.353165864944458, 1.3433805704116821, -0.9127489328384399, 0.010672850534319878, -0.7725718021392822, 0.9161708354949951, -0.04499762877821922, -0.24192652106285095, 1.2146155834197998, 0.7842905521392822, -0.14950911700725555, 0.369145005941391, 0.7003597617149353, 0.8181735277175903, -0.49630919098854065, 0.648674726486206, 0.803087055683136, -0.06471002101898193, 1.2980828285217285, -0.03694216534495354, -0.20107722282409668, -0.3623233139514923, 0.14278407394886017, 0.07766816765069962, 0.027319155633449554, 0.39462193846702576, -0.17127294838428497, -0.08351444453001022, -0.300910621881485, -0.6643621325492859, 0.2985679507255554, 0.21644429862499237, 0.5857812762260437, 0.008635974489152431, 0.5757829546928406, -0.488014817237854, 0.06513116508722305, 1.070605754852295, -0.4867843687534332, 0.6483554840087891, -0.0399198904633522, 0.2469426393508911, 0.189395934343338, -0.6066616177558899, 1.5250887870788574, -0.4108180105686188, 0.27845075726509094, -0.05645902082324028, -0.2500813603401184, -0.3795274496078491, -0.2244473397731781, -0.10941662639379501, -0.0035919658839702606, -0.4568309187889099, -0.9264181852340698, -0.6819793581962585, -0.21363839507102966, -0.1182067021727562, -0.024201536551117897, -0.611262857913971, 1.5002778768539429, 0.007552579045295715, -0.1495586633682251, -0.6627317070960999, -0.06336827576160431, -0.6646906137466431, 0.34746167063713074, -0.1508462280035019, -0.5208930969238281, -0.7767089009284973, 0.3840465545654297, 1.993534803390503, -0.013252363540232182, 0.8377004265785217, 0.34244421124458313, -0.3007007837295532, -1.3301373720169067, 0.5275028944015503, -0.24277223646640778, 0.8214671015739441, 0.033802881836891174, -0.9054983258247375, -1.0225435495376587, 0.6488246321678162, -0.31172114610671997, 0.12347584962844849, -0.07865049690008163, -0.10308454930782318, 0.6675304174423218, -0.6962514519691467, 0.9069008231163025, -0.46237075328826904, -0.7668641805648804, -0.19451940059661865, -0.08961217105388641, 0.2679646611213684, -0.4150488078594208, -0.22265608608722687, -0.1734113246202469, 0.12137358635663986, -0.36923670768737793, 0.6568549871444702, -0.16874456405639648, -0.5875096321105957, 0.16309763491153717, -1.1587049961090088, -0.12937113642692566, -0.03662772849202156, 1.1069844961166382, 0.15279340744018555, -0.318055659532547, 0.5236577987670898, -0.01744796149432659, 0.6381212472915649, -0.21621201932430267, 0.834987223148346, -0.10771564394235611, -1.1331504583358765, 0.26446816325187683, 0.4338679015636444, -0.5443010926246643, 0.9247032403945923, 1.0930728912353516, -0.27652114629745483, 0.27546072006225586, -0.4176611602306366, -0.2160310447216034, -0.7379316687583923, 1.2567238807678223, 0.28442710638046265, -0.17741426825523376, 2.1626336574554443, -0.5771653652191162, -1.1546130180358887, -0.93159019947052, -0.1629507690668106, 0.1121116653084755, -0.6685222387313843, 0.5214457511901855, 0.08775240182876587, -0.12534189224243164, 0.6831420660018921, -0.0885048508644104, -0.46028822660446167, -1.0015150308609009, 0.1834515482187271, -0.3029935956001282, -0.853027880191803, 0.28118300437927246, -0.405160129070282, -0.5171830654144287, 0.8769360184669495, -0.6515947580337524, -0.7247826457023621, 0.04272015392780304, 0.14069753885269165, -0.23695452511310577, -0.5004808902740479, 0.3929521143436432, -0.13804945349693298, 0.7016765475273132, -1.3445932865142822, 0.9740779399871826, -0.7815777063369751, 0.14969277381896973, 1.1734973192214966, -0.4097329080104828, -0.3191621005535126, 0.7446912527084351, 0.12639933824539185, -1.8497494459152222, 0.6324004530906677, 1.0105130672454834, -0.7054038047790527, 0.3081630766391754, -0.03483384847640991, -0.04578619822859764, 0.9676409959793091, -0.35729172825813293, 0.6875982284545898, -0.21607118844985962, -0.09495922178030014, -0.9484056830406189, -0.8337029218673706, -0.05037379264831543, -0.23232950270175934, -1.0208834409713745, 0.09808981418609619, -0.32339930534362793, -0.5221835374832153, -0.3598470985889435, -0.8981361985206604, 0.012725895270705223, 0.7226893901824951, 1.657632827758789, 0.3212663233280182, 0.5177586674690247, 0.3407215178012848, -0.0895659402012825, -0.5090640187263489, -0.2708950638771057, 1.3272920846939087, -0.1286877691745758, -0.10234030336141586, 1.1389195919036865, 0.7158918380737305, -0.11076591908931732, -0.3153785467147827, -0.5452244877815247, 0.6514793038368225, -0.6360821723937988, -0.5207223296165466, 0.4787036180496216, -1.0339435338974, 0.686130940914154, 0.4809432625770569, -0.756280779838562, -0.020112793892621994, -0.04632362723350525, 0.028015587478876114, -0.7469008564949036, -0.9641525149345398, -0.9061402678489685, 0.02772165834903717, -0.03683178126811981, 0.012393328361213207, -0.052706316113471985, -0.9724348187446594, 0.319396436214447, -0.09912564605474472, 0.23159539699554443, 0.15713182091712952, 0.46563634276390076, 0.004030002746731043, 1.7052252292633057, -0.24753235280513763, -1.5839033126831055, -0.42172831296920776, 0.1462329477071762, 1.110241413116455, 0.13256697356700897, 0.0619254894554615, -0.21448929607868195, 0.02577359788119793, 0.10171553492546082, 0.2129727602005005, 0.7977482080459595, -0.11186390370130539, 0.01080282311886549, 0.14439427852630615, 0.6486626267433167, 0.6352195739746094, -0.9558141231536865, -0.7889522910118103, -0.6078100800514221, 0.9163474440574646, 1.3999511003494263, 1.4713000059127808, 0.5718491077423096, 0.34913143515586853, 0.6047583818435669, -0.5675092935562134, -0.38028639554977417, -0.7287707328796387, -0.8048379421234131, -0.03086516261100769, -0.7426269054412842, -0.7339859008789062, 0.08121156692504883, -0.4708646833896637, 1.0096232891082764, 0.35501551628112793, 0.6100495457649231, 1.3212882280349731, -0.16229012608528137, -0.6137396097183228, -0.05956991761922836, -0.31223857402801514, -0.8555968403816223, 0.7703280448913574, 1.433779001235962, -0.5490541458129883, 0.17274056375026703, -0.06353704631328583, 0.22820055484771729, 0.4702152609825134, 0.16733095049858093, 0.1151728630065918, -1.442823886871338, -0.5218971371650696, -0.9973374605178833, 1.064672589302063, -0.4132837653160095, 0.40510496497154236, -0.5088610053062439, 0.01525785494595766, 0.41894277930259705, 0.8759260177612305, -0.09415619820356369, 0.44024813175201416, -0.927563488483429, -0.006754178553819656, -0.32658490538597107, -0.12079863995313644, -0.04600182920694351, -0.243275985121727, -0.599514365196228, -0.41405847668647766, 0.17902594804763794, -0.558556079864502, 0.21400906145572662, 0.05862410366535187, 0.41716885566711426, 0.10154827684164047, -0.10155130177736282, 0.4083564281463623, 0.0975579023361206, -0.20682275295257568, -0.6960410475730896, 0.5856395959854126, 0.6602485179901123, 0.7437082529067993, 0.038005221635103226, -0.0009834812954068184, 0.37077796459198, -0.23642173409461975, 0.26640745997428894, -0.044586967676877975, 1.595202922821045, 0.9205173254013062, 0.06656615436077118, 0.6859173774719238, -0.38672733306884766, -0.06030171737074852, -0.5342773795127869, 0.6628255248069763, 0.396186500787735, -1.2863744497299194, -1.0149240493774414, 0.4768838882446289, -0.1361997127532959, -0.38959258794784546, -0.5699226260185242, -0.4463426470756531, 0.595023512840271, -0.06392110884189606, 0.08483313024044037, -0.15041692554950714, -0.15961650013923645, 0.5444642901420593, -0.5893785953521729, 0.5736632943153381, 0.2990514636039734, -0.06594420969486237, 0.6522898077964783, -0.9303545355796814, -0.3845054805278778, -0.45833343267440796, 0.1433417648077011, 0.7042527198791504, -0.4731151759624481, 0.31225526332855225, -0.48617345094680786, -0.7291596531867981, -0.06429092586040497, 0.500985324382782, 1.4012234210968018, -0.24531979858875275, -0.26893433928489685, 0.7207968831062317, -0.82327800989151, -0.18896086513996124, -0.4080217480659485, -0.6537728309631348, 0.41806089878082275, -0.6488392353057861, 0.08434482663869858, -0.1311204433441162, -0.11764498800039291, 0.7641821503639221, 0.22338414192199707, 0.790884256362915, 0.3788833022117615, -0.059499774128198624, -1.7304531335830688, 0.18827852606773376, 0.3871263861656189, 0.2732742130756378, -0.062069352716207504, -0.9236437082290649, 0.39237943291664124, -0.3022458255290985, 0.31398916244506836, -0.10979042202234268, 0.33432629704475403, 0.4636828601360321, -0.35611358284950256, -0.015777472406625748, 0.6988735795021057, 0.8572723269462585, 1.3934426307678223, 0.845054566860199, -0.6719116568565369, -0.7103091478347778, 0.5917989611625671, -0.4944198727607727, 0.9695942997932434, 1.3734245300292969, 0.3200845420360565, 0.9439675211906433, -0.9602206945419312, -0.6960617899894714, 0.6899664402008057, 0.054350268095731735, 0.19890201091766357, 0.7266004085540771, 0.1968769133090973, -0.617091178894043, 0.2200506627559662, -0.0733138844370842, -0.2023870050907135, -0.07175528258085251, -0.0342506468296051, -0.4457041323184967, 0.7997535467147827, -0.8344810009002686, -0.15245738625526428, -0.726373016834259, 0.2591429352760315, -0.38194963335990906, 0.25024327635765076, -0.0042205690406262875, 0.5348163843154907, 0.5886260867118835, 0.9692444801330566, -0.35987743735313416, -0.8189254999160767, 0.27484625577926636, -1.1987686157226562, 0.4632857143878937, -0.34132128953933716, -0.16823707520961761, -0.6613360643386841, -0.17447540163993835, 0.375728040933609, 0.5025748610496521, -0.17522548139095306, -0.23881566524505615, 0.23639097809791565, -0.7384471297264099, 0.38978311419487, 1.1901315450668335, 0.8762086033821106, 0.3372911810874939, -0.2801247537136078, 0.280798077583313, 0.9901503920555115, -0.41124215722084045, -0.3031935691833496, 0.5377979278564453, -0.47414517402648926, 0.10637335479259491, -1.196205496788025, -0.7165939807891846, 0.6381479501724243, 1.2766318321228027, 0.47605350613594055, 0.572499692440033, 0.7247911691665649, 1.047805905342102, -1.0325665473937988, 0.39195993542671204, 0.3468945026397705, -0.5013326406478882, 0.22456727921962738, 0.4254551827907562, -0.11228778213262558, -0.5117509961128235, -0.7943809628486633, -1.6275969743728638, 1.0768165588378906, -0.41304323077201843, -0.5383461713790894, 0.7421115636825562, 0.643166720867157, 0.5045324563980103, 0.8993109464645386, -0.7789871692657471, 0.574245274066925, -0.5283935070037842, -0.09310103207826614, -1.8017507791519165, 0.7231965065002441, 0.5302459001541138, -0.30597153306007385, -0.9027496576309204, 0.27650752663612366, -0.601108193397522, 0.09252671897411346, -0.36621177196502686, 0.22589020431041718, 0.4229293167591095, 0.7463818788528442, 0.2334180325269699, -0.4513606131076813, 0.641735851764679, -0.9678261876106262, 0.012489665299654007, -0.1639818698167801, 0.6798758506774902, 0.5097708702087402, -0.34734076261520386, -0.04786005988717079, 0.10584544390439987, 0.23042963445186615, 0.1584944725036621, 0.00027004117146134377, 0.8029073476791382, 0.15877558290958405, 0.6981062293052673, -0.0959501788020134, 0.08952075988054276, -0.1993112862110138, -0.44256237149238586, 0.3628601133823395, 0.7360738515853882, -1.0869455337524414, 0.36370396614074707, 0.4736228883266449, -0.8129611611366272, -0.6075481176376343, -0.34000536799430847, -0.1639537662267685, -0.7631270289421082, -0.3316745460033417, -1.0654842853546143, 0.5927563309669495, 0.15825213491916656, 0.29765671491622925, 0.5822883248329163, 0.5300413370132446, -1.0508172512054443, 0.03324419632554054, 0.0028959307819604874, -1.2853624820709229, -0.08314378559589386, -1.1320948600769043, 0.8896257877349854, -0.3201272487640381, 0.3462480306625366, 0.5722026228904724, 0.9945314526557922, -1.6036442518234253, -0.7171213030815125, -0.6718462109565735, -0.5785715579986572, 0.9945598840713501, 0.6708915829658508, -1.1770955324172974, 0.9528269171714783, 0.7758546471595764, -0.8301202058792114, 0.24852235615253448, 0.2614649832248688, -0.9470168948173523, 0.4380783438682556, -0.42715099453926086, 0.8292645812034607, 0.12897145748138428, 1.8492106199264526, -0.13616818189620972, 0.7378455400466919, 0.3580612242221832, 1.2764333486557007, -0.3954443633556366, 0.34818294644355774, -0.3438303768634796, 0.4902695417404175, -0.33752796053886414, -0.8777762055397034, 0.15383446216583252, -0.40441426634788513, -1.2455579042434692, 0.8050032258033752, 0.8508511781692505, -0.4348269999027252, -0.16193170845508575, -0.7413443326950073, 0.9684748649597168, -0.7348237037658691, -0.4137873649597168, -0.05714451149106026, -0.12365888804197311, -0.4561322331428528, -0.30482131242752075, 0.48174139857292175, -1.6327581405639648, -0.17593297362327576, 0.674983561038971, 0.21957190334796906, -0.8240710496902466, 0.3638427257537842, 0.7602611780166626, 0.7166702151298523, -0.7890433073043823, 1.3322995901107788, 1.0754733085632324, -0.7854852080345154, -0.7193329930305481, -0.23565898835659027, 0.26015278697013855, 0.3341006934642792, -0.7656455039978027, -0.8481525182723999, -0.6372551918029785, 0.6157156229019165, 0.30715620517730713, -0.08419864624738693, -0.5342027544975281, -0.5360484719276428, -0.25751549005508423, 0.2949735224246979, 1.4593229293823242, -1.0532292127609253, -0.824917733669281, 0.8362098336219788, -0.009928124956786633, -0.44773754477500916, 0.9781385660171509, 0.6849470734596252, 0.3493402302265167, 0.031228559091687202, -0.1788732409477234, 0.8753001093864441, -0.11312610656023026, 0.7416834831237793, -0.48964983224868774, 0.4716932773590088, 0.10949128866195679, -0.5156500935554504, -0.8618263006210327, -0.6595259308815002, -0.5948498249053955, -0.8718151450157166, 0.07526034861803055, -1.210679531097412, -0.617071807384491, 0.15653479099273682, 0.22110459208488464, -0.6379753351211548, 0.027265815064311028, 0.521936297416687, -0.7992683053016663, -0.5764564275741577, 0.9707263708114624, 0.09601818770170212, 0.6366147994995117, 0.15823401510715485, -0.08299019187688828, -0.9869465827941895, 0.09601815789937973, 0.6851204633712769, 0.02532597817480564, -0.3850075602531433, -0.5330888628959656, 0.0594525970518589, -0.19123543798923492, -0.33545467257499695, 0.422686368227005, -1.2252397537231445, 0.17735348641872406, 0.3909153342247009, -0.8445778489112854, -0.5029340386390686, 0.2592242956161499, -0.06059078872203827, 0.1497592180967331, -1.0698539018630981, -0.6546205878257751, 0.971233069896698, -0.5888224840164185, 1.236530065536499, -0.19351841509342194, 0.5007064938545227, 0.6793875694274902, -0.7375560402870178, -0.5494951009750366, -1.0877548456192017, 0.6195430159568787, 0.017159409821033478, 0.37663042545318604, -0.1294894963502884, 0.17619170248508453, -0.5591458678245544, -1.7987536191940308, 0.4111795425415039, 0.3088141977787018, -0.2411184161901474, 0.20516470074653625, -1.453272819519043, -0.35400569438934326, -0.8221051692962646, 0.3789095878601074, 1.2510323524475098, -0.013829371891915798, 0.13526734709739685, 0.14221426844596863, -1.5682138204574585, -0.19341351091861725, 0.3649194538593292, -0.3332909643650055, -0.21933671832084656, 1.1906185150146484, 0.6609102487564087, 0.39059674739837646, 0.3287186026573181, 0.12508682906627655, 0.5435371398925781, -0.8962352275848389, -0.05869095027446747, -0.4793241024017334, -0.30772584676742554, -0.19011342525482178], [-0.04780071973800659, 1.4449114799499512, -2.48852276802063, -0.24024119973182678, 0.5453075170516968, 0.6418695449829102, 1.0563198328018188, -0.32563015818595886, 0.1692618578672409, -0.24677737057209015, -0.37727969884872437, -0.47688478231430054, 0.37068477272987366, 0.6302029490470886, 0.3524976968765259, 0.780588686466217, 0.48452019691467285, 0.27359503507614136, 0.7370282411575317, 1.1857062578201294, -0.35698387026786804, -0.929571270942688, -0.23085403442382812, 0.41641750931739807, 0.018305517733097076, 0.5161450505256653, -0.5059200525283813, -0.494846373796463, -1.2253193855285645, -0.721591591835022, 0.8609461188316345, -0.38033053278923035, 0.20696578919887543, -0.5203683972358704, -1.181405782699585, -1.086002230644226, 1.5599563121795654, 0.6773366928100586, 0.3707354664802551, 0.11576010286808014, 1.8884204626083374, 0.41888102889060974, 0.33159515261650085, -2.009134531021118, 0.5337947010993958, 0.3258076608181, 0.8983165621757507, -0.649513840675354, 0.04359238222241402, -0.18487699329853058, 0.4008055329322815, -0.8227813243865967, 0.6638901233673096, 1.0892045497894287, 1.1043566465377808, -0.6392347812652588, 0.14130501449108124, 0.9067656397819519, 0.1602104753255844, -0.10759471356868744, 0.9712914824485779, 0.16740292310714722, -0.47761768102645874, 0.5240591168403625, 0.5119963884353638, -0.548711895942688, -0.10282756388187408, 0.5096548199653625, 0.31244099140167236, 0.5548965334892273, 0.8191315531730652, 0.0739598199725151, -0.8748077154159546, 0.13315729796886444, -1.6745625734329224, 0.5167438983917236, 0.5475961565971375, 0.9308159351348877, -0.011427955701947212, 0.6838118433952332, -1.0006040334701538, 0.06092052906751633, 0.7114572525024414, -0.9583011269569397, 0.48564770817756653, 0.3737116754055023, 0.45462357997894287, -0.46983057260513306, -0.015001263469457626, 1.7427328824996948, -0.04948178306221962, 0.1422514170408249, 0.5146074891090393, -0.09907939285039902, -0.07056281715631485, 0.023402607068419456, -0.512403130531311, -0.04669809713959694, -0.3677661418914795, -1.068647861480713, -0.6241647005081177, -0.7427720427513123, 0.678922176361084, -0.6135216951370239, -0.9374215006828308, 1.3079326152801514, 0.5798127055168152, -0.27818062901496887, -0.444956511259079, -0.049046460539102554, -0.7079986333847046, 0.24919474124908447, -0.6996816396713257, -1.376657247543335, 0.1406041532754898, 0.6580634713172913, 1.3035413026809692, -0.027110399678349495, 0.6206389665603638, 0.681372880935669, -0.5759826302528381, -0.4113524556159973, 0.22209948301315308, 0.40128111839294434, 0.7999842166900635, 0.8666185140609741, -0.8116123080253601, -0.8227653503417969, 0.5757294297218323, -0.14740310609340668, 0.45326849818229675, 0.24250823259353638, -0.09416995197534561, 0.618968665599823, -0.4320315718650818, 1.1329644918441772, -0.48273414373397827, -0.3153044581413269, -0.12663458287715912, 0.2776767313480377, 0.4688163697719574, -0.0846010148525238, -0.029225120320916176, -1.1955857276916504, 0.18632195889949799, -0.4690772593021393, 0.5996710658073425, -0.14598730206489563, -1.071081519126892, 0.17922528088092804, -1.5411558151245117, -0.16033834218978882, 0.08065146952867508, 1.3767584562301636, 0.793190598487854, 0.13757982850074768, 0.5045250654220581, 0.3909291923046112, 0.6134613752365112, 0.478429913520813, 0.8745729923248291, 0.5565826892852783, -1.040776252746582, 0.9946959614753723, 0.109957255423069, -0.3601752817630768, 0.6885559558868408, 0.9407901167869568, 0.06852113455533981, 0.987515926361084, -0.7385547757148743, -0.29948580265045166, -0.23421525955200195, 0.951013445854187, 0.8308868408203125, -1.0976530313491821, 1.2666432857513428, -0.7165492177009583, -1.3812811374664307, -1.366898536682129, 0.19914363324642181, 0.008436772972345352, 0.6668906211853027, 0.03303109481930733, 0.03878059983253479, -0.5393388271331787, 0.3471255600452423, -0.30145442485809326, -0.7827953696250916, -0.7774938941001892, -0.36164844036102295, -0.22902899980545044, -1.2039638757705688, -0.039469100534915924, -0.523993194103241, -1.0815606117248535, 0.8856101632118225, -0.9079304337501526, -0.42554280161857605, 0.03517330437898636, 0.23443038761615753, -0.6436140537261963, -0.4211033880710602, 0.657458484172821, -1.1186680793762207, 1.2688865661621094, -1.938042402267456, 0.9717721939086914, -0.3349750339984894, -0.09471794217824936, 1.0495301485061646, -0.2596096992492676, -0.6006448864936829, 0.449899286031723, 0.32510048151016235, -1.7736800909042358, 0.42266666889190674, 0.3412839472293854, -0.36836865544319153, 0.02036285772919655, 0.049442846328020096, -0.07717075943946838, 0.17415563762187958, 0.0001053917221724987, 0.5039657354354858, 0.268888920545578, -0.3052363693714142, -0.6281769871711731, 0.09478621929883957, -0.006750632077455521, -0.4095604717731476, -1.228446125984192, 0.4801352620124817, 0.9036014080047607, -1.132603645324707, 0.32426971197128296, 0.20211416482925415, 0.38514649868011475, 0.5551291704177856, 0.9400497078895569, 0.7561768293380737, 0.5907511711120605, 0.3103664815425873, -0.18599656224250793, -0.4157039523124695, 0.06707926094532013, 1.0266703367233276, -0.5207257270812988, 0.1682996153831482, 1.3554270267486572, 1.0372276306152344, -0.0037139474879950285, 0.45601797103881836, 0.13229620456695557, -0.1336708962917328, -0.2768797278404236, -0.6958818435668945, -0.041524846106767654, -0.515238344669342, 1.4162819385528564, 0.8099117875099182, -0.6626237630844116, -0.4639684557914734, -0.41748112440109253, -0.1132492870092392, 0.007323520258069038, -0.6325069069862366, -0.24449095129966736, -0.12579578161239624, 0.7278763055801392, 0.0998796671628952, 0.20844793319702148, -0.2722250521183014, 0.5285595059394836, -0.060524147003889084, -0.8434732556343079, -0.5120487213134766, -0.06204234063625336, -0.14485272765159607, 1.1893680095672607, 0.29675179719924927, -1.3137946128845215, -0.34302958846092224, 0.06007326766848564, 0.551848292350769, 0.5336223840713501, -0.09816018491983414, 0.4171411991119385, 0.39544349908828735, -0.33798110485076904, 0.2031572312116623, 0.3363315165042877, 0.37886083126068115, 0.1576884239912033, -0.05123875290155411, 0.2580535113811493, 0.6445117592811584, -1.0887070894241333, -0.8958901166915894, -0.5441226959228516, -0.1750410944223404, 1.5430071353912354, 1.3243319988250732, 0.8626894950866699, 0.24955953657627106, -0.19564591348171234, 0.035907141864299774, -0.423888236284256, -0.7179052233695984, -0.8926146626472473, -0.6067714691162109, -0.9510863423347473, -0.6016289591789246, 0.06217202916741371, -0.22186759114265442, 0.5789292454719543, -0.26785165071487427, 0.1725177764892578, 1.3986902236938477, -0.7363059520721436, -0.780694842338562, -0.2703699469566345, -0.38519638776779175, -0.7510941624641418, 0.4688020944595337, 1.153646469116211, -1.0717954635620117, -1.007300853729248, 0.12020984292030334, -0.16056102514266968, 0.7828655242919922, -0.26984599232673645, 0.37637805938720703, -0.7882121801376343, -0.9585683345794678, -0.8948668241500854, 1.3026840686798096, -0.05467098206281662, -0.010312147438526154, -0.3513057827949524, 0.25275030732154846, -0.2379101812839508, -0.038328710943460464, -0.5514739751815796, 0.17856426537036896, -0.9070250988006592, -0.16159464418888092, -0.07266727834939957, 0.8625086545944214, 0.4249863624572754, -0.8070025444030762, -0.7579049468040466, -0.23080995678901672, -0.0665174201130867, -0.3303894102573395, 0.6588264107704163, 0.33439022302627563, 0.6952638030052185, 0.09889762848615646, 0.5003912448883057, 0.47622352838516235, 0.08573652058839798, -0.3789823353290558, -1.4712156057357788, 0.537761390209198, 0.698843777179718, 1.087009072303772, 0.07351842522621155, 0.37742653489112854, 0.0949506014585495, 0.18596796691417694, 0.3433922529220581, -0.13927660882472992, 1.2503677606582642, 0.06608612835407257, 0.24802738428115845, -0.4124310612678528, -0.7548140287399292, 0.25440168380737305, -1.0170034170150757, 0.1063728779554367, 0.31250351667404175, -0.6145434379577637, -0.4335060119628906, 0.7173288464546204, 0.04988093674182892, -0.2825769782066345, -0.17505116760730743, 0.03833288326859474, 0.9689927101135254, -0.05056801810860634, -0.5200206637382507, -0.4448435604572296, -0.018658889457583427, 0.7165647149085999, -1.0160760879516602, 0.3375595510005951, 0.09423045068979263, 0.5429407358169556, 1.1908366680145264, -1.2182809114456177, -0.44005435705184937, -0.6789238452911377, 0.5706539750099182, 0.7845646142959595, 0.11332163214683533, 0.16833290457725525, -0.6250888109207153, -0.156764954328537, -0.15594612061977386, 0.32986634969711304, 1.281893253326416, -0.36225810647010803, -0.10747827589511871, 0.3076666295528412, -0.1388404220342636, 0.4732251763343811, -0.8312579393386841, -0.05287995934486389, 0.3633498251438141, -0.4596993029117584, 0.25015485286712646, -0.4087110459804535, -0.39188653230667114, 1.399200677871704, -0.08815574645996094, 0.6042773723602295, 0.44908562302589417, 0.30355438590049744, -1.2751752138137817, 0.5232493877410889, 0.26701077818870544, -0.6283194422721863, -0.5934841632843018, -0.12413755804300308, 0.30582618713378906, -0.21612851321697235, -0.2193305343389511, 0.38772550225257874, 0.568527340888977, -0.21054919064044952, -0.28045621514320374, 0.006936696823686361, -0.19827218353748322, 0.7489478588104248, 1.3767000436782837, 0.659168004989624, -0.026772523298859596, -1.1016030311584473, 0.7826988101005554, -0.6556567549705505, 0.22843684256076813, 1.0476001501083374, 0.10523281991481781, 1.1702007055282593, -1.9569272994995117, -0.5539891123771667, 0.7577295303344727, 0.04662846401333809, 0.5694559812545776, 1.2073895931243896, -0.012292305938899517, -0.38928285241127014, 0.02614358440041542, -0.28901633620262146, 0.1954609453678131, 0.3397359848022461, -0.1977022886276245, -0.37750568985939026, 0.7640625834465027, -1.0407999753952026, 0.2881017327308655, -0.5420737862586975, -0.630128800868988, -0.5813275575637817, 0.12107264995574951, 0.6267247796058655, 0.41931673884391785, 0.4348906874656677, 1.2040126323699951, -0.820716381072998, -1.1632912158966064, -0.19394442439079285, -0.4258970618247986, 0.17779426276683807, -0.4220205247402191, 0.021153531968593597, -0.6974260210990906, -0.38473939895629883, -0.4627033770084381, 0.6770769357681274, -0.11011083424091339, -0.6997424960136414, -0.20616871118545532, -1.3870142698287964, 0.22779032588005066, 0.9883263111114502, 0.8205428123474121, 0.3442278504371643, -0.05105453357100487, 0.9371681809425354, -0.39178311824798584, -1.1616013050079346, -0.5251193642616272, 0.4273648262023926, -0.09121782332658768, -0.4468841552734375, -0.6520084738731384, -0.5660505890846252, 0.44162803888320923, 0.824012279510498, -0.1782597303390503, 1.3520399332046509, 0.7137619853019714, 1.0330138206481934, -0.43048688769340515, -0.7342941164970398, 0.20025451481342316, -0.5189496874809265, 0.2618587911128998, 0.8776659369468689, -0.0719069242477417, -0.6642207503318787, -0.20408278703689575, -1.44556725025177, 0.7847534418106079, -0.6642476320266724, -0.5597555041313171, 1.166504144668579, 0.20567816495895386, 0.3865378797054291, 0.6589027643203735, -0.6864600777626038, -0.014741349965333939, -0.20273452997207642, -0.5309440493583679, -1.4917566776275635, 0.282513827085495, 0.4080170691013336, -0.016482632607221603, 0.15881633758544922, 0.7187361717224121, -0.3131750822067261, 0.006695159710943699, -0.09585423767566681, 0.6154642105102539, 0.26475223898887634, 0.7877443432807922, -0.04741087183356285, -0.3265654444694519, 0.6031289100646973, -0.9974648356437683, -0.2841741442680359, -0.017395954579114914, 0.8338727951049805, 0.5198042988777161, -0.42099204659461975, 0.519970178604126, -0.3912508487701416, -0.13961093127727509, -0.265937477350235, -0.36993932723999023, 0.5163513422012329, 0.47556227445602417, -0.28293630480766296, 0.38638317584991455, -0.07022227346897125, -0.5420290231704712, -0.8611977696418762, 0.35469892621040344, 0.4949403405189514, -1.3482496738433838, 0.21247448027133942, 0.072696253657341, -0.7779107093811035, -0.48074376583099365, -0.34344786405563354, -0.3930172324180603, -1.053555965423584, -1.0419232845306396, -1.3449833393096924, 0.48391982913017273, 0.44318336248397827, -0.32059767842292786, 0.4628051519393921, 0.10311343520879745, -1.3110681772232056, -0.4212195873260498, -0.3223429322242737, -1.3634140491485596, -0.21428361535072327, -0.8916627764701843, 0.9620095491409302, 0.12284770607948303, 0.25518321990966797, 0.0951678603887558, 1.0976760387420654, -1.2745440006256104, -1.131877064704895, -0.8233119249343872, -0.6077193021774292, 1.3241772651672363, 0.08225631713867188, -1.1359975337982178, 1.110416054725647, -0.017069954425096512, -0.5842103362083435, 0.18808238208293915, -0.06913696974515915, -0.6889646649360657, 0.3579918444156647, -0.12436562031507492, 0.6386227011680603, 0.7169853448867798, 1.0630483627319336, 0.8859694004058838, 0.44787347316741943, 0.48335757851600647, 0.9605033993721008, -0.8275061249732971, -0.1863480508327484, -0.11292798072099686, 0.9198493957519531, -0.9635565280914307, -0.6939764022827148, 0.1481652855873108, -0.644228458404541, -0.7123307585716248, 0.3154577612876892, 0.8330323100090027, -0.6800493597984314, 0.5222387313842773, -0.46934863924980164, 0.01035867165774107, -0.8402443528175354, 0.42495718598365784, -0.06534016877412796, -0.26394760608673096, -0.29532477259635925, 0.011879414319992065, 0.6321703791618347, -1.7643388509750366, -0.129612535238266, 0.4155299663543701, -0.030487684532999992, -0.13895124197006226, 0.7875940203666687, 0.510742723941803, 0.5338520407676697, -0.8368116617202759, 1.6739636659622192, 0.9467403292655945, -0.7127021551132202, -0.22356939315795898, 0.6039880514144897, 0.3156200647354126, 0.38800403475761414, -0.9986683130264282, -0.36929839849472046, -0.908827006816864, 0.8180010318756104, 0.2767963707447052, 0.5600759387016296, -0.15533268451690674, -0.05806832015514374, -0.7271915078163147, 0.12234611064195633, 1.2775710821151733, -1.646533727645874, -0.40195563435554504, 1.1508234739303589, 0.40634217858314514, -0.5668181777000427, 0.37303081154823303, 0.8210957050323486, 0.1485634744167328, 0.03154631704092026, 0.5330976843833923, 1.1207611560821533, -0.9788063764572144, 0.4727696180343628, -0.02421599067747593, -0.30941399931907654, -0.07012920081615448, -0.16392920911312103, -1.2304884195327759, 0.6741566061973572, -0.7661271095275879, -1.1767761707305908, 0.3912036716938019, -1.0104970932006836, -0.937064528465271, 0.22179235517978668, 0.5597909092903137, -0.3123033046722412, -0.4236257076263428, 0.389566570520401, 0.2816261351108551, -0.09331687539815903, 0.4738999307155609, -0.2507970929145813, 1.6065757274627686, 0.19453850388526917, 0.21882741153240204, -1.2254334688186646, -0.1981624811887741, 0.7212276458740234, -0.16020210087299347, -0.48678991198539734, 0.143271341919899, 1.321535348892212, -0.11219718307256699, -0.7430413365364075, 0.16570468246936798, -0.4803808331489563, 0.2532544434070587, 0.6090124249458313, -1.0144761800765991, -0.32820621132850647, 0.2621091306209564, 0.5615270137786865, -0.4496881365776062, -0.43721121549606323, -0.46738433837890625, 0.5252431035041809, -0.3137381374835968, 0.585030734539032, 0.21999429166316986, 0.5566052198410034, 0.45510485768318176, -1.1380852460861206, -0.5582427382469177, -0.7132656574249268, 0.7416984438896179, 0.1247972920536995, 0.46787527203559875, -0.4703051745891571, 0.22820083796977997, -0.6334269046783447, -0.6484746336936951, 0.7431168556213379, 0.5446447730064392, -0.10751239210367203, -0.06699660420417786, -1.3832322359085083, -0.2693568766117096, -1.0899958610534668, -0.0480683296918869, 0.8856534361839294, 0.5240957736968994, -0.10490130633115768, 0.4188830852508545, -0.6843716502189636, -0.07296699285507202, -0.10240355879068375, -0.08673716336488724, 0.14076127111911774, 1.1821180582046509, 2.174536943435669, 0.4273016154766083, -0.08009454607963562, -0.4883878827095032, 0.38755494356155396, -0.9596745371818542, 0.1289587765932083, -0.6490786075592041, -0.6120767593383789, -0.37134090065956116], [-0.32367557287216187, 1.4956251382827759, -1.9744670391082764, -0.10916285961866379, 0.4658931493759155, 0.5696658492088318, 0.9674419164657593, -0.44141146540641785, 0.5885269641876221, -0.1743760108947754, -0.5096872448921204, -0.6448789834976196, 0.3274520933628082, 1.128267526626587, 0.22847607731819153, 0.5064164996147156, 0.7776390910148621, -0.3092539310455322, 1.0015588998794556, 1.4072202444076538, 0.8625220656394958, -1.2702218294143677, -0.4522782266139984, 0.6026080250740051, -0.08080793917179108, 0.4288923442363739, -1.0244534015655518, -0.3912792503833771, -1.1657450199127197, -0.8500221371650696, 1.101385474205017, -0.9535390734672546, 0.9965792298316956, 0.430658757686615, -1.1348317861557007, -0.08533704280853271, 1.861992597579956, 1.004381775856018, 1.3318443298339844, -0.5384254455566406, 1.5743610858917236, 0.3565683364868164, 0.335305780172348, -0.895368754863739, 0.4688233435153961, -0.2927147150039673, 0.7335897088050842, -1.2417261600494385, 0.45889905095100403, -0.07379066199064255, 0.15783774852752686, -0.4656467139720917, 0.6446748375892639, 0.7359883189201355, 1.4451090097427368, -0.4558216333389282, 0.28628820180892944, 0.19929473102092743, 0.3325415849685669, 0.03816809132695198, 1.0979889631271362, 0.3369012475013733, -0.528884768486023, 0.7026985883712769, 0.9316255450248718, 0.2585000991821289, 0.06253719329833984, 0.24344699084758759, 0.09367164969444275, 0.22945716977119446, 0.6419296264648438, 0.13335034251213074, -0.8704688549041748, 0.07286656647920609, -1.087927222251892, 0.5443737506866455, 0.502977728843689, 1.0666401386260986, 0.3238469660282135, 0.6157094836235046, -0.38857969641685486, 0.7833632826805115, 0.5353232026100159, -0.6794417500495911, -0.03248242288827896, 0.5199165344238281, 0.38534119725227356, -0.19725315272808075, -0.8869768381118774, 2.131916046142578, 0.44336211681365967, 0.5296573638916016, 0.560486376285553, 0.18754231929779053, 0.01998000778257847, -0.10255136340856552, 0.760925829410553, 0.14156685769557953, -0.42456963658332825, 0.11074448376893997, -0.8087745904922485, -0.8110911250114441, 0.0030317604541778564, -0.1652732491493225, -0.0607810840010643, 1.015543818473816, 0.8432112336158752, -0.13225868344306946, -0.881946861743927, -0.1474812626838684, -1.4710975885391235, -0.0790351927280426, -0.7251912355422974, -0.8357533812522888, -0.24085181951522827, 0.3713361322879791, 0.8919978141784668, -0.5332220792770386, 0.3179461658000946, 0.41821056604385376, -0.47136184573173523, -0.0930325984954834, -0.5665152072906494, 0.6642389893531799, 0.6191562414169312, 1.0208660364151, -1.4294795989990234, -1.2194501161575317, 0.2537113428115845, 0.00718032568693161, 0.008514052256941795, 0.0622783824801445, -0.06964405626058578, 0.8592707514762878, -0.22985650599002838, 1.691541314125061, -0.9362895488739014, 0.010873932391405106, 0.1970670074224472, -0.06775426119565964, 0.951000452041626, -0.7639073133468628, -0.2957158088684082, -0.5548620820045471, -0.07995311170816422, -0.34582042694091797, -0.09327590465545654, 0.5190356969833374, -1.3156728744506836, 0.9636650085449219, -0.9972381591796875, 0.4714973568916321, 0.4409160614013672, 0.9869028925895691, 0.5914456844329834, -0.18008913099765778, 0.4151715040206909, -0.3673602342605591, 0.23499110341072083, 0.5011849403381348, 0.08565504103899002, 0.7055522203445435, -0.7509503960609436, 0.7149768471717834, 0.1434280276298523, -0.4948710799217224, 0.4237121045589447, 0.7910556793212891, -0.11899146437644958, 1.1708132028579712, -0.11842593550682068, -0.5682189464569092, -0.6163651943206787, 0.33471179008483887, 1.0823602676391602, -0.7361181378364563, 1.2023577690124512, -0.5924144983291626, -1.346420168876648, -1.2953367233276367, 0.20648150146007538, -0.617133378982544, -0.10878700762987137, 0.47709760069847107, 0.055897220969200134, -0.5892276763916016, 0.22111071646213531, -0.6007134914398193, -0.5135616660118103, -0.8083145022392273, -0.7070229649543762, -0.6883451342582703, -0.6196560263633728, 0.22533345222473145, -0.6782103776931763, -0.9053794741630554, 0.7489093542098999, -0.8862480521202087, -0.49942490458488464, -0.265983521938324, -0.7390801906585693, -0.8368266224861145, -0.7010427713394165, 0.11109035462141037, -0.6065064668655396, 0.9978436231613159, -1.6602189540863037, 0.7039588093757629, -0.09147986024618149, 0.4885711669921875, 1.4371215105056763, 0.4654565751552582, -0.37139037251472473, 0.339178204536438, 0.24754315614700317, -1.3068066835403442, -0.06896021962165833, 0.09812994301319122, 0.4598076343536377, 0.4593832790851593, -0.41219455003738403, 0.01643460802733898, 1.1478397846221924, 0.2605631351470947, 0.4312918484210968, -0.4256649315357208, -0.09114530682563782, -0.5229958891868591, -1.233282208442688, 0.5597747564315796, -0.8491626977920532, -1.1594616174697876, 1.0021562576293945, 0.6600193381309509, -0.5658580660820007, 0.5082545876502991, -0.015558043494820595, 0.9204654097557068, 0.24757513403892517, 1.4588427543640137, 0.5067978501319885, 0.39260900020599365, 0.1298690289258957, -0.5340234637260437, -0.7689504027366638, 0.745449423789978, 0.5416216254234314, -0.3425711691379547, -0.025646265596151352, 0.7525371313095093, 1.5037060976028442, 0.6955798268318176, 0.09808329492807388, 0.6399781703948975, -0.2214670032262802, -1.0391812324523926, -0.8247469663619995, 0.1855064034461975, -1.0914732217788696, 1.3318390846252441, 0.4090118110179901, -1.0662697553634644, -1.3039125204086304, -0.22090068459510803, 0.2527632713317871, 0.025226686149835587, -0.6260213851928711, -1.0057413578033447, -0.593780517578125, 0.03906561806797981, -0.5008999109268188, 0.33425506949424744, -0.47535568475723267, 0.9165000319480896, -0.16987067461013794, -0.8787513971328735, -0.19318248331546783, 0.61883944272995, -0.07753784954547882, 0.9548474550247192, 0.061282653361558914, -1.9004110097885132, -0.41804081201553345, 0.6128342151641846, 1.0343478918075562, 0.16402208805084229, 0.30542200803756714, 0.35014456510543823, 0.6197806000709534, 0.11884225904941559, -0.12716971337795258, 0.2904392182826996, 0.5783548951148987, -0.12114926427602768, 0.5112144947052002, 0.5417400002479553, 0.7411817312240601, -1.277944564819336, -1.030531406402588, -0.583619236946106, 0.3822464346885681, 1.764922857284546, 0.4689939320087433, 1.2107597589492798, -0.4335366189479828, -0.28484758734703064, -0.5107570290565491, -0.6430225372314453, -1.3349117040634155, -1.0198692083358765, -0.4483490586280823, -1.1730469465255737, -0.42495396733283997, -0.14339277148246765, -0.26585307717323303, 0.10828232765197754, -0.65129554271698, -0.09581306576728821, 1.1174039840698242, -0.7571277618408203, -0.6988934874534607, -0.3499908745288849, 0.295991450548172, -0.8052239418029785, 0.5018649697303772, 0.8110804557800293, -1.0301713943481445, -0.8471225500106812, 0.4082666337490082, 1.0679562091827393, 0.166042760014534, 0.06819602102041245, 0.09944837540388107, -1.069579005241394, -1.6686726808547974, -0.33129534125328064, 0.8520461320877075, 0.3874441087245941, -0.06479401141405106, -0.14316214621067047, 0.540101945400238, 0.533207893371582, -0.2598560154438019, 0.06117212027311325, 0.3194006085395813, -0.7696049213409424, -0.8222959637641907, -0.20213283598423004, 0.275243878364563, 0.3650932013988495, -0.7757343053817749, -0.3985053598880768, -0.7139220237731934, -0.4968910217285156, 0.314622163772583, 0.43558311462402344, 0.06729229539632797, 0.22818878293037415, -0.005573549307882786, 0.5623776316642761, 0.4286291301250458, 0.1972711980342865, 0.19405269622802734, -1.1714116334915161, 0.5749855041503906, 0.5498611927032471, 1.2010575532913208, 0.15435947477817535, 0.2835124731063843, -0.1037081703543663, 0.37874168157577515, 0.6013621687889099, -0.17020511627197266, 0.9875430464744568, -0.8913593292236328, -0.0985485389828682, -0.6495952606201172, -0.8131225109100342, 0.6880845427513123, -0.7444887161254883, 0.20035046339035034, -0.2447165995836258, -1.1488317251205444, -0.44867682456970215, 0.7467730045318604, 0.08143157511949539, -0.7003706097602844, -0.05948634818196297, 0.24733522534370422, 0.5738320350646973, -0.031079106032848358, 0.1797102689743042, -0.6791139841079712, 0.32734790444374084, -0.02150152064859867, -0.7413724064826965, -0.26626476645469666, -0.2750760018825531, -0.004936780780553818, 0.6449757218360901, -1.028645634651184, 0.8282738924026489, -0.9898528456687927, 0.5188798904418945, 0.2473926544189453, -0.47625449299812317, 0.019455600529909134, -0.27653491497039795, -0.10218163579702377, -0.30897635221481323, -0.42940783500671387, 1.387056589126587, 0.0454418919980526, -0.4228626787662506, 0.14542615413665771, -0.516144335269928, 0.2657078802585602, -0.947421133518219, 0.28477734327316284, 0.5115941762924194, -0.5618432760238647, -0.08576435595750809, -0.00734839029610157, -0.014887988567352295, 1.357040286064148, 0.22889479994773865, 0.46483179926872253, 0.7012513279914856, 0.6675369143486023, -0.7903061509132385, -0.25278565287590027, 0.5989140272140503, -0.12537306547164917, -1.1647443771362305, -0.3442292809486389, 0.46352434158325195, -0.3493458032608032, 0.09370069205760956, 0.07736802101135254, 0.5390288233757019, 0.8267472386360168, 0.06995870918035507, 0.23668713867664337, 0.44888007640838623, 0.45725950598716736, 1.2691644430160522, 0.4696802496910095, -0.5193207859992981, -0.6540495753288269, 0.3575949966907501, -1.3127256631851196, -0.1353350132703781, 1.1073081493377686, 0.06922940164804459, 1.1383512020111084, -1.8361396789550781, -0.9287346005439758, 0.41661858558654785, 1.134734869003296, 0.6065090298652649, 0.8230419158935547, -0.33219555020332336, 0.049869198352098465, 0.010097362101078033, 0.11176440119743347, -0.4122897684574127, 0.08544866740703583, 0.04715042561292648, -0.43808940052986145, 0.8352722525596619, -0.7120726108551025, 0.4739059805870056, -0.6960521936416626, -0.5480844378471375, -0.7166226506233215, -0.2557859718799591, 0.25538334250450134, 0.42263156175613403, 0.963606059551239, 1.5917400121688843, -1.2475541830062866, -0.95256108045578, 0.006846718490123749, -0.8701176643371582, -0.21891991794109344, -0.2769435942173004, -0.8235097527503967, -0.4863198697566986, -0.4772011935710907, -0.6999255418777466, 0.4545878469944, -0.25994178652763367, -0.3069852292537689, -0.663354754447937, -1.0713475942611694, 0.23521117866039276, 0.9140149354934692, 0.8082481622695923, 0.32853999733924866, 0.08455965667963028, 0.453046053647995, 0.1876763105392456, -0.7935534119606018, 0.21683280169963837, 0.8314127922058105, -0.0010655075311660767, 0.13221558928489685, -0.9504485130310059, -0.8595699071884155, 0.4895876348018646, -0.08147641271352768, -0.5495564937591553, 0.5499277114868164, 1.668487310409546, 1.3072469234466553, -0.3206758201122284, -0.6707075238227844, 0.5744227170944214, 0.0030412450432777405, 0.6345880627632141, 1.5937174558639526, 0.13015517592430115, 0.180909663438797, -0.19766011834144592, -1.4668744802474976, 0.7192792296409607, -0.6091943383216858, -0.33882272243499756, 1.0774890184402466, -0.2045612335205078, 0.7065176963806152, 0.27695807814598083, -0.3147781491279602, 0.5094406008720398, -0.19060885906219482, -0.04909399524331093, -1.7172019481658936, 0.3026179075241089, 0.5758471488952637, -0.19960781931877136, 0.40564262866973877, -0.3190062940120697, 0.16525138914585114, 0.16627709567546844, -0.01087743416428566, 0.38577771186828613, -0.09799675643444061, 0.6320804357528687, 0.2791161835193634, -0.6324554085731506, 0.8455808162689209, -0.7257494330406189, -0.20834386348724365, 0.06973284482955933, 0.5147117972373962, 0.7367081046104431, 0.07412607222795486, 0.07958044111728668, -0.656387209892273, -0.10512308776378632, -0.12031815201044083, -0.16910846531391144, 0.3611975610256195, 0.26182541251182556, 0.2864566743373871, 0.013658060692250729, -0.2483605146408081, -0.5149706602096558, -0.7625328302383423, 0.048627473413944244, 0.32158488035202026, -0.6152776479721069, 0.4591705799102783, 0.432455837726593, -0.43432947993278503, -0.9077098965644836, -0.22411386668682098, 0.3444506525993347, -1.3189808130264282, -1.3118603229522705, -1.585253357887268, 0.11282873153686523, 0.2985175549983978, -0.5928375720977783, 1.0349125862121582, 0.8199769258499146, -1.1782840490341187, -0.4660896956920624, -0.11086662858724594, -0.7005931735038757, 0.12676778435707092, -0.9094565510749817, 0.7750167846679688, -0.405620276927948, 0.056740060448646545, 0.4366927742958069, 1.0234378576278687, -1.3493624925613403, -1.4508998394012451, -1.4593558311462402, -0.8684606552124023, 1.2939869165420532, 1.4371286630630493, -0.4824727475643158, 1.323561191558838, 0.7575411200523376, -1.0024614334106445, -0.5401901006698608, 0.07147032022476196, -1.354429006576538, 0.14481014013290405, 0.44892939925193787, 0.34226056933403015, 0.3505999445915222, 0.8773180246353149, 0.6187853813171387, 0.30661603808403015, 0.3979608118534088, 0.5625551342964172, -0.6711690425872803, -0.7148498296737671, 0.006512897089123726, 1.1587624549865723, -1.3669781684875488, -1.0227391719818115, 0.10529989004135132, -1.1715482473373413, -0.2469838559627533, -0.10474289953708649, 0.4986596405506134, -0.5965245962142944, 0.7744195461273193, -0.3429756164550781, 0.5071191787719727, -0.9536019563674927, 0.832871675491333, 0.2532172203063965, -0.6117075681686401, -0.14937835931777954, 0.2549606263637543, 0.3831847310066223, -1.3166813850402832, 0.24507266283035278, 0.6208938956260681, -0.11481106281280518, -0.8437155485153198, 0.7557686567306519, 0.41818001866340637, 0.12047921121120453, -0.7605845332145691, 1.2283297777175903, 0.23318235576152802, -0.40575751662254333, -0.30343523621559143, 0.6593054533004761, -0.14735785126686096, 0.32035747170448303, -1.1815046072006226, 0.0715574398636818, -0.6242956519126892, 0.4311951994895935, -0.0235263891518116, 0.4077286124229431, 0.5292606353759766, -0.32979318499565125, -0.30428722500801086, 0.7187693119049072, 0.7143298983573914, -1.3625653982162476, 0.022489476948976517, 0.8428128361701965, 0.43577948212623596, -0.6592211723327637, 0.007940338924527168, 0.6678078174591064, 0.5233044028282166, -0.7758985161781311, -0.16862189769744873, 0.8584049940109253, -0.8004720211029053, 0.017479537054896355, 0.11333958059549332, -0.9035661816596985, -0.12674227356910706, 0.2517704963684082, -1.3688392639160156, 0.06238958239555359, -0.7229354977607727, -0.12154997140169144, 0.4985264539718628, -0.7181338667869568, -0.9547368288040161, 0.45033469796180725, 0.09360756725072861, 0.027290252968668938, -0.3985217809677124, 0.32462263107299805, 0.011072367429733276, 0.27018794417381287, 0.8860076069831848, -0.06287895143032074, 0.9002654552459717, 0.2316076159477234, 0.0800914540886879, -1.3785096406936646, 0.3654598295688629, 0.39949649572372437, 0.1305849552154541, -0.5630566477775574, -0.16057296097278595, 1.230103611946106, -0.20441487431526184, -0.46472328901290894, 0.04393124207854271, -0.15374502539634705, 0.4662737548351288, 0.6553093194961548, -0.21121856570243835, 0.036378584802150726, 0.43017473816871643, 0.7793532013893127, -0.7166167497634888, -0.3938788175582886, -1.1591767072677612, -0.6999900937080383, -0.4086032509803772, 0.691516637802124, -0.3388781249523163, 0.5498371124267578, 0.20490151643753052, -0.12315189838409424, -0.8725196719169617, -1.0046051740646362, 0.32423844933509827, -0.303398996591568, 0.8918642997741699, -0.3270428478717804, 0.7241486310958862, -1.0048141479492188, -0.5848613381385803, 0.31232887506484985, 0.2187877893447876, -0.005367844831198454, 0.3902353048324585, -0.902811586856842, -0.13357307016849518, -0.5679724812507629, 0.642339289188385, 1.9541614055633545, 0.2785508930683136, -0.4840880036354065, 0.38619372248649597, -1.4662747383117676, 0.13749557733535767, 0.14206397533416748, 0.348786860704422, 0.6533872485160828, 0.899563729763031, 1.5689808130264282, 0.692592978477478, 0.29089540243148804, 0.15581952035427094, -0.1330869048833847, -0.9928649067878723, -0.21103577315807343, -0.9459227919578552, -0.4454127252101898, -0.6383877396583557], [-0.66779625415802, 1.466428279876709, -2.473623275756836, -0.7163763642311096, 0.5780026912689209, 0.8596818447113037, 1.5623564720153809, -1.1469826698303223, 1.3360234498977661, -0.25216615200042725, -0.7450248003005981, -0.10228052735328674, 0.4118140935897827, 0.784013032913208, 0.5769762992858887, 0.09797906875610352, 0.4622395634651184, -0.6276650428771973, 0.7030085325241089, 1.2012939453125, -0.05014663562178612, -1.6747386455535889, -0.67880779504776, 1.1140966415405273, -0.9130373597145081, 0.017963223159313202, -0.851546585559845, 0.20844723284244537, -1.152552604675293, -0.48458313941955566, 0.9777645468711853, -0.835428774356842, 0.3591321110725403, 0.5873364210128784, -1.093095302581787, -0.8417372703552246, 1.5477426052093506, 0.6930631399154663, 0.9937337636947632, -0.6806766390800476, 1.83060622215271, 0.944358766078949, 1.0244632959365845, -1.1088488101959229, 0.7496278285980225, -0.06672839820384979, 1.284592628479004, -0.5228784084320068, -0.20491814613342285, -0.3518297076225281, -0.6392170190811157, -0.7634778022766113, 0.42853543162345886, 0.9852112531661987, 2.029064416885376, -0.23896504938602448, 0.6286330223083496, -0.028845565393567085, 0.5478798151016235, 0.0552411712706089, 1.3747215270996094, 0.14672183990478516, -0.38806745409965515, 1.3022146224975586, 0.4964568614959717, -0.023539744317531586, -0.3384307622909546, 0.4094006419181824, -0.09953860193490982, 0.10378514230251312, 0.7332692742347717, -0.425554096698761, -0.6551425457000732, -0.38780611753463745, -1.0664341449737549, 0.8497185707092285, -0.28844404220581055, 0.5216026306152344, -0.18844056129455566, -0.02678847312927246, -0.9911621809005737, 0.11183597147464752, 0.6941263675689697, -0.6337835192680359, 0.11651159077882767, 0.2609225809574127, 0.9997607469558716, -0.29473453760147095, 0.27065765857696533, 1.496870517730713, 0.12777245044708252, -0.020264897495508194, 0.7498364448547363, 0.17325395345687866, 0.2296803891658783, -0.23627352714538574, 0.24326586723327637, 0.36739107966423035, -0.17325358092784882, 0.10219091922044754, -0.6410292387008667, -0.7325649261474609, 0.19448815286159515, -0.1194128543138504, 0.09622058272361755, 1.2243356704711914, 0.06328275799751282, -0.24919870495796204, -0.8666797876358032, -0.6040714979171753, -0.5116852521896362, 0.6866747140884399, -0.9877806901931763, -1.3860379457473755, -0.7617284059524536, 1.1290416717529297, 0.40212202072143555, 0.8135378360748291, 0.9131261706352234, 0.14433898031711578, -0.7657248973846436, 0.6301443576812744, 0.33199459314346313, 0.6525587439537048, 0.2521269917488098, 0.8073084950447083, -1.0761066675186157, -0.42719706892967224, 0.36086249351501465, 0.2072123885154724, 0.1970377266407013, -0.4374654293060303, -0.022795800119638443, 0.6663200855255127, -0.5561825037002563, 1.377044677734375, -0.1260472983121872, -0.41731947660446167, -0.29899412393569946, 0.9471899271011353, 0.8420847654342651, -0.7887150049209595, -0.4564725160598755, -0.4130001664161682, -0.9272985458374023, -0.26180723309516907, 0.28240031003952026, 0.17928099632263184, -0.7441893815994263, 0.05015306547284126, -1.4384828805923462, 0.9113445281982422, 0.5764399766921997, 0.5372970104217529, 0.14237520098686218, -0.7432459592819214, 0.22346650063991547, -0.6050442457199097, 0.5499089956283569, 0.1860351413488388, 0.4533557593822479, 0.3552199602127075, -0.6236961483955383, 0.4950734078884125, 0.2494179904460907, 0.5122014284133911, 0.5907602310180664, 0.8871563673019409, -0.4857552647590637, 0.3099792003631592, -0.3597843050956726, -1.097723364830017, -1.0875321626663208, -0.0751541405916214, 0.7901515960693359, -0.7876083254814148, 0.8519693613052368, -0.5770999193191528, -1.4132130146026611, -0.7082281112670898, 0.19822096824645996, -0.5141773223876953, -0.06246728450059891, 0.2696168124675751, 0.6915346384048462, -0.5890437364578247, 0.4568566679954529, -0.6152578592300415, -0.4466504454612732, -0.625562310218811, -1.2521989345550537, -0.7721601128578186, -0.7397262454032898, -0.13341772556304932, -0.40623795986175537, -0.39903104305267334, 0.6686205863952637, -0.5473631024360657, -1.3256111145019531, 0.39674651622772217, -0.8477605581283569, -1.1882885694503784, -0.12538760900497437, 0.31230753660202026, -0.4932060241699219, 0.9927540421485901, -1.1407527923583984, 0.671029806137085, -0.6290278434753418, 0.5007150173187256, 1.7794824838638306, 0.293999046087265, -0.7882630825042725, 0.42894718050956726, 0.28707006573677063, -0.8617250919342041, -0.15374208986759186, 0.7255061864852905, 0.009762026369571686, 0.7717815041542053, -0.14723049104213715, -0.03240690752863884, 1.1103075742721558, -0.38162827491760254, 0.1673722118139267, -0.7370002865791321, -0.11825457215309143, -0.6360183954238892, -0.7790457010269165, 0.8624845743179321, -0.5207902193069458, -1.6639134883880615, 0.5641285181045532, 1.0790483951568604, -0.3337073028087616, 0.14132535457611084, 0.3907994329929352, 0.4409995377063751, 0.04479436203837395, 1.3680553436279297, 0.5242494344711304, 0.7979038953781128, 0.4131680428981781, -0.569736123085022, -0.3653041124343872, 0.6664966940879822, 0.9169589281082153, -0.2630779445171356, -0.5712668895721436, 0.5724053382873535, 1.0868052244186401, 0.6821948289871216, 0.2538156509399414, -0.11641718447208405, -0.18882465362548828, -0.8954699635505676, -0.977588415145874, 0.2775183320045471, -1.2643344402313232, 1.4050116539001465, 1.3053982257843018, -1.049560308456421, -0.4529210031032562, 0.018757354468107224, 0.6444059610366821, -0.11939865350723267, -1.1929714679718018, 0.08894072473049164, -0.721686601638794, 0.28068551421165466, -0.06278404593467712, -0.15641608834266663, -0.43896856904029846, 0.7796638607978821, -0.04580143094062805, -0.9376187324523926, -0.13811475038528442, 0.9311455488204956, 0.33336979150772095, 0.8022321462631226, -0.09474749118089676, -1.3221979141235352, -0.4897271990776062, 0.9542137384414673, 0.9933292269706726, 0.7291595339775085, 0.6105418801307678, 0.5612690448760986, 0.8052396774291992, 0.03231767565011978, 0.30433857440948486, 1.1168442964553833, 0.49067676067352295, 0.3454950749874115, 0.4386521875858307, -0.012131684459745884, 0.8459866642951965, -0.9427940845489502, -1.1927709579467773, -0.6513000726699829, 0.11742348968982697, 1.4746578931808472, 0.7125788927078247, 1.111897587776184, -0.3995770812034607, -0.0886775329709053, -0.04139026254415512, -1.2879374027252197, -0.6069075465202332, -1.5338008403778076, -0.6699970960617065, -0.5509722232818604, -0.6219290494918823, 0.0311080701649189, -0.4799441695213318, 0.5751080513000488, -1.1004687547683716, 0.1692611277103424, 1.0956568717956543, -0.29666197299957275, -0.3107473850250244, 0.05954547971487045, 0.07736224681138992, -0.5536625385284424, 0.18371543288230896, 0.6363871097564697, -1.0666813850402832, -1.218045949935913, -0.31808823347091675, 0.6384227275848389, 0.13499459624290466, -0.05430150777101517, 0.4315120577812195, -1.146178960800171, -1.1135210990905762, -0.37393033504486084, 0.5990439653396606, 0.33142828941345215, -0.5908933877944946, -1.0192523002624512, 0.3673946261405945, 0.3668447434902191, -0.17264461517333984, -0.1652301400899887, 0.6187471151351929, -0.3368317186832428, -0.9433462023735046, -0.7076496481895447, 0.991280734539032, 0.7497068643569946, -0.9748120307922363, -0.17182284593582153, -0.8490498065948486, -0.34343546628952026, -0.7005923986434937, 0.4768105149269104, -0.3536722660064697, 0.858721137046814, 0.6308069229125977, 0.07451348006725311, 0.5730563998222351, -0.2692677080631256, -0.2279714047908783, -1.7642462253570557, 0.08503679186105728, 1.1517804861068726, 0.5035422444343567, -0.018260899931192398, 0.8233175277709961, 0.5435835123062134, -0.1518624722957611, 0.458902508020401, 0.10078997910022736, 0.9904215335845947, -0.40616294741630554, 0.09930659830570221, 0.13520193099975586, -1.0054819583892822, 0.315424382686615, -0.8735649585723877, -0.12685798108577728, 0.5522365570068359, -1.2803494930267334, 0.05506100133061409, 0.9024239182472229, 0.31070154905319214, -0.33702290058135986, -0.3103194832801819, -0.05219563841819763, 0.8429470062255859, 0.04745333641767502, 0.7118667364120483, -0.616527259349823, 0.025024207308888435, -0.028798475861549377, -1.2992581129074097, 0.1862829029560089, -0.29177361726760864, -0.33357810974121094, 1.1683533191680908, -0.9295947551727295, 0.2972900867462158, -1.5699801445007324, 0.3781334161758423, 0.41373544931411743, 0.47004979848861694, 0.18351268768310547, -0.48818308115005493, -0.002622801810503006, -0.33808308839797974, 0.08303897827863693, 1.1167590618133545, 0.10886207967996597, -0.7313284277915955, 0.1265181601047516, 0.2535783648490906, -0.008026525378227234, -0.22574613988399506, 0.09178080409765244, 0.6484111547470093, -0.7569875717163086, -0.3169827461242676, -0.3153819739818573, -0.23211820423603058, 1.0372105836868286, -0.09495460987091064, 1.189395785331726, 1.007737398147583, 0.36398351192474365, -1.7017326354980469, 0.11356242746114731, 0.5199488401412964, -0.3113563060760498, -1.0826377868652344, -0.02410171926021576, 0.207854226231575, -0.5967763662338257, 0.40467679500579834, -0.35269343852996826, 0.7349250316619873, 0.4109618067741394, -0.32601407170295715, -0.1824963539838791, 0.24989445507526398, 0.845279335975647, 0.7531486749649048, -0.25769442319869995, -0.991718053817749, -0.5723023414611816, 0.5052703619003296, -1.354986310005188, 0.3773457705974579, 0.905022144317627, -0.2337179034948349, 1.2607183456420898, -2.1013102531433105, -1.6201558113098145, 0.2041245698928833, 0.5751357078552246, 0.5643775463104248, 0.3658396601676941, -0.31990134716033936, -0.10676012933254242, 0.09036478400230408, -0.29201772809028625, -0.22590306401252747, 0.14388322830200195, -0.6548656225204468, 0.2592998743057251, 0.807917594909668, -0.9389603137969971, 0.050938092172145844, 0.04773463308811188, -0.4475420117378235, -0.7590783834457397, -0.7878730297088623, 0.7346256971359253, 0.4389203190803528, 0.7312896251678467, 1.2488840818405151, -0.6433141827583313, -0.7029340863227844, 0.4730544090270996, -0.5090159177780151, 0.47467559576034546, -0.47646379470825195, -0.8451712727546692, -0.7938362956047058, -0.06012686342000961, -1.1834659576416016, 0.6042486429214478, -0.8788620233535767, 0.02370700240135193, -0.43523842096328735, -1.6740589141845703, -0.07850432395935059, 1.264250636100769, 0.5702364444732666, 0.4607836604118347, -0.3572998642921448, 0.4400746822357178, 0.8493756055831909, -0.6376947164535522, 0.010575419291853905, 0.027643254026770592, -0.1419578194618225, 0.7399729490280151, -1.3935697078704834, -0.5951196551322937, 0.4818279445171356, -0.14599934220314026, -0.19715647399425507, 0.6021921634674072, 1.335897445678711, 1.8086233139038086, -0.12956151366233826, -0.7382875084877014, 0.38937145471572876, 0.3890422582626343, 0.7107069492340088, 0.7149866819381714, -0.08880087733268738, -0.6085289716720581, -0.2440224289894104, -0.9655073881149292, 0.5019824504852295, -0.521557092666626, -0.5415818095207214, 1.1860923767089844, -0.40723586082458496, 0.877849817276001, 0.03669285774230957, -0.32708895206451416, 0.31085705757141113, -0.41014307737350464, 0.8864033222198486, -1.5674124956130981, 0.7385305166244507, 0.5778843760490417, -0.3617376983165741, 0.04179622232913971, -0.3668766915798187, -0.18311913311481476, -0.38290488719940186, 0.2867165803909302, 1.0544365644454956, -1.2276043891906738, 0.18536821007728577, 0.5779471397399902, -0.41290533542633057, 0.9749758839607239, -0.8277443051338196, -0.21152833104133606, -0.3119611144065857, 0.7540050745010376, 0.8720771074295044, 0.34786707162857056, 0.16258743405342102, -0.51732337474823, -0.33273738622665405, -0.0690658688545227, -0.28157004714012146, 0.509804368019104, 0.5795417428016663, 0.08081594109535217, 0.2522706985473633, 0.07805527746677399, -0.6612811088562012, -0.7216161489486694, -0.3090774714946747, -0.3370996117591858, -0.8550432920455933, 0.154556006193161, -0.14781217277050018, -0.7384634017944336, -0.7252282500267029, -0.19544169306755066, 0.5042917728424072, -1.1194722652435303, -0.9682430624961853, -1.0882810354232788, -0.11561088263988495, 0.4691859483718872, -0.5966061353683472, 1.154813528060913, 0.8215770721435547, -0.8276766538619995, 0.2643594741821289, -0.6772134304046631, -0.5162532925605774, -0.18192854523658752, -0.8303681015968323, 0.44830459356307983, -0.32883840799331665, 0.3461059331893921, -0.04817872494459152, 0.4584670066833496, -1.7094218730926514, -1.1450119018554688, -0.7507786750793457, -1.1112971305847168, 0.8564555048942566, 0.5174341201782227, -0.9976276755332947, 1.4675369262695312, 1.145033597946167, -0.5672250986099243, -0.4940865635871887, 0.7860617637634277, -1.4542162418365479, -0.38847702741622925, 0.2736087441444397, 0.8158752918243408, 0.8874438405036926, 0.8657509088516235, 0.9946974515914917, 0.7140723466873169, 0.38469964265823364, -0.014835212379693985, -0.529238760471344, -0.023833852261304855, 0.40733444690704346, 1.1555432081222534, -1.155447006225586, -0.1516837775707245, 0.26837486028671265, -0.7456594705581665, -1.0944185256958008, 0.4402354955673218, 0.7948178648948669, -0.771084725856781, 0.8129792213439941, -0.5537118315696716, 0.8894999623298645, -0.3274739980697632, 0.633736789226532, -0.16712462902069092, -0.01162879541516304, -0.20789995789527893, -0.14840465784072876, 0.48790454864501953, -0.6846679449081421, 0.48850753903388977, 0.6073611974716187, 0.41751930117607117, -1.4828133583068848, 0.4962994456291199, 0.7944141626358032, 0.5918810367584229, -1.0441274642944336, 1.9572336673736572, 0.9875501394271851, -0.020123014226555824, -0.06830427050590515, 0.3118765354156494, -0.714661717414856, 0.8407204151153564, -0.810705304145813, 0.6509759426116943, -1.3929359912872314, -0.08926346153020859, 0.7190914154052734, -0.4094175696372986, -0.3129809498786926, 0.047602780163288116, -0.5128254890441895, 0.23643702268600464, -0.007344815880060196, -1.2184717655181885, -0.6862727403640747, 0.8598236441612244, 0.058102041482925415, -0.4869982600212097, 0.47120702266693115, 0.3937671184539795, -0.0490233451128006, -0.7127472162246704, 0.09035497158765793, -0.15329158306121826, -0.7333644032478333, 0.20721599459648132, 0.7891616821289062, -0.3159976005554199, -0.0339713878929615, -0.2505388855934143, -0.9386190176010132, -0.3246046304702759, -1.2344937324523926, -0.6524726152420044, 0.4074532389640808, -0.5182779431343079, -0.5497271418571472, 0.5947182178497314, 0.5611007213592529, 0.1980554610490799, -0.35458219051361084, 0.6402867436408997, 0.2233368307352066, -0.21281544864177704, 0.5791125297546387, -0.984061062335968, 1.158189058303833, 0.31057512760162354, -0.11898893117904663, -0.8323707580566406, 0.546367347240448, 0.22967103123664856, 0.2792881727218628, -0.5291004180908203, -0.1017252579331398, 0.9548085927963257, -0.1431080400943756, 0.019173335283994675, 0.38813936710357666, 0.926281750202179, 0.02865215763449669, 0.06447792053222656, -0.5912116169929504, 0.21656107902526855, 0.5823687314987183, 1.2095520496368408, -0.37325915694236755, -0.7848214507102966, -0.8437412977218628, 0.2844945788383484, -0.2050340175628662, -0.33349159359931946, -0.11145766079425812, 0.5877496004104614, 0.03972615674138069, -0.5936481952667236, -0.8312743306159973, -1.0770012140274048, 0.7506214380264282, -0.023052439093589783, 0.8953595757484436, -0.19572225213050842, 0.7995092868804932, -0.458540141582489, -0.16953253746032715, 0.24240350723266602, 0.8495239019393921, 0.27892521023750305, 0.3841565251350403, -1.000880479812622, 0.10030940920114517, -0.5701937079429626, 0.8165591955184937, 1.3592627048492432, 0.028186410665512085, -0.3408563435077667, 0.33170169591903687, -1.7614020109176636, 0.37551349401474, 0.6141406297683716, 0.6761966347694397, 0.4964357614517212, 1.0091192722320557, 1.6835110187530518, 0.14446184039115906, 0.23470818996429443, 0.19917786121368408, 0.42881786823272705, -0.27261704206466675, -0.5058780908584595, -0.5203368067741394, 0.007899092510342598, -0.9193413257598877], [0.37126389145851135, 0.7837615013122559, -2.0880420207977295, -0.7588868737220764, 1.235088586807251, 0.6394997835159302, 1.4680477380752563, 0.1792016178369522, 0.04811519756913185, -0.46288856863975525, -0.25751790404319763, 0.16694504022598267, 0.10064936429262161, 1.059500813484192, 0.2701084017753601, 0.5792558193206787, 0.4116705060005188, -0.15788516402244568, 0.6431716680526733, 0.9866926074028015, -0.20852629840373993, -0.26683586835861206, -0.17162685096263885, 0.2758355736732483, -0.9677531123161316, 0.7685322761535645, -1.487020492553711, -0.47825098037719727, -1.2607125043869019, -0.49116912484169006, 1.595752239227295, -1.590610384941101, 0.31670939922332764, -0.032828863710165024, -1.3630343675613403, -0.6603176593780518, 0.9947633743286133, 0.7111157774925232, 0.21315784752368927, 0.11327557265758514, 1.369202733039856, 0.49630308151245117, 0.5359598398208618, -1.3155325651168823, 0.1844608336687088, 0.7356588840484619, 1.1463035345077515, -0.8312036991119385, 0.45054927468299866, -0.3461209833621979, 0.4968893826007843, -0.16559390723705292, 0.851677417755127, 0.8373664617538452, 1.8657217025756836, 0.6605831384658813, 0.762627363204956, 0.07996512949466705, 0.7985517382621765, -0.18302379548549652, 1.2248749732971191, 0.11167632788419724, -0.5765891075134277, 0.9425263404846191, 0.12604908645153046, -0.07382333278656006, -0.6158741116523743, 0.7873197197914124, -0.1798805594444275, 0.4102642238140106, 1.0609372854232788, 0.008445636369287968, -1.1476356983184814, 0.5229973196983337, -1.4489128589630127, 0.25160181522369385, 0.5521760582923889, 0.6486573815345764, 0.5585989356040955, 0.4688626229763031, -1.0042457580566406, -0.005600964650511742, 0.8917155861854553, -0.40273576974868774, 0.23360459506511688, 0.31421956419944763, 0.8795767426490784, -0.5779563188552856, -0.5254203081130981, 1.713843822479248, 0.5527029037475586, 0.33121147751808167, 0.19513735175132751, -0.5325117111206055, 0.3638715445995331, -0.4348384737968445, 0.10076826065778732, -0.19818338751792908, -0.5888631343841553, -0.6025227308273315, -0.9603238105773926, -0.6904994249343872, -0.11263029277324677, -0.5290282964706421, 0.14755211770534515, 1.3509122133255005, 0.17474476993083954, -0.20959804952144623, -0.01925492472946644, -0.3292739987373352, -1.0951220989227295, 0.43473681807518005, -0.1586010903120041, -1.0102291107177734, -0.8040294647216797, 0.7286302447319031, 1.3195332288742065, 0.1632343977689743, 1.1080615520477295, 0.22741976380348206, -0.7953951954841614, 0.7961412668228149, 0.5693334937095642, 0.9949020147323608, 1.0738977193832397, 0.26444801688194275, -0.7146570086479187, -1.2480463981628418, 0.593330979347229, -0.19280822575092316, 0.09552620351314545, -0.1646658331155777, 0.21416817605495453, 0.7165212631225586, -0.20174957811832428, 1.263795256614685, 0.5860029458999634, -0.5750846862792969, -0.13639552891254425, 0.6608325839042664, 0.6994683146476746, -0.5069286823272705, -0.04615626484155655, -0.8280550837516785, 0.010339395143091679, -0.7774460315704346, 0.5258895754814148, -0.5309541821479797, -0.8278527855873108, -0.10993457585573196, -0.9154518842697144, 0.4677765667438507, 0.46318519115448, 1.000357747077942, 0.05614568665623665, -0.36497098207473755, 0.5363768935203552, -0.35468220710754395, 1.3634532690048218, -0.02987096458673477, 0.4448096454143524, 0.8138163089752197, -0.6703888773918152, 0.8664292693138123, 0.16348017752170563, -0.5829866528511047, 0.1029365286231041, 0.8104737401008606, 0.39168283343315125, 0.7821223735809326, -0.1933576613664627, -0.6337884664535522, -0.2750796675682068, 0.37205415964126587, 0.2026793211698532, -0.1145460307598114, 1.502297043800354, -1.148855209350586, -0.9122157692909241, -0.6726477742195129, 0.2982650101184845, -0.48625844717025757, 0.018217675387859344, 0.15715470910072327, 0.7697468996047974, -0.5027431845664978, 0.1610376536846161, -0.0013555348850786686, -0.8703799247741699, -0.7386263608932495, -1.1441400051116943, -0.9739400148391724, -1.1030465364456177, 0.24291832745075226, -0.3932051360607147, -0.84852534532547, 0.7108449339866638, -0.5553702116012573, -0.46129918098449707, 0.19555599987506866, -0.13979093730449677, -0.3987445533275604, -0.46341055631637573, 0.404514342546463, -0.9094218611717224, 0.6950744986534119, -1.2263184785842896, 0.8591099977493286, -0.9570420384407043, 0.36826011538505554, 1.2294296026229858, 0.0665750801563263, -0.5163195133209229, 0.8203869462013245, -0.08385300636291504, -1.0334771871566772, 0.699844241142273, 0.5044094920158386, -0.22276528179645538, 0.27593857049942017, -0.18901848793029785, 0.4795989394187927, 0.2363101989030838, 0.028389349579811096, 0.05918004736304283, -0.48108986020088196, -0.3277285099029541, -1.1404242515563965, -0.5040777325630188, 0.30546119809150696, -0.7959675192832947, -1.3134218454360962, 1.3107082843780518, 0.6495463252067566, -0.789779543876648, 0.22077499330043793, 0.10508761554956436, 0.05771300569176674, -0.15920007228851318, 1.0304292440414429, 0.5552675724029541, 0.697299063205719, -0.04564935714006424, 0.2053457647562027, -1.022664189338684, 0.1293352097272873, 1.2087180614471436, -0.7002946138381958, -0.11644338071346283, 1.0644334554672241, 0.4015239477157593, 0.9190592765808105, 0.15440142154693604, 0.12267757207155228, 0.17925363779067993, -0.27222582697868347, -0.8998188972473145, -0.022267960011959076, -0.6255636215209961, 1.2961969375610352, 0.8988956809043884, -0.5301932692527771, -0.6603351831436157, 0.07633382827043533, -0.43799299001693726, -0.12557710707187653, -0.9342699646949768, -0.1892499178647995, -0.28184637427330017, -0.15694138407707214, -0.16584742069244385, 0.5860083699226379, 0.003186926944181323, 0.4293102025985718, 0.06386790424585342, -0.4255285859107971, -0.6828998327255249, 0.46882036328315735, -0.02156403474509716, 0.9938297271728516, -1.067525029182434, -1.2028499841690063, -0.5880053043365479, 0.21615248918533325, 1.222118854522705, 0.05374835431575775, 0.24448835849761963, 0.6660608649253845, 1.027146577835083, -0.15842777490615845, -0.09098254144191742, 1.1712063550949097, -0.07076731324195862, 0.24074803292751312, 0.27661508321762085, -0.07382220774888992, 1.1455752849578857, -0.8866199851036072, -1.4610393047332764, -0.8302465677261353, 0.7033702731132507, 1.360188603401184, 1.0261270999908447, 0.7394004464149475, -0.4913482964038849, -0.11752370744943619, -0.36506959795951843, -0.2950611412525177, -0.5064151883125305, -1.3092421293258667, -1.1046452522277832, -0.7214487195014954, -0.39546242356300354, -0.030075950548052788, -0.043833840638399124, 0.7541297674179077, -0.17520342767238617, 1.1670310497283936, 1.089394450187683, -0.4607575535774231, -0.2641187310218811, 0.1871170997619629, 0.10280314832925797, -0.64613938331604, 0.6181307435035706, 0.3878871500492096, -1.1958975791931152, -1.103858470916748, -0.5346891283988953, 0.38759171962738037, 0.7857164740562439, -0.2080487459897995, 0.18105341494083405, -1.0829285383224487, -0.8181836605072021, -0.5725480914115906, 0.43496909737586975, -0.6484829187393188, -0.00868045911192894, -0.7802608013153076, 0.6299617886543274, 0.6543054580688477, 0.20680750906467438, -0.5621485114097595, 0.6819249391555786, -0.24281856417655945, -0.9198704957962036, -0.06849287450313568, 0.44778746366500854, 0.5111603140830994, -0.5211231708526611, -0.1252596527338028, -0.09287356585264206, -0.6573967933654785, -0.4856627285480499, 0.48612597584724426, 0.4003094732761383, 0.5407381653785706, -0.058961931616067886, 0.10681300610303879, 0.7824077606201172, -0.2758081257343292, -0.2550637125968933, -1.2225114107131958, 0.44809916615486145, 0.22706806659698486, 0.5662025213241577, 0.33714181184768677, 0.473732054233551, 0.2378183901309967, -0.6159284114837646, 0.4753240942955017, -0.15945124626159668, 0.8430927395820618, -0.671436071395874, -0.4661659002304077, -0.057938236743211746, -0.30120086669921875, 0.046863406896591187, -0.7669684886932373, -0.3612707853317261, 0.1378912627696991, -1.0316158533096313, -0.3467460870742798, 0.7922822833061218, 0.7094976305961609, -0.498473197221756, -0.5164145827293396, -0.1275794506072998, 1.4253652095794678, -0.01078291330486536, 0.36340010166168213, -0.4474063217639923, -0.08053357899188995, 0.39625078439712524, -1.0711692571640015, -0.07635865360498428, 0.42052778601646423, -0.6968849897384644, 0.7428817749023438, -1.7758657932281494, 0.4612374007701874, -0.5084996223449707, 0.363979309797287, 0.19919753074645996, -0.024587005376815796, 0.4571266770362854, 0.12467038631439209, 0.12736426293849945, 0.1727534830570221, 0.10562735050916672, 1.5517973899841309, -0.6320797801017761, -0.6911035180091858, -0.26111993193626404, 0.10917109251022339, -0.15089505910873413, -0.6398153901100159, -0.1980615109205246, 0.34242069721221924, -0.2293481081724167, -0.38193535804748535, 0.029821308329701424, -0.48704949021339417, 1.5401854515075684, -0.008868497796356678, 0.6482992768287659, 0.8878554105758667, 0.27975767850875854, -0.4793838560581207, -0.16121715307235718, -0.08210653066635132, -0.04513199254870415, -0.9007839560508728, -0.5487270951271057, 0.48810604214668274, 0.18670415878295898, 0.38172489404678345, -0.32292112708091736, 0.772001326084137, 0.5760085582733154, 0.1230907067656517, -0.40204057097435, 0.23140670359134674, 0.5133352875709534, 1.1313186883926392, 0.5150042176246643, -0.19572865962982178, -0.3381222188472748, 0.7217987179756165, -1.0490645170211792, 0.3601731061935425, 0.9264348149299622, -0.39157891273498535, 1.638232707977295, -1.9428824186325073, -1.1593682765960693, 0.688587486743927, -0.013487596996128559, 0.494163453578949, 0.8696147203445435, 0.45416340231895447, -1.0971566438674927, 0.4631153345108032, -0.013432592153549194, -0.24890664219856262, 0.7552162408828735, -0.48662975430488586, 0.580401599407196, 0.39074763655662537, -0.7788780927658081, 0.4662535786628723, -0.266048401594162, -0.3846413791179657, -0.10676097869873047, -0.012154252268373966, 0.2730866074562073, 0.5868884921073914, -0.10138362646102905, 1.1172157526016235, -0.9415811896324158, -0.8370080590248108, 0.6413023471832275, -0.9473183155059814, -0.04832611232995987, -0.15467359125614166, -0.6485349535942078, -0.06204894557595253, -1.3430718183517456, -0.21236172318458557, 0.5433341860771179, -0.604543149471283, -0.8796687126159668, -0.3952445387840271, -1.3510264158248901, -0.1479892134666443, 1.4081803560256958, 0.9289931654930115, 0.15737831592559814, 0.03898801654577255, 0.19201558828353882, 0.5369185209274292, -0.4666757583618164, -0.23874109983444214, 0.17199711501598358, -0.09364590793848038, 0.27011361718177795, -1.4233142137527466, -0.73832768201828, 0.9515516757965088, 0.43310022354125977, -0.4140307903289795, 0.20771047472953796, 1.096967101097107, 0.6294011473655701, -0.5008636116981506, -0.68630051612854, 0.7675292491912842, -0.6173820495605469, -0.06266728788614273, 0.38710683584213257, -0.3170788884162903, -0.3465158939361572, -0.3820890486240387, -1.680869698524475, 0.9104282259941101, -0.29422497749328613, -0.5127888321876526, 1.409631609916687, 0.03774047642946243, 0.4306962788105011, 0.4662935733795166, 0.11695072799921036, 0.30591103434562683, -0.07313480973243713, -0.02645448036491871, -1.2278375625610352, 0.6136726140975952, 0.31187042593955994, 0.4304606020450592, -0.13666854798793793, 0.9010434746742249, -0.3706202507019043, -0.19755230844020844, -0.405109167098999, 0.7491549253463745, 0.16773074865341187, 0.5460847020149231, -0.13693514466285706, -1.1117541790008545, 0.45699143409729004, -0.9878929257392883, -0.20523466169834137, -0.0635092556476593, 0.2941643297672272, 0.6863297820091248, -0.20510461926460266, -0.3356385827064514, -0.523530125617981, -0.06897177547216415, 0.11060810834169388, -0.60885089635849, 0.7223570942878723, 0.533807098865509, 0.0588577538728714, -0.10193531960248947, -0.11228933185338974, -0.17838160693645477, 0.14700505137443542, 0.10754063725471497, 0.3274797797203064, -1.1347179412841797, 0.44465371966362, -0.35159793496131897, -0.5377413630485535, -0.10863450914621353, -0.334865540266037, 0.5212100744247437, -1.055786371231079, -1.3473355770111084, -1.1952106952667236, 0.8027698993682861, 0.7231080532073975, -0.6980106830596924, 0.554046630859375, 0.4468895494937897, -1.7898436784744263, -0.43469610810279846, 0.27021390199661255, -0.7107574343681335, 0.1606658697128296, -1.0589088201522827, 0.6734235882759094, -0.5144889950752258, 0.4543992877006531, -0.2702443301677704, 1.4987528324127197, -1.5829541683197021, -1.5158737897872925, -1.2047632932662964, -0.4390794336795807, 0.8184471130371094, 0.5883077383041382, -0.8285977244377136, 1.371700644493103, 0.6221399903297424, -0.7929818630218506, -0.532993733882904, -0.03777867183089256, -0.8371410369873047, 0.7470313906669617, 0.11759065836668015, 1.3062745332717896, 0.016925107687711716, 1.0001469850540161, -0.5195983648300171, 0.5404593348503113, 0.6662275791168213, 0.8064427971839905, -0.26640066504478455, 0.04157977178692818, 0.05923767760396004, 0.666826069355011, -0.9214720129966736, -0.3794407844543457, -0.10929951816797256, -0.6141029596328735, -1.0760493278503418, 0.734032928943634, 0.6030362844467163, -1.4450829029083252, 0.16858047246932983, -0.8466289043426514, 0.21950998902320862, -0.24534974992275238, 0.7631766200065613, 0.19931797683238983, -0.6778449416160583, -0.24097777903079987, -0.5452777147293091, 0.2337120622396469, -1.1505126953125, -0.2857121229171753, 0.34735625982284546, 0.2992924451828003, -0.9556368589401245, 0.7436067461967468, 0.6472596526145935, -0.0676969587802887, -1.4291832447052002, 1.5486211776733398, 1.2763817310333252, -0.011301005259156227, -0.427224338054657, 0.15274085104465485, 0.4285111725330353, 0.7573146224021912, -1.1816314458847046, 1.0397993326187134, -0.9158259034156799, 0.11372324079275131, 0.4356127381324768, -0.691055953502655, -1.0043143033981323, -0.26421016454696655, -1.00931715965271, 1.1223760843276978, -0.006009859032928944, -0.7259754538536072, -0.339509516954422, 0.8672857880592346, -0.003265539649873972, -0.4582866430282593, 0.20875787734985352, 0.7240942716598511, 0.10688062757253647, -0.18466047942638397, -0.0827069953083992, 0.765788733959198, -1.0190247297286987, 0.09210189431905746, 0.5019468069076538, -0.023701580241322517, 0.2540932595729828, -0.3953944444656372, -1.2246569395065308, 0.2980775535106659, -0.9662740230560303, -1.055336594581604, 0.34765610098838806, -0.6747982501983643, -1.3924530744552612, 0.8165743350982666, 0.2889444828033447, -0.5074744820594788, -0.22149495780467987, 0.7800756692886353, -0.22422684729099274, 0.24522413313388824, 0.0850445032119751, -0.3012438118457794, 0.36056220531463623, -0.03980916365981102, -0.2550833523273468, -0.6107678413391113, 0.2724355459213257, 0.22125451266765594, 0.029604393988847733, -0.4513702094554901, -0.196455180644989, 0.3941453993320465, -0.06226968765258789, -0.5007581114768982, 0.38451090455055237, 0.2199459969997406, 0.3902153968811035, 0.12200167775154114, -0.8759517669677734, -0.28093162178993225, 1.3983234167099, 0.7789929509162903, -0.14227207005023956, -0.6815221309661865, -0.2689324617385864, 0.21006765961647034, -0.610990047454834, 0.6535589694976807, 0.5813549757003784, 0.29080304503440857, -0.09040916711091995, -0.5673455595970154, -0.01888432912528515, -1.3181904554367065, -0.2388005405664444, 0.24408243596553802, 1.594740629196167, -0.0031498621683567762, 0.14600776135921478, 0.02451280690729618, -0.8076131939888, 0.32967081665992737, 0.41625991463661194, 0.37867605686187744, -0.15436090528964996, -1.2426459789276123, -0.6638695001602173, -0.31805774569511414, 0.2512746751308441, 1.4534170627593994, -0.13443219661712646, -0.07608607411384583, 0.2684510350227356, -1.058003544807434, 0.5223305225372314, -0.15161781013011932, 0.20134909451007843, -0.42878684401512146, 1.1257447004318237, 1.253887414932251, -0.07418952137231827, 0.5787588357925415, -0.17128169536590576, 1.0042062997817993, -0.48845645785331726, -0.28350475430488586, -0.40624764561653137, -0.5574509501457214, 0.17206445336341858], [-0.3325466513633728, 1.1475677490234375, -1.857102870941162, -0.10603530704975128, 1.1548213958740234, 1.0030806064605713, 0.7290997505187988, -0.1928452104330063, 0.9990417957305908, -0.561362087726593, -0.6647506356239319, 0.4353960156440735, 0.5952239036560059, 1.113531231880188, 0.11834748089313507, 0.3473484516143799, -0.16518376767635345, 0.2190011590719223, 0.8961648941040039, 0.8127540946006775, 0.4414004981517792, 0.21200232207775116, 0.36203667521476746, 0.46758201718330383, -0.6254160404205322, 0.7178063988685608, -1.254713773727417, -0.5394311547279358, -0.6504813432693481, -0.6517241597175598, 1.5257506370544434, -1.039556622505188, 0.3397528827190399, 0.3960466980934143, -1.1581602096557617, -0.23564577102661133, 0.9668089151382446, 0.7385161519050598, 0.7678337097167969, 0.32219573855400085, 1.6273547410964966, 0.08742201328277588, 0.02748572826385498, -1.5556319952011108, -0.7725619673728943, 0.45768460631370544, 0.5930878520011902, -0.8788565993309021, 0.09394339472055435, -0.36220496892929077, 0.2218918651342392, -1.1411023139953613, 0.4804348349571228, 1.4336048364639282, 1.1330254077911377, -0.04331769421696663, 1.0100468397140503, 0.24545007944107056, 0.20263932645320892, -0.6365178227424622, 1.3012347221374512, 0.00878587830811739, -1.1129341125488281, 1.3519766330718994, -0.20517657697200775, 0.05422469601035118, -0.2543560564517975, 0.23228950798511505, 0.11836415529251099, 0.5018129944801331, 0.9919214248657227, -0.2789636552333832, -0.991411030292511, 0.5467459559440613, -1.2324378490447998, 0.12732386589050293, 0.8139355182647705, 1.1240776777267456, 1.0938713550567627, 0.772696852684021, -0.5906627178192139, 0.44002750515937805, 0.3892833888530731, -0.1467302143573761, -0.2001507580280304, 0.8299294114112854, 0.3108998239040375, -0.5656330585479736, -0.32886675000190735, 2.082085609436035, 0.27655041217803955, 0.18156886100769043, 0.039682816714048386, -0.7236434817314148, -0.10680259019136429, -0.7762575745582581, 0.23292076587677002, 0.08662277460098267, -0.5677726864814758, -0.6656434535980225, -0.4377673864364624, -0.41319364309310913, 0.5930804014205933, -0.7098953723907471, 0.8902527689933777, 0.7929258942604065, 0.3870266079902649, 0.06553537398576736, -0.4179306626319885, -0.5883084535598755, -0.7183752059936523, 1.1290593147277832, -0.22426949441432953, -0.6063455939292908, -0.8627788424491882, 0.23425403237342834, 0.7843374013900757, -0.019688595086336136, 0.6475968956947327, -0.03672373667359352, -0.6886370778083801, 0.29458582401275635, -0.03967787325382233, 0.9899882078170776, 1.0568506717681885, 0.3598072826862335, -0.23229482769966125, -0.2827753722667694, 0.6081237196922302, 0.24533826112747192, 0.2428569346666336, -0.3786182105541229, 0.009220506995916367, 1.0439201593399048, -0.2885611355304718, 1.4221818447113037, 0.2114037573337555, -0.5058985352516174, -0.13690729439258575, 0.167189821600914, 0.6054229736328125, 0.11053558439016342, -0.28312721848487854, -0.5709908604621887, -0.23867465555667877, -0.44311168789863586, 0.2736858129501343, -0.6004495620727539, -0.8371387720108032, 0.008547456935048103, -0.6610527038574219, 0.18318451941013336, 0.004859474953263998, 0.9655944108963013, 0.27057480812072754, 0.19532880187034607, 0.4763464629650116, -0.11316367983818054, 1.0670950412750244, 0.14273063838481903, 0.4095790982246399, 0.321656197309494, -0.4613288938999176, 0.9735644459724426, 0.04911895841360092, -0.1719294637441635, 0.28569960594177246, 0.5078704357147217, -0.05494432523846626, 1.1396565437316895, -0.09199491888284683, -0.8574458956718445, -0.36218246817588806, 0.5306826233863831, 0.6979961395263672, -0.5512257218360901, 1.4165421724319458, -0.7949687838554382, -1.2518911361694336, -0.5027640461921692, 0.43036001920700073, -0.14291736483573914, 0.2744031250476837, -0.20042334496974945, 0.5915127396583557, -0.0013059494085609913, 0.015045738779008389, -0.2212415635585785, -0.6262454390525818, -0.6430484652519226, -0.6405141949653625, -0.7544960379600525, -0.8569340109825134, -0.08028934895992279, -0.28052884340286255, -0.9247092604637146, 0.01724628545343876, -0.3280923664569855, -0.41186875104904175, 0.05617525428533554, -0.019516728818416595, -0.5941856503486633, -0.6918426752090454, -0.25317516922950745, -0.1591372936964035, 0.7653193473815918, -1.1442781686782837, 0.5026365518569946, -1.0716966390609741, 0.3782176673412323, 1.3158814907073975, 0.361102432012558, -0.9315563440322876, 0.8037692904472351, 0.11609841138124466, -1.375111699104309, 0.6664828658103943, -0.04420781135559082, -0.37704747915267944, 0.17270639538764954, 0.06705782562494278, -0.15657855570316315, 0.33103683590888977, 0.26127949357032776, 0.6435391902923584, -0.05512254312634468, -0.5031291246414185, -1.2062121629714966, -0.5967741012573242, 0.24924622476100922, 0.07389120757579803, -1.5526371002197266, 1.0745850801467896, 0.7033619284629822, -0.8989676833152771, -0.4323361814022064, 0.15710791945457458, -0.003501547034829855, 0.46081194281578064, 1.4811197519302368, -0.05496244877576828, 1.5601341724395752, 0.0068191951140761375, -0.3600258529186249, -0.35624590516090393, 0.09487280249595642, 1.2018505334854126, -0.5930131673812866, -0.14409948885440826, 0.7311229705810547, 0.5959967374801636, 0.08117393404245377, -0.41544926166534424, 0.09383517503738403, 0.07990650832653046, -0.5224334001541138, -0.6485506296157837, -0.33492782711982727, -0.8408094644546509, 0.9744491577148438, 0.4599984586238861, -0.8775821924209595, -0.6670503616333008, 0.3268376886844635, 0.2887260913848877, -0.19909118115901947, -0.49185970425605774, -0.07975813001394272, 0.17713792622089386, -0.17149069905281067, 0.4058207869529724, 0.6499080657958984, -0.2717834413051605, 0.4714356064796448, -0.395679771900177, -0.5866969227790833, -1.1562718152999878, 0.2932629883289337, 0.07257398962974548, 1.345026969909668, -0.5472099184989929, -0.6303920149803162, -0.06164437532424927, 0.12557320296764374, 1.1643956899642944, -0.2519601881504059, 0.1802327185869217, 0.4186953902244568, 0.8929062485694885, 0.17642997205257416, 0.48488569259643555, 0.26763826608657837, -0.10751274228096008, 0.6542291045188904, 0.3292052447795868, 0.7043895125389099, 0.9878157377243042, -0.5110652446746826, -1.6295757293701172, -0.18947218358516693, 0.33097338676452637, 1.0092172622680664, 0.6278002858161926, 1.0296260118484497, -0.20895534753799438, -0.1163087859749794, -0.25639277696609497, -0.33910855650901794, -1.2025279998779297, -1.190161108970642, -0.7612593770027161, -0.2544683516025543, -0.5078026056289673, 0.22264687716960907, 0.378734290599823, 0.6451529264450073, -0.6533135771751404, 0.7161770462989807, 0.7631517052650452, -0.180576890707016, -0.7624399662017822, -0.22454006969928741, -0.23867842555046082, -0.26070457696914673, 0.2949915826320648, 0.546617329120636, -0.9384997487068176, -0.7810961008071899, -0.1505793333053589, 0.12864413857460022, 1.1631561517715454, -0.4115121066570282, -0.1786327213048935, -1.1058146953582764, -0.9808844327926636, -0.6174379587173462, 1.1278152465820312, -0.30303052067756653, -0.19783741235733032, -1.0359818935394287, 0.8282420635223389, 0.5589456558227539, 0.038187175989151, -0.35177186131477356, 0.3302757740020752, 0.07309674471616745, -0.9490754008293152, -0.4827618896961212, 0.06921695917844772, 0.8371896147727966, -0.3200910985469818, 0.03107970580458641, -0.2527849078178406, -0.01590052805840969, -0.33335527777671814, 0.7015760540962219, 0.4296865165233612, 0.6190409660339355, 0.17368312180042267, -0.1686149388551712, 0.563068151473999, -1.058817744255066, 0.41066882014274597, -1.4514293670654297, 0.9213657379150391, 0.11669795960187912, 0.6364160180091858, -0.10655197501182556, 0.44198036193847656, 0.0194130539894104, -0.5482118725776672, -0.09576737880706787, -0.14152641594409943, 0.8971978425979614, 0.22739186882972717, -0.4169307053089142, -0.2606017291545868, 0.3000720739364624, -0.5780636668205261, -1.338189721107483, -0.36205247044563293, 0.15712840855121613, -0.7627663612365723, -0.6494085192680359, 0.750041127204895, 0.755912721157074, -0.17761071026325226, -0.40337300300598145, -0.1729217916727066, 1.417736291885376, 0.7333737015724182, -0.5511229634284973, 0.20409652590751648, -0.44858840107917786, 0.16275249421596527, -1.266241192817688, -0.3245481550693512, 0.10353364050388336, 0.1038941815495491, 1.014715552330017, -1.323669195175171, 0.2783588767051697, -0.5697046518325806, 0.5911732316017151, 0.3868759870529175, 0.38546526432037354, 0.6074114441871643, -0.23284050822257996, 0.08443186432123184, -0.2246542125940323, 0.5568742156028748, 1.836203694343567, -0.31968650221824646, -0.23735590279102325, 0.1688322126865387, 0.23226234316825867, 0.033087681978940964, -0.3635334074497223, -0.05354037508368492, 0.08030161261558533, -0.651785671710968, 0.029589787125587463, -0.27482685446739197, -0.3538035452365875, 1.0297952890396118, 0.4436381757259369, 0.36512091755867004, 0.9217795729637146, -0.013959885574877262, -0.6342560052871704, -0.09185969829559326, -0.03173853084445, -0.14063851535320282, 0.22117607295513153, 0.09501217305660248, 0.09231124073266983, -0.1977582424879074, 0.18118348717689514, 0.005443125497549772, 0.5091070532798767, 0.24126841127872467, 0.22317557036876678, -0.25988513231277466, 1.0700786113739014, 0.41292616724967957, 0.6130008101463318, 0.3641800582408905, 0.11737468093633652, -1.0354644060134888, 0.594580888748169, -1.0474525690078735, 0.52193683385849, 0.6777603626251221, -0.3779717683792114, 1.0246754884719849, -1.7810243368148804, -0.9208478927612305, 0.3454059660434723, 0.23259001970291138, -0.20543621480464935, 0.8558028340339661, 0.33898141980171204, -0.5331677794456482, 0.5849872827529907, -0.24883747100830078, -0.14664475619792938, 0.13568249344825745, -0.37484994530677795, -0.03708566725254059, 1.083246111869812, -0.42329174280166626, 0.21714045107364655, -0.7259463667869568, -0.400686115026474, 0.3389376997947693, -0.6906411051750183, 0.05130116641521454, 0.4108511805534363, 0.11270630359649658, 0.6195064187049866, -1.4098435640335083, -1.1099934577941895, 0.8517580628395081, -0.17309129238128662, -0.6260930895805359, 0.033445414155721664, -0.7250292301177979, 0.03758765384554863, -0.4880400598049164, -0.9026317596435547, 0.423352986574173, -0.05402427911758423, -0.7145678997039795, -0.8374912738800049, -1.0224522352218628, -0.6079474091529846, 0.17614634335041046, 0.9259108304977417, 0.49474552273750305, -0.2078719288110733, 0.003598135896027088, 0.1303045153617859, -0.4668751657009125, -0.3517354428768158, 0.6577786207199097, 0.23376142978668213, -0.4250808656215668, -1.196700930595398, -1.1793066263198853, 0.8583403825759888, 0.5939056277275085, -0.18125180900096893, 0.6091514229774475, 1.1109824180603027, 1.2524566650390625, -0.6417746543884277, -0.8434239029884338, 0.45490092039108276, 0.0582079254090786, 0.9617360830307007, 0.5320205688476562, 0.04683953523635864, -0.30092984437942505, -0.5828888416290283, -1.6087816953659058, 1.019066333770752, 0.3373483717441559, -0.8914834856987, 0.6356449723243713, 0.40684974193573, 0.46879667043685913, 0.2650231122970581, -0.41965243220329285, -0.28024107217788696, 0.02431221678853035, -0.4015447199344635, -1.3007789850234985, 0.5729032158851624, 0.3877604901790619, 1.1342374086380005, -0.29196739196777344, 0.5360214114189148, -0.2895590662956238, -0.5157634615898132, -0.4187767207622528, 0.7705760598182678, -0.03436585143208504, 0.7013692259788513, 0.45198556780815125, -0.5768561959266663, 0.04221823439002037, -0.7253867387771606, -0.48007193207740784, -0.036980655044317245, 0.526636004447937, 0.43562373518943787, -0.05449918657541275, 0.14408855140209198, -1.02971613407135, -0.5754131078720093, -0.3620823919773102, -0.29252496361732483, 0.1498253345489502, 0.11780354380607605, -0.15897482633590698, 0.28557294607162476, -0.2996728718280792, 0.14506895840168, 0.05585823208093643, -0.5168740153312683, 0.08982304483652115, -1.3420073986053467, -0.3202942907810211, -0.19429269433021545, -0.5130681991577148, -0.28944775462150574, -0.3911519944667816, 0.5767024159431458, -0.5229462385177612, -1.3211175203323364, -1.0914311408996582, 0.6677314043045044, 0.8705406188964844, -0.6036314368247986, 0.9301276803016663, 0.42784348130226135, -1.2408671379089355, -0.1978015899658203, -0.00805596262216568, -0.6863577365875244, 0.16629968583583832, -0.6771942973136902, 0.2366245687007904, -0.11040891706943512, 0.5604029297828674, -0.12612828612327576, 1.201847791671753, -0.9702487587928772, -0.7657327055931091, -1.4081833362579346, -0.4441881477832794, 1.026803731918335, 0.5083571672439575, -0.7796548008918762, 1.2711372375488281, 0.5338091850280762, -0.2184993475675583, -0.5265316367149353, -0.5776867866516113, -0.5474275350570679, 0.16481584310531616, 0.3167167901992798, 0.31389692425727844, 0.818873405456543, 1.0652270317077637, -0.10852134972810745, 0.19742010533809662, 0.31121930480003357, 0.357587993144989, -0.2480965256690979, -1.2132186889648438, -0.07932671159505844, 0.8853384852409363, -1.1497188806533813, -0.6566147208213806, -0.2768709659576416, -0.16915716230869293, -1.4078656435012817, 0.36491823196411133, 0.6346323490142822, -1.1646544933319092, -0.1651926040649414, -0.036317966878414154, 0.29899752140045166, -0.18228918313980103, 0.8768267631530762, 0.26802513003349304, -0.8249809741973877, -0.16925941407680511, -0.20332223176956177, 0.5174137949943542, -1.045100450515747, 0.3670653998851776, 0.4747961759567261, -0.4276392459869385, -0.4570762515068054, 0.9719372391700745, 0.2921554148197174, -0.300051748752594, -0.31153520941734314, 2.026021957397461, 0.4596637487411499, -0.3535909354686737, -0.3835792541503906, 0.5546426177024841, -0.41655030846595764, 1.0727953910827637, -0.7568860650062561, 0.4106391370296478, -1.004655361175537, 1.012073040008545, 0.393335223197937, -0.5686022639274597, -0.02868635207414627, -0.1139340028166771, -0.48353147506713867, 0.6152141690254211, 0.09529617428779602, -0.9153634905815125, -0.577842116355896, 0.8680257797241211, 0.22371703386306763, -0.22030024230480194, 0.0018130983226001263, 0.15011611580848694, 0.6538481712341309, -0.4414406716823578, 0.1441131979227066, 0.5650719404220581, -0.8747514486312866, -0.23942427337169647, -0.006214940454810858, 0.14411064982414246, -0.18427257239818573, 0.1841364949941635, -1.331104040145874, 0.9944459199905396, -0.8080492615699768, -1.0275291204452515, 0.4711361825466156, -0.6304340958595276, -0.6746814846992493, 1.1595275402069092, -0.12130964547395706, -0.3880171775817871, -0.387033075094223, 0.3116850256919861, -0.15995711088180542, 0.9457730054855347, -0.5045591592788696, -0.40790989995002747, 0.8298075795173645, -0.8305208086967468, -0.37670478224754333, -0.3273133933544159, 0.01598411053419113, 0.4520534574985504, 0.21826253831386566, -0.23437625169754028, 0.542631983757019, 0.8605228662490845, -0.0031069107353687286, -0.6992157101631165, 0.3350341022014618, -0.06986626237630844, -0.39334800839424133, 0.7245811223983765, -0.5455222725868225, -0.21263088285923004, 0.6780257225036621, 0.7073168158531189, -0.5326212644577026, -0.5756305456161499, -0.469819039106369, -0.06343573331832886, -0.5033063292503357, 1.1205706596374512, -0.18453150987625122, 0.6890074014663696, -0.4970299005508423, -0.9269921183586121, -0.47502636909484863, -0.14461426436901093, 0.45951706171035767, 0.14628902077674866, 0.7873265743255615, 0.3275836408138275, 0.1378999501466751, -0.836320161819458, -1.1289160251617432, 0.6215503811836243, 0.37211692333221436, 0.37841883301734924, 0.0524335578083992, -0.9022608399391174, -0.606309175491333, -0.48982855677604675, 0.03319954127073288, 1.1159228086471558, -0.16657136380672455, -0.36685019731521606, 0.19449454545974731, -0.8604959845542908, 0.27650198340415955, -0.35005131363868713, -0.24371442198753357, 0.16748423874378204, 0.7674314975738525, 0.9381404519081116, -0.18584850430488586, -0.014493913389742374, -0.25521472096443176, 1.0965216159820557, -0.835873007774353, -0.5675379037857056, -0.7617911696434021, -0.6214938759803772, -0.22525525093078613], [-0.22595655918121338, 1.2779412269592285, -1.9489370584487915, -0.6965513825416565, 1.8436301946640015, 0.47301051020622253, 0.8120675683021545, -0.322091668844223, 0.34445828199386597, -0.2837282419204712, -0.222803995013237, 0.21456748247146606, 0.35755616426467896, 0.9958725571632385, 0.034346967935562134, 0.5714792609214783, 0.6725664734840393, 0.059331029653549194, 0.3566279411315918, 0.5472231507301331, 0.5739780068397522, -0.0965016633272171, 0.5827170014381409, 0.3921371102333069, 0.12345978617668152, 0.5249811410903931, -1.524301290512085, -0.5711864233016968, -0.6053889393806458, -1.1567442417144775, 1.3899511098861694, -0.9158862233161926, 1.0358539819717407, 0.5811600089073181, -1.8407410383224487, 0.24431705474853516, 1.3260550498962402, 0.37494197487831116, 0.23204709589481354, 0.049659986048936844, 1.7600897550582886, -0.07955619692802429, -0.3162144422531128, -1.6164188385009766, -0.17671504616737366, -0.5748178362846375, 0.08813750743865967, -0.9681640267372131, -0.15519556403160095, -0.19267427921295166, 0.4481337368488312, -0.7012147307395935, 0.4169607162475586, 1.142318844795227, 0.4183349609375, -0.4294484555721283, 1.0095186233520508, 0.3956908583641052, -0.1562352329492569, -0.7442753314971924, 1.1705938577651978, 0.38566944003105164, -1.1277217864990234, 0.9822776913642883, 0.10696608573198318, 0.591587483882904, -0.6617335677146912, 0.20469549298286438, 0.06129293143749237, 0.6507472991943359, 0.5426563620567322, 0.5660567879676819, -0.515022873878479, -0.18367573618888855, -0.580134391784668, 0.25794386863708496, 0.5295868515968323, 0.3037498891353607, 0.726799726486206, 0.32287493348121643, -0.4874515235424042, -0.07023744285106659, 0.7023493647575378, 0.15926408767700195, 1.0077478885650635, 0.3641965687274933, 0.1783609390258789, -0.9031981825828552, -0.9829789996147156, 1.992925763130188, 0.36771339178085327, 0.05871112272143364, 0.7806175351142883, -0.4133130609989166, -0.194059818983078, -0.8886716365814209, 0.5539349913597107, 0.07525607943534851, -0.6938267946243286, -0.6730806827545166, -0.28829604387283325, -0.5081658959388733, 0.9434158802032471, -0.7085352540016174, 0.4578841030597687, 0.5170304179191589, 0.7526606917381287, -0.047996923327445984, -0.3211504817008972, -0.6451578736305237, -0.48523473739624023, 0.5525407195091248, -0.9168575406074524, -0.5309910774230957, -0.5685689449310303, 0.6788490414619446, 0.9094899296760559, -0.6525518298149109, 0.6718311309814453, 0.6940147280693054, -0.8584951758384705, 0.22625315189361572, -0.3292534351348877, 0.8886838555335999, 1.0460418462753296, 0.9307523369789124, -0.5348079800605774, -0.2145390510559082, 0.5046659111976624, 0.03685034066438675, 0.35669633746147156, -0.27706870436668396, -0.5063984394073486, 1.2512279748916626, -0.8192771077156067, 1.29951012134552, -0.19211521744728088, -0.7619565725326538, 0.41908299922943115, -0.19769106805324554, 0.1872304528951645, -0.715790867805481, -0.48836085200309753, -0.3790190517902374, 0.34174829721450806, -0.21244388818740845, 0.15786872804164886, -0.5425338745117188, -0.20716214179992676, 0.42413246631622314, -0.8538134098052979, 0.39096522331237793, -0.03428007289767265, 1.0894206762313843, 0.14326483011245728, -0.5191704630851746, 0.5443108677864075, 0.4015450179576874, 0.781720757484436, 0.0033241109922528267, 1.241822361946106, -0.16426712274551392, -1.1394703388214111, 0.6077043414115906, -0.5173979997634888, -0.06551642715930939, 0.7277569770812988, 0.7990567684173584, 0.1887071132659912, 0.39392128586769104, -0.3510555922985077, -0.8336322903633118, -0.2822931408882141, 0.6806740760803223, -0.012062796391546726, -0.5054986476898193, 1.013756513595581, 0.03106326423585415, -0.9747933149337769, -1.2119789123535156, 1.0617790222167969, -0.37130504846572876, 0.643160343170166, -0.25541967153549194, 0.9763620495796204, 0.07426581531763077, 0.2173740118741989, 0.052576519548892975, -0.6431683301925659, -0.5512029528617859, -0.5425652265548706, -0.5403233766555786, -0.5245187878608704, 0.1579877883195877, -0.45700788497924805, -1.3516695499420166, -0.1323215663433075, -0.906880259513855, 0.0320960097014904, 0.20227494835853577, -0.21542710065841675, -0.8715160489082336, -0.3992233872413635, 0.036467526108026505, -0.37926793098449707, 0.4354170262813568, -0.7310134768486023, 0.4568483531475067, -0.8202637434005737, -0.12939168512821198, 1.0662950277328491, 0.07931375503540039, -1.1073741912841797, 0.6273832321166992, -0.5555804371833801, -1.4137204885482788, -0.10506866127252579, -0.40452492237091064, -0.8752299547195435, 0.9697396755218506, -0.30050885677337646, -0.04405777528882027, 0.5235917568206787, 0.1841270625591278, 0.1665652096271515, -0.7415754795074463, -1.1747990846633911, -1.2339377403259277, -0.45110422372817993, -0.5537204742431641, -0.3448706269264221, -1.0408343076705933, 0.6884670257568359, 0.8194428086280823, -0.6710988879203796, -0.07247138768434525, 0.2329411804676056, -0.15292099118232727, 0.19926424324512482, 1.432364583015442, 0.3978811204433441, 1.1852632761001587, 0.07255414128303528, -0.6089982390403748, -0.06339847296476364, 0.41880297660827637, 0.8418523073196411, -0.9431755542755127, 0.4714600443840027, 0.6099175214767456, 1.284621000289917, 0.07772302627563477, 0.035268113017082214, -0.5279501676559448, -0.24085722863674164, -0.777516782283783, -0.08801577240228653, -0.518619179725647, -0.1878836452960968, 1.0222707986831665, 1.3663581609725952, -0.865394115447998, -0.3310246765613556, 0.8035131096839905, -0.1963958889245987, -0.49410074949264526, -0.4013475179672241, -0.39992770552635193, -0.37600234150886536, -0.06644969433546066, -0.526653528213501, 0.5368887782096863, 0.018344927579164505, 0.4849753677845001, -0.758033037185669, -0.6550741195678711, -0.2419092059135437, -0.005352423992007971, -0.13972830772399902, 1.2593276500701904, 0.19947469234466553, -0.47385966777801514, 0.08204133808612823, -0.602443277835846, 1.4231163263320923, -0.2119375467300415, 0.18075360357761383, 0.5755013227462769, 1.1577823162078857, 0.4612928628921509, 0.6782435774803162, 0.06987923383712769, 0.7528986930847168, 0.10085894167423248, -0.10807215422391891, 0.6074055433273315, 1.062612771987915, -1.3733088970184326, -1.217868447303772, 0.24753768742084503, 0.2743728756904602, 1.340514898300171, 0.6183100342750549, 0.9311048984527588, 0.39737406373023987, -0.3284927010536194, -0.5712749361991882, 0.04719328135251999, -0.8103761672973633, -0.5256078839302063, -0.6800999641418457, -0.5514233112335205, -0.24744974076747894, -0.2535359561443329, 0.6136343479156494, 0.23121139407157898, -1.1478567123413086, 0.8790820837020874, 0.9029361009597778, -0.6957843899726868, -0.8979241251945496, 0.02116408199071884, -0.10713831335306168, -0.9627605676651001, 0.4254849851131439, 0.8331330418586731, -0.5952525734901428, -0.6577160358428955, -0.10999014973640442, 0.30997833609580994, 0.23619380593299866, -0.29515185952186584, 0.309915691614151, -1.2010949850082397, -0.615179181098938, -0.12820127606391907, 1.5892106294631958, -0.1964154839515686, 0.01366343256086111, -0.125041663646698, -0.10376165807247162, 0.2642083466053009, -0.5330393314361572, -0.19642843306064606, 0.6570220589637756, -0.04284188896417618, -0.38526076078414917, -0.4435061514377594, 0.27278536558151245, 0.45593973994255066, -0.40366947650909424, 0.1375027894973755, 0.5353409051895142, -0.7138432860374451, 0.1828780174255371, 0.07640057057142258, 0.8879135251045227, 0.5278322100639343, -0.13481108844280243, 0.06456203758716583, 0.8250723481178284, -0.6201847195625305, 0.005278955679386854, -1.8499164581298828, 0.28309720754623413, -0.06308773159980774, 0.6306140422821045, 0.2730157673358917, 0.6162664890289307, 0.2380581945180893, 0.0984446108341217, -0.04036129638552666, 0.6774498820304871, 1.3140393495559692, 0.585338294506073, -0.4554349184036255, -0.20309551060199738, 0.4171411097049713, -0.7710187435150146, -0.8092033863067627, -0.21848982572555542, 0.38953495025634766, -1.4678623676300049, -0.14548833668231964, 1.1260991096496582, 0.631764829158783, -0.28146040439605713, -0.07231216132640839, 0.5036835074424744, 0.7509294152259827, 0.5239298939704895, -0.2026490420103073, -0.06920953840017319, -0.38703590631484985, -0.116523876786232, -0.36268091201782227, -0.818070113658905, -0.31846189498901367, 0.8122453689575195, 0.3725210726261139, -1.1585955619812012, -0.14221693575382233, -0.34735405445098877, 0.9706500172615051, 0.3674100637435913, 0.29356497526168823, 0.27812638878822327, -0.31641992926597595, 0.35162824392318726, -0.540747344493866, 0.29205286502838135, 1.2359567880630493, -0.02925041876733303, -0.2749767303466797, -0.03761104866862297, -0.20279301702976227, -0.11431851238012314, 0.36092621088027954, 0.12036275863647461, 0.10865955054759979, -1.070815920829773, 0.24150848388671875, -0.45880454778671265, -0.39164063334465027, 1.4608433246612549, 0.43855977058410645, 0.4014991819858551, 0.6655574440956116, -0.14020325243473053, -0.8092259764671326, -0.42962557077407837, -0.18074621260166168, -0.4257499575614929, -0.5137085914611816, 0.36400336027145386, 0.09270727634429932, -0.5252851843833923, 0.6152267456054688, 0.03888682648539543, 0.883910059928894, 0.0474289171397686, 0.35142940282821655, -0.21897944808006287, 0.9099902510643005, -0.3400450646877289, 1.0800087451934814, 0.9146003723144531, -0.2124934047460556, -1.308201789855957, 0.3238376975059509, -0.9694327116012573, 0.5540136098861694, 0.5235454440116882, 0.5615001320838928, 0.9375287294387817, -1.6296265125274658, -0.9672606587409973, 0.6292071342468262, 0.24992212653160095, 0.11865424364805222, 0.8323076367378235, 0.07627157121896744, -0.10101090371608734, 0.12894408404827118, -0.06447641551494598, 0.08610088378190994, 0.2797829806804657, -0.49750855565071106, 0.3433656692504883, 0.9213401079177856, -0.2790036201477051, 0.673334538936615, -0.5164416432380676, -0.04310445487499237, 0.13853572309017181, -0.6497107744216919, 0.20151448249816895, 0.5882937908172607, 1.0577455759048462, 0.8624695539474487, -1.3226217031478882, -1.443953037261963, 0.4271963834762573, -0.8629028797149658, 0.033548131585121155, -0.37504419684410095, 0.2172609120607376, -0.5509904623031616, -0.18569816648960114, -0.7921990156173706, 0.4761110246181488, -0.12210594117641449, -0.6855215430259705, -0.5245049595832825, -1.1927927732467651, 0.18602636456489563, 0.22707916796207428, 0.9456110596656799, 1.016216516494751, -0.020271196961402893, 0.1311812847852707, -0.002594997175037861, -0.4851086735725403, 0.11763408780097961, -0.055471085011959076, -0.1006273403763771, -0.15231016278266907, -1.3447235822677612, -1.0485647916793823, 0.392806738615036, 0.6867882013320923, 0.13453155755996704, 0.7689313292503357, 1.8195037841796875, 1.0095553398132324, -0.7070261240005493, -1.127978801727295, 0.15355229377746582, -0.6242225766181946, 1.0796380043029785, 0.46744364500045776, -0.2574843764305115, -0.6461935639381409, -0.6683841347694397, -1.280394196510315, 1.1844063997268677, 0.05095455422997475, -0.601729691028595, 1.1402758359909058, 0.8728000521659851, 0.23524688184261322, 0.6537492871284485, -0.980196475982666, 0.29481351375579834, 0.007827003486454487, -0.6870471835136414, -0.85467928647995, 0.996791660785675, -0.03414811193943024, 0.7398531436920166, -0.4429262578487396, 0.2773236930370331, 0.16205227375030518, -0.4983513355255127, 0.004632583819329739, 0.32149556279182434, -0.37224575877189636, -0.3595159947872162, 0.79793381690979, -0.4861253798007965, 0.013501753099262714, -0.42226001620292664, -1.1524051427841187, -0.30053234100341797, 0.6487897634506226, -0.13328994810581207, -0.0637010782957077, -0.3610992431640625, -0.4192216098308563, -0.8224899768829346, 0.07861977070569992, -0.7462249398231506, 0.580396831035614, 1.045348048210144, -0.09371688216924667, 0.3275796175003052, -0.24547089636325836, 0.18916745483875275, -0.35719752311706543, 0.013927341438829899, 0.526138424873352, -1.875027060508728, 0.14872397482395172, -0.1678415834903717, -0.5876169800758362, -0.0038177729584276676, -0.4264862835407257, 0.18595154583454132, -0.26956361532211304, -0.7730713486671448, -0.4908865690231323, 0.2742672860622406, 0.4893854260444641, -1.344186782836914, 0.4747227132320404, -0.3340451121330261, -1.1512178182601929, 0.30540382862091064, -0.5173180103302002, -0.613666832447052, -0.17070291936397552, -1.522260308265686, 0.33132413029670715, 0.8040663599967957, 0.3824176788330078, 0.4430670440196991, 0.5613356232643127, -0.7779680490493774, -0.6557008624076843, -0.1618819683790207, -0.14698681235313416, 0.9443091154098511, 0.6136499643325806, -0.7096275091171265, 1.4173780679702759, 0.43183794617652893, -0.37073829770088196, -0.44799333810806274, -0.39379364252090454, -0.4196270704269409, 0.10649248212575912, 0.6264704465866089, 0.6875694394111633, 0.8569654226303101, 1.5151865482330322, 0.31485363841056824, 0.1397397518157959, -0.024307694286108017, -0.05603986978530884, -0.7159218192100525, -1.2309060096740723, -0.012051844038069248, 0.34925273060798645, -1.0297353267669678, -0.8549997806549072, 0.06484410911798477, -0.7324303984642029, -1.2496469020843506, 0.041256073862314224, 0.8571844696998596, -0.718558132648468, 0.41200098395347595, -0.28196340799331665, -0.06973542273044586, -0.7566879987716675, 0.5523564219474792, 0.5527762174606323, -1.0414271354675293, -0.2282659262418747, 0.002323627471923828, -0.21277651190757751, -0.8535375595092773, 0.5367462038993835, -0.10430468618869781, -0.6567147970199585, 0.035455767065286636, 0.638876736164093, 0.7431285381317139, -0.48632314801216125, -0.07990571111440659, 1.7357121706008911, 0.6675856113433838, -0.18887236714363098, 0.02151103876531124, 0.513539731502533, -0.3945537209510803, 1.1638619899749756, -0.7591844201087952, 0.4222017824649811, -0.08603880554437637, 1.2295844554901123, -0.3816591203212738, 0.15101401507854462, 0.08274641633033752, -0.10633821785449982, -0.5304303169250488, 0.3276776671409607, 1.0416315793991089, -0.2335122674703598, -0.6989109516143799, 1.5329235792160034, -0.3019338548183441, -0.024368366226553917, 0.019490236416459084, 0.39574816823005676, 0.338356614112854, -0.3431277573108673, 0.5492601990699768, 1.0107611417770386, -0.8894453644752502, -0.15529344975948334, -0.2860664129257202, 0.14569419622421265, 0.06521715968847275, -0.19825957715511322, -1.6706204414367676, 0.8420143723487854, -0.6428760290145874, -0.5384411215782166, 1.1076067686080933, -0.8678325414657593, -0.1362774670124054, 0.2377464324235916, -0.2877020835876465, -0.6305151581764221, -0.06780577450990677, 0.5887370109558105, -0.26699304580688477, 0.09801025688648224, -0.13410788774490356, -0.12001296877861023, 0.8173764944076538, -0.8623303771018982, -0.3074016869068146, -0.13214778900146484, 0.10296447575092316, 0.20029491186141968, -0.17748916149139404, -0.49160265922546387, -0.20424368977546692, 0.7878425121307373, 0.07256285846233368, -0.5611744523048401, 0.6845314502716064, 0.2889861464500427, -0.4155252277851105, -0.17958377301692963, -0.1527993232011795, 0.12135335803031921, 0.8762306571006775, 0.2174811065196991, -0.689723014831543, -1.0751421451568604, -0.19380836188793182, 0.08945711702108383, -0.78668612241745, 0.9020208120346069, -0.5814735889434814, 0.9977226853370667, 0.07522723823785782, -0.2210739254951477, -0.6803673505783081, -0.23902396857738495, 0.3737374246120453, 0.04510785639286041, 0.11102087050676346, 0.4059906303882599, 0.474224328994751, -0.38473987579345703, -0.7720974683761597, 0.3709556758403778, 0.05223485082387924, -0.22488243877887726, 0.0837751179933548, -1.0669453144073486, -0.6024824976921082, -0.7412813901901245, 0.13959093391895294, 0.563596248626709, -0.31459954380989075, -0.5837003588676453, 0.6417203545570374, -0.7813180088996887, 0.12600500881671906, -0.12428256869316101, 0.2964061200618744, 0.2396450787782669, 0.7445461750030518, 1.1974667310714722, 0.23309268057346344, -0.11653488874435425, 0.13665270805358887, 1.177641749382019, -1.1570459604263306, -0.7067332863807678, -1.308471441268921, -0.3477844297885895, -0.34138551354408264], [-0.06099976971745491, 1.8071625232696533, -2.38008713722229, -0.3645763397216797, 1.1057273149490356, 0.25927072763442993, 1.6681348085403442, -0.16132476925849915, 0.8448131084442139, -0.24937136471271515, -0.08301485329866409, 0.1734294593334198, 0.43422386050224304, 0.7591099739074707, 0.01405502948909998, 0.4252603352069855, 0.7986986637115479, -0.29020562767982483, 0.09810633212327957, 0.5936726927757263, 0.13398213684558868, -0.3865649700164795, 0.34493446350097656, 0.25339433550834656, 0.247818723320961, 0.464641273021698, -1.3890881538391113, -1.0001320838928223, -0.8327843546867371, -0.7296884059906006, 1.1066830158233643, -1.4407655000686646, 0.0063066063448786736, -0.24450449645519257, -1.8001614809036255, 0.08538281917572021, 1.3002238273620605, 0.6428529620170593, 0.5157271027565002, -0.16107191145420074, 1.461594581604004, -0.05541728436946869, -0.20253922045230865, -1.6575299501419067, -0.5324439406394958, -0.32665395736694336, 0.15123946964740753, -1.0699841976165771, -0.01916830614209175, -0.42263275384902954, 0.7361276149749756, -1.2358894348144531, 0.09904562681913376, 1.144286870956421, 0.5305277705192566, -0.1990668922662735, 0.627801239490509, 0.034656353294849396, 0.16157925128936768, -0.7322498559951782, 1.8504455089569092, 0.41441798210144043, -0.9269285202026367, 0.9726337790489197, -0.3532979488372803, -0.34593915939331055, 0.1707228571176529, 0.3601263463497162, -0.3152313530445099, 0.43323737382888794, 0.5077776908874512, 0.4882980287075043, -0.4710785448551178, 0.3605201244354248, -1.2873448133468628, -0.28546014428138733, 0.615019679069519, 0.44111502170562744, 0.29947859048843384, 0.6818416714668274, -0.4073375165462494, 0.416572630405426, 0.6925945281982422, -0.4736422002315521, 0.6583181023597717, 0.924233078956604, 0.16951531171798706, -0.3556601405143738, -0.4328489303588867, 1.5409998893737793, -0.0888296589255333, -0.33177539706230164, 0.8209807872772217, -0.48367899656295776, -0.4200015962123871, -0.4348847270011902, 0.6439067125320435, 0.19866019487380981, -0.9330636858940125, -0.9101177453994751, -0.2311214804649353, -1.1847496032714844, 0.21824301779270172, -0.763961136341095, 0.383076012134552, 0.8869774341583252, 0.6070278286933899, -0.07005159556865692, 0.03113897517323494, -0.09526923298835754, -0.410935640335083, 0.7088568806648254, -0.6925003528594971, -1.1435885429382324, -0.7164400815963745, 1.0622482299804688, 1.072615385055542, -0.6662515997886658, 0.44979608058929443, 0.3822827637195587, -0.5568995475769043, 0.03922460973262787, -0.4702896177768707, 1.0860100984573364, 1.1529037952423096, 0.4079586863517761, -0.4219156503677368, -0.2620958387851715, 0.50620037317276, -0.026546215638518333, -0.0280408076941967, -0.5561201572418213, -0.6426792740821838, 0.7011589407920837, -0.5020522475242615, 1.558467984199524, -0.41967734694480896, -0.6221092939376831, 0.0015289746224880219, 0.004843789152801037, 0.3366936147212982, -0.07608915120363235, -0.4594467282295227, -0.22734622657299042, 0.22810357809066772, -0.6691927313804626, 0.30539238452911377, -0.20785295963287354, -0.6044046878814697, 0.13294368982315063, -0.7937243580818176, 0.5675557851791382, -0.02638102136552334, 0.8199306130409241, 0.36001771688461304, 0.08467241376638412, 0.6579789519309998, 0.2055635005235672, 0.8813573122024536, 0.3433224558830261, 0.7693673372268677, -0.12512601912021637, -1.2107192277908325, 0.5118165016174316, -0.07885318994522095, -0.39531224966049194, 0.423643559217453, 0.9196921586990356, 0.10759498924016953, 0.7966693639755249, -0.6223583817481995, -0.710652768611908, -0.35729581117630005, 0.393820583820343, -0.1087532564997673, -0.39688628911972046, 1.347370982170105, -0.6576594114303589, -1.214424729347229, -0.7613710165023804, 0.41580405831336975, -0.40423583984375, 0.8311907052993774, 0.1506919115781784, 0.9773722290992737, 0.22087684273719788, 0.5449882745742798, 0.10093630850315094, -0.6705043315887451, -0.6620866060256958, -0.6066839694976807, -0.6965515613555908, -0.29785996675491333, -0.20440566539764404, -0.5911475419998169, -0.8634568452835083, 0.4676474332809448, -0.8223763704299927, -0.25449925661087036, 0.2034163922071457, -0.15123485028743744, 0.12718193233013153, -1.1637660264968872, 0.3046117126941681, -0.22820772230625153, 0.7414222359657288, -1.3550418615341187, 0.6674508452415466, -1.2568496465682983, -0.12551629543304443, 1.1789047718048096, 0.11920960992574692, -0.8259508013725281, 0.5782460570335388, -0.2090737372636795, -1.8144382238388062, 0.07806136459112167, 0.07934737950563431, -0.35714131593704224, 0.6580360531806946, -0.22905242443084717, 0.3000391125679016, 0.3871523439884186, -0.19354937970638275, 0.426969975233078, -0.11362016201019287, -1.6049929857254028, -0.8582926392555237, -0.40167829394340515, -0.19399206340312958, -0.631537139415741, -1.101523756980896, 0.23567354679107666, 0.4407513737678528, -0.9799870252609253, -0.13787348568439484, 0.15954828262329102, 0.13820132613182068, 0.39209720492362976, 1.7785494327545166, 0.4245089292526245, 1.186419129371643, -0.027848294004797935, -0.3135579228401184, 0.05784367024898529, 0.5230070948600769, 0.9923846125602722, -0.5247681736946106, -0.12934361398220062, 0.8117074966430664, 0.9786632061004639, 0.5903672575950623, -0.12278029322624207, -0.26538628339767456, -0.34421268105506897, -0.4859981834888458, -0.6698850393295288, -0.5071474313735962, -0.06209221109747887, 1.2229338884353638, 0.7635340690612793, -0.8720226287841797, -0.3394387364387512, 0.7659317255020142, 0.31775328516960144, -0.16923174262046814, -0.41305238008499146, 0.05638603866100311, -0.21749277412891388, 0.08099525421857834, -0.06791411340236664, 0.5262705087661743, 0.05513303354382515, 0.2978218197822571, -0.5492726564407349, -1.3116681575775146, -0.4394843280315399, 0.016679968684911728, 0.028261234983801842, 1.0579994916915894, -0.5816394090652466, -0.8248361349105835, 0.3321497142314911, -0.008826150558888912, 1.2622071504592896, -0.32130756974220276, 0.12966561317443848, 0.40025264024734497, 0.6189214587211609, -0.07245339453220367, 0.6504654288291931, -0.06843456625938416, 0.020722176879644394, 0.07821782678365707, -0.06185329705476761, 0.3226450979709625, 1.155397891998291, -1.0158830881118774, -0.9474358558654785, -0.18295884132385254, 0.43106719851493835, 1.5447912216186523, 0.5283923745155334, 1.2948933839797974, -0.3717286288738251, -0.12223905324935913, -0.05840180441737175, 0.07156665623188019, -1.0381211042404175, -0.7611672282218933, -0.9796032309532166, -0.49141159653663635, -0.07279857248067856, 0.007648988161236048, 0.5547603368759155, 0.40550512075424194, -0.7523466348648071, 0.8563926219940186, 1.3269850015640259, -0.16757097840309143, -0.4008191227912903, -0.3795200288295746, 0.057417772710323334, -0.4384842813014984, 0.15706244111061096, 0.7910407781600952, -0.9699881672859192, -0.6834568977355957, -0.14039596915245056, -0.1784338802099228, 0.6007630825042725, -0.1086869090795517, 0.25058257579803467, -1.5397623777389526, -0.910877525806427, -0.4745132029056549, 1.7078840732574463, -0.23328429460525513, 0.0034587327390909195, -0.9898312091827393, 0.5430673360824585, 0.8872007131576538, -0.6214398741722107, -0.12476144731044769, 0.7542571425437927, -0.2546130418777466, -0.8042805194854736, -0.5081521272659302, 0.5524117350578308, 0.34070679545402527, -0.39922982454299927, -0.08718989789485931, -0.25983959436416626, -0.5539100170135498, 0.06353229284286499, 0.33886072039604187, -0.02114957757294178, 0.7179400324821472, 0.35944297909736633, 0.15598534047603607, 0.7465764284133911, -0.7342774271965027, 0.1948850005865097, -1.4032784700393677, 0.41119125485420227, 0.610155463218689, 1.1530505418777466, 0.17722779512405396, 0.3002055883407593, 0.10125375539064407, -0.0765707939863205, -0.04138456657528877, 0.6172053217887878, 1.3644541501998901, 0.11680580675601959, 0.0275210402905941, -0.3322544991970062, -0.2909272015094757, -0.1552005261182785, -1.1008847951889038, -0.07024523615837097, 0.687166690826416, -0.9473248720169067, -0.2880031168460846, 1.4659194946289062, 0.5411182641983032, 0.15739202499389648, 0.045017603784799576, 0.07045041769742966, 1.8076965808868408, -0.08152281492948532, -0.34440580010414124, -0.2614716589450836, 0.3802860975265503, 0.1014004573225975, -0.8511334657669067, -0.08610164374113083, 0.4398544132709503, 0.3164534866809845, 0.6048666834831238, -0.9967700242996216, 0.21616539359092712, -0.5143807530403137, 0.7108929753303528, -0.05220894515514374, 0.18177476525306702, 0.40409162640571594, -0.12258685380220413, 0.14953696727752686, -0.06370554119348526, 0.18969203531742096, 0.7960035800933838, -0.4079766273498535, -0.3885915279388428, -0.08548344671726227, 0.09222947806119919, 0.027306994423270226, 0.2530030608177185, -0.1641511768102646, 0.13293394446372986, -0.4590909481048584, 0.03582022339105606, 0.3624661862850189, 0.34474411606788635, 1.073403239250183, 0.4036976397037506, 0.03371269255876541, 0.7961797714233398, 0.27684226632118225, -1.2835222482681274, 0.6024415493011475, -0.14648006856441498, -0.5550594925880432, -0.32696953415870667, 0.1364196389913559, 0.2854520380496979, -0.4762367010116577, -0.027878638356924057, 0.35314393043518066, 0.5316223502159119, 0.07303664088249207, 0.2589835822582245, -0.21821221709251404, 0.9000359773635864, 0.6225667595863342, 1.1674065589904785, 0.4036988317966461, 0.027736853808164597, -1.1816563606262207, 0.5139450430870056, -1.1953037977218628, 0.16957218945026398, 1.0040239095687866, 0.3080447018146515, 1.257705807685852, -1.7392991781234741, -1.0757989883422852, 0.6949875354766846, 0.2627947926521301, 0.5888198018074036, 1.3113633394241333, 0.05445590615272522, 0.09293049573898315, 0.5047319531440735, 0.05395937338471413, -0.277835488319397, 0.2277594804763794, 0.12959595024585724, -0.20701853930950165, 0.5957828760147095, -0.6688998341560364, 1.0390650033950806, -0.4491511285305023, -0.37854456901550293, 0.5394486784934998, -0.5849382281303406, -0.2640360891819, 0.9143646359443665, 0.47282570600509644, 1.8997349739074707, -0.5372304320335388, -1.3338466882705688, 0.19120003283023834, -0.5399781465530396, -0.013450286351144314, -0.06545280665159225, 0.20306280255317688, -0.43134450912475586, -0.1812467873096466, -0.49502837657928467, 1.0891985893249512, 0.11528264731168747, -0.7265637516975403, -0.5787773132324219, -1.4133163690567017, 0.28783100843429565, 0.6153256297111511, 0.880632758140564, 0.8901029229164124, -0.014969369396567345, 0.07997641712427139, 0.1392761766910553, -0.3421488404273987, 0.12144524604082108, 0.21706849336624146, 0.1513933539390564, -0.20768950879573822, -0.989217221736908, -0.870593786239624, 0.23233401775360107, 0.6596165299415588, -0.19588787853717804, 0.6152228116989136, 1.620670199394226, 0.9179284572601318, -0.8881153464317322, -0.6757100224494934, 0.5888055562973022, -0.5191960334777832, 0.49320387840270996, 0.27218955755233765, -0.1836310625076294, -0.6625979542732239, -0.41121289134025574, -1.5590336322784424, 0.6783555150032043, -0.0015968717634677887, -0.47923097014427185, 1.3759369850158691, 0.14347684383392334, 0.8626274466514587, 0.30284202098846436, -0.7550135850906372, 0.442118763923645, 0.19718097150325775, -0.6672735810279846, -0.6446095705032349, 0.6564325094223022, 0.1100628674030304, 0.659593939781189, -0.0617724247276783, 0.24959325790405273, 0.5195134282112122, -1.0348960161209106, -0.11135631799697876, 0.4041009247303009, 0.2808648347854614, -0.004713158123195171, 0.3258324861526489, -0.788665771484375, 0.24593181908130646, -0.3859628140926361, -1.1329926252365112, -0.0552087128162384, 0.3020760416984558, -0.12723715603351593, -0.28874775767326355, -0.4583820700645447, -0.8142774105072021, -0.6152423024177551, -0.5885181427001953, -0.3232092261314392, 0.9806975722312927, 0.5002226829528809, 0.012194965966045856, -0.3778274357318878, -0.3310527503490448, 0.2716697156429291, -0.40908366441726685, 0.20628108084201813, -0.017799627035856247, -1.3409264087677002, 0.3557148873806, 0.22096270322799683, -0.7935009598731995, -0.12952230870723724, -0.3811928927898407, 0.3559807538986206, -0.5106846690177917, -1.3072254657745361, -1.2682923078536987, 0.8121916651725769, 0.8543320298194885, -1.0176228284835815, 0.8532687425613403, -0.1353532373905182, -0.9716145396232605, 0.1346116065979004, 0.12526655197143555, -0.6717042922973633, 0.1290271133184433, -1.1835651397705078, 0.30556920170783997, 0.45804116129875183, 0.36712726950645447, -0.14205290377140045, 0.5322763919830322, -1.1772758960723877, -1.0274441242218018, -0.7687137722969055, 0.07500191777944565, 0.9072402715682983, 0.3849918842315674, -1.1074116230010986, 1.1398637294769287, 0.234058678150177, -0.6833219528198242, -0.3046509325504303, -0.09547185897827148, -0.13024267554283142, 0.6408987641334534, 0.47915858030319214, 0.46282219886779785, 0.7287683486938477, 1.3633629083633423, -0.16720904409885406, 0.5596032738685608, 0.3065445125102997, 0.6171678304672241, -0.9901647567749023, -0.6218242049217224, -0.17652355134487152, 0.7169935703277588, -1.3411457538604736, -0.619420051574707, 0.1789740025997162, -0.6200269460678101, -1.001362681388855, 0.31909048557281494, 0.33587852120399475, -0.6205260157585144, 0.40665683150291443, -0.11056117713451385, -0.022704804316163063, -0.5693193078041077, 0.6343526244163513, 0.17258156836032867, -1.162955403327942, -0.41438475251197815, 0.38391271233558655, -0.21607837080955505, -1.8594931364059448, 0.43875032663345337, -0.12045200914144516, -0.1972738355398178, -0.47363796830177307, 0.3666249215602875, 0.9863746762275696, 0.2174222469329834, -0.4825567901134491, 1.6123360395431519, 0.7067766785621643, -0.23922817409038544, -0.4818192422389984, 0.4732508361339569, 0.12845903635025024, 1.0691490173339844, -0.5934786796569824, 0.162693589925766, -0.7810952663421631, 0.9287869930267334, -0.09014591574668884, 0.02441857010126114, -0.010944844223558903, 0.23436827957630157, -0.3116280436515808, -0.27693694829940796, 0.3647858500480652, -0.717536211013794, -0.39393311738967896, 0.8427019715309143, 0.2184402048587799, 0.2209382802248001, 0.5356696248054504, 0.7448194026947021, 0.6897426247596741, -0.33491629362106323, 0.4909396469593048, 0.012790698558092117, -1.2782162427902222, 0.24508312344551086, 0.24378399550914764, -0.31119874119758606, 0.3443305194377899, -0.4067659378051758, -1.424562692642212, 0.15205088257789612, -0.9945436716079712, -0.49850741028785706, 0.8054915070533752, -0.9138521552085876, -0.33764293789863586, 0.14251092076301575, -0.3232909142971039, -0.1443631500005722, -0.3100452125072479, 0.54322749376297, -0.08802152425050735, 0.4599607288837433, -0.00285226758569479, -0.37280216813087463, 1.564488172531128, -0.594907283782959, -0.017384236678481102, -1.2534124851226807, -0.27349627017974854, 0.2886851131916046, 0.044414766132831573, -0.06934867799282074, 0.15236841142177582, 0.5593123435974121, -0.31891027092933655, -0.9162145853042603, -0.020133553072810173, 0.6869303584098816, -0.03357001394033432, 0.23013068735599518, -0.20976397395133972, 0.3056301176548004, 0.4815141260623932, 0.35360297560691833, -0.7225281596183777, -1.14723801612854, -0.6213460564613342, 0.4314677119255066, -0.7591536641120911, 1.276989459991455, -0.911078691482544, 0.8448777198791504, 0.011864409781992435, -0.15266746282577515, -0.4779989719390869, -0.0908307358622551, 0.3737172484397888, 0.03503400832414627, 0.3225123882293701, -0.09676308184862137, -0.15618032217025757, -1.0862852334976196, -0.9897305965423584, 0.264131635427475, -0.07583979517221451, -0.030555810779333115, 0.04827151075005531, -1.1140763759613037, -0.2502892315387726, -0.6441267728805542, 0.07360494881868362, 0.34833499789237976, 0.2707565128803253, -0.06369020789861679, 0.1586482673883438, -0.6747897863388062, 0.28752389550209045, -0.15662093460559845, -0.24116425216197968, 0.06242896243929863, 0.7101544737815857, 1.2047966718673706, 0.975259006023407, 0.06807437539100647, -0.5231768488883972, 1.1043267250061035, -0.9684447050094604, -0.3547656536102295, -1.193729043006897, -0.37328729033470154, -0.49715420603752136], [0.5273580551147461, 1.0406795740127563, -2.0393245220184326, -0.6210827231407166, 1.048258662223816, 0.9133928418159485, 1.0134943723678589, 0.28483283519744873, -0.3368496894836426, 0.10281109809875488, 0.02204003557562828, 0.3311593532562256, 1.1266645193099976, 0.7343383431434631, -0.2988099455833435, -0.1895623654127121, 0.8540633320808411, -1.2046316862106323, 0.3079063296318054, 1.18082857131958, -0.17409799993038177, -0.5722994804382324, 0.03597567230463028, 0.14956165850162506, 0.46617990732192993, 0.3479907810688019, -1.152482509613037, -0.951893150806427, -0.9749125838279724, -0.9984185695648193, 0.5596964359283447, -0.6983637809753418, 0.24210986495018005, -1.1797246932983398, -0.9431623220443726, 0.4315791428089142, 1.2985031604766846, 0.37885570526123047, 0.06415625661611557, 0.12849310040473938, 0.36516717076301575, 0.6564636826515198, 0.009753849357366562, -1.2782243490219116, 1.0498223304748535, 0.20290213823318481, 0.7079362869262695, -1.1277122497558594, 0.8663915991783142, -1.1518290042877197, 0.6331787705421448, -0.3629813492298126, 0.3150954246520996, 0.6318858861923218, 0.4910293519496918, -0.06903021782636642, 0.33594515919685364, 0.7047042846679688, 0.7806532382965088, -0.5023700594902039, 0.37477490305900574, 0.303793340921402, -0.9236665964126587, 0.8702731728553772, 0.17341701686382294, -0.027584660798311234, 0.15882699191570282, 0.7430279850959778, 0.2804107367992401, 0.4071477949619293, 0.14662037789821625, 0.2661011815071106, -0.47269219160079956, 0.11388393491506577, -0.9928960800170898, 0.3788906931877136, 0.1264251470565796, 0.20766764879226685, 0.21992544829845428, 0.6318017840385437, -0.9874266982078552, -0.13725009560585022, 0.7743039727210999, 1.0554487705230713, 1.5677207708358765, 0.3663325607776642, 0.07587752491235733, -0.3914939761161804, -0.10276339948177338, 2.447573661804199, 0.14768779277801514, 0.07777591794729233, 0.37596529722213745, -0.19956667721271515, -0.049200695008039474, -0.33339494466781616, 0.21507613360881805, -0.606296718120575, -1.0663154125213623, -0.6892074942588806, -0.6977667808532715, -0.8821820616722107, -0.6139845848083496, -0.14600299298763275, 0.34627389907836914, 0.782353401184082, 0.7939052581787109, 0.6122598052024841, -0.3578261137008667, -0.1447775512933731, -0.44410374760627747, 1.1880382299423218, -1.145147442817688, -1.0046205520629883, -0.8614951968193054, -0.07772410660982132, 1.8830602169036865, -0.5061795711517334, -0.2407282143831253, 1.1834489107131958, -0.4836774468421936, -0.3644131124019623, -0.3219844400882721, 0.4786970019340515, 0.5300338268280029, 0.44833216071128845, -0.47437992691993713, -0.47645482420921326, 0.4699445962905884, -0.4343489408493042, -0.23641180992126465, -0.5507137179374695, -0.046829886734485626, 0.5094687342643738, -0.59504634141922, 0.26367780566215515, -0.39535579085350037, -0.778394341468811, 0.07669311761856079, 0.14690399169921875, 0.44923973083496094, 0.1670687347650528, -0.4378972351551056, 0.1742585003376007, -0.12015180289745331, -1.0242449045181274, 1.0636067390441895, 0.09161630272865295, -0.5162659883499146, 0.3364443778991699, -0.4356636703014374, 0.43015217781066895, 0.30728620290756226, 0.41828086972236633, -0.1703610122203827, -0.012056689709424973, 0.18717166781425476, 0.27269378304481506, 0.1428607702255249, -0.1369461566209793, 1.398719310760498, -0.05941127985715866, -0.20242828130722046, 0.6260602474212646, -0.2751484215259552, -0.015645699575543404, -0.3907049000263214, 0.38322943449020386, 0.38595637679100037, 0.7510431408882141, -0.7372792363166809, 0.2118494212627411, 0.08709772676229477, 0.8090959787368774, -0.07666832953691483, -0.6757538914680481, 0.8310888409614563, -0.9342750906944275, -0.990207314491272, -1.3009202480316162, -0.2322920262813568, -0.049555253237485886, 0.0420985110104084, 0.01290400605648756, 0.7984441518783569, -0.195500910282135, 0.16927210986614227, 0.2909068167209625, -0.4367416501045227, -0.684631884098053, -0.34359824657440186, 0.5501259565353394, -0.7769625186920166, -0.39393213391304016, -1.0602186918258667, -0.2583499550819397, 0.2835733890533447, -0.5478690266609192, -0.47130584716796875, -0.19420960545539856, -0.21527326107025146, -0.3081441819667816, -0.4940277636051178, -0.2800639569759369, -0.5076428055763245, 0.689671516418457, -1.503857135772705, 0.978672444820404, -0.989643394947052, 0.2739768624305725, 1.4106656312942505, 0.5272762179374695, -0.928834080696106, 0.738158643245697, -0.07086244225502014, -1.2834330797195435, 0.42489302158355713, -0.12089990079402924, -0.08535517752170563, 0.6935587525367737, -0.0882473811507225, 1.0113611221313477, 0.0799538642168045, -0.24640440940856934, -0.05908442661166191, -0.8616956472396851, -0.8283770680427551, -1.545531988143921, -0.8523721098899841, 0.07926206290721893, -0.38945236802101135, -1.4720603227615356, 0.3184430003166199, -0.18953406810760498, -0.8490650653839111, 0.4376526176929474, 0.7369658350944519, 0.17496533691883087, 0.7737220525741577, 0.8120293617248535, 0.47762331366539, 1.010055661201477, -0.4760526716709137, -0.6308282613754272, -0.7618598937988281, -0.3235505521297455, 1.4996135234832764, -0.8373028635978699, 0.5383403897285461, 1.1392807960510254, 0.9506500959396362, 0.12671448290348053, 0.42012685537338257, 0.2705584764480591, -0.1819562017917633, -0.4031055271625519, -0.09200527518987656, 0.5349754095077515, -0.44232267141342163, 1.1552804708480835, 1.0662031173706055, -1.0221132040023804, -0.18692460656166077, -0.012067001312971115, -0.1541018933057785, -0.44015341997146606, -1.0461875200271606, -0.3205072581768036, -0.09850207716226578, 0.2756703794002533, -0.08767114579677582, 1.1502455472946167, -0.7867034673690796, 1.095314621925354, 0.35037484765052795, -0.39449241757392883, -0.9667989611625671, 0.04070976376533508, -0.571894109249115, 0.4582044780254364, -0.22878944873809814, -1.1324642896652222, -1.5321776866912842, -0.37226352095603943, 0.44423726201057434, 0.07846984267234802, 0.26820531487464905, 0.2279282659292221, 0.05555153265595436, 0.10295027494430542, -0.051123958081007004, 0.10796687006950378, -0.04953894764184952, -0.08428950607776642, 0.24996642768383026, 1.0058172941207886, 1.2659587860107422, -1.2582422494888306, -1.0584845542907715, 0.06619273126125336, 0.051796916872262955, 1.3039450645446777, 0.6616342663764954, 0.891907811164856, -0.1911425143480301, 0.29700395464897156, -0.6817337274551392, -0.04520028829574585, 0.12740594148635864, -0.030786851420998573, -0.9626878499984741, -0.7988529801368713, -0.2543533444404602, -0.9120346307754517, -0.20548561215400696, 0.5760217308998108, 0.29068008065223694, 0.556745707988739, 0.7420136332511902, 0.16645151376724243, -0.5021282434463501, -0.13781845569610596, -0.09910565614700317, -1.0138849020004272, 0.1254272758960724, 1.260713815689087, -0.9995653629302979, -0.07247630506753922, -0.7427293658256531, 0.09379149228334427, 0.7891265153884888, 0.7095010876655579, -0.09925702214241028, -0.9243350028991699, -0.5806472301483154, -0.5889573097229004, 0.8968207240104675, -0.054305583238601685, -0.040130969136953354, -0.02255186252295971, 0.6946438550949097, 0.332986980676651, -0.0966426357626915, -0.6153059601783752, 1.1202797889709473, -0.5573968887329102, 0.03626842424273491, -0.17439262568950653, -0.010351153090596199, 0.156034916639328, 0.025613943114876747, 0.16365988552570343, 0.08133374154567719, -0.11273690313100815, -0.051469188183546066, 0.44649577140808105, 0.15108054876327515, 0.8312198519706726, 0.2696424722671509, 0.3020012378692627, 1.4118626117706299, -0.5566467642784119, 0.17839087545871735, -1.3902262449264526, 0.9343831539154053, 0.5362716317176819, 0.6585457921028137, 0.1462632566690445, 0.009839366190135479, 0.5697746276855469, -0.10796035081148148, -0.12872888147830963, 0.15789689123630524, 1.4551717042922974, 0.4929845929145813, -0.34308767318725586, -0.4402974843978882, -0.05541055649518967, -0.7756641507148743, -0.7616708278656006, 0.2727604806423187, -0.30613672733306885, -1.599198579788208, -1.3096879720687866, 0.8701260685920715, 0.48376455903053284, -0.33712396025657654, -0.6253888607025146, -0.17197774350643158, 0.6892431974411011, -0.5407420992851257, 0.7641023993492126, -0.4883415699005127, 0.8335700035095215, 0.029969144612550735, -0.644149661064148, 0.050291165709495544, 0.24621601402759552, 0.2879319190979004, -0.09855201840400696, -1.1227878332138062, 0.10849587619304657, -0.13782662153244019, 0.26065582036972046, 0.646705687046051, 0.11032214760780334, 0.0612928681075573, -0.6562725901603699, -0.13507869839668274, 0.4846840798854828, -0.1593296378850937, 0.6228733062744141, -0.3644394874572754, -0.3280961215496063, 0.2043522745370865, -0.4442744851112366, -0.07085905969142914, 0.2481308877468109, 0.04394073784351349, 0.5306348204612732, -0.525041401386261, 0.4819125831127167, 0.2040972262620926, 0.4853580594062805, 1.439258098602295, -0.011961911804974079, 0.47833749651908875, 0.7553988099098206, 0.17042796313762665, -1.859005093574524, 0.5382673144340515, 0.238189697265625, -0.4708631932735443, -0.5714367032051086, 0.16446414589881897, 0.336692750453949, -0.09121643751859665, 0.7745377421379089, 0.3322591483592987, 0.8879495859146118, 0.4339405596256256, -0.9453702569007874, -0.5218712687492371, 0.42663758993148804, 0.8584765195846558, 1.4980649948120117, 0.5369789004325867, 0.3531392812728882, -1.3022830486297607, 1.1357933282852173, 0.20075811445713043, 0.3438504934310913, 1.4981920719146729, 0.2810613811016083, 0.6369330286979675, -1.4280897378921509, -0.4202114939689636, 0.010031325742602348, -0.2999984323978424, 0.051179926842451096, 0.29912081360816956, 0.4410305619239807, -0.5119374990463257, 0.9266402125358582, 0.18363772332668304, 0.5997341275215149, 0.2922394573688507, 0.4851085841655731, 0.21791420876979828, 0.4423283338546753, -0.18103322386741638, 0.7310546040534973, -0.5289968252182007, 0.14774732291698456, 0.251338392496109, -0.1497819572687149, 0.1053842082619667, -0.02409914694726467, 0.354917049407959, 1.6476086378097534, -0.4421008229255676, -1.590006709098816, 0.5056492686271667, -0.48758465051651, 0.2801174521446228, -0.5006116032600403, -0.1356503665447235, -0.047455839812755585, -0.9171245098114014, -0.18404914438724518, 0.44597160816192627, 0.18928077816963196, -0.36109182238578796, -0.39662039279937744, -0.9533873796463013, -0.12398064881563187, 0.3006695806980133, 1.2807272672653198, 0.4855470359325409, 0.6656662225723267, 0.39536163210868835, 0.5267125368118286, -0.9314812421798706, 0.18118761479854584, -0.2489103525876999, -0.4783972203731537, -0.11385679244995117, -1.2439595460891724, -0.46034684777259827, 0.5816340446472168, 0.2536124289035797, 0.19967299699783325, 1.0671498775482178, 1.5478044748306274, 1.0383036136627197, -0.6593126058578491, -0.41895967721939087, 0.2903669476509094, -0.7413075566291809, 0.07932651042938232, 0.7905406355857849, 0.0623195618391037, -0.915145754814148, -0.6240689754486084, -1.8679429292678833, 1.1216531991958618, -0.5136764645576477, -0.5136343836784363, 0.7995034456253052, 0.2581072747707367, 0.39684972167015076, 0.9887908697128296, -1.3393436670303345, 0.919789731502533, 0.10813894867897034, -0.9142113327980042, -1.3246850967407227, 0.32191747426986694, -0.2120261788368225, -0.8079146146774292, -0.41101837158203125, 0.5971104502677917, 0.12712006270885468, -0.22383278608322144, 0.6152178049087524, 1.0266245603561401, -0.13138362765312195, -0.4247967004776001, 0.7630462646484375, -1.1286460161209106, -0.12733334302902222, -0.39021989703178406, -0.3845977485179901, -0.017848782241344452, 0.576901376247406, 0.10247037559747696, -0.33646705746650696, -0.44014522433280945, 0.2734759747982025, -0.5819571018218994, 0.42437323927879333, 0.21898098289966583, 1.2010650634765625, 0.6672403216362, 0.45980480313301086, -0.27127647399902344, -0.2976182699203491, -0.9250611066818237, -0.8118749260902405, -0.3190537393093109, 0.02527020126581192, -1.2142881155014038, -0.5300242900848389, -0.716515839099884, -0.8282475471496582, -0.6668974161148071, -1.1008740663528442, 0.444322407245636, -0.8870800137519836, -1.1802785396575928, 0.33850517868995667, -0.09857242554426193, 0.8409829139709473, -0.9074873924255371, 0.5011600852012634, -0.5398542881011963, -0.7557721734046936, 0.21591410040855408, 0.39975741505622864, -0.7221817970275879, -0.3321702182292938, -1.3432759046554565, 1.1314564943313599, 0.16772741079330444, 0.1259225606918335, 0.2739819884300232, 0.7055710554122925, -1.0534473657608032, -0.6118203997612, -0.6066465377807617, -0.07834261655807495, 0.8170164823532104, 0.5242211222648621, -1.620747685432434, 1.3821079730987549, 0.9254899024963379, -0.779853880405426, -0.6523952484130859, 0.05336862429976463, -0.4719630479812622, 0.14426910877227783, 0.7492934465408325, 0.05218809098005295, 0.13007812201976776, 1.2497446537017822, 0.20087452232837677, 0.09806159883737564, 0.09139784425497055, 0.14388814568519592, -0.4433799088001251, -0.46457067131996155, -0.3555847108364105, 0.8145620822906494, -0.33568763732910156, -0.5255433320999146, 1.0052821636199951, -1.5613281726837158, -0.16342754662036896, 0.6978411674499512, 0.6281675696372986, -0.5738619565963745, -0.18702495098114014, -0.9797493815422058, 0.019341841340065002, -0.9977782964706421, 1.1299266815185547, -0.46642741560935974, 0.0012104436755180359, -0.543600857257843, -0.2554791569709778, 0.3972049653530121, -1.1132817268371582, 0.828027069568634, 0.12075560539960861, -0.2868139445781708, -0.44899919629096985, 0.7008990049362183, 1.0738455057144165, -0.3581717014312744, -0.6160074472427368, 0.9236976504325867, 0.7908180952072144, 0.14993679523468018, -0.4339423179626465, 0.7656041979789734, 0.3614061176776886, 0.8264254331588745, 0.2637617290019989, 0.30636993050575256, -0.7927821278572083, 0.3701598644256592, -0.3375297486782074, 0.49902573227882385, 0.24197819828987122, 0.21879427134990692, -0.5173425674438477, 0.9149284362792969, 0.3959670066833496, -0.44175654649734497, 0.01978371851146221, 1.5874921083450317, -0.4452265799045563, 0.473844051361084, 0.5542315244674683, 0.3725742995738983, -0.24208897352218628, -0.3881339728832245, 0.38119930028915405, 0.7018032670021057, -0.26427486538887024, -0.31433483958244324, -0.2767052948474884, 0.05012892186641693, -0.48915889859199524, -0.13818874955177307, -1.311055064201355, 0.16895423829555511, -0.8017078042030334, 0.6978767514228821, 0.3462584316730499, -1.0715633630752563, -0.947346031665802, 0.6870789527893066, -0.2769736349582672, -0.22178949415683746, -0.43418386578559875, 0.6695838570594788, 0.24345280230045319, -0.5033495426177979, 0.2930706739425659, 0.7215755581855774, 1.3058418035507202, -0.3946959972381592, -0.038358740508556366, -0.9258143305778503, -0.27844828367233276, 0.5100271701812744, -0.13916777074337006, -0.12999431788921356, 0.007796050049364567, 0.15480150282382965, -0.6377967596054077, -0.9850329160690308, 0.8066789507865906, 0.051430922001600266, -0.182096928358078, -0.3860812783241272, -0.683350145816803, 0.3437548577785492, -0.01085879746824503, 0.8782238364219666, -0.3101009130477905, -1.1876386404037476, -1.3711875677108765, 0.7008258104324341, -0.8145543336868286, 1.3005701303482056, -0.18367402255535126, 0.5196778774261475, -0.2640130817890167, -0.31785598397254944, -0.28465503454208374, -1.1951357126235962, 0.8001513481140137, -0.7963001132011414, 0.627846896648407, -0.17744825780391693, 0.5488536953926086, -0.754513144493103, -0.7361785173416138, 0.3543618619441986, 0.09927329421043396, -0.5358688831329346, 0.1875067800283432, -1.1855922937393188, -0.8801894783973694, -1.4404199123382568, 0.1482500284910202, 0.6794688105583191, -0.024961156770586967, 0.11596935987472534, 0.14164064824581146, -1.3977538347244263, -0.012289872393012047, 1.1008542776107788, -0.1045328676700592, 0.2980855703353882, 1.1454226970672607, 1.6633373498916626, 0.6246231198310852, 0.6479814052581787, -0.09066417068243027, 1.2468571662902832, -1.1163480281829834, -0.7157683372497559, -0.4133394956588745, -0.7253916263580322, -0.3849223852157593], [0.6137555837631226, 0.7519007921218872, -3.085517168045044, -0.8923887610435486, 0.44515618681907654, -0.14133751392364502, 1.3243048191070557, 0.8112092018127441, -0.230494886636734, 0.015134472399950027, -1.2360343933105469, -0.2389633059501648, 0.5761999487876892, 0.5164265036582947, 0.9185628294944763, 0.5569474697113037, 0.5486111044883728, -0.46040230989456177, 0.8203773498535156, 1.08887779712677, -0.4288899898529053, -0.5324398875236511, -0.696779191493988, -0.5752084255218506, 0.37246236205101013, -0.7739155292510986, -0.4937981367111206, -1.0659785270690918, -1.4196501970291138, -1.042264699935913, 0.9467769861221313, -0.5375919342041016, -0.5517259240150452, -0.6466172933578491, -1.9223511219024658, -0.15333841741085052, 1.7007896900177002, -0.10822740942239761, 0.44286462664604187, 0.9311770796775818, 1.780010461807251, 0.6340985894203186, 0.2212470918893814, -1.0807509422302246, 0.11765467375516891, 0.004038255661725998, 0.5015242695808411, -0.4303221106529236, 0.603760838508606, -0.6406105160713196, 0.6296647191047668, -0.9582434892654419, 0.7047815918922424, 0.8161646723747253, 1.6296496391296387, -0.4169352948665619, 0.833934485912323, -0.4258202612400055, 0.3199537396430969, -0.44645655155181885, 0.18006636202335358, 0.23290342092514038, 0.18990397453308105, 0.7336162328720093, 0.05997466295957565, -0.2602411210536957, 0.19281421601772308, 1.3141236305236816, 0.27350643277168274, -0.6392358541488647, 0.9789621829986572, 0.2477615773677826, -0.16225692629814148, -0.36525091528892517, -0.8311986923217773, -0.03477107733488083, 0.16585955023765564, 0.9145758748054504, 1.1210442781448364, 0.6529275178909302, -1.173912525177002, -0.4079287052154541, 1.005456805229187, 0.9919167757034302, 1.4481322765350342, -0.04080004245042801, -0.02302205190062523, 0.062123093754053116, -0.3643651604652405, 2.024799346923828, -0.035549335181713104, -0.5396957993507385, 0.8340845704078674, -0.29292356967926025, -0.3260372281074524, -0.6067975759506226, -0.18316912651062012, 0.039015501737594604, -0.9317772388458252, -0.9603559970855713, -0.6254909634590149, -1.4791083335876465, -0.017829176038503647, -0.16345420479774475, 0.20841239392757416, 1.1555895805358887, 0.8026842474937439, -0.057784538716077805, -0.4106881022453308, 0.350954532623291, 0.5957015752792358, 0.29488009214401245, -0.7731248140335083, -1.9063626527786255, -0.5458022952079773, 0.7693212628364563, 1.1667670011520386, 0.49799874424934387, -0.01029961183667183, 1.1353501081466675, -1.079817533493042, -0.5161950588226318, -0.36318448185920715, 0.441356360912323, 0.2125941514968872, -0.35129815340042114, -0.325783371925354, -0.33259856700897217, -0.04456860572099686, -0.17285332083702087, -0.3991347849369049, -0.860075056552887, 1.1535961627960205, 0.5282059907913208, -0.7052152752876282, 0.6364762187004089, 0.002609267830848694, -0.7672972083091736, -0.44620177149772644, -0.8183161616325378, 0.29755961894989014, 0.5062101483345032, 0.17312055826187134, -0.3788205087184906, -0.051909152418375015, -0.3842695653438568, 0.8645018339157104, -0.6512736678123474, -1.2666454315185547, -0.7551581263542175, -0.7105449438095093, 0.08797231316566467, -0.01927923783659935, 0.011481747031211853, 1.105676531791687, -0.18406659364700317, 0.5471881628036499, 0.0702693834900856, 0.3096374273300171, 0.40204185247421265, 0.1935807317495346, -0.23523765802383423, -0.2662929594516754, 0.9461574554443359, 0.11150357872247696, -0.9648164510726929, 0.158042773604393, 0.9197677969932556, 0.44200557470321655, 0.5318477749824524, -0.7175934314727783, -0.4075251519680023, -0.9684524536132812, 0.36243247985839844, -0.05937247723340988, -0.5775341987609863, 0.9773516654968262, -0.5510000586509705, -1.6073079109191895, -1.3444823026657104, 0.6536216735839844, -0.04437883198261261, 0.6409499049186707, 0.04766692593693733, 1.4529180526733398, -0.5451107621192932, 0.25633418560028076, -1.0857508182525635, 0.19837409257888794, -0.6073119044303894, -1.2751520872116089, 0.03637624904513359, -0.944726288318634, -0.013951564207673073, -0.48132213950157166, -0.9246206283569336, 0.023354528471827507, -0.446125864982605, -1.122341513633728, -0.21820181608200073, -0.2431660145521164, -0.5748521089553833, -0.6717507839202881, -0.6506548523902893, -0.5676047801971436, 0.3431716859340668, -1.891701579093933, 0.6700051426887512, -1.2914111614227295, 0.3888217806816101, 1.295419692993164, 0.5615702867507935, -1.1569591760635376, 0.6299221515655518, 0.028601177036762238, -0.7032505869865417, 0.24693889915943146, 0.37517663836479187, 0.07173759490251541, 0.14264890551567078, -0.06321821361780167, 0.7779925465583801, 1.1959130764007568, -0.7913059592247009, 0.47917041182518005, -0.40896499156951904, -0.64291912317276, -0.9640235900878906, -0.06391662359237671, -0.29262059926986694, -0.7667862176895142, -0.968262791633606, 0.7072142362594604, 0.22052916884422302, -1.7616221904754639, 0.4262392818927765, 0.15598522126674652, 0.8824857473373413, 0.3082772195339203, 1.1471967697143555, 0.1088302806019783, 0.9362853765487671, -0.007086597383022308, 0.10050374269485474, -0.960606575012207, 1.0295368432998657, 0.6855042576789856, -1.009680151939392, 0.8290345072746277, 1.0378457307815552, 0.89653080701828, 0.4138781428337097, 1.0027542114257812, -0.29372644424438477, 0.24812953174114227, -0.5930517315864563, -0.8046123385429382, 0.35417455434799194, 0.16743579506874084, 1.5090430974960327, 0.9087927937507629, -0.8774582147598267, 0.03412420302629471, -0.16100552678108215, 0.7964235544204712, -1.2238681316375732, -0.41585201025009155, 0.7964699864387512, 0.2659147381782532, 0.7304441332817078, -0.10757564008235931, 0.3746594190597534, -1.3164596557617188, 0.5802806615829468, -0.44913116097450256, 0.3728630840778351, -0.24353724718093872, -0.06778361648321152, -0.19372674822807312, 0.7722210884094238, -0.32642459869384766, -0.45618936419487, -0.9541372060775757, -0.8247677683830261, 0.9533100128173828, 0.4928600788116455, -0.5615536570549011, 0.6003189086914062, -0.14166153967380524, -0.1857118159532547, 0.7732096314430237, 0.9602195620536804, -0.05438605695962906, -0.10837988555431366, 0.06355714052915573, 0.9126002788543701, 1.5634069442749023, -0.5438442826271057, -0.6626307964324951, -0.49738579988479614, 0.529887855052948, 1.0621410608291626, 1.6811050176620483, 1.456358790397644, -0.16147775948047638, 0.4906335771083832, 0.7221666574478149, 0.2291824072599411, 0.13573132455348969, -0.5373339056968689, -0.2709425985813141, -1.0245347023010254, 0.14074786007404327, 0.11137810349464417, -0.11972180753946304, 0.6581189036369324, 0.012986298650503159, 0.09971688687801361, 0.8589166402816772, -0.23817826807498932, -0.7085700631141663, 0.05189472436904907, -0.6609699726104736, -0.3567800223827362, -0.22628909349441528, 1.3390166759490967, -1.5688403844833374, 0.28587937355041504, -0.1525830775499344, 0.03022567182779312, 0.3047731816768646, 0.17851859331130981, 0.11681141704320908, -0.811794102191925, -0.8002704381942749, 0.03062245063483715, 0.28092068433761597, -0.08827681839466095, -0.7981380820274353, -1.2026402950286865, 0.5492264032363892, 1.0076031684875488, 0.5627651214599609, -1.021551489830017, 1.5985462665557861, -0.3817538022994995, 0.3097233772277832, 0.37935304641723633, 0.787202000617981, 0.3728606402873993, -0.2686307728290558, -0.8374962210655212, 0.1919947862625122, -0.19706904888153076, -0.24512317776679993, 0.5148688554763794, -0.3590736985206604, 1.3182955980300903, 0.7050630450248718, 0.5262672305107117, 1.9084155559539795, -0.21826499700546265, 0.5748493075370789, -1.6104234457015991, 1.033545970916748, 0.7282259464263916, 0.5632609128952026, -0.48091545701026917, 0.17517149448394775, 0.3353889286518097, -0.004190564155578613, 0.31598833203315735, 0.31368592381477356, 0.9290838837623596, 0.18640030920505524, -0.40653109550476074, -0.6761861443519592, 0.1034383699297905, -0.19548942148685455, -0.45738303661346436, 0.08759529143571854, 0.6792367100715637, -0.639704167842865, -0.526186466217041, 1.6161261796951294, 0.2723381519317627, -0.7581980228424072, -0.848343551158905, 0.359848290681839, 0.5381685495376587, -0.019815752282738686, 0.405401349067688, -0.8474869728088379, 0.28020793199539185, 0.8936443328857422, -1.2895829677581787, -0.6953898072242737, 1.2250843048095703, 0.12402161955833435, 1.0685378313064575, -0.7633091807365417, 0.12472188472747803, 0.21394222974777222, 0.2809631824493408, 0.5202622413635254, -0.09904489666223526, 0.13973204791545868, 0.2557607889175415, 0.8435195088386536, 0.31853756308555603, 0.6332104802131653, 0.5367396473884583, -0.47306251525878906, 0.9150353074073792, 0.2511218786239624, 0.7821544408798218, 0.3798578083515167, 0.9396878480911255, 0.33533695340156555, -0.13886304199695587, -0.1686505228281021, -0.09871119260787964, 0.08564137667417526, 0.5776805877685547, 1.5347697734832764, 0.06165421009063721, 0.6673168540000916, 0.8146514892578125, 0.3159111440181732, -2.130793809890747, 0.6068639159202576, 0.5358750224113464, 0.5771549344062805, -0.535193145275116, -0.1302521675825119, 0.116673544049263, -0.5522583723068237, 0.2967461347579956, 0.3653009533882141, 0.5182945132255554, 0.5971647500991821, -0.4406271278858185, -0.3450952172279358, 1.5638843774795532, 1.443221926689148, 1.5228396654129028, 0.5832290649414062, -0.7874882221221924, -0.5779286026954651, 0.6498528122901917, 0.4127131998538971, 0.3636230528354645, 0.8114128112792969, 0.357317179441452, 1.9868789911270142, -1.2931814193725586, -0.5049484968185425, 0.3519541323184967, 0.3821871876716614, -0.02629201114177704, 1.2845255136489868, 0.9893245697021484, -0.19522681832313538, -0.03508695214986801, 0.20109936594963074, -0.21276138722896576, -0.1084824949502945, 0.05260851979255676, 0.24038785696029663, 0.8374240398406982, -0.334486186504364, 0.1384381651878357, -0.5740662217140198, 0.27676504850387573, 0.9098072648048401, -0.3485162556171417, -0.5120481848716736, 0.10039347410202026, -0.5135250687599182, 1.652379035949707, -0.4110286235809326, -0.9133970141410828, 0.4057788848876953, -1.457804799079895, -0.08692635595798492, -0.8424472212791443, -0.6433701515197754, -0.5194645524024963, -0.458371102809906, -0.6173822283744812, 0.4038417339324951, 0.29106375575065613, -0.18317103385925293, 0.36997541785240173, -1.3249716758728027, -0.33828502893447876, 0.7275314331054688, 1.2949713468551636, 0.2419610470533371, -0.007805760949850082, 0.12338851392269135, 0.7512742877006531, -0.5351036787033081, -0.21101228892803192, 0.5564424395561218, -0.7335344552993774, 0.34217554330825806, -0.5497037172317505, -0.9290910959243774, 0.770056962966919, -0.34459608793258667, 0.6253030300140381, 0.9375991225242615, 0.41344326734542847, 1.540159821510315, -0.20954683423042297, -0.5786795616149902, 0.1797836869955063, -0.16433031857013702, 0.11487266421318054, 0.34271275997161865, 0.25599581003189087, -1.5779297351837158, -0.33634743094444275, -1.548699975013733, 0.06730922311544418, -0.18823030591011047, -0.6850700378417969, 0.18766219913959503, 0.023545537143945694, 0.6881999969482422, 0.3424835205078125, -0.6369787454605103, 0.8297789096832275, 0.015808459371328354, -0.39631161093711853, -1.5851181745529175, 0.5802443027496338, -0.6389597058296204, 0.16823318600654602, -0.012825125828385353, 0.19833961129188538, -0.6704793572425842, -0.34562769532203674, -0.5421690344810486, -0.06958531588315964, -0.002952057868242264, -0.5720769762992859, -0.45161762833595276, -0.728639543056488, 0.07686962187290192, -0.0828675925731659, -0.2816040515899658, -0.5980881452560425, 1.075009822845459, -0.6283479928970337, -1.3149042129516602, 0.20020067691802979, -0.4218593239784241, -0.4067626893520355, 0.20122133195400238, 0.5914245247840881, 1.393805742263794, 0.5008126497268677, 0.23148874938488007, -0.24644456803798676, 0.03855651244521141, -0.2706948518753052, -0.2799428105354309, 0.18856336176395416, 0.017884423956274986, -0.930897057056427, -0.5380915999412537, 0.12768131494522095, -1.104020595550537, -0.2859039604663849, -0.8030456304550171, 0.47605979442596436, -1.370844841003418, -1.1224852800369263, -0.8195977807044983, -1.02626371383667, 0.48656168580055237, -1.2570924758911133, 0.025902800261974335, 0.293912410736084, -0.8387113213539124, 0.7766206860542297, 0.2835509181022644, -0.6116609573364258, -0.3749203085899353, -0.7560647130012512, 0.5769569277763367, -0.21525917947292328, 0.9837913513183594, -0.7833165526390076, 0.47959646582603455, -1.663197636604309, -0.8188785314559937, -0.9151913523674011, -0.17241300642490387, 0.9257416725158691, 0.051817573606967926, -1.638023018836975, 0.8094859719276428, 0.39454925060272217, -0.8844522833824158, 0.14073266088962555, 0.28056463599205017, -0.1953429877758026, -0.07418627291917801, 0.5931902527809143, 0.09604264050722122, -0.06022835522890091, 0.7605594992637634, -0.32655200362205505, 1.3304933309555054, 0.1397443264722824, -0.15963202714920044, -0.6323354244232178, -0.017444491386413574, -0.016405832022428513, 0.21844996511936188, -0.8669134378433228, -0.07737727463245392, 0.22246821224689484, -1.0973719358444214, -0.8119376301765442, 0.83554607629776, 0.5698853135108948, -0.6966286301612854, -0.012249946594238281, -1.6163603067398071, -0.062262021005153656, -1.3637981414794922, 0.845313310623169, -0.23240569233894348, -0.0312543660402298, -0.706599235534668, -0.5822058916091919, -0.13994304835796356, -1.1154476404190063, 0.3095196783542633, -0.464146226644516, -0.039569150656461716, -0.8020187020301819, 0.6846993565559387, 0.6966719627380371, 0.4933227002620697, -1.2015410661697388, 1.0119341611862183, 0.48462316393852234, -0.28420138359069824, -0.13179795444011688, 0.31307753920555115, 0.14917141199111938, 1.00625479221344, -0.2408156543970108, 0.22040049731731415, -1.1269088983535767, 0.5142114758491516, 0.10774458199739456, 0.07043179869651794, -0.7454774975776672, 0.019789688289165497, -0.5737648010253906, 0.04077787697315216, -0.11340691149234772, -0.6082912683486938, -0.5303312540054321, 0.9442712664604187, 0.6534094214439392, 0.6708123087882996, 0.5621612668037415, 0.4634755551815033, -0.05669688433408737, 0.21834196150302887, 0.42916882038116455, -0.41905859112739563, -0.6972714066505432, -0.18890231847763062, -0.029055459424853325, 0.04549681395292282, -0.37265580892562866, -0.5800121426582336, -1.568236231803894, -0.10074520111083984, -0.18319091200828552, -0.47918909788131714, 0.33818939328193665, -1.2268083095550537, -0.7795414924621582, 0.3045009970664978, 0.17731443047523499, 0.05960248410701752, -0.21190182864665985, 0.2213999330997467, -0.4324573576450348, -0.8751606941223145, 1.1012901067733765, -0.4156626760959625, 1.2710597515106201, -0.5660507082939148, -0.027225321158766747, -1.0486913919448853, -0.3074510991573334, 0.756819486618042, -0.01183149591088295, 0.34900081157684326, -0.6190225481987, 1.043513536453247, -0.7165951132774353, -0.4270704686641693, 0.1748790591955185, 0.6361249685287476, -0.2286045253276825, -0.012674890458583832, -1.5186800956726074, 0.4008466601371765, 0.7402967810630798, 1.310198426246643, 0.14123807847499847, -0.7853230834007263, -1.0245885848999023, 1.004133701324463, -0.6683319211006165, 1.164544939994812, 0.13512414693832397, 1.025101661682129, -0.05283796042203903, 0.034161973744630814, 0.43756070733070374, -0.29830989241600037, 0.7220309972763062, -0.06055761128664017, 0.12558875977993011, -0.11826790124177933, 0.3370797038078308, -0.5124017596244812, -1.0758506059646606, 0.14051532745361328, 0.29318395256996155, -0.7234866619110107, -0.2512933909893036, -0.8379497528076172, -0.874699592590332, -1.3994914293289185, -0.10821709781885147, 0.08751309663057327, 0.08557137846946716, 0.5252386927604675, -0.5979127287864685, -0.6454343795776367, 0.306979775428772, 0.5095404982566833, -0.13765114545822144, 0.7997346520423889, 1.5288467407226562, 2.189856767654419, 1.0447611808776855, -0.018643569201231003, -0.6673240065574646, 0.6009575128555298, -1.0974187850952148, -0.09529722481966019, -1.0696179866790771, -0.48424652218818665, -0.15930674970149994], [0.44745567440986633, 0.7895683646202087, -2.3856053352355957, -0.3847818672657013, 0.6169590353965759, 0.37094858288764954, 1.3161464929580688, 0.3212733864784241, -0.2759064733982086, -0.9061988592147827, -0.34008851647377014, -0.04187050834298134, 1.2286884784698486, 1.0115333795547485, 0.18282127380371094, 0.3949492871761322, 0.9406306147575378, -0.2567567229270935, 0.6217331886291504, 1.3910675048828125, -0.2864927053451538, -0.1618744432926178, -0.3509700298309326, -0.12555575370788574, -0.09918998181819916, -0.4941718280315399, -0.9700490832328796, -1.2085015773773193, -1.4002776145935059, -1.301567792892456, 1.5527106523513794, -0.25533050298690796, -0.208902508020401, 0.22215622663497925, -1.565529465675354, -0.6466208100318909, 1.4542542695999146, 0.4706586003303528, 0.6666998267173767, 1.0956060886383057, 1.5358198881149292, 0.6369975805282593, -0.06986042857170105, -1.6511379480361938, 0.4518961012363434, -0.04018827900290489, 0.6025293469429016, -0.9165927171707153, 0.6094744205474854, -0.35990574955940247, 0.7255319952964783, 0.6271828413009644, 0.49810218811035156, 1.1737898588180542, 0.9785192012786865, -0.4319726824760437, 0.2167731672525406, 0.3090120851993561, 1.1606577634811401, -0.9214679598808289, 0.5322215557098389, 0.36909595131874084, -0.3555041551589966, 1.0173389911651611, 0.33403798937797546, -0.8801670074462891, -0.1490555852651596, 0.675902247428894, 0.4079435169696808, -0.5743769407272339, 0.3695487976074219, 0.5732404589653015, -0.6163051128387451, 0.6036307215690613, -0.8650262355804443, 0.2815205156803131, 0.57743901014328, 0.5645031929016113, 0.3572368621826172, 0.24197585880756378, -0.8643074631690979, 0.47345274686813354, 0.6075023412704468, 0.43681633472442627, 1.5463128089904785, 0.01908055506646633, -0.021428974345326424, -0.027618790045380592, -0.7955710887908936, 2.2261486053466797, 0.7081964015960693, -0.4030865430831909, 0.3110458552837372, -0.8849356770515442, -0.4154544770717621, -0.6706447005271912, 0.2278417944908142, -0.7904741764068604, -0.8540372848510742, -1.091288685798645, -0.8775792121887207, -0.7659804821014404, 0.542965829372406, -0.2167428731918335, 0.24712346494197845, 1.2874995470046997, -0.08421392738819122, -0.2253226488828659, -1.021620512008667, -0.40563902258872986, -0.22927016019821167, 0.04389898106455803, -0.8645410537719727, -0.8990143537521362, -0.5471816658973694, 0.2574276924133301, 0.8632535338401794, -0.40872180461883545, 0.28504472970962524, 0.6887575387954712, -1.045442819595337, -0.07076668739318848, -0.9819319248199463, 0.5584755539894104, 0.696932315826416, 0.7486162185668945, -0.6563189029693604, -0.847842276096344, 0.9584255814552307, -0.24021677672863007, 0.14489610493183136, -0.05772806331515312, -0.4213835299015045, 0.8419563174247742, -0.480567991733551, 0.8517336249351501, -0.7719760537147522, -0.5265952944755554, -0.36073991656303406, -0.3793164789676666, 0.6463638544082642, -0.7163993120193481, -0.263934850692749, -0.3278804421424866, 0.07636746019124985, -0.3909517824649811, 0.813874363899231, -0.28505420684814453, -0.8841027617454529, 0.3283641040325165, -0.7819151878356934, -0.09325174242258072, 0.25669050216674805, 1.227370262145996, 0.5955363512039185, 0.07310324907302856, -0.01730063185095787, 0.25304728746414185, -0.18666347861289978, -0.10274700820446014, 0.49216344952583313, -0.6364854574203491, -0.3839672803878784, 1.4508548974990845, 0.5124759078025818, -0.7543391585350037, 0.3590506315231323, 1.0413641929626465, -0.16825352609157562, 0.5298284292221069, -0.4737299084663391, -0.38342908024787903, -0.48786842823028564, 0.6288824677467346, 0.6640970706939697, -0.2525162398815155, 1.3955460786819458, -1.021612286567688, -1.3400986194610596, -0.9753108024597168, 0.2164062112569809, -0.20709311962127686, -0.0013909060508012772, -0.20152173936367035, 1.2327330112457275, -0.3447748124599457, -0.024888502433896065, -0.15816660225391388, -0.756468653678894, -1.361599087715149, -0.6585016250610352, -0.6557935476303101, -1.389785647392273, -0.018916111439466476, -0.47157764434814453, -0.8657068610191345, 0.08833139389753342, -1.0049165487289429, -0.9450779557228088, 0.12317553907632828, -0.45285239815711975, 0.2051396369934082, -0.8973990678787231, 0.12374438345432281, -0.6443775296211243, 1.1121087074279785, -1.6931962966918945, 0.8421499133110046, -0.5814366936683655, 0.07376231998205185, 1.150907278060913, 0.09469221532344818, -0.6985892057418823, 0.6398329138755798, 0.09513657540082932, -1.0539705753326416, 0.8666225075721741, 0.4357970952987671, -0.050129085779190063, 0.2838175296783447, 0.015675680711865425, 0.7805410623550415, 0.8530701398849487, -0.045619897544384, 0.3231796622276306, -0.26955538988113403, -0.625106692314148, -0.7225289344787598, -0.7133727669715881, -0.024517947807908058, -0.4200223386287689, -0.9846822023391724, 0.46811074018478394, 0.2677592933177948, -0.5698061585426331, 0.1324123591184616, -0.2576664090156555, -0.24495714902877808, 0.20340684056282043, 1.1928484439849854, 0.1691102236509323, 0.2678322494029999, 0.06504148989915848, 0.08839154988527298, -0.793768584728241, 0.12355343252420425, 1.2519370317459106, -0.0666700154542923, 0.4446218013763428, 1.4053577184677124, 0.7359690070152283, -0.357118159532547, 0.14996784925460815, 0.30928757786750793, 0.3032982349395752, -0.6098242998123169, -0.7056832313537598, 0.09745234251022339, -0.851150631904602, 0.7839915156364441, 0.8323656916618347, -0.9995119571685791, -0.02199378050863743, 0.10142380744218826, 0.02346951700747013, -0.5411569476127625, -0.26537081599235535, -0.27450090646743774, 0.2699470818042755, 0.010715651325881481, -0.12590335309505463, -0.028103694319725037, -0.5860874652862549, 0.7165785431861877, -0.5049105882644653, -0.14805099368095398, -0.4052570164203644, 0.07647868245840073, -0.07161625474691391, 0.3517973721027374, -0.06418360024690628, -1.2704840898513794, -0.7515023946762085, 0.18973322212696075, 1.3387460708618164, -0.3616059720516205, -0.6974166631698608, 0.05992725118994713, 0.021730508655309677, 0.19856558740139008, 0.12956590950489044, 0.6778588891029358, 0.3427234888076782, -0.38377848267555237, -0.27892202138900757, 0.7960426211357117, 0.860353946685791, -0.8535250425338745, -1.2425674200057983, 0.19022104144096375, 0.9046048521995544, 1.4130921363830566, 1.3057279586791992, 1.5666639804840088, 0.8000216484069824, -0.13235436379909515, -0.6523059606552124, -0.2902086675167084, -0.6261438131332397, -0.5785420536994934, -0.8342382907867432, -1.337104082107544, -0.4411965608596802, -0.31961551308631897, -0.4221515953540802, 0.8113369345664978, -0.052798472344875336, 0.7051125764846802, 1.4399579763412476, -0.0682826042175293, -1.0752416849136353, -0.6810875535011292, -0.06964513659477234, -1.038954496383667, 0.629560649394989, 1.4038439989089966, -1.252024531364441, -0.39894068241119385, 0.30002468824386597, 0.16764985024929047, 0.3890794813632965, -0.17432568967342377, 0.013061055913567543, -1.7308558225631714, -0.8303915858268738, -0.3357717990875244, 0.9367193579673767, -0.069423608481884, -0.03220721334218979, -0.3632549047470093, 0.37585243582725525, 0.49397608637809753, 0.2027815580368042, -0.9872390627861023, 0.9466961026191711, -0.7230761647224426, 0.22497351467609406, 0.05809929594397545, 0.0837453082203865, 0.727901816368103, -0.26413196325302124, -0.4554002583026886, 0.08629713207483292, -0.018150486052036285, -0.2966136336326599, 0.6449525356292725, -0.3001134693622589, 0.999214231967926, 0.8184424638748169, 0.4958727955818176, 1.075730562210083, -0.48391130566596985, -0.010680710896849632, -1.2722779512405396, 0.9974543452262878, 0.9574353098869324, 0.9764098525047302, -0.1048145592212677, 0.19726689159870148, 0.14393401145935059, 0.32529011368751526, 0.5522518157958984, 0.4165226221084595, 1.314997673034668, 0.8259698748588562, -0.46102002263069153, -0.1868346929550171, -0.2609809339046478, -0.02887013927102089, -0.5653587579727173, -0.28723496198654175, 0.6776593327522278, -0.8381877541542053, -0.5110998749732971, 1.226859450340271, 1.110886812210083, -0.3227570354938507, -0.5433845520019531, -0.10504256188869476, 0.9492683410644531, -0.3587407171726227, 0.4183148741722107, -0.6891345977783203, 0.022281624376773834, 0.09907849133014679, -1.231770634651184, -0.44114693999290466, 0.928497314453125, 0.378601610660553, 0.6555681228637695, -1.1170940399169922, -0.21075540781021118, -0.4275726079940796, 0.027967683970928192, 0.5823768973350525, -0.6765127778053284, 0.17283539474010468, -0.13441890478134155, -0.232661172747612, 0.12452388554811478, 0.05569270998239517, 1.1206934452056885, -0.6717840433120728, -0.15488982200622559, 0.02517937868833542, -0.31546750664711, 0.27868416905403137, -0.06325090676546097, -0.7122349739074707, 0.4533594846725464, -0.7498204708099365, -0.12617573142051697, -0.2041981816291809, 0.2813878357410431, 1.7248419523239136, 0.4387012720108032, 0.7301599383354187, 0.4063860774040222, -0.5266931653022766, -1.1153956651687622, 0.5724074840545654, 0.5434752106666565, 0.134726881980896, -0.18400874733924866, -0.8256508111953735, 0.46054255962371826, -0.24843797087669373, 0.23960600793361664, 0.1412190943956375, 0.5898929238319397, 0.8094044923782349, -0.03514894098043442, -0.29717305302619934, 0.5407755970954895, 1.5577423572540283, 1.7723928689956665, 0.3776550889015198, -0.7169207334518433, -0.43796733021736145, 0.9222776293754578, -0.4185900390148163, 0.4986640214920044, 0.925320565700531, -0.009049497544765472, 1.5372546911239624, -1.669804573059082, -0.33691662549972534, 0.2173030525445938, -0.13588623702526093, 0.31615838408470154, 0.5909396409988403, 0.5721602439880371, -0.1528826504945755, 0.5352394580841064, -0.16892653703689575, -0.2516798675060272, 0.33196499943733215, 0.013812581077218056, -0.7343732118606567, 0.5457605719566345, -0.7857252359390259, 0.2583129107952118, -0.7564998269081116, -0.04130072519183159, 0.006932133808732033, 0.28927963972091675, 0.22758282721042633, 0.25147727131843567, -0.01583694852888584, 1.0642945766448975, -1.0341877937316895, -1.1466634273529053, 0.43673473596572876, -0.563689649105072, 0.32115039229393005, -0.7287563681602478, -0.20355170965194702, -0.4671141803264618, -0.8348724246025085, -0.2104278951883316, 1.0754516124725342, -0.2398245632648468, -0.20129279792308807, -0.062011152505874634, -1.3490538597106934, 0.22211489081382751, 0.46845901012420654, 1.5324116945266724, 0.23780912160873413, 0.6717751026153564, 0.656928300857544, 0.8300296068191528, -1.4045190811157227, -0.09193934500217438, 0.6721409559249878, 0.09894569963216782, 0.1250268518924713, -1.0084073543548584, -0.3831560015678406, 0.3308277726173401, 0.3960128724575043, 0.22363130748271942, 0.6087291836738586, 1.2569215297698975, 1.3764203786849976, -0.3379213213920593, -0.6331492066383362, 0.30310577154159546, -0.7456371188163757, -0.41283759474754333, 0.7097951769828796, -0.8605920672416687, -0.31344836950302124, -0.370697021484375, -1.5035799741744995, 1.057303786277771, -0.13715022802352905, -0.7150149345397949, 0.6435874700546265, 0.8038454055786133, 0.22945791482925415, 1.1214877367019653, -0.11556737124919891, 0.40144291520118713, 0.14871732890605927, -0.11704658716917038, -1.854753851890564, 0.44846251606941223, 0.28492823243141174, 0.21830037236213684, -0.6385908722877502, 0.28645092248916626, 0.28935539722442627, -0.6049822568893433, -0.40378180146217346, -0.09674261510372162, 1.446683406829834, 0.6684208512306213, 0.6997014880180359, -0.8716288805007935, 0.38978275656700134, -0.4705718755722046, -0.2579953968524933, -0.1286417841911316, 0.6356905102729797, 0.28512465953826904, -1.0492850542068481, -0.3852464556694031, -0.559991717338562, -0.3848205804824829, -0.0897642970085144, -0.23828551173210144, 1.2161072492599487, 0.010578255169093609, -0.2383173555135727, -0.07139480859041214, 0.05163285508751869, -0.7551121711730957, -0.3127729296684265, -0.1748536080121994, 0.6344815492630005, -1.7251349687576294, -0.217532217502594, -0.41755738854408264, -0.5388490557670593, -0.1993621438741684, 0.32632502913475037, 0.035527024418115616, -1.1948466300964355, -0.6613884568214417, -0.9742890000343323, -0.003982714843004942, 0.8006735444068909, -0.5688755512237549, 0.1664644479751587, 0.2885069251060486, -0.9953421950340271, 0.7595621347427368, -0.01484299823641777, -1.2191294431686401, -0.07371576130390167, -1.3305058479309082, 1.325472116470337, -0.14843077957630157, 0.050070054829120636, 0.3979826867580414, 1.472240686416626, -0.4798690378665924, -0.6867853403091431, -1.179760456085205, 0.07938645780086517, 0.7129076719284058, 1.5275688171386719, -1.1485531330108643, 1.2790437936782837, -0.02984762378036976, -1.236033320426941, 0.1483100950717926, -0.08609233051538467, -0.5102862119674683, 0.7191511988639832, 0.26039382815361023, 0.33350521326065063, 0.08724632114171982, 1.1189981698989868, 0.14036987721920013, 0.8334465622901917, 0.3979134261608124, 0.30457356572151184, -0.8716133236885071, -0.19554749131202698, -0.3498217463493347, 0.1762850284576416, -1.1716264486312866, -1.2092084884643555, 0.019430704414844513, -1.3996198177337646, -0.8477897047996521, 0.5338209271430969, 1.012027382850647, -0.4995881915092468, 0.09604935348033905, -0.41230276226997375, 0.4120922386646271, -0.5174111127853394, 0.7663399577140808, -0.22181940078735352, 0.1052628830075264, -0.2988934814929962, -0.514819324016571, 0.12297208607196808, -1.5594524145126343, 0.04516621306538582, -0.03571626543998718, -0.14149297773838043, -0.054313454777002335, 0.4816111624240875, 0.9556185603141785, -0.5584548711776733, -0.655511200428009, 1.2356330156326294, 1.2861028909683228, -0.2601057291030884, -0.05182648077607155, 0.6721389889717102, 0.5106637477874756, 0.6549884080886841, -0.4562760889530182, -0.395917683839798, -1.037889838218689, 0.10233258455991745, 0.18040631711483002, -0.1714003086090088, -0.6478090882301331, -0.23398903012275696, -0.17351166903972626, 0.8413573503494263, 0.4437876343727112, -0.596312940120697, -0.20493556559085846, 1.1231080293655396, -0.346597284078598, 0.3875238597393036, 0.8442685604095459, 0.19163642823696136, 0.5337146520614624, 0.43774205446243286, 0.1935672163963318, 0.7319902181625366, -0.30282703042030334, 0.2850312292575836, -0.01725667528808117, -0.23212210834026337, -0.18354429304599762, -0.8300791382789612, -1.4534000158309937, -0.21362042427062988, -0.687507688999176, -0.6550576686859131, 0.011861688457429409, -1.627935528755188, -0.7825822234153748, 0.1522912085056305, 0.07361356168985367, -0.2750847637653351, -0.6363455057144165, 0.45596617460250854, -0.398959755897522, -0.12867875397205353, 1.2183098793029785, -0.05479149892926216, 1.266156792640686, 0.10187360644340515, -0.30440205335617065, -0.9725854396820068, -0.41589710116386414, 0.8576419949531555, -0.18270771205425262, -0.18712086975574493, -0.03835085779428482, 0.41244134306907654, 0.03464210405945778, -0.585508406162262, 0.6063967943191528, -0.8975479602813721, 0.17062412202358246, 0.03679772466421127, -1.0828373432159424, -0.19894854724407196, 0.5569671392440796, 0.3159482181072235, -0.06289582699537277, -0.6173064112663269, -1.4206819534301758, 0.750408947467804, -0.5292587876319885, 1.1856646537780762, -0.4211250841617584, 1.1259503364562988, 0.30759963393211365, -0.3840608298778534, -0.1362687349319458, -1.0304325819015503, 0.6679820418357849, -0.06899171322584152, 1.0415862798690796, -0.30629512667655945, -0.15400199592113495, -0.08263197541236877, -1.3183493614196777, 0.3725321888923645, 0.4634271562099457, -0.23598748445510864, 0.0550045445561409, -1.3692514896392822, -0.7844628691673279, -0.5107002854347229, 0.30126890540122986, 1.044732928276062, -0.06714965403079987, 0.5638284087181091, -0.37968552112579346, -1.0738840103149414, 0.015525049529969692, 0.9012670516967773, -0.5397560596466064, -0.005771748721599579, 1.723327398300171, 1.6453880071640015, 0.918898344039917, 0.10114444047212601, -0.28269949555397034, 0.5208376049995422, -0.9087035655975342, -0.5218356847763062, -0.8010521531105042, -0.10880424082279205, 0.10823778063058853], [0.6169954538345337, 0.6181463599205017, -2.423950433731079, -0.512127697467804, 0.19256474077701569, 0.8015762567520142, 1.084558129310608, 0.3796696960926056, 0.3622520864009857, -0.10814505815505981, -0.3174974024295807, -0.06498351693153381, 1.1184831857681274, 0.7589912414550781, -0.14450538158416748, 0.15217919647693634, 0.8202192187309265, -0.5204944014549255, 0.907059907913208, 1.5489091873168945, -0.47682610154151917, -0.1324874460697174, -0.1462010145187378, -0.1825295388698578, -0.24637876451015472, -0.2517390251159668, -1.3514549732208252, -1.1342082023620605, -0.9397872090339661, -1.2971826791763306, 1.0290124416351318, -0.3516714572906494, -0.6545689105987549, -0.6244562864303589, -1.0156662464141846, 0.004417140036821365, 0.964079737663269, 0.10522594302892685, 1.2493324279785156, 1.0350701808929443, 1.0167521238327026, 0.9293422698974609, -0.18696124851703644, -0.7694052457809448, 0.2885994613170624, 0.016336314380168915, 0.6044479608535767, -0.9569305777549744, 0.43974271416664124, -0.10172948986291885, 0.6102915406227112, -0.7532490491867065, 0.5784654021263123, 0.1203698068857193, 1.6792991161346436, 0.09408334642648697, 0.7752785682678223, 0.14952124655246735, 0.9900172352790833, -1.2799218893051147, 0.7101528644561768, -0.0017866343259811401, -0.6023612022399902, 0.9868060350418091, -0.23323291540145874, -0.6125146150588989, -0.19320735335350037, 0.9458164572715759, 0.016250506043434143, -0.32730966806411743, 0.8565419912338257, 0.9641072154045105, -0.5702539682388306, 0.061275456100702286, -0.8009352684020996, 0.008144170045852661, 0.27519491314888, 0.9364171624183655, 0.7276204228401184, 0.6769046783447266, -0.21590960025787354, -0.43996039032936096, 0.6126716732978821, 0.3518451452255249, 1.8604907989501953, 0.172651469707489, -0.05350151285529137, 0.6510653495788574, -0.407356858253479, 2.1127312183380127, 0.08056151866912842, -0.12063298374414444, 0.7655996680259705, -0.5808144807815552, -0.4570072591304779, -0.555512547492981, 0.1005157083272934, 0.24140237271785736, -1.1846281290054321, -0.38155415654182434, -0.4482549726963043, -1.008381724357605, 0.5811914205551147, -0.04479704052209854, 0.22402648627758026, 1.1690824031829834, 0.9249114990234375, 0.29307568073272705, -0.5698214769363403, 0.22955071926116943, 0.1415202021598816, 0.4586283266544342, -0.542652428150177, -1.0423052310943604, -1.0110448598861694, 0.3671584725379944, 1.2304350137710571, 0.1445031315088272, 0.18644380569458008, 1.194321870803833, -0.9893888235092163, -0.489946573972702, -0.8671770691871643, 0.4076465368270874, 0.24284613132476807, 0.4273588955402374, -0.5114589333534241, -0.5532106161117554, 0.4022366404533386, -0.2622973620891571, -0.33395758271217346, -0.4654082953929901, 0.29507502913475037, 0.45336300134658813, -0.4601459503173828, 1.3481571674346924, -0.21491937339305878, -0.6661938428878784, 0.2723519206047058, -0.19177252054214478, 0.6617512702941895, 0.20145702362060547, 0.3480943441390991, -0.051392119377851486, -0.061367217451334, -0.3686070442199707, 0.09965331852436066, -0.5701273083686829, -0.7510063052177429, 0.28476548194885254, -0.33587226271629333, 0.05011620372533798, 0.2530798614025116, 0.3968381881713867, 0.5358571410179138, 0.17206959426403046, 0.2472691833972931, 0.6602901816368103, 0.5475465059280396, 0.43166255950927734, -0.029969917610287666, -0.3551749587059021, -0.18594317138195038, 0.6160387396812439, 0.06486387550830841, -0.6913262605667114, 0.1133367195725441, 0.6316210627555847, 0.4843045473098755, 0.6366013884544373, -0.7723598480224609, -0.05982983857393265, -0.41704273223876953, 0.43635308742523193, -0.01502055674791336, -0.6810336112976074, 1.1025404930114746, -1.2756098508834839, -1.139915108680725, -1.1065232753753662, -0.1257820874452591, -0.37193164229393005, -0.22482408583164215, -0.09075377136468887, 0.4891411066055298, -0.3695499300956726, -0.0687221884727478, -0.4646526575088501, -0.1512170135974884, -0.8308896422386169, -0.6709960103034973, 0.04947774112224579, -0.3676488995552063, 0.21592654287815094, -0.13102291524410248, -1.1002943515777588, 0.2867487967014313, -0.8629303574562073, -0.6794443726539612, 0.06521879136562347, -0.10317140817642212, -0.4909505546092987, -0.9582813382148743, 0.15636876225471497, -0.4690786302089691, 0.6898516416549683, -1.0606623888015747, 0.9313670992851257, -1.1521037817001343, -0.0872812271118164, 1.3817058801651, 0.6273855566978455, -0.7668370604515076, 0.6646617650985718, 0.07795809209346771, -0.967014729976654, 0.026211760938167572, 0.032489679753780365, -0.18575631082057953, 0.00039614224806427956, -0.09196615219116211, 0.6833178997039795, 0.6736064553260803, -0.31003904342651367, 0.2912035882472992, 0.17407749593257904, -0.6814061403274536, -0.5998526215553284, -0.7736945748329163, 0.24721530079841614, -0.16540321707725525, -1.221783995628357, 1.121620774269104, 0.06852716952562332, -0.49312305450439453, 0.5985128879547119, -0.30917075276374817, 0.07502063363790512, 0.24184559285640717, 1.0150386095046997, 0.034838639199733734, 0.8700774312019348, -0.6200398802757263, -0.309101402759552, -0.6273052096366882, 0.1821952611207962, 0.7800096273422241, -1.1836124658584595, 0.21828529238700867, 1.1769764423370361, 0.7390921711921692, 0.4780610203742981, 0.645917534828186, 0.011306260712444782, 0.126031294465065, -0.6417398452758789, -0.6823058128356934, 0.423225075006485, -0.09944858402013779, 0.6065576076507568, 0.26870197057724, -0.1304408609867096, -0.3604784905910492, -0.012835155241191387, 0.5820532441139221, -0.807309091091156, -0.8413701057434082, 0.011046133004128933, -0.1183042898774147, 0.48321595788002014, -0.13428449630737305, 0.7297518849372864, -0.5509092807769775, 0.4989407956600189, -0.6188223361968994, -0.1851375699043274, -0.7005322575569153, 0.3319488763809204, -0.46497219800949097, 0.5138437747955322, -0.4553108215332031, -1.0086092948913574, -0.3725116550922394, -0.09122272580862045, 0.8342265486717224, -0.27555856108665466, -0.47060427069664, 0.28031447529792786, -0.01840459741652012, -0.06946016848087311, -0.09687826037406921, 0.33562713861465454, -0.13649670779705048, -0.5564969778060913, 0.07460509240627289, 1.0484371185302734, 1.2918267250061035, -0.5026620030403137, -0.9697690010070801, -0.605474591255188, 0.4599357843399048, 0.8376199007034302, 0.710433840751648, 1.5094882249832153, 0.41160306334495544, 0.16363391280174255, -0.06829047948122025, -0.3303156793117523, -0.2282017171382904, -0.550160825252533, -0.696712851524353, -0.8690927624702454, -0.6421928405761719, 0.007891896180808544, -0.27449384331703186, 0.2877826690673828, 0.21717558801174164, -0.06294428557157516, 1.2408868074417114, 0.22703717648983002, -0.3298189043998718, -0.5671312212944031, -0.007468309719115496, -0.579193651676178, 0.18301573395729065, 1.3343713283538818, -1.4073002338409424, 0.15106776356697083, -0.2707189619541168, 0.14878004789352417, 0.4454239010810852, -0.06157781556248665, -0.4788059890270233, -1.004034399986267, -0.9686517715454102, -0.3917452394962311, 0.5093339681625366, 0.18307706713676453, -0.2553311884403229, -0.7727949023246765, 0.6621742248535156, 0.7563832402229309, 0.1364119052886963, -0.5726532936096191, 0.9539726376533508, -0.027415724471211433, -0.011152339167892933, 0.34164729714393616, 0.21144184470176697, 0.414252370595932, 0.04597504809498787, -0.6368314623832703, 0.10166829824447632, 0.059030793607234955, 0.28492000699043274, 0.7204258441925049, -0.3176144063472748, 1.2690935134887695, 0.3738316595554352, 0.10117508471012115, 1.3947328329086304, -0.2420675903558731, 0.5370482206344604, -1.2993276119232178, 0.6555514335632324, 0.2649098038673401, 0.726850152015686, -0.235775887966156, 0.43255823850631714, 0.5782465934753418, 0.0885339304804802, 0.2436361163854599, 0.42897769808769226, 0.8754528760910034, 0.28849655389785767, -0.16245365142822266, -0.5294297933578491, 0.3942234516143799, -0.1889503300189972, -0.8967881798744202, 0.09886473417282104, 0.27140191197395325, -0.7780991196632385, -0.05839697644114494, 0.9961825013160706, 0.13504734635353088, -0.23963770270347595, -0.27496394515037537, 0.2021113783121109, 0.47017189860343933, 0.12539760768413544, 0.48685306310653687, -0.37216904759407043, 0.1334330141544342, 0.43329286575317383, -1.1996334791183472, -0.445617139339447, 0.5379084944725037, 0.4381695091724396, 0.8780010938644409, -0.9284101724624634, 0.4220365583896637, 0.29951056838035583, 0.7117294073104858, -0.10982656478881836, -0.13886301219463348, 0.10856765508651733, -0.3359405994415283, 0.3187815546989441, -0.05040654167532921, 0.6319776177406311, 0.20771460235118866, -0.6393471956253052, -0.1263485997915268, -0.1916855424642563, 0.20430293679237366, -0.23760825395584106, 0.8050773739814758, 0.14133824408054352, -0.18068139255046844, -0.18577927350997925, 0.13623613119125366, -0.29114463925361633, 0.5044631361961365, 1.7419461011886597, 0.6218787431716919, 0.5912549495697021, 0.6431942582130432, 0.009687911719083786, -1.4165977239608765, 0.601931631565094, 0.526960551738739, 0.1047872006893158, -0.6069823503494263, 0.023557983338832855, -0.0923190489411354, -0.036887023597955704, 0.6670165657997131, 0.8201068639755249, 0.846584677696228, 0.9040601849555969, -0.5271167159080505, 0.12249957770109177, 0.9459061622619629, 0.8181647062301636, 1.881032943725586, 0.31601715087890625, -0.0020067617297172546, -1.0556745529174805, 0.40922337770462036, -0.33616188168525696, -0.1401950567960739, 0.7644931674003601, 0.24297122657299042, 1.7258045673370361, -1.4633426666259766, -0.4447808265686035, -0.04948728159070015, -0.004066338296979666, -0.03733173385262489, 1.1585533618927002, 0.04837808012962341, 0.23751533031463623, 0.28561902046203613, -0.2891883850097656, -0.30282846093177795, -0.0949067622423172, -0.07333767414093018, -0.4000687003135681, 0.6262377500534058, -0.766753077507019, 0.8246854543685913, -0.5325744152069092, 0.31250765919685364, 0.49945151805877686, -0.6905003786087036, -0.7647337317466736, 0.13081702589988708, 0.256693571805954, 1.3277572393417358, -0.6630527377128601, -1.1417006254196167, 0.4224565625190735, -0.838961660861969, -0.16829662024974823, -0.314208447933197, -0.5036544799804688, -0.10498751699924469, 0.13164764642715454, -0.3264792859554291, 0.9413423538208008, 0.15277999639511108, 0.08386094123125076, -0.33002638816833496, -1.298689842224121, -0.5213239192962646, 0.30900266766548157, 1.2244457006454468, 0.17369501292705536, 0.3581934869289398, -0.0659065768122673, 0.7971138954162598, -1.0502814054489136, -0.3288980722427368, 0.6252977848052979, -0.36591091752052307, 0.2880405783653259, -0.7881993651390076, -0.6823363900184631, 0.6933504939079285, -0.015286778099834919, 0.5955272912979126, 0.33751142024993896, 1.227708101272583, 1.579694151878357, -0.42208096385002136, -0.44647881388664246, 0.4998946487903595, -0.30884745717048645, -0.4712637662887573, 0.7612346410751343, 0.06508924067020416, -1.1227163076400757, 0.013735305517911911, -1.921440839767456, 0.6643257141113281, -0.24048098921775818, -1.1924763917922974, 0.1928473711013794, 0.23928263783454895, 0.6560695767402649, 0.7916224598884583, -0.5671406388282776, 0.3979158103466034, -0.3151823878288269, -0.41277503967285156, -1.8150265216827393, 0.3680059313774109, -0.06279813498258591, 0.31007838249206543, 0.1262713223695755, 0.33968183398246765, -0.016194244846701622, -0.38102486729621887, -0.10014214366674423, 0.4581979811191559, 0.25997239351272583, 0.1415090560913086, 0.6145721673965454, -1.0425565242767334, -0.030861584469676018, 0.08194765448570251, -0.5415339469909668, -0.5130375623703003, 0.49245181679725647, -0.39222022891044617, -0.9769465327262878, -0.4325910210609436, -0.79328852891922, -0.7178645133972168, 0.15859314799308777, 0.15972767770290375, 1.1296778917312622, -0.13097935914993286, -0.4545855224132538, 0.014336951076984406, -0.019491372630000114, -0.43317911028862, -0.1832953691482544, -0.05199812352657318, 0.40769654512405396, -1.5270140171051025, -0.46458926796913147, 0.32458385825157166, -1.0303459167480469, -0.48104187846183777, -0.3117780089378357, 0.23100140690803528, -1.3066598176956177, -1.5065840482711792, -0.30287912487983704, -0.604988157749176, 0.3987216353416443, -0.7367732524871826, -0.19973096251487732, 0.5435189604759216, -1.1154545545578003, 0.7420019507408142, 0.5403194427490234, -0.6245572566986084, -0.4130392372608185, -0.9773802757263184, 0.4434831142425537, -0.11201480776071548, 0.21862417459487915, -0.2606821656227112, 0.603624701499939, -1.1261428594589233, -1.6058306694030762, -1.479925513267517, -0.10744167864322662, 0.5289936661720276, 0.7987077832221985, -1.1832280158996582, 0.6123540997505188, 0.9228600859642029, -0.5133396983146667, 0.19291961193084717, 0.37632471323013306, -0.4429600238800049, -0.15697753429412842, 0.6455162167549133, -0.6956782937049866, 0.043880268931388855, 0.5570710897445679, -0.36674803495407104, 0.7006382942199707, 0.08503220230340958, -0.12222617864608765, -0.9705830812454224, -0.16292160749435425, -0.3705493211746216, 0.3920814096927643, -1.157170057296753, -1.0280667543411255, 0.1681670993566513, -1.104520320892334, -0.2567194998264313, 0.8275238275527954, 0.25960806012153625, -0.8163951635360718, -0.3616023659706116, -1.2897953987121582, 0.31986090540885925, -0.8233255743980408, 0.7898520827293396, -0.8424506783485413, 0.3920227587223053, -0.6595410108566284, -0.5389971137046814, 0.2595216929912567, -1.0551059246063232, 0.43809735774993896, 0.0548570491373539, -0.24909207224845886, -0.16194023191928864, 0.683561384677887, 1.1395480632781982, -0.22362089157104492, -0.7562344670295715, 0.8805635571479797, 0.8809462785720825, 0.12633143365383148, -0.5051504373550415, 0.22798138856887817, 0.40743184089660645, 0.963507354259491, -0.15830059349536896, 0.4161156415939331, -0.9942921996116638, 0.8851925134658813, 0.32129281759262085, 0.3184388279914856, -0.6419323086738586, 0.19646891951560974, -0.164502814412117, 0.6661630868911743, -0.29582861065864563, -0.9377210736274719, -0.06545814871788025, 0.9296150803565979, -0.07948985695838928, 0.2379111647605896, 0.1781214326620102, 0.32866060733795166, 0.026479516178369522, 0.3234967589378357, 0.3878564238548279, 0.35608386993408203, -0.7698392271995544, -0.4090883433818817, -0.42475879192352295, -0.07567144185304642, -0.2954031229019165, -0.24526381492614746, -1.1122697591781616, -0.19301767647266388, -0.4405632019042969, -0.24960361421108246, 0.07399995625019073, -1.1937453746795654, -0.8799337148666382, 0.35570284724235535, -0.18198268115520477, -0.27169153094291687, 0.07830911874771118, 0.2574862837791443, 0.019354747608304024, -0.0506904162466526, 0.8657294511795044, -0.413034588098526, 0.9796918630599976, 0.005869386717677116, -0.16943620145320892, -0.6087419986724854, -0.08320491015911102, 0.3673308789730072, 0.06340718269348145, -0.01829705201089382, -0.12147865444421768, 0.013010958209633827, -0.156866192817688, -0.4653729200363159, 0.041860971599817276, 0.4775106608867645, -0.14431075751781464, 0.09394923597574234, -0.9779990911483765, 0.517677366733551, 0.7078598737716675, 0.975213885307312, 0.17703384160995483, -0.3602268397808075, -0.8640458583831787, 0.48693057894706726, -0.44272851943969727, 1.2895588874816895, -0.4760175943374634, 0.6800909042358398, -0.17813409864902496, 0.25235462188720703, -0.1878037452697754, -0.2571321427822113, 0.8333662748336792, -0.4831241965293884, 0.41009414196014404, 0.13006427884101868, 0.324557363986969, -0.8267197012901306, -1.0288822650909424, 0.628164529800415, 0.6657151579856873, -0.6303404569625854, -0.11852759122848511, -0.975738525390625, -0.7297480702400208, -0.9421371221542358, 0.30020445585250854, 0.5894539952278137, 0.06615986675024033, 0.162858784198761, -0.5009790062904358, -0.7044520974159241, 0.391237735748291, -0.4054282009601593, -0.20274858176708221, 0.5814306139945984, 1.6271077394485474, 1.9355074167251587, 0.8769429922103882, -0.046606939285993576, -0.4529949426651001, 0.6685062050819397, -0.49540022015571594, -0.4014938175678253, -0.5124999284744263, -0.6193618774414062, 0.0033838171511888504], [-0.33665716648101807, 1.1898415088653564, -2.669403314590454, -0.1779913604259491, 1.099902868270874, 0.5068248510360718, 1.3082170486450195, -0.36693379282951355, 0.0673617273569107, -0.43766874074935913, 0.3288661539554596, 0.23637063801288605, 0.3573967218399048, 0.8594624400138855, 0.37856072187423706, 0.655535101890564, 0.648612380027771, -1.1108644008636475, 0.4618837833404541, 1.5539549589157104, -0.7279092073440552, -0.5525416135787964, -0.3544734716415405, -0.20348656177520752, -0.2943587005138397, 0.38027289509773254, -1.153315544128418, 0.04948650300502777, -1.1326184272766113, -0.9645891189575195, 0.45997390151023865, -0.6667526960372925, -0.350020170211792, 0.1565227061510086, -1.6215243339538574, 0.5631359815597534, 1.5368882417678833, 1.2588461637496948, 1.1762073040008545, -0.031144244596362114, 2.1531362533569336, 0.0005586221814155579, -0.28786683082580566, -1.3784992694854736, -0.24795815348625183, -0.7970082759857178, 0.923313319683075, -0.807884931564331, 0.46700963377952576, -0.5799403190612793, 0.30927127599716187, -0.879517674446106, 0.9331663846969604, 1.5319339036941528, 1.52890145778656, -0.5837463140487671, 0.0036812853068113327, 0.3215630054473877, 0.8938339948654175, -0.8864163756370544, 0.47205474972724915, -0.24271535873413086, -0.12038306891918182, 0.46691983938217163, 0.192540243268013, 0.2660438120365143, -0.29171621799468994, 0.560936450958252, 0.2315439134836197, -0.13316181302070618, 0.3190770745277405, 0.6787304878234863, -0.9872809648513794, 0.9404955506324768, -1.3410289287567139, 0.6489769220352173, 0.5527856349945068, 0.4854520559310913, -0.020923739299178123, 0.3721155524253845, -1.1177196502685547, -0.35217228531837463, 1.233132243156433, -0.6753174066543579, 0.572928786277771, -0.0684693455696106, 0.6155312061309814, -0.15442447364330292, -0.6960205435752869, 1.4691556692123413, 1.0600390434265137, 1.1428998708724976, 0.5577000379562378, -0.09606523811817169, -0.24839133024215698, -0.08816161006689072, 0.022343561053276062, -0.4960674047470093, -1.214747667312622, -0.6090019941329956, -0.007481701672077179, -0.9806763529777527, 0.5070085525512695, 0.12746039032936096, -0.4703157842159271, 1.3248592615127563, -0.1091914102435112, -0.0047910623252391815, -0.3201015889644623, 0.007990486919879913, -0.21414732933044434, 0.08329827338457108, -1.194701910018921, -0.9971311092376709, -0.5466763973236084, 1.0030221939086914, 1.1219136714935303, -0.921963095664978, 0.4054242968559265, 0.8239749073982239, 0.4533444046974182, -0.04478384554386139, -0.18523795902729034, 0.4875333607196808, 0.6709959506988525, 0.016726084053516388, -0.5807708501815796, -0.9383058547973633, 0.27365970611572266, -0.22226163744926453, 0.04515412822365761, -0.9064018726348877, -0.45526495575904846, 0.7104378938674927, -0.9250020980834961, 1.383962631225586, -0.41336119174957275, -0.665489137172699, 0.09838501363992691, -0.9555694460868835, 0.20502641797065735, -0.33638709783554077, 0.14579671621322632, -0.4787953197956085, -0.45809823274612427, -0.8687921166419983, 0.47398245334625244, 0.05119207128882408, -0.676116943359375, 0.3186943531036377, -0.9522736072540283, 0.11022167652845383, 0.7912341952323914, 0.36302483081817627, 0.33099326491355896, -0.4144260883331299, -0.16036200523376465, 0.13903532922267914, 0.6821410655975342, 0.3262958526611328, 1.0998541116714478, 0.13459447026252747, -1.0787022113800049, 0.2850542962551117, 0.6510794162750244, 0.05768386647105217, 0.22665831446647644, 0.4017255902290344, 0.2758966088294983, 1.29445481300354, -0.17535673081874847, -0.7920403480529785, -0.23127108812332153, 0.3519286513328552, 0.8004013299942017, -1.4637585878372192, 1.11057448387146, -0.10949408262968063, -1.79134202003479, -1.2316186428070068, 0.4433337450027466, -0.9345242977142334, 0.3714669346809387, -0.27694210410118103, 0.7202386260032654, -0.6264265775680542, 0.3640926480293274, -0.0367499440908432, -0.7064553499221802, -0.9806280136108398, -0.7735766172409058, -0.2851395010948181, -1.097156047821045, 0.135395810008049, -0.8835623264312744, -0.704389214515686, 0.4293534755706787, -0.9743363261222839, -0.6768444776535034, 0.3521835207939148, 0.27249693870544434, -0.28748461604118347, -0.39854225516319275, 0.36916583776474, -0.2679237723350525, 0.69136643409729, -1.1292297840118408, 0.4155234396457672, -1.1059010028839111, 0.09597937762737274, 0.5193523168563843, -0.128493994474411, -0.7238510847091675, 0.806336522102356, 0.3126673698425293, -1.0653386116027832, 0.5595940351486206, 0.5651901960372925, -0.1813708245754242, 0.18301883339881897, 0.20843729376792908, 0.23197641968727112, -0.1466244012117386, -0.36537593603134155, 0.7373675107955933, -0.2755429744720459, -0.39392000436782837, -1.25823974609375, -0.8177530765533447, 0.2620527148246765, -1.4071714878082275, -0.8602968454360962, 0.8198553323745728, 0.19931966066360474, -1.3230226039886475, 0.20271645486354828, 0.20905622839927673, 0.7298835515975952, 0.38785219192504883, 1.1090061664581299, 0.015347246080636978, 0.9782843589782715, -0.48611801862716675, 0.19469484686851501, -0.8341970443725586, -0.12776914238929749, 0.021203815937042236, -0.15392142534255981, 0.6876626014709473, 0.6857019662857056, 0.9879155158996582, 0.523138165473938, 0.33027803897857666, -0.2695412337779999, -0.09580522030591965, -0.743634819984436, -0.9756875038146973, 0.6558609008789062, 0.5546704530715942, 1.6092922687530518, 1.244211196899414, -1.1382887363433838, -0.3489014506340027, 0.08737049996852875, 0.014030897058546543, -0.13008520007133484, -0.965261697769165, -0.6907442808151245, -0.029771286994218826, 0.47681725025177, 0.06982415914535522, 0.5165396928787231, -0.7405821084976196, 0.38923096656799316, -0.5545262098312378, -0.31992965936660767, -0.35758936405181885, 0.9296452403068542, 0.23533326387405396, 0.7493892312049866, 0.07342101633548737, -1.0867817401885986, -0.3374902606010437, -0.2283416986465454, 0.44275596737861633, 0.3575090169906616, 0.7058396339416504, 0.32126957178115845, 0.570594310760498, -0.5096136331558228, 0.4568786025047302, 0.08504661917686462, 0.14761923253536224, -0.05153840035200119, 0.2023678719997406, 0.6269903182983398, 1.417919397354126, -1.1917715072631836, -0.5274581909179688, -0.6384671926498413, 0.2791985273361206, 1.333993673324585, 0.9810216426849365, 0.46684515476226807, -0.08314330875873566, -0.1030346155166626, -0.06451618671417236, -0.2510930299758911, -0.5348472595214844, -0.7866030931472778, -1.4243748188018799, -0.6501022577285767, 0.03270101919770241, -0.44466978311538696, 0.16998760402202606, 0.5195152759552002, -0.7481523752212524, 1.1875803470611572, 0.9532743096351624, -0.4841057062149048, -0.4955853223800659, 0.07299463450908661, -0.4519018530845642, -0.8535628914833069, 0.9310833215713501, 1.5763401985168457, -0.46139436960220337, 0.22004342079162598, 0.7008407115936279, 0.38417014479637146, 0.8205653429031372, -0.47232478857040405, 0.6302323341369629, -1.1569221019744873, -0.6797105073928833, -0.09611430764198303, 0.17191293835639954, -0.14709100127220154, -0.3798609972000122, 0.03933636471629143, 0.4690342843532562, 1.32081937789917, -0.33218756318092346, -0.45144838094711304, 0.9681678414344788, 0.49838417768478394, -0.7822741270065308, -0.18978653848171234, 0.672614336013794, 0.3229830861091614, -0.23699381947517395, -0.32931768894195557, 0.013562489300966263, -0.5572056770324707, -0.9618368148803711, -0.05459382385015488, 0.18678927421569824, 1.0332717895507812, -0.33594372868537903, 0.11430587619543076, 0.9512948989868164, 0.02935246005654335, 0.1258789598941803, -1.6873784065246582, 0.47524917125701904, 0.305486798286438, 1.1647677421569824, 0.38717955350875854, 0.11613982170820236, 0.16078411042690277, 0.7781387567520142, -0.03621750324964523, 0.640784740447998, 0.8403542041778564, -0.08289888501167297, 0.035608936101198196, -0.5243403315544128, 0.2971692979335785, -0.5041832327842712, -0.7005958557128906, 0.17606215178966522, -0.038316283375024796, -0.9645373225212097, -0.6196886301040649, 0.630489706993103, 0.21125632524490356, -0.10982640087604523, -0.018435951322317123, -0.14653465151786804, 0.586419403553009, -0.9555863738059998, 0.595781683921814, -0.5171827077865601, 0.4926498532295227, 0.3307231068611145, -1.262815237045288, -0.38837602734565735, -0.19619566202163696, 1.0107972621917725, 1.3119699954986572, -1.187428593635559, 0.31914904713630676, 0.13782541453838348, 0.6467831134796143, -0.1598428189754486, -0.7739081382751465, -0.23456674814224243, 0.3949398100376129, -0.13657335937023163, 0.36411434412002563, 0.32739055156707764, 1.0194475650787354, 0.001357072964310646, -0.2871938943862915, 0.2998773455619812, 0.21630620956420898, -0.47474023699760437, -0.9017860889434814, 0.3423551321029663, 0.1759520024061203, 0.10632382333278656, -0.2351217269897461, 0.8083049058914185, 0.22600005567073822, 2.0738401412963867, 0.566979706287384, 0.7682451009750366, 0.344773530960083, -0.3170296549797058, -0.8242877721786499, -0.2574670910835266, 0.2918516993522644, 0.0673433467745781, -0.7868392467498779, 0.08702222257852554, 0.8699764609336853, -0.41140955686569214, 0.9596914052963257, 0.7314316630363464, 0.9720693826675415, 0.2770710289478302, 0.290973961353302, 0.07772836089134216, 0.3622002899646759, 1.2574145793914795, 0.8203163146972656, 0.2924635410308838, -0.6352238655090332, -0.8891363739967346, 0.7330288887023926, -0.6955878138542175, 0.09469332545995712, 0.8705524206161499, 0.10459425300359726, 1.5214064121246338, -1.4979088306427002, -0.739672064781189, 0.7767030000686646, 0.3176576495170593, 0.22633659839630127, 0.6163779497146606, 0.3229759931564331, -0.04243946820497513, 0.22854822874069214, 0.26717624068260193, 0.09648352861404419, 0.09014885872602463, 0.08704829961061478, 0.12657782435417175, 0.4192253351211548, -0.4187116026878357, 0.3044333755970001, -1.0346357822418213, 0.13071030378341675, -0.19789932668209076, -0.7177135944366455, -0.058134451508522034, 0.16059517860412598, 0.27982065081596375, 1.4191645383834839, -0.1617269217967987, -0.8069910407066345, 0.1830962896347046, -1.4342031478881836, -0.17539313435554504, -0.708365797996521, -0.5452737808227539, -0.03203625977039337, -0.6665977239608765, -0.47192180156707764, 0.20423471927642822, -0.7266595363616943, -0.5769031643867493, -1.159308910369873, -1.9247463941574097, 0.09350530803203583, 0.612236499786377, 1.3257054090499878, 0.6324650049209595, -0.22883322834968567, -0.09595656394958496, -0.23794886469841003, -1.1684354543685913, -0.6264791488647461, 0.645414412021637, 0.0016769301146268845, 0.7042782306671143, -1.5124977827072144, -0.201135516166687, 0.3267916142940521, 0.33505192399024963, 0.04023576155304909, 0.4163855314254761, 1.2825403213500977, 0.7253292798995972, 0.034433845430612564, -0.6582642793655396, 0.8692241907119751, -0.5654793381690979, 0.9953036308288574, 1.0412979125976562, -0.43226340413093567, -0.5806629657745361, -1.265792727470398, -1.6781525611877441, 1.6056405305862427, -0.6680710315704346, -0.569012463092804, 1.4496889114379883, 0.027228958904743195, 0.9269911050796509, 0.38110092282295227, -0.43663156032562256, 0.5495518445968628, 0.13250361382961273, -0.40900325775146484, -0.8993582129478455, 0.7302285432815552, 0.23855219781398773, 0.3117055296897888, -0.1476394236087799, 0.5461634397506714, 0.315656453371048, -0.7303095459938049, 0.2898465096950531, 0.5392679572105408, 0.36682575941085815, 0.13720488548278809, 0.4522620737552643, -0.6320581436157227, 0.36504799127578735, -0.40788328647613525, -0.7594358921051025, -0.3238053321838379, 0.3860282003879547, -0.04819833114743233, -0.8549798727035522, 0.002002706751227379, 0.07024963200092316, -0.9994292259216309, -0.7636978626251221, -0.45668280124664307, 0.4629862904548645, 0.6204977631568909, -0.18720519542694092, 0.455337256193161, -0.3259403705596924, -0.6015511155128479, -0.6237567663192749, 0.15335756540298462, 0.39943182468414307, -1.4651094675064087, 0.49837034940719604, -0.3418777585029602, -0.017056457698345184, -0.5388978719711304, 0.03507198393344879, 0.3163996934890747, -0.4300963878631592, -1.536574363708496, -1.1035805940628052, -0.2204141914844513, 0.7952691912651062, -0.8724367618560791, 1.0554242134094238, -0.037498921155929565, -1.3704841136932373, 0.6690369844436646, -0.2294909656047821, -1.2445734739303589, -0.2902645170688629, -1.2284824848175049, 0.9355956315994263, -0.6815133094787598, 0.9114269018173218, -1.1871176958084106, 0.6830651760101318, -1.910978078842163, -1.399964690208435, -0.6987240314483643, 0.32752835750579834, 1.02095365524292, 0.5916835069656372, -0.2619273066520691, 1.3461048603057861, 0.1433366984128952, -0.47689199447631836, -0.4334391951560974, 1.1206670999526978, -0.582679271697998, 0.17712652683258057, 0.6985993385314941, 0.15456441044807434, 0.8114410638809204, 1.468146562576294, 0.12166192382574081, 1.056244969367981, -0.12854847311973572, 0.8297078609466553, -0.5322015881538391, -0.8450019359588623, -0.49688759446144104, 0.3856744170188904, -0.963426947593689, -1.018125057220459, 0.4947870373725891, -0.856026291847229, -0.5939822196960449, 0.2553229331970215, 0.1948012113571167, -0.6871310472488403, 0.4214584231376648, -0.9344967007637024, 0.49033868312835693, -1.4563539028167725, 0.30967196822166443, 0.3180631697177887, -0.5147714614868164, 0.14293240010738373, 0.18074584007263184, 0.28007882833480835, -1.0572550296783447, 0.03830663859844208, -0.07938124984502792, 0.15297016501426697, -0.44999247789382935, 0.6320367455482483, 0.7975980639457703, -0.11231998354196548, -0.3401755690574646, 1.5239183902740479, 0.34084635972976685, 0.2194969803094864, -0.03890468552708626, -0.03387145325541496, 0.04843372479081154, 0.9062348008155823, -0.31064730882644653, 0.03476331755518913, -0.4243822991847992, 0.45693719387054443, 0.3602572977542877, -0.6184442043304443, -0.3409464359283447, 0.271953821182251, -0.6197423338890076, 0.5214414596557617, 1.0989317893981934, -0.7512823939323425, 0.4688178300857544, 1.237949252128601, 0.005770988762378693, -0.9233018755912781, -0.030416913330554962, -0.041610755026340485, 0.15808874368667603, -0.04281926527619362, 0.6075693368911743, -0.02620645985007286, -0.671502947807312, 0.8290446996688843, 0.23315918445587158, 0.2487977147102356, -0.4493665099143982, -0.6391634345054626, -1.0734868049621582, -0.08204531669616699, -0.624077320098877, -0.3801986575126648, -0.03586236387491226, -1.3748085498809814, -0.8736851811408997, 0.625266432762146, -0.2507248818874359, -0.821709394454956, -0.302848219871521, -0.08583180606365204, 0.15597671270370483, -0.8977868556976318, 0.5252677202224731, -0.37437814474105835, 1.4943649768829346, -0.5224226117134094, 0.5009883642196655, -0.5495144724845886, -0.837185800075531, 0.3475857675075531, 0.007324423640966415, 0.1249961405992508, -0.6041128635406494, 0.842018723487854, -0.16444501280784607, -1.0932499170303345, 0.24394343793392181, 0.32918792963027954, 0.20557983219623566, -0.2697470784187317, -0.8164729475975037, 0.5914434194564819, 1.0032851696014404, 1.0767183303833008, -0.26094481348991394, -0.729267418384552, -0.9547756910324097, 0.21561096608638763, -0.5066214203834534, -0.20405380427837372, -0.1496242880821228, 0.7712264657020569, 0.6689096689224243, -0.6553847789764404, -0.12847906351089478, -0.644750714302063, 0.2800789475440979, 0.012013977393507957, 0.02515430748462677, 0.43246304988861084, 0.12292028218507767, 0.09404794126749039, -0.6869672536849976, 0.517485499382019, -0.050695717334747314, 0.5509754419326782, 0.46333909034729004, -1.010595679283142, -0.5198697447776794, -0.625787079334259, 0.5590546131134033, 0.609839677810669, 0.16117654740810394, 0.11798065155744553, 0.14563605189323425, -0.9987318515777588, 0.5652668476104736, -0.0965777337551117, 0.521390438079834, 0.2633535861968994, 1.5458183288574219, 1.4232003688812256, 0.18766050040721893, 0.4196382761001587, 0.018284745514392853, 0.3095884323120117, -0.7891354560852051, -0.964638352394104, -0.20298975706100464, -0.9614390134811401, -0.3998301029205322], [-0.42430561780929565, 1.1833375692367554, -2.195466995239258, -0.08735952526330948, 0.9904394149780273, 0.36652275919914246, 0.895491361618042, -0.3484276831150055, -0.4887683093547821, -0.011012822389602661, -0.2465776801109314, 0.1935303509235382, 0.015090463683009148, 0.7481530904769897, 0.2569211423397064, 0.6413141489028931, 1.1831660270690918, -0.3359358310699463, -0.20073175430297852, 0.8595643043518066, -0.6811164617538452, -0.8382053375244141, 0.5797301530838013, -0.00600458076223731, -0.1246517226099968, 0.6934462785720825, -1.2154631614685059, -0.3405270576477051, -0.8631942272186279, -1.3398172855377197, 1.0158929824829102, 0.11036507785320282, -0.11864741891622543, -0.45798754692077637, 0.0891033485531807, 0.062792107462883, 1.1384116411209106, 1.3035645484924316, 1.456313967704773, 1.1934049129486084, 1.3837177753448486, -0.2854783833026886, -0.00700155645608902, -1.4641737937927246, 0.28302568197250366, -0.3715716600418091, 0.755638837814331, -1.0979437828063965, 0.6061089634895325, 0.19565904140472412, -0.46043896675109863, -0.7903335690498352, 0.2554885149002075, 1.0364490747451782, 0.5082446336746216, -0.7706902623176575, -0.09610167890787125, 1.0374822616577148, 0.6103944182395935, -0.5894902348518372, 1.0296188592910767, 0.4947793483734131, -0.6791818141937256, 0.9458605051040649, 0.49673861265182495, -0.3387364447116852, 0.1496870219707489, 0.2235039919614792, -1.1780474185943604, 0.3381859064102173, -0.5909127593040466, 0.20629946887493134, -0.6140727996826172, 1.0321091413497925, -1.2721498012542725, 0.8702845573425293, 0.7325739860534668, 0.022614529356360435, 0.7055443525314331, 0.27596843242645264, 0.18773746490478516, 0.04624927043914795, 0.7034039497375488, -0.14008817076683044, 0.5111569762229919, -0.01630115509033203, -0.10567120462656021, 0.10557613521814346, -0.8570481538772583, 2.256864547729492, 0.5545321702957153, -0.09893566370010376, 0.2068183422088623, -0.3381357789039612, -0.6219905614852905, -0.8827640414237976, 0.3920290470123291, -0.24605776369571686, -1.198992133140564, -1.0260844230651855, -0.201456218957901, -0.6444965600967407, 0.7711462378501892, 0.373440146446228, -0.20798027515411377, 1.7514699697494507, 0.1282559633255005, -0.23387278616428375, 0.14372655749320984, 0.1518373340368271, -0.4071657061576843, 0.010334774851799011, -0.9165239334106445, -0.38213592767715454, -0.6243664026260376, 1.6063898801803589, 1.1017498970031738, -0.6841322779655457, 0.3080090880393982, 1.1325316429138184, -0.25236377120018005, -0.20039111375808716, -0.907783567905426, 0.3727976083755493, 0.4895060956478119, 0.634925365447998, -0.982553243637085, -0.6045399308204651, -0.301118403673172, -0.17815937101840973, 0.3673887252807617, -0.47025978565216064, -1.1730990409851074, 0.9801595211029053, -1.1127915382385254, 1.324864149093628, -0.5626028776168823, -0.7538999319076538, -0.027901187539100647, -0.018066853284835815, 0.21607756614685059, -0.22052109241485596, -0.9356245994567871, -0.4333495497703552, -0.05914244428277016, -0.8488717079162598, -0.07413601875305176, -0.1029273122549057, -0.9403908252716064, 1.15996253490448, -0.4138079285621643, 0.49016326665878296, -0.11054983735084534, 0.7570042610168457, -0.2960030436515808, -0.2713340222835541, 0.06852942705154419, 0.16342070698738098, 0.725450873374939, 0.4875722825527191, 1.3333427906036377, -0.5033118724822998, -0.6996220350265503, 0.42668649554252625, 0.8544092178344727, -0.4074275493621826, 0.9511477947235107, 0.8417251110076904, -0.06311997026205063, 1.333159327507019, -0.6106855869293213, -0.3502006530761719, -0.641768753528595, 0.7599472999572754, -0.30295610427856445, -0.4040917158126831, 0.38777217268943787, -1.3634562492370605e-06, -1.3302483558654785, -0.9668237566947937, 0.10413005948066711, -0.7029073238372803, 0.38514405488967896, -1.0664501190185547, 0.44616150856018066, -0.25112664699554443, 0.038171205669641495, 0.05868055671453476, -0.40689337253570557, -0.5696413516998291, -0.3876764178276062, -0.40997785329818726, -0.10834801197052002, -0.10674425214529037, -0.3541122078895569, -0.24224671721458435, 0.03782742843031883, -1.5875563621520996, -0.9377146363258362, 0.05933460593223572, -1.0581283569335938, -0.5308874845504761, -0.6294165849685669, 0.8091809153556824, -0.11732640117406845, 1.0207231044769287, -1.1555871963500977, 0.874840497970581, -0.9436283111572266, -0.0674925297498703, 0.6250286102294922, 0.24612295627593994, -0.9137070775032043, 1.1109957695007324, 0.4027171730995178, -1.1522228717803955, -0.09748557209968567, 0.0290142260491848, -0.3899335265159607, 0.5844498872756958, -0.33675435185432434, 0.10443182289600372, 0.4329637885093689, 0.2432878613471985, 0.23615561425685883, -0.3419334590435028, -0.7761543393135071, -0.3689675033092499, -1.0918235778808594, -0.07712913304567337, -0.6469867825508118, -0.9226428270339966, 0.5560171604156494, 0.03194276615977287, -1.2066209316253662, 0.4308922588825226, -0.13101597130298615, 0.2111765742301941, 0.22937999665737152, 1.5896129608154297, 0.6565638780593872, -0.03825107216835022, -0.3838595151901245, -0.4960830807685852, -0.43477916717529297, 0.6835610866546631, 0.6343655586242676, -0.5623940229415894, 0.7228517532348633, 1.4555637836456299, 1.6102728843688965, -0.5326065421104431, 0.4422065019607544, 0.12346201390028, -0.08284397423267365, -0.9261095523834229, -0.268717885017395, 0.24017712473869324, -0.40842193365097046, 1.3873169422149658, 0.7119286060333252, -1.5255179405212402, -0.07414200901985168, 0.4800112247467041, 0.2878335118293762, 0.1049642264842987, -0.5675252676010132, -0.06061045080423355, -0.2354689985513687, 0.44799795746803284, -0.014457110315561295, 1.001021146774292, -0.9023944139480591, 0.6621562838554382, -0.5237915515899658, 0.079282246530056, -0.292888879776001, 0.7059728503227234, -0.4827243685722351, 0.8781380653381348, 0.13448083400726318, -1.387353539466858, -0.8377645611763, 0.2011907547712326, 0.52467942237854, 0.3448772728443146, -0.1837463527917862, 0.3856339752674103, 1.0235365629196167, -0.5537260174751282, 0.6419241428375244, -0.3839852213859558, 0.33553192019462585, -0.47839999198913574, 0.07491417974233627, 0.7616885900497437, 1.8187615871429443, -1.3655929565429688, -1.4700266122817993, 0.3670666217803955, 0.33653706312179565, 1.904616117477417, 0.33192145824432373, 1.0407497882843018, -0.062290482223033905, 0.051971130073070526, -1.2618485689163208, -0.08195970207452774, -1.174891710281372, -0.27484428882598877, -0.6260868906974792, -0.5813232660293579, 0.04232229292392731, -0.38903898000717163, 0.687006950378418, 0.3414851427078247, 0.06724981218576431, 0.4740895628929138, 1.0526230335235596, -0.06032564863562584, -0.7315256595611572, 0.0903894305229187, 0.5645098090171814, -1.3786768913269043, 0.7793101072311401, 2.032371997833252, -0.7617164850234985, -0.9048006534576416, -0.15595927834510803, 0.06816472113132477, 0.08288457989692688, 0.19415226578712463, 0.8895256519317627, -1.4515800476074219, -0.5766205191612244, 0.14875905215740204, 1.5442099571228027, -0.2862434387207031, -0.2299588918685913, -0.3367573916912079, -0.038080599159002304, 0.41938385367393494, -0.3503349721431732, -0.7115198373794556, 0.6879431009292603, -0.7141560316085815, -0.4330306053161621, -0.28876861929893494, 0.4913201332092285, 1.02895188331604, -0.1763637661933899, -0.3325394093990326, -0.43007856607437134, -0.47102150321006775, -0.6876458525657654, -0.7369289994239807, -0.27472081780433655, 1.3758249282836914, -0.8107193112373352, 0.4584662914276123, 1.1451349258422852, -0.035367004573345184, -0.5794233083724976, -1.9067190885543823, 0.3710970878601074, 0.7087559700012207, 1.850305438041687, 0.6116095185279846, 0.7219244241714478, 0.25801146030426025, 0.7487248778343201, -0.05739571899175644, 0.24036654829978943, 1.1326290369033813, 0.4110287129878998, -0.670403003692627, -0.7868912220001221, -0.271492063999176, -0.4502875506877899, -0.6666887998580933, -0.6091746091842651, 0.49886250495910645, -0.6315670013427734, -1.2587705850601196, 1.0157712697982788, 0.9364544153213501, 0.09456943720579147, -0.33934861421585083, 0.6106716394424438, 0.18569064140319824, -0.9784277677536011, -0.26881861686706543, -0.3510898947715759, 0.14714501798152924, -0.1733127236366272, -2.015437126159668, -0.2786697745323181, 0.3462054431438446, 0.43478405475616455, 0.9707047939300537, -1.0811580419540405, -0.3906571567058563, -0.624342679977417, -0.2812122702598572, 0.25949573516845703, -1.5271790027618408, -0.14310257136821747, 0.22048208117485046, -0.4332444667816162, 0.5898149013519287, -0.18204331398010254, 1.2405413389205933, 0.41859298944473267, 0.1262533962726593, 0.3529634475708008, 0.3289440870285034, -0.8413049578666687, -0.22334058582782745, -1.0235366821289062, 0.4585607051849365, -0.1535496711730957, -0.07530191540718079, 0.09188102185726166, 0.5000743269920349, 1.5468478202819824, 1.0874682664871216, 1.1247105598449707, 0.5327137112617493, 0.32868853211402893, -0.6492970585823059, -0.14475654065608978, 0.4147574305534363, -0.4534399211406708, -0.6907660961151123, 0.22683896124362946, -0.04718070477247238, -0.2760658264160156, 0.7392799854278564, -0.4179367125034332, 0.9311199188232422, 0.31127727031707764, 0.0725097805261612, 0.010361762717366219, 0.67985999584198, 0.8879441022872925, 1.6178278923034668, 0.5191349983215332, -0.07786881923675537, -0.6970500946044922, 0.9485052824020386, -0.8850668668746948, -0.09820082038640976, 0.6826165914535522, 0.3766230344772339, 1.3384857177734375, -1.0893189907073975, -0.21126997470855713, 0.2566080391407013, 0.1677442491054535, 0.28834569454193115, 0.10433642566204071, 0.009750217199325562, 0.37570667266845703, 0.21039779484272003, 0.5058672428131104, -0.037478622049093246, 0.016871120780706406, -0.18774712085723877, -0.30011072754859924, -0.11918294429779053, -0.4213849902153015, 1.1850430965423584, -0.3949018120765686, 0.09663466364145279, 0.2421785295009613, -0.6725101470947266, 0.10379067063331604, 0.3035896420478821, 0.8562878370285034, 1.3613173961639404, 0.12449214607477188, -1.0445928573608398, 0.6088327169418335, -0.6569184064865112, 0.34743767976760864, -0.42634040117263794, -0.7591354250907898, 0.08216439187526703, -0.6374835968017578, -0.09123776853084564, 0.2081497609615326, -0.3047417998313904, -0.2066546380519867, -0.49670323729515076, -1.4170140027999878, 0.45357903838157654, 0.40019410848617554, 1.0302571058273315, 1.1955723762512207, 0.11705069243907928, 0.22806614637374878, 0.4722675085067749, -1.193537950515747, -0.5888155102729797, -0.08241880685091019, 0.22790414094924927, -0.01907455176115036, -0.83404541015625, 0.18537645041942596, 0.4538921117782593, 0.07003171741962433, -0.17661839723587036, 0.6812862157821655, 1.2527482509613037, 0.8870381116867065, -0.4236956834793091, -0.8285678625106812, 0.15808388590812683, -0.7762551307678223, 1.0132269859313965, 0.5422896146774292, -0.28823623061180115, -0.5884639024734497, -1.1054153442382812, -2.043488025665283, 1.201737642288208, -0.6915179491043091, -0.3343885540962219, 1.406162977218628, 0.515641450881958, 0.5422229170799255, 0.4535812735557556, -1.0089174509048462, 0.68921959400177, 0.39311519265174866, -1.1095010042190552, -1.3071765899658203, 0.3189733624458313, -0.10561871528625488, 0.5103206634521484, 0.2693851590156555, -0.3882785439491272, 0.38075926899909973, -0.7618991732597351, -0.23292876780033112, 0.3032597005367279, 0.3384782075881958, 0.3146821856498718, 0.6461002826690674, -0.2088429182767868, 0.24939090013504028, -0.4283831715583801, 0.19108784198760986, -0.30010178685188293, 1.1180095672607422, 0.032265570014715195, -0.014526985585689545, -0.546135663986206, -0.3500428795814514, -0.14119543135166168, -0.4742971658706665, -0.3871162533760071, 1.311095118522644, 0.16934435069561005, -0.34528031945228577, -0.4554474949836731, -0.2076491415500641, -0.5453819632530212, 0.2898314595222473, -0.1912202537059784, 0.04728225991129875, -1.8304487466812134, -0.20826120674610138, -0.43597158789634705, -0.29535987973213196, -0.3698936998844147, -0.28454864025115967, 0.22056806087493896, -0.7002118229866028, -1.244340419769287, -0.09237242490053177, 0.3306863009929657, 0.559134840965271, -0.9317737221717834, 1.0952470302581787, 0.41238322854042053, -0.8191007375717163, 0.6062806248664856, 0.719463050365448, -1.5289833545684814, 0.040045365691185, -1.3310297727584839, 1.1048181056976318, 0.2156212031841278, -0.05967137962579727, -0.7110421657562256, 0.8223413228988647, -1.0606318712234497, -1.078346848487854, -0.3062732219696045, 0.33365634083747864, 1.0067278146743774, 0.439696729183197, -0.09457069635391235, 1.2588584423065186, 0.3662620782852173, -0.6269579529762268, -0.38101616501808167, -0.015333814546465874, -0.3372713625431061, 0.17242266237735748, 1.0887221097946167, 0.06462359428405762, 0.6532213091850281, 1.603686809539795, 0.10741321742534637, 1.1234376430511475, -0.061019595712423325, 1.0259687900543213, -1.0149763822555542, -0.9443564414978027, -0.2055911421775818, 0.10706211626529694, -1.1833441257476807, -1.6258361339569092, 0.09898993372917175, -1.5539677143096924, -0.8593290448188782, 0.6456765532493591, 0.17940989136695862, 0.30346882343292236, 0.3844525218009949, 0.10918701440095901, 0.25227615237236023, -0.9417999982833862, 1.1101282835006714, 0.8793874979019165, -1.4227310419082642, -0.10646427422761917, 0.15975841879844666, -0.25594550371170044, -1.339940071105957, 0.786737322807312, -0.21294981241226196, 0.3283204436302185, -0.6483688354492188, 0.42847561836242676, 0.9336274266242981, -0.1522475779056549, -0.663437008857727, 1.1315298080444336, 0.5715322494506836, -0.33165597915649414, 0.2194845825433731, 0.38236474990844727, -0.3409079909324646, 0.6334140300750732, -0.2646600604057312, -0.6434909105300903, -0.22896167635917664, 0.7701607346534729, 0.01323017105460167, 0.6481894850730896, -0.47130852937698364, 0.38307106494903564, -0.11167973279953003, 0.36308205127716064, 1.045184850692749, -0.546755313873291, -0.033215876668691635, 1.3482117652893066, 0.2517472505569458, -0.041698113083839417, 0.42589399218559265, 0.6974309682846069, 0.7357556223869324, -0.5917104482650757, 0.6077675819396973, 0.6155821084976196, -0.35093897581100464, 0.30470937490463257, 0.15028856694698334, -0.3467271327972412, -0.2874927818775177, -0.7196800112724304, -0.6804438829421997, 0.017957324162125587, -0.5207970142364502, 0.4348886013031006, 0.8525981903076172, -1.6317987442016602, -0.9380795955657959, -0.36802202463150024, -0.32445991039276123, -0.20086213946342468, -0.3892856240272522, 0.03317822515964508, -0.2112087905406952, -0.3164866864681244, 0.9584181904792786, -0.11171678453683853, 0.6297770738601685, -0.4448956251144409, -0.16777442395687103, -0.513540506362915, 0.18485495448112488, -0.35364240407943726, 0.35466694831848145, 0.14930155873298645, 0.22433044016361237, 0.1540733128786087, -0.6421599388122559, -0.6554324626922607, -0.01302666962146759, 0.05891703814268112, 0.2928386330604553, -0.6020129919052124, -0.4610808789730072, 0.32508301734924316, 0.5931989550590515, 0.9959299564361572, -0.4230450689792633, -0.5403238534927368, -0.6752829551696777, -0.08693718910217285, -0.2518467903137207, 0.6841815114021301, -0.6610672473907471, 0.6483622789382935, 0.3034926652908325, -0.8175866603851318, 0.0344831757247448, -0.6126177310943604, 0.24209609627723694, -0.6166394352912903, -0.2708773910999298, 0.17172542214393616, -0.023512132465839386, -0.45130255818367004, -0.8864777088165283, 0.7090569734573364, 0.18859268724918365, -0.5269696712493896, 0.6173425912857056, -1.111191987991333, 0.11598417907953262, -0.636724591255188, -0.28603148460388184, 0.5999888777732849, 0.18303537368774414, -0.41315144300460815, 0.5528494119644165, -1.2621428966522217, 0.09800834208726883, 0.08789452910423279, -0.3089827597141266, 0.6255312561988831, 0.781814455986023, 1.3392279148101807, 0.07015371322631836, -0.12530454993247986, -0.37178558111190796, 0.43021658062934875, -0.3294173777103424, -0.022885825484991074, -0.52693110704422, -1.113884687423706, -0.42103490233421326], [0.18407392501831055, 1.26722252368927, -2.6662914752960205, -0.9767277240753174, 1.2160063982009888, 0.3692457377910614, 0.9858258366584778, -0.3725847005844116, -0.4212285876274109, -0.3853677213191986, -0.2273804247379303, -0.2615812122821808, -0.7339398264884949, 0.105415940284729, 0.5496028065681458, 0.599166750907898, 0.5340068936347961, -0.9845587611198425, 0.5865444540977478, 0.625200092792511, -0.6744412183761597, -0.029508717358112335, 0.050192199647426605, -0.30733299255371094, -0.1005953997373581, 1.338531255722046, -1.5654902458190918, -0.10718882828950882, -0.927474319934845, -1.3147542476654053, 1.2088366746902466, 0.09476157277822495, 0.3805773854255676, -0.7510393857955933, -0.8224166631698608, 0.2570919692516327, 1.537324070930481, 1.3686779737472534, 0.41538679599761963, 0.4940391182899475, 2.039337158203125, 0.053568802773952484, -0.23732051253318787, -2.048706293106079, 0.6129634976387024, 0.03157249465584755, 0.8813303112983704, -0.12572215497493744, 0.45698487758636475, -0.08950967341661453, -0.3373386561870575, -0.7420176863670349, -0.3801184296607971, 1.6998546123504639, 1.4967913627624512, -0.14848364889621735, 0.18523547053337097, 0.5047746300697327, 0.5341803431510925, -0.9237604737281799, 1.0513478517532349, -0.5071338415145874, -0.8280627727508545, 0.772148072719574, 0.3627175986766815, 0.21374402940273285, 0.3603516221046448, 0.8174236416816711, -0.39184901118278503, -0.30336642265319824, -0.5960049033164978, -0.18052972853183746, -0.3182758092880249, 1.0097894668579102, -1.5987255573272705, 1.1289286613464355, 0.1273149996995926, 1.0056037902832031, 0.543337345123291, 0.42875781655311584, -0.043320104479789734, 0.07728633284568787, 1.0851877927780151, 0.0037676626816391945, 0.27128803730010986, 0.5356507897377014, 0.6212236285209656, -0.5811701416969299, -0.11218279600143433, 2.4885590076446533, 0.5299993753433228, -0.07361334562301636, 0.3632984161376953, -0.011192655190825462, -0.14094389975070953, 0.03099650703370571, 0.4142625629901886, -0.8716403841972351, -1.4083325862884521, -0.6689812541007996, -0.1314084529876709, -0.004786693025380373, 0.49556484818458557, 0.049792829900979996, 0.05660117045044899, 1.5546835660934448, 0.10206285119056702, 0.20368535816669464, -0.30090928077697754, -0.03502732142806053, -0.2277863621711731, 0.04813322797417641, -0.21897798776626587, -0.6043850779533386, -0.5800132751464844, 1.0894896984100342, 1.4155224561691284, -0.6695379614830017, 0.3522253930568695, 1.1303869485855103, -0.6882761716842651, 0.27671006321907043, -0.46732887625694275, 0.4935161769390106, 0.7160640954971313, 0.9925897121429443, -0.5885071158409119, -0.14823317527770996, 0.3533453047275543, 0.4766576290130615, 0.30571600794792175, -0.42475253343582153, -0.6481295228004456, 0.3929237723350525, -1.4633522033691406, 1.882591724395752, -0.4107925295829773, 0.001378979068249464, 0.3619195520877838, 0.0742565393447876, 0.200395405292511, 0.11226129531860352, -0.19066956639289856, -0.4362572431564331, -0.10280030220746994, -0.8176473379135132, 0.05492813512682915, -0.34438955783843994, -0.5041549205780029, 0.9355728626251221, -0.714083731174469, 0.3444412648677826, -0.5530860424041748, 0.5843347907066345, -0.0025632299948483706, -0.3234732449054718, 0.23157605528831482, 0.4139557480812073, 0.7471538186073303, -0.14865829050540924, 0.5501981377601624, -0.6311013102531433, -1.6534897089004517, 0.21461300551891327, 1.2476904392242432, -0.007173243444412947, 0.4752694368362427, 0.59925776720047, -0.11597426980733871, 1.6688871383666992, -0.3172784149646759, -0.9687080979347229, -0.2209712713956833, -0.02369249239563942, 0.43125084042549133, 0.07313129305839539, 1.2276015281677246, -0.6046430468559265, -1.3178330659866333, -1.304828405380249, 0.07998073101043701, -0.024587033316493034, 0.6758034825325012, -0.6302006244659424, 0.47264498472213745, 0.24239349365234375, -0.07721635699272156, -0.8157661557197571, -0.07295747846364975, -0.3848377764225006, -0.6700282096862793, -0.5225957036018372, -0.17374999821186066, -0.16540494561195374, -0.12894757091999054, -0.5876173377037048, 0.2602294981479645, -1.5572173595428467, -0.7096119523048401, -0.1982937902212143, -0.5912799835205078, -0.8635318875312805, -0.19525665044784546, 0.7997401356697083, 0.010054444894194603, 1.259840726852417, -1.5208879709243774, 0.6030554175376892, -0.6167896389961243, -0.37718772888183594, 0.8669596314430237, 0.17872489988803864, -0.6701911687850952, 0.8379383087158203, 0.3203117251396179, -0.8936256766319275, 0.18545827269554138, 0.9350965619087219, -0.5339345932006836, 0.34825992584228516, -0.18240903317928314, -0.012908541597425938, 0.8083807826042175, 0.20271611213684082, 0.7695855498313904, -0.41357704997062683, -0.44271188974380493, -0.7378125786781311, -1.1876386404037476, -0.0022382885217666626, -1.3255549669265747, -1.3872042894363403, 0.25114965438842773, 0.20447152853012085, -1.4371682405471802, 0.145597442984581, -0.024674173444509506, -0.23927119374275208, 0.35490846633911133, 1.5492045879364014, 0.6854380369186401, 0.42641037702560425, -0.24193274974822998, -0.11784136295318604, -1.073848843574524, 0.9057081341743469, 0.49629077315330505, -0.9018567204475403, 0.4543108642101288, 1.009028434753418, 0.9502533674240112, -0.858817994594574, 0.7872588634490967, -0.7043554186820984, 0.10182654112577438, -0.45058679580688477, -0.03698255121707916, 1.0460612773895264, -0.06324601173400879, 1.6345163583755493, 0.97477787733078, -1.4881565570831299, 0.3738357126712799, 0.3645017147064209, -0.46624237298965454, -0.3886171579360962, -0.8336765170097351, 0.518496572971344, -0.08520632237195969, -0.276357501745224, 0.33699166774749756, 0.5997973680496216, -0.3559247553348541, 0.3327036201953888, -0.01287986058741808, 0.45889875292778015, -0.9410356879234314, 0.24709804356098175, 0.014533044770359993, 0.7262431979179382, 0.03606726974248886, -0.8738209009170532, -0.6208781003952026, -0.061120130121707916, 0.11030931770801544, 0.6621071100234985, 0.3844853639602661, 0.9614057540893555, 1.4182971715927124, 0.21275366842746735, 0.39126119017601013, -0.3794480562210083, 0.2715643644332886, -0.3269788324832916, 0.6021040081977844, 0.07182060927152634, 1.7994827032089233, -1.3674652576446533, -0.8069519400596619, -0.38820475339889526, -0.09550126641988754, 2.0159850120544434, 0.6364870071411133, 0.5330287218093872, 0.3659881353378296, 0.2621460258960724, -0.2343384474515915, -0.3468073308467865, -0.6783314347267151, -0.30866801738739014, -0.23511776328086853, -0.49037042260169983, 0.03478575497865677, -0.3280356228351593, -0.015585158951580524, 0.08522281795740128, -0.065209299325943, 0.6732789278030396, 0.42382919788360596, -0.1531641036272049, -0.47263821959495544, 0.16842229664325714, 0.08618257939815521, -1.8055639266967773, 0.3916727304458618, 1.1956897974014282, -0.7888323068618774, -0.7645707130432129, -0.22929862141609192, 0.29145434498786926, 0.08782954514026642, -0.5211758613586426, 0.5146973729133606, -1.1975053548812866, -0.794784426689148, -0.5316078066825867, 0.9730936288833618, -0.5969937443733215, 0.3785543143749237, -0.20960868895053864, -0.05180537700653076, 0.9008020162582397, 0.6104069948196411, -0.44692760705947876, 0.8964769244194031, 0.036976877599954605, -0.8223035931587219, 0.22153013944625854, 0.5943332314491272, 0.682759165763855, -0.13500840961933136, -0.16589947044849396, -0.39152562618255615, -0.2495800405740738, -0.6226873993873596, -0.26816728711128235, 0.3142395615577698, 1.0277379751205444, -0.39313462376594543, -0.12747900187969208, 1.4060378074645996, 0.014495160430669785, 0.31926119327545166, -1.8165571689605713, 0.4026702642440796, 0.5381888151168823, 1.5828882455825806, 0.9263046383857727, 0.4155120253562927, 0.303840696811676, 0.1939486414194107, -0.14326587319374084, -0.2776264548301697, 1.6474980115890503, 0.2504466474056244, -0.8286935687065125, -0.5415771007537842, -0.5441311001777649, -0.3476007282733917, -0.575055718421936, -0.5513842701911926, 0.1694037765264511, -1.0432490110397339, -1.5340023040771484, 1.2794506549835205, 0.5690409541130066, 0.0832652822136879, -0.8488197922706604, -0.7755690813064575, 0.5055524706840515, -0.7267130613327026, -0.29704567790031433, -1.1431560516357422, 0.35285696387290955, 0.23651978373527527, -1.155092716217041, -0.4715003967285156, 0.22618958353996277, 0.9795958995819092, 1.322520136833191, -1.4681679010391235, -0.612505316734314, -0.5501531362533569, 0.09495364129543304, 0.03810932859778404, -0.43824025988578796, 0.22152179479599, 0.7615780234336853, -0.4836289882659912, 0.8497808575630188, 0.08846618235111237, 1.0453312397003174, -0.11088388413190842, -0.32495349645614624, 0.22293762862682343, 0.4185529351234436, -0.4075019955635071, -0.5147519707679749, -0.5982611179351807, 0.713408350944519, -0.1152246817946434, -0.06335096806287766, 0.23305051028728485, 0.14233970642089844, 1.5143139362335205, 0.7136829495429993, 0.4439774751663208, 0.3928728699684143, 0.25032806396484375, -1.2570265531539917, 0.0316946804523468, 0.5191418528556824, -0.28643032908439636, -0.2415507733821869, -0.2271047979593277, -0.4160403907299042, -0.2732894718647003, 0.37491482496261597, -0.7628475427627563, 1.3653451204299927, 0.17854702472686768, 0.006182601675391197, 0.0422762893140316, 0.602648913860321, 1.1803349256515503, 1.1887733936309814, 0.41554713249206543, -0.5592280626296997, -0.7189472317695618, -0.1723961979150772, -0.26512226462364197, 0.14203068614006042, 0.3813348710536957, -0.30201879143714905, 1.025472640991211, -1.6961086988449097, 0.20027028024196625, 0.4771488606929779, 0.10338151454925537, 0.18013711273670197, -0.28659573197364807, 0.4104136824607849, -0.029469087719917297, 0.6675992608070374, 0.287507563829422, 0.07360652834177017, -0.13401377201080322, 0.06606787443161011, -0.2899218499660492, 0.176791250705719, -0.6263275742530823, 1.2516095638275146, -0.5256202816963196, -0.2640724182128906, 0.21184436976909637, -1.2793540954589844, 0.1830570101737976, 0.7071049213409424, 0.9706894159317017, 1.3488173484802246, 0.3894610106945038, -1.1485439538955688, 0.8479259014129639, -0.720034658908844, 0.03487560898065567, -0.5016496181488037, -0.26978757977485657, -0.12417759001255035, -0.3267323970794678, 0.1599278301000595, 0.7386837005615234, -0.3326091170310974, -0.1805192232131958, 0.06840314716100693, -1.5907083749771118, 0.27474674582481384, 0.5363746881484985, 0.5892223119735718, 0.8523790836334229, 0.04183525592088699, -0.12926717102527618, 1.041846752166748, -0.455009788274765, -0.74046790599823, 0.05571465194225311, 0.5783762335777283, -0.2961049973964691, -1.3299453258514404, -0.736954927444458, 0.1984335035085678, 0.09892227500677109, -0.2162148803472519, 0.04670379310846329, 1.527411937713623, 1.1782991886138916, -0.25874367356300354, -0.07710974663496017, -0.16900549829006195, -0.5961350202560425, 0.8955079317092896, 0.5123060941696167, 0.6437288522720337, -0.39715486764907837, -1.5194388628005981, -2.2110142707824707, 0.6774353981018066, -0.6063032150268555, -0.0416274294257164, 0.6715172529220581, 0.7867096066474915, 1.3861252069473267, 0.09485253691673279, -1.0426632165908813, 0.24770815670490265, 0.7325993180274963, -0.2751920223236084, -0.9327558875083923, 0.48080939054489136, -0.01690475083887577, 0.6184073686599731, -0.7316020727157593, -0.18713152408599854, -0.08576533943414688, 0.016074376180768013, 0.4528372585773468, 0.4719150960445404, -0.44106021523475647, 0.3157843053340912, 0.807640552520752, 0.10785640776157379, 0.5190345048904419, -0.6432368159294128, -0.08122310042381287, -0.8446717858314514, 1.0288712978363037, 0.10288204997777939, 0.00021517230197787285, 0.22486598789691925, -0.0782739520072937, -0.6648705005645752, -0.6630960702896118, -0.34836623072624207, 1.26152503490448, -0.2272249013185501, -0.5174317955970764, -0.39263850450515747, -0.9918623566627502, -0.002789356978610158, -0.5628305077552795, 0.2844170033931732, -0.4449618458747864, -1.423983097076416, -0.22380386292934418, -0.07023362070322037, -0.5452870726585388, -0.35389426350593567, -0.6436106562614441, 0.34376397728919983, -0.9064601063728333, -1.15791916847229, 0.26816898584365845, 0.3830767869949341, 1.1186459064483643, 0.0014967545866966248, 0.8004730343818665, 0.5652086138725281, -1.625528335571289, 0.6957109570503235, 0.4711550176143646, -1.2624257802963257, -0.03909055143594742, -0.6893270015716553, 1.1480343341827393, -0.47967392206192017, 0.0910593569278717, -0.30751359462738037, 0.7486482858657837, -1.5294437408447266, -1.8936247825622559, -0.8667386770248413, 0.22466669976711273, 0.9551282525062561, 0.6463049054145813, -0.7599438428878784, 1.0962135791778564, 0.26966410875320435, -0.8856765031814575, -0.7020295262336731, -0.8705567121505737, -0.15764999389648438, 0.13549090921878815, 0.8190945982933044, 0.41079750657081604, 0.8169179558753967, 1.1326736211776733, 0.09563697874546051, 1.521089792251587, 0.400686651468277, 0.5203474760055542, -0.5493903160095215, -0.4377179443836212, -0.3123520016670227, 0.58241206407547, -1.2151460647583008, -1.1611652374267578, -0.008483370766043663, -0.43730980157852173, -0.9957014918327332, 0.4857148826122284, 0.25207242369651794, 0.07644850760698318, 0.13042226433753967, -0.588222086429596, 0.05055269971489906, -0.7751383185386658, 0.2880709767341614, -0.16273732483386993, -1.4621917009353638, -0.005864813923835754, 0.08840711414813995, 0.13703452050685883, -1.226780891418457, 0.6140032410621643, -0.16465747356414795, -0.44205471873283386, -1.2306201457977295, 1.366086483001709, 0.9443626999855042, -0.0988292247056961, -0.1507977694272995, 1.3759655952453613, 1.0359761714935303, -0.07851165533065796, -0.12437006086111069, 0.30405178666114807, -0.8632463216781616, 0.8617518544197083, 0.12810593843460083, -0.6990877985954285, -0.37858232855796814, 1.3884174823760986, 0.17411933839321136, -0.07935058325529099, -0.20057375729084015, -0.6225668787956238, -0.39126038551330566, 0.3844643235206604, 0.3852897882461548, -1.432277798652649, -0.6545781493186951, 1.4629067182540894, 0.4856078028678894, -0.33772343397140503, 0.3860366642475128, 1.0542997121810913, 0.5643793344497681, -0.4136965274810791, -0.011758329346776009, 0.6602460145950317, -0.3121882677078247, 0.06483162939548492, -0.1977582424879074, -0.033814553171396255, -0.08324169367551804, -1.0069465637207031, -0.8877789974212646, 0.31699132919311523, -0.9317486882209778, -0.12474849820137024, 0.14946024119853973, -1.1424962282180786, -1.2186263799667358, 0.07316911965608597, -0.3914280831813812, -0.42504021525382996, -0.8501343131065369, 0.05916692689061165, 0.1850602924823761, -0.057472798973321915, 0.33907952904701233, -0.18923749029636383, 0.7983226776123047, -0.18786951899528503, -0.6245427131652832, -0.3299678564071655, 0.13731028139591217, -0.17194819450378418, 0.16693420708179474, 0.35173317790031433, -0.6571822762489319, 0.8065811395645142, -0.269024521112442, -0.9310128688812256, 0.013600151985883713, 0.4694589376449585, -0.38312044739723206, -0.6017136573791504, -0.9294744729995728, 0.986387312412262, 0.30511417984962463, 0.44228285551071167, -0.056701794266700745, -0.4877346456050873, -0.6290513277053833, 0.0063573699444532394, -0.48875975608825684, 0.9384445548057556, -0.7901186943054199, 0.8265995979309082, 0.4317134916782379, -0.8596047759056091, -0.11910657584667206, -0.91497802734375, 0.8474072217941284, -0.5013591647148132, 0.2001095414161682, 0.019795680418610573, 0.38840052485466003, -0.694359302520752, -0.8494324088096619, 0.09793411940336227, -0.4304869472980499, 0.01577785611152649, 0.3152461349964142, -1.2575725317001343, -0.18577542901039124, -0.13950838148593903, -0.5789920091629028, 0.5772686004638672, -0.1759052574634552, -0.7264401912689209, 0.12055414170026779, -0.9403243660926819, 0.5101596117019653, 0.7180111408233643, -0.3031894564628601, 0.5844985842704773, 0.8021329045295715, 1.5336613655090332, 0.4220931828022003, 0.15359747409820557, 0.07705745100975037, 1.2025679349899292, -0.8828316926956177, -0.029773255810141563, 0.24431265890598297, -0.6547764539718628, -0.9182389378547668], [-0.214458167552948, 1.6023919582366943, -2.3163299560546875, -0.022408418357372284, 0.6805170178413391, 0.2668628990650177, 0.4236588776111603, -0.709229588508606, -0.4082118272781372, -0.7189520597457886, -0.7315647602081299, -0.40487760305404663, 0.10849793255329132, 0.7036391496658325, 0.9447981715202332, 0.9379923343658447, 0.7639302015304565, -0.26141607761383057, 0.21346747875213623, 1.1721512079238892, -0.062323879450559616, -1.0811647176742554, 0.607068657875061, 0.18637816607952118, 0.18804559111595154, 0.7169891595840454, -0.9213835597038269, -0.2794378101825714, -0.948395311832428, -1.087233304977417, 0.9640920758247375, -0.573639452457428, 0.013240423984825611, -0.32527464628219604, -1.5888152122497559, -0.6217372417449951, 1.5428522825241089, 1.0316057205200195, 0.23548686504364014, -0.1575031876564026, 2.0355145931243896, -0.4454285502433777, -0.49023309350013733, -1.7500083446502686, 0.15932707488536835, -0.24125352501869202, 0.7653263211250305, -1.3134539127349854, 0.05411938205361366, 0.26138582825660706, 0.2730536162853241, -1.181597113609314, 0.5687310099601746, 1.3082704544067383, 0.9178944826126099, -0.8523768186569214, 0.450479120016098, -0.23321589827537537, 0.2634652554988861, -0.5274396538734436, 1.7415356636047363, -0.19784832000732422, -0.5655055046081543, 1.2744219303131104, -0.10863441228866577, -0.5143545866012573, 0.20478412508964539, -0.04471343383193016, -0.17457130551338196, 0.1734132617712021, 0.49539852142333984, -0.16583633422851562, -0.6852753758430481, 0.47455570101737976, -1.5463305711746216, 0.6890283823013306, 0.06664316356182098, 0.6645932793617249, 0.7597826719284058, 0.015942316502332687, -0.13127325475215912, 0.1254309117794037, 0.7983180284500122, -0.6794397234916687, -0.06994350999593735, -0.10681792348623276, 0.5400588512420654, -0.7663862705230713, -0.9013144373893738, 1.6612319946289062, 0.24578037858009338, 0.317783385515213, 0.2288922220468521, 0.5239481925964355, -0.4473055899143219, -0.7670931220054626, 0.015060923993587494, -0.8741272687911987, -0.89231276512146, -0.8625686764717102, -0.6458742618560791, -0.816999077796936, 0.6847726702690125, 0.17375385761260986, -0.8350041508674622, 1.723357081413269, 0.3382013142108917, -0.4375544786453247, -0.18709678947925568, 0.5676307678222656, -0.725700855255127, -0.0008362643420696259, -0.804593026638031, -0.4670897126197815, -0.7353962063789368, 1.4152144193649292, 1.464589238166809, -0.1708701103925705, 0.5590376853942871, 0.9496455192565918, -0.151020348072052, -0.34929731488227844, 0.5255171656608582, -0.14965234696865082, 0.6258295774459839, 0.612363338470459, -0.8508699536323547, -0.4685283303260803, 0.09216880798339844, -0.31807833909988403, 0.9589800238609314, -0.17935903370380402, -0.4412199854850769, 0.836958646774292, -0.9472161531448364, 0.8568581938743591, -1.3546823263168335, -0.2721173167228699, 0.10419277101755142, -0.016365133225917816, 0.4777185618877411, 0.04015811160206795, -0.5465526580810547, -0.7101262211799622, 0.4059050679206848, -0.5887954235076904, 0.4046250879764557, -0.12056650221347809, -0.9086756110191345, 0.49637630581855774, -1.0232003927230835, 0.5782759189605713, 0.34259939193725586, 0.9871704578399658, 0.2810082733631134, -0.5335910320281982, -0.6048600673675537, -0.1687033325433731, 0.33588531613349915, 0.5057017803192139, 0.8573260307312012, 0.006086019333451986, -0.9002801179885864, 0.8167726993560791, 1.1127631664276123, -0.23953619599342346, 0.3736266493797302, 0.9640586972236633, -0.016671398654580116, 0.6998053193092346, -0.19282735884189606, -0.8013048768043518, -0.47044265270233154, 0.6749029755592346, 0.6144047975540161, -0.8147475719451904, 1.1082464456558228, 0.15368573367595673, -1.534079670906067, -1.1076687574386597, 0.8691117167472839, -0.365302711725235, 0.9658544063568115, -0.02993685007095337, 0.004121741279959679, -0.6034969091415405, 0.5948448777198792, -0.37160810828208923, -0.48172762989997864, -0.4749771058559418, -0.4158470630645752, 0.017193786799907684, -0.9153167009353638, -0.08043082058429718, 0.08375052362680435, -1.0082404613494873, 0.10867700725793839, -1.610260248184204, -0.4385594129562378, -0.20818307995796204, 0.024326739832758904, -0.42400357127189636, -0.6928116679191589, 0.6055505275726318, -0.5945903658866882, 0.7573845386505127, -0.7316913604736328, 1.3571993112564087, -0.5001670122146606, -0.17527440190315247, 1.1620004177093506, -0.6073703765869141, -0.8215680718421936, 0.24737560749053955, 0.5309505462646484, -1.8627183437347412, 0.09893913567066193, 0.08564828336238861, -0.6263105273246765, -0.21075297892093658, -0.3695443272590637, -0.16223548352718353, 0.747689962387085, -0.09105444699525833, 0.2860965132713318, 0.05197853967547417, -0.11160317808389664, -1.1599838733673096, -0.45243188738822937, -0.590588390827179, -0.6338053941726685, -0.8967962265014648, 0.8536067605018616, 0.23531456291675568, -1.4559117555618286, 0.22161579132080078, 0.18324638903141022, 0.5707982778549194, -0.055053312331438065, 1.2875733375549316, 0.5737359523773193, 0.4198978543281555, 0.12399189174175262, -0.39939579367637634, -0.6719548106193542, 0.7110088467597961, 1.4145382642745972, -0.06637018918991089, 0.11861063539981842, 0.6742715835571289, 1.304243803024292, -0.06475325673818588, 0.47906652092933655, -0.2665683329105377, 0.018379703164100647, -0.9682241082191467, -1.1423115730285645, 0.3319985270500183, -0.1689576655626297, 1.8205556869506836, 1.146766185760498, -1.217538595199585, -0.4999197721481323, 0.1892872154712677, 0.1970321089029312, -0.23667187988758087, -0.8998652696609497, 0.01794574037194252, 0.2866578698158264, 0.03924974054098129, 0.22192798554897308, 0.9180819392204285, -0.6424174308776855, 0.36181220412254333, -0.848310112953186, -0.428713321685791, -0.5700399875640869, 0.8604204654693604, 0.1334482878446579, 1.221792221069336, -0.23706132173538208, -1.706619143486023, 0.11565858870744705, -0.37354257702827454, 0.5836390256881714, 0.40805745124816895, -0.2138402760028839, 0.6108909845352173, 0.4444293677806854, -0.6219260096549988, 0.6840679049491882, -0.12329856306314468, 0.14118407666683197, -0.22130142152309418, 0.25919875502586365, 0.3203895092010498, 1.0571544170379639, -0.8224678635597229, -0.636009693145752, 0.2193642258644104, -0.11120228469371796, 1.793290376663208, 0.2584839165210724, 0.6543390154838562, 0.034524619579315186, 0.2570251524448395, -0.2275884449481964, -0.44927650690078735, -1.022236943244934, -0.9167870283126831, -0.5601811408996582, -0.7882519960403442, 0.002123462036252022, 0.2775671184062958, 0.1375437080860138, 1.2250248193740845, -0.18900176882743835, 0.023843126371502876, 1.063506841659546, -0.6413708925247192, -1.0769059658050537, -0.34717562794685364, -0.032810624688863754, -0.9276183843612671, 0.48034578561782837, 1.595363736152649, -1.0279316902160645, 0.09849853068590164, -0.09970735758543015, -0.006952892057597637, 0.5928416848182678, -0.21812845766544342, 0.6581376791000366, -1.2019109725952148, -0.9289670586585999, 0.13211952149868011, 1.0461848974227905, -0.3574564754962921, 0.5503203868865967, -0.6108148694038391, 0.40354710817337036, 0.6329447031021118, 0.3134050965309143, -0.3208300769329071, 0.4027295410633087, -0.5869422554969788, -0.8895823955535889, -0.1325697898864746, 0.8762881755828857, 0.7334354519844055, -0.37178122997283936, -0.6877235174179077, -0.6893404722213745, -0.41603371500968933, -0.36348018050193787, -0.009636975824832916, 0.4186519384384155, 0.9592674970626831, -0.16690224409103394, 0.5998485088348389, 0.6745011210441589, 0.14563913643360138, 0.12781421840190887, -1.5626510381698608, 0.48668983578681946, 0.5622764825820923, 1.2646414041519165, 0.24814069271087646, 0.4639385938644409, 0.16972851753234863, 0.35838815569877625, -0.24234223365783691, -0.16819648444652557, 1.3696508407592773, -0.38284221291542053, -0.09529197216033936, -0.2699059545993805, -0.6858745217323303, 0.0885605663061142, -0.019723495468497276, 0.42182332277297974, 0.6572510004043579, -1.4980803728103638, -0.5180284976959229, 1.3907876014709473, 0.26446014642715454, -0.2739710509777069, -0.023327743634581566, 0.518750011920929, 0.39454010128974915, -0.904289960861206, -0.36582180857658386, -0.25575122237205505, 0.16279709339141846, 0.29790887236595154, -1.2404627799987793, -0.13819003105163574, 0.4117913246154785, 0.8590887784957886, 1.418839693069458, -0.941861093044281, 0.35338759422302246, -0.7604643106460571, 0.5468287467956543, 0.5007675886154175, -0.5161295533180237, 0.4755171537399292, 0.09958609938621521, -0.09875596314668655, 0.05650220438838005, 0.5509894490242004, 1.2756136655807495, 0.11007256805896759, 0.5276935696601868, 0.512361466884613, -0.6824713349342346, -0.5892695784568787, -0.26282045245170593, -0.5997940301895142, 0.476973295211792, -0.8228054642677307, -0.520149290561676, 0.20233894884586334, -0.45569443702697754, 2.0838420391082764, -0.004445967264473438, 0.5082413554191589, 0.27139484882354736, 0.0931156799197197, -0.9715332388877869, -0.13048182427883148, 0.4742114841938019, -0.055014755576848984, -0.7508614659309387, 0.020348994061350822, 0.310151070356369, -0.05089140683412552, 0.12631654739379883, 0.20215533673763275, 0.16139096021652222, 0.17415136098861694, -0.10712946206331253, 0.35835742950439453, 0.45345059037208557, 0.7109778523445129, 0.8514611124992371, 0.6216209530830383, -0.535453200340271, -0.6285437941551208, 0.9379546642303467, -0.1852954626083374, 0.3121238946914673, 0.3497254252433777, 0.350396066904068, 1.6106234788894653, -1.1048275232315063, -0.29849788546562195, 0.5085774064064026, 0.018802110105752945, 0.2213098406791687, 0.6940407156944275, 0.01954004541039467, -0.11567865312099457, 0.17576242983341217, -0.2384224683046341, -0.2099052518606186, 0.30689749121665955, 0.08250045031309128, 0.13020658493041992, 0.7148118019104004, -0.8380853533744812, 0.1320381462574005, -0.5459251999855042, -0.5621431469917297, -0.401917427778244, -0.5576456785202026, 0.38659220933914185, 0.03667394816875458, 0.6867321133613586, 1.0557595491409302, -0.13600601255893707, -1.0413684844970703, 0.09219444543123245, -0.5820779204368591, 0.8358058929443359, -0.48553186655044556, -0.37471264600753784, -1.066705584526062, 0.03361976891756058, -0.39863333106040955, 0.3658495843410492, -0.7450360655784607, -0.5900377035140991, -0.27664750814437866, -2.107037305831909, 0.5911149382591248, 0.3163679242134094, 0.7748993039131165, 1.0612990856170654, -0.18777580559253693, 0.4243987202644348, 0.11043023318052292, -0.8122137188911438, 0.0751066505908966, -0.05172669142484665, -0.4760104715824127, 0.08865004777908325, -0.7590525150299072, -0.8174104690551758, 0.433038592338562, 0.4139360785484314, 0.2009463906288147, 0.6508938074111938, 0.7298509478569031, 1.3642773628234863, -0.11480320990085602, 0.3571521043777466, 0.11631827801465988, -0.8934922218322754, 1.002546787261963, -0.017048103734850883, -0.9378289580345154, -0.5980266332626343, -1.2556308507919312, -1.891213059425354, 1.3679208755493164, -0.677074134349823, -0.3789326846599579, 1.290365219116211, 1.240983009338379, 0.41456300020217896, 0.37378981709480286, -0.26827383041381836, -0.11823303997516632, 0.04075881466269493, -0.37095174193382263, -1.0044405460357666, 0.8952752351760864, 0.7105801105499268, 0.065115787088871, 0.10738832503557205, 0.2770070731639862, -0.3284931480884552, 0.052798785269260406, -0.3302817940711975, 0.634554922580719, 0.3101732134819031, 0.5443923473358154, 0.18871867656707764, 0.5318794250488281, 0.3865388035774231, -1.251756191253662, -0.2883947193622589, 0.12328086793422699, 0.8093050718307495, 0.2887158691883087, 0.0011402405798435211, 0.44837847352027893, -0.4167439639568329, -0.4296369254589081, -0.35505586862564087, -0.22606465220451355, 1.0166065692901611, 0.7522838115692139, -0.3383970856666565, -0.33826494216918945, -0.6847789287567139, -0.17369383573532104, -0.6115924715995789, 0.9867737293243408, 0.35952308773994446, -1.6592403650283813, -0.3514886796474457, 0.36488792300224304, -0.6687493920326233, -0.8525770306587219, -0.36553505063056946, 0.0851227268576622, -0.9104387760162354, -0.9453501105308533, -0.23998840153217316, -0.0187758207321167, 0.668727695941925, -0.38480833172798157, 0.43238481879234314, 0.0030781636014580727, -1.2572486400604248, 0.7143097519874573, -0.6299455761909485, -0.6280961036682129, 0.184366375207901, -1.4804831743240356, 0.8905380964279175, 0.06264318525791168, 0.6102634072303772, -0.2144012451171875, 0.5994176864624023, -1.3439885377883911, -0.7596257925033569, -1.2835201025009155, -0.4071740508079529, 1.297107219696045, 0.6844449043273926, -0.7702517509460449, 1.8284947872161865, 1.1581342220306396, -0.09610707312822342, -0.07584283500909805, -0.003169408068060875, -0.4147770404815674, -0.2159518599510193, 0.4848024547100067, 0.784051239490509, 1.0993670225143433, 1.4719771146774292, 1.0360980033874512, 0.5574326515197754, 0.8168345093727112, 1.1851698160171509, -0.43906542658805847, -0.3970124423503876, -0.21709521114826202, 1.1156288385391235, -0.439408540725708, -1.082556962966919, -0.002179850824177265, -0.21646423637866974, -0.8701344132423401, -0.12613844871520996, 0.6023353338241577, -0.7863534688949585, 0.6755202412605286, -0.5788180232048035, -0.05942703038454056, -0.5392053723335266, 0.3206183910369873, 0.1500912457704544, -1.1885507106781006, 0.19658634066581726, -0.18295595049858093, -0.3261348009109497, -1.2280309200286865, 0.3963612914085388, 0.4930505156517029, -0.5236808061599731, -0.5474311709403992, 0.057205718010663986, -0.08618596196174622, 0.9097126722335815, -0.5671600699424744, 1.7656278610229492, 0.6823957562446594, -0.615250825881958, -0.16028030216693878, -0.3760603666305542, 0.07815254479646683, 0.6554535031318665, -0.9930103421211243, -0.886557936668396, -0.7940117120742798, 1.4734561443328857, 0.33032533526420593, 0.17610198259353638, -0.20365464687347412, -0.28522247076034546, -0.22959502041339874, 0.36947888135910034, 1.3150324821472168, -1.3539098501205444, -0.6268165707588196, 1.1363775730133057, 0.9991846084594727, -0.3695698380470276, 0.42565348744392395, 0.1968514770269394, 0.16005884110927582, -0.8967939019203186, 0.4513893723487854, 0.4988607168197632, -0.2853263318538666, 0.6856444478034973, 0.25700077414512634, 0.07643542438745499, -0.002676820382475853, -0.17546381056308746, -1.4746392965316772, 0.3897263705730438, -0.29895293712615967, -0.5215098261833191, 1.0529199838638306, -1.2281781435012817, -0.8080531358718872, 0.3329586982727051, 0.3629292845726013, -0.3178042769432068, -0.19882658123970032, 0.1046685129404068, 0.3754473328590393, -0.051444005221128464, 0.8839468955993652, -0.15720631182193756, 0.8962488174438477, -0.4366191625595093, 0.354633092880249, -0.9680405855178833, -0.10023675858974457, 0.44195571541786194, 0.21303488314151764, -0.1769307404756546, -0.19236794114112854, 0.5185940265655518, -0.7352603077888489, -0.5851075053215027, 0.2938774526119232, 0.10254815220832825, 0.2934623956680298, -0.3537593185901642, -0.47732120752334595, -0.08865119516849518, 0.48672541975975037, 0.774547278881073, -0.038898080587387085, -1.1477924585342407, -0.6387609243392944, 0.054759979248046875, -0.4516645669937134, 0.10136599093675613, 0.014975747093558311, 0.6086652278900146, 0.27765366435050964, -0.714415431022644, -0.9381113648414612, -1.0763882398605347, 0.7619743347167969, -0.2754770815372467, 0.1938450187444687, -0.4616323411464691, 0.7146665453910828, -0.1117100864648819, -0.8353360891342163, -0.03483729809522629, 0.16750846803188324, 0.12563395500183105, 0.13749168813228607, -1.0241645574569702, -0.1864420473575592, -0.8421050310134888, 0.4283037483692169, 0.37596800923347473, 0.5650202631950378, 0.1417195200920105, 0.32373180985450745, -1.3225314617156982, 0.37285536527633667, 0.27937549352645874, -0.20372167229652405, -0.32045111060142517, 1.5228383541107178, 1.5238476991653442, 0.12151069194078445, 0.16704735159873962, -0.3423405885696411, 0.363964319229126, -1.2085720300674438, 0.013572771102190018, -0.44320961833000183, -0.7483081817626953, -0.5631304979324341], [-0.659466028213501, 1.3118692636489868, -2.361422538757324, -0.3424220085144043, 1.0589426755905151, -0.34314846992492676, 1.316833257675171, -1.0703811645507812, 0.42604053020477295, -0.5915077924728394, -1.1888768672943115, -0.12117348611354828, -0.178470179438591, 0.37477076053619385, 0.8318994045257568, 1.5044350624084473, 1.0717294216156006, 0.2148643434047699, 0.6668258905410767, 0.9758388996124268, -0.05806201696395874, -0.12978194653987885, 0.554068922996521, -0.20885999500751495, 0.11570107936859131, 1.1221877336502075, -1.0975875854492188, -0.5464925765991211, -0.4474446773529053, -1.0449092388153076, 0.8618331551551819, -0.9315825700759888, -0.13281342387199402, -0.3058323264122009, -1.2301299571990967, -0.11863613873720169, 1.6778953075408936, 1.793594479560852, 1.1461751461029053, -0.15735316276550293, 1.3991506099700928, -0.7073791027069092, 0.11776956915855408, -1.487849235534668, 0.1857614815235138, -0.24201229214668274, 0.6332347393035889, -0.24310153722763062, -0.423357218503952, -0.07193803042173386, 0.11523838341236115, -1.0887253284454346, 0.21847233176231384, 0.9544481039047241, 1.159017562866211, -0.6910377144813538, 0.9987921714782715, -0.5017459988594055, -0.25375106930732727, -0.49071234464645386, 0.9761847257614136, 0.21177339553833008, -0.6236081123352051, 0.44844430685043335, -0.02576790750026703, -0.17062534391880035, 0.02120884321630001, 0.36345547437667847, -0.29597410559654236, 0.27460283041000366, 0.3556209206581116, -0.17155155539512634, -1.172118067741394, 0.4695923328399658, -1.4079978466033936, 0.6840803623199463, 0.8752607107162476, 0.4285186231136322, 0.8091222643852234, 0.0006868541240692139, 0.06859930604696274, -0.1145399883389473, 0.25472745299339294, -0.5485711693763733, 0.5009084939956665, 0.2778826355934143, 0.6412640810012817, -0.8886241912841797, -0.7863657474517822, 0.9516274333000183, 0.6051430702209473, -0.19318601489067078, 0.35132697224617004, 0.14023229479789734, -0.8909236788749695, -0.6545749306678772, 0.9654857516288757, -0.06300369650125504, -0.9068168997764587, -0.8071010112762451, -0.275430828332901, -1.4578485488891602, 0.6887704133987427, 0.12389728426933289, -0.028060652315616608, 1.37953782081604, 0.15517443418502808, -0.7443605065345764, -0.6135284900665283, -0.1951930671930313, -0.04274548590183258, 0.4770411550998688, -0.8710272312164307, -0.9384599924087524, -0.25012192130088806, 1.314589023590088, 1.9796817302703857, -0.858786404132843, 0.35953956842422485, 1.1154674291610718, -0.377788245677948, 0.22377443313598633, -0.32453757524490356, 0.7711580991744995, 0.8082300424575806, 0.6085622906684875, -0.008938213810324669, -0.33700743317604065, 0.3201885223388672, 0.05181301385164261, 0.7443445324897766, -0.07675602287054062, -0.552129864692688, 0.8149223327636719, -1.1978704929351807, 0.9179122447967529, -0.2561883330345154, -0.608839750289917, -0.04286210983991623, -0.1333709955215454, 1.036703109741211, -0.387395977973938, -0.2649265229701996, 0.13727043569087982, 0.243331179022789, -0.5766267776489258, -0.2140570729970932, -0.3263940215110779, -0.6349775791168213, 0.21416352689266205, -0.9871151447296143, 0.37814924120903015, -0.048789553344249725, 0.4495224356651306, 0.6760377883911133, -0.6566987037658691, 0.11369787156581879, 0.640709638595581, 0.9104783535003662, 0.5973494648933411, 1.0926554203033447, -0.339063435792923, -1.0146349668502808, 0.9270085692405701, 0.6749405264854431, -0.24763396382331848, 0.007345279678702354, 1.0376626253128052, 0.1748979687690735, 1.1446988582611084, -0.1665061116218567, -0.963476836681366, -0.5521147847175598, 0.2543953061103821, 0.15868818759918213, -0.5994206666946411, 1.279085636138916, 0.08687460422515869, -1.9201161861419678, -1.3518216609954834, 0.06409361213445663, -0.41461020708084106, 0.8799848556518555, 0.0633537769317627, 0.5946779251098633, -0.7677007913589478, 0.6655783653259277, 0.35849499702453613, -1.155481219291687, -0.8115463256835938, -0.6448870897293091, -0.5010130405426025, -0.8054744005203247, 0.2801426649093628, -0.7462694048881531, -1.5616146326065063, 0.18548624217510223, -1.2927175760269165, -0.39034950733184814, -0.30506592988967896, 0.10829389095306396, -0.26668423414230347, -0.41563352942466736, -0.04204322397708893, -0.48742955923080444, 1.0400478839874268, -1.3884055614471436, 1.3635294437408447, -0.6360436677932739, -0.23479974269866943, 1.2238452434539795, -0.1974467933177948, -0.5957676768302917, 0.684410810470581, -0.157134547829628, -1.3075296878814697, 0.34531259536743164, 0.64332115650177, -0.26376721262931824, -0.4209423065185547, -0.22117015719413757, 0.5365887880325317, 0.0564613901078701, 0.026377897709608078, 0.7190897464752197, -0.07761392742395401, -0.3105909824371338, -0.589002251625061, -0.44534897804260254, -0.5467039346694946, -0.4732053279876709, -0.4369485378265381, 0.4969390034675598, -0.006698428653180599, -1.1050896644592285, 0.2620707154273987, 0.2772204875946045, 0.6248214244842529, 0.6619491577148438, 1.3843915462493896, 0.6595808267593384, 0.4266712963581085, -0.05194421112537384, -0.6265925168991089, -0.43085479736328125, 1.0732810497283936, 0.8418556451797485, -0.45050787925720215, 0.5356097221374512, 1.2126773595809937, 1.1584322452545166, -0.624100923538208, -0.06475598365068436, -0.38171103596687317, -0.3063373863697052, -0.8530446887016296, -0.7995052933692932, 0.045585960149765015, -0.054407328367233276, 1.9656168222427368, 0.6257457733154297, -1.141117811203003, -0.3537651300430298, 0.8052716851234436, -0.035952575504779816, -0.11801128089427948, -0.35539746284484863, 0.644284725189209, 0.02475742995738983, 0.18654274940490723, 0.0028045158833265305, 0.546477735042572, -0.47735780477523804, 0.5417653322219849, -1.0577086210250854, -1.1903486251831055, -0.724082350730896, 0.4510326385498047, -0.47575172781944275, 0.5658420324325562, -0.10777684301137924, -0.9902733564376831, 0.10640937089920044, -0.02376250922679901, 0.4042484760284424, 0.14193104207515717, 0.06292837858200073, 0.09682843089103699, 0.8300892114639282, -0.33387985825538635, 0.8234219551086426, 0.09317750483751297, 0.33907708525657654, 0.28139859437942505, 0.329451322555542, 0.4419906735420227, 2.0877482891082764, -1.5774279832839966, -0.7407612800598145, 0.0486542209982872, 0.10502074658870697, 1.5594732761383057, 0.029459193348884583, 1.292925238609314, 0.060114216059446335, 0.5570611953735352, -0.5488123893737793, 0.10551290214061737, -0.8886488676071167, -0.7945812940597534, -1.3810689449310303, -0.32913708686828613, -0.3120831251144409, 0.004915386438369751, -0.02947617508471012, 0.5338859558105469, -0.3826322555541992, 0.4838833808898926, 1.5996510982513428, -0.6349897384643555, -0.5788672566413879, -0.4334389269351959, -0.4722236394882202, -0.4841628074645996, 0.1424563080072403, 1.3579394817352295, -0.7257997393608093, -0.5818523168563843, 0.11691045761108398, 0.15617036819458008, 0.658164381980896, 0.0727248340845108, 0.7407483458518982, -1.7876274585723877, -1.2824435234069824, -0.03533592075109482, 1.3817405700683594, -0.39123234152793884, -0.10968399047851562, -0.3116214871406555, 0.3105334937572479, 1.0859220027923584, -0.506658136844635, -0.6700670719146729, 0.7058967351913452, -0.42358410358428955, -1.3375649452209473, -0.4346441626548767, 0.1959194540977478, 0.8267309665679932, -0.5613940954208374, -0.3219956159591675, -0.5073836445808411, -0.1900986135005951, -0.08563929051160812, 0.041605349630117416, -0.5260477662086487, 1.0659633874893188, -0.3227103352546692, 0.36129453778266907, 0.4127626419067383, -0.3762474060058594, 0.5569181442260742, -0.8935710191726685, 0.36281293630599976, 0.6797606348991394, 1.0321472883224487, 0.4858297109603882, 0.2772214114665985, 0.11387548595666885, 0.873151421546936, 0.12899212539196014, -0.07449132949113846, 1.6361725330352783, -0.1142987310886383, -0.12794503569602966, -0.2943321466445923, 0.2182520180940628, -0.11883559077978134, -0.22374069690704346, 0.07649974524974823, 0.6417490243911743, -1.224664568901062, -0.17025429010391235, 1.027130126953125, 0.3366384208202362, 0.09063443541526794, 0.14893290400505066, -0.4056549668312073, 0.8659434914588928, -0.3436379134654999, -0.2557278573513031, -0.40902674198150635, -0.15098275244235992, 0.4436507225036621, -0.990546703338623, 0.04409974068403244, 0.677355170249939, 0.5438991785049438, 0.5590012073516846, -0.24606546759605408, 0.09050996601581573, -0.9463677406311035, 0.8448210954666138, 0.7277487516403198, -0.9870849847793579, 0.1321338713169098, -0.11717602610588074, -0.0972597748041153, -0.28506529331207275, 0.2751157581806183, 0.7095991373062134, -0.22159899771213531, 0.11271633207798004, 0.5066011548042297, -0.05451081320643425, -0.5040954947471619, -0.13025057315826416, -0.10518012940883636, 0.49806755781173706, -0.3252658247947693, -0.10871449112892151, 0.5004128217697144, -0.34434160590171814, 1.9209506511688232, 0.345140278339386, 0.3897528052330017, 0.7044907808303833, 0.21629583835601807, -0.7216979265213013, -0.28612515330314636, 0.47170180082321167, -0.3543028235435486, -1.0346293449401855, -0.3165908753871918, 0.3519221544265747, -0.528229832649231, 0.029338134452700615, -0.23047292232513428, 0.7172641754150391, 0.4216000437736511, -0.06033533066511154, -0.16008709371089935, 0.6943234801292419, 0.8357657194137573, 0.9468575119972229, 0.5242117643356323, -0.6145970225334167, -0.7955794930458069, -0.12483647465705872, -0.6913691759109497, 0.10201556980609894, 1.043020486831665, 0.27388083934783936, 1.5232291221618652, -1.364443063735962, -0.41930535435676575, 0.34386464953422546, 0.03130811080336571, 0.34104955196380615, 1.1887965202331543, -0.40955138206481934, 0.5868049263954163, 0.05914689600467682, -0.31890949606895447, -0.3225066065788269, 0.01927933655679226, 0.30382105708122253, -0.8246335983276367, 0.536341667175293, -0.6384291052818298, 0.9200643301010132, -1.2593297958374023, -0.7074155807495117, 0.15433013439178467, -1.5592551231384277, 0.14090080559253693, 0.24928739666938782, 0.6732520461082458, 1.209857702255249, 0.06950682401657104, -1.2454485893249512, -0.2241390496492386, -0.32090914249420166, 0.14152656495571136, -0.8188371658325195, -0.3811776041984558, -0.9209082126617432, -0.2889016270637512, -0.49869662523269653, 1.021578311920166, 0.1969393789768219, -0.6433351635932922, -0.24830830097198486, -1.034400224685669, 0.7480531334877014, 0.3263917565345764, 0.5852431654930115, 0.4219323992729187, -0.3873324692249298, 0.3479107916355133, -0.2252662181854248, -0.6311800479888916, 0.38917794823646545, 0.14914719760417938, -0.060155414044857025, -0.091086745262146, -0.8525251150131226, -0.2162623405456543, 0.4605918526649475, 0.44809508323669434, -0.3740427494049072, 0.698474645614624, 0.9965618848800659, 1.0952765941619873, -0.14429685473442078, -0.05293256789445877, -0.1684039831161499, -0.10198286175727844, 0.3980101943016052, 0.6551352739334106, -0.1450970619916916, -0.6114845275878906, -1.289011001586914, -1.591031789779663, 0.8382409811019897, -0.394141286611557, -1.0690958499908447, 1.3021749258041382, 0.724432647228241, 0.6929619908332825, 0.5147562026977539, -0.5396426320075989, 0.3779987692832947, 0.24197928607463837, -0.9658047556877136, -1.105525255203247, 0.9558937549591064, 0.04619942232966423, 0.8930016756057739, -0.1364527940750122, -0.7375591993331909, -0.0464915968477726, -0.2851685881614685, -0.7993375062942505, 0.4930185079574585, -0.07795314490795135, 0.5506854057312012, -0.09055586159229279, -0.09195751696825027, -0.032772552222013474, -0.07983183860778809, -0.959376335144043, 0.07789275050163269, 0.1869022697210312, 0.2745112478733063, 0.14295057952404022, -0.3884170949459076, -0.2872398793697357, -0.80804443359375, -0.09344904869794846, 0.17700061202049255, 0.6696878671646118, 1.083132266998291, 0.4700402021408081, -0.234205961227417, -0.14617113769054413, 0.39229246973991394, -0.3931344747543335, 1.0616064071655273, 0.923957347869873, -1.175499677658081, 0.06902144104242325, 0.7835302352905273, -0.9158658981323242, -1.0343449115753174, -0.17961496114730835, -0.08794526755809784, -1.2093520164489746, -0.8931723833084106, -1.2274985313415527, -0.11972800642251968, 0.5049089193344116, -0.9182277917861938, 0.1149594783782959, 0.5163050293922424, -1.719452142715454, 0.4190666675567627, -0.5263245105743408, -1.0776013135910034, 0.042836807668209076, -0.42643892765045166, 0.6073770523071289, 0.09558311849832535, 0.4776129722595215, -0.4461442530155182, 0.4751952886581421, -1.3077327013015747, -1.008641242980957, -0.7109318971633911, 0.14288541674613953, 0.7142214179039001, 0.5553325414657593, -0.49075159430503845, 1.6858192682266235, 0.9227900505065918, -0.5368524789810181, -0.5334288477897644, 0.2181897610425949, -0.300772488117218, 0.49682503938674927, 0.43314802646636963, 0.7581493854522705, 1.0039968490600586, 1.1604777574539185, 0.1619931161403656, 1.1319465637207031, 0.8253313899040222, 0.4456102252006531, -0.10243834555149078, -0.8847548365592957, 0.4642702341079712, 0.6511290073394775, -0.9279428720474243, -1.1528847217559814, -0.4463838040828705, -0.30155858397483826, -1.1669530868530273, 0.15805663168430328, 0.7846888303756714, -0.748450517654419, 0.21846207976341248, -0.521767258644104, 0.15749388933181763, -0.6742141246795654, -0.006496507674455643, 0.2063382863998413, -0.7203123569488525, 0.01158871315419674, 0.16570159792900085, -0.7498383522033691, -1.6148847341537476, 0.48900696635246277, 0.17379964888095856, -0.6315679550170898, -0.5222795009613037, 0.9825621843338013, 0.30493319034576416, 0.5201553106307983, -0.14857222139835358, 1.6948819160461426, 1.0677318572998047, -0.6044148802757263, 0.10763642191886902, 0.4211612343788147, 0.16438187658786774, 0.5962475538253784, 0.3376067280769348, -1.043424129486084, -1.037774920463562, 1.7916762828826904, 0.5881267189979553, 0.36675822734832764, -0.13464395701885223, -0.5360267162322998, -0.3881380259990692, 0.22581151127815247, 0.5265791416168213, -0.8795714378356934, -0.15331228077411652, 0.9302013516426086, 0.7090669870376587, 0.10774116218090057, -0.4546352028846741, 0.6119354963302612, 0.8545161485671997, -0.941999077796936, 0.3295627534389496, 0.568837583065033, -0.21880878508090973, 0.5663988590240479, -0.29344531893730164, -0.4275064468383789, -0.22293789684772491, -0.12364237010478973, -0.7627326250076294, -0.040339890867471695, 0.06804781407117844, -0.5802702903747559, 1.0977129936218262, -1.1693055629730225, -0.3102697432041168, -0.3778642416000366, -0.5057297348976135, -0.29153138399124146, -0.29264509677886963, 0.11750499904155731, -0.23025114834308624, 0.443330854177475, 0.7455415725708008, -0.24626855552196503, 1.0795342922210693, -0.7423908710479736, 0.06295949220657349, -1.2193211317062378, -0.31539154052734375, 0.15288791060447693, -0.20394489169120789, -0.21807655692100525, -0.2353084683418274, 0.5328908562660217, -0.3221409320831299, -0.8283452987670898, -0.015184387564659119, 0.025780893862247467, -0.06758485734462738, 0.014095939695835114, -0.652589738368988, 0.26568299531936646, 0.9682468771934509, 0.9906426668167114, -0.20063170790672302, -1.0548229217529297, -1.1934524774551392, -0.24302005767822266, -0.27747225761413574, 0.5385744571685791, -0.5089231133460999, 0.9992530941963196, 0.17770187556743622, -0.14006558060646057, -0.7535255551338196, 0.08757343888282776, 0.7814866304397583, 0.17564737796783447, 0.3388693630695343, -0.22881636023521423, 0.48886626958847046, -0.7028110027313232, -0.8256943225860596, 0.1386672705411911, -0.02823857218027115, -0.4187721610069275, -0.08599436283111572, -1.0709586143493652, -0.2026919722557068, -0.22492261230945587, -0.09688764810562134, 0.05642593652009964, -0.09776367247104645, 0.2361994832754135, -0.1754971742630005, -0.8114228248596191, -0.29297196865081787, 0.2371637374162674, -0.11594872176647186, -0.106477752327919, 1.186305046081543, 1.4534989595413208, 0.4736766815185547, 0.46031808853149414, -0.30330008268356323, 0.09100933372974396, -1.3427441120147705, -0.03561755269765854, -0.6804502606391907, -0.5101425647735596, -0.40753665566444397], [0.9694921970367432, 1.4963091611862183, -2.2376902103424072, 0.1164931207895279, 1.7342203855514526, -0.08442432433366776, 0.8497594594955444, -0.304292768239975, -0.30075234174728394, -0.21489585936069489, -0.5462342500686646, 0.4589781165122986, 0.1341947466135025, 0.988475501537323, 0.7824819684028625, 0.8269790410995483, 1.2746590375900269, -0.3022240102291107, 0.48143622279167175, 0.6498590707778931, 0.12365375459194183, 0.17471277713775635, 0.0818362906575203, 0.40807944536209106, -0.2971018850803375, 0.5910168886184692, -0.6603875756263733, -0.14390312135219574, -0.9874762892723083, -0.935444176197052, 2.0945308208465576, -0.4742562472820282, 0.21574316918849945, -0.10749160498380661, -2.642174482345581, 0.15930569171905518, 1.418265700340271, 0.6603295207023621, 0.4950393736362457, -0.1661738157272339, 1.8835686445236206, -0.7309343218803406, -0.17664887011051178, -1.8153222799301147, 0.4495614469051361, 0.03312351182103157, 0.9715867638587952, -0.10073009878396988, 0.15538053214550018, -0.769816517829895, 0.4024747610092163, -0.22952406108379364, 0.25893113017082214, -0.4474453628063202, 0.40214475989341736, -0.015334144234657288, 0.8509735465049744, 0.348847895860672, 0.3185822665691376, -0.060947708785533905, 0.6942174434661865, -0.20511570572853088, -0.42116671800613403, 0.5935854911804199, 0.15129026770591736, -0.3122333884239197, -0.29930970072746277, 0.8217241764068604, -0.11297179013490677, -0.049784500151872635, 0.9720065593719482, 0.17121708393096924, -1.1367030143737793, 0.07878279685974121, -0.9909798502922058, 0.5331838726997375, 0.07507096976041794, 0.5901410579681396, 0.34004127979278564, 0.29626402258872986, -1.0169098377227783, 0.050376735627651215, 0.7502356767654419, -0.07139310240745544, 0.3505868911743164, 0.6317496299743652, 0.34744831919670105, -0.53171706199646, -0.891044557094574, 1.1096141338348389, -0.28880205750465393, 0.09261379390954971, 0.6489489674568176, -0.12899282574653625, -0.2936720848083496, -0.4254896938800812, 0.08526210486888885, -0.5887907147407532, -0.15581588447093964, -0.9119956493377686, -0.917332112789154, -1.2745002508163452, -0.48426637053489685, -0.35807913541793823, -0.8687366843223572, 1.0403997898101807, 1.172066330909729, -0.3186114728450775, -0.1900540441274643, -0.24386091530323029, 0.05543249845504761, 0.8855409026145935, -0.4337335228919983, -1.3031483888626099, -0.4686211049556732, 1.205498218536377, 1.4625685214996338, -0.3210625648498535, 0.1998940408229828, 0.416352778673172, -0.18450139462947845, -0.3238978683948517, 0.01966877281665802, 0.4867013394832611, 0.7140620946884155, 0.5546817779541016, -1.1237319707870483, -0.4715130627155304, 0.8195294737815857, 0.49768194556236267, 0.21655049920082092, -0.1370183676481247, 0.13912196457386017, 0.9307949542999268, -0.5197324156761169, 0.8967581391334534, -0.5671010613441467, -0.6770514249801636, -0.22749781608581543, -0.1341308206319809, 0.2899651825428009, -0.8726025819778442, 0.5082289576530457, 0.18472987413406372, -0.059714142233133316, -0.5087934732437134, 0.9233160018920898, -0.07875631749629974, -0.8571442365646362, 0.3090364634990692, -1.154008150100708, -0.0251779668033123, -0.01834544911980629, 0.7842360138893127, 0.7647009491920471, -0.2703702449798584, 0.21333271265029907, 0.2591603398323059, 0.5550820231437683, 0.0032898224890232086, 1.1010388135910034, 0.11621671169996262, -1.791242241859436, 0.4393247961997986, 0.6187363862991333, -0.35863885283470154, 0.6448288559913635, 0.9421708583831787, 0.37669309973716736, 0.7095112204551697, -0.17117999494075775, -0.5191857814788818, -0.03355342149734497, 0.8345131278038025, 0.1951865702867508, -0.010823381133377552, 0.9771815538406372, 0.05844013765454292, -1.5097802877426147, -1.0898542404174805, 0.6315650939941406, 0.28986406326293945, 0.5472471714019775, 0.3545199930667877, 0.7127262949943542, -0.2897946238517761, 0.3930259346961975, 0.3189878761768341, -0.02384961023926735, -0.8109087944030762, -0.7587486505508423, -0.48981961607933044, -0.28639838099479675, 0.6884384155273438, -0.4400802552700043, -0.9898937940597534, 1.0380090475082397, -1.2543638944625854, -0.384631872177124, 0.31558412313461304, -0.056212153285741806, -0.46328791975975037, -0.43839502334594727, 0.23029451072216034, -1.1057406663894653, 0.4566139578819275, -1.4893447160720825, 0.7404146194458008, -0.7300578355789185, 0.4415353238582611, 1.0276055335998535, 0.2845977246761322, -0.9080948829650879, 0.6694574356079102, -0.4082517623901367, -1.9843839406967163, 0.6954687237739563, 1.0813226699829102, -0.04202890768647194, 0.1183103695511818, -0.756140947341919, -0.03680221363902092, 0.5185208320617676, -0.8046144247055054, 0.3521285355091095, -0.23132279515266418, -0.19938097894191742, -1.1345934867858887, -0.18751932680606842, -0.41358527541160583, -0.705786406993866, -1.4916647672653198, 0.2743701636791229, -0.2198890745639801, -0.229775071144104, -0.022190453484654427, 0.5054137706756592, 0.2658873200416565, 0.15707066655158997, 1.3950186967849731, 0.09057369083166122, 0.6793904900550842, -0.1856953501701355, 0.3475531339645386, -0.687496542930603, 0.6293758749961853, 0.8018778562545776, -0.5085354447364807, 0.2074069082736969, 0.9996453523635864, 1.0291736125946045, -0.14022472500801086, 0.4318637549877167, -0.0964881181716919, -0.21112236380577087, -0.7685856223106384, -0.9054116010665894, -0.040910057723522186, -0.44145718216896057, 1.326831340789795, 0.47581544518470764, -0.5042397975921631, -0.3506341874599457, -0.2804471552371979, -0.5891480445861816, -0.48566552996635437, -0.04081638157367706, -0.6665314435958862, -0.18209709227085114, 0.2918495535850525, -0.25391441583633423, 0.24713918566703796, 0.13675250113010406, 0.8885471820831299, -0.22577638924121857, -0.234258770942688, -0.4283880889415741, -0.02871611900627613, 0.08842910081148148, 0.6913012862205505, -0.19214284420013428, -1.3616045713424683, -0.08312048017978668, 0.13163135945796967, 0.37838754057884216, 0.19671835005283356, 0.7377402782440186, 0.5940343737602234, 0.31657224893569946, -0.02386554144322872, 0.028637267649173737, 0.17902803421020508, 0.4574443995952606, 0.5046937465667725, 0.6072877645492554, 0.14202050864696503, 0.8996895551681519, -1.365981101989746, -0.31649696826934814, -0.3841223418712616, 0.2918076515197754, 0.861594557762146, -0.06520446389913559, 0.8614239692687988, -0.07333814352750778, -0.022090459242463112, -0.19320736825466156, -0.7223027348518372, -0.5089795589447021, -0.9182756543159485, -0.8369735479354858, -0.596479058265686, -0.5446681380271912, -0.3587776720523834, -0.07411958277225494, 0.5922179818153381, -0.7699345946311951, 0.5343796610832214, 1.3532522916793823, -0.3404909074306488, -1.1345595121383667, -0.5290935039520264, -0.19577476382255554, -0.16766293346881866, 0.30807438492774963, 1.0489239692687988, -1.3682358264923096, -0.07176181674003601, -0.012602402828633785, 0.21684007346630096, 0.8600032329559326, 0.1336027830839157, 0.867466926574707, -1.3469202518463135, -0.9891531467437744, -0.6482135653495789, 1.3612521886825562, 0.15383175015449524, -0.19427967071533203, 0.06378775835037231, 0.21609486639499664, 0.5064519047737122, -0.21553707122802734, -0.32308557629585266, 1.4219293594360352, -0.3279038667678833, -0.20996908843517303, 0.1719459742307663, 0.31859156489372253, 0.04003792628645897, -0.6571553349494934, -1.0193032026290894, -0.32352250814437866, -0.27657008171081543, -0.23146548867225647, 0.587814211845398, 0.6739656329154968, 0.6651512980461121, -0.19058695435523987, 0.5256763100624084, 0.9991545677185059, -0.2126818746328354, -0.1654474288225174, -0.7513008713722229, -0.16717089712619781, 0.6647509336471558, 1.0288310050964355, 0.6075734496116638, 0.12012652307748795, 0.1013733446598053, 0.22874201834201813, 0.10460557043552399, 0.2151293307542801, 1.3091375827789307, -0.18128421902656555, -0.1368490308523178, -0.6972786784172058, -0.22262081503868103, 0.24773700535297394, 0.22798217833042145, 0.5215164422988892, 0.462165504693985, -0.7598106861114502, -0.42574959993362427, 1.311579942703247, 0.22040003538131714, -0.35184526443481445, -0.922077476978302, 0.0026645269244909286, 1.8196864128112793, -0.45143088698387146, 0.3381997048854828, -0.5053101181983948, -0.21178872883319855, 0.34245917201042175, -0.17379909753799438, -0.47659891843795776, 0.7339169979095459, -0.014045657590031624, 0.657414972782135, -1.1396794319152832, -0.10843764245510101, -0.8985656499862671, 0.6379510760307312, 0.5994965434074402, -0.2588011622428894, 0.6172046065330505, -0.5016988515853882, -0.4788847267627716, 0.38049933314323425, 0.7163614630699158, 1.077988624572754, -0.5909916162490845, -0.291048139333725, 0.2931344211101532, -0.25110331177711487, 0.440860778093338, -0.2885383367538452, -0.2739451229572296, -0.04197153449058533, -0.06226629018783569, -0.024695761501789093, -0.3260886073112488, -0.38612908124923706, 1.4045594930648804, -0.0650588646531105, -0.014644207432866096, 0.5056565403938293, 0.3967008590698242, -0.7089483737945557, -0.16293954849243164, 0.8175820112228394, -0.049222130328416824, -0.4810844361782074, -0.6672517657279968, 0.6293818950653076, -0.11457131803035736, 0.1115008145570755, -0.1279831826686859, 0.7829995155334473, -0.5556145906448364, 0.1350933015346527, -0.4479713439941406, 0.9828287363052368, 0.36420738697052, 0.8115209341049194, 1.0100781917572021, -0.8657622933387756, -0.2800198793411255, 0.21370449662208557, -1.0807143449783325, 0.9398004412651062, 0.9971710443496704, 0.682111382484436, 1.2111947536468506, -1.608500599861145, -0.7748593091964722, 1.064772605895996, 0.3850220739841461, 0.7501604557037354, 1.2842884063720703, 0.02595975622534752, 0.19690699875354767, 0.9010447263717651, -0.024141274392604828, -0.18986469507217407, 0.8593630790710449, -0.07241885364055634, 0.20668184757232666, 0.4320538341999054, -0.9620253443717957, 0.49007394909858704, -0.41353005170822144, -0.33416175842285156, -0.03757266700267792, -0.27515751123428345, 0.33564493060112, 0.8050447702407837, 0.8947901725769043, 1.1138770580291748, -0.6477824449539185, -1.4225467443466187, -0.4269701838493347, -0.9552009701728821, -0.43513569235801697, -0.30830150842666626, -0.017967846244573593, -1.2848179340362549, 0.12325581908226013, 0.18566443026065826, 0.8675296902656555, 0.09142059832811356, -0.29915714263916016, -0.9304279088973999, -0.9522941708564758, 0.5814311504364014, 1.0100650787353516, 1.2853306531906128, 0.3491310179233551, 0.12238258123397827, 0.2969993054866791, 0.0027592675760388374, -1.0412999391555786, -0.21660977602005005, -0.39492908120155334, -0.1523171216249466, 0.1291699856519699, -0.9831119775772095, -0.9774779081344604, -0.4984112083911896, 0.860296905040741, -0.15329548716545105, 0.7114279866218567, 1.3736979961395264, 0.7636390328407288, -0.4057597219944, -0.10505283623933792, 0.36108526587486267, -0.9818481206893921, 0.45641860365867615, 0.4065711796283722, -0.5871210694313049, -0.8720294833183289, -0.9639929533004761, -0.3927574157714844, 0.2956124246120453, 0.05092671513557434, -0.653533935546875, 0.25735220313072205, 0.391786128282547, 0.7683533430099487, 0.19701291620731354, -0.5960956811904907, 0.32977914810180664, 0.10744846612215042, -0.4357607066631317, -0.7098144888877869, 0.4830838739871979, -0.2573852837085724, -0.6731739044189453, -0.647378146648407, 0.4815009534358978, -0.046579357236623764, 0.22090624272823334, -0.7355096936225891, 0.33664295077323914, 0.4729909896850586, 0.8052650094032288, 0.0742909386754036, -0.7598552107810974, 0.498544305562973, -0.8675050139427185, -1.364933729171753, -0.21379658579826355, 0.379388689994812, 0.31503525376319885, 0.21250241994857788, -0.17642681300640106, -0.586397647857666, -0.6942511796951294, -0.6005695462226868, -0.5096710920333862, 0.8426196575164795, 0.6711787581443787, 0.4640762209892273, -0.6581398248672485, -0.9485208988189697, -0.09090612083673477, -0.266482412815094, -0.18768592178821564, 1.0496716499328613, -1.4119760990142822, 0.22502148151397705, 0.8394845724105835, -1.1185376644134521, 0.3323296308517456, -0.8064054250717163, -0.12029440701007843, -0.5635603070259094, -1.2187035083770752, -1.7938872575759888, -0.027546720579266548, 0.8828881978988647, -0.8189393877983093, 0.163814514875412, 0.01912539266049862, -1.657249927520752, 0.47754859924316406, -0.1844365894794464, -1.282439947128296, 0.11491844058036804, -0.9735323786735535, 0.8268882036209106, 0.30906030535697937, 0.40421968698501587, 0.3143497109413147, 0.8571146726608276, -1.5514508485794067, -1.8112913370132446, -0.8809507489204407, -0.3300629258155823, 1.6927112340927124, 0.8515353202819824, -1.1095596551895142, 1.6505290269851685, 0.7138333916664124, 0.2799223065376282, -0.42891767621040344, 0.17250493168830872, -0.7794404625892639, 0.7784586548805237, -0.006277596578001976, 0.779304027557373, 0.0924186259508133, 0.9298365712165833, 0.03261018171906471, 0.9676975011825562, 0.8101527690887451, 0.6508079767227173, -0.2406863123178482, -0.3205887973308563, 0.1982281506061554, 1.0162009000778198, -0.9503466486930847, -0.7155446410179138, 0.04534483328461647, -0.1105373278260231, -0.9720780849456787, -0.27599045634269714, 0.9321170449256897, -0.7852932214736938, 0.21546395123004913, -0.8190532326698303, -0.08810790628194809, -1.061889886856079, 0.2923523187637329, 0.441101610660553, -0.4215868413448334, -0.4193446934223175, 0.06745753437280655, -0.1718205064535141, -1.3498951196670532, -0.10733896493911743, -0.18776549398899078, -0.9081313610076904, -0.579257607460022, 0.29192671179771423, -0.19933803379535675, 0.46842655539512634, -0.8597084283828735, 1.8365142345428467, 0.9329462051391602, -0.4857083857059479, -0.49602454900741577, 0.3034965395927429, 0.06399271637201309, 0.22002634406089783, -0.008926758542656898, -0.2806243300437927, -0.4691363275051117, 0.960817813873291, 0.5526793003082275, -0.3655320703983307, -0.12325786799192429, 0.33859968185424805, -0.1912776678800583, 0.6756606698036194, 0.08256790786981583, -1.0527740716934204, -0.8903005123138428, 1.1420135498046875, -0.24076686799526215, -0.23779435455799103, -0.2044035643339157, 0.8688881397247314, 0.5164538621902466, 0.11675306409597397, 0.7410739660263062, 0.5575613379478455, -0.23126645386219025, 1.1233969926834106, -0.4364689290523529, 0.28522467613220215, -0.6423443555831909, -0.4679809510707855, -1.579526662826538, -0.23416824638843536, -0.053746480494737625, -1.3945934772491455, 0.47107869386672974, -1.5466707944869995, -0.11426407098770142, -0.04411150887608528, -0.31471386551856995, -0.3747807443141937, -0.25356242060661316, -0.09893587231636047, -0.39174753427505493, 0.009557751007378101, 0.707322359085083, -0.6505456566810608, 1.8780865669250488, 0.27385690808296204, 0.4589586853981018, -1.4893611669540405, -0.631040096282959, 0.020372826606035233, 0.25233790278434753, -0.22535307705402374, -0.5445088148117065, 0.3947119116783142, -0.37637344002723694, -0.6765846610069275, 0.811454176902771, 0.05655393749475479, -0.019875796511769295, -0.24960368871688843, -0.9574522376060486, 0.5287690162658691, 1.1900129318237305, 0.8554303050041199, -0.4628116190433502, -0.6131361126899719, -0.6697168350219727, 0.22492945194244385, -0.7614531517028809, 0.10059762746095657, -0.08492197841405869, 1.1404047012329102, 0.40728116035461426, -0.10826338827610016, -1.2006336450576782, -0.7215741872787476, 0.6557312607765198, 0.8660933375358582, 0.11092986911535263, -0.6150161623954773, 0.2200472503900528, -0.4131951630115509, -1.6152973175048828, -0.0955420583486557, -0.03166854754090309, -0.23335187137126923, 0.04048338159918785, -1.029517412185669, -0.2045360505580902, -0.33519577980041504, 0.18422307074069977, 1.247144103050232, 0.3069649934768677, 0.6516494750976562, -0.23541699349880219, -0.4183211028575897, 0.4620426595211029, 0.15681444108486176, 0.0744512602686882, -0.5424284934997559, 1.4075905084609985, 1.951968789100647, 0.44544678926467896, 0.055988967418670654, -0.3753860890865326, 0.40126273036003113, -1.239211916923523, 0.5891422629356384, -0.7471246719360352, -0.7557960748672485, -0.24260155856609344], [-0.27126455307006836, 1.4204055070877075, -2.7603707313537598, -0.36966609954833984, 0.5414079427719116, 0.03351988643407822, 1.692652940750122, 0.03581439331173897, -0.22874332964420319, 0.21712128818035126, -0.05097811669111252, 0.48426613211631775, 0.2174031138420105, 0.5981935858726501, 1.5388914346694946, -0.33359989523887634, 0.15311914682388306, -0.20723754167556763, 0.38429388403892517, 1.4741804599761963, -0.7704984545707703, 0.06913083046674728, -0.46214166283607483, -0.32232949137687683, -0.31556880474090576, 0.9643077254295349, -1.6776752471923828, -0.11883589625358582, -0.5521221160888672, -0.7024518251419067, 0.8199463486671448, -0.8020931482315063, -0.14043119549751282, -0.4513685405254364, -0.7012286186218262, 0.020664209499955177, 0.5495238304138184, 1.2859866619110107, 0.6303220391273499, 0.61555016040802, 2.3267695903778076, -0.9967770576477051, 0.06726692616939545, -1.5051751136779785, 0.11865076422691345, -0.5106910467147827, 0.41813188791275024, -0.29501011967658997, -0.002790156751871109, -0.2710152268409729, -0.41943955421447754, -1.7863657474517822, 0.3849347233772278, 0.8964595794677734, 1.0058112144470215, -0.22077339887619019, 0.4252074956893921, -0.2716616094112396, 0.012712767347693443, -0.1574619710445404, 0.6509988307952881, -0.23954465985298157, -0.47071418166160583, 0.0517975389957428, 0.47928789258003235, -0.24680151045322418, -0.22762365639209747, 0.16439567506313324, 0.40551644563674927, 0.33386534452438354, 0.2353050261735916, 0.3177803158760071, -0.8041877150535583, -0.06542894244194031, -1.483477234840393, 0.4837855398654938, 0.025836003944277763, 1.0758132934570312, -0.3753807842731476, 0.518731415271759, -0.40778258442878723, -0.7078405022621155, 1.32575261592865, -0.5520093441009521, 1.1831327676773071, -0.17704156041145325, -0.016124200075864792, -0.3602007329463959, 0.028276989236474037, 1.8050283193588257, 0.5672008395195007, 0.14143678545951843, 0.690170168876648, 0.43531787395477295, -0.056369658559560776, -0.2907167375087738, 0.08575654029846191, 0.5788667798042297, -0.9100755453109741, -0.9347471594810486, 0.2528732419013977, -0.6491098999977112, 0.34969258308410645, -0.21429158747196198, -0.5712910294532776, 0.9197987914085388, 0.10267935693264008, 0.028287487104535103, -0.24548043310642242, -0.3654136061668396, -0.2926460802555084, 0.2770884037017822, -0.44083172082901, -1.9569393396377563, -0.5688857436180115, 0.44806399941444397, 1.6847662925720215, -0.2536037266254425, -0.24053868651390076, 0.8318824768066406, 0.17300792038440704, -0.148685023188591, -0.09485914558172226, 0.44796890020370483, 0.6454876661300659, 0.4802975654602051, -0.8901417255401611, -0.07849922776222229, 0.28192800283432007, -0.19539833068847656, -0.5095685124397278, -0.35688698291778564, 0.15880484879016876, 0.6920173168182373, -0.5622599124908447, 1.795918583869934, -0.3595709502696991, -0.5178358554840088, -0.7759663462638855, 0.26543664932250977, 1.0183879137039185, 0.047449301928281784, -0.13118068873882294, -1.0461162328720093, -0.5209441184997559, -0.5706169605255127, 0.28753790259361267, -0.8707983493804932, -0.2741161286830902, 0.9894559979438782, -0.3113954961299896, 0.4797959625720978, -0.4353069067001343, 0.6757607460021973, 0.9097854495048523, -0.16856931149959564, 0.08594570308923721, 0.35504773259162903, 0.5997907519340515, 0.15501846373081207, 0.40545979142189026, 0.07538788765668869, -1.1955536603927612, 0.04935455694794655, 0.1710633933544159, -0.8562132120132446, 0.3616960644721985, 0.4709510803222656, 0.054893311113119125, 0.8718758821487427, -0.9126100540161133, -0.043774791061878204, -0.13846492767333984, 0.5903709530830383, -0.1716785430908203, -0.7806456089019775, 0.741488516330719, -0.31563061475753784, -0.797400176525116, -1.0365338325500488, 0.27671998739242554, -0.3424879312515259, 0.6107597947120667, -0.6533646583557129, 0.522609531879425, -0.9380077123641968, 0.6670300960540771, -0.415005087852478, -0.5538733601570129, -0.8956972360610962, -0.6721590757369995, -0.2782895267009735, -0.7442362308502197, 0.6529960036277771, -1.1617000102996826, -0.6777943968772888, 1.129896879196167, -1.0209929943084717, 0.002009933814406395, -0.21571916341781616, 0.7969874143600464, -0.6652524471282959, -0.2325042188167572, 0.3679841458797455, -0.2772694528102875, 1.6032063961029053, -0.9298760294914246, 0.5662550330162048, -0.8417209982872009, 0.1526896208524704, 1.1625198125839233, -0.47767403721809387, -0.3198876678943634, 0.8606266975402832, -0.43780848383903503, -1.2244023084640503, 0.06069481745362282, -0.08731678873300552, -0.12970784306526184, 0.18263213336467743, -0.1607947200536728, 0.20058715343475342, -0.05694277212023735, -0.11482272297143936, 0.46108174324035645, 0.283671110868454, -0.2492290884256363, -0.5042325258255005, -0.6175456047058105, -0.21794407069683075, -0.8297945857048035, -1.245564341545105, 0.8025570511817932, 0.4557262361049652, -1.3435674905776978, 0.45649272203445435, 0.9887036681175232, -0.24914363026618958, 0.4219983220100403, 0.6785964965820312, 0.5693473219871521, -0.09004176408052444, 0.42562252283096313, -0.08504383265972137, -0.5459009408950806, 0.017892936244606972, 0.09988132119178772, -0.7570430636405945, 0.316083163022995, 1.1627633571624756, 0.22069156169891357, -0.21309718489646912, 1.1699740886688232, 0.4255222976207733, 0.296448677778244, -0.6798222064971924, -0.3284243643283844, -0.07033555954694748, -0.21182632446289062, 1.7438055276870728, 0.7364798188209534, -0.7989477515220642, -0.06192167103290558, 0.017506234347820282, -0.4769977033138275, -0.147067129611969, -0.4197397828102112, 0.21065989136695862, -0.4244246780872345, 0.4738345146179199, 0.27708378434181213, 0.8733477592468262, -0.6105039119720459, 0.60333251953125, -0.0213046595454216, -0.45426517724990845, -0.1488744467496872, 0.4225967526435852, -0.0667470321059227, 0.4101427495479584, 0.00047632399946451187, -0.4024968445301056, -0.23264279961585999, 0.05961637943983078, 0.6727092266082764, 0.33681347966194153, 0.3838464319705963, 0.23625428974628448, 0.1363690197467804, -0.2730732262134552, 0.8361780047416687, 0.2660709321498871, 0.776251494884491, 0.6946286559104919, -0.029068723320961, 0.5656328201293945, 0.5289944410324097, -1.1228824853897095, -0.42975476384162903, 0.053147342056035995, 0.06342577189207077, 1.1447882652282715, 0.8521562814712524, 0.9264078736305237, -0.31515052914619446, 0.5470147132873535, -0.10229766368865967, -0.3664518892765045, -0.36560848355293274, -0.8477689027786255, -1.1408733129501343, -0.7154470086097717, -0.3315213918685913, -0.4215153157711029, -0.25712430477142334, 0.3895082175731659, -0.594157338142395, 0.9028972387313843, 0.8647986650466919, -0.08807799220085144, -0.4211714267730713, -0.7242050766944885, -0.3331477642059326, -1.0179535150527954, 0.41516831517219543, 0.4728906750679016, -0.7011956572532654, 0.18446224927902222, 0.27789780497550964, -0.3210132122039795, 0.2582368850708008, -0.27624037861824036, -0.016324343159794807, -0.8382138013839722, -0.4360851049423218, -0.27692073583602905, 1.5297493934631348, 0.13204948604106903, -0.8652481436729431, -0.1361900269985199, 0.3571113348007202, 0.6143853664398193, -0.14409036934375763, -1.0123958587646484, 0.5610866546630859, -0.5496764779090881, -0.5027148723602295, -0.07601764053106308, 0.8123314380645752, -0.35892799496650696, -0.5218298435211182, -0.747914731502533, -0.10581110417842865, -0.28066137433052063, -0.4786018431186676, -0.2420654594898224, 0.5250046253204346, 0.04618235304951668, -1.1720547676086426, -0.12303482741117477, 0.7510298490524292, -0.1376407891511917, -0.4825185537338257, -1.412491798400879, 0.8394222259521484, -0.15418867766857147, 0.8365978002548218, 0.49140486121177673, 0.6421894431114197, -0.02841970883309841, 0.5021249055862427, -0.3320807218551636, -0.13860945403575897, 1.2023006677627563, -0.05204376205801964, -0.5987045168876648, -0.9222835302352905, 0.01664857566356659, -0.6760254502296448, 0.06425673514604568, 0.18812155723571777, 0.6022211313247681, -0.5499002933502197, -0.5586665868759155, 0.627121090888977, -0.031169217079877853, 0.6681514978408813, -0.0926709845662117, -0.12762810289859772, 0.7786080837249756, -0.37584707140922546, -0.789384663105011, -0.3526287078857422, -0.023075861856341362, 0.11759160459041595, -1.5838099718093872, 0.5366274118423462, 0.05897674337029457, 0.930495023727417, 1.01810622215271, -0.6417051553726196, 0.35428622364997864, -0.11621145904064178, 0.5195083618164062, 0.6290633678436279, 0.08116994053125381, 0.24294275045394897, 0.44959187507629395, -0.18076889216899872, -0.4399684965610504, 0.09695112705230713, 1.2172842025756836, -0.4340626299381256, -0.27543404698371887, -0.3529658317565918, 0.7515922784805298, -0.2217165231704712, -0.2796873450279236, 0.08922267705202103, 0.7075269818305969, -0.44361910223960876, 0.5684765577316284, 0.18934597074985504, -0.346213698387146, 0.7762260437011719, 0.745755672454834, 0.5682329535484314, 0.4754563271999359, 0.06980326026678085, -0.39702659845352173, -0.12812180817127228, 0.06568611413240433, 0.1205650269985199, -0.3804091513156891, 0.07207480818033218, 1.1128534078598022, -0.7102223634719849, 0.1939305067062378, 0.33858388662338257, 0.6363641023635864, 0.49423256516456604, -0.6066510677337646, -0.283778578042984, 0.34522345662117004, 0.5210232734680176, 1.6609606742858887, 0.372791588306427, -0.45461589097976685, -1.7823692560195923, 0.1628509908914566, -0.7160527110099792, 0.047135595232248306, 1.3001892566680908, -0.3593718409538269, 1.2785028219223022, -1.307650089263916, 0.22199870645999908, 1.3301037549972534, 0.09425926208496094, 0.421454519033432, 1.1059832572937012, 0.3868049085140228, -0.6367665529251099, 0.3194023668766022, 0.3499726355075836, -0.2884792685508728, 0.15295836329460144, 0.19454464316368103, 0.09075167030096054, 0.8148500919342041, -0.9237508177757263, 0.7352838516235352, -0.8729771971702576, -0.3705766797065735, -0.6901242733001709, -0.26516276597976685, 0.4501054883003235, 0.2049088180065155, 0.36856263875961304, 0.6832677125930786, 0.5913445949554443, -1.2447212934494019, -0.04630863294005394, -0.4110715985298157, 0.16948367655277252, 0.02279573492705822, 0.7890438437461853, -0.16428743302822113, -0.48439592123031616, -0.30340349674224854, 0.18518538773059845, -0.3524016737937927, -0.6463712453842163, -0.4668451249599457, -1.0324530601501465, 0.27191752195358276, 0.3960629999637604, 1.0365239381790161, 0.7134268283843994, -0.5998398065567017, 0.7741789817810059, 0.11827684193849564, -0.9183720350265503, -0.5549936890602112, 0.059286631643772125, 0.2880789637565613, -0.20864379405975342, -1.4763327836990356, -0.11510305851697922, 0.9745237827301025, 0.319377064704895, 0.11508526653051376, 0.8811522126197815, 0.7181288599967957, 1.3590755462646484, -0.6296356320381165, -0.1394677460193634, 0.8564124703407288, -0.3093474507331848, 1.3504942655563354, 0.5070722103118896, -0.19764547049999237, 0.059893347322940826, -1.0650475025177002, -1.444607138633728, 0.6021900177001953, -0.4066622257232666, 0.12482031434774399, 0.4895642101764679, -0.12059850990772247, 0.611042857170105, 0.3063957989215851, -0.9195733070373535, -0.49776455760002136, -0.03146013990044594, -0.43931224942207336, -1.1820396184921265, 0.8209095597267151, -0.09206646680831909, 0.6165758967399597, -0.2977162301540375, -0.13888581097126007, -0.8989350199699402, 0.1265878826379776, 0.022636080160737038, 1.025710105895996, -0.6946129202842712, 0.4561437666416168, 0.2600007951259613, -0.0527879074215889, 0.49763503670692444, -0.24340789020061493, -1.048459768295288, 0.047011468559503555, 0.7070556879043579, 0.2768310308456421, -0.15746629238128662, 0.3016342222690582, 0.005043313838541508, -0.6100537776947021, -0.46570640802383423, 0.08599039167165756, 0.8005018830299377, 0.9001806378364563, 0.8507245182991028, 0.29207995533943176, -0.5411831140518188, -0.3823476731777191, 0.42451804876327515, 0.25075939297676086, 0.38520142436027527, -1.0615031719207764, 0.2607690393924713, 0.14193782210350037, -0.8448696136474609, -0.031806930899620056, -0.28781354427337646, -0.30844324827194214, -0.8342982530593872, -0.4939126670360565, -0.7160553336143494, 0.2367245852947235, 1.0245391130447388, -1.3166544437408447, 0.9821129441261292, -0.4398815929889679, -1.4628899097442627, 0.1582803577184677, 0.2398822009563446, -1.3651268482208252, 0.19186550378799438, -1.3754112720489502, 0.8676021099090576, -0.3930460512638092, -0.3207346796989441, -0.37814193964004517, 0.5945252180099487, -1.8638466596603394, -0.9755585789680481, -0.7708756923675537, 0.669083297252655, 1.3503437042236328, 0.7594147324562073, -1.3883472681045532, 1.434674620628357, 0.3779565393924713, 0.11288836598396301, -0.4413423538208008, 0.12475667893886566, -0.22781182825565338, 0.16037066280841827, 0.9723156690597534, 0.324931800365448, 0.6535016298294067, 1.2790610790252686, 0.1888750195503235, 0.8768635392189026, 0.013594633899629116, 0.59440016746521, -0.9314471483230591, -0.9278112053871155, -0.03318343684077263, 0.861765444278717, -0.9316214323043823, -0.47234994173049927, 0.30574190616607666, -0.4943076968193054, -0.9712410569190979, -0.04848531633615494, 0.37644147872924805, -0.37306854128837585, -0.1225656270980835, -1.0574506521224976, 0.6420949697494507, -0.8374655842781067, 0.6642728447914124, 0.3083961606025696, -0.8904512524604797, -0.6467820405960083, -0.12049861252307892, 0.1253897249698639, -1.3143340349197388, -0.06532050669193268, -0.028626691550016403, 0.027619579806923866, -0.4412342309951782, 0.5408290028572083, 1.5700711011886597, 0.8016554117202759, -0.5969220399856567, 1.542006254196167, 0.752296507358551, -0.15662986040115356, -0.2382466197013855, -0.2806839048862457, 0.5748267769813538, 0.3720749318599701, -0.1915232539176941, -0.2135384976863861, -0.29828837513923645, 1.408165454864502, 0.20670677721500397, -0.503291666507721, 0.11919137090444565, 0.24347037076950073, -0.893700897693634, 0.1967117041349411, 0.10577224940061569, -0.8563464879989624, 0.152522012591362, 1.780380368232727, 0.47618210315704346, -0.5013779997825623, -0.4463942050933838, 0.8119057416915894, 0.31148213148117065, 0.1351083666086197, 0.7727321982383728, 0.8948339819908142, -0.4451146423816681, 0.018981056287884712, 0.05489636957645416, 0.0640038475394249, 0.4362141191959381, -0.08778456598520279, -1.2392066717147827, -0.5215568542480469, -1.0184592008590698, -0.5166429877281189, 0.41215065121650696, -0.49672141671180725, -1.0207977294921875, 0.3354831337928772, 0.1471710056066513, -0.06930645555257797, -0.7972018718719482, 0.2841019332408905, 0.40230634808540344, -0.15274758636951447, 0.6903660297393799, -0.6875993609428406, 1.5580517053604126, -0.5996295809745789, 0.28477177023887634, -0.4840907156467438, 0.012800904922187328, 0.4819152057170868, -0.5452135801315308, -0.6739383935928345, -0.22940510511398315, 0.6878545880317688, -0.5415021777153015, -1.112756371498108, 0.39218559861183167, 0.2683112621307373, 0.059652648866176605, 0.00020960858091711998, -0.6262436509132385, 0.446638822555542, 0.37457898259162903, 0.7193835377693176, -0.5796803832054138, -0.26775121688842773, -0.5167453289031982, 0.25916406512260437, -0.6666073203086853, 0.8143843412399292, -0.4077480137348175, 0.35423582792282104, 0.5686460733413696, -0.8402832746505737, -0.03227962926030159, -0.4791136682033539, 0.2491896003484726, -0.6564251184463501, 0.3171997666358948, 0.29636821150779724, 0.526117205619812, -0.9023603200912476, -0.3669852614402771, -0.2485434114933014, 0.16665934026241302, -0.11067499220371246, 0.6892193555831909, -0.3030543327331543, 0.0553523413836956, 0.05646940693259239, -0.175713449716568, 0.30067694187164307, -0.26075488328933716, -0.24176020920276642, -0.51646488904953, -0.8164414167404175, -0.6566855907440186, -0.21253500878810883, 0.10517794638872147, -0.3643183708190918, 0.9144272208213806, 1.2625113725662231, -0.031270936131477356, 0.6138994693756104, -0.23353853821754456, 0.7937722206115723, -1.462949275970459, -0.2235020101070404, -0.5432735681533813, -0.8597092032432556, -0.6404229402542114], [-0.8019827008247375, 0.9743154644966125, -2.2075021266937256, -0.028578465804457664, 0.9990875124931335, 0.2641306519508362, 1.2024177312850952, -0.6109508872032166, 0.2760581374168396, -0.7076370716094971, -0.8062498569488525, 0.2986902892589569, -0.607317328453064, 0.5413205623626709, 0.9787155985832214, 0.8857557773590088, 0.9225494861602783, -0.589924693107605, 0.13310961425304413, 1.0708954334259033, -1.1182191371917725, -0.15512031316757202, 0.43735963106155396, -0.3449607789516449, -0.6615442037582397, 1.354965090751648, -0.6087889075279236, 0.2653282880783081, -0.9135334491729736, -1.4119267463684082, 0.4622279107570648, -0.22578561305999756, 0.2755205035209656, -0.15753701329231262, -1.7109572887420654, -0.14017263054847717, 1.4489061832427979, 1.087357759475708, 0.5184656977653503, 0.7351152300834656, 2.140727996826172, -0.8457217812538147, -0.05869869515299797, -2.273624897003174, 0.2857450842857361, -0.48869800567626953, 0.8951323628425598, -0.6511756777763367, -0.3082476854324341, -0.17298227548599243, 0.10471627116203308, -1.2533674240112305, 0.43408888578414917, 1.188018560409546, 1.1631414890289307, -0.8445369005203247, 0.4705062806606293, 0.4634610414505005, 0.17432639002799988, -0.37203341722488403, 1.2815951108932495, 0.06885372847318649, -0.7206107974052429, 0.9010832905769348, -0.16258394718170166, -0.8310947418212891, -0.16413195431232452, 0.06318922340869904, -0.17671555280685425, -0.3765411972999573, 0.1006968766450882, 0.6472324132919312, -0.995861291885376, 0.3341163396835327, -0.4921479821205139, 0.32036635279655457, 0.6288520097732544, 0.6717317700386047, 0.7077248692512512, -0.12771886587142944, -0.6396396160125732, -0.010351755656301975, 1.0747041702270508, -1.3487024307250977, 0.2297263741493225, 0.3435591757297516, 0.5082234144210815, -0.6817061305046082, -0.40442293882369995, 1.02720308303833, 0.3729609251022339, -0.008477002382278442, 0.6117235422134399, -0.10573485493659973, -0.11448953300714493, -0.39113450050354004, 0.38525861501693726, -0.9220936894416809, -0.48259401321411133, -1.1922502517700195, -0.37283238768577576, -0.7518835067749023, 1.141127109527588, 0.3258724808692932, -0.7645424604415894, 1.107706904411316, 0.08573387563228607, -0.3299536406993866, -0.24743425846099854, 0.38750869035720825, -0.02945059724152088, 0.10430101305246353, -0.6105360388755798, -1.5841889381408691, -0.9655799269676208, 0.40075284242630005, 1.2735415697097778, -0.2920615077018738, 0.5676789283752441, 0.6685730218887329, 0.1730315238237381, -0.017902661114931107, 0.09442701935768127, 0.8350534439086914, 0.6061978340148926, 0.30517852306365967, -0.9023731350898743, -0.2579834461212158, -0.1741713136434555, -0.1897912323474884, 0.47407999634742737, -0.5563366413116455, -0.29250338673591614, 1.6558055877685547, -1.3504835367202759, 1.0280488729476929, -0.5059735178947449, -0.8510023355484009, 0.17770671844482422, -0.15770359337329865, 1.0996826887130737, -0.25149938464164734, -0.12093982845544815, -1.0344502925872803, -0.31465381383895874, -0.4671645760536194, 0.4592282772064209, -0.45306551456451416, -0.771796703338623, 0.48622503876686096, -0.5317003130912781, 0.9179229140281677, -0.2723086178302765, 0.9246535301208496, 0.9868535399436951, -0.5328015685081482, 0.06285718083381653, 0.5418053269386292, 0.6106125712394714, -0.1029515489935875, 1.0571383237838745, -0.5429098606109619, -0.809411346912384, 0.19452890753746033, 0.9296225905418396, -0.07920002937316895, 0.5929285883903503, 1.1456302404403687, -0.24951446056365967, 1.227138876914978, -0.7163388133049011, -1.0012495517730713, -1.166683554649353, 0.10315848141908646, 0.3457266390323639, 0.010637743398547173, 1.086449384689331, -0.3372516930103302, -1.6693795919418335, -1.5268875360488892, 0.3417929708957672, -0.45155027508735657, 0.605817437171936, -0.6482391357421875, 0.8376612663269043, -0.7687758207321167, 0.19890187680721283, -0.43624749779701233, -0.09567652642726898, -1.3023474216461182, -1.050880789756775, -0.08045191317796707, -1.0419940948486328, 0.4528643488883972, -0.5055195689201355, -0.6218897700309753, 0.34446361660957336, -1.3187063932418823, -0.6512091755867004, -0.2238391935825348, -0.3487032353878021, -0.8353832960128784, -0.2954736053943634, 0.34984290599823, -0.12218590080738068, 1.113106608390808, -0.7421488165855408, 0.9631614089012146, -0.682835578918457, -0.706174373626709, 0.7131264805793762, -0.2681240439414978, -0.7320677042007446, 0.741270124912262, 0.28246939182281494, -1.585548996925354, 0.2417972832918167, 0.18124879896640778, -0.2293952852487564, 0.45424044132232666, 0.33700013160705566, 0.03164143115282059, 0.5235534906387329, 0.0654950812458992, 0.31050965189933777, -0.28586098551750183, -0.5830197930335999, -0.9550859332084656, -0.43471774458885193, -0.22305765748023987, -0.846778154373169, -1.0658328533172607, 0.5080899596214294, 0.5840310454368591, -1.344727635383606, -0.16269727051258087, -0.1397857815027237, 0.4029427468776703, -0.04484591633081436, 1.3040541410446167, 0.2492377907037735, 0.5178385972976685, -0.07754268497228622, -0.14157018065452576, -0.5143257975578308, 0.669270932674408, 0.2720627188682556, -0.05008350685238838, 0.2891063690185547, 0.45160073041915894, 0.7465627789497375, -0.12255477905273438, 0.44770440459251404, 0.18732589483261108, -0.186721533536911, -1.2487149238586426, -1.0635323524475098, -0.3417397439479828, -0.4489329159259796, 1.6690375804901123, 0.860916793346405, -0.9995710849761963, -0.11556706577539444, 0.037443626672029495, -0.3928033113479614, -0.44889014959335327, -0.27726462483406067, 0.5816503167152405, 0.2412804216146469, 0.02156645432114601, -0.14959576725959778, 0.9369211792945862, -1.0700242519378662, 0.8331969380378723, -0.5848195552825928, 0.09751537442207336, 0.06918856501579285, -0.05832681059837341, 0.1453053057193756, 1.0989047288894653, 1.0016039609909058, -1.3414486646652222, -0.4067192077636719, -0.11880069226026535, 1.1129885911941528, 0.18423190712928772, 0.26665419340133667, 0.1446211040019989, 0.9592989683151245, -1.104137659072876, 1.0190855264663696, 0.04270823672413826, 0.2660721242427826, 0.712179958820343, -0.006513659842312336, 0.5078089237213135, 1.1527047157287598, -0.7675036191940308, -0.8777860999107361, 0.34201180934906006, 0.33318328857421875, 1.9298638105392456, 1.1105015277862549, 0.8437707424163818, 0.21459552645683289, 0.16583463549613953, -0.7483751177787781, -0.7446078062057495, -0.9321795701980591, -0.6204695105552673, -1.1717183589935303, -0.5338450074195862, -0.27021366357803345, 0.03193146362900734, 0.4895222783088684, 0.7775918841362, -0.40604057908058167, 0.37521177530288696, 0.977807879447937, -0.27695825695991516, -0.30080702900886536, 0.28295254707336426, 0.29732656478881836, -0.8036602139472961, 0.5392928123474121, 1.7714929580688477, -0.9319128394126892, 0.252203106880188, -0.03541933000087738, 0.146175354719162, 0.4424915909767151, -0.47982728481292725, 0.957507848739624, -1.4140743017196655, -1.0181868076324463, 0.05959934741258621, 1.3358420133590698, -0.016421958804130554, -0.1320848912000656, -0.24678966403007507, 0.17020376026630402, 0.7112590670585632, 0.16359718143939972, -0.580790638923645, 0.9973020553588867, -0.16449280083179474, -0.9244052767753601, 0.3772658109664917, 0.26318368315696716, -0.026120830327272415, -0.30464494228363037, -1.0998413562774658, -0.15453875064849854, -0.21423405408859253, -0.49818235635757446, -0.3071652948856354, 0.6947267055511475, 0.6907126307487488, -0.4683656096458435, 0.013350787572562695, 0.6072819828987122, 0.17729708552360535, 0.4344325661659241, -1.1164638996124268, 0.7153119444847107, 0.8314102292060852, 1.572134256362915, 0.1862807273864746, 0.4672446548938751, 0.015209341421723366, 0.5532901883125305, -0.40796199440956116, -0.01962488703429699, 1.2236324548721313, 0.18245172500610352, 0.18636544048786163, -0.22296938300132751, -0.14394612610340118, 0.04838304966688156, -0.09594597667455673, -0.3711492419242859, 0.3862607479095459, -0.9196776747703552, -0.36270323395729065, 1.287343978881836, 0.5529049634933472, 0.4319341778755188, 0.07585279643535614, -0.2955819368362427, 0.7391226887702942, -0.6140038371086121, -0.6392098069190979, -0.42662283778190613, 0.12533046305179596, 0.2363526076078415, -1.2164148092269897, -0.47898632287979126, 0.26666754484176636, 1.3130385875701904, 1.1980416774749756, -0.47268426418304443, 0.06842553615570068, -0.5998653173446655, 0.24439691007137299, 0.5460701584815979, -0.32235875725746155, -0.01688789762556553, 0.8131734132766724, -0.2554316818714142, 0.05203985795378685, 0.04423893615603447, 1.1492754220962524, -0.2285158485174179, 0.41473388671875, 0.6917587518692017, 0.014836065471172333, -0.8312917351722717, -0.2471173107624054, -0.5670231580734253, 0.5790186524391174, -0.8046207427978516, 0.05533215031027794, 0.07681267708539963, -0.4531422257423401, 1.4293383359909058, 0.010042737238109112, 0.49345871806144714, 0.2375609427690506, -0.2911008596420288, -0.5111119747161865, 0.13041049242019653, 0.30379989743232727, -0.2132926732301712, -1.5306756496429443, -0.16714243590831757, 0.5379838943481445, -0.3282974660396576, 0.09475039690732956, -0.04856628552079201, 0.939685046672821, 0.07461889833211899, 0.033330753445625305, 0.2372380942106247, 0.4738108217716217, 0.6836277842521667, 1.3302345275878906, 0.5515140891075134, -0.5154459476470947, -0.7592255473136902, 0.7405930161476135, -0.6478022933006287, 0.3543834388256073, 0.2255915105342865, -0.13945965468883514, 1.7554720640182495, -1.503860354423523, 0.16301323473453522, 0.6215848326683044, 0.4427048861980438, 0.23921950161457062, 0.7027128338813782, -0.18228483200073242, -0.37078458070755005, -0.10763324052095413, 0.0744081512093544, 0.25413239002227783, 0.35957950353622437, 0.564611554145813, -0.25346025824546814, 0.23894020915031433, -1.3168877363204956, 0.25324225425720215, -0.5151736736297607, -0.7594373226165771, -0.6754105091094971, -0.7104495167732239, -0.004042758606374264, 0.22793026268482208, 0.48786476254463196, 1.2161586284637451, 0.31127285957336426, -0.6211538910865784, 0.34554529190063477, -0.39162322878837585, 0.6643675565719604, -0.6823351383209229, -0.3856814205646515, -0.22999362647533417, 0.0656554326415062, -0.03495023027062416, -0.054739370942115784, -0.5767207741737366, -0.6439195275306702, -0.636308491230011, -2.03709077835083, 0.9733012914657593, 0.9099656939506531, 0.667296826839447, 0.4903648793697357, -0.20340596139431, 0.7456239461898804, -0.26921963691711426, -0.8514253497123718, -0.5270469784736633, -0.5134000182151794, -0.20127859711647034, 0.31009748578071594, -1.4064053297042847, -0.12923043966293335, 0.2808014452457428, 0.39545097947120667, -0.10530965775251389, 0.8119879364967346, 1.0715564489364624, 1.1009563207626343, -0.3306947946548462, -0.14292556047439575, -0.146733358502388, -0.531035304069519, 0.4670233428478241, 0.3521570861339569, -0.6420719027519226, 0.2769503891468048, -0.454988032579422, -1.145504117012024, 1.0780457258224487, -0.4442288279533386, -0.5461680293083191, 1.1015301942825317, 0.6556354761123657, 0.5622009634971619, 0.7923576831817627, -1.0209966897964478, 0.1841762512922287, 0.12050668150186539, -0.9253551363945007, -1.1530277729034424, 1.2750059366226196, 0.0769883394241333, 0.5165188312530518, 0.06148192659020424, -0.01687551662325859, -0.19482053816318512, 0.31044700741767883, 0.08230364322662354, 0.6906914710998535, 0.028340518474578857, 0.6372569799423218, 0.2077210545539856, 0.43509194254875183, 0.5202748775482178, -0.5891191363334656, -0.44048041105270386, 0.15794363617897034, 1.3497345447540283, -0.0512659065425396, 0.33935773372650146, 0.2258719801902771, -0.4463346302509308, -0.17901571094989777, -0.9334701299667358, -0.021039459854364395, 0.42223772406578064, 0.6355031728744507, 0.6111672520637512, -0.6716721057891846, -1.1000337600708008, 0.09675414860248566, -0.6132067441940308, 0.6068689823150635, 0.6745946407318115, -1.1582971811294556, -0.017490610480308533, 0.5184943079948425, -0.7748467326164246, -0.2858332395553589, -0.6686301231384277, -0.3282543122768402, -1.0640114545822144, -0.7015103697776794, -0.9376943707466125, -0.1845022588968277, 0.5190024971961975, -1.0593430995941162, 1.0351216793060303, 0.4654653072357178, -1.617812156677246, 1.0016365051269531, -0.047026608139276505, -1.4802781343460083, 0.3195923864841461, -1.8990559577941895, 1.1424305438995361, 0.10390472412109375, 0.2388329803943634, 0.1468946635723114, 0.41918089985847473, -1.6168744564056396, -0.9508799910545349, -0.9692357778549194, 0.3448270559310913, 0.4860619902610779, 0.7193048596382141, -0.4272352457046509, 1.5116688013076782, 0.5560277104377747, -0.7502591609954834, -0.4045327305793762, -0.20252752304077148, -0.7632628679275513, 0.28436723351478577, 0.3157872259616852, 1.1176427602767944, 0.6222032904624939, 1.4692118167877197, 0.8651991486549377, 0.8409126400947571, 0.42453452944755554, 0.7339817881584167, -0.9463143348693848, -0.6495490670204163, -0.5047256350517273, 1.2564301490783691, -0.4111640453338623, -0.895751953125, 0.25170615315437317, -0.6608355641365051, -1.8008602857589722, 0.31392350792884827, 0.9546137452125549, -0.2053345888853073, 0.6829691529273987, -0.4815428853034973, 0.24824611842632294, -1.1611735820770264, 0.33518314361572266, 0.5811808705329895, -0.8082814812660217, -0.14067742228507996, 0.11932896077632904, -0.03226717934012413, -0.9767940044403076, 0.2387133240699768, 0.3268294334411621, -0.3132307231426239, -0.32348495721817017, 0.3407749831676483, 0.4086265563964844, 0.4506916105747223, 0.07949689030647278, 1.330276608467102, 0.6343831419944763, -0.7034854888916016, 0.5318670868873596, 0.2475198656320572, -0.205611452460289, 0.14801035821437836, -0.24300312995910645, -0.8696665167808533, -0.45165497064590454, 1.488570213317871, -0.10507810860872269, -0.32803410291671753, -0.14471600949764252, -0.2050849348306656, -0.3161359131336212, 0.34089890122413635, 0.41980981826782227, -0.9204694628715515, -0.544815719127655, 0.8297111392021179, 0.04657980427145958, -0.34615498781204224, -0.16347333788871765, 0.2004002183675766, 0.29141199588775635, -0.27174073457717896, 0.22816787660121918, 0.0332970954477787, -0.4055551290512085, 0.47067248821258545, 0.3551028370857239, 0.21417930722236633, 0.3179836869239807, -0.27788928151130676, -0.9454463720321655, 0.048752300441265106, -0.30562064051628113, -0.8669061064720154, 1.2886582612991333, -1.2745252847671509, -0.5359254479408264, 0.056770455092191696, 0.19769635796546936, -0.08188741654157639, -0.6904200911521912, -0.01967700943350792, 0.2231205254793167, 0.212629035115242, 1.05434250831604, -0.32150301337242126, 1.2965062856674194, 0.0915256142616272, 0.3595641851425171, -0.8363024592399597, -0.6194124817848206, -0.20769251883029938, -0.5257285833358765, 0.24816814064979553, -0.13311371207237244, 1.1385260820388794, -0.44570985436439514, -1.0867449045181274, 0.2737440764904022, 0.032067444175481796, 0.22966979444026947, 0.015483030118048191, -0.4107957184314728, 1.0697647333145142, 0.5857301354408264, 0.7466635704040527, -0.2622047960758209, -0.9297716021537781, -0.6114742755889893, 0.6694255471229553, -0.24610033631324768, 0.5522996783256531, 0.44477683305740356, 1.0034269094467163, 0.11686000227928162, -0.670767605304718, -0.9050326943397522, -0.7811062932014465, 0.17287372052669525, -0.23404568433761597, 0.17989806830883026, -0.20566734671592712, 0.4463947117328644, -0.4769253432750702, -1.0495810508728027, -0.004278769250959158, -0.044803086668252945, -0.1974366009235382, 0.5103561282157898, -1.2707370519638062, -0.38392141461372375, -0.290556937456131, -0.14754395186901093, 0.48812681436538696, 0.14568760991096497, -0.09268724173307419, 0.0648367777466774, -1.1418228149414062, 0.10900641977787018, -0.15877699851989746, -0.6400717496871948, -0.34160465002059937, 1.1621359586715698, 1.494280219078064, 0.11294209212064743, 0.2873084843158722, -0.4453684985637665, 0.02384364604949951, -0.5670598745346069, -0.24357599020004272, -0.3472077250480652, -0.28211846947669983, -0.731734037399292], [0.08484591543674469, 1.2842211723327637, -2.494459629058838, -0.2691342234611511, 0.9593008160591125, 1.2141339778900146, 0.7783145904541016, -0.5220248699188232, 0.021248307079076767, 0.07612653076648712, 0.11341968923807144, 0.02889540046453476, -0.18276584148406982, 0.5891174077987671, 0.950560986995697, 0.2973381280899048, 0.17736689746379852, -0.44735851883888245, 0.2789739966392517, 1.0250556468963623, -0.9275785684585571, -0.3783005475997925, -0.13244923949241638, -0.4177771806716919, 0.25006142258644104, 1.2028560638427734, -1.2439424991607666, -1.1726075410842896, -0.7825995683670044, -1.3455228805541992, 0.30218958854675293, -0.33016088604927063, -0.33578526973724365, -0.10138016939163208, -0.5414050817489624, 0.4768359065055847, 1.8972136974334717, 1.439081072807312, 1.006560206413269, 0.26607760787010193, 1.237649917602539, 0.018603308126330376, -0.13622966408729553, -1.2509666681289673, 0.21513113379478455, -0.3609869182109833, 0.48635441064834595, -0.7471303939819336, 0.12280309945344925, -0.30147650837898254, -0.7897576689720154, -1.4674725532531738, 0.14912067353725433, 0.8945763111114502, 1.1572859287261963, -0.5345830321311951, 0.16209076344966888, -0.30763956904411316, -0.29156693816185, -0.3836714029312134, 1.0281952619552612, -0.4035995602607727, -0.7464798092842102, 0.2952176630496979, 0.6352226734161377, 0.15556536614894867, 0.08958017826080322, 0.31905749440193176, -0.37885764241218567, 0.36830785870552063, 0.3299153745174408, -0.6709699630737305, -1.431721806526184, 0.7465857267379761, -0.8715623021125793, 0.5227574706077576, 0.3802630305290222, 0.948173463344574, 0.5879651308059692, 0.12010469287633896, -0.5345442891120911, -0.43689894676208496, 1.0310521125793457, -0.7578297853469849, -0.05990251898765564, -0.4426286518573761, 0.4421524107456207, -0.7587203979492188, -0.3422497510910034, 1.2903246879577637, 0.30167293548583984, 0.10481584072113037, 0.8616603016853333, 0.5148077607154846, -0.6045802235603333, -0.6153099536895752, 0.4887995719909668, -0.8593137860298157, -1.0721335411071777, -0.5278564095497131, 0.07008287310600281, -0.41787052154541016, 0.1614082157611847, 0.4405909776687622, 0.022701648995280266, 1.0441850423812866, 0.043701887130737305, 0.5362867712974548, -0.5965408682823181, -0.22052563726902008, -0.3956857919692993, -0.23935361206531525, 0.07067867368459702, -1.3077858686447144, -0.9550707340240479, 0.9531475305557251, 1.6880757808685303, -0.8053274154663086, 0.037095099687576294, 0.7856905460357666, 0.5234237313270569, -0.07968904823064804, -0.010853677988052368, 0.45691347122192383, 0.4161968231201172, 0.3029623329639435, -0.6710888147354126, -0.522325873374939, -0.3742397427558899, -0.2600652873516083, 0.47846654057502747, -0.36039066314697266, -0.3143256902694702, 0.8163131475448608, -0.889198362827301, 1.5522509813308716, -0.33268290758132935, -0.4798716604709625, -0.026347361505031586, -0.6993075013160706, 1.2472944259643555, 0.2083931714296341, -0.19966824352741241, -0.14993588626384735, 0.05247659608721733, -0.7543225288391113, 0.1615164875984192, -0.5139707326889038, -0.5009496212005615, 0.7166621685028076, -0.5781282782554626, 0.07365654408931732, -0.008614779449999332, -0.07920940965414047, 0.1406545788049698, -0.250074177980423, -0.205937460064888, 0.5536534786224365, 0.5546920895576477, 0.2572650611400604, 0.03255658224225044, 0.23352159559726715, -0.5762606263160706, 0.22087323665618896, 0.7335876226425171, 0.13124002516269684, 0.31530964374542236, 0.8650510907173157, 0.1321762204170227, 1.0427041053771973, -0.12891429662704468, -0.5666846036911011, -0.37188848853111267, 0.10302519053220749, 0.669076681137085, -1.4537129402160645, 0.37253960967063904, -0.061436258256435394, -1.7218440771102905, -1.085540771484375, -0.16367974877357483, -0.22219006717205048, 1.329970121383667, -0.4699634909629822, 0.387205570936203, -0.17010022699832916, 0.44901418685913086, -0.15654730796813965, -1.0566009283065796, -0.3704603612422943, 0.05431296303868294, -0.11836744844913483, -0.6715295910835266, 0.31395354866981506, -0.031010881066322327, -0.9897634983062744, 0.37346139550209045, -0.7773704528808594, -0.24147875607013702, -0.06883547455072403, -0.018254615366458893, -0.7155044078826904, -0.243900865316391, 0.18326707184314728, -0.10441986471414566, 0.7463312149047852, -1.0671236515045166, 1.2351502180099487, -0.6519340872764587, -0.6637689471244812, 0.8254866600036621, -0.40859875082969666, -0.5457264184951782, 0.8019570112228394, 0.32679957151412964, -1.5803440809249878, -0.06008388474583626, -0.22509433329105377, -0.164274200797081, 0.08724185824394226, -0.11131518334150314, -0.15670894086360931, -0.2886231243610382, -0.1577857881784439, 0.4002092778682709, -0.24654419720172882, -0.8691716194152832, -0.8106399774551392, -0.7940598130226135, -0.010969837196171284, -0.9972960948944092, -0.9095321297645569, 0.8797190189361572, -0.033016543835401535, -1.5135321617126465, 0.0628143697977066, 0.467866450548172, 0.5456992387771606, 0.6546130180358887, 1.60109281539917, -0.10298088192939758, 0.9211203455924988, -0.26928961277008057, -0.018937990069389343, -0.5994541049003601, 0.7200838327407837, 0.16406115889549255, -0.7953217625617981, 0.0410524383187294, 0.856556236743927, 0.7015681266784668, 0.1438131481409073, 0.5621694922447205, -0.16529616713523865, -0.08235413581132889, -0.7200087904930115, -1.0964714288711548, 0.06679932028055191, 0.649075448513031, 0.7247114181518555, 0.4289212226867676, -1.5534279346466064, -0.44845038652420044, 0.5655837059020996, -0.06889133155345917, 0.4022162854671478, -0.24805235862731934, 0.20642368495464325, 0.13530884683132172, 0.04154564067721367, 0.41486674547195435, 1.2693727016448975, -0.6874966621398926, 0.981046736240387, -0.8628870844841003, -0.47333410382270813, -0.49482136964797974, 0.8702101707458496, 0.01311141811311245, 0.4330698847770691, 0.4923170208930969, -0.8941515684127808, -0.20699895918369293, 0.5302190780639648, 0.6109899282455444, 0.009226332418620586, 0.7580736875534058, -0.23355048894882202, 0.9228174090385437, -0.7304187417030334, 0.9938952922821045, -0.3617190718650818, 0.02564634196460247, -0.17825642228126526, 0.3803556263446808, 0.7006912231445312, 1.513051152229309, -1.103951096534729, -0.4440615177154541, -0.39486491680145264, -0.16520267724990845, 1.237261176109314, 1.1847862005233765, 0.7878984212875366, -0.6555969715118408, 0.3608376979827881, -0.6661738753318787, -0.19457487761974335, -0.8436225056648254, -1.3875374794006348, -0.47864094376564026, -0.5062037110328674, -0.42451128363609314, 0.0011947827879339457, -0.1507614701986313, 0.21797019243240356, -0.3386210501194, 0.26633864641189575, 1.5834771394729614, -0.6266242265701294, -0.9112092852592468, -0.5452261567115784, -0.2791019678115845, -0.5521489977836609, 0.3930237293243408, 0.9919561743736267, -0.7924339175224304, 0.17746689915657043, -0.032334621995687485, -0.5201061367988586, 0.5455291271209717, 0.02580714412033558, 0.6439666748046875, -0.7115560173988342, -0.700295090675354, -0.20819193124771118, 1.1750164031982422, 0.14489276707172394, -0.27957892417907715, -0.2427854984998703, 0.39593204855918884, 0.14242613315582275, 0.06957735866308212, -0.7798209190368652, 1.0827209949493408, -0.05642165616154671, -0.8426474928855896, -0.263663649559021, 0.3842943012714386, 0.2230464071035385, 0.19883054494857788, -0.6790328025817871, -0.420188844203949, -0.5028152465820312, -0.45776277780532837, 0.16610831022262573, 0.22611364722251892, 1.1032618284225464, -0.39656317234039307, 0.05170450732111931, 0.5935680866241455, 0.07592660933732986, -0.007148976903408766, -0.6739994883537292, 0.39213594794273376, 0.4821990132331848, 1.1846998929977417, 0.340563029050827, 0.025738302618265152, 0.2629505395889282, 0.6476413607597351, 0.12189171463251114, 0.44596657156944275, 0.9195007681846619, -0.9282143712043762, 0.07256536185741425, -0.4303100109100342, 0.034165158867836, -0.805759072303772, -0.6814628839492798, -0.056913506239652634, 0.2700594365596771, -0.814401388168335, -0.35453715920448303, 0.7056794762611389, 0.4747234582901001, -0.497875452041626, -0.2903204560279846, -0.07505383342504501, 0.8176716566085815, -0.7393743991851807, -0.17013342678546906, -0.2977040708065033, 0.4476276934146881, 0.5161526203155518, -1.162629246711731, -0.1501840502023697, 0.27489733695983887, 0.5623542666435242, 1.2152187824249268, -1.115877628326416, 0.48488470911979675, -0.5980656743049622, 0.3901216983795166, 0.2331290990114212, -0.1362052708864212, 0.5018176436424255, 0.15961509943008423, 0.3189760744571686, 0.018314247950911522, 0.05712315812706947, 1.4311901330947876, 0.11690220981836319, 0.14035287499427795, -0.10669397562742233, 0.8914021253585815, -0.5219104886054993, -0.786168098449707, -0.37730324268341064, 0.39227989315986633, -0.632092297077179, -0.4606952965259552, 0.32780921459198, -0.07452789694070816, 1.1879183053970337, 0.784673273563385, 0.29396697878837585, 0.24579742550849915, -0.05354286730289459, -0.5389156341552734, 0.04935133084654808, 0.30007004737854004, -0.010990816168487072, -0.16603276133537292, -0.0659225583076477, 0.6433892846107483, -0.2522028386592865, 0.6890368461608887, 0.40833500027656555, 1.034483790397644, 0.23887406289577484, -0.06665133684873581, -0.2740463614463806, 0.6866297721862793, 0.9711664915084839, 1.5602811574935913, 0.28037697076797485, 0.12166925519704819, -1.1871223449707031, 0.3459859788417816, -0.3354529142379761, -0.27984315156936646, 0.42641547322273254, 0.0007972493767738342, 1.5519205331802368, -1.4436099529266357, -0.06609170138835907, 0.19420666992664337, 0.426372766494751, -0.007847925648093224, 0.8500118851661682, -0.5812446475028992, -0.009761905297636986, 0.24376994371414185, -0.2583059072494507, 0.11976943910121918, -0.1695394217967987, 0.4953271150588989, -0.006542072165757418, 0.899644672870636, -0.5956284403800964, 0.5989153981208801, -0.7064102292060852, -0.7776830196380615, -0.3503226339817047, -0.8314910531044006, -0.2551209330558777, 0.13207587599754333, 0.6712126135826111, 1.7050362825393677, 0.15192465484142303, -0.5661252737045288, -0.046907585114240646, -0.4371681809425354, 0.3734215497970581, -0.2933844029903412, -0.3698378801345825, -0.5460379719734192, -0.1483805924654007, -0.16807305812835693, 0.3549923896789551, -0.17826628684997559, -0.038002029061317444, -0.7022074460983276, -1.3568195104599, 0.0945175513625145, 0.541555643081665, 0.3482082784175873, 0.8169766068458557, -0.009113557636737823, 0.1104743555188179, 0.27979639172554016, -0.4709312319755554, 0.11178740113973618, 0.037421099841594696, 0.3980160355567932, 0.23010459542274475, -1.4839030504226685, -0.5529663562774658, 0.2730030417442322, -0.1448298990726471, -0.02675006352365017, 0.7810764908790588, 1.17344331741333, 0.5211297273635864, -0.43377721309661865, 0.05139917507767677, 0.157226100564003, -0.21263860166072845, 0.9126852750778198, 0.7221047282218933, -0.1824726015329361, -0.4442261755466461, -1.2360830307006836, -1.4802486896514893, 0.9627384543418884, -0.0503135584294796, -0.7547140121459961, 1.5778591632843018, 0.3826814293861389, 0.7041429281234741, 0.059035610407590866, -0.5454168319702148, 0.09911453723907471, -0.16825202107429504, -0.3171272873878479, -1.2789864540100098, 0.7871647477149963, 0.6732358336448669, 0.6803474426269531, 0.3232208788394928, -0.04241809993982315, -0.1417820155620575, 0.18872897326946259, 0.22673490643501282, 1.4284907579421997, -0.6459603309631348, 0.17955735325813293, 0.2099779099225998, -0.19693250954151154, 0.7140327095985413, -0.13310199975967407, -0.5079852938652039, 0.20753540098667145, 0.7829439043998718, 0.19649384915828705, -0.09520062059164047, 0.020465858280658722, -0.07354031503200531, -0.5629777908325195, -0.5730356574058533, -0.008313235826790333, 0.9729868769645691, 0.4762756824493408, 0.26434651017189026, 0.07747100293636322, -0.21043069660663605, -0.05286724865436554, -0.7495898604393005, 0.7623738646507263, 0.48087000846862793, -0.3983779847621918, 0.04682216793298721, 0.28018367290496826, -1.2079927921295166, -0.956291139125824, -0.4400613307952881, 0.3382505178451538, -0.8432482481002808, -1.6533350944519043, -0.7899289727210999, -0.18905717134475708, 0.4076089859008789, -0.8869134783744812, 0.5575443506240845, -0.3039718270301819, -1.2662150859832764, 0.17525705695152283, 0.3412703275680542, -0.7745327353477478, 0.25894466042518616, -0.7881542444229126, -0.07343726605176926, -0.582925021648407, 0.4494935870170593, -1.154579758644104, 0.7011473774909973, -1.5639370679855347, -1.209478497505188, -1.3315622806549072, 0.3009575605392456, 0.9644855260848999, 0.24853752553462982, -0.603799045085907, 1.5124434232711792, 0.4970555305480957, -0.3313324749469757, -0.5359607934951782, -0.07630682736635208, -0.028725825250148773, -0.049069248139858246, 0.5036378502845764, 0.5058780908584595, 0.7643629908561707, 0.9561337232589722, 0.02290951833128929, 1.0171328783035278, 0.6137397885322571, 0.4236975312232971, -0.40602901577949524, -0.5689487457275391, -0.22009781002998352, 1.0317974090576172, -0.3788023591041565, -0.22809530794620514, -0.005665362812578678, 0.20288333296775818, -0.8250561952590942, -0.39988139271736145, 0.3749147057533264, -0.9875345826148987, 0.5371367931365967, -0.21998843550682068, 0.23491516709327698, -0.4753800928592682, 0.29041752219200134, 0.19153590500354767, -0.5797234773635864, -0.08984237164258957, 0.4234268367290497, -0.22405946254730225, -1.3050442934036255, 0.2641696035861969, -0.068532295525074, -0.4825526773929596, -0.5252108573913574, 0.69163578748703, 1.0657672882080078, 0.6850220561027527, -0.31418755650520325, 1.4720808267593384, 0.2971321940422058, -0.10289453715085983, 0.48548629879951477, 0.06141261011362076, -0.5435647964477539, 0.8803815245628357, -0.23146329820156097, 0.27490660548210144, -0.5240135788917542, 1.1990222930908203, 0.04451162740588188, -0.3140391409397125, 0.23535549640655518, -0.4521178901195526, -0.586578369140625, 0.40201640129089355, 0.8359195590019226, -0.49010318517684937, 0.1099119484424591, 1.2552212476730347, 0.4591604173183441, -0.5713229179382324, -0.01857384853065014, 0.3559000790119171, 0.24861939251422882, -0.5482276082038879, 0.05959112569689751, 0.11492806673049927, -0.14746426045894623, 0.25786370038986206, 0.030681656673550606, 0.4766919016838074, 0.03862164914608002, -0.6765028238296509, -0.5003224015235901, 0.4769383370876312, -0.23033829033374786, -0.16030949354171753, 0.9297885894775391, -1.4735727310180664, -1.5149717330932617, -0.059455808252096176, -0.17277157306671143, -0.9472618103027344, 0.03652218356728554, 0.2705731987953186, 0.2766996920108795, -0.056037258356809616, 0.1315620094537735, -0.2042907029390335, 0.6589800119400024, -0.4798089563846588, 0.0008546656463295221, -0.8244852423667908, -0.04400472342967987, 0.4252419173717499, -0.12755712866783142, 0.11985479295253754, -0.05924917757511139, 0.9121265411376953, -0.6326045393943787, -1.0219203233718872, 0.12600135803222656, 0.48942136764526367, 0.2101403772830963, -0.10820960253477097, -0.33569401502609253, 0.47620218992233276, 0.2910959720611572, 1.1463223695755005, 0.08540832251310349, -0.78431636095047, -0.27181369066238403, 0.0510016530752182, -0.745074450969696, 0.39212432503700256, 0.1665053516626358, 0.969519853591919, 0.037735551595687866, -0.7022641897201538, -0.14481109380722046, -0.8308229446411133, 0.14256593585014343, 0.027490921318531036, 0.7139250636100769, 0.31132349371910095, 0.252475380897522, -0.5751078724861145, -0.8133230805397034, 0.5854179263114929, -0.11841470003128052, -0.09868607670068741, 0.6767048835754395, -1.1706165075302124, -0.29765743017196655, -0.6304798722267151, 0.5181435942649841, 0.1957024186849594, 0.11538869142532349, 0.33610260486602783, 0.38973450660705566, -1.2774853706359863, 0.15412206947803497, -0.1340494602918625, 0.34593451023101807, 0.29403698444366455, 0.9381818771362305, 1.4173431396484375, -0.3338657021522522, -0.14365838468074799, -1.0862294435501099, 0.5403627753257751, -1.0351552963256836, -0.7743296027183533, -0.2702978253364563, -0.5534835457801819, -0.5149996876716614], [-0.045734189450740814, 1.973210096359253, -2.3380050659179688, -0.06851980090141296, 1.685662031173706, -0.041059378534555435, 1.5846529006958008, -0.5424102544784546, 0.036545008420944214, -0.11784650385379791, -0.326547771692276, 0.2893584370613098, 0.8392630219459534, 0.5915980935096741, 0.16547255218029022, 0.3006511926651001, 0.8729923963546753, -1.226478934288025, 0.9843547344207764, 0.7456123232841492, -0.7301616072654724, -0.6060819625854492, 0.4407830834388733, 0.5941635966300964, -0.23886878788471222, -0.12158456444740295, -1.2482609748840332, -0.6641556024551392, -0.21449148654937744, -0.8953236937522888, 0.2564738690853119, -0.42820754647254944, 0.4211195409297943, 0.5750574469566345, -0.8722456097602844, -0.4749641716480255, 1.9054549932479858, 1.1758806705474854, -0.1162257269024849, 1.0901304483413696, 2.403409242630005, -0.5381776690483093, 0.18795941770076752, -1.514124870300293, 0.24797776341438293, -0.03260432183742523, 0.3240300416946411, -1.2681554555892944, 0.7778633236885071, -0.5276839733123779, 0.7789208292961121, -0.5657642483711243, 0.6909233331680298, 1.1614915132522583, 0.9492584466934204, 0.051768168807029724, 0.8594602346420288, 0.2567775845527649, 0.7446116209030151, -0.6257930397987366, 1.3984105587005615, -0.4763830602169037, -0.17802228033542633, 0.9214345216751099, -0.13330838084220886, -0.8805791735649109, 0.3383125960826874, 0.5500484108924866, -0.3383011519908905, 0.22297993302345276, 0.04555300995707512, 0.13251027464866638, -0.45758768916130066, 0.45040157437324524, -1.4395853281021118, 0.8904860615730286, 0.5265088081359863, 0.9305819869041443, 0.3634336590766907, 0.7156206965446472, -0.24419444799423218, -0.4839467406272888, 0.5914358496665955, -0.21502400934696198, 0.13599471747875214, 0.24532152712345123, 0.029018787667155266, -0.5601958632469177, -0.46035972237586975, 1.4975372552871704, 0.4588198661804199, -0.24354052543640137, 0.9131794571876526, -0.33358389139175415, 0.09038896858692169, 0.2230233997106552, 0.7642555236816406, -0.2322937250137329, -0.4131145477294922, -0.5828074216842651, -0.47789764404296875, -0.8108035922050476, 0.4408144950866699, -0.050387028604745865, -0.13594117760658264, 1.2531908750534058, 0.027261609211564064, 0.08377441763877869, -0.6098490357398987, 0.04115414246916771, 0.12414366006851196, 0.20483438670635223, -1.1331448554992676, -1.3431388139724731, -0.9655616879463196, 1.0638854503631592, 0.970472514629364, 0.17221233248710632, 0.29957833886146545, 0.5954526662826538, -0.46097517013549805, 0.0991169884800911, -0.15751607716083527, 0.9204590320587158, 0.5110408663749695, 1.0518465042114258, -0.8309271335601807, -0.5158624053001404, -0.5479875802993774, -0.34976866841316223, 0.41454920172691345, -0.504006564617157, -0.6505630016326904, 0.8341273665428162, -1.0822784900665283, 1.3611167669296265, -0.504782497882843, -0.22363314032554626, 0.44990748167037964, -0.7958789467811584, 0.47804269194602966, 0.004664265550673008, -0.29478153586387634, -0.3661898672580719, 0.17262104153633118, -0.5536617040634155, 0.23514039814472198, -0.2787959575653076, -0.40969255566596985, 0.24137364327907562, -1.2017130851745605, 0.590587317943573, 0.10646216571331024, 0.3028254210948944, 0.36427271366119385, 0.05128950625658035, 0.23287717998027802, 0.41738706827163696, 0.22964955866336823, 0.524294912815094, 1.0168019533157349, -0.3686748743057251, -0.6471880078315735, 0.585322916507721, 0.23333989083766937, -0.13741756975650787, 0.6377033591270447, 0.9084038734436035, 0.37233424186706543, 0.2888079881668091, -0.5539584755897522, -0.27333515882492065, -0.4937104880809784, 0.06276734918355942, 0.7847281098365784, -0.5581972002983093, 1.345738172531128, -0.7792993783950806, -1.4021658897399902, -1.5087707042694092, 0.27515918016433716, -0.6463898420333862, 0.5042845010757446, 0.0766114667057991, 0.45948275923728943, -0.6939687728881836, 0.16863521933555603, -0.7075966596603394, -0.5852858424186707, -0.8608314394950867, -0.39710909128189087, -0.6570900678634644, -0.4695205092430115, 0.2925868034362793, -0.5756613612174988, -0.6292785406112671, 0.7087513208389282, -1.5343059301376343, -1.0506255626678467, 0.05338482931256294, -0.4877200126647949, -0.6184313893318176, -1.0662884712219238, 0.4278026223182678, -0.5157854557037354, 1.6063166856765747, -1.2676533460617065, 0.8570241928100586, -0.8664314150810242, 0.3128094971179962, 0.4111945629119873, -0.6660261750221252, -0.576166033744812, 1.2107118368148804, -0.21288301050662994, -1.2003629207611084, 0.6465352773666382, 0.8089332580566406, -0.5532470941543579, 0.6005447506904602, -0.07096675038337708, 0.3481960594654083, -0.055689673870801926, 0.2823253273963928, -0.4155685305595398, -0.06458666175603867, -1.0559262037277222, -0.7254241704940796, -0.4566616415977478, 0.32219672203063965, -0.5754408240318298, -1.739046573638916, 0.6234659552574158, 0.24683400988578796, -0.6795750260353088, 0.23490260541439056, 0.4846254885196686, 0.40689143538475037, 0.16792747378349304, 1.2265113592147827, 0.3094407916069031, 0.3082352578639984, -0.4083559513092041, -0.2303587645292282, -0.5629536509513855, 0.35773685574531555, 0.011269938200712204, 0.7636618614196777, 0.42018213868141174, 0.9761382341384888, 0.8018383979797363, 0.03384187072515488, 0.43495944142341614, -0.3105071783065796, -0.05845092982053757, -0.8487693667411804, -0.663015604019165, 0.7039718627929688, -0.1832704097032547, 1.633729100227356, 0.9796969294548035, -1.2148762941360474, 0.16035035252571106, -0.21189206838607788, -0.00550941564142704, -0.611241340637207, -1.3431538343429565, -0.5282386541366577, -0.2621082365512848, 0.3561531603336334, 0.0293545201420784, 0.9925547242164612, -0.32966625690460205, 0.3954932391643524, -0.8246666193008423, -0.42498746514320374, -0.25575223565101624, 0.1992884874343872, 0.24969114363193512, 0.3646491765975952, 0.12551388144493103, -1.8398215770721436, -0.5863611102104187, 0.23399820923805237, 0.6333214640617371, 0.7280474901199341, -0.27735283970832825, -0.14392556250095367, 0.4441424608230591, -0.14735929667949677, 0.7334831953048706, -0.16102592647075653, 0.017855750396847725, 0.5093638896942139, -0.2769491672515869, 0.8218618631362915, 0.6595870852470398, -1.4680453538894653, -0.4629896283149719, -0.06990791857242584, 0.26471731066703796, 1.092903733253479, 0.6480296850204468, 0.8462307453155518, 0.2753435969352722, 0.27420637011528015, -0.4766184687614441, -0.4774094223976135, -0.789854109287262, -0.10990172624588013, -1.7634756565093994, -0.9796944260597229, -0.19344285130500793, -0.18010231852531433, 0.491892546415329, 0.2036972939968109, -0.6626198291778564, 0.5399550199508667, 0.6745878458023071, -0.1998380869626999, -0.44426316022872925, -0.21874022483825684, 0.05854742228984833, -0.5993684530258179, 0.2377021312713623, 1.3415662050247192, -1.3924415111541748, 0.12000877410173416, 0.24241386353969574, 0.0002499902620911598, 0.34842589497566223, 0.09825889021158218, 0.24289976060390472, -1.698722004890442, -0.6995736360549927, 0.22062404453754425, 1.8811646699905396, -0.29335537552833557, -0.45623350143432617, -0.4724636375904083, 0.17980161309242249, 0.5726551413536072, -0.6821096539497375, -0.5155072212219238, 0.4051741659641266, -0.22063393890857697, -0.7634550929069519, -0.31118056178092957, 0.6697339415550232, 0.22669263184070587, -0.048387136310338974, -0.36073970794677734, -0.27917781472206116, -0.054233960807323456, -0.047534894198179245, 0.5124882459640503, -0.20289379358291626, 0.9429647326469421, -0.554715096950531, -0.3546724021434784, 0.8553005456924438, 0.26060932874679565, 0.11844785511493683, -1.7489402294158936, 0.7651864290237427, 0.28931358456611633, 1.1421748399734497, 0.6702085137367249, 0.5558754801750183, 0.3225286602973938, 0.03478047251701355, 0.3176485598087311, 0.5114826560020447, 1.6849318742752075, -0.01832091063261032, 0.00579992588609457, -0.9859957695007324, -0.5470398664474487, -0.13036669790744781, -0.31742337346076965, -0.37337809801101685, 0.586658239364624, -0.7792908549308777, -0.6716765761375427, 1.2270139455795288, 0.6768746376037598, -0.5475813150405884, -0.3765771985054016, 0.2710857689380646, 0.355255663394928, -0.12018036097288132, 0.33219078183174133, -0.7379289865493774, 0.0740589126944542, -0.14595720171928406, -1.1366660594940186, -0.004747554659843445, 0.25338509678840637, 0.4836181402206421, 0.6690091490745544, -1.0074187517166138, -0.06492101401090622, -0.5330713391304016, 0.7036038041114807, 0.17825031280517578, -0.21761099994182587, -0.06549593806266785, 0.44540759921073914, -0.003376491367816925, -0.19630886614322662, 0.12484172731637955, 1.6103951930999756, -0.6867865324020386, 0.2899472713470459, -0.40386325120925903, 0.20243896543979645, -0.5778307318687439, -0.5620378255844116, -0.5188577771186829, 0.14657852053642273, -0.5425090789794922, 0.2857562005519867, 0.11814191937446594, -0.0817919597029686, 1.3904467821121216, 0.16558682918548584, 0.4864744544029236, 0.4661644697189331, -0.11072954535484314, -1.354198694229126, 0.45822805166244507, -0.46560734510421753, 0.42980197072029114, -0.6677753329277039, -0.19058847427368164, 0.23754478991031647, -0.6457752585411072, 0.4856581389904022, 0.4975243806838989, 0.6758514046669006, -0.1375041902065277, 0.44245582818984985, -0.3887556195259094, 0.18721209466457367, 0.5317484140396118, 1.2560057640075684, 0.1635703146457672, 0.12179884314537048, -1.2291191816329956, 0.9346114993095398, -1.7795825004577637, -0.414294958114624, 0.5630106925964355, -0.41235366463661194, 1.3569008111953735, -2.1519505977630615, -0.09933339804410934, 0.3741782009601593, 0.5664430260658264, 0.5423996448516846, 0.5792253017425537, -0.4759177267551422, 0.04000374302268028, 0.5619926452636719, 1.1700031757354736, -0.34778714179992676, 0.15321536362171173, 0.20986294746398926, 0.21669116616249084, -0.16895045340061188, -0.9845268726348877, 0.6638368368148804, -0.023127784952521324, -0.40635454654693604, -0.26313671469688416, -0.3457283675670624, 0.4872536063194275, 0.41318997740745544, 0.280741810798645, 0.7879106402397156, -0.012819281779229641, -0.3852841258049011, -0.020412571728229523, -0.6672632694244385, 0.5585972666740417, -0.9032011032104492, -0.026906555518507957, -0.48777082562446594, -0.6056460738182068, -0.41961172223091125, 0.5180896520614624, -0.24456378817558289, -0.7627548575401306, -0.6355171799659729, -1.735273838043213, 0.26063060760498047, 0.8151550889015198, 1.8106437921524048, 1.5446900129318237, 0.23387300968170166, 0.5662147402763367, 0.15150335431098938, -0.8873248100280762, -0.1195860505104065, 0.22713252902030945, -0.3177620470523834, -0.35188373923301697, -1.2886860370635986, -0.6486531496047974, -0.0994587242603302, 0.3344726264476776, -0.010940102860331535, 0.43063127994537354, 1.663573145866394, 1.976130485534668, -0.25897809863090515, -0.6124382615089417, 0.8152161240577698, -0.11548765748739243, 0.36986902356147766, 0.7949056029319763, -0.4793893098831177, -0.3592374622821808, -0.3950507938861847, -1.7048799991607666, 1.0527079105377197, -0.3736308217048645, -0.2270503044128418, 0.8357532024383545, -0.08456135541200638, 0.6929114460945129, 0.03772744908928871, -0.841755211353302, 0.2766263782978058, 0.3916795551776886, -0.2868190407752991, -1.065787672996521, 0.29610443115234375, -0.19408220052719116, 0.10171865671873093, -0.1934799998998642, -0.3567083775997162, 0.1715860664844513, -0.2627708315849304, 1.2952359914779663, 0.20671381056308746, 0.06903572380542755, 0.15908074378967285, 0.6146306395530701, -0.25306573510169983, 0.38120701909065247, -0.8049615025520325, -1.0188343524932861, 0.26946210861206055, 0.5030074715614319, -0.4769776165485382, -0.2921667993068695, -0.36545801162719727, -0.3146558701992035, -0.7350218892097473, -0.7004100680351257, -0.18053001165390015, 1.024645209312439, 0.8339474201202393, 0.013290109112858772, -0.19373279809951782, -0.7823624014854431, -0.519521176815033, -0.05400686711072922, 0.5767443776130676, 0.2235981673002243, -1.1706018447875977, -0.4622529149055481, 0.36235740780830383, 0.2223694622516632, -0.24995474517345428, -0.5532286167144775, -0.058706749230623245, -1.078879952430725, -1.155035138130188, -0.7828230857849121, 0.08322074264287949, 0.6427872180938721, -1.0443978309631348, 0.7106062173843384, 0.78847736120224, -1.6797987222671509, 0.5941751003265381, -0.23502559959888458, -1.5058653354644775, 0.14328508079051971, -1.4251093864440918, 0.9980307221412659, 0.3771229386329651, 0.281629741191864, 0.11966574937105179, 1.1221836805343628, -1.2563090324401855, -0.8802024126052856, -0.26511356234550476, -0.29847386479377747, 1.0094022750854492, 0.8145914077758789, -0.3826755881309509, 1.236751675605774, 0.4391394555568695, -0.43068379163742065, -0.11136742681264877, -0.0925409197807312, -0.35062119364738464, -0.17263634502887726, 0.3878048360347748, 0.1311388462781906, 0.17195913195610046, 0.6638215184211731, 0.16960904002189636, 1.4904934167861938, 0.07818584144115448, 1.076110601425171, -1.0131330490112305, -0.8268534541130066, 0.19690395891666412, 0.38299262523651123, -1.3980529308319092, -0.7343553900718689, 0.13646464049816132, -1.002663016319275, -1.1780885457992554, 0.4447392225265503, 1.09787917137146, -0.5632938742637634, 0.11744862794876099, -0.9100742340087891, 0.14347237348556519, -1.064422845840454, -0.23983313143253326, 0.48296523094177246, -0.40292009711265564, -0.15417826175689697, 0.4302445352077484, -0.03097270429134369, -1.3413422107696533, -0.002866368740797043, 0.430145263671875, 0.2022397518157959, -0.9101374745368958, 0.9078759551048279, 1.047063946723938, 0.33336707949638367, 0.18650254607200623, 1.3684191703796387, 1.2139897346496582, -1.022101640701294, -0.45374777913093567, 0.5078133344650269, 0.04650009050965309, 0.5686226487159729, -0.15920117497444153, -0.32222890853881836, -0.8709314465522766, 1.4033397436141968, 0.47100937366485596, 0.3174349069595337, -0.4058331549167633, 0.22973722219467163, -0.9239116311073303, -0.566663384437561, 0.6595230102539062, -1.2410237789154053, 0.05827406048774719, 1.4497631788253784, 0.11606458574533463, -0.13911530375480652, 0.09998282045125961, 0.7934895753860474, -0.11885309964418411, -0.7034622430801392, 0.2538853585720062, 0.7480217814445496, -0.8017931580543518, 0.028180761262774467, 0.07775384187698364, -0.48402372002601624, -0.12014385312795639, -0.37041568756103516, -1.6695212125778198, -0.5505558252334595, -0.8781078457832336, -0.5940456986427307, 0.70173180103302, -0.8918391466140747, -0.7853103876113892, 0.42491328716278076, -0.4651930034160614, -0.2214507907629013, -0.2931238114833832, -0.14116445183753967, 0.3046823740005493, -0.5522137880325317, 0.9504786133766174, -0.7414887547492981, 1.5426154136657715, 0.21760399639606476, 0.17927035689353943, -1.0676040649414062, -0.4683705270290375, 0.3575136959552765, 0.3725254237651825, -0.5897698402404785, 0.39164721965789795, 0.5246980786323547, -0.2665809094905853, -0.6262968182563782, 0.090811587870121, 0.15652836859226227, -0.05599895864725113, 0.014706460759043694, -0.22904445230960846, 0.2247874140739441, 0.3268503248691559, 0.5689198970794678, -0.3232397735118866, -0.1455388069152832, -0.9729812145233154, -0.09224381297826767, -0.38457098603248596, 0.2895243465900421, -0.7472512125968933, 0.7079050540924072, 0.5154409408569336, -0.3628707826137543, -0.26999035477638245, -0.8602198362350464, 0.7366702556610107, -0.5085654258728027, 0.5019956231117249, 0.32664328813552856, -0.06942842155694962, 0.006728963926434517, -0.28406354784965515, 0.39964690804481506, 0.3911455571651459, -0.20967650413513184, 0.40313413739204407, -0.5279560685157776, -0.7741779088973999, -0.3596075773239136, 0.5947409272193909, 0.8971771001815796, 0.3801921308040619, 0.2431173324584961, 0.23302730917930603, -1.0792652368545532, 0.33934855461120605, 0.5032815337181091, 0.11641974747180939, -0.28125569224357605, 1.3161213397979736, 1.7331730127334595, 0.5607159733772278, 0.3306567072868347, -0.21869036555290222, 0.43036994338035583, -0.33348003029823303, -0.411428302526474, -0.3424827456474304, -0.3188007175922394, -0.0853436067700386], [-0.21176759898662567, 1.7454040050506592, -1.852150797843933, 0.29408684372901917, 1.22693932056427, 0.12759685516357422, 1.5155844688415527, -0.07578189671039581, 0.07550767809152603, -0.46705496311187744, -0.27101266384124756, 0.24488167464733124, 1.3793160915374756, 0.5201197266578674, 0.44408515095710754, 0.9920907616615295, 1.3922209739685059, -0.38954803347587585, 1.607386589050293, 1.4998565912246704, -0.13187530636787415, 0.33721649646759033, 0.8696784973144531, 0.20375625789165497, -0.687353789806366, -0.12502995133399963, -1.699073076248169, -0.3225939869880676, -0.33147987723350525, -0.7287774085998535, 0.4758415222167969, -0.5812675356864929, -0.3338245451450348, 0.5534590482711792, -0.8075121641159058, -0.1683400720357895, 1.4596830606460571, 1.2613635063171387, 0.4419764578342438, 0.7115722298622131, 1.1783814430236816, -0.9791733622550964, -0.018245887011289597, -1.0421110391616821, 0.35454294085502625, -0.26361775398254395, 1.036054015159607, -0.9048001766204834, 0.4204670190811157, -0.4551146626472473, 0.018953006714582443, 0.25444167852401733, 0.26879286766052246, 0.935947835445404, 0.4340727627277374, 0.34602266550064087, 0.3420649766921997, -0.5517120361328125, 0.9209346771240234, -0.43394985795021057, 1.1231986284255981, 0.16402439773082733, -0.33854058384895325, 0.6392004489898682, 0.43799442052841187, -0.20858459174633026, 0.440226286649704, -0.19830618798732758, 0.004884717520326376, -0.1472068727016449, 0.09431096911430359, 0.2657352387905121, -0.791856050491333, 0.7725721001625061, -0.8848063945770264, 0.9864604473114014, 0.5711775422096252, 0.5801142454147339, 0.08622673898935318, 0.9925285577774048, 0.1860465258359909, -0.2718488574028015, -0.061794232577085495, 0.4298231303691864, 0.7503314018249512, -0.38666895031929016, -0.2582281529903412, -1.4919012784957886, -0.8678377866744995, 1.4291709661483765, 0.7218635678291321, 0.15532401204109192, 0.5970233678817749, -0.6734753251075745, -0.04557902365922928, -0.5569730401039124, 0.8487860560417175, -0.0042847576551139355, -0.7948206663131714, 0.0759221762418747, -0.8710539937019348, -0.7100210785865784, -0.11305411159992218, 0.44997793436050415, 0.06299695372581482, 0.9407045841217041, -0.4139460325241089, -0.149496391415596, -0.3916739523410797, 0.19439223408699036, 0.10885946452617645, 0.15367157757282257, -0.9485301375389099, -1.0763566493988037, -0.5220628976821899, 1.1066745519638062, 0.9342422485351562, 0.10267571359872818, 0.9185505509376526, 0.8500603437423706, -0.31041353940963745, 0.26085343956947327, -0.5230218768119812, 0.8901081085205078, -0.3882303535938263, 1.296872615814209, -0.11666740477085114, -0.3499637544155121, -0.01742987334728241, 0.30319127440452576, 0.5172442197799683, -0.06944133341312408, -0.4129539728164673, 0.11567545682191849, -0.07633137702941895, 1.387634038925171, -0.4546806514263153, -0.4229981005191803, -0.6142016649246216, -0.21313464641571045, 0.9636157751083374, 0.39327818155288696, -0.05577261000871658, -0.5441706776618958, -0.5259854793548584, -0.19526736438274384, -0.8101539015769958, -0.1442084014415741, -0.2987484931945801, -0.2813466191291809, -0.9103747010231018, 0.6103171706199646, 0.1709108054637909, 0.16881869733333588, -0.31540581583976746, -0.04159274324774742, 0.2991509735584259, 0.39404889941215515, 0.25282010436058044, 0.3564462959766388, 0.8017663955688477, -0.7044554352760315, -0.3002651333808899, 1.0498238801956177, 0.21299485862255096, 0.21392548084259033, 0.5369732975959778, 0.23861759901046753, -0.1831366866827011, 0.7608654499053955, -0.030269337818026543, -0.486979216337204, -0.2164812535047531, -0.14940312504768372, 0.4230706989765167, -0.6391968131065369, 2.032912254333496, 0.10801156610250473, -1.3627628087997437, -1.3454694747924805, 0.2604961693286896, -1.3588857650756836, -0.2571530044078827, -0.1600203812122345, 0.26443544030189514, -1.0379748344421387, 0.8610240817070007, 0.14031505584716797, -0.42186397314071655, -1.0551469326019287, -0.2133757621049881, -0.48643043637275696, -0.9940766096115112, 0.8209035396575928, -0.291778564453125, -0.5005166530609131, 0.3783555328845978, -1.4781091213226318, -0.6793060898780823, -0.33575868606567383, -0.9393048882484436, -0.23067888617515564, -0.7332815527915955, 0.4529508352279663, -0.46604546904563904, 1.233210563659668, -0.8500709533691406, 1.4672244787216187, -0.3203600347042084, -0.363349586725235, 0.7899227142333984, -0.2789306342601776, -0.8539838790893555, 1.3360923528671265, -0.6612362861633301, -0.9282099008560181, 0.6858365535736084, 0.05412726104259491, -0.6265299916267395, -0.09017381817102432, 0.23323555290699005, -0.33948007225990295, 0.07818753272294998, 0.7991294860839844, -0.3366338312625885, 0.13528069853782654, -1.1885833740234375, -0.9211830496788025, -0.08702174574136734, 0.38646289706230164, -0.5822211503982544, -0.3979334235191345, 1.3340672254562378, 0.20333364605903625, -1.2831830978393555, 0.6371306777000427, -0.04379561170935631, 0.08290570974349976, 0.3918248116970062, 0.663476824760437, -0.0515575110912323, 0.023845864459872246, -0.3204944431781769, -0.179074227809906, -0.8185980319976807, 0.03718999773263931, 0.17084121704101562, 0.44216182827949524, 0.18324171006679535, 1.4003949165344238, 1.0950018167495728, 0.04607843980193138, 0.3006572723388672, 0.45221543312072754, -0.36485421657562256, -0.63257896900177, -0.7478790283203125, 0.3184582591056824, -0.6901330351829529, 0.9504193663597107, 0.6411731839179993, -0.6869288682937622, 0.23492254316806793, -0.18848004937171936, -0.47666725516319275, 0.05887853354215622, -1.2885440587997437, -0.588628351688385, 0.14876031875610352, -0.07977951318025589, -0.10921787470579147, 0.12293082475662231, 0.015183242969214916, 0.04079587757587433, -0.7899220585823059, -0.8245051503181458, -0.48562130331993103, 0.21520984172821045, 0.48026832938194275, -0.002041194122284651, 0.14273427426815033, -1.3230947256088257, -0.06504672765731812, 0.23274128139019012, 0.7266622185707092, -0.015985937789082527, -0.417056679725647, 0.6454372406005859, 0.26178833842277527, -0.3976263105869293, -0.17102965712547302, 0.3234424889087677, -0.058705925941467285, -0.1949974000453949, 0.05410318076610565, 0.8581857085227966, 0.737423837184906, -1.1118124723434448, -0.70931077003479, 0.1474643349647522, 0.6728362441062927, 0.9158787727355957, 0.02882339619100094, 0.821856677532196, -0.4365769624710083, -0.05059439688920975, -0.39348524808883667, -0.1978507936000824, -1.1299039125442505, -0.5773555636405945, -0.7507055997848511, -0.20499730110168457, -0.48290887475013733, -0.06590932607650757, 0.04990091547369957, 0.264869749546051, -0.7893159985542297, 0.7365094423294067, 1.2772862911224365, -0.16612255573272705, -0.408256471157074, -0.06524872779846191, -0.323309063911438, -0.23090091347694397, 0.554058849811554, 0.5476204752922058, -1.1323535442352295, -0.8155184984207153, 0.046114057302474976, -0.008359587751328945, 0.12885776162147522, 0.15681609511375427, -0.801913857460022, -1.5979825258255005, -0.9259964823722839, 0.4885578751564026, 1.2722797393798828, -0.4640030562877655, -0.07346639037132263, -0.17583829164505005, 0.11073856055736542, 0.48386844992637634, -0.8653680682182312, -0.6156033277511597, -0.2521950304508209, -0.14579050242900848, -0.34181681275367737, 0.36482033133506775, 0.6841451525688171, 0.6878385543823242, -0.19436094164848328, -0.8782192468643188, -0.33988237380981445, -0.3822338283061981, -0.10955149680376053, 0.4737812876701355, 0.014035196043550968, 0.9665767550468445, -0.5202071666717529, -0.1011643186211586, 0.3579007387161255, -0.3657951056957245, 0.1484430879354477, -0.8697350025177002, 0.2899613082408905, 0.28676143288612366, 0.7677309513092041, 0.28193971514701843, -0.011951970867812634, 0.0930873230099678, 0.20795036852359772, 0.5113062262535095, 0.13586585223674774, 0.9857454895973206, 0.35193225741386414, 0.22911947965621948, -0.8985804915428162, 0.3015667796134949, -0.603926420211792, -0.3602803647518158, -0.33756595849990845, 0.9103890061378479, -0.2785329818725586, -0.9062267541885376, 1.0057514905929565, 0.41977450251579285, -0.3216454088687897, -0.4282192289829254, 0.42528554797172546, 0.7272981405258179, -0.495626300573349, 0.6519715785980225, -1.0209784507751465, -0.4161856472492218, 0.10427601635456085, -1.3779828548431396, -0.10695644468069077, 0.06200810894370079, 0.5862390398979187, 0.6456782221794128, -0.9023867249488831, 0.4209590256214142, -0.5233754515647888, 0.6921228170394897, 0.4545285403728485, -0.017399171367287636, 0.24582539498806, 0.42996498942375183, -0.0979369655251503, -0.27151280641555786, 0.4174875020980835, 1.0165544748306274, -0.12070740014314651, 0.4765758514404297, -0.29797735810279846, -0.006292036734521389, -0.455268532037735, -0.785252571105957, -0.6238805651664734, -0.2552248537540436, -0.10912349075078964, 0.143917515873909, 0.6237526535987854, 0.0414181724190712, 1.7054815292358398, 0.5164457559585571, 0.17446163296699524, 0.3570674657821655, -0.42937538027763367, -0.5127516984939575, -0.10068171471357346, 0.559554398059845, -0.19099090993404388, -0.35323476791381836, -0.08275828510522842, 0.49641260504722595, -0.558544397354126, 0.3617027997970581, 0.5288843512535095, 1.0786056518554688, 0.11851327866315842, 0.6489614844322205, -0.14637799561023712, 0.5367379188537598, 0.3631742000579834, 1.031378149986267, 0.1300470232963562, -0.3122554421424866, -0.572969913482666, 0.8439915776252747, -0.7020121812820435, -0.4440479278564453, 0.30067577958106995, -0.37052953243255615, 1.7377641201019287, -1.1800121068954468, -0.43220293521881104, -0.13598401844501495, 0.6277962923049927, 0.42061159014701843, 0.4471990168094635, -0.32227063179016113, -0.4070606231689453, 0.8749839663505554, 0.9226097464561462, -0.3702620565891266, 0.04311862215399742, -0.016732653602957726, -0.37851858139038086, 0.34016281366348267, -0.6892860531806946, 0.6366693377494812, -0.8129868507385254, -0.06581123918294907, -0.10436151921749115, -0.4777531027793884, -0.2336849719285965, 0.21618971228599548, -0.09581155329942703, 0.7953349351882935, -0.31151506304740906, -0.7090131640434265, -0.05275784805417061, -0.8844873309135437, 0.6114627122879028, -1.4112333059310913, -0.8053104281425476, -0.48239007592201233, -0.9050261378288269, -0.12474725395441055, 0.6853181719779968, -0.41023147106170654, -0.40745553374290466, -1.0226212739944458, -0.5400206446647644, 0.07164481282234192, 1.270911455154419, 1.501171350479126, 1.182599663734436, 0.1133953109383583, 0.5007099509239197, 0.19286492466926575, -0.659608006477356, 0.05600335821509361, 0.7084164023399353, 0.27437329292297363, 0.007540332153439522, -1.624307632446289, -0.6791809797286987, 0.22596223652362823, 0.30171096324920654, 0.2388300895690918, 0.0011689793318510056, 0.6388620138168335, 0.9132529497146606, 0.45484647154808044, -0.36143767833709717, 0.9431774020195007, -0.659213662147522, 0.4938371777534485, 0.6789241433143616, -0.90791916847229, -0.6341724395751953, -0.7061030864715576, -1.0857315063476562, 0.9116244316101074, -0.7574400305747986, -0.5540045499801636, 0.926234781742096, 0.6511874794960022, 0.8984230756759644, 0.5005866289138794, 0.22702012956142426, 0.6841138005256653, 0.3177858293056488, 0.08716464042663574, -0.8317591547966003, 0.13618525862693787, 0.01702294498682022, -0.0010867798700928688, -0.5779598355293274, -0.5344849228858948, 0.40140870213508606, -0.6543787717819214, 0.21556302905082703, 0.019324325025081635, 0.9174910187721252, 0.6104840040206909, 0.5568941831588745, -0.8400741815567017, -0.23556677997112274, -0.8385944962501526, -0.8593830466270447, -0.09199604392051697, -0.20859143137931824, -0.4287625551223755, -0.21688112616539001, -0.501596212387085, 0.27972838282585144, -1.0726195573806763, -0.2134731560945511, -0.07411254197359085, 0.6005789637565613, 0.5723702311515808, 0.16408899426460266, -0.6042078137397766, -0.2743440568447113, -0.38780781626701355, 0.046874962747097015, 0.06006839498877525, 0.45453235507011414, -1.074791431427002, -0.47223949432373047, 0.351606160402298, -0.3106226325035095, -0.17593146860599518, 0.12477938830852509, 0.34162652492523193, -1.5129536390304565, -0.689433217048645, -0.42655283212661743, 0.6992748379707336, 0.2769502103328705, -0.9672704339027405, 0.36548474431037903, 0.7240036129951477, -2.192854642868042, -0.11548007279634476, -0.3862415850162506, -1.3634968996047974, -0.4526209831237793, -0.9682694673538208, 0.6058087944984436, -0.09187526255846024, 0.00606515072286129, -0.30340322852134705, 0.8138567209243774, -1.202085256576538, -1.3704618215560913, -0.11690066754817963, 0.05362941324710846, 0.6518707275390625, 0.7088884711265564, 0.03942335769534111, 1.1671473979949951, 0.09038993716239929, -0.5935049653053284, -0.4851960241794586, 0.7007287740707397, -0.269808292388916, -0.07101670652627945, 0.7005348801612854, 0.959057092666626, -0.18178778886795044, 0.8880823254585266, -0.024668266996741295, 1.2640994787216187, 0.05847261846065521, 0.9563080072402954, -1.1266242265701294, -0.5093504190444946, 0.7220296859741211, 0.11945171654224396, -1.2932239770889282, -0.8994346261024475, -0.7690085172653198, -0.9793537259101868, -0.5736066699028015, -0.13696445524692535, 0.9008158445358276, -0.7402339577674866, 0.006859575863927603, -0.6119612455368042, 0.5283434391021729, -0.5841097831726074, -0.4164167642593384, 0.18148748576641083, -0.30230003595352173, 0.0775633156299591, 0.18117566406726837, -0.24505944550037384, -1.1340303421020508, -0.0792895033955574, 0.3498297333717346, 0.3626263737678528, -1.0167491436004639, 0.3340555727481842, 0.5791869163513184, 0.1917138397693634, -0.19329586625099182, 1.8324885368347168, 0.6412150859832764, 0.24406452476978302, -0.10232547670602798, 0.32990461587905884, 0.17421899735927582, 0.32466498017311096, -0.4797214865684509, -0.45652997493743896, -0.44222503900527954, 0.7169833779335022, 0.06682001054286957, 0.3022899627685547, -0.04616648331284523, -0.015465624630451202, 0.03640733286738396, 0.5113282799720764, 0.1739514172077179, -0.388346791267395, 0.08066325634717941, 0.9059361219406128, 0.2756218910217285, -0.19320307672023773, 0.2518850564956665, 0.14345283806324005, 0.3245471119880676, -1.1253130435943604, 0.6403112411499023, 1.1689482927322388, -0.4558141529560089, -0.02696739137172699, 0.2803467810153961, -0.37333935499191284, -0.032507508993148804, -0.7051538825035095, -1.6642634868621826, -0.051338791847229004, -0.5934545397758484, -0.8271725177764893, 0.8050884008407593, -1.1989084482192993, -0.17734627425670624, 0.41024383902549744, -0.15153475105762482, -0.5999923944473267, -0.1756274700164795, 0.39319154620170593, -0.39077579975128174, 0.15192051231861115, 1.7882524728775024, -0.557898223400116, 1.1661598682403564, 0.5242525935173035, -0.5709050297737122, -0.6298108696937561, -0.7600371241569519, 0.24318145215511322, 0.39843207597732544, -0.4376111626625061, 0.5112823247909546, 0.5821812748908997, 0.3480255901813507, -0.4732561707496643, 0.0170130655169487, 0.11382000148296356, 0.7185865044593811, -0.1720631867647171, 0.09550658613443375, 0.23798877000808716, 0.43951740860939026, 0.19218406081199646, -0.23700614273548126, -0.4837668538093567, -0.7984064221382141, -0.7682109475135803, -0.5803959965705872, 0.07438381016254425, -0.7986626029014587, 0.7706854343414307, 0.04619418829679489, -0.06785981357097626, -0.31210580468177795, -1.1158181428909302, 0.2169841080904007, -0.46020591259002686, -0.3040812611579895, 0.21226677298545837, -0.24572241306304932, 0.20680299401283264, -0.08782288432121277, 0.2112627774477005, 0.5872811079025269, -0.3116539716720581, 0.4487013518810272, -0.5105649828910828, -0.7698107361793518, -0.1233685091137886, 0.5572068095207214, 1.2255135774612427, 0.6443554162979126, 0.26668164134025574, 0.29413801431655884, -0.5124174952507019, -0.13491258025169373, -0.029093919321894646, 0.5795459151268005, 0.04784565418958664, 1.9031400680541992, 1.4253015518188477, -0.07360176742076874, 0.7177276611328125, -0.4836595356464386, 0.4036756157875061, -0.9216974377632141, -0.9389173984527588, -0.7754325270652771, -0.05239550396800041, 0.36183255910873413], [0.017132896929979324, 1.7569489479064941, -2.430774211883545, -0.0656902939081192, 0.5319631099700928, 0.9374734163284302, 1.5745136737823486, -0.5422489047050476, -0.25468361377716064, -0.22378379106521606, -0.4627592861652374, -0.5195468664169312, 0.4779376983642578, 0.6122925877571106, 0.09918542951345444, 0.9269033670425415, 1.5561224222183228, -0.5060100555419922, 0.6228805780410767, 1.332384705543518, -0.5208743214607239, -0.6112556457519531, -0.019964659586548805, -0.04307333007454872, -0.8920717239379883, 0.10049593448638916, -1.5829851627349854, -0.254422128200531, -0.8014503717422485, -0.8968876600265503, 0.6734462380409241, -0.4836244285106659, 0.1132056713104248, -0.117610402405262, -1.3719332218170166, -0.27725183963775635, 1.4663617610931396, 1.4480220079421997, 0.8269662261009216, 0.23430736362934113, 1.3480627536773682, -0.49398934841156006, -0.09696149080991745, -1.3745547533035278, 0.0977751761674881, -0.13495324552059174, 0.5036324858665466, -0.7011022567749023, 0.4796210825443268, -0.4381943345069885, 0.4229748547077179, -0.8933122158050537, 1.0427919626235962, 0.9814057350158691, 0.9429250359535217, 0.19798043370246887, 0.2949100732803345, -0.18583177030086517, 0.9372952580451965, -0.6340799927711487, 0.9509842395782471, -0.4799608290195465, -0.01798730529844761, 0.6815280914306641, 0.6454799175262451, -0.4179497957229614, -0.08028819411993027, 0.3506825864315033, 0.21475839614868164, -0.10572197288274765, 0.5837019085884094, -0.07242419570684433, -0.47307828068733215, 0.7278109192848206, -1.8517978191375732, 0.838746964931488, 0.43886396288871765, 0.7069138884544373, 0.11540450900793076, 0.4113767743110657, -0.20670554041862488, -0.32201695442199707, 0.07882294058799744, -0.14736470580101013, 0.3737356662750244, 0.2793503701686859, 0.491672158241272, -0.45634764432907104, -0.9533072710037231, 2.022388219833374, 0.45905616879463196, 0.22798044979572296, 0.7838608026504517, -0.35305866599082947, -0.41869187355041504, -0.32208701968193054, 0.3867711126804352, 0.37157124280929565, -1.1898053884506226, -0.8312129378318787, -0.27051082253456116, -0.19641421735286713, -0.20910944044589996, -0.5704487562179565, -0.2550680935382843, 1.0755232572555542, 0.5872238874435425, 0.12063495069742203, -0.6439166069030762, -0.2810792326927185, -0.31424203515052795, 0.42786458134651184, -0.7572592496871948, -1.317543625831604, -0.6860451698303223, 0.9300066232681274, 1.224992275238037, -0.12098819762468338, 0.574377715587616, 0.7764203548431396, 0.22489286959171295, 0.12190251052379608, -0.08208266645669937, 0.629899799823761, -0.2854796350002289, 0.6195276379585266, -1.2784030437469482, -0.39466914534568787, 0.4047856032848358, -0.3390343487262726, 0.7430307269096375, -0.0511423796415329, -0.39106741547584534, 0.5896660089492798, -0.9258206486701965, 1.5153380632400513, -0.7682002186775208, -0.2549498379230499, -0.44746991991996765, -0.7493818402290344, 0.40162280201911926, -0.3806309998035431, -0.31902411580085754, -0.31223201751708984, 0.2899617850780487, -0.6534043550491333, 0.15232370793819427, -0.14138878881931305, -0.6512755751609802, 0.1377263367176056, -0.33220404386520386, 0.32547712326049805, 0.9269766807556152, 0.3994559049606323, 0.11564694344997406, 0.25417405366897583, 0.74393630027771, 0.7772578597068787, 0.34446343779563904, 0.5443311333656311, 0.7078580856323242, -0.17119650542736053, -0.7575345039367676, 0.34956344962120056, 0.28193697333335876, -0.26470234990119934, 0.05686081200838089, 0.7636126279830933, 0.386584609746933, 0.8403499126434326, -0.4782201945781708, -0.968890905380249, 0.004992390051484108, 0.49356552958488464, 0.1982950121164322, -0.7759568691253662, 1.2599555253982544, -0.5852967500686646, -1.297910451889038, -1.3936797380447388, 0.4306425154209137, -0.1919059306383133, 0.8742629289627075, -0.13302446901798248, 0.34599629044532776, -1.0946356058120728, 0.8307697772979736, 0.06463727355003357, -0.47255071997642517, -1.122666358947754, -0.17132285237312317, -0.7737595438957214, -0.6738072633743286, 0.013627052307128906, -0.19102418422698975, -0.3520677089691162, 0.7365217208862305, -1.1406804323196411, -0.07964502274990082, 0.3434837758541107, -0.1587364822626114, 0.007491950877010822, -0.7279098033905029, 0.4179959297180176, -0.56000155210495, 1.2891007661819458, -1.0666996240615845, 0.8199928998947144, -0.6865054965019226, 0.24688807129859924, 0.717529296875, 0.050361111760139465, -0.637032687664032, 0.6010616421699524, 0.13433115184307098, -1.4712073802947998, 0.3437582850456238, 0.2837669551372528, -0.5619633197784424, 0.4097592234611511, 0.08159739524126053, 0.13249528408050537, 0.4334448575973511, 0.0315910242497921, 0.43217799067497253, 0.11998535692691803, -1.193301796913147, -0.5962308049201965, -0.2680327892303467, -0.03220071643590927, -0.47198233008384705, -1.164260745048523, 0.8772155046463013, 0.3731078803539276, -1.2410862445831299, 0.20511843264102936, 0.21345824003219604, 0.42532089352607727, 0.2030661702156067, 1.9143390655517578, 0.5253929495811462, 0.23411349952220917, -0.5280380845069885, 0.21073397994041443, -0.5565072298049927, 0.3423970341682434, 0.5839046835899353, -0.04102090746164322, 0.12225525081157684, 1.7297567129135132, 0.703455924987793, 0.23833408951759338, 0.07827790081501007, 0.1817629337310791, -0.30699196457862854, -0.15934820473194122, -1.0141583681106567, 0.1715111881494522, -0.5392959713935852, 1.4242682456970215, 0.9260365962982178, -0.7328407764434814, 0.09304317831993103, 0.43515321612358093, 0.16142255067825317, -0.14065787196159363, -0.7151001691818237, -0.2361561357975006, -0.21121333539485931, 0.36389556527137756, -0.11619123816490173, 0.7967256903648376, -0.01627190224826336, 0.3122193217277527, -0.3299989104270935, -0.8270018696784973, -0.4173222482204437, 0.5686570405960083, 0.2989251911640167, 0.6457608938217163, -0.3821546733379364, -0.9074252843856812, -0.010385314002633095, 0.4977599084377289, 1.1867810487747192, -0.06521648913621902, 0.05575818195939064, 0.06802717596292496, 0.11109724640846252, -0.23602692782878876, 0.6687124371528625, 0.09777497500181198, 0.2940819263458252, -0.3617285192012787, -0.14233744144439697, 0.9065000414848328, 0.8055985569953918, -1.1149981021881104, -0.6248729825019836, -0.08400030434131622, -0.126661017537117, 1.1104180812835693, 0.4557768702507019, 1.3275361061096191, 0.07671458274126053, 0.14827793836593628, -0.29575639963150024, -0.6627184152603149, -1.0449565649032593, -0.8788750767707825, -0.2845706045627594, -0.49375125765800476, -0.13376390933990479, -0.490947961807251, -0.1659066081047058, 0.5448029041290283, -0.15138505399227142, 0.639350950717926, 1.4024171829223633, -0.027056984603405, -0.9451762437820435, -0.33694273233413696, -0.00918816588819027, -0.8813992142677307, 0.6179975867271423, 1.1053720712661743, -0.984000563621521, -0.5504750609397888, -0.24997952580451965, -0.045816343277692795, 0.20035810768604279, 0.2522401511669159, 0.07804673910140991, -1.2714934349060059, -1.244351863861084, -0.4463479518890381, 1.0081799030303955, -0.24027155339717865, 0.18612349033355713, -0.822293221950531, 0.11850007623434067, 0.655430793762207, -0.6229621767997742, -0.6374332308769226, 0.6655622720718384, -0.14688345789909363, -0.8334985375404358, -0.11065958440303802, 0.9539806246757507, 0.3720172941684723, -0.2734247148036957, -0.6844374537467957, -0.14712142944335938, -0.3897022008895874, 0.07375229150056839, 0.5306228995323181, -0.45634719729423523, 1.2375847101211548, -0.7201590538024902, 0.29140499234199524, 0.7230010032653809, 0.1227259635925293, -0.03586384281516075, -1.760340929031372, 0.5538330078125, 0.4854517877101898, 1.1390626430511475, 0.1788094937801361, 0.31303638219833374, 0.1946427822113037, 0.0668206512928009, 0.17086850106716156, 0.25532829761505127, 1.4471092224121094, 0.2151942253112793, 0.24125000834465027, -0.7237616181373596, -0.3790730834007263, 0.14360938966274261, -0.5990282893180847, 0.010248059406876564, 0.827319324016571, -0.739514172077179, -0.7328634262084961, 1.0751757621765137, 0.4741308093070984, -0.6240909695625305, -0.3221971392631531, 0.1093888208270073, 0.3864601254463196, -0.29025182127952576, 0.2566743493080139, -0.7407736778259277, 0.21987788379192352, 0.18600672483444214, -1.436883807182312, -0.01773240603506565, 0.4741086959838867, 0.046652473509311676, 0.17852210998535156, -1.0264575481414795, 0.20604626834392548, -0.880550742149353, 0.5786106586456299, 0.5683877468109131, -0.7895752787590027, 0.07532284408807755, 0.10450639575719833, -0.3081131875514984, -0.24367529153823853, 0.07536505907773972, 1.3348501920700073, -0.2634458839893341, -0.12450671941041946, -0.4223625063896179, 0.2735476493835449, -0.5678325295448303, -0.9071984887123108, -0.31523042917251587, 0.32989540696144104, -0.42111557722091675, 0.057037413120269775, 0.2699583172798157, 0.11287137866020203, 1.368941068649292, 0.27678635716438293, 0.278382271528244, -0.051290325820446014, 0.06814631819725037, -1.25700843334198, 0.5996750593185425, 0.26601046323776245, 0.320438414812088, -0.4154609143733978, -0.10392297059297562, 0.740044355392456, -0.4571991264820099, 0.1383393406867981, 0.3758313059806824, 0.7675471901893616, 0.18833327293395996, 0.06464597582817078, -0.047067128121852875, 0.3996830880641937, 1.0922743082046509, 1.4202474355697632, 0.49911755323410034, -0.542047381401062, -0.8537009954452515, 0.6712677478790283, -0.7256267666816711, -0.7863814830780029, 0.7105740904808044, 0.32395225763320923, 1.403862714767456, -1.5797791481018066, -0.22262442111968994, 1.0949596166610718, 0.4289311170578003, 0.9105269908905029, 0.5268881916999817, -0.2967225909233093, -0.07136461138725281, 0.6400961875915527, 0.4792572855949402, 0.1341341733932495, 0.3147927522659302, -0.2585894763469696, -0.4778079092502594, 0.09672799706459045, -1.1995153427124023, 1.2808315753936768, -0.43483930826187134, 0.014775152318179607, -0.23508135974407196, -0.6106911301612854, -0.015441004186868668, 0.7544294595718384, 0.20957671105861664, 1.5453850030899048, -0.7137328386306763, -0.6405631899833679, 0.07361318916082382, -0.42958852648735046, 0.21422353386878967, -0.23410116136074066, -0.28437134623527527, -0.5531194806098938, -0.6428143382072449, -0.32278937101364136, 1.2371350526809692, -0.3466555178165436, -0.550739586353302, -1.120902180671692, -1.1623002290725708, 0.639529287815094, 0.9877740144729614, 1.4196640253067017, 0.6520272493362427, 0.016175750643014908, 0.24527262151241302, 0.6736499667167664, -1.0533338785171509, -0.26666519045829773, 0.2977798283100128, 0.20214639604091644, 0.05854948237538338, -0.9898889064788818, -0.06362899392843246, 0.515041172504425, 0.3612173795700073, -0.36910876631736755, 0.42961424589157104, 0.9249721169471741, 1.2319515943527222, -0.21077054738998413, -0.13307757675647736, 0.18559661507606506, -0.7530450820922852, -0.019924188032746315, 0.7675274014472961, -0.0940995067358017, -0.7033578753471375, -0.6260308027267456, -1.141030192375183, 0.9944878220558167, -0.003243391402065754, -0.7834214568138123, 0.9672824144363403, 0.05804022029042244, 0.7529647350311279, 0.17437833547592163, -0.2960168421268463, 0.23142343759536743, 0.19569650292396545, -0.10372275114059448, -1.1085902452468872, -0.2907989025115967, 0.4252842664718628, 0.056815702468156815, -0.19096538424491882, 0.609612762928009, 0.09463965147733688, -0.021803950890898705, 0.5483478307723999, 0.5593967437744141, 0.5354104042053223, 0.8603414297103882, 0.25792449712753296, -0.6315451264381409, 0.10481896996498108, -0.5238596200942993, -1.2216379642486572, 0.3966410160064697, 0.181648850440979, 0.05648419260978699, -0.6434867978096008, -0.4981532394886017, -0.08077327162027359, 0.014726143330335617, -0.2791728675365448, -0.4851676821708679, 0.28949782252311707, 0.32496124505996704, 0.021427186205983162, 0.3876534700393677, -0.1834963858127594, -0.42880815267562866, -0.31134262681007385, 0.5925952196121216, -0.03969950973987579, -1.4879759550094604, 0.16271157562732697, 0.40702149271965027, -0.7313592433929443, -0.4817143678665161, -0.3150131404399872, -0.1258876621723175, -0.9529712796211243, -1.4728704690933228, -0.9920972585678101, 0.27241021394729614, 0.8762505054473877, -0.9003586173057556, 0.22818326950073242, 0.6556129455566406, -1.3552792072296143, 0.3865613639354706, -0.06017347797751427, -1.1191624402999878, -0.3270103633403778, -1.2159639596939087, 0.8805866241455078, -0.4072345495223999, -0.06764720380306244, -0.6042758822441101, 0.8937357664108276, -1.3486356735229492, -1.7961666584014893, -0.2842681407928467, -0.08029428869485855, 1.4975799322128296, 0.6781835556030273, -0.41327014565467834, 1.383027195930481, 0.5733253359794617, -0.17134128510951996, 0.024107065051794052, 0.030183034017682076, -0.17322295904159546, 0.4624759554862976, 0.8808779120445251, 0.45328599214553833, 0.5401803255081177, 1.159169316291809, -0.433020681142807, 1.293070673942566, 0.09058183431625366, 0.5701318383216858, -0.7116849422454834, -0.3463583290576935, 0.08176802843809128, 0.24262641370296478, -1.7955207824707031, -1.324371337890625, -0.9376777410507202, -0.4255467355251312, -0.8061115145683289, 0.35648173093795776, 0.022542007267475128, -0.7521147727966309, 0.12576939165592194, -0.4252457618713379, 0.4083479642868042, -0.6802070140838623, 0.8002819418907166, -0.48855629563331604, -0.3252392113208771, -0.2258734107017517, 0.3546624183654785, -0.18938446044921875, -1.7257497310638428, 0.3595395088195801, -0.0727701187133789, 0.0929873138666153, -0.017641272395849228, 0.45230379700660706, 0.5554929375648499, -0.27231186628341675, -0.3399033546447754, 1.6205244064331055, 0.7035176157951355, -0.3248961865901947, -0.3479553163051605, 0.22604838013648987, 0.8241024017333984, 0.46415796875953674, -1.1456769704818726, 0.055154867470264435, -0.6081198453903198, 1.546120047569275, -0.16210363805294037, 0.5550791025161743, 0.07492545247077942, 0.41652610898017883, -0.38231161236763, 0.44728535413742065, 0.6094284057617188, -1.05376398563385, -0.4367746114730835, 1.2001255750656128, 0.34208834171295166, -0.6489086747169495, 0.1653953492641449, 1.1312426328659058, 0.04155271127820015, -0.49898001551628113, 0.35837310552597046, 0.5958837866783142, -1.2124488353729248, 0.24283377826213837, -0.04183661565184593, -0.417633980512619, 0.20280523598194122, -0.4616214632987976, -1.0007860660552979, 0.2615979313850403, -0.38037651777267456, -0.8647757768630981, 0.7535824179649353, -0.8803194761276245, -0.736105740070343, 0.5226367712020874, -0.1669086515903473, -0.5551999807357788, -0.17660808563232422, 0.5373657941818237, 0.0916975662112236, 0.16879470646381378, 0.5195566415786743, -0.23317615687847137, 1.4745404720306396, -0.32700565457344055, 0.277624249458313, -1.2393951416015625, -0.28029465675354004, 0.3106653690338135, 0.13640786707401276, -0.29303979873657227, -0.1078326404094696, 1.0712851285934448, 0.08518673479557037, -0.8884454965591431, 0.07519974559545517, 0.0783829540014267, 0.36163702607154846, 0.12360300868749619, -0.5388208627700806, -0.25239601731300354, 0.27482303977012634, 0.554472804069519, -0.3103068470954895, -0.5761963725090027, -1.119819164276123, -0.21901632845401764, -0.725607693195343, 0.06663887947797775, -0.49955400824546814, 0.22727429866790771, -0.2391110211610794, -0.4014267325401306, -0.3720463812351227, -0.42453548312187195, 0.7957031726837158, -0.23409318923950195, 0.12234888225793839, -0.176981583237648, -0.15408308804035187, -0.08168063312768936, -0.6816852688789368, 0.2757051885128021, -0.030381962656974792, 0.1517183780670166, -0.08532287180423737, -1.20382821559906, -0.37145358324050903, -1.0494086742401123, 0.6052429676055908, 0.5632943511009216, 0.6056483387947083, 0.08460833132266998, -0.18182383477687836, -0.940401017665863, 0.6087831258773804, 0.18696744740009308, -0.43516409397125244, 0.2958184778690338, 1.0572186708450317, 1.662942886352539, 0.156502828001976, 0.48567646741867065, -0.6318287253379822, 0.3194512128829956, -0.6454656720161438, -0.6021624207496643, -0.4474721848964691, -0.44737109541893005, -0.4567560851573944], [0.024099497124552727, 1.61278235912323, -1.2872837781906128, 0.1971028596162796, 0.5523712038993835, 0.0723281130194664, 1.1483159065246582, -0.1422545462846756, -0.14118903875350952, 0.1481701135635376, -0.9285546541213989, 0.41217198967933655, -0.30304983258247375, 0.625805139541626, 0.017145710065960884, 0.7777690291404724, 1.7043431997299194, -0.849129319190979, 0.4163418412208557, 0.6984987258911133, -0.24855875968933105, -0.44819730520248413, 0.2548353374004364, 0.07249391078948975, -0.5237060189247131, 0.20315954089164734, -1.418403148651123, -0.4274279773235321, -0.0021310830488801003, -0.6948991417884827, 0.15510191023349762, -0.7671835422515869, -0.4019232392311096, 0.2541987895965576, -1.1739898920059204, -0.037069663405418396, 0.9604728817939758, 0.348585844039917, 0.6592346429824829, 0.9023092985153198, 0.6988990306854248, 0.08091511577367783, -0.7549648880958557, -1.6382136344909668, -0.25685110688209534, -0.4647488296031952, 0.6139760613441467, -0.3517680764198303, 0.06817197054624557, -0.4724419414997101, 0.5000678896903992, -0.7055692672729492, 0.30578848719596863, 0.36493849754333496, 0.4890557825565338, -1.027125597000122, -0.1103321984410286, -0.9547023177146912, 1.1185885667800903, -1.3089404106140137, 0.8608763813972473, 0.20488499104976654, -0.17186489701271057, 0.6703652143478394, 0.2141026109457016, -0.5291357636451721, -0.49151521921157837, 0.17822907865047455, 0.5743759274482727, -0.02176254242658615, 0.32455989718437195, 0.3881690204143524, -0.24134360253810883, -0.05515316501259804, -1.1178168058395386, 0.31589198112487793, 1.0009998083114624, 1.32624351978302, 0.39272844791412354, 0.6158549189567566, 0.21825240552425385, -0.7608513832092285, 0.20164135098457336, -0.42832860350608826, 0.2579718828201294, -0.5043830871582031, 0.053070783615112305, -0.1682049036026001, -1.116913914680481, 1.656273603439331, 0.6597716808319092, -0.5138463973999023, 0.5582615733146667, -0.3112126886844635, -0.06349212676286697, -1.4382585287094116, 0.19105121493339539, 0.5109151601791382, -0.7833043932914734, -0.48241478204727173, 0.20974043011665344, -0.5082629919052124, -0.5343791246414185, -0.0828699991106987, -0.5996955633163452, 0.8480787873268127, -0.15620489418506622, -0.5420575737953186, -0.32397258281707764, -0.30402612686157227, -0.03960594907402992, -0.030535271391272545, -0.6958920359611511, -1.3283103704452515, -0.6701505184173584, 0.4373582601547241, 1.102300763130188, -0.5581581592559814, 0.33524686098098755, 0.6003331542015076, 0.0026905559934675694, -0.5065199136734009, -0.5690634250640869, 0.14734631776809692, -0.20803719758987427, 0.26231101155281067, -0.5293625593185425, -0.3098019063472748, -0.310716450214386, -0.5921658277511597, 0.2971113622188568, 0.9276812076568604, -0.3020523488521576, 0.9167003631591797, -0.7280842661857605, 1.7016992568969727, -0.3476540744304657, -0.48852965235710144, -0.2327347844839096, -0.00184996472671628, 0.4178888201713562, 0.4291163980960846, -0.29770687222480774, -0.13334032893180847, 0.5003362894058228, -0.7862250804901123, -0.05129208415746689, 0.44547706842422485, -0.7056489586830139, 0.4693426489830017, -0.44214922189712524, 0.06351436674594879, 0.6070099472999573, 0.034621644765138626, -0.032575491815805435, -0.09513351321220398, -0.10843203961849213, 0.15506476163864136, 0.5950025916099548, -0.48367613554000854, 0.41808274388313293, -0.2187412828207016, -1.0866702795028687, 0.4306308925151825, -0.6981176733970642, -0.316972553730011, 0.33629992604255676, 1.2176662683486938, 0.553968071937561, 0.8886430263519287, -0.8807761073112488, 0.35514411330223083, 0.05451539158821106, 0.14253482222557068, -0.2534849941730499, -0.5512840151786804, 0.873341977596283, -0.24621377885341644, -1.2637920379638672, -0.6873716711997986, 0.8263838291168213, -0.7130767107009888, 0.20297282934188843, -0.8635857105255127, -0.2836379110813141, -0.6969680786132812, 0.8745371103286743, -0.3510313928127289, -0.1566791832447052, -0.01598689891397953, 0.15953393280506134, -0.6112489104270935, -0.18028658628463745, 0.36143702268600464, -0.3093571066856384, -0.16934755444526672, 0.5251832604408264, -1.177958369255066, 0.1076420247554779, 0.5463577508926392, 0.12111682444810867, 0.2812817096710205, -0.6371245384216309, 0.7717345356941223, -0.4952543079853058, 0.7304456233978271, -0.3757901191711426, 0.3890087902545929, -0.3866969048976898, -0.13584446907043457, 0.7365695834159851, -0.5537475943565369, -0.022047044709324837, 0.36123159527778625, 0.2238594889640808, -0.6652969121932983, 0.5666759610176086, 0.126027911901474, -0.6571730971336365, 0.35629767179489136, 0.17157763242721558, 0.28381648659706116, 0.0769067034125328, 0.45456409454345703, 0.13565579056739807, -0.06376788765192032, -1.0032182931900024, -0.828021228313446, -0.04188801720738411, -0.06151673197746277, 0.13310903310775757, -1.3110395669937134, 0.27546700835227966, 0.5535112619400024, -0.5871931910514832, 0.3143085241317749, -0.26871660351753235, -0.0026038046926259995, 0.07970952987670898, 0.9840859174728394, 0.17577797174453735, 0.3758544325828552, -0.5403075218200684, -0.4380464255809784, -0.725681722164154, -0.11845897138118744, 0.7912559509277344, -0.26264312863349915, 0.2522428333759308, 0.9957764148712158, 0.9350719451904297, 0.15589943528175354, 0.24141302704811096, 0.33100128173828125, 0.10808978229761124, -0.5629264712333679, -0.7640597820281982, 0.1906539797782898, -0.843826174736023, 1.1462146043777466, 0.62115478515625, -0.6426302790641785, -0.35923534631729126, -0.5774511694908142, -0.4789682626724243, -0.35296815633773804, -0.398855984210968, 0.022365912795066833, -0.07208604365587234, 0.7375155687332153, -0.07088183611631393, 1.2092328071594238, 0.17687194049358368, 0.24605940282344818, -0.45446670055389404, -0.028403885662555695, -0.24422648549079895, 0.21692568063735962, -0.0051864865235984325, 0.8732929825782776, -0.31664860248565674, -1.3999680280685425, -0.2420659065246582, 0.3263595402240753, 0.925220787525177, -0.20929190516471863, -0.8243553638458252, -0.07955676317214966, 0.11870915442705154, -0.3083045780658722, 0.04374552518129349, -0.48138514161109924, -0.04587589204311371, -0.1594783365726471, 0.4193669259548187, 0.2753060758113861, 0.4178066849708557, 0.3132481873035431, -0.6520324349403381, 0.09327415376901627, 0.3512148857116699, 0.7469817399978638, 0.6303008198738098, 1.087027668952942, -0.053355466574430466, 0.30991441011428833, 0.03445068746805191, 0.3495427966117859, -0.8733498454093933, -0.5993338227272034, -0.8281490206718445, -0.8911318182945251, 0.4561253488063812, 0.31324535608291626, 0.08962638676166534, 0.7053890228271484, -0.2598251402378082, 0.7335734963417053, 0.6156778931617737, -0.6081653237342834, -0.5657902359962463, 0.3823425769805908, -0.42466607689857483, -0.6831197738647461, 0.4583706855773926, 1.5172648429870605, -0.3890075385570526, -0.663373589515686, -0.4158579111099243, -0.6064075231552124, -0.15545178949832916, 0.7030922174453735, -0.34846895933151245, -0.9058718085289001, -0.3675714135169983, 0.17183765769004822, 1.710692286491394, -0.23722505569458008, -0.702453076839447, -0.5633239150047302, 0.4611780345439911, 0.2665007710456848, -0.8729168772697449, -0.21946518123149872, 0.728356659412384, -0.5600430369377136, -0.20155327022075653, 0.103882797062397, 0.6925026178359985, 0.9600088596343994, -0.11055050790309906, -0.40569624304771423, -0.1724196821451187, -0.2775096297264099, -0.026869872584939003, 0.12633465230464935, -0.9181404113769531, 1.0165551900863647, -0.1163528561592102, -0.3743198812007904, 0.7631550431251526, 0.18013174831867218, 0.232317253947258, -1.050857424736023, 0.36713188886642456, 0.1125263124704361, 1.9326623678207397, -0.5846933126449585, 0.4950870871543884, 0.617887556552887, 0.21814750134944916, 0.29407066106796265, 0.5409765839576721, 1.18352472782135, -0.11522713303565979, -0.8626157641410828, -0.4854515790939331, -0.43216919898986816, -0.6573565602302551, -0.45800819993019104, -0.2537720203399658, 0.5132047533988953, -0.793635368347168, -0.4433037042617798, 1.2514588832855225, 0.6741164326667786, 0.16496555507183075, -0.40538421273231506, 0.25214964151382446, 0.29054173827171326, -1.2075543403625488, 0.5987358689308167, 0.008949394337832928, 0.24899724125862122, 0.21430270373821259, -0.7644011378288269, 0.23959586024284363, 0.04981113225221634, 0.19546964764595032, 0.5129390954971313, -0.9178162217140198, 0.4930404722690582, -0.5067194104194641, 0.5849894881248474, 0.280679315328598, -0.40672290325164795, 0.19853165745735168, 0.23902057111263275, 0.07873988896608353, -0.517998993396759, 0.41830167174339294, 0.12137464433908463, -0.4707193672657013, 0.03981064260005951, -0.28136923909187317, -0.47159257531166077, -0.6404198408126831, -0.0727245882153511, -0.3128519356250763, 0.4846423864364624, -1.026105284690857, -0.14160320162773132, 0.4746474027633667, 0.08743787556886673, 0.05847792327404022, 0.37638434767723083, 0.5992720127105713, -0.1103743389248848, 0.015607777051627636, -1.2948317527770996, 0.14458686113357544, 0.39171209931373596, -0.3318217992782593, -0.6175237894058228, 0.3661174178123474, 0.26009097695350647, 0.06332004070281982, -0.24064664542675018, 0.18088465929031372, 0.8625873923301697, 0.2566303014755249, -0.2018297165632248, 0.24689127504825592, 0.9836534857749939, 0.6947566866874695, 1.2344131469726562, 0.32168224453926086, -0.6290138363838196, -0.8108658790588379, 0.5503568649291992, -1.3083399534225464, -0.18248343467712402, 0.3311057686805725, 0.27363121509552, 1.0646485090255737, -0.7385041117668152, -0.5673964023590088, 0.6987094283103943, -0.5100202560424805, -0.09635081142187119, 0.2138567864894867, -0.21762752532958984, 0.6216381192207336, 0.699308454990387, 0.4370194971561432, -0.014034301042556763, -0.06930001080036163, -0.640213131904602, 0.40257441997528076, -0.09065313637256622, -1.0964081287384033, 0.8284755945205688, -0.023306628689169884, 0.5067873597145081, 0.1229337602853775, -0.10132913291454315, 0.005862309597432613, 0.27591484785079956, 0.03739543631672859, 1.4123579263687134, 0.1166786253452301, -0.8791759610176086, -0.22060267627239227, -0.9263213276863098, 0.8826801180839539, -0.09948215633630753, -0.0777638778090477, -0.39521855115890503, -0.6866819858551025, 0.02634487859904766, 0.6007616519927979, -0.9098187685012817, -0.3104247748851776, -0.10073871910572052, -1.0939725637435913, 0.19375048577785492, 0.6895636320114136, 1.2598634958267212, 0.6553935408592224, -0.055051252245903015, 0.7177859544754028, 0.8080744743347168, -0.9546420574188232, 0.09946952015161514, -0.15603141486644745, 0.0540207177400589, 0.16100406646728516, -1.0794243812561035, 0.01409384235739708, 0.2323550581932068, 0.1496981829404831, -0.41068628430366516, 0.21867631375789642, 0.12066931277513504, 0.8997024297714233, 0.17937122285366058, 0.09038417041301727, 0.41628387570381165, -0.4075116515159607, 0.6727595925331116, 0.2591313123703003, 0.06614209711551666, -0.0793008953332901, -1.3956774473190308, -1.0591635704040527, 0.8787499666213989, -0.6842061281204224, 0.04635247960686684, 0.7442854046821594, 0.24899692833423615, -0.33564862608909607, 0.5458401441574097, -0.3895465135574341, -0.2682938575744629, 0.12546081840991974, -0.3482512831687927, -0.7416942119598389, 0.7326764464378357, 0.533645510673523, 0.31868088245391846, 0.4960036873817444, 0.36569568514823914, 0.3335627317428589, -0.5993911623954773, 0.5407992601394653, -0.21856029331684113, 0.3325647711753845, 1.0725253820419312, 1.1035401821136475, -0.756064236164093, 0.45491907000541687, 0.06844180077314377, -0.7651418447494507, 0.3578195571899414, 0.5174524784088135, 0.344601035118103, -0.11844445765018463, -0.799584686756134, -0.3110579550266266, -0.3001156151294708, -0.059999074786901474, -0.43880701065063477, 1.2287206649780273, 0.26012372970581055, 0.1556345373392105, -0.264815092086792, -0.8940236568450928, 0.06889399141073227, -0.2371354103088379, 0.6904928088188171, 0.5024905800819397, -1.198060393333435, -0.35621485114097595, 0.19763998687267303, -0.7283395528793335, -0.2797439992427826, 0.4855887293815613, 0.23128995299339294, -0.6560498476028442, -1.1523852348327637, -0.025926467031240463, 0.8007264733314514, 0.3301100730895996, -0.9638558030128479, 0.8966237902641296, 0.6098824739456177, -1.3520402908325195, -0.17230123281478882, 0.7422540187835693, -1.3468613624572754, -0.47674354910850525, -1.599629521369934, 0.7366833090782166, 0.7402825951576233, -0.2340145707130432, -0.4867122173309326, 0.9024441242218018, -1.1483641862869263, -0.574287474155426, -0.2507161796092987, 0.18877898156642914, 0.30635055899620056, 1.1101763248443604, -0.19323061406612396, 1.0151807069778442, -0.1916385143995285, 0.3749224841594696, -0.14950749278068542, 0.1680125743150711, -0.2389630526304245, 0.6365354061126709, 0.2643461525440216, -0.0979766994714737, -0.031877607107162476, 0.8888420462608337, 0.11171810328960419, 1.3965284824371338, -0.22801820933818817, 0.6917116641998291, -1.0762561559677124, 0.2422369420528412, 0.5192760229110718, 0.3026675283908844, -1.4560760259628296, -0.8622616529464722, -0.7293417453765869, -0.3099527359008789, -0.8445774912834167, 0.26301220059394836, 0.19091679155826569, -0.6939679384231567, -0.012391308322548866, -0.20930324494838715, 1.0093318223953247, -0.27716535329818726, 0.8902013301849365, 0.06320540606975555, -0.4008239507675171, 0.003034539520740509, 0.17148993909358978, 0.060588765889406204, -1.5566916465759277, 0.25042250752449036, -0.051687102764844894, -0.059167079627513885, -0.044469401240348816, 0.4487185776233673, 1.2057024240493774, 0.3841399550437927, -0.18764697015285492, 0.8317543268203735, 0.6390027403831482, -0.6748913526535034, -0.43731239438056946, 0.4022645056247711, 0.492590993642807, 0.4039310812950134, -0.3127852976322174, -0.15122941136360168, -0.011742017231881618, 1.2557721138000488, -0.44276198744773865, 0.3687899708747864, -0.15770934522151947, 1.1160154342651367, -0.20089776813983917, -0.15684086084365845, 0.7162041664123535, -0.7641870975494385, 0.1577548384666443, 0.9566478133201599, 0.10699491947889328, -0.47555088996887207, 0.2086414247751236, 1.502020239830017, -0.40335047245025635, -0.012570706196129322, -0.1875118464231491, 0.4179307818412781, -0.613853931427002, -0.038134437054395676, 0.27691373229026794, -0.7177712917327881, 0.10377170890569687, -0.33018985390663147, -1.2251551151275635, -0.42685455083847046, -0.7803847193717957, -1.0106706619262695, 0.3235541880130768, -0.9273558259010315, -0.6745839715003967, 0.7617321014404297, 0.09127259999513626, 0.10658041387796402, 0.06435088813304901, 0.3106776773929596, -0.03289977088570595, -0.05617431551218033, 0.874635636806488, -0.3192230463027954, 1.400316596031189, -0.12169138342142105, 0.16642075777053833, -1.4300740957260132, 0.015917113050818443, 0.03264256939291954, 0.21035560965538025, -0.1943221241235733, 0.06177695095539093, 0.6067206263542175, 0.02393663302063942, -0.6719284057617188, 0.15181629359722137, -0.4241684079170227, 0.4319802522659302, 0.013781839050352573, -0.11456017941236496, 0.22984349727630615, -0.14984102547168732, 0.8014810681343079, 0.14230692386627197, -0.5340328812599182, -0.1487705111503601, 0.35230574011802673, -0.4872981905937195, 0.8054841160774231, 0.2023446261882782, 0.6115027070045471, -0.4923569858074188, 0.13384748995304108, 0.11806041747331619, -0.013316693715751171, -0.19812379777431488, -0.3160353899002075, -0.18235677480697632, -0.200078547000885, -0.016268400475382805, -0.2824689447879791, -0.7238604426383972, 0.2953432500362396, -0.188467875123024, -0.6398076415061951, -0.43159744143486023, -0.3973378539085388, -0.5567381381988525, -0.8355562090873718, -0.34130367636680603, 0.4525015354156494, 0.31790632009506226, -0.06718955934047699, -0.34387895464897156, 0.05396614968776703, 0.16557493805885315, -0.25188499689102173, -0.8012185096740723, 0.15806110203266144, 0.9409891366958618, 1.2439619302749634, 0.21333886682987213, 0.43664732575416565, -0.4758268892765045, 0.1581675112247467, -0.24304720759391785, -0.20483331382274628, -0.49936383962631226, 0.013462400995194912, -0.67444908618927], [-0.6637035012245178, 1.7007256746292114, -2.3865151405334473, 0.32818448543548584, 0.8187966346740723, 0.5280167460441589, 1.3297975063323975, 0.07123617827892303, 0.06926138699054718, -1.0074118375778198, -0.6623837351799011, -0.0642705038189888, 0.22880204021930695, 1.4889858961105347, 0.9916385412216187, -0.2626970112323761, 0.34339284896850586, -0.4731641709804535, 0.7226782441139221, 1.5794146060943604, 0.1695283055305481, -0.18701328337192535, 0.1691107302904129, -0.32420727610588074, -0.21882569789886475, -0.21595799922943115, -1.3381949663162231, -0.1654331535100937, -0.8849712610244751, -1.3606007099151611, 0.7144103646278381, -0.6924144625663757, -0.2549690306186676, -0.14266356825828552, -0.9713084697723389, -0.18139512836933136, 1.43259596824646, 0.9229257106781006, 0.46147215366363525, 0.08303559571504593, 1.4301130771636963, -0.09111737459897995, -0.3080030083656311, -1.1785413026809692, -0.03348304331302643, 0.010088006034493446, 0.3761616349220276, -0.6179434061050415, 0.34043970704078674, -0.9082162976264954, 0.5481278896331787, -0.6240735054016113, 0.9972012042999268, 1.6666818857192993, 0.7889511585235596, -0.13259761035442352, 0.6048007011413574, 0.02333826571702957, 1.0242124795913696, -0.3889000415802002, 0.021029815077781677, 0.42328429222106934, -0.11586099117994308, 0.11531757563352585, -0.20473924279212952, 0.49868282675743103, 0.3128296434879303, 0.2680668532848358, -0.3093874752521515, 0.06638378649950027, 0.08123498409986496, 0.22446948289871216, -0.537703812122345, 0.9080032110214233, -1.211835503578186, 1.0212814807891846, 0.4014967978000641, 0.671763002872467, 0.4804268777370453, 0.8602849245071411, -0.62863689661026, -0.30938103795051575, 0.4528465270996094, -0.27651447057724, 0.4506150186061859, -0.16216598451137543, 0.30583131313323975, -0.41630521416664124, -0.7829667925834656, 1.9846925735473633, 0.43609586358070374, -0.44423624873161316, 0.7777806520462036, -0.3820267915725708, -0.31580600142478943, -0.6343475580215454, 0.5032760500907898, -0.37979063391685486, -0.627795934677124, -0.46186015009880066, -0.7894115447998047, -0.9412638545036316, 0.4761228859424591, 0.15043123066425323, -0.4337927997112274, 1.5617594718933105, 0.02750977873802185, 0.3390207588672638, -0.5860256552696228, 0.1467439979314804, -0.35771825909614563, 0.2883647680282593, -0.2629537284374237, -0.9571811556816101, -0.7655080556869507, 1.0949143171310425, 1.541616678237915, -0.32508084177970886, 0.46022534370422363, 0.7891960740089417, 0.3849305808544159, -0.40356215834617615, 0.06012210249900818, 1.0313785076141357, 0.5522201657295227, -0.0010576192289590836, -0.017471401020884514, -0.6061480045318604, -0.45556142926216125, -0.17085951566696167, -0.0802687555551529, 0.011842574924230576, -0.024397658184170723, 0.9302688241004944, -0.5521960854530334, 1.1232845783233643, -0.11282506585121155, -0.5713887214660645, -0.09612950682640076, -0.5808862447738647, 0.5513085126876831, -0.05839720368385315, -0.2595866620540619, -0.3185345232486725, 0.48706966638565063, -0.8895366191864014, 0.32449302077293396, -0.3271481990814209, -0.18679915368556976, 0.30616047978401184, -0.5154644846916199, 0.3848057985305786, 0.4457091987133026, 0.5511382818222046, 0.5846165418624878, 0.4486847221851349, -0.47443023324012756, -0.060944050550460815, 0.5446040034294128, 0.3118634521961212, 0.5892691612243652, -0.02733546867966652, -0.49994727969169617, 0.5983694195747375, 0.3510884940624237, -0.18729938566684723, 0.47861239314079285, 0.28628799319267273, -0.1295674443244934, 0.942902147769928, -0.2755526602268219, -0.4415948688983917, 0.16468611359596252, 0.49222591519355774, -0.3527291417121887, -0.9437169432640076, 1.1870988607406616, -0.8096833229064941, -1.3928260803222656, -1.095729112625122, -0.5645040273666382, -0.7950483560562134, 0.2997433841228485, 0.048248738050460815, 0.7936709523200989, -0.4430103600025177, 0.42832568287849426, -0.31872525811195374, -1.0013223886489868, -1.0081336498260498, -0.518872082233429, -0.11333851516246796, -0.5760119557380676, 0.16042280197143555, -0.6203251481056213, -0.22567668557167053, 0.1412803679704666, -1.2850205898284912, -0.4755747616291046, 0.0498952716588974, -0.4310522675514221, -0.4732211232185364, -0.6876217722892761, 0.3901950418949127, -0.5804007649421692, 1.1854157447814941, -0.9848116636276245, 0.5014843940734863, -1.136102557182312, -0.032348595559597015, 1.021713376045227, -0.7841569185256958, -1.1100749969482422, 1.089048147201538, -0.15796591341495514, -1.1185827255249023, -0.23114325106143951, 0.037258174270391464, -0.2552216947078705, 0.06310746818780899, 0.2600458860397339, 0.3754599392414093, 0.6454477310180664, 0.5277140140533447, 0.2907443344593048, -0.03426109254360199, -0.510351300239563, -0.6018181443214417, -0.6181142926216125, 0.26030394434928894, -0.558214008808136, -1.184861183166504, 0.32710325717926025, -0.2632600963115692, -1.5075547695159912, -0.25017744302749634, -0.32372406125068665, 0.23889043927192688, 1.1028683185577393, 1.4764482975006104, 0.1877497434616089, 0.5859331488609314, -0.2567910850048065, -0.11529961228370667, -0.22712847590446472, 0.8601303696632385, 0.2550209164619446, -0.6624475121498108, -0.15984901785850525, 0.9701080918312073, 0.5540070533752441, -0.14058083295822144, 0.4943850636482239, -0.4299151301383972, -0.27897757291793823, -0.6333277225494385, -0.5912328958511353, 0.7425484657287598, -0.4898470938205719, 1.938425064086914, 0.2358751893043518, -1.4770673513412476, -0.5837336182594299, -0.08796724677085876, -0.04661395400762558, -0.2321997880935669, -0.7159615159034729, -0.26405125856399536, -0.24835672974586487, -0.17207422852516174, -0.10746804624795914, 0.5108724236488342, -0.36206433176994324, 0.45642781257629395, -0.4174301326274872, -0.5459164381027222, -0.3498539626598358, 0.6560912132263184, 0.18686729669570923, 0.5059537291526794, -0.061123237013816833, -1.1896928548812866, -0.30967211723327637, -0.3190576136112213, 0.7682330012321472, 0.03426172584295273, -0.3717350959777832, 0.01292475312948227, 0.18808989226818085, -0.8717504739761353, 0.3733397126197815, 0.3210924565792084, -0.5257514119148254, 0.029241446405649185, -0.10246456414461136, 0.8793328404426575, 1.1851855516433716, -0.8693889379501343, -0.9978488683700562, -0.9335677027702332, 0.9679273366928101, 1.0235551595687866, 0.5222618579864502, 1.35768461227417, 0.12199224531650543, 0.004372464492917061, -0.1558249592781067, -0.12526409327983856, -0.5142362713813782, -0.1541273146867752, -0.7309401035308838, -0.32709938287734985, 0.15540838241577148, -0.16325445473194122, 0.5508649349212646, 0.21666288375854492, 0.0640842542052269, 0.5432366728782654, 0.9532769918441772, 0.19675758481025696, -1.0740211009979248, -0.4234125316143036, -0.4582139551639557, -0.6203019618988037, 0.2929120659828186, 1.4165492057800293, -1.2824511528015137, -0.6921964883804321, 0.3328317105770111, 0.3030394911766052, 0.5272448658943176, 0.03777438774704933, 0.407549113035202, -1.8328111171722412, -0.802032470703125, -0.06182730197906494, 0.9422204494476318, 0.3129068911075592, 0.10061990469694138, -0.8792119026184082, 0.6839107275009155, 0.9753267168998718, 0.29535675048828125, -0.5647833943367004, 1.2838869094848633, -0.7639098167419434, -0.6296120285987854, 0.040802065283060074, -0.33171483874320984, 0.4395841956138611, -0.1541542112827301, -0.07852411270141602, -0.42613548040390015, -0.11642054468393326, -0.4183048605918884, 0.725654125213623, 0.0094398632645607, 0.7790040373802185, -0.11232996731996536, 0.031140822917222977, 0.7662431597709656, 0.5825857520103455, -0.6881747841835022, -1.3950735330581665, 0.4873746633529663, 0.7796107530593872, 0.781050980091095, 0.03359507396817207, -0.281901478767395, 0.5027554035186768, 0.36189448833465576, 0.689267098903656, 0.28617849946022034, 0.7472220063209534, 0.2132333219051361, -0.3843630850315094, -0.9098767638206482, 0.4234384000301361, -0.4116569757461548, -0.43929818272590637, -0.4151689410209656, 0.2604542076587677, -0.5352533459663391, -1.0592143535614014, 0.8988050222396851, 0.4168383479118347, -0.06551200896501541, -0.13625559210777283, -0.2003653645515442, 0.46070319414138794, 0.04864190146327019, 0.7055330276489258, -0.5162699222564697, 0.08295495808124542, 0.23523074388504028, -0.9576525688171387, -0.2843168377876282, -0.31433236598968506, 0.5122551918029785, 0.9809737801551819, -0.9731190204620361, 0.6596513390541077, -0.5289311408996582, 0.3775694668292999, 0.2736079692840576, -0.39195194840431213, 0.4394955635070801, 0.0909070149064064, -0.16670621931552887, -0.08235521614551544, -0.0330057255923748, 1.4392038583755493, -0.5409523844718933, 0.16121695935726166, 0.5640354752540588, 0.2256692796945572, -0.2766116261482239, -0.8885864019393921, -0.3540617823600769, 0.3211594223976135, -0.49589499831199646, 0.26861318945884705, 0.8174896240234375, -0.042585112154483795, 1.2810654640197754, 0.6742920279502869, 0.35420599579811096, 0.5299957990646362, 0.10632161051034927, -0.8095777034759521, 0.1092858761548996, 0.30461519956588745, -0.245682030916214, -0.23600278794765472, 0.019541004672646523, 0.6858992576599121, -0.9224509000778198, 0.5816776752471924, 0.4681817293167114, 0.4347721040248871, 0.7980743646621704, -0.16627494990825653, -0.5149189233779907, 0.912706196308136, 1.2264084815979004, 1.0556086301803589, 0.3409196138381958, -0.18850372731685638, -0.6889969110488892, 0.5669710636138916, -0.9366416335105896, -0.3157118260860443, 0.8144436478614807, 0.11650088429450989, 1.0240271091461182, -1.3323613405227661, 0.2242617905139923, -0.004324199631810188, 0.54398113489151, 0.6672683358192444, 0.3246696889400482, -0.4462765157222748, 0.12518998980522156, 0.3462200164794922, 0.6570059657096863, -0.1250687837600708, -0.027423087507486343, 0.3608214259147644, -0.6247666478157043, 0.2471420168876648, -0.731792151927948, 0.1314474195241928, -0.9519599676132202, -0.4504765272140503, -0.1104721650481224, -0.30810120701789856, -0.002063627354800701, 0.8588070869445801, 0.4856512248516083, 1.0032944679260254, -0.2756172716617584, -0.607537031173706, 0.2560024857521057, -0.8704848885536194, 1.1588736772537231, -0.5021655559539795, -1.1765834093093872, -0.43723243474960327, -0.6043171286582947, -0.3530527949333191, 0.20714624226093292, -0.3476372957229614, -0.6298576593399048, -0.7888908386230469, -1.136826515197754, 0.4064159691333771, 0.6055424809455872, 1.2615541219711304, 0.47079792618751526, 0.2095699906349182, 0.39963361620903015, 0.386752188205719, -0.4270440936088562, -0.044057365506887436, 0.5855367183685303, 0.42113161087036133, 0.2923419773578644, -1.0824958086013794, -0.5129514932632446, 0.39183205366134644, -0.053455159068107605, 0.06392760574817657, 0.4231188893318176, 1.0270802974700928, 1.3106739521026611, 0.12937748432159424, 0.1868867129087448, -0.029882367700338364, -0.6911647319793701, 1.0561248064041138, 0.6909815669059753, -0.26411446928977966, -0.045690178871154785, -1.1849188804626465, -1.4706088304519653, 0.7467874884605408, -0.5799452662467957, -0.6634688377380371, 1.5294253826141357, 0.6980526447296143, 0.6358637809753418, 0.12711557745933533, -0.4013309180736542, 0.2517581284046173, -0.02771984413266182, -0.21110700070858002, -0.9070370197296143, 0.04442242160439491, 0.2450111359357834, 0.027083760127425194, -0.540132999420166, 0.4130012094974518, -0.04709754139184952, -0.5648490190505981, 0.21363559365272522, -0.32628610730171204, 0.47101572155952454, 0.5723029375076294, 0.4137096703052521, -0.9200223088264465, -0.22592639923095703, -0.4148382544517517, -0.22537147998809814, -0.13010551035404205, 0.5603045225143433, 0.36917003989219666, -0.7769253849983215, -0.10816855728626251, -0.41896113753318787, -1.1431934833526611, 0.5468283891677856, -0.07569749653339386, 0.7496265172958374, 0.06206159293651581, 0.13966159522533417, -0.2825210690498352, -0.24755023419857025, -0.2094109058380127, -0.4568130075931549, 0.2811056077480316, 0.14386625587940216, -0.9061946272850037, 0.11472183465957642, -0.10360154509544373, -0.5680897235870361, -0.4321449100971222, -0.11606967449188232, 0.7453295588493347, -1.1810698509216309, -1.2464442253112793, -0.8097202777862549, 0.6265636086463928, 1.1778833866119385, -0.7738732099533081, 0.7371624708175659, 0.5346580743789673, -1.3899259567260742, 0.6939437985420227, -0.03249151632189751, -0.853168249130249, -0.05666273087263107, -1.1006358861923218, 0.8800273537635803, -0.48522791266441345, 0.13469228148460388, -0.7993419766426086, 1.3462624549865723, -1.9364935159683228, -0.6998382806777954, -1.035981297492981, 0.0339825265109539, 1.3280584812164307, 0.2642259895801544, -0.4991031587123871, 1.3823288679122925, 0.34372636675834656, -0.0548153780400753, -0.38615110516548157, 0.41394931077957153, -0.23970502614974976, 0.06299182027578354, 0.5343348383903503, 0.48697322607040405, 0.41927242279052734, 1.0737496614456177, -0.5033152103424072, 0.7401375770568848, -0.03522931784391403, 1.0120294094085693, -0.4106784760951996, -0.7411539554595947, 0.01339229941368103, 0.8186988830566406, -0.9233930110931396, -0.6849533319473267, 0.05028742179274559, -0.3635309040546417, -0.9495806694030762, 0.6838861107826233, 0.628710925579071, -1.097245216369629, 0.06900740414857864, -0.443460613489151, 0.27049505710601807, -1.128893256187439, 0.3578343093395233, 0.3655955493450165, -0.36912432312965393, -0.3070189356803894, 0.29058316349983215, -0.05059466511011124, -1.1131303310394287, 0.815642774105072, 0.008191651664674282, 0.19685699045658112, -1.0680562257766724, 0.5173951387405396, 0.40611782670021057, 0.08578859269618988, -0.5347012877464294, 1.0482321977615356, 0.5248112082481384, -0.08409784734249115, 0.19239258766174316, 0.06888725608587265, -0.3353995084762573, 0.5626688003540039, -0.37308424711227417, -0.30724477767944336, -0.7441048622131348, 1.4158215522766113, 0.11826534569263458, 0.46695661544799805, -0.3846327066421509, -0.26387742161750793, -0.6712406873703003, -0.05984823405742645, 0.5642603039741516, -0.401452898979187, 0.2451583594083786, 1.2354789972305298, 0.1796492040157318, -0.3276327848434448, 0.2771647572517395, 0.58309006690979, 0.47757676243782043, -0.7745482325553894, 0.1837855875492096, 0.44813239574432373, -0.5051047205924988, 0.33239954710006714, 0.5517258048057556, -0.47564393281936646, -0.3869697153568268, -0.3392046391963959, -0.7970567345619202, -0.25540414452552795, -0.709083616733551, -0.7945480942726135, 1.102787971496582, -0.8807238340377808, -0.9426085948944092, 0.7590022683143616, -0.11011920869350433, -0.4453219771385193, -0.2968994677066803, 0.1920308619737625, -0.17418444156646729, 0.020223896950483322, 0.775398313999176, 0.6053617000579834, 1.0583393573760986, -0.3361489176750183, 0.0561143197119236, -0.5046136379241943, -0.30377915501594543, 0.04923628643155098, 0.0664215087890625, -0.33609676361083984, -0.17360492050647736, 0.3352092504501343, -0.24437807500362396, -0.979496955871582, 0.18238963186740875, -0.3106496036052704, 0.7426689863204956, 0.16078180074691772, -0.8382653594017029, 0.5982644557952881, 0.5789128541946411, 0.08926781266927719, -0.08074686676263809, -0.7554231286048889, -1.320533037185669, 0.16831718385219574, -0.7133320569992065, 0.09502659738063812, -0.2946096360683441, 0.6254913806915283, 0.520075798034668, -0.02630133554339409, -0.32994192838668823, -0.47780147194862366, 0.25795358419418335, -0.6278437376022339, 0.04144622012972832, 0.13889473676681519, 0.3102087676525116, -0.13880927860736847, -0.4301035404205322, 0.4409535229206085, -0.018068574368953705, -0.18283788859844208, 0.3565342128276825, -1.1310495138168335, -1.0940556526184082, -0.7209709286689758, 0.24213163554668427, 0.894615113735199, 0.1568307727575302, 0.0716126561164856, 0.05613752081990242, -0.8952615857124329, 0.2688196003437042, 0.09090244024991989, 0.48534250259399414, 0.16077399253845215, 0.8049941062927246, 1.6036218404769897, -0.18651527166366577, 0.7537996172904968, -0.1702447086572647, 0.44508638978004456, -0.95538729429245, -0.6891893148422241, -0.6723147630691528, -0.2927860617637634, -0.4514232277870178], [0.07751896232366562, 1.7977232933044434, -2.1010799407958984, -0.651226282119751, 1.049600601196289, -0.11918643862009048, 1.7643197774887085, -0.6091006398200989, -0.21788553893566132, -0.5111470222473145, -0.5206667184829712, -0.525762140750885, 1.0882748365402222, 0.5904139280319214, -0.3193472623825073, 0.2952234447002411, 0.6611694693565369, -0.501270055770874, 0.4789320230484009, 0.9148319959640503, -0.022827208042144775, -0.34822070598602295, 0.3947288990020752, 0.3236476182937622, -0.8765907287597656, 0.05186789110302925, -0.9977331757545471, -0.417327880859375, -0.22014664113521576, -0.5909876227378845, 1.339623212814331, -0.8501608967781067, -0.04372161999344826, -0.15938177704811096, -1.2507538795471191, -1.1707589626312256, 1.9214189052581787, 0.7218552827835083, 0.5958361625671387, 1.6414713859558105, 2.164593458175659, 0.3109276294708252, -0.05934838950634003, -1.6571440696716309, 0.31821104884147644, -0.4587549567222595, 0.5705660581588745, -0.82591313123703, 0.7227715849876404, -1.0266239643096924, 0.08931706845760345, 0.357223778963089, 0.5398138165473938, 0.8241189122200012, 0.36752697825431824, 0.04128119349479675, 0.04131292179226875, 0.34373748302459717, 0.9577665328979492, -0.7271559238433838, 1.2689744234085083, 0.23410286009311676, -0.5487064123153687, 0.8380781412124634, 0.01516583189368248, -0.2710643410682678, 0.44370487332344055, 0.37931308150291443, -0.15398253500461578, -0.35212913155555725, 0.2756285071372986, 0.25198495388031006, -0.2246585488319397, 0.8740108013153076, -1.622466802597046, 0.6136085987091064, 0.6335726976394653, 0.7803061604499817, 0.5472269058227539, 0.7913123369216919, 0.06418313831090927, 0.024135200306773186, 0.13052520155906677, -0.34222766757011414, 0.353927880525589, -0.21690724790096283, 0.20007704198360443, -0.3556174337863922, -0.3969375789165497, 1.1566439867019653, 0.6447409987449646, -0.081871896982193, 1.2435299158096313, -0.009215075522661209, -0.4487513601779938, -0.10314817726612091, 0.6724830865859985, -0.21976801753044128, -0.955265998840332, -1.3461166620254517, -0.6375072598457336, -0.5497205853462219, -0.055310316383838654, 0.207215815782547, -0.10134238004684448, 1.2711572647094727, 0.29725247621536255, 0.46504542231559753, -1.0862209796905518, -0.16347648203372955, -0.33786749839782715, 0.03154011815786362, -0.904299259185791, -0.9810810685157776, -0.6250104308128357, 0.8669653534889221, 1.1351641416549683, 0.16816362738609314, 0.576955258846283, 1.1154204607009888, -0.6878744959831238, -0.1150607168674469, -0.7272529602050781, 1.03762686252594, 0.9216739535331726, 0.39809656143188477, -0.4955497086048126, -0.4171392619609833, 0.3831782341003418, 0.32373955845832825, 0.04949235916137695, -0.2358952760696411, -0.05226286128163338, 1.0584721565246582, -0.826189398765564, 0.7984981536865234, -0.7575187683105469, -0.20412740111351013, -0.12597998976707458, -0.3680588901042938, 0.4036787748336792, 0.2611876130104065, 0.03653235360980034, -0.14609305560588837, 0.5384759902954102, -0.38722237944602966, -0.7296189069747925, -0.20176026225090027, -0.8991214632987976, -0.3250530958175659, -1.0339261293411255, 0.771094799041748, 0.2037852704524994, 0.47416073083877563, -0.06169553101062775, -0.47800344228744507, -0.3441741168498993, 0.5864882469177246, 0.327536940574646, 0.046530548483133316, 0.6337040662765503, -0.2638411223888397, -1.0560479164123535, 1.2512599229812622, 0.2723676264286041, -0.026280568912625313, 0.4037887454032898, 0.6988742351531982, -0.17341211438179016, 0.6367783546447754, -0.8345121145248413, -0.6183907985687256, -0.14348483085632324, 0.5801847577095032, 0.3050764799118042, -0.21540898084640503, 1.8180794715881348, -0.5379396677017212, -0.960785984992981, -1.1625114679336548, 0.5835123062133789, -0.7393796443939209, 0.2670895755290985, 0.07615690678358078, 0.6433887481689453, -0.6297392845153809, 0.3899100124835968, -0.35717064142227173, -0.1828560084104538, -0.8005896806716919, -0.18387742340564728, -0.7156164646148682, -1.3867149353027344, 0.30350688099861145, -0.043896935880184174, -0.18827377259731293, 0.4433799684047699, -1.4627045392990112, -1.0235426425933838, -0.5147886872291565, -0.8563075661659241, -0.22335827350616455, -1.1434738636016846, 0.4049607515335083, -0.5245265364646912, 0.441001296043396, -1.108491063117981, 1.1411759853363037, -0.4996413290500641, 0.1282995492219925, 0.43950286507606506, 0.11483760923147202, -0.37948140501976013, 1.1112680435180664, -0.2422964870929718, -1.2117247581481934, 0.3948119878768921, 0.3905003070831299, -0.5059855580329895, 0.33084410429000854, 0.2864317297935486, 0.262359619140625, 0.2527591288089752, 0.31962281465530396, 0.18542788922786713, -0.09066673368215561, -0.9012690186500549, -0.9810894131660461, -0.7271952033042908, 0.24117983877658844, -0.4181707203388214, -1.1676990985870361, 1.3148678541183472, 0.19247184693813324, -1.0568304061889648, 0.14438125491142273, 0.03775244951248169, 0.06970442831516266, 0.5173952579498291, 1.3771355152130127, 0.0839790403842926, 0.12706917524337769, -0.728359043598175, 0.17030119895935059, -0.19872355461120605, 0.2653282880783081, 0.6472654938697815, 0.14678724110126495, -0.22126567363739014, 1.870622158050537, 0.4604923725128174, 0.09926130622625351, 0.6692515015602112, -0.2870180308818817, 0.14353221654891968, -1.082640290260315, -0.4845883548259735, 0.5171607136726379, -0.23551040887832642, 1.3235771656036377, 0.4235452115535736, -0.4032765030860901, -0.3595193326473236, -0.04734128713607788, -0.19000940024852753, -0.7185701727867126, -0.5349868535995483, -0.9839931726455688, -0.14844349026679993, -0.29880860447883606, -0.2883364260196686, 0.2389523983001709, 0.19803977012634277, -0.1700509786605835, -0.49019855260849, -0.1370764523744583, -0.7219967842102051, 0.4515746235847473, 0.002209804719313979, 0.1832411140203476, 0.19566287100315094, -1.5630587339401245, -0.4136539101600647, -0.32942238450050354, 1.087256908416748, -0.13923993706703186, -0.24225136637687683, -0.05221359804272652, 0.6950315833091736, -0.4386672079563141, 0.29660964012145996, -0.03107461892068386, -0.2694845199584961, -0.06897912174463272, 0.20827873051166534, 1.0635559558868408, 0.9426984786987305, -1.0578012466430664, -0.4829692840576172, -0.09055577963590622, 0.5187904834747314, 1.3334516286849976, 0.7888511419296265, 1.3909528255462646, 0.21361882984638214, -0.17657054960727692, -0.7679224014282227, -0.5248709321022034, -1.3652983903884888, -0.8379742503166199, -0.759193480014801, -1.0448557138442993, -0.1004769578576088, -0.7143672704696655, 0.21834486722946167, 1.1143831014633179, 0.0877099558711052, 0.594983696937561, 1.1372867822647095, -0.29094940423965454, -0.9720523357391357, -0.4928644597530365, 0.044407524168491364, -1.505242109298706, 0.6695809960365295, 1.39644193649292, -1.3002318143844604, 0.03338072448968887, -0.1799091100692749, 0.307654470205307, 0.8943665027618408, -0.2744368016719818, 0.24565204977989197, -1.0822455883026123, -0.7982931733131409, 0.0577695406973362, 1.2529748678207397, -0.03759562596678734, 0.1258087158203125, -0.735115647315979, 0.4347779154777527, 0.8526126146316528, -0.740935742855072, -0.8692218065261841, 1.0831329822540283, -0.00018689234275370836, -0.4022964835166931, 0.4544698894023895, 0.9109523892402649, 0.6020541787147522, -0.6256023645401001, -0.4158598780632019, -0.42483314871788025, -0.35544219613075256, -0.008345923386514187, 0.6133602261543274, -0.15737418830394745, 0.6024994850158691, 0.05634745955467224, -0.640777587890625, 0.5420078635215759, 0.23138172924518585, -0.09158676862716675, -1.423888087272644, 0.5117610096931458, 0.5247076749801636, 1.5480163097381592, -0.1405440866947174, 0.4716479182243347, 0.18168441951274872, -0.08004124462604523, 0.36560726165771484, 0.8787897229194641, 1.1581556797027588, 0.2341616451740265, -0.2880041301250458, -0.5638227462768555, -0.26161709427833557, 0.2605231702327728, -0.6733131408691406, -0.05225757136940956, 0.5923771858215332, -0.6329696774482727, -0.7688047885894775, 1.4893429279327393, 0.5047577619552612, -0.5094910264015198, -0.6210034489631653, -0.056588996201753616, 0.7228673100471497, -0.226253941655159, 0.9568292498588562, -1.2224245071411133, -0.21531599760055542, 0.08938505500555038, -0.8669859170913696, -0.27653518319129944, 0.7059153318405151, 0.571387767791748, 0.3903115391731262, -0.7705841064453125, -0.18625201284885406, -0.6172322034835815, 0.8121514320373535, 0.5164434909820557, -0.5564740896224976, -0.24662351608276367, 0.30363526940345764, -0.06864877045154572, 0.30545976758003235, -0.16890665888786316, 1.2771295309066772, 0.010920120403170586, 0.015738865360617638, 0.33235427737236023, 0.32227325439453125, -0.4629139304161072, -0.8828058242797852, -0.464658260345459, -0.007519536651670933, -0.3780921697616577, -0.17413097620010376, -0.013748914003372192, -0.22715868055820465, 1.1399612426757812, 0.5523712635040283, 0.3017023503780365, 0.9158594012260437, 0.4404948055744171, -1.297515630722046, 0.9942989945411682, 0.7343222498893738, 0.18603943288326263, -0.602694571018219, -0.14832031726837158, 0.6999706625938416, -0.22911246120929718, 0.1851232647895813, 0.393619567155838, 0.6913111209869385, 0.06419617682695389, 0.6227160692214966, -0.1224411204457283, 0.3608107268810272, 0.6935603022575378, 1.3559513092041016, 0.21516138315200806, -0.3642542064189911, -0.9627477526664734, 0.7175869345664978, -0.7889348268508911, 0.012149892747402191, 0.9106942415237427, -0.05786523595452309, 1.397200345993042, -1.420100212097168, -0.2612314820289612, 0.1733289361000061, 0.34259238839149475, 1.0484833717346191, 0.38529837131500244, -0.6056232452392578, -0.32398882508277893, 0.8847377896308899, 0.6388481259346008, -0.5617140531539917, 0.3056098520755768, 0.053737930953502655, -0.37333133816719055, 0.07529834657907486, -0.9954456686973572, 0.7210219502449036, -0.2791910171508789, -0.486439973115921, -0.43895602226257324, -0.08057796210050583, 0.3655736446380615, 0.5399532914161682, 0.010409015230834484, 1.0867373943328857, -0.8938111662864685, -0.6651583313941956, 0.16240927577018738, -0.5973180532455444, 0.308951735496521, -0.3642938435077667, -0.4596790373325348, -0.9291232228279114, -0.9027621746063232, 0.11728242039680481, 0.4854596257209778, -0.3500397205352783, 0.08683312684297562, -0.5073877573013306, -0.9508514404296875, -0.22299253940582275, 0.9001222252845764, 1.3355718851089478, 0.819131076335907, 0.058433711528778076, 1.2009543180465698, 0.5210229158401489, -0.8843587636947632, -0.15785185992717743, 0.024346256628632545, 0.024107761681079865, 0.47834882140159607, -1.4971706867218018, -0.2853492498397827, -0.4192417860031128, 0.6779986619949341, -0.06275128573179245, 0.4106403887271881, 1.214638113975525, 1.064682126045227, -0.22012506425380707, -0.28411635756492615, 1.3603992462158203, -0.44789403676986694, 0.39583835005760193, 0.6237689852714539, -0.14545346796512604, -0.4737789034843445, -0.4398036003112793, -1.4166842699050903, 0.8200786709785461, -0.39593127369880676, -0.7696369886398315, 0.8158159255981445, 0.06513012945652008, 0.6116169691085815, 0.5766733884811401, -0.25613442063331604, 0.36970487236976624, 0.6100634336471558, -0.5185285806655884, -1.1987683773040771, -0.08170410990715027, 0.3360097408294678, -0.24309173226356506, -0.5614492893218994, -0.13116800785064697, 0.03510770946741104, -0.32922571897506714, 0.7905790209770203, -0.23862336575984955, 0.8732922077178955, 0.4360349476337433, 0.3812786936759949, -1.2244510650634766, 0.12988080084323883, -0.8935166597366333, -0.5775204300880432, 0.3395279049873352, 0.10835941880941391, -0.1598566174507141, -0.47522154450416565, -0.1320987492799759, -0.19097547233104706, -0.4078119993209839, -0.13527612388134003, -0.845443069934845, 0.35979893803596497, 0.6523148417472839, 0.02152063511312008, -0.005448400042951107, -0.4053017199039459, -0.22438843548297882, -0.06918862462043762, 0.24832212924957275, 0.2686957120895386, -1.5360534191131592, -0.02076854184269905, 0.24118390679359436, -0.19498808681964874, 0.14623986184597015, -0.07181017100811005, 0.041515596210956573, -1.4518110752105713, -1.3307112455368042, -0.412224680185318, -0.12160429358482361, 0.8049795031547546, -0.6722795963287354, 0.45678865909576416, 1.0771644115447998, -1.4387696981430054, 0.2626131474971771, 0.11186513304710388, -1.2860416173934937, 0.19032366573810577, -1.0764031410217285, 1.6593692302703857, -0.0729701891541481, 0.18907921016216278, -0.017907453700900078, 1.5119249820709229, -1.070185661315918, -1.9404162168502808, -0.6143467426300049, 0.22575923800468445, 0.36534494161605835, 1.2210179567337036, -0.3967534303665161, 0.7608062624931335, 0.2932778000831604, -0.49741148948669434, -0.5568342208862305, -0.13079477846622467, -0.6211526989936829, 0.18419276177883148, 0.12888650596141815, 0.07333313673734665, -0.1111832857131958, 1.2538094520568848, -0.7738078832626343, 0.9626047015190125, -0.28403031826019287, 1.373360276222229, -1.07064688205719, -0.03971634432673454, 0.08875935524702072, -0.1610732525587082, -1.845482349395752, -0.9228342175483704, -0.37797147035598755, -1.0987523794174194, -1.0221912860870361, 0.4490092396736145, 0.9288718700408936, -0.7705737352371216, -0.13815972208976746, 0.0035650022327899933, 0.6465465426445007, -0.7516486644744873, -0.19187355041503906, -0.33456218242645264, -0.2301989495754242, -0.14225272834300995, 0.07263778895139694, 0.06410261988639832, -1.8279838562011719, -0.03748396411538124, -0.06948945671319962, 0.5908015370368958, -0.8705703616142273, 1.0045056343078613, 0.6404666900634766, -0.2562195360660553, -0.2903819680213928, 1.5720796585083008, 1.1207557916641235, -0.5934395790100098, -0.6211232542991638, 0.2510676980018616, 0.24617543816566467, 0.33426642417907715, -0.7571740746498108, -0.22137565910816193, -0.7618677616119385, 0.7470279932022095, 0.7277352213859558, -0.004366337787359953, -0.19050081074237823, 0.16965197026729584, -0.22512540221214294, -0.3216019868850708, 0.39540815353393555, -0.4001765847206116, -0.027501018717885017, 1.1302410364151, 0.39028966426849365, -0.6682755351066589, 0.44308972358703613, 0.48969948291778564, 0.4293748140335083, -0.44999775290489197, 0.22150641679763794, 0.6571770906448364, -0.5557937622070312, 0.28253763914108276, -0.14215205609798431, -0.44472774863243103, 0.641338050365448, -0.5087975859642029, -1.1024249792099, -0.8336639404296875, -0.8279299139976501, -0.4536426365375519, 0.9639500379562378, -1.5626697540283203, -0.7709254026412964, 0.1718084216117859, -0.6619024276733398, -0.31339603662490845, -0.17411230504512787, 0.26834022998809814, 0.07352060824632645, 0.280988484621048, 0.9948031306266785, -0.447762131690979, 0.798932671546936, 0.4864421784877777, 0.24602089822292328, -0.9215642213821411, -0.6206955909729004, -0.04699009656906128, 0.29279017448425293, -0.09543681889772415, -0.005778157152235508, 0.2133270502090454, 0.15032213926315308, -0.9809864163398743, 0.03593160957098007, 0.23510082066059113, 0.5841860175132751, -0.4694804847240448, -0.1221945732831955, -0.19082817435264587, 0.15382172167301178, 0.47122207283973694, -0.7341670393943787, -0.6873922348022461, -0.735636293888092, 0.20799826085567474, -0.5545041561126709, 1.0561332702636719, -0.3970724642276764, 0.7284930348396301, 0.6552299857139587, 0.009657197631895542, -0.4753035008907318, -1.0068058967590332, 0.3660348355770111, -0.3012502193450928, 0.3216458857059479, -0.3471258580684662, 0.06801556050777435, 0.5603521466255188, -0.8083605170249939, 2.7161557227373123e-05, 0.12969152629375458, -0.361832857131958, -0.1498095840215683, -1.408921718597412, -0.2432428002357483, -0.6891947984695435, 0.4357132017612457, 0.6584073305130005, 0.060239266604185104, 0.6793023347854614, -0.499919056892395, -0.703424334526062, 0.41027817130088806, 0.1789795458316803, 0.2830978035926819, 0.6116890907287598, 1.3623830080032349, 1.8860934972763062, 1.1128922700881958, 0.42588895559310913, -0.4421645402908325, 0.12991611659526825, 0.130050927400589, 0.08499003946781158, -0.44799983501434326, 0.30110323429107666, 0.18467149138450623], [0.4371892213821411, 1.661475658416748, -2.377044439315796, 0.4390822947025299, 0.41083505749702454, 0.43149980902671814, 1.0915685892105103, -0.26938384771347046, 0.04312105476856232, -0.11570963263511658, -0.2649323344230652, 0.13379725813865662, 0.40417569875717163, 1.014714241027832, 0.8458701372146606, 0.7697651386260986, 0.6814728379249573, -0.22779342532157898, 0.21059037744998932, 1.039236307144165, -0.4741603136062622, -0.5897632241249084, -0.02005842514336109, -0.34060534834861755, -0.31426265835762024, 0.19146370887756348, -0.7063599824905396, -0.6174733638763428, -1.048465609550476, -0.7137428522109985, 0.14647138118743896, -0.19227871298789978, -0.527122974395752, -0.39056140184402466, -1.7186384201049805, -0.23399761319160461, 1.6278035640716553, 1.3173900842666626, 1.0977520942687988, 0.27615660429000854, 1.6104474067687988, -0.46834462881088257, 0.28472191095352173, -1.0829124450683594, 0.3050652742385864, -0.7988900542259216, 0.36959347128868103, -0.17809665203094482, -0.2871244549751282, -0.35862281918525696, 0.41729283332824707, -1.3409096002578735, 0.5814599394798279, 0.8124227523803711, 0.7186456322669983, -0.7022855281829834, 0.18066386878490448, -0.4567066729068756, 0.8777095675468445, -0.3710193634033203, 0.6487497687339783, -0.05307704582810402, -0.46988385915756226, 1.0341495275497437, 0.5579055547714233, -0.06187267228960991, 0.22095996141433716, 0.3306306302547455, -0.30159732699394226, 0.26046961545944214, 0.4748038947582245, -0.012854378670454025, -0.1753428429365158, 0.30404430627822876, -0.5130133032798767, 0.6872198581695557, 0.4009963572025299, 0.9810280203819275, 0.8007071614265442, 0.8405884504318237, -0.9633296132087708, -0.180376335978508, 0.756813645362854, -0.5397700071334839, 0.3348028063774109, -0.24061895906925201, 0.8741122484207153, -0.3116324543952942, -0.3307711184024811, 1.7386689186096191, 0.24358788132667542, -0.36906954646110535, 0.9183807373046875, -0.3232983946800232, -0.17829686403274536, -0.8339889049530029, -0.1975134164094925, -0.2397598773241043, -0.8530336022377014, -0.8137603998184204, -0.45870134234428406, -0.5349097847938538, -0.23792116343975067, -0.26043835282325745, -0.3419091999530792, 1.1433820724487305, 0.7969372868537903, -0.12006743252277374, -0.2670154869556427, 0.0026922281831502914, 0.19829760491847992, 0.5430999994277954, -1.146454095840454, -1.3412840366363525, -0.6700453162193298, 0.970558762550354, 1.087365746498108, -0.5280541181564331, 0.18970049917697906, 0.6865212917327881, 0.25363609194755554, -0.3219020664691925, -0.11171522736549377, 0.37864965200424194, 0.24927058815956116, 1.1331727504730225, -0.8079249262809753, 0.25676319003105164, -0.02375662699341774, 0.0009640492498874664, 0.15273740887641907, 0.21464288234710693, -0.07928547263145447, 0.8806468844413757, -1.0242228507995605, 1.7097113132476807, -0.365975946187973, -0.3339317739009857, -0.1043371632695198, -0.24230210483074188, 0.3622063994407654, 0.44708016514778137, 0.05141008272767067, -1.1345990896224976, -0.3368745744228363, -0.37128281593322754, -0.19215427339076996, -0.7205889821052551, -0.3686985671520233, 0.3737620711326599, -0.8997673392295837, 0.5790573954582214, 0.14106270670890808, 1.1848739385604858, 0.5529177188873291, 0.1858493536710739, -0.19471928477287292, 0.3066311776638031, 0.5695321559906006, 0.005930006504058838, 0.3418267071247101, 0.23066379129886627, -0.9329491257667542, 0.11187565326690674, -0.21297621726989746, -0.4242057502269745, 0.022150307893753052, 0.7512807250022888, -0.18744884431362152, 0.7952163815498352, -0.4840039908885956, -0.41377753019332886, -0.330636590719223, 0.40070822834968567, -0.10162504017353058, -0.7479145526885986, 0.7683629989624023, -0.4016847312450409, -1.4263672828674316, -1.2533798217773438, -0.07613498717546463, -0.09672868996858597, 0.3619052469730377, -0.4220311641693115, 0.14334721863269806, -0.30255305767059326, 0.6996147632598877, -0.4001043140888214, -0.3976806104183197, -0.47888654470443726, -0.6166446805000305, 0.6016093492507935, -0.2601591944694519, 0.3710037171840668, -0.6538787484169006, -0.7318618893623352, 0.7859510779380798, -0.5887818932533264, -0.11752931028604507, -0.1477111130952835, -0.4510343074798584, -0.30054253339767456, -0.3582346737384796, 0.5556340217590332, 0.08668061345815659, 1.1731051206588745, -0.8745073676109314, 0.3442675471305847, -0.7724305987358093, -0.35157889127731323, 1.2108228206634521, -0.1530923843383789, -0.5705390572547913, 0.6110981106758118, 0.025684097781777382, -1.5276161432266235, -0.1752433031797409, -0.023386275395751, -0.06221776455640793, 0.4989790618419647, 0.09890661388635635, 0.2117273211479187, 0.6751031875610352, 0.1659744530916214, 0.4062251150608063, -0.47096678614616394, -0.6845802664756775, -0.3921346962451935, -0.5737864375114441, 0.0857492983341217, -0.3524564802646637, -1.3748337030410767, 0.4682644009590149, 0.08957680314779282, -1.0126110315322876, 0.1035998985171318, 0.4344770610332489, 0.3573513329029083, 0.5854697823524475, 1.0707626342773438, 0.4319927394390106, 0.4658239483833313, -0.9812319874763489, 0.38057827949523926, -0.6536182165145874, 0.3419554829597473, 0.593890905380249, -0.1805437058210373, -0.08294493705034256, 0.9323785305023193, 0.8893833756446838, 0.5137167572975159, 0.5069369673728943, -0.17978009581565857, 0.009607713669538498, -0.06359638273715973, -1.0874077081680298, -0.1758544147014618, 0.28619900345802307, 1.3957722187042236, 0.27721452713012695, -0.6236829161643982, -0.29633694887161255, -0.19882197678089142, -0.4772051274776459, -0.37521892786026, -0.6704486012458801, -0.029799705371260643, -0.01034353394061327, 0.2621167004108429, 0.0779096856713295, 0.8618874549865723, 0.10849738866090775, 0.5698651075363159, -0.8762120008468628, -0.622992217540741, -0.7174031138420105, 0.6214998960494995, 0.19030776619911194, 0.628092348575592, -0.06072033569216728, -1.2565935850143433, -0.2945958077907562, 0.05220484361052513, 0.8382187485694885, -0.3759606182575226, -0.3472156822681427, 0.41520100831985474, 0.5302926898002625, -0.8921688795089722, 0.2107401043176651, 0.34068185091018677, -0.5028267502784729, 0.15040242671966553, -0.10222359746694565, 0.6522201299667358, 0.8974140882492065, -0.01630724035203457, -0.33425506949424744, -0.8139417767524719, 0.48008573055267334, 1.2399760484695435, 0.6792740821838379, 1.4418091773986816, 0.05739225819706917, -0.12855663895606995, -0.0236519742757082, -0.7190611958503723, -0.5723891854286194, -0.8083822727203369, -0.6647385358810425, -0.527093768119812, -0.20947091281414032, 0.0720704197883606, 0.08346541225910187, 0.5338762998580933, -0.11794256418943405, -0.253262460231781, 1.5509215593338013, -0.1265431046485901, -0.3439299762248993, -0.010403095744550228, -0.24444012343883514, -0.974544882774353, 0.05765283852815628, 0.9072514176368713, -1.3117331266403198, -0.18551582098007202, 0.03327363729476929, -0.4674417972564697, 0.19447822868824005, -0.0787365734577179, 0.6011629104614258, -1.2586363554000854, -1.0817582607269287, -0.47783344984054565, 1.289231538772583, 0.3923042416572571, -0.2871851325035095, -0.5176385045051575, 0.41432225704193115, 0.6107416749000549, -0.247104212641716, -0.48044124245643616, 0.6038601994514465, -0.24586515128612518, -0.8610657453536987, 0.007407700642943382, 0.1665600687265396, 0.2338823825120926, -0.22317299246788025, -0.6015455722808838, -0.09627944976091385, -0.5406257510185242, 0.42384013533592224, 0.9199027419090271, -0.06352189183235168, 1.3293346166610718, 0.014895947650074959, -0.3137485086917877, 0.4385816752910614, 0.4184914231300354, 0.04449902102351189, -1.2170703411102295, 0.7283807992935181, 0.493449330329895, 1.3706642389297485, 0.4340198338031769, 0.054574184119701385, 0.21413195133209229, -0.0002613849937915802, 0.13069860637187958, 0.5049988031387329, 0.4924789369106293, -0.022370601072907448, -0.23039019107818604, -0.46931102871894836, -0.21866539120674133, 0.18829236924648285, -0.3355458080768585, -0.14457076787948608, 0.6026008725166321, -0.861447274684906, -1.1609327793121338, 1.055642008781433, 0.027626128867268562, -0.008997729048132896, -0.6053112149238586, -0.20952168107032776, 0.5811936855316162, -0.3414541780948639, 0.3574399948120117, -0.20358826220035553, 0.5044419169425964, 0.4978194534778595, -1.0510729551315308, -0.016618821769952774, 0.17188285291194916, 0.29461362957954407, 0.5328465104103088, -0.6570487022399902, 0.24897480010986328, -0.14083844423294067, 0.8856539130210876, 0.43799832463264465, 0.23236121237277985, 0.6470242738723755, 0.20653773844242096, -0.4633660614490509, -0.09267659485340118, 0.10749657452106476, 0.07792684435844421, -0.8950117230415344, 0.09793072938919067, 0.2956176996231079, 0.32262712717056274, -0.1435777097940445, -0.5233262181282043, -0.17879197001457214, 0.38163790106773376, -0.18786314129829407, 0.1246807798743248, -0.13753792643547058, -0.40042170882225037, 0.7493677735328674, 0.9072067737579346, 0.08976400643587112, 0.1978553682565689, 0.07125283777713776, -1.2068296670913696, 0.18475519120693207, 0.6339576840400696, -0.36049574613571167, -0.6806676983833313, 0.34871843457221985, -0.36035382747650146, -0.43686360120773315, 0.1992424726486206, 0.5986469388008118, 0.938836932182312, 0.5693086385726929, -0.46332621574401855, -0.20074142515659332, 0.19203856587409973, 0.9546746611595154, 0.9810627102851868, 0.21092489361763, -0.8134545087814331, -0.8297774791717529, 0.40151336789131165, -0.6760917901992798, -0.07653128355741501, 0.8808324933052063, 0.34542855620384216, 1.2920444011688232, -1.2061368227005005, -0.08704029023647308, 0.5315240621566772, 0.12776505947113037, 0.5322477221488953, 0.6203988194465637, -0.45033901929855347, -0.2997923195362091, 0.5567781329154968, 0.49005141854286194, 0.14920254051685333, -0.702275276184082, 0.6335280537605286, -0.04760773107409477, 0.2174171358346939, -0.7534719109535217, 0.3854354918003082, -0.6209215521812439, -0.09526975452899933, 0.06392918527126312, -0.7872578501701355, -0.42356038093566895, 0.661830484867096, 0.67030930519104, 1.672114610671997, -0.26714888215065, -0.9562767148017883, -0.12698979675769806, -0.7435645461082458, 0.6222596764564514, 0.0844985842704773, -0.5000082850456238, -0.4867739677429199, -0.3540239632129669, -0.42771607637405396, 0.5748295783996582, -0.16359412670135498, -0.2470172792673111, -0.4738348126411438, -1.345848560333252, 0.3574772775173187, 0.8106135725975037, 1.2332426309585571, 0.5869881510734558, -0.29161596298217773, 0.161491259932518, 0.3053204417228699, -0.6484389901161194, -0.6270902752876282, 0.4774293899536133, -0.35127881169319153, 0.4939759075641632, -0.7401362657546997, -0.5383473038673401, 0.8327235579490662, 0.5009738206863403, 0.2040737271308899, 0.8748100996017456, 0.9697779417037964, 1.2656339406967163, -0.6741951107978821, -0.1288994699716568, 0.3018859028816223, -0.525715708732605, 0.8194592595100403, 0.9401716589927673, -0.36017000675201416, -0.4693034291267395, -0.7152533531188965, -1.4119716882705688, 0.5099008679389954, 0.24681851267814636, -0.9435713887214661, 0.956038773059845, 0.4957013726234436, 0.814041018486023, 0.21577902138233185, -0.9194790124893188, 0.23743796348571777, 0.0501774400472641, -0.41961637139320374, -0.9415938258171082, 0.47470447421073914, -0.33107802271842957, -0.25438058376312256, -0.21866855025291443, -0.17223945260047913, 0.24514201283454895, -0.04042484238743782, -0.02235446684062481, 0.6371036171913147, -0.05254777893424034, 0.9037451148033142, 0.3339006304740906, -0.31093379855155945, 0.5304771661758423, -0.04705040156841278, -0.35868266224861145, -0.3089483082294464, 0.4787878692150116, 0.30085891485214233, 0.4943445920944214, -0.20399776101112366, -0.42484021186828613, -0.007543323561549187, -0.2042694091796875, -0.03328153118491173, 0.5497735142707825, 0.6584165692329407, -0.08431144803762436, -0.021221421658992767, -0.32552579045295715, 0.2018585205078125, -0.5945561528205872, 0.7094797492027283, 0.2629420757293701, -1.0615078210830688, 0.08078254014253616, 0.09836665540933609, -0.9894396662712097, -0.23817184567451477, -0.39305946230888367, -0.6180911064147949, -1.0855122804641724, -1.5457336902618408, -0.31908440589904785, -0.09306056797504425, 0.6090816855430603, -0.5967820286750793, 1.1215558052062988, 0.035524286329746246, -1.4591526985168457, 0.2037203311920166, 0.5590826272964478, -1.074808955192566, -0.07727965712547302, -1.2719531059265137, 0.43240708112716675, -0.2777896225452423, 0.5564407110214233, -0.28843769431114197, 0.5763048529624939, -1.6420472860336304, -1.3666218519210815, -0.8084135055541992, 0.2123420387506485, 0.671782910823822, 0.7060073018074036, -1.612524151802063, 0.7899671792984009, 0.8435255885124207, -0.36969003081321716, 0.030210062861442566, 0.4296652674674988, -0.30682677030563354, -0.09640088677406311, 0.2678671181201935, 0.7206534147262573, -0.13344472646713257, 1.0331580638885498, 0.22044873237609863, 1.2353973388671875, -0.2750314474105835, 1.0865484476089478, -1.2205601930618286, -0.3856698274612427, 0.30084899067878723, 0.5298942923545837, -1.2955418825149536, -0.6948431134223938, -0.11959651112556458, -0.26591306924819946, -0.8562793135643005, 0.3797209858894348, 0.571865439414978, -0.6599071621894836, -0.25379815697669983, -0.33871597051620483, 0.3806435167789459, -1.0420018434524536, 0.482755184173584, -0.09194725751876831, -0.12494951486587524, -0.480916291475296, 0.30774763226509094, -0.3562864363193512, -1.1270439624786377, 0.1445922702550888, -0.04760837182402611, 0.14439469575881958, -0.9900294542312622, 0.7614049911499023, 0.7573586702346802, 0.4789404571056366, -0.3028312623500824, 1.2117618322372437, 0.5216541886329651, -0.179103821516037, -0.11364976316690445, 0.4015950858592987, -0.44655001163482666, 0.1517186462879181, -0.5233114361763, 0.11906398832798004, -0.7370035648345947, 1.537969946861267, -0.10588452965021133, 0.4885120391845703, 0.31519797444343567, 0.25051024556159973, -0.410075843334198, -0.3425499498844147, 0.5939905047416687, -0.9059080481529236, -0.3726997971534729, 1.1064763069152832, 0.4960612952709198, -0.46245548129081726, 0.12787029147148132, 0.35777202248573303, -0.3807660639286041, -0.049292560666799545, 0.44424110651016235, -0.21451584994792938, -0.4303479492664337, 0.564553439617157, 0.30987682938575745, -0.11934223771095276, -0.17577610909938812, 0.14255918562412262, -1.825958251953125, 0.13584524393081665, -0.41399314999580383, -0.6693063378334045, 0.4158373475074768, -0.9596218466758728, -0.7608426809310913, 0.06580043584108353, 0.05690750852227211, -0.27850228548049927, -0.1946936994791031, 0.477571964263916, 0.008359253406524658, -0.03535822033882141, 0.4755600392818451, -0.012189868837594986, 1.4024494886398315, 0.1830274611711502, -0.24949993193149567, -1.156387448310852, 0.1500949263572693, 0.3598109185695648, 0.1107136532664299, 0.04048994556069374, -0.024326682090759277, 0.9319244027137756, -0.32510799169540405, -1.01283597946167, 0.06049709767103195, 0.5445852279663086, 0.0138467475771904, 0.13379992544651031, -1.1400699615478516, 0.4683956503868103, -0.13494716584682465, 0.6577787399291992, -0.47631338238716125, -0.6995625495910645, -1.308873176574707, 0.4504767656326294, -0.9445080757141113, 0.6183815598487854, -0.7028379440307617, 0.611778974533081, 0.20173482596874237, -0.26921355724334717, -0.6555708646774292, -0.15796594321727753, 0.393005907535553, 0.28789809346199036, 0.3272627592086792, -0.04849543049931526, 0.12781834602355957, -0.23126724362373352, -0.8741311430931091, 0.04785434529185295, 0.07218607515096664, -0.38547563552856445, 0.3842359185218811, -0.7224684953689575, -0.3608620762825012, -0.7992913722991943, -0.10928227007389069, 0.6461933255195618, 0.44951120018959045, 0.011118941009044647, -0.008386585861444473, -0.6791984438896179, 0.5058708190917969, 0.3458971083164215, -0.6111077070236206, 0.37252140045166016, 0.7528018951416016, 1.8859293460845947, 0.2795872986316681, 0.0951385647058487, -0.6044660806655884, 0.8467651009559631, -0.8547964096069336, 0.12199213355779648, -0.20033268630504608, -0.13441133499145508, -0.6853039860725403], [0.16964071989059448, 1.8087329864501953, -2.1003708839416504, 0.48055529594421387, 0.1500793993473053, -0.24084866046905518, 1.3481035232543945, -0.025276601314544678, 0.72078937292099, -0.09927290678024292, -0.726832389831543, 0.49737849831581116, -0.01966826617717743, 0.6371602416038513, 1.1589182615280151, 0.7665383815765381, 0.8964208364486694, -0.45015937089920044, 0.04596148431301117, 1.2614054679870605, -0.15021660923957825, -0.3835768699645996, 0.11679317057132721, 0.14894956350326538, -0.23698875308036804, -0.12599633634090424, -1.4537876844406128, -0.4924183785915375, -0.8973240256309509, -1.3198026418685913, 0.6310990452766418, 0.03347969800233841, 0.4641519784927368, -0.36130449175834656, -1.2102117538452148, -0.33387207984924316, 1.4489705562591553, 1.4693639278411865, 0.09379153698682785, 0.2362402081489563, 1.359776496887207, -0.4655451774597168, 0.036294907331466675, -0.6645522713661194, -0.5852607488632202, -0.48633983731269836, 0.8029193878173828, -0.06085900962352753, -0.4950172007083893, -0.29481789469718933, 0.49961531162261963, -1.3885595798492432, -0.4144173264503479, 1.0979326963424683, 1.394710898399353, -0.9696651697158813, 0.32250645756721497, 0.15262678265571594, 0.30418261885643005, -1.1794036626815796, 1.2922505140304565, 0.5151392221450806, -0.3838660717010498, 1.5636013746261597, -0.23208041489124298, -0.5177545547485352, -0.05229515582323074, 0.4914388358592987, -0.1463841050863266, -0.5125053524971008, -0.06582478433847427, 0.5445309281349182, -0.05052333325147629, 0.1949596405029297, -0.46227502822875977, 0.025785358622670174, -0.07270393520593643, 0.34576717019081116, 0.8670571446418762, 0.7637959122657776, 0.2636324167251587, -0.8110381960868835, 0.5403555035591125, 0.37987178564071655, 0.7356879115104675, 0.012035280466079712, 0.7352867722511292, -0.7137092351913452, -0.40099194645881653, 1.5525189638137817, -0.18636736273765564, -0.09766384959220886, 0.5953363180160522, -0.8279551863670349, -0.3666329085826874, -1.0598417520523071, 0.6296729445457458, 0.05143103748559952, -0.6410656571388245, -0.15588296949863434, -0.665740430355072, -0.5529899597167969, 0.4486469328403473, 0.27978408336639404, -0.49817386269569397, 1.0192334651947021, -0.0008606761693954468, -0.03568359464406967, -0.1211695671081543, -0.4964195787906647, 0.2151389718055725, 0.6969554424285889, -0.771765947341919, -1.485349178314209, -0.5411820411682129, 1.324845552444458, 1.085733413696289, 0.4566154181957245, 0.6419413089752197, 1.448151707649231, -0.33985376358032227, -0.28816166520118713, 0.042658731341362, 0.8296628594398499, 0.27544909715652466, 0.7348078489303589, -0.3389267325401306, -0.41371962428092957, 0.10866530239582062, 0.6099714636802673, 0.07430922985076904, -0.08934736251831055, -0.6910017728805542, 1.0187057256698608, -1.3734341859817505, 1.3225133419036865, -0.24393947422504425, -1.0631431341171265, -0.4041518568992615, -0.5309149026870728, 0.7780773639678955, 0.28723931312561035, -0.5380660891532898, -0.2712860405445099, -0.3004246652126312, -0.9934999346733093, 0.5753251910209656, -0.19090525805950165, 0.060724370181560516, 1.0098559856414795, -0.7569581866264343, 0.24021729826927185, 0.007956672459840775, 1.0571630001068115, 0.28254860639572144, -0.16335906088352203, 0.3204261362552643, 0.2622915804386139, 0.7096168398857117, 0.06347128003835678, 0.9138952493667603, -0.2349383682012558, -0.3719066083431244, 0.42177826166152954, 0.23321717977523804, -0.43539339303970337, -0.4800085723400116, 1.242316722869873, -0.40055370330810547, 0.5190547108650208, -0.15423379838466644, -0.41464728116989136, -1.1702167987823486, 0.2942805290222168, 0.30269408226013184, 0.01707616075873375, 0.9913226962089539, -0.3588029444217682, -1.3655935525894165, -0.8288804888725281, 0.2483581304550171, -0.9532842636108398, 0.11025052517652512, -0.3161747455596924, 0.6817529797554016, -0.3090403378009796, 0.5427478551864624, -0.33860138058662415, -0.21294669806957245, -0.7854105234146118, -0.520114541053772, -0.2144685536623001, -0.25614774227142334, -0.0047529712319374084, -0.5219923257827759, -0.46077612042427063, 0.7119411826133728, -1.335326075553894, -0.16432245075702667, 0.2255399376153946, -0.22844283282756805, -0.00657765194773674, -0.9926515817642212, 0.7182455062866211, -0.24203430116176605, 1.3803484439849854, -0.869573175907135, 0.7049490809440613, -0.935786783695221, -0.6601335406303406, 1.142117977142334, -0.6481011509895325, -0.5629966259002686, 0.7089987397193909, -0.12488185614347458, -1.1520437002182007, -0.18542274832725525, 0.2860957682132721, -0.8146553039550781, 0.19337014853954315, 0.28247779607772827, 0.49310922622680664, 0.720527172088623, 0.24454151093959808, 0.14074186980724335, -0.8719526529312134, -0.9428512454032898, -0.2836710214614868, -0.5676764249801636, 0.05822908133268356, -0.27744656801223755, -1.156986117362976, 0.36002472043037415, 0.4892790913581848, -0.6873393654823303, -0.2432514727115631, -0.20597118139266968, 0.6406943798065186, 0.3885442614555359, 0.8668470978736877, 0.6284077167510986, 0.587081789970398, -0.98396897315979, -0.18922476470470428, -0.6053914427757263, 0.8623576760292053, 0.6114798784255981, -0.64439857006073, -0.029718760401010513, 0.8567363023757935, 0.9991704821586609, -0.2812860608100891, 0.9975210428237915, -0.6980780959129333, -0.32712769508361816, -0.5880710482597351, -1.0634865760803223, 1.088967204093933, -0.35931164026260376, 2.0656464099884033, 0.7637923359870911, -0.2458246350288391, 0.2044329196214676, 0.11039505898952484, -0.6665406823158264, -0.16228558123111725, -0.36591702699661255, 0.10512465238571167, 0.06488289684057236, 0.013028142973780632, -0.27110692858695984, 0.873386800289154, -0.20471279323101044, 1.0669703483581543, -0.20789006352424622, -0.3905165493488312, -0.3591233789920807, -0.036921147257089615, -0.43270331621170044, 1.0339409112930298, -0.029896389693021774, -1.9605504274368286, 0.16525958478450775, -0.0684768483042717, 0.5012518167495728, 0.025663644075393677, -0.3464038372039795, -0.14522574841976166, 0.015038056299090385, -0.7474105954170227, 0.42059841752052307, -0.19490422308444977, -0.5416558980941772, 0.4485936760902405, -0.1627654731273651, 0.585688591003418, 1.4261969327926636, 0.12678781151771545, -0.7108253240585327, 0.4136185348033905, 0.5077191591262817, 1.1301099061965942, 0.3618898093700409, 1.9344409704208374, 0.2764820158481598, 0.1145251989364624, 0.14294548332691193, -0.384490966796875, -0.5012343525886536, -0.3398340344429016, -0.8043444156646729, -0.37459462881088257, -0.3727567493915558, -0.028680123388767242, 0.4970111846923828, 0.3380052149295807, -0.3731667101383209, 0.26281046867370605, 1.4222906827926636, -0.25368914008140564, 0.027437938377261162, 0.4913802742958069, -0.4648182988166809, -0.21809259057044983, -0.06202172487974167, 1.2546194791793823, -1.555580496788025, -1.1177922487258911, -0.6117189526557922, -0.17310954630374908, 0.4137072265148163, 0.39603057503700256, 0.47820109128952026, -1.8586262464523315, -0.18429051339626312, -0.06923957169055939, 1.4649626016616821, -0.30486437678337097, -0.3436213731765747, -0.31000274419784546, 0.6639275550842285, 0.5069193243980408, -0.295620858669281, -0.9062937498092651, 1.0753120183944702, -0.5099593997001648, -0.809082567691803, 0.21427546441555023, 0.028660405427217484, 0.835983395576477, -0.2755613625049591, -0.5723914504051208, -0.497967928647995, -0.2926616072654724, -0.24312162399291992, 0.8415325284004211, -0.5545403361320496, 1.3205558061599731, -0.15928055346012115, -0.307279497385025, 1.141495943069458, 0.09910255670547485, -0.11937222629785538, -1.2309141159057617, 0.8388156890869141, 0.577541172504425, 1.2552733421325684, 0.02617824636399746, 0.2589597702026367, 0.5296921133995056, 0.5259206891059875, 0.2968601882457733, 0.2403491884469986, 0.24617648124694824, 0.33867573738098145, 0.15305481851100922, -0.30778905749320984, 0.009305279701948166, 0.0343954935669899, -0.24298781156539917, -0.6057559251785278, 0.3394283950328827, -1.1302465200424194, -0.6923458576202393, 0.8981423377990723, 0.6407791972160339, -0.263761967420578, -0.2042657881975174, 0.028920574113726616, 0.47667092084884644, -0.23646226525306702, 0.25632137060165405, 0.13243387639522552, 0.222011536359787, 0.4803871512413025, -1.3372063636779785, -0.2301950454711914, -0.24584586918354034, 0.7878198623657227, 0.3346104323863983, -0.43320855498313904, 0.43334445357322693, -0.8315050005912781, 0.5926177501678467, 1.0638362169265747, -0.35968464612960815, 0.024311039596796036, 0.10639726370573044, -0.3382055163383484, -0.12101203948259354, -0.29682183265686035, 0.5022391676902771, -1.156610369682312, 0.6522785425186157, 0.7312130928039551, -0.11958813667297363, -0.19351302087306976, 0.20025697350502014, -0.09327125549316406, 0.11382156610488892, -0.042100995779037476, -0.03599421679973602, 0.6504551768302917, -0.09169971197843552, 0.9675687551498413, 0.3526918888092041, 0.29354992508888245, 0.36408716440200806, -0.15328311920166016, -0.6101875901222229, -0.2834574580192566, 0.5524648427963257, -0.21408428251743317, -0.5966965556144714, -0.4909312427043915, 0.018379515036940575, -0.23501837253570557, 0.45970988273620605, 0.11592945456504822, 0.7275484800338745, 0.3687524199485779, -0.12560534477233887, 0.23044320940971375, 0.7938750982284546, 0.6626054644584656, 0.515992283821106, -0.029535606503486633, -0.8121135830879211, -0.4429216980934143, -0.19968369603157043, -1.0402061939239502, 0.4006262719631195, 0.7268728017807007, -0.26287710666656494, 1.0869970321655273, -1.0774421691894531, 0.23147831857204437, 0.5507953763008118, 0.23697611689567566, -0.04624622315168381, 0.7386329174041748, -0.615355908870697, -0.12280287593603134, 0.4576115310192108, -0.06130251660943031, -0.001531217247247696, 0.14882014691829681, 0.28123748302459717, -0.19528329372406006, 0.8360937237739563, -1.0471971035003662, 0.9366066455841064, -0.6111885905265808, -0.1708795428276062, 0.37303441762924194, -1.2477778196334839, -0.21147547662258148, 0.4767462909221649, 0.27527934312820435, 1.3362940549850464, -0.0530761294066906, -1.0407487154006958, 0.14382590353488922, -0.886857271194458, 0.4837352931499481, -0.5386009812355042, -0.27441489696502686, -0.5359538793563843, 0.695076584815979, -0.38219401240348816, 0.4714009165763855, -0.6908320188522339, -0.5321381688117981, -0.4959850013256073, -0.9852457046508789, 0.9391836524009705, 0.003517303615808487, 0.9820966720581055, 0.07497451454401016, -0.13458716869354248, -0.22615382075309753, 0.68418288230896, -0.8950535655021667, -1.0067052841186523, -0.13936056196689606, -0.2545674741268158, -0.09298191964626312, -0.9546273946762085, -0.939801812171936, 0.49531224370002747, 0.7686123847961426, -0.014107641763985157, 0.7835441827774048, 0.9610475301742554, 1.02191162109375, -0.1755097657442093, -0.28178444504737854, 0.3858630359172821, -0.7656083703041077, 0.8291869163513184, 0.6315315961837769, -0.6828770637512207, -0.7941218614578247, -1.0289608240127563, -1.5237584114074707, 0.10742682218551636, 0.3131157457828522, -0.2453080266714096, 0.8019533753395081, 0.9169982075691223, 0.6620954871177673, 0.6583186984062195, -1.0514955520629883, 0.796353816986084, -0.31305181980133057, -0.4924745559692383, -1.022398829460144, 0.8493673801422119, 0.245688796043396, 0.08288397639989853, 0.0882415920495987, 0.11485666036605835, -0.04064588248729706, 0.16747534275054932, -0.5598440766334534, 0.3232417702674866, -0.17310965061187744, 0.7500583529472351, 0.4326140880584717, -0.5338596105575562, -0.27049893140792847, -0.15833507478237152, -0.41193488240242004, 0.09936242550611496, 1.0877643823623657, -0.15220382809638977, -0.10109247267246246, -0.12383625656366348, -0.43520423769950867, -0.8314250111579895, -0.09834383428096771, 0.036610621958971024, 0.8029133081436157, 0.2554614245891571, -0.3130165636539459, -0.2376919537782669, 0.006044899113476276, 0.10066141188144684, -0.3899400234222412, 0.446438193321228, -0.003179578110575676, -1.1816388368606567, 0.02450948767364025, 0.11321066319942474, -1.4310225248336792, 0.14839909970760345, -0.0012575555592775345, -0.023103198036551476, -0.9160915017127991, -0.2665027379989624, -0.35911110043525696, 0.7176712155342102, 0.7003220319747925, -0.7021201848983765, 0.988652229309082, 0.4564906358718872, -1.352723240852356, 0.354787141084671, -0.15318302810192108, -1.0424630641937256, -0.054669104516506195, -1.6389871835708618, 0.3414281904697418, 0.19769926369190216, 0.3684796392917633, -0.4154515862464905, 1.0081894397735596, -1.5256364345550537, -1.4554299116134644, -1.0271693468093872, -0.36067962646484375, 0.45277321338653564, 0.27415040135383606, -0.5176281929016113, 1.1686782836914062, 0.5449267625808716, 0.17598840594291687, 0.045024897903203964, 0.27438992261886597, -0.31704628467559814, 0.2557905316352844, -0.16195915639400482, 0.4661805033683777, 0.06895134598016739, 0.759885311126709, 0.46328333020210266, 1.4023127555847168, 0.5421357154846191, 1.2283806800842285, -0.3949012756347656, -0.1447475552558899, 0.44319042563438416, 0.880692720413208, -0.6553614735603333, -0.9040178656578064, -0.21801215410232544, -0.6060102581977844, -0.5764946341514587, -0.04237984120845795, 0.980894148349762, -0.38679978251457214, -0.2737031579017639, -0.9100595712661743, 0.22554579377174377, -1.1261426210403442, 0.6453942060470581, 0.07656987011432648, -0.7106634378433228, -0.45270153880119324, 0.18101206421852112, -0.5335851311683655, -1.1189275979995728, 0.8399783372879028, 0.1683952957391739, 0.17788070440292358, -0.16750667989253998, 0.1414743810892105, 0.7866438627243042, 0.6413046717643738, -0.3389659523963928, 1.3059985637664795, 0.7800137996673584, -0.5407989025115967, 0.19906964898109436, -0.009496217593550682, -0.04779898375272751, 0.07034644484519958, -0.276422917842865, -0.3891349136829376, -0.985923707485199, 1.5889098644256592, 0.05810752511024475, -0.12181761860847473, -0.16692626476287842, 0.4067413806915283, -0.4569433331489563, 0.36077600717544556, 0.7321374416351318, -0.868658185005188, -0.5122712850570679, 1.2133551836013794, 0.13824236392974854, -0.32766053080558777, 0.053702212870121, 1.0807276964187622, 0.49740898609161377, -0.27299004793167114, 0.8698464632034302, 0.14341400563716888, -0.3837226927280426, 0.37198784947395325, 0.4535355269908905, -0.36457279324531555, -0.3194557726383209, -0.2654847204685211, -1.7386127710342407, 0.1875743418931961, -0.24596722424030304, -0.3460833728313446, 0.21277445554733276, -0.9365700483322144, 0.28029027581214905, -0.07227275520563126, -0.1048697903752327, -0.0628601536154747, -0.6860615611076355, 0.5299781560897827, 0.14723138511180878, -0.09822981059551239, 0.9285416007041931, -0.269868940114975, 1.0188956260681152, -0.389515221118927, -0.21406900882720947, -1.1964490413665771, -0.3034375011920929, 0.45949965715408325, 0.36074453592300415, -0.5697444081306458, -0.5126021504402161, 0.2355891466140747, -0.4084082543849945, -0.608372688293457, 0.16172054409980774, 0.05570926517248154, -0.08446059376001358, -0.028569497168064117, -0.4507899582386017, 0.7574905753135681, 0.1039654091000557, 1.0284929275512695, -0.27184000611305237, -0.8252476453781128, -1.5178028345108032, -0.07275797426700592, -0.7185291647911072, 0.6360499858856201, -0.7540556788444519, 0.8976358771324158, -0.3850758671760559, -0.6675633192062378, -0.8168294429779053, 0.011008365079760551, 0.5773962736129761, -0.3991173207759857, -0.0703553780913353, 0.08454803377389908, -0.3603816628456116, -0.3130505084991455, -0.5462077260017395, -0.3784081041812897, 0.2761595547199249, -0.4949454069137573, -0.4111776053905487, -1.060793399810791, -0.8498801589012146, -0.4753694534301758, -0.3041377365589142, 0.2725279927253723, 0.19565264880657196, -0.4718594551086426, 0.024313878268003464, -1.3019295930862427, 0.3566705286502838, 0.7794368863105774, -0.48759403824806213, -0.239914208650589, 0.6637928485870361, 1.8691246509552002, 0.754636287689209, -0.23935823142528534, -0.4538026452064514, 0.6921001672744751, -0.6336439251899719, 0.4950255751609802, -0.5543743371963501, -0.29912713170051575, -0.12006790190935135], [1.0265713930130005, 1.2988357543945312, -1.9630874395370483, -0.8684037327766418, 1.0550103187561035, 0.05741391330957413, 0.6848853230476379, 0.42285221815109253, 0.6766619682312012, -0.1438523828983307, -0.07449661195278168, 0.25041449069976807, 0.01943167671561241, 0.4046814739704132, 0.11508386582136154, 0.5951837301254272, 0.4377799928188324, -0.014857138507068157, 0.4468476474285126, 1.0791759490966797, -0.06259205937385559, 0.07350778579711914, -1.151248574256897, -0.3391522169113159, -0.12105652689933777, 0.6847845315933228, -1.1128573417663574, -0.9127162098884583, -0.7997570037841797, -0.9482263922691345, 0.959048330783844, -0.6338499188423157, 0.33755576610565186, 0.07139619439840317, -1.686341404914856, -0.8424094319343567, 2.18190860748291, 0.9279414415359497, 0.8122764825820923, 0.06709219515323639, 1.8197193145751953, 0.9020946025848389, 0.2147279530763626, -1.4888343811035156, -0.5801969766616821, 0.30776527523994446, 0.7670020461082458, -0.2098369598388672, -0.3436278700828552, -0.4125193953514099, 0.800575852394104, -0.9773531556129456, 1.0385011434555054, 1.0867921113967896, 1.0698059797286987, -0.38396817445755005, -0.28016483783721924, 0.29141920804977417, -0.07045245915651321, -0.3898068964481354, 1.217696189880371, 0.2255050539970398, -0.4964981973171234, -0.0013892101123929024, 0.5415536165237427, 0.5680484771728516, -0.34337520599365234, 1.048764705657959, -0.20473788678646088, 0.03768007457256317, 0.7920118570327759, 0.021772926673293114, -0.5735707879066467, 0.4450911283493042, -0.7373210191726685, 0.0923890769481659, 0.4335922300815582, 0.8262937664985657, 0.7582465410232544, 0.3368242383003235, -0.6940403580665588, 0.294460654258728, 1.100799798965454, -0.17683158814907074, 0.2806892991065979, 0.028469422832131386, 0.2432330697774887, -0.9524309635162354, -0.08688786625862122, 1.6066803932189941, 0.21096661686897278, -0.31897205114364624, 0.22427688539028168, -0.6559147834777832, -0.4548935294151306, -0.49965423345565796, -0.22059768438339233, -1.0322805643081665, -0.2593673765659332, -0.6138303279876709, -1.2880862951278687, -0.5702994465827942, 0.5614213347434998, 0.7226243019104004, -0.48873990774154663, 1.281026840209961, 0.13319401443004608, -0.16527077555656433, -0.06753554940223694, -0.12085410952568054, -0.3331363797187805, 0.49952083826065063, -0.4308222234249115, -0.4465330243110657, -0.6464051008224487, 0.6221963167190552, 1.0011438131332397, -0.26158639788627625, 0.5319538712501526, 1.3904955387115479, -0.21197646856307983, 0.38474342226982117, -0.008584782481193542, 1.2175146341323853, 0.6770693063735962, 0.04765678942203522, -0.5565014481544495, -0.5479589104652405, 0.22599440813064575, -0.02943972870707512, 0.1842079907655716, -0.1313861757516861, -0.02285715751349926, 0.8042548298835754, -0.861617386341095, 1.308961272239685, 1.0722512006759644, -0.5074794292449951, -0.19597387313842773, -0.27348944544792175, 0.7000599503517151, 0.49482837319374084, 0.2954525053501129, -0.5307591557502747, 0.0339740514755249, -0.4925611913204193, 0.23243503272533417, -0.46445751190185547, -0.18170595169067383, -0.08780205249786377, -0.8857592344284058, 0.3624020516872406, 0.6005657911300659, 0.7971190810203552, -0.037774525582790375, -0.5094061493873596, -0.04465842992067337, 0.15709738433361053, 0.6355037093162537, 0.4763838052749634, 0.674909770488739, 0.4943964183330536, -0.7210289239883423, 0.9614742398262024, 0.2855105698108673, -0.010274237021803856, -0.02139141783118248, 0.9892739057540894, -0.31904974579811096, 1.0293370485305786, -1.2486698627471924, -0.49018800258636475, -0.46137872338294983, 0.6082634329795837, 0.8488622903823853, -0.325333833694458, 0.9818862080574036, -0.7416130900382996, -0.6113576889038086, -0.8965169191360474, 0.10089237242937088, 0.24298934638500214, 0.2109302282333374, 0.1256994754076004, 0.4643966257572174, -0.02653077058494091, 0.5180396437644958, -0.4085516333580017, -0.8338565826416016, -0.2300381362438202, -0.8530719876289368, 0.02014511078596115, -0.9915371537208557, 0.08354529738426208, -0.13532279431819916, -1.4983465671539307, 0.5194792151451111, -0.4255533516407013, -0.47130122780799866, 0.29686301946640015, -0.4190240502357483, 0.0322527252137661, -0.7903493642807007, 0.13828204572200775, -0.4945066571235657, 0.4208129942417145, -0.9623398184776306, 0.7631092071533203, -0.5358502268791199, -0.8475840091705322, 1.3031466007232666, -0.5070783495903015, -0.2417422980070114, 0.8316280245780945, 0.20137928426265717, -1.2379505634307861, 0.0837085023522377, -0.12483840435743332, -0.2751618027687073, -0.05039871484041214, 0.536145031452179, 0.51994389295578, 0.7178793549537659, -0.07412255555391312, 0.4171407222747803, -0.2850185036659241, -0.9636320471763611, -0.472010999917984, -0.38751235604286194, -0.12325498461723328, -0.6377739906311035, -1.5091814994812012, 0.6820679903030396, 0.23233939707279205, -1.2219640016555786, 0.0914604440331459, 0.233302041888237, -0.14598695933818817, 0.4605691730976105, 0.7392474412918091, 0.24273070693016052, 0.7704150080680847, -0.36791253089904785, 0.14114710688591003, -0.7917750477790833, 0.6814773082733154, 0.5235626101493835, -1.0799695253372192, 0.12192828208208084, 1.5883452892303467, 0.26164647936820984, 0.25578996539115906, 0.611370861530304, -0.5388018488883972, -0.054259367287158966, -0.38056680560112, -1.116823434829712, 0.4305460453033447, -0.27239933609962463, 1.8422330617904663, 1.1486124992370605, -0.5384798645973206, -0.590757429599762, -0.011825289577245712, -0.2565137445926666, -0.5462576150894165, -0.5262762308120728, -0.0866987407207489, 0.02186044119298458, 0.07803867012262344, -0.3791249990463257, 0.20796160399913788, -0.20677441358566284, 1.6831300258636475, -0.1859912872314453, 0.024106601253151894, -0.7326958775520325, 0.6494251489639282, -0.20678357779979706, 0.729650616645813, -0.285645067691803, -0.477749228477478, -0.3300309479236603, -0.31455573439598083, 1.1787781715393066, 0.4085293114185333, -0.022020064294338226, -0.05909907817840576, 0.17156435549259186, 0.122145876288414, 0.6222812533378601, 0.5714290142059326, -0.02963888831436634, 0.5019674301147461, 0.3493589460849762, 0.07656343281269073, 0.6070566177368164, -0.3248133659362793, -0.6203020811080933, -0.30139437317848206, 0.5148451328277588, 1.0494319200515747, 0.7183380722999573, 1.5617305040359497, 0.31295502185821533, 0.05293911695480347, -0.3562440872192383, -0.26730045676231384, -0.46783021092414856, -0.6781511902809143, -1.1120567321777344, -0.3642890155315399, -0.07021666318178177, -0.4074589014053345, 0.045191437005996704, 0.4982178211212158, -0.007740661036223173, 0.781615138053894, 1.2810986042022705, -0.36514711380004883, -0.09964755922555923, 0.1054634228348732, -0.13682247698307037, -0.9675237536430359, 0.5955081582069397, 0.6281548142433167, -1.201802372932434, -0.165361225605011, -0.7606644630432129, -0.05579758808016777, 1.077562689781189, -0.2840285301208496, 0.4234907031059265, -0.9182655215263367, -0.5677887797355652, -0.2435835897922516, 0.5975106954574585, -0.21833091974258423, -0.13683505356311798, -0.3353038728237152, 0.8849040865898132, -0.13229216635227203, 0.3450549244880676, -0.5642660856246948, 0.9437929391860962, -0.1328084021806717, -1.4474883079528809, -0.4421032667160034, 0.27477768063545227, 0.6443847417831421, 0.08267034590244293, -0.6725403070449829, -0.3565506637096405, -0.6164854168891907, -0.33138507604599, 0.5143440961837769, 0.1038111001253128, 0.7901151776313782, 0.007622247561812401, -0.3215448260307312, 0.5194710493087769, -0.19855360686779022, -0.10118763148784637, -1.3163599967956543, 0.4099932312965393, 0.903086245059967, 0.9359801411628723, -0.37302789092063904, 0.25184017419815063, 0.28809139132499695, 0.37454134225845337, 0.06149206683039665, 0.1297704577445984, 0.30396389961242676, 0.09007315337657928, -0.20898720622062683, -0.13711217045783997, 0.5252671837806702, -0.28344225883483887, -0.5570153594017029, -0.07518544793128967, 0.5035459995269775, -0.6790057420730591, 0.015536647289991379, 1.038894772529602, 0.348623126745224, 0.05545475706458092, -0.2706478238105774, -0.07464048266410828, 0.49819645285606384, -0.2064567655324936, -0.03919190913438797, -0.8983950018882751, -0.14155562222003937, 0.5374558568000793, -1.3025946617126465, -0.7485756874084473, 0.2697877287864685, 0.2755616009235382, 0.24191094934940338, -1.2449407577514648, 0.18197885155677795, 0.2588995099067688, 1.1896240711212158, 0.39347043633461, 0.4626907408237457, 0.3108677268028259, 0.19988636672496796, 0.8527084589004517, 0.09880603849887848, 0.29688748717308044, 1.0802578926086426, -0.8608282804489136, 0.024670129641890526, 0.09854456782341003, 0.23683558404445648, 0.08143393695354462, -1.0730446577072144, 0.3411791920661926, 0.004360114224255085, 0.35105010867118835, -0.21241210401058197, -0.19783170521259308, -0.5166736245155334, 1.0853720903396606, 0.563401460647583, 0.661439836025238, 0.2778666913509369, -0.05604124814271927, -0.36322009563446045, -0.0404045544564724, 0.36143508553504944, -0.14044901728630066, -0.5658270120620728, -0.13236214220523834, 0.5841584205627441, -0.09587216377258301, 0.3857099115848541, 0.06130611151456833, 0.6895920038223267, 0.2944086492061615, -0.20445579290390015, 0.08338877558708191, 0.4875831604003906, 0.5144074559211731, 1.1875396966934204, 0.24925747513771057, -0.6607402563095093, -0.6742219924926758, 0.465314120054245, -0.23613286018371582, 0.4160327911376953, 0.5597416758537292, -0.008173510432243347, 0.8026360869407654, -1.8230711221694946, -0.2013784795999527, 0.7144080996513367, 0.16601938009262085, 0.8941759467124939, 0.4343072474002838, -0.4647385776042938, -0.5493603944778442, 0.2623341679573059, -0.5271671414375305, 0.18921388685703278, 0.022328456863760948, 0.4920194745063782, 0.08618853241205215, 0.949837863445282, -0.4080725610256195, 0.7441896796226501, -0.951567530632019, -0.3208633363246918, 0.34774306416511536, -0.8866702318191528, 0.02348156087100506, 0.3906487226486206, -0.0055492836982011795, 1.0769771337509155, -0.7648263573646545, -0.5819147229194641, 0.19487982988357544, -0.5397809147834778, 0.25004440546035767, -0.12348975986242294, -0.910140872001648, -0.26098912954330444, -0.006897556595504284, -0.4144880473613739, 0.5410009622573853, 0.12166284024715424, -0.4508891701698303, -0.38412824273109436, -0.7272700667381287, 0.30688852071762085, 0.14345058798789978, 0.7201439738273621, 0.08503203094005585, 0.456745445728302, 0.31502723693847656, 0.2028060108423233, -0.2450585663318634, -0.19241470098495483, -0.3541828691959381, -0.4596306085586548, 0.371684730052948, -2.0713963508605957, -1.1675432920455933, 0.20525217056274414, 1.1555407047271729, 0.3408089280128479, 0.7492266297340393, 0.7378243207931519, 0.7012510895729065, 0.002213961910456419, -0.6752267479896545, 0.4815247058868408, -0.6273589730262756, 0.5681740045547485, 0.3722386956214905, -0.11880701780319214, -0.543929398059845, -0.8226674199104309, -1.7140848636627197, 0.10126576572656631, 0.22208745777606964, -1.649208664894104, 0.6846193671226501, 0.5186348557472229, 0.43976953625679016, 0.5151803493499756, -0.056101419031620026, 0.7693406343460083, -0.4179084599018097, -1.0947061777114868, -1.4121153354644775, 0.7197040915489197, -0.04799441248178482, 0.5025767087936401, -0.08760463446378708, 0.27658382058143616, -0.16114579141139984, -0.04726887121796608, -0.557168185710907, 0.5762147307395935, 0.43309855461120605, 0.49332207441329956, -0.30869174003601074, -0.6292412877082825, -0.00890354998409748, -0.3243418037891388, -0.5443870425224304, -0.5148703455924988, 0.5752311944961548, 0.033455703407526016, -0.0140469279140234, 0.006087560206651688, -0.07745837420225143, -0.5860636830329895, -0.13461937010288239, 0.14929093420505524, 0.48562633991241455, 0.600019633769989, -0.22280466556549072, 0.09426102787256241, -0.12707071006298065, -0.697010338306427, -0.6070727109909058, 0.2939169704914093, 0.9889786839485168, -0.8012290596961975, 0.0743785873055458, -0.12956057488918304, -0.7686399221420288, -0.561950147151947, -0.5287672877311707, -0.18595215678215027, -0.7968934178352356, -1.348643183708191, -1.4302358627319336, 0.3476563096046448, 0.7397832870483398, -0.14273330569267273, 1.3129271268844604, 0.07155846804380417, -1.5658907890319824, 0.26317933201789856, -0.6577725410461426, -0.8996747732162476, -0.040159888565540314, -1.4836695194244385, 0.45240283012390137, -0.3940274715423584, 0.39836692810058594, -0.7546547055244446, 1.1951481103897095, -1.0343060493469238, -1.1375504732131958, -1.26796293258667, -0.36010563373565674, 0.2849406898021698, 0.8537853360176086, -0.9833526015281677, 1.2513222694396973, 0.4623568058013916, -0.527288019657135, -0.3055466115474701, 0.13296368718147278, -0.8714333176612854, 0.20213092863559723, -0.12405619770288467, 0.4247184991836548, 0.1351860910654068, 0.6465829014778137, -1.0010504722595215, 0.5208010077476501, 0.5156788229942322, -0.07968062162399292, -0.3879846930503845, -0.33672896027565, 0.1730182021856308, 0.5564780235290527, -0.5506253838539124, -0.5822604298591614, -0.028507262468338013, -0.3339696228504181, -1.0052746534347534, 0.2820599675178528, 0.8638519644737244, -0.4968865215778351, -0.514350175857544, 0.5413895845413208, 0.04883275553584099, -0.7211078405380249, 0.3325270414352417, -0.1661149263381958, 0.31464284658432007, 0.045187074691057205, -0.26381224393844604, 0.26310184597969055, -1.1052230596542358, 0.19075745344161987, 0.6018272638320923, -0.23420701920986176, -0.5908095836639404, 0.5312915444374084, 1.2064814567565918, 0.13095389306545258, -0.3549483120441437, 1.3391246795654297, 1.3520392179489136, -0.2770375907421112, 0.3594265878200531, 0.37616997957229614, -0.032442156225442886, 0.2812771201133728, -0.578252911567688, 0.011212809011340141, -0.6569987535476685, 0.33616435527801514, -0.03954228386282921, -0.27778151631355286, -0.5660392642021179, -0.18756955862045288, -0.22582660615444183, 0.41176164150238037, 0.4257250726222992, -0.7325183749198914, -0.25258323550224304, 0.5643615126609802, -0.31896936893463135, 0.43415096402168274, -0.023316681385040283, 0.322224497795105, 0.3402951657772064, 0.16134542226791382, 0.07546932995319366, 0.34907931089401245, -0.8955021500587463, -0.33385586738586426, 0.46686914563179016, 0.5022307634353638, -0.03440817818045616, -0.4815846383571625, -1.412674903869629, 0.584436297416687, -0.7597754597663879, -0.7648504376411438, 0.5352334976196289, -1.1676313877105713, -1.5921216011047363, -0.04013585299253464, -0.0468120202422142, -0.1475764811038971, -0.47365450859069824, 0.2903050482273102, -0.04698978736996651, 0.3898138999938965, 0.4351900517940521, -0.439739465713501, 0.8789435625076294, 0.18163318932056427, 0.2674536406993866, -0.27278077602386475, -0.004401625599712133, -0.04921909049153328, 0.2936173379421234, -0.4541299343109131, -0.5639936327934265, 0.7479307055473328, -0.34670642018318176, -1.185259222984314, 0.1046692430973053, -0.39914271235466003, -0.08043287694454193, 0.12689100205898285, -1.07997727394104, 0.11864391714334488, -0.23430506885051727, 0.9284226298332214, -0.2695082724094391, -0.955065906047821, -0.8836827874183655, 0.3809889853000641, -1.0853310823440552, 0.5996453166007996, 0.06393606215715408, 0.7411786317825317, -0.2876642048358917, -0.36918583512306213, -0.062281712889671326, -0.07053893804550171, 0.18335013091564178, 0.045424316078424454, 1.2849206924438477, -0.0024161087349057198, 0.10617100447416306, -0.5312707424163818, -0.747391939163208, 0.08696569502353668, 0.09663267433643341, -0.0015127984806895256, -0.10483836382627487, -1.104931116104126, -0.3196738064289093, -0.8743590712547302, 0.6579589247703552, 0.7083341479301453, -0.16748082637786865, -0.019548755139112473, 0.02474833093583584, -0.7867358326911926, 0.5371063947677612, -0.27696549892425537, 0.044404130429029465, -0.1582917869091034, 0.7876668572425842, 1.769166350364685, 0.5373058915138245, 0.4563615918159485, -0.4261733889579773, 0.7953965067863464, -0.6894673109054565, -0.2980327904224396, -0.6477476358413696, -0.08897452801465988, -0.37632420659065247], [0.780443012714386, 1.2724584341049194, -1.6938506364822388, -0.8811358213424683, 0.6995054483413696, 0.20753087103366852, 1.207022786140442, -0.6171576976776123, 0.26482293009757996, -0.29467862844467163, -0.12490536272525787, -0.4443714916706085, 0.3616250455379486, 1.0608453750610352, 0.017750071361660957, -0.030637051910161972, 0.582503080368042, 0.07567356526851654, 0.7472690343856812, 0.6551479697227478, -0.18812549114227295, 0.31212085485458374, -0.19448934495449066, -0.40003591775894165, -0.13912206888198853, 0.31220462918281555, -0.8278858065605164, 0.01716751977801323, -1.3128398656845093, -0.7819395065307617, 0.9868977665901184, -1.0597225427627563, 0.43009817600250244, 0.391000896692276, -1.5019493103027344, -0.21202626824378967, 1.068825364112854, 0.5109660029411316, 0.5389102697372437, 0.18509157001972198, 1.4770556688308716, -0.19133585691452026, -0.360140860080719, -1.8692092895507812, -0.4141060411930084, 0.0024171359837055206, 1.20280921459198, -0.255057156085968, 0.554512619972229, 0.037118833512067795, 0.605783224105835, -1.0411409139633179, 1.0513811111450195, 0.7418650388717651, 0.33507493138313293, -0.21236072480678558, 0.012244813144207, 0.1158878430724144, 0.8180177211761475, -0.8495936393737793, 1.6262524127960205, -0.18980742990970612, -1.1742404699325562, 0.027473442256450653, 0.30168014764785767, -0.16065029799938202, 0.04906485974788666, 0.5581625699996948, 0.37637680768966675, -0.32486897706985474, 0.8514776229858398, 0.685537576675415, -0.46027815341949463, 0.2435416430234909, -1.1481118202209473, -0.32625481486320496, 0.7361340522766113, 1.0277013778686523, 0.8066062927246094, 0.3112013041973114, -0.683732807636261, 0.2080310881137848, 1.2391571998596191, -0.8469870090484619, 0.28964948654174805, 0.3168056905269623, 0.6918404698371887, -0.941876232624054, 0.22195987403392792, 1.6234455108642578, 0.30839109420776367, -0.25955235958099365, 1.0432244539260864, -0.24941577017307281, -0.2275608330965042, -0.38192737102508545, 0.3391342759132385, -0.09160292148590088, -0.6608526110649109, -0.5471688508987427, -0.016930682584643364, 0.025751790031790733, 0.1770906150341034, 0.3404446244239807, -0.020894421264529228, 1.2727255821228027, 0.6363789439201355, 0.44174519181251526, -0.2862241268157959, 0.2283397912979126, -0.5060893893241882, -0.14702428877353668, -0.5914682745933533, -0.9641954302787781, -0.9827640056610107, 0.6791177988052368, 1.7139172554016113, -0.1599777191877365, 0.7632626891136169, 0.8344944715499878, -0.31572046875953674, 0.38573020696640015, -0.20359691977500916, 1.121691346168518, -0.02654152177274227, 0.03763692453503609, -0.9354557394981384, -0.006057756952941418, 0.26908689737319946, -0.07131526619195938, -0.1922866553068161, -0.31244245171546936, 0.14538154006004333, 0.17636238038539886, -0.8805716037750244, 0.8218549489974976, -0.2969900369644165, -0.2588541507720947, -0.3949139714241028, 0.10962120443582535, 0.6490570902824402, -0.5379971265792847, 0.3378421664237976, -0.5167098045349121, 0.6834798455238342, -0.05814811587333679, 0.15282507240772247, -0.7694717049598694, -0.6141566038131714, -0.013065416365861893, -1.1162737607955933, 0.9803374409675598, -0.13695496320724487, 0.46778205037117004, 0.2082265466451645, -0.13381889462471008, 0.4087446630001068, 0.45091769099235535, 0.17801693081855774, -0.46000173687934875, 0.508886456489563, 0.4088471829891205, -0.7536213397979736, 1.0535976886749268, -0.314656138420105, -0.20083248615264893, -0.029598388820886612, 0.5319314002990723, 0.4983941912651062, 0.5551189184188843, -0.7793606519699097, -0.16282916069030762, -0.9200195670127869, -0.009206507354974747, 0.15366919338703156, -0.15615946054458618, 1.833583950996399, -0.6066592335700989, -0.6096823811531067, -0.5873339176177979, 0.5916910767555237, -0.04526332765817642, 0.19547060132026672, 0.05851725861430168, 0.5839144587516785, -0.6676265597343445, 0.7137947082519531, 0.3039429187774658, -0.6860045194625854, -0.49690601229667664, -0.45063677430152893, -0.3171983063220978, -0.4763580560684204, 0.034132055938243866, -0.2957392930984497, -0.6978196501731873, 0.9609302878379822, -0.5824008584022522, -0.32222986221313477, 0.038361381739377975, -0.31266549229621887, -0.3831805884838104, -0.36601418256759644, 0.7215577363967896, -0.37174174189567566, 0.492125928401947, -0.5355842113494873, 0.6363628506660461, -0.739507257938385, -0.27301350235939026, 1.2021559476852417, -0.40341734886169434, -0.340231329202652, 0.8908534646034241, -0.9475947618484497, -0.8770102858543396, 0.2105671465396881, 0.02123534120619297, 0.13622793555259705, 0.5043087005615234, -0.10425300151109695, 0.027642730623483658, 0.4981311559677124, -0.18706516921520233, 0.6589779853820801, 0.11470059305429459, -0.848584771156311, -1.0852059125900269, -0.06877417862415314, 0.117536760866642, -0.37800589203834534, -1.1993849277496338, 0.6346481442451477, 0.4553544819355011, -0.9602305889129639, 0.7638010382652283, -0.3475552797317505, -0.07235416024923325, 0.2622746527194977, 0.6943179368972778, 0.13608065247535706, 0.3613668978214264, 0.15017330646514893, -0.03345455601811409, -1.1467945575714111, -0.04247577488422394, 0.620070219039917, -0.5905921459197998, -0.30129680037498474, 1.092773675918579, 0.6286673545837402, 0.5266311764717102, 0.3243143558502197, -0.44630929827690125, 0.10691776871681213, -1.369547963142395, -0.7860447764396667, 0.45454826951026917, -0.7908850312232971, 1.222930908203125, 0.6690199375152588, -0.6493859887123108, -0.23194357752799988, 0.3516966998577118, 0.2867605686187744, -0.5828196406364441, -0.9813539981842041, -0.34273889660835266, -0.12645184993743896, -0.6104269027709961, 0.015413281507790089, 0.6809294819831848, 0.39006510376930237, 1.4173364639282227, -0.25294288992881775, 0.10924675315618515, -0.03911088407039642, 0.7415216565132141, -0.14777223765850067, 0.6496801972389221, -0.1202097088098526, -0.7134947776794434, -0.5193367004394531, 0.05467842146754265, 0.928013265132904, -0.21301370859146118, 0.09935052692890167, -0.012460699304938316, 0.6531397700309753, -0.36328038573265076, 0.6705448627471924, 0.367001473903656, -0.18446758389472961, 0.7424169182777405, 0.7296493649482727, 0.26649484038352966, 0.8410666584968567, -0.40355610847473145, -1.0599520206451416, -0.1448519229888916, 0.11022095382213593, 0.4009448289871216, 1.0699571371078491, 1.0762752294540405, -0.16797342896461487, -0.09189193695783615, -0.3752431273460388, -0.5619745850563049, -0.45425742864608765, -0.6202856302261353, -0.8482790589332581, -0.15102311968803406, -0.18623390793800354, -0.7364832162857056, 0.3633427321910858, -0.26054850220680237, 0.3382718563079834, 0.7978597283363342, 0.372936874628067, -0.2861909866333008, -0.2006852775812149, 0.31886133551597595, 0.37791863083839417, -1.1303430795669556, 1.1986268758773804, 0.9590141773223877, -1.2171416282653809, 0.062396056950092316, -0.3627868592739105, -0.2412477731704712, 0.06012662127614021, -0.47192686796188354, 0.021282847970724106, -0.9386577010154724, -0.7168918251991272, -0.2462906837463379, 1.4377079010009766, -0.038930173963308334, 0.19029666483402252, -0.8853278160095215, 0.3446867763996124, 0.16396892070770264, -0.29575279355049133, -0.48606905341148376, 0.8505537509918213, -0.054712288081645966, -0.963838517665863, 0.22862280905246735, 0.6015878319740295, -0.14343497157096863, -0.7300235629081726, -0.1854703426361084, -0.4117024540901184, -0.32400327920913696, 0.5188789367675781, 0.8133812546730042, 0.2779545187950134, 0.14841917157173157, 0.4211317300796509, -0.07693341374397278, 0.7282278537750244, -0.48744431138038635, -0.19668129086494446, -0.8985973596572876, 0.35331931710243225, 0.05874510481953621, 0.9284041523933411, 0.22567829489707947, 0.4646133482456207, -0.016095342114567757, -0.6349193453788757, -0.292146772146225, -0.015139741823077202, 0.7331801652908325, 0.22143641114234924, 0.07910396158695221, -0.6108115911483765, 0.23742425441741943, 0.01919705420732498, -0.6535527110099792, -0.2581211030483246, 0.04388193413615227, -0.8914087414741516, -0.3305646777153015, 0.8437723517417908, -0.0582401268184185, -0.4588173031806946, -0.565958559513092, -0.044035330414772034, 0.3369519114494324, 0.6245554685592651, -0.3445189297199249, -0.15887567400932312, 0.12676291167736053, 0.4389023184776306, -0.9788423776626587, -0.4272781312465668, -0.29594340920448303, 0.26434949040412903, 0.9913492798805237, -0.285854309797287, 0.18604756891727448, 0.02524564042687416, 0.7629751563072205, 0.3051147758960724, 0.867946207523346, 0.07894562929868698, 0.3683869242668152, 0.1751512587070465, 0.1706313043832779, -0.23359538614749908, 1.0474369525909424, -0.8413069248199463, -0.4506680369377136, 0.03966989368200302, 0.6015614867210388, 0.0006647501140832901, -0.08353547006845474, 0.028605088591575623, 0.04792208969593048, -0.6648430228233337, -0.10464309900999069, -0.23109838366508484, -0.3168381452560425, 0.7059045433998108, 0.36181750893592834, 1.0360898971557617, 0.9290668964385986, 0.21938058733940125, -0.6348562240600586, -0.2265782505273819, 0.0054258303716778755, 0.173959881067276, -0.716488242149353, -0.3620406687259674, 0.20344214141368866, -0.035408709198236465, 0.015131878666579723, 0.3350631594657898, -0.10978235304355621, 0.005104338750243187, -0.062231309711933136, -0.21464014053344727, 0.6884949207305908, 0.34442341327667236, 1.4559985399246216, 0.4169059693813324, -0.7716370224952698, -0.3984958529472351, -0.1552218347787857, -0.8435105681419373, -0.22256696224212646, 0.341238409280777, 0.22753393650054932, 1.3676446676254272, -1.8419033288955688, -0.9260625839233398, 0.5403263568878174, 1.4653254747390747, 0.6626757979393005, 1.2820496559143066, -0.07741105556488037, -0.6830750703811646, 0.29720839858055115, 0.5389797687530518, -0.4309658110141754, 0.12333900481462479, 0.4661515951156616, 0.4435785710811615, -0.16951467096805573, -0.8859658241271973, 0.279297798871994, -0.504575252532959, -1.0645992755889893, -0.18813371658325195, -0.10044648498296738, 0.26387691497802734, 0.7908494472503662, 0.13900014758110046, 0.9402894377708435, -1.2048553228378296, -0.5108830332756042, 0.15183764696121216, -0.1327757090330124, 0.9063055515289307, -0.4371204376220703, -0.3260782063007355, -0.83730548620224, -0.06921098381280899, -0.33533111214637756, 0.20837852358818054, -0.4849843382835388, -0.22843144834041595, -0.2901993989944458, -0.25058019161224365, -0.5665431618690491, 0.8908516764640808, 0.7731308937072754, 0.45851412415504456, -0.08303035795688629, 0.6550454497337341, 0.5981389284133911, -0.45619288086891174, -0.13010968267917633, 0.4018188416957855, -0.6313084363937378, -0.00622323714196682, -1.6804938316345215, -1.2366721630096436, 1.085033655166626, -0.06241975724697113, 0.7726938724517822, 0.2679441571235657, 0.9217982292175293, 0.5193474292755127, -0.5063735246658325, -0.6215721964836121, 0.9981116652488708, -0.2016342133283615, 0.2980031371116638, 0.11628041416406631, -0.18566769361495972, -0.1491423398256302, -0.7228063344955444, -1.5932273864746094, -0.04979337379336357, -0.7754542231559753, -1.1475831270217896, 0.5163013935089111, -0.10327589511871338, 0.43258118629455566, -0.0016237013041973114, -0.5700177550315857, 0.29225289821624756, -2.591288648545742e-05, -0.39901047945022583, -1.120924949645996, 0.7149220705032349, 0.1449543833732605, 0.29540929198265076, 0.0917462557554245, -0.25366634130477905, 0.43153876066207886, -0.9432705044746399, 0.4445821940898895, 0.45499202609062195, 0.3472171425819397, 0.3452187478542328, 0.1540803611278534, -0.8384172916412354, -0.1635710597038269, 0.4563749432563782, -0.6860844492912292, -0.14372342824935913, -0.01029665395617485, 0.5952180624008179, 0.46026983857154846, 0.06113497540354729, -0.07452701777219772, -0.5208746790885925, -0.3341962397098541, -0.5806468725204468, -0.21090172231197357, -0.007205544039607048, -0.2515358626842499, -0.12169169634580612, -0.4822331666946411, -1.098739743232727, -0.4510207772254944, 0.6365984082221985, 0.6948666572570801, -1.3144060373306274, 0.00773153081536293, 0.3906879723072052, -0.29007187485694885, -0.04434395208954811, -0.928878903388977, 0.34478938579559326, -0.6353750824928284, -1.4564188718795776, -0.6074414253234863, 0.21702370047569275, 0.7887324094772339, -1.1273480653762817, 0.8312041163444519, 1.178421139717102, -1.1309559345245361, 0.011240534484386444, 0.3405914902687073, -0.7352288365364075, 0.15055757761001587, -1.1436352729797363, 0.2616370916366577, -0.47782936692237854, -0.06744687259197235, -0.8285596966743469, 2.057770013809204, -0.9994032382965088, -1.4910459518432617, -0.9157696962356567, 0.17917633056640625, -0.1019781231880188, 0.850927472114563, -0.6252827048301697, 0.8362038135528564, 0.3073349595069885, -0.4667346179485321, -0.534868597984314, 0.570149838924408, -1.312314510345459, 0.13743793964385986, 0.7021819353103638, 0.48877519369125366, 0.2356465458869934, 0.7306021451950073, -0.6906735897064209, 0.3871108293533325, -0.2825995981693268, 0.29611486196517944, -0.6346492767333984, -0.054508015513420105, 0.05620020255446434, 0.2376421093940735, -1.5941811800003052, -0.4928801953792572, -0.05527995899319649, -0.6151925325393677, -0.6795426607131958, 0.9972575902938843, 0.972016453742981, -0.7139392495155334, -0.4933813214302063, 0.013485443778336048, -0.04855258762836456, -0.7178142666816711, 0.11588596552610397, 0.41809067130088806, -0.015042990446090698, 0.1896734982728958, 0.41893279552459717, 0.1128590852022171, -1.0798559188842773, -0.024756504222750664, 0.38314077258110046, 0.3758370578289032, -0.9838247895240784, 0.6427916884422302, 0.9557290077209473, 0.22782637178897858, -0.5636975169181824, 0.9516339302062988, 1.1366709470748901, -0.4049423933029175, -0.15086615085601807, 0.11677258461713791, 0.5732078552246094, 0.5318107008934021, -0.6734510660171509, 0.7215092182159424, -0.6741800904273987, 0.093809112906456, 0.2781245708465576, -0.19310136139392853, 0.026175368577241898, -0.39037996530532837, -0.030210698023438454, 0.5896940231323242, 0.2718312442302704, -0.5960357785224915, -0.5397241711616516, 0.6013019680976868, -0.0016665318980813026, 0.0835663452744484, 0.2667897045612335, 0.38578665256500244, 0.16111721098423004, -0.42862799763679504, 0.09738574922084808, 0.3105098605155945, -0.611881673336029, -0.26489174365997314, 0.2817525267601013, 0.19231605529785156, -0.07927051931619644, -0.027106523513793945, -0.9948118925094604, -0.3951968252658844, -0.8059133291244507, -0.27756375074386597, 0.22557514905929565, -1.7878854274749756, -0.8776154518127441, 0.9607811570167542, -0.12850134074687958, -0.5569889545440674, 0.06532450765371323, 0.37711891531944275, -0.293480783700943, 0.7353933453559875, 0.3178204298019409, -0.41188541054725647, 0.7556183934211731, 0.20629532635211945, -0.3096737861633301, -0.5486434698104858, -0.36112043261528015, 0.12659426033496857, 0.3284372389316559, -0.2824998199939728, -0.29252368211746216, 0.8577256798744202, -0.08110643923282623, -0.9141109585762024, 0.246989905834198, 0.19609566032886505, -0.17529787123203278, 0.10103992372751236, -1.2278908491134644, 0.07887504249811172, -0.7466986179351807, 1.2158730030059814, -0.4772223234176636, -0.011614666320383549, -0.7916173338890076, 0.21291311085224152, -0.8418221473693848, 1.26058030128479, -0.20952510833740234, 1.3059968948364258, -0.0627913698554039, -0.17318415641784668, 0.0001188602764159441, -0.7750334143638611, 0.011641439981758595, 0.18200838565826416, 0.8293179869651794, -0.3072737455368042, 0.2005731761455536, -0.6594754457473755, -0.760689914226532, 0.11726246029138565, 0.8530215620994568, 0.3373165428638458, 0.24816341698169708, -0.5949576497077942, -0.5233051776885986, -0.3236461281776428, 0.22509033977985382, 1.4135535955429077, 0.3209701478481293, -0.4427076578140259, -0.4433915913105011, -0.5009559392929077, 1.382069706916809, -0.023728204891085625, -0.055004533380270004, 0.25431185960769653, 0.5747689604759216, 1.4108014106750488, -0.12485862523317337, 0.2222178727388382, -0.6126775145530701, 0.49243423342704773, -0.18895795941352844, 0.009838396683335304, -0.7069042921066284, -0.24935446679592133, -0.15497983992099762], [0.2113502472639084, 1.7692145109176636, -2.02940034866333, -0.6690124273300171, 1.0774953365325928, 0.4892430901527405, 0.9300203323364258, -1.3944752216339111, -0.24427032470703125, -0.33456894755363464, -0.41626426577568054, 0.38556912541389465, 0.03312757983803749, 1.297544240951538, 0.4312935173511505, 0.08501703292131424, -0.09157989174127579, -0.4962063133716583, 0.7819302082061768, 1.4606962203979492, 0.2215913087129593, -0.7968186736106873, -0.3967226445674896, -0.07141090929508209, 0.14082053303718567, 0.2948082983493805, -0.9602157473564148, -1.0891776084899902, -0.683207094669342, -0.36690205335617065, 1.1681065559387207, -0.9194811582565308, 0.11266682296991348, 0.20475685596466064, -2.152639389038086, -0.9817314743995667, 1.3396594524383545, 0.3810032904148102, 0.35669076442718506, 0.21570847928524017, 1.2904269695281982, 0.4272997975349426, 0.4844169318675995, -1.0837119817733765, -0.03742722049355507, -0.11986377090215683, 0.5860222578048706, -0.5560860633850098, -0.6787769198417664, -1.4458279609680176, 0.8596159815788269, -1.003844976425171, 0.8761880397796631, 0.239234060049057, 0.7961868047714233, 0.2191343754529953, -0.3285659849643707, 0.18152202665805817, 0.6766283512115479, -0.5407837629318237, 0.6341729164123535, 0.6148306727409363, -0.4654676616191864, 1.0973231792449951, 0.5537415146827698, -0.18039186298847198, -0.02031790278851986, 0.5451595783233643, -0.36918869614601135, -0.197852224111557, 0.7877580523490906, -0.19502009451389313, -0.5042517185211182, 0.5602666139602661, -1.1530978679656982, 0.6423248052597046, 0.6106621623039246, 0.057908471673727036, 0.15006808936595917, 0.5613224506378174, -0.6703249216079712, -0.18994301557540894, 0.6495009660720825, -0.6040483117103577, 1.2080086469650269, -0.14389002323150635, 0.15353895723819733, -0.6630674600601196, -0.2892192006111145, 1.2429429292678833, 0.1158759742975235, 0.03459535166621208, 0.907305121421814, -0.7661190032958984, -0.43957939743995667, -0.5164903402328491, 0.32930701971054077, -0.23289166390895844, -0.48704519867897034, -0.4966515600681305, -0.7015867829322815, -0.03314836323261261, -0.5601624846458435, -0.7224428653717041, 0.14767250418663025, 1.448174238204956, 0.20155292749404907, -0.31450122594833374, -0.9566220045089722, 0.3620013892650604, 0.18216203153133392, 0.363989919424057, -1.1454094648361206, -1.1511766910552979, -0.4901370108127594, 0.8672056794166565, 1.212043285369873, -0.3477364778518677, 0.5909764170646667, 0.8517055511474609, -0.874363899230957, 0.018334509804844856, -0.3640393912792206, 0.4589715600013733, 0.674211859703064, 0.29106757044792175, -0.18152059614658356, -0.5434077382087708, 0.09445937722921371, 0.23419596254825592, 0.22409044206142426, -0.3186178505420685, 0.07110069692134857, 0.24630971252918243, -0.6046103835105896, 1.0854195356369019, -0.12956134974956512, -0.6099616885185242, -0.15744651854038239, 0.038754772394895554, 0.3805646598339081, -0.453041672706604, -0.77096027135849, -0.3862188160419464, 0.33839163184165955, -0.3756985664367676, 0.3943897485733032, -0.24191690981388092, -1.03452730178833, -0.3661230206489563, -0.42645764350891113, 0.5803343057632446, 0.494469553232193, 0.5578261613845825, 0.09412076324224472, -0.04659329727292061, 0.08997803181409836, 0.25312259793281555, 0.060619376599788666, 0.04803847894072533, 1.008284568786621, 0.09601906687021255, -0.21573688089847565, 1.1452568769454956, -0.03259417042136192, -0.22308357059955597, 0.035577189177274704, 0.7250282764434814, -0.2868374288082123, 0.1596003919839859, -0.5021390914916992, -0.31572094559669495, -0.8607319593429565, 0.6039755344390869, 0.7387371063232422, -0.7522060871124268, 1.3415818214416504, -0.8560901284217834, -1.326003909111023, -1.3552504777908325, 0.26980212330818176, -0.14398309588432312, -0.07553351670503616, 0.28055262565612793, 0.28198251128196716, 0.15033701062202454, 0.7303903102874756, -0.2870841920375824, -0.13123996555805206, -0.3305688500404358, -0.8840419054031372, 0.03669667989015579, -1.0356814861297607, 0.009017763659358025, -0.29730769991874695, -0.7875057458877563, 0.5175722241401672, -0.262114942073822, -0.732928454875946, -0.26242318749427795, -0.6478222608566284, -0.4235668182373047, -0.6423833966255188, 0.11266174167394638, -0.5777597427368164, 0.9486649632453918, -1.6054030656814575, 0.8749647736549377, -0.7751226425170898, -0.22976744174957275, 1.507470965385437, 0.4912981688976288, -0.8670281767845154, 0.8700448870658875, -0.35627102851867676, -1.6972073316574097, 0.3852517306804657, 0.31507086753845215, -0.338495135307312, -0.1926816999912262, 0.36480292677879333, 0.3166530430316925, 0.4517981708049774, -0.09890279173851013, 0.4283578097820282, -0.34156981110572815, -0.7780565619468689, -0.23688757419586182, -0.7808917164802551, -0.14261987805366516, -0.6496474146842957, -1.696908950805664, 0.9998825788497925, 0.2726219892501831, -1.0693854093551636, 0.17968925833702087, 0.030382975935935974, 0.398968905210495, 0.7807519435882568, 0.8694416284561157, 0.5560547709465027, 1.0861152410507202, 0.042269814759492874, 0.41221413016319275, -0.9530156254768372, -0.5392481684684753, 1.1239347457885742, -0.5481918454170227, -0.37889721989631653, 1.0710384845733643, 0.7244889736175537, 0.5670217275619507, 0.4100169241428375, -0.2475021332502365, 0.4045262038707733, -0.6551990509033203, -0.7099522948265076, 0.47736626863479614, -0.6471962928771973, 1.3978404998779297, 1.1341078281402588, -0.6022748351097107, -0.18098358809947968, 0.29740390181541443, -0.18161465227603912, -0.7009196281433105, -0.13139992952346802, -0.16239525377750397, -0.10186495631933212, -0.22279320657253265, -0.5475904941558838, -0.25661975145339966, -0.08368374407291412, 0.9334423542022705, -0.3908606767654419, -0.8183951377868652, 0.030240634456276894, 1.226357340812683, 0.40400218963623047, 0.31238600611686707, 0.2449488639831543, -0.5856184959411621, -0.9178195595741272, -0.16006730496883392, 0.8062414526939392, 0.020066875964403152, 0.0546964630484581, 0.17703282833099365, 0.45200812816619873, -0.4693927466869354, 0.35304564237594604, 0.5676087737083435, -0.5059099793434143, -0.10215846449136734, 0.14278768002986908, 0.2862836718559265, 0.7222191691398621, -0.8072362542152405, -0.44655120372772217, -0.6814152002334595, 0.3532618582248688, 1.6484436988830566, 0.7224335670471191, 1.82291841506958, 0.17142285406589508, 0.2386210709810257, -0.027199264615774155, -0.197307288646698, -0.4302748143672943, -1.0063612461090088, -0.2993384003639221, -0.10647325217723846, -0.08590131998062134, -0.33861833810806274, 0.08108827471733093, 0.6837441921234131, -0.24931767582893372, 0.6710167527198792, 0.7090746760368347, -0.49010342359542847, -1.1164257526397705, -0.6051930785179138, 0.23873503506183624, -0.7243704199790955, 0.2851620018482208, 0.8024225234985352, -0.8529883623123169, -0.8058302402496338, -0.22419887781143188, 0.06240600720047951, 0.8808924555778503, 0.0255852323025465, 0.3641214072704315, -0.8887600302696228, -0.46343499422073364, -0.41434165835380554, 1.6658875942230225, 0.10610346496105194, 0.1468035727739334, -0.41455668210983276, 0.6772633790969849, 0.601225733757019, 0.011511923745274544, -0.2045818269252777, 0.6977465748786926, -0.4263768792152405, -0.8520421385765076, 0.12619540095329285, 0.1810770183801651, -0.034426767379045486, -0.4627644717693329, -0.53565514087677, 0.019199188798666, -0.08516118675470352, -0.3010362982749939, 0.5342620015144348, -0.2782106399536133, 0.710374116897583, 0.21227039396762848, 0.13241951167583466, 0.8168527483940125, -0.08915670216083527, -0.18678106367588043, -1.0730557441711426, 0.8787552118301392, 0.8480959534645081, 0.8016639351844788, 0.10381633043289185, -0.5114626884460449, -0.16989284753799438, -0.25300610065460205, 0.5964053869247437, 0.07293523848056793, 0.8232340216636658, 0.4532519280910492, -0.22970300912857056, -0.478933721780777, 0.07677213847637177, -0.06383982300758362, -0.6668812036514282, -0.28683599829673767, 0.5377904176712036, -1.6147137880325317, -0.8111729621887207, 1.3421976566314697, 0.31350529193878174, -0.2906655967235565, -0.46108826994895935, 0.22013339400291443, 0.8092550039291382, -0.0626664087176323, 0.36341172456741333, -1.0073498487472534, 0.2904292643070221, 0.1424376666545868, -1.2107607126235962, -0.2318696826696396, 0.11962264776229858, 0.4162242114543915, 0.4142797887325287, -0.5250504016876221, 0.3135519027709961, 0.04674239829182625, 0.3190484642982483, 1.1211912631988525, 0.18854588270187378, 0.4860397279262543, -0.3424610197544098, -0.16729038953781128, -0.3049498498439789, 0.25765296816825867, 1.0299113988876343, -0.6439660787582397, -0.30187466740608215, -0.0923164039850235, -0.10517659038305283, 0.18097667396068573, 0.3290579319000244, -0.14484204351902008, 0.27715015411376953, -0.07537294179201126, 0.073630191385746, -0.46567991375923157, -0.30120649933815, 1.0985783338546753, 0.10659415274858475, 0.22637173533439636, 1.044870376586914, -0.09516031295061111, -1.2991665601730347, 0.12990067899227142, -0.029000718146562576, 0.05573723465204239, -0.11785732954740524, 0.14070983231067657, 0.2823786437511444, -0.3637925684452057, 0.8054221272468567, 0.5225865244865417, 0.787635326385498, 0.20401158928871155, 0.21490703523159027, 0.21358263492584229, 0.16027827560901642, 0.5381582379341125, 1.7789479494094849, 0.3731416165828705, -0.3935169577598572, -0.9954655766487122, 0.5466240048408508, -0.32171523571014404, 0.6478259563446045, 0.4075981080532074, -0.25864169001579285, 1.0889756679534912, -1.1350635290145874, -0.4623391330242157, 0.9208005666732788, -0.2525322437286377, -0.055518001317977905, 0.7900784611701965, -0.11006742715835571, -1.0202937126159668, 0.47907406091690063, 0.08169393986463547, 0.1617763340473175, 0.3796347379684448, 0.25469931960105896, -0.07599063962697983, 0.6634501218795776, -0.14539335668087006, 0.5832062363624573, -0.6831530928611755, 0.18127219378948212, 0.13878263533115387, -0.20059959590435028, 0.003079020418226719, 0.05317873880267143, 0.40637052059173584, 1.0017448663711548, -0.1787835657596588, -0.925374448299408, -0.19288834929466248, -0.5119276642799377, 0.2763226330280304, -0.24752886593341827, -0.4875618815422058, -0.569102942943573, -0.7657907009124756, -0.11706914007663727, 0.5557739734649658, -0.3682354986667633, -0.39744818210601807, -0.0901569202542305, -0.9329829216003418, 0.38805949687957764, 0.7643168568611145, 1.1733289957046509, 0.008235732093453407, 0.2591114640235901, 0.27960410714149475, 0.195415660738945, -0.47619929909706116, -0.0642198845744133, 0.4170874357223511, -0.4465644359588623, 0.41345328092575073, -1.7939852476119995, -0.9498993754386902, 0.25917255878448486, 0.7715365886688232, 0.44882479310035706, 0.7354426383972168, 1.0984370708465576, 0.8080486059188843, -0.3631899058818817, -0.04406013712286949, -0.43848907947540283, -0.7146148085594177, 0.8218344449996948, 0.6973509788513184, -0.7918050289154053, -0.5953199863433838, -0.9515816569328308, -1.7546887397766113, 0.9749664664268494, 0.031968459486961365, -1.5323153734207153, 0.8508568406105042, 0.20166324079036713, 0.33151566982269287, 0.3851025402545929, -0.6823182106018066, 0.5563364624977112, -0.3981923460960388, 0.07081609964370728, -1.452194094657898, 0.2139996439218521, 0.5861663222312927, -0.1619066745042801, -0.5373499393463135, 0.362504243850708, -0.33967646956443787, -0.07384023815393448, 0.3400345742702484, 0.34393253922462463, 0.5790413022041321, 0.8928434252738953, 0.23748718202114105, -1.2795917987823486, 0.022909192368388176, -0.25458481907844543, -0.029350629076361656, -0.294055700302124, 0.5673316121101379, 0.13228930532932281, -0.1801527738571167, -0.34173694252967834, -0.2785147726535797, -0.5206685662269592, -0.6572725772857666, -0.7013758420944214, 0.49834924936294556, 1.0224502086639404, -0.13373197615146637, 0.2934114933013916, -0.21012425422668457, -1.0251338481903076, -0.7122920751571655, 0.6592389941215515, 0.884127140045166, -0.5949432849884033, 0.01461128517985344, 0.009365352801978588, -0.5189486145973206, -0.44791844487190247, -0.030256925150752068, 0.22987836599349976, -0.9431843757629395, -0.835476279258728, -0.8345788717269897, 0.06488864123821259, 0.5226209163665771, -0.6050516366958618, 0.9696823954582214, 0.7116990089416504, -0.7677414417266846, 0.568700909614563, -0.13161489367485046, -1.3021045923233032, 0.2215472012758255, -1.366360068321228, 0.8583512902259827, -0.5108921527862549, 0.8662171959877014, -0.06246694177389145, 0.704668402671814, -1.295386552810669, -0.5953142642974854, -1.236095905303955, -0.3828999400138855, 1.4908400774002075, 0.28658542037010193, -1.2112956047058105, 1.1934338808059692, 0.24590617418289185, -0.8392990827560425, -0.4285115897655487, 0.3557363450527191, -1.029526948928833, 0.03820250555872917, 0.7471341490745544, 1.3478001356124878, 0.10796857625246048, 1.3891202211380005, 0.31283244490623474, 0.5909778475761414, -0.4140881597995758, 0.332735151052475, -0.4031623899936676, 0.40135157108306885, -0.12946230173110962, 0.5025833249092102, -0.9176239371299744, -0.5224291682243347, -0.10665249079465866, -0.8883554935455322, -0.7458634972572327, 0.3815114498138428, 1.2079745531082153, -0.4201989769935608, -0.007122650742530823, -0.09905319660902023, 0.6121443510055542, -0.7457574009895325, 0.13981275260448456, -0.34645339846611023, 0.20248185098171234, -0.25219404697418213, -0.2421974539756775, 0.37562546133995056, -1.1921228170394897, 0.39005768299102783, 0.408458411693573, -0.07472187280654907, -0.7220620512962341, 0.5853510499000549, 0.5268079042434692, 0.5617173314094543, -0.4762767553329468, 1.1957560777664185, 1.5295425653457642, -0.15472975373268127, 0.02271103858947754, 0.28279224038124084, 0.21996481716632843, 0.8363768458366394, -0.7365095615386963, -0.1064746230840683, -0.9341717958450317, 0.2577594816684723, 0.24892117083072662, -0.2601463794708252, -0.13266441226005554, -0.07846304029226303, -0.6137769222259521, -0.024530936032533646, 0.6466752290725708, 0.16220448911190033, -0.8602014780044556, 1.3914494514465332, -0.2721574902534485, -0.332235187292099, 0.39212116599082947, 0.29814931750297546, 0.11371985077857971, -0.4722461402416229, 0.17776595056056976, 0.2883976399898529, -0.9502606391906738, 0.36342620849609375, 0.10961807519197464, -0.15343745052814484, 0.10596121847629547, -0.6007225513458252, -0.9099699854850769, 0.13920128345489502, -0.4396362006664276, -1.3076443672180176, 0.39291155338287354, -0.8441803455352783, -0.806889533996582, 0.5112894773483276, -0.14498081803321838, -0.5129150748252869, -0.3739173114299774, 0.3609298765659332, 0.03989919275045395, 0.33100584149360657, 0.9348916411399841, -0.324516236782074, 1.1307778358459473, 0.30956026911735535, 0.4989885985851288, -1.1641855239868164, 0.49830102920532227, 0.45635533332824707, 0.6240633726119995, -0.4913288652896881, -0.4065009355545044, 0.7682265639305115, -0.2834552824497223, -0.937414824962616, 0.08144286274909973, -0.23018544912338257, -0.06198938563466072, 0.2739579677581787, -0.9918591380119324, -0.17489348351955414, 0.3094594180583954, 0.6901882290840149, -0.971885621547699, -0.686734139919281, -1.0807042121887207, 0.5456658005714417, -0.9162799119949341, 1.1700615882873535, -0.22293467819690704, 1.0144635438919067, 0.6446710228919983, -0.8798672556877136, -0.21307691931724548, -0.45339658856391907, 1.2307275533676147, -0.16356806457042694, 0.6757274866104126, -0.5114302039146423, 0.48981380462646484, -0.09401804208755493, -0.8279900550842285, 0.302141934633255, 0.23838798701763153, -0.1620633900165558, -0.16967537999153137, -0.8344714045524597, -1.087308645248413, -0.7028946280479431, 0.5646926760673523, 1.1388087272644043, 0.32023003697395325, 0.5469565391540527, 0.24417750537395477, -1.1617910861968994, -0.16126395761966705, 0.6367945671081543, -0.20379871129989624, -0.06338274478912354, 1.3553950786590576, 1.6173007488250732, 0.27274370193481445, 0.022591635584831238, -0.42970359325408936, 0.9862112998962402, -0.5230317115783691, -0.10125025361776352, -0.33523985743522644, 0.21051712334156036, -0.2646556794643402], [-0.1755213588476181, 1.7579327821731567, -1.568742275238037, -0.8595821857452393, 1.2498400211334229, -0.0031415820121765137, 1.0837924480438232, 0.0979674682021141, 0.2013150155544281, -0.4536544382572174, -0.7798994183540344, 0.21702344715595245, -0.10214540362358093, 0.5203243494033813, 0.6168572902679443, 0.5158201456069946, 0.25009965896606445, -0.32998427748680115, 0.6864540576934814, 1.406090259552002, -0.11005981266498566, 0.3159087002277374, -0.7347614765167236, 0.21334637701511383, -0.13171546161174774, 0.1513126641511917, 0.08647122234106064, -0.6367007493972778, -0.9814901351928711, -0.9528281092643738, 0.771602988243103, -0.9608857035636902, 0.692240297794342, 0.6550279855728149, -0.9618284702301025, 0.3194204568862915, 1.1190917491912842, -0.22808627784252167, -0.0880126953125, 0.07932274043560028, 1.9541641473770142, 0.06711741536855698, -0.20739774405956268, -1.4160345792770386, -0.1224934458732605, 0.3064633011817932, 0.666775107383728, -0.714353621006012, -0.41168397665023804, -1.1317416429519653, 0.4646839499473572, 0.41476374864578247, 0.7416625022888184, 0.7206891179084778, 0.4515531361103058, -0.2922954559326172, -0.17800962924957275, 0.8035873770713806, 0.43313807249069214, -0.7550510764122009, 1.0542502403259277, 0.16033293306827545, -0.5148492455482483, 0.801154375076294, 0.37404006719589233, 0.17277026176452637, 0.0767679363489151, 0.7459374666213989, 0.3222832679748535, -0.49247485399246216, -0.03776621073484421, 0.7143944501876831, -0.353309690952301, 0.1359798014163971, -0.7024267911911011, 0.2681715488433838, 0.8834463953971863, 0.2716669738292694, -0.19155296683311462, 0.6849815845489502, -0.9111034870147705, 0.30316436290740967, 0.6294592618942261, -0.4321076571941376, 0.8161647319793701, 0.4658423960208893, -0.19786319136619568, -0.75160151720047, -0.16778908669948578, 1.9280816316604614, 0.2733186185359955, -0.21112830936908722, 0.6389639377593994, -0.46244746446609497, 0.0333356037735939, -0.4766176640987396, 0.29898062348365784, -0.586139976978302, -0.33768489956855774, -0.5812783241271973, -0.8499498963356018, -0.9645832777023315, 0.21096256375312805, 0.5379142165184021, -0.27320921421051025, 1.3377407789230347, 0.20031356811523438, 0.0076225390657782555, -0.3439674377441406, 0.04612082988023758, 0.08321814239025116, -0.1391586810350418, -0.34055936336517334, -0.06615210324525833, -0.5322837233543396, -0.04438936710357666, 1.0469775199890137, -0.19685396552085876, 0.21333831548690796, 0.27534085512161255, -0.47462576627731323, 0.32466456294059753, -0.24698969721794128, 0.7842239141464233, 0.3598547577857971, 0.25297996401786804, -0.4267011880874634, -0.7891533970832825, 0.3729957640171051, -0.005797912832349539, 0.02339373342692852, -0.3277074694633484, 0.4110405743122101, 1.151607871055603, -0.5533212423324585, 0.997463583946228, -0.2506154775619507, -1.0168018341064453, 0.055912528187036514, -0.3174492120742798, 0.04487168788909912, 0.2102281004190445, -0.3237391710281372, -0.3112531900405884, 0.2906253933906555, -1.1110634803771973, 0.6178370118141174, -0.4623047411441803, -0.3627636432647705, 0.0864318311214447, -0.596749484539032, 0.5043520331382751, 0.30460670590400696, 1.536181092262268, 0.06207888200879097, -0.34435349702835083, 0.6736199259757996, 0.29157570004463196, 0.3408674895763397, 0.48076286911964417, 0.8753671050071716, 0.4449533522129059, -0.871471643447876, 0.22248555719852448, 0.18560433387756348, -0.25178250670433044, 0.8317119479179382, 0.788221538066864, -0.4108251631259918, 0.22175775468349457, -0.5417061448097229, -0.8575888276100159, -1.1777174472808838, 0.7911221981048584, 0.5320544838905334, -0.7979225516319275, 1.037738561630249, -0.5255163908004761, -1.1722058057785034, -1.0544071197509766, 0.036047451198101044, -0.04311006888747215, -0.010752681642770767, 0.18780866265296936, 0.7893803715705872, 0.3120826184749603, 0.34457600116729736, -0.2872842848300934, 0.11200851947069168, -1.5192002058029175, -1.2823773622512817, -0.3471853733062744, -1.1933982372283936, 0.5666031241416931, -0.3420276939868927, -0.624467670917511, 0.4461838901042938, -0.9588021039962769, -0.3678421974182129, -0.22788046300411224, -0.2849366068840027, -0.020827585831284523, -0.4645230174064636, 0.18471337854862213, -0.3368699848651886, 0.15903525054454803, -0.788044273853302, 0.827477753162384, -0.5302096009254456, -0.18027152121067047, 0.8243291974067688, -0.17216609418392181, -1.1657038927078247, 0.7501717805862427, -0.33025988936424255, -1.1497606039047241, 0.35299861431121826, 0.7043926119804382, 0.5606293082237244, -0.234994038939476, -0.01746857725083828, 0.16125483810901642, 0.4951460659503937, 0.24306729435920715, 0.11157479137182236, -1.1579257249832153, -0.5615282654762268, -1.093882441520691, -0.7679527401924133, 0.18793322145938873, -0.5587426424026489, -1.283112645149231, 0.37184011936187744, 0.13637514412403107, -0.5784575939178467, 0.5514752268791199, -0.27666962146759033, 0.2393045723438263, 0.17642183601856232, 0.9275737404823303, 0.011079186573624611, 0.6309197545051575, -0.8567063808441162, 0.049833204597234726, -0.5827748775482178, -0.1024208664894104, 0.984186053276062, -0.29185134172439575, 0.5597940683364868, 1.0397506952285767, 0.5713502168655396, 0.28915923833847046, 0.45282283425331116, -0.8827297687530518, -0.34752732515335083, -0.5806699395179749, -1.073876976966858, 0.30763429403305054, -0.2848205864429474, 1.3998210430145264, 0.4023551344871521, -1.3320989608764648, 0.28164735436439514, 0.49970823526382446, -0.034047145396471024, -0.14217621088027954, -0.3973150849342346, -0.4931972920894623, 0.4691745340824127, -0.1914200633764267, -0.005720559041947126, 0.5843101143836975, -0.6109746098518372, 1.427259922027588, -0.5672566294670105, -0.06327077001333237, -0.5235020518302917, 0.5867727994918823, 0.2145557850599289, 0.81163489818573, 0.16504521667957306, -0.7515349984169006, -0.2550276517868042, -0.8023117780685425, 0.7463493943214417, 0.1261197030544281, 0.07969789206981659, 0.3574345111846924, 0.8275647163391113, -0.2012864351272583, 0.6459400057792664, 0.7144494652748108, -0.06623755395412445, 0.5091612935066223, 0.19282402098178864, 0.06051074340939522, 0.9152682423591614, -0.21040013432502747, -0.46798354387283325, -0.5692481398582458, 0.6370785236358643, 1.1157499551773071, 1.124140739440918, 1.8938943147659302, 0.511546790599823, -0.16131114959716797, -0.3099517822265625, -0.1275429129600525, -0.38876572251319885, -0.5221567749977112, -0.3675377368927002, -0.2736268937587738, -0.07804382592439651, -0.4770219624042511, 0.02793879248201847, 0.31549811363220215, -0.2865070104598999, 0.9038796424865723, 0.391958624124527, -0.8238998651504517, -0.13654230535030365, 0.06746236234903336, -0.291709840297699, -0.882684051990509, 0.9234410524368286, 0.9552358388900757, -1.1382322311401367, -0.02592085301876068, -0.13579179346561432, 0.33171096444129944, 0.8400304913520813, 0.17009903490543365, 0.5422985553741455, -0.8162128329277039, -0.8506743907928467, -0.4447278678417206, 1.3681050539016724, 0.36797720193862915, 0.3106171786785126, -0.5566118955612183, 0.3470193147659302, 0.5074235200881958, -0.3755318522453308, 0.06834398955106735, 1.2622408866882324, -0.30220627784729004, -0.8432661890983582, 0.022859852761030197, 0.10915913432836533, 0.43958377838134766, -0.2963285744190216, -0.1976606249809265, -0.011379274539649487, 0.07847833633422852, 0.22958306968212128, 0.5835081934928894, -0.1824844479560852, 0.701143741607666, 0.23948270082473755, -0.13041532039642334, 1.1412713527679443, -0.5403286814689636, 0.4816894829273224, -1.335240125656128, 0.37224990129470825, 0.8165205717086792, 1.255677580833435, -0.49059486389160156, -0.1552133411169052, 0.05805196985602379, -0.16398130357265472, -0.06907631456851959, 0.4194156527519226, 1.0658940076828003, 0.5167284607887268, -0.5777705311775208, -0.35553133487701416, 0.3345291316509247, -0.28070420026779175, -0.4715062379837036, -0.20995992422103882, 0.7086817622184753, -0.9916625022888184, -0.6405019760131836, 0.6186323165893555, 0.024229925125837326, -0.4241826832294464, 0.0315418504178524, -0.15059451758861542, 0.3138832151889801, -0.12830065190792084, 0.48723700642585754, -0.586793839931488, 0.26124945282936096, 0.037044353783130646, -0.404257208108902, -0.5112212300300598, 0.003909209743142128, 0.6872767806053162, 0.6705369353294373, -0.4237595796585083, 0.1168522834777832, -0.42912557721138, 0.3425544798374176, 0.48487159609794617, -0.5295777320861816, -0.12536999583244324, 0.692615807056427, 0.45099377632141113, 0.1576581448316574, 0.4850746989250183, 1.0742121934890747, -0.745556116104126, -0.05800259858369827, 0.5420441031455994, 0.07514891028404236, 0.43487346172332764, -1.1444841623306274, 0.09906695038080215, 0.10735607892274857, -0.4936271011829376, -0.04447196424007416, -0.06720792502164841, -0.3045582175254822, 1.6497710943222046, 0.21301865577697754, 0.6421810388565063, 0.3477938771247864, -0.4053531289100647, -0.6913028359413147, -0.13755883276462555, 0.19646665453910828, 0.3475029766559601, -0.8124240636825562, 0.39185935258865356, 0.3244980573654175, 0.12631914019584656, 0.457209050655365, -0.07303924113512039, 0.39643147587776184, 0.4351482391357422, 0.010684063658118248, -0.011722652241587639, 0.43212831020355225, 1.0751873254776, 1.056079387664795, 0.6837748289108276, -0.43904754519462585, -0.34335580468177795, 0.8985362648963928, -0.5605700612068176, -0.300660103559494, 0.31468191742897034, -0.05866336077451706, 1.1592382192611694, -1.098793864250183, -0.9869264960289001, 0.6769230365753174, 0.6621009111404419, 0.19523419439792633, 0.26009100675582886, 0.035501379519701004, -0.6732206344604492, 0.5821115374565125, 0.49446752667427063, -0.17405693233013153, 0.20531333982944489, 0.4165375530719757, 0.44211092591285706, 0.5428345799446106, -0.28151074051856995, 0.4128134250640869, -0.342246949672699, -0.6125375628471375, -0.2052256017923355, -0.5021668672561646, 0.43419599533081055, 0.6476602554321289, 0.41820046305656433, 0.3392711281776428, -0.31723207235336304, -0.4619767367839813, 0.17846344411373138, -0.8907031416893005, 0.5289070010185242, -0.3215942084789276, -0.9822676181793213, -0.8145933151245117, -1.0008069276809692, -0.5512714385986328, -0.0004407104570418596, -0.4108831286430359, -0.19525927305221558, 0.08432374894618988, -0.9236734509468079, 0.43740689754486084, 0.29983144998550415, 0.9129729866981506, 0.6090401411056519, 0.2738198935985565, 0.5539038777351379, 0.46266859769821167, -0.4971257746219635, 0.33794113993644714, 0.04256633296608925, 0.1534954458475113, -0.13230673968791962, -1.3953722715377808, -0.33174824714660645, 0.3736773729324341, 0.013847037218511105, -0.09344810992479324, 0.06813515722751617, 0.8912514448165894, 0.8807227611541748, -0.082384392619133, -0.499559611082077, -0.05535885691642761, -0.30505621433258057, 0.9487214684486389, 0.09844125062227249, -0.861424446105957, 0.3862777352333069, -0.6958879828453064, -1.504964828491211, 0.9490406513214111, -0.16066062450408936, -0.6598734855651855, 0.2640523612499237, 0.0029413211159408092, -0.1572543978691101, 0.7210618853569031, -0.1998830884695053, 0.23788024485111237, -0.0787191092967987, -0.13634228706359863, -1.3156737089157104, 0.7464633584022522, 0.2666325271129608, 0.24845841526985168, -0.3189660906791687, -0.23496222496032715, 0.44457095861434937, -0.21550263464450836, -0.026602908968925476, 0.21209050714969635, 0.4203992784023285, 0.42037343978881836, -0.25256097316741943, -0.6146575212478638, 0.3019380271434784, -0.6768218874931335, -0.367840439081192, -0.1102953776717186, 0.3565315902233124, 0.2540082037448883, -0.6881616711616516, -0.3165765106678009, -0.0007035303860902786, -0.14919845759868622, 0.12029687315225601, -0.32024165987968445, 0.8249509930610657, 0.39907070994377136, -0.36760470271110535, 0.19552575051784515, -0.5627008080482483, -0.4538784325122833, -1.0815742015838623, -0.04145731031894684, 0.7497435808181763, -0.7850672006607056, -0.4557753801345825, 0.11319994181394577, -0.272128164768219, -0.13869179785251617, -0.2775220572948456, 0.13145627081394196, -1.027819275856018, -1.2103614807128906, -1.1298185586929321, 0.14428618550300598, 0.3368353843688965, -0.7604861855506897, 0.7088003754615784, 0.5932384729385376, -1.3958114385604858, 0.06392095983028412, -0.7074340581893921, -1.235656499862671, -0.06446224451065063, -1.4220770597457886, 0.07499787956476212, -0.4151650369167328, 0.27022382616996765, -0.15107034146785736, 0.766936719417572, -1.0044070482254028, -1.1564500331878662, -0.610029935836792, -0.473513126373291, -0.2311783879995346, 0.6660272479057312, -0.6445546746253967, 0.7751011848449707, 0.518855631351471, -0.29052016139030457, -0.5706160664558411, 0.6054579019546509, -1.2509777545928955, 0.5611909031867981, 0.2117842435836792, 0.3333345651626587, -0.09390901029109955, 1.0498836040496826, -0.2755083441734314, 0.6097962856292725, -0.24254441261291504, -0.009698010049760342, 0.03154829517006874, -0.026082675904035568, -0.26276421546936035, -0.08103767782449722, -0.8318877816200256, -0.8605888485908508, -0.13188791275024414, -0.8513954281806946, -1.4193915128707886, 0.5120542049407959, 1.1908289194107056, -0.5478686094284058, 0.5240527987480164, -0.4498150050640106, 0.5671483278274536, -1.4157302379608154, 0.08258501440286636, 0.6709393858909607, -0.7692569494247437, 0.009998573921620846, -0.8190038204193115, 0.2186243236064911, -0.9777805805206299, -0.012128523550927639, 0.5099785327911377, 0.25711047649383545, -0.4740310311317444, 0.22095884382724762, 1.1633089780807495, -0.289537250995636, -0.21062003076076508, 0.7375152707099915, 0.7605711817741394, -0.5172820687294006, -0.4208633601665497, 0.33159589767456055, -0.6021512746810913, 0.8245143294334412, -0.4999926686286926, -0.21920210123062134, -0.7159535884857178, 0.06521975994110107, -0.36760368943214417, -0.7888786196708679, -0.41860783100128174, -0.4695826470851898, -0.7455745339393616, -0.038786303251981735, 0.454754501581192, 0.2697567045688629, -0.44240134954452515, 1.3046950101852417, 0.2746916711330414, -0.2430020272731781, 0.22866731882095337, 0.5260692834854126, 0.17370368540287018, -0.040549565106630325, 0.0562722310423851, 0.15643686056137085, -0.2106732279062271, 0.21161004900932312, 0.1793508529663086, 0.16444522142410278, -0.2549211084842682, -0.3057560920715332, -1.6368674039840698, -0.28154081106185913, -0.1341570019721985, -0.3062414228916168, 0.1893940567970276, -0.6576730608940125, -0.9329875707626343, 0.18350020051002502, 0.15544761717319489, -0.1468888372182846, -0.19776614010334015, -0.36213329434394836, -0.6141271591186523, 0.293010413646698, 0.6699859499931335, -0.5443328619003296, 0.9621171355247498, 0.1840255856513977, -0.1670178920030594, -0.4332219660282135, -0.24347005784511566, -0.03776656091213226, 0.332592636346817, -0.04235363006591797, -0.19177916646003723, 0.7710458636283875, -0.5367962121963501, -1.1790986061096191, -0.16940942406654358, 0.6739646196365356, 0.17826524376869202, -0.319819837808609, -0.45835304260253906, 0.42440366744995117, 0.6060051321983337, 0.31468695402145386, -0.40784752368927, -1.0621434450149536, -1.0887542963027954, 0.6466478705406189, -0.3213768005371094, 0.7828044891357422, -0.3046237528324127, 0.7822979092597961, 0.3453792333602905, 0.11927919089794159, -0.2766478359699249, 0.1255270093679428, 0.15693412721157074, -0.6612263321876526, 1.2826175689697266, 0.5831943154335022, 0.2347298115491867, -0.14440320432186127, -0.6606259346008301, -0.23203571140766144, -0.28973522782325745, -0.3225264549255371, 0.49253740906715393, -0.8213598132133484, -0.15444523096084595, -0.5510513186454773, 0.4325779974460602, 1.0631645917892456, 0.3733671009540558, 0.437546044588089, 0.013864175416529179, -0.8213516473770142, 0.2058609127998352, 0.005766184069216251, -0.2564910054206848, 0.07786964625120163, 0.9481570720672607, 1.3491953611373901, 0.49782946705818176, -0.18214410543441772, 0.16321085393428802, 0.8214118480682373, -0.7740562558174133, -0.24786213040351868, -0.6475149989128113, 0.2265959084033966, -0.5148377418518066], [-1.0674538612365723, 1.3547685146331787, -1.8199107646942139, -1.1870447397232056, 1.0859726667404175, -0.4017763137817383, 1.5553271770477295, -0.07670386880636215, 0.015424801036715508, -0.5861388444900513, -0.3011188805103302, -0.04904518648982048, 0.41721251606941223, 1.6781182289123535, 0.1322752833366394, 0.42168688774108887, 0.4602124094963074, -0.09437219053506851, 0.6025944948196411, 1.6169880628585815, -0.8560730814933777, 0.31432250142097473, 0.47500497102737427, 0.37609708309173584, 0.08101895451545715, 0.3234555125236511, -0.7775503396987915, -0.8146317005157471, -0.7585482597351074, -0.911354124546051, 1.911181092262268, -1.092829942703247, 0.03246372938156128, 0.15776531398296356, -1.399376392364502, -0.13899023830890656, 1.0382646322250366, 0.9146591424942017, -0.149112731218338, 0.20751126110553741, 1.2957843542099, 0.1428210437297821, -0.37104737758636475, -1.7956035137176514, 0.8413130640983582, -0.27338212728500366, 0.9808857440948486, -0.9076545834541321, -0.13748398423194885, -0.9124729633331299, 0.556341290473938, -0.7276849746704102, 0.8704531788825989, 0.6974648237228394, 0.45435547828674316, -0.004572000354528427, 0.4056440591812134, 0.053145743906497955, 0.16975779831409454, -0.14938107132911682, 0.8665227890014648, 0.23802819848060608, -0.7049931287765503, 0.7408541440963745, 0.5210165977478027, 0.3485925793647766, -0.4242172837257385, 0.16567978262901306, 0.1847151517868042, 0.20157074928283691, 0.28563445806503296, -0.18940776586532593, -0.22884903848171234, -0.08288264274597168, -0.339227557182312, 0.8139889240264893, 0.7766404151916504, 0.6631704568862915, 0.8154134154319763, 0.6293342709541321, -0.6618181467056274, -0.5600850582122803, 0.6041926145553589, -0.2844552993774414, 0.20125329494476318, 0.023156728595495224, 0.2620314955711365, -1.045802116394043, -1.1058937311172485, 1.299760341644287, -0.007675148546695709, 0.20740333199501038, 0.5913508534431458, -0.4840405583381653, 0.5552534461021423, -0.20137707889080048, 0.1514570713043213, -0.8799606561660767, -0.0426408015191555, -0.44011351466178894, -1.0808227062225342, -0.16903015971183777, 0.6107161045074463, 0.01340213418006897, -0.7184898853302002, 0.7380949854850769, 0.304438054561615, -0.3503451645374298, -0.5008764266967773, 0.32218480110168457, -0.5886113047599792, 0.49681586027145386, -0.9565086364746094, -1.0043995380401611, -0.4936264157295227, 0.6331313848495483, 0.9803475737571716, -0.12792840600013733, 0.7151798009872437, 0.5783320665359497, -0.7263052463531494, -0.24654074013233185, 0.5362573862075806, 0.5178203582763672, 0.40957966446876526, 0.01915527880191803, -1.0619609355926514, -0.6628392934799194, -0.6242343187332153, -0.638800859451294, 0.46580636501312256, -0.142680361866951, -0.24706147611141205, 0.49458205699920654, -0.24719159305095673, 1.4076411724090576, -0.2712860703468323, -0.9758498668670654, -0.10220127552747726, -0.09303860366344452, 0.6407028436660767, -0.27852553129196167, -0.17326287925243378, -0.5557266473770142, 0.23926392197608948, -0.005721673369407654, 0.04587673023343086, -0.6171149015426636, -0.39223265647888184, 0.10657389461994171, -0.9848146438598633, 0.69479900598526, 0.13278953731060028, 1.6102403402328491, 0.06566693633794785, -0.39173877239227295, 0.527725100517273, -0.09699750691652298, 0.47187092900276184, 0.17588582634925842, 0.4848380386829376, 0.09717375785112381, -1.2181003093719482, 0.23267820477485657, 0.20692011713981628, -0.558997392654419, 0.77397221326828, 0.3581657111644745, 0.3037407696247101, 0.33324936032295227, -0.325256884098053, -0.5022518634796143, -0.587944746017456, 0.8874180316925049, -0.2884819805622101, -1.1812691688537598, 1.2768926620483398, -0.2903612554073334, -0.7942050695419312, -0.6387662887573242, -0.12239322066307068, -1.176379680633545, 0.03262670338153839, -0.5626822710037231, -0.07274599373340607, -0.33487239480018616, 0.08154532313346863, -0.6043225526809692, -0.27666300535202026, -0.8797223567962646, -0.2381819188594818, -0.3670743405818939, -0.9648959636688232, 0.3675178289413452, -0.5339319705963135, -0.8012572526931763, 0.6458320617675781, -0.9907370209693909, -0.24970883131027222, -0.4254869818687439, -0.5405511856079102, -0.12604829668998718, -1.1390070915222168, 0.5224684476852417, -0.461047887802124, 0.8131554126739502, -0.16294528543949127, 0.9161293506622314, -0.5857671499252319, -0.10056167840957642, 1.1703239679336548, -0.24910570681095123, -0.9315232634544373, 0.39750176668167114, -0.47255343198776245, -1.2997634410858154, 0.44021350145339966, -0.09880411624908447, -0.5242156982421875, 0.5054553747177124, 0.15548425912857056, 0.5189014673233032, -0.3215441107749939, 0.11679898947477341, -0.05193614959716797, -0.959264874458313, -0.22487501800060272, -0.5923480987548828, -0.30049970746040344, 0.4088892340660095, -0.8333910703659058, -1.1711852550506592, 0.5461297035217285, 0.5077508091926575, -0.2382139265537262, -0.055810846388339996, 0.2446097880601883, 0.2434089332818985, -0.014879904687404633, 1.2866932153701782, 1.0537118911743164, 0.822471022605896, -0.5846510529518127, -0.1291007101535797, -0.536520779132843, -0.4566502273082733, 0.7705721855163574, -0.3855680525302887, 0.15052753686904907, 1.247572422027588, 0.2471635639667511, 0.14302146434783936, 0.4002862870693207, -0.38898220658302307, -0.3236536979675293, -0.12575219571590424, -0.4468255341053009, 0.3962444067001343, -0.13244307041168213, 1.0058934688568115, -0.025654971599578857, -0.4495531916618347, -0.45668286085128784, 0.2790205180644989, 0.03625510632991791, -0.6120453476905823, -0.7001475095748901, -0.17778553068637848, 0.07573997974395752, 0.19654470682144165, 0.13530559837818146, 0.6215157508850098, -0.4416089653968811, 0.3165191411972046, -0.07296601682901382, -0.2545093595981598, -0.1839788556098938, 0.688485860824585, -0.02836253121495247, 1.164117693901062, 0.4399265646934509, -1.023622751235962, -0.29240885376930237, 0.31732577085494995, 0.7309359908103943, -0.005032321438193321, 0.07202883809804916, 0.9002202749252319, 0.6798428297042847, -0.40266984701156616, 0.4348470866680145, 0.6284167766571045, -0.39575672149658203, 0.2615095376968384, 0.29912322759628296, 0.6204543709754944, 0.8882254362106323, -0.8368720412254333, -0.6641290187835693, -0.07746908813714981, 0.035166554152965546, 1.687161922454834, 1.1834064722061157, 1.3190696239471436, -0.44675374031066895, -0.08945313096046448, -0.23672397434711456, -0.22577086091041565, -0.20280419290065765, -0.6634596586227417, -0.49734973907470703, -0.08665920794010162, -0.5546972155570984, -0.4872203469276428, 0.3813890218734741, 0.8201443552970886, 0.5180455446243286, 1.009537935256958, 0.43876513838768005, -0.019403254613280296, -0.3327177166938782, 0.0611397847533226, -0.433828741312027, -0.8821895122528076, 0.2535398304462433, 0.809178352355957, -0.4180760979652405, -0.16994686424732208, 0.04347013682126999, -0.25637486577033997, 0.6632410287857056, 0.1733679473400116, 1.3384289741516113, -0.788699209690094, -0.6668304800987244, -0.5610715746879578, 1.675233006477356, 0.04074333235621452, 0.0795309990644455, 0.2763359546661377, 0.23177313804626465, -0.12488564103841782, -0.2641039788722992, -0.5348998308181763, 0.19005395472049713, -0.600256085395813, -0.42655056715011597, 0.3132489323616028, 0.5948885679244995, -0.5108779668807983, -0.10925459116697311, -0.4172016382217407, -0.08965644240379333, -0.604520857334137, 0.3102864623069763, 0.007753640413284302, 0.34730809926986694, 0.9329185485839844, -0.6936146020889282, -0.14924190938472748, 0.4623403549194336, 0.22390463948249817, -0.943689227104187, -1.220371961593628, 0.8062452673912048, 0.11033576726913452, 0.28265878558158875, 0.28479647636413574, 0.129143625497818, 0.31313556432724, -0.514380693435669, 0.39168238639831543, 0.1270521581172943, 0.3025425374507904, 0.10861536115407944, -0.3947010040283203, -0.3010776937007904, 0.23820337653160095, 0.12845489382743835, -0.21006779372692108, -0.06412427127361298, 0.9505184292793274, -0.9642915725708008, -0.1481103152036667, 1.0917505025863647, 0.5252828598022461, 0.10726196318864822, -0.17511527240276337, 0.12360532581806183, 0.171211376786232, -0.2605551779270172, 0.898579478263855, -0.3122755289077759, 0.056159865111112595, -0.09755485504865646, -0.33116745948791504, -0.16324082016944885, -0.14557303488254547, 0.16131554543972015, 0.9445840120315552, -0.551350474357605, -0.530526876449585, -0.670621395111084, 0.5869433879852295, -0.09474895894527435, -0.29336053133010864, 0.8656784296035767, 0.3385394811630249, -0.014771293848752975, -0.2927396297454834, 0.38520175218582153, 0.9565104246139526, -0.13126283884048462, -0.5023266673088074, -0.3912830948829651, 0.34043794870376587, 0.03632723540067673, -0.6092020273208618, -0.09653802216053009, 0.550699770450592, 0.0039786845445632935, 0.09457336366176605, -0.2525802552700043, -0.21698391437530518, 1.4333009719848633, 0.23283816874027252, 0.25400975346565247, 0.22121384739875793, -0.38773709535598755, -0.13671432435512543, 0.22181905806064606, 0.2089766561985016, 0.4287009835243225, -0.12769165635108948, -0.0044433255679905415, 0.6295599937438965, -0.2761218249797821, 0.37816479802131653, 0.6098684072494507, 0.6622368097305298, -0.2725115716457367, -0.6754835844039917, -0.3636138439178467, -0.08938055485486984, 0.1529894471168518, 1.1207956075668335, 0.0460866279900074, -0.24786211550235748, -1.483255386352539, 0.0968078076839447, -0.16989970207214355, 0.060978032648563385, 0.3562517762184143, 0.3151134252548218, 1.3133134841918945, -1.0678637027740479, -0.23842917382717133, -0.2721656858921051, 0.37969183921813965, 0.06718669831752777, 0.5919047594070435, -0.2815663814544678, -1.3246784210205078, -0.06192989647388458, 0.4070308804512024, 0.022715844213962555, 0.28998053073883057, -0.12518200278282166, 0.304115891456604, 0.6848729848861694, -0.48302048444747925, 0.37569522857666016, -0.1507512629032135, -0.4859466552734375, -0.7515996694564819, -0.22763292491436005, 0.128245010972023, 0.3239752948284149, 0.2532998025417328, 1.1877079010009766, -0.3324899673461914, -0.3839288353919983, 0.30616870522499084, -1.3849457502365112, 1.0062413215637207, -0.6630324125289917, -0.21945397555828094, -0.1962125152349472, -0.8138066530227661, -0.6239095330238342, 0.3449704051017761, -0.993007481098175, -0.5913689136505127, -0.4985445737838745, -1.0469789505004883, 0.3842671513557434, 0.6246168613433838, 1.4000349044799805, 0.30572399497032166, 0.3067615032196045, 1.1686010360717773, 0.380967378616333, -0.399810254573822, -0.08336768299341202, 0.35483357310295105, -0.52855384349823, 0.4901878237724304, -1.1633403301239014, -1.1294312477111816, 0.6808103322982788, 0.3068333864212036, 0.16635370254516602, 0.5861330032348633, 0.717007040977478, 0.7909613847732544, -0.19441430270671844, 0.0082850381731987, 0.17946434020996094, -0.745148241519928, 0.8103716373443604, 0.2783381938934326, -0.22795890271663666, -0.5189635753631592, -0.8531773090362549, -1.5487208366394043, 1.766522765159607, 0.184023916721344, -0.5303462147712708, 0.7722384929656982, 0.34171998500823975, -0.17665432393550873, 0.47090137004852295, -0.0064244940876960754, -0.3699851632118225, -0.1478898823261261, -0.6068753600120544, -0.9962306618690491, 0.290710985660553, 0.10548277199268341, -0.32442155480384827, -0.2982192933559418, -0.1334482878446579, 0.6327283382415771, 0.05124881863594055, 0.38878393173217773, 0.5271873474121094, 0.326640784740448, 0.12037371098995209, 0.6747736930847168, -0.3784456253051758, 0.45778799057006836, -1.0936766862869263, -0.7348105907440186, 0.09875741600990295, 0.6754415035247803, -0.046413861215114594, 0.38451820611953735, 0.10577886551618576, 0.43001824617385864, -0.003590606153011322, -0.13905154168605804, -0.45217299461364746, -0.1899421364068985, 1.088157296180725, -0.18982845544815063, 0.5970259308815002, -0.2717602252960205, -0.1364189088344574, 0.020529042929410934, 0.28741198778152466, 0.7030659914016724, -0.9477802515029907, -0.3106030225753784, 0.26545917987823486, -0.3517008423805237, -0.2788572311401367, -0.4238208532333374, -0.26454871892929077, -1.2145049571990967, -1.0867724418640137, -1.0598381757736206, 0.015262545086443424, 0.6165735125541687, -0.3904794156551361, 0.25319474935531616, 0.11125542968511581, -1.404336929321289, 0.25402554869651794, -0.49209654331207275, -1.3012034893035889, -0.06857480853796005, -1.1778819561004639, 0.8215444684028625, -0.6706066727638245, 0.7990608811378479, 0.25914067029953003, 1.3624470233917236, -0.8099675178527832, -1.0848089456558228, -0.19168239831924438, -0.08475083112716675, 0.5989986658096313, 0.4250744581222534, -0.8265515565872192, 0.9426151514053345, 0.7066537141799927, -0.3793056905269623, -0.42333245277404785, 0.15089455246925354, -0.28575652837753296, 0.04283618927001953, -0.049351178109645844, 0.4611443877220154, 0.04643617197871208, 1.2624589204788208, 0.12946513295173645, 0.5364090204238892, 0.5191341638565063, 1.1068451404571533, -0.3959046006202698, 0.07307950407266617, -0.4805052578449249, 0.212105393409729, -0.7211079597473145, -0.5291005373001099, 0.04377446696162224, -1.0597199201583862, -1.089755892753601, 0.08669634163379669, 1.3362014293670654, -0.8987456560134888, 0.5682305693626404, -0.5136117339134216, 0.8179466724395752, -1.1381490230560303, 0.5854164958000183, -0.36108458042144775, -0.13043294847011566, -0.1062084212899208, -0.19685962796211243, -0.3740859627723694, -0.802550733089447, -0.12227313220500946, 0.7729154825210571, 0.5786441564559937, -0.517894446849823, 0.8999079465866089, 0.5742185115814209, -0.1344422847032547, -0.5025632381439209, 1.091282606124878, 0.637363612651825, 0.1085074320435524, -0.514644980430603, -0.20317202806472778, -0.13661053776741028, 0.48207777738571167, -0.20647978782653809, 0.3852088451385498, -0.556188702583313, 0.8334743976593018, -0.2673173248767853, -0.29623332619667053, -0.5828105211257935, -0.828620970249176, -0.06897203624248505, -0.6132808327674866, 1.3091034889221191, -0.028685808181762695, -0.05546819046139717, 1.1543285846710205, 0.10955597460269928, -0.25943654775619507, -0.08343569189310074, 0.3422447443008423, 0.1584165096282959, -0.10189211368560791, 0.7336400747299194, 0.35765340924263, -0.6204609870910645, 0.06622086465358734, 0.21783709526062012, 0.5006033778190613, 0.3595393896102905, -0.48022449016571045, -1.6443912982940674, -0.16727638244628906, -0.8956911563873291, -0.766656756401062, 0.5576929450035095, -0.26744091510772705, -0.9266805052757263, 0.5599404573440552, 0.527237594127655, -0.2898935377597809, 0.13313564658164978, 0.23990079760551453, 0.242628812789917, -0.33751916885375977, 1.220639944076538, -0.48507988452911377, 1.318685531616211, -0.3773304224014282, -0.09495850652456284, -0.32986050844192505, -0.3051329255104065, 0.2766037583351135, -0.16579067707061768, 0.12424251437187195, -1.0210756063461304, 0.35427218675613403, 0.3705766201019287, -1.20431387424469, 0.7984495759010315, 0.14775130152702332, 0.3729315400123596, -0.2936112880706787, -0.3098587393760681, -0.11182154715061188, 0.6060653924942017, 0.734009861946106, -0.6122161149978638, -0.7872756123542786, -1.0465400218963623, 0.31929776072502136, -0.9243298768997192, 0.6832988262176514, -0.2649960219860077, 0.13584010303020477, 0.6746178865432739, -0.11616058647632599, -0.605312705039978, -0.8132362365722656, 0.15662705898284912, -0.09613245725631714, 0.17384929955005646, -0.025635167956352234, -0.32369929552078247, 0.2528527081012726, -0.9117317199707031, 0.703201413154602, -0.15610119700431824, 0.0032721906900405884, 0.4824568033218384, -0.8870980739593506, -0.9947326183319092, -0.3582232594490051, 0.0015954039990901947, 0.846922755241394, 0.07618074119091034, 0.44352877140045166, 0.4192327857017517, -0.6260328888893127, -0.19178199768066406, -0.0005991309881210327, -0.6970114707946777, 0.08188271522521973, 1.2573058605194092, 1.4898216724395752, -0.15379191935062408, 0.6825737357139587, -0.7220595479011536, 0.508420467376709, -0.5657659769058228, -0.5793923735618591, -0.3007972538471222, 0.2256273329257965, -0.19105681777000427], [-0.3866255581378937, 0.5183123350143433, -2.3021280765533447, -0.41362378001213074, -0.13198800384998322, 0.390229195356369, 1.3134217262268066, 0.18322275578975677, 0.00916169211268425, -1.3629475831985474, -0.6533296704292297, 0.8170055150985718, 0.4215567111968994, 0.8296146988868713, -0.15940974652767181, -0.0684565082192421, 0.5374886393547058, -0.08417603373527527, 0.3608204424381256, 0.4974397122859955, 0.19492653012275696, -1.6245918273925781, -0.39671552181243896, 0.6321464776992798, 0.5399652123451233, 0.05965760350227356, -2.0253653526306152, -1.1555235385894775, -1.4330543279647827, -0.4556766152381897, 1.4376683235168457, -0.721394956111908, -0.45278385281562805, -0.17321018874645233, -1.2625054121017456, -0.772059440612793, 0.27509504556655884, 0.5411617159843445, 0.6622010469436646, -0.16162607073783875, 1.8423501253128052, -0.2325592190027237, -0.44766536355018616, -1.6254078149795532, 0.0305081307888031, 0.5200201869010925, 0.634557843208313, -1.6527701616287231, -0.09023687988519669, -0.4309242367744446, 0.9486865997314453, -0.33764365315437317, 0.3383164405822754, 0.8763319849967957, 0.9750707149505615, -1.1708524227142334, 0.1168878823518753, -0.1249067559838295, 0.48310011625289917, 0.4031096398830414, 1.740077257156372, 0.983619213104248, -0.4392855167388916, 1.450875997543335, 0.7180086970329285, -0.38691338896751404, 0.08958051353693008, 0.5963554978370667, -1.0425864458084106, -0.05441423878073692, 0.5525497198104858, -0.08068868517875671, -0.7190953493118286, 0.164885014295578, -0.47708985209465027, 0.07073021680116653, 0.022450868040323257, 0.5752279162406921, 0.2622406780719757, 1.0186173915863037, -0.30432257056236267, 0.27484092116355896, 0.36994150280952454, 0.06648550927639008, 0.5014560222625732, 0.18817219138145447, -0.34517553448677063, 0.08597216755151749, -0.7394019365310669, 1.542240023612976, -0.22383368015289307, 0.9754723906517029, 0.713114857673645, -1.039933204650879, 0.3229861855506897, -0.8342491984367371, 0.6517913341522217, -0.19842258095741272, -0.40589869022369385, -0.8131740689277649, -0.1693745255470276, -1.2057843208312988, 0.5774273872375488, -0.24819175899028778, 1.110974907875061, 1.7752152681350708, -0.2184566706418991, -0.900112509727478, -0.28467661142349243, -0.1614854484796524, -0.16338466107845306, 1.239338994026184, -0.7092483639717102, -0.9786441326141357, 0.22616830468177795, 0.7427757382392883, 0.37113240361213684, 0.05456382408738136, 0.7170251607894897, 0.707767128944397, -0.8347283005714417, -0.45597904920578003, -1.0098105669021606, 0.7339290976524353, 0.6417410373687744, 0.5035935640335083, -0.36262789368629456, 0.0709281638264656, -0.29705068469047546, 0.44239503145217896, -0.07631015032529831, -0.13576675951480865, -0.4545707106590271, 1.1155604124069214, -0.6924199461936951, 1.3838869333267212, -1.0074446201324463, -1.43271005153656, -0.15498876571655273, 0.16369202733039856, 0.6361575722694397, -0.709104597568512, -0.6376762390136719, -0.6935659050941467, 0.057119760662317276, -0.5167325735092163, 0.48915860056877136, -0.05445189028978348, -0.5102083086967468, -0.27524447441101074, -1.5926507711410522, -0.13796080648899078, 0.2979302704334259, 1.0378704071044922, -0.11327588558197021, 0.014628779143095016, 0.731032133102417, 0.03135699778795242, 0.8177205324172974, 0.3724833130836487, 1.094678521156311, 0.24415290355682373, -0.2313753217458725, 1.2486486434936523, 0.017540035769343376, -1.0758219957351685, 0.38913652300834656, 0.6051220297813416, 0.06124473735690117, 0.7369075417518616, -0.6490573883056641, -0.793467104434967, -0.5390218496322632, 0.3570183515548706, -0.7408889532089233, -0.7746822834014893, 0.4718782305717468, -0.19706135988235474, -0.8686410188674927, -1.0717190504074097, 1.0222394466400146, -0.5051459074020386, 0.658250093460083, -0.02258375659584999, -0.011152197606861591, -0.27090564370155334, -0.08891516923904419, 0.6944907307624817, -0.1189764142036438, -0.2938922643661499, -1.2006715536117554, -0.39912840723991394, -1.2550309896469116, -0.10486581921577454, -0.4617622196674347, -0.9924556016921997, 0.041218966245651245, -0.4567776322364807, -0.33027392625808716, 0.1523420661687851, -0.09257018566131592, -0.36535871028900146, -1.3668767213821411, 0.03151089325547218, -0.3678589463233948, 0.23854319751262665, 0.12034853547811508, 0.2237549126148224, -0.04688730090856552, 0.5671941041946411, 0.9078448414802551, 0.363229900598526, -1.1807607412338257, 0.4529288113117218, 0.07217381149530411, -1.511422038078308, -0.2616182267665863, -0.23982496559619904, -0.5586563944816589, 0.31381893157958984, -0.10197288542985916, 0.1538092941045761, 1.1360031366348267, -0.18640395998954773, 1.0236124992370605, 0.2255282998085022, -0.6805137991905212, -0.4763815402984619, -0.841196596622467, 0.45227304100990295, -0.7440752983093262, -0.7669214606285095, 1.0050990581512451, 0.11214567720890045, -0.9561432600021362, 0.2498565912246704, 0.08159969002008438, -0.03336528316140175, 0.38884520530700684, 0.6462701559066772, 0.21643005311489105, 0.6032467484474182, -0.3027138411998749, -0.6261463165283203, -0.6552526354789734, 0.46961167454719543, 0.7891818881034851, -0.04394776001572609, 0.4733055830001831, 0.9579035043716431, 1.1503524780273438, -0.3126835823059082, 0.1729394942522049, 0.26567766070365906, -0.8631198406219482, -0.7315658926963806, -0.4641588628292084, -0.2312539517879486, -0.9969913959503174, 1.183188557624817, 0.6328473091125488, -1.0770663022994995, -0.8509914875030518, -0.0564962700009346, -0.10083749890327454, -0.06605509668588638, -0.4286035895347595, -0.8405724167823792, 0.7020969390869141, 0.1697983294725418, 0.312728613615036, 0.012931065633893013, -0.12749961018562317, 0.2850455939769745, -0.10247129946947098, -0.2518940269947052, -0.4434148967266083, 0.3163391947746277, 0.47839513421058655, 1.2117424011230469, -0.34763607382774353, -1.1174821853637695, -0.24567823112010956, 0.1602083444595337, 0.29807886481285095, -0.34774407744407654, -0.21000148355960846, 1.045545220375061, 1.0315245389938354, -0.16010591387748718, 0.06027449667453766, -0.1303536295890808, 0.07859235256910324, -0.6596436500549316, 0.7525566220283508, 0.51454097032547, 1.1685264110565186, -0.7246423959732056, -1.001269817352295, -0.49789151549339294, 0.3556382954120636, 1.0650036334991455, 0.5294397473335266, 0.9962385892868042, -0.500607967376709, -0.5129549503326416, -0.3550873100757599, -0.38351237773895264, -1.5687129497528076, -0.39172476530075073, -0.8453117609024048, -1.3391954898834229, 0.05244346335530281, -0.47641846537590027, 0.5949362516403198, 0.9961238503456116, 0.1039595827460289, 0.820838451385498, 1.2034921646118164, 0.1699545979499817, -0.7054910659790039, -0.3492913544178009, 0.43333473801612854, -1.239557147026062, 0.42760786414146423, 1.328757882118225, -0.900532066822052, -0.09986277669668198, 0.1070731058716774, 0.3561672568321228, 0.5344917178153992, -0.01624462567269802, 0.09901861101388931, -1.4266184568405151, -0.46079903841018677, 0.20826703310012817, 1.5855176448822021, -0.18893910944461823, -0.6537250876426697, -0.7954562902450562, 0.719603419303894, 1.2894632816314697, -0.40142595767974854, -0.5696347951889038, 0.623253583908081, -0.5271779894828796, -0.4260229170322418, -0.0395042859017849, -0.23192061483860016, 1.294050693511963, -0.6416996717453003, -0.2706512212753296, -0.23095589876174927, 0.3706953525543213, -0.023341432213783264, 0.25279587507247925, -0.6469621658325195, 1.1737695932388306, 0.029986843466758728, 0.1500433385372162, 0.7752020955085754, -0.7460072636604309, 0.18969976902008057, -1.1329294443130493, 0.2211643010377884, 0.031241396442055702, 1.096388816833496, 0.1911390870809555, 0.7780773043632507, 0.2102089673280716, -1.253029465675354, 0.4279547333717346, 0.8464819192886353, 0.3652559220790863, -0.2193981409072876, -0.7374810576438904, -0.7824639081954956, -0.5553086996078491, -0.36958491802215576, -0.9113101363182068, -0.42500847578048706, 0.24131456017494202, -1.020171046257019, -0.1864939033985138, 0.8007086515426636, 0.8191786408424377, -0.27736106514930725, 0.24193409085273743, 0.06856242567300797, 0.4216672480106354, -0.639607846736908, -0.03593907132744789, -0.41755855083465576, 0.24481132626533508, 0.4002681374549866, -0.6790342330932617, -0.4252409040927887, 0.1040366142988205, 0.3805537819862366, 0.6868739724159241, -1.7149250507354736, 0.5430384874343872, -0.3934882581233978, 0.4214859902858734, 0.5800061225891113, 0.05660763010382652, 0.18721093237400055, 0.2621411681175232, -0.6517632007598877, -0.3707696497440338, 0.33147600293159485, 1.4377968311309814, 0.19447046518325806, -0.30907830595970154, -0.172481507062912, -0.36081987619400024, 0.3634764552116394, 0.18943069875240326, -0.006949468050152063, 0.21666957437992096, 0.2977389991283417, 0.8456262946128845, -0.01903693564236164, 0.3700498342514038, 1.7987431287765503, 0.19045987725257874, -0.14969436824321747, 0.5696722269058228, -0.07376832515001297, -0.588505744934082, -0.3480875492095947, 0.4927971363067627, -0.8233267664909363, 0.205808624625206, 0.007799053564667702, 0.11997824907302856, 0.6154094934463501, 0.39770442247390747, 1.1659435033798218, 0.9699600338935852, 0.46986210346221924, -0.8752179741859436, -0.049454957246780396, 0.7644517421722412, 0.8170248866081238, 1.1678860187530518, 0.4435691833496094, -0.354177862405777, -1.1693692207336426, 1.1074953079223633, -0.7221313118934631, 0.3290242850780487, 0.12723441421985626, 0.041815802454948425, 0.7629426717758179, -1.2060186862945557, -0.35581108927726746, 0.7653290033340454, -0.29062536358833313, 0.6567292213439941, 0.1607331484556198, -0.12607982754707336, -0.07644100487232208, -0.4471334218978882, -0.6822205185890198, -0.29680517315864563, 0.6999338865280151, -0.11785975098609924, -0.3520132303237915, 0.9974356293678284, -0.5656216144561768, 0.14662954211235046, -0.6233110427856445, -0.15272872149944305, 0.22422432899475098, 0.02523564174771309, -0.015103788115084171, 0.1402195394039154, 0.1460447907447815, 1.9100861549377441, -0.4661904573440552, -1.0455464124679565, 0.06450445204973221, -1.1790355443954468, 0.3864186406135559, -0.4264501631259918, -0.3524288833141327, 0.05291162058711052, -0.24202077090740204, -0.2914440333843231, -0.020523877814412117, -0.6359043121337891, -0.48961392045021057, -0.30570855736732483, -1.09922456741333, 0.2399590164422989, 0.07430150359869003, 1.0439479351043701, 0.8348689675331116, 0.3388306796550751, -0.6040027737617493, 0.22625571489334106, -0.6591581702232361, 0.3221088647842407, 0.7152429223060608, -0.36975494027137756, -0.5998356342315674, -0.785971999168396, -1.1425971984863281, 1.4006078243255615, 0.5960556268692017, 0.20166519284248352, 0.7511171698570251, 1.3394712209701538, 1.5999019145965576, -0.46510812640190125, -0.4483925700187683, 1.206540584564209, -0.9570915699005127, 1.451351523399353, 0.37154120206832886, -1.0329538583755493, -0.2014523297548294, 0.2465481013059616, -2.559077024459839, 0.9902724027633667, 0.4229828119277954, -0.7057437300682068, 1.3886133432388306, 0.7452889680862427, 0.3221951425075531, 0.7233692407608032, -0.741926372051239, -0.11981786787509918, 0.25098761916160583, -0.022602858021855354, -1.742581844329834, 0.825434684753418, 0.8482277989387512, -0.13759012520313263, -0.7574871778488159, 0.4155011773109436, -0.2683814465999603, 0.08500064164400101, -0.5516756772994995, 0.44158434867858887, 0.09488785266876221, 0.43734505772590637, 0.5585691928863525, -1.1176748275756836, 0.43220454454421997, -0.42258116602897644, 0.3357682228088379, 0.08241225779056549, 0.5063513517379761, 0.2338327169418335, -0.8485240340232849, -0.03774178773164749, -0.2091544270515442, -0.23428890109062195, -0.25238272547721863, -0.6854352951049805, 0.9803374409675598, 0.4962814748287201, -0.013783966191112995, -0.42440265417099, -0.6438766121864319, -0.33558815717697144, -0.3327752649784088, -0.14305607974529266, 0.8219748139381409, -1.496766448020935, -0.2132244110107422, 0.12604059278964996, -0.6309486627578735, 0.22142727673053741, 0.5483709573745728, 1.098109245300293, -0.6660866737365723, -1.0754719972610474, -0.40753409266471863, 0.5257569551467896, 1.0159448385238647, 0.08292366564273834, 0.8091154098510742, 0.00236129155382514, -0.9712957739830017, 0.8046854734420776, -0.4962872564792633, -1.432442307472229, -0.8336082696914673, -1.1598396301269531, 0.6761301159858704, 0.3127812445163727, 0.008199621923267841, 0.5317487120628357, 1.1330955028533936, -0.718044638633728, -1.3603172302246094, -1.9562466144561768, -0.06164059415459633, 0.7334875464439392, 0.1037287637591362, -0.1585765928030014, 1.2194371223449707, 0.18110451102256775, -0.7710784077644348, -0.5689345598220825, 0.23190189898014069, -1.1095424890518188, 0.40124738216400146, -0.18515747785568237, -0.1933315098285675, 0.3880097270011902, 1.5861133337020874, 0.6737082004547119, 1.1641435623168945, 0.7867923378944397, 1.161626935005188, -0.8092086911201477, -0.4578622877597809, -0.16622401773929596, 0.4373517334461212, -1.0068646669387817, -0.6452782154083252, -0.025354189798235893, -0.14340540766716003, -0.6163702607154846, 0.49878573417663574, 1.254955530166626, -1.0597816705703735, 0.2912651300430298, 0.30833372473716736, 0.05822567641735077, -0.4536546766757965, 0.7334598302841187, 1.3177489042282104, -0.7871571779251099, -0.1052907258272171, 0.08891703933477402, 0.599997878074646, -0.4802663326263428, -0.14500701427459717, 0.09643496572971344, -0.08072733134031296, 0.31099453568458557, 1.0676032304763794, 0.4919024705886841, 0.22464190423488617, -0.8709505796432495, 0.9538387656211853, 0.9688041806221008, 0.03540336713194847, 0.011568168178200722, 0.6656503081321716, -0.47041064500808716, 0.26070696115493774, -0.401602566242218, -0.5771028995513916, -1.1326709985733032, 0.799187958240509, 0.2020786851644516, 0.19716504216194153, -0.948100209236145, 0.8735228180885315, 0.34946709871292114, 0.1159886047244072, 1.1907144784927368, -0.31160375475883484, -0.7455654740333557, 0.7934208512306213, 0.15309464931488037, -0.11255215853452682, -0.027419928461313248, 0.3771084249019623, 0.9015650153160095, 0.16964876651763916, -0.011332851834595203, 0.43499597907066345, -1.123047947883606, -0.5611218214035034, -0.13615849614143372, -0.5749598145484924, -0.1830543726682663, -0.06707361340522766, -1.4544278383255005, -0.5202734470367432, -0.47570016980171204, -0.36291152238845825, 0.4831222593784332, -0.6791383028030396, -0.8574780821800232, -0.18811704218387604, -0.5590711832046509, 0.29451414942741394, -0.5967567563056946, -0.16498412191867828, -0.1897476613521576, 0.4379231631755829, 0.6711083054542542, -0.08156316727399826, 1.221040964126587, -0.23227284848690033, -0.028691790997982025, -0.7226876020431519, 0.7417708039283752, -0.30394065380096436, 0.8523327112197876, -0.05063417926430702, -0.701648473739624, -0.2153184860944748, 0.01883724518120289, 0.16063305735588074, 0.3826482594013214, -0.15516605973243713, 0.6619033217430115, -0.4020208418369293, -1.0074701309204102, -0.37467262148857117, 0.5485591888427734, 0.2694600522518158, -0.8757420778274536, -0.7093199491500854, -0.29423055052757263, 0.19751065969467163, -0.20476453006267548, 1.0939061641693115, -0.5966666340827942, 1.2393603324890137, 0.09630734473466873, -0.23468123376369476, 0.0033674994483590126, -0.587049663066864, 0.9456234574317932, -0.22946009039878845, 0.27981850504875183, -0.4506646394729614, -0.5209932327270508, -0.0012819953262805939, -0.8145070672035217, 0.5719994306564331, 0.48577043414115906, -0.41897183656692505, 0.28857162594795227, -0.8945358991622925, -0.9566630125045776, -0.5843319296836853, -0.6071747541427612, 0.31530845165252686, -0.10537028312683105, 0.8401160836219788, 0.04654761403799057, -0.8870947360992432, 0.3600236475467682, 0.9312970042228699, -0.4571878910064697, 1.0909594297409058, 1.5016250610351562, 1.5075604915618896, 0.004230997525155544, 0.09189233183860779, -0.08355670422315598, 1.2430769205093384, -0.8165032863616943, -0.2814852297306061, -0.8068697452545166, 0.27402445673942566, 0.44996073842048645], [0.8842006325721741, 1.577690601348877, -2.0989456176757812, -0.7664074301719666, 0.25457507371902466, -0.9145766496658325, -0.007274627685546875, -0.45531129837036133, -1.1751465797424316, -1.1244897842407227, -0.13147348165512085, 0.26136401295661926, 0.16812382638454437, 1.1486504077911377, 1.0828839540481567, -0.38038402795791626, 0.8375566005706787, -0.12853996455669403, 0.27626335620880127, 0.8848239183425903, 0.22821560502052307, -0.28637057542800903, -0.0681970939040184, 0.577487587928772, 0.15281593799591064, -0.3693227171897888, -0.9836293458938599, -0.49052464962005615, -1.3753833770751953, -1.6059672832489014, 1.4322985410690308, -1.1756455898284912, 0.38372746109962463, -0.267038494348526, -1.2370884418487549, -1.062889575958252, 1.0414879322052002, -0.5052156448364258, 0.5977161526679993, 0.24504747986793518, 1.5152373313903809, -0.5594353675842285, 0.018419018015265465, -0.7786127328872681, 0.4110892415046692, 0.4466171860694885, 0.14001606404781342, -0.6975991129875183, 0.10570672154426575, -0.13092221319675446, -0.4077131152153015, -1.0393816232681274, 0.20278717577457428, 0.7596669793128967, 0.6880278587341309, -0.04255841672420502, -0.13357922434806824, 0.37820684909820557, 0.38460230827331543, 0.808849573135376, 1.1271640062332153, 0.7023937702178955, -0.12617482244968414, 0.025947272777557373, 0.4856424331665039, -0.15295931696891785, 0.9103017449378967, 0.10574309527873993, -0.33111053705215454, 0.6848900318145752, 0.8658411502838135, -0.7690364718437195, 0.10524662584066391, 0.16231641173362732, -0.916018009185791, -0.6228904128074646, -0.15488527715206146, 0.7591205835342407, 0.2928190231323242, 1.021806001663208, -1.2706562280654907, -0.2862396538257599, 0.49080321192741394, -0.4622918963432312, 0.18546447157859802, 0.02999110519886017, -0.10456809401512146, -0.6944367289543152, -1.0479196310043335, 1.6346116065979004, 0.06214150786399841, 0.3833245038986206, 0.7427394390106201, 0.15197885036468506, 0.326511412858963, -0.2281724214553833, -0.37629032135009766, -0.08461827784776688, 0.8471765518188477, -1.140713095664978, -0.07848765701055527, -0.7836999893188477, 0.8615106344223022, -0.5066542625427246, 0.0002232678234577179, 1.9746975898742676, 0.10955054312944412, -1.221152901649475, -1.3742544651031494, -0.4180733561515808, 0.7765972018241882, 0.10824425518512726, -0.2837284803390503, -1.2573374509811401, -0.01493837684392929, 0.9969176054000854, 0.09358926117420197, 0.6816145777702332, 0.4087349474430084, 0.7822942733764648, 0.20836001634597778, -0.10547421127557755, -0.7208676338195801, -0.050702884793281555, 0.702755868434906, -0.21570579707622528, -0.10144204646348953, -0.11923005431890488, -0.16500680148601532, -0.23203520476818085, 0.286405473947525, 0.4385730028152466, -0.27660736441612244, 0.22197504341602325, -0.1831042766571045, 0.7136391401290894, 0.336945116519928, -0.5704137086868286, 1.0094809532165527, -0.7460781931877136, 0.6816875338554382, -0.6161527633666992, -0.38758301734924316, -0.5852071046829224, 0.7742564678192139, -0.31030791997909546, 0.5516324043273926, -0.0988684892654419, -0.8921371698379517, -0.7906550168991089, -1.1451025009155273, -0.1170191764831543, -0.04882463812828064, 1.0612022876739502, 0.9125230312347412, 0.2447146475315094, 0.26494935154914856, 0.6994786858558655, 0.1901051253080368, 0.348183274269104, 0.4516450762748718, 0.06521495431661606, -1.044377326965332, 1.5825294256210327, 0.7408121824264526, -1.1989490985870361, 0.6762651205062866, 0.6702341437339783, -0.2744920253753662, 1.2879664897918701, -0.7716442346572876, -0.45972171425819397, -0.7990124225616455, -0.4282485842704773, -0.10093474388122559, -0.6683593988418579, 1.4234271049499512, -0.22849291563034058, -0.2699261009693146, -1.6020610332489014, 0.2186182737350464, -0.37544265389442444, -0.2312728315591812, 0.43916064500808716, 0.05326841026544571, 0.032640568912029266, -0.2549610137939453, -0.306504487991333, 0.06186121702194214, -0.24967990815639496, -1.4467945098876953, 0.10569365322589874, -0.6223916411399841, -0.09835146367549896, 0.12988199293613434, -1.5012950897216797, -0.05696357414126396, -0.08031479269266129, -0.3510957658290863, -0.4587513208389282, 0.24238407611846924, 0.024834513664245605, -0.5212514400482178, 0.06587493419647217, -0.7797781229019165, -0.2812701165676117, -0.29325616359710693, 0.8077499866485596, 0.1026570275425911, 0.6140322685241699, 0.4036441445350647, 0.03609832376241684, -0.8588380813598633, 1.2017054557800293, 0.873648464679718, -1.6531022787094116, 0.6632843017578125, 0.3035658001899719, 0.6807260513305664, 0.5028473734855652, 0.5305190086364746, -0.3025584816932678, 0.11623609066009521, -0.015018712729215622, 0.445675253868103, 0.26187407970428467, -0.6256121397018433, -0.03177645057439804, -1.267989993095398, 0.6403106451034546, -0.9970317482948303, -0.37366583943367004, 0.42957189679145813, 0.2982023358345032, -1.204530954360962, 0.9677658081054688, -0.04290636256337166, 0.8233954906463623, -0.008635539561510086, 0.822393536567688, 0.041512228548526764, -0.24137872457504272, -0.7660493850708008, -0.6540076732635498, -1.5233747959136963, -0.37793272733688354, 0.19631093740463257, -0.32928937673568726, 0.6420353651046753, 1.0908353328704834, 0.466827929019928, -0.860787034034729, 0.18659469485282898, -0.02915581315755844, -0.050751589238643646, -0.662915825843811, 0.32174330949783325, -0.40205055475234985, -0.9928747415542603, 1.8919932842254639, 0.9112473726272583, -1.0469067096710205, -0.7718214988708496, 0.11929675191640854, 0.2763218581676483, -0.013725705444812775, 0.10186875611543655, 0.023157980293035507, 0.5093361735343933, -0.031206335872411728, 0.09780564904212952, 0.40065038204193115, 0.049179792404174805, -0.1638631522655487, -0.5306166410446167, -0.35967665910720825, 1.0673596858978271, 0.31318551301956177, 0.8862720131874084, 1.09732186794281, 0.37571924924850464, -1.960067629814148, -0.6013691425323486, 0.09011313319206238, 0.6340652704238892, -0.9376174211502075, 0.5031509399414062, 0.3047052025794983, 1.1505671739578247, -0.4636392891407013, 0.8764260411262512, 0.9021801948547363, -0.08940731734037399, -0.497184157371521, -0.44965308904647827, 0.2852189540863037, 0.5951119661331177, -0.7734137773513794, -0.4997935891151428, -1.0075489282608032, 0.4444615840911865, 0.48734715580940247, 0.29592791199684143, 1.6318540573120117, -0.8876994848251343, 0.2286035716533661, 0.3122485876083374, 0.3765900433063507, -0.784182071685791, -0.314683735370636, 0.02950381487607956, -0.1076158806681633, -0.2053101658821106, 0.04528624936938286, -0.396375834941864, -0.10202233493328094, -0.1456364095211029, 0.7283801436424255, 0.20918267965316772, 0.014896141365170479, -1.819747805595398, -0.9869346618652344, 0.09853210300207138, -1.019700288772583, 0.30986952781677246, 1.058227300643921, -0.6486148834228516, 0.06015082448720932, 0.45062100887298584, -0.14551755785942078, -0.0939192920923233, 0.2656077444553375, -0.21668186783790588, -0.6849817037582397, -1.5189749002456665, 0.011073626577854156, 0.6098138093948364, -0.010193247348070145, -0.38172435760498047, -1.0518492460250854, 0.9296261668205261, 0.9680646657943726, 0.1886979639530182, -0.28809359669685364, 0.16947703063488007, 0.2822294533252716, 0.2830204367637634, -0.877977728843689, -0.018574604764580727, 1.1275081634521484, -0.2146415412425995, -0.8945367336273193, -0.3796480894088745, -0.08233333379030228, 0.4077640175819397, 0.09952010959386826, 0.5239790678024292, 1.088186502456665, -0.3950429856777191, -0.7926833629608154, 0.5298923254013062, 0.5447893142700195, 0.7330174446105957, -0.7540726661682129, 0.6309869885444641, 0.06967537105083466, 1.1452319622039795, 0.639190137386322, -0.4203541576862335, -0.7412986755371094, -0.5385677218437195, -0.0059158094227313995, -0.4123806655406952, 0.25583401322364807, -0.24268528819084167, 0.10811041295528412, -0.8106398582458496, 0.08548244088888168, -0.467276394367218, -0.47198057174682617, -0.9271511435508728, -0.16323275864124298, 0.40916895866394043, -0.46407419443130493, 0.5894638299942017, -0.4459410011768341, -0.27946048974990845, -0.09506502747535706, -0.35084253549575806, -0.023315787315368652, 1.350043535232544, -1.1421030759811401, -0.6032336354255676, 0.5985527038574219, -0.33348509669303894, -1.1368625164031982, -0.1894913911819458, -1.062795877456665, 0.04665537178516388, 0.8803727626800537, -1.1824445724487305, 0.2632492482662201, 0.7034605741500854, 0.47021645307540894, 0.5358560085296631, -0.6651747226715088, 0.7143781185150146, -0.3077898621559143, 0.0722159743309021, -0.5371507406234741, 0.0921863242983818, 0.8653777241706848, -0.0687171071767807, 0.543005108833313, -0.39307311177253723, -0.015840645879507065, 0.40315669775009155, 0.543057918548584, -0.14910194277763367, -0.0450759157538414, -0.3390178680419922, 0.19870203733444214, -0.10539840161800385, 0.1349354237318039, 0.8403671979904175, -0.20916128158569336, -0.2516288757324219, 0.23535871505737305, 0.37399062514305115, -0.19106891751289368, -0.4606953561306, -0.3328561782836914, 0.45776674151420593, 0.5577627420425415, 0.35676178336143494, 0.10718420892953873, -0.49140995740890503, 0.2375597506761551, 0.559457004070282, 0.8520627021789551, -0.05069655552506447, -0.8473227620124817, -0.39183706045150757, 0.6402643918991089, 0.675568699836731, 2.005363941192627, 0.9465141296386719, -0.5001276135444641, -1.1337969303131104, 0.8685761094093323, -0.9164475798606873, 0.2111172378063202, -0.3013399839401245, 0.7228554487228394, 1.576096534729004, -0.6924927234649658, -0.8291073441505432, 0.8679168224334717, 0.7454058527946472, 0.4237537980079651, 0.8508623838424683, 0.40243056416511536, -0.09457014501094818, -0.09414386749267578, 0.193304643034935, -0.6399115324020386, 0.6916947364807129, -0.2649794816970825, -0.014386279508471489, 0.894240140914917, -0.5572091341018677, -0.9461734890937805, -0.09277655184268951, 0.05947995185852051, -0.1914609670639038, -0.33974725008010864, 0.28100717067718506, 0.625296950340271, 0.6233625411987305, 0.07835346460342407, -0.12842631340026855, -1.011141061782837, 0.09522557258605957, -0.6807677745819092, 0.3563476800918579, -0.07888877391815186, -0.4060947895050049, -0.17584852874279022, -1.3390467166900635, -0.3525660037994385, -0.07783447206020355, -0.774910569190979, -0.05829419195652008, 0.23996837437152863, -0.497964084148407, -0.22539342939853668, -0.013052687048912048, 1.5799025297164917, 1.2977814674377441, 0.24419260025024414, 0.36470621824264526, -0.04294944554567337, -0.6492569446563721, -0.3257620334625244, 0.33537280559539795, -0.8609781265258789, -0.3402106761932373, -0.5855133533477783, -0.802812933921814, 1.1424001455307007, 0.26216715574264526, -0.3141326308250427, 0.918994128704071, 1.041975736618042, 1.1381020545959473, -0.36118465662002563, -0.39137890934944153, -0.5305958390235901, -0.12747822701931, 0.9038257598876953, 0.7633401155471802, -0.9510082602500916, -0.15799486637115479, 0.691676139831543, -2.56744384765625, 0.5203847289085388, 0.4909006357192993, -0.46570906043052673, -0.37840792536735535, 0.32560861110687256, 0.4973601698875427, 0.3111739754676819, -0.3642479479312897, 0.060906656086444855, -0.6805181503295898, -0.2419101446866989, -1.0637648105621338, -0.5348784923553467, 0.718757152557373, 0.2530784010887146, 0.2797606587409973, -0.0178311038762331, -0.380952924489975, -0.2801057994365692, 0.1594657301902771, 0.42757949233055115, 0.5286708474159241, 0.8852393627166748, -0.328421413898468, -0.8167372941970825, 0.9408683776855469, -0.46575483679771423, 0.6829434633255005, -0.29367193579673767, 0.6736277341842651, 1.104778528213501, 0.14036321640014648, 0.5365357398986816, -0.07641372829675674, 0.2097511887550354, -0.652394711971283, -0.8898194432258606, 0.13966187834739685, 0.8203617334365845, 0.4588468074798584, 0.37930232286453247, -0.43684619665145874, -0.5740360021591187, -0.3739590644836426, 0.2818659543991089, 0.8048529028892517, -0.44883328676223755, -0.9334204196929932, -0.29994961619377136, 0.3759182095527649, 0.08689798414707184, 0.5354352593421936, 0.858097493648529, -0.8467569351196289, -0.6531938314437866, -0.7261127233505249, 0.30295640230178833, 0.7290332317352295, -0.6753581762313843, 0.6491168737411499, 0.26372140645980835, -1.7795026302337646, 2.202308177947998, -0.15076880156993866, -1.4458708763122559, -0.1886812299489975, -0.9450452327728271, 0.7031893730163574, -0.43598276376724243, 0.37375128269195557, 0.2635922431945801, 0.9008606672286987, -0.49607765674591064, 0.14999979734420776, -1.6497591733932495, -0.6060782670974731, 0.3996885120868683, 0.5646851062774658, -1.2350397109985352, 0.7881267070770264, -1.055846929550171, -0.8214155435562134, -0.6184912919998169, 0.07095411419868469, -0.7522722482681274, 0.15593136847019196, -0.07141806185245514, 0.2678402066230774, -0.0735263079404831, 1.1339943408966064, 0.6701385974884033, 0.9207823276519775, -0.29475200176239014, 1.0964292287826538, -0.7974807024002075, -0.07446861267089844, -0.30439329147338867, -0.04317130148410797, -1.4987001419067383, -0.15596839785575867, -0.9180846214294434, -0.5365945100784302, 0.0381067730486393, 1.2658185958862305, 0.45348942279815674, 0.2451631724834442, 0.13011468946933746, 0.2834956645965576, 0.4224695563316345, -1.0620100498199463, 0.4576481282711029, 0.7537438869476318, -0.6746223568916321, -0.6018019914627075, 0.17157219350337982, -0.1326427161693573, -0.5163595080375671, 0.09742990136146545, -0.06343145668506622, 0.8755068182945251, -0.26639121770858765, 1.241797685623169, 0.032845497131347656, 0.016344202682375908, -0.4381321370601654, 0.7879396080970764, 0.7740954160690308, -0.9063622951507568, 0.08617574721574783, 0.2543402314186096, -0.5722348690032959, 1.1196895837783813, -0.09854789078235626, -0.8196117281913757, -0.9144158363342285, 1.222540259361267, -0.3661978840827942, -0.6176717281341553, -0.4070998430252075, 0.8461370468139648, -0.6922303438186646, -0.6104553937911987, 1.0061755180358887, -0.3533000946044922, -0.5303796529769897, 0.934698760509491, 0.5336399078369141, -0.28636687994003296, 0.41842207312583923, 0.2750087380409241, 0.34631308913230896, 0.017044691368937492, -0.7607418298721313, 0.8789499402046204, -0.2874086797237396, -0.3138071894645691, -0.4067798852920532, -0.4584362506866455, 0.6247432231903076, 0.32608282566070557, -1.4082934856414795, -0.28635329008102417, -0.8712466955184937, 0.05775276571512222, 0.10837967693805695, -0.32526516914367676, -0.027661532163619995, 0.45856547355651855, 0.1299479454755783, 0.4808606505393982, -0.536184549331665, -0.13939401507377625, -1.1069984436035156, -0.012732159346342087, 0.796373724937439, -0.3193405866622925, 1.0902469158172607, 0.28368547558784485, 0.5432831048965454, -0.25150352716445923, 0.21272476017475128, 0.8803993463516235, 0.27475041151046753, -0.1322222501039505, -0.6433857679367065, 0.5271895527839661, 0.2340024709701538, -0.03021266497671604, 0.8820637464523315, 0.11716213822364807, 0.49675479531288147, -0.34883609414100647, -1.71328866481781, -0.09783366322517395, 0.2165273129940033, 1.1168773174285889, -0.3469979763031006, -0.40154972672462463, -0.09808236360549927, 0.47699087858200073, 0.08303876221179962, 0.7652907371520996, -0.12179853767156601, 1.19948410987854, 0.7172291874885559, -0.42726922035217285, -0.7419411540031433, -0.8833973407745361, 1.1070683002471924, -0.09865917265415192, 0.41769707202911377, -0.1011723130941391, 1.060225009918213, -0.5440809726715088, -0.32998502254486084, 0.16228699684143066, 0.3076641857624054, -0.5147258043289185, 0.8990269899368286, 0.009740957990288734, -1.5174802541732788, -0.9070223569869995, 0.5107612013816833, 0.5091115236282349, -0.26580655574798584, 0.5595380067825317, -0.7000871896743774, -1.4725792407989502, -0.7088829874992371, 0.4868845045566559, 0.20211490988731384, 0.24530856311321259, 1.0636851787567139, 1.6952705383300781, -0.6816840767860413, 0.011026576161384583, 0.1400759518146515, 0.6464221477508545, -1.5441583395004272, 0.3418172299861908, -0.4762399196624756, 0.33724114298820496, -0.6203678250312805], [1.0379228591918945, 1.1222281455993652, -2.285416841506958, -0.982851505279541, 1.0066343545913696, 0.6037310361862183, 1.2537949085235596, 0.17603491246700287, -0.4336049556732178, -1.2110257148742676, -1.2317498922348022, 0.1950368732213974, 0.11549346148967743, 0.18741200864315033, 0.2955993413925171, 0.26580238342285156, 0.7780547738075256, 0.03687811642885208, -0.10400652885437012, 0.46159806847572327, 1.1623120307922363, -1.029977560043335, -0.32121890783309937, 0.20628945529460907, -0.1105809137225151, 0.2646944522857666, -0.9581381678581238, -0.3166334629058838, -1.1445045471191406, -0.32560664415359497, 0.7880088090896606, -0.6151086688041687, 0.24374915659427643, -0.2066747397184372, -1.5981687307357788, -1.383132815361023, 0.3830518424510956, 0.12906122207641602, 0.42855921387672424, 0.6094803810119629, 1.2443634271621704, -0.12094485014677048, -0.412667840719223, -1.3169039487838745, 0.2949008047580719, 0.6771625876426697, 0.6958065629005432, -0.7330523133277893, 0.17041288316249847, -0.45764416456222534, 1.3591264486312866, -0.4522894620895386, 0.9050980806350708, 0.603031575679779, 0.7395046353340149, -0.7263031601905823, 0.31803879141807556, -0.2932175099849701, 0.6392700672149658, 0.5139349102973938, 1.6393626928329468, -0.35045522451400757, 0.5051429271697998, 0.4299948513507843, 0.5802090167999268, 0.2243272364139557, 0.019702745601534843, 0.5002405047416687, -0.3158383369445801, 0.07452687621116638, 0.7782769203186035, 0.29723161458969116, -0.6390223503112793, 0.01686670258641243, -1.1743011474609375, 0.8763170838356018, 0.19837063550949097, 0.33427807688713074, 0.35665589570999146, 0.47073236107826233, -0.6732151508331299, 0.08870460838079453, 0.6786966323852539, -0.8962386846542358, 0.42661669850349426, 0.1773579716682434, 0.05871076509356499, -0.4996429979801178, -0.3141903877258301, 1.8959230184555054, -0.5342395305633545, 0.29545941948890686, 0.6091090440750122, -0.6444007754325867, -0.37472718954086304, 0.1491161286830902, 0.6499063968658447, 0.08854742348194122, -0.6833379864692688, -0.26909971237182617, -0.5611873269081116, -0.8667734265327454, -0.08272235095500946, 0.5264347791671753, 1.0388777256011963, 1.7937780618667603, 0.2875896096229553, -0.0254183541983366, -0.23323559761047363, 0.3528553545475006, 0.5629843473434448, 0.3656635582447052, -0.3465205430984497, -1.4063267707824707, 0.07452157139778137, 0.7379943132400513, 0.8525305986404419, -0.18340349197387695, 0.5535627603530884, 0.36774009466171265, -0.5361159443855286, 0.11602349579334259, -0.7297629117965698, 0.8186374306678772, 0.7488965392112732, 0.06128993257880211, -0.6733009815216064, 0.29451513290405273, -0.001630338840186596, -0.11008203774690628, 0.0980246290564537, -0.08466769009828568, -0.5253660082817078, 1.0010541677474976, -0.7930907607078552, 0.9349576830863953, -0.1431025266647339, -0.8353917598724365, 0.22694449126720428, -0.4087059497833252, 0.3750250041484833, -0.2776547372341156, -0.5967101454734802, -0.40442338585853577, 0.5716793537139893, -0.05953654646873474, 0.006008092314004898, -0.3586554229259491, -1.0256410837173462, 0.06945044547319412, -1.5160245895385742, -0.05310850962996483, -0.5645462274551392, 0.8524064421653748, 0.5550531148910522, 0.2898392081260681, 0.291835218667984, 0.5847094058990479, 0.4649890959262848, 0.19934597611427307, 0.9083806872367859, 0.2949039041996002, -1.41890287399292, 0.8755938410758972, 0.14720036089420319, -1.1400762796401978, 0.853258490562439, 0.5681344270706177, 0.5994828343391418, 0.06835336238145828, -0.8726574778556824, -0.46573156118392944, -0.6882018446922302, -0.16161203384399414, -0.2921876907348633, 0.04802256077528, 0.809767484664917, -0.3982497453689575, -0.5749094486236572, -1.6212846040725708, 0.6612496376037598, -0.3301074504852295, 0.00858593825250864, 0.2798806428909302, 0.3298417329788208, 0.4018508195877075, -0.46555644273757935, 0.7209105491638184, -0.5439364910125732, -0.933059573173523, -0.6045719981193542, -0.4011409878730774, -0.27936527132987976, 0.3361956775188446, -0.4539695978164673, -1.5923715829849243, 0.572526752948761, -0.45112472772598267, 0.02264769747853279, -0.0015533436089754105, -0.37243664264678955, -0.201409712433815, -0.5414041876792908, 0.6890300512313843, -0.16611671447753906, -0.2199491262435913, -0.9562292098999023, 0.5078875422477722, -0.6445361971855164, -0.05683503672480583, 1.5821449756622314, 0.3191359043121338, -0.6598684787750244, 0.8268424868583679, -0.00785266887396574, -1.5390065908432007, -0.023057425394654274, 0.04651964083313942, 0.5447945594787598, -0.39028939604759216, 0.03475639224052429, 0.037576038390398026, 1.3244444131851196, -0.08106055110692978, 1.1613857746124268, 0.5064456462860107, -1.036399245262146, -0.6403213143348694, -1.1881828308105469, -0.452808678150177, -1.1544303894042969, -1.4246782064437866, 0.3361755311489105, 1.0346710681915283, -0.856325626373291, 0.021125536412000656, -0.6487007141113281, -0.4270687401294708, 0.1746852695941925, 0.9436985850334167, -0.2580139636993408, 0.6002155542373657, -0.6860252022743225, -0.2644260823726654, -1.2531030178070068, 0.447782427072525, 0.4888457655906677, -0.15082667768001556, 0.06989877671003342, 1.1666866540908813, 0.4923783242702484, -0.6443591713905334, 0.6692715883255005, -0.7562370896339417, 0.2618466019630432, -0.536756694316864, -0.49666261672973633, -0.34592995047569275, -0.43125659227371216, 0.7359582781791687, 0.012993079610168934, -0.713921308517456, -0.02397201582789421, -0.16083787381649017, 0.7379581928253174, -1.2052520513534546, 0.22441047430038452, -0.02092091366648674, 0.5528615713119507, -0.38897907733917236, -0.3439866304397583, 0.08272489905357361, 0.5852736830711365, 1.5999380350112915, -0.24977488815784454, 0.23547935485839844, 0.06646789610385895, 1.395126461982727, 0.13964004814624786, 0.352679580450058, -0.12317436188459396, -0.849854052066803, -0.3466196060180664, 0.06320099532604218, 0.35813871026039124, -0.6585214734077454, -1.0403109788894653, 0.3288480341434479, 0.8720282912254333, -0.03070494346320629, -0.10059630125761032, 0.5080217719078064, -0.4646497070789337, -0.5475332736968994, 0.18025518953800201, -0.19926002621650696, 0.6554763913154602, -0.07947547733783722, -0.8180765509605408, -0.3812641501426697, 0.8084462285041809, 1.0244953632354736, 0.4040900468826294, 1.4410063028335571, -0.43903517723083496, -0.2813172936439514, -0.17503313720226288, -0.11904653906822205, -0.7968780398368835, -0.6215143203735352, 0.07464832812547684, -0.31203240156173706, -0.009444078430533409, -0.6421259045600891, -0.1862826645374298, 0.862224817276001, 0.36413276195526123, 0.4169737994670868, 0.047342535108327866, -0.044296156615018845, -0.9954589605331421, -0.47834140062332153, -0.20191267132759094, -1.2307754755020142, 0.9465917944908142, 1.206255555152893, -1.108175277709961, 0.16557255387306213, -0.17566092312335968, 0.2776286005973816, 0.021516146138310432, -1.2520650625228882, -0.2449614256620407, -1.2465134859085083, -1.1197959184646606, 0.156084805727005, 1.1934247016906738, 0.057509783655405045, -0.009991273283958435, -0.3792610466480255, 0.5955877304077148, 0.47651055455207825, 0.04594049230217934, -0.8815407156944275, 0.2808063328266144, -0.510352611541748, -0.9282075762748718, -0.09846188873052597, 0.8295339345932007, 1.336568832397461, -0.252557635307312, -0.2448320835828781, -0.11286453157663345, -0.3597252666950226, -0.7468979358673096, 0.05376401171088219, -0.4986567497253418, 1.1634252071380615, -0.51194828748703, 0.5289309620857239, 0.9754539728164673, 0.3534699082374573, 0.2328987568616867, -1.3157148361206055, 0.5147433280944824, 0.47855690121650696, 0.904061496257782, 0.03818976879119873, 0.05240737274289131, -0.22537963092327118, -0.311392217874527, 0.7232945561408997, 0.4157361686229706, 0.6510029435157776, 0.02567231096327305, -0.7631838321685791, -0.3441937267780304, -0.8224477171897888, -0.07908721268177032, 0.5042768120765686, -0.3209637999534607, -0.1812005490064621, -0.024061232805252075, -0.2535533905029297, 1.4766336679458618, -0.014629275538027287, 0.04288419708609581, -0.3431171774864197, -0.49576660990715027, 0.49851006269454956, 0.14814500510692596, -0.5717656016349792, -0.5259708762168884, 0.7725263833999634, 0.7108544707298279, -0.3962429463863373, -0.8379174470901489, 0.09208356589078903, 0.9332746267318726, 0.21115191280841827, -0.6665090322494507, 0.4001133143901825, -0.044322606176137924, 0.18568836152553558, 0.5092144012451172, 0.45344191789627075, 0.14322492480278015, 0.052036743611097336, 0.019186614081263542, -0.32942724227905273, 0.2584284245967865, 0.934436559677124, -0.3691350519657135, -0.3134911358356476, -0.09036240726709366, -0.25185641646385193, 0.8333389759063721, 0.7823889255523682, 0.041233960539102554, 0.41818034648895264, -0.36788737773895264, 0.024245422333478928, -0.2771463394165039, -0.12120535224676132, 1.3072500228881836, -0.4193016588687897, -0.37153947353363037, 0.9830926060676575, -0.1748887300491333, -1.3351134061813354, -0.091765396296978, 0.38038724660873413, -0.12426143884658813, 0.07192626595497131, 0.1515320986509323, -0.607524573802948, 0.40500232577323914, 0.835395872592926, 0.2079782485961914, 0.829468846321106, 0.1594795435667038, -0.7295295596122742, 0.4402627646923065, 0.6842694282531738, 0.6539958715438843, 1.6179598569869995, 0.9361174702644348, -0.33760690689086914, -0.8429275155067444, 0.9164310097694397, -0.057362549006938934, 0.020469121634960175, 0.07935746014118195, 0.3184152841567993, 0.908679723739624, -0.9514538645744324, -0.4505438208580017, 1.1016157865524292, 0.21679578721523285, 0.8568793535232544, -0.2992386817932129, 0.22619344294071198, -0.1342557817697525, 0.40279439091682434, -0.10377436876296997, -0.13157601654529572, 0.8273400068283081, -0.08550573140382767, 0.000477995490655303, 0.6225993633270264, -0.934964120388031, 0.43206703662872314, -0.26018813252449036, -0.25257444381713867, 0.43293413519859314, -0.5549061894416809, 0.17333780229091644, 0.8697869181632996, 0.6335111856460571, 1.5384933948516846, -0.5073015093803406, -0.8957380652427673, -0.021983955055475235, -0.35137778520584106, 0.2955443263053894, -0.10764918476343155, -0.277069091796875, -0.4197046756744385, -0.3158714771270752, -0.1592469960451126, 0.6772988438606262, -0.11814729869365692, 0.39045771956443787, 0.3510611653327942, -0.4969773590564728, 0.06984363496303558, -0.6230834722518921, 0.9032906889915466, 0.49479207396507263, 0.01138004008680582, -0.24754513800144196, 0.663460373878479, -0.5191647410392761, 0.17419302463531494, 0.15215085446834564, -0.369863897562027, -0.8111335635185242, -1.300414800643921, -0.8504524827003479, 0.4595026671886444, 0.3865208327770233, 0.9073401689529419, -0.14077945053577423, 1.6081548929214478, 0.7786154747009277, -0.2275981307029724, -0.12767161428928375, 0.26308462023735046, -0.8434804081916809, 0.3100901246070862, 0.13103513419628143, -0.4258648753166199, 0.1143781989812851, -0.5118808150291443, -2.5321590900421143, 0.13729460537433624, -0.3430105149745941, -0.999974250793457, 0.5008407235145569, 0.6043523550033569, 0.8325601816177368, 0.4527917206287384, -0.6258000731468201, -0.3014552891254425, -0.33526474237442017, -0.030004747211933136, -1.372329592704773, 0.3028394281864166, 0.6613501906394958, 0.6830416917800903, -0.8884607553482056, 0.19890014827251434, -0.2926236689090729, 0.07844991981983185, -0.33494117856025696, -0.2817530930042267, 0.41392314434051514, 1.2514183521270752, 0.6871250867843628, -0.7227367758750916, 0.4443623721599579, 0.22568778693675995, 0.2102378010749817, -0.05618933588266373, 0.7821664214134216, 0.211880624294281, -0.5215892791748047, 0.6993424892425537, -0.9346211552619934, -0.3992457687854767, -0.5664841532707214, -0.1880500167608261, 1.7264223098754883, 0.9681674242019653, -0.39829784631729126, -0.6165770888328552, -0.22133305668830872, -0.19943642616271973, -0.7025954127311707, -0.11669492721557617, 1.2990366220474243, -0.9308512210845947, -0.7482996582984924, -0.0037198252975940704, 0.24413251876831055, 0.02365628257393837, -0.0270262248814106, 0.5270439386367798, -0.7164829969406128, -1.4908604621887207, -0.5290723443031311, 0.3783910274505615, 1.6659601926803589, -0.16694508492946625, 0.10397300124168396, 0.21972188353538513, -1.4854600429534912, 0.7001580595970154, -0.0020852144807577133, -0.8814588785171509, -0.3878155052661896, -0.770039975643158, 0.41480496525764465, -0.3620460629463196, -0.20826877653598785, 0.22972416877746582, 0.5355724096298218, -1.3011394739151, -1.3197615146636963, -1.545462727546692, -0.27219536900520325, 0.7916892170906067, 0.44952401518821716, -0.006989572197198868, 0.5136999487876892, 0.4649832546710968, -1.0040507316589355, -0.9047318696975708, -0.3729131817817688, -1.1965888738632202, 0.8574113845825195, 0.8036719560623169, 0.07982173562049866, 0.434101939201355, 1.175554871559143, 0.13984273374080658, 0.8947727680206299, -0.14059317111968994, 0.3560393452644348, -0.779623806476593, -0.05960093438625336, -0.7671356797218323, 0.314187228679657, -1.1772289276123047, -0.9115056991577148, -0.5711369514465332, -0.2986946403980255, -0.4732409417629242, 1.1331886053085327, 0.6752373576164246, -0.7786063551902771, -0.07095152139663696, -0.5097324252128601, -0.13022615015506744, -0.5650193095207214, 0.5312396287918091, 0.5740951299667358, -0.10174329578876495, 0.061274655163288116, 0.4178275763988495, 0.49069440364837646, -0.5863407850265503, 0.07905539870262146, -0.16068808734416962, 0.19689780473709106, -0.20639091730117798, 0.7208229303359985, 0.630903422832489, 0.24129050970077515, -0.3384701907634735, 0.676304042339325, 1.8264304399490356, -0.21963085234165192, 0.2941568195819855, 0.44946545362472534, -0.5407124757766724, -0.18050546944141388, 0.05475252494215965, -0.9858928322792053, -0.8172195553779602, 0.6754104495048523, 0.21837222576141357, -0.2040347158908844, -0.5495969653129578, 0.7072809338569641, 0.01802798919379711, -0.3955633342266083, 0.3546698987483978, -0.3173069357872009, -1.4113112688064575, 1.045743465423584, 0.487865149974823, -0.45963606238365173, 0.3214578628540039, 0.29775893688201904, 0.38132724165916443, 0.29111385345458984, -0.2819415330886841, 0.3360220193862915, -0.5933233499526978, -0.0009340094402432442, -0.5637843608856201, -0.14804120361804962, 0.03197198361158371, -0.3555813133716583, -1.2606245279312134, 0.2523253560066223, -0.20340709388256073, -0.684708833694458, 0.9314693808555603, -1.1945326328277588, -0.8742936253547668, 0.8227593302726746, -0.13960671424865723, -0.173808753490448, -0.5708560347557068, 0.2164846509695053, 0.15596342086791992, 0.3014847934246063, 0.412143737077713, -0.4687148630619049, 0.6390658617019653, 0.7909272909164429, -0.16346538066864014, -0.6535469889640808, 0.061342958360910416, 0.14495433866977692, 0.8471324443817139, 0.12687623500823975, -0.23075969517230988, 0.44704878330230713, -0.3163582384586334, -0.5031564831733704, -0.3556649088859558, -0.867850661277771, 0.5098150372505188, -0.4210051894187927, -0.9755188226699829, 0.3038702607154846, 0.5380404591560364, 0.27449408173561096, -0.8984281420707703, -0.7811862826347351, -0.5143904685974121, 0.29121658205986023, -0.018404576927423477, 0.8703910708427429, -0.2324342429637909, 1.6509833335876465, 0.25230684876441956, 0.05283160135149956, 0.29513147473335266, -0.6067661643028259, 0.9609350562095642, -0.30336812138557434, 0.1341753602027893, -1.053268551826477, 0.13184231519699097, -0.9160046577453613, -1.246963620185852, -0.08152899146080017, -0.1649828553199768, -0.9689885377883911, 0.33702149987220764, -0.454967737197876, -1.392688512802124, -0.5992569327354431, -0.288362979888916, 0.8811291456222534, 0.016771556809544563, 0.6068766713142395, -0.43997374176979065, -1.3346549272537231, 0.4194946587085724, 0.5899427533149719, 0.0633707270026207, 0.6166737675666809, 0.6463598608970642, 1.7729315757751465, -0.0005757010076195002, 0.344513863325119, -0.28357651829719543, 0.7814449667930603, 0.025497404858469963, -0.2570962607860565, -1.0072455406188965, 0.6774237751960754, 0.16619233787059784], [-0.030914656817913055, 1.4969292879104614, -2.5707290172576904, -0.36004215478897095, 0.2971547245979309, 0.12529738247394562, 1.043060541152954, 0.46063387393951416, -0.9658787250518799, -0.683433473110199, -1.093449592590332, 0.14103542268276215, -0.22329679131507874, 1.5695141553878784, 0.7037621140480042, 0.6221082806587219, -0.04212135449051857, 0.012425156310200691, -0.11476528644561768, 1.5976948738098145, -0.10823844373226166, -1.0559805631637573, -1.7034615278244019, -0.09243994951248169, 0.05803368240594864, -0.5691114664077759, -1.4838206768035889, -0.31119781732559204, -0.48313507437705994, -1.1012396812438965, 1.900301218032837, -1.0780792236328125, 0.1888711005449295, -0.2572678327560425, -1.5680861473083496, -0.7895516753196716, 0.492753267288208, 0.24988609552383423, 0.3239873945713043, 0.5828027129173279, 1.5594327449798584, 0.027261286973953247, -0.3021162450313568, -1.0897502899169922, 1.0513883829116821, 0.10346966981887817, 0.5231627821922302, -1.408209204673767, 0.530081570148468, -0.38291478157043457, 0.6759491562843323, -0.2970123291015625, 0.3542361557483673, -0.015221030451357365, 1.3163025379180908, -0.17525246739387512, 0.2663383185863495, 0.44970762729644775, 1.1417760848999023, 0.5786244869232178, 0.833526611328125, 0.9011945128440857, 0.43645843863487244, 0.34580540657043457, 0.952175498008728, 0.26738518476486206, 0.7424942255020142, 0.9311701059341431, -1.1098499298095703, -0.0034672562032938004, -0.07365953177213669, -0.5889691710472107, -0.07100160419940948, 0.23091332614421844, -0.08517921715974808, 0.3166494071483612, -0.40425142645835876, 0.06381076574325562, -0.09444201737642288, 0.8776669502258301, -0.47470003366470337, 0.06872206181287766, 0.9083849787712097, -1.1780067682266235, 0.1574031412601471, -0.20557212829589844, 0.10959739238023758, -0.6142269372940063, -0.24844591319561005, 1.9079190492630005, 0.16593600809574127, 0.8731924295425415, 0.2699231505393982, -0.14669209718704224, 0.17562273144721985, -0.3277438282966614, 0.12522447109222412, -0.9792271256446838, -0.27335095405578613, -0.9452109336853027, 0.5534455180168152, -1.077598214149475, 0.36088407039642334, -0.06676832586526871, 1.3061480522155762, 1.783281683921814, -0.351732075214386, -0.3612744212150574, -0.48143988847732544, 0.1856934279203415, -0.33875927329063416, -0.25096943974494934, -0.4657306373119354, -1.2319176197052002, 0.030199268832802773, 1.3479607105255127, 0.9808265566825867, -0.14434517920017242, 0.08963046967983246, 0.571765124797821, -0.4544464349746704, -0.22900158166885376, -1.115527868270874, 0.34614086151123047, 1.4035083055496216, 0.7171292901039124, -1.175071120262146, -0.09023092687129974, -0.5069048404693604, 0.24670962989330292, 0.07004919648170471, 0.27058547735214233, -0.3943677842617035, 0.668454647064209, -0.19782431423664093, 1.643117904663086, 0.025573862716555595, -0.5407989621162415, 0.09118679165840149, -0.118984654545784, 0.08923282474279404, -1.3134737014770508, -0.8231561183929443, -0.8604277968406677, 0.4024724066257477, -0.3018698990345001, 0.692238986492157, -0.4081520736217499, -1.1990259885787964, -0.15808582305908203, -1.7510898113250732, 0.49132177233695984, -0.45299139618873596, 1.8423621654510498, 0.6374603509902954, -0.3293968439102173, -0.027863340452313423, 0.24737730622291565, -0.08444832265377045, 0.47460874915122986, 0.47053489089012146, 0.060798853635787964, -0.6213064789772034, 0.9781134724617004, 0.46575331687927246, -0.6524407863616943, 0.9561516046524048, 0.7001747488975525, 0.5940947532653809, 0.6541762948036194, -0.27942049503326416, -0.7087034583091736, -1.2420473098754883, -0.13105571269989014, -0.08808740228414536, -0.9894687533378601, 0.4206709563732147, -0.3806399405002594, -0.4609147310256958, -1.4942443370819092, 0.3174632489681244, -0.028748271986842155, 0.5135236382484436, -0.21236275136470795, 0.0919206291437149, -0.009609163738787174, -0.1067795529961586, -0.013387464918196201, -0.19576355814933777, -0.7184976935386658, -0.9880910515785217, -0.0334814079105854, -1.3058552742004395, -0.4634386897087097, -0.16893370449543, -0.8838397264480591, 0.5197945833206177, -0.3795880377292633, -0.17694419622421265, 0.05685491859912872, -0.39698484539985657, -0.5771108865737915, -0.8918904066085815, 0.09968259930610657, -0.4212704300880432, 0.2121141105890274, -0.10507236421108246, 0.3563839793205261, 0.0006978949531912804, -0.2472904771566391, 0.829329788684845, 0.1355438530445099, -0.9070215225219727, 0.6120695471763611, -0.16247065365314484, -0.9448479413986206, 0.592267632484436, -0.7018412351608276, 0.3974367082118988, 0.14332431554794312, 0.47300031781196594, -0.21727462112903595, 0.601856529712677, 0.2525816559791565, 0.26050299406051636, 0.20103766024112701, -0.45598047971725464, -0.39310017228126526, -1.474906086921692, 0.1978490799665451, -1.2114293575286865, -0.7002614140510559, 0.9795778393745422, 0.5656179785728455, -0.658789873123169, 0.47036558389663696, -0.6783536076545715, 0.06279835850000381, 0.7826366424560547, 1.2714943885803223, 0.4998817443847656, 0.26409199833869934, -0.9479349255561829, -0.674769401550293, -1.256382703781128, -0.551367998123169, 0.33246782422065735, -0.31110066175460815, 0.4405123293399811, 1.0491468906402588, 0.6702871322631836, -0.23097875714302063, 0.18683002889156342, -0.26797279715538025, 0.17367678880691528, -1.2598683834075928, 0.28471723198890686, -0.0012449370697140694, -0.5250003337860107, 0.9841433763504028, 0.2798383831977844, -1.5171418190002441, -0.5665664076805115, 0.00720977270975709, -0.1857406347990036, -0.3220270574092865, -0.15743619203567505, -0.3157512843608856, 0.49576571583747864, -0.12173061817884445, -0.24588342010974884, 0.0026626205071806908, -0.22374941408634186, 1.0653386116027832, 0.016191566362977028, -0.3565376102924347, 0.47367820143699646, 1.2690595388412476, 0.28108468651771545, 0.9069921970367432, -0.5489847660064697, -1.5497419834136963, -0.8395072221755981, -0.7380911111831665, 0.9750636219978333, -0.045875754207372665, 0.2573774456977844, -0.09433042258024216, 0.982366144657135, -0.4379301965236664, 0.27190667390823364, 0.20156237483024597, 0.08873274177312851, -0.7276943325996399, 0.6590197682380676, 0.9506472945213318, 1.0513486862182617, -0.5268418788909912, -0.67131108045578, -0.2269076406955719, 0.326540470123291, 0.4752436578273773, 1.0436466932296753, 0.592495322227478, -0.1118050292134285, -0.2497161477804184, -0.6466004848480225, -0.502967894077301, -0.9649585485458374, -0.21561291813850403, -0.37651342153549194, -1.1279361248016357, -0.14275209605693817, -0.20239664614200592, -0.6253798007965088, 0.9509747624397278, 0.07564834505319595, 0.7396622896194458, 0.533656656742096, -0.15863682329654694, -0.6109147071838379, -0.926044225692749, -0.276473730802536, -1.5350795984268188, 0.9804149866104126, 0.7687710523605347, -0.01770424284040928, 0.3840242326259613, 0.626724362373352, -0.3199393153190613, 0.007592398673295975, -0.21478533744812012, 0.43209290504455566, -0.9233116507530212, -0.8533047437667847, -0.30866673588752747, 0.6994330286979675, 0.6103041768074036, -0.4852536916732788, -0.5314356684684753, 0.9653986692428589, 0.6159765124320984, 0.1616382598876953, -0.28759700059890747, 0.6228432655334473, 0.21255458891391754, -0.32777732610702515, 0.2852500379085541, 0.6584487557411194, 0.797931969165802, -0.30669689178466797, -0.15146403014659882, -0.6974724531173706, 0.28664276003837585, -0.7161036729812622, 0.21137547492980957, -0.4058631956577301, 0.3359214961528778, 0.019573748111724854, -0.2500290274620056, 1.3192819356918335, -0.21954345703125, 0.6535646319389343, -1.4430736303329468, 0.2278660535812378, 0.22058404982089996, 1.2282310724258423, 1.3563716411590576, 0.0705265924334526, 0.010913447476923466, -0.6832812428474426, 0.43422436714172363, -0.10602910816669464, 0.9564797878265381, 0.19804665446281433, -0.944061279296875, -0.13376301527023315, -0.9823012948036194, 0.3658004105091095, -0.3552785813808441, -1.1623117923736572, -0.15825852751731873, -0.6183095574378967, -0.5811681151390076, 1.1968469619750977, 0.031183432787656784, -0.41040387749671936, -0.366753488779068, -0.05940350145101547, 0.7038443088531494, 0.37793251872062683, -0.36246001720428467, -0.3779952824115753, -0.1018303707242012, 0.5788358449935913, -0.7092750668525696, -0.49645936489105225, -0.8633525967597961, 0.3296741843223572, 0.3630176782608032, -1.3042253255844116, 0.06774143129587173, -0.09336789697408676, 0.3617950677871704, 0.36907872557640076, 0.5755273699760437, 0.5049457550048828, 0.3016394078731537, 0.27876073122024536, 0.06033368408679962, 0.023237133398652077, 1.6299574375152588, 0.6020561456680298, -0.5072789788246155, -0.04682311415672302, 0.8837012052536011, 0.2785866856575012, 0.22150066494941711, -0.262650728225708, 0.09062138199806213, -0.6732149124145508, -0.5017443299293518, -0.191084623336792, -0.018218010663986206, 1.6198606491088867, -0.023917462676763535, 0.35657694935798645, 0.49700015783309937, -0.8727487325668335, -0.8633296489715576, -0.11561018973588943, 0.19904887676239014, 0.15164059400558472, 0.07257220149040222, 0.21779865026474, 0.47841495275497437, 0.28252822160720825, -0.26623889803886414, 0.3717474937438965, 1.248866081237793, 0.6502110958099365, -0.4081030488014221, -0.6577926874160767, 0.08705203235149384, 0.517848014831543, 1.1885260343551636, 0.8431851863861084, -0.3055216372013092, -0.6421008110046387, 1.245753526687622, -0.8544158935546875, 0.6322371363639832, 0.34710174798965454, 0.5018755793571472, 1.0307033061981201, -1.8890469074249268, -0.17690274119377136, 0.6505454182624817, 0.45477908849716187, 0.35585448145866394, -0.5443108081817627, 0.4618598520755768, -0.9803792238235474, 0.3235495686531067, 0.451951801776886, 0.02452624775469303, 0.6737415790557861, 0.25185543298721313, 0.1167304590344429, 1.2076016664505005, 0.515505313873291, 0.153164803981781, -0.41806215047836304, 0.007288362830877304, -0.2528229355812073, 0.18228968977928162, 0.12558643519878387, 0.3857710063457489, 0.3488548696041107, 1.7258363962173462, -0.17830252647399902, -0.4099466800689697, 0.2766416668891907, -1.2087819576263428, 1.087790608406067, -0.3186899721622467, -0.08805672079324722, 0.1406848281621933, -0.9047790765762329, 0.09399828314781189, -0.1064966693520546, -0.5658042430877686, 0.016245417296886444, -0.5397320985794067, -0.9696098566055298, -0.14014942944049835, -0.4500780999660492, 0.7874082326889038, 1.3756555318832397, 0.3709782660007477, 0.4504695534706116, 0.4699144959449768, -0.3569234013557434, -0.29628893733024597, 0.357818067073822, -0.453508198261261, -0.26827752590179443, -1.2407686710357666, -0.9988082051277161, 0.7662538886070251, 0.27115365862846375, 0.10549923032522202, 0.026480870321393013, 1.7818354368209839, 1.1809958219528198, -0.5008004307746887, -0.28678688406944275, 0.5706213116645813, -0.1636078953742981, 0.6521619558334351, 0.6474618315696716, -1.0011622905731201, 0.24601483345031738, -0.09868625551462173, -2.7901899814605713, 1.5353785753250122, -0.11094482243061066, -0.5027937889099121, 0.9925718903541565, 0.5757449865341187, 0.7529124617576599, 1.0637181997299194, -0.9436073899269104, -0.10206373035907745, 0.08439097553491592, 0.39319658279418945, -1.2988030910491943, -0.1824369579553604, 1.2648987770080566, 0.38940078020095825, -0.7938321232795715, 0.1642872542142868, -0.17250801622867584, 0.15411008894443512, -0.13259576261043549, 0.3146878778934479, 0.49199309945106506, 0.16632097959518433, -0.06694332510232925, -0.744152843952179, 0.8004246354103088, -0.425868958234787, 0.10869651287794113, 0.05746757984161377, 0.7487057447433472, 0.5421715378761292, -0.3949534296989441, 0.10762051492929459, -0.18011321127414703, -0.8036274313926697, -0.11906787753105164, -0.14993999898433685, 0.6692363619804382, 0.1303683966398239, -0.06341034173965454, 0.13868562877178192, 0.2752726972103119, -0.6190879344940186, -0.43983685970306396, 0.3418043553829193, 1.2978731393814087, -0.803665041923523, -0.29238197207450867, 0.0908856987953186, 0.2763477861881256, 0.2901874780654907, 0.5529543161392212, 0.32688629627227783, -1.1473209857940674, -1.4191056489944458, -0.5649518966674805, -0.7106888294219971, 0.5785494446754456, -0.2970229387283325, 0.1870679408311844, -0.06687788665294647, -1.225182056427002, 1.378737449645996, -0.35275954008102417, -1.4426195621490479, -0.2239585667848587, -1.1405150890350342, 0.4934336245059967, -0.8960303664207458, 0.10539916157722473, 0.434837281703949, 0.9096720814704895, -0.864203691482544, -0.33968186378479004, -0.6846965551376343, -0.35254839062690735, 0.2678224444389343, 0.9497168660163879, -0.8883076310157776, 0.5817786455154419, -0.40717586874961853, -0.8851433992385864, -0.43225982785224915, 0.6943327784538269, -1.5858556032180786, 0.2930101156234741, -0.22207918763160706, 0.5221501588821411, -0.010320513509213924, 1.7582154273986816, 0.26506805419921875, 1.1148165464401245, -0.5634517073631287, 0.7621737122535706, -0.6488935351371765, -0.20628651976585388, -0.5996177792549133, -0.06626008450984955, -1.3262832164764404, -0.29885333776474, -0.34886959195137024, -0.21240782737731934, -0.4648476839065552, 1.3376175165176392, 1.048588514328003, -1.3674050569534302, -0.2130325883626938, -0.6360486745834351, 0.827430784702301, 0.030026476830244064, 0.39451703429222107, 0.5167903900146484, -1.1158536672592163, -0.08139587938785553, 0.044650040566921234, 0.990846574306488, -0.9330590963363647, -0.21309371292591095, 0.01821122318506241, 0.7974117994308472, -0.5873816609382629, 1.5478805303573608, 0.2804383635520935, 0.4413999021053314, -1.029477834701538, 0.9303621053695679, 1.3041154146194458, -0.2607079744338989, 0.9559476375579834, 0.12162579596042633, -0.30059561133384705, 0.059584517031908035, -0.6210027933120728, 0.07136350125074387, -1.2047936916351318, 0.7752390503883362, 0.32498699426651, -0.1830817312002182, -0.7646666169166565, -0.21839821338653564, -0.5398369431495667, -0.3874239921569824, 0.997793436050415, -0.1996833235025406, -0.2755943536758423, 0.7947754859924316, 0.7619083523750305, -0.18460209667682648, 0.623573899269104, -0.407056599855423, 0.42829573154449463, 0.32105788588523865, 0.24766024947166443, 0.005947629921138287, -0.9663903117179871, -0.2828424274921417, -0.16402259469032288, -0.5775721073150635, 0.09097807854413986, -0.3332608640193939, -1.3319523334503174, -0.3577730059623718, -0.3722109794616699, -0.4496322572231293, 0.6052840948104858, -0.5684046745300293, -1.584665298461914, -0.3688223361968994, -0.07962644845247269, 0.05527764558792114, -0.6096795201301575, -0.18815602362155914, -0.015450233593583107, -0.40712854266166687, 0.9852858781814575, -0.4460724890232086, 1.1208432912826538, 0.36344996094703674, 0.5960631370544434, -0.11804250627756119, 0.14118948578834534, -0.23599465191364288, 0.3871503472328186, -0.02721228078007698, 0.04251176491379738, 0.2675904929637909, -0.3269621729850769, 0.07844604551792145, 0.1362597644329071, -0.05861586332321167, 0.6654713153839111, -0.5270060300827026, -0.6677591800689697, -0.5356180667877197, 0.5337364673614502, 0.45123252272605896, -0.49394628405570984, -0.5630000233650208, -0.31155261397361755, 0.16277632117271423, -0.028096642345190048, 0.6359885931015015, -0.276285856962204, 0.7389973998069763, 0.9929870367050171, 0.15532933175563812, -0.4893372654914856, -0.8655012845993042, 0.636248767375946, -0.5919713377952576, 1.1062406301498413, -1.0293935537338257, 0.1954527199268341, -0.6954430341720581, -1.0990244150161743, -0.29073575139045715, -0.2337236851453781, -0.022417789325118065, 0.5433048009872437, -0.4417188763618469, -0.40612488985061646, -0.7623957395553589, -0.6784459352493286, 0.6556037068367004, -0.038176994770765305, 1.157670497894287, -0.9035539627075195, -1.5222774744033813, -0.18685282766819, 0.8358678817749023, 0.6672059893608093, 0.7750874161720276, 1.234979271888733, 1.1286462545394897, -0.2692042887210846, 0.01771615259349346, -0.26271674036979675, 1.1282016038894653, -0.7360945343971252, -0.5230770111083984, -0.4150189459323883, 0.5095065832138062, 0.09934931993484497], [0.04680957645177841, 1.8124414682388306, -2.7537448406219482, -0.9624541401863098, -0.03412659093737602, 0.2556922733783722, 0.8523023128509521, -0.5061001777648926, -0.3735351264476776, -0.8857133388519287, -0.9141155481338501, -0.21618665754795074, 0.1964091658592224, 0.9983009696006775, 0.5753116011619568, 0.6978864669799805, 0.2239808589220047, -0.6146997213363647, 0.27451297640800476, 0.9672024250030518, 0.29328376054763794, -1.4222480058670044, -0.6846514940261841, 0.4395546615123749, 0.6372618079185486, -0.19841645658016205, -1.7244737148284912, -0.7556363344192505, -1.3036317825317383, 0.46881261467933655, 1.975081205368042, -1.0207154750823975, -0.10586492717266083, 0.16273829340934753, -1.7677412033081055, -1.889824390411377, 0.09494760632514954, 0.2727442681789398, 0.526233971118927, -0.019874591380357742, 1.7347959280014038, 0.2936497926712036, -0.3176627457141876, -0.8775262832641602, 1.5860347747802734, -0.331040620803833, 0.6992502212524414, -1.2284009456634521, -0.22018741071224213, -0.5574919581413269, 1.5570266246795654, -0.6342916488647461, 0.4220251739025116, 0.21655070781707764, 0.9226890802383423, -1.1247553825378418, -0.2797389328479767, 0.13927790522575378, 0.8863087892532349, 0.10405044257640839, 2.226580858230591, 1.055185079574585, 0.38496923446655273, 0.8227847814559937, 1.0071842670440674, -0.12286687642335892, 0.8932010531425476, 0.32930251955986023, -0.47633883357048035, 0.36928656697273254, 0.43037593364715576, -0.9246354103088379, -0.5116254687309265, 0.23525092005729675, -0.3632116913795471, 0.19546733796596527, -0.25278809666633606, 0.6420807242393494, 0.13526767492294312, 1.0383981466293335, -0.5540986061096191, -0.1647615134716034, 0.46295252442359924, -0.8085302710533142, 0.26102375984191895, -0.36152246594429016, 0.5220741033554077, 0.2866879105567932, -0.681998610496521, 1.6878242492675781, -0.3813489079475403, 0.856700599193573, 0.16009430587291718, 0.04200645908713341, 0.5810376405715942, -0.2841448485851288, -0.1766718029975891, -0.5299837589263916, 0.20788101851940155, -0.47083333134651184, -0.4549403488636017, -0.8207414746284485, 0.47958889603614807, -0.33858925104141235, 1.3437343835830688, 1.198097825050354, -0.18115398287773132, -1.1897026300430298, -0.948295533657074, -0.0009424344170838594, 0.02930058352649212, -0.15153677761554718, -1.226338267326355, -1.3696367740631104, -0.15828171372413635, 1.0189921855926514, 0.8366336226463318, -0.4361494481563568, 0.09225655347108841, 0.6924225091934204, -0.7873363494873047, -0.3999294340610504, -0.8892006874084473, 0.5701384544372559, 1.2052127122879028, 0.1374930590391159, -0.9556607604026794, 0.09232623130083084, -0.619785487651825, -0.017004434019327164, 0.33870232105255127, 0.3479449152946472, -0.33763808012008667, 0.6399039626121521, -0.07754857838153839, 0.7393489480018616, -0.11262541264295578, -0.5854918956756592, -0.01842745766043663, -0.5026804208755493, -0.14547017216682434, -0.7476183772087097, -0.6330780982971191, -0.7611513733863831, 0.5354458093643188, -0.35938262939453125, -0.029906831681728363, -0.5838316679000854, -1.1706154346466064, -0.7944273352622986, -1.3337795734405518, -0.006722300313413143, -0.11206372082233429, 1.3414180278778076, 0.15505895018577576, -0.22363388538360596, 0.4806895852088928, -0.09688816219568253, 0.46178334951400757, 0.671445906162262, 0.9424756765365601, 0.1860344111919403, -0.5993832945823669, 1.3377093076705933, 0.18275611102581024, 0.08411069214344025, 0.2929830551147461, 0.8943517208099365, 0.17978253960609436, 0.5954204201698303, -0.48520326614379883, -0.265482634305954, -0.350009948015213, -0.3214712142944336, 0.17926853895187378, -0.8414843678474426, 0.41426771879196167, -0.2568926215171814, -0.6226565837860107, -1.4870883226394653, 0.8107938766479492, -0.28522440791130066, 0.11160560697317123, 0.5649496912956238, -0.6811853647232056, -0.3881925940513611, 0.0328734926879406, -0.35387876629829407, -0.43215957283973694, -0.024093501269817352, -0.6469882130622864, 0.3486427366733551, -1.5197583436965942, -0.5664626359939575, -0.5507805347442627, -0.9474120736122131, 0.8389114737510681, -0.6649081707000732, -0.47885003685951233, 0.2762991786003113, -0.14950153231620789, -0.37483641505241394, -1.169601559638977, 0.24515454471111298, -0.8821619749069214, 0.5430746674537659, -0.586751401424408, 0.6725870370864868, -0.037164460867643356, 0.03824785724282265, 1.0238527059555054, 0.3048875629901886, -1.1708570718765259, 0.5951561331748962, 0.2462158054113388, -1.713767409324646, 0.3949190676212311, -0.6839579343795776, 0.4895379841327667, 0.4923069477081299, 0.41624927520751953, 0.13963013887405396, 1.2369320392608643, 0.4096328020095825, 0.5358932018280029, 0.3898126482963562, -0.1401534378528595, 0.13572797179222107, -0.9473369717597961, -0.23702368140220642, -0.5178253054618835, -1.135140299797058, 1.6553261280059814, 1.1107367277145386, -0.6814433932304382, 0.15290531516075134, -0.2998453676700592, 0.434090793132782, 0.7160869240760803, 0.5798100829124451, 0.8013532757759094, 0.18030723929405212, -0.0790616124868393, -0.20163623988628387, -0.8392130136489868, 0.1239548847079277, 0.87172931432724, -0.17769157886505127, 0.18762090802192688, 0.47136664390563965, 0.8869531750679016, -0.09314548224210739, -0.30431827902793884, 0.009707767516374588, -0.07842361181974411, -0.9263168573379517, 0.025795962661504745, 0.27550458908081055, -0.7836818099021912, 0.9546807408332825, 0.7992623448371887, -1.0260311365127563, -1.0301915407180786, -0.9594830274581909, -0.667526364326477, -0.37524446845054626, -0.08846670389175415, -0.2920858561992645, 0.39987167716026306, 0.2787250578403473, -0.10943147540092468, 0.12380078434944153, -0.03630036860704422, 0.4480823874473572, 0.1252884715795517, -0.6492713689804077, 0.12281843274831772, 0.8087117671966553, 0.6925187110900879, 1.2600253820419312, -0.3968384563922882, -1.9358419179916382, -0.7403519749641418, 0.2477380931377411, 0.9121017456054688, 0.011482990346848965, 0.3501257002353668, 0.9143813848495483, 0.8463327884674072, -0.2363954484462738, 0.19016610085964203, 0.9930333495140076, -0.0020007528364658356, -0.9976484179496765, 0.8004982471466064, 0.9789537191390991, 0.4894934296607971, -0.6581320762634277, -0.8073379397392273, -0.4679196774959564, 0.023007798939943314, 1.2703801393508911, 1.0976744890213013, 0.5482359528541565, -1.1305396556854248, -0.6222271919250488, -0.7611101865768433, -0.6089510917663574, -0.4471026659011841, -0.3339241147041321, 0.09982041269540787, -0.942160964012146, -0.1642790138721466, 0.20364663004875183, -0.30568066239356995, 1.2584933042526245, -0.023245053365826607, 0.6876550912857056, 1.1533830165863037, 0.219369575381279, -1.4055625200271606, -1.3230860233306885, -0.04438785836100578, -1.952081561088562, 0.8056136965751648, 1.255151629447937, -0.8019667863845825, 0.37174513936042786, 0.6040483713150024, -0.04579378291964531, 0.44706520438194275, 0.1941923201084137, 0.5028707385063171, -0.6430515050888062, -0.9388291835784912, -0.094843789935112, 0.9029677510261536, 0.11676869541406631, -0.602989137172699, -0.4023844003677368, 1.0084210634231567, 0.676425039768219, -0.45563098788261414, -0.33045703172683716, 0.082028329372406, 0.02340065687894821, -0.6820005178451538, 0.003452429547905922, 0.5126858949661255, 0.3647500276565552, -0.5229243040084839, -0.4052918553352356, -0.4090968668460846, 0.14388951659202576, -0.554598867893219, 0.35709694027900696, -0.18196551501750946, 0.771038830280304, 0.30669456720352173, 0.8087888360023499, 1.0050184726715088, 0.12295984476804733, -0.15082089602947235, -1.499843955039978, 0.4392741322517395, 0.1626032292842865, 0.9889204502105713, 0.0762527734041214, 0.1561376452445984, -0.012154459953308105, -1.9500049352645874, 0.017445629462599754, 0.04892195016145706, 0.05817744508385658, 0.1364526003599167, -0.24755892157554626, -0.3277965486049652, -1.6467061042785645, 0.40301263332366943, 0.08892303705215454, -0.18138454854488373, 0.2023957520723343, -0.6294810771942139, -0.09662465751171112, 1.5329904556274414, 0.011930516920983791, -0.4125599265098572, -0.5186591744422913, 0.10013394802808762, 0.39678701758384705, 0.11004668474197388, -0.36193910241127014, -0.18795649707317352, -0.11245314031839371, 1.0673270225524902, -0.7707382440567017, -0.20795677602291107, -0.3467029929161072, -0.044137559831142426, 0.5136693120002747, -1.0397417545318604, 0.26871103048324585, -0.24932444095611572, 0.39979347586631775, 0.21598868072032928, 0.31722936034202576, 0.3836253583431244, 0.5561161637306213, -0.44707104563713074, 0.012070289812982082, -0.12727393209934235, 0.8876894116401672, 0.3500356674194336, -0.009747996926307678, -0.809299886226654, 0.7274824976921082, 0.8382765650749207, 0.21870213747024536, 0.10912549495697021, -0.19766904413700104, -0.0843898355960846, 0.6519213914871216, -0.5355789661407471, 0.2439657300710678, 1.158000111579895, -0.24133531749248505, -0.014919779263436794, 0.7575473189353943, -0.11612139642238617, -1.1037720441818237, -0.4141724407672882, -0.20134195685386658, 0.14096303284168243, 0.31518712639808655, 0.3070729970932007, 0.46319541335105896, 0.10324399173259735, 0.17795658111572266, 0.7960864305496216, 0.7271481156349182, 0.39684176445007324, -0.615361213684082, 0.3269185721874237, 0.12485409528017044, 1.2809687852859497, 0.8437220454216003, 0.8845435976982117, -0.2486897110939026, -0.7018610239028931, 1.1753073930740356, -0.49242186546325684, 0.15819789469242096, 0.8631316423416138, 0.415793776512146, 0.9843176603317261, -1.6336251497268677, 0.1316070854663849, 1.0716246366500854, 0.4950472116470337, 0.7680655717849731, -0.04815831407904625, 0.7055246233940125, -0.8265685439109802, 0.14095641672611237, -0.36714476346969604, -0.6414448618888855, 0.8575013279914856, -0.05112125352025032, 0.050251953303813934, 0.1338764876127243, -0.3584686815738678, 0.015755608677864075, -0.5038312077522278, -0.004851591307669878, -0.33777424693107605, 0.061613716185092926, 0.02882986143231392, 0.013144189491868019, 0.38691246509552, 1.8136528730392456, -0.37786898016929626, -0.3935414254665375, -0.06857413798570633, -0.8442352414131165, 0.5038954615592957, -0.06348766386508942, -0.18318967521190643, -0.6202536225318909, -0.6880782842636108, 0.49190351366996765, 0.5249679088592529, -0.7447786331176758, -0.13108444213867188, -0.5586512088775635, -1.1406956911087036, 0.03024432808160782, -0.01235170941799879, 0.8166743516921997, 1.4021170139312744, 0.031460609287023544, 0.1576375961303711, 0.4894840121269226, -0.38158178329467773, 0.21640412509441376, 0.7772029042243958, -0.6385022401809692, -0.26645952463150024, -0.814384400844574, -1.0924608707427979, 1.3289721012115479, 1.1231547594070435, 0.1609821617603302, 0.4108218848705292, 1.659209132194519, 0.9823340177536011, -0.5129046440124512, 0.45054513216018677, 0.7942129373550415, -0.42669975757598877, 0.5927861928939819, 0.5512552857398987, -1.4161086082458496, -0.4407294690608978, 0.44569647312164307, -2.954813003540039, 1.6461912393569946, -0.18158414959907532, -0.48763033747673035, 2.061875104904175, 0.7328249216079712, 0.5502901077270508, 1.1075109243392944, -0.5678671598434448, -0.5040540099143982, -0.6075693964958191, 0.017016440629959106, -1.5613797903060913, 0.16958768665790558, 1.2693456411361694, -0.4215066134929657, -1.0406184196472168, 0.4206555187702179, 0.0009155813604593277, 0.2298886924982071, 0.004938863217830658, 0.1699228435754776, -0.4782271981239319, -0.035575103014707565, -0.002276236191391945, -1.0125887393951416, 0.45150861144065857, -1.021697998046875, 0.04354545846581459, 0.047116778790950775, 0.2784545421600342, 0.5497702956199646, -0.5493821501731873, 0.42239341139793396, 0.02770110033452511, -0.2199106067419052, -0.3478916585445404, -0.6557528972625732, 0.8694409728050232, 0.7198195457458496, -0.18048398196697235, 0.09582008421421051, 0.26023855805397034, -1.4223984479904175, -1.1789391040802002, 0.7370244264602661, 0.8361469507217407, -0.29362839460372925, -0.5908089876174927, 0.5391694903373718, -0.0033280462957918644, -0.44962286949157715, -0.19472599029541016, 0.42089203000068665, -1.0215283632278442, -1.5048916339874268, -0.9625788331031799, -0.3160661458969116, 0.6664376258850098, 0.27335572242736816, -0.21621473133563995, -0.23035484552383423, -1.3749033212661743, 1.0500961542129517, -0.517778754234314, -1.1755982637405396, -0.2308397740125656, -1.069547414779663, 0.7041584849357605, -0.5224724411964417, -0.022689634934067726, 0.28364649415016174, 0.49635186791419983, -1.3653521537780762, -0.22467286884784698, -1.507895827293396, 0.06610720604658127, 0.8145109415054321, 0.7239983081817627, -0.6415753960609436, 0.9918819069862366, -0.2834056615829468, -0.9159989953041077, -0.010004915297031403, 0.5087159276008606, -1.173555612564087, -0.11369235068559647, -0.4456569254398346, 0.4945642054080963, 0.12232492864131927, 1.2139666080474854, 0.9199768900871277, 1.1487360000610352, -0.010429526679217815, 1.1635791063308716, -0.2560575306415558, 0.21868978440761566, -0.2533973455429077, 0.44537869095802307, -0.7710073590278625, -0.14671215415000916, 0.3823380172252655, -0.19451904296875, -0.22499366104602814, 1.4439544677734375, 0.5819163918495178, -0.9031510949134827, 0.2776367664337158, -0.08833155035972595, 0.5349145531654358, 0.5106120109558105, 0.5120350122451782, 0.6369197964668274, -0.9916942119598389, -0.3369187116622925, 0.17393797636032104, 0.2839672267436981, -0.6113605499267578, 0.6730313301086426, -0.008830415084958076, 0.4968569278717041, 0.26450231671333313, 0.5953213572502136, -0.37644198536872864, 0.4684012234210968, -0.8603184819221497, 1.3330731391906738, 1.1634876728057861, -0.22145241498947144, 0.5989181995391846, 0.5835158228874207, -0.13332131505012512, -0.026454530656337738, -0.5630850791931152, -0.8388921618461609, -0.9935111403465271, 1.2583781480789185, 0.9494412541389465, -0.419524610042572, -0.4215109348297119, 0.27713972330093384, 0.38072213530540466, -0.5206617116928101, 0.9182752966880798, -0.9093995690345764, -0.272622287273407, 1.1522096395492554, 0.8692563772201538, -0.3587837815284729, 0.5280896425247192, 0.2564663589000702, 0.9446715116500854, -0.4667932987213135, -0.6969053745269775, 0.20399147272109985, -1.1354278326034546, -0.7096459865570068, -0.5588282346725464, -0.73011314868927, 0.34659382700920105, -0.27226921916007996, -0.9788947105407715, -0.1865769624710083, -0.9622856378555298, -0.8742402791976929, 0.06757604330778122, -0.8547068238258362, -1.234805941581726, -0.18452781438827515, -0.26737159490585327, 0.20182602107524872, -0.8265447616577148, -0.699201226234436, 0.7328965067863464, -0.055788375437259674, 1.1401598453521729, -0.16883620619773865, 1.3320786952972412, 0.3953893184661865, 0.5834655165672302, -0.5127437710762024, 0.4211041331291199, 0.1854364573955536, 0.3585154712200165, -0.4483889043331146, -0.10622293502092361, 0.4406987726688385, -0.4113346040248871, -0.1502530425786972, 0.6376919746398926, 0.09214676171541214, 0.044777072966098785, 0.15090325474739075, -0.8522379398345947, -1.5638216733932495, -0.007863782346248627, 0.4707794487476349, -0.9270600080490112, -0.2458849549293518, -0.34283027052879333, 0.0524187833070755, -0.13508203625679016, -0.010335319675505161, -0.7374935150146484, 0.9921517372131348, 0.7268721461296082, 0.13217508792877197, -0.42385077476501465, -0.511180579662323, 0.31123191118240356, -0.17872248589992523, 0.9033589363098145, -1.927441954612732, 0.021104399114847183, -0.5609968900680542, -0.9845275282859802, -0.007971055805683136, 0.31111958622932434, 0.3691965341567993, 0.46967411041259766, -0.287321537733078, -1.2152196168899536, -0.6938807368278503, -0.10536247491836548, 0.45047491788864136, 0.3556642234325409, 1.3337808847427368, -0.5837996006011963, -1.5110630989074707, -0.3155010938644409, 0.8934224247932434, 0.19995716214179993, 0.5761673450469971, 1.738020896911621, 1.6821951866149902, 0.022955263033509254, -0.20008037984371185, -0.21260763704776764, 0.5251274108886719, -0.7930161356925964, -0.5855498909950256, -0.9288478493690491, 0.030632255598902702, 0.24326089024543762], [0.3816525936126709, 2.141181468963623, -1.514477014541626, -0.87977135181427, 1.2225167751312256, 1.1962758302688599, 1.3830831050872803, -0.2416469156742096, -0.09509461373090744, -0.13283245265483856, -0.3442382216453552, 0.10966624319553375, 1.048253059387207, 0.7776279449462891, -0.10707376897335052, -0.04320884868502617, 0.22472470998764038, 0.006342684850096703, 0.7945531606674194, 0.13995778560638428, -0.33653783798217773, -0.8441532254219055, -0.055852070450782776, -0.05098533630371094, 0.032716408371925354, 0.4366740584373474, -1.7651036977767944, -0.5447322130203247, -1.5807958841323853, -0.12523344159126282, 0.9241210222244263, -1.0384677648544312, 0.5051180124282837, 0.5273364782333374, -2.314344882965088, -0.8257206678390503, 0.8824129104614258, 1.036353349685669, 0.8077206015586853, 0.88948655128479, 0.9857119917869568, 0.6393815279006958, 0.2317453771829605, -1.38225519657135, 0.8177576661109924, -0.2421514093875885, 0.4313073456287384, -1.3229563236236572, 0.8477318286895752, -0.5851178765296936, 0.856522798538208, -0.1631089150905609, 0.2434169352054596, 0.22710014879703522, 1.354013204574585, -0.8886279463768005, 0.052874647080898285, 0.25803279876708984, 0.5106531381607056, 0.0053316755220294, 1.3892180919647217, 0.33243489265441895, -0.23165887594223022, 1.062900424003601, 0.5492331981658936, 0.0735936388373375, 0.5818192958831787, -0.14876264333724976, -0.76055508852005, 0.1412820667028427, 0.4609718918800354, -0.15928538143634796, -0.9471620321273804, 0.4101303219795227, -0.587081789970398, 0.32654690742492676, 0.5224881768226624, 0.32098281383514404, -0.22000771760940552, 0.858548641204834, -0.3638947010040283, -0.43652957677841187, 0.05787167698144913, -0.10339006781578064, -0.22788013517856598, 0.027444634586572647, -0.35451123118400574, -0.8204705715179443, -0.050280891358852386, 1.7087162733078003, 0.040186215192079544, 0.03701484203338623, 0.27184319496154785, -0.32716190814971924, -0.08934375643730164, -0.8004790544509888, 0.4998893737792969, -0.45166701078414917, -0.5231029987335205, -0.3310909867286682, -0.6002886295318604, -0.2724544405937195, 0.07901948690414429, 0.178081214427948, 1.5170488357543945, 1.1795142889022827, -0.27533140778541565, -0.5906486511230469, -0.45912879705429077, 0.9180168509483337, 0.10905340313911438, 0.30028343200683594, -1.3557753562927246, -1.3518279790878296, -0.272538959980011, 0.9023749828338623, 0.6305395364761353, -0.17735272645950317, 0.5032380223274231, 0.47700607776641846, -0.780281662940979, 0.08156360685825348, -0.5095139145851135, 0.7948725819587708, 1.3518729209899902, 0.5722459554672241, -0.7115225791931152, -0.28092527389526367, 0.27014845609664917, 0.09384569525718689, 0.9808546900749207, -0.04058583825826645, -0.38632214069366455, 1.0257282257080078, -1.3869755268096924, 1.4725079536437988, -0.7656776905059814, -1.3409764766693115, 0.3198128044605255, 0.4938366413116455, 0.4503161907196045, -0.5632897615432739, -0.024063758552074432, -0.22020743787288666, 0.23164823651313782, -0.42379260063171387, 0.22425143420696259, -0.047440748661756516, -1.2462222576141357, 0.12466296553611755, -1.2805707454681396, 0.7342440485954285, -0.40547120571136475, 1.2845911979675293, -0.0039016916416585445, 0.4111124277114868, 0.661080002784729, 0.9090126752853394, 0.6052823662757874, -0.2896948456764221, 0.7264779806137085, 0.566323459148407, -0.47464266419410706, 0.8287107944488525, 0.42635011672973633, -0.22302141785621643, 0.3754119873046875, 0.11191380769014359, 0.18090903759002686, 0.39780256152153015, -0.7180176973342896, 0.03555171191692352, -0.5290148258209229, 0.4628152847290039, -0.1495267152786255, -0.6522063612937927, 0.7758667469024658, -0.6007755994796753, -0.592120885848999, -1.0390580892562866, 0.852611780166626, -0.08139042556285858, 0.28981083631515503, -0.02667573094367981, 0.6361870765686035, -0.4101663827896118, -0.3591739237308502, 0.542991042137146, -0.7709177732467651, -0.6370943188667297, -1.2239766120910645, -1.0493762493133545, -1.482372760772705, -0.026659302413463593, -0.6241760849952698, -1.0689797401428223, -0.054104696959257126, -0.13173998892307281, -0.2563907206058502, 0.41651982069015503, -0.3522607684135437, -0.2082536816596985, -1.1962190866470337, -0.3254205584526062, -0.36549490690231323, 0.05371236056089401, -1.1354728937149048, 0.3233009874820709, -0.7098978757858276, -0.586962878704071, 1.3645412921905518, 0.36813631653785706, -0.8174153566360474, 0.5655244588851929, -0.6227472424507141, -0.9668940901756287, 0.6961938142776489, -0.12428280711174011, 0.026505324989557266, 0.16657960414886475, 0.508597731590271, 0.2379612922668457, 0.8368548154830933, 0.09764459729194641, 0.5998076796531677, 0.23005244135856628, -1.1395841836929321, -0.7225767374038696, -0.8708071708679199, 0.34497395157814026, -0.8169430494308472, -1.222458004951477, 1.6280099153518677, 0.5387570858001709, -0.764901876449585, 0.7521538734436035, 0.04934844747185707, 0.28314346075057983, 0.6084061861038208, 0.6992653608322144, 0.3380086421966553, 0.8962501287460327, -0.8668840527534485, 0.15087729692459106, -0.8764153122901917, -0.16953429579734802, 1.265076756477356, 0.13323833048343658, -0.3674317002296448, 1.366750955581665, 0.6779695153236389, -0.060606855899095535, 0.12309285998344421, 0.5489415526390076, 0.19551770389080048, -1.1352072954177856, 0.3536429703235626, -0.13882829248905182, -0.058361101895570755, 1.3406888246536255, 0.4961360692977905, -1.2809923887252808, -0.38312196731567383, 0.20927278697490692, 0.5126438140869141, 0.24325205385684967, -0.03906136006116867, -0.35222095251083374, 0.4902583360671997, -0.05538628622889519, 0.47172027826309204, 0.5434424877166748, 0.09679700434207916, 0.7550171613693237, 0.14906731247901917, 0.01366955041885376, -0.41509687900543213, 0.9977284669876099, -0.05883801728487015, 0.39137986302375793, -0.3072671592235565, -0.7203018069267273, -0.8601523637771606, -0.029034070670604706, 0.9863014221191406, -0.682826042175293, -0.3569737672805786, 0.7871092557907104, 0.9850887060165405, -0.05624384433031082, 0.6405661106109619, 0.33066728711128235, -0.275812566280365, -0.31273597478866577, 0.7789044976234436, -0.06934002041816711, 0.45485472679138184, -0.6984066963195801, -0.608869731426239, -0.34954747557640076, 0.4191642105579376, 1.1592941284179688, 0.7885242104530334, 0.8502025008201599, -0.33850908279418945, -0.9984359741210938, -0.6236811280250549, -0.17200967669487, -1.289067268371582, -0.0456429123878479, -0.8759784698486328, -0.7039878964424133, 0.4856249690055847, -0.7141185998916626, -0.007090900093317032, 0.6132082939147949, -0.04311022907495499, 1.1290743350982666, 0.845867395401001, -0.6807595491409302, -0.5703725814819336, -0.6128458976745605, -0.39690113067626953, -0.5827904939651489, 1.0226787328720093, 0.8559139966964722, -1.0784870386123657, -0.02448982372879982, 0.05603025108575821, -0.09380460530519485, 0.8221997022628784, -0.6090952157974243, -0.20609357953071594, -1.2569607496261597, -0.7381706237792969, -0.3890562951564789, 1.6888854503631592, 0.1745370626449585, 0.24203594028949738, -1.3604512214660645, 0.1707247793674469, 0.6688755750656128, -0.493982195854187, -0.6115318536758423, 0.4868958592414856, 0.23406057059764862, -0.1534227728843689, 0.17402082681655884, 0.8950930833816528, 1.0423576831817627, -0.673015832901001, 0.08702079206705093, -0.48395073413848877, 0.2478545606136322, -0.43550950288772583, 0.37854790687561035, -0.34610599279403687, 1.0285929441452026, 0.17715655267238617, 0.333828866481781, 1.0230062007904053, -1.2242677211761475, -0.2567574679851532, -1.540753960609436, 0.8738232851028442, 0.7938560247421265, 0.9750469326972961, 0.05539008602499962, 0.054425470530986786, 0.5386253595352173, -0.6070034503936768, -0.33932045102119446, 0.06980210542678833, 1.1608998775482178, -0.24243998527526855, -1.2448060512542725, -0.5390335321426392, -0.35263580083847046, -0.46247172355651855, -0.9305385947227478, -0.6928789615631104, 0.5775692462921143, -0.7414965629577637, -0.23559297621250153, 1.1895523071289062, 0.2792724668979645, -0.5667251348495483, -0.5249272584915161, -0.21741721034049988, 0.9857348203659058, -0.31814900040626526, -0.0069059692323207855, -0.4794852137565613, -0.263923317193985, -0.10065924376249313, -1.0251179933547974, -0.9855096936225891, 0.09627023339271545, 0.41436871886253357, 0.20328354835510254, -1.2677571773529053, 0.1272723525762558, 0.31375205516815186, 0.45135805010795593, 0.2823137044906616, -0.10507960617542267, 0.5119431614875793, 0.5188872814178467, -0.366847425699234, -0.051256414502859116, -0.14717239141464233, 0.9991525411605835, -0.31510722637176514, -0.5290127992630005, -0.1730930507183075, -0.290081650018692, 0.46024438738822937, 0.06812955439090729, -0.3664589524269104, -0.055051472038030624, -0.2768304646015167, 0.014183945953845978, -0.23340409994125366, 0.08166796714067459, 1.5649666786193848, 0.002274240367114544, -0.4456106126308441, 0.9968483448028564, -0.28118205070495605, -0.793890118598938, -0.6320642828941345, 0.03091287426650524, -0.9393312931060791, -0.6843112111091614, 0.23788705468177795, 0.5162677764892578, 0.46782419085502625, 0.9578053951263428, 0.3348345160484314, 1.0130621194839478, 0.5337650775909424, -0.3622756004333496, -0.43278414011001587, -0.024895552545785904, 0.593665599822998, 1.1332547664642334, 1.0669755935668945, -0.00013755913823843002, -1.1405384540557861, 1.1347448825836182, -0.5097162127494812, 0.04409082978963852, 0.5757666826248169, 0.4603537619113922, 1.0424529314041138, -1.8804246187210083, -1.2202427387237549, 0.9186545610427856, -0.09632718563079834, 0.5416556596755981, 0.09116774797439575, 0.5620478391647339, -1.0376060009002686, 0.31943458318710327, 0.5310054421424866, 0.10571323335170746, 0.9298481941223145, -0.2508653998374939, -0.12344254553318024, 0.25321120023727417, -0.5534774661064148, 0.3501710295677185, -0.5170122385025024, -0.6862189769744873, 0.14787334203720093, -0.09278334677219391, 0.15405842661857605, 0.5350184440612793, 0.17100268602371216, 1.1258487701416016, -1.2565925121307373, -1.3256678581237793, 0.6248390078544617, -0.4100017547607422, 0.26639094948768616, -0.2740151286125183, -0.5960296988487244, 0.02219480276107788, -1.0379431247711182, -0.5865542888641357, 0.4231986999511719, -0.3518124222755432, 0.0689164400100708, -0.552696943283081, -1.184119462966919, -0.20995080471038818, 0.2864826023578644, 0.8466148376464844, 0.3420887589454651, 0.41748255491256714, -0.25469523668289185, -0.07150670140981674, -0.9574986100196838, 0.30160871148109436, 0.24352705478668213, -0.09535136073827744, -0.16198848187923431, -1.200218677520752, -1.0609084367752075, 1.094050407409668, 1.6290442943572998, 0.2333991676568985, 0.5424975156784058, 1.215522289276123, 1.2058649063110352, -0.3028333783149719, -0.5768071413040161, 0.41788265109062195, -0.8591622114181519, 0.2364446520805359, 0.7767115831375122, -0.9690090417861938, -0.12127091735601425, -0.4386342763900757, -1.5784084796905518, 1.2377736568450928, 0.19871003925800323, -1.344224214553833, 1.0211007595062256, -0.15904775261878967, 0.6461895108222961, 0.9857813119888306, -0.40070104598999023, 0.10334159433841705, -0.2181597650051117, -0.628974199295044, -1.0140941143035889, 0.6179642081260681, 0.6357420682907104, 0.3411319851875305, -0.7318907976150513, 0.7673944234848022, -0.01173480972647667, -0.48620378971099854, -0.12537065148353577, 0.999326765537262, 0.23425990343093872, 0.8876469135284424, 0.8021389842033386, -1.3244737386703491, 0.35551947355270386, -0.026463817805051804, 0.10986291617155075, 0.08454188704490662, 0.6559966802597046, 0.3290516138076782, -0.4854387640953064, 0.1317896544933319, -0.2297302484512329, -0.4432670474052429, -0.7262774705886841, -0.658403217792511, 0.8229941129684448, 0.16926740109920502, -0.26765069365501404, -0.24637889862060547, 0.0026739034801721573, -0.5053500533103943, -0.1329892873764038, 0.7051582932472229, 0.8009729385375977, -0.7497916221618652, -0.46436405181884766, 0.02506817877292633, 0.09885461628437042, 0.24500003457069397, -0.4902801513671875, 0.20983320474624634, -0.8264309167861938, -1.6123487949371338, -0.44170767068862915, -0.40566694736480713, 1.2045347690582275, -0.8150109648704529, 0.37562745809555054, 0.27764591574668884, -1.307129979133606, 0.13054949045181274, 0.4185396730899811, -2.0102672576904297, -0.44101643562316895, -1.2376290559768677, 0.8890357613563538, -0.12777388095855713, -0.3596741557121277, -0.4978863596916199, 1.08978271484375, -0.6280760169029236, -0.9483163356781006, -1.4285013675689697, -0.11635593324899673, 0.7386336922645569, 1.1131739616394043, -0.6678653955459595, 1.031383991241455, 0.6949292421340942, -1.2691235542297363, -1.0981920957565308, 0.27695611119270325, -1.1781072616577148, 0.44556924700737, 0.3240319490432739, -0.25900545716285706, 0.4784175753593445, 1.2993019819259644, 0.2954518496990204, 0.371929407119751, -0.4549974799156189, 0.4644009470939636, -0.602351188659668, -0.7938967943191528, -0.8335508108139038, 0.47205033898353577, -0.9477433562278748, -1.1405622959136963, 0.3257465064525604, 0.13036790490150452, -0.1419799029827118, 1.250213861465454, 1.470992922782898, -1.242773413658142, -0.16718387603759766, 0.4579395353794098, 0.3215281665325165, 0.054588526487350464, 1.0152803659439087, 0.39186161756515503, -0.6612632274627686, 0.19132615625858307, -0.04585631191730499, 0.7230322957038879, -0.8067874908447266, 0.21524614095687866, 0.07627654075622559, 0.34524714946746826, 0.10389479249715805, 0.39040595293045044, 0.821178674697876, 0.1825115829706192, -0.8506777882575989, 0.8625972270965576, 1.502046823501587, -0.4231363534927368, -0.4079142212867737, 0.6187547445297241, 0.7101688385009766, 0.5002513527870178, -0.7900305986404419, 0.3583970069885254, -1.0627628564834595, 0.4308474063873291, -0.23470422625541687, 0.0554933100938797, -0.05725637823343277, 0.2592373490333557, 0.4983477294445038, 0.07955381274223328, 0.7887028455734253, -0.37488389015197754, -0.3236578702926636, 0.9495594501495361, 0.8426518440246582, -0.7071143388748169, 0.07579177618026733, 0.5628276467323303, -0.21796229481697083, 0.07916202396154404, -0.118694968521595, 0.2758890390396118, -0.8403147459030151, 0.3141079246997833, -0.33677947521209717, -0.19532907009124756, -0.17126044631004333, -0.8386332988739014, -1.0250732898712158, -0.09436239302158356, -0.8898394107818604, -0.9095234870910645, 0.2523350119590759, -1.148987054824829, -1.2056972980499268, 0.3505740761756897, -0.45410722494125366, -0.2688167691230774, -0.1116885393857956, -0.26530009508132935, 0.23263993859291077, 1.2640044689178467, 0.26535916328430176, -0.3236922025680542, 1.0337498188018799, 0.037620872259140015, -0.3204845190048218, -0.6187874674797058, 0.16159841418266296, 0.05860060080885887, 0.21706977486610413, 0.062183927744627, 0.3476983904838562, -0.2939091920852661, -0.24215620756149292, -0.1913260817527771, -0.09642529487609863, 0.07611314207315445, 0.006848577409982681, -0.0654057115316391, -0.19192960858345032, -0.68536776304245, 0.6039650440216064, 0.4658598303794861, -1.2690037488937378, -0.5624499320983887, -0.5936945080757141, -0.04229696840047836, -0.08594581484794617, 1.6039929389953613, -0.846330463886261, 0.2716864347457886, 0.4064313769340515, 0.01280288677662611, -0.17287522554397583, -0.01876433938741684, 0.666459858417511, -0.7736779451370239, 1.114516019821167, -1.2110381126403809, 0.04597264900803566, -0.516830325126648, -1.4302747249603271, 0.7787405252456665, 0.07443356513977051, -0.04778227210044861, 0.1990807056427002, -1.0105345249176025, -0.1547987014055252, -0.6071271896362305, 0.5577719211578369, 0.6867095232009888, 0.09669622778892517, 0.17068593204021454, 0.6480083465576172, -1.401200771331787, 0.48702868819236755, 0.03047270141541958, 0.20789507031440735, 0.7819913625717163, 1.2108252048492432, 1.4616072177886963, -0.2950468063354492, -0.07826404273509979, -0.4076796770095825, 0.8533057570457458, -1.1181056499481201, -0.6825368404388428, -0.8587866425514221, 0.4453275203704834, 0.07969412207603455], [-0.4307626187801361, 1.3573951721191406, -2.7104499340057373, -0.7224093079566956, -0.0998130664229393, 0.6741055250167847, -0.05402136221528053, 0.2486121654510498, -0.6899385452270508, 0.1776134967803955, 0.09515659511089325, 0.34504571557044983, 0.7881680727005005, 1.4369231462478638, 0.2616574466228485, 0.3369520604610443, 1.1788698434829712, 0.05393720418214798, 0.5961394309997559, 1.2237528562545776, 0.20098929107189178, -0.633580207824707, -0.971598744392395, 0.2359439879655838, 0.5803810358047485, 0.8183093667030334, -1.254382848739624, -1.0590429306030273, -0.9503918290138245, -1.0185024738311768, 1.8117259740829468, -1.6670345067977905, -0.14546580612659454, 0.5617360472679138, -1.344277262687683, -0.5275898575782776, 1.273889422416687, 0.884182333946228, -0.34366342425346375, 1.4748655557632446, 1.6368991136550903, 0.3902946710586548, -0.45097774267196655, -0.7384471297264099, 0.8758063912391663, -0.046520959585905075, -0.3227294087409973, -1.39720618724823, -0.5305595993995667, -0.6866737008094788, 1.18771493434906, 0.3049817383289337, -0.17634367942810059, 0.2843996286392212, 0.5558639764785767, -0.31436270475387573, 0.8912171125411987, -0.4232816696166992, 0.3384125232696533, 0.038582004606723785, 1.5785759687423706, 0.07770633697509766, 0.04198665916919708, -0.13907256722450256, 0.536049485206604, -0.004885431379079819, 0.6498761773109436, 0.6164875030517578, -0.6488299369812012, -0.029512133449316025, 0.9573906660079956, -0.13929131627082825, -0.5044460892677307, -0.0073146820068359375, -0.3548951745033264, 0.4627400040626526, 0.47202563285827637, 0.42782774567604065, 0.10902022570371628, 0.9275109767913818, -1.0560325384140015, 0.1529727280139923, 0.6127010583877563, -0.05605708435177803, 0.37121203541755676, 0.05057873576879501, 0.10183951258659363, -0.6619268655776978, -0.7064201831817627, 1.6247749328613281, 0.6395672559738159, -0.021957021206617355, 0.5066350698471069, -0.3267543315887451, 0.23989616334438324, -0.9480706453323364, 0.11829598248004913, -0.5803688764572144, -0.03319818899035454, 0.10012458264827728, -1.2767689228057861, -0.5994598865509033, 0.876776933670044, 0.13335466384887695, 0.7013763785362244, 1.3082211017608643, 0.037129394710063934, -1.0000425577163696, -0.786457359790802, -0.13817912340164185, 0.1260257214307785, -0.19253727793693542, -0.9206300973892212, -0.5638918876647949, 0.4460935592651367, 0.5351303815841675, 1.0835793018341064, 0.07554425299167633, 0.31151652336120605, 1.2435237169265747, -0.6597109436988831, 0.14879418909549713, -1.242386817932129, 0.45284348726272583, 1.0056209564208984, 0.31048136949539185, -0.5389173030853271, 0.20639623701572418, 0.01690298691391945, 0.08717232197523117, 0.22863925993442535, -0.26696038246154785, -0.14959344267845154, 1.0374526977539062, -0.5808168649673462, 0.8111538290977478, -0.17313632369041443, -0.8279297947883606, -0.29948461055755615, 0.09091905504465103, -0.22815053164958954, -1.0674582719802856, -0.1824680119752884, -0.9505879878997803, -0.08146349340677261, 0.2502354681491852, 0.06830573827028275, -0.1564532071352005, -1.306807041168213, -0.26248544454574585, -0.9313482642173767, 1.0333541631698608, 0.09055463969707489, 0.3352048695087433, 0.22194916009902954, 0.25506582856178284, 0.5636180639266968, 0.11612818390130997, 0.5089970827102661, 0.4837783873081207, 0.8256404995918274, -0.01563594862818718, -1.0025910139083862, 1.4823745489120483, 0.31779271364212036, -0.1256185621023178, 0.7502255439758301, 0.04631529748439789, -0.23663854598999023, 0.9151425957679749, -1.1590049266815186, -0.6090971231460571, -0.5263573527336121, 0.6005239486694336, 0.028940659016370773, -0.4025745987892151, 0.8374462127685547, -0.6418256163597107, -0.819817841053009, -0.9524673819541931, 0.8806052803993225, -0.7690116763114929, 0.1955823004245758, -0.16685882210731506, 0.6628935933113098, -0.34544268250465393, -0.49380338191986084, 0.3902951776981354, -0.8212283253669739, -0.0755537822842598, -0.9564658999443054, -0.056686386466026306, -1.2101256847381592, 0.3146030604839325, -0.23521779477596283, -0.833358883857727, 0.41194412112236023, -0.6130067110061646, -0.7459931969642639, -0.3324672281742096, 0.2058374136686325, -0.021886413916945457, -1.2688418626785278, -0.29657983779907227, -1.2650277614593506, 0.7310460805892944, -0.6421694159507751, 1.1200666427612305, -0.6066965460777283, 0.22107502818107605, 1.178471326828003, 0.6267775297164917, -0.05511793866753578, 0.4080236256122589, -0.2223491221666336, -1.6807457208633423, -0.5388991832733154, -0.02192062884569168, 0.2045368105173111, -0.1821376532316208, 0.4355035424232483, 0.6842954158782959, 0.5348079204559326, -0.2292851060628891, -0.19762475788593292, -0.41335636377334595, -0.928811252117157, -0.7575339078903198, -0.9222581386566162, -0.008841171860694885, -0.8961676955223083, -1.0592122077941895, 0.8772990107536316, 0.7397436499595642, -1.40896737575531, 0.4309737980365753, 0.030700305476784706, 0.5875977873802185, 0.37893059849739075, 0.3568192720413208, 0.3241174817085266, 0.28317081928253174, 0.23480086028575897, -0.08690252900123596, -0.6145280599594116, 0.09514811635017395, 0.6703144311904907, -0.18225820362567902, 0.35414817929267883, 1.5614428520202637, -0.09670712053775787, -0.6472529172897339, 0.30241629481315613, 0.3970736861228943, 0.2588905394077301, -1.3808848857879639, -0.6511009931564331, -0.45305290818214417, -1.3717554807662964, 1.0401140451431274, 1.4546056985855103, -1.4659391641616821, -0.14624391496181488, 0.004946237429976463, 0.1570480614900589, -0.30685552954673767, 0.09867606312036514, -0.1264413297176361, 1.0278013944625854, 0.4141542613506317, -0.17131458222866058, -0.3222033977508545, 0.01664729416370392, 0.43318799138069153, -0.39192456007003784, 0.00946417823433876, -0.2850304841995239, 0.8865808248519897, 0.18233124911785126, -0.1065988540649414, -0.4083767235279083, -1.9770431518554688, -0.36945509910583496, -0.4043577313423157, 1.0486727952957153, -0.1906043291091919, -0.1465597152709961, 1.4004114866256714, 0.6497328281402588, -0.5253389477729797, -0.3052595257759094, -0.1581048220396042, -0.26375582814216614, 0.11872521787881851, 0.5001698136329651, 0.48951980471611023, 0.20681777596473694, -0.8916395902633667, -0.31269940733909607, -0.12988592684268951, 0.18386614322662354, 1.0917280912399292, 0.1951107531785965, 1.5314935445785522, -0.49767401814460754, -0.10657460987567902, -1.0865947008132935, -0.14610472321510315, -0.4429473280906677, -0.14661626517772675, 0.0023187287151813507, -0.9375702142715454, 0.027287177741527557, 0.13483279943466187, -0.20083479583263397, 0.8721064925193787, -0.5198222398757935, 0.8098863959312439, 0.6526233553886414, 0.11104127019643784, -0.5523627996444702, -1.1485377550125122, 0.050116319209337234, -1.2706953287124634, 0.5168613791465759, 0.07647939026355743, -0.3657526969909668, -0.18008816242218018, 0.06726564466953278, 0.20986102521419525, 1.0055975914001465, -0.3662424683570862, 0.6580702662467957, -0.6837292909622192, -1.3082374334335327, 0.6998957991600037, 0.3698450028896332, 0.8281535506248474, -0.4784506559371948, -0.5141844749450684, 0.5002291202545166, 0.3122010827064514, -0.7292467951774597, -0.43117719888687134, 0.47617974877357483, -0.2614826560020447, -0.5239317417144775, 0.28030118346214294, -0.12056255340576172, 0.48706793785095215, -0.5898039937019348, -0.7469578981399536, -0.07019538432359695, -0.4552997052669525, -0.2521049380302429, 0.13722506165504456, -0.3396667242050171, 0.499437540769577, 0.3248089849948883, -0.5148283839225769, 0.8924558758735657, -0.08158464729785919, -0.5385899543762207, -1.3478813171386719, 0.7895902991294861, 0.4544951915740967, 1.3838614225387573, 0.8690963983535767, -0.060861825942993164, 0.5228809714317322, -0.4623364210128784, 0.17387641966342926, 0.1058083325624466, 0.3068183660507202, 0.10865730047225952, -1.3016266822814941, -0.6705753803253174, -0.2580180764198303, 0.24094247817993164, -0.4984970688819885, -0.34441810846328735, 0.41950762271881104, -0.9650588631629944, -0.20598448812961578, 1.4085718393325806, 0.6046070456504822, -0.3883402943611145, -0.18793803453445435, -0.46268895268440247, -0.3775775730609894, -0.1750161051750183, -0.12356647849082947, -0.8339005708694458, -0.5956701040267944, 0.43397676944732666, -0.616877555847168, -0.40067216753959656, -0.07069990038871765, -0.46188226342201233, 0.37578561902046204, -0.9182742834091187, 0.16846610605716705, -0.29453539848327637, 0.5064002871513367, 0.6652932167053223, 0.3195034861564636, 0.6972039341926575, 0.19277915358543396, 0.47226741909980774, 0.9833453297615051, 0.12184487283229828, 0.8793177604675293, -0.08366135507822037, -0.9336556196212769, -0.8594856262207031, -0.36627086997032166, -0.3555971682071686, -0.05757651478052139, -0.31935909390449524, 0.025013143196702003, -0.6066145896911621, -0.3967256546020508, -0.5400133728981018, -0.007612340152263641, 1.7909108400344849, 0.30878984928131104, -0.004846296273171902, 0.32415664196014404, -0.22074882686138153, -0.6781912446022034, 0.2859009802341461, 0.17569033801555634, -0.17331069707870483, 0.5699036121368408, 0.35599997639656067, 1.094411015510559, 0.1585446298122406, -0.2146642506122589, 0.3917100727558136, 0.8144055008888245, 0.5421360731124878, -0.5472373962402344, -0.039280541241168976, 0.1925755888223648, 0.8015440702438354, 1.4618830680847168, 0.9056214690208435, -0.5321211218833923, -1.3360246419906616, 0.751684308052063, -0.5287525057792664, -0.053954750299453735, 0.7867825031280518, 0.6168863773345947, 1.431383728981018, -2.2383100986480713, -0.14197318255901337, 0.5024774670600891, 0.611392080783844, 0.4798368811607361, 0.3860088884830475, 0.04733686149120331, -0.6655619144439697, -0.18742676079273224, -0.2760532796382904, -0.19086171686649323, 0.5715485215187073, -0.10742021352052689, -0.15770350396633148, 0.49374765157699585, -0.2954447269439697, 0.08367210626602173, -0.5810864567756653, -0.6062816381454468, -0.1939912885427475, -0.3394593596458435, -0.5390198826789856, -0.3773111402988434, 0.6187556385993958, 1.2632770538330078, -0.49124792218208313, -1.0247303247451782, 0.5160735845565796, -0.7102832198143005, -0.044899143278598785, -0.20446021854877472, -0.595469057559967, -0.7008717656135559, -0.8822623491287231, 0.11393995583057404, -0.3854191303253174, -0.609464168548584, 0.32797884941101074, 0.3894404172897339, -1.3656269311904907, -0.20333616435527802, 0.7169286012649536, 0.9377759695053101, 1.5755831003189087, 0.20000088214874268, 1.3531991243362427, 0.07754015177488327, -0.6957928538322449, 0.48118171095848083, -0.1991346776485443, 0.3190244138240814, -0.002702477388083935, -0.7692313194274902, -1.360499620437622, 1.5340468883514404, 1.3487824201583862, 0.5619785189628601, 0.05128604173660278, 1.1475958824157715, 1.1908694505691528, -0.4373054802417755, -0.5830581784248352, 0.7732999920845032, -0.7014667391777039, 0.016875743865966797, 1.1843986511230469, -0.7551252245903015, 0.11324441432952881, 0.1198374554514885, -2.1140732765197754, 1.183962345123291, 0.6748036742210388, -0.27353110909461975, 0.05715601146221161, 0.4670538902282715, 0.8083423376083374, 0.09111376106739044, -0.7238365411758423, -0.04872583970427513, 0.05043663829565048, -0.41367900371551514, -0.25740790367126465, 0.7710965871810913, 1.253404140472412, 0.2733038365840912, -0.5714812278747559, 0.16408517956733704, -0.31434524059295654, -0.2602134346961975, -0.21974116563796997, 0.13605956733226776, 0.6030706167221069, 1.347183346748352, 0.0935496911406517, -0.5764133930206299, 0.03894316405057907, -1.0196548700332642, 0.23338229954242706, 0.41963428258895874, 0.8488817811012268, 0.30877092480659485, -0.019670845940709114, 0.08545322716236115, -0.08652550727128983, -0.537158727645874, -0.16354970633983612, -0.7648591995239258, 1.6643446683883667, 0.3777632415294647, -0.6379474401473999, 0.21810908615589142, -0.062358904629945755, -0.6885344982147217, 0.0028920993208885193, -0.036756642162799835, 1.0929226875305176, -1.0422639846801758, -0.8411315679550171, -0.02818598970770836, -0.15750260651111603, -0.16161708533763885, -0.060125868767499924, 0.7498155236244202, -1.0131117105484009, -1.39113450050354, -1.0056955814361572, -0.9069035053253174, 0.35998743772506714, -0.4347074329853058, 0.3820134103298187, -0.11165954172611237, -1.9732447862625122, 1.6833529472351074, -0.19805637001991272, -1.5166144371032715, -0.10951629281044006, -1.764613151550293, 1.4846079349517822, -0.7110319137573242, -0.12644629180431366, 0.1875276118516922, 0.39037469029426575, -0.8257109522819519, -0.7214106321334839, -1.1838949918746948, -0.2106417417526245, 0.7200472950935364, 1.133642554283142, -0.9171769022941589, 0.9300640225410461, 0.012173376977443695, -0.7175093293190002, -1.3205310106277466, 0.9005963802337646, -0.18326926231384277, 0.39977651834487915, 0.5552457571029663, 0.3313719630241394, 0.041548509150743484, 1.3936883211135864, 0.6264821887016296, 1.1040934324264526, 0.1256505250930786, 0.4236750900745392, -0.5091425776481628, -0.26408135890960693, -0.13975803554058075, 0.9275903105735779, -1.0205345153808594, -0.4560200572013855, -0.2798886001110077, -0.5003148913383484, -1.2552016973495483, 0.21578727662563324, 0.9241609573364258, -0.6096426844596863, 0.1601451188325882, -0.37873685359954834, 0.47536715865135193, 0.20525416731834412, 0.012341253459453583, -0.3167881667613983, -0.3710238039493561, 0.2649117112159729, -0.09421657025814056, -0.26168161630630493, -1.3273248672485352, -0.27540314197540283, -0.2680211067199707, 0.5137941837310791, -0.1448400765657425, 0.8312227129936218, 1.071616768836975, -0.17199857532978058, -0.6725684404373169, 0.6315116286277771, 1.102295994758606, -0.1983068436384201, -0.24760130047798157, 0.0789337232708931, 0.26704975962638855, 0.04304847866296768, -0.4395395815372467, 0.21615217626094818, -0.7865143418312073, 0.8785879015922546, -0.3446100652217865, -0.15591786801815033, -0.5859158635139465, -0.28155386447906494, -0.2925894856452942, 0.1303628385066986, 0.4136970043182373, 0.025818556547164917, -0.29560643434524536, 0.9173032641410828, 1.1757628917694092, 0.010203761979937553, 0.19339263439178467, 0.3917154371738434, 0.66340571641922, 0.04097260534763336, 0.23979821801185608, 0.4966830909252167, -0.2569257616996765, -0.208693265914917, -0.46003004908561707, 0.4565415680408478, -0.3768981695175171, -0.8145442605018616, -1.3786991834640503, -0.22169388830661774, -0.9687044620513916, -0.18243634700775146, 0.7629274129867554, -0.8908341526985168, -0.5866799354553223, 0.14234237372875214, 0.1918535977602005, -0.23461095988750458, -0.40004032850265503, -0.5402458310127258, -0.5579441785812378, -0.048307184129953384, 1.240416407585144, -0.43974608182907104, 1.1688281297683716, -0.8754360675811768, -0.49888741970062256, 0.17681734263896942, 0.061113856732845306, 0.09850124269723892, 0.7277597784996033, 0.6779786944389343, -0.29933688044548035, 0.3900263011455536, -0.24317659437656403, -1.3176263570785522, 0.6610990762710571, 0.11082647740840912, 0.1681405007839203, 0.0066484250128269196, -0.4709267318248749, 0.07707681506872177, 0.8491041660308838, 0.576759934425354, 0.07438885420560837, -0.0492752343416214, -0.9162619113922119, 0.48747774958610535, -0.4616656005382538, 0.5571293830871582, -0.5608148574829102, 1.486106514930725, 0.6079477667808533, -0.1413508951663971, -0.03447819501161575, -0.14836759865283966, -0.5501937866210938, 0.24712976813316345, 0.4455721378326416, -0.9346714615821838, -0.4684414565563202, 0.16137242317199707, -1.317115306854248, 0.2756304144859314, 0.4648672938346863, 1.2223443984985352, -0.06646348536014557, -0.6763660311698914, -0.6902804970741272, -0.4222371280193329, 0.007003560662269592, 0.48865777254104614, 0.34041061997413635, 0.3335057199001312, 0.025325467810034752, -0.8276422619819641, -0.18508772552013397, 0.40811392664909363, 0.4743010997772217, 0.0966973677277565, 2.0093681812286377, 1.525456428527832, -0.08092708140611649, 0.3912486732006073, -0.6380559802055359, 0.5921109914779663, -0.9921186566352844, -0.22588032484054565, 0.2008964866399765, 0.6087145209312439, 0.21331194043159485], [0.050959840416908264, 1.5796623229980469, -2.3484456539154053, -1.2257611751556396, 0.18732210993766785, 0.22672885656356812, 0.6828019618988037, 0.03477778285741806, -0.36792194843292236, -1.0428301095962524, -0.9616446495056152, 0.18140831589698792, 1.2572979927062988, 1.4046396017074585, 0.9784509539604187, 0.18135669827461243, 0.698173999786377, -0.7068682312965393, 0.09405418485403061, 0.44164007902145386, 0.48929858207702637, -0.7127215266227722, -0.1009172648191452, -0.3975093364715576, 0.6083791851997375, 0.5245996713638306, -1.8802709579467773, -0.31548935174942017, -1.817018985748291, -1.258530616760254, 1.0182321071624756, -0.7902480363845825, 0.4026254415512085, -0.3355523347854614, -1.8307108879089355, -0.8073908686637878, 0.9154394865036011, 0.29425477981567383, -0.13738808035850525, 0.7398934364318848, 1.7103161811828613, 0.9468488693237305, 0.12580116093158722, -1.1276224851608276, 1.2852396965026855, 0.015276029706001282, -0.038029275834560394, -1.6780565977096558, -0.06850177049636841, -0.4094780683517456, 0.40082889795303345, -0.4271608293056488, -0.6097449064254761, 0.5331587791442871, 1.132004737854004, 0.18816323578357697, -0.36370959877967834, 0.3462926149368286, 0.3753049373626709, -0.34640252590179443, 1.6342461109161377, 0.433623731136322, -0.813254714012146, 0.462688684463501, 0.5036166310310364, -0.03559458255767822, 0.32632607221603394, 0.41434529423713684, -0.9285221099853516, 0.6585051417350769, 0.22615128755569458, -0.04779331758618355, -0.9957480430603027, 0.05216468870639801, -1.656755805015564, 0.19345109164714813, 0.14064659178256989, 0.3966872990131378, 0.1557372510433197, 1.137080192565918, -0.7437875270843506, -0.42882198095321655, 0.2348840981721878, -1.0575206279754639, 0.9800970554351807, 0.18966135382652283, -0.02055889368057251, -0.4880101680755615, -0.3505195379257202, 2.1021456718444824, -0.2367280274629593, 0.7165129780769348, 0.07626257091760635, -0.06532608717679977, -0.3646642565727234, -1.0951427221298218, 0.10612906515598297, -0.5739256143569946, -0.14765343070030212, -0.9931683540344238, -0.7065232992172241, -0.34331387281417847, 0.7751141786575317, 0.24639993906021118, 0.9467285871505737, 1.1670550107955933, 0.48096346855163574, -1.4409666061401367, -0.7838324308395386, 0.340501070022583, 0.3892197906970978, 0.13591307401657104, -1.3171679973602295, -1.101318597793579, -0.7589000463485718, 0.8810936212539673, 0.6727736592292786, -0.28987881541252136, 1.1424353122711182, 0.7708067893981934, -0.8988877534866333, -0.7078485488891602, -0.8762149810791016, 0.5629431009292603, 1.8162753582000732, 0.47054821252822876, -0.9260060787200928, 0.08419971168041229, -0.1800929605960846, -0.09555459022521973, 0.5464945435523987, -0.035039253532886505, -0.9795535206794739, 1.1968817710876465, -0.6669535636901855, 1.2698016166687012, -0.7536884546279907, -0.9092304706573486, 0.7653433084487915, 0.06002373248338699, 0.14119790494441986, -0.7596632838249207, -0.8340004682540894, -1.4958279132843018, 0.09132665395736694, -0.4667515754699707, 0.06169898062944412, -0.28677278757095337, -1.2916593551635742, 0.6048157215118408, -1.0466234683990479, 0.8127751350402832, -0.02291400358080864, 1.3647396564483643, -0.23309281468391418, 0.9464696645736694, 0.7959415912628174, 0.07271195948123932, 0.2060951441526413, 0.2661701440811157, 0.6908683180809021, 0.43951910734176636, -0.9995930194854736, 1.4267253875732422, 0.1770257204771042, -0.15675759315490723, 0.5355888605117798, 0.0863049179315567, 0.22054290771484375, 0.8512610197067261, -0.9469122886657715, -0.11613589525222778, -0.3392733633518219, 0.25191277265548706, -0.12042705714702606, -0.4236016273498535, 0.9776170253753662, -1.0362002849578857, -0.6295861601829529, -0.9691727757453918, 0.9202158451080322, -0.7918984889984131, 0.15585078299045563, -0.2912588119506836, 0.3465622067451477, -0.4055209755897522, -0.5857813954353333, -0.16907474398612976, -0.8651226758956909, -0.53521728515625, -1.4748823642730713, -0.22987091541290283, -1.4798686504364014, -0.181226909160614, -0.7226755619049072, -1.4939699172973633, 0.5012224912643433, -0.37651658058166504, -0.16128163039684296, 0.2700326442718506, -0.013756651431322098, -0.6520110964775085, -1.9796277284622192, -0.2794746160507202, -0.8131558895111084, 0.8807120323181152, -0.43948665261268616, 0.4485122263431549, -0.9915341138839722, 0.2243325412273407, 1.3373758792877197, 0.13484568893909454, -0.9873683452606201, 0.5352150201797485, 0.4662763178348541, -1.0741175413131714, 0.0761575847864151, -0.5088316202163696, 0.30584532022476196, 0.016061898320913315, 0.7357313632965088, -0.032626714557409286, 1.0303140878677368, 0.28684258460998535, 0.19565537571907043, 0.2599698305130005, -0.7388185858726501, -0.07323018461465836, -1.0247722864151, 0.2597115635871887, -0.9469223022460938, -0.4233494699001312, 1.1052451133728027, 0.766465425491333, -0.3947010636329651, 1.046592116355896, -0.20501886308193207, 0.6688295602798462, 0.3676900863647461, 0.960121750831604, 0.7798128128051758, 0.15422283113002777, -0.5917352437973022, -0.010827142745256424, -0.13915801048278809, -0.18726477026939392, 1.4083659648895264, -0.2672882080078125, -0.6321730613708496, 1.630500316619873, 0.33942073583602905, -0.3599257171154022, 0.134063258767128, 0.5618857741355896, -0.23105552792549133, -1.0733962059020996, 0.06088424101471901, -0.2117765247821808, -0.8169887661933899, 1.5055197477340698, 0.7358942031860352, -1.686319351196289, -0.6602771282196045, -0.26053905487060547, -0.24965399503707886, -0.21618497371673584, 0.32104817032814026, -0.4407232999801636, 0.3986701965332031, -0.20483613014221191, 0.30731087923049927, 0.13471762835979462, 0.20215527713298798, 0.8432267904281616, -0.3030945062637329, -0.4194207787513733, -0.19940383732318878, 0.7357323169708252, 0.16373372077941895, 0.932863712310791, -0.41541188955307007, -1.8013993501663208, -0.7957578897476196, -0.4387066960334778, 1.0888571739196777, -0.35923871397972107, -0.060910023748874664, 0.9173436164855957, 1.213676929473877, -0.5355865955352783, 0.3123428225517273, 0.057373568415641785, 0.027718964964151382, -0.22736547887325287, 0.03233705088496208, 0.19572949409484863, 0.4956134557723999, -0.31621551513671875, -0.885918378829956, -0.2583056688308716, 0.10253926366567612, 1.6094715595245361, 0.9866796135902405, 0.9287859201431274, -0.11473755538463593, -0.2648599147796631, -0.33928990364074707, 0.06860632449388504, -0.4892740845680237, 0.05066894739866257, -0.9851511716842651, -0.9023679494857788, 0.2615848183631897, -0.839738130569458, -0.5993518829345703, 0.9736931324005127, 0.11960094422101974, 1.290328025817871, 1.1764025688171387, -0.5299575924873352, -0.6744155287742615, -1.1930632591247559, 0.17338961362838745, -0.9038328528404236, 0.891242504119873, 0.7820644378662109, -0.5080679655075073, 0.005185943096876144, -0.3261072039604187, -0.0778295025229454, 0.607589602470398, -0.23828905820846558, 0.12545445561408997, -1.3180601596832275, -0.22805453836917877, -0.23090046644210815, 1.3586673736572266, -0.145128071308136, 0.10178851336240768, -0.6666096448898315, 0.4152049720287323, 0.2646560072898865, 0.09769643843173981, -0.06310869008302689, 0.5415029525756836, -0.17711667716503143, 0.3507429361343384, -0.03042633645236492, 0.9750691652297974, 1.6646430492401123, -0.2507581412792206, 0.011357501149177551, -0.6197203993797302, 0.09168161451816559, -0.4631008505821228, 0.6262189149856567, 0.07875678688287735, 1.5079765319824219, 0.04744413122534752, 0.47296255826950073, 0.8384949564933777, -0.39088547229766846, -0.23604735732078552, -1.3028615713119507, 0.7018524408340454, 0.08407244086265564, 1.0250022411346436, 0.857512354850769, 0.6280348300933838, 0.919965386390686, -0.5563367605209351, -0.5429325103759766, 0.030737321823835373, 0.7727354764938354, -0.5209876298904419, -0.9664281606674194, -0.5817626714706421, -0.09486021101474762, -0.5747842788696289, -0.5348907113075256, -0.6079621315002441, 0.4294549226760864, -0.4188029170036316, -0.17144452035427094, 0.7980940341949463, -0.1585700809955597, 0.08636390417814255, 0.24120157957077026, 0.069236621260643, 0.2797550559043884, -0.15245111286640167, -0.5533029437065125, -0.26163244247436523, 0.07717747241258621, 0.019484352320432663, -0.80859375, -0.8882457613945007, 0.10972538590431213, -0.2778278589248657, 0.7172932028770447, -1.4092050790786743, -0.05880389362573624, -0.0924503281712532, 0.266842246055603, 0.3994174003601074, 0.08940064907073975, 0.5337808728218079, 0.2809797525405884, 0.25640344619750977, -0.31733548641204834, -0.15137995779514313, 1.0877766609191895, -0.1014244556427002, -0.4185674786567688, -0.478185772895813, -0.29540306329727173, 0.4683187007904053, -0.04922400787472725, -1.064853310585022, 0.32333624362945557, -0.4160933494567871, 0.04762484133243561, 0.08499032258987427, -0.2748970091342926, 1.753896951675415, -0.21159568428993225, 0.3003285527229309, 1.2435123920440674, -0.06786923110485077, -0.9516420364379883, 0.033699363470077515, -0.31986385583877563, -0.3954119086265564, -0.18817780911922455, 0.29346174001693726, 0.2387063205242157, 0.19107437133789062, 1.0306706428527832, 0.048674993216991425, 0.7577798962593079, 0.2375769317150116, -0.5280317068099976, -0.24256345629692078, 0.5710229873657227, 0.6035422086715698, 1.112365484237671, 1.0912785530090332, 0.05534662678837776, -1.1435558795928955, 1.3179187774658203, -0.1636870950460434, 0.9950270652770996, 0.8988133668899536, 0.5397327542304993, 1.8743064403533936, -1.6899757385253906, -0.5477938652038574, 0.4665508270263672, -0.04745018854737282, 0.41547492146492004, 0.4822109639644623, 0.8940441608428955, -1.0445971488952637, -0.16962051391601562, 0.6979880332946777, -0.17585116624832153, 1.0602302551269531, -1.2264518737792969, -0.681685209274292, 0.5352133512496948, -0.4274817109107971, 0.1447707563638687, -0.7188248634338379, -0.4844498336315155, 0.2841556966304779, -0.24460573494434357, 0.3766883611679077, 0.5579487085342407, 0.5313280820846558, 1.4236886501312256, -0.5564324855804443, -1.8200087547302246, 0.24367883801460266, -0.9112961292266846, 0.3921816945075989, 0.1385784149169922, -0.6245990991592407, -0.5543532371520996, -0.936341404914856, -0.43307483196258545, 0.17928341031074524, -0.6921727657318115, -0.12043624371290207, 0.2739863991737366, -1.803160548210144, -0.3036925196647644, -0.4446248412132263, 0.9060081243515015, 1.0245378017425537, -0.10261017084121704, 0.15347515046596527, 0.2683236002922058, -0.4996727705001831, 0.044534239917993546, -0.3944222629070282, -0.453407347202301, 0.17395955324172974, -0.8739523887634277, -1.3112473487854004, 1.198460578918457, 1.3838589191436768, 0.6859289407730103, 0.6257830858230591, 1.0954079627990723, 1.7621724605560303, -0.9875439405441284, -0.8574848175048828, 0.23890262842178345, -1.2473870515823364, 0.7237209677696228, 0.884301483631134, -0.47703003883361816, -0.4608606696128845, 0.0652243122458458, -2.34615421295166, 1.5311203002929688, -0.23118263483047485, -0.6791379451751709, 0.8331739902496338, 0.29339998960494995, 0.3577209413051605, 0.7555747032165527, -1.062574028968811, -0.4946194291114807, 0.32932043075561523, -0.2382548451423645, -1.3393430709838867, 0.12715408205986023, 0.6969781517982483, 0.3816107511520386, -0.18677639961242676, 0.7533884048461914, -0.3246512711048126, -0.35600754618644714, 0.3660813271999359, 0.8685903549194336, 0.3616480827331543, 0.41897720098495483, 0.6910508275032043, -1.6390092372894287, 0.10756506025791168, -0.9665040969848633, 0.4611508846282959, 0.4047558307647705, 0.9700474739074707, 0.4516892731189728, -0.5312753915786743, 0.2767939567565918, -0.33629781007766724, -0.27801215648651123, -0.5852259397506714, -0.6604623794555664, 1.248297929763794, 0.5225236415863037, -0.26330050826072693, 0.1963881254196167, -0.0974431186914444, -0.4956757426261902, -0.1765160858631134, 0.6835345029830933, 0.8355097770690918, -1.6101223230361938, -0.04139198735356331, 0.21413399279117584, 0.04498261585831642, 0.04212818667292595, 0.37688148021698, -0.18094095587730408, -0.9104511141777039, -1.2632946968078613, -0.47511065006256104, -0.2291174978017807, 0.9135290384292603, -1.0756624937057495, 0.05854722857475281, 0.09785787016153336, -1.5911662578582764, 0.9071666598320007, 0.1764041632413864, -1.4387246370315552, -0.6223253607749939, -1.345942735671997, 1.3033447265625, 0.15334388613700867, -0.678041398525238, 0.10454308241605759, 0.7761340141296387, -0.6646464467048645, -0.21194103360176086, -1.4852968454360962, 0.3325389623641968, 1.3061563968658447, 1.4266653060913086, -0.8625929355621338, 0.7221630215644836, 0.5505609512329102, -0.8708725571632385, -0.38409367203712463, 0.09402840584516525, -0.9700216054916382, 0.16439801454544067, 0.4127539098262787, 0.0002940148115158081, 0.8436190485954285, 1.4283369779586792, 0.608986496925354, 1.0012577772140503, -0.23486241698265076, 1.0727403163909912, -0.7470324039459229, -0.6315296292304993, -0.3358517289161682, 0.2534390091896057, -1.01334547996521, -0.5714022517204285, 0.5597259998321533, -0.47596514225006104, 0.21403133869171143, 0.8863956928253174, 1.011550784111023, -0.35147756338119507, 0.2097262293100357, -0.02310197800397873, 0.24344561994075775, -0.2720857560634613, 0.9712880849838257, 0.057004306465387344, -0.916378378868103, 0.3280201852321625, 0.4189695715904236, 0.49680137634277344, -0.7569389343261719, 0.44042065739631653, -0.26375114917755127, 0.7501507997512817, -0.22929587960243225, 0.3795287013053894, 0.4535359740257263, -0.5410014986991882, -0.9790940284729004, 0.9718509316444397, 1.2997626066207886, 0.0954919382929802, 0.16572122275829315, 0.6527629494667053, 0.2698563039302826, 0.6490429639816284, -0.3613772690296173, 0.1459839940071106, -0.7643768787384033, 0.7656019926071167, -0.19806718826293945, 0.21667781472206116, -0.8053263425827026, 0.9620238542556763, -0.13323846459388733, 0.20873305201530457, 0.955678403377533, -0.05957761034369469, -0.4986976385116577, 1.06765878200531, 0.870572566986084, -0.707257091999054, -0.04847431555390358, 0.3920741081237793, 0.9384361505508423, 0.08401723206043243, 0.29838305711746216, 0.34984272718429565, -0.6246862411499023, 0.24985331296920776, 0.23704053461551666, -0.6090519428253174, -0.029928058385849, -0.7799083590507507, -1.3316314220428467, -0.3538527190685272, -0.4044915437698364, -0.9206294417381287, 0.09231282770633698, -1.0612173080444336, -1.0125300884246826, -0.1554190069437027, -0.1065736934542656, 0.3126957416534424, -0.8828506469726562, 0.3094165027141571, 0.16145539283752441, 0.3677976727485657, 1.4165229797363281, -0.21929650008678436, 1.3050481081008911, 0.08877578377723694, 0.3745371699333191, -0.1291530579328537, 0.5614548921585083, -0.22029918432235718, -0.07717772573232651, -0.23713883757591248, -0.17153535783290863, -0.6595472693443298, -0.6497030258178711, -0.23779669404029846, 0.7158529162406921, 0.011653341352939606, 0.3756124973297119, -0.14724257588386536, -1.2154943943023682, -0.2925964593887329, 1.034848690032959, 0.8928430080413818, -0.7709683179855347, -0.39653193950653076, -0.05797835439443588, -0.08713552355766296, 0.1959216296672821, 1.0834019184112549, -0.465420126914978, 0.2913420498371124, 0.4256068468093872, -0.2267276495695114, -0.8614752888679504, -0.5339318513870239, 0.9001688957214355, -0.8878641128540039, 0.898873507976532, -1.1091172695159912, 0.08663966506719589, -0.23970553278923035, -0.5907410383224487, -0.07383587956428528, 0.45539039373397827, -0.3320719301700592, 0.48707836866378784, -0.47461336851119995, -0.8518455028533936, -0.4573342800140381, 0.3231770098209381, 0.22037914395332336, -0.3394518494606018, 0.17118215560913086, 0.2435121238231659, -0.8641175031661987, 0.2630324065685272, 0.2433210164308548, 0.3097161054611206, 0.7298387289047241, 2.482536792755127, 1.9640569686889648, -0.09721018373966217, -0.5712043046951294, -0.15711840987205505, 1.1275897026062012, -1.2058095932006836, -0.6734203696250916, -1.2192888259887695, -0.13362330198287964, -0.10074568539857864], [-0.313429057598114, 2.0619475841522217, -1.6438801288604736, -0.7020805478096008, 0.9924013614654541, 1.0293117761611938, 0.11340221762657166, 0.3546886444091797, -0.2271609604358673, -0.11466214805841446, -0.6334972977638245, 0.763297438621521, 0.3988954424858093, 1.584886908531189, 0.08699864149093628, 0.2654877305030823, 0.7969266176223755, -0.7910923957824707, 0.8219971060752869, 0.7335984706878662, -0.35230553150177, -1.3302156925201416, 0.0004182383418083191, 0.2867591977119446, 0.7169680595397949, 0.444790780544281, -1.5703094005584717, -0.8762032985687256, -1.2290198802947998, -0.7468985319137573, 1.433976173400879, -0.46115735173225403, -0.17791274189949036, 0.6043232679367065, -1.8482317924499512, -0.7761828303337097, 1.2582943439483643, 0.42930012941360474, 0.5004251599311829, 0.7685543894767761, 1.7011988162994385, 0.7497360706329346, -0.2295914739370346, -0.9723923206329346, 0.38718748092651367, 0.7245731949806213, 0.07043836265802383, -1.7259758710861206, 0.46378690004348755, -0.5161730051040649, 0.8098098635673523, 0.19819030165672302, 0.7427690029144287, 0.3948494791984558, 1.4728577136993408, -0.7673783302307129, 0.44834890961647034, -0.10337170958518982, 0.24875542521476746, -0.03026377409696579, 1.0269131660461426, 0.3450585603713989, -0.6925882697105408, 0.45037877559661865, 0.535233736038208, 0.21474245190620422, 0.11643505096435547, 0.0039047934114933014, -0.2686237394809723, 0.9003859758377075, 0.5196466445922852, -0.5640873908996582, -0.9074615240097046, 0.7808573842048645, -0.8722415566444397, -0.138832688331604, 0.3203877806663513, 0.08610162138938904, -0.06579214334487915, 1.5993677377700806, -0.8129985332489014, -0.25443628430366516, -0.17607206106185913, -0.07231799513101578, -0.10203565657138824, 0.4801342189311981, -0.21038207411766052, -0.3068665862083435, 0.03907935321331024, 1.7154685258865356, -0.11524076014757156, 0.21132412552833557, -0.08006192743778229, -0.09982872754335403, -0.5134068727493286, -0.9717502593994141, -0.2589816153049469, -0.649154543876648, -0.12074640393257141, -0.2786743640899658, -0.8896294832229614, -0.2519279718399048, 0.3424031138420105, 0.025627030059695244, 0.46479958295822144, 1.0327892303466797, 0.22110626101493835, -1.3665632009506226, -0.16419097781181335, -0.05446717143058777, 0.34655773639678955, 0.6088908910751343, -0.48844435811042786, -1.194032907485962, -0.548704206943512, 0.49066677689552307, 0.4469781219959259, -0.62669837474823, 0.2677454352378845, 0.6644852161407471, -0.5115829706192017, -0.6216199994087219, -0.6285271644592285, 0.6167638301849365, 0.5449770092964172, -0.13651326298713684, -1.1514332294464111, 0.0768975019454956, -0.2604959309101105, 0.22023235261440277, 0.3112662434577942, -0.3775036633014679, -0.6165748834609985, 0.5476080775260925, -0.7418261766433716, 1.3446924686431885, 0.23811638355255127, -0.9660003781318665, 0.5518860220909119, 0.31736379861831665, 0.4212457537651062, -0.12483858317136765, 0.14749303460121155, -0.6679316163063049, 0.2324124276638031, -0.9571316242218018, -0.0377245657145977, 0.3453245162963867, -1.2288734912872314, -0.024945437908172607, -1.323582649230957, 0.7349157333374023, -0.2951088547706604, 0.6596570014953613, -0.12812209129333496, 0.819026529788971, 0.6318169832229614, 0.438997745513916, 0.2745579481124878, 0.5159322023391724, 0.8932040929794312, 0.2768362760543823, -0.25683310627937317, 1.140678882598877, 0.49394339323043823, -0.031914204359054565, 0.37551724910736084, 0.03571205586194992, 0.10548325628042221, 0.9378992319107056, -0.41864752769470215, -0.07030664384365082, -0.20154862105846405, 0.26990625262260437, 0.1599990725517273, -1.0587983131408691, 0.77916419506073, -0.5437319278717041, -0.7867087125778198, -1.5922391414642334, 0.8253648281097412, -0.3432321548461914, 0.3906155526638031, 0.10852963477373123, 0.4784988760948181, -0.30099350214004517, -0.19464005529880524, 0.5724337100982666, -0.9451744556427002, -0.16530196368694305, -0.5642826557159424, -0.10303410142660141, -1.5715852975845337, -0.20552676916122437, -0.5599180459976196, -1.4197790622711182, 0.20138408243656158, 0.12473499774932861, -0.06040329486131668, 0.2741701304912567, 0.19332993030548096, -0.4047200679779053, -1.760482907295227, -0.49252092838287354, -0.5999636054039001, 0.39486029744148254, -0.47342848777770996, 0.5891891717910767, -1.4011414051055908, 0.09116717427968979, 1.6035170555114746, 0.3847833275794983, -0.9511250257492065, 0.6409792900085449, -0.34605929255485535, -1.5094094276428223, 0.7690709829330444, -0.5540684461593628, -0.4460715651512146, 0.3307359218597412, 0.5760705471038818, 0.15736600756645203, 0.46381306648254395, 0.22829541563987732, 0.7016818523406982, -0.04065420851111412, -0.8800804615020752, -1.0352323055267334, -1.0799944400787354, 0.09919091314077377, -0.27634960412979126, -1.438000202178955, 1.1498323678970337, 0.40608343482017517, -0.6431445479393005, 0.23677854239940643, 0.12480642646551132, -0.07012535631656647, 0.5170238018035889, 0.7932855486869812, 0.25746676325798035, 1.1437950134277344, -0.6629123091697693, -0.19166463613510132, -0.5740748643875122, -0.1687241643667221, 1.3095943927764893, -0.626023530960083, -0.026038847863674164, 1.2902748584747314, 0.3651964068412781, 0.3009333312511444, -0.17548388242721558, 0.07513699680566788, 0.240351140499115, -1.256782054901123, -0.5642254948616028, -0.2806832194328308, -0.5092381238937378, 1.0210685729980469, 0.8965719938278198, -1.6012256145477295, -0.5922568440437317, 0.21759697794914246, 0.3667614459991455, -0.6276648044586182, -0.08067440986633301, -0.3939770460128784, 0.8276404142379761, 0.18408408761024475, 0.08394016325473785, 0.8795009851455688, 0.17704874277114868, 0.5374059677124023, -0.26822394132614136, -0.3752323389053345, -0.4862416386604309, 1.103912115097046, 0.3720426857471466, 0.554722785949707, -0.6675158739089966, -0.4693284034729004, -0.7615646123886108, 0.27690738439559937, 0.982189953327179, -0.2872737646102905, -0.3475540280342102, 0.19588671624660492, 0.8278522491455078, -0.5920459032058716, -0.5142406225204468, -0.23906171321868896, -0.629593014717102, -0.34937840700149536, 0.2334793508052826, 0.17053714394569397, 0.3527071475982666, -0.1208585575222969, -0.3519797623157501, 0.32907596230506897, 0.40535157918930054, 1.215832233428955, 0.5010305047035217, 0.3922194540500641, -0.47790706157684326, -0.15090370178222656, -0.8599817752838135, 0.060088325291872025, -1.286198616027832, -0.12196668982505798, -0.9920327663421631, -0.8770294785499573, 0.5442737936973572, -0.7283804416656494, 0.41984885931015015, 0.6978136301040649, -0.1812288910150528, 1.033979058265686, 0.9554604291915894, -0.17498090863227844, -0.727864146232605, -0.8761160969734192, -1.1621384620666504, -0.650137722492218, 0.8515282869338989, 0.9930927753448486, -0.4996825158596039, 0.10010506957769394, -0.2796390652656555, -0.1655256599187851, 0.9182089567184448, -0.09863147139549255, 0.1994606852531433, -0.7677664756774902, -1.0434308052062988, -0.04360578581690788, 1.1389018297195435, 0.6641258001327515, -0.010016925632953644, -1.1576411724090576, 1.060009479522705, 0.5800502300262451, -0.1491919457912445, -0.13002648949623108, 0.8023161888122559, 0.12705853581428528, 0.22595176100730896, 0.23465847969055176, 0.7932525873184204, 0.8907331228256226, -0.667507529258728, -0.009041259996592999, -0.02803116664290428, 0.07473795115947723, -0.17210644483566284, 0.35979437828063965, -0.14214590191841125, 1.0556683540344238, 0.4784977436065674, 0.09245369583368301, 1.26925528049469, -0.8048478364944458, -0.2486896812915802, -1.5957276821136475, 0.7431744337081909, 0.37947964668273926, 0.8539391756057739, 0.9540431499481201, 0.1686255931854248, 0.40413767099380493, -0.7264479398727417, -0.4094638228416443, 0.1654389202594757, 0.7075956463813782, 0.2126031219959259, -1.4456157684326172, -0.5363039970397949, -0.643963098526001, -0.4537569284439087, -0.7589924335479736, -0.9496037364006042, -0.29528725147247314, -0.9774665832519531, -0.5331805348396301, 1.452692985534668, 0.021962206810712814, -0.10679471492767334, -0.49233970046043396, 0.7112727165222168, 0.3870534598827362, -0.6338708400726318, 0.21578188240528107, 0.22694900631904602, 0.11151576042175293, 0.17192068696022034, -0.5983383655548096, -0.925180971622467, -0.15236854553222656, -0.636616051197052, 1.2833914756774902, -1.681765079498291, -0.011369969695806503, 0.23059381544589996, 0.7048095464706421, 0.09878204762935638, -0.11606910079717636, 0.7360090017318726, 0.28666892647743225, 0.28390389680862427, -0.1042487695813179, -0.4093056321144104, 1.0838768482208252, 0.2798556685447693, -0.7461439967155457, -0.4591221809387207, -0.6955571174621582, -0.028639689087867737, -0.22410047054290771, -0.13966482877731323, 0.32218021154403687, -0.5494301319122314, 0.036981597542762756, 0.276885449886322, 0.3017841875553131, 1.1082016229629517, -0.36466529965400696, -0.02397506684064865, 0.5566259622573853, -0.26704221963882446, -0.5673829913139343, 0.7032003402709961, -0.15692582726478577, -0.5600675940513611, 0.14738476276397705, 0.6927540302276611, 0.5755297541618347, -0.12945297360420227, 0.010762542486190796, 0.3836057782173157, 0.8744164705276489, 0.3225066363811493, -0.5221636891365051, 0.22656293213367462, 0.8307232856750488, 0.5911942720413208, 0.8845669627189636, 0.5770654678344727, 0.1548423022031784, -1.385199785232544, 1.6552064418792725, -0.5803042054176331, 0.37258821725845337, 0.7468138933181763, 0.5638844966888428, 1.673830270767212, -1.6736595630645752, -0.3442743122577667, 0.07007266581058502, -0.010070476680994034, -0.3221794068813324, 0.2587890028953552, 0.3765805959701538, -0.9039292931556702, 0.17760702967643738, 0.4440588355064392, 0.5003173351287842, 0.757596492767334, -0.6707533597946167, 0.5908069610595703, 0.2900041341781616, -0.5425963401794434, 0.4374939203262329, -0.6290026307106018, 0.08109559118747711, 0.41135692596435547, 0.1383519321680069, -0.2694642245769501, 0.23379699885845184, 0.07084396481513977, 1.2662594318389893, -1.0592410564422607, -1.1999900341033936, 0.7179624438285828, -1.0825324058532715, 0.13200466334819794, -0.3315347731113434, -0.37226402759552, -0.4557255506515503, -0.6043640971183777, -0.3180258870124817, 0.7279444932937622, -0.318456768989563, 0.1803857684135437, -0.21792754530906677, -1.4971894025802612, 0.028972625732421875, -0.702386200428009, 0.5991611480712891, 1.0107287168502808, 0.6901758909225464, -0.06252192705869675, -0.5286067724227905, -0.5590239763259888, 0.28051507472991943, 0.10791224241256714, -0.09424726665019989, -0.32124781608581543, -1.2204363346099854, -1.8089786767959595, 0.7505747675895691, 1.0609142780303955, 0.8297665119171143, 0.6565217971801758, 1.1294116973876953, 1.2263269424438477, -0.3080695867538452, -0.5219084024429321, 0.4225005507469177, -0.815601110458374, -0.25659894943237305, 1.3419207334518433, -0.9383042454719543, -0.27587631344795227, -0.5316579341888428, -1.8968992233276367, 1.8928730487823486, 0.9985679388046265, -1.017707347869873, 1.1214756965637207, 0.4344625771045685, 0.21104875206947327, 0.6676836013793945, -0.8332676887512207, -0.13689859211444855, 0.15263032913208008, -0.4668514132499695, -1.1421728134155273, 0.22615155577659607, 0.6578074097633362, 0.20906534790992737, -0.11747682839632034, 0.8108766078948975, 0.01476137526333332, -0.4817166030406952, 0.2721540629863739, 0.6252723336219788, 0.6970513463020325, 0.5473470687866211, 0.5834879279136658, -1.558304786682129, 0.08828972280025482, -0.03867319971323013, -0.4794504642486572, 0.3859242796897888, 1.1612831354141235, 1.1270573139190674, 0.23040947318077087, 0.1925143599510193, -0.596123218536377, -0.6733921766281128, -0.9953253865242004, -1.0852872133255005, 0.8580402135848999, 0.2684706151485443, -1.0192177295684814, 0.4013711214065552, -0.30459877848625183, -0.7177866697311401, -0.2347734272480011, 0.4343249201774597, 0.8731064796447754, -1.2779569625854492, -0.5347885489463806, -0.25301942229270935, -0.5146830081939697, -0.24772506952285767, -0.011965692043304443, 0.6133013963699341, -0.9263218641281128, -1.3949227333068848, -0.9753000140190125, -0.4398413300514221, 0.7980135679244995, -0.5835484266281128, -0.09717147797346115, -0.16252978146076202, -1.3633842468261719, 0.809964656829834, -0.12824417650699615, -1.509840726852417, -0.272632360458374, -1.402662754058838, 0.46869173645973206, -0.08736086636781693, -0.004432894289493561, -0.429198294878006, 0.5293612480163574, -0.4895390570163727, -0.837984025478363, -1.3759382963180542, -0.21279305219650269, 0.5316997766494751, 0.7300763130187988, -0.7520811557769775, 1.091896891593933, -0.22644370794296265, -0.8572598695755005, 0.49901217222213745, 0.6184987425804138, -0.1544286012649536, 0.515988290309906, 0.44951215386390686, 0.3957074284553528, 0.421561598777771, 1.181994915008545, 0.9294760823249817, 1.0369867086410522, -0.01204635575413704, 0.2596770226955414, 0.2803198993206024, -0.29691505432128906, -0.2909027338027954, 0.28360608220100403, -1.303228497505188, -0.2491745948791504, -0.10502570867538452, 0.084719717502594, 0.07200935482978821, 0.6491044163703918, 0.39169323444366455, -1.8903138637542725, 0.3533051311969757, 0.06215329468250275, 0.3949897885322571, -0.08219338953495026, 0.4281858503818512, 0.2872985303401947, -0.360710084438324, 0.5650988221168518, 0.13209684193134308, -0.028785325586795807, -0.734120786190033, -0.14375907182693481, -0.10576552152633667, 0.12909147143363953, 0.4279865026473999, 0.3777327537536621, 1.0961942672729492, -0.25302883982658386, -0.25495201349258423, 1.032170295715332, 0.6722867488861084, 0.14483121037483215, -0.5926603078842163, 0.7261401414871216, 0.24816225469112396, 0.23666182160377502, 0.05496593564748764, 1.0002574920654297, -0.7936339378356934, 1.0283845663070679, -0.8869547843933105, 0.1859009563922882, -0.5967741012573242, 0.32147759199142456, -0.48027798533439636, 0.52275550365448, 1.0633745193481445, -0.17060725390911102, -0.35685330629348755, 1.0198109149932861, 0.6433915495872498, -0.3657606840133667, 0.5080462694168091, 0.7264179587364197, 0.42934033274650574, 0.12234579026699066, 0.13789813220500946, 0.12601037323474884, -0.4687989354133606, -0.1792377233505249, 0.11532779037952423, -0.010756321251392365, -0.6382907629013062, -0.7840422987937927, -0.8382916450500488, 0.39448267221450806, -0.5982035398483276, -0.1088045984506607, 0.2698861360549927, -0.852375328540802, -1.2811181545257568, 0.25272825360298157, -0.20146988332271576, -0.06206858903169632, -0.17157232761383057, -0.0835321843624115, -0.10214215517044067, -0.01882162317633629, 0.7337626218795776, -0.33166491985321045, 1.386457920074463, 0.0630614161491394, 0.27447739243507385, -0.40492764115333557, 0.7005345821380615, 0.8054403066635132, 0.5998573899269104, 0.2542964220046997, -0.3479350209236145, 0.14223894476890564, -1.0068504810333252, -0.1930769681930542, 0.42818862199783325, -0.14006537199020386, -0.05525791272521019, 0.2681553065776825, -0.6593310236930847, 0.1619120091199875, 0.330857515335083, 0.8617736101150513, -0.7726308703422546, -0.7550184726715088, -0.7207086086273193, 0.2498907744884491, -0.17368373274803162, 0.5578446388244629, -0.4891221523284912, 0.46012014150619507, -0.20638057589530945, -0.31131020188331604, -0.35403597354888916, 0.0031201988458633423, 0.2566264569759369, -0.29603782296180725, 1.1444101333618164, -1.0284037590026855, -0.29101285338401794, -0.26152968406677246, -0.8239071369171143, 0.5018787980079651, 0.19862444698810577, 0.3197501301765442, -0.043917857110500336, -0.8575491905212402, -0.7316417694091797, -0.834903359413147, 0.3695659637451172, 0.22387152910232544, -0.0474943146109581, 0.707089900970459, -0.1421802043914795, -0.8797369003295898, 0.48538869619369507, -0.061235442757606506, 0.3399786353111267, 0.15645091235637665, 1.5426479578018188, 0.9384953379631042, -0.31807470321655273, 0.004670382011681795, -0.7740336656570435, 0.7205505967140198, -0.8719479441642761, -1.1713168621063232, -1.1163748502731323, -0.23914404213428497, 0.041632138192653656], [0.06302879005670547, 1.5810799598693848, -2.547773599624634, -0.7048175930976868, 1.1163562536239624, 1.0564939975738525, 0.359237402677536, 0.6258398294448853, 0.2540900707244873, 0.17656663060188293, -0.7268428802490234, 0.6663694381713867, 1.548815131187439, 1.446771264076233, 0.08166040480136871, -0.4435623288154602, 0.493017315864563, -0.5620646476745605, 0.4379574954509735, -0.10182593017816544, 0.04453739523887634, -1.0852458477020264, -0.3660244345664978, 0.3011578917503357, 0.5347166657447815, 0.22218865156173706, -2.5698673725128174, -0.2976894676685333, -0.7821974754333496, -0.7226089835166931, 1.0336635112762451, -0.32542234659194946, 0.12113162130117416, 0.29169073700904846, -1.7568509578704834, -0.17026479542255402, 0.38759705424308777, 0.5432901382446289, 0.9338351488113403, 0.5379208326339722, 0.6598924994468689, 0.7121576070785522, 0.011874510906636715, -0.42002686858177185, 0.671343207359314, 0.8334624767303467, 0.4102237820625305, -1.327160358428955, 0.637908399105072, -0.7478224039077759, 1.2157623767852783, 0.6801097393035889, 0.11242446303367615, 0.8085043430328369, 1.212679147720337, -0.8499155640602112, 0.3524325489997864, -0.09861806035041809, 0.90219646692276, -0.34040597081184387, 1.175361156463623, 0.2033247947692871, 0.00717303529381752, 0.5089775919914246, 0.6139856576919556, 0.2610776424407959, 0.3349723219871521, 0.4019765555858612, -0.44445890188217163, -0.04915976524353027, 0.1553785502910614, -0.10684004426002502, -0.3012000620365143, 1.2355329990386963, -0.07823862880468369, -0.06798171252012253, 0.16882450878620148, 0.13770760595798492, -0.21108105778694153, 1.0288540124893188, 0.2114519476890564, -0.452384889125824, 0.6511659622192383, -0.17966651916503906, 0.07061414420604706, -0.11766655743122101, -0.7467617988586426, -0.4395231008529663, -0.01800733059644699, 1.7864068746566772, -0.6531015634536743, 0.31341803073883057, 0.3449150621891022, 0.13852578401565552, -0.3043944835662842, -0.7490850687026978, -0.3434036672115326, -0.7015185356140137, -0.8124659061431885, -0.4123782515525818, -0.511814534664154, 0.12088200449943542, 0.137766033411026, -0.052626267075538635, 0.782138466835022, 1.1227877140045166, -0.007493080571293831, -0.9439713954925537, -0.2938861846923828, 0.18577364087104797, 0.43735557794570923, 1.0535351037979126, -0.7110739946365356, -1.1639280319213867, -1.0101908445358276, 0.4567599892616272, -0.18439872562885284, -0.41539978981018066, 1.001447319984436, 0.44626644253730774, -0.8815231323242188, -0.7965334057807922, -1.305553674697876, 0.2298884093761444, 0.731744647026062, 0.3048320412635803, -0.6812575459480286, 0.5075215101242065, -0.5973641872406006, 0.23320476710796356, 0.35839465260505676, -0.022753460332751274, -0.447261780500412, 1.0614013671875, -0.6171931624412537, 1.601369857788086, -0.5917543172836304, -1.3519929647445679, 0.03914322704076767, 0.6877294778823853, 0.36366403102874756, -0.5267021059989929, -0.003347824327647686, -0.9389835000038147, -0.5102895498275757, -0.666688859462738, 0.5117982029914856, -0.36421459913253784, -1.2653319835662842, -0.21233907341957092, -0.6419076919555664, 0.7780073285102844, -0.3880997598171234, 1.2622181177139282, -0.15935415029525757, 0.521913468837738, 0.2112390547990799, 0.5349973440170288, 0.4907747507095337, 0.49705982208251953, 1.0866038799285889, -0.4521218538284302, -0.08501331508159637, 0.7493242025375366, 0.3172975480556488, -0.009500803425908089, 0.5701684951782227, 0.23371635377407074, 0.14448343217372894, 0.9023072719573975, -0.21541020274162292, -0.09259013831615448, -0.2764430344104767, 0.08312316983938217, -0.31071823835372925, -1.3331583738327026, 0.4273020625114441, -1.4711540937423706, -0.21891522407531738, -1.373927354812622, 0.7129738926887512, -0.4075831472873688, 0.04644783213734627, -0.5566048622131348, 0.47404909133911133, -0.6159344911575317, -0.26750361919403076, 0.15685728192329407, -0.7657198905944824, -0.8328298926353455, -1.1320164203643799, -0.6624776721000671, -0.8711118698120117, -0.6002619862556458, -0.2638748288154602, -1.2439978122711182, 0.45646941661834717, -0.23098957538604736, -0.23338600993156433, 0.4419724643230438, -0.3170848786830902, 0.10367451608181, -1.3174070119857788, -0.3515053391456604, -0.7468811273574829, 0.4762895703315735, 0.3324304223060608, 0.46200039982795715, -1.7550363540649414, -0.11322969198226929, 0.8817402720451355, 0.4516890048980713, -0.8543530702590942, 0.02384381741285324, -0.2985606789588928, -0.10010071098804474, 0.5152983665466309, -0.6550663709640503, -0.09242168068885803, -0.09025523066520691, 0.8155725002288818, 0.5890768766403198, 0.851283073425293, -0.35663557052612305, 0.6960186958312988, 0.3584235608577728, -1.0616024732589722, -0.5794562697410583, -1.4147310256958008, 0.44218093156814575, -0.8267055749893188, -0.8331559300422668, 0.9681790471076965, 0.45244336128234863, -0.002029683440923691, 1.0700082778930664, -0.01129862666130066, 0.18290889263153076, 0.9866378307342529, 0.8504412174224854, -0.0633263885974884, 1.0839686393737793, -1.507347583770752, 0.02032112516462803, -0.5352520942687988, -0.16576631367206573, 0.11477211117744446, -0.4529673457145691, 0.15924113988876343, 0.9542561769485474, 0.19840466976165771, 0.10443119704723358, 0.19909332692623138, -0.1863202005624771, 0.40181609988212585, -0.40663430094718933, -0.09292787313461304, 0.011683665215969086, -0.3567757308483124, 1.6185023784637451, 0.71397864818573, -1.4393062591552734, 0.3064887523651123, 0.3876507878303528, 0.81828773021698, -0.25564032793045044, -0.03730739280581474, -0.9030172824859619, 0.14458486437797546, -0.23646026849746704, -0.02498778887093067, 0.8146805167198181, 0.3486816883087158, 0.4989777207374573, 0.005855991505086422, -0.17432114481925964, -0.5821582078933716, 0.4390276372432709, -0.20182457566261292, 5.08967787027359e-05, -0.6812414526939392, -0.364929735660553, -1.0808241367340088, 0.6427150964736938, 0.7550023794174194, -0.6706652045249939, 0.06209617853164673, 1.5277113914489746, 0.4745085537433624, -0.5126086473464966, -0.44247204065322876, -0.019787343218922615, -0.433377742767334, -0.14235499501228333, -0.08624359965324402, 0.399229496717453, 0.8182481527328491, -0.24276426434516907, -0.46536582708358765, -0.15008431673049927, 0.5458735823631287, 0.7473909854888916, 0.6367937922477722, 0.9870069026947021, 0.009176941588521004, -0.10744915902614594, -0.1212521344423294, -0.11576521396636963, -1.2359155416488647, -0.23148106038570404, -1.2721562385559082, -1.079455852508545, 0.27781835198402405, -0.787779688835144, 0.1382071077823639, 0.10504736751317978, 0.1500447392463684, 0.7859814167022705, 1.4073669910430908, 0.10267491638660431, -0.4552253782749176, -1.2905938625335693, -1.0811370611190796, -1.1536180973052979, 1.0686242580413818, 0.9212915897369385, -0.6895719170570374, 0.3287242650985718, -0.5794717073440552, -0.9361544847488403, 0.45934271812438965, -0.3181362748146057, -0.32613980770111084, -1.4182831048965454, -0.9066661596298218, -0.21719461679458618, 0.934666097164154, 0.6743501424789429, -0.7811659574508667, -1.0710091590881348, 0.4516238868236542, 0.8992621302604675, 0.7404224872589111, -0.15968023240566254, 0.9426803588867188, -0.10177198797464371, 0.43817758560180664, 0.23349271714687347, 0.5168454647064209, 0.7111779451370239, -0.6407278180122375, 0.27151361107826233, -0.33062663674354553, -0.13783128559589386, -0.4663196802139282, -0.09731393307447433, 0.005985185503959656, 0.9731634855270386, 0.6743013858795166, 0.14883364737033844, 1.2765352725982666, -0.7362081408500671, -0.2737559378147125, -2.302825689315796, 1.260906457901001, 0.07261191308498383, 0.8802507519721985, 0.8729168176651001, 0.582073450088501, 0.2745867669582367, -0.6623633503913879, -0.47850775718688965, 0.6945138573646545, 0.741890549659729, 0.21366557478904724, -0.7855345606803894, -0.9319814443588257, 0.020646363496780396, -0.1700098216533661, -0.8420947790145874, -0.868812620639801, 0.45164957642555237, -0.5634374618530273, -0.6084246635437012, 0.9150412082672119, 0.05136552453041077, -0.18058231472969055, -1.0001002550125122, 0.16193684935569763, 0.33647188544273376, -0.6063869595527649, 0.7439746856689453, -0.2903686761856079, -0.04342949390411377, 0.19433334469795227, -0.6158973574638367, -1.2854382991790771, -0.1260145902633667, -0.20723818242549896, 0.3519536852836609, -1.2257461547851562, 0.17559359967708588, 0.2823764383792877, 0.44871097803115845, -0.267255961894989, 0.21528327465057373, 0.26590585708618164, 0.5370950698852539, 0.3098846673965454, 0.3295948803424835, -0.28377893567085266, 0.5912872552871704, 0.3012089133262634, -0.7696020603179932, -0.20276561379432678, 0.1218704879283905, 0.8119768500328064, 0.4011841416358948, -0.6888513565063477, 0.04985317587852478, -0.5558261275291443, -0.32590436935424805, 0.14898191392421722, 0.3703421354293823, 1.4361815452575684, 0.23957666754722595, -0.3720105290412903, 1.098351001739502, -0.5741312503814697, -0.22132794559001923, 1.0011844635009766, -0.26249220967292786, -1.0037797689437866, -0.01880125142633915, 0.4430689811706543, 0.8527801036834717, 0.49495941400527954, 0.46674928069114685, 0.32665807008743286, 0.7444477081298828, 0.824386477470398, -0.5950815677642822, 0.05878797173500061, 0.5412498712539673, 0.5795071125030518, 0.6066585779190063, 0.8801976442337036, 0.513961672782898, -0.9405758380889893, 1.1879446506500244, -0.7920940518379211, 0.2986418306827545, 0.6477335691452026, 0.6910160779953003, 1.496293544769287, -1.2079907655715942, -0.5785872936248779, 0.5016639232635498, -0.0896160900592804, 0.44674474000930786, 0.12364131957292557, 0.9765061736106873, -1.1848845481872559, 0.8248332738876343, 0.5339822769165039, 0.42259782552719116, 0.44734612107276917, -1.0116448402404785, 0.21198566257953644, 0.3218647241592407, -0.40707170963287354, 0.4996899366378784, -0.8164947032928467, -0.31524860858917236, 0.5657600164413452, -0.057925812900066376, -0.4757556617259979, 0.0452752448618412, 0.43852150440216064, 1.26719069480896, -0.3748650550842285, -1.1620736122131348, 0.6261917352676392, -1.4362094402313232, 0.30854618549346924, -0.03550161421298981, -0.47997623682022095, 0.06103849783539772, -0.9599719643592834, -0.15668709576129913, 0.48557713627815247, -0.7225922346115112, 0.06791618466377258, -0.7132881283760071, -1.0740017890930176, -0.6473822593688965, -0.43452155590057373, 0.6628670692443848, 0.6700294017791748, 0.4565924406051636, -0.6052903532981873, -0.4218268394470215, -0.05550821125507355, 0.11221477389335632, 0.19724813103675842, 0.30921441316604614, -0.4821644425392151, -0.9392597079277039, -1.3050793409347534, 1.4835612773895264, 1.1056787967681885, 0.5723803043365479, 0.2073407769203186, 1.164896845817566, 1.1664413213729858, -0.18621881306171417, -0.6782375574111938, 0.4097698926925659, -0.8900096416473389, 0.6630274057388306, 1.0373890399932861, -0.48097193241119385, -0.23466208577156067, 0.4730511009693146, -2.150038242340088, 1.5363218784332275, 0.36047542095184326, -1.5600931644439697, 0.8584118485450745, 0.3286333680152893, 0.07651454210281372, 0.6989399194717407, -1.3990545272827148, -0.22559364140033722, 0.7989208102226257, -0.13031119108200073, -0.7544790506362915, -0.24902763962745667, 1.0545610189437866, 0.47329097986221313, -0.3836734890937805, 0.8572639226913452, 0.06032521650195122, -0.44362956285476685, 0.09016211330890656, 0.7822492718696594, 0.07689519226551056, 0.9479021430015564, 0.6574292778968811, -0.9287703037261963, 0.3383757472038269, -0.11984643340110779, 0.00816955417394638, 0.36872410774230957, 0.7726628184318542, 0.46212637424468994, -0.5851451754570007, -0.2814754843711853, -0.5562542080879211, -0.21849845349788666, -0.8080810308456421, -0.3259902000427246, 1.2343233823776245, -0.25878965854644775, -0.5133697986602783, 0.6265444159507751, 0.12159906327724457, -0.001678120344877243, 0.1755305826663971, 0.36761680245399475, 0.859397292137146, -1.5586872100830078, -0.35705268383026123, -0.30860912799835205, 0.1695401668548584, -0.2567705810070038, -0.22674429416656494, 0.35300230979919434, -0.7757667303085327, -1.575768232345581, 0.3900138735771179, -0.871370792388916, 0.9005365371704102, -0.2605944871902466, 0.20284751057624817, -0.06866919994354248, -1.5323426723480225, 0.6888552308082581, 0.7134236693382263, -1.414198398590088, -0.8554553389549255, -0.8932640552520752, 0.30759286880493164, -0.022845640778541565, -0.2533841133117676, -0.4321663975715637, 0.16599583625793457, -1.149169921875, -0.7132250070571899, -1.3229202032089233, -0.33837008476257324, 0.18456634879112244, 0.7518039345741272, -0.42671269178390503, 0.5144045352935791, 0.03980163484811783, -0.18178755044937134, -0.5414225459098816, 0.5828409194946289, -0.7394506931304932, 0.3123416304588318, 0.14987018704414368, -0.47461843490600586, 0.5079659223556519, 1.047713041305542, 0.3628331124782562, 0.6717711091041565, -0.7831061482429504, 0.19389724731445312, -0.025724487379193306, -0.8749932646751404, -0.658079981803894, 0.5324987769126892, -0.4762488305568695, -0.1679391711950302, -0.001140981912612915, 0.04486094415187836, -0.2407718300819397, 0.903549313545227, 1.0478583574295044, -1.4600634574890137, 0.26977550983428955, -0.18842488527297974, 0.25412309169769287, -0.2273596227169037, 0.18331721425056458, 0.0644114762544632, -0.16011172533035278, 0.2343219667673111, 0.18660569190979004, 0.8190714120864868, -1.0154050588607788, -0.1977081298828125, 0.13308711349964142, 0.3989543914794922, 0.06776848435401917, 0.4706440567970276, 1.435046672821045, -0.7339081764221191, -0.5891865491867065, 0.6806967258453369, 0.9517955183982849, 0.35734397172927856, -0.5516032576560974, 0.4183422327041626, 0.39191335439682007, 0.7442346811294556, 0.08360455185174942, 0.5610050559043884, -0.8649266958236694, 0.9572173357009888, -0.9010740518569946, -0.158109650015831, -0.42549073696136475, 0.34513047337532043, -0.28262391686439514, 0.4530034363269806, 0.3386796712875366, -0.12255583703517914, -0.37373995780944824, 1.143442988395691, 0.702704906463623, -0.1395391821861267, -0.07567087560892105, 0.6595091223716736, 0.05748186632990837, 0.8998024463653564, 0.43765997886657715, 0.008578373119235039, -0.3618090748786926, -0.2962607741355896, 0.10082866996526718, 0.2562970519065857, -0.47902777791023254, -0.584006667137146, -1.3431510925292969, -0.10814900696277618, -0.20824936032295227, -0.6578636765480042, 0.24034243822097778, -0.9247465133666992, -0.9264723062515259, 0.20105397701263428, -0.035469312220811844, -0.10253267735242844, -0.16308486461639404, 0.3557068705558777, 0.12091890722513199, 0.43501055240631104, 0.20880937576293945, -0.23237091302871704, 1.2104952335357666, 0.30589625239372253, -0.49221616983413696, -0.1954576075077057, 0.03615403175354004, 0.18167772889137268, 0.32086825370788574, -0.05804973095655441, 0.2700658142566681, 0.21186670660972595, 0.2061818242073059, -0.33163926005363464, 0.6391308307647705, 0.05055858939886093, -0.17421407997608185, -0.625733494758606, -0.8892472982406616, 0.008384395390748978, 0.5917995572090149, 0.8037667274475098, -0.5913910269737244, -0.9411656856536865, -0.5449045300483704, 0.16530466079711914, 0.23972660303115845, 1.2600641250610352, -0.507389485836029, 0.2727205455303192, -0.38543039560317993, 0.2858184576034546, -0.5173723697662354, 0.16512078046798706, 0.051310066133737564, -0.18426401913166046, 0.2824632525444031, -0.7839125394821167, -0.48861193656921387, -0.838156521320343, -0.9911485910415649, 0.20848296582698822, -0.16835139691829681, 0.3104920983314514, -0.4044339656829834, -0.4714093804359436, -1.0106195211410522, -0.6450720429420471, 0.7799140214920044, -0.1369640827178955, -0.3270638585090637, 0.523415207862854, 0.35640960931777954, -0.8498945236206055, 0.13459068536758423, -0.20387251675128937, 0.43150976300239563, 0.42010924220085144, 1.657048225402832, 1.712585210800171, -0.19532158970832825, -0.022076793015003204, -0.8095827102661133, 1.0051747560501099, -0.8830467462539673, -0.7059680223464966, -1.2671778202056885, 0.46216750144958496, 0.1171828880906105], [-0.2118513435125351, 2.0680460929870605, -1.7021390199661255, -0.8382608294487, 1.7435146570205688, 1.1994094848632812, 0.2521226704120636, 0.42655518651008606, -0.6388777494430542, -0.6179918646812439, -0.38494452834129333, 0.6501147150993347, 0.9615117311477661, 1.1151294708251953, 0.3737183213233948, -0.2577970027923584, 0.11831825226545334, -0.6464157104492188, 0.507420539855957, 0.653830885887146, 0.5543884038925171, 0.1300828605890274, 0.16402144730091095, -0.07373849302530289, 0.4553529620170593, 0.27478986978530884, -0.4463006854057312, 0.5030621290206909, -1.1013621091842651, -1.3111062049865723, 1.9028726816177368, -0.5848326683044434, 0.15575653314590454, -0.2054138332605362, -1.9375978708267212, -0.9725972414016724, 1.148333191871643, 0.8587434887886047, 0.08873487263917923, 0.11313517391681671, 0.8391277194023132, 0.41834965348243713, -0.491833359003067, -0.7242456078529358, 0.4339745342731476, -0.12599574029445648, 0.48483768105506897, -0.6169514656066895, -0.37609660625457764, -1.2795090675354004, 1.4540680646896362, -0.39848950505256653, 0.017224639654159546, 0.7792693972587585, 1.1691439151763916, 0.5087411403656006, 0.03748137876391411, -0.14332199096679688, 0.40861982107162476, -1.0670002698898315, 1.1454704999923706, 0.5336169600486755, -0.5213032364845276, 0.5490328669548035, 0.1757785677909851, -0.27297040820121765, 0.05559802055358887, -0.2610231339931488, 0.1515413075685501, -0.10455586761236191, 0.1335379183292389, 0.21918347477912903, -0.5235973596572876, 0.2410401850938797, -1.1857566833496094, -0.04378237947821617, 0.02465708926320076, 0.18097738921642303, -0.7090682983398438, 0.7395025491714478, -0.7373133301734924, -0.19861820340156555, 0.19552938640117645, -0.3580697476863861, 0.6552590131759644, 0.23690728843212128, -0.28386497497558594, -0.7545888423919678, 0.0498698391020298, 2.411123514175415, 0.1856141984462738, 0.14118735492229462, -0.07488250732421875, -0.6203669309616089, -0.10036133229732513, -1.0222365856170654, -0.5424028038978577, -0.7589797377586365, -0.3932601511478424, -1.0891433954238892, -1.4142584800720215, 0.08991611748933792, 0.7863413691520691, -0.22416910529136658, 0.8908411264419556, 0.8498305082321167, 0.15594351291656494, -0.3994460105895996, -0.5037019848823547, 0.19237658381462097, 0.06676863133907318, 0.7678884267807007, -0.9133869409561157, -0.8831757307052612, -0.8691731691360474, 0.15265962481498718, 0.5391619205474854, 0.031028110533952713, 0.209790900349617, 1.1524463891983032, -0.48593297600746155, -0.38457155227661133, -0.5538997650146484, 0.4381197690963745, 0.6234897971153259, 0.670525312423706, -1.0729109048843384, 0.06301335245370865, 0.3201353847980499, -0.3022184371948242, 0.37505120038986206, 0.09136155247688293, -0.3130898177623749, 0.9138597249984741, -1.0539159774780273, 1.2605764865875244, -0.3447383940219879, -0.9098793268203735, 0.7557529807090759, 0.002100839279592037, 0.361851304769516, -0.30182817578315735, -0.5354793667793274, -0.7150490283966064, 0.5322490334510803, -0.33742061257362366, 0.5214059948921204, 1.0599478483200073, -1.8352779150009155, 0.06703456491231918, -0.9402547478675842, 0.9163352847099304, 0.3702860474586487, 1.0228650569915771, 0.10839425772428513, 0.6464369893074036, 0.9780833125114441, 0.4805772006511688, -0.21465212106704712, 0.2184600830078125, 0.9288608431816101, 0.5214574933052063, -0.8744704723358154, 0.9159281253814697, -0.08262258768081665, 0.023761652410030365, 0.7915089726448059, -0.16169373691082, 0.2637697458267212, 1.080138087272644, -1.478305459022522, 0.542121946811676, -0.13539990782737732, 0.8156105875968933, 0.09951591491699219, 0.6216220259666443, 0.9162583947181702, -0.5214024186134338, -2.0240514278411865, -1.4543688297271729, 0.47235217690467834, -0.39188796281814575, 0.1393987238407135, 0.056534938514232635, 0.44711342453956604, -0.19746103882789612, -1.010924220085144, -0.15740840137004852, 0.00462582241743803, -0.8107880353927612, -1.3764876127243042, -0.073441281914711, -0.9642078876495361, -0.21495060622692108, 0.03291863203048706, -0.6539128422737122, 0.7686943411827087, -0.6828243732452393, 0.4433503746986389, -0.31047946214675903, -0.6741397380828857, 0.2227775603532791, -2.072627067565918, -0.33982986211776733, -0.6089632511138916, 0.4429812431335449, -0.5777727961540222, 0.4728151559829712, -0.9672764539718628, -0.1033489778637886, 1.1087828874588013, 0.22053535282611847, -0.25405746698379517, 0.3249707520008087, -0.3560807704925537, -1.0237631797790527, 0.455282598733902, -0.3100524842739105, -0.15915048122406006, -0.04677286744117737, 0.34199970960617065, 0.7053751945495605, 0.11106717586517334, 0.30263692140579224, 0.7233468890190125, -0.38472843170166016, -0.8393189311027527, -0.8202004432678223, -0.9068500399589539, 0.21619203686714172, -0.12829333543777466, -1.3398903608322144, 0.8468379974365234, 0.4037454426288605, -0.2908327579498291, 0.7015367746353149, 0.1757376790046692, 0.03953627496957779, 1.1111805438995361, 0.983697772026062, 0.3056308329105377, 0.2641311585903168, -0.7571821808815002, -0.189823180437088, -0.3368796408176422, 0.12449253350496292, 1.1170048713684082, -0.5956456065177917, -0.4935145080089569, 1.7958921194076538, 0.053581371903419495, 0.07361285388469696, 0.1000630110502243, 0.2718941271305084, 0.07459118962287903, -0.3210013806819916, 0.3509162366390228, -0.47599291801452637, -0.3909841775894165, 1.254096269607544, 1.1549979448318481, -1.3029768466949463, -0.22396141290664673, -0.6772394776344299, -0.11385709792375565, -0.2710513174533844, -0.28276970982551575, 0.0009007491171360016, -0.013326197862625122, -0.1025405302643776, -0.5913290977478027, 0.017865890637040138, 0.22833237051963806, 0.6804416179656982, -0.21450968086719513, 0.24207454919815063, 0.1328263282775879, 0.6174646615982056, 0.005595573224127293, 0.1406409740447998, -0.6028376817703247, -0.47729548811912537, -0.20602983236312866, -0.3148804008960724, 1.0564953088760376, -0.18185800313949585, -0.08418233692646027, 0.6365218162536621, 1.583996057510376, 0.01658051088452339, 0.6577000021934509, 0.0403132326900959, -0.5835514664649963, -0.3865295350551605, -0.9084506630897522, 1.1198828220367432, 0.2784745991230011, -0.19016331434249878, -0.10952751338481903, -0.4574323296546936, 0.3157188594341278, 1.495743989944458, 0.7081485986709595, 1.1783819198608398, -0.01365610584616661, 0.03933429718017578, -0.25764933228492737, -0.16075566411018372, 0.32796159386634827, -0.3398711681365967, -1.0571805238723755, -0.0005756495520472527, 0.21279123425483704, -1.1472893953323364, -0.032293204218149185, 1.154808759689331, -0.6154081225395203, 0.9988728165626526, 0.6350657939910889, 0.029812583699822426, -0.48998141288757324, -1.0428158044815063, -0.4930436313152313, -1.45804762840271, 0.9419925212860107, 0.9592119455337524, -0.14577245712280273, -0.5196511745452881, -0.6050693392753601, 0.6421005129814148, 1.4080348014831543, -0.6146328449249268, 0.10344082862138748, -1.3931516408920288, -0.6234742403030396, -0.02156488038599491, 0.6033833026885986, -0.060209859162569046, 0.07376366853713989, -0.8705475926399231, 0.7596730589866638, 0.14812996983528137, -0.15788909792900085, 0.7095578908920288, -0.004821435082703829, 0.13351412117481232, -0.2996644079685211, 0.31227630376815796, 0.13203708827495575, 0.5668236017227173, -0.5528604984283447, 0.6378733515739441, -0.08585318177938461, -0.09875916689634323, -0.5332220196723938, 0.8109267354011536, 0.6289668679237366, 0.29987046122550964, 0.4064777195453644, -0.34828102588653564, 1.0363154411315918, -0.0964924618601799, 0.15393365919589996, -1.296376347541809, 0.756646990776062, 0.44731685519218445, 0.9717525243759155, 0.48527392745018005, 0.39695021510124207, 0.8224329948425293, -0.08885574340820312, -0.6636476516723633, -0.10810679942369461, 0.6312446594238281, 0.5027072429656982, -0.9187825918197632, -0.02582421712577343, -0.3285145163536072, -0.7555926442146301, -0.4450538754463196, -0.14815597236156464, 0.49984094500541687, -0.30824539065361023, -0.06025420129299164, 1.063738226890564, -0.06024268642067909, -0.5582038164138794, -0.678149402141571, -0.30234774947166443, 0.5563556551933289, -0.696715235710144, -0.042526599019765854, -0.8816332221031189, -0.043718282133340836, 0.1275663673877716, -0.8301694393157959, -0.6259029507637024, -0.1932680606842041, -0.9987539052963257, 0.7908925414085388, -0.8615461587905884, -0.07499740272760391, 0.45856261253356934, 0.6593294143676758, 0.42391836643218994, -0.11339364945888519, 0.0756874606013298, 0.506513774394989, -0.046941496431827545, 0.5383931398391724, 0.10557632893323898, 0.3575678765773773, 0.08297205716371536, -1.020459771156311, 0.4412926435470581, -0.2790362238883972, 0.15451668202877045, -0.2450539916753769, -0.6353949904441833, 0.18457603454589844, -0.3731469511985779, -0.2274002581834793, 0.020657876506447792, -0.2790258228778839, 1.0289058685302734, 0.25710394978523254, -0.37806573510169983, 0.9426578283309937, 0.014754272997379303, -1.6365190744400024, 0.5101027488708496, -0.16200368106365204, -0.10854759067296982, 0.12261910736560822, 0.1755247265100479, 0.8300356864929199, -0.18222233653068542, 0.5574857592582703, 0.21124115586280823, 0.7469936609268188, 0.2974209487438202, -0.38333985209465027, 0.3413620591163635, 0.379973441362381, 1.1439043283462524, 1.4468477964401245, 0.9642112255096436, 0.3377752900123596, -2.030445098876953, 0.7561241388320923, -0.3747759163379669, 0.6063569188117981, 0.7626329660415649, 0.38126346468925476, 1.2975744009017944, -1.5657914876937866, -0.8076587319374084, 1.017298698425293, 0.16967636346817017, 0.2377808839082718, 0.4098368287086487, 0.19230437278747559, -0.8831733465194702, 0.330741286277771, 0.441497266292572, 0.012020062655210495, 0.533201277256012, -0.2953896224498749, -0.0640735924243927, 1.1433777809143066, -0.7081050276756287, 0.6157336235046387, -0.2403630167245865, -0.6100489497184753, 0.1433211863040924, -0.7846891283988953, -0.09634487330913544, 0.3552616536617279, 0.859009861946106, 0.4110354483127594, -0.07905611395835876, -1.900918960571289, -0.22807469964027405, -0.7267897725105286, 0.06951747089624405, 0.930809736251831, -0.5673187971115112, -0.04829297587275505, -1.4505754709243774, -0.30591490864753723, 0.8788877725601196, -0.5216205716133118, 0.11119414120912552, 0.002528965938836336, -1.0753110647201538, -0.2989974021911621, -0.46398186683654785, 1.314087986946106, 1.0249745845794678, 0.33806246519088745, 0.4565705955028534, -0.18083736300468445, -0.9857455492019653, 0.1849413812160492, -0.271621972322464, 0.2784469723701477, 0.4473741352558136, -1.4338737726211548, -1.4585771560668945, 0.9077575206756592, 1.0099979639053345, -0.1913556307554245, 0.9039101004600525, 1.5241469144821167, 1.1606405973434448, -0.8941335082054138, -0.025140225887298584, 0.15070845186710358, -1.1257266998291016, 0.030861351639032364, 0.772963285446167, -0.8031254410743713, 0.642645537853241, -0.6695237159729004, -2.2937355041503906, 1.4438997507095337, 0.27014124393463135, -0.974153995513916, 0.1129201352596283, 0.15306980907917023, 0.36282193660736084, 0.58220374584198, -0.8770818114280701, -0.5406322479248047, 0.6757853627204895, -0.8938706517219543, -0.20301435887813568, -0.09980785846710205, 0.1527918130159378, -0.01581684872508049, -0.23713332414627075, 1.073099136352539, 0.11133953183889389, -0.12298573553562164, 0.07782185822725296, 0.3382916748523712, -0.10985396802425385, 0.9907137751579285, 0.8274098038673401, -1.633716106414795, 0.6113394498825073, -1.260872721672058, -0.5920053124427795, -0.011104821227490902, 1.3551043272018433, 0.16015128791332245, -0.5156247019767761, -0.23629029095172882, -0.46840018033981323, -1.1085402965545654, -0.5109705924987793, -0.5202330946922302, 0.2933078706264496, 0.5999197959899902, -0.2286628782749176, 0.2936713993549347, -0.6763531565666199, -0.3081428110599518, -0.19486397504806519, 0.6199710965156555, 0.19007383286952972, -0.7361310720443726, -1.1233751773834229, 0.23290546238422394, -0.26785606145858765, -0.7873024940490723, -0.011984591372311115, -0.10662481933832169, -1.0260268449783325, -0.48138460516929626, -0.09623929113149643, -0.36837252974510193, 0.5831372737884521, -0.8568094372749329, 0.4292444884777069, 0.10267962515354156, -1.5856993198394775, 0.9888830184936523, -0.05363205075263977, -1.195689082145691, 0.2394731640815735, -1.6290847063064575, 1.0269758701324463, -0.7868434190750122, -0.12283109873533249, -0.2607502043247223, 0.5458997488021851, -1.3341565132141113, -0.36369627714157104, -1.0779422521591187, -0.3139880895614624, 1.2743011713027954, 0.7714138031005859, -0.8707507252693176, 0.8621019721031189, 0.5661536455154419, -1.2771563529968262, -0.6334899663925171, 0.5743827223777771, -0.8961127400398254, 0.12106692045927048, 0.3475818336009979, 0.056697431951761246, 0.3793252408504486, 1.8259557485580444, 0.29062211513519287, 0.9985817074775696, -0.8413333892822266, -0.041667986661195755, 0.0511515811085701, -0.6491605043411255, -0.9772047400474548, 0.7643071413040161, -0.8719163537025452, -0.7188349962234497, 0.5550318360328674, -0.7010434865951538, -0.4210020899772644, 0.5162485837936401, 1.4634146690368652, -0.6070285439491272, 0.6023414134979248, 0.03201695531606674, 0.21425677835941315, -0.22700750827789307, 0.2621961832046509, 0.020553164184093475, -0.9897480010986328, 0.891470730304718, 0.7672560811042786, 0.11221943795681, -1.019973874092102, 0.22347509860992432, -0.2856366038322449, 0.19229091703891754, -0.3249436020851135, 0.8302202224731445, 1.242989182472229, -0.43764209747314453, -0.21813319623470306, 1.1361607313156128, 1.2765989303588867, -0.08829426020383835, -0.5069109201431274, 0.14377570152282715, -0.17842598259449005, -0.2045985907316208, -0.4187905788421631, -0.31179532408714294, -0.5418733358383179, 0.902204155921936, -0.3472207486629486, 0.25541824102401733, -0.21543775498867035, 0.4934963881969452, -0.4837823510169983, 0.05230370908975601, 0.7076534032821655, 0.14516489207744598, -0.665457010269165, 1.2230058908462524, 0.2173212319612503, 0.35724931955337524, 0.049064166843891144, -0.13644148409366608, 0.3156781494617462, -0.0030908645130693913, 0.4301382601261139, 0.7211393713951111, -0.5160663723945618, 0.09519831836223602, 0.5238486528396606, -0.04002239555120468, -0.062348756939172745, -0.45267194509506226, -1.532791256904602, 0.0688047930598259, -0.44665536284446716, -0.6928303837776184, 0.2907729148864746, -0.5667514801025391, -0.1490708440542221, 0.6234884858131409, -0.056362416595220566, -0.1558508723974228, -0.71608966588974, -0.19769208133220673, 0.34621331095695496, 0.7820979356765747, 0.5362063050270081, -0.28320780396461487, 1.060811161994934, -0.28583207726478577, -0.16683192551136017, 0.04592718556523323, 0.4719812572002411, 0.23631076514720917, 0.25558722019195557, 0.26568934321403503, -0.7160906791687012, -0.3070113956928253, 0.23357616364955902, -0.7018648982048035, 0.9115132093429565, -0.18100255727767944, -0.6735654473304749, 0.02604605443775654, -0.8041542172431946, -0.018823644146323204, 0.16307662427425385, 1.014649510383606, -0.8760402798652649, -0.7031356692314148, -0.014403356239199638, -0.12876848876476288, -0.2644272744655609, 0.9650941491127014, -0.12906552851200104, 0.9058736562728882, 0.048786710947752, -0.31234028935432434, -0.8504494428634644, -0.2250707745552063, 0.6311531066894531, -0.5641337037086487, 0.8711364269256592, -1.1977711915969849, 0.07035910338163376, -0.6384630799293518, -0.7990877628326416, -0.1226026713848114, 0.47818464040756226, 0.38747042417526245, -0.0713181346654892, -0.5592688918113708, -1.0663096904754639, -0.8166464567184448, 0.7544554471969604, 0.6379730701446533, -0.03826790675520897, 0.6966906785964966, -0.09816507250070572, -0.8787383437156677, 0.3646233081817627, 0.11948954313993454, -0.32705259323120117, -0.39166197180747986, 1.435708999633789, 1.7449172735214233, -0.03479434922337532, 0.5416167378425598, -0.12864693999290466, 0.9550771117210388, -0.9666852355003357, -1.0738481283187866, -0.35538777709007263, -0.20835992693901062, -0.28016310930252075], [0.4308371841907501, 1.6836799383163452, -1.7029261589050293, -1.4550296068191528, 0.07711485773324966, -0.1753920018672943, 0.15371018648147583, 0.016554828733205795, -0.4272540509700775, -1.384169101715088, -1.1140164136886597, 0.5846845507621765, 1.4013333320617676, 1.3887771368026733, 0.4875941574573517, 0.7612454891204834, 0.38878145813941956, -0.5002551674842834, 0.5456055402755737, 0.5477280616760254, 0.41512197256088257, -0.5135968327522278, -0.7026165127754211, -0.20733945071697235, 0.06419132649898529, 0.8509064316749573, -1.5792912244796753, -0.14680801331996918, -1.4660460948944092, -1.2491534948349, 0.8292803764343262, -0.9031379818916321, 0.11910167336463928, -0.40744489431381226, -2.177187204360962, -1.0306379795074463, 1.0560041666030884, -0.002367335371673107, -0.8614645004272461, 1.3973013162612915, 1.1884357929229736, 0.9361500144004822, 0.10703600943088531, -1.3503988981246948, 0.8524095416069031, -0.4104095697402954, -0.25497326254844666, -1.0900540351867676, -0.539141833782196, -0.8478646278381348, 0.7375852465629578, 0.08729584515094757, -0.07074366509914398, 0.46237611770629883, 1.393903136253357, 0.2740899324417114, -0.7568125128746033, 0.7032831311225891, -0.2954361140727997, -0.9365924000740051, 1.2766975164413452, 1.0849756002426147, -0.7509099841117859, 0.43449708819389343, 0.2026059627532959, 0.22231914103031158, -0.3316742181777954, 0.4246371388435364, -0.8834546804428101, -0.046915389597415924, 0.45784085988998413, 0.3940376341342926, -0.18373197317123413, -0.9169543385505676, -1.6068474054336548, 0.7596437931060791, 0.6504707336425781, -0.03941316157579422, 0.06527981907129288, 1.530807375907898, -0.47189974784851074, -0.34420397877693176, 0.19355647265911102, -0.8316946625709534, 0.6700124740600586, 0.1383066326379776, -0.38737401366233826, -0.7859520316123962, -0.6797078251838684, 1.7054427862167358, -0.3306439220905304, 0.19669735431671143, 0.5338705778121948, -0.30202043056488037, -0.8463249206542969, -0.9072449207305908, 0.10598240792751312, -0.8802511692047119, -0.483185350894928, -0.449564129114151, -1.183949589729309, -0.3778197467327118, 0.6838338971138, 0.5028718709945679, 0.49917250871658325, 1.297661542892456, 0.4663740396499634, -1.2012962102890015, -0.9498969912528992, 0.6919785737991333, 0.5622458457946777, -0.3582419455051422, -1.0265485048294067, -1.0009256601333618, -0.29744431376457214, 0.6570718288421631, 1.109944462776184, -0.5152180194854736, 0.7931225299835205, 0.7590828537940979, -1.0193411111831665, -0.9505419135093689, -0.945109486579895, 0.5957397222518921, 1.3723324537277222, 0.17089340090751648, -0.8246891498565674, -0.22927334904670715, -0.12403787672519684, 0.012088673189282417, 0.33848077058792114, -0.12648551166057587, -0.9923191666603088, 1.085191011428833, 0.06744805723428726, 1.5791082382202148, -0.0700441524386406, -0.642646074295044, 0.6914844512939453, -0.5691895484924316, -0.07424362748861313, -0.36596283316612244, -0.5887494683265686, -1.2829688787460327, 0.957010805606842, 0.3987419903278351, -0.39469754695892334, 0.07948192954063416, -1.145697832107544, 0.24045926332473755, -1.3052494525909424, 0.6145579814910889, -0.30924296379089355, 1.167112112045288, -0.45793184638023376, 0.9242926239967346, 0.5136125683784485, -0.28833824396133423, -0.2897312343120575, 0.23127137124538422, 0.9350107908248901, 0.3948858678340912, -1.106961965560913, 1.3525360822677612, -0.0433368980884552, -0.3285854458808899, 1.1870110034942627, -0.11823248863220215, -0.23667064309120178, 0.5815685987472534, -0.9814608097076416, 0.07886555045843124, -0.057748712599277496, 0.5151267647743225, -0.028286410495638847, -0.18396028876304626, 0.9303454160690308, -1.1533868312835693, -0.14242549240589142, -0.8270567655563354, 0.43079912662506104, -0.8870343565940857, -0.2000037431716919, -0.04014723375439644, 0.2718038856983185, -0.0074844881892204285, 0.29074805974960327, -0.538046658039093, -0.3072234094142914, -0.4073692858219147, -0.7797423601150513, -0.1414867490530014, -0.8752419948577881, -0.021050387993454933, -0.6225675940513611, -1.533186674118042, 0.5389714241027832, -0.28592321276664734, 0.20168136060237885, -0.035676706582307816, -0.005956241860985756, -0.14126981794834137, -1.8151602745056152, 0.019012177363038063, -1.0185229778289795, 1.4058195352554321, -0.6935325264930725, 0.006405471358448267, -0.7474584579467773, 0.13801422715187073, 1.322813868522644, -0.09880692511796951, -0.28738918900489807, 0.719344973564148, 0.5701894164085388, -1.0283619165420532, -0.32258328795433044, 0.009799710474908352, 0.1185510903596878, 0.12159557640552521, 1.0909550189971924, 0.19098906219005585, 1.087350606918335, 0.5057781934738159, 0.42345187067985535, 0.010679719038307667, -1.3391425609588623, -0.1419886201620102, -1.4369639158248901, -0.3704040050506592, -1.190809726715088, -0.9951505661010742, 1.2580581903457642, 1.4825403690338135, -0.4395482838153839, 1.1080875396728516, -0.3169824182987213, 0.41410568356513977, 1.063132882118225, 0.7156272530555725, 0.5275242328643799, 0.18869563937187195, -0.4951200485229492, 0.43257981538772583, -0.42192065715789795, 0.13179390132427216, 0.6481651067733765, -0.38334324955940247, -1.382094144821167, 1.320170283317566, 0.3424740135669708, 0.09607049822807312, 0.8987010717391968, -0.3339579403400421, 0.4329577684402466, -0.8584548830986023, 0.18715499341487885, 0.4664277732372284, -0.7388087511062622, 0.8711040019989014, 1.0159777402877808, -1.7065430879592896, -0.6493551731109619, -0.5059154033660889, -0.24654661118984222, -0.672661304473877, -0.1254415512084961, -0.8821586966514587, 0.2828434407711029, 0.07078065723180771, 0.0013828454539179802, -0.17731714248657227, 0.11748622357845306, 0.8536440134048462, 0.2658179998397827, 0.28511345386505127, -0.3835747241973877, 0.8165494203567505, -0.01424291543662548, 0.13649222254753113, -0.22899229824543, -1.7977076768875122, -0.9694275259971619, -0.6754710078239441, 0.9705262184143066, -0.2852768301963806, -0.6991484761238098, 0.6041077375411987, 0.9867709279060364, -0.9441149234771729, 0.1242731437087059, -0.11374593526124954, -0.45107898116111755, -0.30591028928756714, 0.3462921977043152, 0.5134798288345337, 0.28978797793388367, -0.7685520052909851, -0.4741049110889435, -0.5203646421432495, 0.030405772849917412, 1.2300926446914673, 0.9806859493255615, 0.997249186038971, 0.048352476209402084, 0.19377991557121277, -0.23493778705596924, 0.4639773666858673, -0.08094748109579086, 0.08475783467292786, -0.4821903109550476, -0.556564450263977, 0.3371346890926361, -0.19545148313045502, 0.3552296757698059, 1.4171258211135864, -0.10343506932258606, 1.191275715827942, 0.3714528977870941, -0.4812827706336975, -1.1998836994171143, -0.7788407802581787, 0.5169846415519714, -0.8715108633041382, 0.6303921341896057, 0.8221417665481567, -0.7679275870323181, 0.5979924201965332, 0.19845464825630188, -0.15686652064323425, 0.6117455363273621, -0.4785097539424896, 0.22008247673511505, -0.9706960916519165, -0.34555232524871826, -0.12151410430669785, 1.292196273803711, 0.1829320192337036, 0.1141606792807579, -0.23179736733436584, 0.22489170730113983, -0.2605440020561218, 0.26062121987342834, -0.6724403500556946, 0.7019523978233337, 0.07658270746469498, -0.8202282786369324, -0.4074684977531433, 0.7059182524681091, 1.180344581604004, -0.39142942428588867, -0.09728335589170456, -1.0908329486846924, -0.11154085397720337, -0.5788688063621521, 0.6550114750862122, 0.05758211389183998, 1.3912864923477173, 0.06820003688335419, 0.4148702025413513, 0.6351811289787292, -0.03248482570052147, 0.2518194317817688, -1.1550976037979126, 0.819339394569397, 0.22997361421585083, 1.3182181119918823, 0.6981020569801331, -0.23109275102615356, 0.6368584632873535, -0.1876527965068817, -0.3312353789806366, 0.2996170222759247, 0.43120166659355164, 0.051454298198223114, -0.7841431498527527, -0.6090661287307739, 0.8866199851036072, -0.08344593644142151, -0.20779600739479065, -0.08296291530132294, 0.4938559830188751, -0.39378806948661804, -0.2867398262023926, 0.9362639784812927, -0.11589542776346207, -0.0020751121919602156, 0.01996839977800846, 0.21487437188625336, 0.08298778533935547, -0.1870649755001068, 0.2931920289993286, -0.6302239298820496, -0.012397090904414654, 0.30606192350387573, -0.37742388248443604, -1.3673657178878784, 0.1618967056274414, -0.3174312710762024, 0.7755091786384583, -1.1747362613677979, -0.3442560136318207, -0.43804386258125305, -0.12577080726623535, 0.16995972394943237, 0.3697040379047394, 0.21818387508392334, 0.36749714612960815, 0.09980323165655136, -0.16565750539302826, 0.7231826186180115, 0.8874637484550476, -0.08227386325597763, -0.3435918986797333, -0.5209584832191467, -0.22888188064098358, 0.3786729574203491, -0.4789263606071472, -0.5342680215835571, -0.020331259816884995, -0.8073490858078003, 0.4586835503578186, 0.012632342055439949, -0.02863331511616707, 0.6781108975410461, -0.11847052723169327, 0.0840829461812973, 0.940114438533783, -0.26444530487060547, -1.4389857053756714, 0.42958441376686096, 0.5037882924079895, 0.012628371827304363, -0.3182956576347351, 0.5830867886543274, 0.22429174184799194, 0.8413786888122559, 1.0021345615386963, -0.39641985297203064, 1.2231130599975586, 0.2883210778236389, -0.9434978365898132, -0.481580525636673, 0.991483211517334, 0.8006548285484314, 1.1001371145248413, 1.1178789138793945, -0.536333441734314, -1.5122342109680176, 1.6539169549942017, -0.13900992274284363, 0.9304450750350952, 0.6367666125297546, 0.7156631350517273, 1.7799147367477417, -1.1954245567321777, -0.21814927458763123, 0.22098925709724426, -0.3600168228149414, 0.1350068300962448, 0.5777897238731384, 0.23340541124343872, -1.3552987575531006, -0.48971959948539734, 0.45904576778411865, -0.0029485486447811127, 0.7637300491333008, -1.2449783086776733, 0.10566152632236481, 0.24553176760673523, -0.2767745554447174, 0.6337520480155945, -0.8415507078170776, -0.11056460440158844, 1.3159362077713013, -0.07295021414756775, 0.18006207048892975, 0.42538949847221375, 0.17374153435230255, 1.8066648244857788, -0.6050220131874084, -1.5208159685134888, 0.3210163414478302, -1.0006818771362305, 0.5464810132980347, 0.19199298322200775, -0.42824503779411316, -0.37717264890670776, -1.192615270614624, 0.03325160965323448, -0.18581777811050415, -0.288591206073761, 0.4843428134918213, 0.5339744091033936, -1.048954963684082, -0.03677964210510254, 0.6237807869911194, 1.078224539756775, 0.41938918828964233, 0.23363015055656433, 0.5996397733688354, -0.055539537221193314, -0.040366820991039276, 0.3901781439781189, -0.11929157376289368, -0.7402417659759521, 0.7372498512268066, -1.2701295614242554, -0.942891538143158, 0.5572445392608643, 1.5083003044128418, 1.0213768482208252, -0.061344701796770096, 0.8048405051231384, 1.5876805782318115, -1.4272531270980835, -0.8760015964508057, 0.5659126043319702, -0.6162512898445129, 0.3282698392868042, 0.13283957540988922, -1.066554307937622, -0.9207713603973389, -0.121955007314682, -1.7099584341049194, 1.4814586639404297, -0.29662010073661804, -0.7526230812072754, 0.434190958738327, 0.9267160892486572, -0.16215772926807404, 0.8917007446289062, -0.8585970401763916, 0.5035281777381897, 0.7017648816108704, -0.7251337170600891, -1.2020299434661865, 0.5383118987083435, 0.43094655871391296, 0.7459874749183655, -0.5513635873794556, 0.34868738055229187, -0.18216101825237274, -0.34267017245292664, 0.6095904111862183, 0.005140395835042, 0.9844710230827332, 0.733824610710144, 1.0328267812728882, -1.6399180889129639, -0.34847962856292725, -0.7111164927482605, 0.44666728377342224, 0.34760892391204834, 1.3001946210861206, -0.20441417396068573, -0.7290084958076477, -0.22805574536323547, 0.06435124576091766, -0.4207548499107361, -0.01931746117770672, -1.362830400466919, 1.44234299659729, 0.5880577564239502, -0.44373318552970886, 0.48167064785957336, -0.29488638043403625, -0.3367762863636017, -0.2221505045890808, 0.12171301245689392, 0.7907523512840271, -1.4198676347732544, -0.30774444341659546, 0.2716304659843445, -0.010533622466027737, 0.42921486496925354, 0.6944156885147095, -0.6272174119949341, -0.7947943806648254, -1.592139720916748, 0.034483201801776886, 0.11078286916017532, 0.7217298746109009, -0.8442464470863342, 0.11136968433856964, -0.10537730157375336, -1.5720866918563843, 0.3292246162891388, -0.36277344822883606, -0.9107255339622498, -1.2120810747146606, -0.7860556244850159, 1.1673136949539185, 0.727847695350647, -0.07747098058462143, 0.5902160406112671, 0.9166382551193237, -0.31925877928733826, -0.16527895629405975, -1.1665229797363281, 0.5714554190635681, 0.4296330213546753, 1.310014247894287, -0.9417871832847595, 0.6034398078918457, 0.3055967092514038, -0.38150396943092346, -0.2540576159954071, 0.13021095097064972, -0.8962231278419495, 0.08981268107891083, 0.5248162150382996, 0.3504140079021454, 0.19407665729522705, 1.5214953422546387, 0.21050803363323212, 1.2515785694122314, 0.010545316152274609, 0.5772616267204285, -0.22192582488059998, -0.1523582488298416, -0.7346625924110413, -0.01261525135487318, -1.4984033107757568, -0.6688219904899597, 0.09376318007707596, -0.7445990443229675, -0.4575440287590027, 0.7921919226646423, 0.8884986639022827, -1.1290093660354614, -0.23253373801708221, 0.17803853750228882, 0.702751636505127, -0.8292527198791504, 0.7950356006622314, -0.29896020889282227, -0.44597238302230835, -0.2274317592382431, -0.2755216658115387, 0.2139577716588974, -0.5621225833892822, 0.4778626561164856, 0.15825212001800537, 0.466913640499115, -0.6069642305374146, 0.5273387432098389, 0.5426173806190491, -0.3425009846687317, -0.4203151762485504, 1.2788382768630981, 1.5609360933303833, -0.05813021957874298, 0.29359519481658936, 0.40881773829460144, -0.23237916827201843, 0.19451770186424255, -0.2300175577402115, -0.3257075548171997, -0.1495753675699234, 0.6921480894088745, -0.4378877878189087, 0.18590489029884338, -1.2639596462249756, 0.2985565960407257, 0.03477706015110016, -0.16069185733795166, 0.9015993475914001, 0.5725378394126892, -0.43781766295433044, 0.10391706973314285, 0.14275971055030823, -0.8377677798271179, 0.11088981479406357, 0.7483056783676147, 0.7588244080543518, 0.3038696348667145, 0.2869682312011719, 0.35917994379997253, -0.3545948266983032, 0.521411120891571, 0.42674314975738525, -0.7461549639701843, -0.2343626767396927, -0.9168721437454224, -1.4368784427642822, -0.9874815344810486, -0.09941872209310532, -1.1455923318862915, 0.2108195722103119, -1.284537434577942, -0.9001359939575195, -0.14609238505363464, -0.28163209557533264, 0.42741045355796814, -0.5195810794830322, 0.1860281229019165, 0.07739952206611633, 0.6959598660469055, 1.9614657163619995, 0.1971464455127716, 0.894421398639679, 0.81280916929245, 0.20123650133609772, 0.11331118643283844, -0.0023718448355793953, -0.486312597990036, 0.2908453941345215, -0.11541222780942917, -0.6236847043037415, -0.6470170617103577, -0.9822112321853638, -0.6651933193206787, 0.4184924066066742, 0.10072437673807144, 0.8205451369285583, 0.0018635555170476437, -0.9225295186042786, -0.7059430480003357, 0.9393539428710938, 0.45050716400146484, -0.7744744420051575, -0.1722014844417572, -0.35951346158981323, -0.02402466908097267, -0.08706893026828766, 1.4583444595336914, -0.6254830360412598, 0.6533477306365967, 0.5883951187133789, 0.06006404757499695, -0.7580312490463257, -0.13931111991405487, 0.7167037725448608, -0.3188699185848236, 0.6767424941062927, -0.8802337646484375, -0.45643749833106995, -0.0716346725821495, -0.5911647081375122, 0.3937900960445404, 0.2846716046333313, -0.7828740477561951, -0.11550115793943405, -0.40572693943977356, -0.8417315483093262, -0.8298861384391785, 0.3473077118396759, 0.3146885931491852, -0.29024070501327515, 0.432374507188797, -0.12425991892814636, -0.5394886136054993, 0.4512074589729309, 0.7279386520385742, 0.342875599861145, 0.20223268866539001, 1.87618088722229, 1.950203776359558, 0.016833683475852013, -0.684032678604126, -0.8274582028388977, 1.025221824645996, -0.48110973834991455, -0.6524160504341125, -0.590337336063385, 0.18992562592029572, 0.8425493240356445], [0.18658006191253662, 1.3414350748062134, -1.9397261142730713, -0.5952227711677551, 0.2995772659778595, -0.08945487439632416, 0.6466031670570374, 0.3141251504421234, -0.45091524720191956, -0.45327046513557434, -0.47506794333457947, 0.059153977781534195, -0.06047692149877548, 0.7837308645248413, -0.1133902296423912, 0.19701538980007172, 0.4890182614326477, 0.6887013912200928, 0.4408614933490753, 1.7044486999511719, 0.9346920847892761, -1.5740324258804321, 0.6164708733558655, -0.27796128392219543, -0.050880882889032364, 0.8688360452651978, -1.042934536933899, -0.044819582253694534, -1.3575687408447266, -0.7963465452194214, 1.7687864303588867, 0.18799039721488953, -0.3108948767185211, -0.34123918414115906, -0.6847721934318542, -1.0069812536239624, 0.70826256275177, 0.305292010307312, 0.8133211731910706, 0.33535125851631165, 1.5306607484817505, -0.12329352647066116, -0.28708428144454956, -1.2243907451629639, 1.218659520149231, 0.0865032970905304, 0.2684909701347351, -1.2739427089691162, 0.11096735298633575, -0.9895827174186707, 1.0315991640090942, -0.3296564817428589, 0.41782429814338684, 1.2418630123138428, 1.3421539068222046, -0.7390201687812805, -0.27710482478141785, 0.009341014549136162, -0.27700942754745483, -0.8794262409210205, 1.1395137310028076, 0.40573087334632874, -0.04642604663968086, 1.0698156356811523, 0.7218225598335266, -0.7314786314964294, 1.3169342279434204, -0.06615307927131653, -0.04813079163432121, 0.08072829991579056, 0.4615371525287628, 0.1287519931793213, -1.0910829305648804, -0.1988162249326706, -0.33323079347610474, 0.4273451268672943, -0.11819043010473251, 0.7411797642707825, 0.10602501779794693, 0.7779281735420227, -0.2766971290111542, -0.13906380534172058, 0.09077051281929016, -0.5578331351280212, 0.28527480363845825, 0.27248460054397583, 0.0821763426065445, -0.8155592679977417, -0.12013035267591476, 1.5593931674957275, -0.44920170307159424, -0.10751713812351227, 0.0389091782271862, -0.8152275085449219, -1.200087547302246, -0.5395050048828125, 0.1810791939496994, -0.1798126995563507, -0.4849715828895569, -0.37966933846473694, -0.555152416229248, -1.4856667518615723, 0.3086157739162445, -0.7224195599555969, 0.9280920028686523, 1.6547609567642212, -0.34875255823135376, -0.4667828679084778, -0.916486382484436, 0.4665583670139313, 0.16905079782009125, -0.2849680781364441, -0.47866228222846985, -0.7270398139953613, -0.1819787323474884, 0.5856851935386658, 0.8078840970993042, -0.3552056849002838, 0.05305926874279976, 0.2728063464164734, -0.470647931098938, -0.16523019969463348, -0.982801616191864, 0.03315609693527222, 1.4830893278121948, 0.4465465247631073, -0.6852500438690186, -0.18116140365600586, 0.009413214400410652, -0.08060847222805023, 0.2544805109500885, 0.6814787983894348, -1.2512233257293701, 0.435829758644104, -0.6768349409103394, 1.5204898118972778, -0.5436753034591675, -1.011053442955017, -0.2732592225074768, -0.4900342524051666, 0.7062625885009766, -0.9812374711036682, -0.8001322746276855, -0.3637246787548065, 0.15883545577526093, -0.1712888479232788, 0.2504282295703888, 0.02451423555612564, -1.3903062343597412, 0.408114492893219, -1.4714192152023315, 0.39302149415016174, -0.35964927077293396, 1.0329360961914062, 0.04883740097284317, -0.0732128769159317, 0.44790762662887573, 0.3370630443096161, -0.033829912543296814, 0.049486491829156876, 0.5904768109321594, 0.07420722395181656, -0.8072124719619751, 0.9628410339355469, 0.2866280674934387, -0.7662004232406616, 0.2564980089664459, 0.3905380070209503, -0.527585506439209, 0.5012124180793762, -0.8391340374946594, -0.4727311134338379, -0.31912466883659363, 1.2769713401794434, -0.16936199367046356, -0.7749125957489014, 0.6803054213523865, -0.2544557452201843, -1.159151315689087, -1.922108769416809, -0.011716814711689949, 0.18483395874500275, 0.2896670401096344, -0.047290537506341934, 0.12292251735925674, 0.3001876175403595, 0.07216356694698334, -0.3013368844985962, -1.1674723625183105, -0.2662256956100464, -0.7029610276222229, -0.531805157661438, -1.0558103322982788, 0.5042219758033752, -0.3779129683971405, -1.0682207345962524, 0.47634395956993103, -0.6417328119277954, 0.1411413848400116, -0.022252390161156654, 0.4745086431503296, -0.026858918368816376, -2.05607533454895, 0.8441489338874817, -0.890444815158844, -0.011428692378103733, -1.7412694692611694, 0.6077801585197449, -1.1534690856933594, 0.15142636001110077, 0.6829003691673279, 0.024424007162451744, -1.0073720216751099, 0.5345465540885925, -0.1238446980714798, -1.74880051612854, 0.3331044614315033, 0.16500195860862732, -0.03916904702782631, 0.4354948401451111, -0.21174107491970062, 0.2727084755897522, 1.1782724857330322, 0.4832189679145813, 0.8984192609786987, 0.13066573441028595, -0.8398861885070801, -0.14071066677570343, -0.43597540259361267, 0.023973356932401657, -0.5701569318771362, -0.7316796779632568, 0.49073806405067444, -0.11019952595233917, -1.3081114292144775, 0.7702704668045044, 0.1558431088924408, -0.20888766646385193, 0.49188461899757385, 1.4731996059417725, 0.49093160033226013, 0.25202274322509766, -0.2996562421321869, -0.4542037546634674, 0.0279395654797554, -0.030728761106729507, 0.7098554968833923, 0.2054973691701889, 0.4317263960838318, 1.375691294670105, 0.7021304965019226, -0.26599517464637756, 0.21568803489208221, -0.24133507907390594, 0.5118847489356995, -0.90953129529953, 0.3840799331665039, -0.2692091166973114, -0.7014678120613098, 1.1233991384506226, 1.0140790939331055, -1.085806965827942, -0.581396758556366, -0.5981941819190979, 0.706307053565979, -0.20755071938037872, 0.347501277923584, -0.6041038036346436, 0.18776161968708038, 0.038418810814619064, 0.11448762565851212, 0.1681278645992279, 0.011147785000503063, 1.2333859205245972, -0.18796338140964508, -0.5170783400535583, -0.10047558695077896, 0.8701555132865906, 0.23426023125648499, 0.7717241048812866, -0.45107266306877136, -1.776215672492981, -0.6101356148719788, 0.08755094558000565, 0.6202551126480103, -0.41712403297424316, -0.3406447470188141, 0.46121838688850403, 0.8428266048431396, -0.1223827451467514, 0.6047399640083313, 1.0092828273773193, 0.07104382663965225, -0.9898298978805542, -0.39906904101371765, 1.1962412595748901, 0.34159037470817566, -1.521539330482483, -0.9887728691101074, -0.25814083218574524, 0.5823174715042114, 1.3126881122589111, 0.8677555918693542, 1.1133712530136108, -0.3322662115097046, -0.21255919337272644, -1.096521019935608, 0.20963455736637115, -1.0510811805725098, -0.1257307380437851, 0.3555248975753784, -0.6222400665283203, -0.018208052963018417, -0.2547791302204132, -0.15926924347877502, 1.7928414344787598, 0.22411617636680603, 0.8231106996536255, 0.640640914440155, -0.37418314814567566, -1.1499671936035156, -0.6025257110595703, 0.2274988889694214, -1.4926620721817017, 1.1483173370361328, 1.014478325843811, -0.6708093881607056, -0.04444707930088043, 0.24059636890888214, 0.7094975113868713, -0.04196738824248314, -0.45287075638771057, 0.3685019314289093, -1.5923837423324585, -0.3673672080039978, -0.6260769367218018, 0.9500349164009094, -0.5220842361450195, 0.002659913618117571, 0.33378279209136963, -0.03591014817357063, 0.7839934825897217, -0.30982521176338196, 0.26074761152267456, 0.002674608025699854, -0.05744677409529686, -0.024778295308351517, -0.37837037444114685, 0.702400267124176, 0.5072702169418335, 0.15944406390190125, -0.28972989320755005, -0.053939592093229294, -0.12550535798072815, -0.9929609894752502, 0.4280388355255127, -0.7494422197341919, 0.664343535900116, 0.5332285165786743, 0.27383023500442505, 0.923542857170105, -0.24770604074001312, 0.22697529196739197, -1.3403244018554688, 0.6308287978172302, 1.345035195350647, 1.4848060607910156, 0.65627521276474, 0.3803020417690277, 0.030703919008374214, 0.041873637586832047, 0.5229811072349548, 0.1949625313282013, 1.053063154220581, 0.16957364976406097, -0.12231467664241791, -0.3723917007446289, -0.521711528301239, 0.07531049102544785, 0.11795830726623535, 0.25781816244125366, 0.0199421513825655, -0.5022449493408203, -0.4573257863521576, 1.0906291007995605, 0.05785341188311577, -0.253343403339386, -0.6059979796409607, -0.1920488476753235, 0.7727189064025879, -0.12360785156488419, -0.5881432890892029, -0.6189277172088623, -0.3999535143375397, 0.40792468190193176, -0.6994731426239014, -0.5571340322494507, 0.1990608423948288, 0.25287267565727234, 0.4886932373046875, -1.004310965538025, 0.24629701673984528, -0.8131957650184631, 0.7640272378921509, 1.0691022872924805, -0.4407561719417572, 0.2967965602874756, -0.4713210463523865, -0.8060567378997803, -0.01428372785449028, 0.07482628524303436, 0.7918003797531128, 0.5128079652786255, -0.4090668559074402, -0.18037696182727814, 0.20419923961162567, 0.6124564409255981, -0.260663777589798, -0.2667924165725708, 0.18084578216075897, -1.093537449836731, 0.23695306479930878, 0.05137086659669876, 0.08325754106044769, 1.232166051864624, 0.13489875197410583, -0.7466655373573303, 0.2962287664413452, 0.31764066219329834, -0.8509632349014282, -0.3450639545917511, 0.10017380118370056, -0.29930487275123596, 0.2163669914007187, 0.19295212626457214, 0.44652441143989563, 0.20290198922157288, 0.13542434573173523, -0.4444327652454376, 1.024471402168274, 0.788716733455658, -0.527629017829895, 0.4156338572502136, 0.9192416667938232, 0.583976149559021, 1.4373905658721924, 1.0226080417633057, -0.3327910602092743, -1.3014997243881226, 0.6839008927345276, -0.7283781170845032, 0.3939243257045746, 0.8552050590515137, -0.08836060762405396, 0.9194610714912415, -1.2366188764572144, -0.5230827927589417, 0.4868423640727997, -0.03474068641662598, 0.5539448857307434, 0.021971572190523148, -0.30637064576148987, -0.4244205355644226, 0.24833282828330994, -0.0626705214381218, -0.05906740576028824, 0.898581862449646, -0.032159239053726196, 0.13573399186134338, 0.9548192620277405, -0.7704439759254456, 0.5383163094520569, -0.6677955985069275, 0.2187524288892746, 0.4264862537384033, -0.7834135890007019, -0.2361842691898346, 0.11477252095937729, 1.0414379835128784, 2.1250927448272705, -0.3151054084300995, -1.160783290863037, 0.14952625334262848, -0.6954222321510315, -0.06509704887866974, -0.27600011229515076, -0.5061296820640564, -0.26796409487724304, -1.0125610828399658, -0.22753308713436127, 0.9156633615493774, -0.07506304234266281, 0.09021048992872238, -0.12487316876649857, -0.6134023070335388, 0.031394291669130325, 0.06814876943826675, 0.5002973079681396, 1.0466991662979126, 0.3584654629230499, 0.051302216947078705, 0.4155457317829132, -1.1251940727233887, -0.09961596876382828, 0.4324776828289032, -0.1609058827161789, -0.5091567039489746, -0.9758585095405579, -0.374372661113739, 1.0320560932159424, 1.3583488464355469, 0.11408685892820358, 0.47237932682037354, 1.4709357023239136, 1.1608617305755615, -0.6897462606430054, -0.6339424252510071, 0.020920606330037117, -0.5430793762207031, -0.13818569481372833, 0.4747670590877533, -0.8172630071640015, -0.11639793962240219, -0.8139735460281372, -2.6581499576568604, 1.4184951782226562, -0.05150965228676796, -0.6483380794525146, 1.236991286277771, 0.4014693796634674, 0.6404839158058167, 0.5035044550895691, -0.7220516204833984, -0.19849807024002075, 0.08883439749479294, -0.3370918035507202, -2.0828120708465576, 0.9865601658821106, 0.2702280580997467, 0.5718598961830139, -0.6842322945594788, 0.07039720565080643, 0.11750520765781403, -0.0343293733894825, -0.25760042667388916, 0.12022623419761658, 0.9205209612846375, 0.8894037008285522, 0.5685404539108276, -0.8379980325698853, 0.28654977679252625, -0.6265783309936523, -0.34399667382240295, 0.3208009600639343, 1.058525800704956, 0.510776698589325, -0.6376982927322388, 0.5088658928871155, -0.23536553978919983, -0.37474262714385986, -0.14688336849212646, -0.4740223288536072, 0.881463348865509, 0.43982750177383423, 0.21654736995697021, -0.3806629478931427, -0.41270023584365845, -0.10159872472286224, -0.5635930895805359, 1.2719565629959106, 0.8725757598876953, -0.2793242633342743, -0.21661819517612457, -0.23291489481925964, -0.150605708360672, -0.1238001212477684, 0.4290599822998047, -0.36848658323287964, -0.9045418500900269, -1.3021265268325806, -1.3857495784759521, 0.37302669882774353, 0.684040904045105, -0.27599433064460754, 0.5667849779129028, -0.5016219615936279, -0.9871606230735779, 0.6574989557266235, 0.44189587235450745, -1.5149224996566772, 0.24103617668151855, -0.9150717854499817, 0.6746245622634888, 0.11105833202600479, 0.1266324669122696, 0.7256026864051819, 0.4761161208152771, -0.4090437591075897, -0.41486892104148865, -1.2380884885787964, -0.7108777165412903, 1.0247184038162231, 0.8490680456161499, -0.8204110860824585, 0.7850639224052429, 0.06254225224256516, -1.171921730041504, -0.03584439307451248, -0.13119295239448547, -1.259529948234558, 0.37336426973342896, 0.2491132915019989, 0.46657663583755493, 0.37132763862609863, 1.9162867069244385, 0.2876347005367279, 1.1856263875961304, 0.03175467252731323, 0.7344880700111389, -0.31631988286972046, -0.5620675086975098, -0.9928520917892456, 0.07312770187854767, -1.1504571437835693, -1.3712037801742554, 0.11196662485599518, -0.13748718798160553, -0.5618768930435181, 0.4895508587360382, 0.7260922193527222, -0.8677197694778442, 0.4201660454273224, -0.042847890406847, -0.2468634843826294, -0.2293035238981247, 0.42543429136276245, 0.37196990847587585, -1.265551209449768, -0.14851219952106476, 0.15196886658668518, 0.7248430848121643, -1.4673550128936768, 0.11731545627117157, -0.20367562770843506, 0.570455014705658, -0.14693975448608398, 1.5906027555465698, 0.3940281867980957, 0.29914531111717224, -1.1449395418167114, 1.4159208536148071, 1.0599778890609741, 0.2915128767490387, 0.0781097561120987, 0.6051008105278015, 0.09567910432815552, 0.1624421775341034, -0.6779283881187439, -0.12230090796947479, -0.6024128198623657, 1.169764518737793, -0.1297231763601303, 0.4399402439594269, -0.12422904372215271, 0.34351328015327454, 0.648155152797699, 0.8210722208023071, 0.7726631760597229, 0.27018365263938904, -0.30411481857299805, 0.9935779571533203, 1.1881455183029175, 0.16537798941135406, 0.2850557565689087, 0.6115576028823853, 0.8954724669456482, -0.04863908514380455, 0.09188369661569595, 0.6483443379402161, -0.39035314321517944, -0.002379300072789192, -0.5674814581871033, -0.4668566882610321, 0.11667600274085999, -0.6389297842979431, -1.1335679292678833, 0.14702150225639343, -0.47060737013816833, -0.22553850710391998, 0.4691348075866699, -0.8202202320098877, -0.4058593511581421, -0.398978590965271, -0.28808125853538513, -0.5091797709465027, -0.6159922480583191, -0.1794780045747757, -0.400132417678833, -0.3865525722503662, 0.4894605875015259, -0.18263736367225647, 1.1769514083862305, -0.037413664162158966, 0.7612632513046265, -0.3361840546131134, -0.09019515663385391, 0.24205173552036285, -0.08053241670131683, 0.07288452237844467, -0.03621751442551613, -0.256204754114151, -0.7418292164802551, -0.5940840244293213, -0.5936360955238342, -0.38652515411376953, -0.07947035133838654, 0.29196101427078247, -0.550682008266449, -0.30421069264411926, 0.1602398008108139, -0.2997812032699585, -0.4202853739261627, -0.6356207728385925, -0.6354523301124573, 0.1353440135717392, -0.16411198675632477, 1.3269926309585571, -0.436585932970047, 0.6528211236000061, -0.13881628215312958, -0.8085285425186157, -0.186985045671463, -0.4200226068496704, 0.8982475399971008, 0.25839701294898987, 0.4446863532066345, -1.325147271156311, -0.3187725245952606, -0.9660773277282715, -1.2247554063796997, 0.4864930808544159, -0.37551426887512207, -0.4660226106643677, 0.485897958278656, -0.052626702934503555, -0.17890729010105133, -0.2100355178117752, 0.061710890382528305, 0.4993590712547302, 0.307501882314682, 0.45769181847572327, 0.03699963167309761, -0.45844051241874695, -0.14695335924625397, 0.5142462849617004, 0.04333013296127319, 0.6216949820518494, 0.8911066651344299, 1.4722751379013062, -0.07786431908607483, -0.2179419845342636, -0.6368158459663391, 0.6267260909080505, -1.2822409868240356, -1.1350512504577637, -0.906112790107727, 0.7249944806098938, -0.1136600449681282], [-0.4717334806919098, 1.494751214981079, -2.014904737472534, -0.6560827493667603, -0.2837630808353424, 0.237799271941185, 1.5793626308441162, 0.9908571839332581, 0.28942739963531494, -0.22619439661502838, -0.576263427734375, 0.008643534034490585, 0.5459743142127991, 0.1638086438179016, 0.3358042240142822, 0.3138015568256378, 0.3331826627254486, 0.6425565481185913, 0.7163578271865845, 1.4132530689239502, -0.657767117023468, -0.9391552805900574, -0.08050907403230667, 0.3547593355178833, -0.09391437470912933, 0.09329046308994293, -1.4836293458938599, 0.24135875701904297, -1.5543464422225952, -0.6882980465888977, 0.6609484553337097, -0.9745678901672363, -0.24316710233688354, 0.19350911676883698, -0.874223530292511, -0.22037507593631744, 1.3572310209274292, 0.9275795817375183, 1.7655539512634277, 0.2662540376186371, 1.9459997415542603, 0.1356869786977768, 0.488177090883255, -1.7069437503814697, 0.17554281651973724, 0.41160038113594055, 0.38501429557800293, -1.7660566568374634, -0.020128732547163963, -0.09745823591947556, 0.2533927261829376, 0.2683960795402527, 1.437412142753601, 1.2185966968536377, 0.10363887250423431, -1.2401487827301025, 0.31719252467155457, -0.3049447238445282, 0.3780604302883148, -0.40789663791656494, 0.5860500335693359, 0.30678096413612366, 0.6474767923355103, 1.3047471046447754, 0.289694219827652, -0.40469738841056824, 0.5753230452537537, 0.038961902260780334, 0.1533934772014618, -0.5416051149368286, 0.3702959716320038, 0.10848259180784225, -0.7401353716850281, -0.06863237917423248, -0.8927410840988159, 0.9470384120941162, 0.6933156251907349, 0.11312028020620346, -0.24869240820407867, 0.7231000065803528, -0.17348185181617737, -0.18151968717575073, 0.16726136207580566, -0.1845238208770752, 0.9781448841094971, -0.42277804017066956, -0.017311491072177887, -0.36971554160118103, -0.20037004351615906, 1.690253734588623, -0.49110856652259827, -0.00575273297727108, -0.08103083074092865, 0.11518063396215439, 0.5537250638008118, -0.6633257269859314, 0.15312287211418152, -0.3472908139228821, -0.9536711573600769, -0.5402686595916748, -0.5273207426071167, -1.2490646839141846, 0.508408784866333, 0.5256789326667786, 0.5951522588729858, 1.3430066108703613, -0.06852149218320847, -0.7672553658485413, -0.6887258887290955, 0.0690024122595787, -0.20498338341712952, -0.24946793913841248, -0.4958122968673706, -0.8007246851921082, -0.7149034738540649, 0.6504629254341125, 0.6532343029975891, 0.17077308893203735, 0.9213958978652954, 0.595999002456665, -0.39803487062454224, 0.03168836981058121, -0.05866589397192001, 0.31626397371292114, 0.030707133933901787, 0.6164147853851318, -0.5165035724639893, -0.6035827398300171, 0.9886350035667419, 0.4416472315788269, 0.18816101551055908, 0.2012813687324524, 0.5338612794876099, 1.185674786567688, -0.6474911570549011, 0.5847557783126831, -0.16957475244998932, -1.3853610754013062, -0.7113135457038879, -0.10256500542163849, 0.35732904076576233, -1.0046225786209106, -0.7762348651885986, -0.7808113098144531, -0.6263417601585388, -0.7945027351379395, 0.7057173252105713, -0.36597636342048645, -0.7738997340202332, 0.16228602826595306, -1.0301789045333862, 0.5137991309165955, 0.11034505814313889, 0.8819599747657776, 0.2167268544435501, -0.5699408650398254, 0.7959025502204895, 0.5683829188346863, 0.4318799078464508, 1.0787625312805176, 0.7752346992492676, -0.030142908915877342, -0.35808590054512024, 0.8121680021286011, 0.25580447912216187, -0.6852015256881714, 0.4125833511352539, 0.5252788066864014, 0.30338987708091736, 0.4658754765987396, -0.2764700949192047, -0.6436399221420288, -0.757757842540741, 0.6034067273139954, 0.25004708766937256, -1.5968722105026245, 0.7564922571182251, -0.11768608540296555, -1.2416179180145264, -1.2451220750808716, 0.8476875424385071, -0.4760811924934387, 0.004570478573441505, -0.36311718821525574, 0.7978391051292419, -0.3888467848300934, 0.184170663356781, -0.1780363917350769, -0.2993010878562927, -0.6875173449516296, -0.9564682841300964, -0.10843975096940994, -1.3262605667114258, 0.3510770797729492, -0.6287286281585693, -0.5433638691902161, 0.13844892382621765, -1.0986367464065552, -0.6875629425048828, 0.16483251750469208, 0.49291694164276123, 0.25738418102264404, -0.6248217821121216, 0.13868339359760284, -0.8706421256065369, 0.5762528777122498, -1.4461811780929565, 0.8097420334815979, -0.8647443652153015, 0.40252232551574707, 0.2596675157546997, 0.42584434151649475, -0.9694730043411255, 1.0422080755233765, -0.3963879942893982, -1.4782932996749878, 0.0968526303768158, 0.2345195859670639, 0.34859466552734375, -0.334081768989563, 0.2437009960412979, 0.6785886287689209, 1.0946261882781982, -0.04184380918741226, 0.7586489319801331, -0.05582515150308609, -0.7127079963684082, -0.49588248133659363, -0.8133752346038818, 0.34651824831962585, -0.7898478507995605, -1.0652483701705933, 0.5118694305419922, 0.7206283211708069, -1.1012225151062012, 0.7180890440940857, -0.008266240358352661, -0.15622282028198242, 0.21118101477622986, 0.6861699223518372, 0.2576688528060913, 0.25932207703590393, -0.1499321013689041, -1.5288670063018799, -0.3368492126464844, 1.0143730640411377, 1.253570556640625, 0.014061042107641697, 1.307040810585022, 1.2523080110549927, 1.2666866779327393, 0.48048874735832214, 0.6802973747253418, -0.0601959303021431, -0.08411083370447159, -0.7768002152442932, -0.672637403011322, 0.2310105413198471, -0.6528103351593018, 2.119075059890747, 1.3806328773498535, -1.1897046566009521, -0.38636720180511475, -0.03323518484830856, 0.5535380244255066, -0.42035964131355286, -0.24573759734630585, -0.3190317451953888, 0.18689219653606415, 0.23381923139095306, -0.20707130432128906, 0.13641774654388428, -0.2539883553981781, 0.8806848526000977, -0.05721360072493553, -0.18617106974124908, -0.009791354648768902, 0.9328206777572632, -0.46592843532562256, 0.8184855580329895, 0.4548620283603668, -1.7431615591049194, -0.43925726413726807, 0.0666455626487732, 0.2547524869441986, 0.025878317654132843, -0.2215302735567093, 0.8231866955757141, 0.22289331257343292, -0.3417416214942932, 0.3322916328907013, 1.061875820159912, -0.1489613652229309, 0.027092574164271355, -0.6027483940124512, 0.16106517612934113, 0.658380925655365, -1.1455211639404297, -1.2888894081115723, 0.15850929915905, 0.5225169658660889, 0.7243512272834778, 1.0148956775665283, 1.488175392150879, -0.38028183579444885, -0.20647574961185455, -0.3877856731414795, -0.39510104060173035, -1.0379881858825684, -0.668225884437561, -0.4662814140319824, -0.5187691450119019, -0.4480718672275543, -0.8105573654174805, 0.2974891662597656, 0.5949573516845703, -0.4450152814388275, 0.1933843195438385, 0.9772468209266663, -0.296743780374527, 0.32953545451164246, 0.3212432563304901, 0.09443012624979019, -0.7615946531295776, 0.6149694919586182, 0.49464115500450134, -1.5911182165145874, -0.762221097946167, 0.09602712094783783, 0.2028665840625763, 0.9367414712905884, -0.13595883548259735, 0.2800561487674713, -0.8593577146530151, -0.6463200449943542, -0.09529337286949158, 1.0109061002731323, 0.3350784480571747, -0.5547800064086914, -0.8418734073638916, 0.2861432731151581, 0.6427471041679382, -0.4774990677833557, -0.5835753679275513, 0.6660581231117249, -0.23190440237522125, -0.5588260293006897, -0.3156254291534424, -0.1809701919555664, 0.5086803436279297, -0.34707748889923096, -0.6730048656463623, 0.6087757349014282, -0.2920837104320526, -0.5902199149131775, 0.36044275760650635, -0.7206763625144958, 0.9895440936088562, 0.3875446915626526, 0.7273313999176025, 1.4576605558395386, -0.6047863364219666, -0.265342652797699, -2.058091640472412, 1.1149014234542847, 0.256020724773407, 1.8840124607086182, -0.2465052306652069, 0.7085289359092712, 0.24801626801490784, -0.4704342782497406, 0.337586909532547, 0.31107795238494873, 0.6054670810699463, 0.14455987513065338, -0.5266692638397217, -0.34613996744155884, -0.4160558879375458, -0.043568480759859085, -0.16814886033535004, -0.1789846569299698, 0.18226678669452667, -0.925613522529602, -0.4295479953289032, 0.73468416929245, 0.713759183883667, -0.9705933928489685, -0.24105221033096313, 0.12028542906045914, 0.5961230397224426, 0.07757122814655304, 0.17606787383556366, 0.05528586730360985, -0.12935884296894073, -0.2731580138206482, -1.359907627105713, 0.02884148620069027, -0.30714255571365356, 0.3376867175102234, 0.6691297888755798, -0.6958238482475281, 0.3978995978832245, -1.2131558656692505, 0.6224914789199829, 0.7721750736236572, 0.07484353333711624, -0.07864093035459518, 0.4273582994937897, 0.43906641006469727, -0.19101345539093018, -0.42872339487075806, 1.2469632625579834, 0.4113438129425049, -0.5627730488777161, 0.5162107348442078, 0.2871275246143341, 0.5608896017074585, -0.2205650359392166, 0.36949723958969116, 0.49290376901626587, -0.9272289276123047, -0.44143134355545044, -0.0336967371404171, -0.03057902306318283, 2.137907028198242, 0.5605559945106506, -0.23839592933654785, 0.6137575507164001, -0.3835456073284149, -0.5799733996391296, 0.08666622638702393, 0.02643703855574131, -0.022227931767702103, -1.1123758554458618, 0.8010873198509216, 0.7917710542678833, -0.35914647579193115, 0.3317432403564453, 0.4057854115962982, 0.2596195638179779, 0.4749979078769684, -0.059045277535915375, 0.6461895704269409, 0.7176177501678467, 1.1765471696853638, 0.7509412169456482, 0.4754598140716553, -0.5780777335166931, -0.17167551815509796, 0.9737423658370972, -0.6968333721160889, -0.15704350173473358, 0.5318461656570435, 0.398382306098938, 1.1144376993179321, -1.507400631904602, -0.619725227355957, 0.8136298656463623, 0.20099692046642303, 1.0338046550750732, 0.6888803839683533, 0.30488404631614685, -0.7228400111198425, 0.15931583940982819, 0.4504915773868561, -0.14146538078784943, 0.6507322192192078, -0.17238561809062958, -0.5279340147972107, 0.034215204417705536, -0.6360440850257874, 0.14764505624771118, -0.52052241563797, -0.8851705193519592, -0.084888756275177, -0.8873282670974731, 0.4297798275947571, -0.06663132458925247, 0.8888663053512573, 0.6977683305740356, -0.26465266942977905, -1.1134145259857178, 0.8163787126541138, -0.7946397066116333, 0.05347544699907303, -0.40615034103393555, -0.9309555888175964, -0.38650941848754883, -1.0265995264053345, -0.5370809435844421, -0.21689866483211517, -0.9168910384178162, -0.18099445104599, -0.10329671204090118, -1.005608320236206, 0.11075930297374725, 0.17404460906982422, 1.058239459991455, 1.0973137617111206, -0.09280211478471756, 0.5168004035949707, 0.2612638771533966, -1.3015317916870117, -0.26960110664367676, 0.9652521014213562, -0.06856812536716461, -0.04722030460834503, -1.2086169719696045, -0.3409922122955322, 1.6795517206192017, 0.5668959617614746, -0.5518860220909119, 0.667565643787384, 0.9101828336715698, 1.341933250427246, 0.04349682107567787, -1.3521254062652588, 0.33946648240089417, -0.4987805485725403, 0.5202829241752625, 1.2074631452560425, -0.8235154151916504, -0.5101417303085327, -0.6534295082092285, -1.7671111822128296, 1.8412175178527832, 0.024426419287919998, -0.2859017550945282, 1.5081655979156494, 0.7360712289810181, -0.019899794831871986, 0.22367510199546814, -0.32290127873420715, -0.012862720526754856, 0.0993909016251564, -0.08422430604696274, -1.3137390613555908, 0.787492036819458, 0.22894901037216187, 0.1326856166124344, 0.07179515063762665, 0.3454180955886841, -0.5722072124481201, 0.03516564145684242, -0.13008412718772888, 0.7199198603630066, -0.1838056892156601, 0.5871171951293945, -0.1664813756942749, -0.11301916837692261, -0.057014770805835724, -0.9004505276679993, -0.10034315288066864, 0.20347246527671814, 0.7487587928771973, 0.26820746064186096, -1.3617806434631348, 0.4145008325576782, -0.2371015101671219, 0.15074960887432098, -0.15435856580734253, -0.4904462993144989, 1.3657904863357544, 0.5187064409255981, -0.002762464340776205, 0.8372296690940857, -0.08618704229593277, -0.5525912046432495, -0.9102253913879395, -0.8574255108833313, 0.11594285070896149, -1.257206678390503, -0.23785077035427094, -0.6720466613769531, -0.151620551943779, 0.12296037375926971, -0.12440416216850281, 0.3465688228607178, -1.2004081010818481, -1.474125862121582, -0.929905354976654, -0.3091334402561188, 0.622299313545227, -1.0827107429504395, 0.0799134224653244, 0.15740685164928436, -1.4907066822052002, 0.3215096890926361, -0.11378572136163712, -1.3408974409103394, 0.0516321174800396, -1.296484351158142, 0.5689824223518372, -0.4914478659629822, 0.6699724793434143, -0.8272597789764404, 0.9458341598510742, -1.1669617891311646, -0.589337170124054, -1.409196138381958, -0.3921929597854614, 1.369903564453125, 0.8168184161186218, -0.656173825263977, 1.6888315677642822, -0.1999274343252182, -0.9220129251480103, -0.342722088098526, 0.778080940246582, -0.9342686533927917, -0.22844645380973816, 0.6783584952354431, 0.1284746676683426, 0.560276448726654, 1.4716917276382446, 0.9008489847183228, 0.6484072804450989, 0.31618988513946533, 0.156946063041687, -0.9696621298789978, -1.0702857971191406, -0.15480051934719086, 0.4874213635921478, -0.8760653734207153, -0.8754779696464539, 0.13094688951969147, -0.5028085112571716, -0.7000902891159058, 1.2562999725341797, 0.7959840893745422, -1.3069615364074707, -0.1197030320763588, -0.3740457594394684, 0.42817556858062744, -0.5010359287261963, 0.12926903367042542, 0.5353444218635559, -0.14438791573047638, 0.3563334345817566, -0.27021509408950806, -0.15749311447143555, -1.3505229949951172, 0.13381944596767426, -0.22315597534179688, 0.4273971915245056, -0.5297841429710388, 0.6186901330947876, 0.47619888186454773, -0.48183152079582214, -0.7940835952758789, 1.3248134851455688, 0.9010537266731262, -0.21943876147270203, 0.2489526867866516, -0.49669259786605835, -0.20205415785312653, 0.9196298122406006, -0.6966472268104553, 0.1731194257736206, -1.0276414155960083, 0.5495443344116211, 0.16288445889949799, -0.22074571251869202, -0.07542788237333298, 0.10626818239688873, -0.2430228441953659, 0.22502398490905762, 0.7478340268135071, 0.2602914571762085, -0.34692370891571045, 1.3123196363449097, 1.1830438375473022, -0.2378399819135666, 0.4758477509021759, -0.1919320821762085, 0.6305060386657715, -0.27548059821128845, 0.8070699572563171, 0.5009307861328125, -0.49068063497543335, 0.42381399869918823, 0.025937698781490326, -0.19787105917930603, -0.1260605901479721, -0.2735650837421417, -1.4519836902618408, -0.16998820006847382, -0.9512189626693726, -0.15560634434223175, 0.8265284299850464, -0.6049816608428955, -0.47811657190322876, 0.520225465297699, 0.00230729510076344, -0.03542850911617279, -0.7481583952903748, -0.9654398560523987, -0.4643627107143402, 0.22613967955112457, 1.0554988384246826, -0.528876006603241, 1.1411582231521606, -0.039527103304862976, -0.1603909283876419, -0.9611430168151855, -0.4680699110031128, -0.11137773841619492, 0.500052809715271, -0.2706039547920227, 0.5336790680885315, 0.8871360421180725, -0.9456084370613098, -0.8594485521316528, -0.14795731008052826, 0.026214202865958214, 0.5642409324645996, -0.11461139470338821, -0.5120394825935364, -0.2089480757713318, 1.031104564666748, -0.007640873081982136, 0.27764058113098145, -0.3652510643005371, -0.9926546812057495, 0.3453960418701172, 0.12896199524402618, 0.7370986342430115, -0.46152934432029724, 0.2819344103336334, 0.24208129942417145, -0.5281739830970764, 0.11347261071205139, -0.6530219316482544, 0.40727946162223816, -0.10373957455158234, 0.15170663595199585, -0.28535327315330505, -0.06534738838672638, -0.30706387758255005, -1.0615357160568237, 0.13562911748886108, -0.4700104892253876, -0.05578545108437538, -0.11582701653242111, -0.9599443078041077, -0.551274299621582, -0.6671341061592102, -0.43175867199897766, 1.0150543451309204, 0.4393705725669861, 0.7405251264572144, -0.43895357847213745, -0.8630434274673462, -0.5030757784843445, 0.6538901329040527, 0.14823821187019348, 0.526361882686615, 1.770547866821289, 1.5598723888397217, 0.17518877983093262, 0.4298747181892395, 0.26534250378608704, 0.4044346213340759, -0.7528064846992493, -0.19039618968963623, -1.1692904233932495, -0.10397431254386902, -1.0624524354934692], [-0.03050031140446663, 1.519787311553955, -1.7598345279693604, -1.2673200368881226, 0.016337672248482704, 0.39261800050735474, 0.33048343658447266, 0.29262202978134155, 0.045166317373514175, -0.8558496832847595, -1.33159601688385, 0.38148075342178345, 1.6780000925064087, 1.1715619564056396, 0.22841227054595947, 0.5089072585105896, 0.6343953013420105, -0.394828736782074, -0.0005024760030210018, 0.541894793510437, -0.6608324646949768, -1.060376524925232, 0.03246615454554558, 0.026319235563278198, 0.5658137202262878, 0.033279888331890106, -2.1679868698120117, -0.3885274827480316, -1.4500055313110352, -0.849059522151947, 0.4121493995189667, -0.7788496017456055, -0.553024411201477, 0.15599653124809265, -1.1493300199508667, -0.6939574480056763, 1.1447030305862427, 0.45816928148269653, 0.7400335669517517, 1.3839151859283447, 0.9189343452453613, 0.4258614182472229, -0.005943180527538061, -1.1061933040618896, 0.39983975887298584, 0.13978636264801025, -0.08785216510295868, -1.5481760501861572, 0.24686740338802338, -0.6847546696662903, 0.8643267154693604, 0.14501595497131348, 0.4437401592731476, 0.7055026292800903, 1.0351661443710327, -0.08724766224622726, -0.3452168107032776, -0.5378468632698059, 0.7258430123329163, -0.6085445880889893, 1.1122161149978638, 0.4058154821395874, -0.20605774223804474, 1.1295156478881836, 0.24919600784778595, -0.30851447582244873, -0.06061602756381035, 0.3584015667438507, -0.1466561108827591, -0.5019159317016602, 0.2779499888420105, -0.013700857758522034, -0.06569813191890717, 0.6526708006858826, -0.5368213653564453, 0.6093546748161316, 0.7347652316093445, 0.2189415544271469, 0.1932656317949295, 1.2922419309616089, -0.012864463031291962, -0.5174288749694824, 0.2787264287471771, -0.47206708788871765, 0.8595197796821594, -0.20259630680084229, -0.29136112332344055, -0.4906952381134033, -0.47392648458480835, 1.9715369939804077, -0.08905909955501556, 0.005209834314882755, -0.38094156980514526, 0.08937306702136993, -0.10443264991044998, -0.6446783542633057, 0.2124054729938507, -0.3317534625530243, -0.7423399090766907, -0.7989280819892883, -0.7243496775627136, -0.4337468147277832, 0.3196355700492859, 0.17075009644031525, 0.7761824131011963, 1.2155433893203735, 0.30470985174179077, -1.312669038772583, -0.4252438545227051, 0.17841170728206635, 0.6033049821853638, 0.008353465236723423, -1.2582730054855347, -1.1433759927749634, -0.8533151149749756, 0.7120475172996521, 0.6176853775978088, -0.8349908590316772, 1.0283985137939453, 0.7705914378166199, -1.12528657913208, -0.2669985294342041, -0.9382004737854004, 0.7210426926612854, 0.29946377873420715, 0.4337829649448395, -0.290163516998291, -0.3221053183078766, 0.4075409173965454, 0.14528360962867737, 0.4179963767528534, -0.012207121588289738, -0.010442554019391537, 0.734663188457489, -0.4856511056423187, 0.8191737532615662, -0.13024768233299255, -1.3835631608963013, -0.02604478783905506, -0.1905122846364975, 0.37890756130218506, -0.7150882482528687, -0.6584724187850952, -0.7798882722854614, -0.5862316489219666, -0.8181766271591187, 0.14689387381076813, -0.5667896270751953, -1.1726101636886597, -0.029545845463871956, -0.8833504915237427, 0.30534499883651733, 0.37693125009536743, 1.3037391901016235, -0.2282659411430359, 0.19774699211120605, 0.20714588463306427, 0.22595970332622528, 0.188019797205925, 0.3573637902736664, 0.8661508560180664, 0.2221420705318451, -0.5760681629180908, 0.8644969463348389, 0.13631857931613922, -0.4526163339614868, 0.22443687915802002, 0.44246312975883484, 0.16306230425834656, 0.6086941361427307, -0.5039109587669373, 0.21932484209537506, -0.6032750010490417, 0.5191794633865356, 0.13407665491104126, -1.0497369766235352, 0.7642648220062256, -0.7128020524978638, -0.8565084338188171, -1.0233074426651, 0.9153441190719604, -0.6597858667373657, -0.10033851116895676, -0.6668775081634521, 0.3577755391597748, -0.1894606351852417, 0.08202280849218369, 0.00103857833892107, -0.4617779850959778, -0.5415636897087097, -0.7853533625602722, -0.31858956813812256, -1.0683534145355225, -0.4660077393054962, -0.35605284571647644, -1.2238080501556396, -0.3251127302646637, 0.11785828322172165, -0.7103308439254761, 0.2935503423213959, -0.20184096693992615, 0.09087048470973969, -1.857663869857788, -0.0955670028924942, -0.7608185410499573, 1.3709458112716675, -0.2112605720758438, 0.6441842913627625, -0.823544979095459, 0.21757039427757263, 1.1622686386108398, 0.06372767686843872, -0.8390271067619324, 0.8751029372215271, 0.14977744221687317, -0.2962459921836853, 0.277733713388443, -0.1280428171157837, -0.496853232383728, 0.022877037525177002, 1.4528218507766724, 0.6781924366950989, 0.11296519637107849, 0.19767549633979797, 0.39568519592285156, 0.4611135423183441, -0.9966364502906799, -0.4578115940093994, -1.0608956813812256, -0.09417957067489624, -0.5241227149963379, -0.9273665547370911, 1.4444650411605835, 0.6437743902206421, -0.48500174283981323, 0.5531657934188843, -0.14707429707050323, 0.4863784611225128, 0.40442296862602234, 0.6630460619926453, 0.15430977940559387, 0.4156060814857483, -0.6398274898529053, -0.4606250822544098, -0.6846787929534912, 0.09413015842437744, 0.8073316216468811, -0.7200354933738708, -0.3209865987300873, 1.4294997453689575, 0.7713630795478821, -0.14223307371139526, 0.48417699337005615, -0.052168216556310654, -0.010111115872859955, -0.5225512981414795, -0.40974438190460205, 0.2721865773200989, -0.3058761656284332, 1.117401123046875, 1.0622127056121826, -1.0827146768569946, -0.6732125282287598, -0.19251608848571777, -0.0027099172584712505, -0.47992926836013794, -0.21902203559875488, -0.4822165071964264, 0.6011320948600769, -0.044694311916828156, 0.397417813539505, 0.7557491660118103, -0.017570625990629196, 0.486052930355072, -0.44599926471710205, 0.17928433418273926, -0.1946079283952713, 0.5496535301208496, -0.2555880844593048, 0.5569402575492859, 0.0007745428010821342, -0.9223392605781555, -0.7588959336280823, -0.11040304601192474, 0.6215384006500244, -0.1425343006849289, -0.4446316063404083, 0.93150395154953, 0.5096952319145203, -1.1301404237747192, -0.27551183104515076, 0.34472179412841797, -0.4049680531024933, -0.18598605692386627, -0.14306557178497314, 0.39721396565437317, 1.1786870956420898, -0.07926896959543228, -0.7273796200752258, -0.011186531744897366, 0.5714062452316284, 1.0806573629379272, 0.8818289041519165, 1.158189296722412, -0.28804779052734375, -0.22597792744636536, 0.03607193008065224, 0.0767391249537468, -0.6879062056541443, -0.02004600316286087, -0.9621691703796387, -0.8379282355308533, 0.7162727117538452, -0.23325493931770325, 0.36043140292167664, 0.4424009323120117, 0.06450669467449188, 0.5271539092063904, 0.7382970452308655, -0.5890181660652161, -0.23871394991874695, 0.03216428682208061, -0.2809864282608032, -1.007900357246399, 0.5633997321128845, 0.240160271525383, -0.7560744285583496, -0.10995862632989883, -0.220059335231781, -0.5763800144195557, 0.5482264757156372, -0.39030054211616516, 0.4205702543258667, -0.9788134694099426, -0.0521378256380558, 0.21671898663043976, 1.407592535018921, -0.2532319724559784, -0.46524640917778015, -1.1305315494537354, -0.1149914413690567, 0.25473496317863464, 0.1938396394252777, -0.8134467005729675, 0.9816586375236511, 0.12454373389482498, -0.5920799374580383, -0.4542088508605957, 0.3798494338989258, 1.3120918273925781, -0.3252178728580475, 0.1512504518032074, 0.2747332751750946, 0.3719562292098999, -0.2986367344856262, -0.06402130424976349, -0.2369677573442459, 1.373428225517273, 0.23991388082504272, 0.3529326319694519, 1.2625447511672974, -0.46430638432502747, -0.40606269240379333, -2.044196605682373, 1.0449858903884888, -0.19540514051914215, 1.791028380393982, 0.32025107741355896, 0.6637632846832275, 0.4418984651565552, -0.9563398361206055, -0.40499797463417053, 0.4935206472873688, 0.3343164324760437, 0.3779188096523285, -0.8756787180900574, -0.630953311920166, 0.07476115971803665, -0.5660079717636108, -0.5626725554466248, -0.8148317337036133, 0.10322467237710953, -0.7596623301506042, -0.5801307559013367, 0.7270920276641846, 1.3491878509521484, -0.04482200741767883, 0.16954252123832703, 0.7024118304252625, -0.19419077038764954, -0.3436224162578583, 0.2518254518508911, -0.76349276304245, -0.24700887501239777, -0.3217792510986328, -1.0807442665100098, -0.5575998425483704, 0.33825525641441345, 0.3351942002773285, 0.5638390779495239, -1.0340701341629028, -0.2250153124332428, -0.3791453540325165, 0.05494121462106705, 0.3165603578090668, 0.45838746428489685, 0.06427986919879913, 0.41524118185043335, 0.29270559549331665, -0.4531828761100769, 0.16698603332042694, 0.7324572205543518, -0.09945949167013168, 0.0031141589861363173, -1.0266149044036865, -0.07410243153572083, -0.002449341118335724, 0.004401938524097204, -1.106343388557434, 0.3533306121826172, -0.2738174498081207, 0.2611614763736725, -0.03807641938328743, 0.30545592308044434, 1.4250564575195312, 0.7389867305755615, 0.4753612279891968, 0.9972791075706482, -0.5123412609100342, -0.6694768667221069, 0.1641162782907486, -2.515967935323715e-06, -0.37031760811805725, -0.6367253661155701, 0.4476655423641205, 0.529181957244873, 0.055449727922677994, 0.9035648703575134, 0.20381921529769897, 0.7370646595954895, 0.4351283013820648, -0.21485671401023865, 0.036212027072906494, 0.7415063381195068, 0.7917454838752747, 0.40256887674331665, 0.6816917061805725, 0.20802909135818481, -0.7663577795028687, 1.6949963569641113, -0.9615012407302856, -0.10418327897787094, 0.2295629233121872, 0.301754891872406, 1.4230729341506958, -1.0942106246948242, -0.49873989820480347, 0.14849527180194855, -0.3999128043651581, 0.22670064866542816, 0.5337290167808533, 0.9020441174507141, -0.752987265586853, 0.5119239091873169, 1.041097640991211, 0.11479932069778442, 0.8641222715377808, -0.7340439558029175, -0.38425391912460327, -0.1260019689798355, -0.5247454643249512, 0.7396103739738464, -0.6670345664024353, -0.005679901689291, 0.3421051800251007, -0.3611905574798584, 0.20364511013031006, 0.044045720249414444, -0.04973958060145378, 1.4704452753067017, 0.009273315779864788, -1.0953590869903564, 0.23597116768360138, -0.961871862411499, 0.45575016736984253, -0.15383639931678772, -0.9526647925376892, 0.14025376737117767, -0.6359403729438782, -0.22007973492145538, -0.1260232925415039, -0.7846429944038391, -0.12141479551792145, 0.4657188951969147, -0.9001988172531128, -0.4674548804759979, 0.04445437341928482, 1.1629382371902466, 0.6639020442962646, 0.11296127736568451, 0.2920861840248108, 0.5453933477401733, -0.6044590473175049, -0.12601026892662048, 0.49008479714393616, -0.5533831715583801, 0.2668033242225647, -1.1517937183380127, -1.0930054187774658, 1.0755763053894043, 0.9309418201446533, 0.47757577896118164, 0.23480047285556793, 1.076984167098999, 1.412518858909607, -0.5529993772506714, -0.7755268216133118, 0.09277079999446869, -0.8023804426193237, 0.6604931950569153, 0.7360488772392273, -0.822397768497467, -1.271476149559021, -0.38061246275901794, -1.522081732749939, 1.431654691696167, -0.23489508032798767, -0.6505526304244995, 0.8883740305900574, 1.561673879623413, 0.3131847381591797, 0.8779158592224121, -0.6391505599021912, -0.12136328220367432, 0.404558390378952, -0.5004606246948242, -1.0964463949203491, 0.4161434471607208, 0.5038200616836548, 0.36874961853027344, -0.0834176316857338, 0.8677972555160522, -0.031309980899095535, -0.37638503313064575, 0.020217621698975563, 0.5125723481178284, 0.1772417575120926, 0.5577568411827087, 0.6064996123313904, -1.2229119539260864, -0.7278668880462646, -0.3361155390739441, 0.34392669796943665, 0.8554391860961914, 0.9113694429397583, -0.16559500992298126, -1.4589929580688477, -0.20320215821266174, -0.35243508219718933, -0.20568367838859558, 0.05886084586381912, -0.599976658821106, 1.5692538022994995, 0.17324580252170563, -0.7168009281158447, 0.7835369110107422, 0.1048484593629837, -0.491685152053833, 0.0984402671456337, 0.08179362863302231, 0.5374796986579895, -1.6815992593765259, -0.7473176121711731, -0.2500306963920593, 0.11251497268676758, 0.5577800273895264, 0.4897289574146271, -0.29774871468544006, -0.782827615737915, -1.773506760597229, -0.03920456022024155, 0.07712186127901077, 0.7038198113441467, -1.3733934164047241, -0.17702440917491913, 0.5415537357330322, -1.431286096572876, 0.4612334072589874, 0.12608954310417175, -0.9364937543869019, -1.0685231685638428, -1.2456251382827759, 0.7479705810546875, 0.6022825241088867, 0.42473769187927246, -0.17972849309444427, 0.6491060256958008, -0.5736752152442932, -0.12357571721076965, -1.050358533859253, 0.1302158087491989, 1.1665207147598267, 0.7376946806907654, -0.25208306312561035, 0.7059446573257446, 0.06825582683086395, -0.5463771224021912, 0.3459031283855438, 0.4792855381965637, -0.4962901473045349, 0.2210063934326172, 0.5259105563163757, -0.09012399613857269, 0.43638360500335693, 1.0570493936538696, 0.3561113476753235, 0.9120621085166931, 0.11427894979715347, 0.6147992610931396, -0.22937361896038055, -0.3054051697254181, -0.19438329339027405, 0.03748072311282158, -0.8605753779411316, -0.7521023750305176, -0.21522386372089386, -0.528399646282196, -0.20795315504074097, 0.8004297614097595, 0.6657247543334961, -0.7814422249794006, -0.6379312872886658, -0.3501662611961365, 0.4434713125228882, -0.07865484058856964, 0.5572137236595154, -0.1286996454000473, -0.011268670670688152, 0.4665565490722656, 0.052103109657764435, 0.7974407076835632, -0.8950667977333069, 0.6868046522140503, -0.3119301199913025, 0.40105393528938293, -0.2875922918319702, 0.24422700703144073, 0.5658533573150635, -0.34787723422050476, -0.7387626767158508, 1.4656062126159668, 1.1797517538070679, 0.42786502838134766, 0.19412566721439362, 0.15137217938899994, 0.17046158015727997, 0.9661902785301208, -0.8286235332489014, 0.07624217867851257, -1.074826717376709, 0.3822636008262634, 0.015319869853556156, 0.35008499026298523, -0.6255936026573181, 0.5179336071014404, -0.35137179493904114, 0.11686453968286514, 0.8465973138809204, 0.022571219131350517, -0.41706064343452454, 0.6563010215759277, 0.7451357245445251, -0.6194837093353271, 0.17235150933265686, 0.2611473500728607, 0.5772728323936462, 0.20849479734897614, 0.38630762696266174, 0.3229276239871979, -0.5546296238899231, -0.04710495099425316, 0.6633955836296082, -0.7039307355880737, -0.04200397804379463, -0.7293024659156799, -1.798348307609558, -0.3490576446056366, -0.09999800473451614, -0.703391432762146, 0.22898021340370178, -1.1152409315109253, -0.680684506893158, 0.5025748014450073, -0.360893189907074, 0.527908444404602, -0.9548206329345703, 0.13557682931423187, 0.08211912214756012, 0.5370687246322632, 1.067757248878479, -0.2332296073436737, 0.7520347237586975, 0.2787274718284607, 0.1623021811246872, -0.3861068785190582, 0.1804157942533493, -0.05080194026231766, 0.6148737668991089, 0.10667982697486877, 0.027683652937412262, -0.7987067103385925, -0.8877117037773132, -0.698799192905426, 0.19059595465660095, 0.09018487483263016, 0.4301712214946747, -0.3578064739704132, -0.7886250615119934, -0.6353408694267273, 1.345481514930725, 0.6235695481300354, -0.22203998267650604, -0.5535027384757996, -0.5220932364463806, -0.028741639107465744, 0.1505175232887268, 0.8862307667732239, -0.6612364649772644, 0.3155404329299927, -0.07036174088716507, 0.11542309075593948, -0.12328378111124039, -0.1968260258436203, 0.3455398380756378, -0.3956907093524933, 0.6420283913612366, -0.3622475862503052, -0.6284970641136169, 0.6638714075088501, -0.7060315608978271, 0.21159523725509644, -0.0029669080395251513, -0.3087831735610962, 0.26466017961502075, -0.3395051658153534, -0.9747138023376465, -0.47811073064804077, 0.3069644868373871, 0.3082462251186371, 0.6735004186630249, -0.06412405520677567, -0.1772872507572174, -0.8421100974082947, 0.29783645272254944, 0.5650089979171753, -0.40157872438430786, 0.7603289484977722, 1.9514873027801514, 1.7039906978607178, 0.05596008524298668, -0.4772772789001465, -0.4936015009880066, 1.2557399272918701, -0.9192730188369751, -0.5608339309692383, -1.2736930847167969, -0.2600504755973816, -0.23361517488956451], [0.40331095457077026, 1.0182816982269287, -1.3900095224380493, -0.49305015802383423, 0.5528031587600708, 0.307683527469635, 0.6195558309555054, 0.5907474756240845, 0.23104335367679596, 0.13046276569366455, -0.919847846031189, 0.5722621083259583, 0.7806896567344666, 0.35324814915657043, 0.4852963984012604, 0.11502064764499664, 1.0998966693878174, -0.34260424971580505, -0.02563394233584404, 0.237651064991951, -0.566108226776123, -1.2801159620285034, -0.16583658754825592, 0.3333348333835602, -0.07572858035564423, 0.4267045557498932, -1.8435355424880981, -0.16792725026607513, -1.9732297658920288, -0.12876002490520477, 0.9137781262397766, -0.7451598644256592, -0.14610040187835693, -0.1449168473482132, -1.9016740322113037, 0.09668366611003876, 1.0331480503082275, -0.04022783413529396, 0.2592718303203583, 0.05683540925383568, 1.5402228832244873, -0.26431015133857727, -0.3634929060935974, -1.2340471744537354, 1.0807644128799438, -0.09726214408874512, 0.9543488025665283, -1.7646329402923584, 0.05227034166455269, -1.046599268913269, 0.43564707040786743, 0.4206794500350952, -0.5961771607398987, 0.932494044303894, 0.5720638632774353, -0.6791625022888184, 0.16356681287288666, -0.06472479552030563, 0.2560889422893524, -0.3799436390399933, 1.2851067781448364, -0.327301949262619, -0.7807406187057495, 0.829336941242218, 0.8125256299972534, -0.01800469495356083, 0.2635660767555237, 0.3978702127933502, -0.7841870188713074, -0.3133086562156677, 0.2666114568710327, 0.40420499444007874, -0.7155894637107849, -0.08696708083152771, -0.19110623002052307, 0.724668025970459, 0.6224313378334045, -0.32773280143737793, 0.006856793537735939, 0.5462610125541687, -0.7048773169517517, 0.12721340358257294, -0.2988245487213135, -0.5789920091629028, 0.19003692269325256, 0.6003054976463318, -0.01703554391860962, -0.18278644979000092, -0.2035250961780548, 1.1412440538406372, -0.3656185269355774, 0.055896174162626266, -0.23451533913612366, -0.20411111414432526, -0.07087724655866623, -0.22686776518821716, 0.14839938282966614, -0.39350390434265137, -0.7876648306846619, -1.2486201524734497, -0.6456700563430786, -0.7077040076255798, 0.48206424713134766, 0.23718000948429108, 1.2507950067520142, 0.8058106303215027, 0.3911930322647095, -1.2992687225341797, 0.10433229058980942, -0.06770377606153488, -0.5410218834877014, 0.6959213614463806, -1.0699505805969238, -0.6704733371734619, -0.641988217830658, 0.9812842607498169, 0.4945184886455536, -0.9263558983802795, 1.0297483205795288, 0.7571330070495605, -1.0473295450210571, 0.22845591604709625, -1.071749210357666, 0.9140028953552246, 0.4597739577293396, 0.6869736909866333, -0.433329701423645, -0.2948911488056183, 0.7913302183151245, 0.7669086456298828, 0.1364200860261917, 0.33798304200172424, -0.18669794499874115, 1.5708179473876953, -0.4089585840702057, 1.0658210515975952, -0.23603704571723938, -1.121049404144287, -0.22989998757839203, -0.040090590715408325, 1.0846034288406372, -1.1949715614318848, -0.16657012701034546, -0.16314245760440826, -0.5518069863319397, 0.0755172148346901, 0.10256601870059967, 0.18714645504951477, -1.0835014581680298, 0.5228787660598755, -0.8318942785263062, 0.33482858538627625, 0.230740025639534, 1.404138207435608, -0.07539566606283188, -0.02717638574540615, 1.1085162162780762, 0.1722414791584015, 0.19620931148529053, 0.07418741285800934, 1.0662460327148438, 0.005803117528557777, -0.8277431130409241, 1.2170354127883911, 0.20191119611263275, -0.35982269048690796, 0.3313436806201935, 0.286166250705719, -0.14498509466648102, 0.49404552578926086, -0.44824057817459106, -0.6087192893028259, -0.10105118155479431, 1.0051161050796509, 0.21977998316287994, -0.7686675190925598, 0.8501896858215332, -0.5883781909942627, -1.3275632858276367, -0.808800995349884, 1.6318994760513306, -0.24558548629283905, 0.44395911693573, -0.5992355942726135, 1.0538818836212158, 0.26161476969718933, 0.005746031180024147, 0.8256176114082336, -0.08457662910223007, -0.6582211852073669, -0.8624729514122009, -0.7135453224182129, -1.0562056303024292, 0.05779428407549858, -0.9740383625030518, -1.1556377410888672, 0.12417509406805038, -0.4846562445163727, -0.15752843022346497, 0.43409764766693115, -0.15261909365653992, -0.06354273855686188, -1.4259028434753418, -0.5879653096199036, 0.12324542552232742, 1.0324816703796387, -0.30956488847732544, 0.5597089529037476, -0.26901593804359436, 0.06405975669622421, 1.4857404232025146, 0.191297709941864, -0.7630881071090698, 0.13986296951770782, -0.39974409341812134, -0.8884690999984741, 0.1573203057050705, -0.1181497573852539, 0.3178751766681671, 0.671718955039978, 0.47798141837120056, 0.7598651647567749, 0.13506071269512177, 0.2547563910484314, 0.602548360824585, 0.6296780109405518, -1.4696778059005737, -0.9566888809204102, -0.9834973812103271, -0.9360007047653198, -0.9343176484107971, -1.5017374753952026, 0.6743568778038025, 0.4064282476902008, -0.6673503518104553, 0.11190354079008102, -0.17750395834445953, 0.4836238622665405, 0.044152434915304184, 1.1656476259231567, 0.3198396861553192, 0.4739607572555542, -0.5888729095458984, 0.10066934674978256, -0.7530930638313293, -0.014655757695436478, 1.1589370965957642, -0.32172638177871704, -0.13307881355285645, 1.3143807649612427, 1.8204996585845947, -0.12735888361930847, 1.0373446941375732, 0.14977498352527618, 0.30280569195747375, -0.5786274075508118, -0.16471967101097107, -0.30833229422569275, -0.7625502943992615, 1.249819278717041, 0.3760920464992523, -1.0235832929611206, -0.3559964895248413, -0.2525935769081116, -0.7974061369895935, 0.01000326406210661, 0.05781158059835434, -0.860289990901947, 0.2150171846151352, -0.2882782518863678, 0.5915858149528503, -0.23981671035289764, -0.02726353146135807, 0.6508084535598755, -0.4621202051639557, -0.2172725349664688, -0.5264158844947815, -0.15884312987327576, -0.08347138017416, 0.40841972827911377, -0.13534660637378693, -0.788268506526947, -0.12105382978916168, 0.45975103974342346, 0.64887934923172, -0.5347524285316467, 0.0913558304309845, 1.349733829498291, 0.7861350774765015, -0.5864341259002686, -0.1172589436173439, 0.20032015442848206, -0.14240294694900513, -0.026247091591358185, 0.34342941641807556, 0.42664074897766113, 0.5224262475967407, -0.6560969352722168, -1.0602772235870361, -0.0648324266076088, 0.23992763459682465, 0.6368732452392578, 0.6921730637550354, 0.874281644821167, -0.5496841669082642, -0.34822872281074524, -0.7085513472557068, 0.10702096670866013, -0.7376121878623962, -0.35711610317230225, -0.4001772105693817, -0.7253950238227844, 0.14711889624595642, -0.793033242225647, 0.519126296043396, 0.34847554564476013, 0.043373409658670425, 0.5989487767219543, 1.3320930004119873, -0.1416018158197403, -0.10138487070798874, 0.04877893254160881, -0.09754791110754013, -0.7773996591567993, 0.7147960066795349, 0.3815617859363556, -0.919324517250061, -0.40654420852661133, -0.6949561834335327, -0.2560465335845947, 0.49215471744537354, -0.08819365501403809, 0.591196596622467, -1.217864751815796, -0.45175719261169434, 0.22487019002437592, 1.3349127769470215, 0.09115511178970337, -0.3982275724411011, -0.6015532612800598, -0.09582117199897766, 0.30236002802848816, 0.15150856971740723, -0.006692187860608101, 0.8741160035133362, -0.31749027967453003, -0.41484200954437256, -0.17812438309192657, 0.5028549432754517, 0.7629430294036865, -1.187811017036438, -0.20972643792629242, -0.03470921143889427, -0.12474305182695389, -0.9807130098342896, -0.34929874539375305, -0.0789053812623024, 0.7322315573692322, 0.6138537526130676, 0.3727877736091614, 1.506448745727539, -1.120405912399292, -0.1410086452960968, -1.6227067708969116, 0.778731107711792, 0.20922240614891052, 1.4202220439910889, 0.1214480847120285, 0.4761351943016052, 0.558984100818634, -0.4629676043987274, -0.04986463859677315, 0.5891528129577637, 0.8306800723075867, 0.08943331241607666, -0.8830990195274353, -0.4373190701007843, -0.2911834418773651, -0.19003604352474213, -0.7052221894264221, 0.1012813001871109, -0.004487907979637384, -0.5783995985984802, -0.7593830227851868, 0.7767345905303955, 0.8961647152900696, -0.3284737765789032, -0.6054744720458984, -0.45172590017318726, 0.4264962673187256, -0.7765963077545166, 0.08624948561191559, -0.2770431339740753, -0.19378215074539185, -0.21879823505878448, 0.01577567122876644, -0.5858489871025085, 0.26000139117240906, -0.27545762062072754, 0.9510166049003601, -1.2471343278884888, 0.010938793420791626, -1.1748619079589844, 0.7414641380310059, 0.3434165120124817, 0.5849848389625549, 0.1051388680934906, 0.30281946063041687, -0.26781362295150757, -0.17636381089687347, 0.06393056362867355, 1.139562726020813, -0.23565274477005005, -0.33022865653038025, -0.33869051933288574, -0.5270757675170898, 0.27723556756973267, -0.4915139973163605, -0.6398329138755798, 0.12320732325315475, -0.3330064117908478, -0.11363458633422852, 0.09610728174448013, 0.4893825054168701, 1.6697555780410767, 0.885526180267334, -0.38347429037094116, 0.6667419672012329, 0.031683627516031265, -0.035579387098550797, 0.11654554307460785, 0.44892647862434387, -1.0890592336654663, -0.5067521333694458, 0.6758172512054443, 0.8434134721755981, 0.2798961102962494, 0.5081722140312195, -0.23431043326854706, 0.43651288747787476, 0.02067941054701805, -0.09340473264455795, 0.3233453929424286, 0.9591984748840332, 0.8051841259002686, 0.3149925768375397, 1.3421756029129028, -0.07295309752225876, -0.4482862949371338, 1.2377828359603882, -0.9719229340553284, 0.4730043113231659, 0.42479461431503296, -0.20605963468551636, 0.7275451421737671, -1.9735296964645386, -0.7709518671035767, 0.6596532464027405, -0.20393560826778412, 0.2113676816225052, 0.40564867854118347, 0.6516547203063965, -0.22007502615451813, 0.1547996997833252, 0.5498323440551758, 0.4206998944282532, 1.2499827146530151, -0.5745047926902771, 0.1390877217054367, 0.3902112543582916, -1.2478424310684204, 0.8571147322654724, -0.8572364449501038, -0.2768966257572174, 0.8073516488075256, -0.20618140697479248, 0.2917684316635132, 0.5391432642936707, 0.32302138209342957, 1.3402312994003296, 0.09287121146917343, -1.4454265832901, 0.6549608111381531, -0.9561289548873901, 0.10330339521169662, -0.641313910484314, -0.009754141792654991, -0.3136223256587982, -0.6769746541976929, -0.03792911767959595, -0.20725657045841217, -0.4725930392742157, -0.10526347160339355, 0.3231339454650879, -0.985897421836853, -0.43639129400253296, 0.5410441756248474, 0.7670500874519348, 0.7713648676872253, 0.030080480501055717, 0.1326339840888977, 0.0556357279419899, -0.06155768036842346, 0.4626469612121582, 0.3355974853038788, 0.39656418561935425, -0.19276820123195648, -0.44750261306762695, -0.6075875163078308, 0.9105692505836487, 0.9166609644889832, -0.15604084730148315, 0.10380636900663376, 1.2352219820022583, 1.5869839191436768, -0.312863826751709, -0.7632482647895813, 0.148541659116745, -0.3428478538990021, 0.941776692867279, 0.5382279753684998, -0.9864647388458252, -0.6820207834243774, -0.2516934871673584, -1.1421043872833252, 1.2416622638702393, -0.6778124570846558, -0.4863013029098511, 0.237003356218338, 0.7042680978775024, 0.6032609343528748, 0.16335159540176392, 0.012966261245310307, 0.5496782064437866, 0.06797856092453003, -0.3665904700756073, -1.0665165185928345, 0.6091349720954895, 0.5459338426589966, -0.1336907595396042, -0.8372976779937744, 0.2700701355934143, -0.4102538228034973, 0.06783013790845871, 0.5446202158927917, 1.0396034717559814, 0.5079347491264343, 0.40821781754493713, 0.20132049918174744, -0.9420535564422607, -0.5678669214248657, -0.5604553818702698, -0.15736766159534454, -0.43908578157424927, 0.9079776406288147, 0.125162735581398, -0.24623247981071472, 0.10383463650941849, -0.06657487899065018, -0.4109722673892975, -0.35480454564094543, -0.93198162317276, 1.450804352760315, 0.45724737644195557, -1.0184921026229858, 0.13311982154846191, 0.004542083479464054, -0.031885672360658646, -0.18574531376361847, -0.28820696473121643, 0.6737199425697327, -1.0803278684616089, -0.4221327304840088, 0.0017395615577697754, -0.2917511761188507, 0.2364657074213028, 0.19766893982887268, 0.5226255655288696, -0.3324142098426819, -1.636862874031067, -0.6970906257629395, 0.7731784582138062, 1.0758488178253174, -0.5057727098464966, 0.6793968677520752, -0.2344043105840683, -1.9384866952896118, 0.87134850025177, -0.23415830731391907, -1.1490697860717773, -0.9584238529205322, -0.6733064651489258, 0.17706410586833954, 0.4476395547389984, -0.08465076237916946, 0.03620400279760361, 0.6002494096755981, -0.5761620402336121, -1.0312728881835938, -0.6861871480941772, -0.37831076979637146, 0.6594201922416687, 0.624070405960083, -0.6160916686058044, 0.8726030588150024, 0.6981749534606934, -0.6514145731925964, -0.613689661026001, 0.3991868793964386, -1.2040671110153198, 0.14002205431461334, 0.6577531099319458, 0.8044949769973755, 0.5435802340507507, 1.2548816204071045, 0.8690906167030334, -0.18950587511062622, 0.6301547288894653, 0.5509883761405945, -0.5931857824325562, -0.9315067529678345, -0.7488255500793457, 0.8085910081863403, -1.1124647855758667, -1.651085376739502, 0.3044787645339966, -0.0766221135854721, -1.010471224784851, 0.32845786213874817, 0.44807982444763184, -0.8004472851753235, -0.2853992283344269, -0.18715333938598633, -0.15250614285469055, 0.2559982240200043, 0.8299705982208252, 0.28891807794570923, -0.6956943273544312, -0.2105531394481659, 0.15024271607398987, 0.7842938899993896, -1.052389144897461, -0.14694388210773468, -0.4933426082134247, 0.07939683645963669, 0.46812283992767334, 0.12540003657341003, 0.5300718545913696, -0.5249493718147278, -0.3666422665119171, 1.456493854522705, 0.5081915855407715, 0.1675979644060135, 0.3574190139770508, 0.7510064244270325, 0.4580337405204773, 0.3141893744468689, -0.7577150464057922, 0.03720102831721306, 0.14679129421710968, 0.9865206480026245, -0.21302008628845215, 0.6166281700134277, -0.4931579828262329, 0.5260951519012451, 0.5700704455375671, 0.35837990045547485, 0.625565230846405, 0.1711745411157608, -1.0606236457824707, 0.3866993486881256, 0.5676257610321045, -0.6101744771003723, 0.4111904799938202, 0.3510400354862213, -0.11280788481235504, -0.31060996651649475, 0.5043794512748718, 0.6141241192817688, -0.7715253829956055, 0.1541977971792221, 0.2066815346479416, -0.6102941036224365, -0.5006411671638489, -0.3388959765434265, -1.8544820547103882, 0.08167283236980438, -0.08436010032892227, -0.25568386912345886, 1.2839781045913696, -1.0001014471054077, -0.2149163782596588, 0.09779957681894302, 0.07165426760911942, -0.07626528292894363, -0.8632615208625793, 0.13266868889331818, -0.5225904583930969, 0.8758853077888489, 0.974032998085022, 0.029565488919615746, 1.3928852081298828, -0.13171787559986115, -0.9313367605209351, -0.9054768085479736, 0.11890768259763718, 0.052136536687612534, 0.17119033634662628, -0.1583145260810852, 0.08728412538766861, 0.18606731295585632, -0.752535879611969, -1.3292715549468994, 0.27276793122291565, 0.6054140329360962, -0.24889495968818665, -0.5620077252388, -0.26196080446243286, -0.47877755761146545, 0.30377888679504395, 0.5518940091133118, -0.3102758526802063, -0.24126438796520233, -0.5911786556243896, -0.03634669631719589, -0.12470705062150955, 0.8948612213134766, -0.3335346281528473, 0.09411244094371796, -0.3872995674610138, -0.24984343349933624, -0.33847370743751526, -0.7147173285484314, 0.48211273550987244, 0.1652863472700119, 0.22043223679065704, -0.8141208291053772, -0.27363675832748413, -0.18543922901153564, -1.2722915410995483, -0.10082662105560303, 0.8076770305633545, -0.5799189209938049, 0.3467920124530792, -0.3390602767467499, -0.48041483759880066, -0.5468164086341858, -0.1916167438030243, 0.02412048541009426, 0.5123261213302612, 0.26505759358406067, 0.09031377732753754, -0.6718237996101379, 0.9245775938034058, 0.6340415477752686, -0.7427805066108704, 0.9013360142707825, 1.3456707000732422, 1.214908242225647, 0.3317092955112457, -0.5891945958137512, -0.22049281001091003, 1.6019861698150635, -0.7605242133140564, -0.2396887242794037, -1.232957124710083, 0.5520830750465393, -0.2225964218378067], [-0.26151716709136963, 1.4712438583374023, -1.6942527294158936, -0.5575543642044067, -0.225876122713089, 0.7455945611000061, 1.8221107721328735, 0.31152433156967163, 0.47629407048225403, -0.4502156376838684, -0.6744009256362915, 0.6701828837394714, 1.6517459154129028, 0.5334648489952087, 0.43936941027641296, -0.06172764301300049, 1.1141327619552612, 0.44233280420303345, 0.4909524619579315, -0.07671279460191727, -0.6197396516799927, -0.46620264649391174, 0.16789895296096802, 0.44522660970687866, 0.49289944767951965, 1.1967358589172363, -1.3344019651412964, -0.18058785796165466, -2.4259262084960938, -0.45048046112060547, 1.1517572402954102, -0.8803895711898804, 0.5294227004051208, 0.07894475013017654, -1.1225346326828003, -0.23995091021060944, 1.0809166431427002, -0.09032890945672989, 0.46127980947494507, 0.1539951115846634, 2.2476460933685303, -0.10987398773431778, 0.15589424967765808, -1.1583263874053955, -0.026712847873568535, -0.23616325855255127, 0.8115453720092773, -1.4990248680114746, 0.3084626793861389, -0.30589738488197327, -0.015554036945104599, 0.8716181516647339, 0.8069692254066467, 1.4987218379974365, 0.029949462041258812, -0.9324007034301758, 0.11107071489095688, 0.19779008626937866, 0.508915901184082, -0.21246033906936646, 0.7703032493591309, -0.21642948687076569, -0.5976045727729797, 1.31491219997406, 1.052973985671997, 0.06944184750318527, 0.13816681504249573, 0.14958006143569946, 0.3890838325023651, -0.3937411606311798, 0.25616127252578735, 0.06156383827328682, -0.1427978128194809, 0.1472378671169281, -0.9927530288696289, 0.1777796894311905, 0.5407426357269287, -0.12327674776315689, -0.26805171370506287, 1.050087332725525, -0.6593233346939087, 0.27992773056030273, 0.47178348898887634, 0.20550666749477386, 0.1688913106918335, 0.9676340818405151, 0.188869446516037, -0.009128636680543423, -0.3629502058029175, 1.3066718578338623, -0.21284843981266022, 0.5621191263198853, 0.19722378253936768, 0.14005881547927856, 0.09456649422645569, -0.7463046908378601, -0.10684461891651154, -0.6141746044158936, -0.7197195291519165, -1.2124744653701782, -0.6246801018714905, -0.4875521659851074, 0.29024240374565125, 0.8788666129112244, 0.8727457523345947, 0.9987753629684448, 0.36061641573905945, -0.7721497416496277, -0.2655486464500427, -0.10527873039245605, -0.36617380380630493, 0.18250474333763123, -0.9734530448913574, -0.61501145362854, -0.5388705730438232, 0.9229669570922852, 0.3439532518386841, -0.06785573065280914, 0.4859854280948639, 0.5411858558654785, -0.8813765048980713, -0.008695575408637524, -0.29727017879486084, 0.732979953289032, 0.2600899636745453, 0.6658167243003845, -0.5692954659461975, -0.5076001286506653, 1.0908563137054443, 0.6210080981254578, 0.6080986857414246, -0.4464546740055084, 0.4845098853111267, 1.2708278894424438, -0.8417628407478333, 0.78715580701828, -0.2279590517282486, -1.9505438804626465, -0.3525184690952301, 0.2855106592178345, 0.7194807529449463, -0.3916701078414917, 0.001854466274380684, -0.738574206829071, -0.4865746796131134, -0.8611708283424377, 0.9471572637557983, 0.407552570104599, -1.0239498615264893, 0.09908485412597656, -1.1769691705703735, 0.2944236397743225, -0.14210139214992523, 1.306298851966858, 0.19229097664356232, -0.5262719392776489, 0.8256035447120667, 0.19705286622047424, 0.353103369474411, 0.7884073853492737, 1.2124069929122925, 0.3703136146068573, -0.815383791923523, 1.049399733543396, -0.36299973726272583, -0.5420728921890259, 0.014516379684209824, 0.04400225356221199, 0.09726380556821823, 0.5690561532974243, -0.404356449842453, -0.39272284507751465, -0.2990649938583374, 0.24996840953826904, 0.2519757151603699, -0.5458059906959534, 1.078692078590393, -0.5121725797653198, -1.054344654083252, -1.4113057851791382, 1.149501085281372, -0.3049255907535553, 0.290066659450531, -0.3406176269054413, 0.9098789095878601, -0.7054100632667542, 0.08203897625207901, 0.18840034306049347, -0.6164538860321045, -1.081634759902954, -1.2636146545410156, -0.30484119057655334, -0.8535492420196533, -0.030500151216983795, -0.5231132507324219, -0.4381653070449829, -0.011144278571009636, -0.6125536561012268, -1.1237046718597412, 0.5106341242790222, 0.07211398333311081, -0.24527762830257416, -1.8325550556182861, -0.5260401964187622, -0.14905399084091187, 0.5240221619606018, -1.3523814678192139, 0.9663733243942261, -0.7808038592338562, 0.431535005569458, 0.4506038427352905, 0.46419358253479004, -1.155057430267334, 0.8587871789932251, -0.21886728703975677, -1.3802739381790161, 0.29101964831352234, 0.06655856221914291, -0.05577704310417175, 0.3025522232055664, 0.3034062385559082, 0.21938373148441315, 0.9692035913467407, 0.24645352363586426, 0.7437750101089478, 0.1574239432811737, -0.951810359954834, -1.1836521625518799, -1.0996586084365845, 0.13576871156692505, -1.2333455085754395, -0.8459082841873169, 0.6044926047325134, 0.22610609233379364, -0.45095452666282654, 0.8306066989898682, 0.5070697069168091, -0.06716150790452957, 0.36641746759414673, 0.4643837511539459, 0.5711095333099365, 0.9324668049812317, -0.18252870440483093, -0.6930819749832153, -0.5346618294715881, 0.03285576030611992, 1.3698610067367554, -0.3100380599498749, 0.39649397134780884, 1.3094971179962158, 1.3257925510406494, -0.13143673539161682, 0.48751187324523926, 0.44088584184646606, -0.4496637284755707, -0.8002889752388, -0.42383652925491333, -0.30579128861427307, -1.0544886589050293, 1.4823120832443237, 0.5447630882263184, -1.0210952758789062, -0.23826947808265686, 0.03738521784543991, 0.30723974108695984, 0.16772617399692535, -0.4453081488609314, -0.6744677424430847, 0.39320138096809387, -0.2643771469593048, 0.24153852462768555, 0.6795218586921692, -0.40203529596328735, 0.49597495794296265, -0.08193410187959671, -0.23496150970458984, -0.508513331413269, -0.03833712637424469, -0.02037535049021244, 1.0055935382843018, 0.5610159635543823, -1.2420034408569336, -0.38378068804740906, -0.15767984092235565, 0.4387660324573517, 0.19478802382946014, 0.12932084500789642, 1.2703956365585327, 0.38672104477882385, -0.304236501455307, -0.05426158756017685, 0.7684478163719177, -0.10661669075489044, 0.3028024733066559, 0.1793026179075241, -0.007300452329218388, 0.5985292792320251, -1.1031728982925415, -1.1857497692108154, 0.46501538157463074, 0.43561792373657227, 0.97412109375, 1.0125434398651123, 0.8909807205200195, -0.6351293921470642, 0.010302921757102013, -0.2051871418952942, -0.3549397587776184, -1.1826627254486084, -0.2384737730026245, -0.34947025775909424, -1.0527104139328003, 0.4089697599411011, -0.7119215726852417, 0.638705849647522, 0.4082552492618561, -0.0768476203083992, 0.8989250063896179, 0.9555413722991943, 0.052933722734451294, -0.20479479432106018, 0.16548722982406616, 0.06664136052131653, -0.37808969616889954, 0.6753007769584656, 1.0789787769317627, -1.3174784183502197, 0.06791889667510986, -0.7609357833862305, 0.11695301532745361, 1.0033016204833984, -0.0801783874630928, 0.19851525127887726, -0.9149413704872131, -0.5353198051452637, 0.31209951639175415, 0.9794891476631165, 0.18246711790561676, -0.14230406284332275, -1.3339555263519287, 0.0667005255818367, 0.7025330662727356, 0.485914945602417, -0.6470066905021667, 1.2140971422195435, -0.35913363099098206, -0.10153121501207352, -0.2423115223646164, 0.4515734910964966, 0.8009278774261475, -0.8882138729095459, -0.35516202449798584, 0.2575295865535736, -0.11927914619445801, -0.8132653832435608, -0.18531711399555206, -0.06473046541213989, 0.8135263919830322, 0.26704421639442444, 0.5871334075927734, 1.507601022720337, -1.3684916496276855, -0.5213784575462341, -1.7264052629470825, 1.1331830024719238, 0.5278336405754089, 1.366194725036621, -0.01251817587763071, 0.8892936110496521, 0.21651193499565125, -0.7496501207351685, -0.4281476140022278, 0.24489793181419373, 0.6828673481941223, 0.5554811358451843, -0.5293713808059692, -0.6144155263900757, -0.3977970480918884, -0.7629695534706116, -1.059517741203308, -0.03085906431078911, 0.9027851819992065, -0.2318374067544937, -0.575023353099823, 0.4650309681892395, 0.5924601554870605, -0.7662166357040405, -0.43164730072021484, 0.0198957622051239, 0.25032752752304077, -0.1942494809627533, -0.4195658564567566, -0.6256666779518127, -0.40031516551971436, -0.45364469289779663, -1.178008794784546, -0.053211331367492676, 0.24815252423286438, -0.003910848870873451, 0.9359152317047119, -1.3439782857894897, -0.004269670229405165, -0.2891939580440521, 0.27062442898750305, 0.2951156795024872, -0.04402405768632889, -0.5206089019775391, 0.09343089908361435, -0.2717626988887787, 0.465525358915329, 0.06125982105731964, 1.2612156867980957, 0.42359983921051025, -0.11798960715532303, -0.195193350315094, -0.5525429844856262, 0.08059661090373993, -0.36893051862716675, -0.7840269804000854, 0.7501844167709351, -0.7017279863357544, 0.34572163224220276, -0.2140262871980667, 0.5184650421142578, 2.5242605209350586, 0.6096463203430176, 0.4058314561843872, 0.8230993747711182, -0.10130611807107925, -0.42724156379699707, 0.0638229250907898, 0.7657150030136108, -0.6723482012748718, -1.0959502458572388, 0.4237090051174164, 0.5635017156600952, 0.3662268817424774, 0.6393806338310242, 0.15058386325836182, -0.042114682495594025, -0.01676597259938717, -0.39227262139320374, 0.2609027028083801, 0.9611708521842957, 0.8658236265182495, 0.4495788812637329, 0.8369419574737549, -0.760163426399231, -0.9435818791389465, 0.9973615407943726, -0.41996294260025024, -0.16983066499233246, 1.0231590270996094, 0.5239112377166748, 0.9245768785476685, -1.6480746269226074, -1.1034495830535889, 0.36383992433547974, -0.4333369731903076, 0.3959326148033142, 0.40383511781692505, 1.3151403665542603, -0.7073869705200195, -0.30996832251548767, 0.49875614047050476, -0.16910342872142792, 1.3898063898086548, -0.2952715754508972, -0.4241141080856323, 0.5919723510742188, -0.37498801946640015, -0.2925960123538971, -0.7643496990203857, -0.692154586315155, 0.3352564871311188, -0.8021573424339294, 0.41786766052246094, 0.5447536706924438, -0.12169245630502701, 0.19037342071533203, -0.38735800981521606, -1.3713371753692627, 0.6712353825569153, -0.6587986350059509, 0.0065657878294587135, -0.39420440793037415, -0.3304957449436188, -0.34629255533218384, -0.591602087020874, -0.6639823317527771, -0.14584322273731232, -1.3043832778930664, -0.4822329878807068, 0.1991516649723053, -0.9473952651023865, 0.11243816465139389, 0.6421654224395752, 1.5945472717285156, 0.5722821950912476, 0.08756892383098602, -0.07328581809997559, 0.2660202383995056, -0.45416489243507385, 0.29999881982803345, 0.43707606196403503, -0.30935752391815186, -0.3860110938549042, -1.3421512842178345, -0.6750559210777283, 2.135284662246704, 0.8596106171607971, -0.5050432682037354, 0.8946183919906616, 0.4287593960762024, 1.4696800708770752, -0.0745217502117157, -0.8957578539848328, 0.47672906517982483, 0.08179187029600143, 0.767774760723114, 0.5943842530250549, -0.6238083243370056, -0.9377714991569519, -0.25463607907295227, -1.5264959335327148, 1.8159334659576416, -0.282582551240921, -1.0939244031906128, 0.24853511154651642, 0.5521637201309204, -0.16442061960697174, 0.7570517063140869, -1.0208293199539185, 0.24629901349544525, 0.20312289893627167, -0.7274557948112488, -1.4025403261184692, 0.6234802007675171, 0.24971769750118256, -0.08348235487937927, -0.2839314937591553, 1.0054054260253906, -0.483917772769928, -0.2990166246891022, -0.30013060569763184, 0.8147587180137634, 0.1180056482553482, 0.1670512706041336, 0.5012731552124023, -0.6417453289031982, -0.3293108642101288, -0.8410630822181702, 0.5784172415733337, 0.19097745418548584, 0.9490452408790588, 0.48248985409736633, -0.8027912378311157, 0.07954104989767075, -0.1658487766981125, -0.07816490530967712, -0.29252907633781433, -0.8895598649978638, 0.9797492623329163, 0.6170681118965149, -0.43506088852882385, 0.139741912484169, -0.2886422276496887, 0.10894594341516495, -0.11810248345136642, -0.9086014628410339, 0.5274472832679749, -1.7286500930786133, -0.5105113387107849, -0.41721686720848083, 0.02410123310983181, 0.27129772305488586, -0.3115789294242859, -0.1802176535129547, -0.4779692590236664, -1.3585762977600098, -0.6688176989555359, 0.38433337211608887, 0.6833924055099487, -0.9844368696212769, 0.15029984712600708, 0.24468161165714264, -1.6185673475265503, 0.5224356651306152, 0.12251172214746475, -1.3582096099853516, -0.6054222583770752, -0.9697888493537903, 0.5768495202064514, 0.3260849714279175, -0.23030535876750946, 0.03995443880558014, 1.3849878311157227, -0.593906581401825, -1.07401442527771, -0.5249931216239929, 0.1333065629005432, 1.7364412546157837, 1.0984253883361816, -0.5263963341712952, 1.5465247631072998, 0.2611408829689026, -1.0014945268630981, -0.5285016298294067, 0.7960230708122253, -1.1975367069244385, 0.12641200423240662, 0.8011530041694641, 0.21092794835567474, 1.2935901880264282, 1.253322720527649, 1.0555675029754639, 0.28381094336509705, 0.19384817779064178, 0.05641510337591171, -0.6594980955123901, -0.8210368752479553, -0.47247517108917236, 0.23157498240470886, -0.9799703359603882, -1.0717252492904663, 0.11787502467632294, -1.040475606918335, -0.9548390507698059, 0.4690777659416199, 1.0456111431121826, -0.6942880749702454, 0.13236097991466522, -0.8970465660095215, 0.5798283219337463, -0.3183656930923462, 0.904574453830719, 0.4033583104610443, -0.6840828657150269, 0.1604982614517212, -0.35737624764442444, 0.217925027012825, -0.6298693418502808, -0.3948764503002167, -0.4704970419406891, 0.4587186276912689, -0.4909341633319855, 0.13819026947021484, 0.30490174889564514, -1.1242337226867676, -0.5011959671974182, 2.0270872116088867, 0.9244890809059143, -0.1829516738653183, -0.01660047471523285, 0.3240054249763489, -0.18858937919139862, 0.26991307735443115, -0.3285226821899414, 0.5172613859176636, -0.3395320177078247, 0.23101763427257538, 0.2912493646144867, 0.2524893283843994, -0.49733766913414, 0.2894989550113678, -0.27997851371765137, 0.61203533411026, 0.5261041522026062, 0.15687565505504608, -0.6640443801879883, 1.0366108417510986, 0.5264501571655273, -0.5359792709350586, 0.6197272539138794, 0.11120209097862244, 0.07454345375299454, -0.0025563365779817104, 0.20742659270763397, 0.7180266380310059, -0.32161620259284973, 0.7672531008720398, 0.4190945625305176, -0.1438342034816742, 0.3788442611694336, -0.8779190182685852, -2.24458909034729, -0.2745382487773895, -0.5159772634506226, 0.3621900975704193, 1.2614001035690308, -0.6948618292808533, -0.3316681683063507, -0.1344032883644104, 0.33035922050476074, 0.20558597147464752, -0.6852940917015076, -0.15813174843788147, -0.3028011620044708, 0.7924110889434814, 0.5220258831977844, -0.37392324209213257, 1.0345913171768188, -0.24172528088092804, -0.45553839206695557, -0.2362668663263321, 0.1418754905462265, 0.09861134737730026, 0.7245520353317261, 0.42022570967674255, -0.4336263835430145, -0.4175356924533844, -1.0387890338897705, -0.7332808375358582, 0.36475852131843567, -0.4217292368412018, -0.03722192347049713, -0.32233959436416626, -1.0112618207931519, 0.052206020802259445, 0.6648282408714294, 0.548729419708252, -0.579878568649292, -0.43156304955482483, -0.9298122525215149, 0.10053636133670807, -0.39577439427375793, 0.3827069401741028, -0.9731676578521729, 0.6173298954963684, 0.360920250415802, -0.490560919046402, -0.9340837001800537, -0.8202330470085144, 0.4775097668170929, -0.2152673751115799, 0.4409470558166504, -0.4671550989151001, -0.2552246153354645, 0.3166605532169342, -0.9058263301849365, 0.14794811606407166, 0.24081537127494812, -0.25363269448280334, 0.30619385838508606, -0.9527626633644104, -0.4567176103591919, -0.4045204222202301, 0.1380886435508728, 0.8800196647644043, 0.23378290235996246, -0.18551211059093475, 0.7217636108398438, -1.194095253944397, 0.19705519080162048, 0.38771623373031616, -0.3032333254814148, 0.7204533815383911, 1.5154547691345215, 1.6921952962875366, -0.2863461971282959, 0.07009118795394897, 0.1437784731388092, 0.9141570925712585, -1.3262990713119507, -0.5885738730430603, -1.5706937313079834, -0.36673951148986816, -0.3705744445323944], [0.3962858319282532, 1.3133938312530518, -1.943106770515442, 0.15678362548351288, -0.03309934213757515, 0.7109832167625427, 0.4967532157897949, 1.309700608253479, 0.4152916967868805, -0.3820559084415436, -1.7473093271255493, 0.01977180317044258, 1.3709096908569336, -0.2741328179836273, 0.4282246530056, 1.0410223007202148, 1.1751435995101929, 0.6194279193878174, 0.16099412739276886, -0.4234294593334198, -0.5678750276565552, 0.08369895070791245, -0.3339288830757141, 0.5092735290527344, 0.4019964933395386, 0.6246607303619385, -1.0314950942993164, 0.10334330797195435, -1.693489670753479, -1.1752607822418213, 0.5332040786743164, -1.0797029733657837, 0.9945679306983948, 0.02784249745309353, -0.8730506300926208, -0.39343443512916565, 0.5187749862670898, 0.06979286670684814, -0.1293121725320816, 0.16785651445388794, 1.6561800241470337, -0.0551450252532959, -0.5594716668128967, -0.7146806716918945, 1.52717924118042, -0.2206522822380066, 0.9982495903968811, -1.712990164756775, -0.2444716989994049, -0.3656139373779297, -0.06630764156579971, 0.7778615355491638, 0.42744165658950806, 1.3055821657180786, 1.3302083015441895, -0.6942533254623413, 0.2698744237422943, -1.1541842222213745, 0.5180325508117676, 0.06578313559293747, 1.3496577739715576, -0.08328087627887726, -0.5350239872932434, 0.8398579359054565, 0.6337831616401672, 0.2850461006164551, 0.3444223999977112, 0.18770655989646912, 0.09839864820241928, -0.12559159100055695, 0.6630089282989502, 0.21759368479251862, -0.4700584411621094, -0.2933550775051117, -0.2241692841053009, -0.32096317410469055, 0.6320133805274963, 0.2425990253686905, -0.08056800067424774, 0.2970018684864044, -1.126060962677002, 0.16975091397762299, 0.49974992871284485, 0.556918203830719, -0.17245331406593323, 0.1660112738609314, 0.3365029990673065, -0.9902400374412537, -0.7125476002693176, 1.7602468729019165, -0.1862594336271286, 0.2693798840045929, 0.0011614570394158363, 0.6934341192245483, -0.09982067346572876, -0.2852962613105774, -0.6359682679176331, 0.1417752504348755, -0.5559853315353394, -0.9786386489868164, -0.49983900785446167, -1.1259139776229858, 0.4060579240322113, 1.3659436702728271, 1.0104777812957764, 1.3632692098617554, -0.039063893258571625, -1.2965964078903198, -0.6060433387756348, 0.41855350136756897, -0.0843186154961586, 0.9536201357841492, -0.7889807224273682, -0.7754979133605957, -0.21138298511505127, 0.6405730843544006, 0.2905142903327942, -0.37324389815330505, 0.6722742319107056, 0.9907371997833252, -1.074195384979248, 0.3988221287727356, -0.5093489289283752, 0.5501902103424072, 0.24315506219863892, 0.6164661049842834, -0.12528730928897858, -0.10080615431070328, 1.1589950323104858, 0.4340793788433075, 0.32934385538101196, -0.294609397649765, -0.019297191873192787, 1.4060148000717163, -0.38591068983078003, 1.4689102172851562, -0.4477272927761078, -0.9729834794998169, -0.10153834521770477, -0.3061795234680176, 0.7826729416847229, -0.27908575534820557, 0.5336278080940247, -0.769191563129425, 0.09773233532905579, -0.4278959631919861, 0.35512006282806396, 0.16491815447807312, -0.673876166343689, 0.6074426770210266, -1.13462233543396, 0.21739618480205536, -0.42224210500717163, 0.900787889957428, 0.7562497854232788, 0.02353009395301342, 0.8868350386619568, 0.18100246787071228, 0.24135488271713257, 0.8356390595436096, 0.7942565679550171, -0.21991178393363953, -0.047476328909397125, 0.9430987238883972, 0.025133375078439713, -0.19145815074443817, 0.15329627692699432, 0.0478411540389061, 0.16912396252155304, 0.7169951796531677, -0.7981787323951721, -1.250536561012268, -0.2594597637653351, 1.255969524383545, -0.7319431900978088, -0.7240817546844482, 0.4643639028072357, -0.6227765083312988, -0.5125592947006226, -1.1488757133483887, 1.5789119005203247, -0.6301110982894897, 0.5964070558547974, 0.19012291729450226, -0.04757779836654663, -0.22873710095882416, -0.28988561034202576, 0.31418246030807495, -0.6696208119392395, -0.5733467936515808, -0.807201087474823, -0.8599209785461426, -1.1046316623687744, 0.23105968534946442, 0.06567811965942383, -0.7129245400428772, 0.27658694982528687, -0.35385170578956604, -0.9466527104377747, -0.01578023098409176, 0.4107711613178253, -0.25467541813850403, -0.5520752668380737, -0.46895501017570496, 0.08232865482568741, 0.21744002401828766, -0.5293457508087158, 0.8689691424369812, -0.7877612709999084, 1.0198659896850586, 0.9804576635360718, 0.08332479000091553, -0.3975844383239746, 0.7059577107429504, 0.6756587028503418, -0.4848034679889679, -0.03662543371319771, 0.11236362904310226, 0.3871326148509979, 0.0939260944724083, 0.47043874859809875, 0.34402838349342346, 0.45001688599586487, 0.10947823524475098, 0.5083630084991455, -0.05849459394812584, -1.352970838546753, -0.7927961349487305, -1.3408328294754028, -0.7914049625396729, -0.5882207751274109, -0.8255107998847961, 0.9571853876113892, 0.28410470485687256, -0.5996924042701721, 0.7932510375976562, 0.5898575186729431, 0.14098061621189117, 0.5064585208892822, 0.462100625038147, 0.12050975859165192, 0.18077367544174194, -0.23659177124500275, -0.9741078019142151, -0.8999341726303101, -0.05925604701042175, 0.893757700920105, 0.2659338414669037, -0.1771802455186844, 1.1058523654937744, 0.5884698629379272, 0.023929236456751823, 0.9500610828399658, 0.5620266795158386, -0.5925596356391907, -1.336228609085083, -1.0847464799880981, -0.7759203910827637, -0.4219582974910736, 1.8478692770004272, 0.9155582785606384, -1.1775221824645996, 0.19048763811588287, -0.5498197078704834, 0.3275319039821625, 0.43459418416023254, -0.28073468804359436, -1.2022483348846436, 0.43542903661727905, 0.23528234660625458, -0.3762476146221161, 1.0101170539855957, 0.5483477711677551, 0.4374265670776367, -0.5635681748390198, -0.7287247180938721, -0.6380802989006042, 0.05776160955429077, -0.17175336182117462, 0.8050972819328308, 0.16238166391849518, -1.0737087726593018, -0.5072928071022034, 0.12745174765586853, 0.07093754410743713, -1.1182271242141724, -0.2798212766647339, 1.4558287858963013, 0.6988541483879089, -0.011458424851298332, 0.20408514142036438, 0.626448929309845, 0.14828480780124664, 0.08840388804674149, 0.7741037607192993, 0.5833527445793152, 0.7457366585731506, -0.07882077991962433, -0.8370697498321533, 0.42652907967567444, 0.12494455277919769, 0.7458517551422119, 0.6519664525985718, 0.7940945029258728, -0.45187973976135254, -0.14944879710674286, -0.3582329750061035, -0.48558706045150757, -1.475928783416748, -0.45971325039863586, -0.9744833707809448, -1.0169848203659058, 0.2457629293203354, -0.5265357494354248, -0.04326368868350983, -0.1536416858434677, 0.06859532743692398, 0.08549992740154266, 1.0439354181289673, -0.16966423392295837, 0.004023173823952675, -0.05339931324124336, 0.2590720057487488, -1.3776230812072754, 0.6459642052650452, 0.25923988223075867, -1.44905686378479, 0.011354953050613403, -0.20550061762332916, -0.5874308943748474, 0.4263310432434082, 0.4948349893093109, -0.09398845583200455, -1.1259390115737915, -1.031908631324768, 0.09456022828817368, 0.8515099883079529, 0.015959370881319046, -0.6194331049919128, -1.07638680934906, 0.9109737277030945, 0.3260195255279541, 0.26600024104118347, 0.1845308393239975, 1.0085219144821167, -0.6972283124923706, -0.07462820410728455, -0.732764720916748, 0.5735649466514587, 1.2600444555282593, -0.7798131108283997, -1.0052610635757446, 0.10560852289199829, -0.26983070373535156, -0.5081531405448914, 0.13489606976509094, -0.20576168596744537, 0.7578648328781128, 0.1460045427083969, -0.04020998626947403, 1.4790326356887817, -0.8935878276824951, 0.2956002950668335, -1.493491768836975, 0.6859679222106934, 0.9656694531440735, 0.4935983419418335, 0.30143553018569946, 0.6177698969841003, 1.0849053859710693, -1.077770709991455, -0.4853537678718567, -0.19600854814052582, 1.036115050315857, 0.5144079327583313, -0.5599780678749084, -0.5279433727264404, -1.1055541038513184, -0.5330044627189636, -1.3831689357757568, -0.7401023507118225, 0.4390634000301361, -0.3222472667694092, -0.44881558418273926, 0.20758786797523499, 0.5317761301994324, -0.348355233669281, 0.15710003674030304, 0.016831113025546074, -0.22282132506370544, -0.39216747879981995, -0.07022399455308914, -0.3566969335079193, 0.0808849036693573, 0.29796361923217773, -0.6258335113525391, 0.09423983097076416, 0.5908640027046204, 0.28779882192611694, 0.8888556957244873, -1.913703441619873, 0.1303609311580658, -0.7240460515022278, 0.9869588017463684, -0.32572680711746216, 0.09955757856369019, 0.5911394357681274, -0.05518345907330513, -0.3011496067047119, -0.3926335275173187, -0.4191192388534546, 1.2406612634658813, -0.05664723739027977, 0.1724925935268402, -0.5888187885284424, 0.0431198850274086, 0.09998461604118347, -1.237457275390625, -0.10811607539653778, 0.6147673726081848, -0.2935717701911926, -0.07787499576807022, -0.07391880452632904, -0.031828898936510086, 1.061151146888733, 0.43038511276245117, 0.34189659357070923, 0.8891910314559937, -0.288400262594223, -0.22678057849407196, 0.24708925187587738, 0.856774091720581, -0.8114845752716064, -0.2725712060928345, 0.4683276116847992, 0.3472083806991577, 0.32161059975624084, 0.2178684026002884, 0.4033835828304291, 0.023260364308953285, -0.33201864361763, -0.45511943101882935, 0.4190422594547272, -0.19385483860969543, 1.250054955482483, 0.5000846982002258, 0.9526503086090088, -0.38948121666908264, -0.0009988890960812569, 0.8576720952987671, -0.33453720808029175, 0.2566443979740143, 0.8542866706848145, 0.3180066645145416, 1.4093008041381836, -1.372727870941162, -0.840028703212738, 0.3362283706665039, 0.09185022860765457, 0.6292198300361633, 0.9684851765632629, 0.7236644625663757, -0.7072621583938599, 0.24422207474708557, 0.009258708916604519, -0.47335243225097656, 1.1618783473968506, -0.27230486273765564, -0.0497918464243412, 0.12828364968299866, -0.23088666796684265, 0.1365765482187271, -0.9230043292045593, -0.6125823259353638, 0.5935297608375549, -0.9345644116401672, -0.3121764659881592, 0.5892401933670044, 0.34124457836151123, 0.36950233578681946, -0.4961566627025604, -0.9540590643882751, 0.5537625551223755, -1.1015933752059937, -0.15239059925079346, -0.27573251724243164, -0.23875541985034943, -0.987360954284668, -0.23126541078090668, -0.9258472919464111, 0.3421936333179474, -0.8189088702201843, -0.5088274478912354, 0.00090753473341465, -0.969883918762207, -0.46149176359176636, 0.5051025152206421, 0.7137001752853394, 0.7178589701652527, -0.46986123919487, 0.6433678269386292, 0.5530861020088196, -0.38567686080932617, 0.6378580927848816, 0.900873601436615, -0.2121247500181198, -0.9315632581710815, -0.014674459584057331, -1.04514479637146, 0.9649642109870911, -0.06171511858701706, -0.3637757897377014, 0.13789483904838562, 0.4350127875804901, 1.7065224647521973, -0.4263363778591156, -1.0982820987701416, 0.7453987002372742, -0.5625352263450623, 1.02237868309021, 0.3216322660446167, -0.8118060231208801, -0.6301606893539429, -0.6767432689666748, -1.5362629890441895, 1.4307345151901245, -0.27653974294662476, -0.9500418305397034, 0.7284489870071411, 0.8584208488464355, -0.297590434551239, 0.5790402889251709, -0.38044267892837524, 0.16521327197551727, 0.36224764585494995, 0.07460030168294907, -1.493972659111023, -0.08293657749891281, 1.085755467414856, 0.15225836634635925, -0.7338662147521973, 0.02100498229265213, 0.3256474435329437, 0.5125820636749268, 0.2588021755218506, 0.5208584666252136, -0.6307435631752014, 0.32530948519706726, 0.2559840977191925, -0.8494938611984253, -0.19113999605178833, -0.4178997278213501, 0.4064238369464874, -0.6451864838600159, 0.8992460370063782, -0.23687458038330078, -0.052700795233249664, -0.03457575663924217, -0.6853183507919312, -0.2928646206855774, 0.955936849117279, -0.22986820340156555, 1.2915692329406738, 0.9861248135566711, -0.7486158609390259, 0.19435515999794006, 0.1824093759059906, -0.47679010033607483, -0.6390401124954224, -0.807028591632843, 0.9395883083343506, -1.5236166715621948, -0.5414440631866455, -0.5824662446975708, -0.7115604877471924, -0.08906100690364838, 0.017451545223593712, -0.22616271674633026, -0.5422959327697754, -1.1735868453979492, -0.19815081357955933, 0.815775454044342, 1.5059887170791626, -0.6756119132041931, 0.10466109961271286, -0.45776593685150146, -1.7569793462753296, 0.14953571557998657, 0.08793946355581284, -1.059607982635498, -0.5754478573799133, -1.2521854639053345, 0.3717971444129944, -0.23819410800933838, 0.1289660483598709, -0.009977761656045914, 0.5558599233627319, -0.753692626953125, -0.9459208250045776, 0.19201934337615967, -0.33308905363082886, 0.7709351778030396, 0.5569440126419067, -0.9213292002677917, 1.059507131576538, 0.23316003382205963, -0.7526535391807556, -0.522355854511261, 0.6336216330528259, -0.9240902066230774, 0.2571653127670288, -0.044951431453228, -0.10954765975475311, 0.9487521648406982, 0.5991102457046509, 0.629715621471405, 0.31137484312057495, 0.8438720107078552, 1.1297600269317627, -0.6555406451225281, -0.8863743543624878, -0.491350382566452, 0.12889297306537628, -1.0234642028808594, -0.44448134303092957, -0.42763856053352356, -0.8237630128860474, -0.6116710901260376, 0.5656362175941467, 0.6228344440460205, -1.7801165580749512, 0.46669647097587585, -0.47321343421936035, -0.4064585268497467, 0.16038978099822998, 0.22551235556602478, -0.17599426209926605, -1.2208442687988281, 0.4175749123096466, -0.03851744160056114, -0.01147526502609253, -0.49874764680862427, 0.03160489723086357, -0.7041454911231995, 0.9903755784034729, 0.48651784658432007, 0.08024697005748749, -0.001801895909011364, 0.12461190670728683, -0.3370112478733063, 1.4003486633300781, 0.6505115032196045, -0.19712135195732117, 0.20449046790599823, -0.19834063947200775, -0.7551928162574768, 0.5298328995704651, -0.9781680703163147, 0.8493176102638245, -0.3215007483959198, 0.9336411356925964, -0.5776326656341553, 0.5277378559112549, -0.14133742451667786, 0.820970892906189, -0.056123584508895874, 0.8213499784469604, -0.25992536544799805, -0.06562758982181549, -0.8091651797294617, 0.7931032776832581, 0.6396182179450989, -0.754690408706665, 0.4043055772781372, 0.19937272369861603, -0.014892964623868465, 0.028197843581438065, 0.18412096798419952, 0.4621145725250244, -0.5848251581192017, 0.10987287014722824, -0.3260596990585327, -0.2513456642627716, 0.05173072591423988, -0.07135923951864243, -2.1852059364318848, -0.15480822324752808, -0.08508624881505966, 0.15692245960235596, 0.910140872001648, -0.45159730315208435, -0.18378372490406036, 0.4097851514816284, -0.04834327474236488, 0.6414191126823425, -0.4657806158065796, 0.1416260153055191, -0.0115975858643651, 0.850638210773468, 0.07744809240102768, -0.22193866968154907, 2.1595206260681152, 0.1210632249712944, -0.41272056102752686, -0.22603145241737366, -0.19752436876296997, 0.001227333676069975, 0.44951680302619934, -0.010041406378149986, -0.057903677225112915, 0.29916253685951233, -0.49740999937057495, -0.5656627416610718, 0.7767704725265503, 0.46670225262641907, 0.6928021311759949, -0.2527262568473816, 0.1143089011311531, -0.2921467423439026, 0.3213386535644531, 0.6103518605232239, -0.502313494682312, -0.3320120573043823, -1.0067251920700073, -0.1755957454442978, 0.2707769274711609, 0.22020602226257324, -0.8414791226387024, 0.892204225063324, -0.09467913210391998, 0.0463026687502861, -0.03293753042817116, -0.21974535286426544, 0.7197897434234619, -0.2293168306350708, 0.45954567193984985, 0.054743919521570206, -0.5915724039077759, -0.33679139614105225, -0.5156564116477966, -0.4453730583190918, 0.4172891676425934, 0.14919692277908325, 0.5551654696464539, -0.37064409255981445, -0.7448119521141052, -0.653372049331665, -0.19751667976379395, 0.17260156571865082, 0.3849134147167206, -0.44238612055778503, -0.7439978122711182, -1.0620373487472534, 0.7742651700973511, 0.5987975001335144, -0.06622238457202911, 0.5693193674087524, 0.8932269811630249, 2.136892795562744, 0.3234565854072571, -0.540453314781189, 0.13113483786582947, 1.7503377199172974, -0.6223116517066956, -0.518896758556366, -0.9957227110862732, 0.16872690618038177, -0.3787596523761749], [-0.06787922233343124, 0.5141928195953369, -2.030241012573242, -0.5790694952011108, 0.21699588000774384, 0.8602153658866882, 1.4868519306182861, 0.6639806032180786, 0.3178864121437073, -0.05214517191052437, -1.112276554107666, 0.022076314315199852, 1.1447257995605469, 0.2809597849845886, 0.49289679527282715, -0.10474137961864471, 1.2515124082565308, -0.17916709184646606, 0.400726318359375, 0.5211912989616394, -1.4797017574310303, 0.3383064866065979, -0.2984619438648224, 0.32200297713279724, 0.7801282405853271, 0.41181501746177673, -1.4632508754730225, -0.5038894414901733, -2.1603152751922607, -1.2710182666778564, 0.6526041626930237, -0.8374022841453552, 0.12631575763225555, 0.23229075968265533, -0.1286839246749878, 0.19550403952598572, 1.3380703926086426, 0.4438171684741974, -0.26158449053764343, 0.32815706729888916, 2.8461849689483643, -0.5017868280410767, 0.03390052169561386, -1.3868367671966553, 0.3102015256881714, 0.3870314657688141, 0.7942008376121521, -1.6003433465957642, -0.22692418098449707, -0.7109941244125366, 0.2671121060848236, 0.3176686763763428, 0.7936835289001465, 1.4079614877700806, 0.8973158597946167, -0.12601518630981445, 0.6930097937583923, -0.7073940634727478, 1.1741548776626587, 0.35875946283340454, 0.4797714054584503, -0.8059515357017517, -0.8054541945457458, 1.2973570823669434, 0.5661278963088989, -0.4367789626121521, 0.032901231199502945, 0.6593225002288818, 0.42233237624168396, -0.10930796712636948, 0.6732262372970581, -0.2958551347255707, 0.44362854957580566, 0.6015603542327881, -1.2563819885253906, -0.4538031220436096, 0.1276818960905075, 0.561698317527771, 0.28545302152633667, 1.2914077043533325, -0.9666677713394165, 0.06698402762413025, 0.5308619737625122, 0.18579211831092834, 0.31859713792800903, 0.9538842439651489, 0.3542146384716034, -0.876368522644043, -0.13603591918945312, 1.765837550163269, -0.49899378418922424, 0.3559540808200836, 0.10374267399311066, 0.43845605850219727, 0.5776225328445435, 0.6035536527633667, -0.8625026941299438, 0.050386104732751846, -0.67794269323349, -0.9926950931549072, -0.4258122742176056, -1.2898367643356323, 0.12616074085235596, 0.15784144401550293, 0.6471037268638611, 1.0930124521255493, 0.40398892760276794, -0.29079753160476685, -0.6070270538330078, -0.359858900308609, -0.886715292930603, 0.8166677355766296, -0.8824401497840881, -0.6291993856430054, -0.525510847568512, 0.8712562918663025, -0.01667710207402706, -0.3267936110496521, 0.753092348575592, 0.5903463363647461, -1.429984211921692, 0.4915875494480133, 0.06241358444094658, 0.30462607741355896, 0.5046751499176025, 0.7794460654258728, -0.64259272813797, -0.7859805822372437, 1.0087627172470093, 0.05232245847582817, 0.31793880462646484, -1.0214842557907104, 1.0024429559707642, 0.6277128458023071, -1.180804967880249, 1.0095654726028442, -0.11138801276683807, -1.0575534105300903, -0.2985555827617645, -0.3807455897331238, 1.0317115783691406, -0.14821182191371918, 0.3316166400909424, -0.47811463475227356, 0.09253263473510742, -1.0940731763839722, 0.3240428566932678, -0.02450203336775303, -1.364598035812378, -0.18663844466209412, -1.1343334913253784, 0.46520572900772095, -0.07342521101236343, 1.0151057243347168, 0.4530494511127472, -0.4609777629375458, 0.5347864031791687, -0.06329639256000519, 0.04605971649289131, 0.9061278700828552, 0.9853665828704834, 0.2414560317993164, -0.6697118282318115, 0.828701376914978, 0.02550129033625126, -0.5298509001731873, -0.3390195071697235, 0.43278905749320984, 0.24279733002185822, 1.079625129699707, -0.1820884346961975, -0.9969445466995239, -0.50525963306427, 0.17068758606910706, 0.1308085322380066, -1.0732924938201904, 1.2767667770385742, -0.7932870984077454, -0.3323882520198822, -0.7715719938278198, 0.6376795768737793, -0.16943243145942688, -0.024731852114200592, -0.11694035679101944, 0.11999670416116714, -0.6955801844596863, 0.33252882957458496, -0.05483962595462799, -0.3700387179851532, -0.7407239079475403, -0.9372338652610779, -0.09590556472539902, -0.9141508936882019, -0.5550578236579895, -0.1876431256532669, -0.6636084914207458, 0.6731207370758057, -0.835732102394104, -0.7395849227905273, 0.31048861145973206, -0.5178166627883911, -0.15040919184684753, -1.4106227159500122, -0.060109902173280716, -0.6305399537086487, -0.10888119041919708, -0.9066998958587646, 0.7095953226089478, -0.16798238456249237, 0.5400098562240601, 0.4014739990234375, 0.1980888992547989, -0.8853958249092102, 1.313025712966919, 0.010784688405692577, -1.1710968017578125, 0.0985885038971901, 0.03476492315530777, -0.17253680527210236, 0.16768722236156464, 0.284793496131897, -0.06008254364132881, 0.4962655305862427, 0.47542425990104675, 0.24452388286590576, 0.259714812040329, -0.9242895841598511, -1.1937261819839478, -1.6574363708496094, 0.6855887174606323, -1.182869553565979, -1.5502126216888428, 1.079973816871643, 0.09024038910865784, -0.7140721082687378, 0.37813714146614075, 0.7794640064239502, 0.0005728071555495262, 0.6971840858459473, -0.012759555131196976, 0.44810351729393005, -0.06387496739625931, 0.3046553134918213, -0.934874415397644, -0.8039772510528564, -0.0851861834526062, 0.7849498391151428, -0.1783384084701538, 0.22619104385375977, 1.712761640548706, 0.2654583156108856, 0.38305535912513733, 0.34103450179100037, 0.40986987948417664, -1.060049295425415, -0.4348967969417572, -0.9398434162139893, -0.044121116399765015, -0.31335654854774475, 2.1681697368621826, 1.207593560218811, -0.5096590518951416, 0.25435301661491394, 0.5183034539222717, -0.035297006368637085, -0.37774765491485596, -0.8777212500572205, -0.7706273794174194, 0.26013821363449097, 0.1448540836572647, 0.13973954319953918, 0.6092991828918457, -0.5683364868164062, 0.6095534563064575, -0.623775064945221, -0.7159141302108765, -0.5390834808349609, 0.32415857911109924, -0.14264577627182007, 1.301530122756958, 0.7277615070343018, -1.2260048389434814, -0.7929824590682983, -0.27172523736953735, 0.3452998101711273, 0.138267382979393, -0.1548456847667694, 1.2050151824951172, 0.852056086063385, 0.015633633360266685, -0.0065953657031059265, 1.198723554611206, -0.3106768727302551, 0.21834735572338104, 0.3381097912788391, 0.12658880650997162, 0.6650357246398926, -0.9409930109977722, -0.6553587317466736, 0.3737177848815918, 0.17354832589626312, 0.7147194147109985, 1.1006460189819336, 0.7632840871810913, -0.403563916683197, -0.23348337411880493, -0.2677490711212158, -0.6848568916320801, -0.8997352719306946, -0.2169431895017624, -0.679198682308197, -0.7811475396156311, 0.5759585499763489, -0.4707493185997009, -0.09062116593122482, 0.1363891363143921, 0.11300507932901382, 0.9975531101226807, 0.3738641142845154, 0.48325255513191223, 0.39392977952957153, 0.3386521637439728, 0.24758172035217285, -0.7777512669563293, 0.6292132139205933, 0.18215830624103546, -1.2937536239624023, -0.006333548575639725, -0.24195484817028046, -0.4577637314796448, 0.8491235375404358, 0.3592463731765747, -0.2540588974952698, -0.9612175226211548, -0.7953991293907166, 0.5926340818405151, 0.7283337116241455, -0.35046306252479553, -0.2540609538555145, -1.088741421699524, 1.0211271047592163, 0.6384501457214355, 0.33961591124534607, -0.2615140378475189, 0.7635145783424377, -0.4906598627567291, -0.29042956233024597, -0.5759304761886597, 0.012694645673036575, 0.9466135501861572, -0.1550510972738266, -0.4153916537761688, 0.40660396218299866, -0.31446096301078796, -0.19810152053833008, 0.05011596158146858, 0.2846904993057251, 0.9649132490158081, -0.3796621263027191, 0.161561518907547, 1.9093819856643677, -0.38199135661125183, -0.08603076636791229, -1.3318783044815063, 0.9114680886268616, 0.2496161162853241, 0.991404116153717, 0.2414824217557907, 0.7194324731826782, 0.5893014073371887, -0.9013292193412781, 0.1842089295387268, -0.1873534768819809, 1.6047048568725586, 0.05590944364666939, -0.3896189332008362, -1.2519428730010986, -0.44461876153945923, -0.9465669989585876, -0.5917708873748779, -0.19771113991737366, 0.0759359672665596, -0.08714427798986435, -0.4327491223812103, 0.6632602214813232, 0.7550923824310303, -0.5200082659721375, -0.18463508784770966, 0.15070119500160217, 0.30206820368766785, -0.4408855438232422, -0.5397597551345825, -1.6195042133331299, -0.18382671475410461, -0.21960823237895966, -1.4705675840377808, 0.361280620098114, 0.8232315182685852, -0.2778988480567932, 1.4416171312332153, -1.4166465997695923, -0.3598827123641968, 0.34325557947158813, 0.2493085414171219, 0.3915984332561493, 0.3553493022918701, 0.14325204491615295, 0.05582941323518753, -0.68096524477005, 0.36103224754333496, 0.19000379741191864, 1.8196076154708862, -0.15810611844062805, -0.11616263538599014, -0.5516816973686218, -0.01561546977609396, 0.35800987482070923, -0.3709966540336609, -0.9648395776748657, 0.582116961479187, -0.6890820264816284, 0.2539326250553131, 0.24064810574054718, -0.0016420134343206882, 2.342193603515625, 0.054118141531944275, 0.4133547246456146, 0.6761922240257263, -0.6288062334060669, -0.42404302954673767, 0.008535467088222504, 0.2380780428647995, 0.13515175879001617, -0.557761013507843, 0.46119827032089233, 0.10438203066587448, -0.611205518245697, 0.7068552374839783, 0.5984833240509033, 0.14945049583911896, -0.6472207307815552, -0.22075027227401733, -0.00022538891062140465, 0.2100125551223755, 0.9479349851608276, 0.4232999086380005, 0.7878090739250183, -0.05521784722805023, -0.5666470527648926, 0.8730033040046692, -0.14191468060016632, -0.3041851222515106, 0.8320522308349609, 0.364651083946228, 1.1149259805679321, -1.430111050605774, -0.7563378810882568, 0.7648311257362366, 0.11614501476287842, 0.6280744671821594, 0.5475125312805176, 0.8680479526519775, -0.4899510145187378, -0.2741035521030426, 0.8072724342346191, -0.43513023853302, 1.4395891427993774, 0.4846305847167969, -0.3107281029224396, 0.2956218421459198, -0.07326778024435043, -0.2919203042984009, -0.2394481897354126, -1.15826416015625, -0.3801848292350769, -0.5866567492485046, -0.28888505697250366, 0.5569155812263489, -0.421978622674942, 0.5748370289802551, -0.07857895642518997, -0.6697553396224976, 0.32134294509887695, -0.43290257453918457, 0.06918712705373764, -0.3119974732398987, -0.32005032896995544, -0.6558403968811035, -0.6850596070289612, -0.4402658939361572, 0.17356927692890167, -0.6702853441238403, -0.903433620929718, 0.400322824716568, -1.270322322845459, -0.13634459674358368, 1.2360363006591797, 1.2559490203857422, 0.8096550703048706, 0.24282649159431458, -0.21006645262241364, 0.5313640236854553, -0.5813798308372498, 0.07771636545658112, 0.8227763772010803, -0.838105320930481, -0.376345694065094, -1.3635798692703247, -0.6376891136169434, 2.0937442779541016, 0.23482421040534973, -0.4169619083404541, 0.5467150211334229, 0.5627460479736328, 1.2770376205444336, 0.25079962611198425, -0.8189818263053894, 0.47319385409355164, -0.10740603506565094, 0.3596377968788147, 0.5392024517059326, -0.02216639183461666, -1.024155855178833, -0.5349507927894592, -1.8717200756072998, 1.1291576623916626, 0.15628837049007416, -1.4965317249298096, 0.6987751126289368, 0.3544424772262573, -0.25780871510505676, 0.2970188558101654, -0.6194812655448914, 0.3197721242904663, 0.6723357439041138, -0.15334659814834595, -1.0421556234359741, -0.20274639129638672, 0.03559042140841484, 0.2725767493247986, -0.5324379205703735, 0.6802260279655457, 0.21003776788711548, -0.1695438027381897, 0.1479049026966095, 1.1408977508544922, 0.370500773191452, 0.5781910419464111, 0.3567529022693634, -0.4996950328350067, 0.04861341416835785, -1.0037864446640015, -0.3104292154312134, -0.4362753927707672, 0.049212969839572906, -0.03920580819249153, -0.18715980648994446, -0.3177030682563782, 0.1684151440858841, -0.36896830797195435, 0.5349982380867004, -1.0620028972625732, 0.8803781270980835, 0.9529706239700317, -0.1859460026025772, -0.3440987765789032, -0.23582316935062408, -0.03227094188332558, -0.002854669466614723, -0.8356791138648987, 0.42263492941856384, -1.704102635383606, 0.1453782021999359, -0.7805761694908142, -0.06625611335039139, 0.16897355020046234, -0.45376357436180115, -0.14209672808647156, -0.8517569899559021, -1.0257409811019897, -0.759483814239502, 0.2492046356201172, 0.40744447708129883, -0.5880594849586487, 0.34932973980903625, 0.12512926757335663, -1.3462746143341064, 0.3543582260608673, 0.013588432222604752, -0.9321718811988831, -0.5031525492668152, -1.275700569152832, 0.5587443113327026, -0.8640565276145935, 0.3843182325363159, -0.1227598637342453, 0.5256163477897644, -0.5761485695838928, -1.2467092275619507, 0.0039086733013391495, -0.15674522519111633, 0.7055177092552185, 1.1279826164245605, -0.7959533333778381, 1.1561635732650757, 0.28958043456077576, -1.062769889831543, -0.64295494556427, 0.8158650994300842, -0.5785141587257385, -0.0748482495546341, 0.3533042371273041, -0.023350199684500694, 0.9143818616867065, 1.4380396604537964, -0.3526899814605713, 0.9414277672767639, 0.9057365655899048, 0.301712304353714, -1.2051548957824707, -0.14075765013694763, -0.227446511387825, -0.10298272222280502, -1.311742901802063, 0.17924973368644714, -0.7687973976135254, -1.2206822633743286, -0.4735342264175415, 0.9906395673751831, 0.9347751140594482, -1.0204226970672607, 0.09153496474027634, -0.6837045550346375, -0.2941361963748932, -0.3737918734550476, 0.07558690756559372, -0.005010763183236122, -1.0199270248413086, 0.8389229774475098, 0.02069035731256008, 0.0030502798035740852, -0.34413328766822815, -0.5264964699745178, -0.5358373522758484, 0.5199018120765686, -0.7216163277626038, 0.7681891322135925, 0.8621741533279419, -0.3641867935657501, -0.3682241141796112, 2.4002087116241455, 0.9154620170593262, -0.4631790518760681, -0.4984738528728485, 0.1140117347240448, -0.47328898310661316, 0.5950725078582764, -0.5542408227920532, 0.6144161224365234, -0.4320199489593506, -0.052409037947654724, 0.2016182243824005, -0.3822299540042877, -0.9706814885139465, 0.20089033246040344, -0.7119503617286682, 0.6096256971359253, 0.5035262107849121, -0.13873621821403503, -0.07188434898853302, 1.3367149829864502, 1.0501031875610352, -0.49204981327056885, 0.2657017111778259, -0.0773196592926979, -0.2932156026363373, -0.20945604145526886, 0.6667783856391907, 1.0749880075454712, -0.8748511075973511, 0.3880312740802765, -0.0679856538772583, 0.4607917070388794, 0.5906558632850647, -0.6044262051582336, -1.822135329246521, 0.2373696118593216, -1.285627007484436, 0.35753387212753296, 1.0232815742492676, -0.4677671492099762, -0.7314422130584717, 0.40372154116630554, 0.5417652726173401, -0.1389831006526947, -1.0368046760559082, 0.41062745451927185, -0.005319712217897177, 0.3717300593852997, 0.201389878988266, -0.6521174907684326, 1.7647931575775146, -0.03537857159972191, -0.02905905805528164, -0.1902686208486557, 0.0592024102807045, 0.02423224225640297, 0.7918530106544495, 0.17732550203800201, -0.6522835493087769, -0.04361799359321594, -0.9565648436546326, -0.8753848075866699, 0.3443368971347809, 0.1640397608280182, 0.2827751636505127, -0.471252977848053, -1.1257916688919067, 0.04099765419960022, 1.1206821203231812, 0.7944585680961609, -0.11143973469734192, -0.44182315468788147, -0.43342456221580505, 0.26832741498947144, -0.19860123097896576, 0.9303469657897949, -0.40435048937797546, 0.7747235894203186, 0.4597412943840027, -0.14863833785057068, 0.1333046406507492, -0.6442959308624268, 0.47452348470687866, -0.8166074156761169, 0.635116457939148, 0.44481900334358215, -0.8549450039863586, 0.1859489381313324, -0.17650310695171356, -0.207682803273201, 0.19128276407718658, -0.04124869406223297, 0.8895334601402283, -0.867296040058136, -1.1147907972335815, 0.07281197607517242, -0.5885867476463318, 0.5616036653518677, 0.9969101548194885, 0.046741049736738205, 0.22150465846061707, -0.8484742641448975, 0.8299196362495422, 0.2906036376953125, -0.547087550163269, 0.4213087260723114, 1.7152413129806519, 2.0608222484588623, 0.38810816407203674, -0.2160712033510208, -0.12082376331090927, 1.1484206914901733, -0.9409297704696655, -0.7219238877296448, -1.0335934162139893, -0.247640922665596, -1.1086654663085938], [-1.2257437705993652, 0.8806084394454956, -2.1269707679748535, -0.8262510299682617, 0.0890752375125885, 0.9734120965003967, 1.8329392671585083, 0.06761118769645691, 0.21946679055690765, -0.37500548362731934, -1.066422462463379, 0.4916558265686035, 1.2225539684295654, 0.8278286457061768, 0.14049504697322845, -0.40841320157051086, 0.48769018054008484, 0.5327969789505005, 0.47508880496025085, 0.9457966089248657, -0.6312977075576782, 0.20338654518127441, -0.02202356420457363, -0.12521488964557648, 0.28460460901260376, 0.6278418302536011, -1.4307576417922974, -0.5306382775306702, -1.1062828302383423, -0.8147662281990051, 1.136654019355774, -0.48043471574783325, 0.5411747097969055, 0.8879987597465515, -0.4640885293483734, 0.09580978751182556, 1.1867703199386597, 0.4894716143608093, 1.159457802772522, 0.6742350459098816, 2.3370773792266846, 0.43100664019584656, 0.612421989440918, -1.1386065483093262, -1.301247477531433, 0.03255094215273857, 0.9661938548088074, -1.5871707201004028, -0.036770403385162354, 0.4577477276325226, 0.3211790919303894, 0.42205479741096497, 0.624148428440094, 0.8346823453903198, 0.566253125667572, -1.0141675472259521, 0.30908945202827454, -0.13836897909641266, 0.20210444927215576, 0.040913768112659454, 0.9862556457519531, -0.9260351061820984, -0.7631349563598633, 1.2238909006118774, 0.23852136731147766, 0.18449048697948456, -0.5854676961898804, 0.06988844275474548, 0.3917996287345886, -0.23204068839550018, 0.15287832915782928, 0.1957344114780426, -0.13113106787204742, 0.5081886053085327, -0.7263433933258057, 0.04453252628445625, 0.44409888982772827, 0.1006762683391571, 0.6274580955505371, 0.5711055397987366, -0.9431326985359192, 0.26916059851646423, 0.43502917885780334, -0.13553160429000854, 0.4845566153526306, 0.4298267066478729, -0.09712129086256027, -0.29910755157470703, -0.5571409463882446, 1.5877659320831299, 0.2906772196292877, 0.34928566217422485, 0.257142573595047, -0.47861748933792114, -0.042120542377233505, -0.7328629493713379, 0.6852959990501404, -0.11605917662382126, -0.8852618336677551, -0.5818145275115967, -0.16845116019248962, -0.17029590904712677, 0.354568749666214, 0.7089688181877136, 0.8571367859840393, 1.3581312894821167, 0.3898628354072571, -0.20754463970661163, -0.5473220348358154, -0.46297362446784973, -0.5136462450027466, 0.6312395334243774, -1.0717493295669556, -1.0545220375061035, -1.1035544872283936, 0.5425148606300354, 0.012109626084566116, -0.1288214474916458, 0.7008684277534485, 0.4972231090068817, -0.3056904077529907, -0.1359810084104538, 0.025851543992757797, 0.8798885345458984, 0.3750922381877899, 0.20791128277778625, -0.6955729722976685, 0.041633229702711105, 0.5929997563362122, 0.17391447722911835, 0.3759579658508301, -0.02298295870423317, 0.4385741353034973, 1.313470482826233, -0.25668299198150635, 0.790465235710144, -0.4425872266292572, -1.214813470840454, -0.37662506103515625, 0.41938188672065735, 0.43738022446632385, -0.25175586342811584, -0.08614025264978409, -0.9924036860466003, -0.08835015445947647, -0.9316983222961426, 0.79880690574646, -0.5507476925849915, -0.35848769545555115, 0.12378483265638351, -1.0705277919769287, 0.4207218587398529, -0.16802558302879333, 0.8538134098052979, -0.15707260370254517, -0.46152424812316895, 0.1543566733598709, 0.4046418368816376, 0.4299473762512207, 0.09292393922805786, 0.6773073673248291, -0.48989370465278625, -0.6553381681442261, 0.21543064713478088, -0.08882446587085724, -0.38292157649993896, -0.18304462730884552, 0.5309907793998718, 0.09120617061853409, 0.6882479190826416, -0.5001025199890137, -0.511608362197876, -1.1831824779510498, 0.19321388006210327, 0.21745915710926056, -1.1660255193710327, 1.504051685333252, -0.7943758368492126, -1.1021618843078613, -0.9514569044113159, 0.6793301701545715, -0.5031246542930603, -0.09170325845479965, -0.8530232906341553, 0.9492815732955933, -0.35097479820251465, -0.5170688033103943, -0.34177592396736145, -0.3434210419654846, -1.2923725843429565, -1.0225588083267212, -0.29811230301856995, -1.0144593715667725, 0.044581152498722076, 0.06779990345239639, -0.20908856391906738, 0.17938658595085144, -0.39794525504112244, -1.516804814338684, 0.36077889800071716, 0.06427472084760666, -0.6581932902336121, -1.1273349523544312, 0.11631128937005997, -0.293133944272995, 0.5364980101585388, -1.1155011653900146, 0.9597488045692444, -1.1083115339279175, 0.13642027974128723, 0.30977651476860046, 0.5664331912994385, -1.021122932434082, 0.745948314666748, -0.5595129728317261, -1.2102779150009155, 0.3825131952762604, -0.03444787859916687, 0.37880346179008484, 0.030267316848039627, 0.3098219037055969, 0.44978606700897217, 0.5205127000808716, -0.21311989426612854, 0.81751549243927, 0.08506236970424652, -0.31668373942375183, -1.1595121622085571, -0.7508074641227722, 0.6598209738731384, -0.7023721933364868, -0.7476823925971985, 0.9678860902786255, 0.05223644897341728, -0.7785317301750183, 0.5107424855232239, 0.04389004409313202, -0.5496026873588562, 0.08454057574272156, 0.4804009199142456, -0.05380430817604065, 0.7256266474723816, -0.19846764206886292, -0.2851252257823944, -0.3440425992012024, -0.20313887298107147, 0.822283148765564, -0.24852527678012848, 0.42093706130981445, 1.4673435688018799, 0.6729923486709595, 0.32964345812797546, 0.3521229326725006, -0.12484794110059738, -0.5032520294189453, -0.4636056125164032, -0.5950018763542175, 0.32226675748825073, -0.6891787648200989, 1.4807265996932983, 0.6797175407409668, -1.0116393566131592, -0.44087743759155273, 0.3892466127872467, 0.5427727103233337, -0.6067202091217041, -0.7883555889129639, -0.5452740788459778, 0.1995948851108551, -0.3925792872905731, 0.1363174468278885, 0.4971122145652771, -0.1880665272474289, 0.691260814666748, -0.05725393816828728, 0.11137944459915161, -0.742293655872345, 0.3800051212310791, 0.21873179078102112, 1.1282480955123901, 0.8990679979324341, -0.8047999143600464, -0.2649557888507843, -0.45105910301208496, 1.0119024515151978, -0.029204703867435455, 0.5652305483818054, 0.869368851184845, 0.9234351515769958, -0.09236089140176773, 0.23467445373535156, 0.2310643494129181, -0.0750032514333725, 0.9711291790008545, 0.4368051290512085, -0.047290343791246414, 0.9699618220329285, -0.5768488645553589, -1.225395679473877, 0.614180326461792, 0.19661229848861694, 0.31224626302719116, 0.5746666193008423, 1.1151398420333862, 0.5319306254386902, -0.11050508916378021, -0.7267482876777649, -0.034255288541316986, -1.0243041515350342, -0.7475452423095703, -0.9411138892173767, -1.2129896879196167, -0.32434016466140747, -0.6110512018203735, 0.4893702566623688, 0.20956550538539886, -0.41573986411094666, 0.5291609168052673, 0.313970148563385, -1.001579999923706, -0.09129279106855392, 0.3408122658729553, 0.253766268491745, -0.7765927314758301, 1.0467792749404907, 0.5799930691719055, -0.7359197735786438, -0.5899551510810852, -0.3977803587913513, 0.38963741064071655, 0.7977482676506042, -0.2397332787513733, 0.13711844384670258, -0.8343642354011536, -0.45232245326042175, -0.053059689700603485, 1.5393121242523193, -0.10905618965625763, -0.2973683178424835, -0.9879453778266907, 0.3775429129600525, 1.0735284090042114, 0.5334504842758179, -0.5729302167892456, 0.9141541123390198, -0.6472694873809814, -0.9340019226074219, 0.14009353518486023, 0.07797648012638092, 0.9930770397186279, -0.3350544273853302, -0.37039342522621155, 0.09574858844280243, -0.1595129817724228, -0.3301638960838318, 0.43971604108810425, 0.15010592341423035, 0.7930722236633301, -0.3406849503517151, 0.054950471967458725, 1.431235671043396, -0.3916250467300415, -0.026096101850271225, -1.6987859010696411, 0.6995317935943604, 0.44050267338752747, 1.2599308490753174, 0.3354474604129791, 1.4035053253173828, 0.10659433901309967, -0.84236741065979, 0.17236576974391937, -0.18807809054851532, 0.9870229959487915, -0.050337858498096466, -0.6282238960266113, -0.09433454275131226, -0.22766168415546417, -0.46174657344818115, -0.9493381381034851, -0.2744606137275696, 0.36002641916275024, -0.7232394218444824, -0.1142927035689354, 0.8242276906967163, 1.388222336769104, -0.2958528995513916, -0.07361405342817307, -0.040088944137096405, -0.22174198925495148, 0.5500307083129883, 0.14939749240875244, -0.12392622977495193, 0.020404931157827377, -0.06065593287348747, -1.2928105592727661, 0.32124239206314087, 0.08419934660196304, 0.7846534252166748, 0.7201714515686035, -0.8210418820381165, 0.009122375398874283, -0.34607288241386414, 0.037613946944475174, 0.20929186046123505, 0.23739905655384064, -0.480228990316391, 0.11869625747203827, 0.19300256669521332, -0.15893584489822388, -0.18144041299819946, 1.683995246887207, 0.38504287600517273, -0.22535361349582672, 0.16504330933094025, 0.37252727150917053, 0.0005517182871699333, 0.22754225134849548, -0.1650623083114624, 0.5394532680511475, -0.7467578053474426, 0.00823521800339222, -0.5129930973052979, 0.14949969947338104, 2.1038951873779297, 0.028102727606892586, 0.18031413853168488, 0.5458570122718811, -0.31495124101638794, -0.9346570372581482, 0.039287883788347244, -0.13085110485553741, -0.22052910923957825, -1.5606844425201416, -0.07202820479869843, 0.15644049644470215, -0.7939412593841553, 0.5612168312072754, 0.6751548647880554, 0.315805584192276, 0.2814550995826721, -0.05124916136264801, 0.31209424138069153, 0.7496950626373291, 0.9938300251960754, 0.6709689497947693, 0.5921858549118042, -0.3277295231819153, -0.24012094736099243, 1.0554746389389038, 0.0321887768805027, -0.3582199215888977, 0.5127540230751038, 0.34793612360954285, 0.8735047578811646, -1.5631227493286133, -0.8520144820213318, 1.1164616346359253, 0.36829712986946106, 0.5509191155433655, 0.45917242765426636, 0.7990660071372986, -0.6839007139205933, 0.18511725962162018, 0.3568606972694397, -0.3982318937778473, 0.4392423629760742, -0.23386123776435852, -0.2997458279132843, 0.10860804468393326, -0.2861216068267822, 0.1840333342552185, -0.6673614978790283, -0.6017410755157471, -0.41797584295272827, -1.0458412170410156, 0.6586837768554688, 0.3174108564853668, -0.0718773603439331, 0.5897253155708313, -0.6008031368255615, -1.3522117137908936, 0.9457687735557556, -0.5727394819259644, -0.0658663809299469, -0.1891898661851883, -0.834194004535675, -0.07117357105016708, -0.6514992117881775, -0.1750849038362503, -0.21034368872642517, -0.7132148146629333, -0.6895133852958679, 0.23605895042419434, -1.3661051988601685, -0.14705486595630646, 0.36287784576416016, 1.0352935791015625, 1.3420764207839966, -0.11709565669298172, -0.040292225778102875, 0.5562554597854614, -0.8456225991249084, -0.3519207239151001, 0.7619399428367615, -0.10231419652700424, -0.671116828918457, -1.7344896793365479, -0.2632301151752472, 1.489547848701477, 0.38546067476272583, -0.3366471529006958, 0.7715599536895752, 0.595257580280304, 1.2689419984817505, -0.31513455510139465, -1.523053526878357, 0.4956694543361664, 0.09964587539434433, 0.6315694451332092, 0.8348277807235718, -0.48368704319000244, -0.7893969416618347, -0.4009656012058258, -1.8988926410675049, 1.6353908777236938, -0.08912661671638489, -1.02960205078125, 1.0776915550231934, 0.08071313798427582, -0.2980814576148987, 0.05004461109638214, -1.324222445487976, -0.4498644471168518, 0.06055350601673126, 0.19654282927513123, -1.2439374923706055, 0.568418562412262, 0.05481787025928497, 0.7303664088249207, 0.19544406235218048, 0.07459834963083267, -0.34407904744148254, -0.8567517995834351, 0.16216175258159637, 0.7453657388687134, 0.28333473205566406, 0.41734716296195984, 0.586715579032898, 0.2870270907878876, 0.43079090118408203, -0.15731962025165558, 0.3551061153411865, 0.039496418088674545, 0.35633763670921326, 0.6781511902809143, -0.4435027241706848, 0.12184694409370422, -0.6944066286087036, 0.3627541959285736, -0.5990723967552185, -0.707356870174408, 0.6264890432357788, 0.23477838933467865, -0.13227832317352295, -0.013262923806905746, -0.8266658782958984, -0.14644521474838257, -0.19512240588665009, -0.5519652962684631, 0.9053796529769897, -1.9218693971633911, -0.43612614274024963, -0.15206898748874664, -0.08134404569864273, -0.23379351198673248, -0.5772638916969299, 0.16506727039813995, -0.4482049345970154, -0.7410616874694824, -0.8315237164497375, -0.056408073753118515, -0.3076143264770508, -0.8870769739151001, 0.9102276563644409, 0.9707664251327515, -0.8768041133880615, 0.24275602400302887, -0.1603303998708725, -1.0885674953460693, -0.10013369470834732, -1.3796353340148926, 0.6443109512329102, 0.1884768158197403, 0.7508653402328491, -0.04514892399311066, 1.1259217262268066, -0.6522384881973267, -0.8987529873847961, -0.5167436003684998, 0.359703004360199, 0.4934779703617096, 0.3140808641910553, -0.27755501866340637, 1.4023886919021606, 0.4459114372730255, -0.484174519777298, -0.30567893385887146, 0.47470441460609436, -0.7307102680206299, 0.33398598432540894, 0.9804424047470093, -0.39798957109451294, 0.4398970305919647, 1.2962490320205688, 0.24614423513412476, 0.8353061676025391, 0.5767331123352051, 0.04249433055520058, -0.6675370931625366, -0.7021185755729675, 0.1429571807384491, -0.15394139289855957, -1.6994379758834839, -0.6269920468330383, -0.21610765159130096, -1.0555527210235596, -0.9447665214538574, 0.7182443141937256, 0.6516774296760559, -0.9290580153465271, -0.2786926031112671, -0.471383661031723, 0.1781567931175232, -0.5533329248428345, 0.35428228974342346, 0.06881639361381531, -0.5355628728866577, -0.015355011448264122, -0.011284176260232925, 0.12536770105361938, -1.1934521198272705, -0.2401553988456726, 0.3258264362812042, 0.2825407385826111, -0.6503341197967529, 0.45692822337150574, 0.6325473189353943, -0.2392451912164688, -0.651222288608551, 0.9277087450027466, 0.8922609686851501, -0.0138993039727211, -0.15499423444271088, 0.1184244379401207, -0.09295450896024704, 1.2271003723144531, -1.3231980800628662, 0.806219756603241, -0.3252376616001129, 0.46678832173347473, 0.12233244627714157, -0.5511083006858826, -0.5529068112373352, 0.3575194478034973, -0.5076355338096619, 0.75509113073349, 0.7713684439659119, -0.3197123110294342, -0.6179948449134827, 1.2319942712783813, 0.17815227806568146, -0.18544822931289673, -0.13281899690628052, 0.4375035762786865, -0.25561612844467163, 0.28835827112197876, 0.7543082237243652, 1.0889308452606201, -0.5210331082344055, 0.4754010736942291, -0.3449043333530426, 0.023257410153746605, 0.9133666753768921, -0.28148776292800903, -1.2333158254623413, -0.4465290606021881, -1.2460898160934448, -0.24227812886238098, 1.2373234033584595, -1.0190882682800293, -0.9347599744796753, 0.18709373474121094, 0.2858935594558716, 0.170869842171669, -0.4262547492980957, -0.5180240273475647, -0.4301091432571411, 0.683869481086731, 0.30863380432128906, -0.35755062103271484, 1.2137774229049683, -0.3251403868198395, -0.6375880837440491, -0.17459934949874878, -0.1471003293991089, -0.11517742276191711, 0.6585607528686523, 0.7215639352798462, -0.004811670631170273, 0.2648811638355255, -0.3042941987514496, -0.42135411500930786, 0.3927501440048218, -0.28695663809776306, -0.059877388179302216, -0.18496301770210266, -0.8784087300300598, 0.10292678326368332, 0.559798538684845, 0.45778530836105347, -0.18023569881916046, -0.09364582598209381, -0.6226441264152527, 0.5612233281135559, 0.21375919878482819, 1.1635619401931763, -0.7148077487945557, 0.34411031007766724, 0.13560380041599274, -0.5242342352867126, -0.10316988825798035, -0.43387603759765625, 0.38174229860305786, -0.47650009393692017, 0.9670817852020264, 0.6553694605827332, 0.14376568794250488, 0.3149223029613495, -1.0004740953445435, -0.03256777301430702, 0.16232410073280334, -0.1322007179260254, 0.19301262497901917, -1.0182232856750488, -0.43916380405426025, -0.5538564324378967, -0.48857423663139343, 0.624720573425293, 0.6030718684196472, -0.0717645138502121, 0.21323738992214203, -0.5661065578460693, 0.3824544847011566, -0.3770257532596588, -0.12478084117174149, 0.6486914157867432, 1.3192256689071655, 1.191051959991455, 0.3268791437149048, 0.012034254148602486, -0.10691042244434357, 0.695997416973114, -0.8994981646537781, -0.6779705286026001, -0.6472657322883606, -0.35284239053726196, -1.0983930826187134], [0.4597851037979126, 0.31108373403549194, -3.160808563232422, -0.9122166037559509, 0.0848330408334732, 0.8736913800239563, 0.7131565809249878, 0.5199477672576904, -0.3107275664806366, 0.23551461100578308, -2.1045174598693848, 0.09366656839847565, 0.723853349685669, -0.04642393812537193, -0.706185519695282, 0.214848130941391, 0.5236194729804993, -0.32202833890914917, 0.00938473641872406, 1.1916425228118896, -1.2442054748535156, -0.6152081489562988, 0.17687314748764038, 0.2280193269252777, 0.5316016674041748, -0.5841854810714722, -0.7204529047012329, 0.42860573530197144, -0.9149092435836792, -0.9274226427078247, 0.9078483581542969, -0.0661243349313736, -0.27722615003585815, -0.5086706876754761, -1.823518991470337, -0.34682321548461914, 1.4651241302490234, 1.1254386901855469, 0.6106842160224915, 0.9083818793296814, 2.4604897499084473, 1.0031200647354126, -1.0899245738983154, -0.7059042453765869, -0.6700867414474487, -0.5407214164733887, 1.3815327882766724, -0.5109501481056213, 0.014529440551996231, 0.49020978808403015, 0.36709463596343994, 0.40151166915893555, 0.8865092992782593, 1.2073230743408203, 1.786604642868042, -0.6689801216125488, 1.1933274269104004, 0.167740598320961, 0.20923036336898804, -0.8565938472747803, 1.097776174545288, -0.23542499542236328, -0.38798147439956665, 1.1641826629638672, 0.046931009739637375, 0.12392645329236984, 0.06813345849514008, 0.7458597421646118, 0.14805221557617188, -0.6652411222457886, 0.8686553239822388, 1.308179259300232, 0.10527974367141724, -0.6082160472869873, -0.9256971478462219, -0.24733132123947144, 0.4008641242980957, 0.3011474013328552, 0.188812717795372, 1.2535221576690674, -1.147602915763855, 0.9064807891845703, 0.8386458158493042, 0.2803356647491455, 0.23436661064624786, 0.4592912197113037, 0.2768807113170624, -0.018915753811597824, -1.0412790775299072, 0.7487496137619019, 0.07344165444374084, 0.7878437638282776, 1.1375954151153564, -0.5164263248443604, 0.15359261631965637, -0.6939491629600525, -0.16816189885139465, -0.5503977537155151, -0.2238340526819229, -0.6096181869506836, -0.9509931206703186, -0.823114812374115, 1.48341965675354, 0.5921725034713745, -0.2955041527748108, 2.555190086364746, 0.2983148694038391, -0.3302514851093292, -0.6193208694458008, -0.7794588804244995, 0.3389861583709717, 0.37920454144477844, -0.6499451398849487, -1.389756679534912, -0.5026264190673828, 0.26233986020088196, 0.4437651038169861, 0.3913387060165405, 0.49324169754981995, 0.541350245475769, -0.4031704068183899, 0.1754843294620514, -0.27620410919189453, 0.2795659899711609, 0.5159905552864075, -0.8635988831520081, -1.0071263313293457, 0.43027040362358093, 0.08217868208885193, 0.1871899515390396, 0.8500754833221436, 0.08918406069278717, 0.3988456130027771, 1.075850248336792, -0.029689088463783264, 0.7876341938972473, 0.31553417444229126, -1.1594691276550293, -0.5904698967933655, 0.5721969604492188, 0.4389379620552063, 0.047013215720653534, 0.09545265883207321, -0.9309038519859314, -0.3695151209831238, -0.19798673689365387, 0.8297793865203857, -0.5764172673225403, -0.7413040995597839, -0.10251903533935547, -1.3538576364517212, 0.9986145496368408, -0.3623560070991516, 0.2855624854564667, 1.1147127151489258, -0.32958507537841797, -0.15466651320457458, 0.009953320026397705, 0.09679253399372101, 0.03838459774851799, 0.8235553503036499, -0.665859580039978, 0.14767393469810486, 1.1237062215805054, 0.297664076089859, -0.7008432745933533, -0.10677396506071091, 0.48665714263916016, 0.08135940134525299, 0.6647323966026306, 0.03402036428451538, -1.2206981182098389, -1.045891284942627, 0.0529743991792202, -0.22204264998435974, -1.259589672088623, 0.5685586929321289, -0.6722015142440796, -1.2176848649978638, -0.6130750179290771, 1.115022897720337, -1.0023727416992188, 0.25483769178390503, -0.010223928838968277, 0.767288088798523, -0.11411597579717636, -0.6914334297180176, -1.0270484685897827, -0.10130052268505096, -0.9809773564338684, -2.0321714878082275, 0.45148950815200806, -0.8630338311195374, -0.11663979291915894, -0.4261772036552429, -0.6547076106071472, 0.39004331827163696, -1.1985585689544678, -0.761483371257782, -0.049601681530475616, 0.12683719396591187, -0.0763191506266594, -0.7329049110412598, 0.4898838400840759, -0.13355028629302979, -0.22839823365211487, -1.0691450834274292, 0.4686537981033325, -0.49725598096847534, 0.29146039485931396, 0.23983612656593323, -0.3472405672073364, 0.08426929265260696, 0.8425298929214478, 0.2682197690010071, -1.6004548072814941, 0.03342984616756439, 0.09282232075929642, -0.06182042136788368, -0.3932320773601532, 0.6159031391143799, 0.791864812374115, 1.0731806755065918, -0.7163394093513489, 0.8860034942626953, 0.05393137037754059, 0.3439328372478485, -0.3923710584640503, -0.7545148134231567, -0.05321681126952171, -0.7140711545944214, -0.722233772277832, 0.3664624094963074, 0.6873189210891724, -1.2035765647888184, 0.8958669304847717, -0.25247257947921753, 0.24738235771656036, -0.25225725769996643, 0.3282192051410675, -0.08164143562316895, 0.6047252416610718, -1.041202425956726, -0.2822599709033966, -0.6307347416877747, 0.7423012852668762, 0.010155066847801208, -0.32235991954803467, 0.6461629271507263, 0.884506106376648, 0.4591848850250244, 0.38494205474853516, 1.2166310548782349, -0.7483378648757935, -0.15071827173233032, -1.17972731590271, -0.47170567512512207, 0.71086585521698, 0.21018381416797638, 1.7183723449707031, 0.8060071468353271, -0.4489898085594177, -0.08515670895576477, -0.5962564945220947, -0.18288658559322357, -1.2958781719207764, -0.6779832243919373, -0.5378717184066772, 0.8841737508773804, -0.05670511722564697, 0.42573487758636475, 0.13555213809013367, -0.49494999647140503, 0.6109605431556702, -0.06778095662593842, 0.33046793937683105, 0.6758378148078918, 0.2370235025882721, -0.4532715678215027, 0.5565690994262695, -0.041295021772384644, -1.2939566373825073, -0.5256941914558411, -0.9303657412528992, 0.7028659582138062, -0.05802486836910248, -0.6308246850967407, 0.29914161562919617, 0.5131802558898926, -0.26772254705429077, 0.05184146389365196, 0.32215631008148193, -0.31061604619026184, 0.37702471017837524, -0.1577470302581787, 0.8312211036682129, 0.7829869985580444, -0.6007645130157471, -0.24259962141513824, 0.0847969502210617, 0.27678754925727844, 0.7366893291473389, 1.0020267963409424, 1.9545817375183105, -0.1396307647228241, 0.20512324571609497, 0.33224794268608093, 0.06054233759641647, -0.18516439199447632, -0.4358212351799011, -1.3811562061309814, -1.2183362245559692, 0.1305915266275406, -0.5282297134399414, -0.23487602174282074, 0.26404762268066406, -0.28295576572418213, -0.6408090591430664, -0.12662482261657715, -0.25705984234809875, -0.20062237977981567, 0.11783431470394135, -0.25878000259399414, -0.5843877792358398, 0.7598774433135986, 1.0875649452209473, -1.3572120666503906, 0.11810538917779922, -0.10201718658208847, -0.19288425147533417, 0.9183407425880432, 0.009933294728398323, 0.7810512781143188, -1.1955277919769287, -0.8582518100738525, 0.13482388854026794, 0.24778001010417938, 0.5663513541221619, -1.1517350673675537, -0.41399386525154114, 1.2990167140960693, 1.0520710945129395, -0.010570257902145386, -0.3753982186317444, 0.27416712045669556, -0.580102264881134, -1.0717288255691528, -0.20280510187149048, 0.2023608684539795, 0.7059583067893982, -1.4841305017471313, -0.39229199290275574, 0.23358921706676483, -0.6124278903007507, -0.394065260887146, 0.5496300458908081, -0.48918837308883667, 0.6787733435630798, -0.10777539014816284, -0.671733558177948, 2.2173655033111572, -0.29733991622924805, 0.7008414268493652, -1.4347529411315918, 0.5114127993583679, 0.23995941877365112, 1.9796520471572876, 0.17813363671302795, 1.3782484531402588, 0.09890376031398773, -0.5910168886184692, 0.06303565949201584, 0.04530186951160431, 0.6882932782173157, 0.8389995694160461, -0.08878467977046967, -0.013630274683237076, 0.09583514928817749, -0.36213213205337524, -0.2888256311416626, -0.13750243186950684, 0.28276005387306213, -0.8749806880950928, -0.11943790316581726, 0.4708120822906494, 0.4078720510005951, -0.9000146389007568, 0.01506565511226654, 0.22936834394931793, -0.4749711751937866, 0.07941529899835587, 0.19115450978279114, -1.4009339809417725, 0.2928670346736908, 0.9399259090423584, -1.5063388347625732, 0.5031881928443909, -0.0008488520979881287, 0.6327203512191772, 1.0149407386779785, -0.7168186902999878, -0.07720769196748734, -0.3755966126918793, 1.1462676525115967, 0.5408918857574463, -0.09763482213020325, 0.05390162020921707, -0.39848363399505615, 0.770042896270752, 0.16742882132530212, 0.04307699203491211, 1.3852863311767578, 0.2771373689174652, -0.3879741430282593, 0.23289328813552856, 0.6752897500991821, 0.12630684673786163, 0.7503578662872314, 0.055291008204221725, -0.31794273853302, -0.35629916191101074, 0.014473129995167255, -0.13423295319080353, 0.8339204788208008, 1.3098669052124023, 0.39672237634658813, -0.024278106167912483, 0.2548205852508545, -0.8919366002082825, -1.4401384592056274, 0.537092924118042, 0.6215824484825134, 0.18849311769008636, -0.2682209014892578, 0.0677361711859703, 0.5416288375854492, 0.2125525176525116, 0.7807697057723999, 0.6993345022201538, 0.46703481674194336, 0.45424485206604004, -0.5063598155975342, 1.0485575199127197, 0.7234272956848145, 0.7518932819366455, 0.40036433935165405, 0.538560152053833, -0.9937008619308472, -0.4811384677886963, 0.8368310928344727, -0.41824015974998474, 0.39549413323402405, 0.045676615089178085, 0.42013323307037354, 1.3743689060211182, -1.413650393486023, 0.2997753322124481, 0.2628234326839447, 0.4032191038131714, 0.14052768051624298, 0.9901285171508789, 0.6764854788780212, -0.9197769165039062, -0.2403150200843811, -0.49704229831695557, -1.06416654586792, -0.7715761661529541, 0.03477047011256218, 0.3715493679046631, 1.0356566905975342, -0.5278522968292236, -0.4525723457336426, -0.5762060880661011, -0.25831693410873413, 0.4909138083457947, -0.5564792156219482, 0.08957278728485107, 0.2630828022956848, -0.316913366317749, 0.9877878427505493, -0.19639894366264343, -0.6488047242164612, 0.7993475198745728, -1.1200650930404663, -0.016225937753915787, -0.3291342556476593, -1.5257903337478638, -0.09486912935972214, 0.2750532627105713, -0.5103338956832886, 0.08839081227779388, 0.08992801606655121, 0.38998711109161377, -0.33560290932655334, -1.2382698059082031, -0.1307569146156311, 0.4981665015220642, 1.4789899587631226, 0.16472077369689941, 0.7524290084838867, 0.4039018750190735, -0.035370342433452606, -0.6344751119613647, -0.2253057211637497, 0.7413010597229004, -0.7284867763519287, -0.062202174216508865, -1.1501412391662598, -0.5429506301879883, 0.573021411895752, 0.23415598273277283, 0.5905417203903198, -0.21993598341941833, 0.6020866632461548, 1.2379465103149414, -0.018075738102197647, -1.1866025924682617, 1.3927147388458252, -0.15559788048267365, 0.44017890095710754, 0.2929042875766754, -0.508733332157135, -0.8355884552001953, 0.22178536653518677, -1.5287463665008545, 0.52928626537323, 0.230968177318573, -0.9795998334884644, 0.10240154713392258, 0.2408219873905182, -0.012556908652186394, 0.4150787591934204, -0.936965823173523, 0.4189000725746155, 0.6522388458251953, 0.16397391259670258, -0.994255542755127, 0.6245763301849365, 0.5379620790481567, -0.3045864999294281, -0.10537339001893997, -0.15546926856040955, -0.48112761974334717, -0.34933367371559143, -0.312216192483902, -0.026744849979877472, 1.0057713985443115, -0.035331208258867264, 0.46380823850631714, 0.12908010184764862, 1.1500873565673828, -0.6922293305397034, -0.48162275552749634, -0.2472594976425171, 0.8140637874603271, -0.01468951627612114, -0.780147135257721, 0.5440835952758789, -1.374391794204712, -0.24955622851848602, 0.011028051376342773, -0.11618631333112717, 0.9684653282165527, 0.7641996145248413, -0.19239458441734314, -0.006891701370477676, -0.667578935623169, 0.47471004724502563, -0.3422315716743469, -0.7849750518798828, 0.33854740858078003, -1.580524206161499, -0.2053380310535431, -0.3417580723762512, -0.4734402894973755, 0.327120304107666, -0.23179450631141663, 0.31203532218933105, -0.788009762763977, -0.9768917560577393, -0.9058744311332703, -0.2681345045566559, 0.13413190841674805, -0.1419796198606491, 0.9792789220809937, 1.1494210958480835, -0.43997472524642944, -0.14608226716518402, 0.3696199059486389, -0.9238905906677246, 0.059897035360336304, -1.091292381286621, 0.8877497911453247, -0.2978460192680359, 1.5944172143936157, -0.7258157730102539, 1.1332454681396484, -0.8351001143455505, -0.7771949172019958, -1.1384055614471436, -0.6673676371574402, -0.024159131571650505, 1.1592224836349487, -1.5979859828948975, 1.097910761833191, -0.17633415758609772, -0.9556909799575806, -0.2490171492099762, 0.8495116233825684, -0.22310484945774078, 0.1404571384191513, -0.5733208656311035, -0.20935803651809692, 0.7106806039810181, 1.6353380680084229, 0.37506943941116333, 1.5151453018188477, 0.09632959961891174, -0.33117952942848206, 0.0938601866364479, -0.46257850527763367, -0.33502358198165894, 0.03464477136731148, -0.9002907276153564, -0.008746970444917679, -0.22169172763824463, -1.5461004972457886, -0.6189262866973877, 0.25930336117744446, 1.2446348667144775, -1.4338006973266602, 0.218157559633255, -0.6629222631454468, -0.4895283579826355, -1.1217167377471924, 0.883836030960083, -0.48743534088134766, -0.043566346168518066, 0.04677596688270569, 0.16735297441482544, -0.05597250163555145, -0.501501202583313, -0.29345566034317017, -0.02904564142227173, 0.10888797044754028, -0.5485348701477051, 1.283682107925415, 1.1579623222351074, 0.47572705149650574, -0.11509811133146286, 1.3462834358215332, 1.1643718481063843, -0.2877315878868103, 0.16718141734600067, 0.15954427421092987, -0.5174608826637268, -0.026987876743078232, -0.2684655487537384, -0.578292727470398, -1.0680334568023682, 0.9134579300880432, -0.12481069564819336, -0.3827793598175049, -1.2675199508666992, 1.4800419807434082, -0.4315354526042938, -0.12904658913612366, 0.19459623098373413, -1.414023756980896, -0.11794950067996979, 0.7923619747161865, 0.07346577942371368, 0.18664930760860443, 0.47839248180389404, 0.9013189077377319, -0.22759698331356049, 0.1850602924823761, 0.6889739036560059, -0.03754653409123421, -1.1492385864257812, 0.6104322671890259, 0.47933992743492126, -0.25650835037231445, 0.030002497136592865, -0.23930683732032776, -2.067002296447754, -0.15065070986747742, -1.1320302486419678, -0.22943150997161865, 0.535544753074646, -1.0279693603515625, -0.9690842628479004, -0.05960724130272865, 0.5033540725708008, -0.5990172028541565, -0.08808215707540512, -0.1579906940460205, -0.2910085916519165, -0.01728745922446251, 1.2578552961349487, -0.12273810803890228, 1.241155743598938, -0.039924584329128265, -0.12961077690124512, -0.9342705011367798, -0.8298614621162415, 0.33318889141082764, 1.000396490097046, 0.5510066747665405, -0.35505008697509766, 0.42429351806640625, 0.049131836742162704, -0.4798131585121155, 0.03395075723528862, -0.2010090947151184, -0.2704024910926819, 0.08839702606201172, -0.64077228307724, -0.09418749809265137, -0.07241935282945633, 0.6711444854736328, -0.27914148569107056, -0.787200927734375, -0.23117536306381226, 0.27346277236938477, -0.48178842663764954, 0.5073018074035645, 0.06878801435232162, 1.3183573484420776, 0.3355642557144165, -0.8576903939247131, 0.06815316528081894, -0.5379053354263306, 1.1580915451049805, -0.2525351941585541, 0.50957852602005, -0.3188912272453308, -0.45329421758651733, -0.06333653628826141, -0.7674349546432495, 0.166120246052742, 0.36569902300834656, 0.41960474848747253, -0.25629472732543945, -0.6840944886207581, -1.597952127456665, -0.9150163531303406, 0.05881958454847336, -0.19049009680747986, 0.19904178380966187, 0.6573903560638428, -0.3836281895637512, -0.5559393167495728, 0.27132928371429443, 0.1916620433330536, -0.02113642543554306, 0.5678734183311462, 1.6696351766586304, 1.8905115127563477, 0.6227498054504395, 0.012168124318122864, -0.7305647730827332, 0.4798857867717743, -0.16169780492782593, -0.23648060858249664, -1.243251085281372, 0.7544572949409485, 0.07246094942092896], [0.21853844821453094, 0.8309078812599182, -2.6925785541534424, -1.190637469291687, -0.4534156322479248, 0.3948628008365631, 1.8902169466018677, 0.4334219992160797, -0.45357227325439453, -0.265948086977005, -0.6074482202529907, 0.23916350305080414, 0.6356931924819946, 1.1383007764816284, -0.2139584720134735, -0.1194332167506218, 0.7047262191772461, -0.08461002260446548, 0.43598443269729614, 1.0048619508743286, -0.9382650256156921, 0.32777708768844604, -0.22380687296390533, 0.3875511586666107, 0.4065926969051361, 0.40402960777282715, -0.8962631821632385, 0.08662395924329758, -0.48119983077049255, -0.9107981324195862, 1.2737547159194946, -0.8594422340393066, -0.6869574189186096, -0.23567157983779907, -0.3865673840045929, -0.5918333530426025, 1.4527397155761719, 0.7509312033653259, 1.512046217918396, 1.7531166076660156, 2.729053020477295, -0.5976812839508057, -0.0038337833248078823, -1.3600883483886719, -0.39042016863822937, -0.31036949157714844, 1.1612882614135742, -1.5102810859680176, -1.0493738651275635, -0.1146441400051117, 0.637367844581604, 0.7180810570716858, 0.25074705481529236, 0.9078878164291382, 1.416675329208374, -0.9412992596626282, 0.3739517033100128, -0.5239354968070984, 0.6393139958381653, 0.25924643874168396, 0.11008184403181076, 0.37249380350112915, 0.03496880084276199, 0.8575481176376343, 0.4823909401893616, -0.591690719127655, -0.7133176326751709, 0.11531924456357956, -0.017650548368692398, 0.006859598681330681, 0.14367879927158356, 0.1375410556793213, -0.6318778395652771, 0.4621085524559021, -0.7955698370933533, 0.7073112726211548, 0.24729250371456146, 0.5988508462905884, 0.36647531390190125, 0.6634673476219177, -0.40607523918151855, 0.15118852257728577, 1.058615803718567, -0.29914700984954834, 1.7276133298873901, 0.4390358626842499, -0.11870292574167252, -0.8066809177398682, -0.6853480935096741, 1.6887497901916504, 0.3009217083454132, 0.20064599812030792, 0.5945718288421631, 0.3897082507610321, -0.4485794007778168, -0.12139380723237991, 0.062327682971954346, -0.16507065296173096, -0.015897491946816444, -0.37942418456077576, -1.0812095403671265, -0.9632067084312439, 0.14636893570423126, -0.15188099443912506, 0.21167638897895813, 1.7926052808761597, -0.48252031207084656, 0.0166096743196249, -0.8928979635238647, -0.7043537497520447, -0.2516680061817169, -0.763649046421051, -0.8722566366195679, -0.628410816192627, -0.459371954202652, 0.46759334206581116, 0.9207214117050171, -0.059822872281074524, 0.9205317497253418, 0.4809439182281494, -0.2579653561115265, 0.047528862953186035, -0.057888779789209366, 0.037121038883924484, 0.25739261507987976, 0.621439516544342, -0.3875771462917328, -0.026304682716727257, 0.7144673466682434, 0.46242383122444153, 0.5782776474952698, 0.06977907568216324, 0.5912336111068726, 1.442729115486145, -0.5395984649658203, 0.8058369755744934, -0.03278196230530739, -1.0076234340667725, -0.48489153385162354, 0.1684480458498001, 0.4176625907421112, -0.6703746914863586, -0.537351667881012, -0.7136330008506775, -0.13679368793964386, -0.9548789262771606, 0.9973201155662537, 0.13032974302768707, -0.09206701070070267, -0.17056110501289368, -0.8448425531387329, 0.3009529113769531, 0.357636421918869, 0.8199758529663086, 0.6536911725997925, -0.4151487648487091, 0.18456505239009857, 0.7245196104049683, -0.2667534649372101, 0.6578099131584167, 0.29955974221229553, -0.2042064666748047, -0.871090829372406, 0.3974094092845917, 0.38137751817703247, -0.7004366517066956, 0.22057563066482544, 0.5342584848403931, -0.06874683499336243, 0.1040971502661705, -0.4073818624019623, -0.23612160980701447, -1.1459224224090576, 0.19512377679347992, 0.6861675381660461, -0.7782410979270935, 1.1998101472854614, -0.9554786682128906, -1.0109645128250122, -1.3864339590072632, 0.8568069934844971, -0.5545576810836792, -0.0029031354933977127, -1.001455545425415, 0.9565621614456177, -0.9823094010353088, -0.0441843643784523, -0.6673881411552429, -0.6796776056289673, -0.8317658305168152, -1.478257179260254, -0.4858004152774811, -1.1974396705627441, 0.3683471083641052, -0.638874888420105, -0.9155139327049255, 0.7891061902046204, -0.8603684902191162, -1.3321483135223389, 0.1004931703209877, -0.005551372654736042, -0.5514594316482544, -0.7968013286590576, 0.7987388372421265, -0.963524580001831, 0.690526008605957, -1.0646030902862549, 0.6534162163734436, -1.3213541507720947, 0.1557958424091339, -0.0280331801623106, 0.3659555912017822, -0.5331193804740906, 0.6682544946670532, -0.6737581491470337, -1.2865495681762695, 0.05571440979838371, 0.49446889758110046, 0.19745869934558868, -0.3188452124595642, 0.6983104348182678, 0.8522560000419617, 0.7739226222038269, -0.3525647521018982, 0.849051833152771, -0.5276561975479126, -0.3130088448524475, -0.47075119614601135, -0.6791939735412598, 0.5371959209442139, -0.9537927508354187, -1.0386425256729126, 0.8395864367485046, 0.4634643495082855, -1.3367230892181396, 0.6262320876121521, -0.20272499322891235, -0.0238211527466774, -0.21632154285907745, 0.3226679265499115, 0.34838059544563293, -0.10234476625919342, -0.11987258493900299, -0.7248634696006775, -0.37101343274116516, 0.9122734069824219, 0.35665348172187805, -0.6753001809120178, 1.0018267631530762, 1.5021170377731323, -0.290039986371994, -0.6120824813842773, 0.8677238821983337, -0.36243101954460144, 0.201872780919075, -1.061308741569519, -1.2597664594650269, 0.12695059180259705, -0.44073060154914856, 1.9726407527923584, 1.4921618700027466, -1.128983974456787, -0.7694619297981262, 0.376271516084671, -0.2061622589826584, -1.0283520221710205, 0.14076115190982819, 0.20717406272888184, 0.5247394442558289, -0.2777461111545563, -0.19570684432983398, -0.43683311343193054, -0.276753306388855, 0.36887359619140625, -0.48421868681907654, 0.390277236700058, 0.6942460536956787, 0.5367076396942139, 0.4857892096042633, 0.6392711400985718, 0.37354063987731934, -0.7534636855125427, -1.0975544452667236, -0.2050866335630417, 0.9136420488357544, 0.1155414804816246, 0.6280694007873535, 0.3526746928691864, -0.28212815523147583, -0.30225270986557007, 0.23624956607818604, 0.9394544363021851, 0.13791655004024506, 0.3430248498916626, -0.9033572673797607, 0.39367520809173584, 1.1536086797714233, -1.3729990720748901, -0.2598101496696472, 0.6301288604736328, 1.182112216949463, 0.4715728759765625, 1.1891342401504517, 1.8860557079315186, 0.7378761172294617, -0.17825505137443542, -0.3429756760597229, -0.7468482851982117, -0.2753618359565735, -0.32895970344543457, -0.4344445466995239, -1.3236980438232422, -0.6074486970901489, -0.06344141066074371, -0.04935923218727112, 0.3211437165737152, -0.6257805824279785, 0.8619526028633118, 0.425297349691391, -0.7367395758628845, -0.047266773879528046, -0.03184382617473602, 0.5188034176826477, -0.16573426127433777, 0.5213077068328857, -0.356076180934906, -1.0116212368011475, -0.3050394356250763, 0.2261638194322586, 0.5987610816955566, 1.3742811679840088, 0.13477180898189545, -0.0782116949558258, -1.0603482723236084, -0.30352216958999634, -0.14204882085323334, 0.6782253980636597, -0.38634881377220154, -0.16882634162902832, -1.1511832475662231, 0.5849982500076294, 0.9521169662475586, 0.2751747965812683, -0.7450177073478699, 0.7769614458084106, -0.8457760214805603, -0.3679230511188507, -0.7815994024276733, -0.3100748062133789, 0.47968214750289917, -0.5203213691711426, -0.5929498672485352, 0.0602821409702301, -0.3463377058506012, -0.3653709888458252, 0.3717001676559448, 0.08016888797283173, 0.8021562695503235, -0.5265432596206665, -0.0729014128446579, 1.5974066257476807, -0.75494784116745, -0.5096844434738159, -1.7581050395965576, 1.4108906984329224, -0.06841621547937393, 1.488883137702942, 0.6352632641792297, 0.5874664783477783, 0.39307093620300293, -0.09104418754577637, 0.30980169773101807, -0.23360782861709595, 1.0749261379241943, -0.2683509886264801, -0.3526897430419922, -0.24864673614501953, -0.27988937497138977, -0.08040855824947357, 0.02935653366148472, -0.7201955914497375, 0.4172125458717346, -0.33562374114990234, -0.9017806053161621, 0.695343017578125, 0.6358426809310913, -0.6097230315208435, -0.4438419044017792, 0.44465622305870056, 0.2797805666923523, 0.002579697174951434, -0.4549614191055298, -1.200964331626892, -0.6557296514511108, 0.26692748069763184, -1.4544000625610352, -0.1524210423231125, 0.6636766195297241, 0.5244662761688232, 0.5807703137397766, -0.8984059691429138, -0.12987016141414642, -0.15635748207569122, 0.0563008151948452, 1.0665903091430664, -0.03636261075735092, 0.26315078139305115, 0.29751506447792053, 0.5568116903305054, 0.07573805749416351, -0.5894543528556824, 2.1549267768859863, 0.5055603981018066, -0.15592554211616516, -0.19420431554317474, 0.5706655979156494, 0.43349260091781616, 0.45089730620384216, -0.579341471195221, 0.6915005445480347, -0.31518638134002686, 0.32936981320381165, -0.8524839282035828, -0.608391284942627, 2.014468193054199, 0.16861625015735626, -0.016946546733379364, 0.6096254587173462, -0.8879762291908264, -1.0431897640228271, 0.18419399857521057, 0.32200905680656433, 0.7529988884925842, -0.6604382991790771, -0.10687924176454544, 0.1477731168270111, -1.0322694778442383, 0.5828210711479187, 0.404669851064682, 0.8046897053718567, 0.1346869170665741, 0.16331683099269867, 1.114246129989624, 0.08706667274236679, 0.659460723400116, 1.2054402828216553, 0.28404104709625244, -0.8800524473190308, -0.2189580500125885, 0.8933337330818176, -0.30249062180519104, 0.43475356698036194, 0.2519749701023102, 0.35671505331993103, 1.3479105234146118, -1.4860914945602417, -0.13957767188549042, 0.7029774785041809, 0.3304853141307831, 1.373525857925415, 0.7485984563827515, 0.9275930523872375, -0.5535426139831543, -0.3155439794063568, 0.42282524704933167, -0.26288989186286926, 0.571773886680603, 0.0962800458073616, -0.27416595816612244, -0.07209303230047226, -1.2016048431396484, -0.208389550447464, -0.1162700206041336, -0.3316737711429596, -0.6296743154525757, -1.0977555513381958, 0.5576960444450378, 0.5954223871231079, 0.4073951542377472, 0.9135106205940247, 0.2676188349723816, -0.9079812169075012, 0.9833791255950928, -1.1536955833435059, 0.12952229380607605, 0.020602481439709663, -0.3856433629989624, 0.2419283092021942, -0.6399838924407959, 0.22307175397872925, 0.3020712435245514, -0.6353577971458435, -0.6685794591903687, 0.505600094795227, -0.9302988648414612, 0.3735564053058624, 0.7010518312454224, 1.5691636800765991, 0.6838973164558411, 0.6626037359237671, 0.4037676155567169, 0.49570247530937195, -0.9234940409660339, -0.6448261737823486, 0.5303905606269836, -0.6189810037612915, -0.04888152331113815, -1.4259686470031738, -0.31364473700523376, 1.7352232933044434, 0.613446056842804, -0.45618316531181335, 0.19159837067127228, 0.35165902972221375, 0.956038236618042, -0.5346543788909912, -1.2879270315170288, -0.028852378949522972, -0.512189507484436, 0.38707783818244934, 1.0835469961166382, -0.5006906390190125, -0.2195807546377182, 0.34377521276474, -1.6236705780029297, 1.2854394912719727, 0.1601187288761139, -0.9390438795089722, 0.7537218928337097, 0.8672497272491455, 0.19486138224601746, 0.22547543048858643, -0.4485751688480377, -0.6207563877105713, -0.3839276134967804, -0.08189210295677185, -1.2482876777648926, 1.0935252904891968, -0.12700095772743225, 0.061610180884599686, -0.27452388405799866, 0.08834365755319595, -0.6840004920959473, 0.5065890550613403, -0.0032172459177672863, 0.3109639585018158, 0.9058735370635986, 0.5784784555435181, 0.19003556668758392, 0.39586904644966125, -0.13270360231399536, -0.6162482500076294, -0.31485486030578613, -0.018044481053948402, 0.6608521342277527, -0.4006207287311554, -1.3567228317260742, -0.045100290328264236, 0.18590758740901947, 0.5807026028633118, -0.30428624153137207, -0.8916978240013123, 1.0740039348602295, 0.4190569818019867, -0.037156086415052414, -0.035911012440919876, -0.41007158160209656, -0.22551235556602478, -0.14549128711223602, -0.6621239185333252, 0.8212318420410156, -1.6795763969421387, 0.4136921763420105, -0.8466073274612427, -0.026162289083003998, 0.5372661352157593, -0.008934812620282173, -0.27369004487991333, -1.7161822319030762, -0.04178164154291153, -1.3443434238433838, -0.2663031220436096, 0.7908767461776733, -0.9181042909622192, 0.1353577971458435, 1.1154166460037231, -1.1965949535369873, 0.40086129307746887, 0.2112141102552414, -1.5209243297576904, -0.45774397253990173, -1.5629369020462036, 0.7781441807746887, -0.5227470993995667, 0.5425200462341309, -0.843252420425415, 0.7667694687843323, -1.0257524251937866, -1.2594819068908691, -0.6283121705055237, -0.14950881898403168, 0.6341042518615723, 1.1732021570205688, -0.7997482419013977, 0.9337846040725708, 0.7016449570655823, -1.0337944030761719, -0.28062403202056885, 0.4750289022922516, -1.1310495138168335, 0.17432282865047455, 1.0208228826522827, -0.19369496405124664, -0.05073847994208336, 1.490405559539795, -0.46588489413261414, 1.2692235708236694, 0.6109846234321594, 0.5298283696174622, -0.7000033855438232, -1.0213173627853394, -0.37169861793518066, -0.043676652014255524, -0.6973606944084167, -0.5234200954437256, 0.09083981066942215, -1.5798250436782837, -0.5753552317619324, 0.5561632513999939, 1.602665901184082, -0.3659924566745758, -0.36012396216392517, -0.47738921642303467, 0.6465110778808594, -0.5032438635826111, 0.3176238536834717, -0.21488028764724731, 0.3536972105503082, 0.0802176222205162, -0.12420105934143066, -0.6171786785125732, -0.7064944505691528, -0.16940224170684814, -0.04922042414546013, -0.012964490801095963, -0.5146259069442749, 1.0112278461456299, 0.9192918539047241, -0.8407667875289917, -1.2886402606964111, 1.5999901294708252, 1.586768627166748, -0.6035213470458984, 0.3354377746582031, -0.23555655777454376, 0.47526851296424866, 0.3166056275367737, -0.8964780569076538, -0.13652317225933075, -0.7465223670005798, 0.23491081595420837, 0.23182688653469086, -0.3555375635623932, -1.0032217502593994, -0.01723305881023407, -0.35357221961021423, 0.4209785461425781, 0.5130739212036133, -0.2118445783853531, -0.31879958510398865, 1.5322426557540894, 0.6607296466827393, 0.44424936175346375, 0.4315268099308014, 0.04861878603696823, 0.2002524733543396, 0.36526310443878174, 1.4223225116729736, 0.4778606593608856, -0.7412139773368835, 0.7176566123962402, 0.39493927359580994, 0.12096620351076126, 0.01412292942404747, -1.331060528755188, -1.6822125911712646, -0.6465460062026978, -0.7339543700218201, -0.5436504483222961, 0.1562386155128479, -0.33644285798072815, -0.4120464324951172, 0.14147375524044037, 0.2334161400794983, 0.07209886610507965, -0.7494722604751587, -0.2586047053337097, -0.4522010385990143, 0.17790010571479797, 0.9668736457824707, -0.9650515913963318, 0.6118292808532715, -0.08317462354898453, -0.3462042510509491, -0.3169229030609131, -0.8506618738174438, -0.30496224761009216, 0.22624346613883972, 0.6207032203674316, -0.22202056646347046, 0.31197768449783325, -0.1495388150215149, -0.41634705662727356, -0.230375736951828, -0.7249070405960083, 0.773749828338623, -0.6125717759132385, -0.7850807309150696, 0.37703579664230347, 0.9936596751213074, 0.025645174086093903, -0.061388883739709854, -0.800491213798523, -0.3806353211402893, 0.7583670616149902, -0.36614933609962463, 0.3677305281162262, -0.6568765044212341, 0.9339364767074585, 0.6386974453926086, -0.5465871095657349, 0.8584948182106018, -0.088823601603508, 0.07921181619167328, -0.6233581900596619, 0.564526379108429, 0.2906741201877594, -0.2692034840583801, 0.7001011371612549, -1.0155991315841675, 0.36664658784866333, -0.06887441128492355, 0.04923142120242119, -0.11483962088823318, -0.5957229733467102, -0.1496904343366623, -0.4681004285812378, -0.2326126992702484, 0.980778157711029, 0.12111746519804001, 0.33012306690216064, 0.07157838344573975, -1.523742437362671, -0.262170672416687, 0.3872990608215332, 0.3038073182106018, 0.7850751280784607, 1.8556851148605347, 1.8756818771362305, 0.33033230900764465, -0.29595282673835754, -0.32323533296585083, 0.26762655377388, -0.4890887141227722, -0.5540843605995178, -1.0456295013427734, 0.14517554640769958, -0.5039323568344116], [0.20455694198608398, 1.361508846282959, -2.2239766120910645, -1.5307077169418335, 0.5241474509239197, -0.22096198797225952, 0.8930737972259521, 0.39475834369659424, -0.9215692281723022, -0.11533553898334503, 0.08887703716754913, 0.05965464562177658, 1.1992177963256836, 0.8953452110290527, -0.04869705066084862, 0.5760685205459595, -0.02502039074897766, -0.6566441655158997, 1.0074266195297241, 1.0502066612243652, 0.014194570481777191, 0.09627921879291534, 0.07853732258081436, 0.23528961837291718, 0.06005604565143585, 0.21987049281597137, -0.5502668619155884, -0.448294997215271, -0.308834433555603, -0.710025429725647, 0.2717626094818115, -1.0466874837875366, 0.06705091893672943, 0.9694089293479919, -0.9694615602493286, -1.3230363130569458, 1.5272362232208252, 1.1831282377243042, 1.0574828386306763, 0.28024300932884216, 1.1823617219924927, 0.06800955533981323, -0.5547266602516174, -0.24786004424095154, -0.6456623077392578, -0.1469375044107437, 0.28275126218795776, -0.34120291471481323, -0.37820303440093994, 0.31609442830085754, 0.4552725851535797, 0.44272056221961975, 0.10664992779493332, 0.2688654363155365, 1.2236403226852417, 0.008979249745607376, 0.7192922830581665, -0.0628172978758812, 0.7380287647247314, -0.9296491146087646, 0.13121286034584045, 1.268031120300293, -0.04801328852772713, 1.3180502653121948, 1.0345911979675293, 0.549130916595459, -0.8451319336891174, 0.13808655738830566, 0.45325979590415955, -0.3285520374774933, 0.408214807510376, 0.6457144618034363, 0.29371196031570435, 0.11072305589914322, -0.7699286937713623, 0.3227519094944, 0.48808351159095764, 0.4271608591079712, -0.5555811524391174, 0.9707842469215393, 0.34698790311813354, 0.06503129005432129, 1.3853849172592163, -0.49337896704673767, 0.6856098175048828, 0.46800702810287476, 0.17690002918243408, -0.8095208406448364, 0.6889720559120178, 0.6375442743301392, 0.2523617446422577, -0.17320044338703156, 0.7768150568008423, 0.22874696552753448, -0.25594842433929443, 0.7307097315788269, -0.6787134408950806, 0.13690254092216492, -0.08195775002241135, -0.5125687718391418, -1.3270785808563232, -0.22340801358222961, 0.007816620171070099, -0.336011677980423, -0.4822806417942047, 1.0222437381744385, 0.803057074546814, 0.2739792466163635, -0.5474220514297485, -0.5894441604614258, -0.13772639632225037, 0.12683677673339844, 0.09625421464443207, -0.9549157619476318, -0.9505332112312317, 0.19240103662014008, 0.8138194680213928, -0.5570728182792664, 0.7456762194633484, 1.1018251180648804, -0.7327723503112793, 0.6827397346496582, 0.8322133421897888, 0.8569947481155396, -0.050221748650074005, -0.42769208550453186, -0.3947754204273224, -0.5164110064506531, 0.676110029220581, -0.5871325135231018, -0.10168643295764923, -0.6896609663963318, -0.3173424005508423, 0.16215714812278748, -0.510674774646759, 0.4106200933456421, -0.317709356546402, -0.7440822720527649, -0.3063117563724518, 0.2035873383283615, 0.6897709369659424, -0.3118414878845215, -0.7850783467292786, -0.8762238621711731, -0.6749172210693359, -0.2663164436817169, 0.8249716758728027, 0.016699887812137604, -0.0409332774579525, -0.5942658185958862, -0.9733462333679199, 1.234616756439209, 0.437950998544693, 0.7830884456634521, 0.5597152709960938, -0.5770907402038574, 0.8473539352416992, -0.12927980720996857, 0.26883700489997864, 0.6114777326583862, 1.3614606857299805, 0.25371211767196655, -0.7852377891540527, 0.07337787747383118, -0.27763691544532776, -0.49862805008888245, 0.3110520541667938, 0.8663452863693237, 0.282191663980484, 0.17888270318508148, -0.03051608055830002, -0.26693639159202576, -1.1728391647338867, 0.26349127292633057, 0.2259880006313324, -0.9210351705551147, 1.220618486404419, -0.3132516145706177, -0.30781057476997375, -0.21255718171596527, 0.24478641152381897, -0.6634289622306824, 0.10982748121023178, 0.0002451874315738678, 0.1719280183315277, -0.5359481573104858, 0.07974839210510254, -0.16812384128570557, -0.21560460329055786, -0.383590430021286, -1.6474964618682861, 0.24090948700904846, -0.7070242166519165, 0.009541746228933334, -0.8918042778968811, -0.19340753555297852, 0.7343044281005859, -0.5539183616638184, -0.31180262565612793, 0.2727071940898895, -0.610998272895813, 0.16444547474384308, -1.2341725826263428, 0.5326411128044128, -0.22785018384456635, 0.4129130244255066, -1.5979559421539307, 0.6535394191741943, -1.1053342819213867, -0.09003837406635284, 0.9704805612564087, -0.9361518621444702, 0.49705126881599426, 0.4147214889526367, -0.4153440594673157, -1.3483104705810547, 0.5196797251701355, 0.18446996808052063, -0.6856358051300049, 0.005475275218486786, 0.6858486533164978, 0.6309757232666016, 0.3160625994205475, -0.38743671774864197, 0.244462788105011, -0.6783915162086487, 0.14882242679595947, -0.13135984539985657, -0.6443870663642883, 0.5892157554626465, -0.7486128211021423, -1.083991527557373, 0.8346586227416992, 0.2693401277065277, -0.6224914193153381, 0.1780550181865692, 0.09257402271032333, 0.14035511016845703, 1.2827328443527222, 0.5635443329811096, 0.3396146893501282, 0.3052670359611511, -0.8280545473098755, -0.6594491004943848, -0.6908374428749084, 0.8470630049705505, 0.8496918678283691, -0.9177582859992981, 0.3209596276283264, 0.8268409967422485, 0.40145549178123474, 0.34874409437179565, 0.8612769246101379, -1.1840153932571411, -0.12198550254106522, -0.8987115621566772, -0.47661423683166504, 0.22714468836784363, -0.22994546592235565, 1.261823296546936, 0.8816586136817932, -1.2763543128967285, 0.6201565265655518, 0.0906582847237587, -0.08965481072664261, -0.16377241909503937, -0.7640140056610107, 0.6729135513305664, 0.3767555356025696, -0.02780105173587799, -0.2694842517375946, -0.3129175901412964, -0.5552166104316711, 0.4939791262149811, -0.4930824041366577, 0.35437482595443726, 0.5551013946533203, 0.7287893295288086, -0.8902894854545593, 0.3517979085445404, 1.0452733039855957, -0.6524465084075928, -0.8668035864830017, -0.2977752685546875, 0.1152181476354599, -0.18519170582294464, -0.41166770458221436, 0.46465376019477844, 0.56141597032547, -0.1357317566871643, 0.10698242485523224, 0.25937747955322266, 0.1871865838766098, 0.8283795118331909, -0.7372129559516907, 0.20770004391670227, 1.0864571332931519, 0.03590685874223709, 0.650906503200531, 0.4020056426525116, 0.6700528860092163, 0.8798794150352478, 1.1014100313186646, 1.8309866189956665, 0.2723774015903473, -0.2814463973045349, -0.40812745690345764, -1.1979591846466064, -0.12406427413225174, 0.043229762464761734, -0.7283433079719543, -0.9594693183898926, -0.09270823746919632, 0.2141711711883545, -0.1953984946012497, 0.3163480758666992, -0.1322018802165985, 0.5102630853652954, 0.634116530418396, -0.5800348520278931, 1.0720807313919067, 0.7395191788673401, -0.4150860905647278, -0.2690950036048889, -0.016303017735481262, -0.10754165053367615, -1.1018059253692627, -0.006266362965106964, 0.7824991941452026, -0.11395099759101868, 0.7958744764328003, 0.12988799810409546, 0.14669452607631683, -0.8344371914863586, -1.0301872491836548, 0.13907389342784882, 0.8789008259773254, -0.20848390460014343, -0.05948302894830704, -0.670762300491333, 1.9385522603988647, -0.14149923622608185, 0.23000970482826233, -0.46677178144454956, 0.6631986498832703, 0.15013790130615234, -0.8316599130630493, -0.6655611395835876, 0.1170433759689331, -0.12022346258163452, -0.14020831882953644, -0.039789874106645584, 0.26542314887046814, -0.4012237787246704, 0.23081517219543457, 1.1539112329483032, 0.664108395576477, 1.6379755735397339, 0.0761263370513916, -0.9667316675186157, 0.5961536169052124, -0.4952221214771271, 0.07371248304843903, -1.3553999662399292, 0.8516101241111755, -0.10137923061847687, 1.1752020120620728, 0.710235595703125, -0.503877580165863, 0.25809791684150696, -0.04077230393886566, 0.3453228771686554, 0.15165990591049194, 1.0856163501739502, 0.12645161151885986, -1.2419155836105347, -0.5786775946617126, -0.1532129943370819, 0.0036776773631572723, -0.5308966636657715, -0.16171765327453613, 0.44306468963623047, -0.3216157555580139, -0.10838472098112106, 1.0688356161117554, -0.25131747126579285, -0.25403621792793274, -0.3309788405895233, 0.2000533491373062, -0.20220226049423218, -0.13226039707660675, -0.3349514305591583, -1.5867233276367188, -0.3729332387447357, 0.0495021678507328, -1.1101279258728027, -0.06546258926391602, -0.22894448041915894, 0.41788309812545776, 0.5346260070800781, -1.0462672710418701, 0.40126314759254456, 0.09513717889785767, 0.7912482619285583, 0.6007000207901001, 0.25991225242614746, 0.6299232244491577, -0.20829367637634277, 0.7666980624198914, 0.29029029607772827, -0.31110841035842896, 1.1484979391098022, -0.2563628554344177, -0.5333337187767029, 0.13787071406841278, -0.11141234636306763, 0.27774015069007874, -0.05687206983566284, 0.6162988543510437, 0.5529339909553528, -0.004944950342178345, 0.09465411305427551, 0.013904877007007599, 0.10423322021961212, 0.5599023103713989, 0.8612967133522034, 0.7080717086791992, 0.9269693493843079, -0.5925676226615906, -0.7390642166137695, 0.6003335118293762, 0.007865614257752895, 1.4619495868682861, -0.5121629238128662, -0.05757961422204971, 0.5327319502830505, -1.5421847105026245, 0.5034660696983337, 0.29165586829185486, 0.7464824318885803, -0.008372312411665916, -0.4082558751106262, 1.0684616565704346, -0.1297629326581955, 0.8266366720199585, 1.2440446615219116, 0.18691584467887878, -0.4106162488460541, -0.3544839024543762, 1.081737995147705, -0.697943925857544, 0.23899973928928375, 0.4003141522407532, 0.3156706392765045, 1.407983660697937, -1.0920536518096924, -0.8404173851013184, 0.696717381477356, -0.10813987255096436, 0.24724061787128448, 0.5748947858810425, 0.776515543460846, -0.9761756658554077, 0.23157814145088196, 0.6449651718139648, -0.600713849067688, -0.21865148842334747, -0.13685977458953857, 0.18746617436408997, 1.494372844696045, -0.25153106451034546, -0.011302530765533447, 0.28386569023132324, -0.04308180883526802, 0.16406096518039703, -0.07892327755689621, -0.3022432029247284, 0.3582150638103485, 0.051930107176303864, 0.22222818434238434, -0.17797154188156128, -0.4904187321662903, 0.35274121165275574, -0.5616970658302307, 0.12837298214435577, 0.34569618105888367, -1.2265511751174927, 0.2717354893684387, -0.6631166934967041, -0.14257490634918213, -0.019831502810120583, -0.469076931476593, -0.5018103122711182, -0.17720097303390503, -0.8964722156524658, -0.3604423701763153, 1.0720514059066772, 1.4860780239105225, -0.6289032697677612, 0.4987746775150299, 0.37561240792274475, -0.004418771713972092, -0.6833630800247192, 0.2094499170780182, 0.41614362597465515, -0.6561495065689087, 0.46726366877555847, -1.8538564443588257, -0.7898303866386414, 0.8422712683677673, 0.4778417944908142, 0.006814759224653244, 0.12734632194042206, 0.37725088000297546, 0.41908958554267883, -1.1251015663146973, -0.8983854055404663, 0.34493207931518555, -0.6253333687782288, -0.09672914445400238, 0.4800490438938141, -0.2941725254058838, -0.7425863742828369, -0.5954026579856873, -1.1952236890792847, 1.2362911701202393, 0.6599235534667969, -1.3531434535980225, 0.5929948091506958, 0.5843368172645569, 1.0594487190246582, 0.4829191267490387, -0.019258789718151093, -0.4615851044654846, -0.29568180441856384, 0.09354130923748016, -0.40638378262519836, 0.32681259512901306, 0.1986134946346283, 0.7110323905944824, 0.06925009191036224, 0.36822670698165894, -0.32126036286354065, 0.4991365373134613, 0.813984215259552, -0.4043993651866913, 0.4034312069416046, 0.8785133957862854, 0.11285034567117691, -0.047079894691705704, -0.10641397535800934, -0.4206278920173645, -1.2117886543273926, -0.30579155683517456, 0.5718430876731873, -0.612406313419342, -0.12967325747013092, -0.35777080059051514, 0.1468408703804016, -0.2060813158750534, 0.41927310824394226, 0.07002753019332886, 0.682833731174469, 0.839877188205719, -0.31345173716545105, -0.13962212204933167, 0.5680378079414368, -0.27249228954315186, 0.3247336447238922, 0.2930345833301544, -0.7742289900779724, -1.361109972000122, 0.29665103554725647, -0.5592174530029297, -0.4802435338497162, -0.21229584515094757, 0.33924439549446106, -0.03225652500987053, -1.4251718521118164, -0.6175574660301208, -1.5513107776641846, -0.1365390121936798, 0.26586592197418213, -0.9148851633071899, 0.24513979256153107, 0.59068763256073, -1.0714151859283447, -0.05438113212585449, -0.516284704208374, -1.6147382259368896, 0.42562177777290344, -1.0027331113815308, 0.15063317120075226, -0.5767900347709656, 1.6800843477249146, -0.3338402509689331, 0.1854574829339981, -0.6782095432281494, -0.757057785987854, 0.22624774277210236, -0.4327748715877533, 0.507499635219574, 0.9725989699363708, -1.2527679204940796, 0.028432924300432205, 1.1224294900894165, -0.4600328505039215, -0.07777034491300583, 0.41258877515792847, -0.758789598941803, 0.380375474691391, 0.36464923620224, 0.06527825444936752, -0.12659798562526703, 1.165785312652588, -0.06223005801439285, 0.9135169386863708, -0.7691690921783447, -0.005268573760986328, -0.4508476257324219, -0.5283770561218262, -0.4073691964149475, 0.9495836496353149, -0.9642840623855591, -0.09615571051836014, -0.7554317116737366, -1.2548060417175293, -0.12392716109752655, 0.6751457452774048, 1.3376413583755493, -0.5369260907173157, -0.8077536821365356, -0.9466336369514465, 0.4431193470954895, -0.6220574378967285, 0.39400359988212585, 0.17060217261314392, 0.28663504123687744, 0.3787071108818054, 0.684977650642395, 0.06455101817846298, -0.6533470153808594, -0.009782050736248493, 0.6322438716888428, 0.05403250828385353, -1.6394802331924438, 1.189136266708374, 0.5367696285247803, 0.17649774253368378, -0.636508047580719, 1.66971755027771, 0.5316283702850342, -0.16831481456756592, -0.7399364113807678, -0.7188167572021484, -0.012649822980165482, 0.995927095413208, -1.329727053642273, -0.23398330807685852, -0.9863075017929077, 0.3281482458114624, -0.9439517855644226, -0.41676515340805054, -1.6994554996490479, 0.14053550362586975, -0.2272907942533493, -0.6705813407897949, 0.7165290117263794, -0.8708077073097229, 0.2511362135410309, 0.613243818283081, 0.6103852391242981, 0.2742061913013458, 0.9708389043807983, 0.9113170504570007, -0.08313295245170593, 0.2352859526872635, 0.8373709321022034, -0.4212630093097687, -1.1843857765197754, 0.07263804972171783, 0.5292255878448486, 0.7102993726730347, -0.26007261872291565, -0.19642503559589386, -1.550093173980713, -0.7784274220466614, -0.7053848505020142, -0.4737528860569, -0.4331638216972351, -0.0730489194393158, -1.1488782167434692, 0.5715243220329285, -0.000845741480588913, -1.1680477857589722, -0.19652189314365387, -0.15559212863445282, -0.9694167375564575, -0.46681952476501465, 0.42128220200538635, -0.771513819694519, 0.08164230734109879, -0.09903615713119507, -0.08124560117721558, -0.019215140491724014, -1.2439509630203247, 0.5556463599205017, 0.739915132522583, 0.6248099207878113, -0.36824873089790344, 0.5805394649505615, -0.40150967240333557, -0.752896785736084, -0.30757153034210205, -0.9033402800559998, 0.14340858161449432, -0.30347269773483276, -0.8389407396316528, -0.05425417795777321, 0.6433649063110352, 0.014383558183908463, -0.06646154075860977, -1.5606046915054321, -0.2066197246313095, 0.8325413465499878, -0.383232980966568, 0.2365114986896515, -0.937255322933197, 0.9956340789794922, -0.17090114951133728, -0.11465498059988022, 0.8100104331970215, -0.06708649545907974, 1.3050816059112549, -0.4411986470222473, 0.769906759262085, -0.041239239275455475, -0.3592502772808075, 0.2075551152229309, -0.6705784797668457, 0.3227469325065613, -0.42467615008354187, -0.050403423607349396, -0.5615707635879517, -0.159781351685524, -0.8998310565948486, -0.7112289667129517, 0.7418616414070129, 1.1081887483596802, 0.15940336883068085, -0.9781378507614136, 0.3389197289943695, -0.7401631474494934, -0.25828203558921814, -0.0873817428946495, -0.49635758996009827, -0.682992160320282, 0.7132753133773804, 1.2586865425109863, 1.3156501054763794, 1.127271294593811, 0.22613348066806793, 0.545806884765625, -0.4440154731273651, -0.4133971929550171, -1.3987265825271606, -0.497459352016449, -0.7761999368667603], [0.45487096905708313, 1.072420358657837, -2.532846450805664, -1.2378231287002563, 0.3867693841457367, 0.4825824499130249, 1.6918591260910034, 0.509148359298706, 0.20559599995613098, -0.5958399772644043, 0.06893951445817947, 0.10398329049348831, 0.7724658250808716, 1.2026526927947998, -0.15762081742286682, 0.4196130633354187, 0.5140318870544434, -0.2560977339744568, 0.8810482025146484, 0.7165201306343079, -0.6761107444763184, 0.1529439389705658, -0.3251066207885742, 0.26032620668411255, -0.13428503274917603, 0.5605872273445129, -1.5421806573867798, 0.1100362241268158, -0.6183661818504333, -0.5400176048278809, 0.9772195219993591, -1.339797019958496, -0.6539880633354187, 0.18608912825584412, -0.8888441324234009, -0.38706544041633606, 1.3095072507858276, 1.2184193134307861, 0.9966530799865723, 1.4086521863937378, 2.3739094734191895, -0.31957095861434937, 0.2479322999715805, -1.125403881072998, -0.006233883090317249, 0.02716180868446827, 1.323664665222168, -1.3516368865966797, -0.6738717555999756, -0.4970266819000244, 0.5699012279510498, 0.005758728366345167, 0.2857551574707031, 1.3155752420425415, 1.4046876430511475, -0.6999563574790955, 0.8710843920707703, -0.47482532262802124, 0.5710964202880859, 0.181003600358963, 0.5441881418228149, 0.24639418721199036, 0.15528002381324768, 1.135717511177063, 0.25640949606895447, -0.19236069917678833, -0.8602295517921448, 0.224294051527977, 0.20643888413906097, 0.3089277148246765, 0.13082267343997955, -0.08635245263576508, -1.0229891538619995, 0.5869462490081787, -1.2545455694198608, 0.6258903741836548, 0.5517498850822449, 0.8135078549385071, 0.3875328004360199, 1.0284773111343384, -0.5677708387374878, -0.05366922914981842, 0.36283308267593384, -0.41351979970932007, 1.4072730541229248, 0.37498757243156433, 0.4481064975261688, -1.2110247611999512, -0.35819903016090393, 1.3107013702392578, 0.12599536776542664, -0.22368764877319336, 0.7170853614807129, 0.46996456384658813, -0.1513090431690216, -0.453468382358551, 0.10292480140924454, -0.15995192527770996, -0.5574654340744019, -0.2766050696372986, -1.295697569847107, -0.16951227188110352, -0.077606201171875, -0.12916596233844757, 0.7126836776733398, 1.7900007963180542, -0.10053449124097824, -0.3860466480255127, -0.6795997619628906, -0.5604814887046814, -0.4779430031776428, -0.7330313920974731, -0.5941030979156494, -0.8812786936759949, -0.8475342392921448, 0.73576420545578, 1.1574814319610596, -0.7912079691886902, 1.312233805656433, 0.4838598966598511, -0.23683829605579376, 0.40854504704475403, 0.11476282775402069, 0.11825922131538391, 0.6487972140312195, 0.5211865305900574, -0.6247006058692932, -0.059288620948791504, 0.9641625285148621, -0.05684233829379082, 0.5822698473930359, -0.07133044302463531, 0.5255003571510315, 1.2973154783248901, -0.19680389761924744, 0.9633907079696655, 0.3668358027935028, -0.5567998886108398, -0.15690137445926666, 0.2788435220718384, 0.5154905915260315, -0.266463041305542, -0.4499337673187256, -0.8814817070960999, 0.2335333377122879, -0.9359737634658813, 0.563215970993042, -0.180198073387146, -0.3008127212524414, -0.6720598936080933, -1.083990216255188, 0.2557947039604187, 0.28690412640571594, 0.9333738684654236, 0.364391952753067, -0.6569912433624268, 0.6693893074989319, 0.3305674195289612, 0.36331549286842346, 0.773918092250824, 0.5054892301559448, 0.5021217465400696, -0.7210551500320435, 0.6372796893119812, 0.5066606402397156, -1.056025743484497, -0.005986446514725685, 0.5310761332511902, 0.46004459261894226, -0.12583613395690918, -0.6907801628112793, -0.332348495721817, -0.8769106864929199, -0.05643896386027336, 0.6740811467170715, -1.02842378616333, 1.3430062532424927, -0.7665267586708069, -1.4519938230514526, -0.9022302627563477, 0.7636251449584961, -0.31338149309158325, 0.30839765071868896, -0.5402961373329163, 0.6262060403823853, -0.6824144721031189, -0.06747027486562729, -0.32904618978500366, -0.6322396397590637, -0.7588306665420532, -1.1932508945465088, -0.7515211701393127, -1.2774379253387451, 0.23441825807094574, -0.413918137550354, -1.033993124961853, 0.49691900610923767, -0.7135881781578064, -0.8732492327690125, -0.06345751881599426, -0.3610967993736267, -0.36539411544799805, -1.1978185176849365, 0.5776627659797668, -0.7810513377189636, 0.8815778493881226, -1.1225959062576294, 0.9570738673210144, -1.567907452583313, -0.1685778796672821, 0.08411749452352524, 0.11043720692396164, -0.33868250250816345, 0.7637442946434021, -0.648177981376648, -1.3080124855041504, 0.16082985699176788, 0.3520219922065735, -0.2975369095802307, -0.3936523199081421, 0.6044407486915588, 0.19506296515464783, 0.8318104147911072, -0.11310500651597977, 0.5029181241989136, -0.06165941432118416, -0.7217264771461487, -0.782949686050415, -0.4319470524787903, 0.6767961978912354, -0.747398316860199, -1.2778093814849854, 1.2864196300506592, 0.8295496702194214, -1.463558554649353, 0.4777785539627075, -0.041743598878383636, -0.21940335631370544, 0.24086861312389374, 0.3753618896007538, 0.2712005376815796, -0.07925937324762344, -0.1507018506526947, -0.07901892066001892, -0.45467182993888855, 0.8775302171707153, 0.7385775446891785, -0.40770867466926575, 0.9770055413246155, 1.3422764539718628, -0.028204569593071938, 0.13708734512329102, 0.8042307496070862, -0.44979530572891235, 0.21186986565589905, -0.5314876437187195, -0.9182157516479492, -0.17461109161376953, -0.5538156628608704, 1.6702684164047241, 0.9168534874916077, -1.21555495262146, -0.42266619205474854, 0.28465157747268677, -0.2445315569639206, -0.606001615524292, -0.3273827135562897, 0.19780988991260529, 0.08499622344970703, -0.4832875728607178, -0.2865428626537323, -0.11377064883708954, -0.31298232078552246, 0.3282225430011749, -0.39845266938209534, 0.1420249044895172, -0.05437461659312248, 0.5657297372817993, 0.3311298191547394, 1.1090898513793945, -0.15523718297481537, -0.6256361603736877, -0.9595549702644348, -0.01595158316195011, 1.148604154586792, 0.16738809645175934, 0.1763806939125061, 0.5749847292900085, 0.2114802449941635, -0.24485352635383606, -0.17780429124832153, 0.9360584020614624, -0.42395177483558655, 0.2713444232940674, -1.0533549785614014, 0.17744995653629303, 1.6087095737457275, -1.2316358089447021, -0.5412541627883911, 0.3998914659023285, 0.7227814793586731, 0.8932366967201233, 1.0028642416000366, 1.5941407680511475, 0.0759967789053917, 0.03778570517897606, 0.0888708159327507, -0.5693826079368591, -0.19637207686901093, -0.6490678191184998, -0.5649634599685669, -1.0700501203536987, -0.35078001022338867, 0.03230289742350578, 0.31899648904800415, 0.7774601578712463, -0.5155386328697205, 1.0301456451416016, 0.4524344503879547, -0.7126400470733643, 0.08166956156492233, 0.05757980793714523, 0.07616829127073288, -0.3263932168483734, 0.3123354911804199, -0.5187532901763916, -0.9009339809417725, -0.6483046412467957, 0.0698724165558815, 0.21256889402866364, 1.4629172086715698, 0.003957576118409634, 0.010062549263238907, -0.8775030374526978, -0.7808964252471924, -0.1579047441482544, 0.6977798342704773, -0.5380061864852905, -0.27027758955955505, -1.1085522174835205, 0.25001028180122375, 0.5348896384239197, -0.11237100511789322, -0.8814781308174133, 0.31014424562454224, -0.4984738230705261, -1.4490915536880493, -0.2975229024887085, 0.16219152510166168, 0.8557398319244385, -0.43607228994369507, -0.5479820966720581, 0.37366005778312683, -0.3724285662174225, -0.5585606694221497, 0.5477861762046814, 0.23814897239208221, 0.7014796137809753, -0.33970654010772705, 0.029739752411842346, 1.3027186393737793, -0.5188024640083313, -0.2027137130498886, -2.0838639736175537, 1.1511448621749878, -0.2276887744665146, 1.3350900411605835, 0.4943835437297821, 0.33608606457710266, 0.41760289669036865, -0.37295687198638916, 0.02305155247449875, 0.15811145305633545, 1.299487829208374, -0.14674945175647736, -0.3077320456504822, -0.2894241511821747, -0.29667142033576965, 0.0814238116145134, -0.22922787070274353, -0.5143888592720032, 0.5907818675041199, -0.4196294844150543, -0.6568177938461304, 0.8616043925285339, 0.2699447274208069, -0.7856673002243042, -0.8220863938331604, 0.38330078125, 0.8392309546470642, 0.002239711582660675, -0.14147917926311493, -1.2494630813598633, -0.283479243516922, 0.16382166743278503, -1.278825283050537, 0.33889493346214294, 0.6487153768539429, -0.23984383046627045, 0.33393239974975586, -1.0294173955917358, -0.0045366049744188786, -0.3543907403945923, 0.250463604927063, 0.8177149891853333, -0.340455561876297, 0.7308158278465271, 0.5390247702598572, 0.1979677975177765, -0.021914571523666382, -0.34965041279792786, 1.7023515701293945, 0.072517029941082, -0.353483110666275, -0.4101817011833191, 0.22257769107818604, 0.32603979110717773, 0.041787125170230865, -0.32454827427864075, 0.2843073904514313, -0.3051779866218567, 0.551835298538208, -0.4652794301509857, -0.5180418491363525, 1.9911830425262451, 0.6269955039024353, 0.1287676990032196, 0.7315259575843811, -0.7860932350158691, -0.8189842104911804, 0.3357681632041931, 0.03184131532907486, 0.04340137541294098, -0.669651210308075, -0.1921166628599167, 0.4852389395236969, -1.1154340505599976, 0.695570170879364, 0.5536502003669739, 0.780427098274231, 0.013271761126816273, 0.10841295123100281, 0.6180572509765625, 0.21670903265476227, 0.8879601955413818, 0.9451327323913574, 0.6835452318191528, -0.21323168277740479, -0.6043038368225098, 0.777658224105835, -0.6238568425178528, 0.25625938177108765, 0.39472830295562744, -0.10306262969970703, 1.4424984455108643, -1.5955721139907837, -0.5376685857772827, 1.064491629600525, 0.22293470799922943, 1.3965532779693604, 0.6563385128974915, 0.5602387189865112, -0.6024888753890991, 0.24829702079296112, 0.45985451340675354, -0.27593106031417847, 0.6216424703598022, 0.06612459570169449, -0.24139487743377686, -0.298764169216156, -0.7546650171279907, 0.1333850473165512, -0.5575466752052307, -0.7356176972389221, -0.33402809500694275, -0.9583954811096191, 0.6383839845657349, 0.6614991426467896, 0.5006406903266907, 0.8437087535858154, -0.10283549875020981, -1.0344393253326416, 0.8056197762489319, -0.7886313199996948, 0.07207037508487701, 0.2545474171638489, -0.30030110478401184, 0.11047866195440292, -1.3919519186019897, -0.31928935647010803, 0.5129501819610596, -0.7093533873558044, -1.055742621421814, 0.25274333357810974, -0.8388267755508423, 0.22348052263259888, 0.4854094386100769, 1.5248321294784546, 0.6096146702766418, 0.13703902065753937, 0.15703295171260834, -0.06620478630065918, -1.1381603479385376, -0.2671521306037903, 0.7191693782806396, -0.13102953135967255, -0.08737356215715408, -1.7771881818771362, -0.6004438996315002, 1.8104448318481445, 0.8802875876426697, -0.8011147379875183, 0.14540530741214752, 0.8988646268844604, 1.3717116117477417, -0.6527674198150635, -1.3278582096099854, 0.17721378803253174, -0.7912672162055969, 0.10975275188684464, 0.7067264914512634, -0.3132297992706299, -0.38228708505630493, -0.47780781984329224, -1.9515663385391235, 1.176112174987793, 0.013212584890425205, -1.1118223667144775, 1.1652532815933228, 0.7835800647735596, 0.4227057993412018, 0.620425283908844, -0.08879287540912628, -0.31579041481018066, 0.022199025377631187, -0.03335129842162132, -0.9900619983673096, 0.518580436706543, 0.004277917556464672, 0.2734912037849426, -0.10504880547523499, 0.37168607115745544, -0.319562166929245, 0.259317547082901, 0.4830002784729004, 0.673145055770874, 0.5431456565856934, 0.6861469149589539, 0.0034816390834748745, 0.10322245210409164, -0.22188574075698853, -0.6730772256851196, -0.4364190399646759, -0.35549288988113403, 0.8971376419067383, -0.22988195717334747, -1.3171849250793457, -0.038044191896915436, 0.22956866025924683, 0.15340515971183777, 0.16294001042842865, -0.7304664850234985, 0.8539374470710754, 0.10927601903676987, 0.04951733723282814, 0.26635992527008057, -0.39801496267318726, 0.3997213840484619, -0.1861710548400879, 0.0128677012398839, 0.7059686183929443, -1.3533706665039062, 0.3435213565826416, -0.20605403184890747, 0.1792730987071991, 0.08498053252696991, -0.015505820512771606, 0.15084095299243927, -1.3638886213302612, -0.7600514888763428, -1.311631679534912, -0.17424464225769043, 0.9017523527145386, -0.5385491251945496, 0.440203994512558, 0.7329630255699158, -1.4243497848510742, 0.3023729920387268, 0.06066729500889778, -1.3040297031402588, -0.31105291843414307, -1.283389925956726, 1.2188539505004883, -0.664399266242981, 1.0403560400009155, -0.9031752347946167, 0.6645780205726624, -1.0647400617599487, -1.2364248037338257, -1.0950264930725098, -0.09511281549930573, 1.0689277648925781, 1.0870893001556396, -0.9825506806373596, 1.284839153289795, 0.9656996726989746, -0.7477583885192871, -0.8879638910293579, 0.11017600446939468, -0.8582976460456848, 0.6404767036437988, 1.016680359840393, 0.4056226313114166, 0.10623300820589066, 1.2387051582336426, -0.13861539959907532, 0.7669156193733215, 0.4213583767414093, 0.7277857065200806, -1.0290559530258179, -0.5695256590843201, -0.33650192618370056, 0.5390796065330505, -0.7205038070678711, -0.37472590804100037, -0.14385217428207397, -1.1469295024871826, -0.5127992033958435, 0.8609578609466553, 1.1785129308700562, -0.712679386138916, -0.4522060453891754, -0.9653730988502502, 0.7973179221153259, -0.2759678065776825, 0.05445136874914169, -0.03288769721984863, -0.08105336874723434, 0.5765307545661926, 0.12801682949066162, -0.7005433440208435, -0.8391771912574768, -0.22782275080680847, 0.23014087975025177, -0.1143871322274208, -0.35480499267578125, 0.945442259311676, 0.6109887957572937, -1.015249490737915, -1.1128787994384766, 1.924723744392395, 1.645298719406128, -0.2827789783477783, -0.08348039537668228, 0.2514663338661194, 0.4000592827796936, 0.6757662892341614, -0.6280126571655273, -0.09390585124492645, -0.9404543042182922, 0.7693541646003723, 0.001757550984621048, -0.7196365594863892, -0.9186882972717285, -0.02360456995666027, -0.44797229766845703, 0.3414655327796936, 0.6344261169433594, -0.5120143294334412, -0.05271651968359947, 1.3864295482635498, 0.4658939838409424, -0.07235386222600937, 0.6913986206054688, 0.5223067998886108, -0.06177247315645218, -0.0899803638458252, 1.1998953819274902, 0.6192549467086792, -1.187116265296936, 1.0307868719100952, 0.4696215093135834, 0.2883477509021759, 0.32815203070640564, -1.1132922172546387, -2.0107176303863525, 0.04264017194509506, -0.9527220129966736, -1.1201108694076538, 0.20137573778629303, -0.8746007084846497, -0.9923873543739319, 0.5275896787643433, 0.14521466195583344, 0.047808971256017685, -1.032150387763977, 0.5234549641609192, -0.4833928346633911, 0.20662689208984375, 0.5156152248382568, -0.9554663896560669, 0.8790625929832458, 0.08629706501960754, -0.6803134679794312, -0.6703417897224426, -0.6880891919136047, 0.35669589042663574, 0.11341561377048492, 0.04974501207470894, -0.34067296981811523, 0.6420093774795532, -0.223210409283638, -0.7630946636199951, 0.1768219918012619, -1.0564128160476685, 0.3656911253929138, -0.5658596754074097, -0.7341560125350952, 0.34376290440559387, 1.2849074602127075, 0.0002509020268917084, 0.12925103306770325, -0.787754237651825, -0.29179394245147705, 0.7273126244544983, -0.384544312953949, 0.4299579858779907, -0.5870928764343262, 0.8239366412162781, 0.39277198910713196, -0.3802526295185089, 0.626583993434906, -0.27177178859710693, -0.0033361176028847694, -0.33869093656539917, 0.4579312801361084, 0.12362530827522278, -0.07289624214172363, 0.19774048030376434, -0.7625826597213745, 0.3013021647930145, -0.36541131138801575, 0.06000468134880066, -0.09699603915214539, -1.0255528688430786, -0.8437090516090393, -0.40365129709243774, -0.3844342529773712, 0.9595940709114075, 0.19910037517547607, 0.7093507647514343, -0.2998676598072052, -1.1974750757217407, 0.1322503387928009, 0.06634746491909027, -0.3542967140674591, 0.3888798952102661, 1.7145131826400757, 1.5961552858352661, 0.3576830327510834, 0.07858652621507645, -0.4104524254798889, 0.7504568696022034, -0.37884145975112915, -0.37706029415130615, -1.1648986339569092, -0.34790536761283875, -0.4642045199871063], [0.9129478931427002, 1.0283514261245728, -1.9574933052062988, -0.2850193381309509, -0.0265867430716753, -0.04128507524728775, 0.7289487719535828, 0.7309468388557434, -0.26452958583831787, -0.5832101106643677, -0.34948593378067017, 0.39356452226638794, 0.5653750896453857, 0.1099974662065506, 0.6230791807174683, 0.596500813961029, 0.9555144309997559, -0.2003750056028366, 0.5079505443572998, 0.5178695917129517, -0.6639973521232605, -1.152497410774231, 0.44537681341171265, -0.10938933491706848, -0.1214698776602745, 0.6967368125915527, -1.4638190269470215, -0.819892942905426, -1.5442675352096558, -0.687106728553772, 1.283125400543213, -0.675077497959137, 0.22039294242858887, 0.42360901832580566, -1.7133790254592896, -0.1946294754743576, 0.8800828456878662, -0.16358768939971924, 0.1902279257774353, 0.3603861331939697, 1.3381327390670776, 0.17932400107383728, 0.13079768419265747, -1.1889716386795044, 0.9391293525695801, 0.11204494535923004, 0.38154178857803345, -0.5275063514709473, 0.6849993467330933, -0.534344494342804, 0.3675619959831238, -0.13245758414268494, -0.4092288315296173, 1.830885410308838, 1.059385061264038, -0.5495100617408752, -0.25512954592704773, 0.4816387891769409, 0.44085532426834106, 0.5629096031188965, 1.0830880403518677, -0.14084163308143616, -0.07539524137973785, 0.9234607815742493, 0.6923384666442871, 0.32865357398986816, 0.7430738210678101, 0.9986242055892944, -0.4582786560058594, 0.06936519593000412, 0.523307204246521, 0.2252824753522873, -0.4007762670516968, 0.7437547445297241, -0.8302412033081055, -0.15527617931365967, -0.6309478282928467, 0.7318254709243774, 0.04786228388547897, 0.824237048625946, -0.4085819721221924, 0.191023588180542, 0.3018210232257843, 0.7578091025352478, -0.37936869263648987, -0.05043947696685791, 0.6882630586624146, 0.00668034702539444, -0.9012155532836914, 0.8600380420684814, -0.13235822319984436, 0.9757001996040344, 0.38720232248306274, -0.1549183577299118, -0.3888254165649414, -0.7334293127059937, -0.316631555557251, -0.42303144931793213, -0.5085040926933289, -1.3724302053451538, 0.026099082082509995, -1.7650604248046875, 1.21842360496521, 0.5115553140640259, 1.762134075164795, 1.0766505002975464, 0.12442487478256226, -1.1736912727355957, -0.3514663279056549, -0.17150774598121643, -0.04263295978307724, 1.1110092401504517, -0.7760013937950134, -1.1247920989990234, 0.18569718301296234, 1.391739845275879, 0.3574744760990143, -0.22661927342414856, 0.6388995051383972, 0.8940659761428833, -0.9111251831054688, 0.7381316423416138, -0.13654404878616333, 0.43098193407058716, 1.3320221900939941, 0.06657487154006958, -0.14234018325805664, -0.4685784578323364, 0.052393872290849686, 0.4277719557285309, 0.1289764642715454, -0.815504789352417, -0.5238618850708008, 1.194819450378418, -1.0944509506225586, 1.1581915616989136, -0.025745831429958344, -0.3771563768386841, -0.08213134109973907, -0.16492393612861633, 1.0543394088745117, -0.36460286378860474, -0.5615047216415405, -0.05720854923129082, -0.2633059322834015, -0.805862545967102, 0.25108563899993896, -0.30825668573379517, -0.5762198567390442, -0.12523989379405975, -0.7531646490097046, 0.3896602988243103, -0.13147547841072083, 1.5517643690109253, 0.2276575267314911, 0.04747256264090538, 0.6591944694519043, -0.14296749234199524, 0.7464357614517212, 0.2628008723258972, 0.37341463565826416, -0.09467240422964096, -1.012570858001709, 1.0630059242248535, -0.24455931782722473, 0.08247224241495132, 0.3620592951774597, 0.36225616931915283, 0.09171731770038605, 0.603334903717041, -0.5969218611717224, -1.0238494873046875, -0.17227056622505188, 0.12781043350696564, -0.10943887382745743, -0.7650576829910278, 0.4312725067138672, -0.171453058719635, -0.541038990020752, -1.1744542121887207, 0.7048635482788086, -0.40418025851249695, 0.6619274020195007, 0.3575979471206665, 0.648576021194458, -0.18263569474220276, -0.2658827304840088, 0.18438422679901123, 0.12049379199743271, -0.02923177368938923, -0.9486904144287109, -0.6720100045204163, -0.5924618244171143, -0.06640130281448364, -0.2859625220298767, -0.8220645785331726, 0.16035795211791992, -0.5978556275367737, -0.545755922794342, 0.41604238748550415, -0.5214464664459229, 0.043156322091817856, -1.2242298126220703, -0.6198740005493164, -0.48372700810432434, 0.04387208819389343, -0.8713708519935608, 0.2109152227640152, -1.1400891542434692, 0.5747036933898926, 0.7992966175079346, -0.08317874372005463, -1.128082275390625, 0.5465089082717896, 0.1563219577074051, -0.4732586741447449, -0.29141658544540405, -0.4055297076702118, -0.04660141468048096, 0.9414335489273071, -0.22441181540489197, -0.24086827039718628, 1.2065954208374023, 0.09936759620904922, 1.0029929876327515, 0.1979677975177765, -1.537367343902588, -1.013205647468567, -1.2351338863372803, 0.0900154858827591, -1.0493367910385132, -0.5848140716552734, 0.641421914100647, 0.6879901885986328, -0.6232560873031616, 0.45136040449142456, 0.533503532409668, -0.07327315211296082, 0.19713658094406128, 0.680077314376831, 0.1963382363319397, 0.1964963674545288, -1.1665961742401123, -0.666499674320221, -0.22931009531021118, -0.013403783552348614, 0.9019032716751099, -0.7405917644500732, 0.031644802540540695, 1.3070764541625977, 1.1273480653762817, -0.01702655851840973, 0.9093320965766907, 0.2400585114955902, -0.5414930582046509, -1.3506741523742676, -0.005379736423492432, -0.2103479504585266, 0.211139976978302, 1.073422908782959, 0.4401158392429352, -1.0588436126708984, 0.34870535135269165, -0.4732465147972107, 0.2162829339504242, -0.2162250429391861, -0.046913132071495056, -0.506961464881897, -0.04200718551874161, 0.06528716534376144, 0.2757173180580139, 0.4475938677787781, -0.10159042477607727, 0.2209174633026123, -0.696700394153595, 0.005887215957045555, -0.5741948485374451, 0.7246496677398682, -0.22285456955432892, 0.8739811182022095, -0.1519922912120819, -1.3325588703155518, -1.0012184381484985, -0.5519547462463379, 0.5403034090995789, -0.2867739796638489, -0.15920507907867432, 1.6062794923782349, 0.7899467945098877, -0.11759662628173828, -0.355807900428772, 0.04098627716302872, 0.20268885791301727, -0.052756913006305695, 0.5168922543525696, -0.1579546481370926, 0.6958345174789429, -0.5219441056251526, -0.7154311537742615, -0.4049486815929413, -0.08968253433704376, 1.0912421941757202, 1.0087791681289673, 0.8448499441146851, -1.797468900680542, -0.44236817955970764, -0.6545352339744568, -0.32648035883903503, -1.0204821825027466, -0.6090241074562073, -0.16755086183547974, -1.073614478111267, 0.034682631492614746, -0.012351928278803825, 0.005853205919265747, 0.42759352922439575, 0.25381842255592346, 0.3188982903957367, 1.5929820537567139, 0.3712918758392334, -0.2298637330532074, -0.5636436939239502, 0.09435956180095673, -0.9748520851135254, 0.4641197919845581, 1.7375872135162354, -1.7844856977462769, -0.3052089214324951, -0.4499790668487549, -0.276284784078598, 0.4656364917755127, -0.043944332748651505, 0.2478487640619278, -1.0798859596252441, 0.10815469920635223, 0.21498319506645203, 0.6768448352813721, -0.06398129463195801, -0.031335875391960144, -0.4115977883338928, 0.026438642293214798, 0.886610746383667, -0.16495241224765778, -0.26240652799606323, 0.5610076189041138, -0.2806019186973572, 0.13093169033527374, -0.49734175205230713, 0.38442954421043396, 0.9889763593673706, -0.8596463799476624, -0.5509286522865295, 0.008461914956569672, -0.8040458559989929, -0.424765020608902, 0.11630520224571228, -0.5239167213439941, 0.9311314821243286, 0.9994471073150635, 0.24832399189472198, 1.2530862092971802, -0.5083516836166382, -0.11251510679721832, -1.3648796081542969, 0.5175449848175049, 0.8617181777954102, 1.5524141788482666, 0.5469418168067932, 0.7448908090591431, 0.4273064136505127, -0.835507869720459, 0.3545728325843811, 0.11733803153038025, 0.6438491344451904, -0.5534548163414001, -0.43582212924957275, -0.018178630620241165, -0.9053367376327515, -0.24321666359901428, -0.5359508991241455, 0.3110990524291992, 0.4225847125053406, 0.3908841907978058, -0.27477192878723145, 0.8946382999420166, 0.2053592950105667, -0.02602238580584526, -0.3236733078956604, -0.29717403650283813, 0.8330631256103516, -0.28504568338394165, -0.39865654706954956, -0.6534353494644165, -0.3770313262939453, -0.2178904414176941, -0.7292852401733398, 0.24197131395339966, 0.6660149097442627, -0.10205812007188797, 0.614774763584137, -1.585437536239624, -0.14652173221111298, 0.06320998817682266, 0.6214805245399475, 0.3626301884651184, 0.19599208235740662, -0.17451393604278564, 0.04437347501516342, -0.9455820322036743, 0.11950203031301498, 0.22174876928329468, 0.9588177800178528, -0.05757205933332443, 0.23693466186523438, -0.6795768737792969, -0.4185168743133545, 0.2659904956817627, -0.30520063638687134, -0.34427618980407715, 0.08173614740371704, -0.1856359839439392, -0.14483201503753662, 0.3003252148628235, 0.2287527620792389, 1.3302940130233765, 0.7176604866981506, 0.34557318687438965, 0.655423641204834, 0.15904846787452698, -0.31996482610702515, -0.12038037180900574, 0.5204397439956665, -0.4968213140964508, -0.5549589395523071, 0.3058397173881531, -0.10220302641391754, -0.5990535616874695, 0.44101816415786743, 0.3439205586910248, 0.35012286901474, 0.23010152578353882, -0.1377640962600708, 0.6756644248962402, 0.3944846987724304, 0.5142306089401245, 0.6305948495864868, 1.1919443607330322, 0.14520053565502167, -1.0255107879638672, 0.5173699855804443, -0.41357576847076416, 0.5985282063484192, 0.31974366307258606, 0.12786446511745453, 0.9404313564300537, -1.2138423919677734, -0.7127130627632141, 0.47348660230636597, 0.20430506765842438, 0.47274547815322876, 0.35838428139686584, 0.94977867603302, -0.11700291186571121, 0.026011981070041656, -0.3055838942527771, -0.36810386180877686, 0.8316054344177246, -0.05279059708118439, 0.4562472701072693, 0.6969481706619263, -0.19309276342391968, 0.3069929778575897, -0.38364124298095703, -0.3822503089904785, 0.44210124015808105, -0.4851002097129822, -0.5378161668777466, 0.6170295476913452, 0.002190306782722473, 1.2447295188903809, -0.44491657614707947, -1.40956711769104, -0.008367441594600677, -0.9038069844245911, 0.039667759090662, -0.3846272826194763, -0.6047465801239014, -0.5952751636505127, -0.23574146628379822, -0.210099995136261, 0.35639697313308716, -0.557164192199707, 0.0840599462389946, 0.13689468801021576, -1.1369473934173584, 0.11117897182703018, 0.3158181607723236, 0.3522922992706299, 0.9726265668869019, 0.016143526881933212, -0.4807102382183075, 0.25346750020980835, -0.6775556206703186, 0.3820798993110657, 0.590707540512085, -0.32233238220214844, 0.2188943475484848, -0.8453947305679321, -0.6782017946243286, 1.3350975513458252, 0.5181832313537598, 0.027046266943216324, -0.4672529697418213, 1.3488249778747559, 1.5318360328674316, -0.38588792085647583, -0.9827444553375244, 1.6193430423736572, -0.22511349618434906, 1.2014923095703125, 0.18430286645889282, -0.4232840836048126, -0.5487627387046814, -0.1433754861354828, -1.5637946128845215, 1.0888850688934326, 0.07034017890691757, -0.7954121232032776, 0.5808528661727905, 0.28941434621810913, 0.6287411451339722, 0.5185140371322632, -0.052989475429058075, 0.0476437546312809, 0.9365039467811584, -0.33723533153533936, -1.323447585105896, 0.5087984800338745, 0.8263081312179565, 1.1452875137329102, -0.03404448181390762, 0.002312788739800453, -0.2095792144536972, -0.05341672897338867, -0.509606659412384, 0.39863908290863037, 0.4915364980697632, 0.34848910570144653, 0.41199731826782227, -0.8136653900146484, 0.02886819839477539, -0.33941394090652466, 0.7102230787277222, -0.09489241242408752, 1.0445002317428589, -0.3267877697944641, -0.13684439659118652, 0.3183843791484833, -0.6241248846054077, -0.4781413674354553, -0.08007622510194778, -0.6332544088363647, 1.267086386680603, 0.668576717376709, -0.44073760509490967, -1.077697515487671, -0.12474894523620605, -0.2643236815929413, -0.03901877626776695, 0.0629812479019165, 0.7045230865478516, -0.8283579349517822, 0.12658275663852692, -0.3662131428718567, 0.10147496312856674, -0.2687425911426544, -0.049783967435359955, 0.12239053100347519, 0.0008892379701137543, -1.4869215488433838, -0.34247952699661255, 0.0796467736363411, 0.8211658000946045, 0.3268592357635498, 0.3270638585090637, -0.23081310093402863, -1.4355127811431885, 0.4677242636680603, 0.6115524768829346, -1.2107629776000977, -0.096976637840271, -0.9685742259025574, 0.4358556270599365, 0.3474055528640747, -0.19491538405418396, 0.21049615740776062, 0.24850930273532867, -1.1457931995391846, -1.664038062095642, -0.41624411940574646, 0.3180754780769348, 0.30871501564979553, 0.5839003324508667, -1.2683780193328857, 0.6538584232330322, -0.21209216117858887, -0.774734616279602, -0.16652819514274597, -0.14857348799705505, -0.686156153678894, -0.5721288323402405, -0.03256164863705635, -0.24916917085647583, 0.2967435121536255, 0.5114642381668091, 0.4458787143230438, 0.5801759958267212, 0.4593278169631958, 0.8726897239685059, -1.2810883522033691, -0.3459450602531433, -0.4584375321865082, 0.33994394540786743, -1.1488399505615234, -0.4060375690460205, -0.3109120726585388, -0.5387836694717407, -0.3085327744483948, 0.7242035865783691, 0.3827250003814697, -0.8671679496765137, -0.10582392662763596, 0.23017549514770508, -0.49030035734176636, -0.5709264874458313, 0.7517927885055542, 0.193227156996727, -1.763897180557251, 0.20066452026367188, 0.2543390393257141, 0.3801332116127014, -0.8077346086502075, -0.19450464844703674, -0.6466151475906372, 0.5592398047447205, 0.14638200402259827, 0.909132719039917, 0.2205626368522644, 0.4843141436576843, -0.9708303213119507, 1.062524437904358, 0.39172542095184326, 0.6860076189041138, -0.1557941436767578, 0.12749359011650085, -0.7263664603233337, 0.07595659047365189, -0.09400331974029541, 0.38843628764152527, -0.43714237213134766, 0.4772571921348572, 0.3740270435810089, 0.11846955865621567, -0.06565359234809875, 0.2757611572742462, 0.3180529475212097, 0.30134886503219604, 1.1725621223449707, -0.23495081067085266, -0.46886464953422546, 0.9077728986740112, 0.7650104761123657, -0.539999783039093, 0.0865681916475296, 0.15995436906814575, 0.2931673526763916, -0.14955642819404602, 0.10031243413686752, 0.19093066453933716, -0.45688819885253906, -0.044819675385951996, 0.6634995937347412, -0.44018590450286865, 0.027487505227327347, -0.8371676206588745, -1.6634535789489746, 0.2060888409614563, -0.36305999755859375, 0.2733883261680603, 0.8881661891937256, -0.7820475101470947, -0.1702694296836853, -0.6630890369415283, 0.3582828640937805, 0.12077340483665466, -1.0721865892410278, 0.608366072177887, 0.0998215526342392, -0.3702477812767029, -0.1279277801513672, -0.47879379987716675, 1.1295924186706543, -0.3662370443344116, 0.043314047157764435, -0.31110939383506775, 0.2599954903125763, 0.2987222671508789, 0.2030002772808075, 0.1916494518518448, -0.5085486769676208, -0.19988512992858887, -0.6774188280105591, -0.20637738704681396, 0.1909770965576172, 1.1630628108978271, -0.3309635519981384, -0.02544458582997322, -0.8699451684951782, -0.08878341317176819, 0.7580106854438782, 0.24058598279953003, -0.8054159879684448, -0.2713873088359833, 0.047294095158576965, 0.6264299154281616, -0.6764236688613892, 0.7907983660697937, -0.543893039226532, 0.684739887714386, 0.03565853834152222, -0.11191415786743164, -0.42056602239608765, -0.3966790437698364, 0.8080539703369141, -0.33612072467803955, 0.37797799706459045, -0.598048746585846, -0.3959461450576782, -0.2579761743545532, -0.9390881061553955, -0.24000877141952515, -0.19368046522140503, -0.5634862184524536, 0.4938449263572693, -1.2460482120513916, -0.7701342701911926, -0.3562072217464447, -0.3358110785484314, -0.12491467595100403, -0.6309749484062195, -0.4807397127151489, -0.11298936605453491, -0.969356894493103, 0.8233470916748047, 0.6204996109008789, 0.24276065826416016, 0.5169926881790161, 0.985824465751648, 1.7662012577056885, 0.45996344089508057, -0.4410243034362793, -0.03032839670777321, 0.7596200704574585, -1.0449469089508057, -0.30309000611305237, -0.3631609082221985, 0.03726619854569435, -0.3700915575027466], [0.9477852582931519, 1.079688549041748, -1.4595613479614258, -1.2386667728424072, -0.32584211230278015, -0.20128099620342255, 0.8490021228790283, 0.5778640508651733, -0.14243924617767334, -1.6150861978530884, -1.597521424293518, 0.23218876123428345, 0.03558065742254257, 1.0864781141281128, 1.2790803909301758, 0.7936580777168274, 0.9627972841262817, -0.258148193359375, 0.372501939535141, 0.9519468545913696, 0.7670096755027771, -0.3965272605419159, 0.12999212741851807, -0.6016992926597595, 0.8159844279289246, 0.7338755130767822, -1.125146746635437, -0.2071416676044464, -1.2245314121246338, -0.921791672706604, 1.1895802021026611, 0.25719526410102844, 0.00999982375651598, -0.460231751203537, -1.6547726392745972, -0.45363402366638184, 1.310556173324585, 0.39534062147140503, -0.18443326652050018, 1.492158055305481, 1.4797258377075195, 0.4817458987236023, 0.47090771794319153, -1.2688872814178467, 0.2888059914112091, -0.02510586939752102, 0.5179056525230408, 0.01460434589534998, -0.4510017931461334, -1.5297791957855225, 0.5842390060424805, -0.45981380343437195, -0.6104798913002014, 0.9241690635681152, 1.0081186294555664, -0.5052444338798523, 0.14053016901016235, 0.7267609238624573, -0.29248544573783875, 0.5091347098350525, 0.9999474883079529, 0.4471150040626526, -0.6729046702384949, 0.2633502185344696, -0.18636633455753326, -0.10375813394784927, 0.19242577254772186, 0.575516402721405, -0.9862146377563477, 0.02047819085419178, -0.0592690072953701, 0.9238603115081787, -0.5368038415908813, 0.7605153322219849, -1.5809837579727173, -0.005311986431479454, 0.16590002179145813, 0.42153751850128174, 0.23311875760555267, 1.3254114389419556, -0.7357535362243652, -0.3520297110080719, -0.3196246922016144, -0.40516817569732666, 0.5459195375442505, 0.05020667240023613, 0.43975841999053955, -0.20628561079502106, -0.30409932136535645, 1.2459017038345337, -0.3669640123844147, 0.09815721213817596, 0.24119965732097626, -0.33344507217407227, -1.4635001420974731, -0.772419810295105, 0.2507951557636261, -0.5148624777793884, -0.5567689538002014, -0.8317113518714905, -0.4000674784183502, -0.9981921315193176, 1.1414076089859009, 1.129356861114502, 1.168272614479065, 1.8448004722595215, 0.6641336679458618, -1.4235607385635376, -0.7003311514854431, 0.3074815273284912, 0.42502278089523315, 0.9203801155090332, -0.6331733465194702, -1.3308117389678955, -0.24938781559467316, 0.7904008626937866, 0.6158655285835266, -0.7776223421096802, 1.0542258024215698, 1.1216771602630615, -0.7974596619606018, -0.5419742465019226, -0.8545941710472107, 0.6133824586868286, 1.4937856197357178, 0.11576177179813385, -0.6091732382774353, -0.041531916707754135, -0.25688114762306213, 0.0018651848658919334, 0.4513450264930725, -0.3833646774291992, -0.30643430352211, 0.7389364838600159, -0.2942938804626465, 1.0909521579742432, -0.3439757525920868, -0.8467685580253601, 0.7045785784721375, -0.13314926624298096, 0.3569629490375519, 0.0012291520833969116, -0.3261519968509674, -0.6613682508468628, 0.638010561466217, -0.7175014615058899, -0.02624335139989853, -0.3202807903289795, -0.7210361361503601, 0.31672507524490356, -1.3339215517044067, 0.07172676175832748, -0.04531910642981529, 1.4154579639434814, 0.131662517786026, 0.5882744789123535, 0.27783164381980896, 0.35823968052864075, -0.3177991211414337, 0.23561489582061768, 0.6033204197883606, 0.10447254776954651, -1.51560378074646, 1.1207547187805176, 0.3459574282169342, -0.4141674339771271, 0.7284725904464722, 0.7198094129562378, -0.372951477766037, 0.5713462829589844, -0.6445046067237854, -0.2724829614162445, -0.7554962635040283, 0.16781653463840485, -0.35842519998550415, -0.12459903210401535, 0.7873581051826477, -1.1704152822494507, -0.5205518007278442, -0.32169225811958313, 0.1669437289237976, -0.13332675397396088, 0.1092960461974144, -0.507477879524231, 0.6213277578353882, -0.5537348985671997, -0.6959259510040283, -0.6250086426734924, -0.09534107148647308, -0.279589980840683, -0.9977134466171265, 0.12125365436077118, -0.6320139765739441, 0.556229293346405, -0.3803100883960724, -1.6209626197814941, 0.21041284501552582, -0.6061681509017944, -0.6683065891265869, -0.22690173983573914, -0.31510141491889954, -0.4067170321941376, -1.0410813093185425, -0.2811107933521271, -1.12652587890625, 0.515489935874939, -0.7173571586608887, -0.28830835223197937, -1.3054852485656738, -0.05155254155397415, 0.8301775455474854, 0.022853251546621323, -0.7330101132392883, 1.1733622550964355, 0.5016756653785706, -0.5495136380195618, -0.1728687584400177, 0.12423597276210785, 0.09070565551519394, 0.305289089679718, 0.33636757731437683, -0.14590515196323395, 0.8815129995346069, 0.10619766265153885, 0.47088077664375305, 0.031871017068624496, -1.485890507698059, -0.13821928203105927, -0.911835253238678, -0.3638170659542084, -0.6939122676849365, -0.6047923564910889, 0.8955554366111755, 1.08303964138031, -1.3007628917694092, 1.006493091583252, -0.4899764060974121, 0.16754136979579926, 0.3470054268836975, 0.5193619132041931, 0.43965208530426025, 0.5387262105941772, -0.5647603273391724, 0.1365220993757248, -0.4176199436187744, 0.3644300103187561, 0.9096097350120544, -0.5637599229812622, -0.38805606961250305, 1.3567627668380737, -0.2313847839832306, -0.4094294309616089, 0.6751284599304199, -0.30286896228790283, 0.23929744958877563, -0.603875458240509, 0.18587978184223175, -0.461246132850647, -0.3078586459159851, 1.655214548110962, 0.024435317143797874, -1.3400081396102905, -0.2568844258785248, -0.5998146533966064, -0.09694837778806686, -0.6964589357376099, 0.30530238151550293, -0.05085369572043419, 0.5400192737579346, 0.2899268567562103, -0.25739333033561707, -0.41405126452445984, -0.12352946400642395, 1.0669561624526978, 0.1704350858926773, -0.2837277948856354, -0.7381231784820557, 0.5092437267303467, 0.13134482502937317, 0.4962688684463501, 0.05855421721935272, -1.8383616209030151, -0.5674553513526917, -0.33330264687538147, 0.5641853213310242, -0.30102744698524475, -0.8599077463150024, 0.2001563310623169, 0.4890984296798706, -0.6879605650901794, 0.5451614856719971, -0.13071320950984955, -0.9239628911018372, 0.2991470694541931, 0.2557458281517029, -0.6352624297142029, 0.4464682936668396, -0.17323100566864014, -0.9344847798347473, -0.10610567033290863, 0.27632904052734375, 1.0429279804229736, 0.6097506284713745, 0.8877009153366089, 0.12638498842716217, -0.2867199778556824, -0.03244774788618088, 0.05843643099069595, -0.23441120982170105, 0.2149379402399063, -0.3198181688785553, -0.38089945912361145, 0.023983370512723923, -0.5240033864974976, 0.11244867742061615, 0.7784721851348877, 0.25111037492752075, 0.8990999460220337, 0.48567259311676025, 0.3972434103488922, -0.556917667388916, -0.8452935218811035, 0.22351756691932678, -1.0319304466247559, -0.10233799368143082, 0.9868184924125671, -0.9646607637405396, 0.0020682583563029766, 0.2969142198562622, -0.41838204860687256, 0.27633237838745117, -0.6869748830795288, 0.5681002140045166, -0.6937069296836853, 0.28273800015449524, 0.4413009583950043, 1.2464118003845215, -0.11836003512144089, -0.33934730291366577, -0.8232027888298035, 0.8058381676673889, 0.23678971827030182, 0.08012058585882187, -0.496500164270401, 0.6003789901733398, -0.34169718623161316, -0.5941330194473267, -0.2835433781147003, 0.10009998083114624, 1.5265570878982544, 0.14680294692516327, -0.04209420830011368, -0.4779934287071228, 0.18004335463047028, -0.5478806495666504, 0.723042905330658, -0.14967601001262665, 1.4911545515060425, 0.337980180978775, 0.35073766112327576, 0.5839889049530029, -0.36461371183395386, 0.4015340805053711, -0.9092062711715698, 0.4885573983192444, 0.31921055912971497, 1.5606814622879028, 0.8503563404083252, -0.16962529718875885, 0.29068872332572937, -0.04040026664733887, -0.26769858598709106, 0.14386242628097534, 0.4679739475250244, -0.13377031683921814, -0.44254815578460693, -0.5399746298789978, 0.7526989579200745, -0.018784845247864723, -0.5718944668769836, -0.01760358177125454, 0.40859273076057434, 0.222865492105484, -0.570222020149231, 1.1725128889083862, -0.021743163466453552, 0.2588129937648773, -0.12182056158781052, -0.6711813807487488, 0.05432339757680893, -0.10142174363136292, -0.4904147684574127, -0.05576033517718315, 0.23695920407772064, 0.15478068590164185, -0.10800578445196152, -0.5567638278007507, 0.21946732699871063, 0.40876761078834534, 0.45305219292640686, -1.1443053483963013, -0.06035608425736427, 0.254732608795166, 0.116858571767807, 0.27882862091064453, 0.22857974469661713, 0.19572298228740692, 0.48004087805747986, -0.7086436748504639, 0.29499614238739014, 0.6639848351478577, 0.9553920030593872, -0.04321959614753723, 0.359296053647995, -0.5630204081535339, -0.29869627952575684, 0.37827059626579285, 0.033832281827926636, -0.5202877521514893, 0.07841689884662628, -0.715099573135376, 0.14174321293830872, 0.5890220403671265, -0.5401875972747803, 1.4003583192825317, -0.1623615026473999, 0.2828696072101593, 0.7981335520744324, -0.0778389722108841, -1.595787763595581, 0.20323407649993896, 0.17207513749599457, 0.13127629458904266, -0.16213983297348022, 0.42938339710235596, -0.16953834891319275, 0.3404008746147156, 0.47402822971343994, -0.053667496889829636, 0.6403346657752991, -0.13437792658805847, -0.47612008452415466, 0.06884798407554626, 0.7694358229637146, 0.7868460416793823, 0.8490781188011169, 1.2035778760910034, -0.6055784821510315, -1.1288235187530518, 1.2844927310943604, 0.2635805904865265, 1.146046757698059, 0.27759963274002075, 0.39843958616256714, 1.85221529006958, -0.9755811095237732, -0.2916281223297119, 0.3546069860458374, -0.42218342423439026, -0.5463458299636841, 0.6708208918571472, -0.0046092672273516655, -0.7241060137748718, -0.48362666368484497, 0.09328372031450272, -0.17021216452121735, 0.629985511302948, -0.08983369916677475, -0.12671853601932526, 0.603511393070221, -0.7464127540588379, -0.29310503602027893, -1.1304972171783447, 0.11728163808584213, 0.776236891746521, 0.07278591394424438, 0.11322696506977081, 0.8459293842315674, 0.6152268052101135, 1.2556744813919067, -0.45577695965766907, -2.070871591567993, 0.1250447779893875, -0.8274497985839844, 0.3993794023990631, -0.07381226867437363, -0.5909265875816345, -0.5976082682609558, -0.30755698680877686, 0.32985901832580566, -0.11779390275478363, -0.4352511465549469, -0.2144751101732254, 0.2720663249492645, -1.1699448823928833, 0.5258803963661194, -0.38633692264556885, 0.9928069114685059, 1.0307260751724243, 0.49835219979286194, -0.06485716998577118, 0.41321128606796265, -0.6172237992286682, 0.2943213880062103, -0.017109137028455734, -0.17956796288490295, 0.22137655317783356, -1.0190629959106445, -1.0693732500076294, 0.8993561863899231, 1.2211312055587769, 0.6557366847991943, 0.35675424337387085, 1.2493374347686768, 1.6456607580184937, -0.811186671257019, -0.48345082998275757, 0.3278365731239319, -0.626002311706543, 0.2122770994901657, -0.08537903428077698, -0.8763052225112915, -0.3335593640804291, 0.02387813664972782, -2.1232805252075195, 0.7972862124443054, 0.193034827709198, -0.6050485372543335, 0.21452604234218597, 0.5278292298316956, 0.8296419978141785, 0.77960604429245, -1.0212955474853516, -0.32301831245422363, 0.93083655834198, -0.7726626992225647, -1.1196726560592651, 0.6392509937286377, 0.28357166051864624, 0.8227710723876953, -0.3956387937068939, -0.38564714789390564, -0.3998662233352661, -0.15406794846057892, -0.21133190393447876, 0.11496998369693756, 1.3658281564712524, 0.7142276763916016, 0.5523536801338196, -1.3484536409378052, 0.37294450402259827, -0.23511335253715515, 1.0453497171401978, -0.25040575861930847, 1.3359524011611938, 0.6519157290458679, -0.0991753339767456, 0.16544656455516815, -0.32320815324783325, -1.0453888177871704, -0.5621708631515503, -0.7820272445678711, 0.9892421960830688, 0.7790927290916443, -0.18972259759902954, -0.12238480895757675, -0.39320501685142517, -0.053520698100328445, -0.030188411474227905, 0.2811641991138458, 0.5931476354598999, -1.056867003440857, -0.44763392210006714, 0.355058878660202, 0.2667497992515564, -0.05130196362733841, 0.7849457859992981, -0.14667284488677979, -0.6920680403709412, -1.3239399194717407, -0.40828433632850647, 0.1339103877544403, 0.6225118041038513, -0.39170512557029724, -0.021159883588552475, 0.1083545908331871, -1.924118995666504, 0.8129803538322449, -0.05557061359286308, -1.0132571458816528, -0.6318525075912476, -0.836906373500824, 1.2672054767608643, 0.7930297255516052, -0.3440117835998535, 0.4230395555496216, 0.3913167119026184, -0.8427724242210388, -0.1943359076976776, -1.4781715869903564, 0.10291692614555359, 0.22588638961315155, 1.2260268926620483, -0.5611780881881714, 0.380404531955719, -0.29395782947540283, -0.6001120805740356, -0.2048531174659729, -0.5247568488121033, -0.5535951852798462, 0.6343539953231812, 0.5176137685775757, 0.18049290776252747, 0.6659931540489197, 0.7486194968223572, 0.24053825438022614, 0.6830815076828003, -0.04050077870488167, 0.6090198755264282, -1.098781704902649, -0.5312203764915466, -0.5139312744140625, 0.23931509256362915, -0.8984869718551636, -0.8473355770111084, 0.10550101101398468, -0.48161745071411133, -0.8149431943893433, 0.6425657868385315, 0.7764503359794617, -0.41835081577301025, -0.3290398120880127, 0.3500162959098816, 0.03944075480103493, -1.2223687171936035, 0.941753625869751, 0.3422858715057373, -1.096305251121521, -0.3640361726284027, 0.2189064472913742, 0.107197105884552, -0.9987013339996338, -0.3106522560119629, -0.12770706415176392, -0.22363604605197906, -0.08406002819538116, 0.4085245728492737, 0.7024234533309937, 0.1416846364736557, -0.49400830268859863, 0.783930242061615, 1.275620937347412, 0.36799177527427673, 0.24400180578231812, 0.6625305414199829, -0.6779059767723083, 0.1565706580877304, 0.2753998041152954, -0.6561673283576965, -0.32668107748031616, 0.8662095665931702, -0.3656693398952484, -0.22510258853435516, -0.9188107848167419, 0.3243343234062195, -0.17265570163726807, -0.21404051780700684, 0.9067435264587402, 0.1527201235294342, -1.1154860258102417, 0.23599493503570557, 0.5549913644790649, -0.3113149106502533, 0.28798559308052063, 0.3369286060333252, 0.7026350498199463, 0.31502217054367065, 0.04871584475040436, 0.47650328278541565, -0.3272596001625061, 0.7949616312980652, 0.3234608471393585, -0.838925302028656, 0.0981895700097084, -0.9681620001792908, -1.9733129739761353, 0.061327047646045685, -0.08874193578958511, -0.8552324771881104, 0.30336907505989075, -1.1761001348495483, -0.1766965538263321, -0.7327426075935364, -0.43866103887557983, 0.1401074379682541, -1.3018463850021362, 0.30830666422843933, -0.1909337192773819, 0.3931412696838379, 1.2922714948654175, -0.16967609524726868, 0.8681868314743042, -0.044900041073560715, 0.04566986858844757, -0.0029867617413401604, 0.08638283610343933, -0.39785176515579224, 0.3676075339317322, -0.13050316274166107, -0.32229727506637573, -0.40448564291000366, -1.0289809703826904, -0.1498517543077469, 0.398771733045578, -0.10909808427095413, 0.24849960207939148, 0.4750511050224304, -1.1850563287734985, 0.11780884116888046, 0.6637563109397888, 0.7002655267715454, -0.2594855725765228, -0.15576307475566864, -0.258654922246933, 0.5391717553138733, 0.30449187755584717, 1.4741883277893066, -0.5884848237037659, 1.1477152109146118, 0.42256635427474976, 0.20446759462356567, -0.8793855309486389, 0.2015637308359146, 1.0038467645645142, -0.3526609241962433, 0.25567033886909485, -0.6482823491096497, -0.32846665382385254, -0.12362869828939438, -0.464935302734375, -0.021452130749821663, -0.1193297803401947, -1.3921781778335571, 0.05894986167550087, -0.019871026277542114, -1.1935940980911255, -0.302516371011734, -0.4467175006866455, -0.07660675793886185, -0.42313894629478455, 0.6079434156417847, -0.34068241715431213, -0.8162238597869873, 0.7501230835914612, 0.04582643508911133, -0.23462630808353424, 0.31003159284591675, 1.526546835899353, 1.5178972482681274, 0.6839640140533447, -0.4113892614841461, -0.1139773279428482, 0.8352926969528198, -0.9711301326751709, -0.44743964076042175, -0.463695764541626, 0.018752850592136383, 0.04541809856891632], [0.762101411819458, 1.8274277448654175, -2.4056239128112793, -0.01657646894454956, -0.3720317780971527, 0.024778958410024643, 0.8319790363311768, 1.104480266571045, 0.5386694669723511, 0.19837793707847595, -1.3918471336364746, 0.09573298692703247, 0.7723987102508545, 0.3396211266517639, 0.3666367530822754, 0.7713583707809448, 0.5268691182136536, 0.7146393060684204, 0.2351725846529007, 0.3470538556575775, -0.987112283706665, -0.6265119314193726, -0.07285456359386444, -0.06309771537780762, 0.5276895761489868, 0.4947044849395752, -1.6127886772155762, -0.12149167060852051, -1.814675211906433, -0.40993645787239075, 0.08607395738363266, -1.0237996578216553, 0.7109869122505188, -0.40427693724632263, -1.2458415031433105, 0.4145132005214691, 1.8584377765655518, 0.44663259387016296, 0.45870107412338257, 0.10531150549650192, 1.829325795173645, -0.2301410734653473, -0.9581325054168701, -0.6343995332717896, 0.5033820867538452, 0.3487538695335388, 0.6116007566452026, -1.4270644187927246, 0.006092049181461334, 0.04572930186986923, 0.3864870071411133, 0.6066898107528687, 0.0694044977426529, 1.8529895544052124, 1.3884193897247314, -0.9592874050140381, -0.4549926817417145, 0.04991737753152847, 0.870720386505127, 0.411157488822937, 1.4355792999267578, 0.12320659309625626, 0.1331380009651184, 1.121838092803955, 0.8133099675178528, -0.23518285155296326, 0.873245358467102, 0.5739808082580566, -0.02938007563352585, -0.4567452073097229, 0.24612891674041748, 0.339080274105072, -1.1542487144470215, -0.18186546862125397, -0.9316514730453491, 0.2686501443386078, 0.37723278999328613, 0.9578575491905212, -0.6552020311355591, 0.890354573726654, -1.0182812213897705, -0.030501235276460648, -0.12902387976646423, 0.025941476225852966, 0.3825158476829529, 0.31256935000419617, 1.018174171447754, -0.546427845954895, -0.09556572884321213, 1.5197079181671143, -0.12752285599708557, 0.8047555685043335, 0.44623643159866333, 1.0422039031982422, -0.13372765481472015, -0.39703941345214844, 0.031620752066373825, -0.47131121158599854, -0.4241124391555786, -1.1615203619003296, -0.27428901195526123, -0.7950805425643921, 0.2845209836959839, 0.643740177154541, 1.5706629753112793, 0.9852830171585083, 0.13231369853019714, -1.1691570281982422, -0.20006750524044037, 0.05602358281612396, 0.0031491145491600037, 0.2195400595664978, -0.08141674101352692, -1.5165003538131714, -0.7056926488876343, 0.7908901572227478, 0.5921682119369507, -0.4578353762626648, -0.15137214958667755, 0.7609503269195557, -1.2553014755249023, 0.5838127136230469, 0.19874592125415802, 0.5990109443664551, -0.14510560035705566, 0.8062642216682434, 0.08655266463756561, 0.16726934909820557, 0.8097652196884155, 0.7957988977432251, 0.7229299545288086, -0.22357048094272614, -0.5346086025238037, 1.124468445777893, -0.8998372554779053, 1.606290578842163, -0.4149666130542755, -1.3303346633911133, -0.9246233105659485, 0.2778469920158386, 1.0226588249206543, -0.8046907782554626, -0.2887651026248932, -0.18183746933937073, -0.7292255759239197, -0.7712135910987854, 0.24903038144111633, -0.3971962332725525, -0.8232054114341736, 0.1730469912290573, -1.4278099536895752, 0.6227583885192871, -0.3400219976902008, 1.4348658323287964, 0.48268604278564453, 0.11620976030826569, 1.0227859020233154, -0.16356581449508667, 0.16701024770736694, 0.5349975824356079, 0.057623352855443954, -0.5203562378883362, -0.3915148973464966, 0.7818917036056519, 0.20188255608081818, -0.4125819802284241, -0.01348620280623436, 0.272935152053833, -0.10124144703149796, 1.253814697265625, -0.553770899772644, -0.3168622851371765, -0.49876517057418823, -0.11354079097509384, 0.2751161456108093, -0.5475406646728516, 0.1435067355632782, -0.4269710183143616, -1.0699135065078735, -1.0364668369293213, 1.233769178390503, -0.297183632850647, 1.0588210821151733, 0.2831735908985138, 0.9072046279907227, 0.5655326843261719, -0.6142265200614929, -0.12145187705755234, -0.27551913261413574, -0.6750127077102661, -0.6453620791435242, -0.31599438190460205, -0.6508058309555054, 0.057190969586372375, -0.6971714496612549, -0.3893274664878845, 0.7430187463760376, -0.496425986289978, -0.805662989616394, 0.14792248606681824, 0.1996818333864212, -0.19343259930610657, -1.1194250583648682, -0.43873438239097595, 0.6656457781791687, 1.3174397945404053, -1.4812806844711304, -0.018919821828603745, -0.7307933568954468, 0.7893792986869812, 1.1266847848892212, -0.35614076256752014, -0.835915744304657, 0.6651085615158081, 0.3987995386123657, -0.8818761706352234, 0.23266810178756714, -0.5675883293151855, 0.6675239205360413, -0.10954621434211731, 0.1740604043006897, 0.26183822751045227, 1.044028878211975, 0.623559296131134, 0.7369357347488403, -0.14568638801574707, -0.8799045085906982, -0.8083065152168274, -0.9754167795181274, -0.15615148842334747, -0.7795140743255615, -1.1593247652053833, 0.7060129642486572, 0.5812996625900269, -0.45314306020736694, 0.9340915679931641, 0.6577383875846863, 0.32112646102905273, 0.04399195313453674, 0.6350042223930359, 0.18211987614631653, 0.1929585039615631, -0.5521471500396729, -1.3567211627960205, -0.47024673223495483, 0.4441385865211487, 0.5377267003059387, -0.5915603637695312, 0.02901267632842064, 0.9603269100189209, 1.3474726676940918, 0.392147958278656, 1.3131003379821777, 0.7751193046569824, -0.5612889528274536, -0.8877605199813843, -0.2462906837463379, 0.3327942192554474, -0.46659237146377563, 1.5848546028137207, 1.170198917388916, -0.7122663855552673, -0.47576195001602173, 0.13703802227973938, -0.2707923352718353, -0.0615973062813282, 0.6206033229827881, -0.9678013920783997, 0.31654036045074463, 0.4169330596923828, 0.8267293572425842, 1.1491115093231201, -0.21842992305755615, 0.4950914978981018, -0.13963103294372559, -0.7465086579322815, -0.10345843434333801, 0.2747856378555298, -0.21997563540935516, 1.1774147748947144, 0.3619729280471802, -0.9261259436607361, -0.6345100998878479, -0.21880173683166504, 0.555034875869751, -0.146389901638031, -0.01679064705967903, 1.1563620567321777, 0.7298684120178223, 0.08817266672849655, -0.11584839969873428, 1.0261034965515137, -0.24605657160282135, -0.12130404263734818, 0.0004920102655887604, 0.21069282293319702, 0.5895137190818787, -0.701583206653595, -0.8639422059059143, 0.27573662996292114, 0.14446212351322174, 0.9829643368721008, 1.484283447265625, 1.6368813514709473, -1.0930052995681763, -0.14129428565502167, -0.4015581011772156, -0.6236386299133301, -0.8180240392684937, -0.08511653542518616, -0.1727038472890854, -0.9210790991783142, 0.24439913034439087, -0.6818745136260986, -0.2837531864643097, -0.07751843333244324, 0.5159282088279724, -0.31964725255966187, 1.4323549270629883, -0.06106002256274223, 0.36514267325401306, -0.11114057153463364, -0.3368188440799713, -1.5553348064422607, 0.4284117519855499, 0.7838473320007324, -2.1782889366149902, -0.7837530970573425, -0.22097183763980865, 0.07988578081130981, 0.07287532091140747, -0.1459171026945114, 0.47815942764282227, -1.0405571460723877, -0.7543790340423584, 0.14530198276042938, 1.1916160583496094, 0.30926433205604553, -0.32449859380722046, -0.7492880821228027, -0.08231380581855774, 0.08940233290195465, 0.04797956347465515, -0.8470120429992676, -0.009184155613183975, -0.2828281819820404, -0.41575461626052856, -0.6413029432296753, 0.4577629268169403, 0.9095066785812378, -0.9064154028892517, -0.42200952768325806, 0.5011296272277832, -0.2281360626220703, -0.6948400735855103, 0.5811464786529541, -0.2811795175075531, 0.968384325504303, 0.06794463098049164, 0.3492083251476288, 1.2552212476730347, -1.0596890449523926, -0.18058447539806366, -0.9788059592247009, 0.4208204746246338, 0.477111279964447, 2.1380372047424316, -0.34422022104263306, 0.36666274070739746, 0.2922605872154236, -0.5161432027816772, -0.07625904679298401, -0.3337750732898712, 0.7322386503219604, 0.24448052048683167, -0.2049981653690338, -0.17565907537937164, -1.3360084295272827, -0.38754409551620483, -0.8815701603889465, -0.12519264221191406, 0.10466001182794571, 0.6189459562301636, 0.39287465810775757, 0.4438934028148651, 0.6651009917259216, -0.7556310296058655, -0.1770780384540558, -0.16087430715560913, 0.03292255103588104, -0.38012751936912537, -0.2193162441253662, 0.17605990171432495, -0.13058973848819733, 0.39862361550331116, -0.9759349822998047, 0.5905098915100098, 0.48547422885894775, -0.23430532217025757, 1.0126465559005737, -1.2682554721832275, 0.023569822311401367, -0.9739122986793518, 0.10155080258846283, 0.5736994743347168, 0.15863420069217682, -0.34898024797439575, 0.20674371719360352, -0.4186015725135803, -0.3605119287967682, -0.6611683964729309, 1.1929419040679932, 0.23019328713417053, -0.25760316848754883, -0.9273003339767456, 0.39329439401626587, 0.7445461750030518, -0.8636776208877563, 0.07354776561260223, -0.07775913178920746, -0.42821305990219116, -0.12529587745666504, 0.2717592418193817, 0.3001350164413452, 1.728942632675171, 0.5012048482894897, 0.16472773253917694, 0.5982552766799927, -0.42185890674591064, -0.553373396396637, 0.009612701833248138, 0.8354765176773071, -0.5221210718154907, -0.10865742713212967, 0.16984418034553528, 0.39417916536331177, -0.43411362171173096, 0.17423740029335022, -0.07176376134157181, -0.0189657062292099, 0.17061148583889008, -0.2800813615322113, 0.2757706642150879, 0.475130558013916, 1.4917306900024414, -0.4597383737564087, 0.725100040435791, 0.06676002591848373, -0.5343332290649414, 0.5776636600494385, -0.840045154094696, 0.09237934648990631, 0.9137173891067505, 0.05715616047382355, 1.2259912490844727, -1.6394257545471191, -0.6447188258171082, 1.026118516921997, 1.1289228200912476, -0.007079429924488068, 0.5831974744796753, 0.9679818749427795, -0.5106897354125977, 0.4840030074119568, 0.37298503518104553, -0.5871356725692749, 0.8259764909744263, -0.20393474400043488, -0.14737068116664886, 0.1834786832332611, -0.17608994245529175, 0.2943217158317566, -1.1230101585388184, -0.7041009664535522, 0.8900028467178345, -0.6154484152793884, -0.06885173916816711, 0.19714899361133575, -0.1735183298587799, 0.9115549325942993, -0.25181522965431213, -1.5700287818908691, 0.21414873003959656, -0.56802898645401, -0.12174274772405624, -0.36274245381355286, -0.6204555034637451, -0.6697462797164917, -0.2107320874929428, -0.887438178062439, -0.6900818943977356, -1.3639768362045288, -0.14766521751880646, 0.07500597834587097, -1.1544702053070068, 0.0008186474442481995, 0.5091666579246521, 0.6437415480613708, 0.6127727031707764, 0.09272850304841995, -0.2839384078979492, 0.3783283233642578, -0.4739361107349396, 0.0646352469921112, 1.00138258934021, -0.05651375651359558, -0.5386796593666077, -0.1387937217950821, -1.0110211372375488, 1.9719613790512085, -0.0500873401761055, -0.12402172386646271, 0.20685669779777527, 0.7164819240570068, 1.4370120763778687, -0.38036543130874634, -0.4615187346935272, 0.915004312992096, -0.469022274017334, 1.328183889389038, 1.1189509630203247, -0.6002329587936401, -0.6892812252044678, -0.4183503985404968, -1.324220061302185, 1.456129789352417, 0.02406376600265503, -0.3374815583229065, 0.9174772500991821, 0.6117684245109558, -0.054302286356687546, 0.34806644916534424, -0.35289132595062256, -0.10589548200368881, 0.2574504017829895, 0.21485966444015503, -0.8428534269332886, 0.11444001644849777, 0.5326775908470154, 0.11563003063201904, -0.4203419089317322, 0.17608679831027985, 0.105682872235775, 0.10976450890302658, -0.7195164561271667, 0.25607678294181824, -0.4644920229911804, -0.022034987807273865, 0.2587535083293915, -0.123850978910923, -0.32707029581069946, -0.24961577355861664, -0.21963293850421906, -0.09058093279600143, 0.4571494460105896, 0.4230044484138489, -0.3323912024497986, 0.16657495498657227, -0.43468064069747925, -0.3012220859527588, -0.038484930992126465, -0.23349356651306152, 1.554710030555725, 0.5382276773452759, -0.3447449803352356, -0.36002346873283386, 0.03444096818566322, -0.5661222338676453, -0.6696724891662598, -0.37277835607528687, 0.21138504147529602, -1.0472261905670166, -0.48714888095855713, -0.26291805505752563, -0.31156039237976074, 0.3840823769569397, -0.15024706721305847, -0.048603709787130356, -0.5180923938751221, -1.0900695323944092, -0.7817627191543579, 0.5081498622894287, 0.1680099070072174, -0.7181854844093323, 0.3310077488422394, 0.059989288449287415, -1.502806305885315, 0.23789647221565247, 0.3181033134460449, -1.4538650512695312, 0.12966220080852509, -1.19956374168396, -0.3603562116622925, -0.23508432507514954, -0.024564821273088455, -1.1185874938964844, 0.7036104202270508, -1.1661502122879028, -1.7242696285247803, -0.7365450859069824, 0.3091743588447571, 1.1838581562042236, 0.7822120785713196, -1.4552749395370483, 1.4867992401123047, -0.588632345199585, -0.642096996307373, -0.5065166354179382, 0.012208599597215652, -0.2715626358985901, -0.298423707485199, 0.26182180643081665, -0.3082523047924042, 0.8914090394973755, 0.9160417914390564, 0.7041507959365845, 0.9656260013580322, 0.3784191906452179, 0.8849025368690491, -1.27680242061615, -0.4852699935436249, 0.06284119188785553, -0.04111041501164436, -1.1925089359283447, 0.19953782856464386, -0.3810656666755676, -0.3626566529273987, -0.8508110046386719, 1.2282211780548096, 0.315395325422287, -1.0907044410705566, 0.31210407614707947, -0.6246778964996338, 0.15470489859580994, -0.5131792426109314, 0.4759027659893036, 0.1547955870628357, -0.6186058521270752, 0.5924944281578064, 0.6299099922180176, -0.00015410780906677246, -0.334250807762146, 0.41950225830078125, -0.6750616431236267, 0.6405531167984009, -0.08769334852695465, 0.2725745439529419, -0.030734702944755554, 0.04259325563907623, -1.0507922172546387, 1.3377165794372559, 0.37077265977859497, 0.4682449400424957, 0.18629512190818787, -0.07982639223337173, -1.0220117568969727, 0.07561127841472626, -0.6015182733535767, 0.19293469190597534, -0.8646039366722107, 0.782347559928894, 0.4571463465690613, 0.22379854321479797, 0.23492766916751862, 0.730098307132721, -0.096644327044487, -0.0216834619641304, 0.8495962619781494, 0.3721695840358734, -0.8634331822395325, 1.3359906673431396, 1.2486352920532227, -0.7850334644317627, 0.5527004599571228, 0.18126721680164337, 0.18628254532814026, -0.44094759225845337, 0.3388088643550873, 0.5567024946212769, -0.4881722033023834, 0.6239312887191772, 0.5772297382354736, -0.6570819020271301, -0.11090242862701416, -0.4862772226333618, -2.0292446613311768, -0.2614094316959381, -0.4727657437324524, 0.7199041843414307, 0.6885002851486206, -0.5217081308364868, -0.2066464126110077, -0.6132776737213135, 0.17203360795974731, 0.22749945521354675, -0.6779252290725708, 0.1443449705839157, 0.06890026479959488, 0.7098323702812195, 0.5353447198867798, -0.7560495138168335, 0.5858542919158936, -0.4238188564777374, -0.8421434164047241, -0.49228888750076294, -0.0854080319404602, 1.1084208488464355, 0.5421751737594604, -0.30797821283340454, -0.05242873355746269, 0.4321105480194092, -1.2002179622650146, -1.0087180137634277, 0.07652956992387772, 0.8282773494720459, 0.43216001987457275, -0.2807505428791046, -0.7567939162254333, -0.04897915571928024, 0.7357950806617737, 0.31831490993499756, -0.7501158118247986, -0.4546671509742737, -1.1349163055419922, -0.1869489997625351, -0.2868664264678955, 0.6103302240371704, -0.8957734704017639, 0.6539777517318726, 0.23903410136699677, -0.486798495054245, -0.4667445421218872, -0.6470481157302856, 0.5751333236694336, 0.27806177735328674, 0.5340892672538757, -0.5631399154663086, -0.016833383589982986, 0.04070441424846649, -1.162530779838562, -0.8179304599761963, -0.13206130266189575, -0.33872532844543457, 0.4444003105163574, -1.0645880699157715, -0.5430161952972412, -0.722771406173706, -0.8222694396972656, 0.5473506450653076, 0.07553655654191971, -0.14178919792175293, -0.7364374399185181, -1.5279146432876587, 0.19877368211746216, 1.0510982275009155, 0.18583886325359344, 0.322974294424057, 1.020111083984375, 2.1853339672088623, 0.18893349170684814, -0.12032480537891388, 0.1200275719165802, 1.7268970012664795, -1.0526224374771118, 0.5361969470977783, -1.2670457363128662, 0.2542020082473755, -1.3056560754776], [-0.044416941702365875, 1.402078628540039, -2.1044273376464844, -0.5751803517341614, 0.937399685382843, 0.5377804636955261, 1.1635857820510864, -0.5951124429702759, -0.20127534866333008, -1.0722850561141968, -0.4094125032424927, -0.26667454838752747, 0.09839703142642975, 0.7631881833076477, 0.4673151969909668, 0.5306785106658936, 0.49050143361091614, -0.06190618872642517, 1.2788488864898682, 0.4677765667438507, -0.11954407393932343, -1.2324954271316528, 0.2534376382827759, -0.21570545434951782, -0.06821386516094208, 0.9183183312416077, -0.6897538900375366, -0.5990045666694641, -1.0413578748703003, -0.8887815475463867, 1.1081053018569946, -0.09156759828329086, -0.048293549567461014, -0.21083639562129974, -1.774829626083374, -0.7879432439804077, 1.2079535722732544, 0.6112561821937561, 0.20100431144237518, 0.67087721824646, 0.9761568903923035, 0.13960899412631989, 0.3890904188156128, -1.9786666631698608, 0.6392406225204468, -0.06167510151863098, 0.7141895294189453, -0.3255566954612732, 0.1653776317834854, -0.9034363031387329, 0.838537335395813, -0.8802545070648193, -0.059793438762426376, 1.2898439168930054, 1.1563773155212402, -0.9385828971862793, 0.13842163980007172, 0.703889012336731, 0.21646322309970856, 0.5371145009994507, 1.3306845426559448, -0.08250689506530762, 0.34213605523109436, 1.1351946592330933, 0.4447283446788788, -0.5871655344963074, 0.5824933052062988, 0.3825901448726654, -0.40209585428237915, 0.1529236137866974, 0.4195556640625, 0.3709208071231842, -0.4289121925830841, 0.4129824638366699, -1.1188958883285522, 0.5018109083175659, 0.015501728281378746, 0.9211567044258118, 0.007773702964186668, 0.9204725027084351, -1.415655493736267, 0.26863205432891846, 0.3584529757499695, -0.44087883830070496, -0.01630742847919464, 0.27709221839904785, 0.5186018943786621, -1.3774021863937378, 0.2641228437423706, 1.5119484663009644, 0.3732386827468872, -0.017975464463233948, 0.8525304198265076, -0.0610804557800293, -0.6695416569709778, -0.0656445324420929, 0.6111995577812195, -0.780052661895752, -0.4182969629764557, -0.7210943102836609, -0.3762964904308319, -0.5219188332557678, 0.37289711833000183, 0.7780442237854004, 0.7030501961708069, 1.4739928245544434, 0.8026324510574341, -0.6953709125518799, -0.7013683915138245, 0.5345568060874939, 0.4290313124656677, 0.9168300628662109, -0.7973065972328186, -1.8277637958526611, 0.07084958255290985, 1.0727769136428833, 1.1884177923202515, -0.23366156220436096, 0.7352898120880127, 0.5803743600845337, -0.6883097887039185, 0.020284513011574745, -0.07488586008548737, 0.15736153721809387, 0.9510090947151184, 0.22885742783546448, -1.2559577226638794, -0.3198770582675934, -0.5297157168388367, 0.05795867368578911, 0.051867250353097916, -0.7450546026229858, -0.4421796500682831, 1.0683461427688599, -0.3563646078109741, 1.3871995210647583, -0.5950978398323059, -0.42596572637557983, 0.16471128165721893, 0.23044627904891968, 0.3156585097312927, 0.13477765023708344, -0.4090591073036194, -0.01203947514295578, 0.028788354247808456, -0.804588258266449, -0.2644311487674713, 0.12513631582260132, -0.573696494102478, 0.6233339905738831, -1.5516018867492676, 0.34896114468574524, -0.6330293416976929, 1.2675631046295166, 0.5392600297927856, 0.30281195044517517, 0.613922655582428, -0.08545085787773132, 0.663864016532898, 0.3346075713634491, 0.7295199632644653, 0.2668069899082184, -1.3949730396270752, 0.4862120449542999, 0.3736444115638733, -0.7925489544868469, 0.6505952477455139, 0.7489773631095886, 0.24204151332378387, 0.4646972417831421, -0.6178117990493774, -0.19154228270053864, -0.2792834937572479, 0.30406874418258667, -0.048249635845422745, -0.6079807281494141, 0.8046802282333374, -0.10889249294996262, -1.3971679210662842, -1.7045847177505493, 0.5950488448143005, 0.013176130130887032, 0.04309837520122528, 0.3291095495223999, 0.8083045482635498, 0.26174986362457275, -0.4119787812232971, -0.015316197648644447, 0.016819478943943977, -1.0674653053283691, -0.7454851865768433, -0.4864177405834198, -0.8929452300071716, 0.4420503079891205, -0.49489906430244446, -0.5372951030731201, 0.45095619559288025, -0.13190028071403503, -0.08731527626514435, -0.09742825478315353, -0.8522457480430603, -0.9675421118736267, -1.144926905632019, 0.17437180876731873, -0.5184071660041809, 0.3083248734474182, -0.8491614460945129, 0.22992844879627228, -1.2479742765426636, 0.21547269821166992, 1.2807226181030273, 0.058582667261362076, -0.4344826936721802, 0.39499661326408386, -0.22967155277729034, -1.5037336349487305, 0.40812110900878906, 1.052208423614502, 0.0531281977891922, 0.31415504217147827, -0.18236325681209564, 0.2741188406944275, 0.8582251667976379, -0.4091895818710327, 1.0648363828659058, -0.3365202844142914, -1.0243147611618042, -0.5555379390716553, -0.5597243309020996, -0.3390186131000519, -1.1280755996704102, -1.3639311790466309, 0.05573968216776848, 0.49124717712402344, -1.9625942707061768, 0.23368535935878754, 0.6805025339126587, 0.5626250505447388, 0.6205450296401978, 1.6622130870819092, 0.6643199324607849, 0.9633110761642456, -0.7071590423583984, -0.11280830204486847, -0.7898626327514648, 0.025212008506059647, 0.6449944376945496, -0.9789050221443176, -0.16248762607574463, 0.8597478866577148, 0.6789675951004028, 0.1082460880279541, 1.0387721061706543, -0.7720965147018433, -0.31927213072776794, -0.605482816696167, -0.006399938836693764, -0.2712418735027313, 0.13777852058410645, 1.3605409860610962, 0.13134025037288666, -0.8385430574417114, 0.28443601727485657, -0.6256663799285889, 0.6213763952255249, -0.3827158212661743, 0.07805140316486359, 0.7872428297996521, 0.4928026795387268, 0.275836706161499, -0.06286284327507019, -0.37795403599739075, -0.49480947852134705, 1.246436595916748, -0.07226847857236862, -0.08141486346721649, -0.2145618051290512, 0.27434059977531433, -0.05888327956199646, 0.6872826218605042, -0.1352906972169876, -0.28388711810112, -1.6226588487625122, -0.14523962140083313, 0.09060405194759369, -0.2893370985984802, 0.24956834316253662, 1.0195488929748535, 0.539933443069458, -0.3532797694206238, 0.6074523329734802, -0.0952989012002945, 0.10229871422052383, 0.3134474754333496, 0.46941033005714417, -0.5433635711669922, 0.4815135896205902, -0.4496583342552185, -0.557758092880249, -0.7674725651741028, 0.23448191583156586, 1.8430041074752808, 0.8695045709609985, 1.3646984100341797, -0.49211400747299194, -0.2611118257045746, -0.026110516861081123, -0.3392760157585144, -0.9135829210281372, -0.6041941046714783, 0.3453706204891205, -0.18080663681030273, -0.5854396224021912, -1.2244876623153687, 0.6823505163192749, 0.6875934600830078, -7.525738328695297e-05, 1.0361957550048828, 0.3259107172489166, 0.16345131397247314, -0.7962639927864075, -0.6736337542533875, -0.3431941568851471, -1.2720447778701782, -0.1830618977546692, 1.196555495262146, -0.9641283750534058, -0.6531535983085632, 0.3009282946586609, -0.10465964674949646, 0.062458280473947525, -0.4629671573638916, 0.6853082180023193, -0.8842697143554688, -0.482924222946167, -0.4065365493297577, 1.7548667192459106, -0.13173240423202515, -0.26848772168159485, -0.36818230152130127, 1.1941726207733154, 0.29132306575775146, -0.2277919054031372, -0.15404821932315826, 0.25351041555404663, -0.5528118014335632, -0.4281257390975952, 0.18193526566028595, 0.3441208004951477, 0.48398280143737793, -0.6385772824287415, -0.9108831286430359, 0.005539761856198311, 0.4248200058937073, -0.7372708916664124, 0.5731465816497803, -0.5222831964492798, 0.9453089237213135, 0.6282860636711121, 0.35267505049705505, 0.16191807389259338, -0.47458821535110474, 0.027106793597340584, -1.4890053272247314, 0.6722936630249023, 0.4593076705932617, 1.2345292568206787, 1.076357364654541, -0.26315629482269287, 0.22206299006938934, -0.49018147587776184, 0.2840631902217865, 0.26683759689331055, 0.7327660918235779, -0.3486359715461731, -0.34564438462257385, 0.040152303874492645, -0.34210172295570374, 0.7411035895347595, -0.1598832607269287, 0.1799665242433548, 0.35067129135131836, -0.5963546633720398, -0.5441079139709473, 1.3977422714233398, 0.4392251670360565, 0.2281745821237564, -0.8279949426651001, -0.23219740390777588, 0.9369310736656189, -0.6521297097206116, -0.18103542923927307, -0.11943482607603073, 0.186629056930542, -0.11645528674125671, -0.449252724647522, -0.1015159860253334, 0.19368292391300201, 0.3029336631298065, 0.8812821507453918, -0.8393614888191223, -0.5066608190536499, -0.02316705323755741, 0.44363465905189514, 0.4801435172557831, 0.17985934019088745, 0.06910116970539093, 0.5626983642578125, -0.31538379192352295, 0.5841789245605469, 0.9278424382209778, 1.0892587900161743, 0.10640393197536469, -0.19018007814884186, 0.08403732627630234, -0.19006550312042236, 0.12339188158512115, -0.10685995221138, -0.5098809003829956, -0.04154783487319946, -0.533090353012085, 0.39194753766059875, -0.2861706018447876, -0.5692172646522522, 1.251650333404541, -0.18539445102214813, 0.11035978049039841, 0.16871170699596405, 0.3045724332332611, -0.9119853377342224, -0.014953173696994781, -0.05300378426909447, -0.6782175302505493, -0.1948852241039276, -0.34968438744544983, -0.6042516231536865, -0.17507857084274292, 0.5160726308822632, 0.3492030203342438, 0.8868139982223511, -0.5238142609596252, -0.10495352745056152, -0.19212675094604492, 0.5683580040931702, 0.5623717904090881, 1.5593655109405518, 0.9641308784484863, -0.024325767531991005, -1.6710721254348755, 0.9761072993278503, 0.1796172708272934, 0.570366621017456, 0.2982291877269745, -0.22637251019477844, 1.4007247686386108, -0.9531839489936829, 0.19427631795406342, 0.690990149974823, 0.24069352447986603, -0.46889179944992065, 0.595853328704834, -0.3794657588005066, -0.44467681646347046, 0.054475389420986176, 0.5628691911697388, 0.22113493084907532, 0.19415895640850067, 0.20309904217720032, 0.2980792820453644, 0.4020068943500519, -0.5604016184806824, 0.5857418775558472, -1.0299540758132935, -0.4043668508529663, 0.20931437611579895, -0.053215429186820984, 0.3620953857898712, 1.1426080465316772, 0.39168956875801086, 1.1203868389129639, 0.0364224836230278, -1.4785677194595337, -0.36651650071144104, -0.4754094183444977, 0.351588636636734, -0.6013376712799072, -0.2816106975078583, -0.6153092384338379, -0.15963760018348694, -0.2791922688484192, 0.0005451012402772903, 0.26380956172943115, -0.3057316839694977, -0.47574394941329956, -1.4053184986114502, 0.5821470022201538, 0.517678439617157, 0.772447407245636, 0.22406497597694397, -0.11446995288133621, -0.3570012152194977, -0.09574105590581894, -0.9226447343826294, 0.23347757756710052, -0.13882635533809662, 0.04444823041558266, 0.15969090163707733, -1.320959448814392, -0.7234352231025696, 0.6750874519348145, 0.24664929509162903, 0.12417282909154892, -0.25109604001045227, 1.538688063621521, 1.1849652528762817, -0.5526554584503174, -0.28242817521095276, 0.7309940457344055, -0.8661783933639526, 0.5297197103500366, -0.32654017210006714, -0.40482595562934875, -0.44939813017845154, -0.19263093173503876, -1.9263606071472168, 0.8765355348587036, -0.2766849398612976, -0.03346119076013565, 0.4769194424152374, 0.23345601558685303, 1.1203832626342773, 1.1810165643692017, -0.5686975717544556, 0.49938732385635376, 0.21406012773513794, -0.3017459511756897, -0.9241124987602234, 0.6727129220962524, 0.48438504338264465, 0.9963387846946716, -0.3056102693080902, -0.07761286944150925, -0.34820738434791565, -0.36981046199798584, -0.4363214373588562, -0.2938145697116852, 0.07501427084207535, 0.511756420135498, 0.5220009684562683, -0.27466532588005066, 1.0655338764190674, -0.5553305149078369, 0.22789786756038666, -0.3295741677284241, 0.9014621376991272, 0.45954498648643494, -0.06279753893613815, 0.42082643508911133, -0.6488525867462158, -0.21745935082435608, -0.6002092361450195, -0.5127614140510559, 0.5074313282966614, 1.3647516965866089, 0.3936319351196289, -0.5014240741729736, -0.9629132747650146, -0.19461287558078766, -0.5711473822593689, -0.0006628185510635376, 0.5665513873100281, -0.6923477053642273, -0.2901225686073303, 0.24926185607910156, 0.1053847223520279, -0.10752146691083908, 0.16154620051383972, -0.2361067235469818, -0.790973424911499, -1.254316806793213, -1.2919632196426392, -0.2765788733959198, 0.730676531791687, -0.3323654532432556, 0.9095617532730103, 0.23388101160526276, -1.4668869972229004, 0.8250917196273804, 0.20047567784786224, -1.6804964542388916, -0.5589976906776428, -0.5783993005752563, 1.222690224647522, 0.4497523605823517, 0.3297041356563568, 0.5968297719955444, 0.8392669558525085, -1.532357096672058, -0.8837911486625671, -0.9164702892303467, -0.5126408934593201, 0.7114959359169006, 0.32732445001602173, -1.3515228033065796, 0.8285483121871948, 0.48760199546813965, -0.5964936017990112, -0.6338737607002258, -0.3605274260044098, -1.1504671573638916, 0.004224175587296486, 0.3948376476764679, 0.075180783867836, 0.11847539991140366, 1.2121427059173584, 0.8445920944213867, 0.24041076004505157, -0.09362898766994476, 0.9736860394477844, -1.0760033130645752, -0.2553984224796295, -0.48080238699913025, 0.327483206987381, -1.0482970476150513, -1.1696546077728271, 0.2494489997625351, -0.5954972505569458, -0.8529770374298096, 0.7223266363143921, 1.1194740533828735, -1.1038074493408203, 0.49088096618652344, 0.06334243714809418, -0.12344810366630554, -1.880218267440796, 0.6596723794937134, -0.29157379269599915, -0.9603985548019409, -0.6547042727470398, 0.40917259454727173, 0.21706482768058777, -1.2592369318008423, 0.1419535130262375, -0.11371022462844849, -0.08684258908033371, -0.0674600675702095, 0.40368157625198364, 1.2514503002166748, 0.5888975858688354, -0.6911795735359192, 0.29414352774620056, 0.8137028813362122, -0.2950771749019623, -0.0989765077829361, 0.6513705849647522, -0.5109925270080566, 0.4285961985588074, 0.12616749107837677, -0.6559460759162903, -0.48558032512664795, 0.9427412152290344, 0.15103274583816528, 0.006050620228052139, 0.3641006350517273, 0.26445943117141724, 0.30660760402679443, -0.015192186459898949, 1.0691674947738647, -0.4623146057128906, -1.3946688175201416, 0.40905269980430603, 0.9947550296783447, -0.07667391002178192, -0.018950199708342552, 0.6497119665145874, 0.38912296295166016, 0.15719690918922424, 0.23639865219593048, -0.29088497161865234, -0.9340640306472778, 0.34830233454704285, 0.4151287376880646, 0.13145121932029724, -0.03394405543804169, -0.8913295865058899, -1.560900092124939, -0.08936385065317154, -1.2257578372955322, -0.024204490706324577, 0.14585544168949127, -0.7508996725082397, -1.5732682943344116, 0.018859265372157097, -0.2908936142921448, -0.02791270986199379, -0.5886101722717285, 0.3030117452144623, -0.023865852504968643, -0.5761330127716064, 0.4989162087440491, -0.1033472865819931, 1.371401071548462, -0.10972832888364792, -0.2476048618555069, -0.5061457753181458, -0.2326846420764923, 0.6293866634368896, -0.22567059099674225, 0.2231796234846115, -0.5927191972732544, 0.837131679058075, -0.9157205820083618, -0.2824017405509949, -0.18971416354179382, 0.18336135149002075, -0.11333727091550827, 0.7743070721626282, -0.6868599057197571, 0.3057585656642914, 0.8741434216499329, 0.3597508668899536, -0.6306324005126953, -0.18999935686588287, -0.5318303108215332, 0.3912307024002075, -0.29989001154899597, 1.2328815460205078, -0.15254338085651398, 0.9042124152183533, 0.9792290925979614, -0.30203959345817566, -0.5118998289108276, 0.19738158583641052, 0.914580762386322, -0.26755595207214355, 0.3967004418373108, 0.3061973452568054, 0.1567133218050003, -0.558241605758667, -0.607599675655365, 0.6482073068618774, -0.2026410698890686, -0.8589388132095337, 0.5440601110458374, -1.2092862129211426, -0.8026772141456604, -0.7221213579177856, -0.33440807461738586, -0.06153516843914986, -0.042402248829603195, 0.12536391615867615, -0.16215014457702637, -1.1820133924484253, 0.08321592211723328, 0.1484343707561493, -0.8830643892288208, 0.5652592778205872, 0.7463646531105042, 2.329296827316284, 0.6495596170425415, -0.32279807329177856, -0.5489091277122498, 0.2523348033428192, -0.7435396909713745, 0.3841293454170227, -0.3262218236923218, 0.1125044971704483, -0.6474377512931824], [0.10231846570968628, 1.0659829378128052, -2.1682400703430176, -0.33129939436912537, 0.3209768533706665, 0.45532742142677307, 0.8770010471343994, 0.5706318020820618, 0.405374139547348, -0.9323114156723022, -1.313124418258667, 0.4830459654331207, 0.9249844551086426, 0.3263990879058838, 0.2946232855319977, 0.5251953601837158, 0.49269387125968933, -0.5952733755111694, 0.8297678828239441, 0.3552466332912445, -1.1429009437561035, -0.9356111288070679, 0.07489956170320511, -0.33883136510849, 0.03423900902271271, 0.4557921886444092, -0.9324043989181519, -0.9979634881019592, -1.4103879928588867, -0.0914892852306366, 0.3495200574398041, -0.6778118014335632, 0.155171200633049, -0.022704096511006355, -0.9266040325164795, 0.07065974175930023, 0.8601217269897461, -0.02931276522576809, -0.06395316869020462, 0.7652401924133301, 1.8470056056976318, -0.5812004804611206, 0.27128100395202637, -1.03751540184021, 0.6289132237434387, 0.13285380601882935, -0.01802481897175312, -0.41060540080070496, 0.6342703700065613, -0.2270466685295105, 0.9746413230895996, -0.5870822668075562, -0.17095118761062622, 1.0599764585494995, 1.1368530988693237, -0.5628495812416077, -0.17136846482753754, 0.6610867381095886, -0.02865487150847912, 0.29744020104408264, 1.0006452798843384, 0.3632409870624542, -0.3974243104457855, 0.8607131242752075, 0.6125075817108154, -0.21258407831192017, 0.1570136994123459, 0.4972154498100281, -0.4526255428791046, -0.07555914670228958, 0.5421399474143982, 0.2972063422203064, -0.8923390507698059, 0.2597699761390686, -0.7489974498748779, -0.19245938956737518, -0.02537437714636326, 0.5878583192825317, 0.5624841451644897, 1.1647802591323853, -0.5969042181968689, 0.09717773646116257, 0.6001951694488525, -0.19123850762844086, 0.14687758684158325, 0.3986470699310303, 0.4181042015552521, 0.03464614227414131, -0.7122012376785278, 1.5718038082122803, 0.2584656774997711, 0.3547275960445404, -0.025239083915948868, -0.23318436741828918, -0.6992363929748535, -0.384457528591156, 0.02751469798386097, -0.8576423525810242, 0.190452441573143, -1.2767711877822876, -0.20215079188346863, -1.1046861410140991, 0.7753300070762634, 0.9903930425643921, 0.8875487446784973, 1.1325366497039795, 0.7555757761001587, -1.0730760097503662, -0.022369422018527985, -0.3248979151248932, 0.6104768514633179, 0.4167401194572449, -0.6737470626831055, -1.0004745721817017, -0.4795008599758148, 0.7286986708641052, 1.077257752418518, -0.587882936000824, 0.5800970792770386, 0.5062273144721985, -0.5214924216270447, -0.05804259702563286, -0.5228179097175598, 1.0581892728805542, 0.9136543869972229, 0.8513570427894592, -0.4959871172904968, -0.2529863119125366, 0.10209362208843231, 0.011967492289841175, -0.4561743438243866, -0.12844109535217285, -0.5628744959831238, 1.059421420097351, -0.25337764620780945, 1.6568615436553955, -0.2958360016345978, -0.6483516693115234, 0.24640856683254242, -0.04864031821489334, 0.5732844471931458, 0.06101341173052788, -0.9325271248817444, -0.2502155900001526, -0.18218860030174255, -0.7293974757194519, 0.16617174446582794, -0.18278776109218597, -0.45789071917533875, 0.26021644473075867, -1.3024137020111084, 0.48892053961753845, -0.7733827829360962, 1.2297933101654053, 0.21235382556915283, -0.008066585287451744, 0.8803772330284119, 0.0037546390667557716, 0.17065764963626862, 0.5225971341133118, 0.7883098721504211, -0.17839114367961884, -0.7053188681602478, 1.1352145671844482, 0.01542922668159008, -0.4688056707382202, 0.29472967982292175, 0.4334350526332855, -0.06535112857818604, 0.40660783648490906, 0.16312386095523834, 0.07943543791770935, -0.044019050896167755, 0.3471578359603882, -0.2200697958469391, -1.1575427055358887, 0.41276612877845764, -0.6459521651268005, -1.4046210050582886, -1.5755198001861572, 0.5713626742362976, -0.16638943552970886, 0.3401279151439667, -0.15411430597305298, 0.6391913890838623, -0.28667381405830383, -0.3859771490097046, 0.03271142393350601, -0.10956935584545135, -0.763965904712677, -0.8186301589012146, -0.4519422948360443, -0.871889054775238, 0.2746366262435913, -0.8471947312355042, -0.9153027534484863, 0.7712245583534241, 0.02628072164952755, -0.4050903022289276, -0.49256300926208496, -0.4583922326564789, -0.5020535588264465, -1.820373773574829, 0.024592315778136253, -0.6868930459022522, 1.5392324924468994, -0.40678343176841736, 0.372230589389801, -1.0611748695373535, 0.4929890036582947, 0.8997527360916138, -0.2878718674182892, -1.2753450870513916, -0.0531785786151886, 0.077097587287426, -0.4155494272708893, -0.24561449885368347, 0.26047295331954956, 0.06227713078260422, 0.6873406767845154, 0.1242678165435791, 0.2957139015197754, 0.32234323024749756, -0.42472293972969055, 0.8951354622840881, -0.3092218041419983, -0.8821630477905273, -0.7016598582267761, -0.8831051588058472, 0.08581787347793579, -0.5311516523361206, -1.3095921277999878, 0.2685120701789856, 0.41865652799606323, -0.9387242794036865, 1.0082529783248901, 0.38706356287002563, 0.27884408831596375, 0.2308167666196823, 0.38125982880592346, 0.2960532009601593, 0.7696126103401184, -0.9484925270080566, -0.3377460539340973, -0.07428505271673203, -0.006398544646799564, 0.4777834415435791, -0.6091687083244324, -0.4950910210609436, 1.486143946647644, 1.1639573574066162, -0.2961326539516449, 0.9370927214622498, 0.08406482636928558, -0.3165017068386078, -0.7313705086708069, 0.07616059482097626, 0.010594666004180908, -0.48202750086784363, 1.136252760887146, 0.8145649433135986, -1.2046138048171997, -0.3258589208126068, -0.07589883357286453, -0.25087952613830566, -0.492736279964447, -0.36022064089775085, -0.6817397475242615, 1.0527338981628418, 0.07994964718818665, -0.13020826876163483, 0.008484813384711742, -0.6042671799659729, 0.770729124546051, 0.012712228111922741, 0.06607689708471298, -0.7489562034606934, 0.3639538586139679, -0.3355691134929657, 0.67885422706604, -0.023780284449458122, -1.2299585342407227, -0.7351587414741516, 0.01798960566520691, 0.6716556549072266, 0.4613363742828369, 0.4706447124481201, 1.0437787771224976, 0.9757965803146362, -0.24446174502372742, 0.01043689250946045, -0.3891716003417969, 0.053843904286623, 1.0151010751724243, 0.27677083015441895, -0.1427791267633438, 0.6264241933822632, -0.1381281167268753, -0.7853248119354248, -0.6286437511444092, 0.19790175557136536, 0.8888104557991028, 1.2809594869613647, 0.4844275116920471, -1.035516619682312, -0.3356713354587555, -0.307262659072876, 0.3139493465423584, -0.49372607469558716, -0.8229315876960754, -0.7269675731658936, -0.5352737307548523, -0.28235137462615967, 0.04297490417957306, -0.06319069117307663, 1.099464774131775, 0.0005694061983376741, 0.5027269721031189, 0.7135552763938904, 0.09378576278686523, -0.28631603717803955, -0.20254486799240112, -0.06637599319219589, -1.077304482460022, 0.16481085121631622, 1.4891247749328613, -1.5432761907577515, -0.4280920624732971, 0.04032602161169052, 0.09263391047716141, 0.1344631314277649, -0.15531037747859955, 0.14767809212207794, -0.5591437816619873, -0.27342191338539124, -0.06990406662225723, 1.2906755208969116, 0.20906475186347961, -0.06892435252666473, -0.6277373433113098, 1.2432600259780884, 0.23648859560489655, -0.16802659630775452, -0.1529979258775711, 0.34681248664855957, -0.8409165740013123, -0.7620750069618225, -0.4372577667236328, 0.1581173688173294, 0.7334797978401184, -0.4700258672237396, -0.3987032473087311, -0.28184589743614197, -0.1352570354938507, -0.8003107309341431, 0.12294899672269821, -0.6733930110931396, 0.4497731328010559, 0.29160770773887634, 0.22037672996520996, 0.726969838142395, -0.2741752862930298, 0.6186981201171875, -1.2398617267608643, 0.3826824724674225, 1.1399307250976562, 0.8952075242996216, 0.9379507303237915, 0.2916163206100464, 0.08268488943576813, -0.9687803387641907, -0.36276575922966003, 0.08932004123926163, 0.6898979544639587, 0.0335208959877491, 0.13532307744026184, -0.44211289286613464, -0.4230997860431671, 0.11540547758340836, -0.7623655200004578, -0.09769964963197708, 0.2447512447834015, -0.25080132484436035, -0.5632684230804443, 0.7220411896705627, 0.12528735399246216, -0.026956776157021523, -0.36253827810287476, 0.2774563729763031, 1.0852571725845337, -0.4656570851802826, 0.1162312924861908, 0.14398953318595886, 0.19159863889217377, 0.3781634569168091, -0.17724530398845673, -0.2557332217693329, 0.5110142827033997, 0.16268059611320496, 0.8078315854072571, -1.5647345781326294, -0.38266366720199585, -0.2825195789337158, -0.0056684971787035465, 0.44864508509635925, 0.11976038664579391, 0.1214926540851593, 0.18268141150474548, -0.5072701573371887, -0.3446296155452728, 0.08044572174549103, 0.746229350566864, 0.012647668831050396, 0.5457168221473694, -0.5068028569221497, 0.4775415360927582, 0.4295043647289276, -0.8024523258209229, -0.7662203311920166, 0.47105368971824646, -0.6446012258529663, 0.552959144115448, 0.6493451595306396, -0.1981944739818573, 1.6227173805236816, -0.008315451443195343, 0.15261441469192505, 0.8815245032310486, -0.3032084107398987, -0.24390418827533722, -0.016252396628260612, 0.707231342792511, -0.3845173418521881, -0.9631162285804749, 0.21922314167022705, 0.35895559191703796, 0.443779855966568, 0.2967756390571594, -0.010054541751742363, 0.5325489640235901, 0.3288618326187134, -0.49046260118484497, 0.12261214852333069, 0.882689356803894, 0.9427655935287476, 0.4904576241970062, 0.7225733399391174, 0.4094087481498718, -1.2012698650360107, 0.7995283007621765, -0.3002049922943115, -0.15055063366889954, 0.2288036346435547, 0.329083114862442, 1.4017531871795654, -1.4846128225326538, -0.1932739019393921, 0.3658563196659088, 0.10311920940876007, 0.09683805704116821, 0.5415061712265015, 0.7107263803482056, -1.219359040260315, -0.029575787484645844, 0.3369160294532776, -0.056885723024606705, 0.3309822380542755, 0.2839503586292267, 0.3885314464569092, 0.4173871576786041, -0.6234391331672668, -0.05865945667028427, -0.7092468738555908, -0.3197086453437805, 0.5579224228858948, -0.0940452292561531, 0.6385071277618408, -0.029640397056937218, 0.44189342856407166, 0.9081335067749023, -0.7083243131637573, -1.437511920928955, -0.09937963634729385, -0.6541922688484192, -0.04288578778505325, -0.03500746935606003, 0.031154150143265724, -0.5874741077423096, -0.2664118707180023, 0.3319528102874756, 0.22169767320156097, -0.09665657579898834, -0.2307945191860199, 0.7933726906776428, -1.3800389766693115, 0.029530614614486694, 0.7194676399230957, 1.2603294849395752, 1.1668399572372437, 0.0057183727622032166, -0.15975575149059296, 0.5090819001197815, -0.4250332713127136, 0.18117277324199677, 0.0679297149181366, -0.27497947216033936, 0.13008661568164825, -0.7806468605995178, -0.5721760392189026, 0.28312498331069946, 0.600123405456543, -0.15968476235866547, -0.4336242973804474, 0.9485036134719849, 1.712527871131897, -1.0997151136398315, -0.6716794371604919, 1.3679943084716797, -0.24315118789672852, 1.3237695693969727, 0.09202957153320312, -0.5403064489364624, -0.44869911670684814, -0.04130573943257332, -1.588956356048584, 0.9674293398857117, -0.03323015943169594, -0.8864249587059021, 0.549061119556427, 0.3188721537590027, 0.10258984565734863, 0.8728535175323486, -1.0549025535583496, -0.3517206609249115, 0.8451035022735596, -0.26789242029190063, -1.1512596607208252, 1.0357874631881714, 0.4050579369068146, 0.8430876731872559, 0.138723686337471, 0.3366875946521759, 0.06399861723184586, 0.02899136394262314, 0.05667665973305702, 0.07987604290246964, 0.23309601843357086, 0.3596363663673401, 0.6011831164360046, -0.4619158208370209, 0.16814009845256805, -0.67613685131073, 0.15372523665428162, 0.03178201615810394, 0.9632284641265869, 0.33039504289627075, 0.030660271644592285, 0.20213201642036438, -1.0846507549285889, -0.2694091498851776, -0.37189146876335144, -0.8557957410812378, 0.563021719455719, 0.8984380960464478, 0.2958866059780121, -0.05288699269294739, -0.4264548420906067, -0.3228088617324829, -0.4888628125190735, 0.07304667681455612, 0.2412615716457367, -1.1684246063232422, -0.03072221949696541, 0.23150771856307983, -0.5207378268241882, -0.006342282053083181, -0.3125993609428406, -0.15529663860797882, 0.12949416041374207, -1.3491697311401367, -0.6754097938537598, -0.06375851482152939, 0.5797572135925293, -0.05049595609307289, -0.10218393802642822, -0.2561062276363373, -1.475102186203003, -0.4757612943649292, -0.03125256672501564, -1.3841638565063477, -0.2354561984539032, -0.5118942856788635, 0.8524957299232483, 0.6853434443473816, 0.11148573458194733, -0.16142183542251587, 0.6538130044937134, -1.4890739917755127, -0.4698450267314911, -0.15240883827209473, 0.1858101785182953, 0.4593568742275238, 0.6549222469329834, -1.2492588758468628, 1.46169114112854, 0.6970295310020447, -0.10430856049060822, -0.016131293028593063, -0.17647019028663635, -0.3493719696998596, -0.314985454082489, 0.9479802250862122, 0.19142307341098785, 0.42328256368637085, 0.7814844250679016, 0.23117443919181824, 0.7108777165412903, 0.3805773854255676, 1.081787347793579, -1.203076958656311, -0.9404045343399048, -0.42464929819107056, 0.39655840396881104, -0.8945383429527283, -0.626814067363739, -0.30789220333099365, -0.4982600510120392, -0.20757748186588287, 0.23686224222183228, 0.6366410255432129, -1.2171657085418701, 0.08995842933654785, -0.6517255902290344, 0.39706623554229736, -0.8135122656822205, 0.5450487732887268, 0.4975011348724365, -1.3151673078536987, 0.14493897557258606, 0.34186702966690063, 0.3273337781429291, -1.3267239332199097, -0.25798022747039795, -0.1350814700126648, 0.291176974773407, -0.48120397329330444, 0.4930216670036316, 0.39604806900024414, 0.38608431816101074, -0.2937229573726654, 1.2730199098587036, 1.0801337957382202, 0.13045193254947662, -0.31069475412368774, 0.5707135200500488, -0.46761375665664673, 0.3563702702522278, -0.12389545142650604, 0.38450658321380615, -0.38289541006088257, 1.0122379064559937, 0.21658967435359955, 0.26207125186920166, -0.3236078917980194, 0.24836452305316925, -0.3693268895149231, 0.06653143465518951, 0.5999838709831238, -0.6834617853164673, -0.4040021300315857, 0.47950050234794617, 0.7492506504058838, -0.2765651047229767, -0.244053915143013, -0.13801972568035126, 0.5232362747192383, -0.10222692042589188, 0.3910113275051117, 0.3886050283908844, -0.16386425495147705, 0.09896217286586761, 0.9655537605285645, -0.3180219829082489, -0.35695725679397583, -0.19215397536754608, -1.4746640920639038, 0.018978828564286232, -0.5558215975761414, -0.24908900260925293, 0.36162060499191284, -0.9485746026039124, -0.6328722238540649, -0.19933265447616577, -0.24473488330841064, 0.3017418682575226, -0.7387725710868835, 0.20390787720680237, 0.007705984637141228, -0.1823708564043045, 0.6752809286117554, -0.7326675653457642, 0.7697107195854187, -0.6917986869812012, 0.034298282116651535, -0.6516261696815491, 0.4012249708175659, -0.035909246653318405, 0.3749435842037201, -0.32734885811805725, -0.5633912086486816, 0.030752448365092278, -0.3960244953632355, -0.2293747216463089, 0.47840940952301025, 0.7295539379119873, -0.04979148134589195, 0.7656174302101135, -0.7690362334251404, -0.5390255451202393, 0.3102305233478546, 0.7761883735656738, -0.37363988161087036, -0.4240533411502838, -0.7530390024185181, 0.5502291917800903, 0.04698440432548523, 1.3844380378723145, -0.9649777412414551, 0.15643201768398285, -0.10184285789728165, 0.04244295507669449, 0.000504232244566083, -0.6056462526321411, 0.555650532245636, -0.3764986991882324, 0.35506540536880493, 0.09692861884832382, -0.37101781368255615, -0.4551047682762146, -0.6512395143508911, -0.26553234457969666, 0.36614298820495605, -0.4382425546646118, 0.6659207940101624, -0.9429123997688293, -0.6722255945205688, -0.16617250442504883, 0.21363693475723267, -0.6117614507675171, 0.1925770342350006, 0.3031248450279236, -0.18510016798973083, -0.2799486517906189, 0.004167613107711077, 0.468740850687027, -0.4285370707511902, -0.10697269439697266, 1.117249608039856, 1.1362162828445435, 0.16832242906093597, -0.478011816740036, -0.26431870460510254, 1.047026515007019, -1.198576807975769, 0.13500948250293732, -0.9018951058387756, -0.7559676170349121, -0.10781159996986389], [-0.39694976806640625, 1.090183138847351, -1.4066890478134155, -1.1148264408111572, -0.47423234581947327, 0.4856611490249634, 1.6838023662567139, 0.6603217720985413, 0.2953663170337677, -0.31943488121032715, -0.2240762561559677, 0.6972107887268066, 1.4102883338928223, 0.9461860656738281, 0.27948302030563354, -0.0693749412894249, 0.383198618888855, 0.7541815042495728, 0.6331110000610352, -0.2945845127105713, -1.0455254316329956, -0.42872169613838196, 0.10567206144332886, 0.3865562975406647, 0.5292056202888489, 0.6849457025527954, -1.1356722116470337, -0.4291585087776184, -1.8512885570526123, -0.8884330987930298, 0.6940662860870361, -1.0801299810409546, 0.07916732132434845, 0.26765769720077515, -0.042718276381492615, -0.3624902367591858, 1.7967908382415771, 0.374753475189209, 0.759194016456604, 0.30729231238365173, 2.6090569496154785, 0.03666824847459793, 0.04491455852985382, -1.1409307718276978, -0.8512347340583801, -0.016205545514822006, 0.17628324031829834, -1.6066268682479858, 0.1735917031764984, 0.2542645335197449, 0.6791911125183105, 0.7209205031394958, 0.5685153007507324, 1.2241333723068237, -0.1548507809638977, -0.9776166081428528, 0.5019965767860413, 0.2843027114868164, 0.9105278253555298, -0.08914065361022949, 0.3952701687812805, -0.3235118091106415, -0.15845122933387756, 1.6128029823303223, 0.33396244049072266, -0.2577882409095764, -0.057232510298490524, -0.247924342751503, 0.40025269985198975, -0.4354606866836548, 0.025768447667360306, 0.02966429851949215, 0.09252007305622101, 0.5929543375968933, -1.1098498106002808, 0.6124457716941833, 0.5985241532325745, -0.3788522779941559, -0.44985246658325195, 0.9978538155555725, -0.6368800401687622, -0.31922999024391174, 0.6874637603759766, -0.23359890282154083, 0.8610819578170776, 1.0657014846801758, 0.005349092185497284, 0.652769923210144, -0.2741072475910187, 1.647155523300171, -0.04311066120862961, 0.41515272855758667, -0.0021348893642425537, 0.20963092148303986, -0.05000254511833191, -0.7389814257621765, -0.5221012830734253, -0.8106756210327148, -0.9231913685798645, -0.8716508150100708, -0.6579275727272034, -0.6790211796760559, 0.6821976900100708, 0.08134479075670242, 1.1199536323547363, 1.0317142009735107, 0.05301903560757637, -0.20050351321697235, -0.7606571912765503, -0.16897407174110413, -0.3723706603050232, -0.23618054389953613, -0.6356344223022461, -0.5905603766441345, -0.44953811168670654, 0.34792521595954895, 0.4895799458026886, -0.16298148036003113, 0.10981863737106323, 0.8882145881652832, -0.7987903356552124, -0.23158963024616241, -0.6358280777931213, 0.5510768890380859, 0.395700603723526, 0.5880473852157593, -0.003049788996577263, -0.19053369760513306, 1.3437669277191162, 0.6175557971000671, -0.12623853981494904, -0.4671078622341156, 0.6963537931442261, 1.4914973974227905, -0.46231138706207275, 0.6205940246582031, 0.4333188235759735, -2.0233068466186523, -0.46139395236968994, 0.2631904184818268, 0.7585200071334839, -0.5522411465644836, -0.6163248419761658, -0.6691105961799622, -0.3071939945220947, -0.8048445582389832, 1.1489263772964478, 0.4487757384777069, -0.6443384289741516, 0.18542329967021942, -0.9861330986022949, 0.29547369480133057, 0.22914350032806396, 1.0037381649017334, -0.22019705176353455, -0.5316094160079956, 0.15428999066352844, 0.17778652906417847, 0.24768364429473877, 0.8764947056770325, 1.025538682937622, -0.035772159695625305, -1.076111912727356, 0.8834315538406372, -0.07808344811201096, -0.9195353984832764, 0.12240973114967346, 0.6408451795578003, 0.24559247493743896, 0.1297142207622528, -0.2725996971130371, -0.20021384954452515, -0.464782178401947, 0.04032697156071663, 0.638279914855957, -0.683861255645752, 0.9552501440048218, -0.6508235931396484, -0.9457811117172241, -1.6735680103302002, 0.5231411457061768, -0.17262372374534607, 0.15515130758285522, -0.3563116788864136, 1.2357842922210693, -0.8034521341323853, 0.0650535300374031, -0.4878609776496887, -0.8317248225212097, -1.0459396839141846, -0.86786288022995, 0.3505702316761017, -0.6927043795585632, -0.05582860857248306, -0.337060809135437, -0.2057081013917923, 0.4323188066482544, -0.6724497675895691, -1.0355088710784912, 0.6313415765762329, 0.4055660367012024, -0.35904669761657715, -1.9636980295181274, 0.29425475001335144, -0.7181505560874939, 0.4304244816303253, -1.288620948791504, 0.5845532417297363, -0.8122532367706299, 0.4921649396419525, 0.1620752513408661, 0.7176516652107239, -1.1944866180419922, 1.0741480588912964, -0.19166551530361176, -0.8618881702423096, 0.19545584917068481, 0.0825527235865593, -0.2655312120914459, 0.4447213113307953, 0.10243848711252213, 0.3955373764038086, 0.8217796087265015, -0.15216930210590363, 0.4998432993888855, 0.3741939067840576, -0.8359560966491699, -1.057632565498352, -0.8805030584335327, 0.24530112743377686, -0.6852155327796936, -0.6156649589538574, 0.5873007774353027, 0.5101587772369385, -0.6452995538711548, 0.4635840058326721, 0.6122236847877502, -0.34368276596069336, 0.48667511343955994, 0.021951019763946533, 0.27303996682167053, 0.654794454574585, -0.35405516624450684, -1.119249939918518, -0.34528738260269165, 0.32815906405448914, 1.1040585041046143, -0.15577442944049835, 0.8225297331809998, 1.5959372520446777, 1.211995005607605, 0.3394280970096588, 0.23860979080200195, -0.3749399185180664, -0.06581266224384308, -0.47254589200019836, -0.10417945683002472, -0.19370168447494507, -0.9263553023338318, 1.1145696640014648, 1.3497755527496338, -1.6214250326156616, -0.12358202040195465, 0.6382176876068115, 0.3200012445449829, -0.12603138387203217, -0.21065804362297058, -0.03905046731233597, 0.7516062259674072, 0.1686539202928543, 0.004116617143154144, 0.8964183330535889, -0.13430267572402954, -0.09003227949142456, -0.2564498782157898, -0.21990157663822174, -0.20538650453090668, 0.19440370798110962, -0.48387497663497925, 1.0796847343444824, 0.835963785648346, -0.9242583513259888, -0.7948390245437622, -0.4109601378440857, 0.8375402688980103, 0.35904356837272644, 0.26381590962409973, 1.138634204864502, 0.04503548517823219, -0.02951081469655037, -0.2393510937690735, 0.43157055974006653, -0.5796985626220703, 0.23417997360229492, -0.35770657658576965, -0.5324957966804504, 0.7657889127731323, -1.1234122514724731, -0.6895895004272461, 0.5386428833007812, 0.16424661874771118, 0.19119347631931305, 0.9870156049728394, 1.0471082925796509, -0.4680495262145996, 0.6094866991043091, -0.6765204668045044, -0.1856870800256729, -0.8800779581069946, -0.4507497549057007, -0.6792665123939514, -0.7870817184448242, 0.030547983944416046, 0.1575259566307068, 0.8606754541397095, 0.40825366973876953, -0.5384663343429565, 0.7585575580596924, 1.1138205528259277, 0.40677258372306824, -0.08602676540613174, 0.7314001321792603, -0.22731256484985352, -0.3008718192577362, 0.9867070913314819, 0.9851028323173523, -1.515891432762146, -0.035007819533348083, -0.2904879152774811, 0.39307987689971924, 0.5838148593902588, -0.36394059658050537, 0.39667391777038574, -0.5814648270606995, -0.42249593138694763, 0.8631620407104492, 1.2252583503723145, 0.07604478299617767, -0.6889864206314087, -1.1077778339385986, 0.5014838576316833, 0.8635789155960083, 0.5658591985702515, -1.1607396602630615, 1.0917384624481201, -0.5090558528900146, -0.27066922187805176, -0.8822126388549805, -0.12711843848228455, 1.1248996257781982, -0.3555483818054199, -0.04138056933879852, 0.6464059352874756, 0.024469105526804924, -0.8818192481994629, -0.2498757392168045, 0.0893961638212204, 0.5866762399673462, 0.3353419303894043, 0.3087008595466614, 1.43965482711792, -1.3866294622421265, -0.4964701533317566, -2.27744722366333, 1.0163354873657227, 0.4745846390724182, 1.9050889015197754, 0.28408196568489075, 1.0807318687438965, 0.2995498776435852, -0.6766815781593323, 0.3707963228225708, 0.3869333565235138, 0.5819233655929565, 0.2451181411743164, -0.3681386709213257, -0.06817290186882019, -0.623079240322113, -0.6672568321228027, -0.6819124221801758, -0.35562780499458313, 0.8409692049026489, -0.5390113592147827, -0.19858190417289734, -0.034999437630176544, 1.0091536045074463, -0.8090294599533081, -0.34208229184150696, -0.1566115915775299, 0.3319944143295288, -0.21142613887786865, -0.669054388999939, -0.42050039768218994, -0.21735253930091858, -0.3371177911758423, -1.446955919265747, 0.17722150683403015, 0.10539611428976059, -0.6230615973472595, 0.9047880172729492, -1.7883379459381104, -0.2803260087966919, -0.3349234163761139, -0.15652954578399658, 0.21254156529903412, 0.2712392508983612, -0.4461674988269806, 0.11846934258937836, -0.029522359371185303, 0.0008793696761131287, -0.018055692315101624, 1.0429608821868896, 0.4450136423110962, 0.10706869512796402, -0.19927489757537842, 0.2778615951538086, 0.4181765913963318, 0.1352938413619995, -0.46195143461227417, 1.1147809028625488, -1.0915418863296509, 0.03171338513493538, -0.043197955936193466, 0.49723970890045166, 2.5621094703674316, 0.597293496131897, 0.8131064772605896, 0.7532631158828735, -0.40213534235954285, -0.7005947828292847, 0.33557891845703125, -0.2584962844848633, -0.17806877195835114, -0.9821483492851257, 0.28520846366882324, 0.1176348328590393, -0.8897030353546143, 0.4930649399757385, 0.41334861516952515, -0.41096943616867065, -0.021627487614750862, -0.03007066622376442, 0.8205183744430542, 0.6359627842903137, 1.0578243732452393, 0.07941346615552902, 0.657974123954773, -0.5775254964828491, -0.9128464460372925, 1.1474565267562866, -0.5984230041503906, -0.10028297454118729, 1.0447572469711304, 0.5547902584075928, 0.3727600574493408, -1.1465225219726562, -1.358873963356018, 0.7267855405807495, -0.1933126449584961, 0.7959438562393188, -0.13670793175697327, 1.713947057723999, -0.4140872061252594, -0.24402214586734772, 0.34389111399650574, -0.044728152453899384, 1.308756709098816, -0.3607003688812256, -0.33749693632125854, -0.18287095427513123, -0.15631748735904694, -0.14443111419677734, -0.44804930686950684, -0.7240895628929138, 0.27676740288734436, -0.8862314224243164, 0.6172189712524414, 0.39649033546447754, 0.2664543688297272, 0.3547822833061218, -0.12416326254606247, -1.6980862617492676, 0.8661341071128845, -0.7120720744132996, -0.1446334719657898, -0.197500541806221, -0.6877183318138123, -0.2484644651412964, -0.7562081813812256, -0.6645675897598267, -0.07147139310836792, -1.129842758178711, -0.5611212849617004, 0.6434003710746765, -0.8651555776596069, 0.054693736135959625, 0.719996452331543, 1.8118431568145752, 0.9167287349700928, -0.18860995769500732, 0.056979112327098846, 0.6607381105422974, -0.8951947689056396, 0.14002221822738647, 0.6913689374923706, -0.5035663843154907, -0.8216146230697632, -1.1464251279830933, -0.8729740381240845, 2.4269323348999023, 0.7418230175971985, -0.413409948348999, 0.7895970344543457, 0.30133718252182007, 1.523914098739624, -0.255533903837204, -1.3513950109481812, 0.6573372483253479, 0.5099221467971802, 0.3202028274536133, 0.5399588942527771, -0.5855796337127686, -0.7880700826644897, -0.7260520458221436, -1.19307279586792, 2.0897650718688965, 0.4005292057991028, -0.9802701473236084, 0.3961483836174011, 1.0559228658676147, -0.15836943686008453, 0.2760388255119324, -1.0481587648391724, 0.19819492101669312, 0.4352215826511383, -0.6918942332267761, -1.170555830001831, 0.5944353342056274, 0.059523697942495346, 0.7140683531761169, -0.46709707379341125, 0.34856659173965454, -0.42479127645492554, -0.3916410803794861, -0.27940189838409424, 0.5538589954376221, 0.4429923892021179, -0.1537596583366394, 0.1868269443511963, -0.1355077177286148, -0.7473037242889404, -0.7132312059402466, 0.3834317624568939, -0.061948105692863464, 0.6166188716888428, 0.5086967349052429, -1.4286863803863525, -0.21784725785255432, -0.07523978501558304, 0.14551138877868652, -0.7359774708747864, -1.034881830215454, 0.9557297229766846, 0.7079870700836182, -0.7046868801116943, 0.4945576786994934, -0.19235725700855255, -0.48830974102020264, 0.004555901512503624, -1.2040296792984009, 0.3157418966293335, -2.0817158222198486, -0.02430690824985504, -0.9283907413482666, 0.3206397593021393, 0.5711419582366943, -0.03941863030195236, 0.1460830271244049, -0.13177959620952606, -1.2492358684539795, -0.8815586566925049, 0.4185560345649719, 0.4848950207233429, -1.4708317518234253, -0.23293623328208923, 0.05805998295545578, -1.3687124252319336, 0.3083932399749756, 0.36352288722991943, -1.1307075023651123, -0.10853379964828491, -1.2957744598388672, 0.32162684202194214, 0.6209379434585571, 0.4370153546333313, -0.20015917718410492, 0.8088477849960327, -0.4611430764198303, -0.7135999202728271, 0.053815703839063644, 0.4935743808746338, 1.1729350090026855, 0.7346552014350891, -0.42632946372032166, 1.5221891403198242, -0.11901218444108963, -0.8424748778343201, -0.1445024013519287, 0.5022905468940735, -0.8571555614471436, 0.3491678833961487, 0.8653426170349121, -0.14873239398002625, 1.1546630859375, 1.0231478214263916, 0.8403071165084839, 1.1120686531066895, 0.590329647064209, -0.10524561256170273, -0.6748861074447632, -0.3325136601924896, -0.8131656646728516, -0.10599435120820999, -1.0640649795532227, -0.32999539375305176, -0.052016958594322205, -1.0917260646820068, -0.629845917224884, 0.9709183573722839, 0.7787643671035767, -0.8817351460456848, -0.1142040565609932, -1.1005109548568726, 0.23750804364681244, -0.31936585903167725, 0.5654132962226868, 0.1484246551990509, -0.15624016523361206, 0.4636664390563965, -0.24211840331554413, -0.10200726985931396, -0.6555699110031128, -0.10933239012956619, -0.4392857253551483, 0.17455366253852844, -0.4741310775279999, 0.24498337507247925, 0.2074064016342163, -0.92171311378479, -0.6119421720504761, 1.8680596351623535, 0.6460480093955994, -0.12856963276863098, -0.07009201496839523, -0.6834397315979004, -0.35653746128082275, 0.5597814321517944, -0.25380975008010864, 0.970064640045166, -0.48641932010650635, 0.4760226011276245, 0.44301337003707886, -0.1951330006122589, -0.7158623933792114, -0.052511684596538544, -0.764683187007904, 0.5470755100250244, 1.3277664184570312, 0.13458478450775146, -0.32893064618110657, 1.5437288284301758, 0.7911679744720459, -0.21674737334251404, 0.763874888420105, 0.0478367805480957, -0.04281843826174736, 0.3114568591117859, 0.4484010338783264, 0.7580803632736206, -0.6149110794067383, 0.7179638147354126, 0.4416951537132263, 0.05431355908513069, 1.1252596378326416, -1.1885496377944946, -1.9449293613433838, -0.06627769023180008, -0.5141580104827881, -0.06513851881027222, 0.9141773581504822, -0.390636146068573, -0.21293790638446808, 0.21241195499897003, 0.5405974388122559, 0.06477827578783035, -0.5214090347290039, -0.5983464121818542, -0.4519045650959015, 0.2085629552602768, 0.39657062292099, -0.5265098810195923, 0.9622718691825867, -0.44509053230285645, -0.242702454328537, -0.7492250204086304, -0.22253841161727905, -0.05735396593809128, 0.6181912422180176, 0.8155807256698608, 0.09557449072599411, -0.33934125304222107, -1.0024017095565796, -0.012764312326908112, 0.050741687417030334, -1.1451300382614136, -0.19347436726093292, -0.4683295488357544, -1.6307260990142822, 0.3511705994606018, 0.7263811826705933, -0.24318549036979675, -0.2729138135910034, -0.8678035736083984, -0.9496639966964722, 0.6853393912315369, 0.3120933175086975, 0.7140762805938721, -1.3045861721038818, 0.4859899878501892, 0.06429336965084076, -0.7212477922439575, -0.6576929092407227, -0.7917052507400513, 0.662177324295044, -0.31828659772872925, 0.4328193962574005, -0.08091180771589279, -0.10357822477817535, 0.5104860067367554, -1.0293211936950684, 0.3087542653083801, -0.25164929032325745, 0.09311601519584656, -0.12101094424724579, -1.267773151397705, -0.32186469435691833, -0.05005042254924774, -0.050435908138751984, 0.6246017813682556, 0.44327935576438904, 0.11777499318122864, 0.26230788230895996, -0.7447754740715027, 0.06427295506000519, 0.523919939994812, -0.10142611712217331, 0.4217519760131836, 1.295865535736084, 1.5596275329589844, -0.11017350852489471, -0.2270057201385498, 0.028780154883861542, 0.7239811420440674, -1.2564254999160767, -0.19860245287418365, -1.6662418842315674, -0.8117200136184692, -1.1727043390274048], [-0.4370487928390503, 1.5874011516571045, -2.5767321586608887, -0.791496992111206, -0.1473293900489807, 0.17986764013767242, 1.4439969062805176, 0.4913526177406311, 0.369948148727417, -0.3087076246738434, -1.4939119815826416, 0.27662941813468933, 1.559338927268982, 0.8457896113395691, 0.600634753704071, -0.43770644068717957, -0.014074372127652168, -0.24024352431297302, 1.617178201675415, 1.2585041522979736, -1.1557809114456177, -0.3505581021308899, -0.5832545757293701, 0.04061124473810196, 0.46977129578590393, -0.9172930121421814, -1.3325906991958618, -0.7053202390670776, -1.6813987493515015, -0.9749122858047485, 0.8914746046066284, -0.7273484468460083, 0.024767128750681877, -0.34330928325653076, -1.0623385906219482, 0.10798174142837524, 1.4536256790161133, 0.5069915652275085, 0.8412377238273621, 0.6603624820709229, 2.8052778244018555, 0.3548237383365631, -0.1670622080564499, -1.1797356605529785, -0.5855389833450317, 0.19877471029758453, 0.053528349846601486, -1.0518428087234497, 0.30982962250709534, -0.18599680066108704, 0.8004198670387268, -0.47462034225463867, 1.079483151435852, 0.5599892139434814, 0.11144372820854187, 0.17993682622909546, 0.7502492666244507, -0.20289550721645355, 0.22376258671283722, 0.1639927625656128, 0.3215610086917877, 0.6154927611351013, -0.17006926238536835, 1.0896837711334229, 0.10702546685934067, -0.36417099833488464, -0.0028034148272126913, 0.48100388050079346, 0.5171621441841125, -0.6599410772323608, 0.693748414516449, 0.006746105384081602, 0.03226771578192711, -0.019797898828983307, -0.9490869641304016, 0.5040104985237122, 0.24091671407222748, 0.29677045345306396, 0.23560181260108948, 1.2511779069900513, -0.7620688676834106, -0.3320055902004242, 0.5749853849411011, 0.597050666809082, 1.2031402587890625, 0.7703918218612671, 0.4102427065372467, 0.008612471632659435, -0.4242013990879059, 1.7043888568878174, 0.010123763233423233, 0.1417171061038971, 0.38492053747177124, -0.5793431997299194, -0.2550326883792877, -0.38319146633148193, -0.08188822865486145, -0.8134838938713074, 0.21080662310123444, -0.8155153393745422, -0.4561613202095032, -1.436761736869812, 0.19408825039863586, 0.015775166451931, 0.4381142258644104, 1.2225146293640137, -0.3223588168621063, 0.036530524492263794, -0.6779576539993286, -0.5294266939163208, 0.043688636273145676, 0.09584123641252518, -0.6263900995254517, -0.9713443517684937, -1.00991952419281, 0.9343386888504028, 0.38541844487190247, -0.2180371731519699, 0.21366597712039948, 0.36631283164024353, -1.169614553451538, -0.5094364285469055, -0.09337493032217026, 0.6281187534332275, 0.07254292815923691, 0.3220008313655853, -0.23435604572296143, -0.2181144654750824, 0.7408252358436584, 0.4153141379356384, -0.019741958007216454, -0.18175750970840454, 0.5565316081047058, 0.8605382442474365, -0.4670732319355011, 1.0102614164352417, 0.20984473824501038, -1.686747431755066, -0.5945625901222229, 0.11038213223218918, 0.49805551767349243, -0.3349520266056061, -0.3976958096027374, -0.6239234805107117, 0.08751019090414047, -0.9233133792877197, 0.7783710360527039, -0.1908458024263382, -0.4550268352031708, -0.3660193681716919, -1.328115463256836, 0.4365673363208771, 0.02517510950565338, 1.2080985307693481, 0.06380227953195572, -0.7645118236541748, 0.29577869176864624, 0.13101939857006073, 0.04789808392524719, 0.9704282283782959, 0.5384578108787537, -0.14329932630062103, -0.574612021446228, 0.9866799116134644, -0.09541603177785873, -1.053178071975708, 0.5054467916488647, 1.1232373714447021, 0.03740210086107254, 0.791858434677124, 0.19214916229248047, 0.263626366853714, -0.49854546785354614, -0.06423953920602798, 0.5852534174919128, -1.7437238693237305, 0.9680420160293579, -0.7389258742332458, -0.9943974614143372, -1.1583666801452637, 0.3660041093826294, -0.5884174704551697, 0.03800337016582489, -0.05825285241007805, 1.0284353494644165, -0.18280085921287537, -0.20795433223247528, -0.7503682971000671, 0.24229036271572113, -1.1111174821853638, -0.8224233984947205, 0.21725162863731384, -1.2677638530731201, -0.4558773636817932, -0.470187246799469, -0.9326748847961426, 0.5163123607635498, -0.47176656126976013, -1.5603145360946655, 0.500443160533905, -0.5542135238647461, -0.6072036027908325, -1.6662770509719849, 0.2910149097442627, -1.041414737701416, 0.447472482919693, -1.2558375597000122, 0.1919281780719757, -0.7870426177978516, 0.6301698088645935, 0.29623427987098694, 0.04906606301665306, -1.4666526317596436, 0.9857835173606873, -0.08619336783885956, -0.6556929349899292, 0.35391366481781006, 0.08666212111711502, -0.39588961005210876, 0.44208571314811707, -0.12704600393772125, 1.1069964170455933, 0.5332581996917725, 0.39722970128059387, 0.5051307678222656, -0.17059952020645142, -0.16358649730682373, -0.2930934727191925, -0.5419816970825195, 0.19731369614601135, -0.8978227972984314, -0.29015713930130005, 0.9844204187393188, 0.4667466878890991, -1.332737684249878, 0.4363630414009094, 0.6797459125518799, -0.05362908914685249, 0.7953674793243408, 0.5251379609107971, 0.04313525930047035, 0.6159206032752991, -0.18764136731624603, -0.9122281074523926, -0.3810734450817108, 0.6699206829071045, 0.7829745411872864, -0.726897656917572, 0.3462497889995575, 1.2631736993789673, 0.084839828312397, 0.4690488576889038, 0.5592196583747864, -0.701831042766571, -0.5230119824409485, -0.40484189987182617, -0.3230888843536377, 0.23353813588619232, -0.5333285331726074, 1.7341128587722778, 1.1475789546966553, -0.8854556679725647, -0.3458508253097534, -0.1452772319316864, -0.05233302339911461, -0.5614906549453735, -0.3875328004360199, -0.011486900970339775, 0.514484703540802, -0.2726108133792877, -0.1647208333015442, 0.4583830237388611, -0.35833486914634705, 0.3553146719932556, -0.5013052821159363, -0.3513018786907196, -0.5594649314880371, 0.36447227001190186, 0.01788119226694107, 1.5866273641586304, 0.4231027066707611, -0.9188446998596191, -0.5839605927467346, -0.4683210849761963, 0.8303530216217041, 0.9123458862304688, 0.44272515177726746, 0.7441003322601318, 0.1926286518573761, 0.05984252691268921, 0.41720932722091675, 1.1008204221725464, -0.9679220914840698, 0.37220802903175354, -0.020692670717835426, 0.1371280401945114, 0.7389541268348694, -0.5221402049064636, -1.3309310674667358, -0.22107072174549103, 0.6654825210571289, 0.5697850584983826, 0.9183706641197205, 1.2335416078567505, -0.002475516404956579, -0.3168407380580902, -0.03882654011249542, -0.3027915060520172, -0.5784849524497986, -0.5609763860702515, -0.6827258467674255, -0.7308980226516724, 0.12550948560237885, 0.3106819689273834, 0.003644367214292288, 0.646087110042572, -0.05030323192477226, 1.3706495761871338, 0.8692483901977539, -0.28591081500053406, -0.5776767134666443, 0.06626543402671814, 0.11770046502351761, -0.13061131536960602, 0.29884210228919983, 0.3867122232913971, -1.9336026906967163, -0.5948675274848938, 0.39269763231277466, -0.05363841727375984, 0.6051045060157776, -0.06364890933036804, 0.28196099400520325, -0.7346796989440918, -1.0171804428100586, 0.5112268924713135, 1.065491795539856, 0.13971030712127686, -0.7281727194786072, -0.826076090335846, 1.0592800378799438, 1.4334237575531006, 0.6911522150039673, -0.9461848735809326, 0.76978999376297, -0.38090527057647705, 0.2088320255279541, -0.5268071889877319, -0.02723768725991249, 0.6848913431167603, -0.11490502208471298, -0.14988704025745392, 0.5939295291900635, -0.16653364896774292, -0.009614020586013794, 0.4601505696773529, 0.5760746002197266, 0.7318426966667175, 0.13097649812698364, 0.17018269002437592, 1.3103262186050415, 0.0030454311054199934, -0.30038776993751526, -1.8788660764694214, 1.2618862390518188, 0.4771537482738495, 1.3514233827590942, -0.14707200229167938, 0.785269558429718, 0.5456264615058899, -0.7708790302276611, 0.2874092161655426, 0.4055764079093933, 0.9451785683631897, 0.5063685178756714, -0.6068093180656433, -0.584373414516449, 0.07520978152751923, -0.26590999960899353, -0.7210097908973694, -0.473269522190094, -0.004881085362285376, -0.9583609104156494, -0.5886712074279785, 0.7849992513656616, 0.7722470164299011, -0.8548648357391357, -0.21307246387004852, 0.5966101288795471, 0.5636575818061829, 0.1978161334991455, -0.25233376026153564, -0.8884092569351196, 0.048872508108615875, -0.05523604527115822, -1.4201488494873047, 0.1159314289689064, 0.21272511780261993, 0.40376320481300354, 0.5914812684059143, -1.5644354820251465, -0.2506399154663086, 0.3727853298187256, 0.2676825523376465, 0.6731663346290588, 0.9241135716438293, 0.005010113585740328, -0.2583182752132416, 0.600869357585907, -0.6075356006622314, 0.06074976548552513, 0.949177086353302, 0.42503514885902405, 0.4324437379837036, -0.0049750665202736855, 1.0410352945327759, 0.35931187868118286, 0.3535436689853668, -0.5524027943611145, 0.42301440238952637, -0.47707048058509827, 0.24105152487754822, 0.13051903247833252, 0.2642419934272766, 2.282350540161133, 0.08456256985664368, 0.6781291961669922, 1.2685149908065796, -0.5647340416908264, -1.4431275129318237, 0.6840652823448181, -0.07331186532974243, 0.36354541778564453, -0.6075826287269592, 0.6515876650810242, 0.16205726563930511, -0.6222079992294312, 0.2683967351913452, 0.8740497827529907, 0.8470026850700378, 0.2303488552570343, 0.21685576438903809, 0.32007142901420593, 0.6243957281112671, 0.9288405776023865, 0.5074909925460815, 0.1961873471736908, 0.0238431878387928, -0.861173152923584, 0.7203328609466553, -0.781176745891571, -0.5093115568161011, 0.6157081723213196, 0.32114091515541077, 1.004520297050476, -1.622454047203064, -0.7145832180976868, 0.7057704329490662, 0.6186574697494507, 0.4687280058860779, 0.5571122169494629, 1.664150595664978, -0.5338351726531982, 0.03212757781147957, 0.8304558396339417, -0.4024082124233246, 0.8084427118301392, 0.2694522738456726, -0.4498879909515381, 0.27691689133644104, -0.3092992603778839, -0.13514423370361328, -0.37819814682006836, -0.4509001076221466, -0.5486191511154175, -0.3791164457798004, 0.2624356746673584, 0.2524884343147278, 0.25187841057777405, 0.69526606798172, -0.4091950058937073, -0.7095322608947754, 0.5241432785987854, -0.6770216822624207, 0.1758926510810852, -0.27295053005218506, -0.7930456399917603, -0.2478930652141571, -0.5870323181152344, -0.43623510003089905, 0.3742905557155609, -1.2288120985031128, -0.6701809167861938, 0.04370187222957611, -1.1306341886520386, -0.16752199828624725, 0.47794681787490845, 1.7536283731460571, 1.346807599067688, 0.1716310977935791, -0.33494359254837036, 0.3397034704685211, -0.9598433971405029, -0.5438152551651001, 1.0780985355377197, -0.708347499370575, -0.47843289375305176, -1.326852560043335, -0.5947514772415161, 1.6257587671279907, 0.35866400599479675, 0.14511939883232117, 0.6940075755119324, 0.5436326861381531, 1.4731166362762451, -0.4160464406013489, -1.3418132066726685, 0.5687869191169739, -0.22477149963378906, 0.6890491247177124, 0.8905265927314758, -0.730390727519989, -1.1892896890640259, 0.05267605930566788, -1.479127287864685, 1.4927924871444702, 0.4610324501991272, -0.9721964001655579, 1.1087194681167603, 0.5283843874931335, 0.10489190369844437, 0.4324071407318115, -0.7683115601539612, 0.4347453713417053, 0.7683017253875732, -0.4388256371021271, -0.5741335153579712, 0.6664924621582031, -0.18274758756160736, 0.28717169165611267, -0.377830445766449, 0.7806128859519958, -0.2480994611978531, -0.3018965423107147, -0.18537086248397827, 0.33432766795158386, 0.4245965778827667, 0.5230181813240051, -0.2779175341129303, -0.4404526352882385, 0.10011415183544159, -0.8728299140930176, -0.32561731338500977, 0.04533353075385094, -0.04750186204910278, -0.09693465381860733, -1.7146899700164795, 0.17653141915798187, -0.4177548587322235, 0.21334385871887207, 0.012789526954293251, -0.720805287361145, 0.4077482521533966, 0.15229803323745728, -0.24201829731464386, 0.7173258066177368, -0.31590014696121216, -0.6024782061576843, -0.46330803632736206, -0.6343560814857483, 0.20057182013988495, -1.829897403717041, -0.18100954592227936, -1.0393922328948975, -0.14316152036190033, 0.30143672227859497, 0.27305614948272705, 0.1796780526638031, -0.6826131343841553, -1.3426117897033691, -1.3328649997711182, 0.037471529096364975, 0.40454769134521484, -1.1492862701416016, 0.19758862257003784, 0.34461721777915955, -0.892096757888794, 0.5775507092475891, 0.007325115613639355, -0.899994432926178, -0.10709503293037415, -1.6325633525848389, 0.5902206897735596, 0.1308521181344986, 0.18098510801792145, -0.26580744981765747, 0.7374642491340637, -0.6454735994338989, -0.2165195345878601, -1.5149410963058472, -0.06442733854055405, 1.4244961738586426, 1.050434947013855, -1.0746442079544067, 1.2159134149551392, -0.6627303957939148, -1.0599507093429565, 0.2407381534576416, 0.5931046605110168, -0.2918449342250824, -0.06517277657985687, 0.4266246259212494, -0.19406773149967194, 0.22244539856910706, 1.5719056129455566, -0.11192820966243744, 1.0818182229995728, 0.6506116390228271, -0.08098803460597992, -0.6886664628982544, -0.2254686951637268, 0.27822545170783997, 0.5106768012046814, -1.024328351020813, 0.06624174118041992, -0.2559199631214142, -1.1856354475021362, -0.45691630244255066, 0.28749561309814453, 0.5869805812835693, -1.1914682388305664, -0.026006203144788742, -0.8740776777267456, 0.4446137547492981, -1.2284083366394043, 0.20485836267471313, 0.17787589132785797, -0.022197598591446877, 0.014303544536232948, 0.004801933187991381, -0.38071510195732117, -0.6654024124145508, 0.563565194606781, -0.2251022756099701, 0.30388113856315613, -0.4891771078109741, 0.7714534997940063, 0.6371031999588013, -0.2303507775068283, -0.7125470042228699, 1.5355459451675415, 0.7685150504112244, -0.09157388657331467, -0.11535043269395828, -0.1841271072626114, -0.31417450308799744, 0.9490715265274048, -0.4174804091453552, 0.15695378184318542, -1.2076435089111328, 0.6309384107589722, 0.2719145715236664, -0.46011558175086975, -0.7800679206848145, 0.15206202864646912, -0.7967020869255066, -0.012189893051981926, 0.41750600934028625, -0.22582659125328064, -0.04443327710032463, 1.5138881206512451, 0.46657609939575195, 0.29053470492362976, 0.4789442718029022, -0.33778005838394165, 0.37590792775154114, 0.05400458350777626, 0.45952707529067993, 0.6373978853225708, -0.7482506632804871, 0.07864046096801758, 0.9052721261978149, -0.1856439858675003, 0.2789718210697174, -1.1818934679031372, -1.502480387687683, 0.030711015686392784, -0.923621416091919, -0.2452719360589981, 0.7128457427024841, -0.4446161687374115, -0.4390075206756592, 0.17098911106586456, 0.700303852558136, 0.3007659614086151, -0.5082190036773682, -0.4293808341026306, -0.304227352142334, -0.12175334990024567, 0.8990966081619263, -0.2503630220890045, 1.2709771394729614, -0.9922894239425659, 0.3367866277694702, -0.4249034821987152, -0.5021671652793884, 0.43361738324165344, 1.0161802768707275, -0.2917585074901581, -0.5473737120628357, 0.6623172760009766, -0.9347772598266602, -0.3073715567588806, 0.21643443405628204, -0.12548822164535522, 0.6652563214302063, -0.23183481395244598, -1.578354835510254, 0.10532200336456299, 0.8950180411338806, 0.251718670129776, -0.30855435132980347, -0.6231251358985901, -0.8434597849845886, 0.4329988956451416, -0.08512140810489655, 0.523565411567688, -0.5866948366165161, 0.469781756401062, 0.9281842112541199, -0.3859626352787018, -0.4980149567127228, -0.6943686604499817, 1.1290992498397827, -0.6882389783859253, 0.5546324849128723, -0.4276719093322754, -0.034433476626873016, 0.37747645378112793, -0.872350811958313, -0.47070637345314026, -0.14896723628044128, 0.08104565739631653, 0.024512486532330513, -0.760435163974762, -1.4768279790878296, -0.7341390252113342, -0.012629239819943905, -0.39498695731163025, 0.4569215476512909, 0.6248621940612793, -0.0008534053340554237, -0.5328137278556824, 0.21141964197158813, 0.3048057556152344, 0.16513659060001373, 0.09812339395284653, 1.9371851682662964, 1.5095466375350952, -0.20313973724842072, -0.07683316618204117, -0.2569541335105896, 0.7053112387657166, -0.9092100858688354, -0.20949137210845947, -1.227868676185608, -0.6591246128082275, -0.6383852958679199], [0.28986045718193054, 0.7123085260391235, -2.286497116088867, -0.26880744099617004, -0.6096882224082947, 0.43574339151382446, 0.36670318245887756, 0.7157012820243835, 0.6583956480026245, -0.9461596608161926, -0.6994540095329285, 0.14578711986541748, 1.302878737449646, 0.4070339798927307, 0.19811362028121948, -0.47666770219802856, 0.7939473986625671, 0.24852165579795837, 1.208371639251709, 0.9780315160751343, -0.9322576522827148, -1.6520954370498657, 0.11525256186723709, 0.25974172353744507, 0.17843331396579742, 0.4400566816329956, -1.0270047187805176, -0.3264703154563904, -2.140815496444702, -0.9725093245506287, 0.6365634799003601, -0.535602867603302, 0.2312767505645752, 0.3627243936061859, -0.8445634245872498, 0.05207379162311554, 1.37766432762146, 0.13732604682445526, 0.021866008639335632, 1.0204285383224487, 2.416801929473877, 0.40926775336265564, -0.7351089119911194, -0.8498775362968445, 0.493046373128891, -0.29682478308677673, 0.3695235252380371, -0.974698007106781, -0.5744034647941589, -0.16762076318264008, -0.037289414554834366, 0.5094299912452698, -0.24417154490947723, 1.5097568035125732, 0.5301083922386169, -0.6911095380783081, 0.339324951171875, -0.5189955234527588, 0.5082244873046875, 0.14701683819293976, 0.5006166696548462, 0.3105960488319397, 0.09548618644475937, 1.321117877960205, 0.18551456928253174, 0.5652274489402771, 0.17241480946540833, 0.8667894601821899, -0.12404920160770416, -0.6421347260475159, 1.065166711807251, 0.22302401065826416, -0.24534359574317932, 0.7468440532684326, -0.7125803232192993, 0.47357457876205444, 0.3452679216861725, 0.9013281464576721, -0.5849379897117615, 1.1905605792999268, -0.597124457359314, 0.29602885246276855, 0.5117281675338745, -0.1581670492887497, 0.3366284668445587, 0.14088377356529236, 0.5502694249153137, -0.34562408924102783, -0.6889449954032898, 1.2781482934951782, -0.24066628515720367, 0.17873771488666534, 0.14125975966453552, 0.10758301615715027, -0.2251192182302475, -0.4364270567893982, -0.5036576390266418, -0.46802425384521484, -0.044672541320323944, -0.6531463861465454, -0.7990322113037109, -1.37294602394104, 0.46740883588790894, 0.16274484992027283, 0.6186236143112183, 1.444784164428711, -0.169772669672966, -1.0894757509231567, 0.008034910075366497, 0.0486069954931736, -0.14210523664951324, -0.5986404418945312, -0.5032404065132141, -1.429895281791687, -0.7841207385063171, 0.3215666115283966, 0.6891022324562073, -0.5079105496406555, 0.9757845997810364, 0.5213464498519897, -0.5212778449058533, 0.18839038908481598, -0.5805730819702148, 0.5086157917976379, 0.48455512523651123, -0.06867896765470505, 0.10000431537628174, -0.29503166675567627, 0.534703254699707, 0.7704542875289917, -0.07075801491737366, -0.555283784866333, 0.5126272439956665, 1.9198036193847656, -0.45022645592689514, 0.3158555030822754, -0.18903912603855133, -1.4312865734100342, 0.12272959202528, 0.5156720280647278, 0.7956621050834656, -0.5619372725486755, 0.02190958708524704, -0.8411749005317688, -0.5475729703903198, -0.40803614258766174, 0.7362139821052551, -0.2607957124710083, -0.48180654644966125, -0.1415635049343109, -0.958832859992981, 0.23739546537399292, 0.2818916440010071, 0.3738834857940674, 0.2596520185470581, 0.07688688486814499, 0.9348286390304565, 0.26209756731987, 0.5394572615623474, 0.42168480157852173, 0.6631275415420532, -0.04572126641869545, -0.48645779490470886, 0.7492787837982178, 0.2550245523452759, -0.8256210684776306, -0.32595765590667725, 0.5566977858543396, -0.36684468388557434, 0.21712099015712738, -0.11603200435638428, -0.611992359161377, -0.8136857151985168, -0.1879020631313324, 0.18742914497852325, -1.2832826375961304, 1.3002692461013794, -0.32857808470726013, -0.8416218161582947, -1.3829429149627686, 1.612334966659546, -0.3687496483325958, -0.17496320605278015, -0.19903846085071564, 1.4728974103927612, -0.7535385489463806, -0.2047519087791443, -0.1051316037774086, -0.4746769070625305, -0.9234166145324707, -0.7875789999961853, -0.08238522708415985, -1.1815952062606812, -0.11517756432294846, -0.9882182478904724, -1.1889541149139404, 0.12280280888080597, -0.2287576049566269, -0.5306000113487244, -0.24464750289916992, 0.36590516567230225, -0.10371887683868408, -1.6305712461471558, 0.034623801708221436, -0.13522979617118835, 0.5881062150001526, -1.0088526010513306, 0.40932491421699524, -0.5777542591094971, 0.5554604530334473, 0.9735177755355835, -0.13559265434741974, -0.960868775844574, 0.7632785439491272, -0.33649519085884094, -0.8656811714172363, 0.41130930185317993, 0.11828678101301193, 0.429501473903656, -0.13711883127689362, 0.9023720622062683, 0.9491097927093506, 0.48536789417266846, 0.26650771498680115, 0.6628285050392151, 0.07968637347221375, -0.660343587398529, -0.8072307109832764, -0.3973097503185272, 0.2819978594779968, -0.8915864825248718, -0.9884994626045227, 0.5545442700386047, 0.3726080060005188, -0.9678217768669128, 0.9362309575080872, 0.34221187233924866, -0.22458216547966003, 0.247853621840477, 0.26918962597846985, 0.48766499757766724, 0.30432671308517456, -0.5602409839630127, -0.7137046456336975, -0.5778138041496277, 0.4226459860801697, 0.7493499517440796, -0.7538040280342102, 0.1823466569185257, 1.0917266607284546, 0.6572787761688232, -0.06891967356204987, 0.46064087748527527, 0.09783420711755753, -0.2366986870765686, -0.7422360777854919, -0.7176925539970398, -0.04014302417635918, -1.6828640699386597, 1.7272961139678955, 0.8052378296852112, -0.9817936420440674, -0.1395977884531021, -0.28432297706604004, -0.14641082286834717, -0.2680332660675049, -0.35277971625328064, -0.5470665693283081, 0.47129127383232117, -0.35743188858032227, 0.31659355759620667, 0.2727181017398834, -0.44001278281211853, 0.4125315546989441, -0.7945650219917297, -0.22541655600070953, 0.21857260167598724, 0.3170028328895569, 0.02495430037379265, 0.887859046459198, 0.45543143153190613, -0.8432567119598389, -0.6156577467918396, -0.49293574690818787, 1.046460509300232, -0.12980055809020996, -0.050402190536260605, 1.1994563341140747, 0.47938624024391174, -0.5948936343193054, -0.2950097322463989, 0.7711018919944763, -0.39434999227523804, -0.04120960459113121, 0.003245447762310505, -0.15646158158779144, 0.7597277760505676, -0.2338426560163498, -1.2354531288146973, -0.0019259881228208542, 0.4760305881500244, 0.5613908767700195, 1.177098035812378, 1.2343858480453491, -0.5825465321540833, -0.07795260101556778, 0.03320511430501938, -0.23045435547828674, -0.5087205171585083, -0.3950258493423462, -0.5000473260879517, -1.1414384841918945, -0.05629738047719002, -0.603333055973053, -0.096115343272686, 0.4412396252155304, 0.8921621441841125, 0.9293622374534607, 1.2437492609024048, -0.8456655740737915, -0.09385109692811966, 0.2868187725543976, -0.49283331632614136, -0.24326376616954803, 0.5000544786453247, 0.0061093345284461975, -1.0732626914978027, -0.7026934623718262, -0.17749013006687164, -0.08630825579166412, 0.9244689345359802, 0.03700510039925575, 0.5292693376541138, -1.1631879806518555, -1.198598861694336, 0.006082406733185053, 0.9324426651000977, 0.7012824416160583, -0.7367863059043884, -0.9348483085632324, 0.2572663426399231, 1.1820532083511353, 0.15408891439437866, -0.7561982274055481, 0.4498808681964874, -0.5703365206718445, -0.14795029163360596, -0.6913310289382935, 0.23660136759281158, 1.1968470811843872, -0.05775130167603493, -0.7037653923034668, 0.13647522032260895, -0.2962535321712494, -0.6939782500267029, -0.1229700967669487, -0.36387473344802856, 0.5953975915908813, 0.10005046427249908, 0.23757906258106232, 1.174670934677124, -1.0731441974639893, -0.35519784688949585, -1.949455976486206, 0.6805110573768616, 0.7494344711303711, 1.6174179315567017, 0.05815001204609871, 0.8967553973197937, 0.5716128945350647, -1.0347094535827637, -0.05886898189783096, 0.3014673590660095, 0.7975279092788696, 0.0609356127679348, -0.618644118309021, -0.2727477252483368, -0.658635139465332, -0.4984823167324066, -0.8036763072013855, -0.3704165518283844, 0.20880907773971558, -0.8138024806976318, -0.17663922905921936, 0.9466572403907776, 1.2262436151504517, -0.6977943181991577, -0.30488523840904236, -0.1256321370601654, 0.12485852837562561, 0.04086794704198837, -0.027081752195954323, -0.3743429481983185, -0.6891036629676819, 0.6400295495986938, -0.7701602578163147, 0.03723359853029251, 0.40743640065193176, -0.059030722826719284, 0.46043795347213745, -1.4199540615081787, 0.33511093258857727, -0.4962400794029236, 0.269931823015213, 0.7525478601455688, 0.046490419656038284, 0.25974249839782715, 0.4933004379272461, 0.4511614739894867, -0.19910338521003723, -0.24206750094890594, 1.4874720573425293, -0.008577506989240646, 0.03424433246254921, -0.49904850125312805, 0.22364924848079681, 0.6274279356002808, -0.08874411135911942, -0.9246491193771362, 0.8294346928596497, -0.39807388186454773, 0.6855056285858154, 0.6771873831748962, 0.4239034652709961, 1.7953749895095825, 0.2549557089805603, 0.15729789435863495, 0.6427227258682251, 0.21807147562503815, 0.11309998482465744, -0.388492614030838, 0.17419838905334473, -0.6376680135726929, -0.4142225980758667, 0.2007588893175125, 0.4058276414871216, -0.4412630498409271, 0.3041677176952362, 0.8777377605438232, 0.0888001024723053, 0.24559831619262695, -0.22660596668720245, 0.9255492687225342, 0.605407178401947, 0.724521279335022, 0.1802813857793808, 0.4344205856323242, 0.3214409053325653, -0.7980111241340637, 1.1350624561309814, -0.7862259149551392, 0.34823596477508545, 0.19371525943279266, -0.1272325962781906, 1.2675098180770874, -1.1046257019042969, -1.1460963487625122, 0.44176843762397766, 0.11102329939603806, 0.6856111288070679, 0.6823099851608276, 0.9583468437194824, -0.5335560441017151, -0.1484338790178299, 0.7514095306396484, -0.5300704836845398, 0.865038275718689, 0.45363157987594604, -0.515760600566864, 0.12176595628261566, -0.9363041520118713, -0.13063345849514008, -0.921276330947876, -0.10183224081993103, 0.04946433752775192, -0.7286337018013, 0.6994469165802002, 0.5792990326881409, 0.4005403518676758, 0.0761917233467102, -0.36162909865379333, -0.9090496301651001, 0.784273624420166, -1.0029276609420776, -0.07925519347190857, -0.04164682328701019, -1.0870311260223389, -0.46741071343421936, 0.03550216928124428, -0.8849486112594604, -0.6259102821350098, -1.061279296875, 0.1768287867307663, 0.3279184401035309, -0.9233107566833496, -0.07229353487491608, 0.6890672445297241, 1.0292500257492065, 0.839449942111969, -0.06778512895107269, 0.1320764422416687, 1.0942453145980835, -0.7558718919754028, -0.1433679312467575, -0.15643520653247833, -0.32024499773979187, -0.40039169788360596, -0.6613218784332275, -0.985000491142273, 1.5213037729263306, 0.5397953391075134, -0.2008591592311859, 0.01875295676290989, 0.5244477391242981, 2.1200613975524902, -0.3293227553367615, -1.2540621757507324, 0.2830306589603424, -0.6774961352348328, 0.40638503432273865, 0.6741753816604614, -0.5374304056167603, -0.41465872526168823, -0.6916823387145996, -1.0474159717559814, 1.7345592975616455, 0.2572042644023895, 0.10527462512254715, 1.0474146604537964, 1.088413119316101, -0.08884676545858383, 0.7745598554611206, -0.23479075729846954, -0.1656913161277771, 0.16036254167556763, -0.09542485326528549, -0.7599166035652161, 1.020142912864685, 0.6048182845115662, -0.21665385365486145, -0.5161817073822021, -0.08656270056962967, -0.9237484931945801, -0.21173100173473358, -0.2835562825202942, 0.19582276046276093, -0.04607764258980751, 0.21266408264636993, 0.1894795000553131, -0.49377861618995667, -0.23223061859607697, -0.4803473651409149, 0.34725579619407654, 0.14110951125621796, 1.1116732358932495, -0.11388327181339264, -1.0605872869491577, 0.554672360420227, -0.5177614092826843, 0.06086304038763046, -0.14950411021709442, -0.3738611042499542, 1.1773651838302612, 0.5413360595703125, -0.35950368642807007, 0.8871651887893677, -0.5247299075126648, -0.14985251426696777, 0.09865086525678635, -0.2592027187347412, 0.59367436170578, -1.415040135383606, -0.03226128965616226, -0.1398688107728958, -0.5324447154998779, 0.646484375, 0.6579982042312622, -0.17572259902954102, -0.6519213914871216, -1.3350493907928467, -0.5991021990776062, -0.1327095925807953, 0.4220989942550659, -0.4733627438545227, -0.00952630490064621, 0.5970695614814758, -1.3702102899551392, 0.571147620677948, 0.36952659487724304, -1.1951789855957031, -0.2314872294664383, -1.1837782859802246, 0.440395325422287, 0.1207907646894455, -0.16721035540103912, -0.5685228109359741, 0.530775785446167, -0.7415308356285095, -0.7902831435203552, -1.064816951751709, -0.568311870098114, 1.087231993675232, 1.1197786331176758, -0.9452452659606934, 0.9186781644821167, 0.23639146983623505, -0.6444017887115479, -0.2742254436016083, 0.16223472356796265, -0.34272444248199463, -0.0850803479552269, 0.4799179136753082, -0.3404048979282379, 0.4411350190639496, 1.4862850904464722, 1.1760865449905396, 1.0254863500595093, 0.6681122779846191, 0.5704545378684998, -1.4875437021255493, -0.6101895570755005, -0.32102617621421814, -0.216542586684227, -0.4390382468700409, 0.0002483595162630081, -0.6091984510421753, -0.8560336232185364, -0.1135922223329544, 1.0687379837036133, 0.4730238914489746, -0.7744724154472351, 0.20381218194961548, -0.9537768959999084, 0.08432914316654205, -0.2777103781700134, 0.7087712287902832, 0.16053137183189392, -0.5902140140533447, 0.646687388420105, -0.4701366424560547, -0.6673213839530945, -0.5826894044876099, -0.10852508991956711, -0.16437627375125885, 0.6515175700187683, -0.23436647653579712, 0.18543939292430878, 0.2773040235042572, 0.14065252244472504, -0.7762607932090759, 1.6528189182281494, 0.7209967970848083, 0.06603194028139114, 0.2296469509601593, 0.13807855546474457, -0.16400043666362762, 0.35192251205444336, -0.2999703586101532, 0.5606278777122498, -1.0972323417663574, 0.2915552854537964, -0.25853800773620605, 0.15292081236839294, -0.6018409729003906, 0.7734764218330383, -0.5945636034011841, 0.2977895736694336, 0.9848122000694275, 0.07765579223632812, -0.7974967956542969, 0.7891495227813721, 0.9073331356048584, -0.5430256128311157, 0.49476930499076843, -0.33819568157196045, 0.4255222678184509, -0.016351565718650818, 0.5157907009124756, 0.7477936148643494, -0.7055864334106445, 0.7295881509780884, 1.040818452835083, -0.3605978488922119, -0.015241516754031181, -0.6150040626525879, -1.532182216644287, -0.1310088336467743, -1.0469180345535278, -0.9143177270889282, 0.1624259650707245, -0.603603184223175, -1.0683562755584717, 0.5003989338874817, -0.11315064877271652, 0.6235678791999817, -0.7136950492858887, 0.353656142950058, -0.5176886916160583, -0.023247143253684044, 0.3211463391780853, 0.14740918576717377, 0.7262040376663208, -0.41521087288856506, -0.30818280577659607, -0.5535506010055542, -0.016418419778347015, 0.26309144496917725, 0.45886102318763733, -0.05035475268959999, -0.18514394760131836, 0.0044047096744179726, -0.4212413728237152, -0.6837453842163086, 0.4309041202068329, 0.15484458208084106, 0.2136717289686203, -0.3979029357433319, -0.8690661191940308, 0.8428880572319031, 0.45906174182891846, -0.47904330492019653, 0.05745164304971695, -0.492052286863327, -0.8457702398300171, 0.028598275035619736, -0.03199762850999832, 0.7371949553489685, -0.6992352604866028, 1.0537844896316528, 0.2747802138328552, 0.07869086414575577, 0.09563557058572769, -0.28593647480010986, 0.5659099221229553, -0.12594814598560333, 0.8419446349143982, -0.1070147454738617, -0.9540931582450867, 0.7867504954338074, -0.9118250012397766, -0.0631726011633873, 0.582797646522522, 0.38446903228759766, 0.49889105558395386, -0.9945805072784424, -0.7658331394195557, -0.3687763810157776, 0.20507344603538513, 0.30770644545555115, 0.39807644486427307, 0.04219917207956314, -0.6010742783546448, -0.42893674969673157, -0.00802002102136612, 0.038615792989730835, 0.15119145810604095, 0.4566469192504883, 1.4551435708999634, 1.9737361669540405, -0.17938706278800964, -0.05808284506201744, -0.07396317273378372, 0.7234983444213867, -0.9083318114280701, -0.34917962551116943, -0.8852024078369141, 0.12595385313034058, -0.10096025466918945], [-0.1214422658085823, 1.8893104791641235, -2.171353816986084, -1.2179760932922363, -0.4337505102157593, -0.42902183532714844, 0.293069988489151, 0.16808636486530304, -0.12580616772174835, -0.7120541930198669, -1.5613787174224854, -0.1080901026725769, 1.6293697357177734, 1.2152396440505981, 0.6792392134666443, 0.8259853720664978, 1.021634578704834, -0.09292273968458176, 0.35895901918411255, 1.0810900926589966, -0.4000263512134552, -0.8564921617507935, -0.6927168965339661, -0.17095935344696045, 0.46570104360580444, 0.3022700250148773, -1.483831763267517, -0.15010277926921844, -1.4971582889556885, -1.2769150733947754, 0.28286951780319214, -0.6677533388137817, 0.14759495854377747, -0.18134063482284546, -1.6220715045928955, -0.0837029218673706, 1.4595497846603394, 0.32355332374572754, -0.005281446501612663, 1.2210115194320679, 2.337949275970459, 0.012358391657471657, 0.34335508942604065, -1.1621965169906616, 0.7219018340110779, -0.282672256231308, 0.3443982005119324, -1.2620495557785034, -0.5559506416320801, -0.37523892521858215, 0.3265064060688019, 0.5033783912658691, 0.10565221309661865, 1.002310872077942, 1.160175085067749, 0.29370591044425964, -0.5956149697303772, 0.4205615222454071, -0.5515509247779846, 0.5294821262359619, 1.4410827159881592, 0.4186648726463318, -0.5202636122703552, 0.255381315946579, 0.3201759457588196, -0.008248621597886086, 0.13125090301036835, 0.6405606269836426, -0.5986405611038208, -0.34683674573898315, 0.16791993379592896, 0.9537544846534729, -0.3435222804546356, 0.2396754026412964, -1.489810824394226, 0.46230119466781616, 0.7539380788803101, 0.4971613585948944, -0.12653298676013947, 1.5644371509552002, -1.0566227436065674, -0.1408921182155609, 0.261625736951828, -0.48901990056037903, 0.7685444951057434, -0.04747965186834335, 0.3381432592868805, -0.3755095899105072, -0.6759853363037109, 1.1093688011169434, -0.1406901329755783, 0.5134124755859375, 0.2557298243045807, -0.05174338072538376, -0.3693380355834961, -0.7606302499771118, 0.34284430742263794, -0.7246279120445251, -0.3335629403591156, -0.948428213596344, -0.6316001415252686, -1.1394379138946533, 0.8270927667617798, 0.6274236440658569, 1.0888142585754395, 1.3131757974624634, 0.3211301565170288, -1.6313496828079224, -0.7738749384880066, 0.19021470844745636, -0.12628403306007385, -0.37653183937072754, -1.172653317451477, -1.44255793094635, -0.7021283507347107, 0.574174702167511, 0.4095590114593506, -0.7284795045852661, 1.1711914539337158, 0.42703455686569214, -0.8792621493339539, -0.7370322346687317, -0.15246258676052094, 0.6211805939674377, 0.7869606018066406, 0.3981724679470062, -0.7025400400161743, -0.32723191380500793, 0.06652764230966568, 0.20700837671756744, 0.7953693270683289, 0.09783682972192764, -0.6384106874465942, 1.280991554260254, -0.136733278632164, 0.9038125872612, -0.24280530214309692, -0.7401344180107117, -0.041991423815488815, -0.07337657362222672, 0.34011492133140564, -0.6499128937721252, -0.8633188009262085, -0.7826026082038879, -0.04039369896054268, -0.5309470295906067, 0.3407379984855652, -0.19836056232452393, -0.5943408608436584, -0.25019145011901855, -1.2005659341812134, 0.6905947327613831, 0.17138293385505676, 1.236232876777649, 0.3435150384902954, 0.3132436275482178, 0.8719455003738403, -0.25466546416282654, -0.09858351200819016, 0.5435689091682434, 0.6658064723014832, 0.1419268250465393, -0.5768641233444214, 1.1180421113967896, 0.1616918444633484, -0.4473206698894501, 0.4988977015018463, 0.049685850739479065, -0.13446453213691711, 0.26875415444374084, -0.34285271167755127, -0.23730002343654633, -0.23533391952514648, 0.4831063151359558, 0.48787012696266174, -1.215457797050476, 0.937103271484375, -0.4539896249771118, -0.9831951260566711, -1.0743380784988403, 0.9047404527664185, -0.6571308970451355, 0.17111773788928986, -0.17302639782428741, 0.7193027138710022, -0.10209168493747711, -0.36310476064682007, -0.28258785605430603, -0.2646048069000244, -0.39521753787994385, -1.0490418672561646, -0.07378882169723511, -0.9096269011497498, 0.07970687747001648, -0.9705578684806824, -1.1991499662399292, 0.4932737946510315, 0.20363932847976685, -0.8422999978065491, -0.04721242934465408, -0.2204819768667221, -0.22742420434951782, -1.7964816093444824, -0.03849737346172333, -0.9808156490325928, 1.3558107614517212, -0.4062361717224121, 0.0605308897793293, -1.0706148147583008, 0.1697906255722046, 0.7626381516456604, 0.3271149694919586, -0.9089388847351074, 0.7948146462440491, 0.6060869097709656, -0.9562383890151978, 0.015227047726511955, -0.2608870565891266, 0.46925923228263855, 0.22751878201961517, 1.1370196342468262, 0.35391417145729065, 0.812887966632843, 0.1426059901714325, 0.6118062138557434, -0.09585577994585037, -0.9569942355155945, -0.714756429195404, -1.0088260173797607, 0.27805376052856445, -0.9947325587272644, -0.536317765712738, 0.7631195187568665, 1.1814790964126587, -0.6926831603050232, 1.1003732681274414, -0.29844650626182556, 0.34451350569725037, 0.5262443423271179, 0.7063761949539185, 0.3172299563884735, 0.09707924723625183, -0.5454493761062622, -0.2554917633533478, -0.3583887815475464, 0.5203452110290527, 0.9105277061462402, -0.4898413419723511, -0.11658783257007599, 1.5063755512237549, 0.20900385081768036, -0.2335628867149353, 0.773837149143219, 0.6054639220237732, -0.6078912019729614, -0.7156235575675964, -0.30301934480667114, -0.1137721985578537, -0.5591623187065125, 1.2903757095336914, 0.9019679427146912, -1.6845589876174927, -0.5854050517082214, -0.46709683537483215, 0.05744538456201553, -0.6458957195281982, 0.16649314761161804, -0.5321776866912842, 0.7368824481964111, -0.03573179617524147, 0.020063744857907295, 0.2014179676771164, -0.13020837306976318, 0.9887766242027283, -0.18657320737838745, -0.3269086182117462, -0.2291250377893448, 0.6380524039268494, -0.002194315195083618, 1.0129073858261108, 0.36424264311790466, -1.873823642730713, -0.6918829083442688, -0.5509839653968811, 0.9523897767066956, 0.10114943236112595, -0.4267295002937317, 1.3438122272491455, 0.5852529406547546, -0.8275532126426697, 0.017851263284683228, 0.22259774804115295, -0.25157496333122253, -0.21222108602523804, -0.5332235097885132, 0.18018504977226257, 0.49181899428367615, -0.5968270301818848, -0.6926625967025757, 0.0800282433629036, 0.3119564354419708, 1.1265778541564941, 1.0339634418487549, 1.3471705913543701, 0.06003174930810928, -0.25123506784439087, -0.3918660581111908, 0.2606426179409027, -0.3264835476875305, -0.12838828563690186, -0.3850551247596741, -1.1213380098342896, -0.190294086933136, -1.0121763944625854, -0.11108847707509995, 0.8832991719245911, -0.10672692209482193, 0.6619689464569092, 0.6275782585144043, -0.8463377356529236, -0.7784180641174316, -0.22987309098243713, 0.12778069078922272, -1.0092406272888184, 0.6133460998535156, 0.524682879447937, -0.8966416120529175, -0.06566081941127777, 0.3789575695991516, -0.06798528879880905, 0.5613324046134949, -0.2990441918373108, 0.2709372341632843, -0.9215561747550964, -0.2564444839954376, 0.2585601508617401, 1.270530104637146, 0.14169640839099884, -0.5047624707221985, -0.16555388271808624, -0.2563401460647583, 0.011444631963968277, 0.0015545031055808067, -0.6718726754188538, 0.433857798576355, -0.1654677540063858, -0.5510338544845581, -0.9669846892356873, 0.4115452766418457, 1.2902939319610596, -0.39179348945617676, -0.057342976331710815, -0.11198753118515015, -0.08534259349107742, -0.005741363391280174, 0.6766026616096497, -0.29453882575035095, 1.7289525270462036, -0.24834276735782623, 0.26216110587120056, 1.119110107421875, -0.2331930696964264, 0.5579303503036499, -1.3962870836257935, 0.8862997889518738, 0.1636987179517746, 1.9719470739364624, 0.6532544493675232, 0.33482328057289124, 0.47710120677948, -0.46662116050720215, 0.012308333069086075, 0.3720490634441376, 0.7994100451469421, -0.14900539815425873, -0.6902524828910828, 0.011635661125183105, 0.19138818979263306, -0.26944926381111145, -0.6148755550384521, -0.36083754897117615, 0.3016693592071533, -0.6604841947555542, -0.090156190097332, 1.1068077087402344, 0.27921003103256226, -0.6092268228530884, 0.09631615877151489, 0.49875855445861816, -0.3560705780982971, -0.08378826081752777, -0.37441354990005493, -0.3169892132282257, 0.016650717705488205, 0.40057677030563354, -0.8270885944366455, -0.48612546920776367, -0.0675325021147728, -0.10108856111764908, 0.5484704971313477, -0.9140429496765137, -0.5320094227790833, -0.558455765247345, -0.384225457906723, 0.6620818972587585, 0.3002844750881195, 0.5565375089645386, 0.04325129836797714, 0.2398376613855362, -0.2292241007089615, 0.13701891899108887, 1.479854702949524, 0.25000011920928955, -0.037126556038856506, -0.746598482131958, -0.2997109293937683, 0.3132004737854004, -0.2035840004682541, -0.6188220381736755, -0.08594360202550888, -0.7401507496833801, 0.19018356502056122, 0.13254541158676147, -0.07145027071237564, 1.851367473602295, 0.11957304179668427, 0.46695974469184875, 0.7760671973228455, -0.03191698342561722, -0.7738973498344421, 0.21515138447284698, 0.4472384452819824, -0.10411244630813599, -0.49431538581848145, 0.39224255084991455, 0.5315482020378113, 0.21450814604759216, 0.5377742052078247, -0.03973909839987755, 0.8011224865913391, 0.1079375222325325, -0.10100170969963074, 0.5161091089248657, 0.6512356400489807, 0.9501656889915466, 0.3392740786075592, 0.8953402042388916, -0.5236456990242004, -0.8112086653709412, 1.066005825996399, 0.3257806599140167, 0.6003717184066772, 0.01373166125267744, 0.674911618232727, 1.5531816482543945, -1.278407335281372, -0.6330662965774536, 0.3472263514995575, -0.041830070316791534, 0.481231153011322, 1.069953441619873, 1.1069227457046509, -1.1572405099868774, -0.10000867396593094, 0.7310740947723389, -0.47311171889305115, 0.5323832631111145, -0.541646420955658, -0.3119921088218689, 0.3822494447231293, -0.45085734128952026, 0.18269263207912445, -0.778237521648407, -0.5392878651618958, 0.5946372747421265, -0.31295961141586304, 0.3088516592979431, 0.33808550238609314, -0.08458522707223892, 1.103682041168213, -0.38577061891555786, -1.2432674169540405, 0.511855959892273, -0.8915235996246338, 0.12467856705188751, 0.022260263562202454, -0.7733922004699707, -0.775421679019928, -0.8591905832290649, -0.5501366853713989, -0.1302538961172104, -1.389685869216919, 0.07917126268148422, 0.21232585608959198, -1.505449891090393, 0.3764747381210327, 0.5700858235359192, 1.2882040739059448, 1.3733357191085815, 0.2651125490665436, 0.7480145692825317, 0.07415823638439178, -0.7378353476524353, 0.37168583273887634, 0.3430250883102417, -0.61518394947052, 0.40208882093429565, -1.2497044801712036, -0.7798494100570679, 1.0528342723846436, 0.6715684533119202, 0.3300839364528656, -0.08144187927246094, 0.30804571509361267, 1.603597640991211, -0.5169647336006165, -1.2737237215042114, 0.17517563700675964, -0.7144507765769958, 0.5827880501747131, 0.3335144519805908, -1.249537706375122, -1.0021953582763672, 0.14912639558315277, -1.5001994371414185, 1.4765293598175049, 0.2261260598897934, -0.8766857981681824, 0.8534791469573975, 0.6068505048751831, 0.2763601541519165, 0.9160007834434509, -1.296670913696289, -0.21077817678451538, 0.8792492747306824, -0.8489164113998413, -1.0668493509292603, 0.28751593828201294, 0.27342623472213745, 0.6919949054718018, 0.07513385266065598, 0.28738677501678467, -0.025748930871486664, -0.3120192587375641, 0.5784210562705994, 0.314895361661911, 0.8312138319015503, 0.4087921679019928, 0.34966689348220825, -0.5613325238227844, -0.36703425645828247, -0.7862584590911865, 0.22565098106861115, 0.0784272849559784, 1.5952105522155762, -0.09854072332382202, -0.8669303059577942, 0.12474959343671799, -0.28318527340888977, -0.08526443690061569, -0.13627879321575165, -0.8782751560211182, 1.2754262685775757, 0.816886305809021, -0.2684653103351593, 0.45059970021247864, -0.45754939317703247, -0.15945906937122345, -0.24441643059253693, 0.01600741222500801, 0.782900869846344, -1.8902227878570557, -0.5752298831939697, -0.22915881872177124, 0.3416370749473572, 0.10150805860757828, 0.8342620134353638, -0.4695037603378296, -0.7255626320838928, -1.410791039466858, -0.6577997207641602, -0.3597356081008911, 0.39992910623550415, -0.6241804361343384, 0.2263399064540863, 0.21132421493530273, -1.5107024908065796, 0.7507140040397644, -0.46178603172302246, -1.3155148029327393, -0.7448266744613647, -1.326465368270874, 1.2110344171524048, 0.3611544966697693, -0.03974057361483574, -0.08055096864700317, 0.8393981456756592, -0.19290687143802643, -0.2643035650253296, -1.3218859434127808, 0.32917216420173645, 0.706987738609314, 1.4866721630096436, -0.9002601504325867, 0.5919802188873291, -0.09150632470846176, -0.38601529598236084, 0.3294070363044739, 0.26519420742988586, -0.22862263023853302, 0.01877419650554657, 0.22502894699573517, -0.08613979071378708, 0.5530230402946472, 1.318474531173706, 0.818090558052063, 1.2783585786819458, -0.06386090815067291, 0.3964959681034088, -1.1309109926223755, -0.3178098797798157, -0.6418039798736572, -0.028836041688919067, -1.0038596391677856, -0.5760231018066406, 0.06881360709667206, -0.9656537175178528, -0.37434184551239014, 0.7294227480888367, 0.9545757174491882, -0.49674639105796814, 0.04862697795033455, -0.0316658690571785, 0.38931283354759216, -0.9377942681312561, 0.830293595790863, -0.17936290800571442, -0.6703878045082092, -0.035915639251470566, 0.03248569741845131, -0.4282810091972351, -0.6045848727226257, -0.01329678762704134, -0.06843408197164536, 0.7899158596992493, -0.3091745674610138, 0.6670146584510803, 0.6470058560371399, -0.2332729995250702, -0.5977551341056824, 1.3842946290969849, 0.9119088649749756, 0.10676246881484985, 0.192172110080719, 0.2011822611093521, -0.5696112513542175, 0.5100170969963074, -0.48013797402381897, -0.138092502951622, -0.7095718383789062, 0.7120043635368347, -0.22847159206867218, -0.2995108366012573, -1.0526434183120728, 0.6241455078125, 0.2823885381221771, -0.2124866396188736, 0.9564538598060608, -0.33309710025787354, -0.2907344400882721, 0.5600178837776184, 0.8569314479827881, -0.5728701949119568, 0.023881321772933006, 0.1757853478193283, 0.8264719247817993, -0.17821839451789856, 0.2924339175224304, 0.27948418259620667, -0.6628345251083374, 0.7543356418609619, 0.6792128682136536, -1.126900315284729, -0.40660277009010315, -0.8680071234703064, -1.5103834867477417, -0.1633264571428299, 0.010075908154249191, -0.1978531926870346, 0.43339037895202637, -0.9178006052970886, -0.8276124596595764, -0.25767752528190613, 0.0395195297896862, 0.5406925678253174, -0.5302441716194153, 0.2461225986480713, -0.23932482302188873, 0.5393781065940857, 1.6802431344985962, -0.4689209461212158, 0.9866465330123901, -0.1561133712530136, -0.15200090408325195, -0.4441101849079132, -0.4156172573566437, -0.030535414814949036, 0.06652912497520447, 0.18045920133590698, -0.5305324196815491, 0.24959026277065277, -0.8800625801086426, -0.8375734686851501, 0.3832990825176239, 0.43788468837738037, 0.8727053999900818, -0.29988589882850647, -1.0823458433151245, -0.5216294527053833, 0.9513165354728699, 0.4740258753299713, -0.6254826188087463, -0.36454740166664124, 0.33021074533462524, 0.033932339400053024, -0.04729611054062843, 0.33034542202949524, -0.5614635944366455, 0.9302276372909546, 0.5450260639190674, 0.07815572619438171, -0.3472231924533844, -0.38001707196235657, 0.5974407196044922, -0.3644396960735321, 0.545967161655426, -0.27150943875312805, -0.8886255025863647, 0.387371689081192, -0.3366263508796692, -0.20808295905590057, 0.044974975287914276, -0.29044345021247864, 0.42981523275375366, -0.418573796749115, -1.1025804281234741, -0.7227197289466858, -0.21866904199123383, 0.5261120796203613, 0.4649994671344757, 0.46908244490623474, -0.323370099067688, -0.9754362106323242, 0.16895389556884766, 0.5440739393234253, 0.2733892798423767, 0.4921693801879883, 2.0662193298339844, 1.8237566947937012, 0.2541332542896271, -0.3948769271373749, -0.4380497336387634, 0.8769128918647766, -0.9140369892120361, -0.31101611256599426, -0.9564169049263, 0.07091821730136871, -0.031131554394960403], [0.11644572764635086, 2.1576526165008545, -2.6517295837402344, -0.022288374602794647, -0.12484635412693024, 0.9428777694702148, 1.1257998943328857, 0.0950293242931366, 0.18607285618782043, -0.5420606732368469, -0.9097602963447571, -0.20999562740325928, 1.469442367553711, 0.687542736530304, 0.12088720500469208, 0.8881455063819885, 0.06341595202684402, 0.11256489902734756, 0.42927518486976624, 1.0808777809143066, -0.9535578489303589, -1.0781683921813965, -0.6513205170631409, 0.24048252403736115, -0.7024612426757812, 0.03283003717660904, -1.4287365674972534, 0.16441090404987335, -0.10771307349205017, -0.8159334063529968, 0.4085315465927124, -0.9846552014350891, -0.33512574434280396, -0.22729839384555817, -1.1477307081222534, 0.09004657715559006, 0.8481395244598389, 0.582700252532959, 0.5178256630897522, 1.0539729595184326, 2.103078603744507, -0.19858740270137787, -0.3437056243419647, -1.0077641010284424, 0.6605431437492371, -0.5031432509422302, 0.25987470149993896, -0.9058035016059875, 0.522663950920105, 0.04477279260754585, 0.44620755314826965, 0.14062978327274323, 0.7861235737800598, 0.5026877522468567, 1.2450515031814575, -1.000605821609497, 0.33655375242233276, -0.719650149345398, 0.6603564023971558, -0.26429009437561035, 0.9604169726371765, -0.05424385517835617, 0.47424373030662537, 0.8821870684623718, 0.6237388849258423, -0.37645694613456726, 0.21541738510131836, 0.23509185016155243, -0.42467015981674194, -0.34357431530952454, 0.4607401192188263, 0.35740527510643005, -0.31790366768836975, 0.09965341538190842, 0.3500019907951355, 0.21980829536914825, 0.25063490867614746, 0.8214877247810364, -0.22410158812999725, 1.1702800989151, -0.5947287082672119, 0.1704091876745224, 0.340124249458313, -0.2709653377532959, 0.5603444576263428, 0.08162936568260193, 0.4781586825847626, -0.3695225715637207, -0.04296819493174553, 1.4989676475524902, 1.0863335132598877, 0.1554533690214157, 0.396694153547287, 0.4030536115169525, 0.5137425661087036, -1.2585763931274414, 0.026529543101787567, -0.7973188161849976, -0.5884743928909302, -0.7219292521476746, -0.9545069932937622, -0.8918075561523438, 0.6967262625694275, 0.4838225841522217, 0.9248968958854675, 1.8822325468063354, 0.08572676032781601, -0.7379445433616638, -0.508042573928833, 0.2360982745885849, 0.4331081211566925, -0.4144670069217682, -0.9129753112792969, -0.8670163154602051, -0.687808632850647, 0.5066633224487305, 0.9284728765487671, -0.3308965563774109, 0.7511893510818481, 0.5292693376541138, -0.5771473050117493, -0.7663537263870239, -0.7657594680786133, 0.45840969681739807, 0.4445977807044983, 0.1915697157382965, -1.081720232963562, 0.34304380416870117, -0.0210097748786211, 0.20014332234859467, 0.37254515290260315, 0.8878737688064575, 0.36731839179992676, 0.896052360534668, -0.30159398913383484, 1.0011613368988037, -0.9990204572677612, -0.9315657019615173, -0.3222246468067169, -0.05211425945162773, 0.18552711606025696, -0.5540814399719238, -0.8127016425132751, -1.1025145053863525, -0.7089483737945557, 0.12022148072719574, 0.6455085873603821, -0.13648223876953125, -0.6510499119758606, -0.0968594029545784, -1.540099024772644, 1.2043566703796387, -0.5461776256561279, 0.5043600797653198, 0.6816948056221008, -0.41775649785995483, 0.4797323942184448, 0.6061434149742126, 0.05444268509745598, 0.276388019323349, 0.5639711618423462, 0.5578948855400085, 0.016881633549928665, 0.9573560953140259, 0.3307035267353058, -0.5586946606636047, 0.37337103486061096, -0.08854028582572937, -0.251920223236084, 0.7549899816513062, -0.3686692416667938, -0.3699682950973511, -0.9816839098930359, 0.13857176899909973, 0.09484731405973434, -1.2544254064559937, 0.4864654242992401, -0.726498544216156, -0.7708646059036255, -1.3952826261520386, -0.027748916298151016, -0.28978484869003296, 0.1011253148317337, 0.19848506152629852, 0.8558818697929382, -0.38813090324401855, -0.4732321798801422, -0.3669661581516266, -0.9840221405029297, -1.0762724876403809, -1.2924879789352417, 0.2822256088256836, -1.5044593811035156, 0.46995386481285095, -0.6856573820114136, -0.2922225892543793, 0.9838442206382751, -0.3505100607872009, -0.8100651502609253, -0.19833557307720184, -0.1813289225101471, -0.43385669589042664, -1.3935593366622925, 0.21208630502223969, -0.48010408878326416, 0.876224160194397, -0.7111914753913879, 0.8108897805213928, -0.7752517461776733, -0.0031121023930609226, 0.5677801370620728, 0.45664235949516296, -0.7908223271369934, 0.22071042656898499, -0.0863257572054863, -1.1986089944839478, -0.3797539472579956, -0.1947030872106552, -0.17285282909870148, -0.07317854464054108, 0.9643836617469788, 0.01984523981809616, 0.9661247730255127, 0.1751454919576645, 0.7358176708221436, -0.8138968348503113, -0.40546825528144836, -0.629758358001709, -0.6662985682487488, 0.27843818068504333, -0.23758065700531006, -1.1786236763000488, 1.2545017004013062, 0.5692813992500305, -1.3265655040740967, 1.328932762145996, -0.22922970354557037, 0.043006088584661484, -0.11262015998363495, 0.25439587235450745, 0.8956817388534546, 0.201155424118042, -0.6447358131408691, -0.6099677085876465, -0.3792811930179596, 0.40925848484039307, 0.7759672999382019, -0.15739800035953522, -0.3335353136062622, 1.650312900543213, 0.917970597743988, -0.07574746757745743, 0.5344344973564148, 0.43222108483314514, -0.053552042692899704, -1.1136012077331543, -0.17517510056495667, 0.11466880142688751, -0.4608565866947174, 0.9592297673225403, 0.6811979413032532, -0.9459715485572815, -0.3913155496120453, 0.04196719080209732, 0.032895900309085846, -0.15957526862621307, -0.37007224559783936, -0.7470859885215759, 0.5010102987289429, -0.3626053035259247, 0.14713050425052643, 0.05526379868388176, -0.43220412731170654, 0.9843392968177795, -0.21571145951747894, -0.46941614151000977, 0.14399227499961853, 0.8486002087593079, 0.12492506951093674, 1.0047500133514404, -0.2744814455509186, -1.2642321586608887, -0.607218861579895, 0.11030040681362152, 1.109913945198059, 0.020650584250688553, 0.29044950008392334, 0.7394384741783142, 1.0609031915664673, -0.31009840965270996, 0.4351555407047272, 0.7184047698974609, 0.12752029299736023, 0.12863688170909882, 0.04220813512802124, 0.6250139474868774, 0.6032581329345703, -0.37782323360443115, -0.9995368123054504, 0.42845577001571655, 0.45574456453323364, 0.4639984667301178, 0.9591046571731567, 1.4109535217285156, -0.3785282373428345, -0.22223159670829773, -0.4924659729003906, -0.17816287279129028, -0.4737459719181061, -0.7246139645576477, -0.7614246010780334, -0.736473798751831, 0.38821521401405334, -0.5993698239326477, -0.1915874183177948, 0.7534549832344055, -0.44913557171821594, 0.21859949827194214, 0.585009753704071, -0.23678387701511383, -0.057642657309770584, -0.1703580766916275, 0.026851391419768333, -1.3051679134368896, 0.33843615651130676, 0.5410152077674866, -1.2816882133483887, -0.33973589539527893, 0.09707040339708328, 0.4943312704563141, 0.19177451729774475, 0.07689251750707626, 0.7584118247032166, -0.8557867407798767, -1.1444289684295654, 0.3060374855995178, 1.147040605545044, 0.7168311476707458, -0.3672578036785126, -0.9383818507194519, 0.30430710315704346, 0.7416155934333801, -0.29582953453063965, -0.5605125427246094, 0.17956902086734772, 0.5559912919998169, -0.9157528877258301, -0.13488294184207916, 0.034787483513355255, 0.507040798664093, -0.684897780418396, -0.5860170125961304, 0.050024330615997314, 0.1744416058063507, -0.5829084515571594, 0.3128000795841217, -0.49455565214157104, 1.0590434074401855, -0.24014948308467865, -0.4037279486656189, 0.46762627363204956, -0.31235364079475403, 0.37745460867881775, -2.0210518836975098, 0.34364062547683716, 0.28853389620780945, 1.2408684492111206, 0.4747806787490845, 0.6372948288917542, -0.017391787841916084, -1.0208415985107422, 0.04091496393084526, 0.31389302015304565, 0.9403578639030457, 0.24551501870155334, 0.18830503523349762, -0.09633630514144897, -0.618143618106842, 0.019392788410186768, -0.40093064308166504, -0.03755361959338188, 0.9516987204551697, -0.893975019454956, -0.20929747819900513, 0.8712700605392456, 0.0470147430896759, -0.8332956433296204, -0.6786016821861267, 0.4619393050670624, 0.2581550180912018, 0.06517938524484634, -0.30063730478286743, -0.7112256288528442, -0.4286439120769501, 0.5442707538604736, -0.7797309756278992, -0.820619523525238, -0.03241104260087013, 0.03689756244421005, 0.826687753200531, -0.7388357520103455, 0.09902837127447128, -1.0358078479766846, 0.13831685483455658, 0.5633536577224731, 0.3677096664905548, 0.3506169319152832, 0.3033173084259033, 0.2710902690887451, -0.5166162252426147, 0.1423099786043167, 1.6766448020935059, -0.06298961490392685, -0.5808942914009094, -0.15085400640964508, 0.7179898023605347, -0.18318714201450348, -0.7173587083816528, -0.35901519656181335, 0.4840128719806671, -0.6279918551445007, 0.05222000181674957, 0.43388238549232483, -0.11092943698167801, 1.630255937576294, 0.11887132376432419, -0.2644781768321991, -0.026514291763305664, -0.5819171667098999, -0.7100656628608704, 0.1666395664215088, 0.45275336503982544, -0.2541590929031372, -0.09206213802099228, 0.5217469930648804, 0.7395591735839844, 0.8232169151306152, 0.12644349038600922, 0.15093889832496643, 0.3317154347896576, 1.2378766536712646, -0.12046145647764206, 0.5750254392623901, 0.18369871377944946, 0.9273360967636108, 0.7555201649665833, 0.15817061066627502, 0.1429002285003662, -0.7259470224380493, 0.786897599697113, -0.5712032914161682, -0.3216152787208557, 0.3778969645500183, 0.038165535777807236, 1.0204166173934937, -2.1958189010620117, -0.27805769443511963, 0.2941528558731079, 0.3510790467262268, 0.14285875856876373, 0.3703644573688507, 0.3023664653301239, -1.286380648612976, 0.08997634053230286, 0.1649664044380188, -0.0008682562038302422, 0.05905866250395775, 0.5173171758651733, 0.2081553339958191, 0.49965694546699524, -0.5121811628341675, -0.29200679063796997, -0.4380805492401123, -0.09809843450784683, -0.43296945095062256, -0.25984305143356323, 0.2838384211063385, -0.3994345963001251, 0.6252975463867188, 0.9797396063804626, -0.6034662127494812, -0.8827933669090271, 0.4711459279060364, -1.377203106880188, 0.6707823276519775, -0.09047244489192963, -1.0362505912780762, -0.6766640543937683, -0.6003812551498413, -0.29993948340415955, 0.0578119233250618, -1.1082649230957031, 0.1274206042289734, -0.05616316944360733, -1.3121201992034912, -0.10973981767892838, 0.7598410844802856, 1.252471685409546, 1.3530473709106445, 0.13868466019630432, 0.9877708554267883, 0.08903589844703674, -0.8905518651008606, 0.07099543511867523, 0.6147943139076233, -0.4156089425086975, -0.5057874321937561, -1.0442599058151245, -0.8049352765083313, 1.057554006576538, 0.1642540991306305, 0.23212899267673492, -0.48110392689704895, 0.7880222201347351, 1.5142775774002075, -0.6795886754989624, -0.8852017521858215, 0.6789979338645935, -0.4064868092536926, 0.5575562715530396, 0.49785277247428894, -0.8973388075828552, 0.05357704311609268, 0.05506756529211998, -1.5769761800765991, 0.9949613809585571, -0.036222945898771286, -0.40338173508644104, 0.958954930305481, 0.3691959083080292, 0.5862270593643188, 0.9254629611968994, -1.2831637859344482, 0.010374479927122593, 0.33660513162612915, 0.4004173278808594, -0.8886725306510925, 0.943340003490448, 1.1671768426895142, -0.15977999567985535, 0.6594548225402832, 0.6222009062767029, -0.050387799739837646, 0.024575021117925644, 0.28489384055137634, -0.1388692706823349, 0.1334095150232315, 0.5273104906082153, 0.15499192476272583, -0.23169854283332825, 0.5334741473197937, -0.41880273818969727, -0.10482627153396606, 0.45399513840675354, 0.9510835409164429, 0.03657245263457298, -0.3410545587539673, 0.47369125485420227, -0.24275314807891846, 0.15617293119430542, 0.4850805997848511, 0.11430531740188599, 0.6012182831764221, -0.2329634428024292, 0.11372482776641846, 0.7713390588760376, 0.11120013892650604, -0.32585904002189636, -0.797305166721344, 0.02946636825799942, 0.39341166615486145, -1.1328296661376953, -0.48382285237312317, 0.3197769820690155, -0.2954353988170624, 0.28646165132522583, 0.04250108823180199, -0.18261995911598206, -1.1837754249572754, -1.7259595394134521, -0.3856836259365082, -0.8754299283027649, 0.3152647018432617, -0.5371546745300293, 0.9329638481140137, 0.08386893570423126, -1.6065673828125, 0.5866044759750366, 0.1679239571094513, -1.341735601425171, -0.41321173310279846, -0.5970957279205322, 0.44661328196525574, -0.47280991077423096, 0.5136011838912964, -0.2938002943992615, 0.34849098324775696, -0.5976315140724182, -0.7545130252838135, -0.5368701815605164, -0.43902328610420227, 0.40648624300956726, 1.4102190732955933, -1.2554130554199219, 0.9513294696807861, 0.43243733048439026, -0.0676010400056839, -0.18988493084907532, 0.35464420914649963, -0.9093438982963562, -0.20998381078243256, 0.4941541254520416, -0.029706357046961784, 0.15862011909484863, 1.3375061750411987, 0.7074348330497742, 1.0324703454971313, -0.11251436918973923, 0.7682092785835266, -0.9202717542648315, -0.7453364729881287, -0.11282757669687271, -0.1622486263513565, -1.0984437465667725, -0.4781795144081116, -0.0077330367639660835, -0.8312944173812866, -0.6605960130691528, 0.3564942479133606, 0.8929208517074585, -1.118309497833252, 0.33591681718826294, -0.6729608178138733, 0.7023782134056091, -0.3434784412384033, -0.2993256747722626, -0.21362411975860596, -0.3489736020565033, 0.28149929642677307, 0.1316506415605545, -0.2472493201494217, -1.03371262550354, -0.29945188760757446, 0.4166232645511627, 0.559460461139679, -0.8115965723991394, 0.8331050872802734, 0.21622323989868164, -0.06443801522254944, -0.12867394089698792, 0.872907817363739, 1.381210446357727, -0.4478488862514496, -0.04867401719093323, 0.044328343123197556, -0.8800223469734192, 0.6327608823776245, -1.2355549335479736, 0.013582533225417137, -0.8360537886619568, 1.0269312858581543, 0.22421373426914215, 0.20928366482257843, -0.6309187412261963, 0.42038288712501526, -0.45569881796836853, -0.05394718796014786, 0.45083045959472656, -0.8619840741157532, -0.20716553926467896, 0.6701790690422058, 0.8772875666618347, -0.2926202118396759, 0.5226000547409058, 0.3724357485771179, 0.8467893004417419, -0.2779397666454315, 0.5681763887405396, 0.013035953044891357, -0.21999205648899078, 0.43213677406311035, 0.5105466246604919, -0.07970502972602844, 0.4174633324146271, -0.45706310868263245, -1.429381251335144, 0.13820239901542664, -0.14477922022342682, -0.20152316987514496, 0.731172502040863, -1.0106505155563354, -0.9076792597770691, 0.16808471083641052, -0.09899559617042542, 0.22732488811016083, -0.0009877849370241165, -0.24268944561481476, -0.32777997851371765, 0.09957782924175262, 1.2271510362625122, -0.19611234962940216, 1.0585050582885742, -0.40328651666641235, -0.4625316262245178, -0.5543215274810791, -0.14291296899318695, -0.36404892802238464, 0.36013054847717285, -0.03248913958668709, -0.24046801030635834, 0.15871845185756683, -0.7697173357009888, -0.48755213618278503, 0.5084371566772461, 0.3515786826610565, 0.4848060607910156, 0.09714584797620773, -0.746111273765564, -0.5132423043251038, 0.37427738308906555, 0.7404612898826599, -0.06095424294471741, -0.7725396156311035, -0.5908479690551758, -0.24110116064548492, -0.004080981016159058, 0.5662029385566711, -0.5969614386558533, 0.5264069437980652, 0.7207852005958557, 0.21101014316082, -0.0804484561085701, -0.5091301202774048, -0.31778737902641296, -0.4614945650100708, 0.5219449400901794, -0.7784422039985657, -0.12375128269195557, -0.11415811628103256, -0.7500616312026978, 0.007652967236936092, 0.4446789622306824, -0.05551555007696152, 0.2783525288105011, -0.3870682418346405, -0.23853084444999695, -0.16254985332489014, 0.3103255331516266, 0.01908762753009796, 0.41053691506385803, 0.48890647292137146, -1.022972822189331, -0.8962762951850891, 0.03598570078611374, 0.4727029800415039, 0.23688839375972748, 0.33682647347450256, 2.005551815032959, 1.799576759338379, 0.30765631794929504, 0.027147457003593445, -0.48376739025115967, 0.872491717338562, -0.9103876352310181, -0.5455899238586426, -0.9632024168968201, 0.13269229233264923, 0.0743904784321785], [0.15209394693374634, 2.5880186557769775, -2.750401258468628, -0.7206113338470459, 0.34741321206092834, 0.7799856066703796, 1.116036057472229, 0.04531088471412659, -0.08967968076467514, -0.28281310200691223, -0.699684202671051, -0.14092162251472473, 1.0779154300689697, 0.30305179953575134, 0.16869209706783295, 0.8731561899185181, 0.6246100068092346, 0.006480194628238678, 0.31871336698532104, 0.5766254663467407, 0.25461655855178833, -1.7112410068511963, -0.5377128720283508, 0.1507088541984558, 0.3892609477043152, -0.7159793972969055, -1.4340194463729858, -0.5269966721534729, -1.1104719638824463, 0.3668059706687927, 0.5090451240539551, -0.009830884635448456, -0.32145464420318604, 0.1127420961856842, -1.2923126220703125, 0.3038705885410309, 0.7307202219963074, -0.3666642904281616, -0.3252837359905243, 0.3545498847961426, 1.6826890707015991, -0.2442014366388321, -0.33036673069000244, -0.8889930844306946, 0.9673201441764832, -0.18912474811077118, 0.9036795496940613, -0.17585885524749756, 0.15475915372371674, -0.6851396560668945, 1.2341779470443726, -0.40582001209259033, 0.16281281411647797, 1.0450648069381714, 0.9628772735595703, -0.7813068628311157, -0.15216071903705597, 0.8552330136299133, 0.2454100400209427, 0.11716035008430481, 0.7488333582878113, 0.6540209650993347, 1.2833271026611328, 1.4053521156311035, 1.0785553455352783, -0.42577120661735535, 0.7475330829620361, 0.2485027015209198, 0.43708667159080505, 0.04173274338245392, 0.7795265913009644, 0.2710705101490021, -0.30030617117881775, -0.4961951673030853, -1.0590064525604248, 0.6661517024040222, 0.006181113421916962, 0.3820776045322418, -0.09187407046556473, 1.1561864614486694, -0.304153174161911, -0.5314438939094543, -0.1658565104007721, -0.279083251953125, 0.5709465146064758, -0.07242632657289505, 0.5382676720619202, -0.1803298145532608, -0.07008698582649231, 1.3165695667266846, -0.40203502774238586, 0.22874653339385986, 0.4449903666973114, -0.10387641936540604, -0.2518772780895233, -0.02872272953391075, -1.2135472297668457, -0.44238343834877014, -0.7602525949478149, -1.2192814350128174, -0.9035554528236389, -0.4803923964500427, 0.266716867685318, 0.23499980568885803, 0.20314250886440277, 1.368005633354187, 0.7713254690170288, -0.44639939069747925, -0.1089576929807663, 0.005724221467971802, 0.26281502842903137, 0.014468150213360786, -0.8354314565658569, -1.2101106643676758, -0.22729302942752838, 0.837622344493866, 1.9346650838851929, 0.9377493858337402, 0.9933820366859436, 0.35047271847724915, 0.047899916768074036, -0.06710060685873032, -0.6026819348335266, 0.0026381611824035645, 0.9391642808914185, 0.39308077096939087, -0.8196107745170593, 0.13842228055000305, 0.5881702899932861, 0.17896027863025665, 0.6101784110069275, -0.10224712640047073, 0.13162104785442352, 0.32988062500953674, -0.3464414179325104, 1.0686628818511963, -0.16546599566936493, -1.4261600971221924, -0.3817271590232849, 0.6913828253746033, 0.58128821849823, -0.4916219413280487, -0.41463690996170044, -0.2793175280094147, -0.19628794491291046, -0.5375720858573914, 0.36466917395591736, -0.20813126862049103, -0.5736407041549683, 0.25972673296928406, -1.5596650838851929, 0.7686130404472351, -0.05939747020602226, 1.4034545421600342, 0.8823549747467041, -1.0211066007614136, 0.8135047554969788, 0.8599361181259155, 0.2970018982887268, -0.24016635119915009, 1.5028477907180786, -0.2293553501367569, -0.752844512462616, 0.8117468953132629, 0.31384992599487305, -0.13302470743656158, 0.6330778002738953, 0.14792008697986603, -0.12365821748971939, 0.3291913866996765, 0.1896737664937973, -0.21295538544654846, -0.7027740478515625, 0.17168119549751282, 0.14822503924369812, -0.7189772725105286, 1.0593286752700806, 0.5727179646492004, -1.3555052280426025, -1.4162888526916504, 0.7713145017623901, -0.7913073897361755, 0.1522028148174286, 0.25657919049263, 0.4482971131801605, -0.02338550239801407, 0.17320233583450317, -0.2955605983734131, -0.18150204420089722, -1.402337908744812, -0.23550811409950256, 0.17399714887142181, -1.4546478986740112, 0.4548209011554718, -0.7840008735656738, -0.6856632232666016, 1.313503384590149, 0.4358017146587372, -0.6309003829956055, -0.19103339314460754, 0.676376223564148, 0.3130101263523102, -1.1348501443862915, 0.1512746512889862, -0.5743274092674255, 0.760414719581604, -0.6606952548027039, 0.3633764386177063, -0.7384173274040222, 0.06986463069915771, 0.850327730178833, -0.9570736885070801, -0.7333892583847046, 0.3497343063354492, 0.09695646166801453, -1.0000433921813965, 1.034024953842163, -0.11110047996044159, -0.4540623128414154, -0.4279692769050598, 0.16653215885162354, -0.1880953162908554, 0.24581263959407806, 0.034020863473415375, 0.9560580253601074, -0.22397302091121674, -0.12506231665611267, -0.6659989953041077, -0.11510272324085236, 0.3940960168838501, -0.6473139524459839, -0.7956603765487671, 0.2627745568752289, 0.88219153881073, -1.1837214231491089, 0.7828061580657959, -0.1552930772304535, 0.42666369676589966, 0.06833627074956894, 0.9409451484680176, 0.593246579170227, 0.1019350066781044, -1.1666151285171509, 0.12144997715950012, -1.017316222190857, -0.06853556632995605, 0.576733410358429, -0.9744367003440857, -0.3775920569896698, 1.3091788291931152, 1.1713337898254395, 0.31562963128089905, 0.5588051080703735, -0.3243052661418915, -0.05369570478796959, -0.6254812479019165, -0.4301607310771942, 0.2788200378417969, -0.8908758163452148, 0.9241204857826233, 0.8941070437431335, -0.3973926901817322, 0.6066083312034607, -0.4616777300834656, -0.3956761062145233, -0.9584718942642212, -0.26160895824432373, -0.08382154256105423, 0.573617696762085, -0.514279842376709, -0.16300441324710846, 0.3354984223842621, -0.31849175691604614, 0.7758124470710754, 0.16686564683914185, -0.4211757481098175, 0.6976421475410461, 1.0876402854919434, -0.03529825806617737, 0.8263694047927856, -0.039191968739032745, -1.2509068250656128, -1.3077099323272705, -0.360564261674881, 0.47078752517700195, -0.07254613190889359, -0.11262606829404831, 1.0145715475082397, 0.4419150948524475, -0.08346246927976608, 0.3086019456386566, 0.38208284974098206, -0.24856381118297577, 0.10303408652544022, -0.3691115975379944, 0.1158829852938652, 0.586348831653595, -0.6174446940422058, -0.5171009302139282, -0.37548232078552246, 0.3188738226890564, 0.7420107126235962, 1.4524006843566895, 1.4075294733047485, -0.30376291275024414, -0.18490909039974213, 0.5969834923744202, 0.20902886986732483, -0.31095626950263977, -0.6899834275245667, -0.576069712638855, -0.6927047967910767, 0.022986404597759247, -0.7249483466148376, 0.18068000674247742, 1.0283288955688477, 0.5686248540878296, 0.5801821351051331, 0.8501924276351929, 0.11846152693033218, -1.0938658714294434, -0.07315089553594589, -1.2068895101547241, -0.7898198366165161, 0.8312076330184937, 0.8658943176269531, -1.5013781785964966, 0.133956179022789, -0.2417750060558319, 0.12879998981952667, 0.21411912143230438, 0.42887094616889954, 0.34556975960731506, -1.1915591955184937, -0.5749028921127319, -0.2819305956363678, 1.038619041442871, -0.141049325466156, -0.14975596964359283, -0.7123746871948242, 0.4653831720352173, 0.5546286106109619, -0.36021044850349426, -0.2487042397260666, -0.3196001946926117, -0.14197194576263428, -0.3807148039340973, 0.22896379232406616, 0.255094975233078, 0.31390342116355896, -1.0313549041748047, -1.1834176778793335, 0.6136893033981323, 0.2967442274093628, -1.0047370195388794, 0.5626917481422424, -0.33433058857917786, 1.4857773780822754, -0.13473054766654968, 0.7727271914482117, 1.3804843425750732, 0.2392951250076294, 0.3564099371433258, -1.4393274784088135, 0.6097970008850098, 0.42750468850135803, 1.130051851272583, 0.31066441535949707, 0.5217445492744446, -0.005781505256891251, -1.2364107370376587, -0.5544149279594421, 0.5561578869819641, 0.6967175006866455, 0.33871355652809143, -0.15389277040958405, -0.3263024091720581, -0.6723909974098206, -0.1299847811460495, 0.12226618081331253, 0.31656068563461304, 0.029971923679113388, -0.3867805302143097, -0.6734232306480408, 1.2553327083587646, 0.718181848526001, -0.9750323295593262, -1.25016450881958, 0.05003761500120163, 0.4977104961872101, -0.44217437505722046, 0.24469660222530365, -0.8614642024040222, 0.1913658082485199, 0.4545145630836487, -0.7301735877990723, -0.4440997242927551, -0.3767504096031189, 0.04254510998725891, 0.8186752796173096, -0.9044587016105652, -0.5412719249725342, -0.9208748936653137, 0.46238550543785095, 0.8905344605445862, 0.7184598445892334, 0.5115445256233215, 0.16506151854991913, -0.10788629204034805, -0.14921525120735168, 0.051614824682474136, 0.9917851686477661, -0.49618273973464966, -0.0007029264234006405, 0.18521851301193237, 0.500149667263031, 0.6251447200775146, -0.38019517064094543, -0.6119216680526733, 0.028266897425055504, 0.06641487032175064, 0.6108462810516357, 0.3340252935886383, -0.3038105070590973, 1.288772702217102, -0.5714711546897888, 0.24075880646705627, 0.3303954005241394, 0.10529695451259613, -1.1654982566833496, -0.14566592872142792, 0.33323729038238525, -0.39679282903671265, -0.9352426528930664, 0.22003059089183807, 0.5373343825340271, 0.5739004611968994, -0.0007632598280906677, 0.8375732898712158, 0.6392337679862976, 0.29944339394569397, 0.051232703030109406, 0.75996333360672, 0.14662228524684906, 1.208415150642395, 0.7211381793022156, 0.7433491945266724, -0.32045456767082214, -0.34561672806739807, 0.8415371179580688, 0.3047085106372833, -0.15562951564788818, 0.8440565466880798, -0.015645232051610947, 0.9766569137573242, -0.9725830554962158, -0.06908854842185974, 1.2993342876434326, -0.5760445594787598, 0.438312828540802, -0.1797744631767273, 0.9165596961975098, -0.9620524048805237, -0.01789439097046852, 0.8778585195541382, -0.07318000495433807, 0.6785157322883606, -0.2818332016468048, 0.35300537943840027, 0.13420969247817993, -0.636512815952301, 0.3369249105453491, -1.1998350620269775, -0.009940080344676971, -0.761174738407135, 0.15844959020614624, 0.8315917253494263, 0.5579656362533569, 0.28344982862472534, 1.3680822849273682, -0.6979859471321106, -1.0887240171432495, 0.36893534660339355, -0.817815899848938, 0.05222158879041672, -0.5597275495529175, -0.2160934954881668, -0.22437086701393127, -0.46885809302330017, -0.42324692010879517, 0.011078842915594578, -0.9301795959472656, -0.6961499452590942, -0.6738247275352478, -0.8329446315765381, 0.22559237480163574, 0.042494334280490875, 0.8728199005126953, 0.3467674255371094, 0.3351091742515564, 0.02114565670490265, -0.03376638516783714, -1.4982378482818604, -0.3207482397556305, 0.4646746516227722, -0.6390601992607117, -0.48364800214767456, -1.1019092798233032, -0.4503094553947449, 1.2306227684020996, 0.4839245080947876, -0.07424905151128769, -0.02916543558239937, 0.716350257396698, 1.631393551826477, -0.538783848285675, -0.5675237774848938, 0.2111743539571762, -0.030623240396380424, 0.7531182169914246, 0.3773064613342285, -0.7853789925575256, -0.46051540970802307, -1.4739347696304321, -2.15671968460083, 1.3307629823684692, 0.28178003430366516, 0.3392123281955719, 0.9040324091911316, 0.6944544911384583, -0.22630542516708374, 0.971785306930542, -0.44562944769859314, -0.402586966753006, -0.4663074314594269, -0.01830080896615982, -0.758444607257843, 0.49601131677627563, 0.824866771697998, -0.28287577629089355, -0.505740761756897, 0.49243155121803284, -0.15354715287685394, -0.2978077828884125, 0.11496550589799881, -0.18513983488082886, -0.17558883130550385, 0.11009792983531952, 0.26146113872528076, -0.5283936262130737, 0.7492955923080444, -1.0497381687164307, -0.029026906937360764, 0.4868505001068115, 0.015911370515823364, 0.383548766374588, -1.1816028356552124, 0.7768494486808777, 0.02807566151022911, 0.1915421038866043, 0.4937986433506012, -0.39648130536079407, 0.9237396121025085, -0.010865969583392143, 0.5253865718841553, 1.0706793069839478, 0.04680459573864937, -0.4028719365596771, -0.7518066167831421, 0.03894425183534622, -0.2570444643497467, -0.8839035034179688, -1.2389219999313354, -0.36974310874938965, -0.22569547593593597, 0.09715618193149567, 0.4805929362773895, -1.0927977561950684, -1.3505535125732422, -1.1026394367218018, 0.2509586215019226, -0.3133390247821808, 0.8836067318916321, -0.8440544605255127, -0.015725841745734215, 0.11622095853090286, -1.0910882949829102, -0.251778244972229, 0.28518521785736084, -2.0994534492492676, -0.16188907623291016, -0.5279513001441956, 0.9935073256492615, -0.18881641328334808, 0.05499480664730072, -0.38432395458221436, 1.1191649436950684, -1.158371925354004, -0.8156620860099792, -0.9957876801490784, -0.6841193437576294, 1.2744430303573608, 0.6953786015510559, -0.7032284736633301, 0.9402191638946533, 0.1609378606081009, -0.2215125560760498, 0.07312380522489548, 0.35680124163627625, -0.8293033838272095, -0.5176394581794739, 0.21306580305099487, -0.5518454909324646, 0.2994050979614258, 1.5344511270523071, 0.48792752623558044, 1.6311705112457275, -0.1554047167301178, 1.6964685916900635, -0.7601639628410339, -0.4636508822441101, 0.03945910930633545, 0.8394390940666199, -0.5995274186134338, -0.09589877724647522, 0.003847295418381691, -1.447052240371704, -0.2888795733451843, 0.4924536943435669, 0.938576340675354, -0.3773875832557678, -0.15510042011737823, -0.7525187730789185, 0.40133559703826904, -1.1459554433822632, 0.26783886551856995, -0.33732345700263977, -0.7657490372657776, 0.10730215162038803, 0.1283651441335678, 0.39723289012908936, -0.7173399925231934, 0.31940317153930664, 0.31541213393211365, 0.5985368490219116, -0.797074019908905, 0.326455295085907, -0.03643789514899254, -0.1137411966919899, -1.1206912994384766, 1.1638363599777222, 0.9254009127616882, -0.08687525242567062, -0.3083076477050781, 0.32963645458221436, -0.26144832372665405, 0.17440932989120483, -0.7170187830924988, -0.4541560709476471, -0.9262183308601379, 0.6067206263542175, 0.3382883369922638, -0.040415238589048386, 0.1672210544347763, 0.5220261216163635, -0.3738303482532501, -0.6829728484153748, 1.5154542922973633, -0.4852161407470703, -0.7289119362831116, 0.8425376415252686, 0.8772358298301697, -0.5402320623397827, 0.7112699747085571, 0.15265074372291565, 0.1257520467042923, 0.1759016513824463, 0.8875612020492554, 0.07080435752868652, -0.5616536140441895, 0.45452991127967834, 0.41096657514572144, -0.604794442653656, 0.27788329124450684, -0.35977795720100403, -1.8539118766784668, -0.26106300950050354, -0.03237748146057129, -0.35616666078567505, -0.26991844177246094, -0.9678881168365479, -1.070701003074646, 0.5252434611320496, -0.27029046416282654, -0.16790194809436798, -0.796501636505127, 0.14395785331726074, -0.34960123896598816, 0.11684698611497879, 0.33691391348838806, -0.3434324264526367, 0.8528762459754944, -0.3374274671077728, 0.21662399172782898, -0.7386550307273865, 0.11621564626693726, 0.5565243363380432, 0.3636234700679779, -0.26879891753196716, -0.41597434878349304, 0.6090935468673706, -0.8085618615150452, -0.6268507838249207, -0.009274812415242195, -0.27945899963378906, 0.4751392900943756, -0.2180686742067337, -0.2673918306827545, -0.10733287781476974, -0.08533564954996109, 1.1117812395095825, -0.3411485552787781, -0.8795739412307739, -0.8894070386886597, 0.4640384316444397, -0.029643846675753593, 1.2052308320999146, -0.38511693477630615, 0.3472709655761719, 0.07695543766021729, -0.8565357327461243, 0.06741498410701752, -0.7433196306228638, 1.4022231101989746, -0.33440786600112915, 0.09321807324886322, -0.8921211361885071, -0.4814392030239105, 0.8264889121055603, -0.9616557359695435, -0.5354293584823608, -0.07898551225662231, -0.41667622327804565, -0.19263295829296112, -0.40197575092315674, -1.0242670774459839, -0.6586612462997437, -0.19514554738998413, -0.07543410360813141, 0.708335280418396, 0.48921939730644226, -0.32734450697898865, -0.6628299951553345, -0.030463475733995438, 1.2410303354263306, -0.48717445135116577, 0.3441130518913269, 1.2247488498687744, 1.6089712381362915, 0.13847899436950684, -0.19169831275939941, -0.4661262333393097, 0.657362163066864, -0.7404472827911377, 0.4649903178215027, -1.3148438930511475, -0.7914369702339172, -0.43827763199806213], [-0.6468607783317566, 2.2647249698638916, -2.927760124206543, -1.1377586126327515, -0.04307497292757034, -0.3007517457008362, 1.1863325834274292, 0.6272547245025635, -0.21156270802021027, -1.256378412246704, -0.7934648990631104, 0.18263833224773407, 0.5491165518760681, 0.7449966073036194, 0.4010224938392639, 0.8033917546272278, 0.27390310168266296, 0.08932528644800186, 0.17422300577163696, 0.8901050090789795, 0.36111751198768616, -1.1041841506958008, -0.2818729877471924, -0.4577783942222595, 0.1711234301328659, -0.31218692660331726, -1.2622311115264893, 0.4475720524787903, -1.343800663948059, -0.5794089436531067, 1.4533610343933105, -0.45188528299331665, 0.06825710833072662, -0.26940101385116577, -1.4715063571929932, -0.9875062704086304, 0.27557703852653503, -0.3310016095638275, -0.88251793384552, 0.29702436923980713, 1.9857511520385742, -0.12816444039344788, -0.1925240308046341, -1.3089715242385864, 1.1588687896728516, -0.45286276936531067, -0.36547425389289856, -0.8533362746238708, 0.626768171787262, -0.7397992014884949, 0.6930710673332214, -0.3491285741329193, 0.5198242664337158, 0.6675940155982971, 0.7105171084403992, -0.20996630191802979, 0.2897483706474304, 1.0225356817245483, 0.09802814573049545, 0.8340622186660767, 0.8510024547576904, 0.7310730814933777, 0.24586139619350433, 0.6361545920372009, 0.3646305203437805, 0.05770581588149071, 0.38354772329330444, 0.5560734868049622, -0.33097368478775024, 0.06784535199403763, 1.2109545469284058, 0.39334869384765625, -0.3910810053348541, -0.6708301901817322, -0.942678689956665, 0.3797023296356201, -0.5686348676681519, 0.6784663200378418, -0.10241805016994476, 1.2299044132232666, 0.25731587409973145, 0.07721077650785446, -0.15241739153862, -0.35230687260627747, 0.4090779423713684, -0.09145797789096832, 0.30187636613845825, 0.07744092494249344, -0.38291677832603455, 1.5009267330169678, 0.19265596568584442, 0.5898595452308655, 0.6716402769088745, -0.10242284089326859, -0.16944414377212524, -0.37005460262298584, -0.29720890522003174, -0.4111952483654022, -0.22039136290550232, -0.757020115852356, -1.0100680589675903, -0.9325683116912842, 0.6219236254692078, 0.3338966965675354, 0.9743685722351074, 1.757285237312317, 0.7418131828308105, -1.1471387147903442, -1.096878170967102, 0.18161442875862122, 0.20451797544956207, -0.1267118752002716, -1.0063366889953613, -0.4246794879436493, -0.006364257074892521, 1.1373242139816284, 1.4650640487670898, 0.058401014655828476, 0.5951367020606995, 0.33273962140083313, -0.38135573267936707, -0.6610780358314514, -1.1290090084075928, 0.270271897315979, 1.3148292303085327, -0.3735447824001312, -0.83799809217453, 0.0758814811706543, -0.05208709090948105, -0.33657413721084595, 0.7833483815193176, 0.12954965233802795, -0.054749745875597, 0.7160871624946594, -0.07647402584552765, 0.806027352809906, 0.0033538276329636574, -0.8673019409179688, 0.9824835658073425, 0.5610116124153137, 0.06493481993675232, -0.45327404141426086, -0.7655943036079407, -0.807177722454071, 0.3348502516746521, -0.42174580693244934, -0.004458268638700247, -0.6947875618934631, -0.9362419247627258, 0.09213722497224808, -2.1549816131591797, 0.7538942694664001, -0.3560902774333954, 2.0646450519561768, 0.340343177318573, -0.2840900719165802, 0.3829682767391205, 0.0796954557299614, 0.0691804364323616, 0.6712401509284973, 1.5838441848754883, -0.15270178020000458, -0.45114630460739136, 1.8023338317871094, 0.6652097105979919, -0.8324804306030273, 0.797607421875, 0.5059722661972046, -0.7606003880500793, 0.32463377714157104, -0.3984106183052063, 0.0017957012169063091, -0.5424758791923523, 0.1658344864845276, 0.15840716660022736, -0.48977741599082947, 1.1815303564071655, -0.03973447158932686, -0.846299409866333, -1.2663633823394775, 0.5020096302032471, -0.5332967638969421, 0.025789618492126465, 0.7264783978462219, 0.7600909471511841, -0.22512146830558777, -0.8693979382514954, -0.1866748183965683, -0.25349196791648865, -0.5739546418190002, -1.1796298027038574, 0.49159619212150574, -1.5168018341064453, 0.5353742241859436, -0.706945538520813, -0.6136816143989563, 0.6174197196960449, -0.337552011013031, 0.15271860361099243, -0.257633775472641, -0.16947969794273376, -0.4154653251171112, -1.6123181581497192, -0.3694532811641693, -0.8781816959381104, 1.311186671257019, -0.3868989646434784, 0.4224846363067627, -0.2186952829360962, 0.6440572738647461, 1.284420371055603, -0.4222507178783417, -1.0384656190872192, 0.10350055992603302, 0.44470083713531494, -1.2153726816177368, 0.04180563986301422, -0.05518660694360733, -0.059996869415044785, -0.036653634160757065, 0.4068357050418854, -0.01695297844707966, 1.1492995023727417, 0.4268433153629303, 0.7199360728263855, -0.05252866446971893, 0.19207161664962769, -0.19578056037425995, -0.5301721096038818, 0.3967626988887787, -1.0609917640686035, 0.06146317347884178, 0.5392694473266602, 0.7722848653793335, -1.0173652172088623, 1.2892662286758423, -0.4141324758529663, 0.6643274426460266, 0.699178159236908, 0.7907006144523621, 1.0656654834747314, -0.08760540187358856, -0.4492361545562744, -0.21423190832138062, -0.5660125017166138, -0.4864151179790497, 1.1449722051620483, -0.525547206401825, -0.6925720572471619, 1.8557648658752441, 0.7593607306480408, 0.10848811268806458, 0.3284306824207306, -0.46481117606163025, 0.31475216150283813, -1.174850344657898, 0.41732367873191833, 0.1966087520122528, -0.9289020895957947, 0.3583056926727295, 0.25835415720939636, -1.48112952709198, -0.07900069653987885, -0.6540631055831909, 0.5158020853996277, -0.5229647159576416, 0.17175062000751495, -0.012232833541929722, 0.4667469561100006, -0.4403848350048065, 0.12758000195026398, -0.5836072564125061, -0.2098696529865265, 0.7977616786956787, 0.046051591634750366, -0.29200419783592224, 0.34199032187461853, 1.3780001401901245, 0.2939959168434143, 0.9607698917388916, -0.30371010303497314, -1.544590711593628, -1.0273183584213257, -0.7436941266059875, 0.933488667011261, -0.23041395843029022, -0.27899158000946045, 0.48415234684944153, 0.8704383969306946, -0.21478332579135895, 0.5350279808044434, 0.252017080783844, 0.06596361845731735, 0.02932598441839218, 0.24083778262138367, 0.6605480313301086, 0.12302060425281525, -0.7027448415756226, -0.9469212889671326, -0.4146900177001953, 0.23105166852474213, 0.48268789052963257, 1.0956660509109497, 1.021870732307434, -0.21927502751350403, 0.044893596321344376, -0.19022735953330994, 0.267536997795105, 0.15347465872764587, -0.5307093262672424, -0.8227089047431946, -0.18335306644439697, 0.18260401487350464, -0.8947588801383972, -0.17501401901245117, 1.2877448797225952, 0.453261137008667, 1.1944881677627563, 0.31764301657676697, -0.5516530871391296, -1.4959849119186401, -0.1354856938123703, -0.488008975982666, -0.9521438479423523, 0.9453831315040588, 1.0820930004119873, -1.203418493270874, 0.11088376492261887, 0.14539386332035065, 0.2004944533109665, 0.20908692479133606, -0.0940980389714241, 0.17184235155582428, -1.1428707838058472, -0.5550649166107178, 0.1200113520026207, 0.9127752780914307, -0.31988298892974854, -0.18571095168590546, -0.196754589676857, 0.7913367748260498, 0.9586805105209351, -0.2213989496231079, -0.31648218631744385, 0.2982705235481262, -0.08428309857845306, -0.9502994418144226, 0.1657288372516632, 0.20353297889232635, 1.4263147115707397, -0.7800217270851135, -0.5399892330169678, -0.5942797064781189, -0.17653608322143555, -0.9385070204734802, 0.31245607137680054, 0.49383673071861267, 0.7827185988426208, 0.36852794885635376, 0.4635980725288391, 0.697685956954956, 0.0016998124774545431, 0.5816804766654968, -1.838178277015686, 0.3679777979850769, 0.8581531643867493, 1.0971264839172363, 0.04324851557612419, 0.5120273232460022, 0.22949373722076416, -1.037034511566162, -0.058843955397605896, 0.037468522787094116, 0.19180569052696228, 0.23438818752765656, -0.42419230937957764, 0.23431400954723358, -0.16198933124542236, 0.23140238225460052, 0.25472593307495117, 0.32726559042930603, 0.2956884801387787, -0.07731381058692932, -0.1390780806541443, 1.2360262870788574, -0.30608120560646057, -0.44404280185699463, -0.8799749612808228, 0.2331436425447464, 0.2609693706035614, -0.19915278255939484, -0.056458741426467896, -0.679716169834137, 0.00026462238747626543, 0.36593833565711975, -0.15104731917381287, -1.0727068185806274, -0.39773884415626526, -0.02895263582468033, 0.8723435997962952, -0.9042506814002991, -0.9964220523834229, -0.6633796095848083, 0.6023184657096863, 0.5600312352180481, -0.10759487748146057, 0.9339815974235535, 0.1186588779091835, -0.4491185247898102, -0.2197214514017105, 0.16917777061462402, 1.5101608037948608, 0.2615742087364197, -0.3172447979450226, -0.17204269766807556, 0.5563132762908936, 0.7445865869522095, -0.5440239906311035, -0.3221611976623535, -0.2761668264865875, -0.833953320980072, 0.5051748752593994, 0.5224949717521667, -0.31688809394836426, 1.2233941555023193, -0.9547768235206604, 0.5190610289573669, 0.747148871421814, -0.286195307970047, -0.9516127705574036, -0.5653518438339233, 0.17853467166423798, -0.30118000507354736, -0.2941572964191437, 0.1448066085577011, 0.05110479146242142, 0.6173977255821228, 0.4771077632904053, 0.41661715507507324, 0.27498868107795715, 0.10892655700445175, -0.747305691242218, 0.26456889510154724, 0.6063560843467712, 0.6606465578079224, 0.9964643716812134, 0.9356052279472351, -0.5756158828735352, -0.7693538069725037, 0.9262727499008179, 0.14960893988609314, 0.04985528066754341, 1.1346135139465332, 0.311685711145401, 1.6834242343902588, -1.7162867784500122, 0.32091253995895386, 0.3741757273674011, 0.3173907697200775, 0.4038732349872589, -0.48133763670921326, 0.8198479413986206, -1.577937364578247, -0.1093081459403038, 0.42445436120033264, -0.3126603364944458, 0.8206880688667297, -0.19850365817546844, -0.004414440598338842, 0.46796295046806335, -0.1927787810564041, 0.1026766449213028, -0.5519335865974426, -0.1784338653087616, 0.13540053367614746, 0.6807615756988525, 0.7252371311187744, 0.8565211296081543, 0.2445545494556427, 1.2761523723602295, -1.3570079803466797, -1.5093834400177002, 0.5569397211074829, -1.3508762121200562, 0.3144490122795105, 0.2663761079311371, -0.4846149682998657, -0.36912667751312256, -1.3461657762527466, 0.06723809242248535, -0.3568874001502991, -0.8914827704429626, 0.07423925399780273, -0.3124241232872009, -1.404646396636963, -0.4516680836677551, -0.22341513633728027, 0.992729902267456, 0.2228093445301056, 0.35701221227645874, 0.6668825745582581, 0.39341413974761963, -0.6362688541412354, 0.22027955949306488, -0.01548434142023325, -0.4679241180419922, 0.1367095708847046, -1.1126333475112915, -0.6672679781913757, 0.7328792810440063, 0.7242993712425232, 0.7653235793113708, -0.1919737011194229, 0.9379785060882568, 1.652852177619934, -0.3733983039855957, -0.42295581102371216, 0.7855969071388245, -0.023108184337615967, 0.27961891889572144, 0.39684322476387024, -0.9255174398422241, -0.15728312730789185, -0.3066282868385315, -2.030059814453125, 1.272472858428955, -0.04580410569906235, -1.0772286653518677, 0.6820172071456909, 0.8151190280914307, -0.08724629133939743, 1.3232033252716064, -0.2986332178115845, -0.5323130488395691, 0.3652200400829315, -0.16688942909240723, -1.359131932258606, 0.277717649936676, 1.2700068950653076, 0.35049688816070557, -1.0549763441085815, -0.05013136565685272, -0.3058621883392334, -0.6615668535232544, 0.19457577168941498, -0.2612505257129669, 0.8476977944374084, 0.12072189152240753, -0.09945828467607498, -0.9039397239685059, 0.17927958071231842, -1.0136009454727173, 0.4979693591594696, 0.26237383484840393, 0.8093320727348328, -0.023835020139813423, -0.9459840059280396, 0.9703717827796936, -0.29846590757369995, -0.6343125700950623, 0.29130810499191284, -0.8702657222747803, 0.22130678594112396, 0.5670174956321716, 0.23006556928157806, 0.3244772255420685, -0.058559343218803406, -0.5252634286880493, -0.7194744348526001, 0.2532188594341278, 0.804487407207489, -1.4802234172821045, -0.8354744911193848, 0.0489928238093853, 0.004508325830101967, 0.3503904938697815, 0.6405201554298401, -0.5214478969573975, -1.0666935443878174, -1.1855907440185547, -0.6808870434761047, -0.9398742914199829, 0.5869090557098389, 0.03342514857649803, -0.26024332642555237, -0.2461378425359726, -1.39046049118042, 0.960111677646637, -0.5555760860443115, -1.984959602355957, -0.15847939252853394, -0.1421528458595276, 0.8847315907478333, -0.29541635513305664, -0.5250746011734009, 0.22466610372066498, 1.117659568786621, -0.5444061160087585, -0.09589529782533646, -1.1044511795043945, -0.5754256248474121, 0.9225298762321472, 1.3325376510620117, -1.23824143409729, 1.1115527153015137, 0.18841665983200073, -0.5888832807540894, -0.31455475091934204, 0.17517513036727905, -1.8172807693481445, -0.12017262727022171, 0.33524802327156067, -0.1410059928894043, 0.7401129007339478, 1.6596394777297974, 0.3735860288143158, 1.0605486631393433, 0.5750035047531128, 1.050278663635254, -0.36542513966560364, -0.4887697100639343, -0.3021705150604248, -0.22441136837005615, -1.0397660732269287, -0.1299980878829956, 0.21492688357830048, -0.9295832514762878, -0.7500362992286682, 1.0458896160125732, 0.6795055270195007, -0.7853800654411316, 0.42426732182502747, 0.03964175656437874, 0.4427003860473633, -1.349231243133545, 0.4310443103313446, 0.3170144557952881, -1.2714780569076538, -0.21914248168468475, 0.28605392575263977, 0.7151004076004028, -0.859592616558075, 0.5081402063369751, 0.5269162654876709, 0.43318817019462585, -0.609757125377655, 0.660090446472168, -0.2318982630968094, 0.1526639610528946, -0.8614569306373596, 1.20444917678833, 0.772086501121521, 0.40043753385543823, 0.514113187789917, 0.8145993947982788, -0.21320590376853943, 0.06452962756156921, -0.17357264459133148, -0.43056023120880127, -1.1015522480010986, 0.5256191492080688, 0.1868361532688141, -0.06205645948648453, -0.29453063011169434, 0.3094131648540497, -0.2510845959186554, -0.6751017570495605, 1.4095512628555298, -0.5782368183135986, -1.0789977312088013, 0.6028989553451538, 0.788642168045044, -0.21223735809326172, 0.48236483335494995, -0.055017050355672836, 1.30397629737854, -0.32212066650390625, 0.7556402683258057, -0.08179498463869095, -0.5110535025596619, 0.4011533558368683, 0.29825425148010254, -0.9249488115310669, 0.26516956090927124, -0.4985738694667816, -1.057337999343872, -0.08618493378162384, -0.16879452764987946, -0.23011644184589386, 0.3699600398540497, -0.8564552068710327, -1.3584216833114624, -0.12946854531764984, -0.22785967588424683, -0.2436659038066864, -0.43965592980384827, 0.0669417679309845, -0.4937499165534973, -0.4071754813194275, 1.1694425344467163, -0.4023970067501068, 0.7916502356529236, -0.02252129279077053, 0.18636645376682281, -0.11956053227186203, 0.15908187627792358, -0.2670508921146393, 0.016688678413629532, -0.3405211269855499, -0.6459894180297852, 0.15882916748523712, -0.926109254360199, 0.21985019743442535, 0.7559097409248352, 0.02143210358917713, 0.22212405502796173, 0.18672998249530792, -0.997717559337616, -0.46309375762939453, 0.6703246831893921, 0.8270057439804077, -0.711255669593811, -0.8293466567993164, -0.5085206031799316, -0.22239604592323303, 0.6569205522537231, 1.3036292791366577, -1.0606297254562378, 0.5668764710426331, 0.7280110716819763, -0.5006613731384277, -0.6486733555793762, -0.7807797789573669, 1.4814605712890625, -0.6492133140563965, 0.7928521037101746, -1.203485131263733, -0.4022165834903717, 0.04559672251343727, -0.9211066365242004, 0.048613496124744415, -0.3806377351284027, -0.21021495759487152, 0.554154098033905, -0.012915215454995632, -0.9202512502670288, -0.5085685849189758, 0.3695274293422699, -0.04479743912816048, -0.1045590341091156, 1.1750152111053467, 0.02217632345855236, -0.7421281337738037, -0.3336217999458313, 0.5812095999717712, 0.32209306955337524, 0.40573808550834656, 1.4793771505355835, 1.5953387022018433, 0.18032202124595642, -0.35239356756210327, -0.49229785799980164, 0.6261740326881409, -1.2234772443771362, 0.0359160453081131, -1.0082424879074097, -0.3248199224472046, 0.41184502840042114], [-0.454715371131897, 1.84957754611969, -2.247901678085327, -0.797571063041687, -0.05102625861763954, 0.12067216634750366, 0.15640392899513245, 0.8424597978591919, -0.5295817255973816, -1.4516551494598389, -0.5175600051879883, -0.0860099047422409, -0.26082539558410645, 0.4721167981624603, -0.9032976031303406, 0.794032633304596, 0.4780179262161255, 0.10118661820888519, 0.07676360011100769, 0.10478001832962036, -0.2507358491420746, -1.0877184867858887, 0.1408206969499588, -0.35980191826820374, 0.04183894768357277, 0.4869942367076874, -0.921898603439331, 0.005556457210332155, -0.9317516684532166, -0.30911922454833984, 1.168235421180725, -0.5110861659049988, 0.5565944314002991, -0.037854645401239395, -0.8114151358604431, -0.7404153943061829, -0.2065657675266266, -0.5617395043373108, -0.9422031044960022, 0.7945524454116821, 1.2643810510635376, -0.6229584813117981, -1.587362289428711, -0.8393074870109558, 0.2923138439655304, -0.04945174604654312, 1.1868345737457275, -1.1236590147018433, 0.13448397815227509, -0.7212048768997192, 0.3317371904850006, -0.8744322657585144, 0.6231943368911743, 0.6131487488746643, 1.9283418655395508, -2.1164584159851074, -0.2437267005443573, 0.29348692297935486, 0.21319440007209778, -0.39006516337394714, 1.6327924728393555, 0.12023870646953583, 0.25628462433815, 1.4461863040924072, 0.6939654350280762, -0.1700279265642166, 0.23347532749176025, 0.4385893940925598, 0.2873116135597229, -0.08537646383047104, 0.44582152366638184, 0.47867870330810547, -0.277376651763916, -0.6015875339508057, -0.9935054183006287, -0.20653925836086273, 0.42972150444984436, 0.33677613735198975, 0.31194114685058594, 0.3115057051181793, 0.17048439383506775, -0.02830350585281849, 0.8957464098930359, -0.902039647102356, 0.2999241054058075, -0.13763323426246643, -0.4487188756465912, -0.7736761569976807, -0.7304778695106506, 1.4923009872436523, -0.19373172521591187, 0.26253798604011536, 0.7251418828964233, 0.00813037995249033, -0.36881381273269653, -1.0609451532363892, 0.6121159791946411, -0.9003125429153442, -0.9102023243904114, -0.6115240454673767, -0.9552316665649414, -0.2675801217556, 0.06872965395450592, 0.12549416720867157, 0.26039478182792664, 1.4708884954452515, -0.5188220739364624, -0.2901601493358612, -0.06452462077140808, 0.5902017951011658, 0.7353286147117615, 0.03358350321650505, 0.15240494906902313, -0.46451425552368164, 0.6034930944442749, -0.2373713254928589, 1.6223210096359253, -0.04954550042748451, 0.33420097827911377, 0.6347230076789856, -0.5051229000091553, -0.2378578782081604, -0.8014321327209473, 0.34125378727912903, 0.841887354850769, 0.2137276828289032, -0.683922290802002, 0.4060199558734894, 0.114525206387043, 0.0032411422580480576, -0.0379449725151062, 0.445793479681015, -0.853900134563446, 0.6052839756011963, -0.1899486482143402, 0.6503881216049194, -0.5202398896217346, -1.6321113109588623, -0.11576472967863083, -0.3488192856311798, 0.4497734606266022, -0.3590218126773834, -1.707332730293274, -0.6475386619567871, 0.9247971773147583, -0.12653732299804688, 0.24543634057044983, -0.09394927322864532, -0.30194467306137085, 1.2677342891693115, -0.6271137595176697, 0.1550004780292511, -0.31796225905418396, 0.7443246245384216, 0.9180325865745544, 0.029845431447029114, 0.38391873240470886, 0.24573232233524323, 0.541191041469574, 0.3230915069580078, 0.6144338846206665, -0.20000164210796356, -1.6098958253860474, 0.49250927567481995, 1.2815734148025513, -0.6439101099967957, 0.6450130343437195, 0.8541700839996338, -0.4774855673313141, -0.0012627528049051762, -0.5625283122062683, -0.7175790667533875, -1.6690645217895508, 1.050818681716919, -0.3194427192211151, -0.011991994455456734, 0.16216082870960236, -0.5149458646774292, -0.8273159861564636, -0.9794106483459473, 0.8793280720710754, -0.42936286330223083, 0.7826076149940491, 0.003485271707177162, 0.5222452878952026, 0.14121028780937195, -0.3517347276210785, -1.2759969234466553, -1.0286259651184082, -1.482387900352478, -0.5873799920082092, -0.4007404148578644, -0.8947967886924744, 0.3997621238231659, -0.7819312810897827, -0.36182016134262085, 1.010967493057251, -0.16778455674648285, 0.4859807789325714, -0.09702520072460175, 0.3555664122104645, 0.09101299941539764, -0.16422294080257416, 0.09886201471090317, -0.2139635533094406, -0.014880897477269173, -0.8629385232925415, 0.30893459916114807, -0.8558133840560913, 0.23000752925872803, 1.241064190864563, -0.8325229287147522, -0.3465498685836792, 0.6209655404090881, 0.608413577079773, -1.1943094730377197, 0.2044041007757187, -0.43079784512519836, -0.08736498653888702, -0.18701522052288055, 0.6510207056999207, -0.2536097466945648, 0.7717604637145996, -0.18283119797706604, 0.5999473333358765, -0.4617933928966522, -1.1950312852859497, -0.7312371730804443, -0.4410814344882965, -1.0980165004730225, -0.12476874142885208, -0.9630900025367737, 1.0428640842437744, 0.2267436683177948, -0.3630633056163788, 0.6466252207756042, -0.8268641233444214, 0.5946294069290161, -0.043465565890073776, 0.6970869898796082, 0.7662519216537476, 0.16806919872760773, -0.658083975315094, -0.6782001256942749, -0.773517906665802, -0.6223041415214539, 0.10420000553131104, -0.7643330693244934, 0.24449941515922546, 0.7871341109275818, 0.7161350250244141, -0.6862283945083618, 0.4011772572994232, -0.8104250431060791, 0.16230207681655884, -1.1485167741775513, 0.039980847388505936, -0.09922116994857788, -0.7357199192047119, 0.7941150665283203, 1.073992371559143, -1.231457233428955, -0.987942636013031, -0.09887288510799408, 0.1106213927268982, -0.9456398487091064, -0.05543776974081993, -0.7137516736984253, 0.35188600420951843, 0.3643602728843689, 0.4442322552204132, 0.5030839443206787, -0.09882405400276184, 1.1049176454544067, 0.22339434921741486, 0.11966753005981445, 0.7719400525093079, 0.5566332340240479, 0.13863801956176758, 0.7896920442581177, -0.20300732553005219, -0.9914847612380981, -0.8149677515029907, -0.2443084418773651, 0.6921207904815674, -1.0174604654312134, -0.8575516939163208, 0.14747187495231628, 1.0231268405914307, -0.7492213845252991, 1.5152345895767212, 0.06581480801105499, 0.06664533913135529, 0.3327850103378296, -0.1355249285697937, 0.22035154700279236, 1.0206061601638794, -0.32900071144104004, -1.3137397766113281, 0.44711795449256897, 0.5723294019699097, 0.8349584937095642, 1.242222547531128, 1.1294326782226562, -0.7458463907241821, 0.3701106905937195, -0.18473760783672333, 0.06836618483066559, -0.8934662342071533, -0.24489924311637878, -0.04722142592072487, -0.7100907564163208, 0.2890554666519165, -0.12710948288440704, 0.07454913854598999, 1.0147089958190918, 0.1307186335325241, 0.036495961248874664, 0.05739643797278404, -1.085639476776123, -1.4898732900619507, -0.27525293827056885, -0.6711546778678894, -0.7964667677879333, 1.1772971153259277, 1.6018919944763184, -1.0190463066101074, 0.15211725234985352, -0.39651334285736084, 0.5242303013801575, 0.5474287867546082, 0.28886130452156067, 0.7935574054718018, -1.537192463874817, -0.4343937039375305, -0.34700527787208557, 1.1210086345672607, 0.2418629229068756, -0.14245419204235077, -0.9638981819152832, -0.5887380242347717, 0.24586091935634613, -0.37265220284461975, -0.18519246578216553, 0.243183434009552, -0.6343184113502502, -0.26514771580696106, -0.39208292961120605, 0.13965687155723572, 0.9176796078681946, -0.4898858368396759, -0.4294467568397522, 0.22935019433498383, -0.3215341567993164, -0.47523579001426697, 0.20380954444408417, -0.3144712746143341, 0.6208934187889099, 0.023908646777272224, 0.44651728868484497, 1.0655025243759155, 0.4051031470298767, 0.4814698398113251, -1.644515872001648, -0.024564893916249275, 0.8231192231178284, 1.3579407930374146, 0.2244964838027954, -0.2699364721775055, 0.3100299537181854, -0.900026261806488, -0.18746380507946014, -0.13734720647335052, 0.10334128886461258, 1.0065584182739258, -0.7852832078933716, -0.09741039574146271, -0.7683516144752502, -0.004787222482264042, -0.01440993882715702, -0.5938115119934082, 0.4263255000114441, 0.06605353951454163, -0.45401304960250854, 0.965515673160553, 0.7581083178520203, -0.07421057671308517, 0.1883753538131714, -0.18607212603092194, 0.426054447889328, -0.4074896275997162, -0.5293444395065308, -0.8338541984558105, 0.6196738481521606, 0.5092214345932007, 0.5879004001617432, -0.5991294980049133, -0.9240103960037231, 0.3733859956264496, 1.2055538892745972, -0.6202252507209778, -0.629516065120697, -1.011022686958313, 0.4006192088127136, 0.49263495206832886, -0.13003279268741608, 0.07215455174446106, 0.07443730533123016, -0.2531919777393341, -0.17666026949882507, 0.525911808013916, 0.9656857848167419, 0.007407866418361664, -0.12775211036205292, 0.3607199192047119, 0.15575627982616425, 0.7836273312568665, 0.7260341048240662, -0.4441225826740265, 0.027576901018619537, -1.5300965309143066, -0.2500643730163574, 0.03423920273780823, 0.22587265074253082, 1.1048270463943481, -0.6232418417930603, -0.31963294744491577, -0.030640989542007446, 0.5537100434303284, -0.6956673860549927, -0.5107191205024719, 0.5243174433708191, 0.030664460733532906, 0.017143724486231804, 0.8109831809997559, 0.23021574318408966, 0.8846274018287659, -0.0011850972659885883, 0.0750872790813446, 0.6691430807113647, -0.1588340699672699, -0.2914115786552429, 0.7064564228057861, 0.08501720428466797, 0.870482325553894, 2.2823715209960938, 0.928981602191925, -0.864386260509491, -0.4922766089439392, 0.567393958568573, 0.13267430663108826, 0.3691280782222748, 0.1483432501554489, 0.5393968820571899, 1.3852370977401733, -0.23012220859527588, -0.08215852081775665, 0.952967643737793, 0.4728408455848694, 0.6689043045043945, -0.0614832267165184, 0.11811885237693787, -0.9047808647155762, -0.05231565237045288, -0.4539942741394043, -0.17065565288066864, 0.5120458006858826, 0.31653162837028503, -0.1443348526954651, 0.1531195193529129, -0.8288646340370178, 0.44488629698753357, -0.24961605668067932, 0.33206048607826233, 0.7099503874778748, 0.5240033864974976, 0.0839766263961792, 0.4941713809967041, 0.4649523198604584, 1.355108380317688, -0.5213873982429504, -0.821098804473877, 0.49127572774887085, -1.1153740882873535, 0.7798819541931152, -0.736270010471344, -0.4013388454914093, -0.13645297288894653, -0.9134487509727478, -0.4847604036331177, -0.8330351710319519, -0.8680295944213867, -1.031482219696045, 0.580450177192688, -0.3879658579826355, -0.07917499542236328, -0.8931742906570435, 0.6042519807815552, 0.5229679942131042, 0.13872353732585907, 1.0797637701034546, 1.0239965915679932, 0.023133745416998863, 0.18037928640842438, -0.1864624321460724, 0.4126434624195099, -0.6525377035140991, -0.40948015451431274, -0.5290542840957642, 0.19193993508815765, 0.28156304359436035, 0.0571540892124176, -0.09227442741394043, 0.6268513202667236, 1.820305585861206, -0.6832968592643738, -0.41777026653289795, 0.43127837777137756, -0.35500675439834595, 0.9870832562446594, 0.27696508169174194, -0.8632051348686218, 0.6543735861778259, -0.13271647691726685, -2.4861152172088623, 1.3504621982574463, -0.5033413171768188, 0.7633769512176514, 0.6171688437461853, 0.8411566615104675, -0.47422581911087036, 1.251956820487976, -0.7136138677597046, -0.31909555196762085, -0.7250881195068359, 0.034628547728061676, -1.4554722309112549, 0.875950813293457, 1.2966121435165405, 0.16183505952358246, -1.1636240482330322, 0.12161125242710114, 0.1747230738401413, 0.10753263533115387, -0.4205116927623749, -0.7825812101364136, 0.09265811741352081, 0.5308898687362671, 0.8636120557785034, -0.25149837136268616, -0.21104146540164948, -0.7235323786735535, 0.8092656135559082, 0.7312209010124207, 0.6688914895057678, 0.20517165958881378, -0.4616818130016327, 0.785592257976532, -0.406927227973938, 0.022594809532165527, 0.5870429277420044, -0.2662856876850128, 1.410749912261963, 1.1467229127883911, -0.4613606035709381, 0.07292935997247696, -0.5342466831207275, -0.9539642333984375, -0.9592339396476746, 0.03024720586836338, 1.0620660781860352, -0.7327850461006165, -0.09314043074846268, -0.8274691700935364, -0.49390384554862976, 0.09455960988998413, 0.7255796194076538, -0.11671920865774155, -0.925109326839447, -0.7939714789390564, 0.18012000620365143, 0.3704400658607483, 0.7157095670700073, -0.3673996925354004, 0.5679640173912048, -0.39428651332855225, -1.5543920993804932, 0.540911853313446, 0.09591037780046463, -1.3693979978561401, -0.2776121199131012, -0.8088135123252869, 0.7593364715576172, -0.023335343226790428, -0.12168482691049576, 0.25035950541496277, 0.9625256061553955, -0.9482482075691223, -1.1053420305252075, -0.6141012907028198, -0.07293200492858887, 0.6130319833755493, 0.9939413666725159, 0.3477388620376587, 0.5190549492835999, 0.5151634216308594, -0.3111788332462311, -0.17906750738620758, -0.05333518981933594, -1.455871820449829, 0.6394672989845276, 0.32768210768699646, -0.25240930914878845, -0.03730880841612816, 1.6671593189239502, -0.09114272892475128, 1.4516661167144775, 0.21054451167583466, 1.180730938911438, -0.6167399287223816, -0.531214714050293, -0.5891202092170715, 0.5773318409919739, -0.8908623456954956, 0.12536479532718658, -0.2620929479598999, -0.9315335750579834, -0.23370790481567383, 0.47970548272132874, 0.9730029106140137, -0.7394886612892151, 0.8528560400009155, -0.3693726658821106, -0.45204177498817444, -1.265278935432434, 0.5770035982131958, 0.5421245694160461, -0.8224690556526184, 0.7822742462158203, 0.1783386468887329, 0.2498864382505417, -0.26661738753318787, -0.07212544977664948, 0.2072129100561142, 0.47455212473869324, -0.32919108867645264, 0.4606649875640869, -0.5007346272468567, 0.4067002236843109, -0.4669082462787628, 0.6039480566978455, 0.5106672048568726, -0.8085862398147583, 0.35110995173454285, 0.5383555293083191, -0.6296519041061401, -0.047875139862298965, -0.05376393720507622, -0.5599787831306458, -0.5696543455123901, 0.8562498092651367, 0.29212120175361633, 0.599585771560669, -0.3812794089317322, 0.3731157183647156, 0.15520213544368744, 0.33430397510528564, 1.214981198310852, -0.538931667804718, -0.6096590161323547, 1.167112112045288, 1.0690696239471436, -0.5562626719474792, 0.20434166491031647, 0.23391814529895782, 0.07388829439878464, 0.7328963875770569, 0.7423352599143982, 0.6266598701477051, -0.69685298204422, -0.1850862205028534, -0.23595939576625824, 0.2098788321018219, 0.6215954422950745, 0.6521586775779724, -1.527788758277893, 0.2078435719013214, 0.08394646644592285, -0.5388352274894714, 0.6394116878509521, -0.2478073388338089, -0.22595259547233582, 0.2106337994337082, -0.36337822675704956, -0.04993095621466637, -0.3754670321941376, -0.008104201406240463, -0.6171027421951294, -0.011034802533686161, 0.4887603521347046, 0.22118178009986877, 0.9274681210517883, 0.47481757402420044, 0.5594179034233093, -0.3452897369861603, -0.5995073914527893, -0.41405370831489563, 0.03011246956884861, -0.5358949899673462, -1.2483371496200562, 0.45563066005706787, -0.11514801532030106, -0.5094379186630249, 0.5539774298667908, -0.30788886547088623, 0.7017921209335327, -0.38274335861206055, 0.1982351690530777, 0.22883771359920502, 0.2143910825252533, -0.21530404686927795, -0.41172507405281067, -0.7873673439025879, -0.35048094391822815, 0.42514511942863464, 0.21820904314517975, 2.0124614238739014, -0.7284809350967407, 1.1548049449920654, 0.02039855346083641, 0.21368609368801117, -0.17585448920726776, -0.36494848132133484, 0.5062642097473145, 0.10810321569442749, 0.17073523998260498, -0.6402174830436707, 0.1488555371761322, 0.020436884835362434, -1.4802381992340088, -0.2338956743478775, -0.3033982813358307, 0.03198719024658203, -0.14823530614376068, 0.09872447699308395, -0.14193712174892426, -0.8012970685958862, -0.35291194915771484, 0.8580886125564575, 0.5841384530067444, 0.3428764045238495, -0.5509495139122009, -1.21940279006958, -0.5937505960464478, 0.5208020210266113, 0.23562949895858765, 0.6194131374359131, 0.7753158807754517, 0.8311880826950073, 0.15255121886730194, -0.27032461762428284, -0.06723303347826004, 0.06926664710044861, -0.4513673484325409, -0.6190465092658997, -0.6991376280784607, 0.6925542950630188, 0.2226061373949051], [-0.5970653295516968, 1.7474573850631714, -2.4479899406433105, -0.44638147950172424, 0.483467698097229, -0.38423240184783936, 0.8294991850852966, 0.00521784508600831, -0.2520427107810974, -0.9535742402076721, -0.04131929948925972, 0.07945875078439713, 0.9434725642204285, 0.7059954404830933, 0.23494581878185272, 1.0028584003448486, 0.17587579786777496, -0.3595127463340759, 0.22050826251506805, 0.5023100972175598, 0.6797831654548645, -1.691728949546814, -0.1663465052843094, -0.6917965412139893, 0.08547183126211166, 0.10537375509738922, -0.7247220873832703, 0.6474238634109497, -0.8481088280677795, -1.0239160060882568, 2.1241400241851807, -0.7974312901496887, -0.06858091056346893, -0.17463284730911255, -1.3359549045562744, -0.5219994783401489, 0.465859979391098, -0.405017614364624, -0.3647257089614868, 0.8244966864585876, 2.1490941047668457, 0.1950344294309616, -0.532620370388031, -1.275588870048523, 1.0229730606079102, 0.08437582850456238, 0.7099926471710205, -0.7133327126502991, 0.19040493667125702, -1.4132519960403442, 0.4173877239227295, -0.6892000436782837, 0.6157445311546326, 1.049343228340149, 0.6020168662071228, -0.42444658279418945, 0.33424612879753113, 0.8564415574073792, 0.03253272548317909, -0.03693528473377228, 1.1594158411026, 0.8688697814941406, 0.6291031837463379, 1.142911434173584, 0.670370876789093, -0.20726169645786285, 0.5217843651771545, 0.15348243713378906, 0.22265580296516418, -0.1867099553346634, 0.6840555667877197, 0.5936174392700195, -0.5204736590385437, -0.6864582300186157, -0.6083795428276062, -0.22199571132659912, -0.1460435837507248, 0.6143841743469238, -0.5376790165901184, 0.6117120981216431, -0.33821675181388855, 0.37603721022605896, 0.1114639937877655, -0.5745696425437927, 0.5383525490760803, -0.10300936549901962, 0.26678478717803955, -0.003215692937374115, -0.7604941725730896, 1.5995376110076904, 0.19373157620429993, -0.2080010622739792, 0.3700213134288788, -0.733533501625061, -0.9631403088569641, -1.2480000257492065, -0.20012596249580383, -0.8590465188026428, 0.19974955916404724, -1.0076305866241455, -0.7624150514602661, -0.9683017730712891, 0.4961756765842438, 0.1799902319908142, 0.6165226101875305, 2.094559669494629, 0.19271999597549438, 0.01390443928539753, -0.7563557624816895, 0.19575364887714386, 0.4129030108451843, 0.2861948013305664, 0.019247766584157944, -0.2763161361217499, 0.19543752074241638, 0.5412877202033997, 1.4803708791732788, 0.25361061096191406, 0.21873889863491058, 0.028818903490900993, -0.2760441303253174, -0.5590065717697144, -0.25224167108535767, 0.40637677907943726, 1.5024868249893188, -0.37265706062316895, -1.1287363767623901, -0.29503342509269714, 0.21786577999591827, -0.8736631870269775, 0.07355175912380219, -0.1662164032459259, -0.1573927402496338, 0.571690022945404, -0.35229018330574036, 1.049375295639038, -0.2833637595176697, -0.7697774171829224, 0.09056835621595383, -0.14206191897392273, -0.4317646026611328, -0.5668755173683167, -0.9937521815299988, 0.1551305651664734, 0.47397345304489136, -0.7804997563362122, 0.5451844930648804, 0.18398837745189667, -0.44254401326179504, 0.32502564787864685, -1.4059996604919434, 0.07211033999919891, -0.06786087900400162, 1.8524751663208008, 0.6690323352813721, -0.573125422000885, 0.4667567312717438, 0.6439613699913025, -0.006726516410708427, 0.39216262102127075, 0.8535569310188293, 0.08963428437709808, -0.9243041276931763, 1.1660876274108887, 0.720167875289917, -0.8693214654922485, 1.0347429513931274, 0.5493555068969727, -0.5812019109725952, 0.7158044576644897, -0.432563453912735, -0.012107044458389282, -1.180554986000061, 0.6851704716682434, -0.22710980474948883, -0.15503761172294617, 0.9923380613327026, -0.38630279898643494, -1.0991755723953247, -1.4953515529632568, 0.5644893646240234, -0.09035446494817734, -0.07088369131088257, 0.4960705637931824, 0.5345801711082458, 0.10532457381486893, -0.23620747029781342, -1.0145233869552612, -0.0966484546661377, -1.0900980234146118, -0.9968065023422241, -0.4157116115093231, -1.2990261316299438, 0.39901337027549744, -0.80083167552948, -0.3162814974784851, 0.8079231977462769, -0.8176245093345642, 0.23451490700244904, -0.014296984300017357, -0.11627324670553207, -0.04949810728430748, -1.2719594240188599, 0.264020174741745, -0.6165807247161865, -0.13625900447368622, -0.43954965472221375, 0.5249437689781189, -0.5289016962051392, 0.6176823377609253, 0.8809296488761902, -0.4942624866962433, -0.4199598729610443, -0.11260566860437393, 0.452318012714386, -1.691904067993164, 0.4444589614868164, -0.4076201319694519, -0.19900023937225342, -0.24384935200214386, 0.40879741311073303, 0.46484771370887756, 0.894252598285675, -0.051118865609169006, 0.975498616695404, -0.20544280111789703, -0.40721461176872253, -0.7066313624382019, -0.4227225184440613, -0.40353599190711975, -0.527532696723938, -0.37403762340545654, 0.23483140766620636, 0.5976912975311279, -0.9286876916885376, 0.9049591422080994, -0.5022802948951721, 0.5406078696250916, 0.45263126492500305, 1.4916176795959473, 0.7677175998687744, 0.00693883839994669, -0.8797013163566589, -0.09004170447587967, -0.5435209274291992, 0.10594422370195389, 0.581908643245697, -0.4292087256908417, 0.1738085299730301, 2.0735397338867188, 0.9741158485412598, -0.714423656463623, 0.3838847875595093, -0.7367401719093323, -0.05886590853333473, -0.8634455800056458, 0.2816426753997803, -0.5204898118972778, -1.2540487051010132, 0.8359358310699463, 0.07829716801643372, -1.2083046436309814, 0.14714424312114716, -0.19143980741500854, 0.7532886266708374, -0.47878706455230713, 0.3241473436355591, 0.06450334936380386, 0.43599462509155273, -0.04330972954630852, 0.021320553496479988, -0.2123222053050995, -0.6743061542510986, 1.0030744075775146, -0.2284458428621292, -0.18463295698165894, 0.5562242865562439, 1.0115032196044922, 0.026478886604309082, 0.9128549098968506, -0.8322056531906128, -1.6304521560668945, -1.042824387550354, -0.22259318828582764, 0.7866576313972473, 0.005388149991631508, -0.00500085623934865, -0.2676294147968292, 1.3858821392059326, 0.15242671966552734, 1.054473876953125, 0.1420467495918274, -0.04164595529437065, -0.08240344375371933, -0.43648988008499146, 0.3132458031177521, 0.25130361318588257, -0.8798776268959045, -1.195346713066101, -0.6580772399902344, 0.4079824388027191, 0.7147696614265442, 1.1298099756240845, 0.9597505927085876, -0.06413228809833527, 0.3872319459915161, -0.42542901635169983, 0.027497051283717155, -0.20880676805973053, -0.5188153982162476, -0.471584290266037, -0.46331077814102173, -0.1437811553478241, -0.05319664999842644, -0.24472470581531525, 1.2305899858474731, -0.060400817543268204, 0.9527867436408997, 0.6749298572540283, -0.8569974899291992, -1.5566157102584839, -1.3153173923492432, -0.21663321554660797, -1.1134847402572632, 0.8943176865577698, 1.0177687406539917, -0.8589479327201843, -0.1204681396484375, 0.45293161273002625, 0.40045085549354553, 0.764041006565094, 0.17087632417678833, 0.510827898979187, -1.8598644733428955, -0.08165353536605835, -0.1690840870141983, 0.7841545343399048, 0.2579120099544525, 0.846721887588501, -0.348953515291214, 0.2526232600212097, 0.37662023305892944, -0.44554606080055237, -0.1593727171421051, 0.19418862462043762, -0.5876151919364929, -0.036705438047647476, 0.18173804879188538, 0.29243385791778564, 1.3028216361999512, -0.5081843733787537, -0.4179871678352356, 0.043523963540792465, -0.0003104811767116189, -0.9308505058288574, 0.23368267714977264, -0.04539843648672104, 1.1382477283477783, 0.2646206319332123, 0.25499919056892395, 1.01966392993927, 0.16415581107139587, 0.6200423240661621, -2.0066440105438232, 0.7194365859031677, 0.8781834840774536, 1.4730440378189087, 0.0781431719660759, -0.0332111231982708, 0.21957927942276, -0.5486578941345215, -0.48933228850364685, -0.1311977654695511, 1.1397080421447754, 0.7233108878135681, -0.27631425857543945, -0.21556587517261505, -0.5606635808944702, -0.20719674229621887, -0.33066487312316895, 0.010929868556559086, 0.3751709461212158, 0.010957970283925533, -0.009213373064994812, 1.2556992769241333, -0.14834047853946686, -0.3874341547489166, -0.410652220249176, -0.07455887645483017, 0.5892713069915771, -0.08193067461252213, -0.13049905002117157, -0.16503030061721802, 0.4437577724456787, 0.018560141324996948, 0.02782805636525154, -1.0504562854766846, -0.6045898795127869, -0.14008986949920654, 0.8919697999954224, -1.1723711490631104, -0.39500921964645386, -0.9290289878845215, 0.9230438470840454, 0.9671291708946228, -0.23423577845096588, 0.655962347984314, 0.05146532133221626, -0.4200746417045593, -0.44918200373649597, 0.5891321301460266, 1.2404145002365112, 0.1365874707698822, -0.21244867146015167, 0.2912691533565521, 0.5312801599502563, 0.5318360924720764, -0.4476475715637207, -1.1438074111938477, 0.4006502032279968, -0.8186900615692139, 0.000961855985224247, 0.07620350271463394, 0.03017628751695156, 1.5641003847122192, -0.15022684633731842, 0.447477251291275, 0.2127256840467453, 0.0580017976462841, -1.7491734027862549, -0.13638140261173248, -0.005812891758978367, 0.3303366005420685, -0.13174346089363098, -0.37476906180381775, 0.45583683252334595, 0.28104865550994873, 0.33501893281936646, 0.6873098015785217, 0.10097619891166687, 0.42209765315055847, -0.31800633668899536, 0.3365594446659088, 0.2949174642562866, 0.795713484287262, 1.7623378038406372, 0.9406761527061462, -0.28682810068130493, -0.4658835828304291, 1.4643296003341675, 0.3296051323413849, 0.5271036028862, 0.5505644083023071, 0.5531008243560791, 1.3973021507263184, -1.4568305015563965, 0.13491912186145782, 0.14998939633369446, 0.039440449327230453, 0.4441315233707428, -0.23214435577392578, 0.5331864953041077, -0.9130785465240479, 0.21033619344234467, 0.2853073477745056, -0.5584459900856018, 1.1989972591400146, 0.19402417540550232, 0.0999065488576889, 1.0979148149490356, -0.7197620272636414, -0.1799170970916748, -0.746835470199585, 0.16253003478050232, -0.3038974404335022, -0.2817687392234802, 0.9429766535758972, 1.1836042404174805, 0.7827228903770447, 1.084073543548584, -0.8687093257904053, -1.2889472246170044, 0.2438749521970749, -0.9821949005126953, 0.0957612469792366, -0.15438497066497803, -0.3511568307876587, -0.1539868265390396, -0.9790938496589661, -0.540986180305481, -0.14072805643081665, -0.7657634019851685, -0.12715387344360352, -0.05556442588567734, -0.9240716099739075, 0.41573503613471985, -0.20392857491970062, 0.942432165145874, 0.6544507741928101, 0.31797292828559875, 0.9113170504570007, 0.2552196979522705, -0.2878677546977997, -0.20811069011688232, 0.05764086917042732, -0.09205678850412369, -0.35987964272499084, -0.6104021072387695, -0.19422926008701324, 0.4756755530834198, 0.6426276564598083, -0.32662084698677063, 0.19578438997268677, 1.3529201745986938, 1.1317594051361084, -0.7175601124763489, -0.38778603076934814, 0.526690661907196, -0.8702556490898132, 0.649298906326294, 0.2616662085056305, -1.3964165449142456, 0.4446077346801758, -0.4089614152908325, -2.543748140335083, 1.621527910232544, 0.06764795631170273, 0.04376017674803734, 0.4331449866294861, 0.6519913673400879, -0.39104172587394714, 1.3661069869995117, -0.09150534868240356, -0.688482403755188, 0.18855106830596924, -0.29023393988609314, -1.175301432609558, 1.0894593000411987, 1.2995872497558594, 0.4906880259513855, -0.6253206729888916, 0.5810086131095886, 0.05025337263941765, -0.03983540087938309, -0.41682669520378113, -0.45456552505493164, 0.5089322924613953, 0.8498722314834595, 0.013595560565590858, -0.3796112835407257, 0.5660019516944885, -0.6188045144081116, 0.6300381422042847, 0.293222576379776, 1.104466438293457, 0.25968363881111145, -0.28937023878097534, 0.5408431887626648, -0.459188312292099, -0.5106740593910217, 0.03523522615432739, -0.604981541633606, 0.8635220527648926, 0.07153518497943878, 0.257066935300827, 0.43153202533721924, -0.10835019499063492, -0.40896111726760864, -0.8535892367362976, 0.9100493788719177, 0.18582738935947418, -0.9009436368942261, -0.5535684823989868, -0.2444390058517456, 0.029396671801805496, -0.29208430647850037, 0.7890001535415649, -0.4954439103603363, -1.3988683223724365, -0.6192572712898254, -0.5003939270973206, -0.5186861753463745, 0.5760250687599182, -0.024346139281988144, 0.4348587691783905, 0.11717614531517029, -1.7205185890197754, 0.7212243676185608, 0.16236364841461182, -2.163877487182617, -0.13342605531215668, -1.0277525186538696, 1.3600233793258667, 0.08463361859321594, -0.16819128394126892, 0.5526597499847412, 1.0021005868911743, -0.8687719106674194, -0.3724796772003174, -1.1356120109558105, -0.8194372057914734, 0.7258774638175964, 0.8298228979110718, -0.8201414942741394, 0.734485924243927, -0.037444762885570526, -0.8287957310676575, -0.5267621874809265, -0.14812709391117096, -2.0008745193481445, 0.08909741044044495, 0.1885463148355484, 0.15009605884552002, -0.05002054572105408, 1.486855149269104, 0.2666076123714447, 0.7958372831344604, -0.2281917929649353, 1.287315011024475, -0.8806176781654358, -1.3366285562515259, -0.2718546688556671, 0.16819888353347778, -0.9050835967063904, -0.44573068618774414, -0.21823038160800934, -0.9173552989959717, -0.522697389125824, 0.28868886828422546, 1.3195058107376099, -0.46437132358551025, 0.413141131401062, -0.21862910687923431, -0.10552486032247543, -1.133243441581726, 0.48535001277923584, 0.771174967288971, -1.666292428970337, 0.3524748980998993, -0.26497769355773926, 0.41512420773506165, -1.1958147287368774, 0.21379505097866058, 1.1586068868637085, 0.25655728578567505, -0.5702918767929077, 0.3804109990596771, -0.7405177354812622, 0.13254794478416443, -0.35368937253952026, 0.8142099976539612, 0.7185536623001099, -0.362151175737381, 0.34568682312965393, 0.6911361813545227, -0.21011342108249664, 0.017018001526594162, -0.3522677421569824, -0.6712876558303833, -0.3894491195678711, 0.14676526188850403, 0.29935887455940247, 0.8668025135993958, -0.01765439845621586, 0.3907370865345001, -0.4208134114742279, -0.0595039427280426, 1.2119179964065552, -0.31295859813690186, -0.9964825510978699, 1.2238000631332397, 1.0153114795684814, 0.038106996566057205, 0.34690624475479126, -0.023941662162542343, 0.6463817358016968, 0.23689688742160797, -0.03947319835424423, 0.00985038559883833, -0.7597305774688721, 0.4088345170021057, -0.060997579246759415, 0.11963683366775513, 0.3455246686935425, -0.7019279599189758, -1.5654046535491943, 0.013085377402603626, 0.0677320584654808, -0.3106933534145355, 0.42392218112945557, -0.9264960885047913, -0.8708229064941406, 0.10451935231685638, -0.03386516869068146, 0.38326409459114075, -0.30086877942085266, -0.2145586609840393, -1.0726479291915894, -0.38224127888679504, 0.4126494824886322, -0.41905921697616577, 1.4757119417190552, -0.24709245562553406, 0.20582662522792816, -0.1190245971083641, 0.21690072119235992, -0.6021305322647095, -0.41343966126441956, -0.1702812761068344, -0.9313367009162903, -0.23046544194221497, -0.666016697883606, -0.3514419198036194, 0.4432845711708069, -0.6144866943359375, 0.5219338536262512, 0.42282095551490784, -0.417447954416275, 0.17370449006557465, 0.5944753885269165, 0.2883077561855316, -0.47515445947647095, -0.7961448431015015, -0.5066919326782227, 0.36289283633232117, 0.32011231780052185, 1.184231162071228, -0.7991707921028137, 0.8578487038612366, 0.3157968521118164, -0.036619432270526886, -0.7698807120323181, -0.717308521270752, 1.6413718461990356, -0.7265959978103638, 0.8064799904823303, -0.9892094731330872, -0.11198867857456207, -0.3738861083984375, -1.2819911241531372, -0.3647754490375519, -0.2787969708442688, -0.31864747405052185, -0.004182322416454554, -0.38069939613342285, -0.11607318371534348, -1.0143380165100098, 0.19539174437522888, -0.03886636346578598, -0.022942010313272476, 0.8011327385902405, -0.06714046746492386, -0.9416502714157104, -0.48909232020378113, 0.06968844681978226, 0.18639391660690308, 0.7412006258964539, 1.4492632150650024, 1.4129191637039185, 0.09728570282459259, -0.32556235790252686, -0.4004557132720947, 0.6950355768203735, -0.7312738299369812, -0.23915517330169678, -1.2835502624511719, -0.2960623502731323, 0.5116958022117615], [1.0959097146987915, 2.141512870788574, -2.369123697280884, -0.24214313924312592, 0.09650363773107529, -0.33652403950691223, 0.6166852116584778, 0.6009204387664795, -0.15809154510498047, -0.3184838593006134, -0.9295205473899841, -0.2791118323802948, 0.187245175242424, 0.13278760015964508, 0.3234948217868805, 1.171920657157898, 0.6951027512550354, 0.4743579030036926, 0.4563932418823242, 1.1636601686477661, -0.3541277050971985, -1.1893352270126343, -0.5215287804603577, 0.5664096474647522, 0.09668101370334625, -0.2486603856086731, -1.4501076936721802, -0.5262928605079651, -0.8688660264015198, -0.882200300693512, 1.5345633029937744, 0.2850666046142578, 0.23697051405906677, 0.06546909362077713, -2.3006956577301025, 0.577837347984314, 1.001565933227539, 0.08768849074840546, -0.023176399990916252, -0.0799839124083519, 2.417327880859375, 0.30847957730293274, -0.7075988054275513, -1.2364780902862549, 0.44233423471450806, 0.26582029461860657, 0.948139488697052, -1.190954327583313, 0.2180953025817871, -0.600351095199585, 0.4177874028682709, -0.07670922577381134, 0.5678309202194214, 1.16354238986969, 0.8422271609306335, -0.9974088668823242, 0.22953712940216064, 0.27172327041625977, 0.034832101315259933, 0.5462608337402344, 1.188075065612793, 0.22304962575435638, 0.5803138017654419, 0.7631714344024658, 0.6200322508811951, -0.9643233418464661, 0.6062601208686829, 0.5083056688308716, 0.28041791915893555, 0.8838817477226257, 0.5148893594741821, 0.4620016813278198, -0.4558617174625397, -0.04815283045172691, -0.3826785683631897, 0.5337554812431335, 0.011872009374201298, 0.8732556700706482, -0.20871730148792267, 0.43827009201049805, -0.3046121597290039, 0.14484994113445282, 0.2333022505044937, 0.322553426027298, -0.3430606424808502, 0.038119375705718994, 0.2944825291633606, -0.5216878056526184, -0.3662968873977661, 1.6254559755325317, -0.06266789883375168, 0.9200268387794495, 0.6040864586830139, 0.004946576897054911, -0.09609472006559372, -0.922674834728241, -0.24705316126346588, -1.5815016031265259, -0.7645139694213867, -0.5097169876098633, -0.015415809117257595, -0.9355775117874146, 1.1966907978057861, 0.8939799666404724, 0.6136500835418701, 1.685060739517212, 0.5095372200012207, -1.2139724493026733, -0.11303495615720749, -0.15661250054836273, -0.5937102437019348, -0.28903305530548096, -0.7131924033164978, -1.393206238746643, -0.12371787428855896, 1.2611349821090698, 1.502474069595337, 0.9757561087608337, 0.13880929350852966, 0.466363787651062, -0.3596731126308441, -0.3648894429206848, -0.3762451112270355, -0.04674305394291878, 1.0824252367019653, 0.3938397765159607, -0.486421674489975, -0.20318637788295746, 0.34442138671875, -0.019831374287605286, 0.2989136874675751, 0.027241505682468414, 0.2399657517671585, 0.35668864846229553, -0.40822461247444153, 0.5368642210960388, -0.4917321801185608, -0.6528836488723755, -0.01655949465930462, 0.5234785676002502, 0.37809208035469055, -0.35106581449508667, -0.2284407764673233, -0.027996089309453964, 0.1543906182050705, -0.6334053874015808, 0.9813541769981384, -0.632705569267273, -0.9237186312675476, 0.5632216334342957, -1.5269347429275513, -0.08739759027957916, -0.4251856505870819, 1.4675525426864624, 0.7464307546615601, -0.3863988518714905, 0.6157293915748596, 0.13330969214439392, -0.3843384385108948, 1.0650235414505005, 0.40729475021362305, 0.1616082787513733, -0.5274813175201416, 0.77814120054245, 0.6577606797218323, -0.3725833296775818, 1.0636969804763794, -0.04586854577064514, -0.5579312443733215, 1.3573765754699707, 0.5898598432540894, -0.8964551091194153, -0.4248158037662506, 0.03172997385263443, 0.7985005378723145, -0.5182181596755981, 1.0669667720794678, -0.035450346767902374, -0.8785766959190369, -0.4232158362865448, 0.5281659364700317, -0.04175259917974472, 0.7690142393112183, 0.21917669475078583, 0.5018536448478699, -0.1420344114303589, 0.027857845649123192, -0.2398156374692917, -0.7971460819244385, -1.0860213041305542, -0.8770885467529297, -0.19777080416679382, -1.0809839963912964, 0.11928841471672058, -0.2952550947666168, -0.6883531808853149, 0.778322160243988, -0.060548290610313416, -0.8817458152770996, 0.18099191784858704, 0.08657940477132797, -0.09739206731319427, -1.1545308828353882, -0.16804440319538116, -0.6016520857810974, 0.1990305483341217, -0.5256116986274719, 0.4015333652496338, -0.9355437755584717, 0.7813302874565125, 0.30799877643585205, -1.288280725479126, -1.361045241355896, 0.41092735528945923, 0.06217292323708534, -1.4291348457336426, 0.46491914987564087, -0.40094053745269775, -0.16983261704444885, -0.3009835481643677, -0.45367342233657837, 0.13330692052841187, 0.9212274551391602, 0.06042899563908577, 0.8938357830047607, -0.7496350407600403, -0.34420305490493774, -1.0822614431381226, -0.7315510511398315, 0.0716480240225792, -0.5562499165534973, -0.9965410828590393, 0.31378668546676636, 0.3752976655960083, -1.3375164270401, 0.3964691162109375, -0.3489115834236145, -0.008323995396494865, -0.20241674780845642, 1.0177160501480103, 0.47191935777664185, 0.3829061985015869, -1.027530312538147, 0.12553630769252777, -0.7490187883377075, 0.4899435043334961, 0.8208906650543213, -0.44639527797698975, -0.336215078830719, 1.587717056274414, 1.4505366086959839, -0.538979709148407, 1.1737587451934814, -0.3326661288738251, -0.5486778616905212, -0.7671281099319458, -0.17670251429080963, 0.4283500909805298, -0.7998073101043701, 1.4041564464569092, 0.33096081018447876, -1.0542292594909668, 0.3169475495815277, -0.051406778395175934, 0.4928048849105835, -0.7783707976341248, 0.302910715341568, -1.246351718902588, 0.4781511425971985, -0.19107401371002197, -0.20315799117088318, 0.007973401807248592, -0.17390380799770355, 0.5219250321388245, -0.010534019209444523, -1.1281824111938477, -0.20056666433811188, 1.0417070388793945, -0.36787065863609314, 0.9283226728439331, -0.19279904663562775, -1.3357946872711182, -1.234606385231018, 0.08102510869503021, 0.49761834740638733, -0.1984870731830597, -0.33017221093177795, 0.9553442597389221, 0.3708517849445343, 0.11931607127189636, 0.23794911801815033, 0.030786758288741112, 0.3755294978618622, -0.21610412001609802, 0.5998159646987915, -0.0443514846265316, 0.3313028812408447, -0.7850165963172913, -0.48647382855415344, 0.1004360169172287, 0.5742433667182922, 1.3876721858978271, 0.6649681925773621, 1.165963053703308, -0.7493804097175598, -0.023973528295755386, -0.6853700280189514, -0.06334131956100464, -0.7200362086296082, -0.3822607100009918, -0.46420520544052124, -1.3181084394454956, -0.2562021315097809, -0.5977478623390198, -0.3018563389778137, 0.3337568938732147, 0.30482208728790283, 0.6917295455932617, 0.7288775444030762, -0.4309917390346527, -1.275529146194458, -1.2731350660324097, -0.41916966438293457, -1.0854707956314087, 0.48191696405410767, 1.4015579223632812, -2.1263492107391357, -0.05080171674489975, -0.3894611895084381, -0.25153154134750366, -0.07492858916521072, -0.12731081247329712, 0.6270543336868286, -0.8069531321525574, -0.0720810666680336, -0.2169748842716217, 1.2657761573791504, 0.13680095970630646, -0.1033843383193016, -0.6434482932090759, 0.7241002321243286, 0.24384184181690216, -0.15528810024261475, -0.8493810892105103, -0.33904653787612915, -0.36599576473236084, -0.21961383521556854, 0.49033740162849426, 0.2204567790031433, 0.42030659317970276, -0.3052207827568054, -1.4578791856765747, -0.0843917652964592, -0.812316358089447, -0.41464847326278687, 1.0045702457427979, -0.023998426273465157, 0.9874555468559265, -0.296581894159317, 0.32484203577041626, 0.6325318813323975, -0.035724300891160965, 0.0736275315284729, -0.4960639774799347, 0.7746027112007141, 1.1559240818023682, 1.5248011350631714, 0.2678888440132141, 0.03838605433702469, 0.034529123455286026, -0.997520387172699, 0.35332679748535156, -0.3750426173210144, 0.26646220684051514, -0.038131233304739, -0.5291118621826172, -0.15396113693714142, -0.634605884552002, 0.38881394267082214, -0.001300943549722433, 0.5091950297355652, 0.5777713656425476, 0.03599085658788681, 0.24344463646411896, 0.7898921966552734, 0.6144307255744934, -0.4806152284145355, -0.465904176235199, 0.08196251094341278, 0.7002516388893127, -0.5624464154243469, 0.5723031163215637, -0.2560611963272095, -1.1749449968338013, 0.17658177018165588, -0.7259589433670044, -1.0635459423065186, -0.18800540268421173, 0.6050633192062378, 1.3611679077148438, -1.0499897003173828, -0.4339604675769806, -0.5764757990837097, 0.8793994188308716, 0.9835861325263977, 0.3630511462688446, 1.07760751247406, 0.5266740322113037, -0.4484647512435913, 0.3551337420940399, 0.08463471382856369, 1.2576394081115723, -0.287261426448822, -0.11897537857294083, -0.27117490768432617, 0.0057562654837965965, 0.5757478475570679, -0.9729551076889038, 0.3939622938632965, -0.0296114981174469, 0.11529693007469177, -0.4785933494567871, 0.3951073884963989, -0.3045588731765747, 1.933061122894287, 0.1345946043729782, -0.4786635637283325, -0.6261057257652283, 0.01400630921125412, -0.46748700737953186, 0.4084782898426056, 1.057714819908142, -0.6501104235649109, -0.344567209482193, -0.0012882091104984283, 0.5152732729911804, 0.3684846758842468, -0.02336743474006653, 0.173968106508255, 0.11430229246616364, 0.515317440032959, 0.12158522754907608, 0.7041884064674377, 0.2004755735397339, 1.2338358163833618, 0.8729931712150574, 1.4206782579421997, -0.2594788670539856, -0.016502730548381805, 0.9241505861282349, 0.28285881876945496, 0.5856086015701294, 0.9288887977600098, 0.29553505778312683, 0.9343931078910828, -0.5960025787353516, -0.46453744173049927, 0.7809939980506897, -0.0021227169781923294, 0.4283948242664337, -0.06801965832710266, 0.48781660199165344, -1.1616765260696411, -0.06769400835037231, 0.11392348259687424, -0.5533739924430847, 0.2742359936237335, -0.07491622120141983, 0.7085224390029907, 0.9743372201919556, -0.7006791830062866, 0.1483089029788971, -0.8366864323616028, -0.26061245799064636, -0.7778955101966858, -0.3849543333053589, 0.5962398052215576, 0.15027517080307007, 0.914013147354126, 0.8416606187820435, -0.3081327974796295, -1.018826961517334, -0.10604092478752136, -1.3342982530593872, 0.3853462338447571, -0.21230106055736542, -0.046130307018756866, -0.9327922463417053, -0.1262357234954834, -0.28571751713752747, -0.3214598000049591, -0.8183396458625793, -0.2856390178203583, -1.0862925052642822, -1.0826406478881836, 0.7963393330574036, 0.06937576085329056, 0.39664897322654724, 0.90983647108078, 0.5903892517089844, 0.005425659473985434, 0.522197425365448, -1.087593674659729, -0.3240281939506531, 0.7311522364616394, 0.5021852254867554, -0.5157580971717834, 0.17800486087799072, -0.8610702157020569, 0.20951209962368011, 0.0703561082482338, -0.038662441074848175, 0.7135806679725647, 0.6236461400985718, 1.308292269706726, -1.0187900066375732, -0.31971079111099243, 0.8485345840454102, -0.9921121001243591, 0.9696630239486694, 0.6630457639694214, -0.6748164296150208, -0.07153283804655075, -0.6278417110443115, -1.4778956174850464, 1.7200188636779785, 0.2970646023750305, 0.18915435671806335, 0.5411453247070312, 0.8718830943107605, -0.031455688178539276, 0.9221346974372864, -0.3629954159259796, 0.0011115269735455513, 0.10334132611751556, 0.07584535330533981, -0.38106635212898254, -0.025947852060198784, 0.9946402907371521, 0.05795183777809143, -0.4812379777431488, -0.02552301064133644, -0.31663262844085693, -0.214509055018425, -0.7205619215965271, -0.008002279326319695, 0.3690188229084015, 0.31662625074386597, 0.38446274399757385, -0.1877351999282837, 0.525869607925415, -1.0776151418685913, 0.10017040371894836, 0.6954393982887268, 0.6516902446746826, 0.39661070704460144, -0.3093441426753998, 1.0966532230377197, -0.7537133097648621, 0.23962128162384033, -0.25808265805244446, -0.41427165269851685, 1.106622576713562, -0.047062791883945465, -0.015216761268675327, 0.5266460180282593, 0.18083487451076508, -0.9270676970481873, -0.9918745160102844, -0.0811956524848938, 1.341077446937561, -0.9543097019195557, -0.8765451908111572, -0.3610944449901581, 0.007543180603533983, 0.07313786447048187, 0.2264205813407898, 0.11334218829870224, -1.1049933433532715, -1.3526687622070312, -0.13759441673755646, -0.4897456765174866, 1.127493143081665, -0.3468776047229767, 0.5653765797615051, 0.006676798686385155, -1.5590399503707886, 0.6874943971633911, -0.010503647848963737, -1.5934289693832397, 0.38239964842796326, -0.5839687585830688, 0.4174756705760956, -0.008586314506828785, 0.08346443623304367, 0.059022314846515656, 1.2912845611572266, -0.7174807190895081, -0.8378679752349854, -1.4817906618118286, -0.7717861533164978, 0.1276378035545349, 1.5311012268066406, -1.1121400594711304, 1.8411097526550293, -0.627157986164093, -0.19047966599464417, -0.30942007899284363, -0.01837347075343132, -0.33636045455932617, -0.012777951546013355, -0.2790079712867737, -0.1548253297805786, 0.4615718722343445, 0.8452108502388, 1.041358232498169, 1.4126273393630981, 0.23478421568870544, 1.2466011047363281, -1.026746392250061, -0.6233765482902527, -0.12360823154449463, -0.0645604282617569, -0.6877543330192566, -0.6937485337257385, -0.0077803065069019794, -0.8439880609512329, -0.8045617341995239, -0.3506562113761902, 1.2258403301239014, -1.1854655742645264, 0.7460061311721802, 0.3802102506160736, -0.5363979339599609, -0.7824856042861938, 0.05097631737589836, 0.09662795811891556, -0.4421705901622772, 0.27650582790374756, 0.041021693497896194, 0.15581350028514862, -0.8718594908714294, -0.4725518226623535, 0.6704597473144531, 0.07565389573574066, -0.42094239592552185, 0.22743678092956543, -0.015808148309588432, 0.38975390791893005, -0.5266897082328796, 1.1319222450256348, 0.787608802318573, -0.17202728986740112, 0.07227545231580734, -0.17178286612033844, -0.9497984051704407, 0.27452611923217773, -0.15097029507160187, -0.22647066414356232, -0.44100135564804077, 0.6979242563247681, 0.45512521266937256, -0.17890691757202148, 0.09677529335021973, 0.21025831997394562, 0.4766652584075928, 0.08649270981550217, 1.1384388208389282, -0.6934916973114014, 0.1320054978132248, 1.432702660560608, 1.1040648221969604, -0.5566328763961792, 0.6965308785438538, -0.3515738546848297, 0.22381484508514404, 0.5672568678855896, 0.19927246868610382, 0.1491767317056656, -0.7676494121551514, 0.3609967827796936, 0.37529873847961426, -0.3210360109806061, -0.4100104570388794, -0.7726694345474243, -1.6855648756027222, -0.10715460032224655, -0.31701263785362244, 0.09351260215044022, 0.5140453577041626, -0.971969723701477, -0.599814772605896, 0.04142744839191437, 0.08404990285634995, 0.0005183180328458548, -0.12422909587621689, 0.41194459795951843, -0.4585319757461548, -0.3149164319038391, 0.7980296015739441, -0.18323016166687012, 0.9424900412559509, -0.36277616024017334, -0.5073296427726746, -0.3284895718097687, -0.5507960915565491, 0.3124040365219116, -0.09880039095878601, -0.6510022878646851, -0.888712465763092, 0.47484835982322693, -0.6835448741912842, -0.13193799555301666, 0.13056062161922455, 0.4201776385307312, 0.35140830278396606, -0.22354763746261597, -0.0361587256193161, 0.46582522988319397, 0.5325469374656677, 0.41433650255203247, -0.39338040351867676, -0.8906688690185547, -1.182633399963379, 0.1349092721939087, -0.2927819490432739, 0.340090811252594, -0.505466878414154, 0.825959324836731, 0.21186526119709015, -0.664797306060791, -0.4588845670223236, -0.6332001686096191, 0.849263072013855, 0.3240344822406769, -0.11834016442298889, -1.2261731624603271, -0.18527962267398834, -0.10540338605642319, -1.22677481174469, -0.18460862338542938, -0.4208734333515167, -0.2110302895307541, -0.19915887713432312, -0.8992457985877991, -0.9290197491645813, -0.9636677503585815, 0.09630965441465378, 0.4874054789543152, 0.18487779796123505, 0.7375420331954956, -0.4336772561073303, -1.1915278434753418, 0.08320940285921097, 1.5045838356018066, 0.2560155987739563, 0.37660717964172363, 1.2882112264633179, 1.1503952741622925, 0.2559204399585724, -0.4711957275867462, -0.22602826356887817, 0.10690710693597794, -1.1320565938949585, 0.6469547152519226, -0.8133674263954163, -0.44523897767066956, -0.4064346253871918], [-0.3723863661289215, 2.2544918060302734, -2.53059458732605, -0.923529863357544, 0.10140477120876312, 0.002910822629928589, 1.4296375513076782, 0.4884054958820343, 0.03463757410645485, -1.4978984594345093, -0.056955769658088684, -0.1998804360628128, 0.5740365386009216, 0.6957622766494751, 0.15328101813793182, 0.3251182734966278, 0.3071214556694031, -0.6766011714935303, 0.5850779414176941, 0.9235190749168396, 0.19669322669506073, -1.402207851409912, -0.18484815955162048, -0.2179737538099289, 0.22423337399959564, -0.21546384692192078, -1.3879462480545044, 0.28273552656173706, -0.6945500373840332, -0.8439441323280334, 1.769718885421753, -0.5371209979057312, -0.02877913974225521, 0.13438327610492706, -0.9579429030418396, -0.3088705837726593, 0.34565794467926025, 0.0540100634098053, -0.3414762020111084, -0.06548518687486649, 2.5465080738067627, -0.06553728878498077, -0.4512960910797119, -1.3275189399719238, 0.6382509469985962, 0.05676031485199928, 0.12663981318473816, -1.207942247390747, -0.10102318972349167, -0.8292229175567627, 0.13618284463882446, -0.00836188904941082, 1.1925128698349, 0.6968124508857727, 1.1864875555038452, -1.016261100769043, 0.3298822045326233, 1.3988721370697021, 0.2580845355987549, 0.11127892136573792, 0.5428006052970886, 0.9413189888000488, 0.574997067451477, 1.4734574556350708, 0.4525604248046875, -0.6900373101234436, 0.6194140315055847, 0.014919149689376354, 0.21273669600486755, 0.27437442541122437, 0.13358387351036072, 0.22215533256530762, -0.2888962924480438, -0.525907576084137, -1.2285773754119873, 0.06231345608830452, -0.23399710655212402, 0.40889424085617065, 0.03843842074275017, 0.7544354796409607, -0.2430209219455719, -0.13665300607681274, 0.0056846244260668755, -0.006390061229467392, 0.47265443205833435, 0.5947560667991638, 0.3647483289241791, -0.4168488383293152, -0.6707624793052673, 1.6931192874908447, 0.002546636387705803, -0.010367038659751415, 0.44234922528266907, 0.02997034229338169, -0.519119143486023, -0.7080943584442139, -0.42986807227134705, -0.44745975732803345, -0.01905650645494461, -0.8574382066726685, -0.49620378017425537, -0.4806835949420929, 0.2790418565273285, 0.6976834535598755, -0.2328578531742096, 2.1925811767578125, 0.1332404911518097, -0.5658389329910278, -0.8389632105827332, -0.21313564479351044, -0.12106171995401382, 0.187638059258461, 0.1031675934791565, -0.13326673209667206, -0.3624417781829834, 0.7560604810714722, 1.5216363668441772, 0.34846991300582886, 0.15145398676395416, 0.11163129657506943, -0.28933537006378174, -1.1078683137893677, -0.4380984306335449, 0.10290568321943283, 1.8582231998443604, -0.05997907742857933, -1.0710521936416626, -0.3611527681350708, 0.10776523500680923, -0.1404956728219986, -0.007249265909194946, 0.12569384276866913, -0.09464527666568756, 0.4825090765953064, -0.18575701117515564, 1.009466290473938, 0.486910879611969, -1.066042423248291, 0.4161951541900635, 0.20553797483444214, -0.23172175884246826, -0.4477018415927887, -0.6626135110855103, -0.9737972021102905, 0.2782866954803467, -0.6337147355079651, 0.8401069045066833, 0.14513875544071198, -0.1732693463563919, 0.19858551025390625, -1.8308359384536743, -0.14218217134475708, 0.3215556740760803, 1.5576248168945312, 0.484898179769516, -0.9023062586784363, 0.35953837633132935, 0.4838407337665558, 0.5771051645278931, 0.7870330214500427, 1.0374523401260376, -0.43554598093032837, -0.8104262948036194, 0.9729456901550293, 1.2920514345169067, -0.8556274771690369, 0.7277746796607971, 0.19296981394290924, -0.4932481646537781, 0.49365368485450745, 0.18721161782741547, -0.19427284598350525, -0.46590498089790344, 0.7374765872955322, -0.10031615942716599, -1.1201846599578857, 1.2283529043197632, -0.46473804116249084, -0.8879565596580505, -1.3837370872497559, 0.7489610314369202, -0.05293118953704834, -0.13069431483745575, 0.18127791583538055, 0.5541865229606628, -0.6305062174797058, 0.0703018456697464, -1.079309344291687, 0.21498025953769684, -0.4877854287624359, -0.773785412311554, -0.015154695138335228, -1.5876491069793701, 0.17312631011009216, -0.4483749270439148, -0.9666467308998108, 1.085954189300537, -0.2462049126625061, -0.4795699715614319, -0.023577624931931496, -0.4217230975627899, -0.16181713342666626, -1.1762819290161133, -0.1238497868180275, -0.8540805578231812, 0.11526674777269363, -0.4929066002368927, 0.6611466407775879, -0.4642269015312195, 0.9771226048469543, 0.573266863822937, 0.10019002854824066, -0.6924280524253845, 0.42471081018447876, 0.5113717317581177, -0.9635102152824402, 0.2923434376716614, 0.021209686994552612, -0.25185489654541016, 0.041724324226379395, 0.10873634368181229, 0.37660133838653564, 0.8082126379013062, 0.30553677678108215, 0.8545008301734924, -0.27129343152046204, -0.6276001930236816, -0.29138508439064026, -0.6863864660263062, 0.20907019078731537, -0.3681219816207886, -1.0034723281860352, 0.5710111260414124, 0.20371989905834198, -0.652505099773407, 1.1127018928527832, -0.28208866715431213, 0.2494659274816513, 0.47728970646858215, 1.0798914432525635, 0.7027501463890076, 0.2014995813369751, -0.6943414807319641, -0.8132501244544983, -0.36265265941619873, -0.3903588652610779, 0.6740551590919495, -0.33717653155326843, 0.3223794996738434, 1.750348448753357, 0.9707763195037842, -0.2147199660539627, 0.22231124341487885, -0.7339682579040527, 0.041895490139722824, -0.9583987593650818, 0.059216130524873734, -0.11032944172620773, -0.9111279249191284, 1.3846657276153564, 0.48159709572792053, -1.8423986434936523, -0.5122196078300476, -0.2964380383491516, 0.09070783853530884, -0.7445864677429199, -0.49166417121887207, -0.3676203191280365, 0.08884114027023315, 0.0813026949763298, 0.010434497147798538, -0.47265303134918213, -0.29404041171073914, 1.0375596284866333, -0.40113165974617004, -0.5219353437423706, 0.18395766615867615, 0.8238527178764343, 0.02346445806324482, 1.2390472888946533, -0.017392344772815704, -1.6180247068405151, -0.828088641166687, 0.3017481863498688, 0.6804797053337097, 0.42417383193969727, -0.07030589878559113, -0.16889016330242157, 1.01918625831604, 0.17091532051563263, 0.5209524035453796, 0.4519617259502411, -0.016336629167199135, 0.062489550560712814, -0.2144172042608261, 0.1906357705593109, 0.6123842000961304, -1.009497046470642, -0.6694176197052002, -0.1284058541059494, 0.8859688639640808, 1.1662846803665161, 1.3342734575271606, 1.1316603422164917, -0.1406198889017105, 0.3253333568572998, -0.1425025910139084, -0.2891133427619934, -0.33135977387428284, -0.6957498788833618, -0.5499367713928223, -0.9939659833908081, -0.21354679763317108, -0.5243109464645386, -0.009628650732338428, 1.2267462015151978, 0.05341889336705208, 1.1173489093780518, 0.10506917536258698, -0.5458166599273682, -1.0206687450408936, -0.6469175815582275, -0.6436303853988647, -0.6206746101379395, 0.7306267023086548, 1.146987795829773, -0.6456022262573242, 0.05965554714202881, -0.07791253924369812, 0.5754518508911133, 0.9375780820846558, 0.3940723240375519, 0.10100710391998291, -1.3150999546051025, -0.46141529083251953, 0.16805340349674225, 1.0732494592666626, -0.29541686177253723, 0.10123979300260544, -0.4752453863620758, 0.7746497392654419, 1.1584749221801758, -0.1982853263616562, -0.29919466376304626, -0.002330780029296875, -0.6424344182014465, -0.35267752408981323, -0.25723057985305786, -0.14495381712913513, 0.9958478808403015, -0.10292088985443115, -0.36863332986831665, -0.2108100801706314, -0.47872841358184814, -0.49918946623802185, 0.5050526261329651, 0.13558639585971832, 1.091425895690918, -0.14543598890304565, 0.7071505188941956, 1.4454843997955322, 0.4502519965171814, 0.5577289462089539, -2.01656174659729, 0.5598326325416565, 0.9146445989608765, 0.718837559223175, 0.6113347411155701, 0.5230607390403748, 0.30532026290893555, -1.117563009262085, -0.48660603165626526, -0.1191079244017601, 0.6535320281982422, 0.6007646918296814, 0.2993094027042389, -0.3402823805809021, -0.09153925627470016, 0.5115841627120972, -0.3431670367717743, 0.607996940612793, 0.43382948637008667, -0.5552705526351929, -0.2364426702260971, 0.9277711510658264, 0.032560303807258606, -0.4122682213783264, -0.8472073078155518, 0.363348126411438, 0.24663646519184113, -0.18410877883434296, 0.023582449182868004, -0.5855649709701538, -0.045323941856622696, 0.08895085752010345, 0.13234864175319672, -0.7420644164085388, -0.8536865711212158, 0.10427214205265045, 1.0599452257156372, -1.3544769287109375, -0.6420531868934631, -0.8183232545852661, 0.4303489923477173, 0.42438894510269165, -0.39443448185920715, 0.5405547618865967, -0.03586101531982422, -0.20459435880184174, -0.44924283027648926, 0.20861653983592987, 1.3633010387420654, 0.38246625661849976, -0.1667340099811554, -0.14611031115055084, 0.51564621925354, 0.45880717039108276, -0.42215263843536377, -0.5025412440299988, -0.026157226413488388, -0.8971932530403137, 0.41627568006515503, 0.30472731590270996, -0.37048855423927307, 1.420219898223877, -0.47851189970970154, 0.0848333090543747, 0.41125091910362244, -0.3292613625526428, -1.0483238697052002, 0.20701144635677338, 0.12624257802963257, -0.050554800778627396, -0.19720569252967834, -0.11360543221235275, 0.4318270981311798, 0.1971317082643509, 0.4334847331047058, 0.5161882638931274, 0.17745669186115265, -0.240748330950737, -0.19186708331108093, 0.6376968622207642, 0.18583890795707703, 0.3151896595954895, 1.5083277225494385, 0.9925724864006042, -0.5853139758110046, -0.8196212649345398, 0.684020459651947, 0.07209789007902145, -0.1774844378232956, 1.1871484518051147, 0.7283732891082764, 1.0669050216674805, -1.668575644493103, -0.18574118614196777, 0.7582062482833862, -0.3225126564502716, 0.9937041401863098, -0.05927562341094017, 0.37687742710113525, -1.1026382446289062, -0.14196433126926422, 0.16068850457668304, -0.20282095670700073, 1.0038659572601318, 0.08484179526567459, -0.020450014621019363, 0.7157711386680603, -0.5794384479522705, -0.24843895435333252, -0.5704062581062317, -0.42214855551719666, -0.20611633360385895, 0.2152450829744339, 1.1805038452148438, 0.8160091042518616, 0.8753515481948853, 0.9153919816017151, -0.5078579783439636, -0.9319283366203308, 0.6046684980392456, -1.1351711750030518, -0.13692665100097656, -0.057931847870349884, -0.39721864461898804, -0.1097119003534317, -0.9266810417175293, -0.31802836060523987, 0.15717054903507233, -0.6586356163024902, -0.5675969123840332, -0.6939307451248169, -0.9804955720901489, 0.18619059026241302, -0.06680253148078918, 1.3975096940994263, 0.7904037833213806, 0.3348918855190277, -0.029235634952783585, 0.04562656581401825, -0.8033729195594788, -0.2513505816459656, 0.2757502496242523, -0.2915542423725128, 0.1999569833278656, -1.1053930521011353, -0.5980687141418457, 0.4575185179710388, 0.49540582299232483, 0.07036746293306351, 0.1992998719215393, 1.188855767250061, 1.77675199508667, -0.7498349547386169, -0.18182134628295898, 0.8529885411262512, -0.5258722305297852, 0.6735453009605408, 0.519203245639801, -0.8098804950714111, -0.06279660761356354, -0.11968177556991577, -2.301119327545166, 1.6989270448684692, -0.02005898952484131, -0.586903989315033, 0.6924272179603577, 0.8789438009262085, -0.3392089903354645, 1.4531018733978271, -0.5885007977485657, -0.4729902148246765, 0.17376279830932617, -0.2873535752296448, -1.6089354753494263, 0.36628252267837524, 0.7954242825508118, -0.06954269111156464, -0.8471983671188354, 0.6288950443267822, 0.018288597464561462, 0.11464524269104004, 0.5982035994529724, -0.37919870018959045, 0.7559922337532043, 0.39159321784973145, 0.04077534005045891, -0.6638134121894836, 0.8798955678939819, -1.0986608266830444, 0.4480205476284027, 0.3693060278892517, 0.9683871269226074, 0.2734251916408539, -0.8928183913230896, 0.7026383876800537, -0.6191901564598083, -0.17489251494407654, 0.1468367576599121, -0.5552339553833008, 0.5286176204681396, 0.28611263632774353, 0.6477799415588379, 0.3463573753833771, -0.34860438108444214, -0.42012733221054077, -0.7817266583442688, -0.12418895959854126, 0.15155689418315887, -1.4463865756988525, -0.07820657640695572, -0.48485466837882996, -0.21131961047649384, 0.25776827335357666, 0.3614465594291687, -0.21794560551643372, -1.3505781888961792, -0.9376106858253479, -0.8402333855628967, -0.6672884225845337, 0.8770828247070312, -0.28154125809669495, 0.4568088948726654, -0.11266979575157166, -1.583030104637146, 0.8315363526344299, -0.6725620031356812, -1.9992609024047852, -0.22440941631793976, -0.012111409567296505, 1.269429087638855, -0.1906575858592987, 0.1140093058347702, 0.6435978412628174, 0.8215177059173584, -0.0753663033246994, -0.55816251039505, -1.3478790521621704, -0.5752049684524536, 0.7567416429519653, 0.5492613911628723, -0.6188027262687683, 1.6699256896972656, 0.3497089743614197, -0.34770894050598145, -0.19497200846672058, 0.17405307292938232, -1.7868770360946655, -0.19660770893096924, 0.267142117023468, -0.1215563416481018, 0.28764966130256653, 1.232292890548706, 0.1878330260515213, 1.1225866079330444, 0.37623533606529236, 1.2381349802017212, -0.4311123192310333, -1.012593150138855, 0.1527271866798401, 0.08658691495656967, -0.8880807757377625, 0.07187715917825699, 0.2851578891277313, -0.9225649237632751, -0.9033225178718567, 0.3223186135292053, 1.0993326902389526, -0.7464540600776672, 0.688743531703949, -0.23737041652202606, 0.573189914226532, -1.5674285888671875, 0.398519903421402, 0.6949756741523743, -0.8205738067626953, -0.11019408702850342, 0.2802073657512665, 0.6340662837028503, -1.2513976097106934, 0.0626121535897255, 0.5802998542785645, -0.06734585762023926, -0.6213926672935486, -0.13389024138450623, -0.3155476152896881, 0.33551374077796936, -0.5783042311668396, 1.6401458978652954, 0.6961238384246826, -0.17642100155353546, 0.10427329689264297, 1.0425407886505127, -0.005365659948438406, 0.4346536695957184, -0.33241650462150574, -0.37333622574806213, -0.9071770310401917, 0.3799302577972412, 0.16177605092525482, 0.23761680722236633, -0.6598287224769592, 0.2604881525039673, -0.20497947931289673, -0.4115292429924011, 2.02646803855896, -0.47220200300216675, -0.604500412940979, 0.9792886972427368, 0.4828420877456665, -0.07805013656616211, 0.7554001808166504, -0.23859310150146484, 0.6622813940048218, -0.056265462189912796, 0.5606634020805359, 0.10151338577270508, -0.5178192853927612, 0.06698460131883621, 0.7518283724784851, -0.39656519889831543, 0.5871743559837341, -0.4471430480480194, -1.2716578245162964, -0.8790154457092285, -0.5331107974052429, -0.6259339451789856, 0.727940022945404, -0.38760602474212646, -0.5519428253173828, -0.3518770933151245, -0.21942541003227234, -0.0612955167889595, -0.9455339312553406, -0.08955660462379456, -1.07802152633667, -0.7948032021522522, 0.5614472031593323, -0.5214546918869019, 1.1827435493469238, 0.09945638477802277, 0.8208243250846863, -0.32165271043777466, -0.3596510589122772, -0.10410548001527786, 0.0001785573549568653, -0.19189250469207764, -0.6222345232963562, 0.8183398246765137, -0.8019896149635315, 0.15772832930088043, 0.33623263239860535, -0.7101964950561523, 0.4952491819858551, -0.13405348360538483, -1.2417356967926025, 0.14900819957256317, 0.22150388360023499, 0.10181549191474915, -0.4068397879600525, -0.7042093873023987, -0.8971533179283142, 0.66362464427948, 0.3705858290195465, 0.9121537208557129, -0.7087903022766113, 0.7638970017433167, 0.5183908343315125, -0.29979759454727173, -0.9897884726524353, -0.6891865134239197, 1.3427743911743164, -0.47291937470436096, 0.6702263355255127, -0.8255305290222168, 0.047991566359996796, -0.15460939705371857, -1.1804460287094116, -0.32044121623039246, -0.12169798463582993, -0.5156208872795105, -0.031358201056718826, -0.7291830778121948, -0.34527716040611267, -0.8268617391586304, 0.28569480776786804, -0.0443619005382061, 0.10322942584753036, 0.674892246723175, 0.2123442143201828, -0.7348799705505371, -0.8756810426712036, 0.20395882427692413, 0.2619740962982178, 0.6781546473503113, 1.2477020025253296, 1.3390116691589355, 0.08796478062868118, -0.20794008672237396, -0.4190950095653534, 0.154244065284729, -0.6043580174446106, -0.06693549454212189, -1.0559748411178589, -0.541242241859436, -0.05815467610955238], [-0.6466774344444275, 0.7929073572158813, -2.3725924491882324, -0.8073758482933044, 0.4500918984413147, -0.49151164293289185, 0.7349882125854492, -0.0012904815375804901, -0.7880847454071045, -0.28613466024398804, -1.3344005346298218, 0.49583932757377625, -0.5754044055938721, 0.1957225799560547, -0.27105867862701416, 0.8911151885986328, 1.0074611902236938, -0.1854296773672104, 0.7034185528755188, 0.7448040246963501, -0.5433462858200073, -1.106935739517212, 0.7779027223587036, 0.4329890012741089, 0.33496084809303284, 0.45798733830451965, -1.5011621713638306, -0.7333377003669739, -0.5554541945457458, -0.55805903673172, 1.9039968252182007, 0.25640833377838135, -0.46148526668548584, -0.1914229542016983, -1.3635835647583008, -0.5604103803634644, 0.4429357051849365, -0.05352296307682991, 0.18948984146118164, 1.1429224014282227, 1.35666024684906, 0.5456544160842896, -0.7880585193634033, -1.8348042964935303, 0.5394415259361267, -0.7144795656204224, 0.09324418753385544, -0.92400062084198, -0.5432806015014648, -1.3931559324264526, 0.5382136106491089, 0.32646024227142334, 0.5111181735992432, 0.11313968896865845, 1.4352083206176758, -0.7309923768043518, -0.14452825486660004, 0.9452807903289795, 0.4635547995567322, -0.29550501704216003, 1.5441792011260986, 0.19311147928237915, -0.25168725848197937, 0.26732149720191956, 0.5164057612419128, 0.1136353462934494, 0.6750127077102661, 0.36821675300598145, -0.43079304695129395, -0.09208569675683975, 0.34102532267570496, 0.044837549328804016, -0.6601642966270447, 0.3409768044948578, -0.6134703755378723, 0.5387156009674072, 1.1832387447357178, 0.03306533023715019, -0.24228891730308533, 0.36447519063949585, -0.3342956006526947, -0.07373624294996262, 0.12550559639930725, -0.12913063168525696, -0.2412494271993637, 0.20822595059871674, 0.35414063930511475, 0.6172224879264832, -0.7809507250785828, 2.01267409324646, 0.07622768729925156, 0.3569236993789673, 0.9738278388977051, -0.5974876880645752, 0.21920686960220337, -0.7090116143226624, -0.07987166196107864, -0.9561966061592102, -0.8902185559272766, -0.6026334166526794, 0.05805196985602379, -0.567278265953064, 0.6989962458610535, 0.2836059033870697, 0.7485577464103699, 1.3572077751159668, 0.43462657928466797, -0.32730767130851746, -0.26922059059143066, 0.18821030855178833, -0.09382788091897964, -0.10050907731056213, -1.3035165071487427, -0.7952826619148254, 0.5044186115264893, 1.1348645687103271, 1.0175962448120117, -0.5675690770149231, -0.021779270842671394, 0.7601314187049866, -0.6896531581878662, -0.32449620962142944, -1.128908634185791, 0.5089355707168579, 1.2780016660690308, 0.6298897862434387, -0.06081903725862503, -0.14341358840465546, 0.14947637915611267, -0.10858942568302155, 1.140586018562317, 0.3682138919830322, -0.07307994365692139, 0.48456260561943054, 0.11936648935079575, 1.219494104385376, -0.24497640132904053, -1.0175899267196655, 0.03393522650003433, -0.5628749132156372, -0.488958477973938, -0.47960934042930603, -0.8792271614074707, -0.34766143560409546, 0.39551976323127747, -0.6698969602584839, 0.4354352056980133, 0.2721119821071625, -0.7218141555786133, 0.2679320275783539, -1.0226870775222778, 0.07892841845750809, 0.21843576431274414, 0.5362939238548279, 0.5496541261672974, 0.4428638219833374, 0.40972957015037537, 0.025130392983555794, -0.08337213844060898, 1.2300732135772705, 0.7086376547813416, -0.18360809981822968, -0.594327449798584, 1.0093730688095093, 0.6843879818916321, -0.657680332660675, 0.9590311646461487, 0.24147899448871613, 0.28223949670791626, 0.30741065740585327, -0.37818795442581177, -1.2346431016921997, -0.33276131749153137, 0.4248884916305542, -0.12460093200206757, -0.7183137536048889, 0.33239901065826416, -0.6298204064369202, -1.4449024200439453, -0.9161653518676758, 0.31018179655075073, -0.7016996741294861, 0.3235442042350769, -0.178517684340477, 0.5886000990867615, -0.3708772361278534, 0.2957463562488556, 0.22474651038646698, -0.8202781677246094, -1.3767119646072388, -1.0568273067474365, -0.6334450244903564, -1.3001933097839355, -0.23854242265224457, -0.3055588901042938, -0.8135958909988403, -0.1961510330438614, -0.7651929259300232, -0.4405207335948944, 0.21077708899974823, -0.16252361238002777, -0.5351480841636658, -0.6253445744514465, 0.482340931892395, -0.41997653245925903, 0.6666219234466553, -0.7502243518829346, 0.24242721498012543, -0.7312555909156799, 0.2407686859369278, 1.6455501317977905, 0.5694254636764526, -1.1367777585983276, 0.7459772825241089, -0.08060998469591141, -1.947800874710083, 0.6186310052871704, -0.1468818038702011, -0.5547375082969666, 0.18276973068714142, 0.5597624778747559, 0.5786397457122803, 0.4841429889202118, 0.2234739363193512, 0.3505047857761383, 0.08867280185222626, -0.9989883899688721, -0.41450411081314087, -0.7463074922561646, -0.6317028403282166, -0.8484904170036316, -0.6124957203865051, 0.8944221138954163, 1.0652031898498535, -1.1489359140396118, 0.18617157638072968, -0.8316879272460938, 0.5222846865653992, 0.13876782357692719, 0.339960515499115, 0.2214486449956894, 0.8184511065483093, -1.044913649559021, 0.11485772579908371, -0.9566157460212708, -0.6733705997467041, 0.6817888021469116, -0.15163104236125946, 0.5761160850524902, 1.2805256843566895, 1.0369067192077637, -0.4086134135723114, -0.5172678828239441, -0.0950484573841095, -0.15545694530010223, -0.9705240726470947, -0.5205791592597961, 0.25354287028312683, -0.9641983509063721, 1.0474845170974731, 0.5138497352600098, -0.4813731014728546, -0.40679019689559937, 0.17733538150787354, -0.1782376766204834, -0.3835884630680084, 0.08408664166927338, -0.8663902878761292, 1.098557472229004, 0.007179230451583862, -0.5637162923812866, 0.24605585634708405, 0.22350025177001953, 0.4215434491634369, -0.3587031662464142, -0.14199581742286682, -0.48897597193717957, 0.7779192924499512, -0.3616006076335907, 0.25641849637031555, -0.3196892738342285, -1.5525578260421753, -0.8219019770622253, -0.7313295006752014, 0.8616233468055725, -0.016783030703663826, -0.35617852210998535, 0.24816705286502838, 0.48500722646713257, -0.3094947636127472, 0.27713096141815186, 0.5848109126091003, 0.9577704668045044, -0.2045908421278, 0.21733620762825012, 0.10924771428108215, 0.7599243521690369, -1.2211960554122925, -0.8320967555046082, 0.009363335557281971, -0.009864618070423603, 1.1669968366622925, 0.08777786046266556, 1.449161171913147, -0.897843599319458, -0.21611754596233368, -1.319313406944275, 0.25120919942855835, -1.0207593441009521, -0.12892811000347137, 0.04276452213525772, -1.1773154735565186, -0.6371715664863586, -1.0467760562896729, 0.05141431838274002, 0.29603075981140137, -0.9851942658424377, 0.5725189447402954, 0.8962704539299011, -0.2573050856590271, -1.7776497602462769, -0.7442936301231384, 0.388210266828537, -1.2042224407196045, 0.8837597370147705, 1.4676584005355835, -0.9356374740600586, -0.2815706431865692, 0.20538601279258728, -0.5215804576873779, 1.203017234802246, -0.38829952478408813, 1.0648140907287598, -0.7333957552909851, -0.6775543689727783, 0.3180658221244812, 1.2360116243362427, 0.505996584892273, -0.09660811722278595, -0.6934093832969666, 0.02243046835064888, 0.5263354778289795, -0.1017570048570633, -0.4721534848213196, 0.8362510204315186, 0.04207732900977135, -0.5188389420509338, 0.023097790777683258, 1.0656567811965942, 0.8915748000144958, -0.6189039349555969, -0.6726478934288025, -0.6147873401641846, -0.13404743373394012, -0.6234263777732849, 0.3526177406311035, -0.3158910572528839, 1.3690906763076782, -0.0594232939183712, -0.40342915058135986, 1.0075432062149048, 0.008968954905867577, -0.20616470277309418, -1.5242465734481812, 0.5597188472747803, 0.7089007496833801, 1.555027961730957, 0.609456479549408, -0.010230008512735367, 0.03392397612333298, -0.5421923995018005, 0.2232457399368286, 0.29909199476242065, 1.0445021390914917, 0.8288046717643738, -0.8559550046920776, -0.5241961479187012, -0.3209218978881836, 0.2793436348438263, -0.30985355377197266, -0.436977356672287, -0.1540943682193756, -0.7550769448280334, -0.3487990200519562, 1.1177868843078613, 0.9574883580207825, -0.016825513914227486, 0.1806231141090393, 0.18169938027858734, 0.633236825466156, -1.0067065954208374, -0.14921064674854279, -0.6012651324272156, -0.5824987292289734, 0.6708074808120728, -0.6772290468215942, -0.5398795008659363, 0.12580245733261108, 0.7178367376327515, 0.8211670517921448, -1.5356266498565674, 0.017582306638360023, -0.3694452941417694, 0.6183675527572632, 0.12762898206710815, 0.43690839409828186, 0.332561731338501, 0.013206308707594872, 0.26774588227272034, 0.576898992061615, 0.04680755361914635, 1.8287781476974487, 0.09002149105072021, -0.63386070728302, 0.45004338026046753, 0.41716504096984863, 0.13931801915168762, 0.24719324707984924, -0.4821189045906067, 0.2542414367198944, -0.27058684825897217, -0.8477196097373962, -0.32391422986984253, -0.36002182960510254, 1.622270941734314, -0.30749449133872986, 0.2035554051399231, 0.26372769474983215, -0.02694738283753395, -0.9830660820007324, 0.15961962938308716, 0.09625859558582306, -0.3711884021759033, -0.070896215736866, 0.25016090273857117, 0.6278859972953796, 0.6204410195350647, 0.8186314702033997, 0.13958683609962463, 1.2245689630508423, -0.13417857885360718, 0.30638566613197327, 0.49620628356933594, 0.3492448925971985, 1.1373432874679565, 0.8172429203987122, 1.4434503316879272, -0.6666797399520874, -0.6109955310821533, 1.6602238416671753, -0.19357141852378845, 0.5652025938034058, 0.33500319719314575, 0.6399911642074585, 1.1864486932754517, -1.3530086278915405, -0.36452001333236694, 0.3795185983181, 0.18213775753974915, 0.7405605912208557, -0.855400025844574, -0.6157618165016174, -0.9046661257743835, 0.09387984871864319, -0.1754707545042038, -0.010608295910060406, 0.8387725353240967, 0.2908113896846771, 0.3667996823787689, 0.7037279009819031, -0.5860645771026611, 0.7214860320091248, -0.6912247538566589, 0.7894577383995056, -0.23032744228839874, -0.512849748134613, 0.15901289880275726, 0.2032465636730194, 0.9052941203117371, 1.5607550144195557, -0.32749101519584656, -0.39474520087242126, 0.19218921661376953, -0.9428527355194092, -0.07717088609933853, -0.5054653286933899, 0.0959549993276596, -0.4206887185573578, -0.42572110891342163, 0.1762228012084961, 0.09579723328351974, 0.3468688726425171, -0.02477412112057209, 0.02632082626223564, -1.1943227052688599, -0.3115529716014862, 0.6937248706817627, 0.8136633634567261, -0.04136297106742859, 0.6342298984527588, 0.7198754549026489, 0.21972759068012238, -1.0024094581604004, -0.1869438737630844, 0.370444118976593, 0.6567791700363159, -0.037019696086645126, -0.6393361687660217, -0.9521489143371582, 0.10161886364221573, 0.5016121864318848, 0.09325800836086273, 0.18586722016334534, 0.9855616688728333, 0.9489268660545349, 0.07773090153932571, -0.7102457284927368, 0.5567288994789124, -0.9320219159126282, 0.1012839823961258, 0.1282372623682022, -1.2176768779754639, -0.29755082726478577, 0.24871404469013214, -2.3394079208374023, 1.3198401927947998, 0.017311278730630875, -0.7983534932136536, 0.5432254076004028, 1.1030369997024536, 0.16356261074543, 0.5319639444351196, -0.8390018939971924, 0.3479922413825989, 0.24010081589221954, -0.015219304710626602, -0.9027340412139893, 0.5310884714126587, 1.0783069133758545, 0.4768151640892029, -0.058887094259262085, 0.6248832941055298, 0.16869784891605377, -0.11209901422262192, -0.5450858473777771, -0.1395024210214615, 0.650759756565094, 0.38152340054512024, 0.42067915201187134, -0.825279951095581, 0.11674723774194717, -0.6812184453010559, 0.30178123712539673, -0.04930213838815689, 1.266758918762207, 0.6333968639373779, -0.4405789077281952, 0.35257694125175476, -1.077831506729126, 0.5610962510108948, 0.19555407762527466, -0.9915052056312561, 1.2702041864395142, 0.08157289028167725, -0.27488818764686584, 0.3560546934604645, -0.5686648488044739, -0.94185870885849, -0.8148636817932129, -0.1257622390985489, 1.4731602668762207, -1.651157021522522, -0.7134305834770203, -0.2601625919342041, -0.24269968271255493, 0.19679352641105652, -0.48137834668159485, 0.445349782705307, -0.7805252075195312, -1.6021462678909302, -0.29905447363853455, -0.1268269270658493, 0.8912715315818787, -0.5667470693588257, 0.2353798747062683, 0.571899950504303, -1.4664905071258545, 0.6430032849311829, -0.1017957404255867, -1.4885413646697998, -0.011875629425048828, -1.0486795902252197, 0.5677909851074219, -0.2345404028892517, 0.29744550585746765, 0.22848854959011078, 0.8997611999511719, -0.9817346930503845, -1.0224720239639282, -0.3569866418838501, -0.08490251004695892, 1.0287684202194214, 1.107640027999878, -0.5074307918548584, 0.9845627546310425, -1.0479825735092163, -0.7007095217704773, -0.9220724105834961, 0.006331562530249357, -0.9069321155548096, 0.13822655379772186, -0.09996519982814789, 0.0680658221244812, 0.5616231560707092, 1.1568549871444702, 1.378804087638855, 0.6966584324836731, 0.7840144038200378, 0.43092063069343567, -1.1217737197875977, -0.08341418951749802, -0.6991782188415527, 0.287848562002182, -1.7676494121551514, -0.48355939984321594, -0.23534156382083893, -0.25293034315109253, -1.2487070560455322, 0.3528450131416321, 0.7412208914756775, -0.9262169003486633, 0.5536820292472839, 0.47616270184516907, 0.07799732685089111, -0.2262488156557083, 0.2925415337085724, 0.29925358295440674, -0.9643460512161255, -0.15403716266155243, 0.5108532905578613, 1.389752984046936, -0.7119062542915344, -0.46670812368392944, 0.37769606709480286, 0.28561097383499146, -0.41353532671928406, 0.916822075843811, 0.48491206765174866, -0.4983288645744324, 0.4407329559326172, 1.204527497291565, 1.293649435043335, 0.04714658111333847, 0.38413068652153015, 0.40917885303497314, -0.49706923961639404, -0.042319800704717636, -0.16811317205429077, 0.31863313913345337, -0.42714834213256836, 1.0330458879470825, 0.5166721343994141, 0.1698802411556244, -0.8957453370094299, 0.6645431518554688, -0.274397611618042, 0.3955214321613312, 0.8837140798568726, -0.5691405534744263, -0.5659341812133789, 0.9182013273239136, 0.903986394405365, 0.04472600668668747, 0.39396199584007263, 0.25973549485206604, 0.1551532745361328, 0.014659527689218521, 0.38204216957092285, 0.5394762754440308, -0.5888082385063171, -0.07423105090856552, -0.25760701298713684, 0.3391997516155243, 0.31516319513320923, -0.2476528286933899, -0.7254670858383179, 0.048364393413066864, -1.0564613342285156, -0.7485507130622864, 1.0064178705215454, -1.3100391626358032, -0.2675310969352722, -0.441046804189682, 0.00019569694995880127, -0.22819532454013824, 0.0018116701394319534, -0.515320360660553, -0.6987265944480896, 0.19980531930923462, 1.5064047574996948, -0.26417040824890137, 0.700037956237793, 0.48091018199920654, 0.43675848841667175, -0.014075158163905144, -0.07437077164649963, -0.4937768280506134, -0.05630534142255783, 0.5290582776069641, -0.30996888875961304, 0.12477647513151169, -0.04600630700588226, -0.8787108659744263, -0.35483500361442566, -0.3961627185344696, -0.006071601063013077, -0.6881406307220459, -0.37137144804000854, 0.033959709107875824, 0.41791245341300964, 0.5940302014350891, -0.5737517476081848, -0.8306882381439209, -0.5308618545532227, 0.014592270366847515, 0.022287752479314804, 1.3407279253005981, -0.7491241693496704, 1.3967105150222778, -0.30135318636894226, -0.4355662167072296, -0.3102637827396393, -0.8519576191902161, 0.1868264526128769, -0.30568671226501465, 0.17591044306755066, -0.3004375994205475, -0.19248324632644653, 0.7923364043235779, -1.0965791940689087, 0.360226571559906, -0.23607131838798523, 0.36972370743751526, 0.33407601714134216, -0.8824464082717896, -0.36769363284111023, -0.6498596668243408, -0.01624346524477005, 0.3855896592140198, 0.30352041125297546, 0.8938083648681641, -0.5117896199226379, -1.2451355457305908, -0.21658030152320862, 1.1158894300460815, 0.34824880957603455, 1.3314956426620483, 0.9789448380470276, 1.827903389930725, 0.6328691840171814, -0.16229890286922455, -0.7547488212585449, 0.08818026632070541, -0.5686613917350769, -0.2640695869922638, -0.6215072274208069, 0.06926756352186203, -0.07748404890298843], [-0.5638975501060486, 1.3719847202301025, -2.457801103591919, -0.5487335324287415, 0.033907175064086914, 0.10977964848279953, 1.7551100254058838, -0.048535242676734924, -0.21205198764801025, -1.401423454284668, -0.30703532695770264, -0.37316957116127014, 0.24444639682769775, 0.3743365705013275, 0.3666606545448303, 0.2310602068901062, 0.8698928952217102, 0.10023242980241776, 0.14719325304031372, 0.9181488156318665, 0.29129689931869507, -1.4963891506195068, 0.27695178985595703, -0.4609884023666382, 0.41980957984924316, -0.2487642765045166, -1.503033995628357, 0.2248809039592743, -1.3406801223754883, -0.0194145105779171, 1.0146946907043457, -0.14767910540103912, 0.36142411828041077, -0.4121447503566742, -1.5948641300201416, -0.6103590726852417, 0.37940359115600586, -0.1647433191537857, -0.4392746686935425, -0.2787793278694153, 2.2242863178253174, -0.1650848239660263, -0.23213911056518555, -1.6451655626296997, 0.7383127212524414, -0.27942922711372375, 0.4463103711605072, -1.1626839637756348, 0.09171880781650543, -1.076704978942871, 0.8666112422943115, -0.6110346913337708, 0.7395808696746826, 1.4573814868927002, 0.9929550290107727, -1.1491636037826538, -0.06191100925207138, 1.5355321168899536, 0.20368538796901703, 0.44913217425346375, 1.2498648166656494, 0.13819535076618195, 0.9093424677848816, 1.0592373609542847, 0.29594919085502625, -0.7219398021697998, 0.8790174126625061, 0.1820678561925888, 0.4858901798725128, 0.22898626327514648, 0.9516945481300354, 0.1358902007341385, -0.442106157541275, 0.0033917464315891266, -0.6910295486450195, 0.7069635987281799, -0.17832686007022858, 0.4560002088546753, 0.2905098795890808, 0.5131816267967224, -0.015186638571321964, 0.12402449548244476, -0.10348134487867355, -0.5197827816009521, -0.8543092608451843, -0.33471977710723877, 0.4680212140083313, -0.3888194262981415, -0.4505067467689514, 1.0860642194747925, -0.04648091271519661, 0.49333706498146057, 0.7087985873222351, -0.38996899127960205, -0.40432029962539673, -0.5093740820884705, -0.19782352447509766, -0.5976905226707458, -0.18948380649089813, -0.6392444968223572, -0.3541859984397888, -1.4514610767364502, 0.7369794249534607, 0.5119681358337402, 0.4156971275806427, 1.3695954084396362, -0.09763620793819427, -0.8775248527526855, -0.627292811870575, 0.013488780707120895, 0.07182997465133667, 0.14957289397716522, -0.9760259389877319, -1.0322290658950806, 0.31593307852745056, 1.5284883975982666, 1.5369572639465332, 0.14336293935775757, 0.017856115475296974, -0.11537507176399231, -0.4179359972476959, -0.38834327459335327, -0.01903049647808075, -0.29473888874053955, 1.6524986028671265, -0.2869623303413391, -0.6485397815704346, -0.16019462049007416, -0.517255961894989, -0.22895899415016174, 0.6753098368644714, 0.1659698486328125, 0.3625563681125641, 0.6152885556221008, -0.6637097001075745, 0.9938808679580688, -0.14172177016735077, -0.976197361946106, 0.23515765368938446, 0.3748144507408142, 0.5298774242401123, -0.2038595974445343, -0.7142219543457031, -0.5649880766868591, 1.0008333921432495, -0.8223831653594971, 0.46715259552001953, -0.20079396665096283, -1.0406248569488525, 0.1998327076435089, -1.8417470455169678, -0.18771527707576752, 0.055460017174482346, 2.0190160274505615, 0.7551524639129639, -0.7721313834190369, 0.2797222137451172, 0.23430506885051727, 0.5373868942260742, 0.7663725018501282, 1.5692230463027954, -0.513412594795227, -0.8860357999801636, 0.9360543489456177, 1.57615327835083, -0.13167120516300201, 0.9716160297393799, 0.48798373341560364, -0.46632635593414307, 0.8137820363044739, -0.287399560213089, -0.7305695414543152, -0.34204909205436707, -0.13445092737674713, -0.11994460970163345, -0.6093142032623291, 1.0066945552825928, 0.11429966986179352, -1.0136300325393677, -1.3522523641586304, 0.9921794533729553, -0.1389620006084442, 0.17029745876789093, 0.3834187984466553, 0.5819377303123474, -0.582888662815094, -0.5643606781959534, 0.0889040008187294, -0.21091328561306, -1.169845461845398, -0.013967921026051044, 0.1399386078119278, -1.4138544797897339, 0.2809355556964874, -0.47053176164627075, -0.7355421781539917, 0.7613820433616638, -0.9808065295219421, -0.48484131693840027, -0.4335302412509918, 0.02980346977710724, 0.28991761803627014, -1.053696632385254, 0.1465042233467102, -0.5551501512527466, 0.5593205690383911, -0.9092853665351868, 0.6109012365341187, -0.26576510071754456, 0.7457228302955627, 0.7094348669052124, -0.4592169225215912, -1.2511519193649292, 0.8977603912353516, 0.5891261696815491, -1.4676530361175537, 0.7654460668563843, 0.2780807316303253, 0.026134993880987167, 0.16663846373558044, -0.13710558414459229, -0.16709047555923462, 1.049403190612793, 0.31323719024658203, 0.7891675233840942, 0.14065271615982056, -0.2052374929189682, -0.5663332939147949, -0.6763823628425598, 0.13387230038642883, -0.8682118654251099, -0.6311712265014648, 0.4478507936000824, -0.11427589505910873, -1.2710484266281128, 0.4559670686721802, -0.33556362986564636, 0.6123469471931458, 0.38582298159599304, 0.697232723236084, 0.9555875062942505, 0.16607563197612762, 0.06265680491924286, -0.2956690788269043, -0.7329890131950378, -0.34872710704803467, 0.9900310635566711, -0.18369831144809723, -0.015663547441363335, 1.472318410873413, 0.879628598690033, -0.1487227827310562, 0.3203521966934204, -0.5899799466133118, 0.4517652094364166, -0.9676470756530762, 0.42872387170791626, -0.2569015324115753, -1.0674288272857666, 1.7278664112091064, 0.5029627084732056, -1.2765312194824219, 0.14800313115119934, -0.8472958207130432, -0.1471920609474182, -0.7101694345474243, -0.34365707635879517, -0.25574082136154175, 0.35278066992759705, -0.26491281390190125, 0.07675895094871521, -0.3358345925807953, -0.2637519836425781, 0.9796813726425171, 0.17736275494098663, -0.7797338366508484, 0.061447348445653915, 0.9064362645149231, 0.3211819529533386, 0.9995362758636475, -0.10498996824026108, -1.424381136894226, -1.093534231185913, -0.09979428350925446, 0.7812920212745667, 0.13591501116752625, -0.24997973442077637, 0.7498171329498291, 0.924030065536499, -0.09318661689758301, 0.7297114133834839, 0.7789943814277649, 0.451212078332901, 0.30094823241233826, 0.2615613341331482, 0.5540990829467773, 0.21882279217243195, -1.3816524744033813, -1.3460848331451416, -0.12663212418556213, 0.26712852716445923, 1.5632351636886597, 1.2514469623565674, 0.8374324440956116, -0.4675534963607788, 0.38600409030914307, -0.3519987165927887, 0.2698718309402466, -0.42308083176612854, -0.2780532240867615, -0.27264565229415894, -0.31717541813850403, -0.23655052483081818, -0.9302241206169128, 0.023085234686732292, 1.355049967765808, 0.4274098575115204, 1.0775941610336304, 0.6742072105407715, -0.49630770087242126, -1.492669939994812, -0.5362289547920227, -0.2505144774913788, -1.1321327686309814, 1.0442043542861938, 1.9442367553710938, -1.3910270929336548, 0.07300499081611633, 0.35188162326812744, 0.06591078639030457, 0.18663296103477478, 0.20438863337039948, 0.3903959095478058, -1.2844369411468506, -0.07496541738510132, 0.09361528605222702, 1.456307053565979, -0.5158573985099792, 0.11815590411424637, -0.39785006642341614, 0.5667120218276978, 0.8508605360984802, -0.03967367485165596, -0.5627711415290833, 0.08728527277708054, -0.8616304397583008, -0.30015894770622253, -0.46445250511169434, 0.4263904094696045, 0.9272305369377136, -0.23085913062095642, -1.3331656455993652, -0.45846810936927795, -0.36415886878967285, -0.9568471908569336, 0.20091427862644196, -0.3178447186946869, 0.543900728225708, 0.42580685019493103, 0.8841189742088318, 1.0664615631103516, 0.28096768260002136, 0.0004683062434196472, -1.411673665046692, 0.3670807182788849, 0.974005937576294, 1.356221079826355, 0.2141093909740448, 0.7048466205596924, -0.03647275269031525, -1.3327996730804443, 0.22049450874328613, 0.28979137539863586, 0.17997154593467712, 0.5148932337760925, -0.521176278591156, -0.2954922020435333, -0.5259696841239929, 0.23960590362548828, 0.3008723258972168, 0.7169759273529053, 0.18253737688064575, 0.06536955386400223, -0.31044459342956543, 1.1267491579055786, 0.8062461614608765, 0.08300668001174927, -1.0267497301101685, -0.5032804608345032, 0.5948213338851929, -0.6679317355155945, -0.6775908470153809, -0.513629674911499, -0.1532561033964157, 0.6783863306045532, -0.13525360822677612, -0.17088335752487183, -0.3875131905078888, 0.44807514548301697, 1.1640328168869019, -0.9987215995788574, -0.623778223991394, -0.6152178645133972, 0.3210619390010834, 0.31898605823516846, -0.5516011118888855, 0.4742690920829773, 0.7191954255104065, -1.0685036182403564, 0.09064146131277084, 0.24734075367450714, 1.491546869277954, -0.04151025414466858, 0.17493613064289093, -0.16754482686519623, 0.27134740352630615, 0.7899814248085022, -0.6890878677368164, -0.9750102758407593, -0.28338170051574707, -0.4756826162338257, 0.35196787118911743, 0.052462488412857056, -0.1423964649438858, 1.8241746425628662, -0.5237306356430054, 0.3729249835014343, 0.536688506603241, 0.30792441964149475, -0.7637960910797119, 0.028317509219050407, -0.2507472336292267, -0.374324232339859, -0.016174834221601486, 0.2935366928577423, 0.007077813148498535, 0.5809712409973145, 0.33783861994743347, 0.2827599048614502, 0.18264888226985931, -0.20332679152488708, -0.40071889758110046, 0.5134657025337219, 0.5596444010734558, 1.1099553108215332, 1.1482036113739014, 1.2713176012039185, -0.7622287273406982, -0.5387650728225708, 0.9519270062446594, 0.25946328043937683, -0.27708500623703003, 0.8720371723175049, 0.2976365387439728, 0.7431163787841797, -1.1055165529251099, 0.21801866590976715, 1.26520836353302, -0.5608271360397339, 1.2575443983078003, -0.3808276057243347, 0.2974995970726013, -1.2377575635910034, -0.06147662550210953, 0.27071812748908997, -0.4689539968967438, 0.9387454986572266, 0.1100412905216217, -0.08671854436397552, 0.7563508749008179, -0.047225359827280045, 0.018027812242507935, -0.5142852067947388, -0.5209904313087463, -0.3399077355861664, 0.29254746437072754, 0.6665344834327698, 1.1615793704986572, 0.6820873022079468, 1.3527618646621704, -0.11263538897037506, -1.1498591899871826, 0.35932818055152893, -0.535076379776001, -0.01878385618329048, -0.8953268527984619, -0.20634594559669495, -0.4174206256866455, -0.9458945989608765, 0.03141377121210098, -0.24293141067028046, -0.9822787642478943, -0.7329803705215454, -0.7707349061965942, -1.0848721265792847, 0.3731168806552887, 0.37822574377059937, 1.7355502843856812, 0.7580536603927612, 0.18453949689865112, -0.3447083830833435, 0.014990240335464478, -0.6778711080551147, 0.025282680988311768, 0.06516429036855698, -0.18451063334941864, 0.12541088461875916, -1.2791815996170044, -0.6502566933631897, 0.7987551093101501, 0.913842499256134, 0.16856639087200165, 0.5330926179885864, 1.4989063739776611, 1.4643956422805786, -0.33790168166160583, -0.3382532298564911, 0.6473004221916199, -0.618302583694458, 0.5368859171867371, 0.32475653290748596, -0.8776252269744873, -0.1270809769630432, -0.3400364816188812, -2.039931535720825, 1.1240019798278809, -0.08469796180725098, -0.5016462802886963, 0.8334172368049622, 0.7121502161026001, 0.1149575412273407, 1.5036214590072632, -0.35218778252601624, -0.3993251919746399, -0.0948508083820343, -0.2724166810512543, -1.4386123418807983, 0.6496312022209167, 1.14320969581604, 0.08571402728557587, -1.144936203956604, 0.4980468153953552, -0.6163696050643921, -0.3657516539096832, -0.06046859174966812, -0.09178274124860764, 0.4070541262626648, 0.3278970718383789, 0.02055252157151699, 0.02877815067768097, 0.6119940876960754, -1.229434847831726, 0.6864673495292664, 0.08128144592046738, 0.2655101716518402, 0.2780844271183014, -1.0019197463989258, 1.2130513191223145, -0.040475040674209595, -0.5511212944984436, -0.2602677047252655, -1.0919545888900757, 0.25637882947921753, 0.9474831223487854, 0.4123830497264862, -0.1536089926958084, -0.3949616253376007, -0.5363726019859314, -0.9871797561645508, 0.2340129315853119, 0.5340327024459839, -0.6527284383773804, -0.10074428468942642, -0.26583465933799744, -0.20514726638793945, 0.11130859702825546, 0.49757078289985657, 0.6367483139038086, -0.9414162635803223, -1.0660984516143799, -0.7343476414680481, -0.8233903646469116, 0.5619280934333801, 0.49270060658454895, 0.37897175550460815, -0.09395227581262589, -1.3612773418426514, 0.9110350012779236, -0.7601444721221924, -1.994542121887207, 0.024872999638319016, -0.3262943625450134, 1.0157309770584106, -0.2778376042842865, 0.1265503168106079, 0.2557762861251831, 1.247599482536316, -0.9981250166893005, -0.9215962886810303, -1.0757101774215698, -0.6569469571113586, 0.8980922698974609, 0.5766781568527222, -0.3339436948299408, 1.1444745063781738, -0.09890898317098618, -0.8929184675216675, -0.31806111335754395, -0.3574672043323517, -1.4917751550674438, -0.687145471572876, -0.09416063129901886, 0.6984767317771912, 0.8026109337806702, 1.1564666032791138, 0.4075518250465393, 1.108283281326294, 0.1817840039730072, 1.6429013013839722, -0.3290726840496063, -0.7152000069618225, 0.18273024260997772, 0.22239069640636444, -0.5167666077613831, -0.24560610949993134, 0.3849320411682129, -0.6876051425933838, -0.8135591149330139, 0.5322291254997253, 0.44950395822525024, -0.581960916519165, 0.6984387040138245, 0.025126785039901733, -0.0004447121173143387, -0.9901328086853027, 0.6254203915596008, 1.1792012453079224, -1.2132607698440552, -0.576328694820404, 0.3776223361492157, 0.33317410945892334, -0.7399505376815796, 0.043418847024440765, 0.863775908946991, 0.6618483662605286, -0.40119731426239014, 0.5586879253387451, -0.23805324733257294, 0.9582645893096924, -0.3665790557861328, 0.7404670715332031, 0.8377445340156555, 0.05372006446123123, 0.49059662222862244, 0.5741654634475708, -0.11477440595626831, -0.19993843138217926, 0.21162322163581848, -1.0268443822860718, -0.8493770360946655, 0.19699417054653168, 0.26901477575302124, -0.33533716201782227, -0.10174770653247833, 0.4596349596977234, 0.44509583711624146, -0.5723488330841064, 2.30696439743042, -0.8831188678741455, -1.036135196685791, 0.851470410823822, 0.7012476921081543, -0.5001663565635681, 0.5838808417320251, -0.26168617606163025, 0.5168547630310059, -0.7207702398300171, 0.15346795320510864, -0.010861724615097046, -0.8392757177352905, -0.07602208852767944, 0.08673657476902008, -0.5329275727272034, 0.6592155694961548, -0.804004430770874, -1.5533990859985352, -0.6385577917098999, -0.6017824411392212, 0.05942583829164505, 0.51425701379776, -0.7423237562179565, -0.4684371054172516, 0.007635856978595257, 0.0696110650897026, -0.5616945028305054, -0.7048166394233704, -0.22229178249835968, -0.4472518563270569, -0.4899638295173645, 0.766409158706665, -0.3360276520252228, 1.1611307859420776, 0.1589098423719406, 0.4455943703651428, 0.03195025399327278, -0.033252473920583725, 0.05912769213318825, 0.18088263273239136, -0.619540810585022, -0.7858827710151672, 0.5430622696876526, -0.42075538635253906, 0.1079949140548706, 0.2610008716583252, -0.35902881622314453, 0.06687656044960022, -0.022017348557710648, -1.2945058345794678, -0.6894877552986145, 0.4445853531360626, 0.4268210232257843, -0.5751751065254211, -0.9506635665893555, -0.38282912969589233, 0.7607737183570862, -0.1474200338125229, 0.810167670249939, -0.5055526494979858, 0.7687076926231384, 0.3137265145778656, -0.7713723182678223, -0.9508603811264038, -1.4528955221176147, 1.3820579051971436, -0.885513186454773, 0.33315491676330566, -0.7801092863082886, -0.35758736729621887, 0.32966506481170654, -1.0181266069412231, -0.04599638283252716, -0.5432976484298706, 0.15058739483356476, 0.627469003200531, -0.5390858054161072, -1.1907002925872803, -0.4920511543750763, -0.31050238013267517, -0.11503558605909348, 0.11844577640295029, 0.5318449139595032, 0.028824161738157272, -1.5291022062301636, -0.6961588859558105, 0.6685689091682434, 0.32592424750328064, 0.44137561321258545, 1.1678763628005981, 1.2619643211364746, -0.19410419464111328, -0.479884535074234, -0.16872423887252808, 0.32388201355934143, -1.318897008895874, -0.028742734342813492, -0.7940083146095276, -0.15717117488384247, 0.015598506666719913], [0.010297281667590141, 2.391871929168701, -2.622643232345581, -0.22560277581214905, -0.10272381454706192, 0.14437630772590637, 1.4568307399749756, -0.06432528793811798, 0.04257320240139961, -0.3042462170124054, -0.5531690716743469, 0.0739409402012825, 0.4113883078098297, 0.5105074644088745, 0.22209888696670532, 1.2229876518249512, -0.3514728844165802, 0.32900097966194153, 1.0767945051193237, 1.5042903423309326, 0.05188065767288208, -1.6951857805252075, -0.774919331073761, -0.001707341056317091, -0.43962305784225464, -0.6408337950706482, -0.9788473844528198, 0.28833264112472534, -0.7875766158103943, -0.9987265467643738, 0.7771375179290771, -0.5365960597991943, 0.36657556891441345, -0.45743075013160706, -2.0810794830322266, -0.5122905969619751, 1.409938097000122, 0.14759159088134766, -0.5820919871330261, 0.42008495330810547, 2.5097908973693848, -0.5473307967185974, -0.37244725227355957, -1.2436386346817017, 0.45683443546295166, 0.43898719549179077, 0.3953559696674347, -0.8526023626327515, 0.4146886169910431, -0.8209150433540344, 0.8192257881164551, -0.1855955868959427, 0.4811949133872986, 1.5091763734817505, 0.631038248538971, -1.2725310325622559, -0.2411646693944931, 0.9749168753623962, -0.12532079219818115, 1.0430914163589478, 1.3951822519302368, 0.15926635265350342, 0.7438182234764099, 0.8382514119148254, 0.4151299297809601, -0.6998715400695801, 0.6886827945709229, 0.3771778643131256, 0.07880693674087524, 0.24810655415058136, 0.32670241594314575, -0.5420368313789368, -1.4190220832824707, -0.3091285228729248, -0.4761848449707031, 0.35157057642936707, -0.4992615580558777, 0.6540217399597168, 0.47262129187583923, 0.6112120747566223, -0.4443998634815216, 0.486077219247818, -0.08100175857543945, -0.21431958675384521, 0.09039761871099472, -0.09289627522230148, 0.7227276563644409, -0.5865287184715271, -0.342364102602005, 1.381901502609253, -0.23878878355026245, 0.17629674077033997, 0.9530449509620667, -0.13234709203243256, 0.024557389318943024, -0.8047714829444885, 0.38052207231521606, -0.92088383436203, -0.01544809341430664, -1.1129018068313599, -0.37198519706726074, -0.46543818712234497, 0.9066763520240784, 0.6708759069442749, 0.825766921043396, 1.732785701751709, 0.17480653524398804, -0.8264889121055603, -0.7009156346321106, 0.008436806499958038, -0.28196465969085693, 0.36365509033203125, -0.35963737964630127, -1.261941909790039, 0.06195710599422455, 1.1062310934066772, 1.5233232975006104, -0.14155463874340057, 0.6137219667434692, 0.543034017086029, -0.3510918617248535, -0.7225853204727173, -0.5397432446479797, 0.5721286535263062, 1.3944298028945923, 0.1825663298368454, -0.7746294736862183, -0.05566981062293053, -0.6249786615371704, -0.16696076095104218, 0.7018832564353943, 0.18046574294567108, -0.21604369580745697, 0.7350205779075623, -0.2744690179824829, 1.5601370334625244, -0.48934492468833923, -0.693555474281311, -0.3749663233757019, 0.6223766803741455, 0.255576491355896, 0.529898464679718, -0.625685453414917, -0.9897480607032776, 0.17834964394569397, -0.4904307425022125, 0.24785910546779633, -0.43095165491104126, -0.29676830768585205, 0.7694330811500549, -1.7083427906036377, -0.028188548982143402, -0.24395127594470978, 1.9068607091903687, 0.5253576636314392, -0.2078588604927063, 1.428174376487732, -0.07338700443506241, 0.07983040064573288, 0.9996791481971741, 1.0352920293807983, 0.005968020297586918, 0.16555188596248627, 1.5089315176010132, 0.6327024698257446, -0.8331195712089539, 1.0025238990783691, 0.7125771641731262, -0.5096850395202637, 0.5512145757675171, -0.28083890676498413, -0.27965065836906433, -0.9226841330528259, 0.34416666626930237, 0.10134872794151306, -0.3451332151889801, 0.8976263999938965, 0.4071336090564728, -1.2274850606918335, -1.1785379648208618, 0.7853631973266602, 0.19839239120483398, 0.8362960815429688, 0.49960145354270935, 0.1431744247674942, -0.04795357584953308, -0.7580768465995789, -0.5760613679885864, 0.15955087542533875, -0.8973423838615417, -0.6287916898727417, -0.1939866989850998, -1.3573510646820068, 0.5831731557846069, -0.7192540168762207, -0.9824481010437012, 1.5509638786315918, -0.7984551787376404, -0.6127318143844604, -0.4514754116535187, 0.18373563885688782, -0.3895784914493561, -1.2679247856140137, -0.3178020417690277, -0.4960629940032959, 0.7836425304412842, -0.7753874063491821, 0.25216951966285706, -0.8646151423454285, 1.0295448303222656, 0.6464530229568481, -0.6776857376098633, -0.9568677544593811, 0.07947076857089996, 0.5149570107460022, -1.1761435270309448, 0.28678813576698303, -0.0671684518456459, 0.492804616689682, -0.026681246235966682, -0.03171480447053909, -0.28303319215774536, 0.9367758631706238, -0.1648443639278412, 0.4925202429294586, -0.438761442899704, -0.6413766741752625, -0.6709204316139221, -0.07638335227966309, 0.19839279353618622, -0.33577483892440796, -0.8134249448776245, 0.16112031042575836, 0.6975353360176086, -0.9266956448554993, 0.491963267326355, -0.23878781497478485, 0.13367724418640137, 0.28427717089653015, 0.8772497177124023, 0.7593785524368286, 0.1557631641626358, -0.440548837184906, -0.6605701446533203, -0.8585284948348999, -0.4319734275341034, 0.6021308302879333, -0.14856821298599243, -0.18428441882133484, 1.4325919151306152, 0.7486231327056885, -0.22964665293693542, 0.5586355328559875, 0.005369482561945915, 0.19467279314994812, -1.0020866394042969, 0.3290809690952301, 0.23166710138320923, -0.19173690676689148, 1.312563419342041, 0.3321605324745178, -0.7945197224617004, 0.18742190301418304, -0.5912462472915649, 0.7668808698654175, -0.5336848497390747, 0.013895513489842415, -0.5349095463752747, -0.0048629892989993095, -0.00884514581412077, 0.34996700286865234, 0.06531441956758499, -0.6353619694709778, 0.6366281509399414, 0.22883038222789764, -0.9073198437690735, 0.2530321478843689, 1.0478917360305786, 0.08352615684270859, 0.7168602347373962, -0.32139503955841064, -1.7843998670578003, -0.9813714623451233, -0.41150516271591187, 0.8695623278617859, 0.31637394428253174, -0.2572060227394104, 0.7548194527626038, 1.440497636795044, 0.41719216108322144, 0.5825546383857727, 0.21737869083881378, -0.3486948609352112, -0.5351259112358093, 0.390129953622818, 0.0926230251789093, 0.6381880640983582, -0.7235412001609802, -0.9612380862236023, -0.2284087836742401, -0.20804943144321442, 1.1186964511871338, 1.4923620223999023, 1.1258974075317383, -0.7722448706626892, -0.15831205248832703, -0.2936958968639374, -0.16355060040950775, -0.5573057532310486, -0.3660302758216858, -0.3195875287055969, -0.7756678462028503, -0.37007489800453186, -0.4267585575580597, -0.32356253266334534, 0.6831644773483276, 0.27943873405456543, 0.8580800294876099, 0.857526957988739, -0.28569743037223816, -1.0966264009475708, -0.8984957933425903, -0.445620596408844, -1.394281029701233, 0.6318346858024597, 1.1602307558059692, -1.8134839534759521, -0.4197778105735779, 0.2865164875984192, 0.26529210805892944, 0.2919595241546631, 0.06493636965751648, 0.38534533977508545, -1.4179227352142334, -0.004161432385444641, -0.2853778898715973, 1.5820385217666626, 0.13495667278766632, 0.11585964262485504, -0.3107975721359253, 0.3123120665550232, 0.6687498092651367, -0.4741690158843994, -0.9737226366996765, 0.10811176151037216, -0.529379665851593, -0.6308976411819458, -0.04903503507375717, -0.1697710007429123, 0.5792733430862427, -0.792624294757843, -1.5357307195663452, -0.07837647199630737, -0.4922574758529663, -1.0580601692199707, 0.7837458848953247, 0.22651152312755585, 0.5866034030914307, -0.0664697214961052, 0.1166640967130661, 0.9472719430923462, -0.032130587846040726, 0.3993399143218994, -1.0646977424621582, 0.6283635497093201, 0.7123150825500488, 0.8611401319503784, 0.4557632803916931, 0.5061275959014893, -0.0787518098950386, -1.3363759517669678, -0.08694233745336533, -0.6460406184196472, 0.5288696885108948, -0.030929913744330406, -0.6198499798774719, 0.12351062893867493, -0.6075766682624817, 0.3277055621147156, -0.033437926322221756, 0.07329218089580536, 0.6357158422470093, 0.09223349392414093, 0.2509264051914215, 0.7173560857772827, -0.0990617498755455, -0.5807308554649353, -0.7101970314979553, -0.28288036584854126, 0.26978054642677307, -0.42355605959892273, -0.014776654541492462, 0.12496691197156906, -0.08232656866312027, 0.4180929660797119, -0.0005935837980359793, -0.20198707282543182, -0.6697310209274292, 0.6651506423950195, 1.3905465602874756, -1.0071959495544434, -0.7368671894073486, -0.8216189742088318, 0.5259437561035156, 1.0568931102752686, 0.16660583019256592, 0.7052769660949707, 0.815359354019165, -0.2838611900806427, 0.24291285872459412, 0.10168728232383728, 1.677477240562439, 0.10255701094865799, -0.5032323598861694, -0.425809770822525, 0.39103272557258606, 1.0056706666946411, -1.4378941059112549, 0.07043763995170593, -0.07042078673839569, -0.8098970651626587, 0.30683451890945435, -0.0003087229561060667, -0.80555260181427, 1.594200849533081, 0.05889206379652023, -0.14682750403881073, 0.48706433176994324, 0.12002666294574738, -0.8328253626823425, 0.18769647181034088, 0.5999420881271362, -0.9612698554992676, 0.23022620379924774, 0.3391948938369751, 0.4090999364852905, 0.8985971808433533, -0.2808803617954254, 0.676146388053894, -0.0602952316403389, -0.09077521413564682, -0.25454023480415344, 0.38589924573898315, -0.03196194767951965, 0.9120497107505798, 0.8242381811141968, 1.151336669921875, 0.06322315335273743, -0.5433676242828369, 0.3077954649925232, -0.26771655678749084, 0.22608980536460876, 1.2392772436141968, -0.01657712087035179, 1.1243276596069336, -1.7995786666870117, 0.36687541007995605, 1.2063716650009155, 0.07352563738822937, 0.5819194316864014, -0.16242749989032745, 0.1142394095659256, -1.418715238571167, 0.11679569631814957, 0.5332944393157959, -0.6331409811973572, 1.0022261142730713, 0.0827733650803566, 0.36999472975730896, -0.19465987384319305, -0.29756903648376465, -0.007960084825754166, -0.7956558465957642, -0.12959258258342743, -0.23770661652088165, -0.08590316027402878, 0.9854095578193665, 0.3996169865131378, 0.5023542046546936, 1.108459234237671, -0.42538243532180786, -1.5454683303833008, 0.2350824624300003, -0.618037760257721, -0.21988359093666077, -0.4578648805618286, -0.3456198275089264, -0.9121711850166321, -0.9631850719451904, -0.20022980868816376, -0.09055501967668533, -0.9974503517150879, -0.953970730304718, -0.2697889804840088, -1.6873278617858887, 0.8001524806022644, -0.17635679244995117, 1.0546181201934814, 0.6673910021781921, 0.071720190346241, 0.11647229641675949, 0.05394690856337547, -1.0141862630844116, 0.42887812852859497, 0.685173749923706, -0.5761334300041199, -0.38705873489379883, -0.4361667335033417, -0.43792667984962463, 1.1932212114334106, 0.42000627517700195, -0.14359839260578156, 0.8199148774147034, 0.9661590456962585, 1.1979213953018188, -0.5255661606788635, -0.550816535949707, 1.1486308574676514, -0.4461268484592438, 1.4270533323287964, 0.40382060408592224, -0.6389539241790771, -0.3765508532524109, 0.1071779876947403, -1.5483652353286743, 0.8714925646781921, 0.06915315985679626, -0.1357118785381317, 0.607833981513977, 0.7230777144432068, 0.08491139858961105, 1.2351347208023071, -0.4749051630496979, -0.6662352085113525, 0.5554559826850891, 0.1444583684206009, -0.7506626844406128, 0.40293848514556885, 1.3073818683624268, 0.48020896315574646, -0.719187319278717, -0.42974182963371277, -0.0737406462430954, -0.3006078600883484, 0.1920270323753357, -0.4716050922870636, 0.3201034963130951, 0.2708092927932739, 0.09827514737844467, -0.06781549751758575, 0.508399248123169, -0.8767942190170288, 0.1298561841249466, 0.8451656103134155, 0.9670442938804626, 0.7147107124328613, -0.5310221910476685, 0.9513242244720459, -0.32143548130989075, 0.1086023673415184, 0.2914678752422333, -0.29231417179107666, 0.6987926363945007, 0.321231484413147, 0.6011146306991577, 0.3202369511127472, -0.18964450061321259, -0.44304966926574707, -0.9040641784667969, -0.0011148119810968637, 0.31590238213539124, -0.5799689292907715, -0.45364198088645935, 0.06632234901189804, -0.2348935306072235, 0.2146434187889099, 0.14888712763786316, 0.30870911478996277, -1.3726556301116943, -1.015675663948059, -0.6946107149124146, -0.3555999994277954, 0.4699864089488983, -0.38339963555336, 0.5729045867919922, -0.025949111208319664, -2.1127476692199707, 0.337667316198349, -0.5812409520149231, -1.9427688121795654, -0.12025711685419083, -0.5932846665382385, 0.8470113277435303, -0.331853449344635, 0.09695397317409515, -0.13313448429107666, 1.1035128831863403, -0.9708783626556396, -1.0562286376953125, -1.0272818803787231, 0.07923270761966705, 0.7739575505256653, 0.675478458404541, -0.8632662892341614, 1.4455766677856445, 0.11472535878419876, -0.38313570618629456, -0.27372124791145325, -0.5098811984062195, -1.1872658729553223, -0.07369180023670197, -0.3339560031890869, 0.014135963283479214, 0.35802164673805237, 1.5527548789978027, 0.7058191299438477, 0.7589026689529419, 0.47561147809028625, 1.1619436740875244, -0.9723542928695679, -1.2189639806747437, 0.1643814742565155, 0.10053025186061859, -0.8912933468818665, -0.2432999312877655, 0.2372789829969406, -0.5251355171203613, -0.8878738284111023, 0.26732337474823, 1.0664490461349487, -0.5992628931999207, 0.5003772974014282, 0.4058828353881836, 0.14625075459480286, -0.9805785417556763, 0.19619959592819214, -0.1904880851507187, -1.2350690364837646, -0.0592539943754673, 0.018746845424175262, 0.5661157965660095, -1.6482067108154297, 0.4221401810646057, 0.5668731331825256, 0.34529128670692444, 0.17818187177181244, 0.12243181467056274, -0.3506298363208771, 1.0013866424560547, -0.29820412397384644, 0.7174345850944519, 0.7604698538780212, -0.006183556281030178, -0.24187041819095612, 0.5664795637130737, -0.5284814834594727, -0.16522054374217987, -0.05504574626684189, -0.5145039558410645, -0.6947427988052368, 1.0153334140777588, 0.10402039438486099, -0.004878803621977568, 0.5619436502456665, 0.4773987829685211, -0.081082783639431, -0.8182433843612671, 1.7255057096481323, -1.0218836069107056, -1.1031652688980103, 0.8154091835021973, 0.8030078411102295, -0.40449681878089905, 0.18929621577262878, -0.11295808851718903, 0.6970232725143433, -0.12201807647943497, 0.5565335154533386, -0.293067991733551, -0.8154287338256836, 0.3643266558647156, -0.12069245427846909, -0.6190751791000366, -0.24645358324050903, -0.7860903739929199, -1.402795672416687, -0.5979145765304565, -0.10925666987895966, 0.15054403245449066, 0.70100998878479, -0.5353791117668152, -1.333227515220642, -0.16900406777858734, 0.5287895798683167, 0.05998208373785019, -0.343730092048645, 0.07135593891143799, -0.8510313034057617, -0.20004859566688538, 1.1919256448745728, -0.6373625993728638, 1.1008386611938477, -0.07316894084215164, -0.07360871136188507, -0.8829755187034607, 0.8067112565040588, 0.597938060760498, 0.11169304698705673, -0.6586824655532837, -0.7004462480545044, 0.6684040427207947, -0.4075727164745331, 0.6642376780509949, 0.2946060001850128, 0.30477049946784973, 0.5454409718513489, 0.5908406972885132, -1.0938283205032349, -0.5347751975059509, 0.07455451041460037, 0.7648605704307556, -0.4969525635242462, -0.726453959941864, -0.6783750653266907, 0.3127797544002533, 0.016263417899608612, 0.726738691329956, -0.4733646810054779, 1.2852555513381958, 0.7469772100448608, -1.5089046955108643, -0.20479336380958557, -0.5328111052513123, 1.5265742540359497, -0.08199777454137802, 0.1433599591255188, -0.6030860543251038, 0.29223111271858215, -0.3139028251171112, -0.9971287250518799, -0.19054701924324036, -0.4830488860607147, -0.5268338918685913, -0.36911389231681824, -1.0180258750915527, -0.24956302344799042, -1.0987162590026855, -0.1881915181875229, 0.2798498570919037, 0.09741716831922531, 0.4488638937473297, -0.6802390217781067, -1.3651949167251587, -0.27955207228660583, 0.832866907119751, 0.3852829337120056, 0.25424227118492126, 1.5998260974884033, 1.4051045179367065, -0.2160273939371109, -0.8417130708694458, -0.5606553554534912, 0.5833019614219666, -0.639385998249054, 0.8327537178993225, -0.9057145118713379, -0.6426712274551392, -0.18024545907974243], [0.4255019426345825, 2.2603023052215576, -2.6630823612213135, -0.6376784443855286, 0.7043351531028748, 0.38070639967918396, 1.580428123474121, -0.25285643339157104, 0.1753581315279007, -0.9082460403442383, -0.03316260874271393, 0.04538312554359436, 1.2403452396392822, 0.5594602823257446, 0.6160067319869995, 0.49644872546195984, 0.5487469434738159, -0.14239829778671265, 0.07241818308830261, 0.8804488182067871, 0.02089826576411724, -0.9481446146965027, 0.13746672868728638, -0.05025837570428848, -0.7347660660743713, -0.3951285183429718, -1.17867112159729, 0.05031872168183327, -0.6725817918777466, -0.6261062026023865, 1.4488941431045532, -0.3937866687774658, -0.5394921898841858, -0.5740483999252319, -0.6646607518196106, -0.32223039865493774, 1.178524136543274, -0.18260495364665985, 0.5263820290565491, 0.8932321071624756, 2.023451805114746, 0.26482102274894714, -0.6383591890335083, -1.4010519981384277, 0.853618323802948, 0.3132439851760864, 0.3535222113132477, -0.7614766359329224, 0.5083553194999695, 0.09487203508615494, 0.883493959903717, -0.5880183577537537, 0.07788504660129547, 1.04271399974823, 1.282256841659546, -1.4845598936080933, 0.0801374614238739, 0.210363507270813, 0.4288467466831207, -0.15076814591884613, 0.7175524234771729, 0.08696555346250534, 0.006862870883196592, 1.0926775932312012, 0.14143317937850952, 0.003356418339535594, 0.31648534536361694, 0.21024374663829803, 0.2930741012096405, 0.1478263884782791, 0.23682962357997894, 0.22781115770339966, -0.5901719927787781, 0.06187710165977478, -1.1759320497512817, 0.15926194190979004, -0.16813747584819794, 0.3010236322879791, 0.3740786612033844, 0.5453935265541077, -0.3606525659561157, -0.28772732615470886, 0.15279445052146912, -0.24941487610340118, 0.4112473130226135, 0.26607829332351685, 0.6546486616134644, -0.2673158645629883, -0.31248632073402405, 2.052189826965332, 0.2033894807100296, 0.002256059553474188, 0.8713067770004272, 0.2654719650745392, -0.5321215391159058, -0.6917719841003418, 0.4310985803604126, -0.05876757949590683, -0.7804856300354004, -0.46302059292793274, -0.4978695213794708, -0.8196893334388733, 0.23642095923423767, 0.3511330187320709, 0.05984429270029068, 1.7823200225830078, 0.9270952939987183, -0.2894265949726105, -0.7826763391494751, 0.21272635459899902, 0.09411311894655228, 0.09698362648487091, -0.21190594136714935, -0.35844624042510986, -0.823888897895813, 1.0911946296691895, 1.1982643604278564, 0.42322295904159546, 0.2217978984117508, 0.757084310054779, -0.3717075288295746, -0.4059912860393524, -1.008711576461792, 0.5578678846359253, 0.7382955551147461, -0.1770687699317932, -0.9560896158218384, 0.19980032742023468, 0.06866497546434402, -0.012402809225022793, 0.44152966141700745, -0.2761867940425873, -0.19231174886226654, 0.5796293616294861, -0.35830798745155334, 1.354720115661621, 0.04558926820755005, -0.7968837022781372, 0.1742924302816391, 0.1230786144733429, 0.0813596174120903, 0.14887231588363647, -0.4702134132385254, -0.42353540658950806, 0.5490325689315796, -0.8488413095474243, 0.047079216688871384, -0.47969022393226624, -1.1981799602508545, 0.2717236578464508, -1.766129493713379, 0.22457867860794067, -0.5144038200378418, 1.6175575256347656, 0.4324324429035187, -0.18766118586063385, 0.30534493923187256, 0.9309521317481995, 0.6747549772262573, 0.25961005687713623, 1.0497465133666992, -0.3595763146877289, -0.647650957107544, 0.9633753299713135, 0.2119004726409912, -0.5143961310386658, 0.9386624693870544, 0.6089925169944763, 0.09074399620294571, 0.3866785764694214, -0.6536552309989929, -0.20835433900356293, -0.18265490233898163, 0.01797548122704029, -0.3376813530921936, 0.02133922278881073, 1.2283332347869873, -0.6086398959159851, -1.3427904844284058, -1.7670124769210815, 0.27748721837997437, -0.24089713394641876, -0.05761522427201271, -0.33260151743888855, 0.6067822575569153, 0.1496540904045105, 0.1235528513789177, -0.2001621425151825, -0.05309631675481796, -0.936332106590271, -0.4961759150028229, 0.12417417764663696, -0.8766290545463562, 0.1059064269065857, -1.1748299598693848, -1.0008004903793335, 0.47644171118736267, -0.5084042549133301, -0.6684209704399109, -0.4204351305961609, -0.5038108229637146, -0.6671189069747925, -0.8371584415435791, 0.14757777750492096, -0.4570144712924957, 0.590872049331665, -0.7413602471351624, 0.6777158975601196, -0.6010379195213318, 0.2514435350894928, 1.1064023971557617, -0.17872485518455505, -0.8135738968849182, 0.1924675852060318, 0.13074886798858643, -1.0459108352661133, 0.5941328406333923, 0.2861503064632416, 0.7129331231117249, 0.07130474597215652, 0.11668149381875992, -0.06741809844970703, 0.4651836156845093, -0.10723468661308289, 1.4911173582077026, 0.013033776544034481, -0.28566500544548035, -0.7945749759674072, -0.3787526488304138, -0.18497337400913239, -1.0589932203292847, -0.5002393126487732, 0.9294294118881226, 0.4043167531490326, -1.4153443574905396, 0.5122805237770081, -0.5389900207519531, 0.17829298973083496, 0.6111229658126831, 1.3435603380203247, 0.28643301129341125, 0.2165469527244568, -0.5921172499656677, -0.1622544229030609, -0.7658095955848694, 0.09580234438180923, 0.6740403175354004, -0.49895763397216797, 0.18056620657444, 1.5982630252838135, 0.6321132779121399, -0.22586947679519653, 0.5794263482093811, -1.2131997346878052, 0.3163476884365082, -0.3592284321784973, -0.11081695556640625, 0.2708684504032135, -1.0759536027908325, 1.2372264862060547, 0.04708702489733696, -0.5345436334609985, -0.3223024904727936, 0.10432472825050354, 0.5354478359222412, -0.7495568990707397, -0.3281046450138092, 0.013692371547222137, 0.21059873700141907, -0.21278199553489685, 0.0829404667019844, 0.2271924614906311, -0.4338972866535187, 0.42019376158714294, 0.0012310664169490337, -0.008208699524402618, 0.27110812067985535, 0.24929706752300262, 0.18239320814609528, 0.6663897037506104, -0.4589403569698334, -1.0549986362457275, -0.7452343702316284, -0.2461133599281311, 1.016624093055725, 0.15523111820220947, -0.638554036617279, -0.1257309913635254, 1.1633048057556152, -0.06696431338787079, 0.1906908005475998, 0.08458263427019119, -0.542253851890564, -0.25414496660232544, 0.3995034992694855, 0.1165182888507843, 1.1296635866165161, -0.8969175219535828, -0.4697181284427643, -0.4291227459907532, 0.5482348203659058, 0.8576558828353882, 0.39329811930656433, 1.1418862342834473, -0.4342765212059021, 0.059495989233255386, 0.3172996938228607, -0.4396003484725952, -0.7321164011955261, -0.5112569332122803, -0.551073431968689, -0.4979062080383301, -0.4883100688457489, 0.27335503697395325, -0.05412977933883667, 0.48138707876205444, -0.12103462219238281, 0.41376593708992004, 0.6514820456504822, -0.6336573362350464, -0.5114007592201233, -0.016714001074433327, -0.5377985835075378, -1.1938709020614624, 1.1236915588378906, 0.9919443130493164, -0.5675238370895386, -0.19066999852657318, 0.5865404605865479, 0.33622246980667114, 0.1171916201710701, -0.2524879276752472, 0.2681535482406616, -1.0814496278762817, -0.9002434015274048, -0.33602386713027954, 1.0736826658248901, -0.10348063707351685, -0.07999785989522934, -0.6071726083755493, 0.13719792664051056, 0.5912469029426575, -0.5551469326019287, -0.8115795850753784, 0.18945187330245972, -0.09212950617074966, -0.9955385327339172, 0.02236807532608509, 0.41020557284355164, 0.7114647030830383, -0.23428653180599213, -0.36578431725502014, -0.2837189733982086, -0.5043923258781433, -0.11972767114639282, 0.8353561758995056, 0.5138132572174072, 1.218286156654358, -0.0037560509517788887, -0.11706580966711044, 1.2775096893310547, -0.04881710931658745, 0.04009261727333069, -1.6165239810943604, 0.7483980059623718, 0.6236811280250549, 1.376207709312439, 0.2547147870063782, 0.17122837901115417, 0.0433867871761322, -0.7865970134735107, -0.13091516494750977, 0.11297260224819183, 1.087464690208435, -0.2849542200565338, 0.3841618001461029, -0.25500747561454773, -0.1172550693154335, 0.3037421703338623, -0.6652942299842834, -0.037324901670217514, -0.12130650132894516, 0.25665032863616943, -1.152487874031067, 1.5349810123443604, -0.20056571066379547, -0.17375105619430542, -1.430019736289978, -0.43320876359939575, 0.5348855257034302, 0.13977937400341034, -0.4123789668083191, -0.21759666502475739, 0.20197494328022003, 0.6233667135238647, -0.8164458870887756, -0.4612092077732086, -0.4895910322666168, 0.7068250179290771, 0.620035707950592, -1.1258288621902466, -0.06678392738103867, -0.19598329067230225, 0.6964440941810608, 0.17890490591526031, -0.10053648054599762, 0.6540544033050537, 0.01995995081961155, 0.2650330662727356, -0.18826928734779358, 0.14137031137943268, 1.0503383874893188, -0.06953442096710205, -0.6026560664176941, 0.26330408453941345, 0.4272528290748596, -0.03576464205980301, -0.16967809200286865, -0.4672538936138153, -0.059749238193035126, -0.2052087038755417, 0.313959538936615, 0.11276412010192871, -0.10070160031318665, 1.247655987739563, 0.37840697169303894, -0.18903718888759613, 0.2538054585456848, 0.2926712930202484, -1.110358715057373, 0.05582302808761597, 0.06167230010032654, -0.4886234402656555, -0.096369169652462, 0.04941481724381447, -0.5201699733734131, 0.4069431722164154, 0.11829638481140137, 0.508105456829071, 0.08389420807361603, -0.08537503331899643, -0.5056812167167664, 0.1050027459859848, 0.4242252707481384, 0.32026031613349915, 0.9734576344490051, 1.3455924987792969, 0.16861124336719513, -0.991223156452179, 0.6533817052841187, -0.5462179780006409, -0.13845308125019073, 1.2051899433135986, 0.40734827518463135, 1.596346378326416, -1.6162452697753906, -0.17418543994426727, 0.4468022286891937, 0.23480041325092316, 0.3130687475204468, -0.10213244706392288, 0.6160795092582703, -0.7162238359451294, 0.26232731342315674, 0.41382718086242676, -0.37337106466293335, 0.9136620163917542, -0.04701399803161621, 0.056077245622873306, 0.6897820830345154, -0.8389158248901367, 0.15523473918437958, -0.9338033199310303, -0.14990514516830444, 0.5150009989738464, -0.42324984073638916, 0.6703817844390869, 0.6898335218429565, 0.7369072437286377, 1.3883150815963745, -0.41736069321632385, -1.300169587135315, 0.9694635272026062, -1.235682487487793, 0.031049568206071854, 0.10765168815851212, -0.7433276772499084, -0.3431740403175354, -0.44452881813049316, -0.48673713207244873, -0.3501218855381012, -0.7601606249809265, -0.222567617893219, -0.6000186800956726, -1.1513935327529907, 0.056985627859830856, 0.08778480440378189, 1.297789454460144, 0.3574695587158203, 0.18221235275268555, 0.6726337671279907, 0.7484074234962463, -0.9816579818725586, -0.3948650658130646, 0.2114446461200714, -0.4541395604610443, 0.05067455768585205, -1.07785165309906, -0.7517681121826172, 1.1379072666168213, 0.4921441674232483, 0.5026125907897949, 0.5604013800621033, 1.022282600402832, 0.838495671749115, -0.8001458644866943, -0.3353172540664673, 0.5270026326179504, 0.07486171275377274, -0.24945351481437683, 0.37012770771980286, -0.7251166105270386, -0.38312843441963196, -0.2234182506799698, -1.6664272546768188, 0.5669627785682678, 0.040995217859745026, -0.27644744515419006, 0.7567609548568726, 0.24043817818164825, 0.8519566059112549, 1.1817129850387573, -0.27964964509010315, -0.12226174026727676, 0.33896100521087646, 0.4646380543708801, -1.1946823596954346, 0.6679897904396057, 0.7932437062263489, 0.6429993510246277, -0.9058667421340942, -0.03266089782118797, -0.05802658945322037, -0.6692673563957214, -0.11135242134332657, -0.10235808789730072, 0.7014849185943604, 0.9311778545379639, -0.2397187352180481, -0.41733288764953613, 0.4371338188648224, -0.4158923327922821, 0.22016282379627228, 0.2698010504245758, 0.062475401908159256, 0.5272499918937683, -0.25077351927757263, 0.5507712960243225, -0.9419979453086853, -0.8718783855438232, -0.051915284246206284, -0.5646511316299438, 1.0245015621185303, 0.20993925631046295, -0.043866563588380814, 0.11679142713546753, 0.45139235258102417, -0.5274800658226013, -0.25532227754592896, 0.45186930894851685, -0.06033040210604668, -1.11017906665802, -0.15269143879413605, -0.058483708649873734, -0.12331840395927429, 0.16329434514045715, 0.07311458140611649, -0.15234380960464478, -1.2514277696609497, -1.2982553243637085, -0.36706507205963135, -0.18930277228355408, 0.6009454727172852, -0.4557593762874603, 0.13897693157196045, 0.3788752257823944, -1.6636847257614136, 0.47290071845054626, 0.2312004566192627, -1.5127047300338745, -0.08100797981023788, -0.5281632542610168, 0.8993927836418152, 0.06364982575178146, 0.32039839029312134, -0.46306851506233215, 0.8789371252059937, -1.5621681213378906, -1.4186192750930786, -0.2960527837276459, -0.4259023368358612, 0.8928224444389343, 0.478538453578949, -0.9438599944114685, 1.0001704692840576, 0.45462659001350403, -0.22548989951610565, -0.17270860075950623, 0.6795457601547241, -0.9954238533973694, -0.12712769210338593, 0.1916051208972931, 0.13476639986038208, 0.28559228777885437, 1.8869407176971436, -0.13942043483257294, 0.9619322419166565, -0.31251704692840576, 0.74803227186203, -0.3948894143104553, -1.1625840663909912, -0.1764896810054779, 0.28024715185165405, -1.1066049337387085, -0.642101526260376, -0.5715680122375488, -0.45194289088249207, -0.699270486831665, 0.48421886563301086, 0.9512232542037964, -1.0118465423583984, 0.5835034251213074, -0.3665805459022522, 0.153614342212677, -1.3153501749038696, 0.6491442918777466, 0.2930087447166443, -0.46121668815612793, -0.17622122168540955, -0.34011322259902954, 0.6468867063522339, -1.376889705657959, -0.23085500299930573, 0.2091972380876541, -0.22119808197021484, -0.3962342441082001, 0.3403455317020416, 0.6234743595123291, 0.196499302983284, -0.40129607915878296, 1.298970341682434, 1.1785786151885986, -0.07356933504343033, -0.3545035421848297, 0.42348217964172363, 0.12509076297283173, 0.37540140748023987, 0.05485955625772476, -0.36679333448410034, -1.030256748199463, 0.8235434293746948, 0.4656374156475067, 0.0651681125164032, -0.0010233083739876747, 0.38368070125579834, -0.5631188750267029, -0.5008294582366943, 1.340632677078247, -0.5467405915260315, -0.9416602849960327, 0.6919719576835632, 0.5799505710601807, 0.09186828881502151, 0.17498692870140076, 0.32510119676589966, 0.5414710640907288, -0.05314198136329651, 0.5861150622367859, 0.49313658475875854, -0.21419405937194824, 0.13674718141555786, -0.03118116967380047, 0.0836298018693924, -0.053361982107162476, -1.1353507041931152, -1.5733586549758911, -0.570966362953186, -0.2247413992881775, 0.06519506871700287, 0.22196844220161438, -1.2056078910827637, -1.4810746908187866, 0.35922038555145264, -0.029253307729959488, -0.19470113515853882, -1.0428073406219482, -0.06037959083914757, -0.6724843978881836, -0.06740322709083557, 0.47525754570961, -0.03338802605867386, 0.7880147695541382, 0.11427178978919983, 0.025250019505620003, -0.27658286690711975, -0.04835204407572746, 0.0493449829518795, -0.06717103719711304, -0.121769018471241, -0.028967803344130516, 0.14404398202896118, -0.7718117833137512, -0.44064879417419434, 0.6022683382034302, 0.40702876448631287, 0.050578635185956955, 0.07726365327835083, -0.9854177832603455, 0.3498717248439789, 0.31360816955566406, 0.5761927962303162, -0.39220523834228516, -0.7700791358947754, -1.205987572669983, 0.14689107239246368, 0.017829153686761856, 1.306925892829895, -0.5990102887153625, 0.9512238502502441, 0.3863576352596283, -0.47531479597091675, -0.07294292002916336, -0.5127511620521545, 0.9007112383842468, 0.030740171670913696, 0.4511420428752899, -0.5727114677429199, -0.2704222500324249, -0.6683335900306702, -1.389756202697754, 0.2718963027000427, 0.2004997730255127, -0.1447765827178955, 0.335671603679657, -0.9669722318649292, -0.5205391645431519, -0.5943292379379272, 0.12251115590333939, -0.2755677402019501, 0.21246042847633362, 0.5589103102684021, -0.5328466892242432, -0.6559462547302246, -0.273316890001297, 0.012901500798761845, 0.5196828842163086, 0.3582902252674103, 1.0731873512268066, 1.935038685798645, 0.47379088401794434, 0.20567205548286438, -0.2009332925081253, 0.6369829177856445, -0.812221109867096, 0.30844956636428833, -1.265031337738037, -0.038671765476465225, -0.24251163005828857], [-0.343694806098938, 1.9625178575515747, -2.375685691833496, -0.2768937051296234, 0.4260280728340149, 0.22442077100276947, 1.2425543069839478, -0.2504919469356537, -0.1658092588186264, -0.8420299291610718, -0.6582894325256348, 0.09357324987649918, 0.5160896182060242, 0.38412606716156006, 0.4369991421699524, 0.8271948099136353, 0.9917100071907043, 0.47478702664375305, 0.3520936965942383, 1.6579028367996216, -0.31759360432624817, -0.8463040590286255, -0.6801486611366272, -0.434536337852478, -0.12321514636278152, -0.38810524344444275, -0.6432965993881226, 0.29739710688591003, -0.641029953956604, -0.8311090469360352, 0.9909844994544983, 0.209133118391037, 0.7909102439880371, -0.1858440637588501, -1.3795080184936523, -1.0614815950393677, 0.4562593698501587, 0.2573266327381134, 0.38071224093437195, 0.0036789514124393463, 1.7261875867843628, -0.03462149575352669, -0.632175862789154, -2.0949995517730713, 0.4601495862007141, -0.5957299470901489, 0.1789693832397461, -0.8122031092643738, 1.166148066520691, -0.3129478991031647, 0.326521098613739, -1.3912253379821777, 0.30930548906326294, 0.9647585153579712, 1.5993670225143433, -0.8059349656105042, 0.37407681345939636, 0.5777922868728638, -0.8573057651519775, 0.5583544969558716, 1.2665787935256958, 0.5579970479011536, 0.6911858916282654, 1.001477599143982, 0.1932951956987381, 0.13622695207595825, 0.26958608627319336, 0.49672985076904297, 0.008060241118073463, 0.3118465542793274, 0.9291746616363525, 0.10660791397094727, -0.2867332100868225, 0.5802794694900513, -0.6572152376174927, 0.0757608637213707, 0.14323103427886963, 0.6919217705726624, 0.4981365501880646, -0.44457918405532837, 0.11966125667095184, -0.0612218901515007, 0.2511846125125885, -0.8670823574066162, -0.3193925619125366, 0.2484501600265503, 0.33869263529777527, -0.7687584757804871, -0.29649388790130615, 1.1968574523925781, 0.7582235932350159, 0.038955070078372955, 0.9834092855453491, -0.027163835242390633, -0.16851955652236938, -0.963539183139801, 0.210757315158844, -0.34957587718963623, -0.21881301701068878, -0.691294252872467, -0.17436933517456055, -0.5949361324310303, 0.667972207069397, 0.4179110825061798, 0.3980937898159027, 1.356793761253357, 0.9861037135124207, 0.23606884479522705, -0.8779032826423645, 0.2460774928331375, -0.049326539039611816, -0.48161154985427856, -0.8896802663803101, -0.9910731315612793, -0.6581656336784363, 0.9721643924713135, 1.4207940101623535, -0.029309449717402458, 1.0518795251846313, 1.4958559274673462, 0.17122811079025269, -0.8533712029457092, -0.7244518399238586, 0.3728259801864624, 1.0306956768035889, -0.285478413105011, -1.6606501340866089, -0.2954708933830261, -0.30682989954948425, 0.12443143874406815, 0.8923538327217102, -0.5986779928207397, 0.053717002272605896, 0.8796413540840149, -0.13084730505943298, 0.994778573513031, -0.27647295594215393, -0.7090359330177307, 0.7276734113693237, 0.5468149781227112, 0.3909878730773926, 0.5154905319213867, -0.48228394985198975, 0.22676844894886017, 0.5910239815711975, -0.8115260601043701, 0.1750350445508957, -0.3676402270793915, -0.6249006986618042, 1.1157106161117554, -1.8409860134124756, 0.670746386051178, -0.3722810447216034, 1.7368853092193604, 0.5301207900047302, -0.5559476017951965, 0.019915103912353516, 0.5517739653587341, 0.3352035582065582, 0.39667972922325134, 1.4047209024429321, -0.2948928773403168, -0.827414333820343, 0.5573515295982361, 0.7545239329338074, -0.7341567873954773, 0.5926036238670349, 0.20646366477012634, -0.2889820337295532, 0.8005254864692688, -0.4239334464073181, 0.17047378420829773, -0.6895402073860168, -0.49551281332969666, 0.09378482401371002, -0.5631556510925293, 0.7755818367004395, 0.6055084466934204, -0.8967276215553284, -1.1740103960037231, 0.6283586025238037, -0.35219258069992065, 0.2449316680431366, -0.1682303249835968, 0.5015048980712891, -0.3198826313018799, 0.005316146649420261, -0.3411063253879547, -0.8262407779693604, -1.3849389553070068, -0.39760294556617737, 0.2880946099758148, -1.1126960515975952, 0.7046816349029541, -1.3605083227157593, -0.7367481589317322, 0.5213983058929443, -0.2163541465997696, -0.12668634951114655, -0.14860226213932037, -0.04942408949136734, -0.047844383865594864, -1.0621651411056519, 0.04943698272109032, -0.322095662355423, 0.6715396046638489, -0.5175132155418396, 0.5385156869888306, -0.42347875237464905, 0.3075524866580963, 0.9097792506217957, -0.3430558741092682, -0.9874196648597717, -0.060246992856264114, -0.2442929893732071, -1.3706402778625488, 0.23668040335178375, 0.16090275347232819, 0.3222825527191162, 0.20776765048503876, 0.3154222071170807, -0.2208571434020996, 0.6880677938461304, -0.0997559055685997, 0.992527961730957, -0.14355623722076416, -0.08969848603010178, -1.2330241203308105, 0.011860751546919346, 0.04621462523937225, -0.6296706795692444, -0.2531915009021759, 0.623890221118927, 0.606773853302002, -1.4117323160171509, 1.1213278770446777, -0.3261401951313019, 0.5295013785362244, 0.7477890253067017, 0.6522216200828552, 0.8814274072647095, 0.6371995210647583, 0.2192692905664444, -0.21081306040287018, -0.5890634655952454, -0.3934731185436249, 0.9405444860458374, -0.7423155307769775, 0.1850382387638092, 1.1311999559402466, 0.8323516845703125, -0.15499117970466614, 0.6913203597068787, -1.2919461727142334, 0.31044453382492065, -1.2521711587905884, -0.15437301993370056, 0.3875201344490051, -0.8732690215110779, 1.2196532487869263, 0.3481619656085968, -1.193825602531433, -0.3608490526676178, -0.30430370569229126, 0.6576962471008301, -0.49186718463897705, -0.13496385514736176, -0.26213544607162476, 0.6574817895889282, 0.23715882003307343, 0.009636947885155678, 0.213080033659935, -0.2309853881597519, 1.284211277961731, 0.0617218054831028, -0.12269411236047745, 0.19305318593978882, 1.3967024087905884, 0.18207602202892303, 0.9621849656105042, -0.2257971316576004, -0.8868412375450134, -0.7299841046333313, -0.8574604392051697, 0.6314170956611633, 0.19361042976379395, -0.4261901378631592, 0.3153907060623169, 1.132084608078003, -0.0055547431111335754, 1.5183324813842773, -0.14090529084205627, -0.011148333549499512, -0.12538032233715057, 0.6884745955467224, 0.6596513390541077, 0.7045769095420837, -0.8867234587669373, -0.622782826423645, 0.32160043716430664, 0.14140938222408295, 0.921838104724884, 0.7763587832450867, 1.2805429697036743, -0.9076089262962341, 0.10690770298242569, -0.19414998590946198, 0.10054393112659454, -0.6158729791641235, -0.12586276233196259, -0.579933762550354, -0.4651268422603607, -0.5713587403297424, -1.059662103652954, -0.02168460562825203, 0.37641119956970215, 0.15106706321239471, 0.6947575211524963, 0.6699918508529663, -1.1842126846313477, -1.8366230726242065, -0.5053335428237915, -0.06537625938653946, -1.1441447734832764, 1.3177917003631592, 1.018587589263916, -1.091550350189209, 0.3047631084918976, 0.2597757875919342, -0.2177516222000122, -0.3120698630809784, -0.4484247863292694, 0.11815886944532394, -0.6670706272125244, -0.7597360014915466, 0.025489570572972298, 1.0119014978408813, 0.08942627161741257, 0.06363280862569809, 0.09020751714706421, 0.7774282097816467, 0.30616092681884766, -0.3015364110469818, -0.9995706081390381, 0.2415292114019394, -0.07706591486930847, -1.0938663482666016, -0.3938055634498596, 1.126102089881897, 0.8178644776344299, -0.4671567678451538, -0.9923257827758789, -0.1986701637506485, -0.30142903327941895, -0.6994250416755676, 0.1692027598619461, 0.5072735548019409, 0.6595048904418945, -0.6754254102706909, 0.35554516315460205, 0.7535915970802307, -0.39687544107437134, 0.2856270670890808, -1.0998241901397705, 0.9007698893547058, 0.8561846017837524, 1.4418638944625854, -0.1631024181842804, 0.5078617930412292, 0.4662957489490509, -0.6174519658088684, -0.4177769124507904, -0.029663940891623497, 0.549955427646637, -0.366573691368103, -0.560593843460083, -0.4817095100879669, -0.267024427652359, 0.4516352713108063, 0.03800783306360245, -0.07722419500350952, 0.44690170884132385, -0.03843469172716141, -0.4001029431819916, 1.1964937448501587, -0.06758874654769897, -0.10366162657737732, -0.6192378401756287, 0.007954634726047516, 0.27747607231140137, -0.36129793524742126, -0.15981937944889069, -0.08959829807281494, -0.42509761452674866, 0.27633464336395264, -0.42506858706474304, -0.7317386269569397, -0.9545947313308716, 0.9387327432632446, 1.0147886276245117, -0.9192060232162476, -0.7227080464363098, -0.7639938592910767, 0.6441158056259155, 0.2025029957294464, -0.4530598223209381, 0.7998038530349731, 0.41466933488845825, -0.06482833623886108, -0.23688611388206482, -0.03134365752339363, 1.1884891986846924, 0.1845199167728424, -0.16515810787677765, 0.28372490406036377, 0.5355029106140137, -0.20929677784442902, -0.6937699317932129, -0.1290564090013504, -0.265509694814682, -0.08506074547767639, -0.3992050290107727, 0.6937727332115173, -0.14857451617717743, 1.9344866275787354, 0.6378381252288818, 0.6171175837516785, -0.004538011737167835, 0.2606174349784851, -1.2090187072753906, -0.09347359836101532, 0.6530641317367554, -0.26401323080062866, -0.3858618438243866, 0.03300287202000618, -0.3903525471687317, 0.4084163308143616, -0.18322575092315674, 0.67741858959198, 0.45596861839294434, 0.5642412304878235, -0.14604291319847107, 0.0019368752837181091, 0.397998571395874, 0.3728457987308502, 0.935566246509552, 1.1859813928604126, -0.4716167151927948, -0.7241648435592651, 0.5609102249145508, 0.037747692316770554, 0.2891109585762024, 0.6894075274467468, 0.5187579989433289, 1.1674610376358032, -1.5024861097335815, -0.03766930475831032, 0.8494300246238708, 0.11390317231416702, 0.3530295193195343, 0.44082510471343994, 0.33377090096473694, -0.8640305995941162, -0.1469782143831253, 0.3399884104728699, -0.18517427146434784, 0.7855759263038635, 0.1680632084608078, 0.3770561218261719, 0.5787212252616882, -0.015096204355359077, -0.03309231624007225, -0.7487292289733887, -0.19109827280044556, -0.03154272213578224, -0.18479622900485992, 0.9160801768302917, 0.09016397595405579, 0.9530786275863647, 1.096175193786621, -0.7392213940620422, -1.2292699813842773, 0.7388023734092712, -1.2177995443344116, 0.06259274482727051, -0.47758588194847107, -0.11069171875715256, -0.5604835748672485, -0.47199708223342896, -0.567898690700531, -0.47671693563461304, -0.7601742148399353, -0.16710269451141357, -1.227183222770691, -0.7044119238853455, 0.574101448059082, -0.0319334901869297, 0.9550691843032837, 0.12162336707115173, 0.6020742058753967, 0.6205465197563171, 0.10281915217638016, -0.6612123250961304, 0.2895817756652832, -0.21767859160900116, -0.07589273154735565, -0.09292236715555191, -1.2271126508712769, -0.7674850821495056, 0.2309272736310959, 1.0169918537139893, 0.38826820254325867, 0.3366983234882355, 1.1720962524414062, 1.3065779209136963, -0.8522899150848389, -1.3037482500076294, 0.7727005481719971, -0.31003719568252563, 0.5577513575553894, 0.03878581151366234, -0.8618928790092468, 0.12361352145671844, -1.243791103363037, -1.778941035270691, 1.0030994415283203, -0.01650257781147957, 0.07346402853727341, 1.2612684965133667, 0.5890071988105774, 0.02835746295750141, 1.846746802330017, 0.059399235993623734, 0.04396591708064079, -0.381203293800354, -0.2622244656085968, -1.271475911140442, 1.0771937370300293, 1.418111801147461, 0.21677516400814056, -1.4503719806671143, 0.3399673402309418, -0.3123822808265686, -1.0116474628448486, -0.30369216203689575, 0.2871367931365967, 0.1256955862045288, 0.7057232856750488, -0.3417789041996002, -0.16596579551696777, 0.12600301206111908, -0.9598357677459717, -0.11498585343360901, 0.2426360547542572, 0.6753602623939514, 0.9131141901016235, -0.5475649237632751, 0.8791245818138123, -0.957310676574707, -1.1296632289886475, -0.2735517621040344, -0.652365505695343, 0.16494645178318024, 0.5766540169715881, 0.5201789736747742, -0.13255617022514343, -0.30675652623176575, -0.16004036366939545, -0.7985584735870361, 0.2172715663909912, 0.7702713012695312, -0.9810665249824524, -0.6744224429130554, 0.31541210412979126, -0.3382222354412079, 0.1424049437046051, 0.005193844437599182, -0.4098811447620392, -0.725193202495575, -1.1066240072250366, -0.3002178370952606, -0.7259848713874817, 0.6085817813873291, -0.6575003862380981, 0.28659138083457947, -0.20467381179332733, -1.2779747247695923, 0.4642522633075714, -0.052276451140642166, -1.5677047967910767, -0.4021192789077759, -0.6305690407752991, 0.6604645252227783, -0.31033897399902344, 0.9150384664535522, -0.218329519033432, 1.3242658376693726, -1.6095774173736572, -0.44924017786979675, -0.5387738347053528, -0.3828839361667633, 0.9245964884757996, 0.7632747888565063, -1.2588969469070435, 0.9645566344261169, -0.34698450565338135, -0.6695023775100708, -0.849476158618927, 0.005238847807049751, -1.3418105840682983, 0.3642384111881256, 0.09589579701423645, -0.08243997395038605, 0.5857172012329102, 1.5629159212112427, 0.31135207414627075, 1.0965328216552734, -0.33521199226379395, 1.2840677499771118, -0.19113199412822723, -0.8282162547111511, -0.23651497066020966, 0.26103466749191284, -1.0778120756149292, -0.49959704279899597, 0.2830977439880371, -0.6305436491966248, -0.6258172988891602, 0.4406284689903259, 0.7981048226356506, -1.0848066806793213, 0.24586787819862366, -0.8843997120857239, -0.7391418814659119, -1.0619242191314697, 0.6488610506057739, 0.6938907504081726, -1.3051238059997559, -0.5092746019363403, 0.028557095676660538, 0.4443489909172058, -1.2229644060134888, 0.43313974142074585, 0.4837694466114044, 0.4216330051422119, -0.07473957538604736, 0.21600666642189026, -0.1006949171423912, 0.9539998173713684, -0.17611883580684662, 0.6155561208724976, 1.2969425916671753, -0.1599678099155426, 0.4717544913291931, -0.02750461921095848, -0.24467208981513977, 0.05591001361608505, -0.2640019953250885, -0.8518694043159485, -0.5059283971786499, 0.8224318623542786, 0.2440079003572464, -0.276587575674057, 0.45990580320358276, 0.3720948398113251, 0.16086991131305695, -0.5702967643737793, 1.7914206981658936, -0.6851773262023926, -0.8504550457000732, 0.6567445993423462, 0.8575392961502075, -0.27783241868019104, 0.1008925586938858, -0.3068683445453644, 0.3865739107131958, -0.2831188142299652, 0.8478663563728333, 0.20776936411857605, -0.6630844473838806, -0.05448592081665993, -0.16471454501152039, -0.22457580268383026, 0.3075207769870758, -0.871421217918396, -1.2262059450149536, 0.121575266122818, -0.10623842477798462, -0.2191666215658188, 0.47314876317977905, -1.3302432298660278, -1.8900080919265747, 0.30069035291671753, -0.3328762650489807, -0.5961782336235046, -0.6922059059143066, -0.07951277494430542, -0.2665890157222748, -0.12086579948663712, 0.7861995697021484, -0.2459011673927307, 0.6144009828567505, -0.19785162806510925, 0.0522531159222126, -0.46580561995506287, -0.42823249101638794, 0.14371739327907562, -0.2891167104244232, -0.0016804265324026346, -0.3666003942489624, 0.6302290558815002, -0.48696500062942505, -0.3322937786579132, 0.30290308594703674, 0.1366702765226364, 0.0731116533279419, -0.1861899197101593, -0.5219008922576904, 0.3007798492908478, 0.029917579144239426, 0.32715868949890137, -0.41655686497688293, -0.799280047416687, -0.42917370796203613, -0.45159226655960083, 0.3301040828227997, 0.6493264436721802, -0.7938258051872253, -0.04953104257583618, 0.9604841470718384, -0.8751248121261597, -0.6500978469848633, -0.3170166611671448, 0.8908622860908508, -0.4057779014110565, 0.23177705705165863, -0.4670647382736206, -0.5150641798973083, -0.5396466851234436, -1.1535676717758179, -0.20302197337150574, -0.1299612820148468, -0.05625919625163078, 0.7067732810974121, -0.5151692628860474, -0.3888244926929474, -0.5758722424507141, 0.9038726687431335, -0.055652979761362076, 0.4792373776435852, 0.5772308707237244, -0.09249113500118256, -0.7956779599189758, -0.07649490237236023, -0.10172298550605774, 0.8292564153671265, 0.4515458643436432, 1.504763126373291, 1.2481741905212402, 0.36017632484436035, 0.4753909409046173, 0.2009616494178772, 0.6941925883293152, -0.7899167537689209, -0.14966623485088348, -0.8985288739204407, -0.5320348739624023, -0.09070336073637009], [0.6907796263694763, 2.0888941287994385, -3.015634536743164, 0.8448196649551392, 0.3774552643299103, 0.16739968955516815, 1.7747435569763184, -0.17212754487991333, 0.4779823422431946, -0.7862173914909363, -0.2757798731327057, 0.0880194827914238, 0.04958445206284523, 0.3883498013019562, 0.4797629714012146, 0.5753671526908875, 0.2992786467075348, -0.5905726552009583, 1.0830210447311401, 1.0199013948440552, 0.7422101497650146, -0.5672982931137085, -0.453447550535202, -0.231380894780159, -0.3374170660972595, 0.8556742072105408, -1.2904689311981201, 0.24524104595184326, -0.5079820156097412, -0.849265992641449, 1.6155844926834106, 0.4803467392921448, 0.03828468546271324, 0.41972845792770386, -2.3396334648132324, -0.10693016648292542, 1.0974534749984741, -0.020488396286964417, 0.6701352596282959, -0.511325478553772, 2.4686996936798096, -0.4166143238544464, 0.0729505866765976, -1.6861056089401245, -0.11506795883178711, 0.5169854164123535, 0.38832154870033264, -0.5403941869735718, 0.19093067944049835, -0.6959635615348816, 0.5770502090454102, -0.6937631964683533, 0.12961137294769287, 1.2256611585617065, 0.5613369941711426, -0.23837041854858398, 0.09405902773141861, 0.002160182688385248, -0.17823311686515808, 0.0760338306427002, 0.895855188369751, -0.3155284821987152, 0.17828835546970367, 0.5068075060844421, 0.380509614944458, -0.009041105397045612, 0.7313787341117859, 0.2166641652584076, 0.38472604751586914, 0.4936997890472412, 0.36659637093544006, -0.20576684176921844, -0.9577489495277405, -0.2981626093387604, -0.5087665915489197, 0.19745442271232605, -0.17341738939285278, 0.31788167357444763, 0.45769959688186646, 0.7031648755073547, -0.479301780462265, 0.325531005859375, 0.8731685876846313, -0.1013140007853508, 0.31552937626838684, 0.15903422236442566, 0.46461591124534607, -0.8716564178466797, -0.3467339277267456, 1.8990026712417603, 0.502160370349884, 0.7338209748268127, 0.6854748725891113, -0.38303184509277344, -0.5811289548873901, -0.8138871788978577, -0.12814807891845703, -0.7376469969749451, 0.22512464225292206, -0.5882446765899658, -0.1943770945072174, -0.4981659948825836, 0.16178065538406372, -0.028300317004323006, -0.2038133144378662, 0.9608837962150574, -0.09315845370292664, -0.4932045638561249, -0.40877673029899597, -0.10485213994979858, -0.16318345069885254, -0.19124974310398102, -0.344679594039917, -1.4007633924484253, -0.7542974948883057, 1.3891814947128296, 1.409766435623169, 1.0017448663711548, 0.535376250743866, -0.08737586438655853, -0.3579881489276886, -0.17699120938777924, -0.6118958592414856, -0.1492524892091751, 0.770927369594574, -0.19844232499599457, -0.6719571352005005, 0.2428961992263794, -0.1899706870317459, 0.440262109041214, 0.719208836555481, -0.04618510231375694, -0.20059071481227875, 0.8329118490219116, -0.00374003779143095, 1.1991798877716064, -0.5086966156959534, 0.02946055680513382, 0.5705580115318298, 0.3604128658771515, 0.4453469216823578, -0.4075463116168976, 0.3891270160675049, -0.052830614149570465, 0.21954412758350372, -0.43384048342704773, 1.082704782485962, -0.18401722609996796, -0.5790677070617676, 0.7338396906852722, -1.5426818132400513, 0.5880579352378845, -0.7252601981163025, 0.941117525100708, 0.020234951749444008, -0.41666343808174133, 0.29448530077934265, 0.2794138193130493, 0.4485832154750824, 0.4403057396411896, 0.7054741382598877, -0.257997065782547, -1.3213320970535278, 0.5445749163627625, 0.5550520420074463, -0.9094225168228149, 0.3522973954677582, 0.33179771900177, -0.9229451417922974, 0.9119855165481567, -0.3758063018321991, -0.5350976586341858, -0.27539747953414917, -0.22201375663280487, 0.3087221384048462, -0.36393338441848755, 1.2166095972061157, 0.2502944767475128, -0.9025097489356995, -1.283903956413269, 0.8955876231193542, -0.18619494140148163, 0.39561474323272705, 0.5154948830604553, 0.5396537184715271, -0.32107844948768616, 0.6149584054946899, -0.3470645248889923, -0.6596314311027527, -0.5882772207260132, -0.6438814401626587, 0.15179601311683655, -1.5506144762039185, 0.26376378536224365, -0.3342617452144623, -0.5784565210342407, 1.5107760429382324, -0.650044322013855, -0.12550532817840576, -0.13843730092048645, -0.08461610227823257, -0.4947909712791443, -0.6961326599121094, -0.20435424149036407, -0.7076154947280884, 0.3778242766857147, -1.1335558891296387, 0.899808406829834, -0.24792194366455078, 0.48263245820999146, 0.7471646666526794, -1.079390287399292, -1.2064082622528076, 1.255110502243042, -0.3487827777862549, -2.259335994720459, 0.5285673141479492, 0.5572685599327087, 0.13666917383670807, -0.11738720536231995, -0.110940121114254, 0.1259346306324005, 0.49751296639442444, 0.4096585214138031, 1.0065914392471313, -1.11281418800354, 0.0935773178935051, -1.0842769145965576, -0.40017077326774597, 0.8668773174285889, -0.92754065990448, -0.9919415712356567, 0.36667317152023315, 0.1484985500574112, -1.482807993888855, 0.7729337811470032, 0.0013467799872159958, 0.03388785570859909, 0.4821024537086487, 1.3423776626586914, 0.7009317278862, 0.2702181935310364, -0.43876275420188904, -0.22184905409812927, -0.17549042403697968, -0.0817154049873352, 0.6757654547691345, -0.6246607303619385, -0.26047879457473755, 1.0260928869247437, 0.5943114161491394, -0.310131311416626, 0.9551021456718445, -0.6310238242149353, 0.3138439357280731, -1.4631365537643433, -0.46692126989364624, -0.28313758969306946, -1.4198073148727417, 1.2440001964569092, 1.058916687965393, -0.9170057773590088, 0.6435735821723938, -0.4232480525970459, -0.3479144275188446, -0.6499925851821899, -0.49610623717308044, -0.9242876172065735, -0.15281502902507782, -0.3201645612716675, -0.06116282939910889, -0.7231853008270264, -0.4468690752983093, 1.384569525718689, -0.37454888224601746, -0.24100103974342346, 0.2036363184452057, 0.38748323917388916, 0.7392128705978394, 0.4984804093837738, -0.024574993178248405, -1.9403091669082642, -0.7618798017501831, 0.5048769116401672, 1.3226836919784546, -0.07841333746910095, 0.8114867806434631, 0.35961174964904785, 0.9316574335098267, 0.6679502129554749, 0.33857962489128113, -0.1964636892080307, 0.22918207943439484, 0.33478090167045593, 0.19275720417499542, -0.03422274813055992, 0.2751956284046173, -0.6720921397209167, -0.6920552253723145, -0.5370252728462219, 0.6750284433364868, 0.9596831798553467, 0.9725319147109985, 0.7787280082702637, -0.23144418001174927, 0.5579254031181335, -0.40340831875801086, 0.013411354273557663, -0.2304583042860031, -0.5799351334571838, 0.12093417346477509, -0.6803703904151917, -0.4306652843952179, -0.4728606343269348, -0.005999094340950251, 0.484536349773407, 0.150238499045372, 1.3918551206588745, 0.9782760739326477, -0.784956693649292, -1.3412249088287354, -0.8976349830627441, 0.24000534415245056, -0.795748770236969, 0.829484760761261, 0.9729594588279724, -1.5602285861968994, 0.7550013065338135, 0.24185678362846375, 0.5148118138313293, 0.8947982788085938, -0.10467111319303513, 0.281622976064682, -1.3406661748886108, -0.5158384442329407, -0.1326867789030075, 1.327661156654358, -0.28530001640319824, 0.0017213569954037666, -0.5337722897529602, -0.028644418343901634, 0.842814028263092, -0.11008843779563904, 0.15899282693862915, 0.23613840341567993, -0.3892977237701416, -0.5997049808502197, -0.004978109151124954, 0.3169393539428711, 0.5137239098548889, -0.39092350006103516, -1.326794981956482, 0.12044361978769302, 0.11535058170557022, -0.7847573757171631, 0.26669418811798096, 0.779403805732727, 0.09866885095834732, -0.5738284587860107, 0.04473678395152092, 1.094105839729309, 0.17972664535045624, -0.11823353171348572, -0.4066976010799408, 0.5239754915237427, 0.7548521757125854, 1.2770394086837769, 0.30679643154144287, 0.5733119249343872, 0.30781570076942444, -1.4659888744354248, -0.4388626515865326, -0.004540991969406605, 0.66023850440979, -0.2054721564054489, -0.6287075877189636, -0.11801638454198837, -0.24727816879749298, -0.2212163507938385, 0.41524431109428406, 0.5514605641365051, -0.028666481375694275, -0.20003676414489746, -1.1020145416259766, 0.6709296107292175, -0.046659260988235474, -0.48278549313545227, -0.9666450619697571, -0.0169527605175972, 0.6043992638587952, -0.18321536481380463, -0.29483088850975037, -0.46378588676452637, -0.11694558709859848, 0.33725377917289734, -0.7174111604690552, -0.4199093282222748, -0.10108835250139236, 0.2607434391975403, 1.0434941053390503, -1.3245117664337158, -0.2284785360097885, -0.5222998857498169, 0.6510547399520874, 0.7719243168830872, -0.36657556891441345, 0.6647870540618896, 0.7081965804100037, -0.33512088656425476, -0.2308804839849472, -0.04920037463307381, 1.3687806129455566, -0.3302806615829468, -0.14732679724693298, 0.5019115209579468, -0.18701808154582977, 1.0100222826004028, -1.2863714694976807, -0.24762289226055145, 0.2743544280529022, -0.46701663732528687, 0.3164111375808716, -0.011932878755033016, -0.7896976470947266, 1.3318098783493042, 0.3029016852378845, -0.5532332062721252, 0.2816959023475647, 0.0103569645434618, -1.1228018999099731, 0.030246460810303688, 0.3668874502182007, -0.09664458781480789, -0.40311169624328613, 0.36840227246284485, 0.5320827960968018, 0.5493801832199097, 0.5800642967224121, 0.2863472104072571, 0.11074725538492203, 0.31307655572891235, 0.023470891639590263, 0.24065926671028137, 1.058850646018982, 0.9545316100120544, 1.056262493133545, 1.0066602230072021, -0.5642006397247314, -0.13569030165672302, 0.49390679597854614, -0.2821817100048065, 0.6948274374008179, 1.12704336643219, -0.239538311958313, 1.251860499382019, -1.4982223510742188, 0.28844520449638367, 0.8865323066711426, 0.39851853251457214, 1.3164424896240234, -0.1887723207473755, 0.6388672590255737, -0.8364578485488892, -0.5064999461174011, 0.9100950956344604, -0.5871227979660034, 1.0272380113601685, 0.18031008541584015, -0.13357742130756378, 0.73291015625, -0.8496260643005371, -0.4276510179042816, -0.730383038520813, -0.34987449645996094, -0.828116238117218, -0.46576690673828125, 0.512016236782074, 1.0000605583190918, 1.0551276206970215, 0.6081036329269409, 0.27361810207366943, -1.7052749395370483, 0.15320929884910583, -1.0022766590118408, 0.18727265298366547, -0.1307377815246582, 0.1300913244485855, -0.9900360703468323, -0.6743745803833008, -0.030945396050810814, 0.02152233012020588, -0.7498562335968018, -0.33751562237739563, -0.07654757797718048, -1.134519338607788, 0.3972405195236206, 0.9899142980575562, 0.2745720148086548, 0.47140222787857056, 0.23788657784461975, -0.1651010811328888, 0.2734549343585968, -0.5277650356292725, -0.6622902750968933, -0.7937373518943787, 0.03380989283323288, 0.16464926302433014, -1.250040054321289, -0.27723073959350586, 0.6009365320205688, 0.9754635691642761, 0.3588860034942627, 1.3664387464523315, 1.1518484354019165, 1.2260359525680542, -1.0825639963150024, -0.4487367868423462, 0.37780922651290894, -0.41815057396888733, 1.0140008926391602, 0.9698463082313538, -0.5261797904968262, -0.3904288411140442, -0.8287081122398376, -1.8572720289230347, 0.7613409161567688, -0.29998424649238586, -0.13329723477363586, 0.8948107361793518, 0.6106489300727844, 0.16834604740142822, 0.3737300634384155, -0.7294256687164307, -0.5758500695228577, -0.11373629420995712, 0.1169959157705307, -0.6110052466392517, 0.9369186758995056, 0.859146773815155, -0.4178548753261566, -1.3091500997543335, 0.42665988206863403, -0.4234273135662079, -0.5971757173538208, 0.04405141994357109, 0.40909823775291443, -0.7070584893226624, 0.41674894094467163, 0.11852160096168518, -0.8092434406280518, 0.41261377930641174, -1.3913999795913696, 0.6438437700271606, 0.3373122811317444, 0.20523640513420105, 0.7661881446838379, -0.24997460842132568, 1.003757357597351, -0.6543639898300171, -0.22890454530715942, -0.49597495794296265, -0.42023882269859314, 0.5361759662628174, 0.585989236831665, 0.6691503524780273, -0.31192538142204285, -0.894304096698761, -0.27147960662841797, -0.6406146883964539, 0.022777657955884933, 0.8399488925933838, -0.5742858648300171, 0.1920044720172882, 0.1662244349718094, -0.5596863031387329, 0.14160099625587463, -0.20435625314712524, 0.05711902305483818, -0.9805697202682495, -0.9902766942977905, -0.4164687395095825, -0.4577693045139313, 1.1540671586990356, -0.4739064872264862, 0.8293532729148865, -0.034574177116155624, -1.2227997779846191, 0.3394373953342438, -0.13020919263362885, -1.6443971395492554, 0.14511021971702576, -0.943077802658081, 0.7803040742874146, -0.692937970161438, -0.16152898967266083, -0.2363450825214386, 1.1704552173614502, -1.5873976945877075, -0.8836963772773743, -1.8853720426559448, -0.3575391173362732, 0.5615138411521912, 0.9410561919212341, -1.8805789947509766, 1.1891597509384155, -0.526041567325592, -0.7488875389099121, -0.4731290638446808, -0.22951312363147736, -1.1228728294372559, -0.366007536649704, 0.1532823145389557, 0.724504828453064, 0.3052223026752472, 1.8292160034179688, -0.0998721569776535, 0.9487418532371521, 0.3407277464866638, 1.336311936378479, -0.09199193865060806, -0.2765175700187683, 0.3410789966583252, 0.7248063683509827, -1.379563331604004, 0.1903010904788971, 0.04850784316658974, -0.03253742307424545, -1.118001103401184, 0.4407828748226166, 0.561795175075531, -0.37025704979896545, 0.22944475710391998, -0.38296476006507874, 0.30016428232192993, -0.7320575714111328, 0.2973410487174988, 0.6125278472900391, -0.925691545009613, -0.07257350534200668, -0.9623104929924011, 0.11221089959144592, -1.2158769369125366, -0.4021545648574829, 0.19734309613704681, -0.15177856385707855, -0.4146081209182739, 0.6127346158027649, 0.28855186700820923, 0.728955090045929, -0.5179001688957214, 0.8786314129829407, 0.8629745244979858, -0.5873575806617737, -0.2905382215976715, 0.4364316165447235, 0.39864206314086914, -0.19907614588737488, 0.06725436449050903, -0.21237529814243317, -0.7214857935905457, 0.40528759360313416, 0.2336198389530182, -0.36514797806739807, 0.010850009508430958, 0.594131350517273, -0.013094860129058361, 0.48036906123161316, 1.1308934688568115, -0.217729851603508, -0.8752927780151367, 1.0177732706069946, 0.6742197275161743, -0.9613384008407593, 0.013562552630901337, -0.058906834572553635, 0.6735141277313232, -0.05372868478298187, 0.39050644636154175, 0.4338077902793884, -0.7458999156951904, 0.4351855218410492, -0.20906223356723785, 0.13768209517002106, 0.26992860436439514, -0.4562247693538666, -0.8111711144447327, -0.9075262546539307, -0.8688415288925171, -0.21126072108745575, 0.3973639905452728, -1.075939655303955, -1.3799948692321777, 0.3418779671192169, 0.5566983222961426, -0.46722567081451416, 0.2353784143924713, -0.0052504814229905605, -0.2576224207878113, -0.4170321524143219, 0.8452498316764832, -0.17561087012290955, 1.359399676322937, -0.5131664872169495, 0.02088637463748455, -0.09615034610033035, -0.11096911877393723, -0.051738012582063675, -0.14362987875938416, 0.09221549332141876, -0.721123456954956, 0.6387514472007751, -1.072405219078064, -0.516994297504425, 0.16563557088375092, 0.3403588533401489, -0.07617663592100143, -0.3420945405960083, -1.2093929052352905, 0.7189873456954956, 0.34072306752204895, 0.13206784427165985, -0.5364436507225037, -0.44742482900619507, -0.6768575310707092, 0.1593042016029358, -0.3935287594795227, 0.8598617911338806, 0.01035594567656517, 0.8791396021842957, 0.5687424540519714, -0.6929140090942383, -1.099299430847168, -1.0980486869812012, 0.6796890497207642, 0.24507597088813782, 0.31377261877059937, -0.1309901624917984, 0.7922085523605347, -0.39366844296455383, -0.9873066544532776, -1.0034189224243164, 0.05791143327951431, 0.29837968945503235, 0.5748509764671326, -0.6902772188186646, -0.6929498910903931, -0.38392165303230286, 0.9398486614227295, -0.07434920221567154, 0.16351932287216187, 0.356251060962677, -0.31255173683166504, -0.9758297204971313, -0.12547168135643005, 0.47518062591552734, 0.2007184475660324, 0.6872552633285522, 1.723394513130188, 0.9659530520439148, 0.0833999365568161, -0.37817931175231934, 0.04105758294463158, 0.7298234701156616, -1.4789706468582153, -0.06546454131603241, -0.867336630821228, -0.483461856842041, -0.07834642380475998], [0.670873761177063, 2.5666115283966064, -2.8639564514160156, 0.4565143287181854, 1.019042730331421, 0.454334020614624, 0.9357755780220032, 0.6534588932991028, 0.07290693372488022, -0.673214852809906, -1.112908124923706, 0.5483556985855103, -0.1414954513311386, 0.8435606956481934, 0.31483954191207886, -0.21179994940757751, 0.8127113580703735, 0.19339270889759064, -0.10168522596359253, 1.1620842218399048, 0.49686071276664734, -0.6056675910949707, -0.6952574849128723, 0.2750544548034668, 0.004299473017454147, -0.023230750113725662, -0.9967606067657471, 0.24179407954216003, -0.9920597076416016, -0.4891241192817688, 1.5711414813995361, 0.6394340991973877, 0.6509617567062378, 0.17421363294124603, -1.9890691041946411, 0.03719101846218109, 0.5911147594451904, -0.29684796929359436, 0.32683855295181274, -0.17854458093643188, 1.7353222370147705, 0.1833494007587433, -0.18021845817565918, -1.3914690017700195, -0.36182957887649536, 0.16803638637065887, 0.4260185658931732, -0.5355978608131409, 0.41721999645233154, -0.7029899954795837, 0.9984534382820129, -0.4163798391819, 0.41215357184410095, 0.48339858651161194, 0.8915283679962158, -1.1850663423538208, 0.4799293577671051, 0.5639658570289612, -0.13564150035381317, 0.6941640377044678, 0.8964411616325378, -0.6710578799247742, 1.0969220399856567, 0.5982657074928284, 0.031294092535972595, -0.6939487457275391, 0.5275850296020508, 0.3052232563495636, 0.5466118454933167, 0.24963797628879547, 0.9004459977149963, 1.1664807796478271, -1.1563191413879395, 0.2859452962875366, -0.9756622314453125, 0.14333246648311615, -0.145871102809906, 0.38398268818855286, 0.005733763799071312, 0.40312764048576355, -0.0894542708992958, 0.4626834988594055, 0.4114088714122772, 0.44890326261520386, -0.2360934019088745, 0.16758964955806732, 0.4366002082824707, -0.4870177209377289, -0.34863439202308655, 1.1069130897521973, 0.04729855805635452, 0.6124024987220764, 0.9106763005256653, -0.2809833586215973, -0.30013415217399597, -0.7992616295814514, -0.3414173722267151, -1.3241041898727417, -0.40308743715286255, -0.6219027042388916, 0.008948049508035183, -0.6043736934661865, 0.7229329943656921, 0.6431050300598145, 0.23709695041179657, 1.6010345220565796, -0.12365357577800751, -0.5813052654266357, -0.26580652594566345, -0.3624878525733948, 0.09100289642810822, 0.15974970161914825, 0.1514105349779129, -1.7790921926498413, -0.17013311386108398, 0.9894523620605469, 1.115722417831421, 0.6556040048599243, -0.3729158937931061, 0.42445215582847595, -0.42094340920448303, -0.458204060792923, -0.736579179763794, 0.17278940975666046, 1.7550758123397827, -0.09295596182346344, -0.15338733792304993, 0.441741406917572, -0.11635483801364899, 0.20302249491214752, 0.27229464054107666, 0.043613169342279434, -0.12342521548271179, 0.5254051685333252, -0.6759414672851562, 0.8192430734634399, -0.49428725242614746, -0.20280689001083374, 0.0033356850035488605, 1.222444772720337, 0.5210340619087219, -0.35203808546066284, -0.0835859552025795, -0.4350638687610626, 0.38204485177993774, -0.19275303184986115, 0.743602454662323, 0.14190703630447388, -0.7896665334701538, 0.7624611258506775, -2.095228910446167, 0.38871219754219055, 0.03281873092055321, 0.947088897228241, 0.703006386756897, -0.09087809920310974, 0.4770418107509613, 0.09451130777597427, -0.012981596402823925, 0.24304084479808807, 1.1214838027954102, 0.05516327917575836, -0.9187544584274292, 0.9294232130050659, 0.7424876689910889, -0.33744844794273376, 0.30009549856185913, 0.3155458867549896, -0.27060022950172424, 1.1737803220748901, 0.005541522055864334, -0.5006855130195618, -0.8528767228126526, 0.32531028985977173, -0.1944524049758911, -0.18269731104373932, 0.8952212333679199, 0.23406384885311127, -0.7317565083503723, -0.910431981086731, 0.5481342077255249, -0.028789952397346497, 0.1939089298248291, -0.018648158758878708, 0.9828433990478516, -0.3710704445838928, -0.5743545293807983, -0.8485254049301147, -0.41730523109436035, -0.6531291604042053, -0.43399879336357117, 0.032107170671224594, -1.1180315017700195, 0.5875308513641357, -0.6720688939094543, -1.4384771585464478, 1.0113834142684937, -0.37403440475463867, -0.2893499433994293, -0.09771645069122314, 0.14077283442020416, -0.4991803467273712, -1.302164912223816, -0.4548482596874237, -0.48137471079826355, 0.5442538857460022, -1.035315752029419, 0.6639463305473328, -0.9749976396560669, 0.8407010436058044, 0.6766031980514526, -0.40717819333076477, -1.6375882625579834, 0.2011033147573471, -0.19515934586524963, -1.3036134243011475, 0.4029233753681183, -0.2483861744403839, 0.46330487728118896, -0.6830999255180359, -0.48830515146255493, 1.0973159074783325, 0.8146098852157593, -0.6297431588172913, 0.7845912575721741, -0.8568131327629089, 0.11710423231124878, -0.9466069936752319, -0.09756909310817719, 0.3079623281955719, -0.8755550384521484, -1.0584099292755127, 0.7079290151596069, 0.9197879433631897, -1.6039354801177979, 0.6963610649108887, -0.5848666429519653, 0.2818099856376648, 0.2810129225254059, 1.160141110420227, 0.22890597581863403, 0.9446596503257751, -1.0400408506393433, 0.010138992220163345, -1.2510685920715332, -0.6145921349525452, 0.5661441087722778, -0.3462525010108948, -0.08025245368480682, 1.3040434122085571, 0.6011239290237427, -0.21772369742393494, 0.8026323318481445, -0.27643027901649475, 0.04389705881476402, -0.958442211151123, -0.006084372755140066, -0.13880853354930878, -0.7294468283653259, 1.867631435394287, 1.106265664100647, -0.5537940263748169, 0.10530886799097061, -0.4606037437915802, -0.05813390389084816, -0.7984880208969116, 0.0059699625708162785, -0.7760704755783081, 0.1959514021873474, -0.4524126648902893, 0.06960780173540115, -0.7323402762413025, 0.06721610575914383, 1.3031224012374878, 0.5330471396446228, -0.7786775827407837, -0.32112252712249756, 0.5392919778823853, -0.2305169254541397, 0.4561992287635803, -0.6109866499900818, -1.1675877571105957, -1.354573369026184, 0.34009239077568054, 1.056038498878479, -0.1594826877117157, 0.40318605303764343, 0.5891366600990295, 1.0267192125320435, -0.21586035192012787, 0.3008187711238861, 0.07081626355648041, 0.09393195062875748, 0.004297053441405296, 0.7783551216125488, 0.46053487062454224, 0.23100829124450684, -0.7017304301261902, -0.6533703804016113, -0.35154032707214355, -0.056843455880880356, 1.0799190998077393, 0.7914322018623352, 1.2784959077835083, -1.0032463073730469, -0.09334680438041687, -0.620063841342926, -0.1366306096315384, -0.9162716865539551, -0.4397018849849701, -0.4054841995239258, -0.8192061185836792, -0.5193459391593933, -0.6356188654899597, -0.41986942291259766, 0.4901678264141083, 0.017073512077331543, 1.1210267543792725, 0.4349711537361145, -0.3913062512874603, -1.812825083732605, -1.048769474029541, -0.7894166111946106, -0.7257362604141235, 0.6790228486061096, 1.5348366498947144, -2.3530776500701904, 0.041247639805078506, -0.14560283720493317, -0.11416828632354736, -0.417441725730896, -0.7151418924331665, 0.24404111504554749, -1.1067678928375244, -0.19955679774284363, -0.48067039251327515, 1.3880170583724976, 0.31202274560928345, -0.5062370300292969, -0.19552841782569885, 0.9109766483306885, 1.0407230854034424, -0.37112483382225037, 0.20169579982757568, 0.26981982588768005, -1.4498552083969116, -0.001167519949376583, -0.235885888338089, 0.14001062512397766, 0.012048550881445408, -0.595780074596405, -1.1832228899002075, -0.5918026566505432, -0.6956688165664673, -0.7683932185173035, 0.8323136568069458, 1.2497546672821045, 0.6039428114891052, 0.2952008843421936, 0.10553449392318726, 1.0967689752578735, 0.18647918105125427, 0.4738523066043854, -1.0194660425186157, 0.5100403428077698, 0.8671022057533264, 1.848682165145874, 0.6426293849945068, 0.03718777373433113, 0.4215985834598541, -1.2791988849639893, -0.4900258779525757, 0.09670445322990417, 0.4347565770149231, 0.2727033197879791, -0.4584541618824005, -0.3794732391834259, -0.7152420878410339, 0.07709342241287231, 0.044182222336530685, 0.9902815222740173, 0.11185003072023392, -0.05158437788486481, -0.3659171164035797, 1.6763577461242676, 0.47183123230934143, 0.09830119460821152, -1.1131709814071655, -0.519881546497345, 0.8012152910232544, -1.0086441040039062, 0.2386402040719986, 0.09516967833042145, -0.09281393885612488, 0.5784637928009033, -0.832973837852478, -0.7769890427589417, -0.221268892288208, 0.4535566568374634, 0.9342345595359802, -1.5866621732711792, -0.36928990483283997, -0.6231312155723572, 0.4346897304058075, 0.9329907894134521, 0.8249600529670715, 0.46641647815704346, 0.5968179702758789, -0.7361539006233215, 0.18701769411563873, 0.37198200821876526, 1.2864489555358887, -0.33913713693618774, 0.07726123183965683, 0.1825382560491562, 0.22784776985645294, 0.5592800974845886, -0.8875962495803833, 0.0959348976612091, -0.2692532241344452, -0.7233638167381287, -0.3361749053001404, 0.30017325282096863, -0.936285138130188, 1.6209927797317505, -0.10368270426988602, -0.7508600354194641, 0.21430231630802155, 0.5070713758468628, -1.275933027267456, -0.05150327831506729, 0.6343560814857483, -1.1892826557159424, 0.017337270081043243, 0.588373601436615, 0.5391653180122375, 0.8292884826660156, 0.12418576329946518, 0.6393589973449707, 0.3623330593109131, 0.6465945839881897, 0.2597368061542511, 0.3241596221923828, 0.6246669888496399, 1.666945457458496, 0.6780076026916504, 1.9328261613845825, 0.07000409811735153, -0.7531312108039856, 0.9789590835571289, -0.7639408111572266, 0.2672426104545593, 0.9087960124015808, 0.05169522389769554, 1.1215815544128418, -1.5042107105255127, -0.0008627604693174362, 1.3731046915054321, -0.31175652146339417, 0.7165953516960144, 0.18633605539798737, 0.6499279141426086, -1.0877360105514526, 0.20015142858028412, 0.18827150762081146, -0.5839575529098511, 0.6832827925682068, 0.14050991833209991, 0.4981948733329773, 0.9936404228210449, -0.577111542224884, 0.12377613037824631, -0.9260258078575134, -0.5770307183265686, 0.240115687251091, 0.25688403844833374, 0.28017479181289673, 0.7298615574836731, 1.1123813390731812, 0.396742582321167, -0.27703821659088135, -1.8135117292404175, 0.5091424584388733, -1.0042543411254883, 0.33708181977272034, -0.2470424473285675, -0.0987364798784256, -0.822059690952301, -0.5205880999565125, 0.3771466910839081, -0.4773784577846527, -0.2752707302570343, -0.6590990424156189, -1.1812307834625244, -0.9004088044166565, 0.5121710896492004, 0.14690075814723969, 0.5013401508331299, 0.1880963295698166, 0.9765719771385193, 0.04899440333247185, 0.011384505778551102, -0.4737541973590851, -0.16116274893283844, 0.2896290719509125, 0.3346864879131317, -0.5918622612953186, -0.1316738724708557, -0.9460222125053406, 0.28148773312568665, 0.4360692501068115, 0.15617524087429047, 0.40450236201286316, 0.9119920134544373, 1.034929871559143, -0.4601973593235016, -0.43174099922180176, 0.3126239776611328, -0.7977978587150574, 0.9197767376899719, 0.5037820339202881, -0.2829494774341583, 0.12934137880802155, 0.022909121587872505, -1.7471126317977905, 1.1562297344207764, 0.3490886688232422, -0.002271127887070179, 0.7026017904281616, 0.9750661849975586, 0.47959697246551514, 0.6567673683166504, -0.6203945875167847, 0.011384275741875172, 0.6868472695350647, -0.29120969772338867, -0.38468098640441895, -0.09841465204954147, 0.44022682309150696, -0.29020956158638, -0.9657790660858154, 0.44387733936309814, -0.31508952379226685, -0.3583792448043823, -0.27301904559135437, 0.5819235444068909, -0.07732298970222473, 0.9836409687995911, 0.09183960407972336, -0.3004470467567444, 0.4880407750606537, -1.3793648481369019, -0.14358510076999664, 0.8627174496650696, 0.4038350582122803, 0.9248150587081909, -0.16185994446277618, 1.5548855066299438, -1.1468093395233154, -0.3978053629398346, 0.006104964762926102, -0.6774094700813293, 0.4880466163158417, 0.02674882672727108, 0.36877843737602234, 0.3334504961967468, -0.48450884222984314, -0.20406575500965118, -0.7626670002937317, -0.1489718109369278, 0.9586077928543091, -0.9618746638298035, -0.64095139503479, -0.6507078409194946, -0.8250868916511536, 0.2034495770931244, 0.31421002745628357, 0.5726873278617859, -0.44502338767051697, -1.266113042831421, -0.4265960454940796, -0.32387441396713257, 0.7150523662567139, -0.3122422397136688, 0.2800816595554352, -0.5968430638313293, -1.1060041189193726, 0.6780118942260742, -0.2604841887950897, -2.1234352588653564, 0.2497079223394394, -0.24075758457183838, 0.2546037435531616, -0.23267576098442078, -0.14626742899417877, 0.5174549221992493, 1.2283909320831299, -1.8284311294555664, -1.128906488418579, -1.3914110660552979, -0.8112620711326599, 0.24721528589725494, 0.9283527135848999, -0.9991292357444763, 1.4017298221588135, -1.0681908130645752, -0.20159688591957092, -0.6876874566078186, -0.1520927995443344, -0.8616453409194946, -0.09059832245111465, 0.30441638827323914, -0.19276946783065796, -0.010408395901322365, 1.4395233392715454, -0.06295940279960632, 0.8699932098388672, 0.12507887184619904, 1.546844720840454, -0.8343880772590637, -1.2622953653335571, 0.5015797019004822, 0.7278558015823364, -0.6281693577766418, -0.17175623774528503, 0.22938968241214752, -1.0084724426269531, -1.023316740989685, -0.06307603418827057, 0.4123997986316681, -0.7018508911132812, 0.15136292576789856, 0.6383805871009827, -0.3432161211967468, -0.9243425726890564, 0.4131108224391937, 0.7158148288726807, -0.7516469359397888, -0.023114094510674477, -0.8131119012832642, 0.6479038596153259, -0.8640106916427612, 0.44665566086769104, 0.3479451537132263, -0.566152811050415, -0.05593126267194748, -0.009112096391618252, 0.271140992641449, 0.5533090829849243, -0.6060150861740112, 1.1193474531173706, 0.40841931104660034, -0.3499666452407837, -0.06337545067071915, -0.04084296151995659, -0.13108868896961212, 0.26407766342163086, -0.06405894458293915, -0.34636837244033813, -0.48478105664253235, 0.6865532994270325, 0.6381569504737854, -0.016119226813316345, 0.6481199264526367, 0.8426513671875, -0.002992479130625725, 0.2413203865289688, 0.6978328824043274, -0.3712485134601593, -0.5035758018493652, 1.3676890134811401, 0.47791123390197754, -0.4271862208843231, -0.06352631002664566, -0.3725103437900543, 0.7334587574005127, 0.73249751329422, 0.9450436234474182, 0.5410686731338501, -0.34179598093032837, 0.5990748405456543, 0.3426298499107361, -0.46197763085365295, -0.4869426190853119, -0.33490869402885437, -1.6114329099655151, -0.08575286716222763, -0.4276781678199768, -0.10917369276285172, 0.6577346324920654, -0.9935255646705627, -1.007323980331421, -0.2607851028442383, -0.5252092480659485, -0.5557044744491577, -0.35468122363090515, -0.2405754178762436, -0.04985455423593521, 0.16488046944141388, 0.6536532044410706, -0.3086162209510803, 1.4409513473510742, -0.24576440453529358, -0.1351778656244278, -0.6594486236572266, -0.6635568737983704, -0.15897443890571594, 0.29801949858665466, -0.07878002524375916, -0.4577690064907074, 0.9801174998283386, -1.019837498664856, -0.12532438337802887, 0.08496847003698349, 0.363253653049469, 0.020838463678956032, -0.2807781398296356, -0.4421641230583191, 0.5762681365013123, 0.32660770416259766, 0.8814347386360168, -1.2560899257659912, -0.976944625377655, -1.3274638652801514, 0.968774139881134, 0.12289068102836609, 0.7761774659156799, -0.21824242174625397, 0.6548009514808655, 0.11197713762521744, -0.7541072368621826, -0.941300094127655, -0.3451522886753082, 1.4802417755126953, 0.26106590032577515, -0.21929307281970978, -0.6289983987808228, 0.39484909176826477, -0.04827195405960083, -1.3520079851150513, -0.8090924024581909, 0.6429456472396851, -0.41288650035858154, -0.302012175321579, -0.3514227867126465, -0.8553820848464966, -1.175708532333374, 0.21195687353610992, -0.11367881298065186, 0.1777767837047577, 0.7968912720680237, -0.48466020822525024, -0.3639054000377655, 0.09117212146520615, 0.9482290148735046, 0.25647789239883423, 0.4628205895423889, 1.4875609874725342, 1.1467630863189697, -0.07419446110725403, -0.7004702091217041, -0.31097444891929626, 0.10316009819507599, -1.6439014673233032, 0.16378580033779144, -0.6787332892417908, 0.04039771482348442, -0.1911274492740631], [0.7804491519927979, 1.4993640184402466, -2.7815399169921875, 0.5130330920219421, 0.7252818942070007, 0.39973583817481995, 0.4997656047344208, 0.4846724271774292, 0.47061747312545776, -0.4024360179901123, -0.6904162168502808, -0.06768489629030228, -0.05669927969574928, 0.38387933373451233, 0.8165030479431152, 0.24236980080604553, 0.533458948135376, 0.025916853919625282, 0.2041100412607193, 1.3516114950180054, 0.010491281747817993, -1.2440388202667236, -1.2891980409622192, 0.3636842668056488, -0.3485439419746399, 0.7580931186676025, -1.5906065702438354, 0.3147180378437042, -0.8836227655410767, -0.44623813033103943, 0.7779812812805176, -0.36254575848579407, 0.36467546224594116, 0.13783687353134155, -1.9148014783859253, 0.1925506889820099, 0.43559587001800537, 1.038373351097107, 0.0019528456032276154, 0.4248400032520294, 1.656360149383545, -0.2363114058971405, 0.25802144408226013, -1.057508945465088, 0.6536272764205933, -0.3730382025241852, 0.4526797831058502, -1.3276103734970093, 1.792885661125183, 0.036419883370399475, 0.5328765511512756, -0.2961787283420563, 0.04207136854529381, 0.2971455454826355, 1.7664586305618286, -1.8814677000045776, 0.9386719465255737, 0.18149268627166748, -0.33872100710868835, 0.6987165808677673, 1.5012199878692627, -0.6083580255508423, 1.5159029960632324, 0.8507929444313049, 0.4216301441192627, -1.006400465965271, 0.43831107020378113, 0.5630134344100952, -0.01921987719833851, 0.10149841010570526, 0.5688080191612244, 0.5860490798950195, -1.398497462272644, 0.22966018319129944, -0.8773508071899414, -0.07987136393785477, -0.4479838013648987, 0.557059109210968, 0.25334465503692627, 0.46608635783195496, -0.4899408519268036, 0.6374557614326477, 0.5677117109298706, 0.24523860216140747, -0.5579923391342163, -0.1680741310119629, 0.35545894503593445, -0.5208131074905396, -0.2269878387451172, 1.2114710807800293, 0.7529359459877014, 0.24774514138698578, 0.8332238793373108, 0.7148743867874146, -0.323678582906723, -0.4297720193862915, -0.24069766700267792, -0.8574717044830322, -0.48254990577697754, -0.9390754103660583, -0.36786195635795593, -0.39955568313598633, 1.114651083946228, 1.2183128595352173, 1.3875051736831665, 1.6756556034088135, -0.2626628279685974, -0.914425790309906, -0.3319936990737915, -0.21109150350093842, -0.035000432282686234, 0.23947301506996155, 0.04643239825963974, -1.6896878480911255, -0.6724419593811035, 1.277039647102356, 0.38890546560287476, 0.33270639181137085, -0.18011656403541565, 0.5083497762680054, -0.20567655563354492, -0.10296869277954102, -0.5962477326393127, 0.19489116966724396, 1.5893417596817017, -0.6911081671714783, -0.3821672797203064, 0.32877427339553833, -0.44593092799186707, 0.444685697555542, -0.007447018753737211, -0.07702363282442093, 0.1289222091436386, 1.1912457942962646, -0.039454661309719086, 0.8104674220085144, -0.22720971703529358, -0.00915578193962574, -0.0333695113658905, 0.7385101914405823, 0.6803107857704163, 0.05174577608704567, -0.8125094771385193, -0.5605826377868652, -0.5351144671440125, -0.6554864048957825, 0.5322849750518799, -0.11322342604398727, -0.2883448600769043, -0.24669934809207916, -2.2650721073150635, 0.08023752272129059, -0.43709447979927063, 1.1707801818847656, 0.48160234093666077, -0.49285316467285156, 1.042459487915039, 0.2460900843143463, 0.188133105635643, 0.5402438044548035, 0.5108143091201782, 0.03293817117810249, 0.05614693462848663, 0.6325292587280273, 1.0096160173416138, -0.7758703231811523, -0.0435083769261837, -0.17117178440093994, 0.08363760262727737, 1.4679145812988281, -0.21391215920448303, -0.7784185409545898, -0.5849467515945435, -0.21312366425991058, 0.15465109050273895, -1.3234295845031738, 0.6271774768829346, -0.06264287978410721, -0.7403429746627808, -1.2827597856521606, 0.603950023651123, 0.06311224400997162, 0.31539803743362427, -0.13823582231998444, 0.7530437111854553, -0.5244042277336121, -0.5255847573280334, -0.08639692515134811, -0.6036036014556885, -0.3279981017112732, -0.4354780912399292, -0.06822241097688675, -1.1772842407226562, -0.29857775568962097, -0.38373202085494995, -1.343374252319336, 0.8709056377410889, -0.03156406059861183, -0.5979125499725342, -0.553823709487915, 0.18349705636501312, -0.655674159526825, -1.2069175243377686, -0.6268454790115356, -0.10343532264232635, 0.8821053504943848, -0.6176518797874451, -0.004140467848628759, -0.8628509640693665, 0.3582715690135956, 1.010971188545227, -0.623275876045227, -1.2039412260055542, -0.4991358518600464, 0.328328013420105, -0.809273362159729, -0.04701698198914528, 0.3531024754047394, 0.37854743003845215, -0.825657069683075, 0.2810509502887726, 0.5573227405548096, 1.0140843391418457, -0.6736431121826172, 0.33045291900634766, -0.04320736229419708, -0.30759841203689575, -0.9068339467048645, -0.5015709400177002, 0.043692439794540405, -0.7401553988456726, -0.8902965784072876, 1.0088435411453247, 0.6680893301963806, -1.250104308128357, 0.9754880666732788, -0.13178038597106934, 0.5119459629058838, 0.3648001551628113, 0.8478385210037231, 0.587205171585083, 0.3793754279613495, -0.6083924770355225, -0.18849340081214905, -1.0668044090270996, -0.4445967674255371, -0.2117641419172287, -0.3502297103404999, -0.2341943234205246, 1.349606990814209, 0.6805949211120605, 0.004972465336322784, 0.5968114733695984, -0.09733965992927551, 0.5182725787162781, -0.9899145364761353, -0.19479697942733765, 0.11305508017539978, -0.7528541684150696, 1.9548053741455078, 0.814575731754303, -1.107729196548462, -0.2678685784339905, -0.5665587186813354, 0.18707175552845, -0.14524737000465393, -0.48186033964157104, -1.5084161758422852, 0.7960341572761536, -0.20512118935585022, 0.3854847252368927, -0.007152050733566284, -0.0972248986363411, 1.4172178506851196, 0.41058048605918884, -0.34971269965171814, -0.028246238827705383, 0.6078625321388245, -0.5608712434768677, 0.6037631034851074, -0.7295339703559875, -0.7051951289176941, -1.29706871509552, 0.5326188206672668, 0.5273948907852173, 0.12113888561725616, 0.5668591856956482, 1.9235609769821167, 1.3737585544586182, -0.34852996468544006, 0.031802620738744736, 0.606367826461792, 0.14885829389095306, -0.18155649304389954, 1.0674242973327637, 0.8618462085723877, 0.9614681005477905, -1.087833046913147, -0.4533684551715851, -0.6091161370277405, 0.006011802703142166, 0.9574625492095947, 0.9409908652305603, 0.9670408964157104, -1.1557365655899048, 0.05741763487458229, -0.4661814272403717, 0.20510900020599365, -0.8690831065177917, -0.5088517069816589, -0.4304765462875366, -1.1396490335464478, -0.009150569327175617, -0.7572554349899292, -0.42732295393943787, 0.39071452617645264, 0.08158764988183975, 0.6728207468986511, 0.17308025062084198, -0.5023865699768066, -1.066379427909851, -1.3199251890182495, -0.2619872987270355, -0.9052867889404297, 0.768695592880249, 0.8468752503395081, -2.0857644081115723, -0.06223507970571518, 0.6453489661216736, -0.09102712571620941, -0.3049308657646179, 0.06642406433820724, 0.3726597726345062, -1.2354741096496582, -0.26635342836380005, -0.2615599036216736, 1.1295665502548218, 0.2835887372493744, -0.5266486406326294, -0.5068734884262085, 1.195709228515625, 0.1853492558002472, 0.26637277007102966, -0.21088248491287231, 0.06818632036447525, -0.35727763175964355, -0.46427151560783386, -0.28156062960624695, 0.8741257786750793, 0.27894824743270874, -0.7536954283714294, -0.804539144039154, -0.5402963757514954, -0.35956817865371704, -0.8621656894683838, 0.2792779207229614, -0.001162022352218628, 0.5026108622550964, -0.19192223250865936, 0.42739337682724, 0.9197794795036316, -0.508930504322052, 0.4802476167678833, -0.9925069212913513, 1.0184252262115479, 0.9124727249145508, 1.3553861379623413, 0.03976451978087425, 0.5002774000167847, 0.44018274545669556, -1.1812055110931396, -0.7788297533988953, -0.11117102205753326, 0.6268674731254578, 0.09547226130962372, 0.1691543161869049, 0.03748144954442978, -0.9250985980033875, 0.13147245347499847, 0.0934443473815918, 0.366800457239151, 0.05433548241853714, -0.47007259726524353, 0.5125342607498169, 1.4893018007278442, -0.3082486689090729, -0.6822900772094727, -0.7516720294952393, 0.21496737003326416, 0.94727623462677, -0.4702290892601013, -0.27970951795578003, 0.15457291901111603, -0.08709997683763504, 0.6689409017562866, -0.7540464997291565, -0.8705524206161499, -0.000906599685549736, 0.7290188670158386, 0.732422947883606, -1.4514819383621216, 0.025725385174155235, -0.9805770516395569, 0.07467395067214966, 0.25243622064590454, 0.7329301238059998, 0.5590083599090576, 0.8822834491729736, -0.37758564949035645, -0.12542849779129028, -0.17397253215312958, 1.520941972732544, 0.10589636117219925, -0.06488816440105438, -0.03213489055633545, 1.200114369392395, 0.21548132598400116, -1.2459492683410645, 0.5548421740531921, 0.056170813739299774, -0.9495860934257507, 0.01912437379360199, 0.8383929133415222, -0.27084922790527344, 1.1642383337020874, -0.31825539469718933, -0.36481571197509766, 0.4355544149875641, -0.10131937265396118, -0.46404314041137695, 0.2859092354774475, 0.11816129833459854, -0.815213680267334, 0.5112070441246033, 0.26501503586769104, 0.8192397356033325, 0.30857375264167786, 0.22209203243255615, 0.5188025832176208, 0.4924016296863556, 0.8292043805122375, -0.3280581831932068, 0.6660330295562744, 0.36933720111846924, 1.2165669202804565, 0.1105593740940094, 1.0426987409591675, 0.5723368525505066, -0.11215074360370636, 0.9384033679962158, -1.0397166013717651, 0.4297703802585602, 0.8922231793403625, 0.15523625910282135, 0.8835616111755371, -1.7794898748397827, -0.4167483150959015, 0.9472296237945557, -0.07107453048229218, 0.5891363024711609, 0.6444642543792725, 0.4419748783111572, -0.9115185737609863, 0.6548724174499512, 0.1362062394618988, -0.1485917568206787, 0.42586636543273926, 0.5075146555900574, 1.0279552936553955, 1.0193182229995728, -0.2872450053691864, 0.5326528549194336, -0.595726490020752, -0.8792864680290222, 0.2886865735054016, -0.3631349802017212, 0.5708488821983337, 0.0193688552826643, 0.6150321364402771, 0.7060182094573975, -0.8312461376190186, -0.45952218770980835, 0.580380916595459, -1.7653669118881226, 0.3611844778060913, -0.1689678281545639, -0.6929824948310852, -0.3176656663417816, -0.12761762738227844, -0.15343782305717468, -0.5244365930557251, -0.4309462308883667, -0.7303122282028198, -0.622676432132721, -0.9555485844612122, 0.2389204055070877, 0.1048460528254509, 0.5521206259727478, 0.220870703458786, 0.039607126265764236, 0.23880499601364136, -0.09732262790203094, -0.5228343605995178, 0.15518607199192047, 0.5383622646331787, 0.5999730825424194, -0.6701012253761292, -0.7070885300636292, -1.518597960472107, 0.5356167554855347, 0.7329766154289246, -0.14822690188884735, -0.6016579866409302, 1.3647843599319458, 1.038037657737732, -0.6753061413764954, -0.5471317172050476, 0.6953282356262207, -0.6764400601387024, 0.5664222836494446, 0.3352983593940735, -0.779077410697937, 0.3316355049610138, -0.3957173228263855, -1.2527012825012207, 0.9630682468414307, -0.17072360217571259, -0.6496607065200806, 0.7496086359024048, 0.5785216093063354, 0.6464585065841675, 1.0231959819793701, -0.1939232349395752, -0.17774033546447754, 0.33634868264198303, 0.1435433179140091, -0.5962116122245789, 0.0325302928686142, 0.8635229468345642, 0.10883169621229172, -1.0795572996139526, -0.0959365963935852, -0.43376192450523376, 0.421773761510849, -0.1170801967382431, 0.7087790966033936, -0.33607229590415955, 0.5209730863571167, -0.507453203201294, 0.2873281240463257, 0.5748235583305359, -1.0720993280410767, -0.08814030885696411, 0.23683075606822968, 1.3892481327056885, 0.3431684970855713, 0.29462119936943054, 1.260273814201355, -1.0679845809936523, -0.6126847267150879, -0.24777871370315552, -0.16882559657096863, 0.6611506342887878, -0.002790282480418682, 0.6141736507415771, 0.23515936732292175, -0.20232228934764862, -0.248140349984169, -0.905026376247406, -0.1512448638677597, 0.5633848905563354, 0.01433729287236929, -0.48107820749282837, -0.18757936358451843, -0.18503935635089874, -0.39696311950683594, 0.2628062069416046, 0.192494198679924, -0.3066469132900238, -1.7837145328521729, -0.9900549054145813, -1.0944401025772095, 0.9151203632354736, 0.4082144796848297, 0.28608351945877075, -0.3071956932544708, -1.147316575050354, 0.4447643458843231, -0.5285046100616455, -1.5386883020401, -0.6934115886688232, 0.04801340401172638, 0.3857298493385315, -0.4156370759010315, 0.2793952524662018, -0.42644864320755005, 0.8098893761634827, -1.4405872821807861, -1.0649030208587646, -1.055750846862793, -0.21930409967899323, 0.6960299015045166, 0.6167839169502258, -0.45158758759498596, 1.2102487087249756, -0.929208517074585, 0.20794133841991425, -1.1510225534439087, -0.24762746691703796, -1.3462313413619995, 0.14869116246700287, 0.18828125298023224, 0.07052364200353622, 0.2582380473613739, 1.0336989164352417, 0.9283063411712646, 0.9425365328788757, -0.11113707721233368, 0.8686192631721497, -1.0193570852279663, -1.0987355709075928, 0.12115229666233063, 0.8989242911338806, -0.09456928074359894, -0.20021012425422668, 0.42246192693710327, -0.8728918433189392, -0.5862824320793152, 0.07444583624601364, 0.39939406514167786, -0.8085785508155823, 0.11444120854139328, 0.23890921473503113, 0.45803171396255493, -0.573208212852478, 0.3975617289543152, 0.5659536123275757, -0.6146852374076843, -0.12129075080156326, 0.08410341292619705, 0.8514594435691833, -0.841798722743988, 0.09388475120067596, 0.18153342604637146, -0.15102753043174744, -0.07952272146940231, 0.27058857679367065, -0.36322706937789917, 1.0545871257781982, -0.3450501561164856, 1.240423560142517, 1.4187248945236206, 0.20071303844451904, 0.38141629099845886, 0.3729313910007477, -0.43716707825660706, 0.31773608922958374, -0.6174939274787903, -0.2882860600948334, -0.5708266496658325, 0.8343252539634705, 0.3094291687011719, -0.3927103579044342, 0.5227051377296448, 0.5443354249000549, 0.11373220384120941, -0.2809904217720032, 0.6782062649726868, -0.39286279678344727, -0.0982419028878212, 0.7955510020256042, 0.924804151058197, -0.25910958647727966, -0.10612465441226959, -0.10060819983482361, 0.9960028529167175, -0.1382678747177124, 0.4196803867816925, 0.29694417119026184, 0.07572653144598007, 0.016827676445245743, 0.11798910051584244, -0.6657131314277649, -0.22481071949005127, -0.2855406701564789, -1.2036226987838745, -0.18142876029014587, 0.11641591042280197, -0.36043787002563477, 0.4072035551071167, -1.2312090396881104, -1.5032846927642822, -0.04572957754135132, -0.4530942142009735, 0.085739366710186, -0.12745818495750427, -0.32289209961891174, 0.24179907143115997, -0.46820637583732605, 0.25860121846199036, -0.5537393093109131, 1.0868839025497437, 0.4121726453304291, -0.3708655834197998, -0.9260488152503967, -0.872255802154541, 0.1641317754983902, -0.45647746324539185, -0.3373693525791168, 0.22630926966667175, 0.7600409388542175, -0.37713131308555603, -0.14398019015789032, -0.37959015369415283, 0.7655214071273804, 0.1404748558998108, 0.570789098739624, -0.886520266532898, -0.3540573716163635, 0.6977726221084595, 0.9621367454528809, -0.8783248662948608, -0.6976401209831238, -1.0697181224822998, 0.5109516978263855, -0.3639214336872101, 0.4589037001132965, -1.1188875436782837, 0.5289471745491028, 0.19821956753730774, -0.1958818882703781, 0.13807997107505798, -0.30610671639442444, 0.3634404242038727, -0.16677139699459076, 0.18349330127239227, -0.21310998499393463, 0.18018688261508942, -0.33296340703964233, -0.8484550714492798, -0.5215984582901001, -0.5744267702102661, 0.16174975037574768, 0.7343899011611938, -0.9873168468475342, -0.5447923541069031, -0.9533849358558655, 0.16428333520889282, 0.023301763460040092, 0.03031494840979576, 0.6202591061592102, -0.49297189712524414, -1.3047549724578857, 0.19808296859264374, 0.21019943058490753, 0.7192889451980591, 0.42929837107658386, 1.09677255153656, 1.274924874305725, 0.076046422123909, -0.4581338167190552, -0.48435086011886597, 0.30787336826324463, -1.4747183322906494, -0.31081900000572205, -1.4291796684265137, 0.19420009851455688, -0.5364486575126648], [0.5563545823097229, 1.0185250043869019, -2.6045238971710205, -0.3241741955280304, -0.043367013335227966, 0.10125239193439484, 2.2154877185821533, 0.3710455000400543, 0.3052982687950134, -0.8846278190612793, -0.9314035177230835, 0.06835587322711945, -0.3179006278514862, 0.25348129868507385, 0.18094024062156677, 0.4891911447048187, 0.848115086555481, 0.7572466731071472, 0.123323954641819, 0.7756714224815369, 0.4108387529850006, -0.5489293932914734, -0.0010576173663139343, -0.011391650885343552, 0.19309741258621216, 1.0505800247192383, -0.7041048407554626, 0.16338741779327393, -1.5243948698043823, -0.4360663592815399, 0.9509986042976379, -0.7670623064041138, 0.26023516058921814, 0.03092007152736187, -1.5068366527557373, -0.13519325852394104, 1.2202224731445312, 0.3984842002391815, 0.1617850512266159, 0.5441387295722961, 2.497987747192383, -0.25642770528793335, -0.33480048179626465, -1.315342664718628, -0.017890799790620804, -0.47567498683929443, 0.18672612309455872, -0.35307690501213074, 0.265279620885849, -0.7954450249671936, 1.0331557989120483, -0.22454187273979187, 0.2888244390487671, 1.1128931045532227, 0.9337112903594971, -1.5105546712875366, 0.20318081974983215, -0.07052943855524063, -0.4086686670780182, 0.26866036653518677, 1.6339346170425415, -0.6757072806358337, 0.28787946701049805, 1.4207850694656372, 0.6617875099182129, -1.0563061237335205, 0.8269310593605042, 0.05318661779165268, -0.6960713267326355, 0.20416070520877838, 1.042124629020691, 0.018974818289279938, -1.2958896160125732, 0.3329540193080902, -0.7411412596702576, 0.4107553958892822, -0.7490251660346985, 0.8684492707252502, 0.12189541757106781, 0.9217033386230469, -0.712002158164978, 0.641108512878418, 0.8775807023048401, -0.10327175259590149, -0.12029051035642624, -0.1056600883603096, 0.1839413195848465, -0.44395872950553894, -0.43596842885017395, 1.978299617767334, -0.078424833714962, 0.32530519366264343, 0.9972036480903625, -0.28012511134147644, -0.2444448173046112, -0.6491377353668213, 0.15992730855941772, -0.8104454278945923, -0.5211376547813416, -0.38845589756965637, -0.6493260860443115, -0.827289342880249, 0.9251653552055359, 0.7695363163948059, 0.9147989749908447, 1.1210277080535889, -0.5934008359909058, -0.9362409114837646, -0.8530099391937256, -0.19610154628753662, 0.024992618709802628, 0.9421128034591675, -0.1129232868552208, -1.1225733757019043, 0.3057462275028229, 0.28267496824264526, 0.9335222244262695, 0.060446590185165405, 0.29876869916915894, 0.33322426676750183, -0.398672878742218, -0.4808723032474518, -1.2498760223388672, 0.24989065527915955, 1.0494340658187866, 0.3565986752510071, -0.03753242269158363, 0.5803087949752808, -0.04119957238435745, 0.5937663912773132, 0.14185072481632233, 0.635593056678772, 0.3263462781906128, 1.5546661615371704, -0.5237302184104919, 0.03635891154408455, -1.604655385017395, -0.8308142423629761, 0.3588023781776428, 0.5805760025978088, 1.1395381689071655, -1.173951268196106, -0.48156359791755676, -0.5005701780319214, -0.5385611653327942, -0.07772812992334366, 0.4635877013206482, -0.671658456325531, -0.275393009185791, 0.2717362642288208, -2.3591816425323486, 0.2619616389274597, -0.12030747532844543, 0.7060235738754272, 0.7597419023513794, 0.43726107478141785, 0.3025340139865875, 0.4610312879085541, -0.2423524558544159, 0.3902110159397125, 0.36521145701408386, 0.3642372786998749, -0.3576621115207672, 1.266998052597046, 0.9615639448165894, -0.7280212044715881, -0.26194727420806885, 0.22410833835601807, 0.022732026875019073, 0.6755129098892212, -0.203341543674469, -0.8743111491203308, -0.8136072754859924, 0.05328156799077988, 0.28305718302726746, -0.2572157382965088, 0.7939350008964539, -0.012451587244868279, -1.0678157806396484, -1.3775217533111572, 0.8870140910148621, 0.14388474822044373, 0.5887951254844666, 0.010805631056427956, 0.6577547788619995, -0.669723391532898, -0.38739556074142456, 0.08652110397815704, -0.5859832167625427, -0.366316556930542, -1.1927266120910645, -0.2077862024307251, -1.4165217876434326, 0.251309871673584, -1.2723314762115479, -0.9670588970184326, 0.9788467288017273, -0.23416462540626526, -0.5671489238739014, -0.6299899220466614, 0.07847394794225693, -0.49363943934440613, -1.390488862991333, -0.4364112317562103, -0.9488023519515991, 0.6213385462760925, -1.375640869140625, 0.08684096485376358, -0.7681609392166138, 0.4838603138923645, 1.0636684894561768, 0.07096511125564575, -1.1908622980117798, -0.16804911196231842, -0.035764388740062714, -0.8943926095962524, -0.645222008228302, 0.28253209590911865, 0.4011485278606415, -0.41426509618759155, -0.10561283677816391, 0.4137900173664093, 1.1692607402801514, -0.5088199973106384, 1.0615750551223755, -0.31210315227508545, -0.5284250378608704, -0.13962408900260925, -1.2083625793457031, -0.08473321795463562, -0.6467331051826477, -0.5657016634941101, 0.9822413921356201, 0.8875769972801208, -1.6098181009292603, 0.5603744387626648, -0.3801748752593994, 0.5469712018966675, -0.3433157801628113, 0.09721142053604126, 0.813599705696106, 0.70890212059021, -0.39971405267715454, -0.47657468914985657, -0.4766347408294678, -0.01979251205921173, 0.36221998929977417, 0.3180433213710785, -0.1405610293149948, 1.1890652179718018, 0.9056633114814758, -0.3521883189678192, 0.4668363332748413, 0.8873671293258667, -0.03309698775410652, -1.7328671216964722, 0.10193753987550735, -0.3645413815975189, -0.598522961139679, 1.390297770500183, 0.8055402636528015, -0.803006112575531, -0.2670231759548187, -0.2821471393108368, 0.36672839522361755, -0.613891065120697, 0.3510211706161499, -0.14075852930545807, 0.44146081805229187, 0.08314564824104309, 0.2985460162162781, -0.5045817494392395, 0.8149150013923645, 1.2246038913726807, -0.008258271962404251, -0.4293908178806305, 0.037855733186006546, 0.7308312058448792, 0.11597523838281631, 0.6633745431900024, 0.27240264415740967, -1.6025186777114868, -0.7048773765563965, 0.5465058088302612, 0.12520599365234375, -0.27760401368141174, -0.18425917625427246, 1.2351958751678467, 1.100298285484314, 0.0020854584872722626, 0.49356481432914734, 0.3765234351158142, -0.1506119817495346, 0.3181346654891968, 0.3784539997577667, 0.10974092781543732, 0.37258321046829224, -0.8945459127426147, -1.1565032005310059, -0.7996612787246704, -0.07543062418699265, 0.770980179309845, 0.7356934547424316, 1.2328579425811768, -0.5196154117584229, -0.10036526620388031, -0.4918661117553711, -0.4264395534992218, -0.7765586376190186, -0.24066662788391113, -0.5043031573295593, -1.1449191570281982, 0.016841575503349304, -0.7907488346099854, 0.09329437464475632, 0.6548025012016296, -0.2859545648097992, 1.0503915548324585, 0.27393510937690735, -0.1423344761133194, -0.8093821406364441, -0.4902275502681732, 0.07643983513116837, -0.6744973659515381, 0.5625611543655396, 1.007565975189209, -1.742753028869629, -0.04370748624205589, -0.03409069776535034, 1.3340351581573486, 0.26167869567871094, -0.6643651127815247, 0.25078463554382324, -2.0252881050109863, -0.3480672240257263, 0.1331712156534195, 1.0364857912063599, 0.017068997025489807, -0.6013683676719666, -0.5108920335769653, 0.8323180675506592, 0.984658420085907, -0.2727217376232147, -0.019138697534799576, 0.8623058795928955, -1.0865519046783447, -0.7663213610649109, -0.021887771785259247, -0.07492737472057343, 0.9388487935066223, -0.4850691556930542, -0.7299046516418457, -0.28952550888061523, -0.0789085179567337, -0.4009527564048767, 0.27121037244796753, -0.05381610617041588, 0.4190748333930969, 0.6929165124893188, 0.49524495005607605, 0.8247095942497253, -0.5090559720993042, 0.2947688698768616, -1.568151593208313, 0.004643437452614307, 1.2003246545791626, 1.4541122913360596, 0.26794639229774475, 0.5110939145088196, 0.23553448915481567, -0.5835003852844238, -0.08891480416059494, -0.01606108248233795, 1.004708170890808, -0.6840687394142151, -0.23147542774677277, -0.3114134669303894, -1.0178269147872925, 0.06825242191553116, 0.5449504852294922, 0.45956867933273315, 0.2801889479160309, -0.3281990885734558, 0.21720896661281586, 1.2326853275299072, 0.46832677721977234, -0.23772622644901276, -0.21822261810302734, -0.26645249128341675, 0.9433785676956177, -0.330319881439209, -0.6101104617118835, -0.6540929079055786, 0.038991790264844894, 0.9176401495933533, -0.613520085811615, -0.689174234867096, 0.26140061020851135, 1.1192506551742554, 0.9411325454711914, -1.1314457654953003, 0.22234971821308136, -0.7892212867736816, 0.7478844523429871, 0.6812578439712524, 0.8465197682380676, 0.05128651112318039, 0.4417087137699127, -0.9340377449989319, -0.29393959045410156, -0.47245675325393677, 1.3326728343963623, -0.2532541751861572, -0.05592438578605652, 0.3109597861766815, -0.3935368061065674, 0.8587122559547424, -0.6942702531814575, -0.02970014326274395, 0.06804553419351578, -0.6921297311782837, 0.6228613257408142, -0.21409884095191956, -0.5206689238548279, 1.2824255228042603, -0.1409623622894287, -0.6798171997070312, 0.5363299250602722, 0.3926548659801483, -0.4044282138347626, -0.23794372379779816, 0.6073641777038574, -0.24303191900253296, -0.002093382179737091, 0.08368968963623047, 0.4435010552406311, 0.4255548417568207, 0.3271070122718811, 0.9989193677902222, -0.04837001860141754, 0.4540114998817444, -0.6445994973182678, 0.5384466052055359, 0.6936537027359009, 0.9478353261947632, 0.7240170836448669, 0.8334817290306091, -1.0304539203643799, -0.5132104158401489, 0.7581860423088074, 0.2032962441444397, 0.8968803286552429, 0.5248029828071594, -0.09741020947694778, 1.3379812240600586, -2.0427327156066895, -0.18178720772266388, 0.9065365195274353, 0.4001059830188751, 0.6346969604492188, -0.021389205008745193, 0.37508848309516907, -0.8315675854682922, -0.6710014343261719, -0.9177007675170898, -0.06638205796480179, 1.3159840106964111, 0.23031510412693024, -0.27589595317840576, 0.7857473492622375, -0.9898319840431213, -0.10552311688661575, -0.47160932421684265, -1.0561192035675049, 0.10453647375106812, -0.2852309048175812, 0.09311983734369278, 0.1253967583179474, 0.9100704789161682, 1.3952465057373047, -0.09841510653495789, -2.145071506500244, 0.24146826565265656, -0.8853518962860107, -0.23053480684757233, -0.46810224652290344, -0.2666145861148834, -1.3090450763702393, -0.39026376605033875, 0.5646873116493225, -0.2153858095407486, -0.5074644684791565, -0.63857102394104, -0.42668619751930237, -1.1177126169204712, 0.44342920184135437, 0.333878755569458, 0.5502068400382996, 0.3911621570587158, -0.35349926352500916, 0.07832692563533783, 0.3527337312698364, -0.20782549679279327, 0.28251612186431885, 0.562221109867096, 0.14185550808906555, -0.6730871200561523, -0.6699692606925964, -0.5919297933578491, 1.0195658206939697, 0.6752505302429199, -0.0011444874107837677, -0.2943837642669678, 1.3384584188461304, 1.328107237815857, -0.22096554934978485, -0.6796374320983887, 1.2608593702316284, -0.6161364316940308, 0.7550272941589355, 0.3214032053947449, -0.4675693213939667, 0.521391749382019, 0.320773720741272, -1.4110291004180908, 0.6601623892784119, -0.24765819311141968, -0.47923552989959717, 0.7895123362541199, 0.7701655030250549, 0.5769402384757996, 0.36510002613067627, -0.4003932774066925, -0.797541618347168, 0.3507000803947449, 0.03001321107149124, -0.8082752823829651, 0.5760601162910461, 1.0298134088516235, -0.08399787545204163, -0.5885397791862488, -0.3944242000579834, -0.1734834909439087, 0.4244632422924042, -0.4583781063556671, -0.020731627941131592, 0.5143916010856628, 0.3840141296386719, -0.009176375344395638, -0.3152711093425751, 0.15827316045761108, -0.5794579386711121, 0.18176697194576263, 0.13119275867938995, 0.8919728994369507, 0.6501040458679199, 0.6045586466789246, 1.1952471733093262, -0.4942854046821594, -0.19530175626277924, -0.3088292181491852, 0.15262708067893982, 0.8820196390151978, 0.5219814777374268, 0.3166910409927368, -0.7574130892753601, -0.9731852412223816, -0.5585334897041321, -0.7597745656967163, -0.22418345510959625, 1.1319788694381714, -0.5902698636054993, -0.11448681354522705, -0.3009019196033478, -0.8092359900474548, 0.6421672105789185, 0.15434256196022034, 0.36455437541007996, -1.1705577373504639, -1.1850780248641968, -1.1179438829421997, -0.13264267146587372, 0.9998357892036438, 0.21067437529563904, 0.5965942144393921, -0.032913126051425934, -1.5250056982040405, 0.4820484519004822, -0.03353337198495865, -1.6973371505737305, -0.36939331889152527, -0.2076939344406128, 0.8610602021217346, 0.1813448667526245, 0.202933669090271, 0.05671171844005585, 0.9370880722999573, -0.8039442896842957, -0.7775341272354126, -1.3518234491348267, -0.5961021184921265, 0.5159424543380737, 0.7877386212348938, -0.8066666722297668, 1.4501330852508545, 0.13077382743358612, -0.83302241563797, -0.9148632884025574, -0.560194730758667, -1.5015894174575806, 0.10435011237859726, 0.6156669855117798, 0.6915990114212036, 0.7621490359306335, 1.3865827322006226, 0.387158066034317, -0.03364628180861473, 0.7812071442604065, 0.7277918457984924, -1.3395483493804932, -1.3244208097457886, -0.5025590658187866, 0.7962002158164978, -0.7579816579818726, -0.5986682772636414, 0.06267919391393661, -0.8434484601020813, -0.9421079754829407, -0.007166162133216858, 0.9676414132118225, -0.8820327520370483, 1.0219799280166626, 0.6458173394203186, -0.3590697646141052, -0.5712999701499939, 0.2990260720252991, 0.48191118240356445, -0.6603910326957703, -0.3807474672794342, -0.3463584780693054, 0.04970730468630791, -0.5033266544342041, -0.1555631160736084, -0.2491394430398941, -0.13816951215267181, -0.11888595670461655, 0.696243941783905, 0.053238581866025925, 0.5892220735549927, -0.4059504270553589, 1.4308706521987915, 0.786226749420166, -0.2513035833835602, 0.2487344741821289, 0.763840913772583, 0.03725520893931389, -0.3949028253555298, -0.7392804026603699, -0.313912570476532, -0.1987423598766327, 0.4661896526813507, 0.14374597370624542, -0.1491059958934784, 0.128078892827034, 0.5720823407173157, 0.30747947096824646, 0.22209206223487854, 0.36841830611228943, -0.48905086517333984, -1.0333632230758667, 0.8446317911148071, 1.0722812414169312, 0.09912010282278061, -0.06631772220134735, 0.2071993052959442, 1.2458921670913696, -0.21708574891090393, 0.3269791007041931, 0.009933538734912872, -0.5265647172927856, 0.5172692537307739, 0.01169450581073761, -0.6673404574394226, 0.2226385623216629, 0.13370381295681, -1.7500983476638794, 0.35570254921913147, -0.5594340562820435, -0.7480477094650269, 0.7123957872390747, -0.36431413888931274, -0.03520897775888443, -0.30337387323379517, -0.4919948875904083, 0.532795250415802, 0.050661034882068634, -0.05694691836833954, -0.38145241141319275, 0.02802664041519165, 0.7973033785820007, -0.21530187129974365, 1.3784434795379639, -0.37615835666656494, -0.16474373638629913, -1.1115391254425049, -0.564420223236084, -0.656006932258606, -0.0631248727440834, 0.011757750995457172, -0.3489477336406708, 0.3700697720050812, -0.2723381519317627, -0.16362610459327698, -0.12815438210964203, 0.0204862579703331, 0.2521478533744812, 0.07392235100269318, -0.5878338813781738, 0.0661739930510521, 0.08643393218517303, 0.36162206530570984, -0.8756633996963501, -0.6508335471153259, -0.661605715751648, 0.4086953401565552, 0.013430126011371613, 1.2988859415054321, -0.5039737820625305, 1.3068701028823853, 0.6011293530464172, 0.0661325603723526, -0.6294130086898804, -0.6699646711349487, 1.0820232629776, -0.025587698444724083, 0.100898377597332, -0.6380294561386108, 0.3512006402015686, -0.1885257065296173, -1.6753220558166504, -0.5602994561195374, 0.40168386697769165, -0.8120787143707275, 0.6304229497909546, -0.9856684803962708, -0.33216363191604614, -0.5931708216667175, -0.6422430276870728, -0.05189668759703636, 0.015431905165314674, 0.5614291429519653, -0.9631368517875671, -1.0831798315048218, -0.027820833027362823, 0.44951868057250977, 0.6193544268608093, 0.31339436769485474, 1.29594886302948, 1.8870925903320312, 0.024128898978233337, -0.5802397131919861, -0.3135914206504822, 0.4901807904243469, -1.2762223482131958, -0.31509050726890564, -0.5378425717353821, 0.6572827100753784, 0.12249402701854706], [0.7426621913909912, 1.8914809226989746, -2.5365099906921387, -0.38954275846481323, -0.11787720024585724, 0.37433257699012756, 1.6079853773117065, 0.39648133516311646, 0.7670449018478394, -0.4293704330921173, -1.2823631763458252, 0.03673223406076431, 0.5136008262634277, 0.5724231004714966, 0.5608686208724976, 0.37959128618240356, 0.6154017448425293, 0.2713485658168793, -0.1559363156557083, 1.2681336402893066, 0.023012980818748474, -1.4905474185943604, -0.7607347369194031, 0.09278922528028488, 0.06420206278562546, -0.2774762809276581, -1.6788541078567505, 0.17471730709075928, -0.9905088543891907, -0.7155365943908691, 0.4349295198917389, -0.3854585886001587, 0.22754894196987152, 0.3086501657962799, -1.5570588111877441, -0.03237235173583031, 1.4829943180084229, 0.758175790309906, 0.3829355239868164, 0.9075961112976074, 1.8310068845748901, 0.12193727493286133, 0.9817250370979309, -1.1747289896011353, 0.4375925362110138, -0.20008689165115356, 0.6148416996002197, -1.26522958278656, 0.736068606376648, -0.0666150227189064, 1.1446043252944946, 0.44478872418403625, 0.19527462124824524, 0.6861889958381653, 0.587510883808136, -1.3533051013946533, 0.5124088525772095, -0.41959482431411743, -0.03381630405783653, 0.4672900438308716, 1.0086238384246826, 0.027238158509135246, 1.0341668128967285, 1.2364115715026855, 0.4906088411808014, -0.6469731330871582, 0.5097150206565857, 0.5739098787307739, -0.3601464331150055, -0.286307156085968, 0.6233261823654175, 0.7168235182762146, -1.52881920337677, 0.6163424253463745, -0.9703008532524109, 0.9751020669937134, -0.08223257213830948, 0.8136479258537292, -0.22372008860111237, 1.1758424043655396, -0.5582947134971619, -0.03787217289209366, 0.33001378178596497, 0.041187990456819534, 0.13526245951652527, 0.010218899697065353, 0.6891103982925415, -0.6184582710266113, -0.2316364049911499, 0.5728007555007935, -0.20434118807315826, 0.11365552246570587, 0.3718391954898834, 0.6182823181152344, 0.2144547700881958, -0.4660107493400574, -0.11853300034999847, -0.3042846918106079, -0.6413857340812683, -0.48398464918136597, -0.7914590239524841, -1.127524495124817, 0.443203866481781, 0.21021977066993713, 1.119154453277588, 1.8448281288146973, 0.02905469574034214, -1.1565146446228027, -0.7549652457237244, 0.24850918352603912, -0.4052383005619049, -0.22324268519878387, -0.12788163125514984, -1.3535462617874146, -0.5624315142631531, 1.0473114252090454, 0.8437526226043701, -0.030934929847717285, 0.6343005895614624, 0.6088013648986816, -0.7658578157424927, -0.370257169008255, -0.4321896731853485, 0.48945340514183044, 0.6692729592323303, 0.04178086668252945, -0.34542033076286316, 0.03167467191815376, -0.3800046741962433, 0.4089430272579193, 0.5257879495620728, 0.4911114573478699, 0.4770835041999817, 1.4629703760147095, 0.06439314782619476, 0.8521488904953003, -0.3840138018131256, -0.5937854647636414, -0.02423902414739132, 0.6906692385673523, 0.5578139424324036, -0.6387855410575867, -0.7873251438140869, -0.9194861650466919, -0.42655301094055176, -0.5406437516212463, 0.8477149605751038, -0.08496120572090149, -0.7304673790931702, -0.18786554038524628, -2.0208053588867188, 0.29879671335220337, -0.2560006380081177, 0.4895535111427307, 0.7818662524223328, -0.5083448886871338, 0.6959275007247925, 0.25017282366752625, -0.08473722636699677, 0.4034765660762787, 0.5575020909309387, 0.18258343636989594, -0.15651695430278778, 1.0399235486984253, 0.4107806980609894, -0.7644132971763611, -0.003264008089900017, 0.7628815174102783, -0.2883969247341156, 0.6455343961715698, -0.2682296335697174, -0.021054314449429512, -1.0163627862930298, -0.036894820630550385, -0.0005550198256969452, -1.0578892230987549, 0.9154685139656067, -0.23311083018779755, -0.948264479637146, -1.068321704864502, 1.2101643085479736, -0.37446263432502747, 0.3751493990421295, 0.07793240249156952, 0.7728009223937988, -0.7617766261100769, -0.4701690077781677, 0.36637526750564575, -0.9463021159172058, -0.1559993177652359, -0.5527781844139099, 0.06587251275777817, -1.2615764141082764, 0.1738242655992508, -0.8466582894325256, -1.0135496854782104, 0.582835853099823, -0.1249990463256836, -1.5128544569015503, -0.5306233167648315, 0.07811810821294785, -0.6981246471405029, -1.9111645221710205, -0.11651403456926346, -0.4312175512313843, 1.217215895652771, -1.2110077142715454, 0.33495646715164185, -1.394059181213379, 0.5617453455924988, 0.7058061957359314, 0.19017598032951355, -0.8844441175460815, -0.2539620101451874, 0.01994590274989605, -1.1077775955200195, -0.11519873887300491, 0.10318316519260406, 0.5311947464942932, -0.8085933923721313, 0.07131414115428925, 0.8013538122177124, 1.162915587425232, -0.40536874532699585, 0.3621627688407898, 0.11820965260267258, -0.4103940427303314, -0.6278524994850159, 0.0036230646073818207, 0.8443781733512878, -0.5302100777626038, -0.7362629175186157, 0.9708768129348755, 0.7248801589012146, -1.5091471672058105, 1.0020018815994263, 0.07613779604434967, 0.19181260466575623, 0.1215086430311203, 0.7653672695159912, 0.8237576484680176, 0.3181489109992981, -0.8467357754707336, -0.3956204354763031, -0.31818652153015137, 0.3115374743938446, 0.7945265173912048, -0.13480480015277863, 0.3322790563106537, 1.5770193338394165, 0.46298232674598694, 0.09252957999706268, 0.3858807682991028, -0.3145306706428528, -0.2154671847820282, -0.6710241436958313, -0.5001094341278076, -0.08996957540512085, -0.9276750683784485, 1.646165370941162, 0.7183024883270264, -0.9734383821487427, -0.6575503945350647, -0.26547470688819885, 0.4138905107975006, -0.3551926016807556, -0.006901897490024567, -0.6831076741218567, 0.6201426982879639, -0.10431300848722458, -0.2046469748020172, -0.41373610496520996, 0.08576004952192307, 1.4166194200515747, 0.07592888176441193, -0.5894164443016052, -0.24212148785591125, 0.3319970965385437, 0.02339758723974228, 0.9860955476760864, -0.23827791213989258, -1.297768235206604, -1.3488831520080566, -0.26155075430870056, 0.6694777011871338, 0.4683384895324707, 0.45528164505958557, 1.0473915338516235, 0.6167755126953125, -0.16704033315181732, -0.04727108031511307, 0.8099157810211182, 0.2667861878871918, 0.09772675484418869, 0.1548633575439453, 0.08059976994991302, 0.9413832426071167, -1.0217725038528442, -0.5750747919082642, 0.12443225085735321, 0.29221972823143005, 1.0825971364974976, 0.8324282765388489, 1.4104490280151367, -0.3975907266139984, 0.09504058957099915, -0.25103405117988586, -0.03955047205090523, -0.8689780235290527, -0.5796622633934021, -0.7527840733528137, -1.1223294734954834, -0.17929382622241974, -0.3218303322792053, -0.05309247970581055, 0.6684219837188721, 0.10370809584856033, 0.5550469756126404, 0.8393025994300842, -0.5206330418586731, -0.31842178106307983, -0.1181398257613182, -0.07138416171073914, -0.6433488130569458, 0.21419133245944977, 0.4440516233444214, -2.018145799636841, -0.391362726688385, 0.2335517406463623, 0.29341426491737366, 0.4472031593322754, 0.404941588640213, 0.602088987827301, -0.8365084528923035, -0.7105346322059631, -0.21539053320884705, 1.243100643157959, 0.035813990980386734, -0.7485056519508362, -0.6699923872947693, 0.6444745659828186, 0.8511691689491272, -0.29721251130104065, -0.30211350321769714, 0.18373823165893555, -0.5094537138938904, -0.08202656358480453, -0.42154017090797424, 0.39792248606681824, 0.2811180651187897, -1.0506929159164429, -0.9762841463088989, -0.030902110040187836, -0.2158132791519165, -0.4580744802951813, 0.6407275795936584, -0.1979432851076126, 1.1556750535964966, -0.12439213693141937, 0.8852155208587646, 0.8213974833488464, -0.8895537257194519, 0.15682712197303772, -1.4342315196990967, 0.9014881253242493, 0.8667742013931274, 1.6652439832687378, 0.4152231812477112, 0.5285411477088928, 0.2191353142261505, -0.9322642087936401, -0.07551314681768417, 0.16060060262680054, 1.1842542886734009, -0.34425103664398193, -0.10172867029905319, -0.09026192873716354, -1.0445821285247803, -0.06902729719877243, -0.35250863432884216, 0.20307119190692902, 0.6024765372276306, -0.8036118745803833, -0.025487368926405907, 1.3778307437896729, -0.04348563030362129, -1.0099248886108398, -0.9154548048973083, 0.21817219257354736, 0.8630653023719788, -0.47714370489120483, 0.16345587372779846, -0.20163112878799438, -0.1613961160182953, 0.8064382076263428, -0.8999547958374023, -0.3561753034591675, 0.7654275894165039, 0.585918128490448, -0.02635716274380684, -1.3217923641204834, 0.0016662066336721182, -1.1968865394592285, 0.297290176153183, 1.6379554271697998, 0.5157273411750793, 0.5278002023696899, 0.44984170794487, 0.10682138800621033, -0.5339928269386292, -0.683303952217102, 1.7794878482818604, -0.494067907333374, 0.04296426847577095, 0.22099412977695465, 0.11106119304895401, 1.2522690296173096, -0.35168835520744324, 0.060084469616413116, -0.03443748876452446, -0.5738322734832764, 0.17712996900081635, 0.6720869541168213, -0.5351558923721313, 2.2034189701080322, -0.24835553765296936, -0.5234975814819336, 0.8420584797859192, 0.20299199223518372, -0.6706128120422363, -0.18191102147102356, 0.057962529361248016, -0.87089604139328, -0.8706263899803162, 0.07102691382169724, 0.8855519890785217, -0.09633719176054001, 0.4494352340698242, 0.5459164977073669, 0.2094665765762329, 0.4564020037651062, 0.26634350419044495, 1.0305023193359375, 0.35444769263267517, 1.1604732275009155, 0.13996534049510956, 0.9109705686569214, -0.255899578332901, -0.2691424489021301, 0.8717437982559204, -0.8692522048950195, 0.37365251779556274, 0.42949387431144714, 0.6111812591552734, 1.1805076599121094, -1.8945732116699219, -0.7230681777000427, 0.8663995862007141, 0.1323339194059372, 0.7130119800567627, 0.7752912640571594, 0.45291826128959656, -1.0359857082366943, 0.33116084337234497, 0.3409108519554138, -0.5464593172073364, 0.5907314419746399, 0.23460762202739716, 0.19095739722251892, 0.6878775954246521, -0.25779086351394653, -0.0052263811230659485, -0.5387653112411499, -0.9583842754364014, 0.348987340927124, -1.08424973487854, 0.6461759209632874, 0.2639286518096924, 0.8482124209403992, 0.9527291655540466, -0.7035871148109436, -1.0900379419326782, 0.7185093760490417, -1.2451943159103394, 0.14131566882133484, -0.1132054328918457, -1.000840425491333, -1.1616970300674438, -0.5496392846107483, 0.11801449209451675, -0.3846985995769501, -0.688927948474884, -0.41894569993019104, -0.33897513151168823, -1.4587090015411377, 0.5638805031776428, 0.3876006007194519, 1.0385355949401855, 0.6314546465873718, 0.2678001821041107, 0.4121120870113373, 0.3318793475627899, -0.9420560002326965, 0.033829573541879654, 0.5871853232383728, -0.6413783431053162, -0.8089927434921265, -0.7477480173110962, -1.1056158542633057, 1.158577561378479, 0.7926860451698303, 0.140703484416008, 0.24851912260055542, 0.7403908371925354, 1.2625027894973755, -0.6499179005622864, -1.2504298686981201, 0.219476118683815, -0.7230747938156128, 0.3951532542705536, 0.9034378528594971, -0.6734879016876221, -0.4354836642742157, -0.01053912565112114, -1.6717432737350464, 1.2737655639648438, 0.0035646967589855194, -0.428943932056427, 1.1421434879302979, 0.6265786290168762, 0.8055053949356079, 1.021893858909607, -0.31872808933258057, -0.06361530721187592, 0.42124930024147034, 0.36129361391067505, -0.7443712949752808, -0.006346813403069973, 0.579483687877655, -0.2127065658569336, -0.22176001965999603, 0.22243037819862366, -0.16037385165691376, -0.021386900916695595, -0.11964632570743561, 0.6310104131698608, -0.24961189925670624, 0.7298905849456787, -0.8609134554862976, -0.055646926164627075, 0.36722439527511597, -0.9945700168609619, -0.09782018512487411, 0.10002044588327408, 0.95091712474823, 0.10153000801801682, -0.6143200397491455, 0.6192132830619812, -0.33360499143600464, -0.041817113757133484, -0.26515448093414307, -0.3142298758029938, 1.231799840927124, 0.18901565670967102, 0.2334790974855423, 0.8399859666824341, 0.16498993337154388, -0.13014709949493408, -0.564433217048645, 0.5371295809745789, 0.5466748476028442, -0.4391922056674957, -0.3238951861858368, 0.11599104106426239, -0.49164918065071106, -0.03796229138970375, 0.4110485315322876, -0.0969240665435791, -0.9416543245315552, -1.4286266565322876, -1.1592968702316284, -0.80198073387146, 0.43545523285865784, -0.10103879123926163, -0.13502922654151917, 0.04215552285313606, -1.3961645364761353, -0.28414642810821533, -0.10832996666431427, -1.7002443075180054, -0.5060667395591736, -0.4010755121707916, 0.5677940845489502, -0.11773791164159775, 0.2574481964111328, -0.43533140420913696, 0.5416271686553955, -1.2379546165466309, -0.46917814016342163, -1.4744679927825928, -0.7648698091506958, 1.0963711738586426, 0.6171716451644897, -0.624706506729126, 1.0288947820663452, -0.1266319751739502, -0.3026670515537262, -0.7982956767082214, 0.1704038828611374, -0.631291389465332, -0.13332629203796387, 0.06471370905637741, 0.03104495070874691, 0.36376798152923584, 1.4468649625778198, 0.7175036072731018, 1.1109675168991089, 0.5804752707481384, 0.917117178440094, -1.108731985092163, -1.2639719247817993, 0.24788494408130646, 1.0013469457626343, -0.6661067008972168, -0.12633116543293, 0.18509076535701752, -1.2444514036178589, -0.643892228603363, 0.5102853775024414, 0.44597306847572327, -0.8258137702941895, -0.30932316184043884, -0.6752395033836365, 0.4014073610305786, -0.830277681350708, -0.017739996314048767, 0.5771094560623169, -0.39015981554985046, -0.11481662839651108, 0.04076842591166496, -0.2806129455566406, -1.1488033533096313, -0.0020091403275728226, 0.058577731251716614, 0.3577885329723358, -0.2750532329082489, 0.288837194442749, -0.19514377415180206, 0.09266788512468338, -0.8664972186088562, 1.4037389755249023, 1.227960467338562, -0.24146123230457306, 0.07560897618532181, 0.024943772703409195, 0.02951984666287899, 0.31270071864128113, -0.6845120787620544, 0.07252005487680435, -0.839527428150177, 0.5666562914848328, 0.37649813294410706, 0.05559205636382103, -0.06779307872056961, 0.7255322337150574, 0.0016809217631816864, -0.15061886608600616, 0.5739717483520508, -0.3418876528739929, -0.5061389803886414, 1.2452515363693237, 1.4159787893295288, -0.4085818827152252, 0.31579598784446716, 0.5006366968154907, 0.7646175026893616, 0.08529200404882431, 0.4753638505935669, -0.07361603528261185, -0.6385765075683594, 0.705074667930603, 0.36969220638275146, -0.7812910079956055, -0.39165621995925903, -0.5628355741500854, -1.4056123495101929, -0.02361823432147503, -0.021407289430499077, -0.38296815752983093, 0.48915910720825195, -0.6571632623672485, -1.0166771411895752, -0.03123866394162178, -0.16429658234119415, 0.4094811677932739, -0.5518385171890259, -0.39713987708091736, -0.5090345740318298, 0.3881390690803528, 0.990748405456543, -0.3747776746749878, 1.0567737817764282, -0.255143940448761, -0.9625757932662964, -1.3702775239944458, -0.42257583141326904, 0.016459228470921516, 0.023390674963593483, -0.5222495794296265, 0.13330085575580597, 0.8376659154891968, -0.7756640911102295, 0.2856749892234802, 0.1025943011045456, -0.07072553783655167, -0.07063440978527069, 0.11742280423641205, -0.859031617641449, -0.32972630858421326, 0.7606738209724426, 0.5950739979743958, -0.3543713390827179, -0.6732438802719116, -0.7341152429580688, 0.39485713839530945, 0.08700287342071533, 0.3074365258216858, -0.6726101040840149, 0.6502888202667236, 0.7508611083030701, -0.1437128484249115, -0.21037878096103668, -0.24289485812187195, 0.8322339057922363, 0.19633951783180237, -0.15874312818050385, -1.0846853256225586, -0.5480676889419556, 0.09796393662691116, -1.1559289693832397, -0.38465848565101624, -0.34421440958976746, -0.11322121322154999, -0.024430308490991592, -0.34948596358299255, -0.8654866218566895, -0.8451817035675049, -0.3288635313510895, 0.009037647396326065, 0.531588613986969, 0.5399860739707947, -0.43862107396125793, -0.8573607802391052, 0.3153790831565857, 0.6082788705825806, 0.43047288060188293, 0.4719198942184448, 1.8499994277954102, 1.9895591735839844, 0.43453314900398254, -0.2905447781085968, -0.1613750010728836, 0.30873823165893555, -1.3748149871826172, -0.07931849360466003, -1.7173752784729004, 0.2637193202972412, -0.5756362080574036], [0.2986343502998352, 2.066756248474121, -2.3526291847229004, 0.7008398175239563, 0.10308200120925903, 0.6880887746810913, 0.4516335427761078, 0.1752861738204956, -0.05065976083278656, -0.2811453342437744, -1.461158275604248, 0.8556385040283203, 0.37419503927230835, 0.9773374199867249, 0.6376152038574219, 0.6365393400192261, 1.1158607006072998, -0.7711029052734375, -0.7601311206817627, 1.2211718559265137, 0.2333337664604187, -1.2712657451629639, -0.6647083163261414, 0.02876378782093525, 0.030947543680667877, -0.06407251954078674, -1.4497243165969849, -0.25052234530448914, -0.8673213720321655, -0.8565000295639038, 0.7799817323684692, 0.37547457218170166, 0.7595866322517395, -0.009636327624320984, -1.9376788139343262, -0.36191678047180176, 1.2495479583740234, 0.36650246381759644, -0.21237915754318237, 0.3466281294822693, 1.6727514266967773, -0.6515050530433655, -0.2638325095176697, -1.8844407796859741, 0.8840141296386719, -0.28400129079818726, 0.5677236318588257, -0.2578994631767273, 0.8676130175590515, -0.7979738712310791, 0.40640783309936523, 0.6410177946090698, -0.10611585527658463, 0.7494263052940369, 0.9766309261322021, -1.0097016096115112, 0.28486204147338867, -0.18467363715171814, 0.12179546058177948, 0.5793074369430542, 1.7679779529571533, -0.6643493175506592, 1.331434726715088, 0.8475445508956909, 0.41499829292297363, -0.49028053879737854, -0.08036468178033829, 0.8278717994689941, -0.745996356010437, -0.5546573400497437, 0.7355060577392578, 0.8414849638938904, -1.2165765762329102, 0.46365299820899963, -0.7293186783790588, -0.009114688262343407, 0.5064588785171509, 0.5328437089920044, -0.016923721879720688, 0.8104262351989746, -0.34739699959754944, 0.06444322317838669, 0.3947758674621582, 0.07081922143697739, -0.05160582810640335, 0.32799243927001953, 0.539874255657196, -0.6148797869682312, -0.5295628309249878, 0.8038623332977295, -0.11098150908946991, 0.17926497757434845, 0.8275671005249023, 0.05939452350139618, 0.34288787841796875, -0.5535891652107239, 0.020430676639080048, -1.1552189588546753, -0.48533201217651367, -0.6177855730056763, 0.1213831752538681, -1.044663667678833, 0.9285588264465332, 0.6726122498512268, 0.6658564805984497, 1.286712884902954, -0.4728028178215027, -1.3262064456939697, -0.2401425838470459, -0.03461582213640213, 0.1813790202140808, 0.27065014839172363, -0.6627562046051025, -1.4351234436035156, -0.343667209148407, 1.0175435543060303, 1.1023759841918945, -0.3334500789642334, 0.2622821033000946, 0.563807487487793, -0.6628482341766357, -0.8308886885643005, -0.7186222076416016, -0.12701673805713654, 1.3293688297271729, -0.30594050884246826, -0.41081753373146057, -0.33920836448669434, -0.5456641316413879, 0.045783981680870056, 0.9314935207366943, 0.9331640005111694, -0.3357737064361572, 1.2345008850097656, -0.6630154848098755, 1.2183220386505127, -0.2101200819015503, -0.804133415222168, -0.0032734721899032593, 0.5682823657989502, 0.5497622489929199, -0.41403335332870483, -0.38223642110824585, -0.3155679702758789, -0.7105711102485657, -0.7212731838226318, 1.4741976261138916, 0.42376309633255005, -0.35500603914260864, 0.2177467793226242, -1.5211111307144165, 0.1870170384645462, 0.21406419575214386, 0.7794935703277588, 0.6865648031234741, -0.11760114133358002, 0.438842236995697, 0.7978516221046448, 0.04999765008687973, 0.3541603684425354, 0.7434877157211304, -0.6108831167221069, -0.33493131399154663, 0.5840722322463989, 0.6730467081069946, -0.5816930532455444, 0.44495081901550293, 0.755415141582489, 0.019553102552890778, 0.6771352291107178, -0.12250837683677673, -0.11210329830646515, -0.9697027206420898, 0.26259660720825195, -0.011573749594390392, -0.6689451336860657, 1.3904565572738647, -0.08916784077882767, -0.8674347400665283, -0.6949295997619629, 0.8019965887069702, 0.23316839337348938, 0.571476936340332, 0.10744008421897888, 0.9339172840118408, -0.6986595392227173, -0.39309215545654297, -0.17511332035064697, -0.8811915516853333, -0.7320661544799805, -0.5370424389839172, -0.6360363960266113, -0.956534743309021, 0.6113482117652893, -0.737326443195343, -1.4710592031478882, 0.6915311217308044, -0.24901846051216125, -1.080601692199707, -0.4304608404636383, 0.3208046853542328, -0.44762304425239563, -1.1661794185638428, -0.5617193579673767, -0.23320382833480835, 0.6859003305435181, -0.306474506855011, 0.6741867065429688, -1.4425113201141357, 0.14810997247695923, 0.8506097793579102, -0.5064035654067993, -1.0957411527633667, -0.4469481110572815, 0.4218914210796356, -0.8713552355766296, 0.28659698367118835, -0.0763947069644928, -0.026762716472148895, -0.2695428431034088, -0.28934845328330994, 0.47793048620224, 1.113288402557373, -0.2703218460083008, 0.8149286508560181, -0.3691801428794861, -1.3530477285385132, -0.9561103582382202, -0.3206242024898529, 0.051496271044015884, -0.34170177578926086, -1.0324764251708984, 1.008725881576538, 1.1230437755584717, -1.0542986392974854, 0.9848587512969971, -0.3006601929664612, 0.7502380609512329, -0.11853654682636261, 0.5324366092681885, 0.6911813020706177, 0.9004125595092773, -1.4665369987487793, -0.08284902572631836, -0.48288559913635254, 0.004337683320045471, 0.5245029926300049, -0.4472711682319641, 0.16425158083438873, 1.4776721000671387, 0.6264090538024902, -0.6778326630592346, 0.7964398860931396, 0.27257561683654785, -0.33467942476272583, -1.0455448627471924, -0.41608381271362305, -0.03749100863933563, -0.8829065561294556, 1.6315953731536865, 0.37010952830314636, -1.3310234546661377, 0.2113480269908905, -0.5804060697555542, -0.014994633384048939, -0.9415868520736694, 0.27746227383613586, -1.1246113777160645, 0.9314127564430237, -0.5209536552429199, 0.13476556539535522, 0.04915935918688774, -0.009003564715385437, 1.5489574670791626, -0.008957482874393463, -1.00662100315094, -0.15445226430892944, 0.3959518074989319, 0.05734757333993912, 1.141076683998108, -0.6821601390838623, -1.0459543466567993, -1.0005615949630737, 0.0920676589012146, 0.9302129745483398, 0.13713939487934113, 0.2374878078699112, 1.227334976196289, 0.5885317921638489, -0.06537379324436188, 0.3891906142234802, 0.266364187002182, 0.6442805528640747, 0.47254517674446106, 0.4593244194984436, 0.19454380869865417, 0.8252713680267334, -0.5705347061157227, -0.4328870475292206, -0.17889626324176788, 0.5555417537689209, 0.539993941783905, 0.7493404150009155, 1.501050353050232, -0.5861349701881409, 0.48071610927581787, -0.5335170030593872, 0.36465996503829956, -1.0951027870178223, -0.39045336842536926, -0.819865345954895, -1.0903440713882446, -0.029203355312347412, -0.6457041501998901, 0.11677467823028564, 0.04579175263643265, 0.3440282344818115, 0.7444592714309692, 0.6113178730010986, 0.02959810197353363, -1.5669987201690674, -0.7907123565673828, -0.3909953236579895, -1.0536324977874756, -0.015101060271263123, 0.8606337308883667, -2.0636210441589355, -0.16097673773765564, -0.45228829979896545, -0.19407686591148376, -0.15084214508533478, -0.03454184532165527, 0.4909672141075134, -0.8459309339523315, -0.2335100769996643, -0.16140522062778473, 1.8019299507141113, 0.36342787742614746, -0.10652948915958405, -1.0692658424377441, 0.9058778285980225, 0.9358571171760559, -0.46480393409729004, -0.06432456523180008, 0.8033666610717773, -0.6638094186782837, 0.3299272358417511, -0.25872156023979187, 0.5557026863098145, 0.18638929724693298, -1.1452982425689697, -1.2667605876922607, -0.33582422137260437, -0.4379707872867584, -0.5695757269859314, 0.12932607531547546, -0.040550291538238525, 0.666019082069397, 0.16549131274223328, -0.0020484942942857742, 1.2766062021255493, -0.5941215753555298, 0.3592129349708557, -0.9410496950149536, 0.3166041374206543, 0.46789082884788513, 1.4718668460845947, 0.7065906524658203, 0.623114824295044, 0.27480313181877136, -0.38464635610580444, -0.6602068543434143, 0.07164395600557327, 1.1807974576950073, 0.1472839117050171, -0.32385241985321045, -0.09266488254070282, -1.090692400932312, -0.09151658415794373, -0.10587239265441895, -0.032719969749450684, 1.1431689262390137, -0.4385233223438263, 0.023534124717116356, 1.2632664442062378, 0.10668112337589264, -0.5260360240936279, -0.427763432264328, -0.19249692559242249, 0.659509539604187, -1.343130350112915, 0.21329864859580994, -0.16238394379615784, -0.5696448087692261, 0.5819492340087891, -0.65444016456604, -0.6866687536239624, 0.3463311195373535, 0.8428370952606201, 0.3686752915382385, -1.2653083801269531, -0.05563570559024811, -1.3365180492401123, 0.35142192244529724, 0.9381061792373657, 0.45739394426345825, 0.19019415974617004, 0.4932398200035095, 0.05298512428998947, -0.12426663935184479, 0.1702090948820114, 1.8110339641571045, -0.689190149307251, 0.42807891964912415, -0.0593133270740509, -0.3612323999404907, -0.0449000708758831, -0.5423694252967834, -0.07674424350261688, 0.2893650531768799, -0.5072656869888306, -0.13082875311374664, 0.6851657629013062, -0.4765673577785492, 1.3708086013793945, -0.08601599931716919, -0.42825761437416077, -0.09634216129779816, -0.06376613676548004, -0.2446966916322708, -0.3184114694595337, 0.6838462352752686, -0.5782807469367981, -0.003461550921201706, -0.03760761767625809, 1.5586678981781006, 0.00982677936553955, -0.02721598371863365, 0.27603664994239807, 0.6215533018112183, 0.5244821310043335, 0.18125008046627045, 0.885919988155365, 0.4555530548095703, 1.0250877141952515, 0.09981420636177063, 0.9713215827941895, -0.1398458182811737, -0.22170737385749817, 0.848175048828125, -0.7592746615409851, 0.8718730211257935, 0.25651028752326965, 0.44390347599983215, 1.1885939836502075, -1.8028837442398071, 0.10634933412075043, 0.6797796487808228, -0.027923710644245148, 0.8221563100814819, 0.8856639862060547, 0.42818185687065125, -1.0637074708938599, 0.2876654267311096, -0.07588599622249603, -0.08595655858516693, 0.07402205467224121, 0.354740709066391, 0.5726116299629211, 0.3109767436981201, -0.7342774271965027, 0.2524709403514862, -0.029392676427960396, -0.7999054193496704, 0.2695982754230499, -0.20673871040344238, 0.2706512212753296, 0.11515084654092789, 0.8724638223648071, 1.5758600234985352, -0.013519972562789917, -0.9113210439682007, 0.05218512564897537, -1.1065709590911865, 0.5635334253311157, -0.1932685822248459, -0.29500845074653625, -0.8193931579589844, 0.1991463303565979, 0.34850436449050903, 0.17690148949623108, -0.8854424953460693, -0.22679072618484497, -0.8063174486160278, -0.9994717836380005, 1.131235122680664, 0.4150424003601074, 0.6913571357727051, 0.4952409565448761, 0.7668635845184326, 0.7014836072921753, 0.3239856958389282, -0.9812952280044556, 0.1239345520734787, 0.18656432628631592, -0.0306730754673481, -1.0227856636047363, -0.4114843010902405, -0.9705811738967896, 0.5443419218063354, 0.37933290004730225, -0.05395972728729248, 0.08851202577352524, 0.7155832052230835, 1.4167522192001343, -0.6892415285110474, -0.4918607771396637, 0.11310382187366486, -1.0816335678100586, 0.22560691833496094, 0.47588014602661133, -0.7953203320503235, 0.7393031120300293, -0.10109215974807739, -1.521550178527832, 1.1057106256484985, 0.18773554265499115, 0.05917016789317131, 1.2597172260284424, 0.23180325329303741, -0.05397787317633629, 1.4584648609161377, -0.25253549218177795, 0.054618507623672485, 0.23553362488746643, -0.24787339568138123, 0.003965228796005249, 0.06157933175563812, 0.8178278207778931, -0.14235764741897583, -0.7401806116104126, 0.09685845673084259, -0.5331045985221863, 0.6111299991607666, -0.22414898872375488, 0.17023316025733948, -0.1893804967403412, 0.5781142711639404, -0.5198768377304077, -0.16681884229183197, 0.6594188213348389, -0.9247787594795227, -0.6201686859130859, 0.8378475904464722, 0.9408615827560425, 0.4930862784385681, 0.27224990725517273, 0.8992738723754883, -0.9121524095535278, -0.01247645728290081, 0.3015948235988617, -0.08774422109127045, 1.5181868076324463, -0.008792474865913391, 0.13987544178962708, 0.39508819580078125, -0.02895170822739601, 0.1130434200167656, -0.7866373062133789, 0.1982242316007614, 0.9425454139709473, -0.5305277705192566, -0.8882938027381897, -0.03511693701148033, -0.8001205921173096, -0.004275068640708923, 0.39417213201522827, -0.017040938138961792, -0.7365096211433411, -1.083681583404541, -0.6434321403503418, 0.1254693567752838, 0.85817551612854, -0.6517657041549683, 0.3828847110271454, -0.04301935434341431, -1.6339733600616455, 0.38300883769989014, 0.2771303951740265, -1.859133005142212, -0.2285379320383072, -0.7630511522293091, 0.3022991716861725, 0.14315444231033325, 0.031139444559812546, -0.2437441498041153, 0.4431554675102234, -1.4950847625732422, -1.0361781120300293, -1.3894330263137817, -0.5200850963592529, 0.534324049949646, 0.801109790802002, -0.8523173332214355, 0.9720227718353271, -0.6904821395874023, 0.5996124148368835, -0.6144328713417053, -0.3768812119960785, -1.0979125499725342, 0.49441003799438477, -0.1615528017282486, -0.2287161499261856, -0.08858059346675873, 1.5070931911468506, 0.7882001399993896, 1.1807893514633179, 0.25046640634536743, 1.2892762422561646, -1.2783150672912598, -1.0130940675735474, -0.2986488938331604, 0.6787830591201782, -0.6200107336044312, -0.34544938802719116, 0.19130489230155945, -0.7980102300643921, -1.0726876258850098, -0.25621524453163147, 1.015213966369629, -0.32604989409446716, 0.5110225081443787, -0.18742142617702484, 0.30845415592193604, -0.8206294775009155, 0.142438605427742, 0.7975913286209106, -1.0919618606567383, -0.40753450989723206, -0.45405346155166626, 0.4838593602180481, -1.0292686223983765, -0.01330623123794794, 0.2720312476158142, -0.08962399512529373, 0.118168905377388, -0.18553441762924194, 0.11735354363918304, 0.8475672602653503, -0.4948464035987854, 1.0351636409759521, 1.1733194589614868, -0.4670073390007019, 0.02451523020863533, -0.22103260457515717, -0.5844202637672424, 0.06014523655176163, -0.748771071434021, -0.6664009690284729, -0.7245259881019592, 1.0909382104873657, 0.4623503088951111, 0.2325364053249359, 0.07837896794080734, 0.8869771957397461, 0.32517367601394653, 0.18333682417869568, 0.035561561584472656, -1.1839027404785156, -0.7198777794837952, 0.722917914390564, 0.8665522336959839, -0.593695878982544, -0.18527169525623322, -0.16908085346221924, 0.5586560368537903, 0.8004135489463806, 0.3678857982158661, 0.19613118469715118, -0.5142389535903931, 0.6387752294540405, 0.9751275777816772, -0.20884566009044647, -0.4997737407684326, -0.5537105202674866, -1.8720932006835938, 0.07892641425132751, -0.08837378025054932, -0.29308199882507324, 0.6252152919769287, -0.9793535470962524, -0.7659237384796143, 0.10539841651916504, -0.4264034628868103, -0.02593567594885826, -0.006775088608264923, -0.11067645251750946, -0.44645529985427856, 0.4156196117401123, 0.7888336181640625, -0.1522824615240097, 1.0483660697937012, -0.16898798942565918, -0.402601420879364, -0.9641250371932983, -0.30126723647117615, 0.4694109857082367, -0.5373739004135132, -0.0020338408648967743, -0.3493032455444336, 0.7903343439102173, -0.8990691304206848, 0.03920214623212814, -0.05076253414154053, 0.10299323499202728, -0.05085407942533493, -0.05278190225362778, -0.18869996070861816, 0.28485599160194397, 0.0547289177775383, 0.711866021156311, -0.9450509548187256, -0.8406243324279785, -0.35483503341674805, 0.4556821584701538, -0.2223052829504013, 0.5928086638450623, -0.047422945499420166, 0.2642751634120941, 0.39062613248825073, -0.22059816122055054, -0.31312114000320435, 0.03592688590288162, 0.15654030442237854, -0.03429233655333519, -0.2853648364543915, -0.8862130641937256, 0.11908771842718124, 0.6274832487106323, -1.5158209800720215, -0.3272913098335266, 0.29654181003570557, -0.3304691016674042, -0.3697795271873474, -0.4885235130786896, -0.7620850801467896, -1.0403876304626465, 0.2788251042366028, 0.2576814293861389, 0.08338266611099243, 0.6709406971931458, -0.5298126935958862, -1.0695586204528809, 0.11762865632772446, 0.4981144666671753, 0.05459567904472351, 0.5560295581817627, 1.3418052196502686, 1.4155166149139404, -0.07100953161716461, -0.7591662406921387, -0.31116151809692383, 0.25103759765625, -1.4592878818511963, 0.07892198860645294, -0.9169096946716309, 0.14477750658988953, -0.11243705451488495], [1.0264744758605957, 0.7947080731391907, -2.612638235092163, 0.144480898976326, -0.5245968103408813, 0.7580782771110535, 0.6469892859458923, 0.8478497266769409, 0.43255099654197693, -0.9729399681091309, -1.4611217975616455, -0.2988700270652771, 1.0658378601074219, 0.11205367743968964, 0.2935244143009186, 0.37582024931907654, 0.7973353266716003, 0.3909919261932373, 0.10902136564254761, 0.731428861618042, -0.3549928367137909, -1.3125057220458984, -0.25566354393959045, -0.028045132756233215, -0.22234277427196503, 0.26812371611595154, -1.364211082458496, -0.18447245657444, -1.2926257848739624, -0.5156828165054321, 0.3475331962108612, -0.48462700843811035, 0.31311526894569397, -0.026759237051010132, -1.0938692092895508, 0.49415647983551025, 1.2319048643112183, 0.7188411355018616, 0.7724528312683105, -0.08924250304698944, 1.8500680923461914, 0.200020432472229, 0.21098703145980835, -0.7198236584663391, 0.5621070265769958, -0.467224657535553, 0.8744624853134155, -0.6869987845420837, -0.5843538641929626, 0.016977956518530846, 0.7539078593254089, -0.009107808582484722, -0.8373859524726868, 1.1509889364242554, 0.5087959170341492, -1.5193828344345093, -0.5759310722351074, -0.6441935300827026, -0.20186308026313782, -0.3135884702205658, 0.7913796901702881, -0.5153792500495911, 0.6409721374511719, 1.5673524141311646, 0.31408193707466125, -0.5392303466796875, 0.04821338132023811, 0.4288543164730072, 0.48306751251220703, -0.9138455986976624, 0.7252711653709412, 0.40022119879722595, -0.7842966318130493, 0.9573380947113037, -0.8600330352783203, 0.5675236582756042, 0.5528333783149719, 1.018541932106018, 0.2325257509946823, 1.1979947090148926, -0.422322541475296, -0.31265830993652344, 0.6087857484817505, -0.30666449666023254, 0.3440249264240265, -0.02102590538561344, 0.3649922311306, -0.8174673318862915, -0.19678995013237, 0.9190826416015625, -0.7671810984611511, 0.4584846496582031, 0.5034705996513367, 0.18953227996826172, -0.004319861531257629, -0.09648659080266953, -0.22259891033172607, -0.32886654138565063, -0.8718641996383667, -0.5169404149055481, -0.948744535446167, -1.407057285308838, -0.2503160834312439, -0.12422582507133484, 0.885796844959259, 0.8396123647689819, 0.6955919861793518, -1.3102457523345947, 0.3557666838169098, 0.17039553821086884, -0.22477392852306366, -0.01818251982331276, -0.21528120338916779, -1.6757874488830566, -1.0560392141342163, 0.577593982219696, 1.4077062606811523, -0.7482495903968811, 1.620044469833374, 0.2932712733745575, -0.16669920086860657, -0.12066514045000076, 0.07271625101566315, -0.11804213374853134, 0.8325903415679932, 0.18111969530582428, -0.7021796107292175, -0.4777917265892029, 0.4464351236820221, 0.7090213298797607, 0.2625136077404022, 0.4602205753326416, 0.26814958453178406, 1.1688681840896606, -0.1468677818775177, 0.21178875863552094, -0.7438340187072754, -0.813990592956543, -0.23901811242103577, 0.3516930937767029, 1.1557374000549316, -0.5487537384033203, -0.181208536028862, 0.276694118976593, -0.8252741694450378, -0.4698978364467621, 0.5304237008094788, -0.40792521834373474, -0.3366064429283142, 0.01123524084687233, -0.7896766066551208, -0.1544298678636551, -0.38441595435142517, 1.0653904676437378, 0.7262502908706665, -0.21778206527233124, 0.36049556732177734, 0.24535931646823883, 0.3051247298717499, -0.7322900295257568, 0.17278577387332916, 0.2950523793697357, -0.06874839961528778, 0.005012102425098419, 0.5696836113929749, -0.4533883333206177, -0.5938695669174194, 0.9637822508811951, 0.02300693839788437, -0.4984305799007416, 0.22791865468025208, 0.1662137657403946, -0.7875386476516724, -0.2502964437007904, 0.596680223941803, -0.7513930797576904, 0.8833945393562317, -0.26396605372428894, -1.6656091213226318, -1.569117546081543, 1.3816113471984863, -0.3996174931526184, 0.7466927766799927, -0.01667025312781334, 1.308295488357544, 0.13377203047275543, 0.254426509141922, -0.5508952736854553, 0.09448143094778061, -1.008341908454895, -0.34107619524002075, 0.22510303556919098, -0.8819689154624939, 0.3490796387195587, -0.8441027402877808, -0.7517768144607544, 0.7793726325035095, -0.13626845180988312, -0.47718942165374756, -0.593763530254364, 0.21604402363300323, -0.1664382815361023, -1.2882925271987915, 0.05433070287108421, -0.6516514420509338, 1.0179641246795654, -0.764971911907196, 0.2321707308292389, -1.1335422992706299, 0.007795413956046104, 0.6568651795387268, -0.13799098134040833, -0.7867569923400879, -0.07562283426523209, 0.05586455017328262, -0.6305753588676453, 0.6220595836639404, 0.25737759470939636, 0.3212151825428009, -0.2745051681995392, 0.10658593475818634, 0.9937077164649963, 0.9882408380508423, -0.4497115910053253, 1.2267464399337769, -0.27947044372558594, -1.0155375003814697, -0.7865868210792542, -0.3698071837425232, 0.17939262092113495, -0.7579154372215271, -1.1992021799087524, 0.5314822793006897, 0.36144474148750305, -0.9367327690124512, 0.4661574065685272, 0.06260514259338379, 0.2658124566078186, -0.2136421650648117, 0.8297101259231567, 0.5506166219711304, -0.12411718815565109, -0.19762860238552094, 0.11783859133720398, 0.10589238256216049, 0.27670449018478394, 0.31260451674461365, -0.5088220834732056, 0.04727769270539284, 0.9222456216812134, 0.6550722718238831, 0.22675150632858276, 0.8306970000267029, 0.327886700630188, -0.541934072971344, -0.2176523059606552, -0.9215376973152161, -0.008567974902689457, -0.6833451390266418, 1.3886793851852417, 0.40311697125434875, -0.7334272861480713, -0.32779961824417114, -0.2902410924434662, -0.1264658272266388, -0.3463984727859497, 0.05119903385639191, 0.0377887487411499, 0.17354966700077057, -0.8354095220565796, -0.03404069319367409, 0.015142888762056828, -0.2854037880897522, 0.7869218587875366, -0.4047078490257263, -0.5792021155357361, 0.3215372562408447, 0.23759698867797852, -0.014694621786475182, 1.6068086624145508, 0.2980543076992035, -0.9501277208328247, -0.6741227507591248, -0.13307395577430725, 0.35772162675857544, -0.550571084022522, 0.5760416984558105, 1.273791790008545, 0.4021424651145935, -0.5568103194236755, -0.04153120145201683, 0.4819257855415344, 0.14347194135189056, 0.3691921830177307, -0.14952075481414795, 0.01714162901043892, 0.41745415329933167, -0.22439593076705933, -0.5900359749794006, 0.13983291387557983, 0.544729471206665, 0.5538929104804993, 0.7711824774742126, 1.0400984287261963, 0.11113099008798599, -0.1765374392271042, 0.005278817377984524, -0.0031923330388963223, -0.8145633339881897, -0.8877783417701721, -0.21245723962783813, -0.868702232837677, -0.636592447757721, -0.1851321905851364, -0.19174903631210327, 0.8967356085777283, 0.6647427678108215, 0.2071746587753296, 1.1897971630096436, -0.4065290689468384, -0.14386619627475739, 0.6879053115844727, -0.5710483193397522, -0.24692507088184357, 0.5103792548179626, 0.28907328844070435, -1.6378554105758667, -0.0107661671936512, -0.3832746744155884, 0.3696211278438568, 0.0752638503909111, 0.3213094174861908, 0.00765405036509037, -1.1685154438018799, -0.7764068841934204, -0.37786829471588135, 0.968915581703186, 0.13892482221126556, -0.8292343616485596, -0.17525622248649597, 0.09637533128261566, 0.8134233951568604, 0.053773973137140274, -0.019735312089323997, 0.1928706020116806, -0.667850911617279, -0.6084187626838684, -0.07190632820129395, 0.5168314576148987, 0.4868202805519104, -0.4970100224018097, -1.0764511823654175, 0.27374765276908875, -0.11129770427942276, -0.6572331190109253, 0.3523099720478058, -0.48641666769981384, 0.862834095954895, 0.27227485179901123, 0.4563114047050476, 1.1904345750808716, -0.47364339232444763, 0.8369297981262207, -2.1534950733184814, 0.63236403465271, 0.5131031274795532, 1.9535765647888184, -0.2546238303184509, 0.6104242205619812, -0.1540292501449585, -0.8040763735771179, 0.14738333225250244, 0.4794453978538513, 0.7828441262245178, -0.11107040196657181, -0.06097620725631714, 0.19147071242332458, -0.8313804864883423, -0.3617892563343048, 0.12320704758167267, 0.029827965423464775, 0.24580219388008118, -0.8735267519950867, -0.3305305242538452, 0.9698539972305298, 0.5504297018051147, -1.0305088758468628, -0.6866329908370972, -0.10709455609321594, 0.5609040260314941, -0.5060566663742065, -0.19164031744003296, -0.47857001423835754, -0.2010474056005478, 1.1787952184677124, -0.9597494602203369, 0.7907110452651978, 1.2719438076019287, 0.4405616223812103, -0.029922060668468475, -1.057171106338501, 0.22018283605575562, -1.1371735334396362, -0.036134690046310425, 0.9248817563056946, 0.12337511777877808, 0.3320992887020111, 0.2491946816444397, 0.06836355477571487, -0.11745896935462952, -0.5731830596923828, 1.6891443729400635, -0.3938460350036621, 0.10490963608026505, -0.08580604195594788, -0.46844562888145447, 1.0469155311584473, -0.10844841599464417, -0.3011826276779175, 0.1321774274110794, -0.24643583595752716, 0.091523677110672, 0.10966671258211136, -0.0894780158996582, 1.7434331178665161, 0.5813817381858826, -0.2150283008813858, 0.39561641216278076, 0.15989187359809875, -0.3606572449207306, 0.03147764876484871, 0.6885842680931091, -0.3646218180656433, -0.8013947606086731, 0.18538379669189453, 0.22146040201187134, 0.2921672463417053, 0.076786108314991, 0.43439120054244995, 0.3942987322807312, 0.08494395017623901, -0.04067637026309967, 1.3459454774856567, 1.085654377937317, 0.7619349360466003, -0.08805935829877853, 1.211637258529663, -0.1847747415304184, 0.08654018491506577, 0.6566388607025146, -0.08799715340137482, 0.2499406486749649, 0.24756892025470734, 0.2665185034275055, 1.2132179737091064, -0.791262686252594, -0.4893062710762024, 0.8933729529380798, -0.015888039022684097, 0.9926160573959351, 1.058347463607788, 0.5620203018188477, -0.11038347333669662, 0.12650282680988312, 0.026706447824835777, -0.4080468416213989, 0.5200468301773071, 0.4398716986179352, -0.33261311054229736, 0.6112254858016968, -0.8371708393096924, 0.4752362072467804, -1.1917188167572021, -0.1576564759016037, -0.38318517804145813, -0.7368228435516357, 0.58968186378479, 0.7072179913520813, 0.1734568327665329, 1.1428816318511963, 0.2549891769886017, -1.1640599966049194, 0.27182599902153015, -1.0161224603652954, -0.26350271701812744, -0.23676909506320953, -0.8872663974761963, -0.9842169880867004, 0.30704042315483093, -0.17435817420482635, -0.2247931808233261, -0.5727536082267761, -0.06217539310455322, -0.07945241779088974, -0.7433821558952332, 0.6855438351631165, 0.45108762383461, 0.4962441623210907, 0.2653712034225464, -0.011993611231446266, 0.08168123662471771, 1.0827518701553345, -0.5527758002281189, 0.03979460895061493, 0.010177170857787132, -0.4194784164428711, -0.2840103805065155, -0.705435037612915, -0.27651292085647583, 1.2868589162826538, 0.28901079297065735, -0.2735517919063568, -0.6901676654815674, 0.4658692181110382, 1.2302595376968384, -0.27903318405151367, -1.0055725574493408, -0.04782237485051155, -0.4859321713447571, 0.454683780670166, 0.458481103181839, -0.4470658004283905, -0.8596433997154236, -0.49961358308792114, -1.0581880807876587, 1.0856008529663086, -0.0573713481426239, -0.11176986992359161, 0.7289814352989197, 0.9121724963188171, 0.36794808506965637, 0.47897377610206604, -0.2852120101451874, 0.044862162321805954, 0.04775378108024597, 0.27615663409233093, -0.5075117945671082, 0.563749372959137, 0.2722342610359192, 0.15411125123500824, -0.13012714684009552, 0.6551831960678101, -0.42491614818573, 0.2682712972164154, -0.6134341955184937, 0.409570574760437, -0.032422978430986404, 0.10092101246118546, 0.12969867885112762, 0.3152208924293518, -0.291638046503067, -0.6169175505638123, -0.10503043979406357, -0.06690787523984909, 1.0054105520248413, -0.1498975157737732, -0.581130862236023, 0.25752153992652893, -0.7949538230895996, 0.20867730677127838, -0.28173407912254333, -0.4569869637489319, 1.3238346576690674, 0.8073843121528625, 0.41123294830322266, 0.5667772889137268, -0.4179568886756897, 0.09995938092470169, -0.5666549801826477, -0.08741024881601334, 1.0664658546447754, -1.049380898475647, 0.41527947783470154, -0.10414615273475647, -1.009649634361267, 0.12543299794197083, 0.43605539202690125, -0.05922231450676918, -0.5522751808166504, -1.0462967157363892, -1.2179068326950073, -0.2917245626449585, 0.8397322297096252, -0.6491614580154419, -0.17436346411705017, 0.2178400158882141, -0.7499461770057678, -0.7229076027870178, 1.1702972650527954, -1.1261470317840576, -0.48040375113487244, -1.016683578491211, 0.641707718372345, 0.17617158591747284, 0.5848981738090515, -0.8569521307945251, 0.37065589427948, -1.2065919637680054, -1.1349483728408813, -1.3765052556991577, -0.4807989299297333, 0.9447776675224304, 0.44237762689590454, -1.06415855884552, 0.5687419176101685, 0.5040308237075806, 0.601851761341095, -0.5056367516517639, 0.20537564158439636, 0.022732309997081757, 0.4059249460697174, 0.284790575504303, -0.17412517964839935, -0.40020281076431274, 1.2606550455093384, 0.5147829055786133, 0.7483282685279846, 1.1571980714797974, 0.8763066530227661, -1.2726224660873413, -0.2974323034286499, -0.4648587703704834, 0.5516983866691589, -0.1268547922372818, -0.5643621683120728, -0.05817572399973869, -0.7729777693748474, -0.01272496860474348, 0.3573436439037323, 0.5981418490409851, -0.9836066961288452, -0.244262233376503, -1.817931056022644, 0.18375100195407867, -0.5271808505058289, 0.3948505222797394, -0.06108709052205086, -0.28939199447631836, 0.2698553204536438, -0.4852980375289917, -0.7364175915718079, -1.7424417734146118, -0.27565398812294006, 0.12033676356077194, 0.10170644521713257, -0.2996218800544739, -0.2234225571155548, 0.21255053579807281, 0.7572035193443298, -0.26419463753700256, 1.4913506507873535, 1.1831161975860596, 0.09470777958631516, 0.06886269897222519, -0.04570766165852547, 0.23002128303050995, 0.3103013336658478, -0.5660552382469177, -0.7641482949256897, -0.8045714497566223, 0.6189022064208984, -0.19577474892139435, -0.3465286195278168, 0.04397132992744446, 0.7651944160461426, 0.3273285925388336, 0.4743042290210724, 0.7979531288146973, -0.6511935591697693, -0.7490684390068054, 1.0312176942825317, 1.1022608280181885, -0.9977531433105469, 0.22014650702476501, 0.3277502954006195, 0.5619751811027527, 0.4490664005279541, 0.5977956652641296, 0.6624898314476013, -1.0867470502853394, 0.9222236275672913, 0.8502930998802185, -0.5578328371047974, -0.3432963788509369, -0.36825108528137207, -1.57517409324646, -0.11321259289979935, -0.21317629516124725, -1.0363789796829224, 0.12781845033168793, -0.8915512561798096, -0.45991966128349304, 0.3838701546192169, -0.13943533599376678, 0.5219907760620117, -0.8457143902778625, 0.8557326793670654, 0.017051439732313156, 0.21518200635910034, 0.1287962943315506, -0.42818883061408997, 0.7412152290344238, -0.2643603980541229, -0.593559980392456, -1.4863989353179932, -0.5453645586967468, 0.4699322283267975, -0.16488945484161377, -0.31757161021232605, 0.3847004473209381, 0.6183262467384338, -0.5704329013824463, -0.7588409781455994, 0.5721928477287292, -0.1770840287208557, -0.09579848498106003, -0.7359839081764221, -0.7799152731895447, 0.7605025172233582, 0.521515965461731, 0.08570457994937897, -0.4232921004295349, -0.6422794461250305, -0.40154752135276794, 0.37996330857276917, 0.16608552634716034, 0.1315649151802063, -0.23051421344280243, 0.8235471248626709, -0.13587598502635956, -0.22111597657203674, 0.0369432233273983, -0.6697942614555359, 0.6484652161598206, 0.09550473839044571, 0.27014032006263733, 0.020679160952568054, -0.38345634937286377, 0.5965136885643005, -1.1247390508651733, -0.5551034212112427, 0.6652475595474243, 0.012929554097354412, 0.20764437317848206, -0.5633094906806946, -1.551047444343567, -0.08135126531124115, 0.21274833381175995, -0.22734999656677246, 1.0959151983261108, 0.10932038724422455, -0.6130500435829163, -0.7177762985229492, 0.1515972912311554, 0.18608711659908295, -0.46495118737220764, 0.10350500792264938, 1.0846842527389526, 2.060354709625244, 0.28384798765182495, -0.026067273691296577, 0.08553767204284668, 0.503024697303772, -1.0725305080413818, 0.1983342170715332, -1.223835825920105, 0.36467769742012024, -0.694837749004364], [-0.0687083825469017, 0.4415515959262848, -1.7736446857452393, -0.5890169739723206, -1.176894187927246, 0.5281082987785339, 1.1394013166427612, 0.8952858448028564, 0.47942373156547546, -0.451374888420105, -1.5492091178894043, -0.4839942753314972, 0.40997055172920227, 0.48167502880096436, -0.5729172229766846, 0.36477723717689514, 0.10781247168779373, 0.5182710289955139, 0.6963578462600708, 0.8234840631484985, -0.8347403407096863, -0.5111109614372253, 0.1582929939031601, 0.5163741111755371, -0.5236921906471252, 0.9021382331848145, -1.6265288591384888, 0.1856178492307663, -1.4653515815734863, -1.1244032382965088, 0.5897364616394043, -0.9046613574028015, 0.033835846930742264, 0.3482513427734375, -1.0397714376449585, -0.11262808740139008, 1.4067838191986084, 1.452970266342163, 0.613125741481781, 0.7435472011566162, 2.829441547393799, 0.053277041763067245, -0.43222740292549133, -0.8805289268493652, 0.595474898815155, -0.38655996322631836, 1.0260694026947021, -1.5995581150054932, -0.2714327573776245, -0.06934383511543274, 0.8688632249832153, 0.7950237989425659, 0.1549430936574936, 0.6678085923194885, 1.2179532051086426, -1.1899964809417725, -0.130814790725708, -0.5124896168708801, 0.3042784035205841, -0.007866671308875084, 0.12620972096920013, 0.13650275766849518, 0.7068703174591064, 1.0171258449554443, 0.7340047955513, 0.22724786400794983, -0.32296544313430786, 0.5579842329025269, -0.5579911470413208, -0.6738640666007996, 0.46673783659935, -0.058592356741428375, -0.8654264807701111, 0.22759728133678436, -0.5567728281021118, 0.5386960506439209, 1.3701097965240479, 1.1218541860580444, -0.28701603412628174, 0.7637851238250732, -0.8213943839073181, 0.11029936373233795, 0.9669904708862305, -0.5064169764518738, 0.4358827471733093, -0.2653554379940033, 0.506417989730835, -0.88618403673172, -0.8588131666183472, 1.428847074508667, 0.1581726372241974, 0.22121135890483856, 0.30348384380340576, -0.02999471314251423, -0.3794029653072357, 0.22056743502616882, 0.3931288719177246, -0.347212016582489, -0.37263748049736023, -0.728996217250824, -1.1846975088119507, -0.6618982553482056, 0.49727025628089905, 0.08774195611476898, 1.1357771158218384, 1.9926459789276123, 0.16632741689682007, -0.6072846055030823, -0.6715763211250305, 0.09705211222171783, -0.4145975112915039, -0.3359314501285553, -0.23627246916294098, -1.282077431678772, -0.6925556659698486, 0.37079375982284546, 0.9411499500274658, -0.6236597895622253, 0.9416270852088928, 0.7935359477996826, -0.36425262689590454, -0.26607275009155273, -0.14129655063152313, -0.2863158583641052, 0.8382655382156372, 0.3986636996269226, -0.2671504616737366, -0.2596319019794464, 0.7553146481513977, 0.3329189121723175, 1.1641830205917358, 0.3540637791156769, 0.24785202741622925, 2.0587244033813477, 0.031748123466968536, 0.28854629397392273, 0.3766994774341583, -1.2229057550430298, -0.7331746220588684, 0.09498625248670578, 1.1742708683013916, -0.8534908890724182, -0.13899610936641693, -0.7370448112487793, -0.9716144800186157, -0.9534721374511719, 1.0191214084625244, -0.33995264768600464, -0.3334392309188843, 0.0803457573056221, -1.0072181224822998, 0.08419205248355865, 0.6494930386543274, 0.6556928753852844, 0.12737227976322174, 0.02405090630054474, 0.6047256588935852, 0.8692290782928467, 0.5579292178153992, 0.7240582704544067, 0.31638726592063904, -0.362674742937088, 0.0680353119969368, 0.6056140065193176, 0.8493208885192871, -0.2046387940645218, -0.36275219917297363, 0.28776803612709045, -0.08311634510755539, -0.048128124326467514, 0.27626270055770874, -0.2995627522468567, -0.8359482884407043, 0.5334370732307434, 0.09878960996866226, -1.0835986137390137, 1.3051567077636719, -0.7638951539993286, -1.1841720342636108, -1.4725687503814697, 1.6063770055770874, -0.11111003160476685, -0.14012672007083893, -0.04783051833510399, 1.251908779144287, -0.7382065057754517, -0.25651654601097107, -0.11400427669286728, -0.7677552103996277, -1.075310230255127, -0.6757990717887878, -0.20204389095306396, -1.1147631406784058, 0.16179360449314117, -0.402774840593338, -1.0639371871948242, 0.2539139986038208, -0.25820666551589966, -0.8097260594367981, -0.2841813564300537, 0.4735161066055298, 0.2437242567539215, -1.0364134311676025, -0.058024242520332336, -0.7087352275848389, 0.9486071467399597, -0.9028741717338562, 0.41690051555633545, -0.848603367805481, 0.04696808382868767, 0.2858653962612152, -0.0388614758849144, -0.7872570753097534, 0.3380342423915863, -0.336630254983902, -0.6252528429031372, 0.74278324842453, 0.01999509707093239, 0.5635848045349121, -0.7297289967536926, 0.8626110553741455, 0.6030681729316711, 0.610478401184082, -0.3653724193572998, 1.1079708337783813, 0.20745420455932617, -0.2277657836675644, -0.8058999180793762, -0.6182074546813965, 0.20286794006824493, -0.5219892263412476, -1.2978870868682861, 0.7901118397712708, 0.20702539384365082, -1.3597476482391357, 0.847316324710846, -0.05872279033064842, -0.27283036708831787, -0.31467992067337036, 0.8964117765426636, 0.34793028235435486, 0.7564241886138916, -0.1765493005514145, -0.5825666189193726, -0.3100387156009674, 0.6364116668701172, 0.8095831274986267, 0.037500906735658646, 0.9032666683197021, 1.2117719650268555, 0.42213910818099976, -0.17146460711956024, 0.31076017022132874, 0.3812009394168854, -0.43337973952293396, -0.6106070280075073, -0.3574048578739166, -0.10287385433912277, -1.3737484216690063, 2.2608394622802734, 0.7120332717895508, -1.0667012929916382, -0.335249125957489, 0.1670781672000885, -0.5937385559082031, -0.24865812063217163, -0.046685900539159775, -0.7808197140693665, 0.44619306921958923, 0.08931787312030792, -0.012908075004816055, 0.5291610360145569, 0.2545700669288635, 0.8919786214828491, -0.2281447798013687, -0.48277977108955383, 0.44218289852142334, 0.5015000700950623, -0.3464778661727905, 1.090471863746643, 0.5904523730278015, -1.1000694036483765, -0.31971272826194763, -0.5238303542137146, 1.1396116018295288, -0.3079582154750824, -0.4274976849555969, 0.9792467951774597, 0.1659812182188034, -0.45296546816825867, 0.12580759823322296, 0.899336040019989, 0.21695682406425476, 0.1732359677553177, -0.1800784021615982, 0.2799800634384155, 1.132257342338562, -1.13480806350708, -0.7963943481445312, 0.35705578327178955, 0.3768062889575958, 0.40663424134254456, 1.3345519304275513, 1.4347639083862305, -0.07535935938358307, -0.00022001378238201141, -0.31164050102233887, 0.027770794928073883, -1.0050320625305176, -0.6413033604621887, -0.28483906388282776, -1.0948421955108643, -0.03561815619468689, -0.48895707726478577, -0.2669195830821991, 0.5411139130592346, 0.013219115324318409, 0.3160732686519623, 0.8495752215385437, -0.8876983523368835, -0.2001749873161316, -0.012431183829903603, 0.22978079319000244, -0.5868672132492065, 0.8541160821914673, 0.10769690573215485, -1.3635468482971191, -0.7113983631134033, 0.24266955256462097, 0.09031667560338974, 0.982339084148407, 0.45719781517982483, -0.08161736279726028, -1.1492923498153687, -1.4654419422149658, 0.077733114361763, 1.334336280822754, -0.04255099967122078, -0.959109902381897, -0.7328034043312073, 0.2037913054227829, 0.6547630429267883, 0.11149125546216965, -0.704252302646637, 0.4827227294445038, -0.8900099396705627, -0.8807048797607422, -0.3115752339363098, -0.02622240222990513, 0.7829341888427734, -0.2298268973827362, -0.7892752289772034, 0.16484585404396057, 0.07280838489532471, -0.7196397185325623, 0.24216336011886597, -0.8858844041824341, 1.2041865587234497, -0.1792893260717392, 0.474928617477417, 1.3904727697372437, -1.332287311553955, -0.4402162730693817, -1.898361325263977, 1.0593039989471436, 0.49257686734199524, 1.5536072254180908, -0.10156909376382828, 0.6835830211639404, 0.3721961975097656, -0.3871944546699524, 0.024393552914261818, 0.6581476330757141, 0.8602266311645508, 0.1281503289937973, -0.2253945767879486, 0.013780291192233562, -0.23264913260936737, -0.4511696994304657, -0.4351775348186493, -0.5832293629646301, 0.4812084138393402, -0.8057991862297058, 0.07683414965867996, 0.6719157099723816, 0.7723026871681213, -1.7679699659347534, -0.32534924149513245, 0.2079247534275055, 0.1499863564968109, 0.20347392559051514, 0.11547041684389114, -0.24535581469535828, -0.34689950942993164, 0.736543595790863, -1.0156744718551636, -0.04850047826766968, 0.21318282186985016, -0.41439029574394226, 0.7171958684921265, -1.3725800514221191, 0.08223330229520798, -1.1951075792312622, 0.09282147139310837, 0.7758178114891052, 0.05646873265504837, 0.5053738355636597, 0.7121129631996155, 0.1169833317399025, -0.28379714488983154, -0.3567196726799011, 1.9620105028152466, 0.34027934074401855, -0.05699123814702034, -0.4055578410625458, 0.4336693286895752, 0.6668704748153687, -0.5976824760437012, -0.584874153137207, 0.29496151208877563, -0.8688559532165527, 0.6197048425674438, -0.16872970759868622, 0.2158433347940445, 1.4499709606170654, 0.09744521230459213, 0.3253897428512573, 0.13632524013519287, -0.4424348771572113, -0.5814344882965088, -0.4701886773109436, 0.10613219439983368, -0.09019573032855988, -0.3236899971961975, 0.17916104197502136, 1.1451436281204224, 0.09075235575437546, 0.1189543828368187, 0.2557346522808075, -0.148078054189682, -0.09924117475748062, -0.020097896456718445, 0.5968440771102905, 0.15901367366313934, 0.9299396872520447, 0.32538649439811707, 0.3414251208305359, -0.43709421157836914, 0.394281268119812, 1.5052402019500732, -0.3679392337799072, 0.36398380994796753, 0.5636945962905884, 0.5195698142051697, 1.1462419033050537, -1.817307949066162, -0.668677568435669, 0.5510091185569763, -0.11363004893064499, 0.9029639959335327, 0.9620518088340759, 0.36043986678123474, -1.1351091861724854, 0.20074495673179626, -0.24609197676181793, -0.44769206643104553, 0.4746457040309906, 0.4810204803943634, -0.40764304995536804, 0.2153751403093338, -0.6774728894233704, -0.23791615664958954, -1.1211491823196411, -0.05862446129322052, 0.2887493669986725, -1.3170132637023926, 0.47921231389045715, 0.2397925704717636, 0.26622867584228516, 0.579700767993927, -0.1726072132587433, -0.8730385899543762, 0.7334500551223755, -0.9100872874259949, -0.3303149342536926, -0.4185613989830017, -1.0772373676300049, -0.5179949402809143, 0.1463339775800705, -0.4419465661048889, 0.3810499310493469, -0.21080225706100464, -0.754569411277771, 0.232444629073143, -0.9607263207435608, 0.5433364510536194, 0.9464746117591858, 1.191042184829712, 0.7376705408096313, 0.1298244446516037, 0.6435539722442627, 0.5289291143417358, -0.9645540118217468, 0.48805391788482666, 0.7755365967750549, -0.15167437493801117, -0.4875526428222656, -0.6504715085029602, -0.6208115816116333, 1.2629185914993286, 0.6317028403282166, -0.42182764410972595, 0.09486694633960724, 0.12271389365196228, 1.3194799423217773, -0.011679602786898613, -0.7621303796768188, 0.048106156289577484, -0.18205562233924866, 0.4311060905456543, 0.9437498450279236, -0.8013458251953125, -0.25305497646331787, -0.4109466075897217, -1.0628421306610107, 1.3736482858657837, 0.3282671570777893, -0.8112131953239441, 1.5562244653701782, 1.1006910800933838, -0.1459013819694519, 0.5543236136436462, 0.31063762307167053, -0.7399328351020813, 0.20443658530712128, -0.004666642285883427, -1.6218211650848389, 0.7168809771537781, 0.0752720981836319, 0.20294946432113647, -0.7399323582649231, -0.20140796899795532, -1.1839268207550049, 0.567379891872406, -0.5963818430900574, -0.3359951972961426, 0.4578675925731659, 0.20370371639728546, 0.3334437906742096, 0.3048756718635559, -0.4368964433670044, -0.007269289810210466, -0.4734300374984741, -0.49983370304107666, 0.6841283440589905, -0.2767607271671295, -1.4220951795578003, 0.3249575197696686, 0.17394942045211792, 0.39535602927207947, 0.26626908779144287, -0.21045784652233124, 1.407742977142334, 1.0239791870117188, 0.2865585684776306, 0.6340008974075317, -0.424881249666214, -0.26508161425590515, -0.1384563446044922, -0.9361319541931152, 0.3851010799407959, -1.1929093599319458, 0.2381218671798706, -0.46974265575408936, -0.12233906239271164, 0.34894371032714844, 0.05796905606985092, -0.22793667018413544, -0.7415115237236023, -0.7674902081489563, -1.5737301111221313, 0.2530871331691742, 0.6667612791061401, -0.7039875388145447, -0.4349345862865448, 0.2495572715997696, -1.3598756790161133, 0.16922707855701447, 0.6458324790000916, -1.160017728805542, -0.34127989411354065, -1.159508466720581, 0.8019216060638428, -0.9068955779075623, 0.6209901571273804, -0.7070575952529907, 0.7189305424690247, -0.5230802893638611, -1.1239622831344604, -0.5871309041976929, -0.3711230158805847, 1.0931607484817505, 1.0935263633728027, -0.6919236779212952, 0.8634910583496094, 0.3090268075466156, -0.5832182765007019, -0.25818932056427, 0.3199038803577423, -0.045738741755485535, 0.7869952321052551, 0.19105570018291473, -0.4425411820411682, 0.655854344367981, 1.0015519857406616, 0.7138555645942688, 1.2610445022583008, 0.17791706323623657, 0.9931060075759888, -1.1760363578796387, -0.33351507782936096, -1.0732089281082153, -0.05408259108662605, -0.31340864300727844, -0.43031591176986694, -0.6626138687133789, -0.984404981136322, -0.14186103641986847, 0.8943981528282166, 1.2371476888656616, -0.8137583136558533, -0.23398199677467346, -0.8068240880966187, 0.8014866709709167, -0.2728356420993805, 0.4602300822734833, -0.004690042696893215, -0.24929183721542358, -0.053550392389297485, -0.6674671173095703, -0.4701937139034271, -0.5785536766052246, -0.6095070242881775, -0.2687637507915497, 0.43067944049835205, -0.19486375153064728, 0.3756425678730011, 0.7808033227920532, -0.011376718990504742, -0.2879164516925812, 2.185779571533203, 1.338724970817566, -0.23763597011566162, 0.8956605792045593, -0.4552321135997772, -0.3305172026157379, -0.31808438897132874, -0.8239647150039673, 0.4105474054813385, -0.7536178231239319, 0.5174142718315125, -0.1680101901292801, 0.0876619890332222, -1.1612704992294312, 0.3099052608013153, 0.15540045499801636, 0.47604337334632874, 0.8059001564979553, -0.2734833061695099, -0.2882634699344635, 0.6673901081085205, 0.9584078192710876, -0.49574366211891174, 0.5664117932319641, 0.3643024265766144, 0.5135656595230103, 0.14064466953277588, 0.603338360786438, 0.34045857191085815, -1.2336978912353516, 0.6484943628311157, 0.0385536290705204, -0.6766252517700195, -0.1346033662557602, -0.7691800594329834, -1.445975422859192, -0.523989200592041, -0.5751940608024597, -0.9162490367889404, 0.32277533411979675, -0.6713875532150269, -0.6466668248176575, 0.32212698459625244, -0.19269278645515442, 0.09401404112577438, -0.5909180641174316, 0.08767681568861008, -0.3569163680076599, 0.02914166823029518, 0.497883141040802, 0.016779005527496338, 0.4779849648475647, 0.32285773754119873, -0.16843095421791077, -0.9650471210479736, -0.626204252243042, -0.11081115901470184, 0.22178223729133606, 0.06548482924699783, 0.4309332072734833, 0.22100390493869781, -0.1576928049325943, -0.27473750710487366, 0.21741285920143127, -0.6331700086593628, 0.6790040731430054, -0.26680120825767517, -0.4751441776752472, 0.17191533744335175, 0.46665602922439575, -0.4867429733276367, -0.1692521870136261, -0.35460615158081055, -0.15567860007286072, -0.21646378934383392, -0.7496858239173889, 0.16903434693813324, -0.44751662015914917, 0.6332346200942993, 0.35701698064804077, 0.14762096107006073, 0.32295140624046326, -0.17744751274585724, 0.12687304615974426, -0.3869697153568268, 0.37336963415145874, 0.3154618442058563, -1.0491178035736084, 0.517585813999176, -1.3841441869735718, 0.3258962035179138, -0.3458639085292816, 0.5083483457565308, 0.05240525305271149, -0.7239858508110046, -0.9188185930252075, -0.45591798424720764, -0.23451216518878937, 1.149548888206482, 0.5061787366867065, 0.8047837018966675, -0.9110214710235596, -1.3073418140411377, -0.38382336497306824, -0.3267626166343689, 0.053374260663986206, 0.9259229898452759, 1.6973655223846436, 1.5179502964019775, 0.26817387342453003, -0.20797428488731384, -0.11025727540254593, 0.7304743528366089, -0.563367486000061, -0.8106915950775146, -1.1325749158859253, -0.2341698855161667, -0.255058616399765], [0.01391932275146246, 1.0474679470062256, -1.937429666519165, -0.20000383257865906, 0.658793032169342, -0.42883285880088806, 1.5673712491989136, -0.1776025891304016, 0.9716423153877258, -1.2055960893630981, -0.37566614151000977, -0.24651966989040375, 0.5735188126564026, 1.2779244184494019, -0.7231682538986206, 0.6035867929458618, 0.4548881947994232, -0.5358943939208984, -0.9760546684265137, 0.80268794298172, 0.181693896651268, -2.5137534141540527, -0.8282184600830078, -0.6299811005592346, -0.37914517521858215, -0.2525254189968109, -0.26463255286216736, 0.5712230801582336, -1.4687305688858032, -0.42638254165649414, 0.746318519115448, -0.4549766778945923, -0.3523164689540863, 0.7053971290588379, -0.5582041144371033, -0.6044514179229736, 0.4625830054283142, -0.21109521389007568, -0.25771665573120117, 0.5848783254623413, 1.0297377109527588, -0.25324657559394836, -0.588342547416687, -0.5680190324783325, 0.8131076693534851, -1.1706749200820923, 1.6412663459777832, -0.5438027381896973, 0.2885075807571411, -1.8545680046081543, 0.6068668961524963, -1.4637837409973145, 0.2110166996717453, 0.45036154985427856, 0.5267877578735352, -1.1981074810028076, 0.03552384674549103, 0.33260491490364075, -0.6023099422454834, 0.24225689470767975, 1.9388279914855957, 0.9216382503509521, 0.3069843649864197, 1.9446338415145874, 0.16057290136814117, -0.0941181480884552, -0.05207177996635437, -0.27928397059440613, -0.3071750998497009, -0.005889022722840309, 0.5707385540008545, -0.596555233001709, -0.04549730569124222, 0.5030041933059692, -0.4254438877105713, 0.5105909705162048, -0.5945845246315002, 0.136007621884346, -0.31415531039237976, 0.1778433471918106, 0.23035970330238342, -0.12067611515522003, 0.7771583795547485, -0.7720786333084106, -0.3131732642650604, -0.8503150343894958, 0.13005654513835907, -0.5426356196403503, -1.469155192375183, 2.116081476211548, -0.15971432626247406, -0.1249089166522026, 0.3411928415298462, 0.35647496581077576, -0.10163107514381409, -1.826526403427124, 0.044792983680963516, -0.49772393703460693, -0.4296461343765259, -0.07671058177947998, -0.6141166687011719, -0.36502888798713684, -0.25488540530204773, -0.17395231127738953, 0.7637153267860413, 1.1943787336349487, 0.005654420703649521, -0.9880701303482056, 0.3831489086151123, -0.1542406678199768, 1.1945172548294067, -0.1052100658416748, 0.038848862051963806, -0.1041235476732254, 0.04680902883410454, 0.1802045851945877, 0.7970153093338013, 0.03366721794009209, -0.11945538222789764, 1.5866461992263794, 0.33068838715553284, -1.417008876800537, -0.7687355279922485, -0.22623705863952637, 0.7531927824020386, -0.04021138325333595, -0.5697086453437805, -0.3113151788711548, -0.8529523611068726, -0.7836775779724121, -0.21676839888095856, -0.024879634380340576, -0.1361936777830124, 0.11253046989440918, -0.3886038362979889, 1.129923939704895, -0.6389278769493103, -1.0363855361938477, -0.23337815701961517, -0.3320237994194031, 1.0701481103897095, 0.2821251451969147, -0.8271719813346863, -0.11201479285955429, 0.41064324975013733, -0.37959718704223633, -0.4128621816635132, -0.07361385971307755, -0.08363693952560425, 0.5699219107627869, -0.7091654539108276, 0.140006884932518, 0.2315242439508438, 1.0818036794662476, 1.2709006071090698, -0.4978059232234955, -0.341147243976593, 1.0677242279052734, 0.7302471399307251, 0.5161838531494141, 0.9853654503822327, -0.08175419270992279, -0.0714707300066948, 1.1597199440002441, 0.3852269947528839, 0.052386097609996796, 0.630873441696167, 0.8323476314544678, -0.1266574114561081, 0.8977078795433044, -0.5891621112823486, 0.09078418463468552, -0.8212231993675232, 0.7048598527908325, 0.026504382491111755, 0.4457884430885315, 0.38331785798072815, 0.021885178983211517, -1.1727886199951172, -0.4490951895713806, 0.8625332713127136, -1.4551054239273071, -0.7708236575126648, -0.02363932877779007, -0.2852504551410675, 0.20996612310409546, -0.08271059393882751, -1.4738619327545166, -0.022483468055725098, -1.14975905418396, -0.7045770883560181, 0.009241837076842785, -0.7208647727966309, -0.14446595311164856, -0.9742339253425598, 0.01903640665113926, 1.2171924114227295, -0.026503615081310272, 0.35962358117103577, -0.5250189900398254, 0.1773132085800171, 0.8077855706214905, -0.7752283215522766, 0.5316557288169861, 0.27327072620391846, 0.42852503061294556, 0.5909690856933594, 0.7150754332542419, 0.11761920899152756, 0.6564642786979675, 1.1363309621810913, -1.4272801876068115, 0.19346362352371216, -0.2873873710632324, 0.09494465589523315, -0.056706514209508896, 0.2674371898174286, -0.8292248845100403, -0.7773545384407043, -0.026849305257201195, 0.7070208787918091, -0.4841296672821045, -0.2587205469608307, -0.5422652363777161, 0.7122504711151123, -0.3869323134422302, -1.7456234693527222, -0.23527298867702484, -0.6237932443618774, -0.05374174192547798, -0.07055007666349411, -0.524945855140686, 0.6013684272766113, 0.24308791756629944, -0.29187965393066406, 0.8828374147415161, -1.024367332458496, 0.7557836174964905, 0.030485689640045166, 0.7692429423332214, 1.137908935546875, -0.32797402143478394, 0.2536633610725403, -0.0860559493303299, -0.9511573910713196, -0.02122301608324051, 0.05003955960273743, -0.7107803821563721, -0.7205098867416382, 1.0676548480987549, 1.5156080722808838, -0.13913381099700928, 0.16755756735801697, -0.022095153108239174, 0.3427945077419281, -1.3058249950408936, 0.5357823371887207, 1.1174746751785278, -0.1463741511106491, -0.18801547586917877, 0.6378088593482971, -0.3651919364929199, -0.24132241308689117, -0.47399234771728516, -0.10794767737388611, -0.43611279129981995, -0.6328984498977661, -0.3181878328323364, -0.07054668664932251, 0.2158970683813095, -0.2613570988178253, 0.1360183209180832, -0.3404063284397125, 0.7927719354629517, 0.056882258504629135, 0.10719530284404755, 1.1378586292266846, 0.7711671590805054, 0.3247630298137665, 0.9763213396072388, -1.0616072416305542, -1.689150094985962, -0.7481792569160461, 0.3128673732280731, 0.1326325684785843, 0.12419907748699188, -0.7346490025520325, 0.137893944978714, 0.6925073862075806, -0.34660637378692627, 1.287402868270874, 0.005083865486085415, -0.25742530822753906, -0.6428363919258118, -0.8283932209014893, 0.17248187959194183, -0.05229353532195091, -1.0756868124008179, -1.0302122831344604, -0.12331247329711914, 0.23722046613693237, 0.9455630779266357, 1.3909828662872314, 0.9463610649108887, -0.2652747333049774, -0.4611668884754181, -0.33723556995391846, 0.20266303420066833, 0.48144474625587463, 0.06171102076768875, -0.4023565351963043, -0.028460539877414703, -0.8521331548690796, 0.4234611392021179, 0.3066583573818207, 0.9601927399635315, 0.21479685604572296, 0.2622189521789551, 0.49588000774383545, -0.3473994731903076, -1.3547550439834595, -0.32430705428123474, -0.7916646599769592, -0.9865075945854187, 0.23217976093292236, 1.4070487022399902, -0.800143837928772, -0.740135133266449, 0.357655793428421, 0.23347024619579315, 0.04187151789665222, 0.8363988399505615, 0.27484825253486633, -1.3341807126998901, 0.3575995862483978, -0.7168547511100769, 0.381187379360199, -0.13175496459007263, 0.30638810992240906, 0.30189216136932373, -0.09972210228443146, 0.500329852104187, -0.7557098865509033, -0.2626552879810333, -0.170701801776886, -0.25019583106040955, 0.1957530826330185, 0.06747576594352722, -0.05329698696732521, 0.4128822088241577, -0.049340467900037766, -1.0124484300613403, 0.24437794089317322, -0.5181971192359924, -0.1723678857088089, -0.33120498061180115, -0.2597879469394684, 0.7332221865653992, -0.21192912757396698, 0.3341095447540283, 1.2838242053985596, 0.7698757648468018, 0.42720136046409607, -1.2216318845748901, 0.20610663294792175, 0.24484187364578247, 1.1101195812225342, -0.2896896302700043, -0.9301734566688538, -0.0204915888607502, -0.2522144913673401, -0.0033223293721675873, -1.150891900062561, -0.2413095086812973, 0.2592506408691406, 0.32670730352401733, -0.9361575841903687, -0.5909484624862671, -0.5140408277511597, 0.04694833233952522, -0.3628634512424469, 0.211965873837471, 0.2776334881782532, -0.06582148373126984, 0.4807074964046478, 0.14248868823051453, 0.6730021834373474, -0.3329082131385803, 0.6459142565727234, -0.4602956771850586, 0.08772557973861694, 0.5204370617866516, -0.2611992657184601, -0.2386392056941986, 0.418204665184021, -0.9167437553405762, -0.40175461769104004, -1.3647537231445312, 0.3935006260871887, 1.5933810472488403, -0.9833102822303772, -1.1086087226867676, 0.24100801348686218, 0.4903292953968048, 0.8828364610671997, -0.32901009917259216, 0.8566601872444153, 0.4578436017036438, -0.2079334259033203, -0.8296441435813904, 1.349422812461853, 0.37438467144966125, -0.0792609378695488, -0.4156402349472046, 0.215787872672081, 0.05240270867943764, 0.6945217251777649, -0.34381404519081116, 0.1269785612821579, 0.5633035898208618, -0.8239840865135193, 0.26113376021385193, 0.33056148886680603, 0.061583369970321655, 1.4327210187911987, 0.6633485555648804, 0.15875352919101715, -0.048673372715711594, 0.041017256677150726, -1.121027946472168, -0.16403385996818542, 0.46596309542655945, 0.890024721622467, -0.9590277075767517, -0.01182048674672842, 0.2831173241138458, 0.2151486873626709, 0.41579216718673706, 1.078546166419983, -0.38556039333343506, 0.2819809913635254, -0.8758666515350342, 0.035103436559438705, -0.34031686186790466, 1.506999135017395, 1.4067047834396362, 0.2508769631385803, -0.09518489986658096, -0.23415659368038177, 0.7494279146194458, -0.5169573426246643, 0.25683143734931946, 0.5099920630455017, 0.731999933719635, 0.7300033569335938, -0.2533120810985565, 0.4212754964828491, 0.12966521084308624, -0.29855313897132874, 0.40220531821250916, 0.06699240207672119, 0.2126810997724533, -0.9659929275512695, 0.21631741523742676, 0.1922605335712433, 0.6409310698509216, 0.7351234555244446, -0.221589595079422, 0.09141941368579865, -0.08001775294542313, -0.8142358660697937, -0.028402427211403847, 0.19169379770755768, 1.118790626525879, -0.20629264414310455, -0.857412576675415, 0.3476100265979767, -0.04577383026480675, 0.7696987986564636, 2.1490869522094727, -0.7639845013618469, -1.3638089895248413, -0.23139020800590515, -0.7505563497543335, -0.1950095146894455, -0.9284441471099854, -0.1256314218044281, 0.19733014702796936, -0.2549787759780884, 0.17622505128383636, 0.08986054360866547, -0.9297212958335876, -0.6835724115371704, -1.0979981422424316, 0.48402470350265503, 0.8076899647712708, -0.5819312930107117, 1.0750994682312012, 0.30476823449134827, 0.11045125871896744, 1.2341327667236328, 0.296924889087677, -0.9420130848884583, -0.25027766823768616, 0.23075422644615173, 0.45167076587677, -0.2672966718673706, -0.042184967547655106, -0.314308226108551, 0.3780532479286194, -0.40950945019721985, -0.5654510855674744, -0.166591614484787, 1.083694338798523, 0.819664716720581, -0.5436603426933289, -0.6075674295425415, 0.908121645450592, -1.3827458620071411, 1.1992963552474976, 0.718854546546936, -1.2227457761764526, 0.7458063364028931, -0.6897067427635193, -2.0928566455841064, 1.2874618768692017, 0.4506949186325073, 0.4050905108451843, 1.4261339902877808, 0.8802462816238403, 0.05948669835925102, 1.0257481336593628, -0.11282545328140259, -0.4025545120239258, -0.20555007457733154, 0.44748005270957947, -1.4945307970046997, 0.8912542462348938, 1.8106180429458618, 0.47534215450286865, -0.49701905250549316, 0.6249334812164307, 0.7032354474067688, -0.15083934366703033, -0.03971463441848755, -0.21987445652484894, 0.16578486561775208, 0.8525235056877136, 0.06126568466424942, -0.2533535659313202, 0.6088864207267761, -0.7679145932197571, 0.29377713799476624, 0.9211841225624084, 1.0067576169967651, 0.441593736410141, 0.023758571594953537, -0.4986543655395508, 0.34943991899490356, -0.5037384033203125, 0.48942792415618896, 0.17912007868289948, 0.506393313407898, 0.3010372221469879, -0.275390625, -0.3596891462802887, -0.35743120312690735, -0.4819786548614502, -0.8116317987442017, 0.16729876399040222, 0.7381570339202881, -0.20146843791007996, -0.4701225757598877, -0.44304612278938293, -0.664495587348938, 0.10239937901496887, 0.769607663154602, 0.05103040859103203, -1.0970696210861206, -0.6509835720062256, 0.4175327718257904, 0.08443935960531235, 0.23401594161987305, 0.21806947886943817, 0.4158664047718048, -0.06582190841436386, -1.4921009540557861, 0.6662046909332275, 0.37182915210723877, -1.7853293418884277, -0.05214076489210129, -0.07562469691038132, 0.7415984869003296, 0.4027594327926636, 1.0140388011932373, -0.5698926448822021, 1.5308642387390137, -1.2284165620803833, -0.8873233199119568, -0.2704460918903351, -0.020197169855237007, 0.304820716381073, -0.12310396134853363, 0.4057183563709259, 0.26725631952285767, 0.1862560510635376, -0.21080027520656586, -0.18680405616760254, 0.36484095454216003, -1.3689024448394775, 0.09789424389600754, -0.781674325466156, 0.5370810627937317, -0.47532588243484497, 0.6883417963981628, 0.0828033983707428, 1.1813043355941772, -0.37481462955474854, 1.9035413265228271, -0.12574109435081482, -1.0005792379379272, -0.4508433938026428, 0.5700786709785461, -0.7353314161300659, -0.5689805746078491, -0.4955180883407593, -0.89431232213974, 0.3193117380142212, 0.07731104642152786, 0.2621358335018158, -0.34361574053764343, 0.17332591116428375, -0.05715493857860565, -0.014099566265940666, -0.9970501065254211, 0.44965529441833496, 0.5924243927001953, -1.9323303699493408, -0.002734158653765917, -0.0327339768409729, 0.5530233383178711, -0.9490167498588562, -0.1347111165523529, 1.3237192630767822, 1.2663159370422363, -0.19430023431777954, 0.5596639513969421, -0.4977478086948395, 1.1379022598266602, -0.6815384030342102, 0.5052469372749329, 0.09494943171739578, -0.045604899525642395, -0.7745842337608337, 0.21435463428497314, -0.33409783244132996, -0.479159414768219, -0.5513258576393127, -0.5271202921867371, 0.07437931001186371, 0.6425593495368958, 0.4602707326412201, 0.29764634370803833, 0.1519789695739746, 1.119896411895752, 0.33304500579833984, -0.2333916872739792, 1.204365849494934, -0.5769843459129333, -0.2813338339328766, 1.164792776107788, 1.205741047859192, -0.49372607469558716, -0.22187495231628418, 0.21329611539840698, -0.36463773250579834, 0.5351532697677612, 0.32738611102104187, -0.1696186363697052, -0.21255405247211456, 0.34562042355537415, -0.20609280467033386, -0.05993463099002838, -0.21631065011024475, -0.21058142185211182, -0.7207430005073547, 0.6684021949768066, -0.47925034165382385, 0.13760066032409668, -0.4485395550727844, -0.4726564884185791, -0.5107351541519165, -0.371932715177536, -0.3766736686229706, 0.5612375140190125, 0.5006357431411743, 0.28524449467658997, -0.8415365219116211, -0.6173771619796753, 0.7592878341674805, -0.7324415445327759, 1.030727744102478, 0.510242760181427, 0.2448296993970871, -1.1272889375686646, 0.7418997287750244, 0.16360127925872803, -0.4048728346824646, -0.13418053090572357, -1.7140536308288574, -0.6152080297470093, 0.14137235283851624, -0.4474159777164459, 0.9172172546386719, -0.021123744547367096, 1.151697039604187, 0.17965726554393768, -0.08325961232185364, -0.17779938876628876, -0.40922415256500244, -0.2921057641506195, -0.33330243825912476, -1.6258320808410645, -0.272255539894104, 0.30718687176704407, 0.8771895170211792, 0.9228496551513672, -0.6424562931060791, 0.07331462949514389, 0.62517249584198, -0.9346377849578857, -0.4539944529533386, -0.14989019930362701, 0.6371257901191711, 0.04057871922850609, -0.11474425345659256, -1.0764020681381226, -1.3911702632904053, 0.33154720067977905, -1.094980001449585, 0.047499194741249084, -0.48235857486724854, -0.9768320322036743, -0.17253488302230835, 0.05587070807814598, -0.1665315479040146, -0.3720601499080658, 0.15998448431491852, 0.8535434007644653, 0.6860135197639465, 0.24437955021858215, 0.43479228019714355, -0.507716953754425, 0.4205857217311859, 0.397358238697052, -0.1992068588733673, 0.8667399883270264, 0.42057666182518005, 1.5772043466567993, -0.2790394425392151, -1.0019900798797607, -0.001827790285460651, 0.43451830744743347, -0.3483763635158539, -0.04712885990738869, -1.0553516149520874, -0.5925674438476562, 0.560093104839325], [0.2716299891471863, 1.9378597736358643, -1.9707908630371094, -0.07027775794267654, 0.1018182709813118, 0.6830713152885437, 0.14081551134586334, 0.12874822318553925, -0.6393696069717407, -0.848108172416687, -0.5967137813568115, 0.06808449327945709, 0.018798483535647392, 0.4494878053665161, 0.4987258017063141, 1.3998603820800781, 1.2854030132293701, -0.06341433525085449, 0.19355757534503937, 0.7312001585960388, -0.5014523863792419, -1.1309441328048706, 0.06491797417402267, 0.19967271387577057, -0.33473843336105347, 0.023654606193304062, -1.457338571548462, -0.9047593474388123, -1.1282413005828857, -0.8519670367240906, 1.2536839246749878, 0.28106987476348877, 0.1395757645368576, -0.1558777540922165, -1.8707010746002197, -0.4782755970954895, 0.6304510831832886, 0.20354853570461273, -0.34717339277267456, 0.23611359298229218, 1.4023699760437012, 0.2850334346294403, -0.518805205821991, -1.7369582653045654, 1.1191848516464233, -0.002994721755385399, 0.6795684695243835, -0.7874767184257507, -0.03853783383965492, -0.9448371529579163, 0.8188810348510742, 0.0529063381254673, -0.04827991500496864, 0.5198966860771179, 1.2009358406066895, -0.7016285061836243, 0.251935213804245, 0.7152028679847717, 0.45565569400787354, 0.5181929469108582, 0.7654049396514893, -0.24820956587791443, 0.8794728517532349, 1.0183453559875488, 0.6456981897354126, -0.4455120861530304, 0.12711042165756226, 0.31790298223495483, -0.12184172868728638, -0.2273249477148056, 0.3631208539009094, 0.007603255100548267, -0.42413148283958435, -0.11539744585752487, -0.7213999629020691, 0.3948913812637329, 1.205801010131836, 0.49258777499198914, -0.2848481833934784, 0.031066378578543663, -0.889134407043457, 0.26312562823295593, 0.5804650783538818, 0.038804296404123306, -0.5120009779930115, -0.014045697636902332, 0.07208175212144852, -0.3308367133140564, -0.5651124119758606, 1.8764762878417969, 0.1787794828414917, 0.8353263735771179, 0.8659636378288269, -0.7884383201599121, -0.2999943196773529, -0.8751120567321777, 0.16958338022232056, -1.3622864484786987, -0.5228173732757568, -0.7447590231895447, -0.031763091683387756, -0.5271424055099487, 0.5234441757202148, 0.37338191270828247, 0.06832331418991089, 1.3013770580291748, 0.181487038731575, -0.7427215576171875, 0.26372894644737244, -0.11767417937517166, -0.36842578649520874, 0.04036611318588257, -1.3656911849975586, -1.1122597455978394, 0.019173547625541687, 1.4658316373825073, 1.8874608278274536, -0.062116291373968124, 0.2505062222480774, 0.7846857905387878, -0.7179259657859802, -0.4704720973968506, -0.5933560132980347, -0.21130609512329102, 1.1855597496032715, 0.16765107214450836, -0.6141304969787598, -0.15598635375499725, -0.021278884261846542, 0.3406537175178528, 1.1192609071731567, 0.4852631688117981, -0.12672409415245056, 0.9195183515548706, -0.41817107796669006, 1.473041296005249, -0.40524110198020935, -0.8779424428939819, -0.3202285170555115, 0.2905438542366028, 0.38863617181777954, -0.7213348150253296, -0.2532518804073334, -0.40079623460769653, -0.10412337630987167, -0.6371864080429077, 1.1790674924850464, -0.0419137142598629, -0.8154792189598083, 0.8593267202377319, -0.4892326593399048, -0.27885425090789795, 0.03198612853884697, 1.1678515672683716, 0.7961684465408325, -0.039734210819005966, 0.16452763974666595, 0.349168062210083, -0.10253918915987015, 0.16058748960494995, 1.0220868587493896, -0.3760681748390198, -0.6210490465164185, 0.031399328261613846, 0.7022969126701355, 0.24669261276721954, 0.9179385304450989, 0.8546888828277588, -0.03843645006418228, 0.7477677464485168, 0.16134725511074066, -0.5540549755096436, -0.5925832986831665, 1.181098222732544, 0.17095652222633362, -0.32519811391830444, 1.2020657062530518, -0.1599682867527008, -1.8598549365997314, -1.0063859224319458, 1.0346684455871582, -0.07579860091209412, 0.1919879913330078, -0.4378455877304077, 0.21724537014961243, -0.33280888199806213, 0.2839657962322235, -0.123445063829422, -1.1148293018341064, -1.4296313524246216, -0.18530254065990448, -0.46715834736824036, -1.1851660013198853, 0.5371993184089661, 0.15716001391410828, -1.0284885168075562, 0.4271625578403473, -0.2825576961040497, -0.6338146328926086, 0.44856929779052734, 0.5169180631637573, 0.017475347965955734, -1.0545259714126587, 0.059809207916259766, -0.4442700445652008, 0.4111751616001129, -0.9751678705215454, 0.5114967823028564, -0.9738864898681641, 0.1503743976354599, 1.0055372714996338, -0.5695411562919617, -1.348741054534912, 0.14949969947338104, 0.1499645859003067, -1.2692474126815796, 0.8377054333686829, 0.1453200876712799, -0.23652532696723938, 0.02887539751827717, 0.534411609172821, 0.19771932065486908, 0.1865837574005127, -0.0820332020521164, 0.5257711410522461, -0.11110147833824158, -0.5553139448165894, -1.603227138519287, -0.5503962635993958, -0.3000898063182831, -0.6942355632781982, -0.7683578133583069, 0.22159530222415924, 0.7276573777198792, -0.8265206217765808, 0.8080949783325195, -0.33989855647087097, -0.3205028474330902, -0.40688931941986084, 1.3494553565979004, 0.5111158490180969, 0.6475747227668762, -1.2834579944610596, -0.005991295445710421, -1.1565810441970825, -0.7383697032928467, 1.4202748537063599, -0.5926387906074524, 0.3647523820400238, 1.3777190446853638, 0.9796628952026367, -0.29511019587516785, 0.7284426689147949, 0.2566285729408264, -0.02225017361342907, -0.6415801048278809, -0.38612449169158936, -0.02313789166510105, -1.3781943321228027, 1.6932191848754883, 0.45381009578704834, -0.8487077355384827, 0.7379830479621887, -0.019500309601426125, -0.08524858951568604, -0.3352575898170471, -0.23026147484779358, -0.9215030074119568, 0.7089313864707947, -0.5085094571113586, -0.3241000771522522, 0.8221971988677979, 0.17146413028240204, 1.0206019878387451, -0.3413343131542206, -1.0280057191848755, -0.2557010352611542, 1.010788917541504, 0.2115633487701416, 0.8424239158630371, -0.40915125608444214, -0.9139524102210999, -0.7931910157203674, -0.23095804452896118, 1.0337070226669312, -0.2566666603088379, -0.6247161626815796, 0.9309271574020386, 0.6188156008720398, -0.39060866832733154, -0.10326913744211197, -0.009355323389172554, 0.1105865091085434, -0.3062174618244171, 0.06896747648715973, 0.33575838804244995, 0.8141629695892334, -0.6083991527557373, -0.7402823567390442, 0.18696050345897675, 0.5914597511291504, 1.244236707687378, 0.6770277619361877, 1.3851745128631592, -0.3103500008583069, 0.20144733786582947, -0.8418115377426147, 0.1339026540517807, -1.1102628707885742, -0.0543060377240181, -0.7063798308372498, -1.4684284925460815, 0.09512857347726822, -0.6890156865119934, 0.1848476082086563, 0.6853879690170288, 0.5110300183296204, 0.7925766110420227, 0.6093146800994873, -0.37653079628944397, -1.7041304111480713, -0.7272059321403503, -0.6241382360458374, -1.5058175325393677, 0.6691726446151733, 1.597350835800171, -1.2270936965942383, -0.3057643473148346, -0.049794942140579224, -0.4599135220050812, -0.023105086758732796, -0.20225682854652405, 0.5948153138160706, -1.4921083450317383, -0.8831988573074341, 0.11407860368490219, 1.7686976194381714, 0.4349656105041504, -0.3670571446418762, -0.749637246131897, 0.6894339919090271, 0.5065480470657349, 0.4805259108543396, -0.37876445055007935, 0.49446988105773926, -0.8059859871864319, 0.033620115369558334, 0.12046961486339569, 0.993886411190033, 0.2693963646888733, -0.5863215923309326, -1.187743902206421, -0.20080219209194183, -0.08474695682525635, -0.7498116493225098, 0.20393040776252747, -0.3549385368824005, 0.8983290791511536, -0.10842037200927734, 0.23802824318408966, 1.2241742610931396, -0.2217313051223755, -0.5399082899093628, -1.1659196615219116, 0.519301176071167, 0.7602221369743347, 1.4717692136764526, 1.107984185218811, 0.4559079110622406, 0.12130526453256607, -0.5158535838127136, 0.3438456356525421, 0.12409704178571701, 0.7616782188415527, 0.8168798089027405, -0.7259207367897034, -0.43162864446640015, -0.9964452385902405, 0.23676203191280365, 0.08273932337760925, -0.30083179473876953, 1.2160022258758545, -0.5992475748062134, -0.5700675249099731, 0.9347302317619324, 1.2245898246765137, -0.9500191807746887, -0.555553674697876, -0.1270681470632553, 0.674680233001709, -1.1604164838790894, 0.5604042410850525, -0.0068774232640862465, -0.6225007772445679, 0.26466965675354004, -0.9846709966659546, -0.9165198802947998, 0.19856242835521698, 0.6267994046211243, 1.08956778049469, -1.2184652090072632, 0.011715293861925602, -1.0655988454818726, 0.8585326075553894, 0.9236382842063904, 0.2308601438999176, 0.9162423014640808, 0.5515092611312866, -0.47231510281562805, 0.12762044370174408, 0.22013816237449646, 1.5391756296157837, -0.35652515292167664, -0.24011336266994476, -0.4090785086154938, -0.39318352937698364, -0.41814783215522766, -0.21701569855213165, -0.453444242477417, 0.26502808928489685, -0.6791994571685791, -0.07832609862089157, -0.341850221157074, -0.5610896348953247, 2.2088840007781982, -0.18123067915439606, -0.08046893775463104, -0.4693397879600525, 0.2081020325422287, -0.3350733518600464, 0.3202444911003113, 0.6167738437652588, -0.4487941563129425, -0.4294980466365814, -0.13348977267742157, 0.9217457175254822, 0.5809906125068665, -0.03416997939348221, 0.5213882327079773, 0.5880311131477356, 0.140165776014328, -0.0016507264226675034, 0.8439173698425293, 0.17215083539485931, 0.8691949248313904, 0.5144983530044556, 1.1269234418869019, -0.6351746320724487, -0.5245665907859802, 1.5004353523254395, -0.19428467750549316, 0.4070202708244324, -0.13629259169101715, 0.31804776191711426, 1.1261777877807617, -1.2129454612731934, -0.8382225632667542, 0.909561276435852, -0.8109909296035767, 0.032793596386909485, 0.39691343903541565, 0.4004902243614197, -1.2913391590118408, 0.3834388852119446, 0.16412398219108582, 0.033155657351017, 0.7528411746025085, -0.3971886932849884, 0.4182251989841461, 0.6805531978607178, -0.6633158326148987, 0.6142531037330627, -0.9875978231430054, 0.4738410413265228, -0.31073975563049316, -0.14277248084545135, 0.10208715498447418, 0.5780931115150452, 0.2870868146419525, 0.872564435005188, 0.006463420111685991, -1.0274819135665894, -0.10076936334371567, -1.0597469806671143, 0.44577717781066895, -1.171809434890747, 0.22219379246234894, -0.360612154006958, -0.3126806318759918, 0.22373110055923462, 0.5779585838317871, -0.5552456378936768, -0.7505347728729248, -1.0433597564697266, -0.7253741025924683, 1.2969942092895508, 0.3308974504470825, 0.6820834279060364, 0.36340975761413574, 1.0107864141464233, 0.7754538655281067, 0.07164782285690308, -0.49117669463157654, -0.04175736755132675, 0.1896294355392456, 0.32352471351623535, -0.6278379559516907, -0.3031497597694397, -0.19818761944770813, 0.20266634225845337, 0.9445635080337524, 0.6931564211845398, 0.3448824882507324, 0.44441989064216614, 1.4107434749603271, -0.5083453059196472, -0.5759080052375793, 0.05140167847275734, -0.32837268710136414, 0.4145607054233551, 0.4809052348136902, -1.3242555856704712, 0.1328694075345993, -0.7316083908081055, -1.691141963005066, 1.8342145681381226, 0.12271015346050262, 0.12733115255832672, 0.6074780225753784, 0.9126275181770325, -0.3099243938922882, 0.9530332684516907, 0.11575542390346527, 0.38002291321754456, -0.22291399538516998, -0.13911886513233185, -0.6802358627319336, -0.18411821126937866, 1.1938444375991821, -0.03250192105770111, -0.6849574446678162, 0.27303722500801086, -0.9277379512786865, 0.153151273727417, -0.9915623068809509, -0.2509545683860779, 0.8903512358665466, 0.8227643966674805, 0.839390218257904, -0.7083544135093689, 0.5978651642799377, -0.719525158405304, 0.31714314222335815, 0.3141489624977112, 0.5160397291183472, 0.3627317547798157, -0.5639669299125671, 0.511470377445221, -0.7788076996803284, 0.43693268299102783, 0.25969091057777405, -0.7344269752502441, 1.074629306793213, 0.8020516633987427, -0.4808347523212433, 1.2252857685089111, -0.36339953541755676, -0.36683908104896545, -0.8499307632446289, -0.3082652688026428, 1.1583349704742432, -1.1419957876205444, -1.1348549127578735, -0.25324100255966187, -0.67128586769104, -0.12333518266677856, 0.5298714637756348, -0.23443986475467682, -1.035166621208191, -0.9183358550071716, -0.27214688062667847, 0.5230721831321716, 0.2607749402523041, -0.7764040231704712, -0.028450530022382736, 0.1300881952047348, -0.9260928630828857, 0.06069780886173248, 0.5126834511756897, -1.546539545059204, -0.1152758002281189, -1.218195915222168, 0.5678155422210693, -0.3749036490917206, 0.4788326025009155, 0.04580904170870781, 0.9052317142486572, -1.202774167060852, -0.7006356716156006, -0.5604134798049927, -0.7368457317352295, 0.7251110076904297, 0.8389554619789124, -1.1071432828903198, 0.6532530188560486, -0.6915136575698853, -0.3959275484085083, -0.508527398109436, -0.4072655737400055, -0.4446215331554413, 0.5400794148445129, -0.13943055272102356, -0.07298161089420319, 0.572694718837738, 1.6180223226547241, 1.182674765586853, 1.4018263816833496, 0.07419035583734512, 1.361075520515442, -0.8119013905525208, -0.2985868453979492, -0.7033078670501709, 0.25306251645088196, -1.3017187118530273, -0.8616852760314941, 0.12619787454605103, -0.6602494716644287, -0.8874052166938782, 0.07807981967926025, 0.6988332271575928, -0.8429610729217529, 0.4365698993206024, 0.1241404339671135, 0.04404756799340248, -0.763018012046814, 0.3590603172779083, -0.008997812867164612, -0.9712598919868469, -0.013998571783304214, -0.11281754076480865, 0.2309168428182602, -0.8494380116462708, -0.79024338722229, 0.35412323474884033, 0.04957973212003708, -0.33293309807777405, -0.06124221533536911, 0.32329046726226807, 0.33290043473243713, -0.5328568816184998, 1.0727461576461792, 0.7995957732200623, -0.434301495552063, 0.23374295234680176, -0.1592419594526291, -0.16894342005252838, -0.23654645681381226, -0.6372815370559692, 0.38890284299850464, -0.7067145705223083, 0.8058156967163086, 0.15970061719417572, 0.15087267756462097, -0.15691576898097992, 0.5750005841255188, 0.2507108449935913, 0.675504207611084, 1.305929183959961, -0.7739053964614868, -0.8074561953544617, 1.243275761604309, 0.4952385425567627, -1.10185968875885, 0.44551074504852295, -0.025623686611652374, -0.584985613822937, 0.17021986842155457, 0.4341234564781189, 0.8353365063667297, -0.7133334279060364, 0.7164363861083984, 0.40922319889068604, -0.014269515872001648, -0.14256320893764496, -0.3998277187347412, -1.8025087118148804, -0.13378947973251343, -0.0016506239771842957, -0.13691522181034088, 0.6612281203269958, -1.0681606531143188, -0.9922338128089905, 0.3639048933982849, 0.39730215072631836, -0.3301078677177429, -0.8330240249633789, 0.5345970392227173, -0.44016000628471375, -0.10445767641067505, 0.6363768577575684, 0.49756184220314026, 1.3020325899124146, 0.2567007541656494, -0.0439789704978466, -0.7386801838874817, 0.11555293202400208, 0.8220387101173401, -0.05360759422183037, -0.1349267065525055, -0.34526127576828003, 0.4831487834453583, 0.21505571901798248, -0.19959671795368195, -0.1127350851893425, -0.6466765403747559, -0.12600445747375488, -0.3605845868587494, -0.26260343194007874, 0.3275968134403229, 0.13340705633163452, 0.8545044660568237, -0.7021461725234985, -0.9220292568206787, -0.8278347253799438, 0.1457248479127884, -0.30930471420288086, 0.9890583157539368, 0.27639949321746826, 0.8077155947685242, -0.29262399673461914, -0.6589390635490417, -0.23762832581996918, -0.7448197603225708, 0.4692325294017792, -0.0664660856127739, 0.4327560365200043, 0.0916377529501915, -0.41266798973083496, 0.45296958088874817, -1.2597250938415527, 0.001851685345172882, -0.33031195402145386, 0.2669964134693146, -0.4349677860736847, -0.9871876835823059, -0.7910919189453125, -1.0106581449508667, 0.1201682984828949, 0.48087450861930847, 0.7230570912361145, 0.5639845728874207, 0.5802404284477234, -1.18172025680542, -0.09919024258852005, 1.040894865989685, -0.5826483964920044, 0.17690257728099823, 1.707197666168213, 1.0076406002044678, 0.27496904134750366, -0.15624785423278809, 0.007129565812647343, 0.5420845746994019, -1.2832547426223755, -0.027694065123796463, -0.5951235890388489, -0.3255907893180847, -0.3425292372703552], [0.3334190249443054, 1.8408290147781372, -1.7979404926300049, -1.0414823293685913, -0.0005459459498524666, -0.525019109249115, 0.788112461566925, 0.43000704050064087, -0.29931339621543884, -0.7464616894721985, -0.8297680020332336, -0.05110343545675278, 0.9569726586341858, 0.7332573533058167, 0.27570533752441406, 0.5026518702507019, 0.7533797025680542, -0.04848892241716385, 0.525977611541748, 0.7833502292633057, 0.22960799932479858, -1.3379521369934082, 0.41296911239624023, -0.07858466356992722, 0.3269295394420624, 0.0916893258690834, -1.0493892431259155, -0.2139812409877777, -1.1370649337768555, -1.975278615951538, 1.2620567083358765, 0.6780591011047363, 0.353148490190506, -0.250324010848999, -1.5481624603271484, -0.9568122625350952, 0.5561535358428955, -0.019870754331350327, -0.7046836018562317, 0.8441654443740845, 1.626387357711792, -0.18227805197238922, -0.84536212682724, -0.8673904538154602, 0.9880071878433228, -0.5928212404251099, 0.3482338488101959, -1.026308298110962, -0.11169281601905823, -1.5293476581573486, 0.43981432914733887, 0.013859105296432972, -0.1110030859708786, 1.0700922012329102, 0.8185846209526062, -1.0068429708480835, 0.4436299204826355, 0.7890673875808716, -0.21025590598583221, 0.7342664003372192, 0.9070760607719421, -0.0031643109396100044, 0.43781009316444397, 0.7220231890678406, 0.09906399995088577, -0.2965361773967743, 0.9754064679145813, 0.5670037865638733, 0.26557981967926025, 0.8688219785690308, 0.7247104644775391, 0.2519421875476837, -0.35544899106025696, 0.18152198195457458, -0.15792639553546906, -0.37086164951324463, 0.22268171608448029, 0.6895763874053955, -0.3686327338218689, 1.4048519134521484, -0.35731351375579834, 0.09569796174764633, -0.23424562811851501, -0.3129187524318695, -0.13480645418167114, 0.037136662751436234, -0.4090626537799835, -0.5869958400726318, -0.36395445466041565, 1.5610076189041138, 0.13875561952590942, -0.08283808827400208, 0.46416378021240234, -0.43696874380111694, -0.5484653115272522, -0.9534568786621094, 0.4847048819065094, -0.7992455363273621, -0.37744107842445374, -0.716550886631012, -0.2244666963815689, -0.18269628286361694, 1.0616205930709839, 0.6256149411201477, 0.5619068145751953, 1.391194462776184, 0.9173288345336914, -1.3375493288040161, -0.4031594395637512, 0.2731170952320099, 0.04919165372848511, 0.10234884172677994, -0.8127318620681763, -0.9484732747077942, -0.4184790849685669, 0.9591607451438904, 0.872348427772522, -0.10375744849443436, 0.7142546772956848, 0.448207288980484, -0.34837085008621216, -0.9590675234794617, -0.7939853072166443, 0.08869931101799011, 1.5257829427719116, 0.15358582139015198, -0.6011655330657959, 0.17429614067077637, 0.34879299998283386, -0.6697434186935425, 0.12478100508451462, -0.0773129016160965, -0.5266097187995911, 0.6718327403068542, -0.22027496993541718, 1.3192543983459473, -0.603384792804718, -1.2165461778640747, 0.6867413520812988, -0.06728558987379074, -0.09145208448171616, -0.1544327735900879, -0.7366585731506348, -0.5907362103462219, 0.21450287103652954, -0.1655454933643341, 0.4694986641407013, -0.3651154339313507, -0.3592343330383301, 0.891446590423584, -1.3901019096374512, -0.027460282668471336, -0.4913928806781769, 1.215477705001831, 0.6593068838119507, 0.20699554681777954, 0.2187020480632782, -0.2905674874782562, 0.152180016040802, 0.5105965733528137, 0.821674108505249, 0.1589699387550354, -0.5862846970558167, 0.9540587067604065, 0.5800046920776367, 0.060503605753183365, 0.9108527302742004, 0.5402639508247375, -0.5899251103401184, 0.8024207353591919, -0.4708150625228882, -0.49137604236602783, -0.8620401620864868, 0.5452237725257874, 0.27581676840782166, -0.23625735938549042, 0.9776188731193542, -0.43904030323028564, -0.8533457517623901, -0.5645706057548523, 1.0053348541259766, -0.540411114692688, 0.011005629785358906, 0.21108968555927277, -0.030635757371783257, -0.26962125301361084, -1.0519312620162964, -0.7976141571998596, -0.5232551693916321, -0.8225666880607605, -0.9014574885368347, -0.2373083233833313, -0.9381224513053894, 1.0319855213165283, -0.7471194267272949, -0.5761736035346985, 0.5606555342674255, -0.4916374683380127, -0.5852291584014893, 0.3607737123966217, 0.32726967334747314, -0.20024478435516357, -1.5467092990875244, -0.23042240738868713, -0.36037421226501465, 0.6211014986038208, -0.12699317932128906, 0.2026478350162506, -0.7090694904327393, 0.23230886459350586, 1.4906560182571411, -0.3079495429992676, -1.1388450860977173, 0.12359768152236938, 0.17212940752506256, -1.2699898481369019, 0.013488790951669216, -0.16243956983089447, 0.1904277503490448, -0.01842084899544716, 0.1883544772863388, 0.27351030707359314, 0.4324115812778473, 0.132688507437706, 0.3740512430667877, -0.08062132447957993, -1.16128408908844, -0.23893548548221588, -0.33952999114990234, 0.32665199041366577, -0.6093334555625916, -0.9294437766075134, 0.6682776212692261, 0.6616576313972473, -0.7379767298698425, 0.5398364663124084, -0.98255854845047, 0.7408765554428101, 0.3169322609901428, 1.2120708227157593, 0.897260844707489, 0.11250606179237366, -0.510545015335083, -0.03120841644704342, -0.8230271935462952, -0.19210797548294067, 0.5982602834701538, -0.5928502082824707, -0.2713780105113983, 1.4202402830123901, 0.48989757895469666, -0.42080679535865784, 0.8574966192245483, -0.6170955896377563, -0.020356133580207825, -1.2503336668014526, 0.1678721308708191, -0.1652689129114151, -0.4691942632198334, 1.2651007175445557, 0.4195713400840759, -1.0650306940078735, -0.23149776458740234, -0.1538078337907791, 0.26798006892204285, -0.7828642129898071, -0.27922773361206055, -0.20710915327072144, 0.7598503232002258, -0.3037329614162445, 0.033991582691669464, -0.16946221888065338, -0.7045051455497742, 1.506610631942749, -0.20490719377994537, -0.23896357417106628, 0.13516999781131744, 1.2806780338287354, 0.009369014762341976, 0.9890422821044922, -0.6327876448631287, -1.9077056646347046, -1.4343730211257935, -0.6897619366645813, 1.3396273851394653, -0.06470201164484024, -0.537447988986969, 0.45061194896698, 1.4572458267211914, -0.4026890993118286, 0.8853451013565063, 0.1396840512752533, 0.04509836062788963, 0.17036984860897064, 0.4700714647769928, 0.12473580986261368, -0.02138872817158699, -0.5713522434234619, -0.8769077062606812, -0.2724195718765259, 0.5061737298965454, 0.8598513007164001, 0.963637113571167, 1.3420543670654297, -0.16154992580413818, 0.25544553995132446, -0.8304087519645691, 0.31659677624702454, -0.391448974609375, 0.2939918339252472, -0.17219439148902893, -0.9017881751060486, 0.09891753643751144, -0.21465995907783508, 0.2373959869146347, 0.4263359308242798, 0.4322851896286011, 0.603081226348877, 0.4939716160297394, -0.49586525559425354, -1.167167067527771, -0.7229800820350647, 0.1391892284154892, -1.261523723602295, 0.5371131896972656, 0.7881342172622681, -1.171246886253357, 0.12912395596504211, 0.13861185312271118, -0.2002180814743042, -0.004813791252672672, -0.08625553548336029, 0.4530782699584961, -0.9806379079818726, 0.44414815306663513, -0.455066978931427, 1.3492431640625, -0.38523781299591064, 0.06885406374931335, -0.4393778145313263, 0.7372402548789978, -0.09813010692596436, -0.006483287550508976, -0.21434342861175537, 0.4589484930038452, -0.3513546884059906, 0.1068413257598877, -0.06921211630105972, 0.1793527603149414, 1.0509285926818848, -0.3327091336250305, -0.6929826140403748, -0.869512140750885, -0.17440667748451233, -0.6474826335906982, 0.47003403306007385, 0.18161872029304504, 1.2636866569519043, -0.07340215891599655, -0.4094786047935486, 1.0838209390640259, -0.14040310680866241, 0.37008965015411377, -0.5315303206443787, 0.9968949556350708, 0.45172014832496643, 1.7377256155014038, 0.9021387100219727, -0.30513861775398254, 0.8281757831573486, -0.28314146399497986, -0.09104147553443909, -0.2916043698787689, 0.4617859125137329, 0.240465447306633, -0.14339424669742584, -0.5371282696723938, 0.13809774816036224, 0.2770281732082367, -0.4798796474933624, -0.5218200087547302, 0.9742332100868225, 0.10566453635692596, -0.33467593789100647, 1.098660945892334, -0.0808434933423996, -0.15396752953529358, -0.28623390197753906, 0.03582196682691574, 0.1325995922088623, -0.519382119178772, -0.14649955928325653, -0.16460877656936646, -0.6149947643280029, 0.3100724220275879, -0.2749706208705902, -0.840979814529419, -0.46227535605430603, 0.4358566105365753, 1.3398823738098145, -1.4147896766662598, -0.6241315007209778, -0.3040822446346283, 0.6157984733581543, 0.9258010387420654, 0.2085428684949875, 0.9856663942337036, 0.22262482345104218, -0.5437940955162048, 0.34381169080734253, 0.613315224647522, 1.3880127668380737, -0.24271897971630096, -0.26816585659980774, -0.20336902141571045, -0.37813395261764526, 0.23016402125358582, -0.6448761224746704, -0.9747448563575745, 0.0745922103524208, -0.7629749774932861, -0.05607791990041733, 0.5468653440475464, -0.42479580640792847, 1.4591026306152344, -0.4108589291572571, 0.011607213877141476, 0.11941961199045181, 0.20593443512916565, -1.010233998298645, -0.19990554451942444, 0.06775856763124466, -0.04346640408039093, -0.2712154686450958, 0.37436798214912415, 0.3491038382053375, 0.6998201608657837, 0.6110222339630127, 0.45932939648628235, 0.48814070224761963, 0.39439892768859863, -0.23154713213443756, 0.5252939462661743, 0.5219303369522095, 0.8040488958358765, 0.6714391112327576, 1.5689235925674438, 0.12739169597625732, -0.9550977945327759, 1.02920401096344, -0.18527504801750183, 0.5807302594184875, 0.5595016479492188, -0.02852565050125122, 1.3262183666229248, -1.0094094276428223, 0.17043879628181458, 1.1232670545578003, -0.5255648493766785, 0.3356458246707916, 0.2915107309818268, -0.189676433801651, -1.4129632711410522, -0.3202202618122101, 0.38378024101257324, -0.4892844557762146, 1.2958136796951294, -0.005693260580301285, 0.2891349196434021, 0.8270397782325745, -0.34834668040275574, 0.1375192552804947, -1.2076377868652344, -0.03429390490055084, 0.22108829021453857, 0.03862982988357544, 0.41920047998428345, 0.8931464552879333, 0.9114581346511841, 1.0911166667938232, -0.7979124188423157, -1.6450570821762085, 0.09966258704662323, -0.8524611592292786, 0.25424033403396606, -0.39171746373176575, -0.4867793023586273, -0.7291246056556702, -1.0899276733398438, 0.02675705775618553, -0.7611295580863953, -1.0538588762283325, -0.30464741587638855, -0.12756124138832092, -1.338943600654602, 0.326220840215683, -1.0604877471923828, 0.9495723247528076, 0.46185946464538574, 0.4338623285293579, 0.6686052680015564, 0.013450216501951218, -0.8033345341682434, 0.23884259164333344, 0.06029147654771805, 0.3643161952495575, 0.21165594458580017, -0.3489760756492615, -0.6528406739234924, 0.6166228652000427, 1.148749589920044, 0.21280571818351746, 0.08631888031959534, 0.35418668389320374, 1.7563576698303223, -0.7949938774108887, -0.5939011573791504, 0.6236463189125061, -0.7717180252075195, 0.627616822719574, 0.1836841106414795, -0.9955337643623352, 0.3927219808101654, -0.033127423375844955, -2.1204397678375244, 1.3326705694198608, 0.185487300157547, 0.04937593638896942, 0.5896927714347839, 0.46856629848480225, 0.2241402268409729, 0.6768608689308167, -0.6089712381362915, -0.42715075612068176, 0.2960273325443268, -0.47854915261268616, -0.7901099324226379, 0.7189560532569885, 1.2428526878356934, 0.15394318103790283, -0.8506629467010498, 0.44966521859169006, -0.27765533328056335, -0.13860727846622467, -0.31668421626091003, -0.12699690461158752, 0.8626516461372375, 0.44464316964149475, 0.36496707797050476, -1.0833133459091187, 0.44601526856422424, -0.859551191329956, 0.43109798431396484, 0.34030917286872864, 0.7171826958656311, 0.7410513162612915, -0.27084723114967346, 0.3458555042743683, -0.08960143476724625, -0.5700292587280273, -0.5087192058563232, -1.190165400505066, 0.8803419470787048, -0.33439117670059204, -0.3453204333782196, 0.022586174309253693, -0.46139732003211975, -0.2042292356491089, -0.39730241894721985, 0.8533762693405151, 0.48416996002197266, -1.1262825727462769, -0.6987108588218689, 0.04481135308742523, -0.7613378763198853, 0.08280592411756516, 0.7270792126655579, -0.22613009810447693, -0.9892118573188782, -1.0925344228744507, -0.02368774265050888, -0.09013360738754272, 0.7447690367698669, -0.28246578574180603, 0.15338487923145294, -0.30900081992149353, -1.6540799140930176, 0.629689633846283, -0.13894446194171906, -1.449448585510254, -0.41751375794410706, -0.885201632976532, 0.7016091346740723, -0.018811339512467384, -0.054202623665332794, 0.24931202828884125, 1.2760188579559326, -0.6024713516235352, -0.705411970615387, -0.5457589626312256, -0.5097823143005371, 0.292622447013855, 1.4885588884353638, -0.9207865595817566, 0.7567400932312012, 0.15988881886005402, -0.6070716381072998, -0.19975319504737854, -0.3033539354801178, -1.070908546447754, 0.21549883484840393, 0.25634369254112244, -0.18603576719760895, 0.6113758683204651, 1.4566577672958374, 0.20461174845695496, 1.1249700784683228, 0.7127373814582825, 2.014984130859375, -0.6691578030586243, -0.8283072710037231, -0.6029520034790039, 0.790681004524231, -0.7224436402320862, -0.743356466293335, -0.39183303713798523, -0.5752395391464233, -0.19024010002613068, 0.10977593064308167, 0.8628540635108948, -0.702957808971405, 0.5862231254577637, 0.27618664503097534, -0.733273983001709, -1.197922706604004, 0.8245530128479004, 0.6291692852973938, -1.556523323059082, 0.05837653577327728, 0.21825604140758514, 0.41612058877944946, -0.9598617553710938, -0.05650228634476662, 0.8132143020629883, 0.26848098635673523, 0.4492444694042206, 0.2694215178489685, -0.1072075366973877, 0.44336235523223877, -0.45743343234062195, 0.8327332735061646, 1.115692138671875, -0.28813958168029785, 0.14331048727035522, 0.9617640972137451, 0.17164264619350433, 0.2066143900156021, 0.13401299715042114, -0.8979818224906921, -0.48891931772232056, 0.7731665968894958, -0.10709120333194733, 0.16359838843345642, -0.5800333023071289, 0.873321533203125, 0.62840735912323, 0.27348044514656067, 1.3234843015670776, -0.3702090084552765, -0.7780998945236206, 0.5798372626304626, 0.8008397221565247, -0.5657570362091064, 0.2557336986064911, 0.2153017222881317, 0.5931148529052734, 0.22527408599853516, 0.5508748292922974, 0.4485268294811249, -0.3666287362575531, 0.7281222343444824, 0.40086451172828674, -1.1079427003860474, -0.27694958448410034, -0.5019690990447998, -1.5397357940673828, -0.4437902271747589, 0.09135741740465164, -0.9344077706336975, 0.41032469272613525, -0.7724291086196899, -0.771501362323761, -0.5238510370254517, -0.9449048638343811, 0.0708952397108078, -1.049998164176941, 0.25767961144447327, -0.965663731098175, -0.11798490583896637, 1.09619140625, -0.11467470228672028, 1.2920303344726562, 0.15067540109157562, -0.10964661836624146, 0.1623939573764801, 0.16630922257900238, 0.20676735043525696, -0.04641595110297203, -0.13139714300632477, -1.117010474205017, -0.10543052852153778, -0.4280325174331665, -0.42751386761665344, 0.6148802638053894, -0.5252954959869385, 0.2944365441799164, -0.2596719264984131, -0.12172320485115051, 0.17133623361587524, 0.049441032111644745, 0.47167521715164185, -0.5198290944099426, -0.9780421853065491, -0.31241700053215027, -0.07028871774673462, 0.39872896671295166, 0.8255195021629333, -0.37257739901542664, 0.8913904428482056, 0.0704863891005516, -0.4536049962043762, -0.5250786542892456, -0.5418992042541504, 0.7239956855773926, -0.326462984085083, -0.0823444128036499, -0.6208831071853638, -0.8998677134513855, -0.0524057112634182, -1.3421300649642944, -0.06822162121534348, -0.9606426954269409, -0.8673550486564636, -0.027454480528831482, -0.5077983140945435, -1.0866841077804565, -0.5489548444747925, 0.0004555918276309967, 0.37514159083366394, 0.14662882685661316, 0.45993292331695557, -0.3610151410102844, -0.4524039030075073, 0.09365793317556381, 0.762836754322052, 0.7039995193481445, 0.6744648218154907, 1.5124931335449219, 1.6636027097702026, 0.8981133103370667, -0.41268399357795715, 0.015654172748327255, 0.33548641204833984, -0.8720369338989258, -0.4062229096889496, -1.0124763250350952, 0.046117428690195084, 0.3962322771549225], [0.18413449823856354, 2.0837111473083496, -1.7279754877090454, -0.1171262338757515, 0.4953274428844452, 0.30922743678092957, 1.1506788730621338, 0.04109163209795952, 0.006524684838950634, -1.2793583869934082, -0.7456907629966736, 0.35674723982810974, 0.3744751214981079, 0.6219109892845154, 0.20853666961193085, 1.2353953123092651, 0.8602384328842163, 0.1314619779586792, -0.011568216606974602, 0.6846189498901367, 0.14034435153007507, -1.7445895671844482, 0.3121461868286133, -0.3654906153678894, -0.14541397988796234, -0.32416942715644836, -1.3600478172302246, -0.21130944788455963, -1.4288575649261475, -0.3468471169471741, 1.209473729133606, -0.13708028197288513, 0.16035443544387817, 0.19332483410835266, -1.910096287727356, -0.08002263307571411, 0.6067988872528076, -0.1390359103679657, 0.7875328063964844, 0.6649031639099121, 1.357032299041748, -0.3154314160346985, -0.3137621283531189, -0.9274731874465942, 1.019275426864624, -0.4377083480358124, 0.8995318412780762, -0.9391233921051025, 0.061274491250514984, -1.2754216194152832, 0.8052161335945129, -0.09526826441287994, -0.12908504903316498, 1.266790747642517, 1.5315735340118408, -1.6500130891799927, 0.5707104802131653, 0.3458419740200043, -0.21084722876548767, 0.576653778553009, 0.6840120553970337, 0.9073731899261475, 1.0789028406143188, 1.1846879720687866, 0.4342220723628998, -0.19788506627082825, 0.10817424952983856, -0.19881153106689453, 0.44511720538139343, 0.6480082273483276, 0.4192187190055847, 0.23001240193843842, -0.2479216456413269, 0.3304380476474762, -0.27768686413764954, 0.9536049962043762, 0.5238373279571533, 0.1867009699344635, -0.5403819680213928, 1.0273534059524536, 0.3561916947364807, -0.04321634769439697, -0.41357260942459106, -0.23415029048919678, -0.3660060167312622, -0.18032674491405487, 0.45477408170700073, -0.42505770921707153, -0.8769945502281189, 1.60139000415802, 0.1806415617465973, 0.2372138798236847, 0.20662976801395416, -0.169538214802742, -0.06697457283735275, -0.9998188614845276, -0.24056841433048248, -0.4978923797607422, -0.020016444846987724, 0.06201544404029846, -0.5515591502189636, -0.655975878238678, -0.3804985582828522, 0.7854217290878296, 0.8255688548088074, 1.169260025024414, -0.10719900578260422, -0.9722893834114075, -0.1332821249961853, 0.3167910575866699, -0.12646150588989258, -0.37941774725914, -0.7631214261054993, -1.1016343832015991, -0.3863660395145416, 1.4259670972824097, 1.0355414152145386, -0.012689891271293163, 0.639690637588501, 0.8093799352645874, -0.3854685425758362, -1.0261768102645874, -0.5955295562744141, -0.4038293659687042, 1.400387167930603, 0.489761084318161, -0.848315954208374, -0.15015222132205963, -0.2813178598880768, 0.04925618693232536, 0.517798662185669, -0.09323276579380035, -0.3280741572380066, 0.5530639290809631, -0.6436508893966675, 1.4494905471801758, -0.6874962449073792, -1.025863528251648, 0.4364235997200012, 0.17623840272426605, 0.632725715637207, 0.10775774717330933, -0.6553841829299927, -0.6299934387207031, 0.25794148445129395, -0.11343885213136673, -0.05862511321902275, -0.12969328463077545, -0.5071772933006287, 0.5683485865592957, -1.8576958179473877, 0.6033258438110352, 0.19155742228031158, 1.2644362449645996, 0.7645273208618164, -0.931571900844574, 0.06728431582450867, 0.20781543850898743, 0.09299518913030624, -0.2512337565422058, 0.7857160568237305, -0.008542587980628014, -0.4316943883895874, 0.6286205053329468, 0.4225371479988098, -0.4701515734195709, 0.3408922851085663, 0.33663010597229004, -0.006360780447721481, 0.8550477027893066, -0.28760820627212524, -0.21657627820968628, -0.5290160179138184, 0.16677866876125336, 0.013586228713393211, -0.8125803470611572, 0.693678617477417, 0.25852206349372864, -1.1526525020599365, -1.101862907409668, 1.137142539024353, -0.4050225615501404, -0.025422554463148117, 0.03429937735199928, -0.12605471909046173, 0.09868774563074112, -0.28782153129577637, -0.12602360546588898, -0.8835120797157288, -0.8668452501296997, -0.18717272579669952, -0.6683947443962097, -0.9419469237327576, 0.7848024964332581, -0.8025608062744141, -0.8446221351623535, 0.5072183609008789, 0.05937228724360466, -0.3588467836380005, -0.1404784470796585, -0.20850929617881775, -0.5300373435020447, -1.2602779865264893, -0.02522519789636135, -0.2707577049732208, 0.4630768895149231, -0.08451381325721741, -0.1060059517621994, -0.4655739963054657, -0.042532000690698624, 0.6372015476226807, -0.372590571641922, -1.3316594362258911, 0.007095403037965298, -0.130097895860672, -1.3400648832321167, 0.09468820691108704, -0.2440546452999115, -0.5382346510887146, 0.08184270560741425, 0.61396324634552, -0.11746512353420258, 1.0034937858581543, -0.14070847630500793, 0.8326869606971741, -0.5652668476104736, -0.6953075528144836, -0.47815626859664917, -0.3182532787322998, 0.1946299523115158, -0.11784950643777847, -0.6645117402076721, 0.6869974732398987, 0.42622196674346924, -0.18245156109333038, 0.8966456651687622, -0.331574410200119, 0.42428064346313477, 0.24126258492469788, 0.8012380599975586, 0.7001830339431763, 0.15512514114379883, -0.9523499011993408, -0.5593985319137573, -0.5929757952690125, -0.6288846731185913, 0.22011002898216248, -0.10544996708631516, -0.30498504638671875, 1.2616407871246338, 1.1858892440795898, -0.45450910925865173, 0.7317366600036621, -0.6159157156944275, 0.06483792513608932, -0.8954948782920837, -0.05493911728262901, 0.07574496418237686, -0.5309841632843018, 0.9794313311576843, 0.21955791115760803, -1.0629839897155762, -0.009679947048425674, -0.5863623023033142, 0.3286862373352051, -0.7326334118843079, -0.29306715726852417, -0.9709829688072205, 0.8193783760070801, -0.5022976398468018, 0.006192801520228386, -0.5397099256515503, -0.7737376093864441, 0.7158889770507812, -0.03472251445055008, -0.3514823913574219, 0.07121795415878296, 1.462058424949646, 0.06310868263244629, 0.9042552709579468, -0.49171000719070435, -1.6919968128204346, -1.0376852750778198, 0.24298644065856934, 0.8481622338294983, -0.01950981840491295, -0.648128092288971, 0.3828018605709076, 0.8918812274932861, -0.472980797290802, 0.7920774817466736, 0.2833281457424164, 0.12451616674661636, -0.11147486418485641, 0.3077766001224518, -0.2824689745903015, 0.27581125497817993, -0.5435287952423096, -0.7812063694000244, -0.1968730241060257, 0.2758351266384125, 1.004928469657898, 1.0776230096817017, 0.76332026720047, -0.102704256772995, -0.32564449310302734, -0.6968367099761963, 0.22947773337364197, -0.867864727973938, -0.3842129707336426, -0.1377880722284317, -1.0368766784667969, 0.13530635833740234, -0.32338130474090576, -0.04790221154689789, 0.9660369157791138, -0.1168166771531105, 0.10769058018922806, 0.837171196937561, -0.07751597464084625, -0.9649884700775146, -0.36142590641975403, -0.5789679884910583, -0.9306766390800476, 0.6290889382362366, 1.1162047386169434, -0.9115285873413086, 0.2681005001068115, 0.8792864084243774, 0.18364006280899048, -0.4262498915195465, -0.40941929817199707, -0.0374448224902153, -0.9099858403205872, -0.06680111587047577, -0.6908400058746338, 1.4825773239135742, 0.06930190324783325, 0.09108806401491165, -0.1666228324174881, 0.28436505794525146, 0.46384546160697937, -0.48133230209350586, -0.5018265843391418, -0.26205500960350037, -0.7275223135948181, -0.412771999835968, -0.17586718499660492, 0.5230540633201599, 0.34240978956222534, -0.3716873824596405, -0.964122474193573, -0.28394636511802673, -0.15671345591545105, -1.0083223581314087, 0.13390608131885529, -0.005493019707500935, 1.1297712326049805, -0.449228435754776, 0.30173972249031067, 0.7828348875045776, 0.30518588423728943, 0.6403894424438477, -0.8102409839630127, 0.31844592094421387, 0.8270749449729919, 1.6515947580337524, 0.5772270560264587, -0.08088432252407074, 0.2297600656747818, -0.5263319611549377, -0.43246889114379883, -0.11700708419084549, 1.082115888595581, -0.1937841773033142, -0.19310855865478516, -0.049087975174188614, -0.3614826500415802, 0.33963990211486816, -0.2568426728248596, 0.008933963254094124, 0.5289790630340576, -0.1816297471523285, -0.5096023678779602, 0.9675421714782715, -0.008548465557396412, -0.3297409117221832, -0.6095813512802124, -0.01866002380847931, 0.31273353099823, -0.40135741233825684, 0.7106982469558716, -0.512197732925415, -0.3239845335483551, 0.507537305355072, -0.4116279184818268, -0.4716081917285919, -0.4169504940509796, 0.6782286167144775, 0.8706382513046265, -1.1036440134048462, -0.25390011072158813, -0.5986507534980774, 0.49076205492019653, 0.8188298344612122, -0.30048879981040955, 0.8008508682250977, 0.44784289598464966, -0.6986345648765564, -0.40244483947753906, 0.3306504487991333, 1.0532883405685425, 0.31234249472618103, 0.06857677549123764, -0.10557352751493454, -0.8010270595550537, 0.5008152723312378, -0.81816166639328, -0.23795980215072632, 0.11895403265953064, 0.0026986245065927505, 0.3480057418346405, 0.5488244295120239, -0.36835145950317383, 1.783774733543396, 0.20631419122219086, -0.13253240287303925, 0.23081684112548828, -0.5160272717475891, -0.8242990970611572, 0.15369047224521637, 0.7126886248588562, -0.5905448198318481, -0.8343626260757446, -0.18917274475097656, 0.43990346789360046, 1.0673009157180786, 0.6870261430740356, 0.587743878364563, 0.3980318605899811, 0.7618839740753174, 0.11810826510190964, 0.4575839638710022, 0.15572865307331085, 1.1872599124908447, 0.4912453591823578, 1.2762115001678467, -0.2645959258079529, -0.7931103110313416, 1.0155924558639526, -0.4728258550167084, 0.17932702600955963, 0.7318230867385864, 0.1642848700284958, 1.2106800079345703, -1.0640031099319458, -0.4051268994808197, 0.39720776677131653, 0.002279209438711405, 0.7901731133460999, 0.03503241017460823, -0.3896150290966034, -1.239853024482727, 0.13117052614688873, 0.43243393301963806, 0.11841847747564316, 0.3065840005874634, -0.26561757922172546, 0.5595422387123108, 0.37243473529815674, -1.0819283723831177, 0.29678377509117126, -0.9021772742271423, 0.1836216002702713, -0.40392985939979553, 0.4117308557033539, 0.9546284079551697, 0.10563160479068756, 0.8457822203636169, 1.4509859085083008, -0.3529362082481384, -1.0225228071212769, 0.10381321609020233, -1.3390883207321167, 0.6344645619392395, -0.45365482568740845, -0.3580837547779083, -0.47764208912849426, -0.7182601690292358, 0.2111855149269104, 0.16885261237621307, -0.9644832015037537, -0.20744812488555908, -0.17496901750564575, -0.9312297701835632, 0.5770099759101868, 0.09698209911584854, 1.011259913444519, 0.31770530343055725, 0.14284542202949524, 0.24462683498859406, 0.4635041654109955, -1.1193788051605225, 0.32646650075912476, 0.034283347427845, 0.47367382049560547, -0.2215823084115982, -0.6810360550880432, -0.7584416270256042, 0.36537158489227295, 0.8741426467895508, -0.29021185636520386, -0.08619687706232071, 0.7768738269805908, 1.3221274614334106, -0.4842596650123596, -0.2594165802001953, 0.3615171015262604, -1.1280286312103271, 0.8819877505302429, 0.5255786776542664, -1.0143351554870605, 0.46327123045921326, -0.7663809061050415, -1.5902996063232422, 1.5801615715026855, 0.20652247965335846, -0.10312927514314651, 0.8039422631263733, 0.7120165824890137, 0.3029378354549408, 0.9684257507324219, -0.514150857925415, -0.3775028884410858, -0.10976249724626541, 0.24158473312854767, -0.8164911866188049, 0.5950050354003906, 0.7599491477012634, -0.16887328028678894, -0.7494069337844849, 0.05728629231452942, 0.12311244755983353, -0.2877057194709778, -0.5654552578926086, 0.16981391608715057, 0.33605140447616577, 0.9860542416572571, 0.6246710419654846, -0.8074834942817688, 0.8141096830368042, -0.6077095866203308, 0.13660597801208496, 0.6412394046783447, 0.8843047022819519, 0.4438413977622986, -0.17249460518360138, 0.18304239213466644, -0.2927381992340088, -0.6619570851325989, 0.1541827917098999, -0.5731401443481445, 0.5588854551315308, 0.3337499499320984, 0.31600648164749146, 0.7462021708488464, -0.2370055913925171, 0.4137190580368042, -1.066085934638977, 0.3866969048976898, 0.8041581511497498, -0.5658154487609863, -0.5809851288795471, 0.5057829022407532, -0.2938539385795593, 0.030743911862373352, 0.4222317636013031, 0.12090890854597092, -0.8875133991241455, -0.7912155389785767, -0.07346071302890778, -0.7477782964706421, 1.1707788705825806, 0.15333183109760284, 0.31553441286087036, 0.16865114867687225, -1.204569697380066, 0.002829190343618393, 0.17628179490566254, -1.3960824012756348, -0.1795666515827179, -0.4656197428703308, 0.7054967880249023, 0.13291510939598083, 0.1299467831850052, -0.3066157102584839, 0.9761195778846741, -1.3035811185836792, -1.1637600660324097, -0.6822076439857483, -0.7237228155136108, -0.22506245970726013, 0.636198103427887, -0.8605067133903503, 0.7396516799926758, 0.43358370661735535, -0.22547058761119843, -0.16079920530319214, -0.29158949851989746, -1.0331963300704956, -0.590613067150116, 0.5848291516304016, 0.2502855360507965, 0.07922215014696121, 1.3532466888427734, 0.8031255602836609, 1.3476215600967407, 0.24210968613624573, 1.6388550996780396, -1.181013822555542, -0.5384974479675293, -0.5148515701293945, 0.6991098523139954, -0.7837138772010803, -1.206663727760315, -0.2312411516904831, -0.502143919467926, -0.48938634991645813, 0.4430130422115326, 1.2306698560714722, -0.7986428737640381, 0.6761325001716614, -0.12312053143978119, 0.17742373049259186, -0.9779825806617737, -0.030750229954719543, 0.1659509539604187, -0.6692100167274475, 1.0410960912704468, -0.027703722938895226, 0.2213350385427475, -0.8229067325592041, -0.4332754611968994, 0.8090190291404724, 0.541248619556427, -0.20968462526798248, 0.2696194350719452, -0.17670540511608124, 0.4951423406600952, -0.6163159012794495, 0.8804547190666199, 0.8002037405967712, 0.0036833900958299637, -0.1413266807794571, -0.033644065260887146, 0.12405356764793396, -0.15584413707256317, -0.3318976163864136, -0.6612457036972046, -0.37960219383239746, 0.18700864911079407, 0.32368919253349304, 0.47630056738853455, -0.16133305430412292, 0.2962842583656311, 0.31581562757492065, -0.047634322196245193, 1.5275609493255615, -0.8070898652076721, -0.4529404938220978, 0.5293792486190796, 0.6393297910690308, -1.0703204870224, 0.24553550779819489, 0.1977846324443817, -0.09798943996429443, 0.0628216490149498, 0.48490095138549805, 0.7091331481933594, -0.40003398060798645, 0.6107430458068848, 0.7651112675666809, -0.7003350853919983, -0.2505730390548706, -0.5210883617401123, -1.1476138830184937, -0.7357118725776672, 0.24831125140190125, -0.6125386357307434, -0.13314737379550934, -0.7190897464752197, -0.6117159128189087, 0.49098703265190125, -1.1600561141967773, -0.33803385496139526, -0.41993415355682373, 1.0048599243164062, -0.45944055914878845, 0.08435092121362686, 1.2054495811462402, -0.365860253572464, 1.0414783954620361, 0.1735837608575821, -0.24169491231441498, -1.1231015920639038, 0.1086471676826477, 0.3341907858848572, 0.0306796133518219, -0.24694758653640747, -1.4780402183532715, 0.02572154998779297, -0.32419365644454956, -0.1191190630197525, 0.07200095802545547, -0.26638832688331604, 0.2590242922306061, -0.011085357517004013, 0.23582491278648376, 0.25112128257751465, 0.5252425074577332, 0.553394615650177, -0.27696067094802856, -0.7066131830215454, -1.083036184310913, 0.19953113794326782, 0.06293555349111557, 0.7852232456207275, -0.8702709674835205, 0.4322575628757477, 0.12317696958780289, -0.17979128658771515, -0.13966281712055206, -0.4780198335647583, 0.548247218132019, -0.09942518174648285, -0.3125847280025482, -0.5571905970573425, 0.007047010585665703, -0.12960106134414673, -1.1995091438293457, -0.06169801577925682, 0.18725599348545074, -1.0008161067962646, -0.34097009897232056, -0.5508144497871399, -0.2844441533088684, -0.6748561859130859, -0.25039708614349365, -0.09337827563285828, 0.28086423873901367, 0.8619155883789062, -0.17231053113937378, -0.6541967988014221, 0.43608230352401733, 0.9305602312088013, -0.12852349877357483, 0.49542906880378723, 1.2381895780563354, 0.763287365436554, 0.34933042526245117, -0.4294831156730652, 0.21176278591156006, 0.06819228082895279, -0.779544472694397, -0.23920834064483643, -0.6496886610984802, -0.23473861813545227, 0.2173353135585785], [0.3021467626094818, 1.9633523225784302, -2.0445563793182373, -1.2021766901016235, 0.6938896179199219, -0.4538392424583435, 0.40055009722709656, 0.8014158606529236, 0.4037812650203705, -1.7208824157714844, -1.3325750827789307, 0.7549015283584595, 0.7355369329452515, 0.9548215866088867, 0.6821091771125793, 0.3579995930194855, 0.22174210846424103, -0.4165399968624115, 0.025661297142505646, 0.8047227263450623, -0.5155569911003113, -0.8585100173950195, -0.3403884470462799, -0.08883291482925415, 0.264145165681839, 0.14154213666915894, -1.0251749753952026, -0.24564512073993683, -1.0589382648468018, -1.4703625440597534, 0.7790341973304749, -0.6036717295646667, -0.9040741324424744, -0.22433066368103027, -1.8574076890945435, -0.566709578037262, 0.38273951411247253, -0.6251186728477478, -0.6959023475646973, 0.9605209231376648, 1.985709547996521, 0.3995995819568634, -0.37579306960105896, -0.950604259967804, 0.4085536599159241, -0.7209981083869934, -0.03595421090722084, -0.7029237151145935, -0.43528977036476135, -1.385627269744873, 0.3919846713542938, -0.21248547732830048, -0.05203146114945412, 0.8050632476806641, 1.030395269393921, -0.5213307738304138, -0.0016479343175888062, 0.4177958071231842, -0.1599545180797577, 0.1977228820323944, 1.0701215267181396, 0.41664600372314453, -0.4330447316169739, -0.041415985673666, 0.05154147371649742, 0.5986395478248596, -0.28544607758522034, 1.1602729558944702, -0.2756196856498718, -0.15347565710544586, 0.32824981212615967, 0.4766392409801483, -0.1978253871202469, 0.002019330859184265, -0.623022735118866, -0.13551712036132812, 0.9498725533485413, 0.09900517761707306, 0.036509640514850616, 0.9451425075531006, -0.5992634296417236, 0.18711674213409424, -0.2939343750476837, -0.41227996349334717, 0.2896680533885956, -0.041787005960941315, -0.16869865357875824, 0.1547083854675293, -1.0991997718811035, 1.3093560934066772, 0.2353632152080536, -0.3248857259750366, 0.27803125977516174, 0.11013645678758621, -0.8031163215637207, -0.6727795600891113, 0.16578157246112823, -0.5191826224327087, -0.46412500739097595, -0.5444682836532593, -0.7006950378417969, -0.7113038301467896, 0.5148673057556152, 1.2839298248291016, 0.4067000448703766, 1.5516095161437988, 0.42515286803245544, -1.403586745262146, -0.3111531734466553, 0.08666755259037018, 0.4989706873893738, -0.05439485237002373, -0.7736865878105164, -1.389512538909912, -0.30378422141075134, 0.30250126123428345, 1.1255344152450562, -0.17736855149269104, 1.3097357749938965, 0.25365951657295227, -0.4544754922389984, -0.7865726947784424, -0.5649729371070862, 0.7713829278945923, 1.1890482902526855, -0.4864892065525055, -0.08442169427871704, -0.12200063467025757, 0.1074790358543396, -0.4751221239566803, -0.10323842614889145, -0.23824140429496765, -0.5749135613441467, 1.1546460390090942, 0.20906348526477814, 0.9680939316749573, -0.08523485064506531, -0.986680805683136, 0.6217477321624756, -0.2107694298028946, -0.007553018629550934, -0.41506630182266235, -0.7920271754264832, -1.258583903312683, 0.6811990737915039, -0.5815258622169495, 0.33560335636138916, -0.42809993028640747, -0.6792864203453064, 0.21049948036670685, -0.7160890102386475, -0.18041808903217316, -0.2180270105600357, 1.259440302848816, 0.37715014815330505, -0.09957517683506012, 0.07168729603290558, 0.13831943273544312, -0.15481197834014893, 0.47106996178627014, 0.8981151580810547, 0.061754755675792694, -0.8449999094009399, 1.2574723958969116, -0.12074176222085953, -0.5914871692657471, 1.5717895030975342, 0.365390419960022, -0.45003166794776917, 0.7867041230201721, -0.4932868480682373, -0.07622236758470535, -0.7518317103385925, 0.42739948630332947, -0.09958642721176147, -0.4536641240119934, 1.0048234462738037, -1.4614570140838623, -0.4031960070133209, -0.5024647116661072, 0.2634281814098358, -0.08652984350919724, 0.02565140649676323, -0.5892614722251892, 0.7983258962631226, -0.31354618072509766, -0.18528048694133759, -0.8104928135871887, 0.1956632286310196, -0.7748667001724243, -1.6432640552520752, -0.16016064584255219, -1.3468953371047974, -0.33493515849113464, -0.1169801726937294, -1.1371692419052124, 0.24296143651008606, -0.2071845531463623, -0.1930704563856125, 0.14323216676712036, -0.14069326221942902, -0.40706154704093933, -1.340483546257019, -0.20696856081485748, -0.5443323254585266, 0.6429411172866821, 0.29421696066856384, 0.3167586624622345, -0.6107531785964966, 0.6336976885795593, 0.838785707950592, -0.5341777801513672, -0.6128544211387634, 1.0765602588653564, 0.7169049382209778, -0.6642122864723206, -0.38182979822158813, -0.19889719784259796, 0.5396051406860352, 0.02791205421090126, 0.6608600616455078, 0.36783039569854736, 0.5856103897094727, -0.04273296147584915, 0.3543912470340729, -0.12589102983474731, -0.9593169093132019, -1.013641357421875, -1.1543591022491455, 0.1895802915096283, -0.8612026572227478, -0.3420242965221405, 0.36694350838661194, 1.7496438026428223, -0.9025280475616455, 1.1607741117477417, -0.8109130263328552, 0.3994928002357483, 0.3876272141933441, 0.42408308386802673, 0.36594662070274353, 0.07174025475978851, -1.0256890058517456, 0.2736870348453522, -0.25739070773124695, -0.1457967758178711, 0.31952396035194397, -0.11522478610277176, -0.8681061863899231, 1.5083366632461548, 0.03232313320040703, -0.16624440252780914, 0.9864112138748169, -0.006653249263763428, 0.10179077833890915, -0.8980119228363037, -0.047000620514154434, -0.07661829888820648, -0.8621330857276917, 1.1217772960662842, 0.1974346786737442, -1.6466468572616577, -0.6885851621627808, -0.6356439590454102, -0.1976403295993805, -0.6095409989356995, -0.41533926129341125, -0.9936075806617737, 0.8600446581840515, -0.35009896755218506, 0.03078440949320793, -0.13212737441062927, -0.14302575588226318, 1.252122163772583, -0.467746376991272, 0.6020657420158386, 0.4909954369068146, 0.1239396408200264, 0.23500682413578033, 0.5208738446235657, 0.03655011206865311, -1.3095754384994507, -0.7590253949165344, -0.6201627254486084, 1.1323350667953491, -0.3494716286659241, -0.6067860722541809, 0.21794018149375916, 0.17531448602676392, -0.642680287361145, 0.4601925015449524, -0.12405285239219666, -0.19705115258693695, 0.4113638699054718, 0.2668926417827606, -0.03761701658368111, 0.38862088322639465, -0.48797607421875, -0.4960130751132965, -0.49562227725982666, 0.8402934670448303, 1.1621266603469849, 1.2136082649230957, 1.1141570806503296, 0.0876360535621643, -0.024930451065301895, 0.3382285237312317, 0.3121473491191864, 0.3737705647945404, 0.3141472339630127, -0.7281785607337952, -0.5519570112228394, 0.5471078157424927, 0.10786152631044388, 0.018604347482323647, 0.7445652484893799, 0.38545170426368713, 1.138221263885498, 0.3427063524723053, -0.4442438781261444, -0.99797123670578, -0.6010043621063232, -0.35624703764915466, -0.7306578159332275, 0.8525196313858032, 0.6866629719734192, -1.0970993041992188, 0.7243202924728394, 0.3119652271270752, -0.6189390420913696, 0.46514892578125, 0.0038838014006614685, 0.3639960289001465, -0.8903181552886963, -0.3539848029613495, 0.17555159330368042, 1.3647737503051758, 0.5886486172676086, -0.19478467106819153, -0.3248124420642853, 0.05347415432333946, 0.13911469280719757, 0.25028756260871887, -0.7725940346717834, 0.9744828939437866, 0.1075240895152092, -0.864155113697052, -0.926347553730011, 0.30406510829925537, 1.3289433717727661, -0.28280696272850037, -0.2405678778886795, -0.9386463165283203, -0.5373900532722473, -0.49521955847740173, 0.7063031792640686, 0.20561029016971588, 0.6719690561294556, -0.027017414569854736, -0.34218695759773254, 0.6847572326660156, -0.11614476144313812, 0.24738022685050964, -1.2968391180038452, 1.161913275718689, 0.6052781939506531, 1.563670039176941, -0.09890197217464447, -0.20782595872879028, 0.8073569536209106, -0.7060522437095642, -0.6932846903800964, -0.12880371510982513, 0.7117709517478943, 0.14261852204799652, -0.412195086479187, -0.8478816747665405, 0.3512268364429474, 0.21341779828071594, -0.42146310210227966, -0.16770482063293457, 0.5985338687896729, 0.1429450809955597, -0.765923023223877, 0.8120806217193604, 0.051792047917842865, 0.05485682189464569, -0.5081528425216675, 0.4691658616065979, 0.02309490740299225, -0.13715292513370514, -0.05832463130354881, -0.3072560429573059, 0.049046196043491364, -0.14074184000492096, -0.6975755095481873, -1.436205506324768, 0.07289431989192963, 0.6736249327659607, 1.1484936475753784, -0.9099794626235962, -0.28964048624038696, -0.260923832654953, -0.31247881054878235, 0.5364806056022644, 0.31842052936553955, 0.6192061305046082, 0.33211955428123474, 0.00469622015953064, -0.010521546006202698, 0.9872686862945557, 1.252063274383545, -0.322793573141098, 0.11495433747768402, -0.4085051715373993, 0.45979148149490356, 0.5464978814125061, -0.37957000732421875, -1.1219371557235718, -0.26345139741897583, -0.6990475058555603, -0.028460804373025894, 0.5408085584640503, -0.30925294756889343, 1.459898829460144, 0.05566142499446869, 0.754891574382782, 0.4679872393608093, -0.590645432472229, -0.7661738991737366, 0.7020725607872009, 0.45119228959083557, 0.228166401386261, -0.6140110492706299, 0.5001233220100403, 0.6842161417007446, 0.679456353187561, 1.1067017316818237, 0.13392221927642822, 0.5687685608863831, 0.48463186621665955, -0.4626600444316864, 0.21537677943706512, 1.0398004055023193, 0.854549765586853, 0.46298089623451233, 1.494888424873352, -0.5497506856918335, -0.5137072205543518, 1.5183587074279785, -0.23565280437469482, 0.2232854962348938, 0.960543155670166, 0.2389879822731018, 1.9500612020492554, -0.7550556063652039, -0.4335794448852539, 0.3857590854167938, 0.08464805036783218, -0.14701971411705017, -0.0031634774059057236, 0.16671425104141235, -0.7880286574363708, -0.2172701358795166, 1.0220580101013184, -0.18197035789489746, 0.5667547583580017, -0.5000765919685364, -0.19735194742679596, 0.1185089498758316, -0.13617044687271118, -0.2721632122993469, -0.8035120964050293, -0.3598463833332062, -0.008060014806687832, 0.3242637515068054, 0.6830213665962219, 0.8705248832702637, -0.1123398169875145, 0.8142948150634766, -0.5663934946060181, -0.8416070938110352, 0.11598177254199982, -1.3225979804992676, 0.5522769093513489, 0.24603773653507233, -1.0459471940994263, -0.6605469584465027, -0.4957844316959381, -0.2952556908130646, -0.790306568145752, -0.8139863610267639, -0.28629106283187866, 0.50877445936203, -0.7363698482513428, -0.4674546718597412, -0.30514928698539734, 0.87313312292099, 0.6537601351737976, 0.7937813997268677, 0.9000096321105957, 0.33248454332351685, 0.17324239015579224, 0.408157080411911, -0.22939182817935944, -0.25824403762817383, 0.3970487117767334, -0.6839869618415833, -0.5019957423210144, 0.24068863689899445, 1.001317024230957, 0.6256093978881836, -0.4809626638889313, 0.21194462478160858, 1.8748782873153687, -1.0908758640289307, -0.6210605502128601, 0.28873616456985474, -0.4180781841278076, 1.4092864990234375, 0.21099060773849487, -1.2791754007339478, -0.340270459651947, 0.4667026996612549, -1.7278804779052734, 0.7162351608276367, -0.3054707944393158, -0.10348405689001083, -0.2896609306335449, 0.3731096088886261, -0.12787975370883942, 0.6814098954200745, -0.6589701175689697, 0.0760737732052803, 0.7743648886680603, -0.37615299224853516, -0.8523396849632263, 0.803581953048706, 0.4513864815235138, 0.6432103514671326, -0.4688352346420288, 0.29385992884635925, -0.02411198616027832, -0.2984822690486908, -0.07967568188905716, 0.07033491134643555, 1.2410556077957153, 0.5413944721221924, 0.3389335870742798, -1.5117597579956055, 0.7557839155197144, -0.6443656086921692, 0.9960463643074036, -0.2586807310581207, 0.803656280040741, 0.1360420286655426, -0.8552932143211365, 0.3286829888820648, -0.5656448006629944, -0.21893425285816193, -0.3475525379180908, -0.7643319964408875, 1.1171905994415283, 0.08798788487911224, -0.149930939078331, 0.4012903571128845, -0.19932685792446136, -0.711647629737854, -0.46314334869384766, -0.2844526469707489, 0.9921969771385193, -1.3454080820083618, -0.5502488613128662, 0.0853220596909523, 0.09938348829746246, 0.6619393229484558, 0.30075857043266296, -0.3252556324005127, -0.9868949055671692, -1.517427921295166, -0.26270949840545654, -0.00851023755967617, 0.7570450305938721, -0.8801532983779907, 0.27103447914123535, 0.012933820486068726, -1.8766741752624512, 0.6411933302879333, 0.21716845035552979, -1.324894666671753, -0.7397017478942871, -1.2588709592819214, 1.0279674530029297, 0.5546576976776123, -0.474656879901886, -0.22451196610927582, 0.62665855884552, -0.43259161710739136, -0.36702215671539307, -0.5621655583381653, 0.5671312212944031, -0.055481381714344025, 1.0302246809005737, -0.3092918395996094, 0.37562328577041626, -0.2554422914981842, 0.25517094135284424, -0.3014613091945648, -0.19680725038051605, -0.8275275826454163, 0.1984737068414688, 0.058142878115177155, 0.541856586933136, -0.0448172502219677, 0.5354477167129517, 0.1705915480852127, 0.9605711102485657, -0.6693062782287598, 0.876960039138794, -0.41628187894821167, -0.47548261284828186, -0.47116923332214355, 0.24165979027748108, -0.9859907627105713, -0.34668436646461487, -0.1838006228208542, -0.6086767911911011, -0.8838703632354736, 0.1374037116765976, 0.710191011428833, -0.20413155853748322, 0.9274804592132568, -0.12090550363063812, 0.8225083947181702, -1.0907889604568481, 1.0296409130096436, 0.2008533924818039, -0.6772603988647461, 0.3079530596733093, -0.6251924633979797, 0.6816210746765137, -0.6071194410324097, -0.01344403624534607, 0.4820479154586792, 0.6294971108436584, -0.2704410254955292, -0.1790352612733841, 0.38313567638397217, -0.5068374276161194, -0.4644275903701782, 0.9021823406219482, 0.8199342489242554, 0.15251824259757996, 0.6754974722862244, 0.6830071210861206, -0.39103326201438904, 0.19473384320735931, 0.3211078643798828, -0.5790334343910217, -0.4811348021030426, 0.29087120294570923, -0.33556807041168213, 0.20489002764225006, -1.1374763250350952, 0.6680639386177063, -0.5713669657707214, -0.21627676486968994, 0.8696914911270142, -0.12789031863212585, -0.3987714946269989, 0.762925922870636, 0.32091936469078064, -0.5118765234947205, -0.0546591579914093, 0.1400851011276245, 0.17714151740074158, 0.8461925983428955, 0.7586863040924072, 0.4936073124408722, 0.13466350734233856, 0.8447269201278687, 0.806587278842926, -0.5813798308372498, -0.14230650663375854, -0.3805239796638489, -1.5717217922210693, -0.8073466420173645, 0.2938340902328491, -0.5340608954429626, 0.4064168334007263, -0.9384209513664246, -0.6661722660064697, -0.07325417548418045, 0.038971662521362305, 0.576384961605072, -0.8541799783706665, -0.054257649928331375, -0.7006524801254272, 0.22472286224365234, 1.4490078687667847, -0.17765763401985168, 1.4277997016906738, 0.4016101062297821, 0.524031400680542, 0.49757203459739685, 0.27101555466651917, -0.018054507672786713, 0.44933366775512695, -0.1357274353504181, -0.8766071796417236, -0.00131618557497859, -0.7131497859954834, -0.7447111010551453, 0.9903066754341125, 0.22728438675403595, 0.6141461730003357, 0.43318477272987366, -0.6072394847869873, 0.2114790380001068, 0.5145310163497925, 0.7406179904937744, -0.5251675844192505, -0.840441107749939, -0.5633931159973145, 0.10923390090465546, 0.07033520191907883, 1.6186405420303345, -0.43077442049980164, 1.0545183420181274, 0.7215025424957275, 0.033250439912080765, -0.13364523649215698, -0.22726036608219147, 0.4726927876472473, -0.43065083026885986, 0.6295779347419739, -0.23707948625087738, -0.33435529470443726, 0.1688258945941925, -0.7282084226608276, -0.17752358317375183, -0.33134958148002625, -0.5087388157844543, 0.125247523188591, -0.24606947600841522, -1.1792443990707397, -0.9215845465660095, 0.41448158025741577, 0.04193801060318947, -0.37340840697288513, 0.7395591735839844, -0.2717461884021759, -0.4210785925388336, 0.773137092590332, 0.5626358389854431, 0.3173619508743286, 0.29773521423339844, 2.0719432830810547, 1.1177341938018799, 0.21735446155071259, -0.5254402756690979, -0.410256952047348, 0.7032796740531921, -0.9297409653663635, -0.29997116327285767, -1.0465753078460693, -0.1726263165473938, 0.5079619288444519], [-0.4531186819076538, 1.5076793432235718, -2.0014259815216064, -0.34682902693748474, 0.9863001108169556, -0.010308319702744484, 0.5102552175521851, 0.8320944905281067, 0.027293935418128967, -0.4272044599056244, -0.02878681570291519, -0.1642524152994156, 1.0203996896743774, 1.019324541091919, 0.6090759634971619, 0.28353339433670044, 0.47564321756362915, -0.41026389598846436, 0.1703599989414215, 0.9497610926628113, -0.38385453820228577, -1.2358297109603882, -0.8769550919532776, 0.10379988700151443, 0.08909910917282104, 0.002781609073281288, -2.042778968811035, -0.8096025586128235, -1.0781294107437134, -0.3445439338684082, 0.7869799137115479, -1.0494599342346191, -0.2624417841434479, 0.7717120051383972, -0.7577567100524902, -0.9985995888710022, 0.5968770384788513, 0.09653239697217941, -0.1543516218662262, 0.7040644288063049, 2.3801538944244385, -0.14436624944210052, -1.022498369216919, -0.8282119035720825, 1.0537734031677246, -0.824781596660614, 0.538753092288971, -1.1017941236495972, -0.06608577072620392, -1.0603107213974, 0.07510978728532791, -0.7555227279663086, 0.6708557605743408, 0.6611496210098267, 1.4975945949554443, -0.44161492586135864, -0.28948092460632324, -0.6040191650390625, 0.45743516087532043, 0.08070062100887299, 1.0736839771270752, 0.8411290645599365, -0.12327471375465393, 1.3626317977905273, 0.6968016624450684, 0.020450789481401443, -0.2763887643814087, 0.8734769225120544, 0.5399062037467957, -0.08996587246656418, 0.2182696908712387, -0.19643087685108185, -0.464321494102478, 0.04680255055427551, -0.08730889856815338, -0.5631395578384399, 0.3010807931423187, 0.558152973651886, -0.35846811532974243, 0.40433210134506226, 0.16698560118675232, -0.14652486145496368, 0.6444326639175415, -0.5630941390991211, 0.5828020572662354, -0.46967360377311707, 0.13214458525180817, -0.0313568040728569, -0.18950316309928894, 1.862382411956787, 1.0276737213134766, -0.13932715356349945, 0.4877011179924011, -0.6297093629837036, 0.29530981183052063, -1.427194595336914, -0.024791302159428596, -0.9710189700126648, -0.8703531622886658, -0.3308688998222351, -0.7839783430099487, -0.8075030446052551, 0.1534281224012375, 0.23295247554779053, 0.8227220177650452, 1.388901948928833, -0.11800410598516464, -0.726803183555603, -0.06719832867383957, -0.028819715604186058, 0.3816412091255188, -0.4321039319038391, -0.9001737236976624, -0.7322478890419006, -0.19535686075687408, 0.31649094820022583, 1.4833444356918335, 0.09423024952411652, 0.4073747396469116, 0.3151528239250183, -0.689652681350708, 0.15929320454597473, -0.5218091011047363, 0.11172996461391449, 0.3884963095188141, 0.27879494428634644, -0.42532071471214294, -0.01399518083781004, 0.08825145661830902, -0.3438238203525543, -0.1331709325313568, 0.5639663934707642, 0.16830749809741974, 0.628301739692688, -0.5021082758903503, 1.8035436868667603, -0.7493704557418823, -1.535340428352356, -0.0911112129688263, -0.0992380753159523, 0.8496214151382446, -0.37037527561187744, -0.76444411277771, -1.0562376976013184, 0.03132679685950279, -0.2843945324420929, 0.2207130640745163, -0.4391532838344574, -0.2535911798477173, 0.22325080633163452, -0.6374478936195374, 0.34929656982421875, 0.18439753353595734, 1.1646456718444824, 0.21504506468772888, -0.2681494653224945, 0.6209986209869385, 0.1555783450603485, -0.07586145401000977, -0.177217036485672, 0.7006084322929382, 0.1270374059677124, -1.5014816522598267, 1.3319110870361328, -0.08222678303718567, -0.8577433824539185, 0.9419105648994446, 0.4907601773738861, -0.16475586593151093, 0.8335102796554565, -1.2543692588806152, -0.0024496447294950485, -1.246327519416809, 0.8832317590713501, 0.1944427192211151, -0.8522660732269287, 1.036413550376892, -0.541059136390686, -0.7669850587844849, -0.9514845013618469, 0.45279380679130554, -0.7636842727661133, -0.015685267746448517, -0.4306599795818329, 0.7796936631202698, -0.7552146315574646, 0.009973691776394844, -0.4810074269771576, -0.29787707328796387, -1.3610244989395142, -1.1159907579421997, -0.2784220576286316, -0.7843656539916992, 0.5543190240859985, -0.5079142451286316, -0.27199921011924744, 1.0936775207519531, -0.7405088543891907, -0.10947593301534653, -0.14552350342273712, -0.07266931235790253, 0.513269305229187, -1.5221551656723022, 0.3790910840034485, -0.5697340369224548, 0.8582461476325989, 0.1975824534893036, 0.5231186151504517, -0.21215181052684784, 0.48115429282188416, 1.1163119077682495, -0.6345593929290771, -1.0799200534820557, 0.44543904066085815, -0.04223410040140152, -0.4672118127346039, -0.132894366979599, -0.7021984457969666, -0.12832045555114746, -0.2757299244403839, 0.4029650390148163, -0.09563156962394714, 0.33231544494628906, 1.0210504531860352, 0.025682121515274048, -0.17379362881183624, -0.5972541570663452, -0.16888727247714996, -0.7518166899681091, 0.33778131008148193, -0.6701003909111023, -0.4611688256263733, 0.39151179790496826, 0.5866407752037048, -1.226165771484375, 0.822536051273346, -0.6842748522758484, 0.7711120843887329, 0.3043884038925171, 0.02564316801726818, 0.16656404733657837, 0.3230617344379425, -0.17706996202468872, -0.2751747965812683, -0.34528785943984985, -0.2991694211959839, 0.5656682252883911, -0.2071233093738556, -0.6645241379737854, 1.2607049942016602, 1.4860492944717407, -0.029025303199887276, 0.9040226340293884, 0.6016198992729187, 0.22318880259990692, -0.967124879360199, 0.1919899731874466, -0.11028896272182465, -0.9081975817680359, 0.6619688272476196, 1.102751612663269, -0.7479449510574341, -0.2629946768283844, -0.38848382234573364, -0.9741119742393494, -0.3384203314781189, -0.5803781151771545, -0.9841532111167908, 0.4705025851726532, -0.1871451735496521, 0.2080681025981903, 0.27684205770492554, -0.6162238717079163, 0.48997732996940613, 0.0681150034070015, 0.15208099782466888, 0.013869248330593109, -0.0004086345434188843, 0.43137311935424805, 0.42694082856178284, -0.07466599345207214, -0.7362064719200134, -0.7630090117454529, -0.12310686707496643, 0.5511451363563538, -0.28520724177360535, -0.3944278955459595, 0.8420448899269104, 0.7617148160934448, -0.9689144492149353, 0.5991289019584656, 0.09661804139614105, 0.36791741847991943, -0.05648479610681534, -0.082585908472538, 0.9923872947692871, 0.7383599877357483, -0.8586823344230652, -1.324088454246521, -0.7255648374557495, 1.0252928733825684, 0.893521249294281, 1.3496615886688232, 1.0649431943893433, 0.09472376853227615, -0.11116298288106918, 0.1766321212053299, 0.3636268079280853, 0.3728269934654236, -0.5364357829093933, -0.809966504573822, -0.35598403215408325, -0.20503011345863342, -0.11822284013032913, -0.5408756732940674, 1.3100107908248901, -0.15425366163253784, 0.9238332509994507, 0.714968204498291, -0.46274620294570923, -0.6063109040260315, -0.6135170459747314, 0.10155171155929565, -1.1505581140518188, 0.6997628211975098, 1.0187053680419922, -0.8190339207649231, -0.3914034962654114, -0.1808997094631195, -0.34961065649986267, -0.01694481261074543, 0.4421042799949646, 0.3328162133693695, -1.4090312719345093, 0.07756055146455765, 0.2709888815879822, 0.9763110876083374, 0.3959245979785919, 0.024373050779104233, -0.35975366830825806, 0.51376873254776, 1.0521565675735474, -0.5001495480537415, -0.5936747789382935, 0.5163729190826416, -0.2035893052816391, -0.5283340215682983, -0.2198449820280075, -0.5265577435493469, 1.1452455520629883, -0.4446435570716858, 0.036785174161195755, 0.05789962410926819, -0.5905373096466064, -0.4414723217487335, 0.046482544392347336, -0.5256351828575134, 0.7410104870796204, 0.14941132068634033, 0.013950847089290619, 0.6073521375656128, 0.16794776916503906, 0.1754942089319229, -1.7654989957809448, 0.6635148525238037, 0.34938132762908936, 1.0380605459213257, -0.17397047579288483, 0.1342983990907669, 0.3515693247318268, -0.24018631875514984, -0.0704372376203537, 0.46331849694252014, 0.7786808013916016, 0.2859925925731659, -1.033251404762268, -0.45491716265678406, 0.495392769575119, -0.5828460454940796, -0.36824703216552734, -0.09689000248908997, 0.08457868546247482, -0.5044115781784058, -0.7379809617996216, 0.8181865811347961, 0.2858385443687439, -0.0779023990035057, -0.7182037234306335, 0.13632908463478088, 0.07444211095571518, -0.7363235354423523, 0.4705969989299774, -0.6513085961341858, -0.2549532353878021, -0.7473581433296204, -0.5357861518859863, -0.7994727492332458, -0.39671483635902405, 0.4467800259590149, 1.172754168510437, -0.6213378310203552, -0.07604433596134186, -1.0335752964019775, 0.6477721929550171, 0.9439377188682556, 0.39155313372612, 0.24556636810302734, 0.4368779957294464, -0.25560298562049866, -0.6941700577735901, 0.29150184988975525, 0.9312003254890442, -0.6286765336990356, -0.0008693849667906761, -0.30376318097114563, 0.850368320941925, 0.13411903381347656, -0.005707234144210815, -0.6530978083610535, -0.24154400825500488, -0.5581358075141907, 0.9606778621673584, 0.6841382384300232, 0.17355385422706604, 1.6805610656738281, 0.03030211478471756, -0.13915163278579712, 0.15373584628105164, 0.12216013669967651, -0.5699642300605774, 0.22621852159500122, 0.3518511652946472, -0.3669619560241699, -0.4814682602882385, 0.1421675682067871, 0.39759910106658936, 0.3999831974506378, 0.44606253504753113, 0.35944297909736633, 0.8235161304473877, 1.589185357093811, -1.0176787376403809, -0.48942437767982483, 0.2714146077632904, 1.2601892948150635, 1.5793157815933228, 0.47292962670326233, 0.1533736139535904, -1.1225411891937256, 0.5437958836555481, -0.061037130653858185, -0.5493693351745605, 0.48577284812927246, 0.07786306738853455, 1.2889262437820435, -1.2969990968704224, -0.17756381630897522, 0.622719943523407, 0.14673252403736115, 0.686432957649231, -0.06005983427166939, 0.013908224180340767, -0.3779866397380829, 0.2666800916194916, 0.6368894577026367, -0.054705411195755005, 0.7037372589111328, -0.7025151252746582, -0.27928438782691956, -0.49090418219566345, -0.7972213625907898, 0.1471175104379654, -0.36000239849090576, -0.140333890914917, -0.6972874402999878, 0.5245851874351501, 0.6148319244384766, -0.4696381986141205, 0.4107564389705658, 1.2867234945297241, -0.9195917248725891, -0.9349715709686279, 0.11729361116886139, -0.33216363191604614, 1.049875259399414, -0.2866653800010681, 0.23584352433681488, -0.10323618352413177, -0.9526667594909668, -0.6131964325904846, -0.2228441685438156, -0.9901444315910339, -0.6693612933158875, -0.5535456538200378, -0.8755740523338318, -0.6882664561271667, 0.31402677297592163, 1.0715022087097168, 0.7384935617446899, 0.4315703213214874, 0.7344180345535278, 0.09887844324111938, 0.1685423105955124, 0.24123559892177582, 0.09764765948057175, 0.1716790497303009, -0.3480735421180725, -0.9833712577819824, -0.5049289464950562, 0.5175982713699341, 0.7597070336341858, 0.013693999499082565, -0.20242814719676971, 1.0236719846725464, 2.000277042388916, 0.12466713786125183, -0.570866048336029, 0.7490045428276062, -0.2815325856208801, 1.1362097263336182, 0.8352404832839966, -1.4676703214645386, 0.26369526982307434, -0.19537340104579926, -1.6098641157150269, 0.9714952111244202, -1.0437698364257812, -0.2664656341075897, 1.392971158027649, 0.5840230584144592, -0.5506102442741394, 0.7977272868156433, -0.8950856924057007, 0.019183363765478134, -0.274177610874176, -0.4270092248916626, -0.937965452671051, 0.3405349850654602, 1.1623153686523438, 0.10762954503297806, -1.1536023616790771, 0.5932835936546326, -0.06626881659030914, -0.3776804208755493, 0.5938359498977661, -0.24081099033355713, 0.04562158137559891, 0.8701069951057434, 0.6134514212608337, -0.9786579012870789, 0.127770334482193, -0.3425581753253937, 0.2787996828556061, 0.5697917342185974, 0.18822835385799408, 0.41910043358802795, -0.23653273284435272, 0.10118900239467621, 0.014388617128133774, -1.1209297180175781, 0.9141432642936707, -0.017441773787140846, 0.8054782748222351, -0.06842871010303497, -0.5639738440513611, 0.5479288101196289, -0.4330372214317322, -1.1730284690856934, -0.7094564437866211, -0.2648311257362366, 0.6381708383560181, -0.6510230898857117, -0.5764400959014893, -0.6452011466026306, -0.26696935296058655, 0.6158371567726135, 0.5427311062812805, 0.46564099192619324, -1.209428071975708, -1.068144679069519, 0.011747792363166809, 0.1374988853931427, 0.5848000645637512, -0.20500081777572632, 1.090736985206604, -0.33651605248451233, -2.0795273780822754, 1.1631418466567993, 0.22809335589408875, -1.4444019794464111, -0.9928420782089233, -1.3823366165161133, 0.8120589852333069, -0.47270941734313965, -0.010043011046946049, -0.027767805382609367, 1.4816420078277588, -0.5538509488105774, -0.582868754863739, -0.3673211932182312, -0.18121227622032166, -0.09635332226753235, 1.2825816869735718, -1.176388144493103, 0.9853217601776123, -0.24562397599220276, -0.5849186778068542, -0.73019939661026, 0.4802701473236084, -1.0622742176055908, -0.11410489678382874, 0.37581849098205566, 0.6022397875785828, -0.0054549165070056915, 1.3094826936721802, -0.06765646487474442, 1.180531620979309, -0.6842899918556213, 1.0806469917297363, -1.0102026462554932, -0.4184768497943878, -0.3138887584209442, 0.22074903547763824, -0.958475649356842, -0.2196987271308899, -0.06833739578723907, -0.9653367400169373, -1.0283252000808716, 0.6136618256568909, 0.7960751056671143, -0.7323105931282043, -0.2621365785598755, 0.05359872058033943, 0.5501248836517334, -0.3558175265789032, -0.13511891663074493, 0.2183549702167511, -0.8081528544425964, 0.47693464159965515, -0.22306734323501587, 0.4372633397579193, -0.28267592191696167, 0.16407880187034607, 1.2058838605880737, 0.5055174827575684, -0.7428525686264038, 0.7133001089096069, 0.8856128454208374, -0.26663723587989807, -1.0769928693771362, 1.0399185419082642, 0.9009432792663574, -0.5216966867446899, 0.36375191807746887, 0.6353583931922913, 0.2694890797138214, 0.39085322618484497, -0.49984967708587646, -0.725171685218811, -0.2001211941242218, 0.7361164689064026, 0.23215335607528687, 0.7613433599472046, -0.5930399894714355, 0.5127397775650024, -0.2287645936012268, -0.1080947071313858, 0.5205590724945068, -0.11841173470020294, 0.04610639810562134, 1.0313800573349, 0.21418322622776031, 0.048511382192373276, 0.05906005576252937, 0.6597113609313965, 0.35361582040786743, -0.09627338498830795, 0.18702641129493713, 0.6250815987586975, -0.5393692851066589, -0.13120891153812408, 0.585304319858551, -0.35030752420425415, 0.14756999909877777, 0.38117220997810364, -1.9071651697158813, -0.6563801765441895, -0.13411220908164978, -0.6878674030303955, 0.29432737827301025, -0.5642809271812439, -0.9833831787109375, 0.10502983629703522, 0.16157522797584534, 0.5139937400817871, -0.3432586193084717, -0.3200731873512268, -0.20910726487636566, -0.22121432423591614, 1.0645184516906738, -0.35873332619667053, 0.9458057880401611, 0.23939554393291473, -0.016184352338314056, -0.15282462537288666, -0.09727636724710464, -0.30588406324386597, 0.09144733101129532, -0.009664056822657585, -0.7633395195007324, 0.059826042503118515, -0.6115723252296448, -0.29840436577796936, 0.3276844918727875, 0.8612866997718811, 0.928805947303772, -0.40471354126930237, -0.5786950588226318, -0.4979974925518036, 0.14241696894168854, 0.6038801074028015, -0.9023584723472595, -1.1457198858261108, -0.8462391495704651, 0.2117716521024704, 0.13114827871322632, 1.6468559503555298, -0.10055255144834518, 0.6478837132453918, 0.6784412860870361, 0.37847021222114563, -0.25873616337776184, -0.6390017867088318, 0.2567070722579956, -0.7219745516777039, 1.0766266584396362, -0.03377759829163551, -0.04579532891511917, 0.4396822154521942, -1.034939169883728, 0.21776320040225983, 0.6712902784347534, 0.04761085659265518, 0.59611976146698, -0.2972146272659302, -1.0686935186386108, -0.5808610916137695, 0.8217726349830627, -0.31721872091293335, 0.03666989877820015, 0.49098536372184753, -0.17316332459449768, -0.7762245535850525, -0.36367180943489075, 0.7765580415725708, -0.2912347912788391, 0.6726992726325989, 1.6898703575134277, 1.2334762811660767, -0.25724560022354126, -0.062426984310150146, -0.262226402759552, 1.0402380228042603, -1.3282239437103271, -0.318868488073349, -0.6013792157173157, 0.1534050852060318, -0.009209130890667439], [0.0015053562819957733, 1.188709020614624, -2.2578864097595215, -1.0145055055618286, 0.5693181157112122, -0.2081119418144226, 0.8988479375839233, 0.6917972564697266, -0.04540227726101875, -0.6909911036491394, -0.7978106141090393, -0.026521313935518265, 1.212215542793274, 1.0962302684783936, 0.18398797512054443, 0.46484503149986267, 1.2976291179656982, -0.32600632309913635, 0.5345835089683533, 1.545937180519104, -0.6273043155670166, -1.2637252807617188, -0.6839715242385864, 0.12975938618183136, -0.23276132345199585, 0.5112478733062744, -1.8634330034255981, -1.1645861864089966, -1.7764480113983154, -0.4539283812046051, 0.6171561479568481, -0.8864519000053406, -0.25329136848449707, 0.8666486144065857, -1.3516494035720825, -0.6604677438735962, 0.947884738445282, 0.3028516173362732, 0.1017480120062828, -0.36442774534225464, 2.4010350704193115, -0.12300775200128555, -0.44805091619491577, -0.9172479510307312, 0.42549923062324524, -0.8054159283638, 0.8316844701766968, -0.5662035942077637, 0.5952507853507996, -0.4380750358104706, 0.5785658955574036, -0.08801406621932983, -0.008163737133145332, 0.3678776025772095, 1.0052250623703003, -0.9088336229324341, -0.5794076919555664, 0.06125809997320175, 0.6773467659950256, 0.6798997521400452, 1.1625295877456665, 0.5662983655929565, -0.2689461410045624, 1.7604631185531616, 0.8069502711296082, 0.1471129208803177, -0.08948078006505966, 0.7803803086280823, -0.22606095671653748, 0.1801915317773819, 0.6632504463195801, -0.44752293825149536, 0.08502331376075745, 0.21001261472702026, -0.2678828835487366, 0.051976483315229416, 0.5308389663696289, 0.10080529004335403, -0.031859371811151505, 0.26322057843208313, -0.1241806149482727, 0.0630996897816658, 0.7289159893989563, -0.786000669002533, 1.1288707256317139, 0.15662889182567596, 0.10397127270698547, -0.22810643911361694, -0.7219625115394592, 1.4465289115905762, 0.8203387260437012, 0.23072253167629242, 0.13809414207935333, -0.5490023493766785, 0.3107532560825348, -0.26300039887428284, 0.1257466971874237, -1.349197268486023, -1.0684131383895874, -0.7868728041648865, -1.2749067544937134, -0.5514678359031677, 0.40297940373420715, 0.4230829179286957, 1.0168126821517944, 0.8825971484184265, -0.10608407855033875, -0.9207767248153687, 0.3735499083995819, 0.12326405942440033, 0.4674372971057892, 0.5488513708114624, -1.4842801094055176, -1.0464401245117188, 0.26747214794158936, 1.2279083728790283, 1.1411851644515991, -0.08173815160989761, 1.0556960105895996, 0.8728749752044678, -0.6109853982925415, 0.22726300358772278, -0.40984225273132324, 0.15188336372375488, 0.5853174924850464, 0.7746679186820984, 0.013754032552242279, -0.5329906344413757, 0.38030585646629333, 0.017425449565052986, 0.09280869364738464, -0.06003783643245697, -0.5774936676025391, 0.5542568564414978, -0.6407623887062073, 1.4159433841705322, -0.9415719509124756, -1.833831787109375, -0.011435255408287048, -0.11659889668226242, 1.3726637363433838, -0.23399236798286438, -0.7806791663169861, -0.8174489736557007, -0.3997838497161865, -0.6027525663375854, 0.07497727870941162, -1.0782817602157593, -0.504490315914154, 0.5123637914657593, -0.8706765174865723, 0.180103600025177, 0.1427517533302307, 1.2741830348968506, -0.23153848946094513, -0.3602524697780609, 0.5480324029922485, 0.24739450216293335, 0.5454256534576416, 0.24829255044460297, 1.3844584226608276, -0.3770615756511688, -0.5166329741477966, 1.5133116245269775, 0.7123978734016418, -0.35367679595947266, 0.3069159984588623, 0.8639316558837891, -0.18217667937278748, 0.42629462480545044, -0.33747339248657227, -0.3042290210723877, -0.6896016001701355, 0.16699457168579102, 0.46348410844802856, -0.4871930480003357, 1.4878077507019043, 0.013043505139648914, -0.6484010815620422, -1.1385241746902466, 1.3698384761810303, -0.7554991841316223, 0.16418495774269104, -0.8070724606513977, 0.6902178525924683, -0.705482542514801, 0.12539175152778625, -0.43916139006614685, 0.06085152551531792, -1.4626024961471558, -0.6154342889785767, 0.2888627350330353, -0.778536856174469, 0.2712570130825043, -0.5803141593933105, -0.5347482562065125, 0.8896964192390442, -0.2576369643211365, -0.27452006936073303, -0.05100938305258751, -0.20090177655220032, 0.09923272579908371, -1.612618327140808, -0.3294132649898529, -0.811226487159729, 0.9740366339683533, -0.21413618326187134, 0.49439820647239685, -0.3282659649848938, -0.4308987557888031, 0.9410562515258789, -0.2781899571418762, -1.3196018934249878, 0.6666290760040283, 0.3131754696369171, -0.1015637069940567, 0.3160371780395508, -1.1894426345825195, -0.47185543179512024, 0.0383782833814621, 0.3899960219860077, -0.33703556656837463, -0.10051227360963821, 0.7664808034896851, 0.45846861600875854, -0.011016623117029667, -0.2697206735610962, -0.14798273146152496, -0.32776984572410583, 0.1424103081226349, -1.1829103231430054, -1.063100814819336, 1.0915040969848633, 0.6862756609916687, -1.5554654598236084, 0.9603099822998047, -0.8226574659347534, 0.4367390275001526, 0.2886768877506256, 0.8030739426612854, 0.7426023483276367, 0.2831195592880249, -0.4149000346660614, -0.21486465632915497, -1.015844464302063, 0.34470584988594055, 0.8335673213005066, -0.04021381586790085, -0.6019258499145508, 1.690108060836792, 1.7777647972106934, 0.5733725428581238, 0.9651622772216797, 0.4610982835292816, 0.04490898549556732, -0.9377937912940979, 0.05705174803733826, 0.1762966364622116, -1.3565757274627686, 1.0471299886703491, 0.9395143985748291, -1.4026545286178589, 0.05597968026995659, -0.24190105497837067, -0.7015224695205688, -0.23299932479858398, -0.6515275835990906, -0.7864654660224915, 0.31008338928222656, -0.06737398356199265, 0.3230249583721161, 0.13702601194381714, -0.2967985272407532, 0.34745076298713684, -0.31439724564552307, -0.14188702404499054, 0.03879062831401825, 0.0184380654245615, 0.42630791664123535, 0.9473592042922974, 0.28956902027130127, -0.6063929796218872, -0.7567780613899231, -0.013904329389333725, -0.09018567949533463, -0.5529466271400452, -0.5070726871490479, 1.2645680904388428, 0.6875724196434021, -0.7528153657913208, 0.1451689749956131, 0.3507361114025116, 0.037921249866485596, -0.34507760405540466, 0.09264927357435226, 0.6832817196846008, 0.31221696734428406, -1.2788071632385254, -1.093878984451294, -0.5176395773887634, 0.8325745463371277, 1.7775400876998901, 1.4635623693466187, 1.0287142992019653, -0.048907533288002014, -0.3696284294128418, -0.1170271709561348, 0.07786742597818375, -0.45994654297828674, -0.5601159930229187, -0.707429051399231, -0.44570624828338623, 0.0808228850364685, 0.37427231669425964, -0.379978746175766, 0.8525692224502563, 0.7452377080917358, 1.1664063930511475, 0.9162405729293823, -0.6541635394096375, -0.4670984745025635, 0.4454466998577118, 0.33930641412734985, -0.9212134480476379, 0.7260016202926636, 0.8618451952934265, -0.5763142704963684, -0.42603781819343567, 0.2667739987373352, -0.31655189394950867, 0.010184995830059052, 0.8094586133956909, 0.3212132751941681, -1.0411672592163086, -0.7274780869483948, 0.1272551268339157, 0.8848255276679993, -0.1815803349018097, 0.18069680035114288, -0.30753880739212036, -0.19559668004512787, 0.9102105498313904, -0.3661600649356842, -0.7485219836235046, 0.3750437796115875, -1.0718485116958618, -0.4579654335975647, 0.08790206164121628, -0.39449843764305115, 1.470306634902954, -0.27616631984710693, -0.47267022728919983, 0.4076998829841614, -0.2612261176109314, -0.312939316034317, -0.1086854487657547, -0.6198815107345581, 0.5109485983848572, 0.5076212286949158, 0.7970704436302185, 0.8854027986526489, -0.3054752051830292, -0.11233246326446533, -1.6386878490447998, 0.6438173651695251, 0.6878029704093933, 1.1615149974822998, -0.30771005153656006, 0.47516000270843506, 0.16435445845127106, -0.2871701717376709, 0.4465983510017395, 0.13608677685260773, 0.9070830345153809, 0.23592324554920197, -0.4823094606399536, -0.8422412872314453, -0.4261101484298706, -0.05836564302444458, -0.6235756874084473, 0.11432456970214844, 0.18304575979709625, -0.8308050036430359, -0.08829108625650406, 0.8629058599472046, 0.6557101011276245, -1.0527992248535156, -1.0626873970031738, -0.24100536108016968, 0.2347346842288971, -0.5439935922622681, 0.5692965984344482, -0.6061164140701294, -0.2393103539943695, -0.22520554065704346, -1.4378383159637451, -0.40394049882888794, 0.23172777891159058, 0.33849385380744934, 1.420662522315979, -0.7713461518287659, -1.042062520980835, -0.323025643825531, 0.21286451816558838, 0.5368152856826782, -0.09917955100536346, 0.0904230996966362, 0.9485031366348267, -1.0703924894332886, -0.42860764265060425, 0.40948835015296936, 0.7569906115531921, -0.47306326031684875, 0.5149088501930237, -0.08551851660013199, -0.04261596128344536, 0.2705194354057312, -0.06224923953413963, -0.7441891431808472, -0.7358046174049377, -0.5321632623672485, 0.3336702287197113, 0.18690849840641022, 0.5697813630104065, 1.8319340944290161, -0.2840433716773987, -0.24138687551021576, 0.4213216006755829, -0.6128495335578918, -0.5341315269470215, -0.05753512680530548, 0.6306283473968506, -0.08189327269792557, -1.0769623517990112, 0.3551730513572693, 0.3413703441619873, 0.35011935234069824, 0.5578542947769165, -0.10269493609666824, 0.8611348271369934, 0.8923422694206238, -0.4181060492992401, -0.22674915194511414, 0.2837947905063629, 1.3586795330047607, 1.2076635360717773, 0.07548882067203522, 0.19368821382522583, -0.8106541037559509, 0.6076480150222778, 0.01998922973871231, -0.3814559280872345, 0.6758803129196167, -0.1426839977502823, 1.1749910116195679, -1.1515918970108032, -0.23607772588729858, 0.7386124730110168, -0.035086508840322495, 0.32860860228538513, -0.3889041841030121, 0.34204772114753723, -0.31179162859916687, 0.20492757856845856, 0.04572929069399834, 0.9737249612808228, 0.7057647109031677, -0.2746477425098419, 0.03206091374158859, -0.0630214512348175, -0.766647458076477, 0.3813174366950989, -0.38960808515548706, -0.4053199291229248, -0.46135997772216797, 0.48802903294563293, 0.11473698168992996, -0.23010686039924622, -0.2605293393135071, 1.646488904953003, -0.7888976335525513, -0.7954928278923035, 0.14470596611499786, -0.2934269607067108, 0.5764662623405457, -0.9930382370948792, -0.1542573869228363, -0.7403264045715332, -0.34469419717788696, -0.08804488182067871, 0.03289131447672844, -1.3089402914047241, -0.7868057489395142, -0.5927704572677612, -0.8639063835144043, 0.24131613969802856, 0.770359992980957, 1.0267611742019653, 0.4788336753845215, 0.36601129174232483, 0.07153903692960739, 0.1552281528711319, -0.3797682225704193, 0.2469012588262558, 0.1871791034936905, -0.2575473189353943, -0.1634322851896286, -0.8438780307769775, -0.372829794883728, 0.685299813747406, 0.6267301440238953, 0.2726210951805115, 0.3424065113067627, 1.088981032371521, 2.2084996700286865, 0.06805526465177536, -0.7297036647796631, 0.4181066155433655, -0.7059842348098755, 1.199688196182251, 0.6175028085708618, -1.5985764265060425, -4.0333718061447144e-05, -0.980804443359375, -0.8592588305473328, 1.1177560091018677, -0.5335910320281982, -0.994657039642334, 1.688202142715454, 0.43789905309677124, -0.16365890204906464, 1.3070943355560303, -0.1071561723947525, 1.0877461433410645, -0.4656188488006592, 0.005700979381799698, -1.3610161542892456, 0.7277027368545532, 0.9440757036209106, 0.27238890528678894, -1.321610689163208, 0.0799146518111229, -0.19133509695529938, -0.32242950797080994, 0.36268243193626404, -0.14543385803699493, 0.8938537240028381, 0.21862897276878357, -0.1685091257095337, -1.2106513977050781, -0.47960126399993896, -0.14547352492809296, -0.2709229588508606, 0.19034922122955322, 0.11497936397790909, -0.2383785843849182, -0.8447349071502686, 0.25414228439331055, 1.0612342357635498, -0.7331626415252686, -0.4109255373477936, -0.674627959728241, 0.7100276947021484, 0.18543843924999237, -0.284709095954895, -0.6357897520065308, -0.4172224998474121, -0.8669614195823669, -0.7594743371009827, -0.36616286635398865, 0.5638701915740967, -0.8303067088127136, -0.6932696104049683, 0.04501596838235855, -0.35795512795448303, 0.39043989777565, 0.45463496446609497, 0.5686421394348145, -1.4908497333526611, -1.143298625946045, -0.1835717111825943, 0.08011173456907272, 0.4987648129463196, -0.49702736735343933, 1.0687440633773804, -0.3282488286495209, -1.0439175367355347, 0.842976987361908, -0.03545233607292175, -1.693257451057434, -0.7143362760543823, -0.995849072933197, 1.072208285331726, -0.7767665386199951, 0.06870968639850616, 0.05785582959651947, 1.29676353931427, -0.41844597458839417, -1.2130440473556519, -0.49272674322128296, -0.08703869581222534, 0.4219681918621063, 1.0990715026855469, -0.658881425857544, 0.9307809472084045, 0.09071361273527145, -0.9303266406059265, 0.14499419927597046, 0.7828044891357422, -0.8202992677688599, -0.07445523887872696, 0.7363949418067932, 0.782686173915863, 0.37104710936546326, 1.1051123142242432, -0.039986610412597656, 1.3604481220245361, -0.33235278725624084, 0.7812882661819458, -0.8719021677970886, 0.4062320590019226, 0.417897492647171, 0.36995095014572144, -0.242855042219162, -0.7665672302246094, -0.41715720295906067, -0.8978304266929626, -0.8617093563079834, 0.3896544277667999, 0.9005029201507568, -1.0684372186660767, -0.03530797362327576, -0.2824043333530426, 1.0027283430099487, -1.0059515237808228, -0.04903645068407059, 0.010717352852225304, -0.7710481286048889, 0.27541208267211914, -0.41830503940582275, 0.5073471069335938, -0.4202928841114044, -0.16278371214866638, 0.8290700912475586, 0.7975282073020935, -0.6220961809158325, 0.598270833492279, 1.0030587911605835, -0.34820684790611267, -1.2902886867523193, 1.7118492126464844, 0.7878389358520508, 0.24993087351322174, 0.11491996794939041, -0.019315080717206, 0.5621364712715149, -0.012569875456392765, -0.6297727823257446, -0.3051791787147522, -0.2449217438697815, 0.7926382422447205, 0.12284465879201889, 0.17193667590618134, -0.6967146396636963, 0.313888281583786, 0.3886077404022217, -0.11210838705301285, 1.052565574645996, -0.37057673931121826, 0.021786505356431007, 0.7798637747764587, 0.32510513067245483, -0.429670125246048, 0.2949894368648529, 0.37951987981796265, 0.1697397083044052, -0.40567904710769653, 0.8098082542419434, 0.2600254416465759, -0.31124597787857056, 0.1664573848247528, 0.2905929386615753, -0.47850391268730164, 0.089478500187397, -0.4812689423561096, -2.5729620456695557, 0.022544309496879578, -0.24982328712940216, -0.8852514624595642, 0.5509619116783142, -0.7589349150657654, -0.6275912523269653, 0.36947932839393616, 0.3541538417339325, -0.39784175157546997, -0.38404783606529236, -0.26596799492836, -0.46895140409469604, -0.4941338896751404, 0.9711543917655945, -0.3645705580711365, 1.003660798072815, -0.15483640134334564, -0.15129753947257996, -0.36671870946884155, -0.020650628954172134, -0.07495928555727005, 0.5362593531608582, 0.3778913617134094, -0.6556007266044617, -0.26921507716178894, -0.5946194529533386, 0.13310889899730682, 0.022812966257333755, 0.8518771529197693, 0.7388060688972473, -0.5767229199409485, -0.8703726530075073, -0.14548315107822418, 0.7161217927932739, 0.27645641565322876, -1.2356698513031006, -1.0547776222229004, -0.8564844727516174, 0.6166301965713501, -0.5371732711791992, 1.019370675086975, -0.17511692643165588, 0.42100220918655396, 0.6474545001983643, -0.2230789065361023, -0.3313294053077698, -0.5579219460487366, 1.0882059335708618, -0.3392464816570282, 0.7186564803123474, -0.13364988565444946, -0.5677448511123657, 0.6451128721237183, -1.036161184310913, -0.29985311627388, 0.507999837398529, -0.21792832016944885, 0.41364291310310364, -1.0457149744033813, -0.8674834370613098, -0.5452225208282471, 0.09757757931947708, 0.6219066977500916, 0.4586867094039917, 0.6292263269424438, 0.3436446189880371, -1.1320161819458008, 0.004846431314945221, 0.2952740788459778, -0.47285619378089905, 0.7228938341140747, 1.33099365234375, 1.4894988536834717, 0.10831117630004883, -0.10856538265943527, -0.11282169818878174, 1.0838210582733154, -0.7916297316551208, -0.5735796093940735, -1.2554816007614136, -0.0670492947101593, 0.0940835177898407], [-0.2281634360551834, 0.9728761911392212, -2.307185649871826, -0.4867136776447296, 0.3183324933052063, 0.2567273676395416, 1.4728869199752808, -0.1977459341287613, 0.04001152515411377, -0.6821922063827515, -1.177156686782837, 0.10075021535158157, 0.7366175651550293, 1.0374932289123535, 0.3612104654312134, 0.3286864161491394, 0.66031414270401, -0.2858704924583435, 0.9499029517173767, 1.3152976036071777, -0.6161159873008728, -0.7537758946418762, -0.5385705828666687, 0.3947864770889282, 0.43544116616249084, 0.36106184124946594, -1.2498579025268555, -1.1572705507278442, -0.9924253225326538, -0.7936016917228699, 0.12350791692733765, -0.7045776844024658, -0.5253093242645264, 0.6684753894805908, -0.5817700624465942, 1.034686803817749, 1.4708662033081055, 0.5271317362785339, 0.8338282704353333, 1.0162854194641113, 2.704007148742676, -0.5021753311157227, 0.45864149928092957, -1.3775252103805542, 0.2496255785226822, -0.25293901562690735, 0.36603111028671265, -0.9785263538360596, -0.09086083620786667, -0.7839180827140808, 0.7600123286247253, 0.5446078777313232, 0.7138316631317139, 1.081096887588501, 1.0628100633621216, -1.1608223915100098, -0.10459958761930466, 0.06197250261902809, 0.07452838122844696, 0.4057338237762451, 0.763716459274292, 0.05654388293623924, -0.33904778957366943, 1.351511001586914, 0.47612860798835754, -0.4605241119861603, 0.07312469184398651, 0.09396186470985413, 0.04801810532808304, -0.22177734971046448, -0.10299976170063019, -0.22041454911231995, -0.125219464302063, 0.10988403111696243, -1.4860330820083618, 0.5591734051704407, 0.8018395304679871, 0.2864021062850952, 0.3587450683116913, 0.6430731415748596, -1.253357172012329, 0.3436563014984131, 0.452508807182312, 0.25753021240234375, 1.1073262691497803, 0.5893430113792419, 0.6743589639663696, -0.6829290986061096, -0.9291149377822876, 2.046548843383789, 0.48895329236984253, 0.16593733429908752, -0.06271388381719589, -0.5214003324508667, 0.1305590718984604, 0.11750692129135132, -0.3039443790912628, -0.9606491923332214, -0.5990315675735474, -0.7371036410331726, -0.5963236093521118, -0.7008289098739624, 0.49057769775390625, 0.5920799970626831, 1.029547095298767, 1.6491724252700806, 0.06302683055400848, -0.5980902910232544, -1.2806476354599, 0.23034274578094482, 0.4661048352718353, 0.3141736090183258, -0.5723494291305542, -1.5069606304168701, -0.5716461539268494, 0.2335524559020996, 0.47245749831199646, -0.4842034578323364, 0.5398713946342468, 0.577076256275177, -0.6222929358482361, -0.04211621358990669, -0.7052932977676392, 0.4458036720752716, 0.6666184663772583, 0.6959419846534729, -0.349573016166687, -0.21685777604579926, 0.2934112548828125, 0.4415155351161957, 0.23224219679832458, 0.26914381980895996, 0.1484275609254837, 0.9552584290504456, -1.0117533206939697, 1.488065481185913, -0.14309971034526825, -0.7668949961662292, -0.21326132118701935, -0.37023797631263733, 0.46405744552612305, -0.09899821877479553, -0.5216858386993408, -1.220268964767456, -0.13967783749103546, -0.8477180600166321, 0.63377445936203, -0.646713376045227, -0.47992295026779175, -0.4510918855667114, -1.131298542022705, -0.04586363211274147, 0.30784621834754944, 0.687666118144989, 0.36080193519592285, 0.02337535098195076, 0.9567078351974487, 0.26090696454048157, 0.007215565070509911, 0.28811800479888916, 0.8311960697174072, -0.207050621509552, -0.47052696347236633, 0.44730082154273987, 0.29689544439315796, -0.1274375468492508, 0.47062456607818604, 0.34339362382888794, 0.5320054888725281, 1.00407874584198, -0.16084438562393188, -0.3130733370780945, -1.0642048120498657, 0.32696443796157837, 0.09672217071056366, -1.7490919828414917, 0.7370406985282898, -0.06297709047794342, -1.5460172891616821, -1.290876865386963, 0.6259796023368835, -0.6516380906105042, -0.15365728735923767, -0.539261519908905, 0.1464540660381317, -0.18297360837459564, -0.0076753683388233185, -0.5174825191497803, -0.45723599195480347, -0.9421539306640625, -0.8670040965080261, -0.5298438668251038, -1.3269652128219604, 0.06285208463668823, -0.594731867313385, -0.9510248303413391, 0.40541601181030273, -0.21764366328716278, -1.4787201881408691, -0.08581776171922684, 0.24733375012874603, -0.35278528928756714, -1.2997583150863647, 0.10766281187534332, -0.9937984347343445, 0.7648336887359619, -1.1528472900390625, 0.18785251677036285, -1.0770639181137085, 0.11088135838508606, 0.2743225693702698, -0.19980865716934204, -0.8532770872116089, 0.8556192517280579, 0.020261624827980995, -0.7943487167358398, -0.1583511382341385, 0.004490816965699196, -0.18058428168296814, 0.20071829855442047, 0.6034323573112488, 0.28025853633880615, 0.3940373659133911, -0.006083826068788767, 0.9037227630615234, -0.24073123931884766, -0.9803227782249451, -0.2947655916213989, -0.7392389178276062, 0.6038526892662048, -0.8476238250732422, -1.24200439453125, 1.205660343170166, 0.3338814079761505, -1.1477097272872925, 0.769895613193512, -0.22244331240653992, -0.47384515404701233, 0.49842968583106995, 0.893454909324646, 0.06235280632972717, 0.33140435814857483, -0.4652544856071472, -0.2307419329881668, -0.2400057464838028, 0.5670968294143677, 0.17146264016628265, -0.256832093000412, 0.2061581164598465, 1.265707015991211, 0.47783270478248596, -0.28230464458465576, 0.336920827627182, -0.4007260203361511, -0.7212216258049011, -0.4285850524902344, -0.6798277497291565, 0.03205810487270355, -0.3270721137523651, 1.8123124837875366, 0.6992374062538147, -1.1497865915298462, -0.17705033719539642, -0.33470940589904785, 0.08859268575906754, -0.760214626789093, -0.4017006754875183, -1.0512052774429321, 0.5534102320671082, 0.3598231375217438, 0.4818188548088074, 0.09142784029245377, -0.3232276141643524, 0.8403998017311096, 0.029516709968447685, 0.10415966808795929, -0.7136210799217224, 0.325497567653656, 0.03797907009720802, 1.1764788627624512, 0.8175761699676514, -1.219642162322998, -0.8991115689277649, -0.0598251074552536, 0.5826786756515503, 0.07975704222917557, -0.06422580778598785, 0.9501747488975525, 1.0985536575317383, -0.48491567373275757, 0.14009180665016174, 0.713189423084259, -0.6054874658584595, 0.35311612486839294, 0.2572057843208313, 0.2620353698730469, 0.34030672907829285, -1.5360743999481201, -1.2127867937088013, -0.5918442010879517, 0.48232391476631165, 1.092050552368164, 1.740466594696045, 0.7782993316650391, -0.16527944803237915, -0.44565674662590027, 0.0543062798678875, 0.018097296357154846, -1.0173672437667847, -0.21405276656150818, -0.1770692616701126, -1.0558569431304932, 0.3462396562099457, 0.10674108564853668, 0.12990932166576385, 0.6101329326629639, -0.054345227777957916, 0.5512694716453552, 0.44665786623954773, -0.4596390724182129, -0.608622670173645, -0.32248935103416443, -0.2825410068035126, -1.0304914712905884, 0.23582465946674347, 0.6369761824607849, -0.987500786781311, 0.006120787933468819, 0.3800218403339386, 0.331552654504776, 0.6357026100158691, 0.36518946290016174, 0.9594184160232544, -1.0286043882369995, -0.16607525944709778, 0.10788999497890472, 1.690405249595642, -0.0994369387626648, -0.766978919506073, -1.1731594800949097, -0.2242138385772705, 0.9548788666725159, -0.06783195585012436, -1.0209823846817017, 0.23110774159431458, -0.35867902636528015, -0.9974018335342407, -0.5050727725028992, -0.25032222270965576, 0.8136541843414307, -0.16366225481033325, -1.1611192226409912, 0.6582305431365967, 0.1750781387090683, -0.03224522992968559, 0.7538554668426514, -0.5555678606033325, 1.1171272993087769, -0.05157039687037468, 0.2406664937734604, 1.4495922327041626, -0.2684383988380432, 0.5896810293197632, -1.413387417793274, 0.8779847621917725, 0.3937712013721466, 1.005994200706482, 0.5320486426353455, 0.06556306034326553, 0.4201802611351013, -0.7795864939689636, 0.023174874484539032, 0.18928486108779907, 1.1225581169128418, 0.06682135909795761, -0.3834882378578186, -0.915904700756073, 0.0029159036930650473, -0.12001828104257584, -0.9800952672958374, -0.5854665040969849, -0.028896767646074295, -0.9226232171058655, -0.8641408085823059, 1.3014724254608154, 1.1306586265563965, -0.7369540333747864, -0.4821670353412628, 0.5363771915435791, 0.15363657474517822, 0.1906765252351761, 0.131109356880188, -0.6919788122177124, 0.6182816624641418, 0.3684936761856079, -1.0987831354141235, 0.17621901631355286, 0.09679082781076431, 0.8902994990348816, 0.6131305694580078, -0.9272845983505249, -0.3945336639881134, -0.2533925771713257, -0.1583445966243744, 0.44967466592788696, 0.37510430812835693, -0.023120148107409477, 0.9803663492202759, -0.4692496359348297, 0.16547207534313202, 0.5477365851402283, 1.008955955505371, 0.229021817445755, 0.031326983124017715, -0.4022025167942047, 0.19241757690906525, 0.372464120388031, -0.7895753979682922, -0.5222165584564209, 0.2349526584148407, -0.4708282947540283, 0.8598951697349548, -0.014810326509177685, -0.13082243502140045, 1.6962858438491821, 0.40968403220176697, 0.1745513677597046, 0.8264362215995789, -0.24029269814491272, -0.46216511726379395, 0.31803175806999207, 0.29743775725364685, 0.28426551818847656, -0.7017264366149902, 1.0414139032363892, 0.15707287192344666, -0.3175086975097656, 0.831746518611908, 0.5170738697052002, 0.8080438375473022, 0.2524130642414093, -0.3743985593318939, -0.059503376483917236, 0.6542771458625793, 1.3904320001602173, 1.0926766395568848, 0.6231405735015869, 0.35968196392059326, -0.7314271330833435, 0.776279091835022, -0.2621404528617859, -0.4533301889896393, 0.8345433473587036, -0.1688690334558487, 1.107124924659729, -1.6310709714889526, -0.5071724653244019, 1.1331394910812378, 0.33533358573913574, 0.38240379095077515, 0.5326709151268005, 0.6187695860862732, -0.8818530440330505, -0.02714153565466404, 0.42023080587387085, -0.3476141095161438, 0.09989384561777115, 0.43063122034072876, -0.05748377740383148, -0.1712612807750702, -0.32755348086357117, 0.09458770602941513, -0.7002884745597839, -0.28536567091941833, -0.29398825764656067, -0.6300009489059448, 0.5862365365028381, 0.1258280724287033, -0.23252880573272705, 1.3548718690872192, -0.24602873623371124, -1.191450834274292, 0.17422990500926971, -0.532403290271759, -0.115984246134758, -0.44071057438850403, -0.8198203444480896, -1.0248775482177734, -1.3299514055252075, -0.09496372938156128, 0.493412584066391, -1.2995553016662598, -0.9527816772460938, 0.055757150053977966, -1.1752134561538696, 0.4221256971359253, 0.20783589780330658, 1.5709517002105713, 1.4997237920761108, 0.026832517236471176, -0.224420428276062, 0.34972983598709106, -0.9704505205154419, 0.10528348386287689, 0.8915233016014099, -0.42965275049209595, -0.11573950201272964, -1.1371337175369263, -0.5808024406433105, 1.4256759881973267, 0.9241787195205688, -0.4366019368171692, 0.39903178811073303, 1.0160776376724243, 1.203004002571106, -0.6027213931083679, -1.0177087783813477, 0.4349062144756317, -0.18318027257919312, 1.007157564163208, 0.14246469736099243, -0.9824939370155334, -0.5797143578529358, -0.44824695587158203, -1.1999653577804565, 1.5869107246398926, -0.12418298423290253, -0.7607845664024353, 0.5576733350753784, 0.4501207172870636, -0.2908362150192261, 0.6686429381370544, -0.8002716302871704, -0.15896938741207123, 0.19907882809638977, 0.22795815765857697, -1.2009247541427612, 0.7240723371505737, -0.3307349979877472, 0.6692827343940735, -0.3965114653110504, -0.2984234690666199, 0.2066352516412735, -0.14929735660552979, 0.5410676002502441, 0.3255312740802765, 0.008441489189863205, 0.6931170225143433, 0.8797954320907593, -0.7377653121948242, -0.0179192665964365, -0.5999635457992554, 0.16946861147880554, 0.5812088847160339, 0.33124104142189026, -0.2381121665239334, -1.073288917541504, 0.2590659260749817, -0.18052944540977478, 0.2888464629650116, 0.03913099318742752, -0.4426160156726837, 1.3415476083755493, 0.36265385150909424, 0.23714971542358398, 0.25501951575279236, -0.5979394912719727, -0.3770099878311157, -0.6200687289237976, -0.14640487730503082, 0.5190025568008423, -0.4148736000061035, -1.0591634511947632, -0.07526606321334839, 0.09644666314125061, 0.143999382853508, -0.28534695506095886, 0.22273653745651245, -0.8796747326850891, -1.2434167861938477, -0.6699270009994507, -0.24708500504493713, 0.6031028628349304, -0.42042073607444763, 0.8409637808799744, 0.01870802603662014, -1.4596654176712036, 0.2727021872997284, -0.709632396697998, -1.5122687816619873, -0.2603908181190491, -0.9424664378166199, 0.9678770899772644, 0.1244397759437561, 0.6059643030166626, -0.17708826065063477, 0.4133845865726471, -0.462146520614624, -1.0384814739227295, -0.9294552206993103, 0.23532047867774963, 0.5172895193099976, 0.7616363763809204, -0.532277524471283, 1.3062679767608643, 0.3008674681186676, -0.412630170583725, -0.059818707406520844, -0.11876191943883896, -0.26056551933288574, -0.05456704646348953, 1.1425211429595947, -0.08144614845514297, 0.8359218835830688, 0.9535263776779175, 0.18450787663459778, 0.9683945178985596, 0.6696931719779968, 0.4112713634967804, -1.0780515670776367, -0.9830828905105591, -0.6094234585762024, -0.003480694256722927, -0.6905823349952698, -0.37243732810020447, -0.39031195640563965, -0.930895984172821, -1.4312413930892944, 0.3601073622703552, 1.403423547744751, -0.7693785429000854, 0.2889130711555481, -0.30787113308906555, 0.9746369123458862, -1.184988260269165, 0.3626549541950226, 0.024918172508478165, -0.34614717960357666, 0.3946165144443512, -0.21110078692436218, 0.13650648295879364, -0.840509831905365, 0.01760917901992798, 0.05346569046378136, 0.6115343570709229, -0.07711555063724518, 0.7031835913658142, 0.8098646998405457, -0.10652616620063782, -0.3959895968437195, 1.0678391456604004, 1.2787691354751587, -0.21207669377326965, -0.7326554656028748, 0.6491003036499023, -0.3250397741794586, 0.8633337020874023, -0.38476887345314026, -0.09881235659122467, -0.5055297017097473, 0.8145477771759033, 0.14827921986579895, -0.00025880406610667706, -0.6897448301315308, 0.3777236044406891, -0.3712044060230255, -0.017907073721289635, 0.9402610659599304, -0.4928969442844391, 0.298654705286026, 1.1010843515396118, 0.1317393034696579, -0.6648518443107605, 0.19386371970176697, 0.7707299590110779, 0.21362543106079102, -0.012177880853414536, 0.35028016567230225, 0.2630370259284973, -0.3454665243625641, 0.5130956172943115, 0.48025211691856384, -0.7168043851852417, -0.39258214831352234, -0.46093103289604187, -1.918321132659912, -0.5189778208732605, -0.7569595575332642, 0.07274794578552246, 0.5227081179618835, -0.7741842269897461, -0.9530497789382935, 0.24000360071659088, -0.031078701838850975, 0.5265255570411682, -0.7950615286827087, -0.1196725070476532, -0.5556114912033081, -0.017953641712665558, 1.2286970615386963, -0.49311041831970215, 1.6902345418930054, -0.2472826987504959, 0.11101359128952026, -0.5274695158004761, 0.153124138712883, 0.22573241591453552, 0.8462600111961365, 0.19439439475536346, -0.18221579492092133, -0.07427435368299484, -0.6955880522727966, -0.6287490129470825, 0.07299260795116425, -0.04803711920976639, 0.40261608362197876, 0.038098014891147614, -0.5197837352752686, -0.3462177515029907, 0.6544354557991028, 0.3042183220386505, -0.392608106136322, 0.14701172709465027, -1.117039442062378, 0.8168104887008667, -0.35895225405693054, 0.855973482131958, -0.8701431155204773, 1.0156360864639282, 0.6387972831726074, -0.43158382177352905, 0.24269920587539673, 0.21135126054286957, 0.28525352478027344, -0.059162624180316925, 0.5525285005569458, 0.7025672793388367, 0.11146106570959091, 0.1550687700510025, -0.9547268152236938, 0.06652503460645676, -0.0862710252404213, -0.32995402812957764, 0.248485267162323, -0.6089390516281128, -0.8745511174201965, 0.06495015323162079, -0.07521753758192062, 0.1194351315498352, 0.4828801155090332, 0.21500219404697418, -0.15022990107536316, -1.1718906164169312, 0.4050310552120209, 0.5592842698097229, -0.6936213970184326, 0.6348315477371216, 1.3062011003494263, 1.3484376668930054, 0.22741246223449707, -0.3182508051395416, -0.5524793267250061, 0.5373926758766174, -0.9509127140045166, -0.7903534770011902, -0.6707741022109985, -0.2862666845321655, -0.37445929646492004], [-0.10762152820825577, 2.2107248306274414, -2.432352304458618, 0.054706573486328125, 0.8857226371765137, 0.36697858572006226, 1.1581426858901978, -0.07616706192493439, -0.3478933274745941, -0.15440568327903748, -0.9837016463279724, 0.5392048954963684, 0.6251378655433655, 0.2277611494064331, 0.4157823324203491, 1.140140175819397, 1.4334772825241089, -0.1036924421787262, 0.9443971514701843, 1.2353718280792236, -0.5474092364311218, -0.49504324793815613, 0.2015923112630844, 0.12513265013694763, -0.22736868262290955, 0.3989446759223938, -1.241223931312561, -1.399957537651062, -0.7370059490203857, -1.1072520017623901, 0.4417441785335541, -0.37949877977371216, -0.2471814602613449, -0.1278506964445114, -1.2332037687301636, -0.5785762071609497, 1.704314112663269, 1.412596583366394, 1.016144037246704, 0.3260897397994995, 1.9283078908920288, -0.22900578379631042, 0.4570372998714447, -1.689184546470642, -0.2525416910648346, 0.03506370261311531, 0.41290009021759033, -0.08378136157989502, 0.4827037453651428, -0.24191556870937347, 0.48169204592704773, -0.9068032503128052, 0.5531214475631714, 0.8424937129020691, 1.0486246347427368, -0.27363747358322144, 0.4591308534145355, 0.2832353413105011, 0.06278068572282791, -0.6355255842208862, 0.8007773160934448, 0.29908886551856995, 0.20213264226913452, 0.7601506114006042, 0.17066991329193115, -0.4574272632598877, 0.03534579649567604, 0.06595854461193085, -0.021821539849042892, 0.04507702589035034, -0.0012543294578790665, 0.11845393478870392, -0.8925691843032837, 0.5096595883369446, -1.990590214729309, 0.3743007183074951, 0.6185007691383362, 0.9118102788925171, 0.5919770002365112, 0.3564590811729431, -0.15225307643413544, 0.30976787209510803, 0.6056598424911499, 0.11864840984344482, 0.546332597732544, 0.3464880585670471, 0.8845224380493164, -0.6748378276824951, -0.3350750803947449, 1.525546669960022, 0.8250429630279541, 0.013775574043393135, 0.28579574823379517, -0.42609578371047974, -0.5940285921096802, -0.40353962779045105, 0.4741339683532715, -0.2630637288093567, -0.7090910077095032, -0.964850902557373, -0.5659589767456055, -0.962162435054779, 0.3092832863330841, 0.08756118267774582, -0.18784092366695404, 1.23432195186615, 0.6811308264732361, -0.12145071476697922, -0.35021838545799255, -0.14289070665836334, 0.11839872598648071, 0.6423308849334717, -1.1104522943496704, -1.4092679023742676, -0.8394098877906799, 1.0079147815704346, 1.0532758235931396, -0.17056500911712646, 0.3669646382331848, 1.3837774991989136, -0.16829119622707367, -0.40306007862091064, -0.15579019486904144, 1.128598928451538, 0.21602262556552887, 0.7145007848739624, -0.6477749347686768, -0.47154945135116577, 0.21673110127449036, -0.06753944605588913, 0.34859129786491394, -0.3072790503501892, -0.4003491997718811, 0.7066998481750488, -0.904826819896698, 1.444930076599121, -0.2796061038970947, -0.5098745226860046, -0.06252946704626083, -0.3450305163860321, 0.5713288187980652, 0.4089726507663727, -0.45572659373283386, -0.7293643355369568, -0.4181780219078064, -0.8382960557937622, 0.5517776012420654, 0.09616430848836899, -0.8734859824180603, 0.25796496868133545, -1.1598128080368042, 0.5590121150016785, -0.09495348483324051, 0.30077770352363586, 0.12732155621051788, 0.13892924785614014, 0.633564293384552, -0.025365019217133522, 0.5299794673919678, 0.2858406901359558, 0.8059541583061218, -0.36155468225479126, -0.8069919347763062, 0.2884475886821747, 0.26197001338005066, -0.26568111777305603, 0.2513929605484009, 0.6228066682815552, 0.1923569291830063, 0.6681016683578491, -0.31593430042266846, -0.2112453281879425, -0.33834633231163025, 0.30280712246894836, 0.48724034428596497, -0.9389567375183105, 1.2120105028152466, -0.10501903295516968, -1.3945953845977783, -1.552388072013855, 0.20297802984714508, -0.4945298135280609, 0.45717963576316833, -0.01409730315208435, 0.19911706447601318, -0.8850500583648682, 0.16766826808452606, -0.35853463411331177, -0.7458946108818054, -0.3272707164287567, -0.41060587763786316, -0.394661545753479, -0.6167114973068237, 0.440405011177063, -1.0511924028396606, -0.6409478187561035, 0.42326709628105164, -0.8820812702178955, -0.5471858978271484, 0.09700837731361389, 0.03649729862809181, -0.5758585929870605, -1.1776759624481201, 0.22271424531936646, -0.3449985086917877, 0.942718505859375, -1.3710401058197021, 1.009498119354248, -0.9801194667816162, -0.12706194818019867, 0.567110538482666, 0.11749957501888275, -0.9450355768203735, 0.4559532105922699, -0.0035311952233314514, -1.5973840951919556, 0.4409402012825012, 0.4274846613407135, -0.3523195683956146, 0.4932979643344879, -0.25370723009109497, 0.44223782420158386, 0.06454359740018845, 0.1214338093996048, 0.46058720350265503, -0.24354341626167297, -0.6420679688453674, -0.6709417700767517, -0.47822368144989014, -0.23429974913597107, -0.5709916949272156, -1.3015419244766235, 0.6755887269973755, 0.11558117717504501, -1.3733251094818115, 0.21258428692817688, 0.23851022124290466, 0.003032408654689789, 0.5174694061279297, 1.193809151649475, 0.2512364387512207, 0.595446765422821, -0.3710924983024597, -0.40352097153663635, -0.4138440787792206, 0.18235072493553162, 0.8335824608802795, -0.4789801836013794, 0.2887386381626129, 1.3426486253738403, 1.309685468673706, 0.029979797080159187, 0.3224470317363739, 0.25007155537605286, -0.4961503744125366, -0.7749823331832886, -0.640984833240509, 0.41602885723114014, 0.004194520879536867, 1.733166217803955, 0.47572070360183716, -0.9267093539237976, 0.20267996191978455, -0.0820697769522667, 0.19148540496826172, 0.035200752317905426, -0.5645315647125244, -0.21968373656272888, -0.10894030332565308, 0.4122737944126129, -0.15346455574035645, 0.4899212419986725, -0.14622871577739716, 0.4831353425979614, -0.33597174286842346, -0.7568272948265076, -0.8396355509757996, 0.8441733717918396, -0.39397600293159485, 0.7185295224189758, -0.3312096893787384, -1.1121808290481567, -0.34963253140449524, -0.14438314735889435, 0.7416045069694519, 0.10904490947723389, 0.12239708751440048, 0.3497203588485718, 0.6108607649803162, -0.1521150767803192, 0.2615632712841034, 0.060535043478012085, -0.036098312586545944, -0.04650979861617088, -0.01137620210647583, 0.6131852269172668, 0.8175393342971802, -1.0332889556884766, -0.44744065403938293, -0.05973832309246063, 0.31055471301078796, 1.3669441938400269, 0.4474024772644043, 0.838038444519043, -0.026460980996489525, -0.5155297517776489, -0.32658782601356506, -0.31223973631858826, -1.036981463432312, -0.7657558917999268, -1.1264046430587769, -0.7145410180091858, -0.02505047619342804, -0.0999731793999672, 0.2582181394100189, 0.37694504857063293, -0.3654748201370239, 0.29002904891967773, 1.3574938774108887, -0.30682533979415894, -0.9850828051567078, -0.17610511183738708, -0.5910567045211792, -0.7967019081115723, 0.4634549915790558, 1.1083834171295166, -1.1813106536865234, -0.7326127886772156, 0.1048719510436058, -0.018482627347111702, 0.283964604139328, -0.07546647638082504, -0.014510557055473328, -1.3687201738357544, -0.7832350730895996, -0.3995106816291809, 1.9792535305023193, 0.07169041782617569, -0.4254021644592285, -0.3826870024204254, 0.7942332029342651, 0.7357187271118164, 0.030901866033673286, -1.0388641357421875, 0.6237768530845642, -0.3070501983165741, -0.5287865400314331, -0.06450330466032028, 0.5344310998916626, 0.5056533217430115, -0.6090754270553589, -0.8046715259552002, -0.15271170437335968, -0.2376583218574524, -0.24441131949424744, 0.8286409378051758, 0.012549306266009808, 1.1776247024536133, -0.3274536728858948, 0.0644155815243721, 0.532759428024292, -0.004068966023623943, 0.142318457365036, -1.4452859163284302, 0.3410472869873047, 0.6423803567886353, 0.9441954493522644, 0.7611272931098938, 0.44362249970436096, 0.04245647415518761, 0.509150505065918, 0.25988298654556274, 0.35016152262687683, 1.4608738422393799, 0.0752103179693222, 0.32469916343688965, -0.8159022331237793, -0.4065669775009155, -0.08485466241836548, -0.8595396876335144, -0.048319607973098755, 0.7380987405776978, -0.9684329032897949, -0.38736602663993835, 1.24594247341156, 0.44943177700042725, -0.7544245719909668, -0.20243820548057556, 0.41256844997406006, 0.4178188443183899, -0.5874029994010925, 0.5408278107643127, -0.49375149607658386, 0.03152226656675339, 0.2581561803817749, -1.3248751163482666, 0.16528142988681793, 0.17149975895881653, 0.667031466960907, 0.40146803855895996, -1.321864128112793, -0.010154006071388721, -0.5002796649932861, 0.6769059300422668, 0.33215171098709106, 0.24739430844783783, 0.3059045970439911, -0.12622776627540588, -0.014637534506618977, 0.16761444509029388, 0.026157040148973465, 0.6722667217254639, -0.888302743434906, 0.22272612154483795, -0.10225064307451248, -0.04674287885427475, -0.5546647906303406, -0.44308769702911377, -0.48382553458213806, 0.2069893479347229, -0.02877049706876278, 0.030673496425151825, 0.7077089548110962, -0.2792721390724182, 1.4694195985794067, 0.2164144217967987, 0.8731203079223633, 0.34764620661735535, -0.05277356877923012, -1.18050217628479, -0.014734387397766113, 0.5839971303939819, -0.204222172498703, -0.5911504626274109, -0.4309833347797394, 0.4938102662563324, -0.3442060649394989, 0.368133008480072, 0.440276563167572, 1.0857492685317993, 0.3998940587043762, 0.3554944694042206, -0.22173509001731873, 0.7252495288848877, 0.8211722373962402, 1.276269793510437, 0.368671715259552, -0.14073386788368225, -1.1595057249069214, 0.6229738593101501, -0.8427122831344604, -0.23577560484409332, 0.8775882124900818, 0.024255752563476562, 1.5126361846923828, -1.6137077808380127, -0.40366658568382263, 0.8469758629798889, 0.46757984161376953, -0.07979152351617813, 1.0094231367111206, -0.6020979285240173, -0.3040001690387726, 0.4557786285877228, 0.1598820835351944, -0.09196693450212479, 0.0016033230349421501, 0.11570348590612411, 0.01784466579556465, 0.9128761887550354, -0.4813583791255951, 0.7970815896987915, -0.8398616313934326, 0.1425895243883133, 0.37365299463272095, -0.2651008069515228, 0.2530503273010254, 0.25886669754981995, 0.27621015906333923, 1.2414604425430298, -0.365630179643631, -1.1567848920822144, -0.024330737069249153, -0.7824003100395203, 0.17581981420516968, -0.835054337978363, -0.05469401553273201, -0.6884559392929077, -0.02840137481689453, -0.42369014024734497, 0.6394957304000854, -0.5058168172836304, -0.586106538772583, -0.5265129208564758, -1.4065519571304321, 0.7674693465232849, 0.8717789053916931, 1.3802618980407715, 0.8814371824264526, 0.21944670379161835, 0.6758018136024475, 0.48670968413352966, -0.9885862469673157, -0.31109708547592163, 0.29592227935791016, -0.10917079448699951, -0.03179888799786568, -1.151504397392273, -0.5093899965286255, 0.015484396368265152, 0.16729551553726196, 0.13982948660850525, 0.9255958199501038, 0.8019365072250366, 1.2460205554962158, -0.656247615814209, -0.6649844646453857, 0.7007925510406494, -0.44117531180381775, 0.2785893976688385, 0.7243196368217468, -0.32243168354034424, -0.556299090385437, -0.7867031097412109, -1.396836519241333, 1.2550532817840576, 0.1617647409439087, -0.520253598690033, 1.033941388130188, 0.24694333970546722, 0.5364669561386108, 0.4147856533527374, -0.2060786485671997, 0.40689730644226074, 0.06552676111459732, -0.2761019766330719, -1.066284418106079, 1.0292497873306274, -0.19498205184936523, 0.4587702751159668, 0.1855776309967041, -0.21398590505123138, 0.04135744273662567, -0.49315133690834045, 0.15839871764183044, 0.1805262267589569, 0.3024127781391144, 0.9267995357513428, 0.10124523192644119, -1.318917989730835, 0.5386582016944885, -0.4424934983253479, -1.0398855209350586, 0.5099970698356628, 0.36773398518562317, 0.029283571988344193, -0.21223965287208557, -0.24621495604515076, -0.9125624299049377, -0.6049544215202332, -0.22346986830234528, -0.2840021848678589, 1.112908124923706, 0.6700469851493835, 0.09016314893960953, 0.22266677021980286, -0.4570378065109253, -0.25177523493766785, -0.1999247968196869, 0.39114999771118164, 0.1507347673177719, -1.0347697734832764, -0.26259514689445496, 0.3947117030620575, -0.7662187814712524, -0.15493299067020416, -0.6966635584831238, -0.24299883842468262, -0.6686522960662842, -0.9504261612892151, -1.2356775999069214, 0.06588786840438843, 0.8603399395942688, -0.820527970790863, 0.7930165529251099, 0.040478937327861786, -1.4364101886749268, 0.34317463636398315, -0.2671453356742859, -1.2935731410980225, -0.01692548207938671, -1.1933079957962036, 0.7201250195503235, 0.08457471430301666, -0.026583164930343628, -0.3929574489593506, 0.7089749574661255, -1.4924973249435425, -1.539969563484192, -0.8646976947784424, 0.013474440202116966, 1.010288119316101, 0.24272947013378143, -0.6687788963317871, 1.020904541015625, 0.29132702946662903, -0.23474448919296265, -0.10861711204051971, 0.003988079726696014, -0.016904320567846298, 0.316854864358902, 0.5774695873260498, 0.117256298661232, 0.44536763429641724, 1.0353288650512695, -0.10045827925205231, 1.3721667528152466, 0.32625266909599304, 0.67435222864151, -0.8952503800392151, -0.3173460066318512, 0.14268678426742554, 0.6587681770324707, -1.1271915435791016, -1.0888581275939941, -0.0991661548614502, -0.6551550030708313, -0.7673143744468689, 0.5008137226104736, 0.7382141351699829, -1.1305279731750488, 0.3822879493236542, -0.7407377362251282, 0.09982923418283463, -1.2399815320968628, 0.30577370524406433, -0.3897799253463745, -0.5277447700500488, -0.25740909576416016, 0.7133654356002808, -0.06049944460391998, -1.4830831289291382, 0.3140144944190979, -0.2974972128868103, -0.17615042626857758, -0.5508307814598083, 0.6235960125923157, 1.0407108068466187, 0.562900960445404, -0.7123625874519348, 1.1623106002807617, 0.6321715712547302, -0.24376463890075684, -0.5420283079147339, 0.4841421842575073, -0.2810893952846527, 0.7084605693817139, -0.3077802360057831, -0.2653200030326843, -0.9917165637016296, 1.4787729978561401, 0.37023237347602844, 0.2080845981836319, 0.013962054625153542, 0.3613984286785126, -0.3450530171394348, 0.04741007834672928, 0.5167500972747803, -1.3516790866851807, 0.14560097455978394, 1.1900150775909424, 0.26236727833747864, -0.333074688911438, 0.34924304485321045, 0.48996877670288086, 0.47374388575553894, -0.5569992661476135, 0.4904486835002899, 0.7215558886528015, -0.6052908301353455, 0.16686509549617767, 0.4681461453437805, -0.275736927986145, -0.08866622298955917, -0.4190385937690735, -1.0264582633972168, 0.21950243413448334, -0.5293896198272705, -0.842129647731781, 0.5665827393531799, -1.3952314853668213, -0.6504015326499939, 0.34238186478614807, -0.487079381942749, -0.10119825601577759, -0.5594671368598938, -0.15166960656642914, 0.17926768958568573, -0.2720721364021301, 0.8106995820999146, -0.20900729298591614, 1.7896780967712402, -0.34365344047546387, 0.27972471714019775, -1.86501944065094, -0.5494785308837891, 0.92365962266922, 0.027792789041996002, -0.07460761070251465, 0.3627729117870331, 0.7361958622932434, -0.3219596743583679, -0.2259056568145752, 0.16590990126132965, 0.18482014536857605, 0.021786540746688843, 0.1043359637260437, -0.3889537453651428, -0.10075372457504272, 0.759337842464447, 0.8766707181930542, -0.038815710693597794, -0.5168929696083069, -1.210634469985962, 0.13476905226707458, -0.24755722284317017, 0.6686439514160156, -0.6338503956794739, 0.661392331123352, 0.20096488296985626, -0.6083418130874634, -0.019351013004779816, -0.1911182701587677, 1.212908148765564, 0.16293857991695404, 0.32735762000083923, -0.0034586936235427856, 0.040007755160331726, -0.25531378388404846, -0.9808269143104553, -0.08881565183401108, 0.28730639815330505, -0.6449719071388245, 0.09064783900976181, -1.0914053916931152, -0.38619911670684814, -0.49478626251220703, 0.2741027772426605, 0.6926200985908508, 0.9966964721679688, 0.6770648956298828, -0.03541304171085358, -0.7846208214759827, 0.22538426518440247, 0.24557186663150787, -0.495162695646286, -0.26610317826271057, 1.5842223167419434, 1.8145495653152466, 0.6846118569374084, 0.846407949924469, -0.625745952129364, 0.16188201308250427, -1.052676796913147, -0.8702528476715088, -0.5063503384590149, -0.9304731488227844, -0.15578776597976685], [0.23310746252536774, 1.4278903007507324, -2.1227834224700928, -0.0013359887525439262, 0.3008582592010498, 0.542358934879303, 0.20061683654785156, 0.24048146605491638, 0.1601279079914093, -0.44900789856910706, -1.6744047403335571, 0.18671606481075287, 0.17705923318862915, 0.7730186581611633, -0.6454611420631409, 0.28899574279785156, 0.3989223837852478, 0.39240124821662903, 0.06639847904443741, 0.7916886806488037, -0.8686342835426331, -0.6914786696434021, -0.48644235730171204, 0.16924002766609192, -0.15071633458137512, 0.5631812214851379, -1.7273164987564087, 0.5159450173377991, -1.2806364297866821, -1.0600923299789429, -0.2440098375082016, -0.20849379897117615, -0.0029046721756458282, -0.1921001821756363, -1.1359930038452148, -0.40035492181777954, -0.144361212849617, 0.2120652049779892, 0.03611825779080391, 0.3860289752483368, 1.717891812324524, 1.300004243850708, 0.42230111360549927, -1.384103775024414, 0.7246899008750916, -0.49890196323394775, 1.166635513305664, -1.0525972843170166, -0.3054504990577698, -0.18908853828907013, 0.6534474492073059, 0.10872237384319305, 0.7236050367355347, 0.9924842715263367, 1.3056960105895996, -0.6291726231575012, 0.1873691976070404, -0.10811382532119751, 0.5503983497619629, 0.6714937090873718, 0.7424443960189819, -0.12362820655107498, -0.3078012466430664, 0.9690056443214417, 0.23790723085403442, 0.1908324658870697, 0.03796781599521637, 0.3786236345767975, -0.5877575278282166, -0.04820946604013443, 0.4027002453804016, 0.05261644721031189, -0.22777722775936127, -0.19914419949054718, -0.6910868287086487, 0.24826136231422424, 0.7986147403717041, 0.28921830654144287, -0.49463510513305664, 0.6072691082954407, -0.8116118311882019, 0.19085389375686646, 0.7726139426231384, -0.6297479867935181, -0.11944285780191422, 0.3671623468399048, 0.6435603499412537, -0.48126956820487976, -0.6335395574569702, 1.1797261238098145, 0.4085511267185211, 0.15507684648036957, 0.2227214276790619, -0.012878654524683952, -0.20343449711799622, -0.46741238236427307, 0.2533179223537445, -0.629931628704071, -0.6141504645347595, -0.42592570185661316, -0.8799777030944824, -0.40646547079086304, 0.3141492009162903, 1.1180403232574463, 0.7334396243095398, 1.7478065490722656, -0.7655212879180908, -0.6731159687042236, 0.18913815915584564, 0.8737653493881226, -0.21360425651073456, 0.32893773913383484, -0.7154560685157776, -1.301483392715454, -0.4654480516910553, 0.7633097171783447, 0.9215831756591797, -0.18168842792510986, 0.9174221754074097, 0.9925140738487244, 0.31719765067100525, -0.400615394115448, -0.6625869870185852, 0.737936794757843, 0.6270554065704346, -0.2943347990512848, -0.59977126121521, 0.09925853461027145, 0.11279919743537903, 0.09500574320554733, 0.09188327193260193, -0.22347508370876312, 0.22401823103427887, 1.308854579925537, -0.22462362051010132, 0.8778181076049805, 0.05061694607138634, -1.1196601390838623, -0.239095076918602, 0.25634509325027466, 0.3240402042865753, -0.17993256449699402, -0.28752535581588745, -1.1721669435501099, -0.07295344024896622, -0.037083566188812256, -0.08031845092773438, -0.2243463546037674, -0.7653160095214844, 0.5886319279670715, -1.5705052614212036, 0.5863599181175232, -0.5285415649414062, 0.5946773290634155, 0.3079373240470886, -0.057566773146390915, 0.3155795931816101, 0.20667417347431183, 0.3650619685649872, 0.7665985226631165, 0.8131089210510254, 0.22077587246894836, -0.4080246090888977, 0.5323686599731445, 0.6339337229728699, -0.5180459022521973, 0.22488903999328613, 0.16929423809051514, -0.9301173686981201, 0.9548398852348328, -0.9090262055397034, -0.8999029994010925, -0.6358683109283447, -0.10471216589212418, -0.5027198195457458, -0.6539621353149414, 0.39206257462501526, -0.9749196767807007, -0.9748948812484741, -0.9956554770469666, 1.5433529615402222, -0.536853551864624, 0.45806437730789185, -0.07456962764263153, 0.3157948851585388, -0.48141634464263916, 0.17994274199008942, -0.0462958887219429, -0.26883262395858765, -0.41813141107559204, -1.0222272872924805, -0.09599948674440384, -0.7140877842903137, 0.6394293308258057, -0.30090853571891785, -0.7172701358795166, 0.46211594343185425, 0.11348296701908112, -0.598894476890564, -0.0998583734035492, -0.42442578077316284, -0.49548661708831787, -1.0532402992248535, 0.6898080706596375, 0.24628522992134094, 1.3003851175308228, -0.029620081186294556, 0.5304304957389832, -0.4037953317165375, -0.14067642390727997, 0.859717845916748, -0.17577233910560608, -0.8451278209686279, 0.46893227100372314, -0.05656279996037483, -0.8357998728752136, 0.3788549304008484, 0.1813916116952896, 0.5109861493110657, -0.12333715707063675, 1.111473798751831, 0.5697842836380005, 0.18169835209846497, -0.1403418630361557, 0.18595363199710846, 0.00951335858553648, -0.05997399240732193, -0.26922836899757385, -0.6986958384513855, -0.03863236680626869, -0.8269352316856384, -0.6958134174346924, 1.1850438117980957, 0.09266340732574463, -0.7868857979774475, 1.2758967876434326, -0.42263558506965637, 0.13117045164108276, -0.47532039880752563, 0.6861579418182373, 0.20911411941051483, -0.24508169293403625, -0.9953858852386475, -0.5209296345710754, -0.558621346950531, 0.30209046602249146, 0.6934399008750916, -0.07509656250476837, 0.17337974905967712, 1.6740385293960571, 0.6254227757453918, -0.41358160972595215, 0.8535221219062805, 0.23205623030662537, -0.3441530168056488, -1.0955854654312134, 0.007442876696586609, 0.12120886892080307, -0.8496128916740417, 1.481447458267212, 0.7464153170585632, -1.4593664407730103, -0.44310933351516724, -0.00610921299085021, 0.2801397740840912, -0.39330601692199707, -0.33365002274513245, -0.5496066212654114, 0.6435744762420654, 0.6838569045066833, 0.07285067439079285, -0.10383825749158859, 0.003408856689929962, 1.045656681060791, 0.19367259740829468, 0.32600849866867065, -0.29358816146850586, 0.19505712389945984, 0.25089266896247864, 0.6438420414924622, 0.09072735905647278, -1.618355631828308, -0.6908381581306458, -0.23489058017730713, 0.35160258412361145, -0.08043201267719269, -0.8458347916603088, 0.5943066477775574, 0.8273098468780518, -0.34386998414993286, 0.188558429479599, 0.4260108470916748, 0.14069907367229462, -0.1339043527841568, 0.48404377698898315, 0.36162951588630676, 0.9611651301383972, -0.9675120711326599, -0.7379522323608398, -0.04985545948147774, 0.2727743685245514, 1.5965462923049927, 0.7127408981323242, 1.252373456954956, -0.017344888299703598, -0.2089361995458603, -0.4866703450679779, -0.20428884029388428, -1.079616904258728, -0.446085661649704, -0.896675705909729, -1.0427218675613403, -0.1303950995206833, -0.5039531588554382, 0.44487640261650085, 0.2584313154220581, 0.308535635471344, 0.6355018019676208, 0.044364143162965775, -0.925697386264801, -0.5409746170043945, -0.14882425963878632, 0.4099571108818054, -1.8460667133331299, 1.170067548751831, 1.3119382858276367, -1.1115869283676147, 0.026357362046837807, 0.30333948135375977, -0.17521288990974426, 0.5174158811569214, 0.05993860214948654, 0.6814862489700317, -0.9318989515304565, -0.6614618301391602, -0.008325573056936264, 1.3143434524536133, 0.3845348656177521, -0.5070327520370483, 0.15181028842926025, 0.3121911287307739, 0.5008260011672974, -0.03341691195964813, -1.116401195526123, 0.19400480389595032, -0.1533421277999878, -1.040379524230957, -0.09023365378379822, 0.7612923383712769, 1.1280860900878906, -0.509480357170105, -0.2434232085943222, -0.0887475460767746, 0.036624521017074585, -0.7611689567565918, -0.1974198967218399, -0.4308628737926483, 0.3906809091567993, -0.2573985457420349, 0.09687642753124237, 0.8707171678543091, -0.17154814302921295, 0.02828206494450569, -1.5785497426986694, 0.5339173078536987, 1.0452860593795776, 2.0179615020751953, 0.5437769889831543, 0.26533985137939453, -0.012933650985360146, -0.9531343579292297, -0.5656975507736206, 0.47134119272232056, 0.23711147904396057, 0.6855915188789368, -0.49284929037094116, -0.7773457169532776, 0.05440894886851311, -0.25237444043159485, -0.7231801152229309, -0.742404043674469, 0.27272501587867737, -0.6401440501213074, -0.5077261328697205, 0.6324278116226196, 0.34998396039009094, -0.49596843123435974, -0.19802699983119965, 0.4161216914653778, -0.4589085876941681, -0.5829526782035828, 0.3325263261795044, -0.6483173370361328, -0.05060362070798874, 0.8985589742660522, -0.5715214014053345, -0.8946202397346497, -0.093247190117836, -0.35457414388656616, 0.9595378637313843, -1.3780356645584106, -0.958317220211029, -0.9875888824462891, 0.107378751039505, 0.35242295265197754, 0.08105185627937317, 0.8063363432884216, 0.007801257539540529, -0.05748017504811287, -0.44909289479255676, 0.008609396405518055, 1.239427089691162, -0.03602002188563347, 0.2396768480539322, -0.4522489607334137, -0.002263373229652643, 0.429536908864975, -0.8697735667228699, -0.40096747875213623, -0.4984027147293091, -0.7534886598587036, 0.5145173072814941, -0.0897928774356842, 0.06525132805109024, 0.8622953295707703, 0.00672277482226491, 0.2893499732017517, 0.886173665523529, -0.24543429911136627, -0.7253966331481934, -0.2900552749633789, 0.5345553159713745, -0.5433652997016907, -0.5292057991027832, 0.48444631695747375, 0.33065611124038696, 0.5628019571304321, 0.6805315017700195, -0.06710842996835709, 0.09037865698337555, 0.08545897901058197, -0.2706303894519806, -0.3789313733577728, 0.5487877726554871, 1.3121213912963867, 0.8127482533454895, 1.1254860162734985, -0.0843873992562294, -0.7642199993133545, 1.2521202564239502, -0.01109111774712801, 0.3639068603515625, -0.1929236501455307, 0.8371813297271729, 0.959322452545166, -1.02611243724823, -0.31591033935546875, 0.24825625121593475, 0.6040692925453186, 0.270956814289093, -0.33544260263442993, 0.34640073776245117, -0.7459618449211121, -0.23816055059432983, -0.06860313564538956, -0.11242567002773285, 0.8345855474472046, -0.3361330032348633, 0.12810705602169037, 0.0703035444021225, -0.14047099649906158, -0.07113365828990936, -1.115025520324707, 0.6157999038696289, 0.39436623454093933, 0.06295328587293625, 0.3504568040370941, 0.543167769908905, 0.1909523904323578, 0.43908876180648804, -0.30526968836784363, -0.226897194981575, 0.5996558666229248, -0.9477061033248901, 0.032052770256996155, -0.4963730275630951, -0.8081060647964478, -0.7129324674606323, -0.1042327880859375, -0.2812914550304413, -0.3737855553627014, -0.16319699585437775, 0.015188703313469887, 0.2159409523010254, -1.144948124885559, -0.2023714929819107, 0.5076521635055542, 1.1048763990402222, 0.42610716819763184, 0.7892624735832214, 0.5375963449478149, 0.17083200812339783, -0.7844515442848206, 0.27105963230133057, 0.023751288652420044, 0.05005275458097458, -0.5272477865219116, -0.5225417017936707, -0.5142203569412231, 0.2720237672328949, 0.700580894947052, 0.07316657900810242, -0.1612614095211029, 0.29145440459251404, 1.4701759815216064, -0.27437373995780945, -0.30311423540115356, 0.20471744239330292, -0.2736685872077942, 0.8000061511993408, 0.15496855974197388, -1.0692675113677979, -0.524402916431427, 0.039996951818466187, -2.2878384590148926, 1.3484208583831787, -0.063295878469944, -1.5104092359542847, 0.9872170090675354, 0.7629532814025879, 0.1628233790397644, 0.6184849143028259, -0.41858506202697754, 0.35885319113731384, 0.45872732996940613, 0.08027079701423645, -1.2819126844406128, 0.644389271736145, 0.6711283326148987, 0.2500319182872772, -0.7968510985374451, -0.07743779569864273, 0.052919935435056686, 0.18161864578723907, 0.04308338090777397, 0.25970518589019775, 0.5979771614074707, 0.6848933696746826, -0.038654107600450516, 0.2903848886489868, 0.3645493686199188, -0.4442252516746521, 0.45410647988319397, -0.3701859712600708, 1.3300697803497314, -0.23245419561862946, -0.39315760135650635, 0.2071252316236496, -0.8267092108726501, 0.32050833106040955, 0.04649750515818596, -0.6003515124320984, 0.7528823018074036, 0.38175657391548157, -0.25542980432510376, -0.0865967646241188, -0.5826607942581177, -0.7099388241767883, -0.7010423541069031, -0.4818408787250519, 0.8875207304954529, -1.4494191408157349, -0.40382274985313416, -0.7801417708396912, -0.3274930417537689, 0.11788902431726456, -0.32830706238746643, 0.07647708058357239, -1.0972685813903809, -1.2949588298797607, 0.23227231204509735, 0.3347858488559723, 0.35040727257728577, 0.2199544906616211, 0.5445005297660828, 0.27353155612945557, -1.326442003250122, 0.993462860584259, 0.27982693910598755, -2.3016197681427, -0.5840471982955933, -1.4405558109283447, 0.9959320425987244, 0.5930408239364624, 0.46231526136398315, -0.5296108722686768, 1.3732043504714966, -0.7979043126106262, -0.8179145455360413, -0.7485620379447937, -0.7410783767700195, 0.3516814410686493, 0.5323776006698608, -0.7179973721504211, 0.6148132681846619, 0.1775703728199005, -0.5721545815467834, 0.03237473964691162, 0.1987607777118683, -0.7178057432174683, 0.22855976223945618, 0.3569873869419098, 0.33347082138061523, 0.3994547128677368, 1.033132553100586, 0.7817093133926392, 1.3681050539016724, 0.011481720954179764, 1.1486029624938965, -0.379506379365921, 0.03823251649737358, -0.9033800959587097, -0.16856548190116882, -0.8012745976448059, 0.220183864235878, -0.054782770574092865, -1.061328411102295, -0.834469199180603, 0.23917709290981293, 0.7869868278503418, -1.3705605268478394, -0.2497340738773346, -0.29789209365844727, 0.18080544471740723, -0.748896598815918, 0.5070800185203552, 0.1784386783838272, -0.17141859233379364, 0.4628378450870514, -0.27326926589012146, 0.3446418344974518, -0.3505774140357971, 0.0751374214887619, 0.43261662125587463, 0.7653881311416626, -0.2675701081752777, 0.46697336435317993, 0.3717115521430969, -0.07277755439281464, -0.7079558372497559, 0.8410078287124634, 1.2739646434783936, -0.00036851316690444946, 0.5309520363807678, 0.6217482686042786, -0.42704296112060547, -0.14832302927970886, -0.2670688331127167, -0.07666733115911484, -0.6192597150802612, 0.8002907037734985, -0.05745574086904526, 0.27142593264579773, -0.5993104577064514, 0.7251469492912292, -0.13278284668922424, 0.7644402384757996, 1.1431455612182617, 0.18243356049060822, -0.8580314517021179, 0.6801925897598267, 0.8885654211044312, -0.11390797048807144, 0.23089590668678284, 0.527711808681488, -0.11518904566764832, 0.04221891239285469, 0.43453842401504517, 0.3136504292488098, -0.5102981328964233, 0.6051825881004333, 0.5048708319664001, -0.07617082446813583, -0.14634250104427338, -0.31761959195137024, -1.1967179775238037, -0.9191907048225403, -0.208438903093338, -0.2535458505153656, 0.2698003351688385, -1.671939492225647, -1.2076271772384644, 0.13639673590660095, -0.6997429132461548, 0.26320356130599976, -0.5384960174560547, -0.41155341267585754, -0.018249325454235077, 0.05896318331360817, 1.4434400796890259, -0.3155202865600586, 1.5713093280792236, 0.9370355606079102, -0.6856845617294312, -0.18845294415950775, -0.10195514559745789, -0.42177578806877136, 0.2933206558227539, 0.732658863067627, -0.11566250771284103, 0.8052091598510742, -0.6019156575202942, -0.706571638584137, 0.40971875190734863, 0.03421151638031006, 0.5256770849227905, -0.795045793056488, -0.7370737791061401, -0.31011638045310974, -0.040914617478847504, -0.0894622951745987, -0.6057233810424805, -0.3552560806274414, -0.8507340550422668, 0.08234793692827225, -0.05655255913734436, 0.8383944034576416, -0.261196106672287, 1.0087206363677979, 0.34272846579551697, -0.05580443888902664, -0.4694082736968994, -0.7508940100669861, -0.1818847507238388, -0.348381370306015, 0.3751557767391205, -0.16086049377918243, -0.33090609312057495, 0.2935633957386017, -1.0030450820922852, 0.7792062163352966, 0.5448071956634521, 0.12335441261529922, 0.2887111306190491, -0.3752634823322296, -1.2060292959213257, -1.0497721433639526, 0.3299887478351593, 0.738092303276062, 0.6865827441215515, 0.2819784879684448, -0.041440386325120926, -0.71500164270401, 0.07716326415538788, 0.15173690021038055, 0.036002688109874725, 0.9076883792877197, 1.9852453470230103, 1.6679751873016357, 0.11198706179857254, -0.509372353553772, -0.2572029232978821, 0.9054340124130249, -0.6245798468589783, -0.594743013381958, -0.7008996605873108, 0.13449057936668396, 0.04666280746459961], [-0.30578628182411194, 2.1703155040740967, -2.71166729927063, 0.6683415174484253, 0.6857660412788391, 0.15793654322624207, 0.6039053201675415, -0.016628706827759743, 0.046622276306152344, -0.5966033339500427, -1.036144733428955, 0.33358660340309143, -0.04235520586371422, 1.0344665050506592, -0.3348482847213745, 0.6172477006912231, 0.3970845341682434, 0.04063316062092781, 0.004491404630243778, 1.188252329826355, -0.42921561002731323, -0.7816891074180603, -0.42897579073905945, 0.5665960311889648, -0.11354424059391022, -0.20802080631256104, -1.2378050088882446, 0.29404565691947937, -0.7048581838607788, -0.5639029145240784, 1.6224769353866577, -0.2978211045265198, 0.36322295665740967, -0.3967670500278473, -1.2323795557022095, -0.30777740478515625, 0.38721412420272827, -0.4395856261253357, 0.2573506236076355, -0.15092243254184723, 1.6256698369979858, 0.9205251932144165, -0.13825629651546478, -2.020620107650757, -0.25883206725120544, -0.5022032856941223, 0.7894523739814758, -0.5341994762420654, 0.2642999589443207, -1.042009711265564, 0.5268548727035522, 0.0836343914270401, 0.9080925583839417, 1.715732455253601, 0.5605547428131104, -1.5392389297485352, 0.032757483422756195, 0.7474889159202576, 0.10153016448020935, 0.5464491248130798, 0.9229192733764648, -1.202034592628479, 0.2976699769496918, 0.7479187846183777, 0.3024173974990845, -0.3815043568611145, 0.40171515941619873, 0.3191317617893219, -0.037355970591306686, 0.1255231350660324, 0.17837053537368774, 0.612716019153595, -0.6127083897590637, 0.6995983719825745, -0.7270092964172363, 0.37997081875801086, 0.7439711093902588, 0.07329468429088593, -0.584094762802124, 0.6416012644767761, -0.14390704035758972, -0.016272034496068954, 0.7065466046333313, -0.05277622863650322, -0.22677768766880035, 0.10717800259590149, 0.39352497458457947, -0.2649337947368622, -0.6583683490753174, 1.1627097129821777, 0.4411623179912567, 1.3851312398910522, 1.0503934621810913, -0.20163017511367798, 0.0007798541337251663, -0.7801914215087891, 0.11512820422649384, -1.023238182067871, 0.057606156915426254, -0.6257583498954773, -0.03466382622718811, -1.0585801601409912, 1.3375067710876465, 0.34342458844184875, 0.2931046187877655, 0.8861572742462158, -0.378780335187912, -0.3328186571598053, 0.6903886198997498, -0.038785651326179504, -0.3620949387550354, -0.2457689493894577, -0.6673893928527832, -1.3588200807571411, 0.21790865063667297, 1.4665086269378662, 1.515784502029419, 0.3744022250175476, 0.625071108341217, 0.20258116722106934, -0.6888187527656555, -0.6800071001052856, -0.5709298253059387, 0.06125196814537048, 1.4492552280426025, 0.08628850430250168, -0.6481211185455322, -0.2237967699766159, 0.33981087803840637, 0.3775624930858612, 0.43580299615859985, 0.07468758523464203, -0.1045503318309784, 0.35720294713974, 0.049779415130615234, 0.8378692865371704, -0.44730591773986816, -0.9043088555335999, -0.23052994906902313, 0.8134253025054932, 0.06634389609098434, -0.4181945025920868, 0.24978075921535492, -0.24818794429302216, -0.20382344722747803, -1.2597522735595703, 0.8932402729988098, -0.04245857149362564, -0.2398589849472046, 0.633193850517273, -1.2792595624923706, 0.12493958324193954, 0.1656157225370407, 0.6222062706947327, 0.3739071488380432, -0.17308111488819122, 0.41906046867370605, 0.06814826279878616, 0.4235433042049408, 0.44314149022102356, 1.0836988687515259, -0.008790279738605022, -0.3716686964035034, 0.37348228693008423, 0.4324279725551605, 0.047361817210912704, 0.3126259446144104, -0.023036666214466095, -0.4018303155899048, 1.0892382860183716, 0.018100526183843613, -0.9068868160247803, -0.12591272592544556, 0.7213688492774963, 0.11331548541784286, -0.4142829477787018, 0.547204315662384, -0.39115333557128906, -1.1241830587387085, -0.8265394568443298, 1.002173900604248, -0.4617833197116852, 0.907364010810852, -0.2895181477069855, 0.7268968224525452, 0.3778359591960907, 0.22237059473991394, -0.5724111199378967, -0.5809302926063538, -1.2112687826156616, -0.49039921164512634, -0.09047044068574905, -1.462459683418274, 0.37849634885787964, -0.4971584677696228, -0.9727436304092407, 0.6588771939277649, -0.9404937028884888, -0.8084258437156677, 0.4445706009864807, 0.7746853828430176, -0.4460916221141815, -0.631521463394165, 0.05449783429503441, -0.4678463935852051, 0.7635068297386169, 0.21659892797470093, 1.0530434846878052, -0.6299455165863037, 0.4554120898246765, 0.699751615524292, -0.8195674419403076, -1.560896873474121, 0.7890905141830444, -0.534584641456604, -1.2255693674087524, 0.9328722357749939, 0.16441525518894196, 0.017256220802664757, 0.038836244493722916, -0.342072457075119, 1.1871321201324463, 0.1395796537399292, -0.5280283689498901, 0.34765440225601196, -0.973249077796936, -0.5013724565505981, -2.0465614795684814, -0.1506839245557785, -0.31353506445884705, -1.0633713006973267, -1.1917119026184082, 0.4514853060245514, 0.24474868178367615, -1.4723832607269287, 0.4275926351547241, -0.08758160471916199, 0.31008514761924744, -0.22215627133846283, 1.2180445194244385, 0.15788224339485168, 0.8180139660835266, -0.42608365416526794, 0.0001837071031332016, -0.5933375954627991, -0.07538291066884995, 0.6876713633537292, -0.2826189696788788, 0.8684291839599609, 1.4331517219543457, 0.6199986934661865, -0.48946237564086914, 0.6049674153327942, -0.5280619859695435, -0.3981929421424866, -0.8341154456138611, -0.029968174174427986, 0.5177090167999268, -0.5131898522377014, 1.4490805864334106, 0.41842958331108093, -0.9301003813743591, 0.31045001745224, 0.331920325756073, 0.20050114393234253, -0.096643827855587, -0.34835174679756165, -0.798101007938385, -0.07899196445941925, -0.355044424533844, -0.30188262462615967, 0.5257692337036133, 0.1966015249490738, 0.7842814326286316, -0.3718433082103729, -0.7812581062316895, -0.1155647486448288, 0.4551997482776642, -0.5757512450218201, 0.8574078679084778, -1.041512370109558, -1.5057612657546997, -0.6355594396591187, 0.4620135724544525, 0.10231570899486542, 0.19250671565532684, 0.23177005350589752, 0.711763858795166, 0.49469420313835144, 0.2149888128042221, 0.2887275218963623, 0.010760397650301456, 0.6794162392616272, -0.2738569378852844, 0.28814268112182617, 0.21450360119342804, 0.8478872776031494, -0.4066425561904907, -0.9342132210731506, 0.20814642310142517, 0.29834553599357605, 1.4084030389785767, 0.43834540247917175, 1.456676959991455, -0.5882181525230408, -0.0571427196264267, -0.7894995808601379, -0.1650514304637909, -1.374767780303955, -0.06266507506370544, -0.5124865174293518, -1.1770036220550537, -0.7233599424362183, -0.7127424478530884, 0.14295822381973267, 0.13356484472751617, 0.0719216912984848, 0.760807454586029, 0.3491438627243042, 0.30277445912361145, -1.664342999458313, -0.7607272863388062, -0.5562858581542969, -0.7719435691833496, 0.9413571953773499, 2.0257980823516846, -1.480736494064331, 0.07120420038700104, 0.005425245966762304, -0.12310456484556198, 0.4873320460319519, 0.5448099970817566, 0.23335357010364532, -1.3138984441757202, 0.012976037338376045, 0.6214514374732971, 1.1942740678787231, 0.8300880789756775, -0.8656749129295349, -0.550419270992279, 0.4590878188610077, 1.1868858337402344, -0.6664910912513733, -0.14958195388317108, 0.5882123708724976, -0.4631895422935486, -0.03259870037436485, 0.022458873689174652, 0.5190621018409729, 0.457234263420105, -0.6538257598876953, -1.2697858810424805, 0.2629299759864807, -0.07247994840145111, -0.7122573256492615, 0.12289821356534958, 0.40248194336891174, 0.4135652184486389, 0.010373223572969437, -0.31789958477020264, 1.3595033884048462, 0.09155848622322083, -0.015142092481255531, -0.8137333393096924, 0.43697553873062134, 0.6004030108451843, 1.8565385341644287, 0.19662706553936005, 0.7485974431037903, 0.1169772744178772, -0.8251534104347229, 0.18333107233047485, 0.24967196583747864, 0.1115512102842331, 0.38949793577194214, -0.7366570234298706, -0.6142972111701965, -0.9805101752281189, 0.18425260484218597, -0.3103351593017578, 0.12258921563625336, 0.7789059281349182, -0.7684807777404785, -0.7575116157531738, 0.7254637479782104, 0.9198473691940308, -0.7645334601402283, -0.3305755853652954, -0.14802266657352448, 0.629290759563446, -1.1069471836090088, 0.487373411655426, 0.6731224656105042, -0.10583006590604782, 0.4323655366897583, -0.774135410785675, -0.7209610342979431, -0.06011180207133293, 0.29958224296569824, 1.1736479997634888, -1.9411933422088623, -0.4103703200817108, -0.9999472498893738, 0.12500648200511932, 0.6393744349479675, 0.12497974932193756, 0.2055915892124176, 0.33911561965942383, -1.0045462846755981, 0.029550623148679733, 0.6356715559959412, 1.0231070518493652, -0.08087213337421417, 0.10782338678836823, -0.13698126375675201, -0.12831871211528778, -0.07510238140821457, -1.298823356628418, 0.25456365942955017, 0.5947491526603699, -0.4378887116909027, -0.23733817040920258, 0.4550022780895233, -0.5882512927055359, 2.342700958251953, 1.0653496980667114, 0.13408347964286804, -0.11681611835956573, 0.6053239703178406, -0.6606721878051758, -0.21555455029010773, 0.45651471614837646, -0.7408462166786194, -0.5626751780509949, 0.7222787737846375, 0.41960012912750244, 0.7391737103462219, -0.1863388866186142, 0.039282992482185364, 0.5520037412643433, 0.49910181760787964, -0.2161077857017517, -0.6135508418083191, 0.3821268379688263, 0.9328232407569885, 0.9943340420722961, 1.405418038368225, -0.04222039133310318, -0.43291613459587097, 1.0994343757629395, -0.49261876940727234, 0.8650254607200623, 0.7340906858444214, 0.2189476639032364, 1.2419536113739014, -1.0071709156036377, -0.3199462294578552, 0.08662208169698715, -0.3439490795135498, 0.5912795066833496, 0.19206443428993225, 0.6862031817436218, -0.568871796131134, -0.6226322054862976, -0.13147401809692383, -0.9806578159332275, 0.78379225730896, 0.08132176846265793, 0.5830281972885132, 0.30861619114875793, -0.810053825378418, -0.06738198548555374, -0.9155454039573669, 0.33840614557266235, -0.9384481906890869, -0.1531289666891098, 0.7327306270599365, 0.8766766786575317, 0.9303389191627502, 0.07918579876422882, 0.4856049716472626, -1.08182692527771, 0.39366352558135986, -1.0086408853530884, 0.17083021998405457, -0.6090692281723022, -0.1854553073644638, -0.8840025663375854, 0.29828283190727234, -0.19486501812934875, -0.16185320913791656, -0.3833714723587036, -0.6144574880599976, -0.872391402721405, -0.7297526001930237, 0.3763452172279358, 0.4999847114086151, 0.8617062568664551, 0.3661158084869385, 1.0213489532470703, 0.9234192371368408, -0.20060621201992035, -0.6182411313056946, -0.44689950346946716, 0.04410208389163017, 0.025094663724303246, -0.5286387801170349, -0.3539104163646698, -0.7238051295280457, 0.5237129330635071, 0.07880573719739914, -0.4541420340538025, 0.7562187910079956, 0.8717594742774963, 1.3116894960403442, -0.3298301100730896, -0.8810942769050598, 0.754443883895874, -0.13084407150745392, 1.497076392173767, 0.5610450506210327, -0.7111639380455017, -0.17338240146636963, -0.2403419315814972, -1.9472676515579224, 1.6352514028549194, -0.09725139290094376, 0.09971166402101517, 1.043654441833496, 0.24920699000358582, -0.10177414864301682, 0.761100709438324, -0.18865486979484558, 0.47835877537727356, 0.0061479657888412476, -0.4872664213180542, -0.3859347403049469, 0.5527579188346863, 0.6288754940032959, 0.17304149270057678, -0.7605059146881104, 0.750794529914856, -0.5215473771095276, -0.1653524935245514, -0.2732168734073639, 0.119303859770298, 0.5870726108551025, 0.18649786710739136, -0.024837231263518333, -0.18946735560894012, 0.27339503169059753, -1.0867559909820557, 0.1333128660917282, 0.6700828671455383, 0.042370010167360306, 0.49572646617889404, -0.40005168318748474, 0.3090016841888428, -1.0645864009857178, -0.021076951175928116, -0.2082444131374359, -0.5662862062454224, 0.8862771987915039, 0.5478212833404541, -0.14106042683124542, 0.6545767188072205, -0.09940574318170547, 0.12488298863172531, -0.3662674129009247, -0.9200650453567505, 1.2230433225631714, -1.2766008377075195, -0.6721758246421814, -1.234582543373108, -0.028726894408464432, 0.018987208604812622, 0.7424359321594238, 0.26287129521369934, -0.6947627067565918, -0.8006835579872131, -0.5300552845001221, 0.4180055856704712, 0.46112552285194397, -0.34551212191581726, 0.5924155712127686, 0.3368484079837799, -0.717143714427948, -0.37475475668907166, -0.1069083884358406, -2.0915095806121826, 0.23720130324363708, -1.145269513130188, 0.5951610803604126, 0.0704185962677002, -0.057403240352869034, 0.3344801664352417, 1.6803584098815918, -1.6823608875274658, -0.9529657363891602, -0.9595740437507629, -1.0284327268600464, -0.27034395933151245, 0.6409467458724976, -0.9683565497398376, 0.5750844478607178, -0.5992966294288635, -0.09457740187644958, -0.3772925138473511, 0.6767615079879761, -0.4259900152683258, 0.10265936702489853, -0.3993995189666748, -0.03593619540333748, -0.04407941550016403, 1.4761571884155273, 1.1256518363952637, 1.1153645515441895, -0.17221467196941376, 1.6393500566482544, 0.031899645924568176, -0.71015864610672, 0.06217820942401886, 0.3363623321056366, -0.45850062370300293, -0.3264656960964203, 0.735748291015625, -0.7839437127113342, -1.4381992816925049, -0.36639487743377686, 0.8881544470787048, -0.9473684430122375, -0.262922078371048, -0.4649287164211273, -0.5133587718009949, -1.2127045392990112, 0.4921736717224121, 0.6187882423400879, -1.1398180723190308, -0.9375250339508057, -1.0522890090942383, 0.014457550831139088, -1.0849299430847168, -0.5307692289352417, 1.1042722463607788, 0.7936105132102966, 0.06597092002630234, 0.306841105222702, 0.2510250508785248, 0.6080061793327332, -0.194205641746521, 0.8205381035804749, 0.8245493769645691, -0.48900672793388367, 0.0689917504787445, -0.40905633568763733, -0.07115547358989716, 0.09383238106966019, -0.6039118766784668, -0.49755311012268066, -0.4581461548805237, 0.6514028906822205, 0.7612065076828003, 0.20809988677501678, 0.14977221190929413, 1.0488438606262207, -0.012711839750409126, 0.7575300335884094, 1.1691910028457642, -0.6715824604034424, -0.12424701452255249, 1.3346142768859863, 0.09104930609464645, -1.1336382627487183, -0.07538126409053802, 0.11189399659633636, 0.236802875995636, 0.15275420248508453, 0.6302176713943481, 0.6085044145584106, -0.09252399206161499, 0.7184222936630249, 0.26755836606025696, -0.37945985794067383, -0.4947577714920044, 0.12829388678073883, -1.4011770486831665, -0.1550668627023697, -0.8466867804527283, 0.010873749852180481, 0.7227352261543274, -1.3142246007919312, -1.3759011030197144, -0.18438273668289185, 0.044130317866802216, -0.5801359415054321, -0.3124048709869385, 0.3991784155368805, 0.3385436534881592, -0.32926636934280396, 0.7698515057563782, -0.36900368332862854, 1.459916591644287, -0.47890448570251465, -0.12453107535839081, -0.5601319670677185, -0.6004745364189148, 0.1783248484134674, 0.37708383798599243, -0.20695531368255615, -0.5629185438156128, 0.590980589389801, -1.0472009181976318, -0.1577252298593521, 0.18714985251426697, 0.1708875447511673, -0.29580655694007874, -0.6439710855484009, -0.6364837288856506, 0.468809574842453, 0.2668903172016144, 0.31883394718170166, -0.4854390323162079, -0.9834647178649902, -0.6237350702285767, 0.37976792454719543, -0.21841849386692047, 0.510168194770813, -0.2633693516254425, 0.5296983122825623, -0.5822945237159729, -1.260060429573059, -1.2507350444793701, -0.0064911385998129845, 0.8141804337501526, 0.5707946419715881, -0.11341097950935364, -0.28547462821006775, -0.26133331656455994, 0.332155704498291, -0.8896490931510925, -0.2255677431821823, 0.718844473361969, 0.09886234998703003, -0.12840594351291656, -0.8290292620658875, -0.1967087835073471, -0.5005814433097839, 0.16774699091911316, 0.7774906158447266, 0.10146532952785492, 1.1429942846298218, 0.06874305009841919, -0.643234372138977, -0.09466478228569031, 0.3080403506755829, 0.4897631108760834, 0.5828169584274292, 1.3018511533737183, 0.9356774687767029, -0.7565270066261292, -0.4001815915107727, 0.04892275854945183, 0.1657976359128952, -1.1570473909378052, -0.3068975508213043, -0.6119601130485535, 0.03714485839009285, 0.7310871481895447], [-0.7649194002151489, 2.4790279865264893, -2.220818281173706, -0.6594656109809875, 1.4432783126831055, 0.408124178647995, 0.712708055973053, -0.20736682415008545, -0.6210689544677734, -0.5364825129508972, -0.5012758374214172, 0.37325048446655273, -0.5268993973731995, 1.9823492765426636, 0.4944929778575897, 0.6652581095695496, 0.14577476680278778, -0.4764440953731537, -0.6634977459907532, 1.2771587371826172, -0.33483317494392395, -1.3660253286361694, -0.44311976432800293, 0.12494460493326187, 0.21728362143039703, 0.28967007994651794, -1.5606446266174316, 0.18854859471321106, -1.0100696086883545, -0.8902290463447571, 0.7798698544502258, -0.33747559785842896, 0.33855873346328735, -0.18480592966079712, -2.1352221965789795, -0.041038721799850464, 0.8537367582321167, 0.051081933081150055, -0.6400994062423706, 0.03407252952456474, 1.6994518041610718, -0.10049251466989517, 0.0697266235947609, -1.9706270694732666, 0.874595046043396, -0.5177466869354248, 1.265824794769287, -1.0415993928909302, -0.3482908606529236, -0.8922194242477417, 0.18709200620651245, -0.9250320196151733, 0.6825292706489563, 1.1199451684951782, 0.9978298544883728, -0.5743328332901001, 0.16409750282764435, 0.309013694524765, 0.5886062979698181, 0.6297309398651123, 1.1145422458648682, 0.07739844918251038, -0.27420902252197266, 0.5933502316474915, 0.7346831560134888, -0.09110582619905472, 0.13346001505851746, 0.7238999605178833, -0.6577013731002808, 0.6342921257019043, 0.5383192896842957, 0.470777690410614, -0.08461932092905045, -0.45334696769714355, -0.7863868474960327, 0.09115076065063477, 0.49410250782966614, 0.2243499755859375, -0.1105489507317543, 0.7115328907966614, -0.607400119304657, -0.2997519373893738, 0.5146082043647766, -0.6882553696632385, 0.05515044927597046, 0.15431992709636688, -0.292082816362381, -0.510942280292511, -0.15813186764717102, 2.1737403869628906, 0.21862097084522247, 0.35521695017814636, 0.1107143685221672, -0.6957531571388245, 0.19716957211494446, -0.06115960329771042, 0.24240557849407196, -0.8712714910507202, -0.5711269378662109, -0.4474700689315796, -0.5672576427459717, -1.2860664129257202, 0.7003530859947205, 0.631307065486908, 0.2380850464105606, 1.3555018901824951, -0.10783789306879044, -1.2271889448165894, -0.10293525457382202, 0.3256729543209076, 0.35016611218452454, 0.5264518857002258, -1.2320339679718018, -1.1805472373962402, -0.2664646506309509, 0.4590364992618561, 1.4553080797195435, -0.4956306517124176, 0.48198202252388, 0.5800690054893494, -0.07629109919071198, -0.9842737913131714, -0.6946113705635071, -0.1589886099100113, 1.069551706314087, 0.6792346835136414, -0.15718339383602142, -0.3527294397354126, 0.4462553560733795, -0.4240167438983917, 0.23693639039993286, -0.15764476358890533, -1.180497646331787, 0.8112637996673584, -0.3432237207889557, 1.1493220329284668, -0.5325625538825989, -0.8149620294570923, 0.730283796787262, 0.11422962695360184, 0.19115446507930756, -0.17625536024570465, -0.27346089482307434, -0.8315389752388, 0.32606640458106995, -1.115134596824646, 1.0011169910430908, -0.3951120376586914, -0.5830034017562866, 0.49261462688446045, -1.5277118682861328, 0.12308799475431442, 0.30064889788627625, 1.1381022930145264, 0.9508855938911438, 0.2005281001329422, 0.40325868129730225, -0.0649360790848732, 0.31615889072418213, 0.6882988214492798, 1.0070008039474487, 0.5547044277191162, -1.1438480615615845, 0.3442096710205078, 0.17436964809894562, -0.4612570106983185, 0.7536619901657104, 0.6794869899749756, 0.6642106175422668, 0.47301217913627625, -0.3056611120700836, -0.30699509382247925, -0.03822220861911774, 1.1550430059432983, -0.1761125922203064, -0.9458166360855103, 0.578859269618988, -0.28788065910339355, -0.8809565305709839, -1.3813979625701904, 1.0299458503723145, -0.361909419298172, -0.02388123609125614, -0.3382400572299957, 0.26381415128707886, -0.3212382197380066, 0.14463385939598083, -0.06022876501083374, -0.6321389675140381, -0.9104426503181458, -1.539475679397583, -0.41632089018821716, -1.501862645149231, 0.026297586038708687, -0.35217761993408203, -1.4547475576400757, 1.1693429946899414, -0.20555174350738525, -0.6614432334899902, 0.6595377326011658, 0.18626396358013153, -0.5688312649726868, -1.286778450012207, -0.2888837158679962, -0.014485415071249008, 1.0595406293869019, -0.222065731883049, 0.10759522020816803, -0.788342297077179, 0.4429525136947632, 1.493189811706543, 0.18875546753406525, -0.8349051475524902, 0.0714949443936348, -0.3572663962841034, -0.803231954574585, 0.15420538187026978, -0.5680145025253296, 0.28043001890182495, 0.39078137278556824, 0.3005886971950531, -0.10542072355747223, 0.2117011845111847, 0.2949691116809845, 0.4017200171947479, -0.8132923245429993, -0.40678417682647705, -0.8927428126335144, -0.8000749349594116, -0.10378775000572205, -1.1684021949768066, -0.8167775869369507, 0.4536396563053131, 0.45365840196609497, -0.9634456038475037, 0.4139113128185272, 0.053423959761857986, 0.12051618844270706, 0.02739294059574604, 1.2409311532974243, 0.2622545063495636, 0.7994769215583801, -0.07152583450078964, -0.030273789539933205, -1.0701836347579956, -0.23149101436138153, 0.7874334454536438, 0.1320551037788391, -0.10608254373073578, 1.0455514192581177, 0.6020119190216064, -0.09307889640331268, 0.6522156000137329, 0.006833601277321577, -0.0025509349070489407, -0.7180888652801514, 0.3190328776836395, 0.23110981285572052, -0.13785867393016815, 1.3120044469833374, 0.46623966097831726, -1.3900034427642822, -0.18277832865715027, 0.0037544872611761093, 0.10656686872243881, -0.6587857007980347, -0.18185807764530182, -0.848222017288208, 0.26051095128059387, -0.10480205714702606, 0.2115279883146286, 0.5021439790725708, -0.3107249438762665, 1.2077745199203491, -0.460068017244339, -0.7402142286300659, 0.3852164149284363, 0.9781234264373779, 0.5872896313667297, 0.7099516987800598, -0.07660019397735596, -1.428649663925171, -0.6242430210113525, 0.12426099181175232, 0.5050219893455505, -0.05516301840543747, -0.06597694009542465, 1.4287757873535156, 0.34922677278518677, -0.10235609859228134, 0.6324765682220459, 0.22421973943710327, 0.06159088388085365, -0.04442856088280678, 0.6730617880821228, 0.48725542426109314, 0.6751677393913269, -0.7354029417037964, -0.8574385643005371, -0.2411658614873886, -0.10930763930082321, 0.7093014717102051, 0.30038756132125854, 1.3347358703613281, -0.47010546922683716, -0.07107225805521011, -0.009277936071157455, -0.1827252209186554, -0.47694408893585205, -0.18009434640407562, -0.7845717072486877, -0.9018213748931885, 0.05866873636841774, -0.3804919719696045, -0.1652674823999405, 0.3205263018608093, 0.3550955355167389, 1.3033215999603271, -0.04366161301732063, -0.11667530238628387, -1.076521635055542, -0.24476443231105804, -0.5743125081062317, -0.5929208397865295, 0.5463268160820007, 1.864727258682251, -1.0074235200881958, 0.061340052634477615, 0.5398242473602295, -0.6234844326972961, 0.3798283040523529, 0.01831408590078354, -0.06916845589876175, -1.1423143148422241, -0.18346062302589417, -0.5140070915222168, 1.6883403062820435, 0.07735393196344376, -0.8920544981956482, -0.46903103590011597, 0.36712315678596497, 1.1863914728164673, -0.06973718851804733, 0.14267583191394806, 0.5681400299072266, -0.8403348326683044, 0.10632339119911194, -0.3824824094772339, 0.892512857913971, 0.32575610280036926, -1.0958679914474487, -0.3565131723880768, -0.014596759341657162, -0.34039565920829773, -0.43221136927604675, -0.050337862223386765, -0.344808429479599, 0.5353666543960571, -0.3321417272090912, 0.13706529140472412, 1.2238582372665405, -0.698996901512146, 0.1828337013721466, -0.9857528805732727, 0.9108787178993225, 0.19445587694644928, 1.2774783372879028, 0.8291603922843933, 0.2577430009841919, 0.559038519859314, 0.3610922396183014, -0.4184723496437073, 0.26054805517196655, 0.7727867960929871, -0.16215276718139648, -1.0033769607543945, -1.0246992111206055, -0.4792570471763611, 0.1517907828092575, -0.6489312052726746, -0.26385682821273804, 0.3844117522239685, -0.7903397679328918, -1.0718010663986206, 1.0590741634368896, 0.6407283544540405, -0.3670676052570343, -0.22202761471271515, -0.11992155760526657, 0.8867413401603699, -0.5901946425437927, 0.3141702711582184, -0.18776097893714905, 0.1056133359670639, -0.19494469463825226, -0.6055932641029358, -1.2678964138031006, -0.9323115944862366, 0.16869641840457916, 1.082732915878296, -1.2082549333572388, -0.3140445649623871, -0.02359742484986782, 0.3318338692188263, 0.9102882742881775, 0.0067736078053712845, 0.41420677304267883, 0.4681871831417084, -0.07492201775312424, 0.6229435801506042, 1.0116019248962402, 1.1180975437164307, -0.0036054099909961224, -0.048914823681116104, -0.48971039056777954, -0.010614006780087948, 0.5113957524299622, -0.884983241558075, 0.02124783582985401, 0.19018852710723877, -0.8535968661308289, -0.24383029341697693, 0.25663354992866516, 0.13170477747917175, 1.2186154127120972, 0.5876305103302002, 0.6297159790992737, 0.5368555784225464, 0.23927250504493713, -0.6010329127311707, -0.39941683411598206, 0.06451579928398132, -0.11844661086797714, -0.623676061630249, 0.06534551829099655, 0.43929755687713623, 0.4094257950782776, -0.0857226774096489, -0.33657699823379517, 0.6754085421562195, -0.097539022564888, -0.5710791349411011, -0.2511316239833832, 0.20065967738628387, 0.9627484679222107, 1.2636665105819702, 1.5976516008377075, -0.37807995080947876, -1.5287933349609375, 0.8981335759162903, -0.6190513372421265, 0.12391025573015213, 0.8125998973846436, 0.38840827345848083, 1.7531757354736328, -1.1327506303787231, -0.7362683415412903, 0.6239657998085022, -0.16783680021762848, 0.1700192093849182, -0.38897785544395447, 0.7270027995109558, -0.3503451645374298, -0.1568753719329834, 1.1910743713378906, 0.05160706862807274, 0.8709784746170044, -0.3755112886428833, 0.6043208241462708, -0.052022162824869156, -0.24691563844680786, 0.2574620544910431, -0.6487954258918762, 0.4748481810092926, -0.36782094836235046, 0.2710762619972229, 0.9335544109344482, 0.14471708238124847, 0.47070083022117615, 1.3129886388778687, 0.27041107416152954, -1.4719138145446777, 0.15284501016139984, -0.7487406134605408, -0.31560274958610535, 0.0065343924798071384, 0.04188684746623039, -0.0802546888589859, -1.0146548748016357, -0.36091354489326477, -0.06473392993211746, -0.34082940220832825, -0.9916899800300598, -0.7169895172119141, -0.5270101428031921, 0.639970600605011, 0.18756702542304993, 1.0608360767364502, 0.41958221793174744, 0.6664689779281616, 0.6744211316108704, 0.31721392273902893, -1.0172820091247559, -0.061662912368774414, -0.00963938981294632, 0.03569108620285988, -0.3266216814517975, -0.5341108441352844, -0.5776461958885193, 0.8217843770980835, 0.4511914551258087, 0.29694899916648865, 0.3288562595844269, 1.0855549573898315, 0.9926614761352539, -0.31135284900665283, -0.7437666654586792, -0.30519601702690125, -0.3110855221748352, 1.5586936473846436, 0.8319690823554993, -0.8370708227157593, -0.43441152572631836, -0.5205145478248596, -2.323834180831909, 1.5958887338638306, -0.21954753994941711, -0.8888206481933594, 0.9144603610038757, 0.23905444145202637, 0.29525870084762573, 0.7498184442520142, -0.0761881023645401, 0.013845138251781464, 0.25948914885520935, -0.4570367932319641, -0.7347927689552307, 0.3077743649482727, 0.03689330071210861, 0.0005068590398877859, -1.6435273885726929, 0.2452026605606079, 0.1021452248096466, -0.6137007474899292, 0.9743183255195618, 0.5600924491882324, 0.37120506167411804, 0.13142672181129456, -0.21861635148525238, -0.2662394344806671, 0.5441733598709106, -0.2350347936153412, 0.22130174934864044, -0.5160596370697021, 0.28400519490242004, 0.1795896738767624, -0.11468935757875443, -0.46232372522354126, 0.45990151166915894, -0.11543173342943192, -0.10507262498140335, -0.6108360290527344, 0.6308832168579102, 1.043999195098877, -0.6077004075050354, 0.32762250304222107, -0.2426607608795166, -1.168096899986267, -0.8762409687042236, -0.49531203508377075, 0.8219517469406128, -0.9678253531455994, 0.06660202890634537, -0.7773784399032593, -0.4069754183292389, -0.25820910930633545, 0.581953227519989, -0.09420575946569443, -1.492296576499939, -1.6094958782196045, -0.29114294052124023, 0.17475281655788422, 0.36988022923469543, -0.7163670659065247, 1.1942999362945557, 0.01002766378223896, -1.3951643705368042, 0.9087938070297241, -0.22366616129875183, -1.3969224691390991, -0.7534480094909668, -1.2137138843536377, 0.8478817343711853, 0.1158866360783577, -0.6295368075370789, 0.15982945263385773, 0.5788632035255432, -1.402449131011963, -0.8634750843048096, -0.2672297954559326, -0.37603864073753357, 0.680700421333313, 0.44516825675964355, -0.43691036105155945, 0.8713770508766174, 0.002583000808954239, -0.2572902739048004, -0.16733576357364655, 0.4378628730773926, -1.3781377077102661, 0.20728753507137299, 0.4326435923576355, 0.353603333234787, 0.31623896956443787, 2.105255603790283, 1.336608648300171, 1.1226778030395508, -0.8716340661048889, 1.7453553676605225, -0.4762609899044037, -0.5879030227661133, -0.1289815902709961, 0.23139439523220062, -1.654962182044983, -1.0865468978881836, 0.5594034194946289, -1.1004548072814941, -1.033743143081665, 0.23564240336418152, 1.2969387769699097, -0.4764823615550995, -0.11416836827993393, -0.191053569316864, 0.54887855052948, -1.196495771408081, 1.0645517110824585, 0.6727068424224854, -1.361617088317871, -0.07111872732639313, -0.30614280700683594, 1.251572847366333, -0.8347988724708557, 0.37302252650260925, 0.4304434061050415, 0.6019600033760071, -0.3528505563735962, 0.24717387557029724, 0.26547443866729736, 0.2608877122402191, -1.0246955156326294, 1.1197854280471802, 0.7056267857551575, -0.4730151891708374, 0.03575733304023743, 0.6711963415145874, -0.13961981236934662, 0.29131579399108887, -0.15493392944335938, 0.07887300848960876, -0.579892635345459, 0.7790151238441467, 0.17590832710266113, 0.2824185788631439, -0.20517970621585846, 0.9999892115592957, 0.09965954720973969, 0.7470842599868774, 1.239811897277832, -0.9346896409988403, -0.46685129404067993, 0.932605504989624, 0.5001912713050842, -0.594331681728363, 0.14453931152820587, 0.4654100239276886, -0.29263320565223694, 0.23759271204471588, 0.8469697833061218, 0.5181365609169006, -0.7112112045288086, 0.6524080634117126, 0.38516566157341003, -0.535884439945221, -0.5868843793869019, -0.06198957562446594, -1.636223554611206, -0.0580270029604435, -0.3822576105594635, -0.3461126983165741, 0.6777318120002747, -0.37797513604164124, -1.778073787689209, -0.40185555815696716, -0.7777227163314819, -0.40570926666259766, 0.03830066695809364, -0.1547538787126541, 0.03268156945705414, -0.2346331775188446, 1.2383244037628174, -0.16100139915943146, 2.3410892486572266, -0.022558411583304405, 0.03646191582083702, -0.08871327340602875, 0.4236946105957031, 0.16633340716362, 0.3807854652404785, -0.21234381198883057, -1.048617959022522, 0.7826122045516968, -0.8697302937507629, -0.4247097373008728, 0.512497067451477, 0.23377203941345215, 0.6761561036109924, -0.4520946443080902, -0.4054476320743561, 0.7344694137573242, 0.5006352066993713, 0.953070342540741, -1.0278793573379517, -1.1524553298950195, -0.6871097683906555, 0.11977832764387131, -0.3830382227897644, 0.4584328532218933, -0.32487037777900696, 0.29822516441345215, 0.9952949285507202, -0.8895693421363831, -0.3758507966995239, -0.15945956110954285, 0.700325071811676, -0.27220600843429565, 0.34867072105407715, -0.22921064496040344, -0.23723119497299194, 0.34822919964790344, -0.8697436451911926, 0.46078088879585266, 0.15480327606201172, -0.4406888484954834, 0.2614502012729645, -0.3313191831111908, -0.5482163429260254, -0.8124369978904724, 0.02967584878206253, 0.46597450971603394, 0.4552929103374481, 0.018739696592092514, -0.017277128994464874, -1.0594714879989624, 0.3722946047782898, 0.645911455154419, -0.12622441351413727, 0.646531343460083, 1.7345106601715088, 0.8810498118400574, -0.3662629723548889, -0.18359620869159698, -0.3065931797027588, 1.1069188117980957, -0.7831209897994995, -0.16031916439533234, -0.4409601390361786, 0.04609034210443497, -0.7559508085250854], [0.7504335045814514, 1.689741849899292, -2.3607563972473145, 0.19870947301387787, 0.2767174243927002, 0.6186822056770325, 0.790856122970581, -0.4444393813610077, 0.12144254893064499, -0.6816451549530029, -0.5905376672744751, 0.18071922659873962, -0.3686829209327698, 0.14445848762989044, 0.12069172412157059, 0.7468646764755249, 1.0176640748977661, -0.31719839572906494, -0.6082623600959778, 1.7990318536758423, -0.2425176203250885, -1.1751928329467773, -0.42213350534439087, 0.2080996185541153, 0.06806621700525284, 0.22483985126018524, -1.335637092590332, 0.18242178857326508, -1.6308504343032837, -0.5295403599739075, 1.6039468050003052, -0.49958840012550354, 0.7745769023895264, 0.3707874119281769, -1.8113714456558228, 0.8835211396217346, 0.9444365501403809, 0.5680149793624878, -0.2566547989845276, 0.36664360761642456, 1.5274215936660767, 0.35006284713745117, -0.03407268598675728, -1.619950294494629, 0.26678770780563354, -0.7741285562515259, 1.325928807258606, -0.9473730325698853, 0.739611804485321, -0.4877997636795044, 1.1154159307479858, -0.15268132090568542, -0.3529738783836365, 0.9109992980957031, 0.6550408005714417, -1.0381215810775757, 0.06922295689582825, 0.36701443791389465, 0.37684008479118347, 0.16815978288650513, 1.401371955871582, -0.7142707705497742, 0.6837170720100403, 0.6063942909240723, 0.29710426926612854, -1.156261920928955, 0.35722100734710693, 0.32891836762428284, -0.05090983957052231, -0.03782209753990173, 0.8117111325263977, 1.0244803428649902, -0.28271055221557617, 0.8986806273460388, -0.9608955979347229, 0.9229522943496704, 0.6119371652603149, 0.2938145399093628, -0.23323044180870056, 0.0438908115029335, 0.36149105429649353, -1.0690929889678955, 0.3930628001689911, -0.43660491704940796, -0.27584943175315857, 0.3265365660190582, 0.44617578387260437, -0.5092285871505737, -0.451593816280365, 0.9801449179649353, -0.005818675272166729, 0.03860282152891159, 0.7798327803611755, -0.264629602432251, 0.15530632436275482, 0.22933518886566162, -0.8871899843215942, -1.1718060970306396, -0.6947609782218933, -0.7753238081932068, -0.3752211332321167, -0.23943088948726654, 0.6459067463874817, 0.7678413987159729, 0.3506700396537781, 0.8649312853813171, 0.4641495943069458, -1.1294596195220947, 0.6896557807922363, 0.37303635478019714, -0.5834513306617737, 0.17412373423576355, -0.8930506706237793, -1.8084774017333984, -0.8253180384635925, 0.9752897620201111, 1.5679309368133545, -0.05307117849588394, 0.8424788117408752, 0.06909483671188354, -0.5615843534469604, -0.6616057753562927, 0.14935633540153503, -0.027365608140826225, 1.3380478620529175, 0.722282350063324, -0.14781785011291504, -0.1152934581041336, 0.11319281160831451, 0.0845353901386261, 0.34421947598457336, -0.13065573573112488, -0.2532859742641449, 0.16395089030265808, -0.22442536056041718, 0.5322527885437012, -1.4693877696990967, -1.1732509136199951, 0.4470865726470947, 1.04398775100708, 0.38792985677719116, -0.10503019392490387, 0.14480793476104736, -0.1839619129896164, 0.13787251710891724, -0.22880537807941437, 0.39868879318237305, -0.31491023302078247, -0.30856838822364807, 0.5611141324043274, -1.2180255651474, 0.5128363370895386, -0.11804164201021194, 0.6462087631225586, 0.3622162342071533, -0.005954283755272627, 0.3314397931098938, -0.24795298278331757, 0.24157743155956268, 0.3702687919139862, 0.9087294340133667, 0.4437817633152008, -0.4059934616088867, -0.0582679882645607, 0.865790843963623, 0.014936540275812149, 0.2389330267906189, -0.19242453575134277, -0.16234295070171356, 1.133326768875122, 0.15124641358852386, -0.4122910499572754, -0.04268333315849304, 0.6076130270957947, 0.2693651020526886, -0.592223584651947, 0.7222095131874084, -0.4736066460609436, -1.5558792352676392, -1.0139206647872925, 1.016671895980835, -0.4572919011116028, 0.29125699400901794, -0.019939614459872246, 0.5613739490509033, -0.4294058382511139, 0.18850041925907135, -0.20466020703315735, -0.5768039226531982, -0.8429688811302185, -0.42388200759887695, 0.3260466158390045, -1.271389126777649, -0.7036328911781311, -0.5344959497451782, -0.9140164852142334, 1.2085717916488647, -0.39700961112976074, -0.7560828924179077, 0.28087788820266724, 0.2600965201854706, -0.5169994235038757, -1.3793281316757202, -0.003347208956256509, -0.36985960602760315, 1.5799168348312378, -0.49869394302368164, -0.1383741796016693, -1.2572438716888428, -0.017204180359840393, 1.0537887811660767, -0.662290632724762, -1.1396403312683105, 0.14408718049526215, -0.17464858293533325, -0.8458508253097534, 0.14103963971138, -0.5232548117637634, -0.4426005184650421, -0.6481804251670837, 0.10620176047086716, 0.5412424206733704, 0.19594459235668182, -0.6383545398712158, 0.2621840536594391, -0.4899895489215851, -0.05691233277320862, -0.7229459881782532, 0.171064093708992, -0.3831273913383484, -1.07696533203125, -0.7316064238548279, 0.25931400060653687, 0.6736383438110352, -1.3949483633041382, 0.27648526430130005, -0.043398648500442505, 0.053154632449150085, 0.11609719693660736, 1.2920223474502563, 0.6617720723152161, 0.5133626461029053, -0.5795900821685791, 0.7851282358169556, -0.7034751176834106, -0.7480969429016113, 0.749515175819397, -0.33780229091644287, -0.07456060498952866, 1.5145539045333862, 0.9622921943664551, 0.9676850438117981, 0.1878441721200943, -0.36156219244003296, -0.2538236379623413, -0.2256891131401062, -0.6818530559539795, 0.2938174307346344, -0.8131480813026428, 1.6068252325057983, 0.5693600177764893, -0.7400466799736023, 0.605400800704956, -0.4989689886569977, 0.10111706703901291, -0.8605419993400574, -0.2537168860435486, -0.35685017704963684, 0.5790306329727173, -0.5826249718666077, -0.09241360425949097, 0.5126715302467346, 0.6448574662208557, 0.8588740229606628, -0.14179803431034088, -0.3786434531211853, 0.20853880047798157, 0.6175076365470886, -0.23749005794525146, 1.0889027118682861, -0.7007350325584412, -0.6412643194198608, -1.30219304561615, -0.14989106357097626, 0.0008737463504076004, -0.13505248725414276, 0.4226876199245453, 1.645176887512207, 0.13073137402534485, -0.6493910551071167, 0.10207628458738327, 0.1596752554178238, 0.12505288422107697, -0.3250342309474945, 0.993736207485199, 0.11326295137405396, 0.5904319286346436, -0.8934465050697327, -1.1035466194152832, 0.13878382742404938, 0.3970980644226074, 0.8441182971000671, 0.4024771451950073, 1.2476005554199219, -0.3341819643974304, 0.054096248000860214, -0.6500962376594543, 0.14137206971645355, -1.1138864755630493, -0.2504931390285492, -0.04887927323579788, -0.7480760216712952, -0.26706841588020325, -0.49825021624565125, -0.26279181241989136, 0.7149470448493958, 0.5108768343925476, 0.5587802529335022, 0.6412162780761719, 0.2725962698459625, -1.4087607860565186, 0.1461978554725647, -0.2561440169811249, -0.918258547782898, 0.517292320728302, 1.6168344020843506, -0.9684932827949524, 0.4084591269493103, -0.07679546624422073, -0.17017421126365662, -0.3347622752189636, -0.06661687791347504, 0.5035341382026672, -1.001155138015747, -0.24299050867557526, 0.2092919647693634, 0.6878076791763306, 0.28949227929115295, -0.23064938187599182, -0.22490744292736053, 1.1877591609954834, 1.2697386741638184, -0.2356845736503601, -0.23309551179409027, 0.16842404007911682, -0.5010843276977539, -0.5732119083404541, -0.0882287472486496, 1.170897364616394, -0.2780255973339081, -0.8534107208251953, -0.6724709868431091, -0.23774924874305725, -1.02273690700531, -0.12604016065597534, 0.30265355110168457, -0.45711690187454224, 0.7111272215843201, -0.4803682863712311, 0.5415697693824768, 0.7415429949760437, 0.16681639850139618, -0.1432323157787323, -1.2885380983352661, 0.8741559982299805, 0.2865985333919525, 1.3105897903442383, -0.5400766730308533, 0.34354326128959656, 0.5576730966567993, -0.4075947105884552, -0.16203926503658295, 0.1587173491716385, 0.7597883343696594, 0.31850528717041016, -0.6110297441482544, -0.1491534411907196, -0.6717999577522278, 0.19355008006095886, 0.04731752723455429, 0.06164296343922615, 0.33586567640304565, -0.9597445130348206, 0.19216981530189514, 1.0301234722137451, 0.6636548638343811, -0.19468052685260773, -0.5495100617408752, -0.437660276889801, 0.2821667194366455, -0.9151266813278198, 0.37890735268592834, -0.1270136535167694, -0.605991780757904, 0.6605161428451538, -1.1286717653274536, -0.6571959257125854, 0.09185203909873962, 1.0153586864471436, 1.2884547710418701, -1.2093775272369385, -0.33842307329177856, -0.7075318694114685, -0.2555044889450073, 0.5133722424507141, 0.7704019546508789, 0.2839670479297638, 0.6636375784873962, -0.228105828166008, 0.41550958156585693, -0.050659600645303726, 1.3586119413375854, -0.25667062401771545, -0.12357170879840851, 0.4475741386413574, 0.0429488942027092, 0.09934714436531067, -0.7655459046363831, 0.3816955089569092, 0.2660703659057617, -0.5206890106201172, -0.4060838222503662, 0.25679704546928406, -0.4515193998813629, 1.6522055864334106, 0.7011063694953918, 0.10082700848579407, -0.4729602634906769, 0.22494074702262878, -0.8451823592185974, 0.6927960515022278, 0.5089006423950195, -1.3511604070663452, -0.7997052073478699, -0.005263104569166899, 0.37778156995773315, 0.5867313146591187, 0.2758883833885193, 0.1563410758972168, 0.7422108054161072, 0.11824077367782593, 0.1435486227273941, 0.5932440161705017, 0.5226824879646301, 1.3705366849899292, 0.31571102142333984, 1.1584031581878662, 0.12944908440113068, -0.5754334330558777, 1.0158271789550781, -0.2752155661582947, 0.1558026373386383, 0.6420750021934509, 0.31766989827156067, 0.8038639426231384, -0.9401344656944275, 0.06525032222270966, 0.9185210466384888, 0.16847702860832214, 0.8555944561958313, 0.13578857481479645, 0.48966270685195923, -0.17397437989711761, 0.16680379211902618, 0.9742014408111572, -0.03936086595058441, 0.4689605236053467, 0.1434505134820938, 0.8747742772102356, -0.04630795866250992, -0.7934767603874207, 0.54790860414505, -0.9869194626808167, 0.537727952003479, -0.55904221534729, -0.8302085399627686, 0.12706635892391205, 0.6743824481964111, 0.8628690242767334, 1.0227717161178589, -0.34230339527130127, -0.19249315559864044, 0.31305909156799316, -1.0371606349945068, 0.4654666781425476, -0.5627639293670654, 0.3083131015300751, -0.8158736228942871, 0.26558420062065125, 0.5860747694969177, -0.04916249215602875, -0.18042664229869843, -0.681204080581665, -1.0929045677185059, -0.8962419033050537, 0.9972810745239258, 0.5335223078727722, 0.6373669505119324, 0.2477426677942276, 0.33459433913230896, 0.5156333446502686, 0.315009742975235, -1.5199589729309082, -0.29039981961250305, 0.43233540654182434, 0.34459125995635986, -0.26089656352996826, -0.5595566034317017, -0.9297928810119629, 0.11775553971529007, -0.01813359558582306, -0.19273430109024048, -0.3005933165550232, 0.9933918714523315, 0.8800352215766907, -0.3076339662075043, -1.0492453575134277, 0.4757658839225769, -1.4099783897399902, 0.9166457653045654, 0.02375977858901024, -0.4297330677509308, -0.5681005716323853, -1.03632390499115, -1.2579950094223022, 1.1956268548965454, 0.1259678155183792, -0.0707540214061737, 0.6108753681182861, 1.0478160381317139, -0.027683299034833908, 1.1115845441818237, 0.17136506736278534, 0.3046655058860779, -0.4200807511806488, -0.17358511686325073, 0.06278597563505173, -0.009183445945382118, 0.5237331390380859, -0.989968478679657, -1.231292963027954, 0.906999945640564, 0.13915705680847168, -0.07676529884338379, -0.8661406636238098, 0.855338454246521, 0.0666026845574379, 0.8561550974845886, 0.16994714736938477, 0.2364019751548767, 0.6089984774589539, -1.259565830230713, -0.4826389253139496, 0.4042101800441742, 0.6062143445014954, 0.19452382624149323, 0.4217888414859772, 0.7865745425224304, -0.7737679481506348, -0.4189031422138214, -0.07126986980438232, -1.069191336631775, 0.3400746285915375, 0.17271876335144043, 0.31084054708480835, 0.5510172247886658, -0.5394756197929382, -0.31094977259635925, -1.0220530033111572, -0.6004124879837036, 1.1376398801803589, -0.6489476561546326, -0.8781231641769409, -0.3239724338054657, -0.4104510247707367, -0.15643423795700073, 0.09415005892515182, -0.3853599727153778, -0.8458418846130371, -1.3615344762802124, 0.011305471882224083, -0.30538323521614075, 0.8098970055580139, -0.17376410961151123, 0.5670691728591919, -0.34664228558540344, -0.9553684592247009, -0.3122172951698303, 0.30790281295776367, -2.2378153800964355, 0.02819063700735569, -0.4745297431945801, 0.4941195249557495, -0.09379834681749344, -0.14899280667304993, -0.08681046217679977, 1.2939651012420654, -1.399700403213501, -0.5507564544677734, -0.582623302936554, -0.41761314868927, 0.7761201858520508, 1.2824645042419434, -0.8017466068267822, 0.8385739922523499, -0.46855872869491577, 0.27335524559020996, -0.6353262662887573, 0.5129974484443665, -0.8913396000862122, 0.26811766624450684, -0.046373363584280014, 0.21139344573020935, 0.12051323056221008, 1.9173073768615723, 0.7943551540374756, 0.6743319034576416, 0.06734073907136917, 0.9129050374031067, -1.243967890739441, -0.21671772003173828, 0.07452426850795746, 0.45078831911087036, -0.6613683104515076, -0.607411801815033, 0.4480733573436737, -0.6313478946685791, -1.3841625452041626, -0.5613203644752502, 0.5531311631202698, -0.6445790529251099, 0.5200105905532837, -0.6519443988800049, -0.26511162519454956, -0.5150566697120667, 0.5391306281089783, 0.32811519503593445, -0.5345929861068726, -0.2272442877292633, -0.46908411383628845, 0.789429247379303, -0.5007205605506897, -0.14175571501255035, 1.0212234258651733, 0.24997152388095856, -0.847073495388031, -0.3753597140312195, 0.13867641985416412, 0.48016682267189026, -0.35932886600494385, 1.3443430662155151, 1.0410341024398804, 0.46856826543807983, -0.2049187868833542, -0.23703746497631073, 0.01174258068203926, 0.4749997854232788, -0.6658336520195007, -0.2630385756492615, -0.2369338870048523, 0.5537044405937195, -0.003368138102814555, 0.08426576852798462, 0.6693430542945862, 0.8590095639228821, -0.13432736694812775, 0.5146406888961792, 0.4344784915447235, -0.9792851805686951, -0.1608411818742752, 1.4213778972625732, 0.6891998648643494, -1.1844089031219482, 0.3226476013660431, 0.07035671174526215, 0.17725317180156708, 0.5058701038360596, 0.6285148859024048, 0.17111550271511078, -0.4028202295303345, 0.6764070987701416, 0.8949289321899414, -0.8955102562904358, -0.2706959843635559, -0.5373691320419312, -1.204752802848816, -0.02082490548491478, -1.0262819528579712, -1.2547221183776855, 0.4788341224193573, -1.6099153757095337, -1.2334734201431274, 0.29345670342445374, -0.4898206889629364, -0.09753071516752243, -0.7924814224243164, 0.45229798555374146, 0.6775935292243958, -0.7031345367431641, 0.5302512049674988, -0.3865011930465698, 1.4040542840957642, -0.3014121651649475, -0.2714996337890625, -0.8549771904945374, -0.3990103602409363, 0.48056185245513916, -0.2311154454946518, -0.02829698473215103, -0.02449602074921131, 0.5603448748588562, -0.4075194001197815, -0.6352673172950745, -0.22188524901866913, 0.32945141196250916, 0.00423634797334671, -0.19346120953559875, 0.03423279523849487, 0.6794030666351318, 0.4719393849372864, 0.48174580931663513, -0.9903152585029602, -0.5252503752708435, -1.0698045492172241, 0.47659537196159363, -0.3673611581325531, 0.5859585404396057, -0.4429267346858978, 0.3810824155807495, 0.2525222599506378, -0.6349114775657654, -0.4921755790710449, -0.5852593183517456, 0.28848758339881897, 0.4639725983142853, -0.47604039311408997, -0.4404703974723816, -0.2605415880680084, 0.39788979291915894, -1.0494167804718018, -0.39817702770233154, -0.04368015006184578, 0.25369587540626526, 0.5074400305747986, -0.6379926800727844, -0.4294309616088867, -0.6004143357276917, 0.2957930266857147, 0.6130362749099731, 0.8144111633300781, 0.36435574293136597, 0.3368076682090759, -0.7970595359802246, 0.5903449058532715, 0.6046696305274963, 0.36327633261680603, -0.03798370808362961, 0.7689827680587769, 0.9330302476882935, -0.6172649264335632, -0.45454472303390503, -0.541027307510376, 0.2913293242454529, -1.0219323635101318, -0.10272563248872757, -1.0679879188537598, -0.13301321864128113, -0.15965121984481812], [0.4934995472431183, 1.1374735832214355, -2.615983009338379, 0.4353025257587433, 0.9110274910926819, 0.9075161218643188, 0.5224610567092896, 0.3975931406021118, -0.0006017535924911499, -0.22775974869728088, -0.9430657625198364, 0.3153951168060303, -0.15697766840457916, 0.06726504117250443, -0.1831335425376892, 0.6808704733848572, 0.6106845140457153, 0.2740751802921295, 0.5368601083755493, 1.3537812232971191, -0.6891371011734009, -0.595007061958313, -0.8034354448318481, 0.3528822064399719, -0.231909841299057, 0.2445254921913147, -1.8751882314682007, 0.36098891496658325, -1.1930923461914062, -1.1773567199707031, 1.156862735748291, -1.053160548210144, 0.029034171253442764, -0.32029905915260315, -1.5036334991455078, -0.09624707698822021, 0.4397602081298828, -0.1740018129348755, -0.20918160676956177, -1.2341326475143433, 1.4889028072357178, 0.9356822967529297, -0.7306705713272095, -1.2087950706481934, -0.09023240208625793, 0.022127509117126465, 1.4724749326705933, -0.9157128930091858, 0.27028003334999084, -0.2779489755630493, 0.7813787460327148, 0.6016747951507568, 0.5880955457687378, 1.4582550525665283, 0.637021541595459, -0.8726344108581543, 0.5845130681991577, 0.6950201988220215, 0.311301589012146, 0.2095206081867218, 1.2197414636611938, -0.9516311883926392, 0.8858785629272461, 0.9875635504722595, 0.1683221161365509, -0.45513999462127686, 0.41848891973495483, 0.18803347647190094, 0.5204953551292419, -0.5220601558685303, 0.7544479966163635, 0.5142907500267029, 0.13427916169166565, 0.514228880405426, -1.1035873889923096, 0.07315999269485474, 1.012553095817566, 0.07288628071546555, -0.3677799701690674, 0.12781041860580444, -0.3749648928642273, -0.4261782765388489, 0.28439533710479736, -0.4447248578071594, -0.5076330900192261, 0.643638014793396, 0.1096593365073204, -0.5279079675674438, 0.05877513438463211, 1.0788533687591553, 0.19021081924438477, 1.1284611225128174, 0.6472841501235962, 0.3117874264717102, -0.2144204080104828, -0.2795799970626831, -0.5700259208679199, -0.7976300716400146, -0.47263744473457336, -1.3100954294204712, -0.4132120609283447, 0.045862700790166855, 0.6301048994064331, 0.588711142539978, -0.2551227807998657, 1.2377352714538574, 0.09816683083772659, -1.166703701019287, 0.5946750640869141, -0.02303718775510788, -0.32381904125213623, 0.06588417291641235, -0.4348669648170471, -1.4601681232452393, -0.23248541355133057, 0.9199464321136475, 1.7310240268707275, 0.5399475693702698, 1.0821534395217896, 0.9394726753234863, -0.4100605845451355, -0.2541923522949219, -0.0599723681807518, 0.04652812331914902, 0.842807948589325, 0.606156587600708, -0.8160338997840881, -0.47887563705444336, 0.9471061825752258, -0.2648474872112274, 0.8763704299926758, -0.0606328621506691, 0.5660324096679688, 1.1049927473068237, -0.7430588006973267, 0.46992725133895874, -0.27195313572883606, -0.8239504098892212, 0.1762394905090332, 0.70196533203125, 0.8421833515167236, -0.2177850753068924, -0.019963044673204422, -0.5889990329742432, 0.007347438484430313, -0.20494578778743744, 0.40864723920822144, -0.5107896327972412, -0.8129923939704895, 1.2891892194747925, -0.829627513885498, 0.708783745765686, 0.6470333933830261, 0.6735018491744995, 0.6372513771057129, -0.5636424422264099, 1.299467921257019, -0.47821784019470215, 0.3989684581756592, 0.24287867546081543, 0.9764899015426636, 0.5095363855361938, -0.37578946352005005, -0.08227936923503876, 0.5110040903091431, -0.3828067481517792, 0.45567578077316284, 0.080407053232193, -0.34048259258270264, 1.190159797668457, -0.2058432251214981, -1.1380441188812256, -0.25998806953430176, 0.6894172430038452, 0.02262183092534542, -0.6075332164764404, 0.47028428316116333, -0.4373622238636017, -1.4052062034606934, -0.37367749214172363, 1.651094913482666, -0.3348401188850403, 0.3211783170700073, 0.26836907863616943, 0.246662437915802, 0.21286514401435852, -0.238918736577034, -0.6815578937530518, -0.5199477672576904, -0.940482497215271, -0.5430505871772766, 0.37194108963012695, -1.4856882095336914, 0.23761244118213654, -0.06241844967007637, -1.0847814083099365, 0.39043641090393066, -1.10889732837677, -0.44326087832450867, 1.1822229623794556, 0.38069790601730347, 0.11510799080133438, -0.5594048500061035, -0.35173898935317993, -0.4288681745529175, 1.0650111436843872, -0.19075801968574524, 0.2815222144126892, -0.4971165060997009, 0.3824034631252289, 0.7778891324996948, -1.0513768196105957, -1.3662691116333008, 0.1839534193277359, 0.4957374334335327, -1.224216341972351, 0.6046725511550903, -0.2048901915550232, -0.12197840213775635, -0.7280256748199463, 0.13316945731639862, 0.8133536577224731, 0.3957168459892273, 0.15098141133785248, 0.4618993401527405, -0.09235435724258423, -0.12125781923532486, -1.2923963069915771, 0.29256707429885864, -0.7178041338920593, -0.5416393876075745, -1.1011137962341309, 0.2386331856250763, 0.45189741253852844, -1.1559009552001953, 0.2555781602859497, 0.2631351351737976, 0.11615709960460663, -0.08670182526111603, 1.5959899425506592, 0.41540032625198364, 1.0384297370910645, -0.6261606216430664, 0.003989465534687042, -1.1420648097991943, 0.0735776498913765, 1.0931248664855957, -0.27909135818481445, 0.12465696781873703, 1.7760597467422485, 1.0377131700515747, -0.06139405816793442, 0.4961504340171814, -0.6970357894897461, -0.1812095046043396, -0.4632145166397095, -0.27811264991760254, 0.604106068611145, -0.7016574144363403, 1.7578482627868652, 0.7723181247711182, -0.7078676223754883, 0.3378506898880005, 0.605660080909729, 0.08156754821538925, -0.12454935163259506, -0.2322775423526764, -0.7304308414459229, 0.1751514971256256, -0.6838860511779785, 0.478488564491272, 0.06947377324104309, 0.46331119537353516, 0.8480727672576904, -0.34821444749832153, -0.7009071111679077, 0.2937343120574951, 0.2439555525779724, -0.8641935586929321, 1.0149058103561401, -0.5250282287597656, -1.249940276145935, -0.338589608669281, -0.045416343957185745, 0.35182660818099976, -0.2628633379936218, 0.029915576800704002, 1.2021071910858154, 0.6608076095581055, -0.04271204397082329, 0.009018510580062866, 0.4446493983268738, 0.29040610790252686, -0.2462305873632431, 0.4753105044364929, -0.04697096720337868, 1.120442509651184, -0.6657776832580566, -0.415152370929718, 0.2297452837228775, 0.28408998250961304, 1.3175575733184814, 0.09713955968618393, 1.520444393157959, -0.858188807964325, -0.1399160921573639, -0.13074804842472076, -0.8231090903282166, -1.738922119140625, -1.2275500297546387, -0.5772697329521179, -0.7130619287490845, -0.32633769512176514, -0.7225420475006104, -0.26083457469940186, 0.2891222834587097, 0.18677470088005066, 0.893396258354187, 0.11450507491827011, 0.22876977920532227, -1.2636576890945435, -0.1352684199810028, -0.747079610824585, -0.7786094546318054, 0.8365538120269775, 1.43002450466156, -1.4337255954742432, 0.20152390003204346, -0.5900332927703857, -1.0019447803497314, 0.8980427980422974, 0.2711450457572937, 0.41428709030151367, -0.39624348282814026, -0.7123512029647827, -0.32718992233276367, 1.2319350242614746, 1.1032969951629639, -0.3349483609199524, -0.4935522675514221, 0.6300483345985413, 0.8375656008720398, 0.3343851566314697, -0.41563162207603455, 0.19131819903850555, -0.7381691932678223, -0.3213624358177185, 0.01945234090089798, 0.3154495358467102, 0.44501495361328125, -0.48150089383125305, -0.8028831481933594, -0.15337428450584412, -0.7615693807601929, -0.5708110928535461, 0.2798742353916168, 0.14968900382518768, 0.8438683152198792, -0.22363221645355225, -0.31394344568252563, 0.8299736380577087, 0.0291725043207407, 0.34452956914901733, -1.0721280574798584, 0.555056095123291, 0.8875308036804199, 1.150877833366394, -0.5968738198280334, 0.8777716159820557, 0.38252943754196167, -0.5975358486175537, 0.3897210657596588, 0.11476759612560272, 0.9174299240112305, 0.30163246393203735, -0.5996959209442139, -0.22383004426956177, -0.9956257939338684, 0.3317375183105469, -0.393665611743927, -0.08007486164569855, 0.20366211235523224, -0.8647869825363159, -0.20300185680389404, 0.648859977722168, 0.6107593178749084, -1.384324550628662, -0.7788835167884827, -0.6973837614059448, 0.05348929017782211, -0.48130911588668823, 0.2725882828235626, 0.2866562604904175, -0.35219040513038635, 1.1603648662567139, -1.261157751083374, -0.07014375180006027, -0.1596904844045639, -0.19143790006637573, 0.9867272973060608, -1.5276907682418823, -0.7626796364784241, -1.079054832458496, -0.0948532372713089, 0.775892436504364, 0.49702802300453186, 0.4398229420185089, 0.33608800172805786, -0.14948396384716034, 0.08912620693445206, 0.688205897808075, 1.7274696826934814, 0.036890819668769836, -0.3576801121234894, -0.03609567880630493, 0.11847599595785141, -0.4837648868560791, -1.0203523635864258, 0.009291715919971466, 0.05313058942556381, -0.584954023361206, -0.22797614336013794, 0.47361230850219727, -0.6009883880615234, 1.5869581699371338, 0.20247536897659302, 0.23785433173179626, 0.16673219203948975, -0.37045055627822876, -0.7747374773025513, -0.029546156525611877, 0.922448456287384, -0.7458958625793457, -0.5266943573951721, 0.40650683641433716, 0.6229310035705566, 0.5226033926010132, 0.23742884397506714, 0.5271830558776855, -0.008977361023426056, -0.2613842785358429, 0.04581984132528305, -0.043372832238674164, 0.2409244030714035, 1.3271706104278564, 0.8964065313339233, 0.6824286580085754, -0.5361344218254089, -0.6154760122299194, 1.263216495513916, 0.3934626877307892, 0.5679082870483398, -0.06860481202602386, 1.1922576427459717, 0.6289974451065063, -0.9930094480514526, -0.5370783805847168, 0.8328321576118469, -0.2421659231185913, 0.7357138395309448, 0.3213304877281189, 0.537287175655365, -0.6402090191841125, -0.26040178537368774, -0.1980234980583191, 0.24500250816345215, 0.2663908004760742, 0.2184716910123825, 1.1308107376098633, 0.6648339629173279, -1.1606321334838867, 0.08668643236160278, -0.7173376083374023, -0.059242088347673416, -0.45745849609375, -0.3655892014503479, 0.4071922302246094, 0.4762738347053528, 0.8425823450088501, -0.31016477942466736, -0.3070237934589386, -0.1404784619808197, 0.2858092784881592, -0.916658341884613, 0.07536472380161285, -0.20160357654094696, -0.5033480525016785, -1.3981636762619019, 0.4588744640350342, 0.001954288687556982, -0.23942476511001587, 0.12209387868642807, -0.20504257082939148, -1.0187636613845825, -0.7553761005401611, -0.3444432020187378, 0.7262630462646484, 1.300316333770752, -0.19511157274246216, 0.4672878682613373, 0.7625049352645874, -0.019511383026838303, -0.55854731798172, -0.12816694378852844, 0.4640403389930725, 0.02553454414010048, -0.13249841332435608, -0.7404236793518066, -0.42519596219062805, 0.29989784955978394, -0.1633610725402832, 0.16000095009803772, 0.4207730293273926, 0.011310454457998276, 1.245980978012085, -0.17242956161499023, -0.6527763605117798, 0.17746728658676147, -0.8749045133590698, 1.0439026355743408, 0.06529918313026428, 0.1702791005373001, -0.22054877877235413, -0.7536327838897705, -1.1096153259277344, 1.1823738813400269, -0.011694713495671749, -1.1287212371826172, 0.10648542642593384, 0.9254286289215088, -0.0956215113401413, 0.9244801998138428, -0.060886893421411514, 0.2775304317474365, 0.47171327471733093, 0.3330894112586975, -0.7146322131156921, -0.4970419108867645, 0.84211665391922, -0.15002337098121643, -0.5755026340484619, 0.9777469635009766, -0.37098583579063416, 0.36487704515457153, -0.0027287136763334274, 0.4387158155441284, 0.6569687128067017, 0.21236038208007812, 0.11499090492725372, -0.20968639850616455, -0.22705845534801483, -1.1528491973876953, -0.4443945288658142, -0.4584486186504364, 0.16472738981246948, 0.3113458454608917, -0.8850502371788025, 0.3837023675441742, -0.7051888704299927, 0.4137071371078491, 0.1971288025379181, -0.5032228231430054, 0.8062393665313721, 0.29465359449386597, 0.19978117942810059, 0.7309871912002563, -0.4290897250175476, -0.06162863224744797, -0.7469104528427124, -0.9882166385650635, 0.7985376715660095, -1.3171602487564087, -0.581855058670044, -0.5374417901039124, -0.5278427600860596, -0.4277733564376831, -0.29985636472702026, -0.10659598559141159, -0.628217875957489, -1.144179105758667, -0.6435784697532654, 0.29923051595687866, 0.6755397319793701, -0.25268155336380005, 0.3380800783634186, 0.5850169658660889, -0.8329998254776001, -0.29540807008743286, -0.014622273854911327, -1.627556324005127, -0.13508340716362, -0.7651041746139526, 0.5789275169372559, -0.30479416251182556, 0.3515312969684601, -0.007088825106620789, 0.8931742310523987, -1.9770565032958984, -0.928015410900116, -0.5063788294792175, -0.7073622941970825, 0.675894021987915, 1.1309618949890137, -1.3579092025756836, 1.0375733375549316, 0.17233732342720032, -0.24102333188056946, 0.22688227891921997, 0.16804227232933044, -0.6085031032562256, 0.19272847473621368, -0.5755628347396851, 0.39494556188583374, 0.45646941661834717, 1.6879658699035645, 1.433690071105957, 0.8324788808822632, -0.06373901665210724, 0.9369728565216064, 0.0001839771866798401, -0.2689475417137146, 0.1217832937836647, 0.4618682861328125, -0.0002733711153268814, -0.3113938570022583, 0.054854489862918854, -0.3513365387916565, -0.6694064140319824, -0.24043720960617065, 0.94789719581604, -0.8526462316513062, 0.11545819044113159, -0.17107707262039185, -0.07712632417678833, -0.36558133363723755, 0.3263132870197296, 0.32597362995147705, 0.6130213141441345, 0.10329177975654602, -0.32500317692756653, 0.608298659324646, -0.3718414306640625, -0.6989800930023193, 0.5537517070770264, 0.7581450939178467, -0.7128219604492188, 0.05366777256131172, 0.3892183303833008, 0.15577101707458496, -0.055002082139253616, 1.3935604095458984, 0.6508468389511108, -0.14782901108264923, 0.26054465770721436, -0.3610203266143799, -0.6086639761924744, 0.12327015399932861, -0.3759211003780365, -0.5948808193206787, -0.5642685890197754, 0.6448960304260254, 0.46114352345466614, -0.34922945499420166, -0.03345699980854988, 0.6900382041931152, -0.08828812092542648, 0.9046592712402344, 1.487838625907898, -0.5963455438613892, -0.9086971282958984, 0.9543355703353882, 0.3324912190437317, -1.1082763671875, 0.8189603090286255, 0.34401100873947144, 0.24420663714408875, -0.21866261959075928, 1.126600742340088, 0.218617245554924, -0.6334452629089355, 0.9242874383926392, 0.3490625321865082, -0.06436854600906372, -0.6160091161727905, -0.09790166467428207, -1.858100175857544, -0.08776780217885971, -0.46787774562835693, -1.183426856994629, 0.5990346670150757, -1.3157293796539307, -1.3459291458129883, 0.2314826399087906, 0.3071712255477905, -0.5117143392562866, -0.49268996715545654, 0.046635836362838745, 0.061129145324230194, -0.3512047827243805, 1.0037527084350586, -0.6501099467277527, 1.4128694534301758, 0.33058586716651917, -0.16127237677574158, -1.1942505836486816, -1.2442107200622559, 0.25567877292633057, 0.5322537422180176, -0.689776599407196, -0.6877105832099915, 0.9321600198745728, -0.547612190246582, -0.6498466730117798, 0.7919082045555115, 0.7075218558311462, -0.041131697595119476, -0.22754666209220886, -0.94278883934021, 0.7365951538085938, 0.4253964126110077, 0.09002850949764252, -0.838158369064331, -0.7517843246459961, -1.1556618213653564, -0.17758530378341675, -1.1419835090637207, 0.6623804569244385, 0.07707170397043228, 1.287616491317749, -0.8110073208808899, -0.8140501976013184, -0.560682475566864, -0.7072811722755432, -0.19595088064670563, 0.2949323058128357, -0.3653516173362732, -0.35263314843177795, -0.7395626306533813, -0.11637704074382782, -0.7977592349052429, -0.37051355838775635, 0.5424349308013916, 0.9064829349517822, -0.05873282253742218, -0.826945960521698, -0.602615237236023, -0.7687622308731079, 0.16068784892559052, 0.777004599571228, 0.19508694112300873, 0.2224520593881607, 0.2805292010307312, -0.8797286748886108, 0.23522254824638367, 0.40949541330337524, 0.1753837764263153, -0.07517263293266296, 1.2000267505645752, 1.1504859924316406, -0.4693414568901062, -0.2898779511451721, 0.0017963536083698273, 0.4525708556175232, -0.5379088521003723, 0.5329186916351318, -1.2523823976516724, -0.19986692070960999, -0.13148146867752075], [0.08801362663507462, 1.8274341821670532, -2.6404335498809814, -0.22077755630016327, 0.42459636926651, 0.0934380292892456, 0.6917510628700256, -0.27710387110710144, -0.15563909709453583, -0.6983884572982788, -0.47025397419929504, -0.14330412447452545, 0.6375563740730286, -0.06995993107557297, 0.02173570729792118, 0.5123456716537476, 0.6224338412284851, 0.09157471358776093, 0.14192849397659302, 1.605914831161499, -0.13913525640964508, -1.3848038911819458, -0.4287969768047333, 0.4419105052947998, 0.0687418133020401, 0.3026092052459717, -2.025979995727539, -0.18779703974723816, -1.6747368574142456, -1.3530439138412476, 1.643401861190796, -0.06545846164226532, 0.8034993410110474, 0.11039033532142639, -1.535553216934204, 0.31263628602027893, 1.3934332132339478, 0.30153390765190125, 0.6533949375152588, 0.2085547149181366, 2.042692184448242, 0.4171026647090912, -0.5052264332771301, -1.6885873079299927, 0.07605832815170288, 0.1859581470489502, 1.2553983926773071, -1.760326862335205, -0.42478200793266296, -0.5160215497016907, 0.7345223426818848, -0.19203057885169983, 0.4763548672199249, 0.9571365714073181, 1.015986442565918, -0.810542643070221, 0.7255946397781372, 1.2792294025421143, -0.10548705607652664, 0.462063729763031, 1.3863290548324585, -0.26342135667800903, 1.3846330642700195, 0.4086666703224182, 0.5357078909873962, -0.6890020966529846, 0.7639727592468262, 0.29201674461364746, 0.07760076969861984, -0.266772598028183, 0.796826958656311, 0.6797528862953186, -0.8237229585647583, 0.4321986138820648, -1.3042844533920288, 0.8480031490325928, 0.6264950037002563, 0.5130428075790405, 0.3998278081417084, 0.2859836518764496, 0.2340553104877472, 0.28290417790412903, 0.44203418493270874, -0.08652561902999878, -0.2561000883579254, 0.6067108511924744, -0.13566945493221283, -0.6005755662918091, -0.5317919850349426, 0.6635933518409729, 0.10221488773822784, 0.6071541905403137, 0.6869555711746216, -0.15475967526435852, -0.6359986066818237, -1.1001802682876587, -0.8322441577911377, -0.7371184229850769, -0.4203605651855469, -0.908970057964325, -0.20235185325145721, -0.8021332621574402, 1.2605549097061157, 0.3943059742450714, 0.21393394470214844, 1.4047863483428955, 0.4393264651298523, -1.2575749158859253, -0.08174794167280197, -0.4492506682872772, -0.31342098116874695, -0.10258419066667557, -0.6101571321487427, -1.747496247291565, -0.7198094129562378, 1.0799498558044434, 1.689941167831421, 1.0539882183074951, 0.4154883623123169, 0.5620009303092957, -0.3607539236545563, -0.20360635221004486, -0.6543051600456238, 0.10916370898485184, 1.7547025680541992, 0.8507882356643677, -0.6613246202468872, -0.15019762516021729, 0.17969535291194916, -0.6140468716621399, 1.3473542928695679, -0.049613986164331436, -0.2478603720664978, 0.785603940486908, -0.366842120885849, 0.8372307419776917, -0.4199812710285187, -0.6530573964118958, 0.17146413028240204, 0.9662808179855347, 0.015483028255403042, -0.4676240384578705, -0.33988115191459656, -0.9357516765594482, 0.0539417490363121, -0.5347623825073242, 0.782224714756012, 0.04364122077822685, -1.2221317291259766, 0.7082118391990662, -0.9747015833854675, 0.28199803829193115, 0.1777717024087906, 1.2085288763046265, 0.44432327151298523, -0.38048887252807617, 0.9224541187286377, 0.5698937177658081, 0.22020389139652252, 0.9100229740142822, 0.668373167514801, -0.12637068331241608, -0.6524845361709595, 0.4716455340385437, 0.6146037578582764, -0.18128450214862823, 0.705925464630127, -0.12608058750629425, -0.5603737235069275, 1.3300657272338867, 0.30657532811164856, -0.6491190791130066, -0.4606587886810303, 1.2612159252166748, 0.09324368834495544, 0.36570578813552856, 0.8252360224723816, -0.24051153659820557, -1.8992948532104492, -0.9189702272415161, 1.6614922285079956, -0.6649839878082275, 0.2184584140777588, -0.23665544390678406, 0.25061601400375366, -0.5528613924980164, 0.27644091844558716, -0.46224138140678406, -1.1512095928192139, -1.292000651359558, -0.1563805788755417, -0.15111246705055237, -0.9907359480857849, 0.3077530264854431, -0.5242799520492554, -1.165945291519165, 0.9191661477088928, -0.951648473739624, -1.4108914136886597, 0.25603044033050537, 0.8747114539146423, -0.06890565156936646, -1.2602754831314087, -0.35783651471138, -0.8929274082183838, 1.4768620729446411, -0.9704595804214478, 0.7801740169525146, -0.8352460265159607, 0.8191264867782593, 1.0024182796478271, -0.7021061182022095, -0.9305630922317505, 0.5964635610580444, -0.15535308420658112, -1.5969738960266113, 0.3299145996570587, -0.562006950378418, 0.20423834025859833, -0.9855177998542786, 0.07251712679862976, 0.5885473489761353, 0.7548924684524536, -0.27865070104599, 0.580706000328064, -0.1341165453195572, 0.0065153674222528934, -0.8231731653213501, 0.214553564786911, -0.4338968098163605, -1.0883766412734985, -0.49695339798927307, 0.22243931889533997, 0.1770390272140503, -1.2859188318252563, -0.20528572797775269, -0.21556073427200317, 0.09359192848205566, -0.20317357778549194, 1.5999785661697388, 0.534889280796051, 0.40650007128715515, 0.020093685016036034, -0.2302650362253189, -0.7102166414260864, -0.4683496057987213, 0.9796727299690247, -0.5661562085151672, 0.5002081990242004, 1.6496745347976685, 0.6132504940032959, 0.01733962446451187, -0.06860469281673431, -0.9166136384010315, 0.023260608315467834, -0.96085125207901, -0.3851231038570404, 0.14784274995326996, -0.994478166103363, 2.405219078063965, 1.1764719486236572, -0.39385750889778137, 0.15781350433826447, -0.23179668188095093, 0.397104948759079, -0.8077182769775391, 0.2601524889469147, -0.4388229250907898, 0.2335597723722458, -0.17529107630252838, -0.2263806164264679, -0.011369572021067142, -0.08294985443353653, 0.526768684387207, -0.27328720688819885, -0.5628800392150879, 0.11836351454257965, 0.4482204020023346, -0.2841605544090271, 0.6048890352249146, -0.443089097738266, -1.4484981298446655, -0.8916801810264587, -0.10225864499807358, 0.6499860882759094, 0.12763401865959167, 0.39425063133239746, 0.8260350227355957, 0.623893678188324, 0.02930186502635479, 0.6046924591064453, 0.29843389987945557, 0.18904557824134827, -0.4115762710571289, 0.4930482506752014, -0.008072914555668831, 0.6663237810134888, -0.7003300189971924, -0.9395896196365356, 0.5239154100418091, 0.0820021703839302, 1.8187657594680786, 0.45460015535354614, 1.305727481842041, -0.8228453993797302, 0.18898992240428925, -0.385383665561676, 0.19560204446315765, -1.149444818496704, -0.5767216682434082, -0.19771116971969604, -1.185188889503479, -0.7520031332969666, -0.11997990310192108, -0.3109889626502991, 0.5846436023712158, -0.2375451922416687, 0.8719589114189148, 0.5524667501449585, 0.08368973433971405, -1.7771199941635132, -1.215266227722168, -0.12165717780590057, -0.8447802662849426, 1.3749818801879883, 0.9093666076660156, -1.493074655532837, 0.01975107379257679, -0.1058245375752449, -0.24611257016658783, 0.3920711278915405, -0.27981430292129517, 0.043994463980197906, -0.7574349045753479, 0.07738780975341797, -0.008290101774036884, 0.38742947578430176, -0.19279544055461884, -0.570441484451294, -0.5603454113006592, 0.5658231973648071, 0.5823444724082947, -0.7010940313339233, -0.343049019575119, -0.04970410093665123, -1.2330197095870972, -0.285139262676239, 0.04908972233533859, 0.6920986771583557, -0.0582582913339138, -0.7115758061408997, -1.559152603149414, -0.0026946356520056725, -0.596443235874176, -0.6182190775871277, 0.18977928161621094, 0.17966300249099731, 0.9024358987808228, -0.8281174302101135, 0.5695835947990417, 1.0794199705123901, -0.009982115589082241, 0.1565455049276352, -1.41403329372406, 1.1267722845077515, 0.9147868156433105, 1.1218457221984863, 0.28404903411865234, 0.6046579480171204, 0.7364879250526428, -0.7781321406364441, -0.08282162249088287, 0.25327450037002563, 0.5192899703979492, 0.02636636793613434, -0.2033124715089798, 0.019520942121744156, -0.3240445852279663, 0.02257016859948635, -0.25792059302330017, 0.005079872440546751, 0.670083224773407, -0.23458489775657654, 0.16399262845516205, 0.9628203511238098, 0.6139785051345825, -0.4873815178871155, -0.49943074584007263, -0.011678694747388363, 0.29544198513031006, 0.026892803609371185, 0.20624712109565735, -0.30103710293769836, -0.6368018984794617, 0.8145134449005127, -1.6321220397949219, -0.22886314988136292, -0.17770087718963623, 0.09632819890975952, 1.347080945968628, -0.7854751944541931, -0.5656394362449646, -0.6455090641975403, 0.21962735056877136, 1.4653921127319336, 0.2547401785850525, 0.877443253993988, 0.9419630765914917, -0.2735128402709961, 0.3066740930080414, 0.3451429605484009, 1.8329066038131714, 0.3697786331176758, -0.8353937864303589, 0.5103935599327087, 0.3652624785900116, 0.17389430105686188, -0.47625574469566345, -0.04047894850373268, 0.5540857911109924, -0.3949698507785797, -0.36180779337882996, 0.01531714666634798, -0.5989928245544434, 2.3266289234161377, 0.6019311547279358, 0.12176623195409775, -0.15806540846824646, -0.11428449302911758, -1.3973734378814697, 0.011863569729030132, 0.4347536861896515, -0.8787463903427124, -0.423138827085495, 0.40009254217147827, 0.3751462996006012, 0.9770996570587158, 0.17983973026275635, 0.4046996235847473, 0.03843742981553078, 0.13105224072933197, 0.6026099920272827, 0.36124739050865173, 0.18275697529315948, 1.5533069372177124, 1.0213521718978882, 1.1811752319335938, 0.15448062121868134, -0.6539104580879211, 1.2218904495239258, -0.6250724792480469, 0.43598803877830505, 0.9367232322692871, 0.346463680267334, 0.7796842455863953, -1.7263823747634888, 0.1775868535041809, 0.7878546118736267, -0.19866794347763062, 0.997491717338562, 0.44018521904945374, 0.6362534761428833, -0.7446960806846619, -0.2830570936203003, 0.7333815693855286, -0.146389439702034, 0.3768971264362335, -0.12853612005710602, -0.07240231335163116, 0.8987614512443542, -0.9635486006736755, 0.16037069261074066, -1.4203399419784546, 0.037260837852954865, -0.0237482488155365, -0.850616455078125, 0.4439263641834259, 0.7417395114898682, 1.178362250328064, 0.27808329463005066, -0.3224390745162964, -0.7554597854614258, 0.4610263705253601, -0.7385808229446411, 0.08462219685316086, -0.7015042901039124, 0.04479590430855751, -1.2084019184112549, -0.5069573521614075, -0.3742430508136749, -0.025898408144712448, -0.3107943832874298, -0.4723917841911316, -1.0671128034591675, -0.8738449811935425, 0.5990153551101685, 0.7277434468269348, 0.7791659832000732, 0.5031132102012634, 0.6699846386909485, 0.3353920578956604, 0.09185337275266647, -1.1807363033294678, -0.5184226632118225, 0.36630329489707947, 0.06540393829345703, -0.1722204089164734, -0.20289675891399384, -0.6186317205429077, 0.4050890803337097, 0.38479676842689514, -0.4065345227718353, 0.9745866060256958, 0.6883043646812439, 1.0538568496704102, -0.7547030448913574, -1.2479418516159058, 0.6087798476219177, -0.517916202545166, 0.4977492392063141, 0.4722633361816406, -0.685032844543457, -0.7692530751228333, -0.552994966506958, -1.2934398651123047, 1.3618011474609375, 0.09429765492677689, -0.41511696577072144, 0.5736539363861084, 0.7713882923126221, -0.07938352227210999, 0.7121036052703857, -0.8189370036125183, -0.029559850692749023, 0.04719715192914009, -0.2094944268465042, -1.095560908317566, 0.023857226595282555, 0.8070637583732605, -0.026765206828713417, -1.1134642362594604, 0.682488203048706, -1.0600666999816895, -0.017726799473166466, -0.6549597978591919, 0.6585546731948853, 0.47606608271598816, 1.0945954322814941, 0.8420094847679138, 0.15108616650104523, 0.6295790672302246, -1.2490681409835815, -0.012224355712532997, 1.0373725891113281, 0.18799753487110138, 0.47382625937461853, -0.5978732109069824, 1.288438320159912, -0.767143964767456, -0.42643076181411743, -0.22809414565563202, -0.4924898147583008, 0.5280865430831909, 0.4877217411994934, 0.08282091468572617, 0.8023626804351807, -0.5193626880645752, -0.32681623101234436, -0.7668493390083313, -0.44829505681991577, 1.254194736480713, -1.6071988344192505, -0.6432669162750244, -0.19167056679725647, -0.4474424719810486, -0.47630131244659424, 0.4662345051765442, -0.12131564319133759, -0.48192712664604187, -1.0644919872283936, -0.33173131942749023, -0.25819867849349976, 1.1303468942642212, -0.5159679651260376, 0.6361464858055115, -0.20738759636878967, -1.076891303062439, 0.47639918327331543, -0.6341394186019897, -2.0734548568725586, 0.35021454095840454, -0.6022724509239197, 0.7788264751434326, -0.89403235912323, -0.24495519697666168, 0.24598701298236847, 1.4124699831008911, -1.461205005645752, -0.49283748865127563, -0.9713224768638611, -0.32283931970596313, 1.0029774904251099, 0.8913296461105347, -0.8075644373893738, 1.7582777738571167, -0.050971705466508865, -0.6009622812271118, -0.24414962530136108, 0.4087327718734741, -0.8373311161994934, 0.02822592295706272, -0.13050733506679535, -0.2435046285390854, 0.20285649597644806, 1.7375527620315552, 0.6698277592658997, 0.8928699493408203, 0.0921589806675911, 1.6963666677474976, -0.7976446151733398, -1.2000453472137451, 0.08038335293531418, 0.5429727435112, -0.16506901383399963, -1.2093031406402588, 0.24337461590766907, -0.8962502479553223, -1.3360011577606201, -0.3135494887828827, 0.9836033582687378, -0.6203718781471252, 0.5375461578369141, 0.2131776511669159, -0.15016262233257294, -0.41771215200424194, 0.592928946018219, -0.17459607124328613, -0.19228850305080414, 0.4268289804458618, -0.3416460454463959, 0.07056677341461182, -0.8083257079124451, -0.11861398816108704, 0.7673931121826172, 0.8695780634880066, -0.19627127051353455, -0.3572642505168915, 0.2581687271595001, 0.110661081969738, -0.43077412247657776, 1.536338210105896, 0.719135046005249, -0.19741658866405487, -0.018441328778862953, -0.134572833776474, -0.4790653586387634, 0.11046452820301056, 0.11323443800210953, -1.1455743312835693, -0.5894911885261536, 0.6494751572608948, 0.6439933776855469, -0.20920580625534058, 0.4712183177471161, 0.6713277101516724, 0.41125160455703735, 0.7429606914520264, 0.7139744162559509, -1.144690752029419, -0.47835224866867065, 1.3454091548919678, 0.5914967656135559, -0.8920503854751587, 0.25437867641448975, -0.19119541347026825, 0.10868056863546371, 0.09886404126882553, 0.9722424745559692, 0.3057177662849426, -0.7178501486778259, 0.375312864780426, 1.1663289070129395, -0.5665268898010254, -0.40275293588638306, -0.8388521075248718, -1.817959189414978, -0.7212580442428589, -0.31681615114212036, -0.6052404046058655, 0.5676042437553406, -1.3401031494140625, -1.5018951892852783, 0.23375380039215088, 0.1970117837190628, -0.36190322041511536, -0.6172979474067688, 0.3892774283885956, 0.13065633177757263, -0.6965311765670776, 1.2667804956436157, -0.5508943796157837, 1.2828062772750854, -0.29955655336380005, 0.21461701393127441, -0.3582388460636139, -0.24376684427261353, 0.10119657218456268, 0.06471600383520126, -0.22917605936527252, -0.5411608815193176, 0.38838082551956177, -0.5753774642944336, -0.6396334767341614, 0.15956413745880127, 0.14843402802944183, 0.4054085910320282, -0.2669476866722107, -0.2823163866996765, 0.0875447541475296, 0.9679431319236755, -0.08582747727632523, -0.5339667201042175, -0.48980653285980225, -1.1014337539672852, 0.46316713094711304, -0.2179919332265854, 0.14239326119422913, 0.22015289962291718, 0.4977226257324219, 0.48439815640449524, -1.1399611234664917, -0.385163813829422, -0.7065880298614502, 0.5308253169059753, 0.47557562589645386, -0.5741879940032959, -0.7149746417999268, -0.6056567430496216, 0.5064346790313721, -1.0731902122497559, -0.4841068983078003, -0.24824562668800354, 0.39890915155410767, -0.14267005026340485, -0.7379605770111084, -0.6083528995513916, -0.691895604133606, -0.08905183523893356, 0.32264789938926697, 0.5011596083641052, -0.15867716073989868, 0.08812951296567917, -0.5810682773590088, -0.3927513360977173, 1.1855082511901855, 0.5773380994796753, 0.4210692346096039, 1.2030223608016968, 0.8408308029174805, 0.11384943872690201, -0.39941084384918213, 0.06799513846635818, 0.14358724653720856, -1.1883569955825806, 0.24338935315608978, -0.7639710903167725, -0.5050064921379089, -0.07853051275014877], [1.0775146484375, -0.07632303237915039, -4.00146484375, -0.547882080078125, 1.3052978515625, -0.5041046142578125, 0.09389781951904297, 0.41823577880859375, -0.4677276611328125, 0.96405029296875, -0.5348010063171387, 0.526824951171875, 1.69305419921875, 0.3725433349609375, 1.1978759765625, -0.92279052734375, 0.0702362060546875, 0.6990318298339844, -0.6847648620605469, 0.716033935546875, -0.4580068588256836, -1.2548828125, -0.4835357666015625, 0.361663818359375, 2.091552734375, 1.02972412109375, 0.23765945434570312, -0.5589313507080078, -1.190673828125, 0.059897422790527344, 1.2335205078125, -0.06591796875, 0.422332763671875, -0.11250114440917969, -0.2476806640625, -0.86273193359375, 1.07000732421875, 0.97882080078125, 0.89208984375, -0.18286895751953125, -0.0585784912109375, 0.0771942138671875, -0.3929557800292969, -0.2258758544921875, 1.3756103515625, -0.997161865234375, 0.30809783935546875, -0.2583799362182617, 0.5055999755859375, 0.7176055908203125, 0.02552032470703125, 0.2598533630371094, 0.5641326904296875, -1.08526611328125, 0.813232421875, 0.2220306396484375, -0.30194091796875, -0.14327049255371094, 0.71234130859375, 1.0592041015625, 0.007916450500488281, -0.785400390625, 0.51593017578125, 1.165557861328125, 0.36664295196533203, -2.0234375, 0.013180732727050781, 0.6326904296875, -0.5038795471191406, -0.05454254150390625, 0.4120941162109375, -1.2637939453125, 0.35205078125, 0.80364990234375, -0.0004425048828125, 0.978759765625, 0.06806564331054688, 1.30767822265625, -0.4321441650390625, -0.8001556396484375, 0.09105682373046875, -0.81329345703125, 0.724273681640625, -0.3944740295410156, 0.4857826232910156, -0.7322235107421875, 0.2740135192871094, 0.3385467529296875, -1.3031005859375, 1.59027099609375, 0.2271289825439453, 0.8129119873046875, 0.21664857864379883, 1.09210205078125, -0.10491943359375, -0.3686065673828125, -0.20586395263671875, 0.870819091796875, -0.49066162109375, 1.0367546081542969, -0.45647430419921875, -0.5882110595703125, -0.0019826889038085938, -0.09266281127929688, 0.6441650390625, 0.45253753662109375, 0.6417808532714844, -0.33553600311279297, -0.5590362548828125, -0.336212158203125, -0.3051910400390625, -0.038330078125, 0.10413742065429688, -0.43988037109375, 0.8167877197265625, 0.6935062408447266, 1.25933837890625, -0.6748886108398438, -0.9798583984375, 1.099029541015625, 0.6717147827148438, -0.79119873046875, -0.81011962890625, 0.568634033203125, 0.9627685546875, 0.54840087890625, -0.92724609375, -0.396759033203125, 0.7393798828125, -1.29107666015625, -1.0194091796875, 0.2830963134765625, -0.11268877983093262, 1.369873046875, 0.2824716567993164, 1.3310546875, 0.038883209228515625, -0.7050108909606934, 0.67572021484375, 0.647979736328125, 1.45916748046875, -0.8458404541015625, -0.4565410614013672, 0.7889060974121094, 0.13848876953125, 0.10184860229492188, 0.232391357421875, -0.92987060546875, -1.08056640625, 0.6678619384765625, 0.3002128601074219, -0.05823516845703125, -0.063018798828125, 1.072265625, 0.42168426513671875, -0.803131103515625, -2.11328125, 0.7687835693359375, -0.25281524658203125, 0.4599151611328125, 0.4822540283203125, -0.1183013916015625, -0.9459228515625, 1.13726806640625, -0.7935943603515625, -0.3537101745605469, 0.6629753112792969, 0.22823333740234375, 0.12723946571350098, 1.04974365234375, -2.09375, -1.18695068359375, -0.08977222442626953, -0.325650691986084, 0.932403564453125, 0.3419189453125, 0.77545166015625, -0.849611759185791, -0.273040771484375, 0.48944091796875, 1.040771484375, -0.606292724609375, 0.963134765625, -0.419342041015625, -0.31136077642440796, 0.9041175842285156, -0.4453468322753906, 0.05916547775268555, -0.6597442626953125, -0.736083984375, 0.016374826431274414, 1.13543701171875, -0.5592384338378906, -0.10247611999511719, -1.5902099609375, -0.31949615478515625, 1.001220703125, 0.7440185546875, -0.47792816162109375, -1.428497314453125, -0.6059675216674805, 0.2418060302734375, -0.3669891357421875, 0.20949172973632812, -0.47521209716796875, 1.063201904296875, 1.01019287109375, 1.0059814453125, 0.05940723419189453, 0.8258056640625, 0.8243026733398438, -0.4240608215332031, -0.39405059814453125, -0.62103271484375, 0.2366790771484375, 0.18756675720214844, 0.22186040878295898, -1.1773681640625, -0.13056564331054688, 1.167633056640625, -0.43811988830566406, 1.25335693359375, -0.694976806640625, 0.12753582000732422, 0.8984375, 0.6048736572265625, -0.9664306640625, -0.66473388671875, -0.181396484375, -0.9239501953125, 0.8082275390625, -1.25701904296875, 0.8184814453125, -0.5335693359375, -0.6760101318359375, 0.1600780487060547, -0.22133255004882812, -0.146636962890625, 0.3527851402759552, 1.193939208984375, 0.669769287109375, -0.4065876007080078, -0.8167266845703125, -1.234130859375, -1.710693359375, -0.011566162109375, -0.2979736328125, 0.296356201171875, 0.437957763671875, 2.470947265625, 0.735382080078125, -0.3196258544921875, 0.5039520263671875, 0.267822265625, 1.23797607421875, -0.547576904296875, -0.18692779541015625, 0.8153076171875, -0.5406341552734375, 1.0116767883300781, -0.3312034606933594, -0.16844940185546875, -0.532318115234375, -0.22057533264160156, -0.43568897247314453, -0.17673492431640625, 0.96484375, 0.23255157470703125, 0.7013702392578125, -0.687744140625, 0.715118408203125, 1.266357421875, -0.05008697509765625, 0.25153160095214844, -0.30449676513671875, -0.027756690979003906, -0.17252731323242188, 0.5869827270507812, -0.870513916015625, 1.338623046875, -0.7476234436035156, -1.026763916015625, -1.472412109375, 0.4280853271484375, -0.5573959350585938, 0.33469390869140625, 0.043426513671875, -0.37528228759765625, 0.1965789794921875, 0.696014404296875, 0.8359756469726562, 0.609039306640625, 0.058345794677734375, -0.3404045104980469, 0.5484485626220703, 0.08700942993164062, 0.0829315185546875, -1.18817138671875, -0.146453857421875, -0.4518890380859375, 0.4624176025390625, -0.6502227783203125, 0.1720123291015625, 0.845062255859375, -0.87896728515625, -0.5353994369506836, -0.720306396484375, -0.19322967529296875, 0.61383056640625, -0.7557373046875, -0.91668701171875, 0.528289794921875, -1.02166748046875, -0.2913024425506592, -1.0557861328125, -0.19036865234375, 0.6406707763671875, 0.502044677734375, 0.83251953125, -0.10797500610351562, -0.16134262084960938, -0.06949043273925781, -0.66748046875, -0.470367431640625, 1.45947265625, 0.8856201171875, -0.779052734375, 0.37823486328125, -0.799072265625, -0.48638916015625, -1.72125244140625, 0.835174560546875, 1.6126708984375, -0.48209381103515625, -0.19217681884765625, 1.000732421875, -0.5932173728942871, -0.02489471435546875, 0.1838226318359375, 0.87396240234375, 0.7068157196044922, -1.33111572265625, -0.3065605163574219, -0.700347900390625, 0.23245620727539062, 1.1551513671875, -0.20189452171325684, 0.7169952392578125, 0.615447998046875, 0.3359203338623047, -0.3262596130371094, -0.7545166015625, -0.4103269577026367, -0.1855621337890625, 1.42138671875, 0.11436939239501953, 0.3884735107421875, 1.2513427734375, -1.179718017578125, 0.3128681182861328, 0.478973388671875, -0.3604736328125, -0.2583961486816406, -1.1787109375, 0.5567970275878906, 1.234466552734375, 1.6527099609375, -0.92584228515625, 0.445648193359375, -0.39083099365234375, 0.14499664306640625, 0.03473472595214844, -0.48666834831237793, -0.6134490966796875, -1.15625, -0.32320404052734375, -1.567138671875, -1.12762451171875, -1.60302734375, 0.6794586181640625, 0.19775390625, -0.7909393310546875, 0.67462158203125, 0.876373291015625, 0.7517299652099609, -0.5698089599609375, 0.585235595703125, -1.4417724609375, -0.3759307861328125, 0.24413299560546875, -1.0478515625, -1.3271484375, 0.084197998046875, -0.7880783081054688, 0.06776046752929688, -0.695831298828125, 0.32833099365234375, -1.14532470703125, -0.9516448974609375, -0.24458885192871094, -1.4912109375, -2.0455322265625, -0.422332763671875, 0.17224884033203125, -0.5972685813903809, 0.044826507568359375, 0.9130096435546875, -0.345672607421875, -0.19525146484375, -0.0283203125, 0.7841796875, 0.5462570190429688, -0.4054832458496094, -1.008056640625, -0.6656646728515625, 0.7491455078125, 1.1690673828125, -0.78887939453125, 0.8398551940917969, -0.43603515625, 0.2592430114746094, 0.019378662109375, -0.262176513671875, -0.10074996948242188, 0.804779052734375, 0.3750457763671875, 0.35530853271484375, -0.096771240234375, 0.2691984176635742, -1.028564453125, -0.6448745727539062, 0.7304229736328125, 0.762298583984375, 0.35137939453125, 0.5274810791015625, 0.2521209716796875, -0.38568115234375, -0.3959808349609375, 0.2279815673828125, 1.0946044921875, 1.2677764892578125, -1.24267578125, -0.34786224365234375, -0.1929779052734375, 0.9256591796875, 1.249786376953125, 0.96746826171875, -0.4784698486328125, -0.9700927734375, 0.3546905517578125, -0.7404880523681641, -0.14735031127929688, -0.3512115478515625, 1.05438232421875, 0.8051681518554688, -1.36492919921875, -0.3738861083984375, 0.5951766967773438, -0.6686477661132812, 0.959136962890625, 0.04581451416015625, -0.0277862548828125, -0.26814746856689453, -0.11968803405761719, -0.03408050537109375, 0.1308441162109375, 0.5341949462890625, -0.38739013671875, -0.3606414794921875, 0.940521240234375, -0.06810379028320312, 0.21311378479003906, -0.5644645690917969, -1.014373779296875, -0.383056640625, -0.79827880859375, -0.4217491149902344, 0.04310417175292969, 1.11907958984375, 0.22800636291503906, 0.88153076171875, -1.11419677734375, -0.2706146240234375, -0.7384567260742188, 0.375885009765625, 0.823211669921875, 0.08233642578125, -0.9849853515625, -0.26885986328125, -0.4040260314941406, 0.756591796875, -0.3760414123535156, 0.10881805419921875, -0.4472503662109375, 0.366668701171875, 0.0315399169921875, -0.13753318786621094, 1.31488037109375, 0.43482208251953125, -0.7556295394897461, 0.332916259765625, 2.636962890625, -0.3893089294433594, -0.26972198486328125, 0.31354522705078125, 0.854339599609375, 1.32696533203125, -0.14852380752563477, -1.034515380859375, 0.4171638488769531, -0.6925048828125, -0.802398681640625, 0.3285980224609375, 0.824951171875, 1.5225830078125, -0.4456138610839844, 0.10394287109375, -0.3275604248046875, -0.5516104698181152, -0.7001876831054688, 0.574432373046875, -0.2888298034667969, 0.9184112548828125, -2.1243896484375, -0.6380157470703125, 0.5127849578857422, 0.79376220703125, -0.3650856018066406, -0.39691162109375, 0.4528656005859375, 0.12070608139038086, -0.08072376251220703, -0.48651123046875, -0.5231475830078125, -0.6716499328613281, -0.2147674560546875, -1.07781982421875, 0.89410400390625, 0.953277587890625, 0.9031982421875, -0.0612640380859375, -0.629241943359375, 0.2060089111328125, -0.10080528259277344, -0.42156219482421875, 0.5833759307861328, -0.6414031982421875, 0.2812264561653137, -0.3218536376953125, 0.10888290405273438, 0.06401443481445312, -0.368804931640625, 0.19835054874420166, 0.7766342163085938, 0.7577056884765625, -0.828094482421875, 0.21732640266418457, -0.5753173828125, 0.1014862060546875, -1.00115966796875, 0.83831787109375, -0.809234619140625, 1.65234375, 1.11505126953125, 0.2985725402832031, 0.771484375, 0.12397360801696777, -0.768218994140625, 0.0620269775390625, 1.25946044921875, 1.734710693359375, -1.41314697265625, -0.07683563232421875, -1.12396240234375, 0.1465740203857422, 0.611358642578125, -0.19327163696289062, 0.6785888671875, -0.7108306884765625, -1.4013671875, -0.6292266845703125, -1.13470458984375, 0.3205232620239258, 0.5452661514282227, -0.01465606689453125, -0.23199200630187988, -1.358154296875, 0.01781463623046875, 1.2901153564453125, -0.723541259765625, 0.37496137619018555, -0.59954833984375, -0.248199462890625, 0.7203527092933655, 0.0584716796875, 0.14244842529296875, 0.524322509765625, -0.1993865966796875, -0.617889404296875, 1.0106964111328125, 0.6040191650390625, 0.028900146484375, 1.755126953125, -1.3406982421875, 1.068359375, 0.751678466796875, -0.3017578125, -0.22946929931640625, 0.9637374877929688, -0.2972679138183594, 0.462432861328125, 0.6295013427734375, -0.540008544921875, -0.058868408203125, -0.021953582763671875, -0.871429443359375, 1.5625, -0.3528900146484375, -0.77471923828125, 0.534271240234375, -0.5251922607421875, -0.24059295654296875, -0.3474922180175781, -0.71002197265625, 0.2471160888671875, -1.46563720703125, -1.3944091796875, -0.7694549560546875, 0.48772430419921875, 0.87030029296875, -1.8143310546875, 0.0008133649826049805, -1.518310546875, -0.18198776245117188, 0.08189773559570312, 0.407012939453125, -0.06886053085327148, 0.621124267578125, -0.6324844360351562, 1.052978515625, 0.8404541015625, -0.8108139038085938, -0.1883535385131836, 0.899017333984375, 0.6139926910400391, 0.042011260986328125, 1.6446533203125, 0.6927337646484375, 0.4292144775390625, -0.140594482421875, 0.88494873046875, 1.4794921875, 0.39487457275390625, 0.339752197265625, -1.27685546875, -0.4326133728027344, 0.796417236328125, -0.85076904296875, -0.1325969696044922, 0.21215057373046875, 0.94915771484375, -0.19472503662109375, -0.9775390625, 0.96990966796875, 0.35935211181640625, 0.10765838623046875, 0.470367431640625, -0.4689321517944336, -0.269134521484375, -0.026787757873535156, 0.836090087890625, 0.5208282470703125, 0.12993621826171875, 0.04283905029296875, 0.11869406700134277, 0.770660400390625, 1.43798828125, 0.562286376953125, 0.47907257080078125, 0.14968490600585938, -0.2415323257446289, -0.19699859619140625, 0.22707366943359375, -0.83294677734375, 0.01387786865234375, -1.08575439453125, 0.10925102233886719, -0.66656494140625, -0.6591415405273438, -0.45526885986328125, -0.47076416015625, -1.1279296875, 0.03798103332519531, 0.8863067626953125, 0.03873252868652344, 0.05616474151611328, -0.33649444580078125, 0.2491779327392578, -0.91632080078125, 0.66522216796875, -0.3931427001953125, 0.941009521484375, -0.721954345703125, 0.39296722412109375, -0.3455085754394531, 0.5110855102539062, 0.533782958984375, -0.89007568359375, 0.39089202880859375, 0.36046600341796875, -0.544677734375, -0.658050537109375, -0.20740699768066406, 0.6781158447265625, 1.5621337890625, 0.312164306640625, -1.2322998046875, -1.53216552734375, 0.16708683967590332, 0.428955078125, -0.11752700805664062, -0.4512939453125, -1.25982666015625, -0.744903564453125, 0.753021240234375, 0.3157806396484375, -0.22103500366210938, -1.32391357421875, -0.36868858337402344, -0.815643310546875, 0.1490936279296875, -0.55413818359375, -1.406494140625, 1.0885467529296875, -0.82318115234375, -0.18204498291015625, -1.4202880859375, 0.49559783935546875, -0.8932037353515625, -1.17022705078125, -1.027435302734375, 0.05148124694824219, -0.1896343231201172, 0.008195877075195312, 0.0651557445526123, 0.05808258056640625, 0.00994110107421875, 0.42176055908203125, 0.15546417236328125, 0.00644683837890625, -0.362152099609375, -0.8431396484375, -1.2608642578125, 0.2728309631347656, 0.537017822265625, 0.6863174438476562, 1.32684326171875, 0.3628692626953125, 1.95068359375, 0.11780166625976562, 0.160064697265625, -0.07209396362304688, -0.1861896514892578, -0.5300827026367188, -0.369537353515625, -1.24200439453125, -1.4501953125, -0.1416797637939453], [0.2451205849647522, 2.1424996852874756, -2.6274893283843994, -0.3248721957206726, 1.016411304473877, 0.16508440673351288, 1.4288442134857178, 0.2182430624961853, -0.11728992313146591, -0.6535104513168335, -0.7528513073921204, 0.04963482543826103, 0.5556259155273438, -0.1814650148153305, 0.4695238471031189, -0.1897886097431183, 0.22882544994354248, 0.18388527631759644, 0.39763540029525757, 1.1492186784744263, -0.7679171562194824, -0.9841697216033936, -0.4182060956954956, 0.47839537262916565, 0.12116555869579315, -0.05535686016082764, -1.4259592294692993, -0.3811067044734955, -1.102442741394043, -0.004983913153409958, 1.8314403295516968, -0.5871971249580383, 1.2366982698440552, 0.2584581673145294, -1.52310311794281, 0.2678028643131256, 1.0495740175247192, 0.26590415835380554, -0.5382739305496216, -0.9064152240753174, 1.4035755395889282, 1.6644898653030396, -0.698729932308197, -0.7360104918479919, -0.4643881022930145, 0.8024068474769592, 0.5751084685325623, -0.9996505379676819, -0.16342712938785553, -0.044404711574316025, 0.8875340223312378, -0.03177677467465401, 0.2677071690559387, 1.9329837560653687, 0.6250057816505432, -1.2041106224060059, 0.5137226581573486, 0.6499719619750977, -0.10174516588449478, 0.5965396165847778, 1.4621782302856445, -0.396660178899765, 1.174968957901001, 0.26195958256721497, 0.6329618692398071, -0.8428918719291687, 0.5643577575683594, 0.1043301671743393, 0.8261457681655884, -0.08797022700309753, 0.6708210706710815, -0.24765895307064056, -0.25377127528190613, 0.5204806923866272, -1.375706672668457, 0.26977527141571045, 0.2941499948501587, 0.27903228998184204, 0.06195454299449921, -0.5179508328437805, -0.3615959584712982, 0.17096836864948273, 0.8239087462425232, 0.19796352088451385, -0.023241247981786728, 0.17790213227272034, 0.5089239478111267, -0.48918992280960083, 0.05603119730949402, 1.5180230140686035, 0.023958081379532814, 0.7226377725601196, 0.8877363801002502, 0.30330348014831543, -0.44378286600112915, -0.625904381275177, -0.36432546377182007, -1.3387032747268677, -0.9428396821022034, -0.6351845860481262, -0.25441670417785645, -0.33771803975105286, -0.05679884925484657, 0.886608898639679, 0.13876965641975403, 1.7357388734817505, -0.13635776937007904, -0.40641963481903076, 0.4102843701839447, -0.1408405750989914, -0.8325783014297485, 1.1819556951522827, -0.05875144898891449, -1.4996185302734375, -0.7573006749153137, 1.2910388708114624, 1.2039783000946045, 0.7086601257324219, 0.38170892000198364, 0.9299166202545166, -0.45681488513946533, 0.29693207144737244, -0.2695257067680359, -0.00016400031745433807, 0.6576193571090698, 0.35024282336235046, -0.4667696952819824, -0.2256314903497696, 0.4268767237663269, -0.03374599665403366, 1.1694912910461426, -0.6309123039245605, -0.08620908856391907, 0.32310813665390015, -0.4842599928379059, 0.9472708702087402, -0.32105863094329834, -0.8343518972396851, 0.42633575201034546, 1.167733907699585, 0.5703425407409668, -0.04879198595881462, 0.022398510947823524, -0.9738152623176575, 0.3016141951084137, -0.5441774129867554, 0.421538770198822, -0.7715260982513428, -0.545060396194458, 0.17271190881729126, -1.1831461191177368, 0.3990756869316101, -0.14769183099269867, 0.8221826553344727, 0.669230580329895, -0.6651274561882019, 0.6009661555290222, -0.8019708395004272, 0.6237339973449707, 0.21450652182102203, -0.10524830967187881, 0.1574903130531311, -0.9352261424064636, 0.426543653011322, 0.08067343384027481, -0.7709764838218689, 0.6320421695709229, 0.38775086402893066, -0.4518110156059265, 1.0363367795944214, 0.008644934743642807, -0.6734432578086853, -0.6086763143539429, 0.5116948485374451, 0.3697988986968994, 0.02301117032766342, 0.9925797581672668, 0.4837372303009033, -0.8181156516075134, -0.04595308378338814, 1.0594590902328491, -0.21254116296768188, 0.8552713394165039, -0.3367031216621399, 0.0026040617376565933, -0.042373742908239365, -0.27456599473953247, -0.4480721056461334, -0.1307390183210373, -0.7339085340499878, -0.36095917224884033, -0.3705114424228668, -1.445427656173706, -0.03868135064840317, -0.5320994257926941, 0.11157608777284622, 1.0505926609039307, -0.6395388245582581, -0.5305230021476746, 0.5537993907928467, 0.4402351975440979, -0.22660179436206818, -0.7948305606842041, 0.2677280008792877, -0.7641414999961853, 0.8688300251960754, -0.6756144762039185, 0.29906800389289856, -0.6600793600082397, 0.40094509720802307, 1.4281755685806274, -1.3704156875610352, -1.1998004913330078, 0.7401339411735535, 0.5879595875740051, -1.3720108270645142, 0.4551801383495331, -0.359421968460083, -0.5603552460670471, -0.6799940466880798, -0.7434868812561035, 0.4058496356010437, 0.45522722601890564, 0.20624341070652008, 0.7109671235084534, -0.7375436425209045, 0.08218143880367279, -0.7374924421310425, 0.4267079532146454, -0.07185011357069016, -1.1960138082504272, -1.5335935354232788, 0.13706836104393005, 0.6897484064102173, -1.6981602907180786, -0.2494317889213562, -0.2709134519100189, 0.20670464634895325, -0.17976485192775726, 1.2859779596328735, -0.016690675169229507, 0.7038553357124329, -0.7296261191368103, -0.12148934602737427, -0.691749095916748, -0.15089155733585358, 1.2380387783050537, -0.5760256052017212, 0.16461512446403503, 0.8528014421463013, 0.46250930428504944, 0.0338362455368042, 0.9739739298820496, -0.8707212209701538, -0.22615863382816315, -0.2459058314561844, -0.538375973701477, 0.37850162386894226, -0.6257159113883972, 1.2913928031921387, 0.5882470011711121, -0.6851627230644226, 0.5589696764945984, 0.03485559672117233, 0.21334803104400635, -0.07070942968130112, -0.457411527633667, -0.2977593243122101, -0.10088372975587845, -0.5588856935501099, 0.13799411058425903, 0.4094865024089813, -0.16723036766052246, 0.4362056255340576, -0.5841803550720215, -0.7364968657493591, 0.24682332575321198, 1.0304603576660156, -1.022849678993225, 0.7633819580078125, -0.49858608841896057, -0.876639723777771, 0.11156124621629715, 0.1666799783706665, 0.46179676055908203, 0.2963188886642456, 0.19664184749126434, 0.3645358979701996, 0.788276731967926, -0.028521912172436714, 0.27718812227249146, 0.0752982422709465, -0.08004094660282135, 0.014704076573252678, 1.0981096029281616, -0.2548394501209259, 1.4376204013824463, -0.08931746333837509, -0.43203791975975037, 0.1075286716222763, 0.3195422887802124, 1.2799824476242065, 0.45703259110450745, 1.0587157011032104, -0.8076530694961548, -0.9312868714332581, 0.07161720097064972, -0.1100163608789444, -1.0728557109832764, -0.898577868938446, -0.27145516872406006, -0.7106274962425232, -0.2659202218055725, -0.04765111953020096, -0.6645505428314209, 0.2024029642343521, 0.46900495886802673, 0.7710403800010681, -0.04573286324739456, -0.058970220386981964, -1.1794451475143433, -0.11039722710847855, -0.5654233694076538, -0.3684151768684387, 0.7499628663063049, 1.6050969362258911, -1.6252292394638062, 0.10448185354471207, -0.6247025728225708, -1.1328474283218384, 0.022259056568145752, -0.23715811967849731, 0.6586513519287109, -0.7294020056724548, -0.5214626789093018, -0.48634448647499084, 0.6362417936325073, 0.2031930536031723, 0.02123708464205265, -0.6273486614227295, 1.2096630334854126, 0.8161104917526245, 0.3377630114555359, -0.7292581796646118, -0.048887934535741806, -0.7645817995071411, -0.3717026710510254, 0.04640014469623566, 0.6712254881858826, 0.10618893802165985, -0.6789158582687378, -1.1307802200317383, -0.26834696531295776, -0.5451157689094543, -0.261341392993927, 1.1938380002975464, 0.4186183512210846, 0.8516448140144348, -0.4170108139514923, -0.40668368339538574, 0.9122792482376099, -0.2931278645992279, 0.47081825137138367, -0.8123435974121094, 0.4005015790462494, 0.8222105503082275, 1.4377436637878418, -0.23957215249538422, 0.15458624064922333, 0.24833591282367706, -0.8440086841583252, 0.13269975781440735, -0.3453908860683441, 0.42930540442466736, 0.3747422695159912, -0.9302934408187866, 0.010628332383930683, -0.08123400062322617, -0.23811973631381989, -0.2140960544347763, 0.40627729892730713, -0.5515171885490417, -0.3370368480682373, -0.014166513457894325, 0.8447412848472595, 0.6163675785064697, -1.0904008150100708, -0.7428823113441467, -0.3542947769165039, 0.7298922538757324, -0.8438065648078918, 0.7339951992034912, -0.30358728766441345, 0.059303514659404755, 0.6214379668235779, -1.5543030500411987, 0.7720060348510742, -0.2547863721847534, 0.0030611716210842133, 1.303767442703247, -0.978035032749176, -0.47429776191711426, -0.3868093192577362, 0.3212612271308899, 0.7981915473937988, 1.485680341720581, 0.6446461081504822, 0.002630210015922785, -0.5179829001426697, 0.3941253125667572, 0.3340788185596466, 1.2863664627075195, -0.3812316954135895, -0.5264587998390198, 0.20973306894302368, -0.22526979446411133, -0.27103734016418457, -1.0021458864212036, 0.3653617203235626, 0.028543323278427124, 0.17437322437763214, -0.10441267490386963, 0.7329773306846619, -0.3333286643028259, 1.3693501949310303, 0.1059480607509613, 0.08155695348978043, 0.005412741098552942, -0.053991060703992844, -0.8077895045280457, 0.4237391948699951, 0.5935336947441101, -0.6434921622276306, 0.08575288951396942, -0.005776687990874052, 0.04068600758910179, 1.0743420124053955, -0.31210973858833313, 0.03860877454280853, 0.5829434394836426, 0.6708653569221497, -0.6329347491264343, 0.04163549095392227, 0.3834250569343567, 0.944480299949646, 0.6215963959693909, 1.1604163646697998, 0.8046876192092896, -1.1380493640899658, 0.9489468932151794, -0.22980408370494843, 0.38625970482826233, 0.9022119045257568, 0.006160931661725044, 0.9767817854881287, -1.3993799686431885, -0.08394353091716766, 0.6688321232795715, 0.009644518606364727, 0.5976816415786743, 0.1949053257703781, -0.37003788352012634, -0.8965759873390198, 0.2691977918148041, 0.4662185311317444, -0.32942676544189453, 0.34332355856895447, -0.026847831904888153, 0.8816636800765991, 1.3325773477554321, -0.8798895478248596, 0.40344300866127014, -0.8129341006278992, -0.8593025207519531, -0.29304033517837524, -0.015778884291648865, 0.9291432499885559, 0.6389124989509583, 0.7856196761131287, -0.044211819767951965, -0.1305670291185379, -0.468888521194458, 0.42304015159606934, -0.7865851521492004, 1.0109124183654785, -0.4620761275291443, -0.04908904805779457, -0.7817118763923645, -0.29245999455451965, -0.3260609209537506, -0.8836553692817688, -0.4745550751686096, -0.5793123841285706, -1.0562602281570435, -0.7811719179153442, -0.19740097224712372, 0.4698546528816223, 0.11167819052934647, 0.10988118499517441, 0.7359439134597778, 0.13459311425685883, 0.5695182681083679, -0.5548996329307556, 0.44212281703948975, 0.36758488416671753, 0.21702419221401215, 0.0020364364609122276, -0.7378973364830017, -1.0521800518035889, 0.6202231049537659, 0.25414735078811646, -0.17114980518817902, 0.21823987364768982, 0.328106552362442, 1.196117639541626, -0.6461269855499268, 0.01911076530814171, 0.850642740726471, -0.08763720095157623, 1.1704189777374268, 0.25602325797080994, -0.49802473187446594, -0.6253807544708252, 0.10048703849315643, -1.6671143770217896, 1.0136408805847168, -0.17491386830806732, 0.08504144847393036, 0.13739947974681854, 0.5402047038078308, 0.27986329793930054, 0.17872563004493713, -0.11319325864315033, 0.48754793405532837, -0.1581277698278427, -0.17851431667804718, -0.6036974191665649, 0.603172242641449, 0.5249404311180115, -0.32459884881973267, -1.0694916248321533, -0.048405684530735016, -0.17882344126701355, 0.13007238507270813, -0.26759710907936096, 0.6900174021720886, -0.20234468579292297, -0.056113045662641525, 0.22451040148735046, -0.5597620010375977, -0.18390913307666779, -0.047191768884658813, -0.45388564467430115, 1.114603042602539, 0.7807111740112305, -0.09308074414730072, -0.49066057801246643, 1.4234461784362793, -1.0250946283340454, -0.4669322073459625, -0.5032103061676025, -0.5998652577400208, 0.8648284673690796, 0.600296676158905, 0.3611994683742523, 1.5433555841445923, -0.3031812012195587, -0.40417855978012085, -0.8406245708465576, -0.2092389017343521, 0.7014614939689636, -0.9724640250205994, -1.1759459972381592, -0.4820546507835388, -0.6518996357917786, -0.18123291432857513, -0.2452443689107895, 0.5987027287483215, -0.439044326543808, -1.0402112007141113, -0.19761531054973602, 0.07719232887029648, 1.321081519126892, -0.46208351850509644, 0.4736877679824829, 0.6205182075500488, -0.9466220736503601, 0.3461931645870209, -0.3253883719444275, -1.275346279144287, -0.019319403916597366, -1.0954264402389526, 0.4119347929954529, -0.12039031088352203, 0.17664700746536255, -0.043208345770835876, 1.4725301265716553, -1.2583997249603271, -0.9786669611930847, -1.2955496311187744, -0.235224187374115, 1.161975383758545, 0.46853873133659363, -2.1301939487457275, 1.507543683052063, -0.1678370237350464, -0.19231468439102173, -0.28243330121040344, 0.18745297193527222, -0.3120092749595642, 0.07394534349441528, -0.5470554232597351, 0.33820900321006775, 0.358725905418396, 1.2689275741577148, 0.13196629285812378, 0.977530837059021, -0.1342899352312088, 1.1990243196487427, -0.7606555819511414, -0.35416266322135925, -0.017582902684807777, 0.7963110208511353, -0.27799543738365173, -0.5080443024635315, -0.22157177329063416, -0.8954156041145325, -0.571792483329773, 0.12766550481319427, 0.8762317895889282, -0.9667516946792603, 0.5712432861328125, -0.21012097597122192, -0.4592445492744446, -0.7444437742233276, 0.3576803207397461, -0.365202933549881, -0.316621869802475, 0.4415229856967926, -0.6198810935020447, 0.2503405809402466, -0.738733172416687, 0.4512275457382202, 1.0510828495025635, 0.7170733213424683, -0.9571365118026733, 0.1735362410545349, 0.8832347393035889, 0.33234137296676636, -0.7038701176643372, 1.1673030853271484, 0.7855843901634216, -0.6881502270698547, -0.4968068301677704, -0.29880309104919434, -0.40230223536491394, 0.6286441683769226, -0.1163174957036972, -0.4508097767829895, -0.7214909195899963, 0.3623163402080536, 0.26932552456855774, -1.058412790298462, 0.7627951502799988, 0.19564370810985565, -0.008647209964692593, -0.6662623286247253, 1.1368606090545654, -0.9165744781494141, -1.114192247390747, 1.3347665071487427, 0.45195460319519043, -1.0225108861923218, 0.409795343875885, -0.12049481272697449, -0.44149497151374817, 0.10645575076341629, 0.6319101452827454, 0.6329882144927979, -0.9305249452590942, -0.059503912925720215, 1.2796193361282349, -0.3706609904766083, -0.24921654164791107, -0.36023828387260437, -1.6774096488952637, -0.38760384917259216, -1.3394865989685059, -0.9076020121574402, 0.6530470848083496, -0.9241794943809509, -1.0388437509536743, 0.6900466084480286, 0.46880611777305603, -0.6611096858978271, -0.396074116230011, -0.16571049392223358, 0.2838437855243683, -0.5963561534881592, 0.9415751099586487, -0.2550235390663147, 1.553926706314087, -0.25267860293388367, -0.4261779189109802, -0.09974349290132523, -0.5291422009468079, 1.0781515836715698, 0.33270248770713806, -0.671058714389801, -0.6750162839889526, 0.4965921640396118, -0.6211853623390198, -0.7053831219673157, 0.4777139127254486, 0.34664928913116455, 0.513073205947876, -0.37732186913490295, -0.6679869890213013, 0.31874072551727295, 0.4120444059371948, 0.5687770247459412, -0.7452024221420288, -1.1896228790283203, -0.6172200441360474, 0.767533004283905, -0.7206956744194031, 0.2758291959762573, 0.511120080947876, 0.9011933207511902, 0.40235111117362976, -1.1622716188430786, -0.2876209616661072, -0.8174618482589722, 0.675383448600769, 0.14850063621997833, -0.5248932242393494, 0.10804177075624466, 0.4466976821422577, 0.1195136085152626, -0.8714914917945862, -0.6517122387886047, 0.5259556770324707, 0.1788363754749298, 0.018493952229619026, -0.7533516883850098, -1.0585389137268066, -0.8570071458816528, -0.00958029180765152, 0.14638842642307281, 0.7999326586723328, 0.5599537491798401, 0.41581496596336365, -1.1938332319259644, 0.8374931216239929, 0.9103052616119385, -0.037178389728069305, -0.3801790773868561, 0.484154611825943, 0.38229772448539734, -0.19141824543476105, -0.3166431188583374, -0.48131734132766724, 0.729239284992218, -0.8656796813011169, 0.9569892287254333, -0.7597128748893738, -0.6477221250534058, -0.07809417694807053], [-0.20768243074417114, 2.3101308345794678, -3.185514450073242, 0.4717504680156708, 0.9657737016677856, 0.1849443018436432, 1.2111748456954956, 0.39592570066452026, 0.1234307587146759, -0.7341877222061157, -0.8449513912200928, 0.134612575173378, 0.5829514861106873, 0.4508697986602783, -0.35329669713974, 0.5629965662956238, 0.22052887082099915, -0.1855935901403427, 0.6469832062721252, 1.1688381433486938, 0.0107234762981534, -1.2109527587890625, -0.8330621123313904, 0.47743576765060425, 0.08439968526363373, -0.12148521095514297, -1.5835776329040527, -0.05935022607445717, -0.7737670540809631, -0.575035572052002, 1.6300866603851318, -0.04917145520448685, 0.807000458240509, 0.5674382448196411, -1.1827609539031982, -0.08112850040197372, 0.43454110622406006, 0.2835920751094818, -0.0924365371465683, -0.7863932847976685, 1.1105698347091675, 0.8891416788101196, 0.25797349214553833, -0.9576922059059143, -0.4490998089313507, 0.8181922435760498, 1.5413479804992676, -0.9982461929321289, 0.5591009259223938, -0.6974519491195679, 0.6807037591934204, -0.3889677822589874, 0.4007270932197571, 1.6287732124328613, 0.8504615426063538, -1.1451112031936646, 0.417804092168808, 0.9971968531608582, -0.47931453585624695, 0.12334761023521423, 1.4058518409729004, 0.07566583156585693, 0.662880003452301, 0.19911742210388184, 0.2512172758579254, -0.43898555636405945, 0.4150209426879883, 0.4936787784099579, 1.258357048034668, -0.2048136591911316, 0.7558321952819824, 0.8779430985450745, -0.522316575050354, 0.7041066288948059, -0.8497548699378967, 0.4494154155254364, 0.5974613428115845, 0.2933194041252136, -0.4782960116863251, 0.3506065011024475, -0.21591144800186157, 0.1592463105916977, 0.5953978896141052, 0.6408848166465759, -0.09454882889986038, 0.16448530554771423, 0.14468304812908173, -0.28015533089637756, -0.5571700930595398, 1.4064552783966064, -0.3013100028038025, 0.6794266104698181, 1.1090329885482788, 0.07584326714277267, -0.06263846158981323, -0.7701289653778076, 0.06263191252946854, -1.11114501953125, -0.7304467558860779, -0.6807560920715332, -0.18173255026340485, -0.26952415704727173, 0.5360965132713318, 0.848970353603363, -0.0038039139471948147, 1.220339298248291, -0.14530187845230103, -0.8845839500427246, 0.6996681690216064, -0.06484534591436386, -0.32693567872047424, 1.0474574565887451, -0.1784582883119583, -1.0882840156555176, -0.4245544373989105, 1.2849689722061157, 0.3601817190647125, 0.4013453722000122, 1.1876327991485596, 0.6346749663352966, -0.5117784738540649, -0.5360167026519775, -0.4728465676307678, 0.09931732714176178, 1.4596667289733887, 0.5766144394874573, -0.4587586224079132, -0.384315550327301, 0.6862569451332092, 0.072083979845047, 1.2924357652664185, -0.2075187712907791, -0.41904428601264954, 0.3265936076641083, -0.06466539949178696, 1.5568692684173584, -0.5518779754638672, -0.6316336393356323, 0.03416989743709564, 0.9378809928894043, 0.11207804828882217, -0.06841826438903809, -0.1509115844964981, -0.6048864722251892, 0.1462918370962143, -0.394160658121109, -0.2811185419559479, -0.35720258951187134, -0.3423667252063751, 1.1099777221679688, -1.383908987045288, 0.8753125071525574, -0.02667730487883091, 1.1645742654800415, 0.9111150503158569, -0.6066796779632568, 0.3049444556236267, -0.7822296023368835, 0.6304985880851746, 0.4095730185508728, 0.4084547162055969, -0.06499070674180984, 0.04010983183979988, 0.6854311227798462, 0.12730292975902557, -0.596508264541626, 0.09135010093450546, 0.4647388756275177, -0.4606020152568817, 1.1250779628753662, -0.12573300302028656, -0.9331926107406616, -0.7495956420898438, 0.4125092029571533, 0.266193687915802, -0.8778169751167297, 0.7460975050926208, -0.038427338004112244, -1.364904522895813, -0.4461105763912201, 0.7011762261390686, -0.8073267936706543, 0.4306614398956299, 0.15410646796226501, 0.3912052810192108, -0.02348635159432888, -0.09274344146251678, -0.2685233950614929, -0.6681782007217407, -0.6697277426719666, -0.5372729301452637, -0.35095104575157166, -1.1849024295806885, -0.010738356038928032, -0.4865763783454895, -0.933281421661377, 0.9559447169303894, -0.2558538615703583, -0.9669068455696106, 0.49561282992362976, 0.637479305267334, -0.16557426750659943, -1.2463090419769287, -0.7874814867973328, -0.8660669326782227, 1.358839511871338, -0.9507570266723633, 0.27850306034088135, -1.2904499769210815, 0.5231143236160278, 1.2159944772720337, -1.0591756105422974, -1.0788719654083252, 0.4363052248954773, 0.7772994041442871, -1.5077749490737915, 0.9088761806488037, -0.04777619242668152, -0.025122500956058502, -0.5457240343093872, -0.348238468170166, 0.5078303813934326, 0.5579641461372375, 0.06440474838018417, 0.32375016808509827, -0.7031842470169067, -0.4613845944404602, -1.0599490404129028, 0.0785151794552803, -0.011012737639248371, -0.8150377869606018, -0.94190514087677, 0.37282344698905945, 0.4287548363208771, -1.030875325202942, 0.26098012924194336, -0.4849129617214203, 0.08407298475503922, 0.3286360502243042, 1.4352211952209473, 0.4748488962650299, 1.3674280643463135, -0.6716287136077881, -0.18020260334014893, -0.6905484795570374, -0.47291114926338196, 0.7166922688484192, -0.2630554139614105, -0.2123170644044876, 0.9554830193519592, 0.8365892767906189, -0.10281655192375183, 0.4272936284542084, -0.5042575597763062, 0.15116439759731293, -0.6672375798225403, -0.10869467258453369, 0.19662165641784668, -0.16396157443523407, 1.4677873849868774, 1.0674570798873901, -0.8253848552703857, 0.4029124975204468, -0.19712385535240173, 0.6334056258201599, 0.19910836219787598, -0.5256562829017639, -0.6358465552330017, -0.4475783705711365, -0.18366000056266785, -0.15363645553588867, -0.17984862625598907, 0.14610424637794495, 0.8800390958786011, -0.7669824361801147, -1.187900424003601, 0.305793821811676, 0.7144328951835632, -0.5792109370231628, 0.9145345091819763, -1.0857049226760864, -1.5106840133666992, -0.4826112389564514, 0.3985803723335266, 0.6371607184410095, -0.009283759631216526, -0.1464795172214508, 0.6774094104766846, 0.3540806174278259, 0.08974789828062057, 0.3494521677494049, -0.47151440382003784, 0.908488392829895, -0.030885495245456696, 0.20102350413799286, -0.18973304331302643, 0.8640716671943665, -0.2784923315048218, -1.004568099975586, 0.06036906689405441, 0.5378854870796204, 1.4724674224853516, 0.9170824289321899, 1.4193065166473389, -0.8946982026100159, -0.31446072459220886, -0.38284754753112793, -0.2568015456199646, -0.9082004427909851, -0.7104752659797668, -0.5286293625831604, -0.9124972820281982, -0.908197283744812, -0.11601623892784119, -0.46688467264175415, 0.05391767993569374, 0.2672100365161896, 0.5949728488922119, 0.9925998449325562, -0.4499436914920807, -1.1634902954101562, -0.31390324234962463, -0.1833297312259674, 0.06694653630256653, 0.695288896560669, 1.580001950263977, -1.6683987379074097, -0.5820176005363464, -0.3641199767589569, -0.46353840827941895, 0.10853970795869827, 0.5146589875221252, 0.20310766994953156, -1.4516663551330566, -0.39459481835365295, -0.1835561841726303, 0.7486110329627991, 0.0636935830116272, -0.542256236076355, -0.5633163452148438, 0.49524563550949097, 0.7327383756637573, 0.31929221749305725, -0.20490780472755432, 0.11017931997776031, -1.1173344850540161, -0.5733712315559387, -0.43717020750045776, 0.3519302010536194, 0.3987792432308197, -1.11647367477417, -1.4071861505508423, -0.5339532494544983, -0.17357923090457916, -0.5038644671440125, 0.8688972592353821, 0.6962172985076904, 1.1250113248825073, 0.226648211479187, -0.15375147759914398, 1.1463202238082886, -0.01047354843467474, 0.5249196290969849, -1.2247469425201416, 0.7677378058433533, 0.6043104529380798, 1.0363858938217163, 0.3993384540081024, 0.020144281908869743, 0.49748942255973816, -1.437050223350525, -0.17807060480117798, 0.14266976714134216, 0.17362825572490692, -0.23553146421909332, -0.3699333965778351, 0.04631703719496727, -0.4633767008781433, 0.059219732880592346, -0.7436240911483765, -0.21119625866413116, 0.2162407636642456, -0.27586543560028076, -0.2717221677303314, 0.8611515760421753, 0.8876096606254578, -0.4736986756324768, -0.06318692117929459, -0.46106693148612976, 0.7716407179832458, -0.32180505990982056, 0.48522838950157166, -0.19077667593955994, 0.6578643321990967, 1.002501368522644, -1.089505910873413, -0.04324251413345337, -0.8025928735733032, 0.4703330099582672, 1.2263668775558472, -1.0312542915344238, -0.5204110145568848, -0.20181585848331451, 0.4450434148311615, 0.4827805459499359, 0.8676442503929138, 0.47957584261894226, 0.3323642313480377, -0.24315474927425385, 0.1596670299768448, 0.6022920608520508, 1.2828401327133179, -0.03718459606170654, -0.20199377834796906, 0.9047706127166748, 0.2998887598514557, 0.45954716205596924, -0.9488168954849243, 0.3656318783760071, 0.43342268466949463, -0.1381024718284607, -0.42789238691329956, 0.4490148723125458, -0.5285162925720215, 1.5556528568267822, 0.7657560110092163, 0.4234427511692047, 0.41909313201904297, 0.20640721917152405, -1.3225599527359009, 0.19521591067314148, 0.15337920188903809, -0.9568545818328857, -0.27818024158477783, 0.5256687998771667, -0.061260223388671875, 0.9146307706832886, -0.07626573741436005, -0.050591617822647095, 0.5319356322288513, 0.4440271854400635, 0.28739896416664124, -0.16342733800411224, 0.5774658918380737, 1.100391149520874, 0.6912356615066528, 0.9380454421043396, -0.11531383544206619, -0.3123528063297272, 0.7874038219451904, -0.6932175159454346, 0.660686194896698, 1.5411279201507568, 0.5607628226280212, 1.1826748847961426, -1.4930446147918701, -0.2531262934207916, 0.8194770812988281, 0.03227562457323074, 0.5662840604782104, 0.4735746383666992, -0.06488804519176483, -0.5434108972549438, 0.18240809440612793, 0.47718414664268494, -0.2990444600582123, 0.3901427984237671, -0.7520374655723572, 0.5622230768203735, 0.7794368863105774, -0.8863511681556702, 0.21792614459991455, -0.8173890709877014, -0.07429418712854385, -0.2869378328323364, -0.3988064229488373, 0.7659252285957336, 0.48193052411079407, 0.7988928556442261, -0.24629609286785126, -0.5224274396896362, -0.37795430421829224, 0.619792640209198, -0.9339964389801025, 0.15820379555225372, -0.5953646302223206, 0.028903961181640625, -0.8104297518730164, -0.7556929588317871, -0.31166210770606995, -0.24601681530475616, -0.5708314776420593, -0.5072484612464905, -0.7356445789337158, -0.6770179271697998, 0.2947961091995239, 0.5484132766723633, 0.977175235748291, -0.18004551529884338, 0.30466923117637634, 0.12034823000431061, 0.06912726163864136, -0.6509932279586792, 0.09818707406520844, 0.5301637649536133, 0.12069970369338989, -0.11277875304222107, -0.4153652489185333, -1.1336637735366821, 0.5289737582206726, 0.2129317820072174, -0.5088916420936584, -0.15672484040260315, 0.49203798174858093, 1.3356165885925293, -0.759626030921936, -0.9624446630477905, 0.7784842252731323, -0.480663925409317, 1.0075949430465698, 0.7395954728126526, -0.7347813248634338, -1.1028165817260742, -0.09094905853271484, -1.8564095497131348, 1.456937313079834, -0.09908074140548706, -0.2713819444179535, 0.8427351117134094, 0.6016095876693726, 0.7032598257064819, 0.8354014754295349, -0.38819974660873413, 0.5621472597122192, 0.34970852732658386, 0.025585196912288666, -0.5097354054450989, 0.09362950176000595, 0.6440622210502625, -0.14207270741462708, -1.2794946432113647, 0.566590428352356, 0.316489040851593, -0.08435263484716415, -0.7744937539100647, 0.5871180295944214, -0.12070365250110626, 0.7111793756484985, 0.1633448749780655, -0.8712503910064697, 0.056861381977796555, -0.9120305180549622, 0.3193000555038452, 0.4736447036266327, 0.7564107775688171, 0.7099441885948181, -0.5822069048881531, 0.698885977268219, -1.010226845741272, 0.39473122358322144, -0.0016981243388727307, -0.2913621664047241, 0.7715585827827454, 0.5517650842666626, 0.4370814859867096, 1.332150936126709, 0.07221279293298721, -0.4659024178981781, -0.6163229942321777, -0.7140617966651917, 1.0681054592132568, -1.0170758962631226, -0.5049782395362854, -0.8769936561584473, -0.6374093890190125, -0.7218499183654785, 0.917147696018219, 0.5517371892929077, -0.6631346344947815, -1.267857551574707, -0.3425533175468445, 0.12141342461109161, 0.950264036655426, -0.5567725300788879, 0.8366947770118713, 0.12273894250392914, -0.8908316493034363, -0.16101160645484924, -0.2906864881515503, -1.5802851915359497, -0.14639145135879517, -1.0012612342834473, 0.3421086370944977, 0.1139807179570198, -0.2504434585571289, 0.4223300814628601, 1.2730644941329956, -1.6812630891799927, -1.347800850868225, -1.6752856969833374, -0.567408561706543, 1.0192270278930664, 0.6971792578697205, -1.632062315940857, 0.841582715511322, -0.5357885360717773, -0.4672086238861084, -0.20852907001972198, 0.28484615683555603, -0.6021811366081238, -0.0018458687700331211, -0.829626739025116, -0.3132413327693939, 0.24603864550590515, 1.37187659740448, 0.4429810345172882, 0.9957293272018433, 0.3057388663291931, 1.471909523010254, -0.5889869332313538, -0.8430643081665039, 0.1998884379863739, 0.9980692267417908, -0.8992065191268921, -0.5488516092300415, 0.08485529571771622, -0.8438924551010132, -0.8511198163032532, 0.28086137771606445, 0.9791877865791321, -0.6638563871383667, -0.04422765597701073, 0.03551115840673447, -0.38340049982070923, -0.8345752954483032, 0.7914388179779053, 0.18738240003585815, -0.6855194568634033, -0.15137559175491333, -0.670642614364624, 0.04141809046268463, -1.380714774131775, 0.35471034049987793, 0.7498022317886353, 0.6724075078964233, -0.5130926370620728, 0.07351226359605789, 0.5670457482337952, 0.7058098912239075, -0.7040214538574219, 1.4288134574890137, 0.0548291951417923, -0.3404596149921417, -0.7080442905426025, 0.11409526318311691, -0.4389934837818146, 0.5405874252319336, -0.1624995470046997, -0.03345131129026413, -0.8349950909614563, 0.13652357459068298, -0.10329920053482056, -0.2126755714416504, -0.20788313448429108, 0.8552422523498535, 0.1371617466211319, 0.48389753699302673, 1.0801626443862915, -1.1649508476257324, -0.34143438935279846, 0.8863071203231812, 0.21018818020820618, -0.8746143579483032, -0.018910937011241913, 0.009101109579205513, -0.2699747681617737, 0.24670051038265228, 0.676589846611023, 0.752158522605896, -0.9664197564125061, 0.5111107230186462, 0.045631490647792816, -0.33926916122436523, -0.4647862911224365, -0.3331264555454254, -1.6079821586608887, 0.4899652898311615, -0.886323869228363, -0.721595823764801, 0.047515083104372025, -0.7974262237548828, -0.9885837435722351, -0.3075636327266693, 0.5809745192527771, -0.854987621307373, -0.18993224203586578, 0.6564748287200928, -0.1376427710056305, -0.13943630456924438, 1.5774216651916504, -0.7734020948410034, 1.4586082696914673, -0.17605653405189514, -0.385934054851532, -0.8404979109764099, -0.12353957444429398, 0.21882788836956024, 0.344255268573761, -0.3694298267364502, -0.702416181564331, 0.5322005152702332, -0.11107078194618225, -0.4619951546192169, 1.0780915021896362, 0.020418070256710052, -0.08713844418525696, -0.5598117709159851, -0.7721247673034668, 0.7974207401275635, 0.22914113104343414, 0.68229740858078, -0.6601110100746155, -0.7084402441978455, -0.8622221946716309, 0.4183897376060486, -0.3614260256290436, 0.044828277081251144, -0.18720440566539764, 0.6291289329528809, 0.062272071838378906, -1.3964346647262573, -0.4646827280521393, -1.0054221153259277, 1.0733577013015747, 0.6674783825874329, -0.26267537474632263, -0.4081474840641022, -0.1985797882080078, -0.35375645756721497, -0.802889347076416, -0.7496685981750488, 0.18969722092151642, 0.02652108296751976, -0.6713456511497498, -0.5218053460121155, -0.1528794765472412, -1.163346767425537, 0.005178377963602543, 0.39195895195007324, 0.38213202357292175, 0.6171250939369202, -0.019568689167499542, -1.2962037324905396, 0.681952714920044, 0.6704469919204712, 0.6157775521278381, -0.021733025088906288, 1.0631495714187622, 0.7127867341041565, 0.14095087349414825, -0.5757497549057007, 0.027798738330602646, 0.6146173477172852, -0.9734360575675964, -0.3117290437221527, -1.056148648262024, -0.4082106351852417, 0.35677003860473633], [-0.3333817422389984, 2.103209972381592, -2.9494564533233643, -0.021117843687534332, 0.5160644054412842, -0.05034325271844864, 0.9849159121513367, 0.7002232670783997, 0.026354027912020683, -1.2057615518569946, -0.513616681098938, 0.30583107471466064, 1.0618922710418701, 0.9220775365829468, 0.021253859624266624, 0.6985846161842346, 0.3076416850090027, -0.6745290756225586, -0.46694275736808777, 0.8372313976287842, -0.8392040729522705, -1.0957049131393433, -0.04917808994650841, 0.6650558114051819, -0.04876670613884926, 0.4848257899284363, -1.901146411895752, -0.30804112553596497, -1.109379529953003, -1.009556770324707, 0.6221706867218018, -0.09948398917913437, 0.22464071214199066, 0.11113664507865906, -1.398446798324585, -0.3665301203727722, 0.6132457256317139, -0.0735919252038002, -0.29457616806030273, -1.074794054031372, 1.865761637687683, 0.12152011692523956, -0.12594850361347198, -1.3596880435943604, 0.16663670539855957, -0.16917185485363007, 1.5672798156738281, -0.8740314841270447, 0.35966047644615173, -0.8999584317207336, 0.09373650699853897, -0.09258558601140976, -0.005714752245694399, 1.4540544748306274, 0.6983276605606079, -1.0493659973144531, -0.05538693442940712, 0.6038822531700134, 0.3235034644603729, 1.3756256103515625, 1.0509467124938965, 0.07716149836778641, 0.042693138122558594, 1.2726813554763794, 0.5531972646713257, 0.2574901282787323, 0.4484454393386841, 0.25421464443206787, 0.25209301710128784, -0.3708368241786957, 0.17292988300323486, -0.3495507538318634, 0.1489434391260147, 0.2145804464817047, -0.3821698725223541, 0.3947471082210541, 0.08526010066270828, 0.24988482892513275, -0.7922075986862183, 0.28053995966911316, -0.3662258982658386, 0.10045907646417618, 0.7725191116333008, -0.11407341808080673, -0.8859946727752686, -0.05276751518249512, 0.17648136615753174, -0.43506866693496704, -0.01304258219897747, 1.425679087638855, 0.4068572223186493, 0.4382907748222351, 0.6151320934295654, -0.06784304976463318, -0.6735398769378662, -0.14141745865345, 0.25042271614074707, -1.0699728727340698, -0.49444857239723206, -1.055752158164978, -0.1969776153564453, -0.9223071336746216, 0.09518884867429733, 0.7115602493286133, 0.5842055082321167, 1.1859626770019531, -0.028814582154154778, -0.7037524580955505, 0.742845356464386, 0.05985981971025467, -0.43034327030181885, 1.0918666124343872, -1.2537248134613037, -1.3967812061309814, -0.10351572930812836, 1.2326685190200806, 0.6794357895851135, 0.0008656072895973921, 1.4131138324737549, 0.682589054107666, -0.13334645330905914, -0.5573073625564575, -0.3325953185558319, 0.2564535140991211, 0.81589275598526, 0.6967548131942749, -0.515302836894989, -0.646222710609436, 0.6162882447242737, -0.3276018798351288, 0.7961407899856567, -0.5586937069892883, -0.5806314945220947, 0.6887429356575012, 0.22257646918296814, 1.2862837314605713, -1.0840740203857422, -0.8218614459037781, 0.3927335739135742, 0.5925766825675964, 0.5028945803642273, -0.431294322013855, 0.24494969844818115, -0.8760724663734436, -0.1134270578622818, -0.3614415228366852, 0.1590099185705185, -0.7132853269577026, -0.5792727470397949, 0.8156604170799255, -1.2579312324523926, 0.7549759149551392, -0.2987615764141083, 1.0873312950134277, 0.6160397529602051, -0.8091492652893066, 0.5138869881629944, -0.4269634187221527, 0.7317667603492737, 0.677765965461731, 1.087843894958496, -0.3431764543056488, -0.011056162416934967, 0.21999645233154297, 0.48641446232795715, -0.40449953079223633, 0.8288934230804443, 0.5211085677146912, -0.5348191261291504, 1.058190107345581, -0.28238099813461304, -1.054382085800171, -0.12896369397640228, -0.1902257800102234, -0.052768006920814514, -0.5686812996864319, 1.0670684576034546, -0.489950031042099, -0.6681315302848816, -0.7597298622131348, 1.0188963413238525, -0.7864527702331543, 0.48264625668525696, -0.37996482849121094, 0.39278218150138855, -0.018320506438612938, 0.1089094951748848, -0.11093077063560486, 0.10888367146253586, -1.3838106393814087, -1.0048500299453735, -0.42763882875442505, -0.7968536019325256, 0.4969349205493927, -0.03623959422111511, -0.5964364409446716, 0.7596633434295654, -0.6215893626213074, -0.5095095038414001, 0.14543770253658295, 0.3584194481372833, 0.5198877453804016, -0.9949861168861389, -0.4562200605869293, 0.014566882513463497, 1.0385375022888184, -0.03858640044927597, 0.21495267748832703, -0.3625386357307434, 0.02903609909117222, 0.7948592305183411, -0.6460610628128052, -1.258151888847351, 0.9128220677375793, 0.6629347801208496, -0.8807047009468079, 0.3270077109336853, -0.2050316482782364, -0.2787003219127655, 0.0912998765707016, 0.3057880103588104, 0.31811439990997314, -0.1090056374669075, 0.07660552859306335, 0.3202837407588959, -0.3835498094558716, -0.6199778318405151, -1.125393271446228, -0.8071061372756958, 0.23225292563438416, -0.9077908992767334, -0.5150518417358398, 0.8032588958740234, 0.4275592863559723, -0.7958919405937195, 0.5315567851066589, -0.24343571066856384, 0.1926351636648178, 0.4858405292034149, 0.6740935444831848, 0.14347058534622192, 0.2059038132429123, -0.4953066110610962, -0.3465781807899475, -0.7573996186256409, 0.17949725687503815, 1.0536333322525024, -0.34661877155303955, -0.10923629999160767, 1.384620189666748, 1.2836294174194336, -0.2641596794128418, 0.9478574991226196, 0.11719494313001633, -0.35122695565223694, -0.5064707398414612, -0.2683785855770111, 0.29478827118873596, -0.8619769215583801, 1.5083684921264648, 0.9879240989685059, -1.3863449096679688, 0.10631993412971497, -0.46847689151763916, 0.32134923338890076, -0.08662953972816467, -0.9408319592475891, -0.9555975198745728, -0.27338317036628723, -0.5129268765449524, 0.4768155813217163, 0.08289309591054916, 0.24347195029258728, 0.7667629718780518, -0.7652373313903809, -0.6189692616462708, -0.2873918414115906, 1.0662745237350464, 0.27986451983451843, 1.3293278217315674, -0.5424743294715881, -1.4213474988937378, -0.7864219546318054, 0.4778513014316559, 0.2932700216770172, -0.21294768154621124, -0.4476207196712494, 1.3700276613235474, 0.47465837001800537, 0.19664716720581055, 0.8012999892234802, -0.1882714331150055, 0.5738274455070496, 0.02031729742884636, 0.2783392667770386, 0.057858940213918686, 0.9223974347114563, -0.9600557088851929, -1.0482457876205444, -0.06985937803983688, 0.8515005707740784, 1.5560812950134277, 0.7813925743103027, 1.0261399745941162, -0.5522969961166382, 0.011251645162701607, -0.32076871395111084, -0.441463828086853, -0.6157797574996948, -0.40473347902297974, -0.9383973479270935, -0.9370160698890686, -0.09252526611089706, -0.6896626353263855, -0.2968602478504181, 0.3835369646549225, 0.8174984455108643, 1.2112854719161987, 0.5908345580101013, -1.0132040977478027, -0.6767479181289673, 0.0015204104129225016, -0.40330472588539124, -0.6888684630393982, 0.5305994749069214, 1.4673892259597778, -1.372107744216919, -0.34524810314178467, -0.19354736804962158, -0.32144078612327576, 0.4210399091243744, 0.16527041792869568, -0.38954034447669983, -1.1402432918548584, -0.7985610961914062, 0.4460267722606659, 1.1266779899597168, -0.004623361397534609, -0.5510634183883667, -0.1838451325893402, 0.06260953843593597, 0.7401546835899353, 0.30222567915916443, -0.721524178981781, 0.5372949838638306, -0.7169502973556519, -0.07978656888008118, -0.523772120475769, 0.6200835704803467, 0.7711297273635864, -0.7217660546302795, -1.00679612159729, -0.6406252384185791, -0.28673607110977173, -0.7979729771614075, 0.15921121835708618, 0.6702438592910767, 0.5241522192955017, -0.08967867493629456, 0.24762757122516632, 1.866081714630127, -0.44565093517303467, -0.26937779784202576, -0.7609536647796631, 0.4997059404850006, 0.8289753198623657, 1.437267780303955, 0.30381351709365845, 0.8452126383781433, 0.7279502153396606, -0.8922994136810303, -0.04516516998410225, 0.31393587589263916, 0.874332070350647, 0.059879470616579056, -0.8786262273788452, -0.7439472675323486, -0.5229333639144897, 0.37626001238822937, -0.7564332485198975, -0.3372480571269989, 0.392077773809433, -0.06030898541212082, -0.4801512062549591, 0.5839217305183411, 1.1279224157333374, -0.4470803439617157, -0.6342586278915405, 0.18435414135456085, 0.7081269025802612, -0.8818160891532898, 0.22597143054008484, -0.37942782044410706, 0.3901781737804413, 0.42123809456825256, -0.9139155745506287, -0.4176810085773468, -0.1751011461019516, 0.30414092540740967, 2.0704550743103027, -1.476475477218628, -0.576099693775177, -0.3458932936191559, 0.250036358833313, 0.22203491628170013, -0.0040407306514680386, 0.08505389839410782, 0.785780131816864, -0.7788287997245789, 0.025282101705670357, 0.8770170211791992, 1.4731332063674927, 0.19287610054016113, -0.33989444375038147, -0.35710206627845764, -0.5158547163009644, 0.32639026641845703, -1.1711329221725464, -0.2803231477737427, 0.319879949092865, -0.5205714106559753, -0.07098738104104996, 0.22019481658935547, 0.32159537076950073, 2.349123477935791, 0.3761129677295685, 0.6977013349533081, 0.25718894600868225, 0.11421716213226318, -0.509580135345459, -0.4374079406261444, 0.7299359440803528, -0.6294682621955872, -0.8549957275390625, 0.8919548988342285, 0.12172851711511612, 0.30596020817756653, 0.08550797402858734, -0.1109049841761589, 0.4190385341644287, 0.13488756120204926, -0.5062257051467896, -0.19220004975795746, 0.3137836754322052, 1.345352053642273, 0.8916504383087158, 1.1094160079956055, -0.29973524808883667, -0.3592393398284912, 1.397167444229126, -0.06767042726278305, 0.41210031509399414, 0.6970473527908325, 0.24286052584648132, 1.1132159233093262, -1.1798603534698486, -1.0620383024215698, 0.39834511280059814, -0.43190228939056396, 0.48393309116363525, -0.33227449655532837, 0.3298039436340332, -0.9969528317451477, -0.6632222533226013, 0.35487785935401917, -0.16984207928180695, 1.1777777671813965, -0.8594129085540771, 0.6038373112678528, 0.6358820199966431, -0.3467293679714203, -0.5371177792549133, -0.4395318031311035, -0.07944715023040771, -0.5546438097953796, 0.125092014670372, 0.7434201240539551, 0.8907670974731445, 0.4345235228538513, 0.44856491684913635, 0.11443313211202621, -0.5442728400230408, 0.2702878415584564, -0.8684035539627075, 0.28184637427330017, -0.5947933197021484, -0.02661316469311714, -0.6014984250068665, -0.15017588436603546, -0.41580599546432495, -0.35655030608177185, -1.1181670427322388, -1.4229806661605835, -0.4957990348339081, -0.6794487237930298, 0.23472648859024048, 0.7220850586891174, 0.7644047737121582, 0.6303235292434692, 0.1297706514596939, 0.24843813478946686, 1.027036428451538, -0.5773846507072449, 0.15196800231933594, 0.6040225625038147, 0.22963492572307587, 0.26427608728408813, -0.834488034248352, -0.19865375757217407, 0.6764989495277405, 0.8147619962692261, -0.24558697640895844, 0.1384512037038803, 0.09365427494049072, 1.6254075765609741, -0.17638397216796875, -0.8097516894340515, 0.4600379765033722, -0.6198909878730774, 1.311481237411499, 0.9303457736968994, -1.0375144481658936, -0.325263112783432, -0.3370975852012634, -1.5981987714767456, 1.4379007816314697, -0.6516959071159363, -0.5653464198112488, 1.26385498046875, 0.8572698831558228, -0.16235119104385376, 0.9446565508842468, -0.2552856504917145, 0.4129583537578583, 0.8359803557395935, 0.27769970893859863, -0.24870924651622772, 0.8740788102149963, 1.183412790298462, -0.08517273515462875, -1.1728225946426392, 1.21575129032135, -0.33967798948287964, -0.29802024364471436, -0.5962801575660706, 0.5281139016151428, -0.01354222185909748, -0.1079094409942627, 0.0896938368678093, -0.14950303733348846, 0.4585615396499634, -0.9887771606445312, 0.6109732389450073, 0.023155227303504944, 0.5968632102012634, 0.18169397115707397, -0.7266953587532043, -0.2571060061454773, -0.5823966264724731, 0.16632840037345886, -0.1798209398984909, -0.6266939640045166, 1.251947045326233, 0.8190943598747253, 0.0816797986626625, 0.25423356890678406, 0.3334769308567047, -0.7710207104682922, -0.9546412825584412, -0.7216942310333252, 1.019227385520935, -1.6559475660324097, 0.27470940351486206, -1.4513356685638428, -0.6569252014160156, -0.7640001177787781, 0.3779688775539398, 0.6749069094657898, -1.2048810720443726, -1.212119698524475, 0.47246018052101135, 0.38559290766716003, 1.0020743608474731, -0.3810744881629944, 0.4915791451931, -0.3041808307170868, -1.0862380266189575, -0.137932687997818, 0.0035273078829050064, -1.490676760673523, -0.2449476420879364, -1.2495671510696411, 0.7360112071037292, 0.25026974081993103, -0.23083728551864624, 0.018822267651557922, 1.6969280242919922, -1.735425591468811, -1.3750823736190796, -0.6517676711082458, -0.217288538813591, 0.8413648009300232, 0.8746828436851501, -0.9601575136184692, 0.9698973894119263, -0.19999155402183533, -0.5566118359565735, -0.07050013542175293, 0.23494765162467957, -0.6854153871536255, 0.05569399520754814, -0.6570578217506409, 0.21998398005962372, 0.2389293611049652, 1.0330294370651245, 0.6895469427108765, 1.6095547676086426, 0.0550815649330616, 1.6699740886688232, -0.41154810786247253, -0.8097445368766785, 0.1496949940919876, 0.42275863885879517, -0.8911757469177246, -0.4374990165233612, 0.17855900526046753, -0.8109930157661438, -0.9336737394332886, 0.19015415012836456, 1.2196972370147705, -0.6439079642295837, 0.3848397433757782, -0.23791378736495972, 0.017676951363682747, -0.5751165747642517, 0.8835467100143433, 0.46047961711883545, -0.9591944217681885, -0.7137802839279175, -0.5162203311920166, -0.1700793206691742, -0.8343409299850464, -0.845132052898407, 0.6573591232299805, 0.9149159789085388, -0.5407382249832153, -0.31237128376960754, 0.03042716160416603, 0.37922343611717224, -0.7890436053276062, 1.2042063474655151, 0.21067039668560028, -0.44913583993911743, 0.06938014179468155, 0.11798453330993652, -0.3498799204826355, 0.13073498010635376, -0.22238832712173462, -0.11240483075380325, -0.37882155179977417, 0.02911956235766411, -0.43026500940322876, 0.36598607897758484, -0.9078199863433838, 0.8124042749404907, 0.5571601986885071, 0.7553263902664185, 1.9070005416870117, -1.0929585695266724, -0.3414429724216461, 1.1793758869171143, 0.1878984123468399, -0.9448472857475281, 0.355676531791687, -0.13029950857162476, -0.39484450221061707, -0.23339641094207764, 0.6629209518432617, 0.5547215342521667, -0.9504920840263367, 0.8660890460014343, 0.4775554835796356, -0.09451426565647125, 0.12943261861801147, -0.3094611167907715, -1.566200613975525, -0.24025312066078186, -0.5308508276939392, 0.39489907026290894, 0.7714418172836304, -0.6929802298545837, -0.5737292170524597, -0.3341865837574005, 0.42523133754730225, -0.1074763610959053, -0.6842605471611023, 0.43086251616477966, -0.23465099930763245, -0.07183325290679932, 0.9610359072685242, -0.8310986757278442, 1.5429065227508545, 0.07046139240264893, -0.39071735739707947, -0.2761992812156677, 0.19174210727214813, -0.012412150390446186, 0.26033225655555725, -0.459432452917099, -0.8482343554496765, 0.1563519686460495, -0.08769148588180542, -0.13599637150764465, 0.9256122708320618, 0.41221684217453003, 0.5424110293388367, -0.8913283348083496, -1.0417060852050781, 0.5508396029472351, 0.484668493270874, 0.0855618566274643, -0.56707364320755, -1.3193652629852295, -0.38252609968185425, 0.3944407105445862, -0.3660741150379181, 0.38005346059799194, -0.1532474309206009, 0.38713735342025757, 0.3466706871986389, -0.9148010611534119, -0.738649845123291, -1.0019527673721313, 1.1738035678863525, -0.0812363550066948, 0.1900179088115692, 0.16440488398075104, -0.6206585764884949, 0.1584714949131012, -0.5429006218910217, -0.32137662172317505, 0.36126652359962463, 0.09641185402870178, 0.2095855325460434, -1.022207260131836, -0.4016428589820862, -0.8966625928878784, -0.4731300175189972, 0.3630687892436981, 0.803284764289856, 0.7033842206001282, 0.7164287567138672, -1.478242039680481, 0.7658252716064453, 0.45121029019355774, -0.19726473093032837, 0.37131577730178833, 1.574152946472168, 0.9731098413467407, -0.4271085560321808, -0.4074433743953705, -0.08004465699195862, 0.9200097918510437, -0.7086910009384155, -0.29724109172821045, -1.3435908555984497, -0.6447597146034241, 0.11731468141078949], [-1.1223244667053223, 2.0527091026306152, -2.743731737136841, 0.36985883116722107, 1.0499197244644165, -0.08626023679971695, 1.3337534666061401, 0.004646657034754753, -0.17815673351287842, -0.4696984589099884, -0.6569536924362183, 0.5093085765838623, 0.7135547995567322, 0.8873103260993958, 0.327494353055954, 0.20099209249019623, 0.60172438621521, -0.40408337116241455, 0.5677622556686401, 0.8767159581184387, -0.5377410650253296, -0.9817512631416321, -0.40925782918930054, 0.31597188115119934, 0.4474058449268341, 0.1296733170747757, -1.3194881677627563, 0.4099811315536499, -1.150691270828247, -0.9264757633209229, 1.5373914241790771, -0.49042943120002747, -0.0008513191714882851, -0.10818549245595932, -1.194236159324646, 0.05474048852920532, 0.9524753093719482, 0.1267307698726654, -0.5650658011436462, -0.4168292284011841, 2.1412582397460938, 0.10672629624605179, -0.2454671859741211, -1.4871350526809692, 0.19450072944164276, -0.21602506935596466, 0.39344504475593567, -0.4638795852661133, 0.24327680468559265, -1.065610647201538, 0.2967032790184021, 0.6783242225646973, -0.02243027836084366, 1.2450071573257446, 0.5772045850753784, -0.694485604763031, 0.5656039714813232, 0.9495587348937988, -0.6427892446517944, 0.711164116859436, 0.7264355421066284, -0.521981418132782, -0.22973255813121796, 0.150911346077919, 0.5347968339920044, -0.2797575294971466, 1.3220244646072388, 0.555325984954834, 0.22262831032276154, 0.07223423570394516, 0.42706021666526794, 0.6475703120231628, -0.18362414836883545, 0.051297228783369064, -0.6383527517318726, 0.39079606533050537, 0.42112430930137634, 0.4598677158355713, -0.39153429865837097, 0.5947816967964172, -0.0830007940530777, 0.39001917839050293, 0.31878504157066345, 0.2669863700866699, 0.3331625759601593, -0.03090146742761135, -0.3241620659828186, -0.03260854259133339, 0.05219052731990814, 2.2010691165924072, 0.16059421002864838, 0.6178165674209595, 0.8865882158279419, 0.2779536545276642, 0.10889291018247604, -0.46758654713630676, -0.09578245878219604, -0.8855584859848022, -0.19321879744529724, -0.970925509929657, 0.15160007774829865, -0.9940407276153564, -0.3452524244785309, 0.7895785570144653, 0.5434407591819763, 1.9043397903442383, -0.7486463189125061, -0.6366764903068542, 0.048631858080625534, -0.3001711666584015, -0.6289950013160706, 0.6068089008331299, -0.7806087136268616, -0.9983437061309814, -0.042609803378582, 0.669158935546875, 0.8014394640922546, 0.42340371012687683, 0.7734048366546631, 0.324747771024704, -0.40434256196022034, -0.37557485699653625, -0.20887921750545502, 0.7241397500038147, 0.7833939790725708, 0.44759801030158997, -0.5890282988548279, -0.45235586166381836, 0.2864021062850952, 0.10686234384775162, 0.09786567836999893, -0.8492887616157532, 0.1466531902551651, 0.5191391110420227, -0.5558186769485474, 0.7000795006752014, -0.6930206418037415, -0.9137210249900818, 0.23681247234344482, -0.001766386441886425, 0.03983931615948677, -0.4005641043186188, -0.22965486347675323, -0.783683717250824, 0.5244379639625549, -0.7055230140686035, 0.6213490962982178, -0.27491796016693115, -0.6418287754058838, 0.0633029192686081, -1.2677416801452637, 0.43694421648979187, -0.19462457299232483, 1.0776304006576538, 0.1337091475725174, -0.2393355816602707, 0.6220694184303284, -0.21812692284584045, 0.4004116356372833, 1.2253477573394775, 0.4805130660533905, 0.27580803632736206, -0.9943655729293823, 0.9840435981750488, 0.8610774278640747, -0.8177493810653687, 0.6091309785842896, -0.14382928609848022, -0.5002736449241638, 1.0344175100326538, -0.10032514482736588, -0.6511730551719666, -0.6313984990119934, 0.35504329204559326, 0.09871882200241089, -0.6379605531692505, 0.9510418176651001, -0.3230036199092865, -1.0775243043899536, -1.361304521560669, 0.6549990773200989, -0.32763123512268066, 0.41504254937171936, -0.09609697014093399, 0.5776026248931885, -0.09933321923017502, 0.008499384857714176, -0.3453013300895691, 0.02789345383644104, -1.0753071308135986, -1.2716758251190186, -0.21863222122192383, -1.2097609043121338, -0.05879531428217888, -0.16680234670639038, -0.48218855261802673, 1.0998634099960327, -0.8703579902648926, -0.5999422669410706, -0.046353779733181, 0.3115127980709076, -0.6301231384277344, -1.6377779245376587, -0.12848612666130066, -0.3645946979522705, 1.0923283100128174, -0.3471936881542206, 0.6721792221069336, -0.8503998517990112, 0.31843042373657227, 0.9352619051933289, -0.15193867683410645, -1.3593848943710327, 0.43262919783592224, 0.10171741247177124, -1.517765760421753, 0.7811056971549988, -0.2656956911087036, 0.41290488839149475, 0.02067137323319912, -0.25323694944381714, 1.2504440546035767, 0.13128261268138885, 0.04327038303017616, -0.03746197745203972, -0.9185547232627869, -0.3033863604068756, -0.8861346244812012, -1.3850371837615967, 0.6476454138755798, -1.0837270021438599, -0.619778573513031, 0.40639281272888184, 0.7430161237716675, -1.487457513809204, 0.9100339412689209, -0.29262441396713257, 0.4343615472316742, 0.40698063373565674, 0.7036444544792175, 0.3022400736808777, 0.34085527062416077, -0.7983682751655579, -0.047458499670028687, -0.9784818291664124, -0.17326508462429047, 0.44733691215515137, -0.30591288208961487, 0.38322335481643677, 1.2013684511184692, 1.173335075378418, -0.282943993806839, 0.2934410870075226, -0.34898078441619873, 0.24081259965896606, -0.9278045892715454, -0.14146055281162262, 0.7369027137756348, -0.4633234143257141, 1.108932375907898, 0.6939570903778076, -1.5332621335983276, -0.2473771870136261, -0.29369476437568665, 0.1464574784040451, -0.6671988368034363, -1.0854963064193726, -0.8609445095062256, 0.02606184408068657, -0.21699319779872894, -0.09502827376127243, -0.031069165095686913, -0.586892306804657, 0.8831437826156616, -0.1439722329378128, 0.0659366324543953, -0.15105952322483063, 0.7424085736274719, 0.09931057691574097, 0.42818769812583923, -0.31882232427597046, -1.191907525062561, -0.5014002323150635, 0.535689115524292, 0.3612799048423767, 0.4011869430541992, 0.9769704937934875, 0.8364726305007935, 0.49308252334594727, 0.3575921952724457, 0.6094344854354858, 0.2945882976055145, 0.4304214417934418, 0.4335755705833435, 0.14373183250427246, 0.405476450920105, 0.9670354723930359, -1.6462633609771729, -0.7907525897026062, -0.02922859974205494, 0.396087110042572, 1.3628603219985962, 0.9813603758811951, 1.435225009918213, -0.4359135031700134, -0.3680749833583832, -0.3446700870990753, -0.03785134479403496, -0.03786521404981613, -0.1889292597770691, -0.8010494112968445, -0.7907391786575317, -0.6313411593437195, -0.8284956812858582, -0.25604310631752014, 0.31464529037475586, -0.2691165804862976, 1.1274641752243042, 0.5507224202156067, -0.6573765277862549, -0.6527105569839478, -0.5055278539657593, -0.19892868399620056, -0.40832749009132385, 0.9843679070472717, 1.4488500356674194, -1.6783123016357422, -0.12898977100849152, 0.20386242866516113, 0.20785854756832123, 0.311989963054657, 0.1334272027015686, 0.07616059482097626, -1.0614498853683472, -0.4060472249984741, -0.27267584204673767, 0.9224035739898682, 0.08727280795574188, -0.43874216079711914, -0.13066880404949188, 0.2514767646789551, 1.0216773748397827, 0.10707569122314453, -0.6083377003669739, 0.46001237630844116, -0.8329702019691467, -0.3781651556491852, -0.2061149626970291, 0.049301665276288986, 0.8619210124015808, -0.609585165977478, -0.7779896855354309, -0.38561707735061646, -0.38082563877105713, -0.2376541644334793, 0.9064707159996033, 0.46353623270988464, 0.4687953591346741, 0.042474955320358276, -0.40332847833633423, 1.4726125001907349, -0.16157017648220062, 0.522704005241394, -1.3348532915115356, 1.034018874168396, 0.7478360533714294, 1.2878763675689697, 0.8519868850708008, 0.22209139168262482, 0.6111435294151306, -0.5496874451637268, -0.4574393928050995, 0.19010122120380402, 0.5625687837600708, 0.6127631664276123, -0.2339356541633606, -0.2143539935350418, -0.110505111515522, -0.0033862562850117683, -0.5409835577011108, 0.21332179009914398, 0.5464561581611633, -0.446507066488266, -0.7429712414741516, 1.205114722251892, 0.669938862323761, -0.23119010031223297, -0.40227583050727844, -0.6027898192405701, 0.5278797149658203, -0.8620632886886597, 0.21641959249973297, -0.08158961683511734, -0.07995135337114334, 0.06805511564016342, -0.6321752667427063, 0.04902788996696472, -0.3789632022380829, 0.1616574376821518, 1.140708088874817, -1.2638089656829834, -0.15379278361797333, -0.5966828465461731, 0.023084213957190514, 0.9288991093635559, 0.17689283192157745, 0.18806637823581696, 0.10559029132127762, 0.11389192193746567, 0.7135856747627258, 0.14699697494506836, 1.1859990358352661, -0.1461307257413864, -0.3665861487388611, 0.5193822383880615, 0.05460093542933464, 0.3985461890697479, -0.9842071533203125, -0.7882388234138489, -0.22683964669704437, -0.5662791728973389, -0.6141754388809204, 0.5827281475067139, 0.38164329528808594, 1.8310467004776, 0.16267521679401398, 0.45650964975357056, 0.3569169342517853, -0.1690649688243866, -0.7231606841087341, -0.33566227555274963, 0.13254188001155853, -0.23749999701976776, 0.05397481471300125, -0.2534962296485901, 0.7561689615249634, 0.6048670411109924, -0.12555263936519623, 0.09597126394510269, 0.20484447479248047, 0.3002031445503235, 0.23038747906684875, -0.22299757599830627, 0.6347569227218628, 1.1194982528686523, 0.6851807832717896, 1.5081559419631958, -0.3599473237991333, -1.1395597457885742, 0.6937945485115051, 0.2316180169582367, -0.08077898621559143, 0.8813526630401611, 0.575107753276825, 1.3128173351287842, -1.3978593349456787, -0.17963261902332306, 0.735022246837616, 0.13414844870567322, 0.2687787711620331, -0.5330308079719543, 0.042560894042253494, -1.0636636018753052, -0.13373389840126038, 0.8829326629638672, -0.8740426898002625, 0.905358612537384, 0.12305354326963425, -0.1468518078327179, 1.138327956199646, -0.3420102298259735, 0.1446561962366104, -0.762834906578064, -0.2394072562456131, -0.6246044635772705, -0.10333137959241867, 0.7937342524528503, 1.0075714588165283, 1.0757948160171509, 0.3705978989601135, -0.04258997365832329, -0.5364761352539062, 0.18749885261058807, -1.034376859664917, 0.29328685998916626, -0.00754851009696722, 0.24330727756023407, -0.6676642894744873, -1.1718024015426636, -0.1709420531988144, -0.816055417060852, -1.0970937013626099, -0.10337641835212708, -0.35515472292900085, -1.0229895114898682, 0.4913875460624695, 0.13150541484355927, 0.8087950348854065, 0.7414022088050842, 0.5120738744735718, 0.45632320642471313, 0.2372858226299286, -0.7366296648979187, -0.07307445257902145, -0.20048744976520538, -0.16584917902946472, -0.017701048403978348, -0.7615880966186523, -0.5079740285873413, 0.6748865246772766, -0.25788891315460205, -0.37721675634384155, -0.4446044862270355, 0.7113043665885925, 1.8673536777496338, -0.11130734533071518, -0.2948322296142578, 0.6954565644264221, -0.4059409201145172, 1.4459718465805054, 1.3107496500015259, -1.1452323198318481, -0.4272034466266632, 0.32254862785339355, -1.999032974243164, 1.3192960023880005, -1.0561836957931519, -0.04225213825702667, 0.6968902349472046, 0.17204080522060394, -0.1271224319934845, 1.236317753791809, -1.2783833742141724, 0.3469022214412689, 0.46209123730659485, -0.5679185390472412, -0.6809791922569275, 0.3632737994194031, 1.2153764963150024, -0.11496228724718094, -1.0330666303634644, 0.5728232264518738, -0.1753542125225067, -0.626510739326477, -0.2987450659275055, 0.5240092277526855, 0.11107108741998672, 0.2662492096424103, -0.07131697237491608, -0.30743879079818726, 0.5226856470108032, -1.5228354930877686, 0.26132816076278687, -0.044952116906642914, 0.47940683364868164, 0.7800991535186768, -0.549551784992218, 0.7059096097946167, -0.3033955991268158, -0.0619724802672863, -0.36653563380241394, -1.037937879562378, 1.1158322095870972, 0.18075881898403168, -0.020439784973859787, 0.9114231467247009, -0.23511500656604767, -0.8799149990081787, -0.8675588369369507, -0.24028588831424713, 0.7488111853599548, -0.9775005578994751, -0.24473936855793, -0.8343843221664429, -0.5465319752693176, -0.13025417923927307, -0.019088611006736755, 0.6513977646827698, -1.3310655355453491, -1.206132411956787, -0.2686639130115509, -0.22458499670028687, 0.6567688584327698, -0.6265381574630737, -0.07724756002426147, 0.3557702898979187, -1.3091533184051514, 0.7835478782653809, -0.46590888500213623, -1.7799222469329834, 0.10837599635124207, -1.275781512260437, 0.8870435953140259, -0.3126380145549774, -0.5420414209365845, 0.3107939064502716, 1.7329130172729492, -1.517154335975647, -1.145128607749939, -0.8175719380378723, -0.1438130885362625, 0.6828474998474121, 0.7281943559646606, -0.6578369736671448, 1.480217456817627, -0.5193539261817932, -0.22978784143924713, -0.8252422213554382, 0.19714640080928802, -0.6968775391578674, -0.2600429058074951, -0.4435848593711853, 0.003973802551627159, -0.13181570172309875, 1.0639835596084595, 0.8723357319831848, 0.9052366614341736, -0.003414093516767025, 1.309919834136963, -0.7445166110992432, -0.6882825493812561, 0.07241590321063995, 0.46345505118370056, -1.0374575853347778, -0.6802701354026794, -0.2554980516433716, -0.4858855903148651, -1.0484050512313843, 0.19944262504577637, 1.1950782537460327, -0.46202975511550903, 0.4294178783893585, -0.16932745277881622, 0.5273483395576477, -1.15383780002594, 0.5602478981018066, 0.14258967339992523, -1.6887454986572266, -0.20463982224464417, -0.652296781539917, 0.16062520444393158, -0.9255390167236328, 0.44006916880607605, 0.7191120386123657, 0.6249280571937561, -0.6999475955963135, -0.02195393107831478, 0.5484977960586548, 0.030106352642178535, -0.705034613609314, 0.9910704493522644, 0.7036548852920532, -0.4022267162799835, -0.23493748903274536, 0.997471809387207, 0.08812448382377625, 0.3716799318790436, 0.46031472086906433, -0.008394014090299606, -0.4808080494403839, 0.03792174533009529, 0.011052542366087437, -0.012445870786905289, -0.05154244974255562, 0.14940759539604187, -0.2825564444065094, 0.2984057664871216, 0.9748867154121399, -0.6174129843711853, -0.8454970121383667, 1.513781189918518, 0.5616729855537415, 0.06152801960706711, -0.022930091246962547, -0.26949742436408997, 0.11853707581758499, 0.17501404881477356, 0.7989627122879028, 0.5811158418655396, -0.10587310045957565, 0.050042975693941116, 0.5740622282028198, -0.045340899378061295, -0.12768906354904175, -0.11791948974132538, -1.3169351816177368, -0.32530781626701355, -0.8522019982337952, 0.6417766213417053, 0.48061177134513855, -0.6651543974876404, -0.6724544763565063, -1.2291280031204224, -0.04923589527606964, -0.06165082007646561, -0.23065416514873505, -0.7647312879562378, -0.046453047543764114, -0.03774499520659447, 1.5950229167938232, -0.4511851668357849, 1.5891382694244385, -0.6116995215415955, -0.38930031657218933, -0.2697218060493469, 0.12198550999164581, 0.49878042936325073, 0.04479718953371048, 0.31223103404045105, -0.8348584771156311, 0.5850733518600464, -0.536209762096405, -0.8320261836051941, 0.7701785564422607, 0.33432427048683167, 0.2865542471408844, -0.6094480752944946, -0.6364780068397522, 0.3782987892627716, 0.3863182067871094, 0.36095112562179565, -0.7493330240249634, -1.1011309623718262, -0.7312891483306885, -0.05046851933002472, -0.04727242514491081, 0.46279019117355347, -0.48328301310539246, 0.9055132269859314, 0.6080271005630493, -0.8257912397384644, -0.691717803478241, -1.527672290802002, 0.8727987408638, 0.02914041094481945, 0.3891255557537079, -0.2201511114835739, 0.061174310743808746, 0.6364562511444092, -0.7193906307220459, -0.8222609758377075, -0.2349041849374771, 0.5212845206260681, 0.16264505684375763, -0.7560079097747803, -0.2922545373439789, -1.2519302368164062, -0.32177308201789856, 0.009408313781023026, 0.8094114661216736, 0.6948357820510864, 0.3182140588760376, -0.8614763021469116, 0.048972781747579575, 0.6034340262413025, 0.3456285893917084, 0.6898298859596252, 1.4465453624725342, 1.2404024600982666, -0.27559056878089905, -0.42986002564430237, -0.3140415847301483, 0.7352452278137207, -0.7644563317298889, -0.040983639657497406, -0.5291313529014587, -0.13322517275810242, 0.21572460234165192], [0.37878111004829407, 2.2354745864868164, -2.9160006046295166, 0.48581111431121826, 0.6083338856697083, -0.42939019203186035, 0.6181135177612305, 0.20114454627037048, -0.24036012589931488, -1.080702304840088, -0.6466184258460999, -0.09245496243238449, 0.8617374897003174, 0.8190584778785706, 0.4846747815608978, 0.6709504127502441, 0.31525328755378723, -0.4527246952056885, 0.5804045796394348, 1.603519082069397, -0.5727075338363647, -1.1098569631576538, -0.4427519738674164, 0.08748044818639755, -0.05623113736510277, 0.27539706230163574, -1.502987027168274, -0.22452853620052338, -0.9286849498748779, -0.8308998346328735, 1.3060016632080078, -0.24064189195632935, 0.8265595436096191, -0.223636656999588, -1.5229377746582031, 0.21185137331485748, 1.2307977676391602, -0.2235012799501419, 0.11934537440538406, -1.0588136911392212, 1.9240503311157227, 0.6094117760658264, -0.4999018907546997, -1.396647572517395, 0.27729323506355286, 0.029919186607003212, 0.704115629196167, -0.9771783947944641, 0.37373843789100647, -0.7281970977783203, 0.7560439109802246, 0.25985509157180786, -0.4380073845386505, 1.30888032913208, 0.7786426544189453, -0.9855237007141113, -0.10634976625442505, 0.6537444591522217, 0.1934545636177063, 0.8223401308059692, 1.1729344129562378, -0.51777583360672, 0.14821884036064148, 0.4793488085269928, 0.5185002088546753, -0.28724581003189087, 0.49013394117355347, 0.17644523084163666, 0.6854112148284912, -0.10844580084085464, 0.2238752841949463, 0.15253104269504547, -0.3313477039337158, 0.12304110080003738, -0.6491968035697937, 0.9371994733810425, 0.45329549908638, 0.29136142134666443, -0.03082374297082424, 0.3868826627731323, -0.03694683313369751, 0.012253538705408573, 0.8979735374450684, -0.537082850933075, -0.13199998438358307, -0.10203371942043304, 0.5549468994140625, 0.06714034080505371, -0.5976128578186035, 1.3721665143966675, -0.2203892320394516, 0.5693540573120117, 0.8595621585845947, 0.2973768711090088, -0.06587860733270645, -0.5771680474281311, 0.5431272983551025, -1.566705584526062, -0.18385791778564453, -0.7821863889694214, 0.13556085526943207, -0.8028281331062317, 0.4048795998096466, 1.0166287422180176, 0.5757288932800293, 0.9565660357475281, -0.22917672991752625, -0.6167579889297485, 0.1780935376882553, -0.009876572526991367, -0.6089047789573669, -0.5146539807319641, -0.7713923454284668, -1.446738362312317, -0.18112927675247192, 0.8425431847572327, 1.7213413715362549, 0.02613949589431286, 1.1610444784164429, 0.30338239669799805, -0.6067488193511963, -0.3112553656101227, -0.568635106086731, 0.2568947374820709, 1.2053959369659424, 0.5483874082565308, -0.6991428136825562, -0.659467339515686, 0.37431418895721436, 0.14205065369606018, 0.6410353183746338, -0.013797755353152752, -0.6318535804748535, 0.06470552831888199, -0.40270596742630005, 1.3074791431427002, -0.977008581161499, -0.34358134865760803, -0.045578133314847946, 0.808939516544342, 0.10396076738834381, -0.005859553813934326, 0.1265992522239685, -0.365548700094223, 0.3291454315185547, -0.9606345295906067, 0.20795844495296478, -0.48473140597343445, -0.6632183194160461, 1.193535327911377, -0.9121848344802856, 0.07889603078365326, -0.7455326318740845, 1.5190280675888062, 0.48473718762397766, -0.855096161365509, 0.32622578740119934, 0.019533826038241386, 0.34738844633102417, 0.45138540863990784, 0.6543466448783875, -0.10807374864816666, -0.6172373294830322, 0.018507016822695732, 0.48559507727622986, -0.3959178924560547, 0.796924889087677, 0.10778166353702545, -0.4381287693977356, 1.5324798822402954, -0.45591866970062256, -0.6765731573104858, -0.5638375878334045, 0.571030855178833, -0.19227449595928192, -0.10960686951875687, 1.073392629623413, -0.3527691662311554, -1.1553692817687988, -0.5806835889816284, 1.3198645114898682, -0.3814791142940521, 0.6214599013328552, 0.02820981852710247, 0.6276766061782837, 0.46150490641593933, 0.1821436882019043, -0.6100713610649109, -0.43070486187934875, -1.274034857749939, -0.6207498908042908, -0.398145854473114, -1.1636154651641846, 0.4563608765602112, -0.26024988293647766, -0.752072811126709, 1.001042366027832, -0.4324468970298767, -0.5972204804420471, 0.3015389144420624, -0.1586495339870453, -0.13605737686157227, -0.9673344492912292, -0.14338745176792145, -0.25869011878967285, 1.5589417219161987, -0.6242138147354126, 0.8629423975944519, -0.12851938605308533, 0.1744513362646103, 0.5840852856636047, -1.147236943244934, -1.1386191844940186, 0.6380786299705505, 0.2963557839393616, -1.6616623401641846, 0.8865612745285034, -0.19541789591312408, 0.036480896174907684, 0.007653495296835899, 0.20118562877178192, 1.197352409362793, 0.20738622546195984, -0.21308746933937073, 0.7362803220748901, -0.8910393118858337, -0.39122042059898376, -1.1363290548324585, -0.5480756163597107, -0.14174096286296844, -1.3153517246246338, -0.8585179448127747, 0.14311662316322327, 0.5342507362365723, -1.229261875152588, 0.23876987397670746, -0.16017277538776398, -0.2504122853279114, 0.22504939138889313, 1.1545549631118774, 0.5073477029800415, 0.1477302610874176, -0.49521538615226746, -0.11531843990087509, -1.1012409925460815, 0.629343569278717, 0.6698243021965027, -0.2816303074359894, -0.2629948854446411, 1.0719630718231201, 1.202815294265747, -0.2606743276119232, 0.9126500487327576, -0.34821003675460815, -0.14790652692317963, -0.5272348523139954, -0.6212753653526306, 0.41575098037719727, -0.6216702461242676, 1.2224079370498657, 0.8140106201171875, -0.9043706059455872, 0.09804735332727432, -0.36358222365379333, 0.09991341829299927, -0.5553399324417114, -0.34996092319488525, -1.5120540857315063, -0.26227569580078125, -0.6594298481941223, -0.3614027202129364, 0.4924229681491852, -0.11118988692760468, 0.44429245591163635, -0.4618479609489441, -0.43162527680397034, 0.3098539710044861, 0.7324086427688599, -0.25053685903549194, 0.8152307271957397, -0.2515721917152405, -1.5211851596832275, -1.1394178867340088, 0.2804483473300934, 0.2150876671075821, 0.20996788144111633, 0.4237976372241974, 0.9588561654090881, 0.7683152556419373, 0.2216765433549881, 0.6860181093215942, -0.12254028767347336, 0.44600850343704224, -0.37525859475135803, 0.27664464712142944, 0.4328787922859192, 0.9776762127876282, -0.6810015439987183, -0.8477472066879272, -0.3694479465484619, 0.705273449420929, 1.4640141725540161, 1.2174001932144165, 0.8272795677185059, -0.6148844361305237, 0.0642537772655487, -0.5499931573867798, -0.25632208585739136, -1.1564178466796875, -0.21546834707260132, 0.02093886211514473, -0.80889493227005, -1.209226369857788, -0.11807983368635178, -1.0120856761932373, 0.542547345161438, 0.36952510476112366, 0.6665078997612, 1.3033719062805176, -0.5731532573699951, -0.881537914276123, -0.7191984057426453, -0.21396060287952423, -1.1596189737319946, 0.9089851975440979, 1.1891484260559082, -1.4182207584381104, 0.02936922013759613, 0.20069323480129242, -0.19977346062660217, 0.07250610738992691, 0.28940021991729736, 0.27499058842658997, -1.0861412286758423, -0.09485678374767303, 0.2965643107891083, 0.7179747223854065, 0.2727627754211426, -0.10676003992557526, -0.019156277179718018, 0.03105221502482891, 0.4956316649913788, 0.32483452558517456, -0.8456193804740906, 0.1290169507265091, -0.47379931807518005, -0.3346676528453827, 0.06316731125116348, 0.4787801206111908, 0.2959986925125122, -0.9072394967079163, -1.1121121644973755, -0.4892606735229492, -0.35302454233169556, -0.7558239698410034, 0.5587853789329529, 0.508499026298523, 0.31160295009613037, -0.3286820948123932, 0.33478406071662903, 1.3185926675796509, 0.03389750048518181, 0.1277237832546234, -0.7976849675178528, 1.1795461177825928, 0.4325670003890991, 1.7331156730651855, 0.04663108289241791, 0.13431359827518463, 0.213369682431221, -1.465600609779358, 0.14078307151794434, -0.07383719086647034, 0.26069697737693787, 0.3787880539894104, -0.9145276546478271, 0.005301028490066528, -0.6354303956031799, 0.8735822439193726, -0.22750356793403625, 0.15462259948253632, 0.29223528504371643, -0.38536617159843445, -0.24572639167308807, 0.8895789384841919, 0.7328834533691406, -0.4183696508407593, -0.6050973534584045, -0.10775187611579895, 0.4293246269226074, -0.9047459363937378, 0.4754462242126465, -0.2105327993631363, -0.3957420587539673, 0.804298996925354, -0.29331502318382263, -0.024631408974528313, -0.3970756232738495, 0.390207439661026, 1.8088161945343018, -1.2439361810684204, -0.4103877544403076, -0.46688416600227356, 0.2771078050136566, 0.8350074291229248, 0.20909951627254486, 0.5358878374099731, 0.7180299758911133, -0.4765366017818451, 0.11888553202152252, 0.3413779139518738, 1.2968236207962036, 0.19775012135505676, -0.4061047434806824, 0.22573420405387878, -0.46037557721138, 0.7479600310325623, -1.6582698822021484, 0.6103214621543884, 0.25634002685546875, -0.1755484789609909, -0.5578818917274475, -0.16867175698280334, -0.2332337647676468, 2.1052515506744385, 0.611147403717041, -0.001504517043940723, 0.13957640528678894, 0.04640103131532669, -1.143746256828308, -0.04152876138687134, 0.8074743747711182, -0.8400630950927734, -0.6998008489608765, 0.7230265140533447, 0.12198012322187424, 0.6160687208175659, 0.06408359855413437, -0.05370548367500305, 0.24227462708950043, 0.4234221875667572, 0.24504989385604858, -0.10307232290506363, 0.6312863826751709, 1.5758047103881836, 0.34073418378829956, 1.4479984045028687, -0.06555262207984924, -0.5788741707801819, 0.6045194268226624, -0.12461301684379578, 0.6925949454307556, 0.9940491914749146, 0.38928958773612976, 0.9259209632873535, -0.5366073846817017, -0.25681161880493164, 0.43542927503585815, 0.18172378838062286, 0.5632778406143188, -0.2627006471157074, 0.6939886808395386, -0.42757609486579895, -0.10117164999246597, 0.6528118848800659, -0.3249163031578064, 0.5049106478691101, -0.2823624014854431, 0.20091164112091064, 0.9210606217384338, -0.3586522340774536, 0.348636269569397, -1.1340938806533813, -0.2902151346206665, -0.24331079423427582, -0.409109503030777, 0.8052220940589905, 0.5124829411506653, 0.9763724207878113, 0.4344367980957031, 0.49206116795539856, -0.5499905347824097, 0.08581619709730148, -0.7904030084609985, -0.0499747134745121, -0.2975701689720154, 0.2744286060333252, -0.8322449922561646, -0.27872976660728455, -0.3338063955307007, -0.3587256968021393, -0.2286389172077179, -0.21462364494800568, -0.29718127846717834, -0.9548612236976624, 0.5758910179138184, 0.7786113619804382, 0.3271481394767761, 0.5643703937530518, 0.14409618079662323, 0.1317369043827057, 0.8089451193809509, -0.6024089455604553, 0.027933793142437935, 0.38490208983421326, 0.09684378653764725, -0.029103847220540047, -0.500742495059967, -0.7046648859977722, 0.8025727868080139, 0.3251761794090271, -0.23910807073116302, 0.17043137550354004, 0.5521116852760315, 1.2868366241455078, -0.4799647927284241, -0.32212308049201965, 0.3959401547908783, -0.829163670539856, 1.1619725227355957, 1.2079956531524658, -0.7649558782577515, -0.8387755155563354, -0.6333877444267273, -1.8885592222213745, 1.524225115776062, -0.6251828670501709, 0.027752544730901718, 1.095509648323059, 0.5566152334213257, -0.07463381439447403, 1.3206723928451538, -0.14353005588054657, 0.6391946077346802, 0.2703826129436493, -0.39416059851646423, 0.0774957463145256, 0.7893968224525452, 0.7952272891998291, -0.23973600566387177, -0.8886343240737915, 0.9374701976776123, -0.11672385782003403, -0.33631592988967896, -0.49136972427368164, 0.11394897103309631, -0.0803324356675148, 0.3153817057609558, 0.3203035593032837, -0.07575874775648117, 0.18139728903770447, -1.193591594696045, 0.28482264280319214, 0.4765119254589081, 0.5712161660194397, 0.14044886827468872, -0.36493995785713196, 0.5472020506858826, -0.7905579805374146, 0.08625845611095428, -0.010437899269163609, -0.2324400097131729, 1.212609052658081, 0.5761561393737793, -0.038309305906295776, -0.0978904739022255, 0.07171198725700378, -0.6245802640914917, -1.0921194553375244, -0.49081918597221375, 1.457762598991394, -1.5123353004455566, 0.07451768964529037, -0.7362194061279297, -0.3385979235172272, -0.4576302170753479, 0.14919957518577576, 0.7544003129005432, -0.9379857182502747, -0.945794403553009, -0.12575305998325348, 0.004081390798091888, 0.6901296973228455, -1.1278082132339478, 0.18476620316505432, 0.12275831401348114, -1.0754798650741577, -0.11403780430555344, -0.04789716750383377, -1.7082797288894653, 0.5678611993789673, -1.1453958749771118, 0.545592725276947, -0.03631485626101494, 0.15336546301841736, -0.19172492623329163, 1.3375141620635986, -1.1840261220932007, -1.5347009897232056, -1.2001148462295532, -0.2792837917804718, 0.5318924188613892, 1.2929705381393433, -1.2485992908477783, 1.1657119989395142, -0.19794097542762756, -0.32626980543136597, -0.14214789867401123, 0.2784809470176697, -0.41835540533065796, -0.08101370185613632, -0.23979578912258148, 0.3655479848384857, -0.24620656669139862, 1.1791017055511475, 0.7406278252601624, 0.9455310702323914, 0.2561335861682892, 1.2915161848068237, -0.7587264776229858, -0.2160692662000656, 0.13086482882499695, 0.2933617830276489, -0.7121408581733704, 0.07973745465278625, 0.5155470371246338, -0.7274790406227112, -1.0836098194122314, 0.014693851582705975, 0.7151626348495483, -0.7138140201568604, 0.20339439809322357, -0.28294098377227783, -0.33286842703819275, -0.6840919256210327, 0.20910955965518951, 0.11153096705675125, -0.41246944665908813, -0.08688738942146301, -0.6825871467590332, -0.142588809132576, -0.7976071238517761, 0.2440856248140335, 1.0338057279586792, 0.6117250919342041, -0.18982888758182526, -0.1428823322057724, 0.2584141194820404, 0.41063302755355835, -0.5765640139579773, 0.6776542067527771, 0.6879634261131287, -0.3884379267692566, -0.02912629209458828, -0.10569184273481369, -0.36581891775131226, -0.09288721531629562, -0.14105863869190216, -0.4236699044704437, -0.8166813254356384, 0.5720030069351196, 0.3121670186519623, -0.22304922342300415, 0.43051138520240784, 0.2715664207935333, 0.19757212698459625, 0.22025255858898163, 1.584138035774231, -0.8305061459541321, -0.006476655602455139, 1.4230701923370361, 0.3997204005718231, -1.380923867225647, -0.09189843386411667, -0.8501768708229065, 0.21925146877765656, 0.44780755043029785, 0.08911523222923279, 0.6714332103729248, -0.40446552634239197, 0.7727224230766296, 0.001489236019551754, -0.25558972358703613, -0.4626349210739136, -0.46241793036460876, -1.19559907913208, -0.4583481252193451, -0.8314957022666931, -0.06068151816725731, 0.0769488513469696, -1.4852943420410156, -0.8453509211540222, -0.04891463741660118, 0.2478288859128952, -0.3500230610370636, -0.3568706512451172, 0.4482324719429016, 0.1353537142276764, -0.3282625377178192, 1.2326407432556152, -0.36309778690338135, 0.4550686478614807, 0.060273464769124985, -0.010453497059643269, -0.3393840789794922, -0.20534883439540863, 0.19139666855335236, 0.02477240189909935, -0.6732326745986938, -1.350033164024353, 0.276526540517807, -0.6713333129882812, -0.5346056818962097, 0.5489745140075684, 0.5774663090705872, 0.4733969271183014, -0.8086430430412292, -0.9693135023117065, 0.5532550811767578, 0.9041444659233093, 0.06769534945487976, -0.7270948886871338, -1.1357548236846924, -0.9344905018806458, 0.15678520500659943, -0.3025997579097748, 0.8056643009185791, -0.2685605585575104, 0.44810348749160767, 0.2343713939189911, -0.7925655841827393, -0.9636244177818298, -0.8796660304069519, 0.7894864678382874, 0.4785785675048828, -0.114455945789814, -0.5710898637771606, 0.07518327236175537, -0.3025137186050415, -0.8486092686653137, -0.6393380761146545, 0.04370792955160141, 0.32281991839408875, -0.04359692335128784, -1.131156086921692, -0.4413236379623413, -0.995685875415802, 0.10452957451343536, 0.5109044909477234, 0.8241901397705078, 0.17298977077007294, -0.2852298617362976, -1.3223897218704224, -0.09860308468341827, 1.4252010583877563, 0.2032734751701355, -0.006359881721436977, 1.2288885116577148, 0.4382171332836151, -0.10804051905870438, -0.7405375838279724, 0.10696873068809509, 0.23967598378658295, -0.8427165746688843, 0.43338289856910706, -0.6926855444908142, -0.5121281147003174, -0.40081897377967834], [-0.12617100775241852, 2.140777111053467, -2.737794876098633, 0.16213516891002655, 0.7787225246429443, -0.4163397550582886, 1.651484727859497, -0.3420312702655792, -0.23731127381324768, -0.9449273943901062, -0.9816679358482361, 0.02604692056775093, 0.7757999897003174, 0.8708007335662842, 0.7063698768615723, 0.6742120981216431, 0.42126700282096863, -0.27684932947158813, 0.4614161550998688, 1.2887362241744995, 0.0573611818253994, -0.915464460849762, -0.3088737726211548, 0.27058935165405273, -0.1970352977514267, 0.4014367461204529, -0.7151369452476501, 0.31976866722106934, -1.114963412284851, -0.9403015971183777, 1.4422187805175781, 0.3059546947479248, 0.673409640789032, 0.5067829489707947, -1.282726526260376, -0.07720385491847992, 1.0071070194244385, 0.27266114950180054, 0.13322962820529938, -0.17266307771205902, 1.9040430784225464, 0.6137620806694031, 0.012286249548196793, -1.4738571643829346, 0.06500354409217834, 0.27841371297836304, 0.896692156791687, -0.9901763200759888, 0.5518465042114258, -0.7189205288887024, 0.21246302127838135, -0.1026831641793251, -0.09212587028741837, 1.9983153343200684, 0.494423508644104, -0.9505903124809265, 0.6506442427635193, 0.6187673211097717, -0.30329230427742004, 0.22499026358127594, 0.8528380393981934, -0.04764708876609802, 0.7947022914886475, 0.3128422200679779, 0.5719015002250671, -0.31442612409591675, 0.444052517414093, -0.055767741054296494, -0.24704664945602417, 0.1574072390794754, 0.11649798601865768, -0.06528022885322571, -0.69089275598526, 0.32541289925575256, -0.8675023913383484, 0.5430732369422913, 0.5988290905952454, 0.7082121968269348, 0.07598672807216644, 0.3029678761959076, -0.7597311735153198, 0.5398284792900085, 0.7031951546669006, 0.04496161267161369, -0.40555086731910706, 0.17224948108196259, 0.8666597008705139, -0.6389669179916382, -0.5199534893035889, 1.8215599060058594, 0.30061808228492737, 0.7679665684700012, 0.9167389869689941, -0.4038281738758087, -0.7339490652084351, -0.9462106227874756, 0.38309264183044434, -1.1209654808044434, -0.20231911540031433, -0.2925732433795929, -0.34319236874580383, -0.6115019917488098, 0.6147794723510742, 1.0534260272979736, 0.2752753794193268, 1.3219512701034546, 0.033950358629226685, -1.0602291822433472, -0.16309857368469238, -0.2769054174423218, -0.5396419763565063, 0.14737266302108765, -0.2998710870742798, -1.0746088027954102, -0.19302624464035034, 1.0523157119750977, 1.1860285997390747, 0.0882207527756691, 0.48920390009880066, 0.47317224740982056, -0.5669045448303223, -0.5531051158905029, -1.069648265838623, 0.10392805188894272, 1.1589058637619019, -0.08327940851449966, -1.0542021989822388, -0.0870092436671257, 0.004629767499864101, 0.15347440540790558, 1.1274967193603516, 0.08832574635744095, -0.5179969668388367, 1.148095726966858, -0.3344520926475525, 1.544316053390503, -0.9248018264770508, -0.7680881023406982, 0.40013784170150757, 0.22879907488822937, 0.16274259984493256, -0.34646451473236084, -0.2442648708820343, -0.2617034912109375, 0.12010625004768372, -0.844317615032196, 0.45815393328666687, -0.39029863476753235, -0.7653566002845764, 0.47877180576324463, -1.5829052925109863, 0.5326825976371765, -0.3642112612724304, 0.8567711710929871, 0.44592317938804626, -0.3555004298686981, 0.020007766783237457, -0.10338927060365677, 0.25652971863746643, 0.7848075032234192, 0.40854254364967346, -0.11694321781396866, -0.7769070863723755, 0.550237774848938, 0.5980194211006165, -0.5546010136604309, 0.746163547039032, 0.2218039184808731, -0.729644238948822, 0.9511281251907349, -0.2504809498786926, -0.961401641368866, -0.78977370262146, 0.14074619114398956, -0.04877573251724243, -0.3141336441040039, 1.167296051979065, -0.013673360459506512, -1.2308083772659302, -0.7844587564468384, 1.0372921228408813, -0.9157620072364807, -0.1519673615694046, -0.30178403854370117, 0.5686970949172974, -0.4938645660877228, 0.02133309096097946, -0.08011932671070099, -0.8800948262214661, -0.5976709127426147, -0.728952169418335, -0.3018870949745178, -0.9237444400787354, 0.4339899718761444, -1.0959410667419434, -0.5155401825904846, 0.8160430192947388, -1.250052809715271, -0.8868604302406311, -0.4639632999897003, 0.1276794672012329, -0.8670743107795715, -1.0514404773712158, -0.047312621027231216, -0.7256721258163452, 0.6106847524642944, -0.7414541244506836, 0.5693246722221375, -0.5307636260986328, 0.3568367660045624, 0.6565868258476257, -0.5908677577972412, -1.3774160146713257, 0.3808172345161438, 0.5368850231170654, -1.9387776851654053, 0.6312978863716125, 0.5039934515953064, 0.28843894600868225, 0.4655402898788452, -0.3009064793586731, 0.2738681733608246, 0.7886595129966736, -0.28232094645500183, 0.5995785593986511, -0.6356359124183655, 0.31197232007980347, -1.063065767288208, -0.3600751459598541, 0.14785993099212646, -0.4140434265136719, -0.48421812057495117, 0.8329055905342102, -0.005188025534152985, -1.4684773683547974, 0.6194528937339783, -0.3651811480522156, 0.4283301830291748, 0.2530430257320404, 1.2871719598770142, 0.8892791867256165, 0.4102827310562134, -0.10277727246284485, -0.8043472766876221, -0.6804500818252563, 0.25724509358406067, 0.7828910946846008, -0.36716774106025696, 0.34878480434417725, 1.0581841468811035, 0.8894430994987488, -0.7532637119293213, 0.5378698110580444, -0.4372972846031189, 0.05004142224788666, -1.7835407257080078, -0.011294822208583355, -0.08301512151956558, -1.2705957889556885, 1.6058039665222168, 0.7910307049751282, -1.7275543212890625, -0.05028179660439491, 0.03537740558385849, 0.14211930334568024, -0.11145573109388351, -0.30863142013549805, -0.7830798625946045, 0.2130475640296936, 0.060660604387521744, -0.2483842968940735, -0.3567095696926117, -0.5371647477149963, 0.710787296295166, -0.4814799129962921, -0.5337105989456177, -0.20539866387844086, 0.6485052704811096, -0.15235300362110138, 0.848440945148468, -0.18709661066532135, -2.0170812606811523, -0.7443179488182068, 0.6150157451629639, 1.0438615083694458, 0.13080452382564545, 0.2703540325164795, 0.7985115647315979, 1.0595502853393555, 0.8977057933807373, 0.5357905030250549, 0.1513601392507553, 0.2591378092765808, 0.12071847170591354, 0.49154412746429443, -0.07389723509550095, 0.6123545169830322, -0.7086358666419983, -0.9521704316139221, -0.6605991721153259, 0.35444992780685425, 1.5834693908691406, 0.6984046101570129, 1.0343137979507446, -0.33882197737693787, 0.027561824768781662, -1.01920485496521, -0.2431531697511673, -1.3148391246795654, -0.11364983022212982, -0.3539469838142395, -1.3413447141647339, -0.6420601010322571, -0.42582014203071594, -0.19656872749328613, -0.10303676873445511, 0.6564950942993164, 0.678692102432251, 0.09406892955303192, -0.2205274999141693, -0.5143467783927917, -0.745018482208252, 0.26511815190315247, -0.9260185360908508, 0.70889812707901, 2.0742621421813965, -1.282819390296936, 0.2637926936149597, 1.0032762289047241, 0.04358680173754692, 0.1411820650100708, 0.047715891152620316, 1.0911080837249756, -1.1622405052185059, -0.6291972994804382, -0.25404971837997437, 1.006065845489502, 0.24140003323554993, -0.4652804136276245, -0.4806522727012634, 0.37567606568336487, 0.7430411577224731, -0.25124844908714294, -0.8934726119041443, 0.8553785085678101, -1.066759705543518, -0.4120366871356964, -0.04096458479762077, 0.4677024781703949, 0.5199351906776428, -0.5304422378540039, -1.1615358591079712, -0.4545772671699524, 0.16395869851112366, -0.45204973220825195, 0.3733144700527191, 0.6312242150306702, 0.3064478933811188, -0.3132084906101227, -0.0004142001271247864, 0.8788650631904602, -0.24690595269203186, 0.11111427843570709, -0.8854338526725769, 0.4465976357460022, 0.8504554033279419, 1.753031849861145, 0.9077293872833252, 0.3555332124233246, 0.7202708125114441, -0.6136559844017029, -0.1409491002559662, -0.22150862216949463, 0.6262388229370117, -0.15357472002506256, -0.3333766460418701, -0.08217567205429077, -0.20082208514213562, -0.12491527199745178, 0.045707523822784424, -0.2012205272912979, 0.6848695874214172, -0.5644785761833191, -1.0393356084823608, 0.8862869739532471, 0.8432913422584534, -0.6103237867355347, 0.074473075568676, -0.310324490070343, 1.2048215866088867, -0.23671990633010864, 0.33792421221733093, -0.33532530069351196, -0.32563552260398865, 0.3632393479347229, -0.8548775911331177, -0.29274991154670715, -0.34964871406555176, 0.32673001289367676, 1.1460232734680176, -1.3402169942855835, -0.31022438406944275, -0.5852128267288208, 0.26167377829551697, 0.4333832859992981, -0.2189934253692627, 0.21467629075050354, 0.7496959567070007, -0.3045620024204254, 0.06496892124414444, 0.5113336443901062, 1.399030089378357, -0.29945963621139526, -0.554039478302002, 0.474446564912796, -0.6419070363044739, 0.19930200278759003, -1.0566641092300415, -0.25503304600715637, 0.14098083972930908, -0.5258979201316833, -0.10870664566755295, 0.309774249792099, -0.21134193241596222, 2.0234475135803223, 0.5071771740913391, -0.05325400456786156, 0.2891503870487213, -0.32263055443763733, -0.7444756031036377, -0.33817487955093384, 0.27050507068634033, -0.06103389710187912, 0.3593728542327881, -0.2418016642332077, 0.4570564925670624, 0.17452684044837952, 0.20916594564914703, -0.361102432012558, 0.4501306414604187, 0.4494543671607971, 0.17845873534679413, -0.3840222954750061, 0.4424378275871277, 1.3877745866775513, 0.6641854643821716, 0.5606027245521545, -0.5546086430549622, -0.8215563297271729, 0.8588776588439941, -0.583737850189209, 0.9165441989898682, 1.1993072032928467, 0.7683313488960266, 1.5717047452926636, -1.7036948204040527, 0.18185076117515564, 0.15335765480995178, 0.3010793626308441, 0.45814305543899536, -0.20743907988071442, 0.0457761324942112, -1.3639190196990967, -0.15426023304462433, 0.3537525534629822, -0.527600109577179, 0.9604846835136414, -0.35890886187553406, 0.19575665891170502, 1.1639299392700195, -0.7347555756568909, -0.12017179280519485, -0.977177083492279, -0.05027628690004349, -0.6927326321601868, -0.4833911955356598, 0.7977586388587952, 0.971522867679596, 1.4209673404693604, 0.6383219361305237, -0.16228529810905457, -1.1723655462265015, 0.7021793127059937, -0.7475099563598633, 0.4552399516105652, -0.47371169924736023, -0.3523588180541992, -1.1256389617919922, -0.9449670314788818, -0.07800004631280899, -0.44763627648353577, -0.7008987069129944, -0.6507009267807007, -0.3133547604084015, -1.195273756980896, 0.7297230958938599, 0.7112200260162354, 0.7752401232719421, 0.2996511459350586, 0.35449934005737305, 0.8201146721839905, 0.5375385880470276, -0.515080451965332, 0.49311065673828125, -0.09239544719457626, 0.09222757816314697, 0.019682491198182106, -0.6380868554115295, -0.8953542113304138, 0.32767271995544434, 0.7528389692306519, -0.3410777151584625, 0.8040735721588135, 1.155394434928894, 1.3397583961486816, -0.607506275177002, -0.6305355429649353, 0.6366533637046814, -0.08060025423765182, 1.1626880168914795, 0.7913520336151123, -0.8009238243103027, -0.1535487323999405, -0.20547038316726685, -1.5491846799850464, 1.7176891565322876, -0.13814154267311096, -0.20774498581886292, 1.1695736646652222, 0.6319512724876404, 0.3196985125541687, 1.0239663124084473, -0.2568110227584839, -0.16201455891132355, 0.19772779941558838, 0.22246548533439636, -0.8258199095726013, 0.8754560351371765, 1.065918207168579, 0.07775135338306427, -1.2403441667556763, -0.34811875224113464, -0.3689514994621277, 0.2618376910686493, -0.6270288228988647, -0.4356992244720459, 0.26799604296684265, 0.08887138217687607, -0.1862489879131317, -0.793476402759552, 0.5149916410446167, -0.7919977307319641, 0.8219414353370667, 0.06055428460240364, 0.9385190010070801, 0.5181710720062256, -0.05023384466767311, 0.6937915086746216, -0.5921710729598999, -0.5825791954994202, -0.3452993333339691, -0.11115086078643799, 0.9908320307731628, 0.41609880328178406, 0.6035194993019104, 0.2580511271953583, -0.3271504342556, -0.5216813087463379, -0.1431797444820404, -0.5215504765510559, 1.2255215644836426, -1.169210433959961, 0.14948196709156036, -0.6735367774963379, -0.5266090035438538, -0.0186595618724823, 0.3011777997016907, 0.9782189130783081, -1.045871615409851, -0.9728691577911377, -0.452725350856781, -0.18197713792324066, 0.5483517646789551, -0.8434931039810181, 0.40609392523765564, 0.454638808965683, -1.233652949333191, 0.6272796392440796, -0.2685076594352722, -1.3662241697311401, -0.18081799149513245, -1.535975456237793, 0.9905965924263, -0.08244038373231888, -0.21446757018566132, 0.17010581493377686, 0.7517043948173523, -1.0321239233016968, -1.0706398487091064, -0.7856003642082214, -0.3313194513320923, 0.9784389138221741, 1.0092962980270386, -1.1245366334915161, 1.638195514678955, 0.08342036604881287, -0.6553676128387451, -0.6705015301704407, -0.18236729502677917, -1.3678115606307983, -0.21676984429359436, 0.022290097549557686, 0.6011333465576172, 0.149294912815094, 1.6814517974853516, 0.627448320388794, 0.639701783657074, 0.39299941062927246, 1.55045747756958, -0.8219792246818542, -1.0546661615371704, 0.026648536324501038, 0.5937978029251099, -1.0685746669769287, -0.6562957763671875, 0.07517131417989731, -0.7375265955924988, -1.2818528413772583, 0.24732908606529236, 1.0419187545776367, -0.27459436655044556, 0.5753753185272217, 0.02185504510998726, 0.0841745138168335, -0.8276011943817139, 0.6651975512504578, 0.1911165565252304, -1.033196210861206, -0.20887067914009094, -0.89073246717453, -0.02712726779282093, -1.127271056175232, -0.27180564403533936, 0.4132842719554901, 0.22322265803813934, -0.49690091609954834, 0.3888947069644928, 0.4057655334472656, 0.3907335698604584, -0.43369483947753906, 1.2662156820297241, 0.984082818031311, -0.2628629505634308, 0.13952970504760742, 0.2198757827281952, -0.46491938829421997, -0.6454836130142212, -0.22103925049304962, -0.005085172597318888, -0.41251957416534424, 0.3718979060649872, -0.037565458565950394, 0.11511442065238953, -0.3760407865047455, 0.5490120649337769, 0.10867255181074142, 0.6111723780632019, 1.2705698013305664, -0.7865809202194214, -0.5658290982246399, 0.8264220356941223, 0.6304815411567688, -1.1039221286773682, -0.2814882695674896, 0.33710208535194397, 0.2653002440929413, -0.5548049807548523, 0.04570821300148964, 0.8345341682434082, -0.9409414529800415, 0.3747967779636383, -0.1149340346455574, -0.08468741178512573, -0.2023490071296692, -0.5984501838684082, -1.6110726594924927, -0.4726727306842804, -0.6454499363899231, -0.4488157629966736, 0.5767198204994202, -0.7506507039070129, -0.9138852953910828, -0.3686307370662689, 0.05174756050109863, 0.14923566579818726, -0.03214147686958313, 0.037529658526182175, -0.3060947358608246, -0.30707037448883057, 1.871910810470581, -0.23894526064395905, 1.0546029806137085, -0.06903799623250961, -0.18176710605621338, 0.02316359244287014, -0.05797488987445831, -0.228787362575531, 0.04154670238494873, 0.26413723826408386, -0.6209182739257812, 0.16416555643081665, -0.40846747159957886, -0.2447177767753601, 0.3253440856933594, -0.2097276747226715, 0.20076078176498413, -0.591088056564331, -1.0318140983581543, 0.6880998015403748, 0.7439917922019958, -0.2311573177576065, -0.4597312808036804, -0.8519189953804016, -0.8529258370399475, 0.3914773166179657, -0.5857734680175781, 0.22895079851150513, -0.583125114440918, 0.8980972170829773, 0.6406363844871521, -0.9465550184249878, -0.5718305706977844, -1.030281662940979, 0.9495546221733093, 0.1387467384338379, 0.5042203664779663, -0.0672699585556984, 0.20083379745483398, 0.04256730526685715, -1.2099688053131104, -0.5951896905899048, -0.15693241357803345, -0.2746284306049347, 0.38876935839653015, -0.8575990200042725, 0.11604388058185577, -0.6430335640907288, -0.004285167902708054, 0.5531114339828491, 0.2209642380475998, 0.727091908454895, 0.3832550346851349, -1.6678540706634521, -0.1371716409921646, 0.4758688807487488, 0.7722764611244202, 0.756604790687561, 1.5385289192199707, 0.8451356291770935, 0.29940301179885864, 0.14575760066509247, 0.3018321096897125, 0.657226026058197, -1.1071110963821411, -0.28089624643325806, -0.8295450806617737, -0.3296565115451813, 0.1483272761106491], [0.529283344745636, 1.777596116065979, -2.231405019760132, -0.4371163845062256, 0.6981003880500793, -0.5900915861129761, 0.3602549135684967, -0.18411624431610107, 0.17992709577083588, -1.3284322023391724, -0.4726830720901489, 0.5274671912193298, 0.37142908573150635, 1.1287740468978882, 0.1723109781742096, -0.04580159857869148, 0.5019378662109375, -0.0017238417640328407, 0.1959438920021057, 0.8117348551750183, 0.014321304857730865, -1.7640070915222168, -0.41136011481285095, 0.6957665085792542, 0.2728911340236664, -0.4741354286670685, -1.2819887399673462, -0.6428653001785278, -1.5447137355804443, -1.2865817546844482, 1.10051691532135, 0.03447801247239113, -0.24315394461154938, 0.4109814763069153, -1.020035982131958, -0.6669421792030334, -0.020842012017965317, -0.1402151733636856, -0.4840123951435089, 0.69529789686203, 1.169460415840149, 1.0184242725372314, -0.8663296103477478, -1.8561207056045532, 0.6213609576225281, -0.38482964038848877, 1.3083797693252563, -1.0231682062149048, 0.8267298936843872, -2.0499813556671143, -0.1474127322435379, -0.14763705432415009, 0.11578574031591415, 0.9329971671104431, 1.170278787612915, -1.1589525938034058, 0.17436937987804413, 0.30577853322029114, -0.1645761877298355, 0.1445881873369217, 0.6669508218765259, 0.2249913066625595, 0.6321002840995789, 0.7200407385826111, 0.5522763729095459, 0.228913813829422, 0.9326238632202148, -0.2469618022441864, 0.2369266301393509, -0.45694664120674133, 0.5822687745094299, 0.359366774559021, -0.6282452344894409, 0.7120192646980286, -0.3436562120914459, 0.21513690054416656, 0.493226557970047, 0.32114535570144653, -0.6826983094215393, 0.856585681438446, 0.1492006629705429, -0.4845096468925476, -0.16560806334018707, -0.9320439100265503, -0.10870122164487839, 0.3189989924430847, -0.1805996596813202, 0.23012419044971466, -0.1164267286658287, 1.1106655597686768, 0.3425861895084381, -0.10878568142652512, 0.6403477787971497, -0.22645725309848785, 0.2088855803012848, -0.9049047231674194, -0.33503997325897217, -1.0730786323547363, -0.7034355998039246, 0.1291164755821228, -0.930592954158783, -1.2668790817260742, 1.0596431493759155, 0.7162429094314575, 0.10180847346782684, 1.4127565622329712, -0.4046684503555298, -1.0788098573684692, 0.14316117763519287, 0.019822610542178154, 0.19883723556995392, -1.1804773807525635, -0.8011431097984314, -1.8445887565612793, 0.34062522649765015, 0.9093312621116638, 2.0063157081604004, 0.23878170549869537, 0.9947343468666077, 0.4333764910697937, -0.5983856320381165, -0.6018396615982056, -0.8648263812065125, 0.5235459804534912, 1.3301634788513184, -0.5644363164901733, -0.6210448145866394, -0.4329858124256134, 0.5240633487701416, -0.09322740882635117, -0.09260711073875427, 0.023346666246652603, -0.4756932258605957, 0.7042363882064819, 0.24068337678909302, 1.3446530103683472, 0.10784821957349777, -0.9583316445350647, 0.28824129700660706, 0.8018147945404053, 0.3588191866874695, -0.4088488519191742, 0.0687498226761818, -0.5786935687065125, -0.02323964610695839, -0.07345763593912125, -0.02123439311981201, -0.07772257924079895, -0.6826692819595337, 0.7580647468566895, -1.4035152196884155, -0.49143683910369873, -0.5356159806251526, 0.744627833366394, 0.7845311760902405, 0.03923296183347702, -0.22864815592765808, -0.32311028242111206, 0.2528128921985626, 0.04952521622180939, 0.6808951497077942, -0.24431410431861877, -0.6212717890739441, 0.8637309670448303, 0.4100182354450226, -0.4819081127643585, 0.6212136149406433, 0.13343480229377747, -0.33476853370666504, 0.5111857652664185, -0.2802669107913971, -0.3949710726737976, -0.9357203245162964, 0.0022412813268601894, 0.15928606688976288, -0.34223997592926025, 1.0526220798492432, -0.4999617040157318, -0.8802192807197571, -1.0315179824829102, 1.0249497890472412, -0.41147223114967346, 0.7461709976196289, -0.345464289188385, 0.33031368255615234, 0.2868092358112335, 0.5073620080947876, -0.4710387587547302, -0.639151394367218, -1.1942535638809204, -0.08340699225664139, -0.8937990069389343, -1.0615712404251099, 0.6678644418716431, -0.8314374685287476, -0.5741541385650635, 0.4241439402103424, 0.040629152208566666, -0.2102908492088318, 0.21526923775672913, 0.3739624321460724, -0.12477215379476547, -1.5570383071899414, 0.2654419541358948, 0.18821333348751068, 0.5642646551132202, 0.2501348555088043, 0.31004059314727783, -0.621213972568512, 0.09377254545688629, 1.6226911544799805, -0.6038832664489746, -1.4212117195129395, 1.014397382736206, 0.121945321559906, -1.0746266841888428, 0.8430598974227905, -0.060268040746450424, -0.10351934283971786, -0.10803411155939102, -0.12562119960784912, 0.3315684497356415, -0.08064288645982742, -1.032779335975647, -0.015535637736320496, 0.13894782960414886, -0.6961535215377808, -1.610395908355713, -0.4551469683647156, -0.027571920305490494, -1.0395981073379517, -0.7601747512817383, 0.42414820194244385, 0.7881050109863281, -1.2798166275024414, 0.5739898085594177, 0.2729811370372772, 0.9554727673530579, 0.3204593062400818, 0.54783034324646, 0.7381147742271423, 0.7441215515136719, -0.22870731353759766, 0.22715197503566742, -0.7630503177642822, -0.5874525308609009, 0.6433262228965759, -0.45329779386520386, 0.16406886279582977, 1.6839046478271484, 0.9568126797676086, 0.08042626082897186, 0.0621931254863739, 0.22127634286880493, -0.03758317977190018, -0.8214355707168579, -0.07994308322668076, 0.38705018162727356, -0.9425302743911743, 1.0312594175338745, 0.6962003111839294, -1.295491099357605, -0.45212990045547485, -0.2221098691225052, 0.16507893800735474, -0.42814207077026367, -0.40888020396232605, -1.1694685220718384, 0.5776873826980591, -0.33072078227996826, -0.29487767815589905, 0.25937697291374207, 0.16148117184638977, 0.833008885383606, -0.3929401636123657, -0.4273856580257416, 0.9839159250259399, 0.35767170786857605, 0.32581567764282227, 0.7863816022872925, -0.9875501990318298, -1.0902316570281982, -1.445202112197876, 0.46978482604026794, 0.09471201151609421, -0.14842747151851654, -0.26701098680496216, 0.9955323934555054, 0.7429524660110474, -0.1361914724111557, 0.048545993864536285, -0.6342526078224182, 0.641236424446106, -0.6717370748519897, 0.801183819770813, 0.28303202986717224, 0.5003225803375244, -0.43819767236709595, -0.4805590510368347, -0.751533567905426, 0.5764667987823486, 0.8219207525253296, 0.7741528153419495, 1.4714829921722412, -0.5949717164039612, -0.00016672443598508835, -0.36088827252388, 0.03290024772286415, -0.16886594891548157, 0.5109575986862183, 0.10174276679754257, -0.6159453988075256, -0.3556785583496094, -0.430550754070282, -0.16100747883319855, 0.4200294315814972, -0.16128845512866974, 1.3177392482757568, 0.35793519020080566, 0.019149918109178543, -1.3397984504699707, -0.719451367855072, -0.6113576889038086, -0.9537661075592041, 0.6981897950172424, 1.1995880603790283, -1.1912007331848145, 0.5158299207687378, 0.24774613976478577, 0.007038983516395092, -0.03538966178894043, 0.700273871421814, 0.2568415105342865, -1.3263541460037231, 0.02098015882074833, 0.0515548475086689, 1.2763639688491821, 0.6449270248413086, -0.4994822144508362, -0.2012423872947693, 0.8101553320884705, 0.17126193642616272, -0.7934517860412598, -0.8828374743461609, 0.7613084316253662, -0.43452051281929016, 0.23012611269950867, -0.5565196871757507, 0.3735242187976837, 0.5774341821670532, -0.9558819532394409, -0.43824031949043274, -0.25549963116645813, -0.14569923281669617, -0.41350051760673523, 0.028846079483628273, 0.07980265468358994, 0.6459868550300598, 0.3364603817462921, 0.2604750692844391, 1.0000272989273071, 0.2988559901714325, 0.09908659756183624, -0.5395143628120422, 0.5510013103485107, 0.231537863612175, 1.9870381355285645, 0.33012208342552185, 0.4871467351913452, 0.053818557411432266, -1.0681092739105225, -0.5698899626731873, 0.6638150811195374, 0.9420853853225708, -0.23591248691082, -0.7414833903312683, -0.5144739151000977, -0.44129329919815063, -0.3175913095474243, 0.07977787405252457, -0.4641363322734833, -0.23565636575222015, -0.5084084868431091, -0.5539388060569763, 1.2354419231414795, 1.0048877000808716, 0.3247770071029663, -0.9291442036628723, 0.04645572602748871, 0.32625794410705566, -0.7579398155212402, 0.6598702073097229, -0.3562958240509033, -0.458610862493515, 0.8424984216690063, -0.2931683659553528, -1.0119167566299438, -0.4990650713443756, -0.043227940797805786, 1.5957499742507935, -1.8176372051239014, -0.07027559727430344, -0.03530336171388626, 0.19917836785316467, 1.0700677633285522, 0.5911745429039001, 0.6087769269943237, 0.4311509132385254, 0.4488808512687683, 0.07468437403440475, 0.8832243084907532, 1.2347934246063232, -0.2020082175731659, -0.22848770022392273, -0.07686448842287064, 0.13152474164962769, 0.5236838459968567, -1.222127079963684, -1.05825674533844, 0.4742569327354431, -0.5571457743644714, 0.10921689867973328, -0.21691463887691498, 0.22189536690711975, 1.4125680923461914, 0.26789388060569763, 0.3288784623146057, 0.1808302253484726, 0.6041762232780457, -0.3023304045200348, -0.3190751373767853, 0.17728425562381744, -1.2051537036895752, -0.2749515473842621, 0.21567299962043762, 0.37264707684516907, 0.6086418032646179, 0.2098798006772995, 0.5981932878494263, 0.9929490089416504, 0.619361162185669, 0.17036795616149902, -0.691021203994751, 0.41078558564186096, 1.1069880723953247, 1.043913722038269, 0.680070161819458, -0.08576942980289459, -0.9245871305465698, 1.9681243896484375, -0.3013067841529846, 0.01915881596505642, 1.1040363311767578, 0.4011821150779724, 1.053246021270752, -0.9073876142501831, -0.5392833352088928, 0.5948002934455872, 0.28302985429763794, 0.05600791797041893, -0.7232152819633484, 0.5178641676902771, 0.14914782345294952, 0.11201466619968414, 0.827401340007782, -0.513611376285553, 0.9266217350959778, -0.13078425824642181, 0.7112016677856445, -0.18193396925926208, -0.7858514785766602, 0.28541305661201477, -1.587617039680481, -0.20313480496406555, -0.2575279474258423, 0.2569773495197296, 1.2013239860534668, 0.6889523267745972, 0.5654489398002625, 1.1315654516220093, -0.017473358660936356, -1.1180448532104492, 0.012772220186889172, -0.7423231601715088, 0.42166104912757874, -0.913622260093689, 0.38698962330818176, -0.8364193439483643, -0.4648905098438263, 0.17763425409793854, -0.4674246907234192, 0.004513752181082964, -0.08748728781938553, -0.061415430158376694, -0.16836392879486084, 0.2417161762714386, 0.728285551071167, 0.2523396909236908, -0.24609270691871643, 0.55548095703125, 0.7134325504302979, 0.4184228181838989, -1.1755900382995605, -0.04704843834042549, 0.6422684788703918, -0.006037639919668436, -0.4131728410720825, -0.32887840270996094, -0.8318613171577454, 0.4749329388141632, 0.7595924735069275, -0.6415053606033325, 0.20213940739631653, 0.7062864303588867, 1.6082940101623535, -0.6615599989891052, -1.145062804222107, 0.41177091002464294, -0.3442063331604004, 0.6775617599487305, 0.2657434940338135, -1.2431098222732544, 0.1724463701248169, -0.5444082617759705, -1.8140287399291992, 1.7777975797653198, -0.1370764523744583, 0.39435189962387085, 0.9896835088729858, 0.9830172657966614, 0.030822481960058212, 1.068548321723938, -0.27451708912849426, 0.6463091969490051, 0.05818258970975876, 0.019542807713150978, -0.6954532265663147, 0.8271361589431763, 1.1508406400680542, -0.14043280482292175, -1.399189829826355, 0.3210969567298889, 0.35190731287002563, -0.23425878584384918, 0.10790847986936569, 0.0911419615149498, 0.5644069910049438, 0.31868231296539307, -0.1163366287946701, -1.0651071071624756, 0.6286212205886841, -0.7645120620727539, 0.43923625349998474, 0.7006645202636719, -0.2045779526233673, 1.0050534009933472, 0.24445614218711853, 0.5513655543327332, -0.5775145888328552, -0.510343611240387, 0.05729149281978607, -1.4807366132736206, 1.2819558382034302, 0.830734372138977, 0.27868926525115967, 0.46395018696784973, -0.3131720721721649, -1.4167728424072266, -0.30806219577789307, -0.5728585720062256, 0.95635586977005, -0.7675740122795105, -0.9601601362228394, -0.9081007242202759, -0.8582347631454468, -0.04750354588031769, 0.8567890524864197, 0.3252195417881012, -0.9101584553718567, -0.9718698263168335, -0.14564259350299835, 0.35270896553993225, 0.9440844655036926, -1.0910899639129639, 0.21231579780578613, -0.1809171587228775, -1.5719422101974487, 0.3130834102630615, 0.6032695770263672, -1.424250602722168, -0.7230417132377625, -1.007979393005371, 0.720781147480011, 0.5155615210533142, -0.8344572186470032, 0.42347559332847595, 0.8561023473739624, -0.9579421281814575, -0.7443863749504089, -0.9008241891860962, -0.5665503144264221, -0.32813405990600586, 0.7982804179191589, -0.3891195058822632, 0.7966756820678711, -0.9203503131866455, -0.02152649126946926, -0.3927473723888397, 0.47897619009017944, -0.9887900352478027, -0.042473480105400085, -0.12630952894687653, 0.17579255998134613, -0.4817064702510834, 1.3005549907684326, 0.9212307929992676, 1.0021330118179321, 0.13042721152305603, 1.5183355808258057, -0.4462451934814453, -0.49571672081947327, -0.182966411113739, 0.6445950269699097, -0.8186913132667542, -0.4593225419521332, 0.08240850269794464, -0.856704592704773, -0.6328145265579224, -0.059154413640499115, 0.7527234554290771, -1.448789358139038, 0.7549104690551758, -0.5071024298667908, -0.12771360576152802, -0.5445398688316345, 0.3873920440673828, 0.7543158531188965, -0.23641614615917206, 0.01721153035759926, -0.5739631056785583, 0.36321336030960083, -0.6935279369354248, 0.45896121859550476, 0.748447597026825, 0.7531255483627319, 0.08507968485355377, 0.1540931612253189, 0.5417753458023071, 0.2698271870613098, -0.5604487061500549, 1.0774544477462769, 0.6417823433876038, -0.25608277320861816, 0.034487009048461914, 0.5489234328269958, 0.06557857990264893, 0.2071988731622696, -0.1307019144296646, -0.7161892652511597, -0.6466512084007263, 0.5491270422935486, -0.17029103636741638, 0.95968097448349, -0.6796301007270813, 0.6448642015457153, -0.020228099077939987, 0.8424146771430969, 1.107730507850647, -0.49278801679611206, -0.003350885584950447, 0.9450220465660095, 0.44194844365119934, -0.46384504437446594, -0.08062362670898438, 0.474032998085022, 0.234438955783844, 0.732621431350708, 0.6692705154418945, 0.5356311798095703, -0.42320865392684937, 0.22469857335090637, 0.8550353646278381, -0.4774613082408905, -0.6853563189506531, -0.06992843002080917, -0.9627870321273804, -1.0207489728927612, -0.1604115217924118, -0.5971438884735107, -0.21579895913600922, -1.2143713235855103, -0.950569748878479, 0.5684590935707092, -0.5972971320152283, -0.15587936341762543, -0.4093417823314667, -0.6720660924911499, -0.3045380711555481, -0.6041276454925537, 0.9105282425880432, -0.36001259088516235, 1.0028349161148071, 0.25466471910476685, 0.47712182998657227, -0.28962644934654236, 0.08398765325546265, -0.19428503513336182, -0.0991937667131424, -0.10551069676876068, -0.6017253398895264, 0.005205394700169563, -0.6978960633277893, -0.11183930188417435, 0.05574502795934677, -0.637756884098053, 0.13788361847400665, -0.5242968201637268, -0.41957464814186096, 0.41950735449790955, 0.7450358867645264, -0.014497363939881325, -0.39357346296310425, -0.869627833366394, -1.1178410053253174, 0.35339829325675964, 0.10510414093732834, 0.9153594970703125, -0.1879088431596756, 0.8279122710227966, -0.20212624967098236, -0.9783636331558228, -0.358448326587677, -0.42433446645736694, 0.7092001438140869, -0.6915029883384705, 0.15281252562999725, -0.6127517223358154, -0.42350712418556213, 0.5962274074554443, -0.8043931722640991, 0.287678062915802, -0.09445653110742569, -0.2731209695339203, -0.11168154329061508, -0.5538089275360107, -1.1050047874450684, -0.3575630486011505, 0.0189411249011755, 0.4799179136753082, 0.7949811220169067, 0.8092595934867859, -0.5794654488563538, -0.7353392243385315, -0.25694552063941956, 0.9043958187103271, 0.6773070693016052, 0.7758685350418091, 1.1277655363082886, 1.2329058647155762, -0.223336860537529, -0.19209440052509308, -0.06871874630451202, -0.02446024678647518, -0.9937075972557068, 0.12880104780197144, -1.0207018852233887, -0.005575112532824278, 0.34206056594848633], [0.9876706600189209, 0.8324131369590759, -2.8793222904205322, -0.6578991413116455, 1.3979294300079346, -0.1432350128889084, 0.7877103090286255, 0.03503141552209854, -0.6995338201522827, -1.1091524362564087, -0.7884939908981323, 0.025787310674786568, 0.0795583426952362, 0.20693428814411163, 1.2233221530914307, 0.09816166013479233, 1.1594915390014648, 0.6167402863502502, 0.07665283977985382, 0.6459512710571289, -0.47315698862075806, -1.4503270387649536, -0.3032786548137665, 0.45536714792251587, -0.22785884141921997, 1.5577994585037231, -0.5456250905990601, -0.175740048289299, -1.2317570447921753, -0.5088061094284058, 1.4507105350494385, -1.000914216041565, 0.7951673269271851, -0.15877631306648254, -2.115161895751953, 0.2890744209289551, 1.5316739082336426, 0.8133525848388672, 0.5564924478530884, -0.5963462591171265, 2.2789711952209473, -0.03508258983492851, -0.08860352635383606, -1.930678129196167, -0.5834077000617981, 0.857420802116394, 0.6419271230697632, -0.4925646185874939, 0.06666533648967743, 0.08413400501012802, 0.18408913910388947, -0.7945425510406494, -0.47015389800071716, 0.9857504367828369, 1.1866393089294434, -0.796947717666626, 0.46457910537719727, 0.10017777979373932, 0.1459837257862091, -0.3509034514427185, 0.5494813919067383, -0.1668175309896469, 0.006508302874863148, 0.6377063989639282, 0.4011205732822418, -1.129871129989624, 0.1130816861987114, 0.5319966077804565, 0.3011971414089203, 0.833979606628418, 0.3286449909210205, -0.8964589834213257, -0.7716138362884521, 1.2633569240570068, -1.1502505540847778, 0.2178129255771637, 0.3713234066963196, 1.0140974521636963, 0.4258238971233368, 0.0950813814997673, -0.9457168579101562, 0.5991033315658569, 1.0249993801116943, -0.5594070553779602, -0.10905928909778595, 0.7441089153289795, 0.582192599773407, -0.8662866950035095, -0.15092864632606506, 1.8331422805786133, -0.08749961853027344, 0.8507885932922363, 0.057226795703172684, 0.10662829130887985, -0.8519163727760315, 0.01923477277159691, 0.4926633834838867, -1.1519461870193481, -0.3014865517616272, -0.39025676250457764, -0.4147697687149048, -1.0145082473754883, 0.08639083802700043, 0.4243469834327698, 0.19824042916297913, 0.4460347890853882, 0.1383979171514511, -0.3130761981010437, 0.09228971600532532, -0.0014919470995664597, -0.9127863645553589, 1.0310344696044922, -0.24043118953704834, -1.491687536239624, -0.1789221465587616, 1.0077729225158691, 1.0058624744415283, 0.36416107416152954, 0.41292303800582886, 0.836030125617981, -0.3577069044113159, -0.05552700161933899, -0.3001289367675781, 0.18012285232543945, 0.6255120635032654, -0.4909971058368683, -1.1295959949493408, -0.05661028251051903, 0.5496236085891724, -0.07109606266021729, 0.40759989619255066, -0.22423997521400452, 0.10262961685657501, 0.8423427939414978, -0.7553443312644958, 0.5207365155220032, -1.3899219036102295, -0.79167640209198, 0.05794353783130646, -0.1572745442390442, 0.8570114970207214, -0.18117676675319672, 0.022610696032643318, -0.41801175475120544, -0.28743577003479004, -0.441381573677063, 0.4947250485420227, -0.9316903352737427, -0.9367592334747314, 0.15752682089805603, -1.052929162979126, 0.3006439507007599, 0.149264395236969, 1.3513991832733154, 0.5172721147537231, -0.24199789762496948, -0.42074310779571533, 0.1308877319097519, -0.08256708085536957, 0.3734726905822754, -0.3820202350616455, -0.3595256507396698, -1.0129354000091553, 0.17724443972110748, 0.7346364855766296, -1.0318238735198975, -0.14339667558670044, 0.8149901628494263, 0.39695054292678833, 1.542586088180542, -0.36412087082862854, -0.7701443433761597, -0.7461977005004883, -0.49661314487457275, 0.4113711714744568, -0.27728691697120667, 1.4779613018035889, 0.18345525860786438, -0.708533525466919, -0.8121827840805054, 0.7877197265625, 0.19999626278877258, 0.9851524829864502, -0.43101438879966736, 0.5888046026229858, -0.1717013120651245, 0.18501216173171997, -0.539592981338501, -0.46835169196128845, -0.7261017560958862, -0.8272457122802734, -0.4391719698905945, -0.676404595375061, 0.5006812214851379, -0.2865273356437683, -1.126412034034729, 0.7287704944610596, -1.0170053243637085, -0.3659731149673462, 0.3065410852432251, 0.1053599864244461, -0.4391423463821411, -0.3397373557090759, -0.4720783531665802, -1.1970605850219727, 0.20356597006320953, -0.9465467929840088, 0.447881817817688, -0.5818580985069275, -0.887914776802063, 0.22196803987026215, -0.33153295516967773, -0.7381088137626648, 1.3091144561767578, -0.010520145297050476, -1.517677664756775, 0.6060184240341187, 0.19628265500068665, -0.3740503191947937, -0.5441226959228516, -0.370134562253952, -0.04431906342506409, 1.2094104290008545, -0.4140707850456238, 0.37457430362701416, -0.1328326165676117, 0.13911648094654083, -1.0925967693328857, -0.5277440547943115, -0.3977225422859192, -0.5988720059394836, -1.320197582244873, 0.6843120455741882, 0.08893799036741257, -1.418917179107666, 0.06301458179950714, -0.02381560578942299, 0.25752824544906616, -0.2694433629512787, 0.8251149654388428, 0.8181815147399902, 0.8049597144126892, -0.05149056762456894, -1.2803908586502075, -0.44777911901474, 1.127800703048706, 0.9872888326644897, -0.9706515073776245, -0.002296753227710724, 0.7289556860923767, 0.3141480088233948, -0.44714853167533875, 0.4556366503238678, -0.5951701998710632, 0.0805397629737854, -0.9525023698806763, -1.0421042442321777, -0.25158101320266724, -1.1334731578826904, 1.6853513717651367, 0.6907175779342651, -0.8917099237442017, 0.19027701020240784, -0.2662518322467804, -0.336509644985199, -0.46010416746139526, -0.3302091062068939, -0.5719150304794312, 0.24520288407802582, -0.12824900448322296, 0.1633186787366867, 0.09358078241348267, 0.05061463266611099, 0.7803281545639038, -0.4542834758758545, -0.576572060585022, -0.3146595060825348, 0.5716627836227417, -0.14075259864330292, 0.939865231513977, -0.30271828174591064, -0.8110654354095459, -0.4831685423851013, 0.3302972614765167, 0.2973054051399231, 0.32095474004745483, -0.4116467833518982, 0.7475977540016174, 0.9051905274391174, 0.22940969467163086, 0.43928125500679016, 0.9269957542419434, -0.42142337560653687, 0.57546067237854, 1.1373984813690186, 0.012684605084359646, 0.8514830470085144, -0.8567523956298828, -0.9446820020675659, -0.6217027306556702, 0.23789331316947937, 1.5938012599945068, 0.4757140874862671, 1.693467378616333, -0.18656302988529205, -0.2067272812128067, -0.5517213940620422, -0.5897480249404907, -0.6693121790885925, -0.49188053607940674, 0.18298855423927307, -1.4463202953338623, -0.666240930557251, -0.47356295585632324, 0.19271910190582275, 0.7574833631515503, 0.8180287480354309, 0.5441108345985413, 0.4554424583911896, -0.40680211782455444, -0.30033189058303833, -0.5783595442771912, -0.04316118359565735, -1.0189673900604248, 0.009252430871129036, 1.2336633205413818, -1.2448993921279907, 0.5849652290344238, -0.7315424680709839, -0.27269500494003296, 0.9867961406707764, -0.6383042931556702, 0.5055832862854004, -1.0952467918395996, -0.5753096342086792, 0.12892326712608337, 0.5418992042541504, -0.06806286424398422, 0.1754799485206604, -0.31347161531448364, 0.36479559540748596, 0.17807473242282867, -0.047003429383039474, -0.6510612368583679, 1.3698699474334717, -0.9602609872817993, -0.9283169507980347, -0.4962601363658905, 0.6665099263191223, 0.08831720054149628, -0.46934056282043457, -0.8562062978744507, -1.054874062538147, 0.20766358077526093, -0.4055064916610718, -0.21315759420394897, 0.03434455022215843, 0.2529923915863037, -0.12477480620145798, 1.203001618385315, 0.4807201623916626, 0.05267893522977829, -0.2008642554283142, -1.1432981491088867, 0.63059401512146, 1.5279183387756348, 2.0373716354370117, 0.9889190196990967, 0.3736332058906555, 0.22278979420661926, -0.1270517259836197, 0.6055797934532166, -0.2819984555244446, 0.965814471244812, -0.2755542993545532, -0.2119356393814087, -0.211390420794487, -0.38350504636764526, -0.11223433911800385, 0.8010473251342773, 0.8621945381164551, -0.21204964816570282, 0.02934500202536583, 0.34286099672317505, 1.5795419216156006, -0.2157275676727295, -0.4200921356678009, -0.5016849040985107, 0.07235097885131836, 1.1103639602661133, -1.4769792556762695, -0.5498745441436768, -0.31106460094451904, 0.0069613344967365265, 0.5540508031845093, -1.2028388977050781, 0.19382750988006592, 0.5872498750686646, -0.20894044637680054, 1.0184898376464844, -0.7997573018074036, -0.3541874289512634, -0.11130397766828537, 0.6986157894134521, 0.26986515522003174, -0.030279580503702164, -0.08432590961456299, 0.435960590839386, -0.7336785793304443, 0.29808852076530457, 0.24562552571296692, 1.562159538269043, -0.11185916513204575, -0.23910966515541077, 0.47716861963272095, -0.6868723034858704, 0.8462197780609131, -0.4199689030647278, -0.4663182497024536, -0.2874116599559784, -0.3392678499221802, -0.06925512850284576, 0.34604182839393616, 0.12571552395820618, 2.240083694458008, 0.28291624784469604, 0.29119521379470825, 0.034878067672252655, 0.48731493949890137, -1.134443759918213, 0.19437554478645325, 0.3576633036136627, 0.4191616177558899, -0.39158517122268677, 0.6369733810424805, 0.20524364709854126, -0.05517255514860153, 0.12896233797073364, -0.8387530446052551, 0.18350300192832947, -0.12498732656240463, -0.20538964867591858, 0.9179202318191528, 0.6691544055938721, 1.2029948234558105, 0.7020246386528015, 0.9705967903137207, -1.0542041063308716, -0.891524076461792, 0.8468866348266602, -0.07386627048254013, 0.5185453295707703, 0.9828379154205322, 0.7117762565612793, 1.229062557220459, -1.8689250946044922, 0.026720209047198296, 1.0027557611465454, -0.13396596908569336, 0.9688389897346497, 0.6092179417610168, -0.4743669927120209, -0.2930763363838196, 0.20200170576572418, 0.6227808594703674, -0.05984639376401901, 0.21520783007144928, 0.5413429737091064, 0.20404261350631714, 1.4538288116455078, -0.23252859711647034, 0.22163528203964233, -0.5580253601074219, -0.6318535208702087, 0.07218952476978302, -0.20412790775299072, 0.09481201320886612, 0.45943209528923035, 0.07386184483766556, 0.9428696632385254, 0.434385746717453, -1.1868020296096802, -0.06994122266769409, -0.23843564093112946, 0.698302149772644, -0.6453834176063538, -0.7550410628318787, -1.092254400253296, -0.31316685676574707, 0.06777868419885635, -0.26712605357170105, -0.94933021068573, -0.40686386823654175, -0.45791512727737427, -0.8282894492149353, 0.7063205242156982, 0.8236665725708008, -0.07996794581413269, 0.27457544207572937, -0.322534441947937, -0.11144295334815979, 0.2312052994966507, -0.21894557774066925, -0.2228975147008896, -0.07512693107128143, 0.19650256633758545, 0.2246645838022232, -1.199570894241333, -0.7637363076210022, -0.2902913987636566, 0.8365561962127686, 0.18835298717021942, 0.3921375274658203, 1.2368745803833008, 1.563609004020691, 0.5158115029335022, 0.16830669343471527, 0.509269118309021, -0.4855276644229889, 0.48842698335647583, 0.8884658813476562, 0.1874319612979889, 0.2343321144580841, -0.6798120737075806, -1.2129085063934326, 0.7671151161193848, -0.006186366081237793, -0.7383059859275818, 0.4823054373264313, 0.274874210357666, 0.19392351806163788, 0.23920699954032898, -0.44596147537231445, 0.3908989429473877, -0.3095518946647644, -0.5827338099479675, -0.6461755037307739, 0.7712570428848267, 0.5516498684883118, -0.017068158835172653, -0.2791042625904083, -0.1536567509174347, -0.5395808815956116, -0.03854283690452576, -0.488999605178833, 0.7713638544082642, 0.04270893707871437, 0.37084081768989563, -0.04770816117525101, 0.10043581575155258, 0.44122129678726196, -0.4312959909439087, -0.28657829761505127, -0.29136237502098083, 0.44675537943840027, 0.8191916346549988, 0.4452475905418396, 0.6014251708984375, -0.5419310927391052, -0.508155107498169, -0.6702800989151001, -0.06066185608506203, 0.7045320272445679, 1.0703089237213135, 0.5552115440368652, 0.47520673274993896, -0.6810144782066345, -0.12575861811637878, -0.4165157079696655, 0.5124810934066772, 1.9671658277511597, -0.6192066669464111, 0.10239222645759583, -0.3247903287410736, -0.6979029178619385, 0.2506428360939026, -0.2817729711532593, 0.6568926572799683, -1.0517531633377075, -1.4395701885223389, -1.799336314201355, -0.10496009886264801, 0.7161999940872192, -0.3192724883556366, 0.8561339378356934, 0.14119496941566467, -1.1564233303070068, 0.32100534439086914, 0.36065760254859924, -0.39740151166915894, 0.434865802526474, -1.4190170764923096, 0.3590858578681946, 0.6366234421730042, 0.6278972625732422, -0.5519239902496338, 1.0778882503509521, -1.521545171737671, -1.7792004346847534, -0.5813188552856445, 0.698445200920105, 1.0650063753128052, 0.5492614507675171, -1.4965202808380127, 1.5266997814178467, 0.016073256731033325, 0.052193693816661835, -0.38281646370887756, -0.31265169382095337, -0.26183438301086426, 0.3305504024028778, 0.18541398644447327, 0.9952554702758789, 0.23343077301979065, 1.4050540924072266, 0.200236976146698, 0.6680158376693726, 0.685280978679657, -0.08141452819108963, -1.1441240310668945, 0.008829042315483093, 0.20448166131973267, 0.9602909088134766, -0.46405577659606934, -0.5362012386322021, -0.1494426727294922, -0.4164119064807892, -0.5654077529907227, 0.1683332920074463, 0.859323263168335, -0.4525594711303711, 0.5737826228141785, -0.4348157048225403, 0.11522458493709564, -1.1394208669662476, 0.8534332513809204, 0.23376122117042542, -0.003035183995962143, -0.35431617498397827, 0.0027637779712677, 0.06638262420892715, -0.9174411296844482, -0.04992023482918739, 0.0480152890086174, -0.35845768451690674, -0.6020634174346924, 0.6020790338516235, -0.11170613020658493, 0.4569469690322876, -0.12722477316856384, 1.3560740947723389, 1.1565136909484863, -0.19728219509124756, 0.3435670733451843, -0.3987942337989807, 0.015118511393666267, -0.3270905315876007, -0.615084171295166, -1.3905999660491943, -0.5252599120140076, 0.4007936716079712, 0.4725446105003357, -0.19381123781204224, -0.14399990439414978, -0.07801283150911331, 0.3462798595428467, 0.47522950172424316, 0.9230031967163086, -0.9706296920776367, -0.4945090413093567, 0.8098250031471252, 0.4001767039299011, -0.48690134286880493, 0.06054473668336868, -0.06155642867088318, 0.04427281767129898, 0.008069571107625961, 0.20442143082618713, 0.35786426067352295, -0.8054747581481934, 0.17969736456871033, 0.40563762187957764, 0.47621482610702515, 0.005941152572631836, -0.12759117782115936, -1.7281148433685303, -0.32714998722076416, -1.3091638088226318, -0.0740974098443985, 1.0121320486068726, -1.1976654529571533, -0.8351417183876038, -0.06484188884496689, 0.5103741884231567, -0.09906141459941864, 0.26044437289237976, 0.1808270663022995, 0.7727693915367126, -0.4866384267807007, -0.1529739499092102, -0.648970365524292, 0.5337661504745483, 0.09630037099123001, 0.08095252513885498, -0.38866549730300903, -0.25473570823669434, 0.5843372344970703, -0.07917490601539612, 0.01638716273009777, -0.540261447429657, 0.767605721950531, -0.4747272729873657, -0.4778299331665039, 0.08552289009094238, 0.7031859159469604, 0.3881824016571045, -0.19049522280693054, -1.2354791164398193, 0.48990368843078613, 0.7664159536361694, 0.4422331750392914, -0.17760159075260162, -1.1409521102905273, -0.44948214292526245, 0.8751053810119629, -0.7974029779434204, 0.7937047481536865, 0.0685444250702858, 0.08433741331100464, 0.3514993190765381, -0.5357043743133545, -0.7354085445404053, -0.563563346862793, 0.37111419439315796, 0.17528441548347473, 0.17729264497756958, -0.014274386689066887, 0.3468266725540161, 0.00126754492521286, -1.3221514225006104, -0.4937986731529236, -0.10165026783943176, -0.4473956525325775, 0.2907163202762604, -1.0929045677185059, -0.32703858613967896, -0.6986636519432068, 0.3895445764064789, 0.6531765460968018, 0.0188225656747818, 0.7033596634864807, -0.002503514289855957, -1.6961252689361572, 0.2206541895866394, 0.3478800058364868, 0.0025282204151153564, -0.09485065191984177, 1.0672519207000732, 0.9278336763381958, 0.5154945254325867, 0.6821333765983582, -0.31945812702178955, 0.26358842849731445, -1.2703747749328613, -0.17259526252746582, -0.3295879065990448, 0.1225399523973465, -0.7553068399429321], [1.0388292074203491, 1.567883849143982, -2.4904069900512695, -0.515694797039032, 0.915591299533844, -0.6828662157058716, 0.8072577118873596, -0.49948233366012573, -0.5512784719467163, -1.3410911560058594, -0.6843780279159546, 0.20103658735752106, 0.5934271812438965, 0.4005252718925476, 0.8102210760116577, 0.0529228039085865, 0.8523557186126709, 0.8252488970756531, 0.0670025572180748, 0.49173229932785034, -0.11833344399929047, -1.5555636882781982, 0.3480704724788666, 0.11740292608737946, 0.5095639824867249, 0.28425151109695435, -0.8936201333999634, -0.4040434956550598, -1.1524879932403564, -0.9133641719818115, 1.1936594247817993, -0.7594735622406006, 0.19096918404102325, -0.17633868753910065, -1.8780667781829834, -0.1663413643836975, 0.8610876202583313, 0.6707549095153809, 0.43141260743141174, 0.41826969385147095, 2.1485300064086914, 0.09273836761713028, 0.10375551879405975, -1.525869607925415, 0.5142301321029663, -0.3379814028739929, 0.9679683446884155, -0.8250485062599182, -0.09543459862470627, -1.0545649528503418, 0.12444520741701126, -0.7444990873336792, -0.5100642442703247, 1.0151845216751099, 0.7431125640869141, -0.6986055374145508, 0.46136677265167236, 0.4055158197879791, 0.29614540934562683, -0.629552960395813, 0.5275563597679138, 0.6447892785072327, 0.6432119011878967, 0.3771354556083679, 0.08124597370624542, -0.1949702352285385, -0.20342959463596344, 0.5959240198135376, 0.28229066729545593, 0.6615482568740845, 0.48589426279067993, 0.3339070677757263, -0.6986157298088074, 0.4824283719062805, -1.2487846612930298, 0.6592370867729187, 0.7142403721809387, 0.6870344877243042, 0.09254050999879837, 0.7973145246505737, -0.7356147766113281, 0.03570730984210968, 0.10542220622301102, -0.17367422580718994, 0.22337785363197327, 0.6703660488128662, 0.609054684638977, -0.3100167214870453, -0.47640231251716614, 1.4527761936187744, 0.270381361246109, 0.6133929491043091, 0.6002998948097229, -0.5154479742050171, -0.2828904390335083, -0.8128639459609985, 0.026798121631145477, -1.1684327125549316, -0.43388301134109497, -0.3566933572292328, -0.8872619271278381, -1.2115414142608643, 0.25038576126098633, 0.6704908609390259, 0.3299235999584198, 1.079048991203308, 0.7664387822151184, -0.6972936987876892, 0.01341626513749361, -0.13585124909877777, -0.3910919427871704, 0.5022505521774292, -0.9090655446052551, -1.1414953470230103, -0.25243398547172546, 1.09296715259552, 1.5634056329727173, 0.033123619854450226, 0.631136953830719, 1.0505784749984741, -1.145463466644287, -0.48819008469581604, -1.3476792573928833, -0.4522479474544525, 1.6853383779525757, -0.09516526758670807, -1.1219193935394287, -0.04994707927107811, 0.30390357971191406, 0.16219156980514526, 0.7990823984146118, -0.03208659589290619, -0.11587761342525482, 1.0782839059829712, -0.7583678364753723, 1.2204471826553345, -0.21962818503379822, -1.532446026802063, 0.4709548354148865, 0.7088162899017334, 0.5522158145904541, 0.009418941102921963, -0.1255301833152771, -0.6365993022918701, 0.43140682578086853, -0.29341810941696167, -0.29459288716316223, 0.014138449914753437, -0.827534556388855, 0.01859487034380436, -1.409962773323059, 0.44982466101646423, -0.006000312976539135, 0.795179009437561, 0.853362500667572, -0.28494760394096375, -0.339855432510376, -0.04363316297531128, 0.0005037342198193073, 0.1494630128145218, 0.777283251285553, 0.07287537306547165, -1.1359933614730835, 0.44018304347991943, 0.9177548885345459, -0.9714818596839905, -0.10433510690927505, 0.7426918148994446, 0.1288580447435379, 1.0233519077301025, -0.287810355424881, -0.38036301732063293, -1.0030559301376343, 0.14232274889945984, 0.45825594663619995, -0.08478916436433792, 1.946171760559082, -0.0701398178935051, -0.98808354139328, -1.1073633432388306, 0.41975995898246765, -0.08389294892549515, 0.1399025321006775, -0.36196544766426086, 0.39716753363609314, -0.14582878351211548, 0.0626874640583992, -0.2986469268798828, -0.686886727809906, -1.354021668434143, -0.7401875257492065, -0.38647544384002686, -0.8123569488525391, 0.5649935007095337, -0.9661744236946106, -1.1696752309799194, 0.7811055779457092, -0.47058945894241333, -0.33088362216949463, -0.09618942439556122, 0.07007831335067749, -0.6436792612075806, -0.8404765129089355, -0.21552403271198273, -0.48157835006713867, 0.6933198571205139, -1.0004996061325073, 0.18463750183582306, -0.5226917862892151, -0.047991231083869934, 0.7538575530052185, 0.09869899600744247, -1.2976566553115845, 0.9798328876495361, -0.23153136670589447, -1.600525975227356, 0.7648420333862305, 0.27516070008277893, 0.37466269731521606, -0.20700576901435852, -0.06811463832855225, -0.19616767764091492, 0.8354578614234924, -0.37900909781455994, 0.5124250054359436, -0.07592595368623734, -0.5632182955741882, -0.9121177196502686, -0.4104178249835968, -0.2067820131778717, -0.6709931492805481, -0.9999014735221863, 0.6881538033485413, -0.0972195416688919, -0.9290722012519836, 0.4612169861793518, 0.25636908411979675, 0.5674746632575989, -0.08881620317697525, 1.013158917427063, 1.0546190738677979, 0.07052846997976303, -0.5908108949661255, -0.49145328998565674, -0.4573359489440918, -0.06551554799079895, 0.89128178358078, -0.1313430815935135, -0.12039612978696823, 1.3578583002090454, 0.9493868350982666, -0.38309717178344727, 0.7735394835472107, -0.10597545653581619, 0.05215787515044212, -1.344294548034668, -0.0478970929980278, -0.2723359167575836, -0.9665495753288269, 1.0458593368530273, 0.40985947847366333, -1.5663888454437256, 0.07452994585037231, -0.3207652270793915, -0.17717069387435913, -0.49988994002342224, -0.42731404304504395, -0.5113621950149536, 0.31503790616989136, -0.4958314299583435, -0.1460486650466919, -0.13737747073173523, -0.7005917429924011, 0.5786615610122681, -0.9624454975128174, -0.6368018984794617, 0.1176675409078598, 0.6974015831947327, -0.019256968051195145, 0.8133756518363953, -0.4486372172832489, -1.6122287511825562, -1.0461461544036865, -0.01206339243799448, 0.6938650012016296, 0.19868238270282745, -0.803758442401886, 1.2571709156036377, 1.1065839529037476, 0.3545858561992645, 0.015716370195150375, -0.03353815898299217, 0.09152548760175705, 0.049454834312200546, 0.35009005665779114, -0.05819828063249588, 0.42270219326019287, -0.6899184584617615, -0.5418137907981873, -0.5281316637992859, 0.38347846269607544, 1.2231392860412598, 0.5005708932876587, 1.2270606756210327, -0.24547044932842255, -0.403696209192276, -0.25470203161239624, 0.25722426176071167, 0.1626559942960739, 0.04937665909528732, -0.40474215149879456, -1.2590936422348022, -0.1580720990896225, -0.6503004431724548, -0.03496851027011871, 0.7826305031776428, 0.1528290957212448, 0.3914230465888977, 0.9527403116226196, 0.2979084551334381, -1.23517906665802, -0.669984757900238, 0.1727081537246704, -1.2459301948547363, -0.029363656416535378, 1.6158686876296997, -0.7942256927490234, 0.6408369541168213, -0.3255910277366638, 0.09508632123470306, 0.01210043765604496, -0.14384470880031586, 0.42141276597976685, -1.0462937355041504, -0.5258535742759705, -0.07810024172067642, 1.3116035461425781, 0.037849366664886475, 0.004713253118097782, -0.20498614013195038, 0.7448879480361938, 0.8565182685852051, -0.5239317417144775, -0.9410231113433838, 0.4510888457298279, -0.8830776810646057, -0.593591034412384, -0.4376492500305176, 0.5082554221153259, 0.3690088987350464, -0.4481005370616913, -0.6981074810028076, -0.820183515548706, -0.1239430159330368, -0.7725581526756287, 0.29353365302085876, 0.16863848268985748, 1.268547534942627, 0.0386444590985775, 0.21129857003688812, 0.9113829731941223, -0.093880295753479, 0.5518020391464233, -0.7773080468177795, 0.3252876102924347, 0.9077316522598267, 1.7776877880096436, 0.7417323589324951, 0.1715276539325714, 0.32023248076438904, 0.062037330120801926, 0.16091127693653107, -0.09943678975105286, 0.45833641290664673, -0.2522381842136383, -0.47072216868400574, -0.6637736558914185, 0.007591788657009602, 0.2357316017150879, 0.3840016722679138, 0.1938747763633728, 0.17144735157489777, -0.3672406077384949, -0.4781787395477295, 1.1157630681991577, 0.9030162692070007, 0.0687108039855957, -0.3157494366168976, -0.515767514705658, 0.5653245449066162, -0.9175154566764832, 0.08575442433357239, -0.8182470798492432, -0.23039713501930237, 0.6540822386741638, -1.3772519826889038, -0.1297990083694458, 0.5242310762405396, 0.2661263644695282, 1.175850510597229, -1.7127270698547363, -0.2615699768066406, 0.007217553909868002, 0.4642985463142395, 0.4855998158454895, -0.2644367516040802, 0.4869731366634369, -0.09459385275840759, -0.16082283854484558, 0.18555814027786255, 0.568747878074646, 1.3167086839675903, -0.4535193145275116, -0.31560301780700684, 0.3469927906990051, -0.9801556468009949, 0.15804129838943481, -0.5302351117134094, -0.4369979202747345, 0.10982999950647354, -0.09448754042387009, 0.2359112948179245, 0.06695476174354553, -0.1748872548341751, 2.2889246940612793, 0.327138215303421, 0.14889779686927795, 0.26908746361732483, 0.633912980556488, -0.9736401438713074, 0.49495571851730347, 0.4146591126918793, -0.13055749237537384, -0.3451496660709381, -0.012355568818747997, -0.09366992115974426, 0.40795981884002686, 0.4103821814060211, 0.019229935482144356, 0.4481421709060669, 0.48267295956611633, 0.6692612767219543, 0.17383091151714325, 0.05230049043893814, 1.1964448690414429, 0.7311005592346191, 1.1186723709106445, -0.4439416527748108, -1.1678102016448975, 0.8057950735092163, -0.3758367598056793, -0.10012511163949966, 1.2121020555496216, -0.14811567962169647, 1.4023696184158325, -1.0960594415664673, -0.4453100562095642, 0.6628199815750122, 0.16710326075553894, 0.39466822147369385, 0.39078453183174133, 0.2608223259449005, -0.7736903429031372, 0.16975006461143494, 0.7162264585494995, -0.5823894143104553, 0.1390271633863449, 0.090408094227314, -0.2854645848274231, 0.6568803191184998, -0.8595523238182068, 0.21839794516563416, -1.1308566331863403, -0.35354432463645935, 0.05949772149324417, -0.1733214557170868, 0.8711475729942322, 1.046708583831787, 0.6834133863449097, 0.8219563364982605, -0.15794098377227783, -1.8724775314331055, 0.060636006295681, -0.49865445494651794, 0.14660730957984924, -0.8046566247940063, -0.019794046878814697, -0.844019889831543, -0.4365234375, 0.33586063981056213, -0.11074209958314896, -0.295194536447525, -0.09135713428258896, 0.0376865528523922, -0.6996151208877563, 0.661953330039978, 0.3808269202709198, 0.3656686544418335, 0.16806356608867645, 0.383924275636673, 0.1617993265390396, 0.9020655751228333, -0.771645188331604, 0.3779583275318146, 0.1457848995923996, 0.020355818793177605, 0.21413739025592804, -0.7772313356399536, -0.7601361274719238, 0.2548045516014099, 0.8692829608917236, -0.03083168901503086, 0.23812933266162872, 0.950456976890564, 1.9345357418060303, -0.5100042819976807, -0.3949372470378876, 0.6658359169960022, -0.7855730652809143, 0.5826995372772217, 0.44561097025871277, -0.41539686918258667, -0.3480057716369629, -0.34891030192375183, -1.245039701461792, 1.4420294761657715, 0.42564958333969116, -0.32736852765083313, 0.6251211762428284, 0.37795764207839966, 0.7433628439903259, 0.9825557470321655, -0.9619002938270569, 0.40845948457717896, -0.06220811605453491, -0.5198032259941101, -0.8403013348579407, 0.6863952875137329, 0.4166455566883087, 0.06061389669775963, -1.031178593635559, 0.17420434951782227, 0.1203480139374733, -0.12666255235671997, -0.4857502281665802, 0.1247834712266922, 0.7343173027038574, 0.38726943731307983, 0.35114941000938416, -0.5969054102897644, 0.27762725949287415, -0.502720832824707, 0.07545952498912811, 0.022577127441763878, 0.33460599184036255, 0.8176268935203552, 0.2545575797557831, 0.5694618821144104, -0.4884565472602844, -0.6056288480758667, -0.05290069431066513, -0.7419776916503906, 1.2716484069824219, 1.2009530067443848, 0.7628886103630066, 0.15996050834655762, -0.4594394862651825, 0.06550364196300507, -0.2895948588848114, -0.06773431599140167, 1.2860057353973389, -0.7488847970962524, -0.2011062651872635, 0.06305969506502151, -0.6665914058685303, 0.47307848930358887, 0.07351477444171906, 0.3775009214878082, -0.976658284664154, -0.9269652962684631, -0.7223376035690308, -0.05674237757921219, 1.2749208211898804, -0.5552582144737244, 0.038898590952157974, 0.4237866699695587, -0.9998312592506409, 1.1929066181182861, 0.5401490926742554, -1.1766597032546997, -0.3107815086841583, -0.6677795648574829, 1.1178853511810303, 0.38446271419525146, -0.02610034868121147, 0.6505349278450012, 1.2400481700897217, -1.0089589357376099, -1.781479001045227, -0.9017438888549805, -0.08063139766454697, 0.748066782951355, 0.7568623423576355, -1.437364935874939, 1.4628698825836182, 0.08760825544595718, -0.1690334975719452, -0.038945335894823074, -0.42725077271461487, -0.8156833648681641, 0.1700161099433899, 0.4062287509441376, 0.2215748429298401, 0.2522982060909271, 1.1939691305160522, 0.6427499055862427, 0.7818356156349182, 0.29911887645721436, 1.174239158630371, -0.83693528175354, -0.05175900086760521, -0.05182167515158653, 0.9551178812980652, -0.8844079375267029, -0.9099213480949402, -0.10325223207473755, -0.8527334928512573, -0.9480119943618774, 0.23485659062862396, 0.7950682640075684, -0.6230829358100891, 0.7044721245765686, -0.5612415075302124, -0.3567650318145752, -1.2261862754821777, 0.41988444328308105, 0.06933467090129852, -0.799114465713501, 0.8350582122802734, -0.25130337476730347, 0.3402731418609619, -1.0808771848678589, -0.22121216356754303, 0.14737661182880402, 0.11648274213075638, -0.8309782147407532, 0.4354381859302521, 0.19803652167320251, -0.06633666157722473, -0.24489738047122955, 1.558699131011963, 0.9810366630554199, -0.18851332366466522, 0.2820900082588196, 0.31010985374450684, -0.06241649389266968, -0.47099193930625916, -0.161422997713089, -1.247193455696106, -0.6679098606109619, 0.5331541299819946, 0.823333740234375, 0.42814865708351135, -0.47179919481277466, 0.5234841108322144, 0.43140676617622375, 0.020650113001465797, 1.4390543699264526, -1.0053973197937012, -0.4049680233001709, 0.6107494235038757, 0.5529652833938599, -0.8656831383705139, -0.5488266348838806, -0.08799475431442261, 0.07911214977502823, 0.22539174556732178, 0.5215434432029724, 0.945149838924408, -0.6755995154380798, 0.4458022713661194, 0.9172443747520447, -0.6771805286407471, -0.08566911518573761, -0.12241347879171371, -1.6718271970748901, -0.5117202401161194, -0.5140770077705383, -1.158233642578125, 0.031181903555989265, -1.3059836626052856, -0.8206725120544434, 0.2612897455692291, -0.12195251882076263, -0.15303285419940948, -0.5369454026222229, 0.1547449678182602, -0.016086990013718605, -0.021941281855106354, 0.4050973653793335, -0.32906895875930786, 0.9146543145179749, 0.22392863035202026, 0.428841769695282, -0.3321283459663391, -0.12431009113788605, -0.12918387353420258, -0.1380426436662674, 0.17039906978607178, -0.6573277711868286, -0.24733972549438477, -0.33989763259887695, -0.5153413414955139, 0.3755108714103699, -0.2762473523616791, 0.057769909501075745, -0.3653661012649536, -0.8255541324615479, 0.330274760723114, 0.9494773149490356, 0.1497260332107544, -0.4707510769367218, -0.45191895961761475, -0.7214730381965637, 0.571686327457428, -0.14577488601207733, 0.8062387704849243, -0.5730956792831421, 0.5993897914886475, 0.30677178502082825, -0.25594332814216614, -0.3847557306289673, -0.9895374774932861, 1.5714656114578247, -0.7996134161949158, 0.312382310628891, -0.7047588229179382, -0.23919789493083954, 0.25044700503349304, -1.183994174003601, -0.044228456914424896, 0.10671024769544601, -0.691415548324585, -0.1910424530506134, -0.724006175994873, -0.5065000653266907, -0.179503932595253, 0.06873133033514023, 0.017279163002967834, 0.028249653056263924, 0.6807892322540283, -0.2164093405008316, -1.2362877130508423, -0.21852655708789825, 0.7049649953842163, -0.035800039768218994, 0.5924835801124573, 1.8125227689743042, 1.1175211668014526, 0.8657239079475403, 0.15479110181331635, 0.2879481315612793, -0.030485093593597412, -1.5273339748382568, 0.22586187720298767, -0.5173028111457825, -0.5217120051383972, -0.6922417879104614], [0.8137246370315552, 0.9896053075790405, -2.2359800338745117, 0.13452376425266266, 0.8368750810623169, 0.5065913200378418, 0.5864095687866211, -0.3089281916618347, -0.8695769906044006, -0.26082465052604675, -1.2968864440917969, 0.4599902331829071, -0.7443023920059204, 0.9620026350021362, 1.0248668193817139, 0.8186580538749695, 0.7723286747932434, 0.49467527866363525, 0.3754560649394989, 0.8526806831359863, 0.07737965881824493, -1.0306904315948486, 0.42870020866394043, -0.20836731791496277, 0.029937492683529854, 0.4161021113395691, -1.429965853691101, -0.7717549800872803, -0.8464693427085876, -0.7282903790473938, 0.47146546840667725, 0.057112935930490494, 0.487598717212677, -0.6116575598716736, -1.406044840812683, 0.4985578954219818, 1.6085224151611328, 1.207818865776062, 0.8269833326339722, 0.5718311071395874, 1.7023863792419434, -0.2340937852859497, -0.18051306903362274, -1.5404067039489746, -0.13731785118579865, -0.5175996422767639, 0.1505489945411682, -0.011034591123461723, -0.04557972401380539, -0.5543403625488281, 0.05430477112531662, -1.2229503393173218, 0.1764148324728012, 0.690349280834198, 0.6622684597969055, -1.409555196762085, 0.47397592663764954, 0.1351127177476883, -0.5253331065177917, -0.43023812770843506, 0.8213027715682983, -0.5618231892585754, 0.42629432678222656, 0.8334988951683044, 0.18694289028644562, -0.6708197593688965, 0.6763976216316223, 0.4422610402107239, -0.9326649904251099, 0.45914334058761597, 0.5210391283035278, 0.11983492225408554, -1.3766696453094482, 0.21370504796504974, -1.1902759075164795, 0.2852817475795746, 0.6804915070533752, 1.2653716802597046, 0.8955903053283691, 0.7717438340187073, 0.05922619253396988, 0.24365441501140594, -0.17573599517345428, -0.49858298897743225, -0.5543820261955261, 0.34922417998313904, 0.8530166745185852, -0.4854128658771515, -0.12658293545246124, 2.23264479637146, 0.32460346817970276, 0.18813228607177734, 1.309561014175415, -0.09357936680316925, -0.6952747702598572, -0.43481892347335815, 0.13600315153598785, -0.6051168441772461, -0.9348649382591248, -0.18115316331386566, -0.6065396666526794, -1.2884718179702759, 0.5228379964828491, 0.19711212813854218, 0.537697434425354, 0.9271350502967834, 0.12355818599462509, -0.6650018095970154, 0.17137669026851654, -0.030128631740808487, -0.1878662109375, 0.6718567609786987, -0.41486382484436035, -1.3793433904647827, 0.08828922361135483, 1.62177312374115, 1.5990017652511597, -0.6693337559700012, -0.3234311044216156, 0.6184731125831604, -0.2229696810245514, -0.22964559495449066, -1.082945704460144, -0.20730680227279663, 0.9869444370269775, 0.29079294204711914, -0.5846351981163025, 0.03358221799135208, -0.2716505825519562, 0.1128460168838501, 0.8945142030715942, 0.1923610419034958, -0.07779223471879959, 1.2866158485412598, -1.5274689197540283, 1.4713221788406372, -0.7349331974983215, -0.03224170207977295, -0.0571623332798481, 0.034696660935878754, 0.7437657713890076, 0.05796251446008682, -0.4599247872829437, -0.11597639322280884, 0.22293706238269806, -0.5726142525672913, 0.4054058790206909, -0.3508438169956207, -0.8658703565597534, 0.16108326613903046, -1.05538010597229, 0.10125921666622162, -0.017381206154823303, 0.5258252024650574, 0.5108797550201416, 0.4018409252166748, -0.013877029530704021, 1.0427944660186768, -0.015352130867540836, 0.24844346940517426, 0.4259333908557892, 0.2875891327857971, -0.2759583592414856, 0.40742307901382446, 1.1506353616714478, -0.5262194275856018, -0.12192553281784058, 1.469016194343567, 0.4665389358997345, 1.2389335632324219, -0.11878586560487747, -0.43781203031539917, -0.5101814866065979, 0.1357947140932083, 0.25031548738479614, 0.022219078615307808, 0.25106289982795715, -0.04563095420598984, -1.7561231851577759, -1.0940649509429932, 0.9450951218605042, -0.12224602699279785, 0.9614986777305603, -0.3540571331977844, 0.6319848895072937, -0.3244456946849823, 0.021466387435793877, -0.27413466572761536, -0.6920149326324463, -0.8855577111244202, -0.849790632724762, -0.7220414280891418, -0.6481215953826904, 0.8167668581008911, -0.6685362458229065, -1.192138671875, 0.3173476457595825, -1.2875734567642212, -0.6516637206077576, -0.6598110795021057, 0.33587026596069336, -0.5296489000320435, -0.26924753189086914, 0.15862517058849335, -0.24415259063243866, 0.9037770628929138, -1.295773983001709, 0.22041617333889008, -0.8897331953048706, 0.019243665039539337, 0.39412569999694824, 0.3108462691307068, -0.7719689607620239, 0.18501995503902435, 0.12906625866889954, -1.9427037239074707, 0.5889601707458496, 0.8497130870819092, -0.4775198698043823, 0.0878460481762886, -0.4571974277496338, 0.16560010612010956, 0.6393048763275146, -0.29237061738967896, 0.5595874190330505, -1.0274399518966675, -0.5512924194335938, -0.7584636211395264, -0.5289327502250671, -0.1350855678319931, -0.6574070453643799, -0.7080168724060059, 1.3271375894546509, 0.12121151387691498, -1.7557387351989746, 0.14485883712768555, 0.16352367401123047, 0.5434668064117432, -0.23816533386707306, 1.4186460971832275, 0.4428354501724243, 0.4649505913257599, -0.7065623998641968, -0.5843548774719238, -0.5044874548912048, 0.02247227542102337, 1.1282254457473755, -0.6658099293708801, 0.012332586571574211, 1.2934473752975464, 0.735822856426239, -0.2741624414920807, 0.3947788178920746, -0.3904536962509155, -0.1700620949268341, -1.7747907638549805, -0.27550140023231506, 0.39798471331596375, -0.1741790920495987, 1.5336774587631226, 1.0577187538146973, -0.815292477607727, -0.2971743941307068, -0.27521803975105286, -0.3114546537399292, -0.43053901195526123, -0.2696780860424042, -0.5457999110221863, 0.6372429728507996, -0.10329184681177139, 0.1254962831735611, 0.27788716554641724, -0.5518538951873779, 0.5489149689674377, -0.41995298862457275, -0.5202212929725647, -0.6735793352127075, 1.1297613382339478, -0.10386176407337189, 0.8809109330177307, -0.11796250194311142, -0.873430609703064, -0.3130991756916046, -0.1434866338968277, 0.7568768858909607, 0.2687739431858063, 0.0549577921628952, 0.4011317491531372, 0.9029804468154907, -0.24538899958133698, 0.4934011697769165, -0.028450867161154747, 0.05835413187742233, 0.3254871964454651, 0.5617090463638306, 0.3166462182998657, 0.8887358903884888, -0.7243874073028564, -0.7809969782829285, -0.012191628105938435, -0.17873051762580872, 1.4551087617874146, -0.2672581076622009, 1.0315195322036743, -0.34096580743789673, -0.5368760824203491, 0.08553540706634521, 0.3382169306278229, -1.3154348134994507, 0.12276273965835571, -0.37403780221939087, -1.2198865413665771, 0.3172294795513153, -0.30222761631011963, 0.19558461010456085, 0.3970177471637726, 0.044606875628232956, 0.4569585919380188, 0.6415627598762512, -0.2705463767051697, -0.6015031933784485, -0.7477546334266663, -0.32360151410102844, -0.8791637420654297, 0.4473050832748413, 1.4584029912948608, -1.5011316537857056, 0.06631232053041458, 0.14731495082378387, 0.057909220457077026, 0.013747703284025192, -0.6216515898704529, 1.078850269317627, -0.8669412732124329, -0.39191287755966187, -0.4273865222930908, 0.984590470790863, -0.3798529803752899, -0.6562007069587708, -0.5512790083885193, 0.6014593839645386, 0.7395365834236145, -0.8984411358833313, -0.13083508610725403, 0.5136778354644775, -0.3132239282131195, -0.1528746336698532, 0.3527810871601105, 0.7774834632873535, 0.6946783661842346, -0.48329830169677734, -1.274916172027588, -0.64759761095047, -0.1626334935426712, -0.2116330862045288, -0.14363643527030945, -0.3570023477077484, 0.8664256930351257, -0.24633274972438812, 0.25793910026550293, 0.6876784563064575, 0.39278852939605713, 0.7023056745529175, -0.9917891621589661, 0.4203706979751587, 0.689760148525238, 2.720978021621704, 0.7829969525337219, 0.6085957288742065, 0.32886144518852234, -0.005132149904966354, 0.3263512849807739, 0.5585649609565735, 0.9288860559463501, -0.1379057615995407, -0.41637057065963745, -0.3133302330970764, -0.6964857578277588, -0.22126702964305878, -0.18435436487197876, -0.12594442069530487, 0.14166472852230072, -0.8377034664154053, -0.258217990398407, 1.170552134513855, 0.6952697038650513, -0.22300684452056885, -0.17516981065273285, -0.3331391513347626, 0.3800131380558014, -1.1508902311325073, 0.005568706896156073, -0.6487768888473511, 0.28522002696990967, 0.6387196779251099, -0.8874040246009827, -0.36258140206336975, 0.5041075944900513, 0.10118506103754044, 0.3679940104484558, -0.5302236080169678, 0.16932342946529388, -0.8473289012908936, 0.8275079131126404, 0.5507820844650269, 0.08558689802885056, 0.4344552755355835, 0.9564032554626465, -0.7093457579612732, 0.1641336977481842, -0.21037565171718597, 1.410151720046997, -0.4675741195678711, 0.06644326448440552, 0.08445587754249573, -0.3934434950351715, -0.13126257061958313, -0.007955343462526798, -0.3208673894405365, -0.012497714720666409, -0.2522817552089691, 0.04249200224876404, 0.4483172595500946, -0.11279621720314026, 1.9184304475784302, -0.3271637260913849, -0.1292688399553299, 0.460908979177475, 0.6948012709617615, -1.3518263101577759, -0.41995829343795776, 0.04971202090382576, -0.10251986235380173, 0.08489765971899033, 0.03010123409330845, 0.042551085352897644, 0.13761931657791138, 0.23685631155967712, 0.2604997754096985, 0.6140137910842896, 0.3728186786174774, 0.3198925852775574, 0.06605565547943115, 0.7426075339317322, 1.4510228633880615, 0.6851291656494141, 0.9491177201271057, 0.10415089130401611, -1.2795947790145874, 0.10665544867515564, -0.8101786375045776, -0.015818774700164795, 0.44549012184143066, -0.2363462746143341, 1.671339750289917, -1.8561593294143677, 0.325298011302948, 0.7182266712188721, 0.23294629156589508, -0.02232733741402626, 0.8853764533996582, -0.6839277744293213, -0.04291395843029022, 0.17129766941070557, 0.024244172498583794, -0.36200544238090515, -0.15053828060626984, 0.596683144569397, -0.6733747720718384, 1.1259181499481201, -0.56288081407547, 0.8126033544540405, -0.5887388586997986, -0.012118826620280743, 0.281694233417511, -0.2921006679534912, -0.07613393664360046, 0.16548463702201843, 0.5892163515090942, 1.226678490638733, 0.14354673027992249, -1.3383570909500122, -0.13972468674182892, -0.6327734589576721, 0.26969006657600403, -0.3475967049598694, -0.4961538314819336, -0.6822504997253418, -0.5374711155891418, 0.2963707745075226, -0.03778230771422386, -0.5668098330497742, -0.17744135856628418, -0.35959818959236145, -1.3024344444274902, 0.7876205444335938, 0.6954932808876038, 0.4673033356666565, 0.5011724233627319, 0.3745594322681427, 0.1753966510295868, 0.26206010580062866, -1.1140453815460205, 0.2724626958370209, 0.05080127343535423, 0.1672901064157486, -0.3379795253276825, -0.669087290763855, -0.5711894631385803, 0.3012195825576782, 0.524222195148468, 0.23796527087688446, 0.6514618396759033, 1.1570595502853394, 1.2629188299179077, -0.5811872482299805, -0.3592551648616791, 0.3555982708930969, -0.6539111137390137, 0.3513474762439728, 0.28335216641426086, -0.13273857533931732, -0.011643040925264359, -0.7325618863105774, -1.7183388471603394, 0.7082284688949585, 0.41562098264694214, -0.4301537573337555, 0.6494318246841431, 0.6109434366226196, 1.1962673664093018, 0.6666204929351807, -0.6484706997871399, -0.07006696611642838, 0.10870147496461868, -0.09548301249742508, 0.011418134905397892, 0.8444387316703796, -0.021285057067871094, 0.09595110267400742, -0.24407438933849335, -0.41650110483169556, -0.49309733510017395, -0.1484876126050949, -0.5585938692092896, 0.5920692682266235, -0.15753158926963806, 0.18963193893432617, 0.7848588228225708, -0.16903960704803467, 0.5090997219085693, -0.17135757207870483, -0.1786235272884369, 0.296356737613678, 0.8535200357437134, 0.6741191148757935, 0.20021894574165344, 0.5396572351455688, -0.738491952419281, -0.5325448513031006, -0.3131846785545349, -0.3635126054286957, 1.289081335067749, 0.6072090268135071, 0.19129693508148193, -0.16606508195400238, -1.1780946254730225, 0.6829178929328918, -0.44346103072166443, 1.1875938177108765, 0.9407632946968079, -0.7215502262115479, -0.11989665031433105, -0.035806093364953995, -1.3508189916610718, -0.1442011445760727, -0.45972633361816406, 0.1470508724451065, -0.44286853075027466, -0.9955775737762451, -0.7906662225723267, 0.1724347621202469, 0.38677695393562317, -0.7794069051742554, 0.9620396494865417, 0.26710906624794006, -1.0456007719039917, 0.5008018612861633, 0.2960438132286072, -1.0686055421829224, 0.28500738739967346, -1.1894590854644775, 0.7311446070671082, 0.2708379328250885, 0.35796070098876953, -0.322719007730484, 0.6904124021530151, -1.182227611541748, -1.197424292564392, -0.8302210569381714, -0.17913833260536194, 0.44199246168136597, 0.8015245199203491, -0.8548973202705383, 1.3091185092926025, -0.07102905958890915, -0.4091174006462097, -0.8496502637863159, -0.6308538913726807, 0.05097610130906105, 0.20964941382408142, 0.7986447811126709, -0.04620113596320152, -0.10647300630807877, 1.1654146909713745, 0.7179687023162842, 0.9322535991668701, 0.23232969641685486, 0.9071639776229858, -1.0724151134490967, -0.7326091527938843, 0.23847819864749908, 0.23527783155441284, -0.7315912842750549, -1.4114412069320679, -0.24513313174247742, -0.20680418610572815, -1.015162467956543, -0.273679256439209, 0.49534109234809875, -0.5330296754837036, 0.2876792550086975, -0.20746980607509613, 0.04278064891695976, -1.0650521516799927, 0.7543138265609741, 0.4631173014640808, -0.9090564250946045, -0.3834972679615021, 0.10355523973703384, -0.04513369873166084, -1.0032480955123901, -0.27138233184814453, -0.2129640281200409, -0.5287984013557434, -0.07021047919988632, 0.7424847483634949, 0.19170553982257843, 0.6099680066108704, -0.3379414677619934, 0.6379198431968689, 0.9377599358558655, -0.22380633652210236, 0.08970905840396881, 0.49031394720077515, -0.8374401926994324, -0.29909834265708923, -0.6792447566986084, -1.1810581684112549, 0.14043311774730682, 1.3121224641799927, 0.40984565019607544, -0.15396784245967865, 0.42229771614074707, 0.05575639754533768, 0.6669235825538635, 0.06724489480257034, 0.5047977566719055, -1.0641697645187378, -0.5568659901618958, 0.6566649079322815, 0.6765722036361694, -0.35633864998817444, -0.591496467590332, 0.49375247955322266, 0.641122579574585, -0.9011159539222717, 0.4847959578037262, 0.6460481882095337, -0.24688154458999634, 0.259452760219574, 0.8114074468612671, 0.038273416459560394, -0.2864307463169098, -0.4451467990875244, -1.8380439281463623, 0.03796829655766487, -0.49037498235702515, -0.37424081563949585, 0.3825515806674957, -1.5806621313095093, -0.7945253252983093, -0.2862074673175812, -0.4925857484340668, -0.6251662969589233, -0.21113252639770508, 0.2657462954521179, 0.42999327182769775, 0.19084517657756805, 0.40962904691696167, 0.1471489816904068, 1.1094233989715576, -0.6576303839683533, 0.05574210360646248, -0.5128922462463379, -0.25972363352775574, 0.3645494282245636, 0.1689726710319519, -0.13004417717456818, -0.3210529088973999, 0.4002385139465332, -0.7576339840888977, -1.104131817817688, -0.44774216413497925, 0.2435918152332306, -0.17150317132472992, -0.14596262574195862, -0.6497324705123901, 0.3534669876098633, 0.8593141436576843, 0.5747014284133911, -0.09161826968193054, -0.9253414869308472, -0.8691912889480591, 0.45487678050994873, -0.5235006809234619, 0.5710621476173401, -0.16660422086715698, 0.6815022230148315, 0.25394681096076965, -0.49901989102363586, -0.3936328887939453, -0.3817960321903229, 0.9430760145187378, 0.1929522007703781, -0.09833615273237228, -0.5279503464698792, 0.6884541511535645, -0.11525703966617584, -1.200461745262146, -0.20591512322425842, -0.021247997879981995, -0.5154464840888977, 0.45259982347488403, -1.1454765796661377, -0.6114953756332397, -0.18432067334651947, -0.3409598767757416, -0.09369030594825745, 0.1250176876783371, 0.2350056916475296, -0.20012688636779785, -0.9014785289764404, 0.2757750153541565, 0.40578708052635193, -0.2725885808467865, 0.4088374376296997, 1.2282814979553223, 1.3027440309524536, 0.5107468366622925, -0.21494878828525543, 0.03234144300222397, 0.7598645091056824, -1.3945919275283813, 0.2835070490837097, -0.3550436496734619, 0.13439826667308807, -0.3565685749053955], [-0.004230991005897522, 0.9285115003585815, -2.1838035583496094, -1.0916192531585693, 0.564371645450592, -0.5757216811180115, 0.6949117183685303, 0.5341594219207764, 0.4691094756126404, -0.48415517807006836, -0.7997563481330872, 0.12772224843502045, -0.05001646280288696, -0.5976077914237976, -0.12078525125980377, 0.44817742705345154, 0.3232581913471222, -0.19429534673690796, -0.2535058259963989, 0.48559844493865967, -1.254392385482788, -1.2174522876739502, -0.006821736693382263, 0.390170156955719, -0.32615506649017334, -0.0897793173789978, -1.1833906173706055, -0.3042377531528473, -1.698796272277832, -0.3812670409679413, 1.5901899337768555, -0.3340299725532532, 0.006414666771888733, -0.03887969255447388, -1.8195085525512695, -0.1347019225358963, 1.549372673034668, 0.33186158537864685, -0.18030419945716858, 1.0788003206253052, 2.5195655822753906, 0.8714938759803772, -0.6761175394058228, -1.4454083442687988, 0.5764681100845337, -0.22816890478134155, 0.3443949520587921, -0.503730833530426, -1.1957039833068848, -0.4411506950855255, 0.574511706829071, -0.8628859519958496, 0.710329532623291, 0.2668994665145874, 1.062529444694519, -0.9441964626312256, 0.539340615272522, 0.10559113323688507, 0.8643431663513184, 0.16769960522651672, 0.9832513332366943, -0.9854114055633545, 0.18000628054141998, 0.25124141573905945, 0.33064284920692444, -0.13979922235012054, -0.05152106285095215, 0.9546322822570801, -0.36803582310676575, 0.48223230242729187, 0.7555333375930786, 0.5311246514320374, -0.4612770080566406, -0.11420105397701263, -0.9510328769683838, 1.362985610961914, 0.20001032948493958, 0.38578876852989197, 0.027311354875564575, 1.0001057386398315, -1.1620274782180786, 0.5284692049026489, 0.6191904544830322, -0.9018679857254028, -0.7223052978515625, 0.1329364776611328, 0.3648930788040161, 0.1891942024230957, -0.5951897501945496, 1.3564157485961914, -0.36254099011421204, -0.003311634063720703, 0.6368633508682251, -0.5104697346687317, 0.24327045679092407, -0.1367778778076172, -1.1922048330307007, -1.267499566078186, -0.7377802133560181, -1.0300283432006836, -0.8808784484863281, -0.8600419759750366, 1.143674612045288, 0.2141987681388855, 0.32883280515670776, 1.3954200744628906, 0.4481133818626404, -0.9104785323143005, -0.15975381433963776, -0.8951776623725891, 0.16710029542446136, 0.19244790077209473, -0.5191094279289246, -0.9975279569625854, 0.3003232479095459, 1.2776025533676147, 1.4012079238891602, 0.4521225690841675, 0.4066355526447296, 0.5901014804840088, -0.4266495704650879, -0.1772969365119934, -0.7326223850250244, 0.7740130424499512, 1.1896295547485352, 0.4461086392402649, 0.02332921326160431, 0.09116052836179733, 0.027160227298736572, -0.009709306061267853, 0.019131284207105637, 0.08387765288352966, 0.3240532875061035, 1.0625207424163818, -0.28138870000839233, 0.3169693946838379, 0.7469907999038696, -1.3372626304626465, 0.278384268283844, -0.398598849773407, 0.2021465301513672, -0.983170211315155, -0.43915724754333496, -0.7921798229217529, 0.34522414207458496, -0.29398924112319946, 0.5391583442687988, 0.016181260347366333, -0.923829197883606, 0.3509570062160492, -1.5262176990509033, -0.2773212790489197, 0.17015190422534943, 0.811765193939209, 0.4326612949371338, 0.18866263329982758, 0.028485000133514404, 0.2927599549293518, 0.4592941403388977, 0.7445798516273499, 0.5038085579872131, 0.19721871614456177, -0.818318247795105, 1.4699125289916992, 0.5058566331863403, -0.715752124786377, 1.151057243347168, 0.24363809823989868, 0.0167082529515028, 1.0844571590423584, 0.28457769751548767, -0.6921210885047913, 0.3545616567134857, 0.6755478382110596, 0.4961448311805725, -0.3506101667881012, 0.6028789281845093, -0.1478639841079712, -1.0800821781158447, -1.1023375988006592, 1.0314973592758179, -0.3854953348636627, 0.5678527355194092, 0.26433420181274414, 0.9499614238739014, -0.06598314642906189, -0.012809514999389648, 0.10892625898122787, -1.0236777067184448, -1.3498520851135254, -0.633445680141449, 0.1347137987613678, -1.2809553146362305, -0.30679166316986084, -0.3854563236236572, -0.49523046612739563, 0.8118914365768433, -0.5069558620452881, -0.7574078440666199, 0.19799834489822388, 0.6785792112350464, -0.2816859185695648, -1.4763622283935547, 0.11042845249176025, -0.6767549514770508, 0.999690055847168, -0.4856855273246765, 0.591327428817749, -0.6799136400222778, 0.3765929937362671, 1.0400301218032837, -0.036495089530944824, -0.7645148038864136, 0.2434430718421936, -0.9952973127365112, -1.1257879734039307, 0.40386590361595154, 0.08532029390335083, -0.15198081731796265, -0.26709693670272827, 0.06692525744438171, 0.6611214876174927, 0.794579803943634, 0.08515018224716187, 0.4308091104030609, 0.25085389614105225, -0.08723163604736328, -0.03784322738647461, -0.33891192078590393, -0.6483767032623291, -0.7077200412750244, -0.8881236910820007, 0.5013984441757202, 1.0786583423614502, -1.4052915573120117, 0.5388988852500916, -0.5307108759880066, 0.2832932770252228, 0.21444827318191528, 0.3428291082382202, 0.6990317106246948, 1.1208289861679077, -0.6132491230964661, 0.006481394171714783, -0.6024415493011475, 0.07074150443077087, 0.8000667095184326, -0.791802167892456, 0.3314318060874939, 1.4046189785003662, 0.6707722544670105, -0.1385551542043686, 0.2921942472457886, -0.9549686908721924, 0.303349107503891, -0.3085557818412781, 0.12973296642303467, 0.7507538795471191, -1.1624131202697754, 2.2313480377197266, 1.2501344680786133, -0.4641945958137512, 0.2774651050567627, 0.09619563817977905, -1.1639686822891235, -1.086834192276001, 0.34928643703460693, -0.27644696831703186, 0.22629916667938232, 0.017535239458084106, -0.2332303822040558, 0.09596803784370422, 0.28679269552230835, 0.7067875862121582, -0.21350665390491486, 0.32631027698516846, -0.15516217052936554, -0.06797032058238983, -0.262462317943573, 0.49987363815307617, -0.1200232058763504, -1.4012324810028076, -0.5131453275680542, 0.01813599094748497, 0.48933717608451843, 0.4858139753341675, -0.38017725944519043, 0.17315995693206787, 0.1317736953496933, -0.7161480188369751, 0.254709929227829, 0.475603312253952, -0.2894468307495117, 0.14030392467975616, 0.7500652074813843, 0.03837791830301285, 0.901456356048584, -1.0132193565368652, -0.9220168590545654, 0.22332549095153809, 0.03669077157974243, 0.6851454973220825, 0.09511002898216248, 1.3547160625457764, -0.4592238664627075, 0.5725115537643433, -0.25684431195259094, -0.5040419101715088, 0.5081889033317566, -0.18686282634735107, -0.33821457624435425, -0.9220972061157227, -0.5076032280921936, 0.13945943117141724, 0.05024275183677673, 0.7592698335647583, -0.5440835356712341, 1.007622241973877, 0.622342586517334, 0.5870181322097778, -0.8710496425628662, -0.20926706492900848, -0.3900732398033142, -0.961902379989624, 0.8081836700439453, 0.8550859689712524, -1.5552759170532227, -0.08718350529670715, 0.03665304183959961, 0.03836192190647125, 0.664470911026001, 0.14857852458953857, 0.7292468547821045, -1.5564274787902832, -0.24910122156143188, -0.11439928412437439, 0.5455098152160645, 0.189253568649292, -0.6681621670722961, -1.0650819540023804, 1.075714111328125, 0.017377734184265137, -0.2947171926498413, -0.4279148578643799, 1.031785011291504, -0.48852717876434326, -1.0280752182006836, 0.09568670392036438, 0.26274609565734863, 0.35996708273887634, -0.4545094966888428, -0.35582655668258667, -0.1281176507472992, -0.7150779962539673, -0.49188506603240967, -0.276370644569397, -0.23605680465698242, 0.7369848489761353, 0.45098933577537537, -0.16245293617248535, 0.6599979996681213, 0.03226163983345032, -1.227073311805725, -1.6926683187484741, 1.0160901546478271, 0.8938378095626831, 1.3753347396850586, 0.20833086967468262, 0.18659377098083496, 0.054905980825424194, -0.7536382675170898, -0.4274730086326599, -0.14395175874233246, 0.7070623636245728, -0.3967415690422058, -0.4034855365753174, -0.30428311228752136, -0.6494070887565613, -0.3493741452693939, 0.39346790313720703, -0.06309749186038971, 0.3038119971752167, 0.1220623105764389, -0.05326199531555176, 1.1279363632202148, 0.3604774475097656, -0.43474870920181274, -0.1456015408039093, -0.17139536142349243, 0.4691387414932251, -0.0664617121219635, 0.16322563588619232, 0.05763326585292816, -0.21815665066242218, 0.4819965064525604, -0.6992707252502441, -0.7799595594406128, -0.3116168975830078, 0.12131202220916748, 1.2944965362548828, -1.1246379613876343, -0.27043765783309937, -0.5331127047538757, 1.145453929901123, 0.1849178671836853, 1.0039787292480469, 0.38458383083343506, 0.30205294489860535, 0.3663094937801361, 0.3655339479446411, -0.048694998025894165, 1.226156234741211, -0.5197698473930359, 0.14754211902618408, 0.32846564054489136, 0.7859132289886475, 0.7068402171134949, 0.25722697377204895, 0.0534793958067894, -0.027842052280902863, -0.4494142532348633, -0.155656635761261, -0.30248650908470154, -0.03453725576400757, 1.2691490650177002, 0.2805791199207306, -0.14226973056793213, -0.4536828398704529, -0.050351209938526154, -0.375455379486084, -0.13086631894111633, 0.5002573132514954, -0.2991490960121155, -0.3139999508857727, 0.2662022113800049, 0.45967748761177063, 0.41077446937561035, 0.7616927623748779, 0.1284344494342804, 0.2928491234779358, -0.15607351064682007, -0.34143543243408203, 0.7353696227073669, 0.5995697379112244, 0.884514331817627, 0.2575150430202484, 1.325326919555664, 0.20859861373901367, -0.6897033452987671, 1.2198548316955566, -1.1149640083312988, 0.5616753101348877, 0.921903133392334, -0.07971662282943726, 0.7940931916236877, -2.271212577819824, 0.36768922209739685, 0.9814310073852539, -0.3285983204841614, 0.7675155401229858, 0.3015247881412506, 0.1447983682155609, -0.958460807800293, -0.02114320546388626, 0.04976000636816025, -0.013540752232074738, 0.4641423225402832, 0.32333505153656006, 0.6335589289665222, 0.5360530614852905, -0.6103640198707581, 0.5226314067840576, -0.6363526582717896, -0.12092837691307068, 0.03011620044708252, -0.5986518859863281, 0.9656561017036438, 0.11643632501363754, 0.26859933137893677, 1.4796932935714722, -0.008880987763404846, -0.9694284200668335, 0.13148953020572662, -1.0461616516113281, 0.512729287147522, -0.416970819234848, 0.36904144287109375, -0.656846284866333, -0.26320505142211914, 0.022957004606723785, 0.5944953560829163, -0.2935720682144165, -0.43654459714889526, -0.2782721519470215, -0.47318994998931885, -0.1014980673789978, 0.5622285604476929, 1.2081670761108398, 0.46480390429496765, 0.22917962074279785, 1.0457446575164795, 0.19054114818572998, -0.7919888496398926, -0.32046788930892944, 0.42961859703063965, 0.36871737241744995, -0.5588293671607971, -0.47949811816215515, -0.6700600981712341, 0.32053375244140625, 1.1184951066970825, -0.17006605863571167, 0.07247702777385712, 1.8645076751708984, 1.5693007707595825, -0.4560752809047699, -0.8435759544372559, 0.8273778557777405, 0.13979800045490265, 1.0487421751022339, 0.021115243434906006, -0.8780221939086914, -0.35578393936157227, -0.7923737168312073, -1.983349323272705, 0.4097125232219696, -0.4123579263687134, -0.015415385365486145, 0.13653099536895752, 0.9422512054443359, -0.22822576761245728, 0.21289992332458496, -0.6619192957878113, 0.493816077709198, -0.34975504875183105, -0.15148574113845825, -0.7520034313201904, 0.2185467630624771, 0.9899468421936035, 0.1396923065185547, -0.8779482841491699, 0.1270456165075302, -0.28096118569374084, -0.24979713559150696, 0.030129343271255493, -0.13395220041275024, 0.3049805164337158, 0.24986477196216583, -0.336764931678772, 0.1564972996711731, 0.5885231494903564, -0.8308848142623901, -0.24860918521881104, -0.1926327794790268, 0.8194578289985657, -0.015615671873092651, -0.9866636991500854, 0.4113231897354126, -0.586034893989563, -0.28283169865608215, -0.15489435195922852, -0.714061439037323, 0.8329233527183533, 0.6644579172134399, -0.671812891960144, 0.6524410843849182, -0.4540640115737915, -0.6966471672058105, -0.5558773875236511, -0.3183274567127228, 0.7038323879241943, -1.3410977125167847, -0.8915312886238098, -0.26397156715393066, -0.27425625920295715, 0.3033803701400757, 0.1376705914735794, -0.20255976915359497, -1.102174997329712, -1.2350541353225708, -1.2117221355438232, -0.009370088577270508, 1.3897595405578613, 0.19579675793647766, 0.2795073091983795, -0.4530907869338989, -2.8707427978515625, 0.3552902340888977, -0.22267603874206543, -1.689237117767334, 0.30997776985168457, -0.7010632157325745, 0.6212165355682373, -0.29056718945503235, -0.3512895107269287, -0.12004715204238892, 0.7413438558578491, -0.9663262367248535, -0.4077264666557312, 0.07210828363895416, -0.7782918810844421, 0.7421382069587708, 0.49736177921295166, -0.47588562965393066, 0.8456116914749146, -0.06935085356235504, 0.18860113620758057, -1.1129283905029297, 0.67316073179245, -1.2299426794052124, 0.03558175265789032, -0.09484865516424179, 0.3055691719055176, 0.5851374864578247, 0.8897121548652649, 0.7165384292602539, 0.4534885287284851, 0.6054547429084778, 0.4548247158527374, -1.171157956123352, -0.8138558864593506, -0.22037893533706665, 0.264252245426178, -0.9626690149307251, -0.5547938346862793, -0.21278420090675354, -0.6743545532226562, -1.1882529258728027, -0.06901252269744873, 0.5069247484207153, -0.87907475233078, 0.1486152708530426, -0.614250659942627, 1.0069830417633057, -0.23431533575057983, 0.8520827889442444, -0.278873473405838, -0.8912726044654846, 0.276144415140152, 0.2216949164867401, 0.3573817312717438, -0.3755202889442444, -0.3082766532897949, 0.1861065924167633, 0.27095359563827515, -0.29753798246383667, 0.28872424364089966, 0.6388707160949707, -0.638400137424469, 0.5632614493370056, 2.0056800842285156, 1.023103952407837, -0.0069170743227005005, 0.0476684495806694, -0.38742002844810486, 0.12471228837966919, 0.3688984811306, 0.02550628036260605, -0.019137054681777954, -0.2811637818813324, 1.3832392692565918, 0.12481603026390076, 0.10839737951755524, -0.7077410817146301, 0.5848367214202881, -0.4096977114677429, -0.14530235528945923, 0.27230018377304077, -0.7991434931755066, -1.1621861457824707, 0.6953821182250977, 1.1413469314575195, -0.3987974226474762, 0.739360511302948, 1.0963910818099976, -0.2672421634197235, 0.6669343709945679, 0.37456271052360535, 0.7831717729568481, -0.1328555941581726, 0.23173993825912476, 0.6821675300598145, -0.2508079707622528, -0.07713395357131958, -0.6124720573425293, -1.710404872894287, 0.5283549427986145, -1.1935213804244995, -0.9705374240875244, 1.0238020420074463, -0.5778101682662964, -1.2517551183700562, 0.2555805742740631, -0.21171605587005615, 0.04636663198471069, 0.05577808618545532, -0.48850977420806885, -0.28527987003326416, -0.5636694431304932, 0.7669568061828613, 0.10643534362316132, 2.0153369903564453, -0.4376581311225891, -0.3548768162727356, -0.5389742851257324, -0.3158300518989563, 0.13786014914512634, 0.03459632396697998, 0.03764235973358154, -0.8843235969543457, 0.2143985629081726, -0.45957863330841064, -0.8868709802627563, -0.026266857981681824, -0.3361183702945709, 0.25917962193489075, -0.11656153202056885, -0.7144469022750854, 0.2773306369781494, 0.47588732838630676, 0.18905580043792725, 0.3511875867843628, -0.3856797516345978, -0.8213606476783752, 0.2525666356086731, -0.22482246160507202, 0.5082770586013794, 0.19227924942970276, 0.8229951858520508, 0.47202068567276, -0.14676925539970398, -0.08112752437591553, -0.7919827699661255, 0.12112888693809509, -0.2894308865070343, -0.37715238332748413, -0.9267236590385437, -0.09326881170272827, 0.5572649240493774, -0.7752947807312012, 0.48082464933395386, 0.09090632200241089, 0.5415843725204468, 0.3657120168209076, -0.5146626234054565, -0.674979567527771, -0.8438724875450134, -0.5852110981941223, 0.6516354084014893, -0.5231893062591553, 0.20709770917892456, -0.7299900054931641, -0.5941237807273865, 0.5794469714164734, 1.1718615293502808, -0.15431320667266846, 0.45507657527923584, 0.7407413125038147, 1.7208278179168701, 0.2844181954860687, -0.4293793737888336, -0.5575317740440369, 0.5610668659210205, -0.5557835698127747, 0.2964949607849121, -0.5781614780426025, -0.004983842372894287, -0.21800822019577026], [1.0654515027999878, -0.05316123366355896, -1.692701816558838, -0.5222979187965393, 0.6590361595153809, -0.18545138835906982, 1.0233089923858643, -0.44930627942085266, -0.7856237888336182, -0.3602331280708313, -1.1351014375686646, 0.3092917203903198, 0.4835274815559387, 0.06581288576126099, 0.34079620242118835, 0.0023156865499913692, 0.7065603137016296, -0.050034184008836746, -0.4305172264575958, 0.5304619073867798, -0.13483063876628876, -1.547978401184082, -0.6355488896369934, -0.2414339780807495, -0.6018128395080566, 0.9480124711990356, -0.43370237946510315, 0.13605551421642303, -1.1319212913513184, 0.21078887581825256, 1.4079641103744507, -0.5766342878341675, 0.5557293891906738, 0.14685691893100739, -1.8629390001296997, -0.022368714213371277, 1.3251503705978394, 0.9483010172843933, 0.19110193848609924, 0.2590015232563019, 1.20639967918396, 1.2630997896194458, 0.5653180480003357, -1.1212109327316284, 0.3938387334346771, -0.5063348412513733, 0.5178555846214294, 0.09134172648191452, 0.27413409948349, 0.10771777480840683, 0.37185609340667725, -0.8220908641815186, -0.5691210627555847, 0.9786545038223267, 0.3942664861679077, -0.4779355525970459, 0.3590373694896698, -0.29904431104660034, -0.2598302662372589, -0.7977677583694458, 1.265583872795105, -0.4327944815158844, -0.22865360975265503, 0.34950143098831177, 0.623436689376831, -0.5948234796524048, 0.1795528382062912, -0.08437157422304153, -0.1799592524766922, -0.5148853063583374, 0.8819769024848938, 0.025328373536467552, -1.1473716497421265, 0.528837263584137, -0.7093262076377869, 0.8359261751174927, 1.313879370689392, 0.6360041499137878, 0.47126248478889465, 0.1709415763616562, -1.5558346509933472, 0.08779003471136093, 0.6781704425811768, 0.18978193402290344, -0.3149650990962982, 0.6197013258934021, 1.0798112154006958, -0.2086075395345688, -0.24142901599407196, 1.3345531225204468, -0.25905242562294006, 0.29342949390411377, 1.0345102548599243, -0.40711042284965515, -0.3595532476902008, -0.3242450952529907, -0.6473246216773987, -0.7288461923599243, -0.562088668346405, -0.35671675205230713, -0.9282984733581543, -0.9303802847862244, 0.3402954041957855, 0.8645801544189453, 0.8621317148208618, 1.0971978902816772, 0.7341597676277161, -1.38221275806427, 0.2028547078371048, -0.22474656999111176, 0.2741249203681946, 0.38652998208999634, -0.37550488114356995, -1.2143338918685913, -0.19550922513008118, 0.6332298517227173, 2.0543618202209473, -0.7157896757125854, 0.605461061000824, 0.9460884928703308, -0.7671979665756226, -0.10090192407369614, -0.8688743114471436, 0.44749125838279724, 1.0890415906906128, -0.06677452474832535, -0.2684193253517151, -0.33679723739624023, -0.0859856829047203, 0.731060802936554, 1.0447936058044434, 0.4062569737434387, -0.47007033228874207, 1.503176212310791, -0.14826785027980804, 1.0971848964691162, -0.09006141126155853, -1.2850725650787354, 0.21892622113227844, -0.09108980000019073, 0.06881067156791687, -0.8451661467552185, 0.039976511150598526, -0.3599553406238556, -0.4921484589576721, 0.21256770193576813, 0.14903971552848816, -0.2479245364665985, -0.72829270362854, -0.5052763819694519, -0.6810690760612488, -0.4752119481563568, -0.30512961745262146, 0.4715002775192261, 0.8337076306343079, -0.04847339168190956, -0.8067244291305542, 0.1954573690891266, -0.2964157164096832, -0.24758704006671906, -0.37520506978034973, 0.2754325866699219, -0.5988922715187073, 0.7029450535774231, 0.2299727201461792, -0.9509835839271545, 0.39683857560157776, 0.7885806560516357, -0.08704198151826859, 0.05859393998980522, -0.5289239883422852, -0.03554340824484825, -0.4634130001068115, -0.7030600309371948, 0.6713805198669434, 0.16912300884723663, 1.2334274053573608, 0.7593734264373779, -1.7421027421951294, -0.811937153339386, 1.0451923608779907, -0.15533365309238434, 0.30284473299980164, -0.4136468172073364, 1.2553982734680176, -0.002300238236784935, 0.5229706168174744, 0.6701695919036865, -0.773641049861908, -0.38239380717277527, -0.5060519576072693, -0.3623967170715332, -0.3959369659423828, 0.5825616121292114, -0.6424441337585449, -0.7816122174263, 0.4414246380329132, -1.0332025289535522, -0.3323795199394226, -0.3905477523803711, 0.3923931121826172, -0.38362881541252136, -1.1608211994171143, -0.18091051280498505, -0.7481337785720825, 0.7664549350738525, -0.7271955013275146, -0.13383139669895172, -1.1146924495697021, -0.0499410405755043, 1.0286142826080322, 0.0756555125117302, -1.1593658924102783, 0.22109977900981903, -0.5732857584953308, -1.2332454919815063, 0.4562366306781769, 0.4717459976673126, -0.02001018635928631, 0.5711630582809448, -0.9120254516601562, -0.27119481563568115, 0.5466480851173401, -0.6869101524353027, 0.3447107672691345, 0.06696344166994095, -0.7256426811218262, -1.0803173780441284, 0.20735974609851837, -0.5681390762329102, -0.5987593531608582, -1.6772198677062988, 1.0278568267822266, 0.31587889790534973, -1.1540926694869995, 0.33472931385040283, -0.03240128234028816, 0.8747150301933289, -0.6429719924926758, 0.4870522916316986, 0.6947534680366516, 0.34938451647758484, -0.0031037344597280025, -0.46652016043663025, -0.7935895919799805, 0.6747141480445862, 1.9724652767181396, -0.5705071091651917, 0.026448749005794525, 1.167054295539856, 1.3207098245620728, -0.13474206626415253, -0.21365462243556976, 0.12759657204151154, 0.44810745120048523, -1.0829111337661743, -0.3559753894805908, -0.0018999408930540085, -1.0203596353530884, 1.3180464506149292, 0.16079223155975342, -0.7063411474227905, -0.3166660964488983, 0.22323188185691833, -0.6706525087356567, -0.5987537503242493, -0.5367007851600647, -0.14023509621620178, 0.5310110449790955, -0.16045667231082916, -0.3092799186706543, 0.36139386892318726, -0.030035337433218956, 0.5782581567764282, -0.5214436054229736, 0.11760196089744568, 0.18339094519615173, 0.47279250621795654, 0.4500828683376312, 0.8475607633590698, -0.1528659462928772, -0.8208222985267639, 0.4436384439468384, 0.5077879428863525, 0.4944169223308563, 0.058387868106365204, -0.17433440685272217, 0.6557905077934265, 0.9411153197288513, 1.0106065273284912, -0.21083605289459229, 0.7328357100486755, 0.9759865403175354, 0.11968895047903061, 0.6048822999000549, -0.07161980122327805, 0.21619802713394165, -0.00992096122354269, -0.7286497354507446, -0.13697253167629242, 0.3652518689632416, 0.9492322206497192, -0.029762830585241318, 0.6716195344924927, 0.09715194255113602, 0.03541253134608269, -0.5110481381416321, -0.107762910425663, 0.2311238944530487, -0.6303896307945251, -0.0629638060927391, -0.8140907883644104, -0.7308356761932373, -0.28996798396110535, 0.02891230210661888, 0.8212037682533264, 0.29850777983665466, 0.39641377329826355, 0.07867972552776337, 0.48944613337516785, -0.3526837229728699, 0.017349466681480408, 0.6672043800354004, -0.7797538042068481, 0.24264013767242432, 0.7137075662612915, -1.2799526453018188, 0.11867986619472504, -0.16002336144447327, -0.22363901138305664, 0.30192437767982483, -0.3563225269317627, 1.0284284353256226, -0.6442872881889343, -0.531441867351532, -0.093538299202919, 0.4995358884334564, 0.12436744570732117, -0.3146020770072937, -0.7664536833763123, 0.5560128688812256, 0.8807544112205505, 0.15141965448856354, 0.36706358194351196, 0.9855841398239136, -0.2431384027004242, -0.9871504306793213, -0.02264859899878502, 1.177901268005371, -0.2727532982826233, -0.34111109375953674, -0.694588303565979, 0.11650655418634415, -0.6462162733078003, -1.2310166358947754, 0.25771021842956543, -0.39453595876693726, 0.4318307638168335, 0.21253058314323425, -0.28054818511009216, 0.42170989513397217, -0.3131199777126312, 0.2703718841075897, -1.3663469552993774, 0.5021513104438782, 0.8655262589454651, 0.9211817383766174, 0.6684101819992065, 0.32488515973091125, 0.16279107332229614, -0.6715410351753235, -0.4922448694705963, 0.10697823017835617, 0.9353858232498169, -0.4827144742012024, -0.46516162157058716, -0.4405205249786377, -0.7419450879096985, -0.531631588935852, 0.7090242505073547, -0.133122980594635, -0.17027276754379272, -0.7462780475616455, -0.005905495025217533, 1.1024227142333984, 0.5192102193832397, -0.5220136642456055, -0.1571764051914215, -0.45798513293266296, 0.8579549193382263, -0.6064420342445374, -0.41710638999938965, -0.27793899178504944, -0.1387200951576233, 0.7991303205490112, -1.0967286825180054, 0.27692753076553345, 0.3978073000907898, 0.538332462310791, 0.2621210515499115, -1.4061973094940186, 0.13296476006507874, -0.8339833617210388, 0.8049896359443665, 0.3132210075855255, 0.9420464038848877, 0.379755437374115, 0.380668044090271, 0.7575028538703918, 0.07682020962238312, -0.18229247629642487, 1.6752694845199585, -0.49444764852523804, 0.10031650960445404, 0.35058802366256714, -0.3473023474216461, 0.08670639246702194, -0.29780253767967224, 0.14232592284679413, 0.37920525670051575, -0.20844051241874695, 0.44281190633773804, 0.2486574500799179, -0.4397369921207428, 1.3957511186599731, 0.43593600392341614, -0.24308674037456512, 0.04904470965266228, 0.0676484927535057, -0.5531952977180481, -0.19436872005462646, -0.1772133708000183, -0.14551544189453125, -0.03549334406852722, 0.09930688887834549, 0.32588115334510803, 0.5023873448371887, 0.22433598339557648, -0.6524298787117004, 0.24805918335914612, 0.5449288487434387, 0.2871241271495819, 0.7126867771148682, 0.3719552755355835, 0.8516865372657776, 0.043357137590646744, 1.046882152557373, 0.4022984206676483, -0.6691482663154602, 0.5669651031494141, -0.2647044360637665, 0.8308563828468323, 0.4564128518104553, 0.22345057129859924, 1.3619836568832397, -1.889250636100769, 0.21666747331619263, 1.2652236223220825, 0.7421978116035461, 0.6409494876861572, 0.9319323301315308, -0.3248900771141052, -0.43784835934638977, 0.4269873797893524, 1.1017361879348755, 0.25145813822746277, 0.7499994039535522, -0.13712415099143982, 0.04061390459537506, 1.0808894634246826, -1.3397448062896729, 0.5010531544685364, -1.0787385702133179, -0.46189555525779724, -0.3871665894985199, -0.8453351259231567, -0.005006399005651474, 0.526692271232605, 0.8156701326370239, 1.5478651523590088, -0.06252583116292953, -1.4113956689834595, 0.10131771117448807, -0.7113556265830994, 0.6710867285728455, -0.8880655169487, 0.14781439304351807, -1.1851649284362793, -0.20543497800827026, 0.6334134936332703, 0.22652678191661835, -0.13654446601867676, -0.19531592726707458, 0.03846059739589691, -0.593850314617157, 0.5129338502883911, 0.7447702884674072, 0.16814269125461578, -0.6096215844154358, 0.2957642674446106, 0.2214413285255432, 0.4663774371147156, -0.3723253011703491, 0.45110002160072327, -0.3989771008491516, -0.1839178055524826, -0.4014524221420288, -0.6835636496543884, -1.2121168375015259, 0.25028327107429504, 1.4061444997787476, -0.16874322295188904, -0.3973070979118347, 1.5887621641159058, 1.7850008010864258, -0.5238981246948242, -0.5661455392837524, 0.3618154227733612, 0.10669993609189987, 0.5688549280166626, 0.052023157477378845, -1.3746592998504639, -0.41483479738235474, -0.5956960916519165, -0.5255479216575623, 0.24128322303295135, 0.008599255234003067, -0.021835386753082275, -0.05744393169879913, 0.4165785312652588, 0.2827860116958618, 0.4044369161128998, -0.6728261709213257, 0.7026134729385376, -0.2477775365114212, 0.48282691836357117, -0.5835551619529724, 0.5343221426010132, 0.8141524791717529, -0.031615082174539566, -0.9242697954177856, 0.2423650622367859, -0.17359785735607147, 0.4576250910758972, -0.31128886342048645, 0.21627666056156158, -0.16058479249477386, -0.47683069109916687, -0.10555952042341232, -1.0020705461502075, 0.6209746599197388, -0.35536083579063416, -0.5197945237159729, -0.09007055312395096, 1.3769707679748535, 0.32557347416877747, -0.22278587520122528, 0.36029690504074097, -1.2493098974227905, -0.2839360535144806, -0.9411633014678955, -0.6109441518783569, 1.0113327503204346, 0.7158575654029846, 0.4830801486968994, 0.5154300928115845, -0.37988319993019104, 0.01223358791321516, -0.645068883895874, -0.022961951792240143, 1.7807518243789673, 0.08483675867319107, -0.4066767990589142, 0.2431277185678482, -1.234744668006897, 0.36755305528640747, -0.17511716485023499, 0.5297195315361023, -0.49730101227760315, -1.1566053628921509, -0.6847065091133118, -0.14296846091747284, 1.240992546081543, -1.1108046770095825, -0.10142248123884201, 0.29627907276153564, -1.321481704711914, 0.0048608798533678055, 0.5950024724006653, -0.996703028678894, -0.12054502964019775, -0.882257878780365, 0.27686846256256104, 0.7827128171920776, 0.27363914251327515, 0.2262340486049652, -0.2809942364692688, -1.0656675100326538, -0.49644240736961365, -0.4489542245864868, -0.038250312209129333, 1.8325963020324707, 0.3690199851989746, -1.2976351976394653, 1.5881792306900024, -0.2447478026151657, -0.17382071912288666, -1.3632639646530151, -0.5717948079109192, -0.5516176223754883, 0.31624889373779297, 0.7133598327636719, 0.8858687877655029, 0.19137102365493774, 1.4591495990753174, 1.5234514474868774, -0.5009196400642395, 0.6432486772537231, -0.2742673456668854, -0.8949000835418701, 0.023232201114296913, -0.04459394887089729, 0.927830696105957, -1.198153018951416, -1.0971832275390625, 0.3286896347999573, -0.09277881681919098, -0.32894933223724365, -0.12233185768127441, -0.24317283928394318, -0.4632248282432556, -0.15522798895835876, -0.6020042896270752, 0.09116068482398987, -0.1557927429676056, 0.8274276852607727, 0.34437957406044006, -0.8082071542739868, 0.5173537135124207, -0.1592269092798233, 0.48473984003067017, -1.0107038021087646, -0.580971896648407, -0.5407009720802307, -0.07288723438978195, -0.31736648082733154, 0.13765493035316467, 0.21151374280452728, -0.3251968026161194, 0.1630619913339615, 1.5869847536087036, 1.4414894580841064, 0.38838425278663635, 0.08746788650751114, -0.43993425369262695, 0.1858132779598236, -0.24331168830394745, -0.5585322380065918, -0.09615685045719147, -0.5807070732116699, 1.1922109127044678, -0.41508713364601135, 0.04665416479110718, 0.14170604944229126, 0.22653062641620636, 0.12263928353786469, 0.0402284599840641, 0.5788185596466064, -0.4072030186653137, -1.6775751113891602, 0.3654666543006897, 0.33483707904815674, -0.38929715752601624, -0.6103174686431885, 1.0037117004394531, 0.0036475989036262035, -0.15001238882541656, -0.22694839537143707, 0.27968737483024597, -0.9062409400939941, -0.3098476827144623, 0.16451343894004822, -0.012705439701676369, 0.2857862412929535, -0.32474520802497864, -1.0728892087936401, 0.19186939299106598, -1.3854453563690186, -1.2881524562835693, 0.2143845558166504, -0.800693154335022, -0.6452925801277161, 0.33639124035835266, 0.19332139194011688, 0.862419068813324, -0.2525520920753479, -0.03591906279325485, 0.1825263798236847, -0.30394643545150757, 0.7366216778755188, 0.4543362259864807, 0.32288801670074463, -0.25289204716682434, -0.23613578081130981, -0.23133599758148193, 0.5273658037185669, 0.2934526801109314, -0.17044205963611603, -0.03383047506213188, -0.5110525488853455, -0.3935169279575348, -0.6484261155128479, -1.1536935567855835, 0.08869654685258865, -0.8325660824775696, -0.05694384127855301, -0.048684682697057724, -0.7496356964111328, -0.1086086854338646, 0.625525176525116, -0.5549919009208679, -0.20993344485759735, -0.5176884531974792, -0.5586513876914978, 0.5574727058410645, -0.15748164057731628, 0.40858617424964905, 0.47762662172317505, 0.21310491859912872, -0.06250827759504318, -0.6748377084732056, -0.11002795398235321, -1.1011537313461304, 0.4952322840690613, -0.4447633624076843, 0.7363767623901367, -0.6237555146217346, 0.5342935919761658, 0.3282693028450012, -1.338149070739746, 0.21858632564544678, 0.20853975415229797, -0.021051768213510513, 0.14249759912490845, -0.5895405411720276, -0.7118119597434998, -0.043695155531167984, 0.15813055634498596, 0.14313988387584686, 0.4753352105617523, 0.10596247762441635, -0.2911912798881531, -1.6171900033950806, 0.665256142616272, 0.2332143485546112, -0.5662028789520264, 0.2784952223300934, 0.7925149202346802, 1.2175443172454834, 0.09609628468751907, 0.1719529926776886, -0.19489476084709167, 0.46840527653694153, -0.8924777507781982, 0.15623220801353455, -1.0910735130310059, 0.2693174183368683, 0.20316439867019653], [0.9489157199859619, 0.7440871000289917, -2.572554349899292, -0.4039287269115448, 0.6372706294059753, 0.23932653665542603, -0.17454595863819122, 0.6796554327011108, 0.04566089063882828, -0.5295185446739197, -1.2813688516616821, 0.5525307059288025, 0.005097071640193462, 0.4810951054096222, 0.3981480896472931, 0.4513959586620331, 1.24402916431427, 0.5765973329544067, -0.24967478215694427, 0.8478155136108398, -0.751657247543335, -1.5184736251831055, -0.7210981249809265, 0.49995455145835876, 0.5460963249206543, 0.2600829601287842, -1.2846755981445312, 0.3947305679321289, -1.082507848739624, -0.5471671223640442, 2.102869749069214, -0.10575789958238602, 1.096958041191101, -0.7218182682991028, -1.2453655004501343, -0.16578362882137299, 0.3213542103767395, 0.7436371445655823, -0.41208112239837646, -0.14996160566806793, 2.0601439476013184, 1.260368824005127, -0.758658230304718, -1.6909698247909546, 0.28916141390800476, -1.085920810699463, 1.4147017002105713, -0.6144725680351257, 0.04198146238923073, -0.7891592383384705, -0.04680395498871803, -0.24045754969120026, 0.17743562161922455, 1.5449011325836182, 0.3932270407676697, -1.2063584327697754, 0.7844825983047485, 1.0436831712722778, -0.40592628717422485, 0.10884304344654083, 1.1056612730026245, -0.15956033766269684, 0.5383965969085693, 0.07227719575166702, 0.531672477722168, -0.17403031885623932, 0.03383871167898178, 0.04893169179558754, 0.2795805335044861, -0.14072051644325256, 0.21676652133464813, 0.06297902017831802, -0.3955479860305786, 0.30143818259239197, -0.8148854374885559, 0.8164648413658142, 0.6341250538825989, 0.495669424533844, 0.132628932595253, -0.1548856794834137, -0.8167127966880798, 0.18170799314975739, 0.949798047542572, 0.029223162680864334, -0.6317647099494934, 0.11313193291425705, 0.4863966405391693, -0.15041601657867432, -0.4285954535007477, 1.3287962675094604, 0.2732677161693573, 0.6299641728401184, 0.8078203797340393, -0.06499793380498886, -0.04890147224068642, -0.37643882632255554, -0.18421080708503723, -1.4160330295562744, -0.27245453000068665, -0.6387515664100647, -1.044389009475708, -0.963634192943573, 1.088606834411621, 0.8142589926719666, -0.3004520535469055, 1.6662007570266724, 0.034111205488443375, -0.40895697474479675, 0.1496274769306183, -0.417845755815506, -0.8588199615478516, 0.15516430139541626, -0.31415942311286926, -1.035361886024475, -0.1758764237165451, 0.21146440505981445, 1.3207664489746094, 0.09938418120145798, 0.6551346778869629, 0.5007304549217224, -0.49456077814102173, 0.029661647975444794, -1.2139897346496582, 0.1413501501083374, 1.4634431600570679, -0.3182970881462097, -1.0758578777313232, 0.6397040486335754, 0.9471718072891235, 0.19233785569667816, 0.24468259513378143, 0.3854719400405884, 0.4010064899921417, 1.6223737001419067, 0.04389262571930885, -0.08186085522174835, -0.3550676107406616, -1.7119001150131226, 0.06549622863531113, 0.01955035701394081, 0.38259127736091614, -0.27447986602783203, 0.08388163894414902, -0.8402142524719238, 0.3015426993370056, 0.11825977265834808, 0.6116611361503601, -0.014426950365304947, -0.9489712715148926, 0.386515736579895, -1.2236077785491943, -0.13631248474121094, -0.04562218487262726, 0.8007131218910217, 0.5822154879570007, -0.13823112845420837, 0.16022849082946777, -0.0529671236872673, -0.089784175157547, 0.7396839261054993, 0.2844461500644684, 0.08866273611783981, -0.7932934165000916, 0.48404935002326965, 0.5721569061279297, -0.5753000974655151, 0.7475913166999817, 0.2965204119682312, -0.8898375630378723, 0.8992537260055542, 0.03781009465456009, -1.3674818277359009, -0.4073498845100403, 0.3261857032775879, 0.6307119131088257, -0.43621188402175903, 0.19104433059692383, -0.1480357050895691, -1.3810676336288452, -0.9791134595870972, 1.1706880331039429, -0.4023398756980896, 0.4924742877483368, -0.47065532207489014, 0.31171715259552, 0.027616439387202263, -0.32825350761413574, 0.1374177783727646, -0.5205693244934082, -0.953689694404602, -1.0480905771255493, 0.024950752034783363, -1.060516119003296, 0.17295414209365845, -0.5151202082633972, -0.4902876317501068, 0.5082333087921143, -1.0772558450698853, -0.6684173941612244, -0.32564955949783325, 0.7777338624000549, -0.20905570685863495, -0.4044271409511566, -0.12434810400009155, -0.7232562303543091, 0.19748063385486603, -0.17923815548419952, 0.4080684781074524, -0.5819261074066162, 0.28502461314201355, 0.3306054472923279, -0.680390477180481, -1.1699364185333252, -0.17363300919532776, -0.07477213442325592, -1.392242431640625, 0.8017492294311523, -0.05641473829746246, -0.03714269399642944, -0.16956545412540436, 0.30733487010002136, 0.050166577100753784, 1.1270955801010132, -0.6331163048744202, 0.0535719059407711, 0.16099616885185242, -0.5104451179504395, -0.8492767810821533, -0.25435906648635864, -1.1161969900131226, -0.8087096810340881, -0.353763610124588, 0.6735406517982483, 0.4168267846107483, -2.078545093536377, 0.4830678403377533, -0.7829563617706299, 0.5293568968772888, -0.10097062587738037, 0.8253574371337891, 0.5136529803276062, 0.4265696406364441, -0.42140746116638184, -0.466457724571228, -0.6289936900138855, 0.3967437148094177, 0.6694988012313843, -0.532282829284668, 0.4725092649459839, 1.6782419681549072, 0.914046049118042, -1.0859566926956177, 0.7819401621818542, -0.5537161827087402, -0.16254252195358276, -1.2945661544799805, -0.04795989766716957, 0.5502265095710754, -0.8596470355987549, 1.3468958139419556, 0.7982251644134521, -1.1028697490692139, 0.2999389171600342, -0.3780987560749054, -0.9681941270828247, -0.4140930473804474, -0.04310104250907898, -1.0787222385406494, 0.18935967981815338, -0.034537263214588165, -0.4027480483055115, -0.03377929702401161, 0.10857456177473068, 0.38474902510643005, -0.4881875514984131, -0.6086155772209167, 0.04506923258304596, 0.4298088848590851, -0.4846963882446289, 0.6036319136619568, -0.17768599092960358, -0.7973557710647583, -0.3349546492099762, 0.010543029755353928, 0.7463395595550537, -0.37573176622390747, -0.014106913469731808, 1.107772946357727, -0.04496985673904419, 0.734370768070221, 0.4547162652015686, 0.551708996295929, 0.8296033143997192, -0.0038615702651441097, 0.7503449320793152, 0.579947292804718, 0.8321265578269958, -1.0255379676818848, -0.9246352314949036, 0.13377194106578827, 0.2005988359451294, 0.8320726752281189, 0.21591682732105255, 1.2637739181518555, -0.5484493970870972, 0.4267594516277313, -0.5379435420036316, -0.0170595683157444, -0.6934157609939575, -0.21519948542118073, -0.5448305606842041, -1.4981160163879395, -0.7274492979049683, -0.7195382118225098, -0.2793627679347992, 0.5626863837242126, 0.5134352445602417, 0.12058313935995102, -0.07891014963388443, 0.08203287422657013, -1.292364239692688, -0.6839028596878052, -0.6028690934181213, -0.8646397590637207, 0.9618616104125977, 0.9210137724876404, -1.2706071138381958, 0.2683940827846527, -0.09945932030677795, -0.4161059558391571, 1.1454015970230103, 0.26077404618263245, 1.802006483078003, -0.6781169772148132, -0.321834534406662, -0.17865167558193207, 0.42026135325431824, 0.3557683825492859, -0.8399435877799988, -0.22782623767852783, 0.8950446248054504, -0.2068934589624405, -0.19797568023204803, -0.8871893882751465, 0.1964787393808365, -0.6199299693107605, -0.739553689956665, -0.08310747891664505, 0.731185257434845, -0.00684779230505228, -1.4468456506729126, -1.4148627519607544, -0.49179157614707947, -0.5798094868659973, -0.3033018112182617, -0.013791155070066452, 0.4402352273464203, 0.27977052330970764, -0.441621869802475, -0.019307421520352364, 0.7726022005081177, -0.11809687316417694, 0.33408665657043457, -1.0479416847229004, 0.14555096626281738, 1.1819679737091064, 1.924567699432373, 0.479164719581604, 0.5336542725563049, 0.4837758541107178, -0.752791702747345, 0.07817548513412476, 0.06323894113302231, 0.23003435134887695, 0.2749711871147156, 0.2505570650100708, -0.16628023982048035, -0.2709282636642456, 0.051265567541122437, 0.22152693569660187, 0.20412108302116394, 0.3760668635368347, -0.48650291562080383, -0.7458503246307373, 0.49615076184272766, 0.9730392694473267, -0.5902050733566284, -0.025907959789037704, -0.9704580307006836, 0.5274077653884888, -0.6747746467590332, 0.30469825863838196, -0.37896737456321716, -0.5428811311721802, 1.0432313680648804, -0.9439184665679932, -0.22812005877494812, -0.3612246811389923, 0.38598883152008057, 0.6193822622299194, -1.4431390762329102, -0.32814690470695496, -0.777804434299469, 0.7142311334609985, 0.8071361184120178, 1.0595176219940186, 0.427400141954422, 0.376606285572052, 0.3490403890609741, 0.4760236442089081, 0.35061731934547424, 2.188823938369751, 0.22237445414066315, -0.27814748883247375, 0.2779131829738617, 0.46900859475135803, 0.05490986630320549, -0.4876849055290222, 0.651558518409729, 0.04269564896821976, -0.2962390184402466, 0.41028785705566406, 0.28791865706443787, -0.16491657495498657, 1.6924179792404175, 0.608210027217865, 0.07053440809249878, -0.3568195402622223, 0.4882003664970398, -0.2819926142692566, -0.3036823868751526, 0.4421609044075012, -0.4734654128551483, -0.10522125661373138, 0.06474882364273071, -0.22526225447654724, 0.7659170031547546, -0.10758499056100845, -0.3699089288711548, 0.5496735572814941, 0.5596752166748047, -0.3318250775337219, 0.5092176795005798, 0.2757013142108917, 1.3519253730773926, 0.5551180243492126, 0.9531159996986389, -0.7852402329444885, -0.3129001259803772, 1.117700219154358, -0.10658589005470276, 1.1060057878494263, 1.0599966049194336, 0.5366179943084717, 0.9544727802276611, -0.9302535057067871, -0.2502475380897522, 0.7032424211502075, 0.42097988724708557, 1.346376895904541, 0.15460239350795746, 0.34586820006370544, -0.5156879425048828, -0.4887523651123047, 0.03017006441950798, -0.22680234909057617, 0.43254655599594116, 0.08477333933115005, 0.47722098231315613, 1.1890708208084106, -1.3116189241409302, -0.25864386558532715, -0.7493957877159119, -0.17495158314704895, -0.9201875329017639, -1.0699251890182495, 0.5552598834037781, 0.5708003640174866, 0.8123469948768616, 0.8206857442855835, 0.24766972661018372, -0.5736672878265381, 0.4301544725894928, -1.41823410987854, 0.6620948314666748, 0.001343913609161973, 0.0025890888646245003, -0.7675254344940186, -0.3657228946685791, -0.12144066393375397, -0.6496540904045105, -0.34746208786964417, -0.39104029536247253, -0.7296422719955444, -0.2366686314344406, 0.22974610328674316, 0.794488251209259, 0.6647936105728149, 0.3300739526748657, 0.9622368216514587, 1.4139879941940308, 0.6748555898666382, -0.6023193597793579, 0.11106541007757187, -0.252238005399704, 0.21965014934539795, -0.46643462777137756, -0.18573921918869019, -1.0654261112213135, 0.13559918105602264, 0.36581599712371826, -1.0771701335906982, 0.3411857485771179, 1.3406457901000977, 1.3000662326812744, -0.3077342212200165, -1.0911980867385864, 0.9894099235534668, 0.02066637948155403, 0.7380203604698181, 0.46651414036750793, -0.5303075313568115, -0.11086861789226532, -0.39759159088134766, -1.9162049293518066, 1.2213962078094482, -0.7524135112762451, 0.17900888621807098, 0.6556541919708252, 1.0561585426330566, -0.2187669724225998, 0.8861989974975586, -0.26977837085723877, -0.08072154223918915, -0.15800142288208008, -0.05237436667084694, -0.8706967830657959, 0.4587551951408386, 0.8264576196670532, 0.16680079698562622, -0.6928014755249023, -0.37512749433517456, -0.8123827576637268, 1.5143113136291504, -0.8454084992408752, -0.13827760517597198, 0.8134505748748779, -0.7308304905891418, -0.44142788648605347, 0.31735485792160034, -0.21576239168643951, -0.6702114343643188, 0.17171569168567657, -0.12651784718036652, 1.4457967281341553, 0.6218411922454834, 0.05005565285682678, 1.3158726692199707, -0.5548030138015747, 0.4132041335105896, -0.08919763565063477, -0.46838629245758057, 1.0618377923965454, 0.5799614191055298, 0.40052348375320435, 0.6489914059638977, -0.29339897632598877, -0.5250451564788818, -0.524945080280304, -0.5788053274154663, 1.0946440696716309, -0.9598253965377808, -0.6948637962341309, -0.9698861837387085, -0.4427981972694397, 0.8813949823379517, 0.21367092430591583, 0.7873665690422058, -0.6314266324043274, -1.103076696395874, -1.021790623664856, 0.13566875457763672, 0.8530464172363281, 0.011353341862559319, 0.21199457347393036, 0.39692816138267517, -1.2920615673065186, 0.27483898401260376, 0.5339417457580566, -1.002760887145996, -0.0016384073533117771, -0.8442642688751221, 0.5724223256111145, 0.6436161398887634, -0.31388425827026367, 0.05044015496969223, 0.4399816691875458, -1.315121054649353, -0.47353896498680115, -0.15701402723789215, -0.6723420023918152, 0.07191869616508484, 0.9723365902900696, -1.3553804159164429, 0.7029191255569458, 0.1987934410572052, -0.03392903879284859, -0.5170676112174988, -0.1105697751045227, -1.3967642784118652, 0.34916073083877563, -0.11512687802314758, 0.46941980719566345, 0.20010097324848175, 1.2854851484298706, 1.0832430124282837, 0.5163906812667847, 0.4503551423549652, 0.5176281929016113, -0.38909006118774414, -0.28946420550346375, -0.11386313289403915, 0.5505459904670715, -0.30317190289497375, -1.0026665925979614, 0.11729377508163452, -0.5133219361305237, -0.8067635893821716, -0.0555877611041069, 1.1109435558319092, -0.23401671648025513, 0.5909938812255859, -0.32700955867767334, -1.3882564306259155, 0.17413388192653656, 0.4557071626186371, 0.14300207793712616, -0.47719308733940125, 0.014225313439965248, -0.47072121500968933, 0.25282108783721924, -0.3798513114452362, -0.262119323015213, 0.28190651535987854, 0.1387253999710083, 0.011363113299012184, 0.8470619916915894, -0.057229917496442795, 0.20576532185077667, -0.38882675766944885, 2.2217936515808105, 1.1309977769851685, -0.8566693663597107, 1.117572546005249, -0.2480388879776001, -0.710504949092865, -0.49097904562950134, -0.8096131086349487, -1.0576143264770508, 0.11867018789052963, 0.7729251980781555, 0.31097596883773804, 0.30210080742836, -0.36951473355293274, 0.19624081254005432, 0.16531500220298767, 0.7724676132202148, 0.6063863635063171, -0.796425998210907, -0.7140204906463623, 0.6428771615028381, 0.5052105784416199, -0.46741369366645813, -0.10926832258701324, 0.6773639917373657, 0.1417083889245987, 0.11211835592985153, 0.49857673048973083, 1.2110358476638794, -0.694033682346344, 0.7309693098068237, 0.6865601539611816, -0.3479471206665039, -0.6480861306190491, -0.07078469544649124, -1.7053804397583008, 0.15765410661697388, -0.8174028396606445, -1.2220635414123535, 0.5687757730484009, -1.2240221500396729, -1.1876964569091797, 0.0072962818667292595, -0.1131722554564476, -0.06337270140647888, -0.1702217161655426, -0.4209345579147339, 0.9292954206466675, -0.5349632501602173, 1.3616697788238525, 0.1820887178182602, 1.0994471311569214, -0.08557900041341782, -0.2905057966709137, -0.17485450208187103, -0.9182897210121155, -0.4089234173297882, -0.0730794370174408, 0.1804361194372177, 0.006157033611088991, 0.5646128058433533, -0.1956176608800888, -0.7315577268600464, 0.33451154828071594, 0.2723526954650879, 0.31221914291381836, -0.19401705265045166, -0.5870106220245361, 0.13754823803901672, -0.013825923204421997, -0.12455347925424576, -0.2606200575828552, -0.8647652268409729, -0.2825780212879181, -0.25194087624549866, -1.0301423072814941, 0.7601398825645447, -0.14637310802936554, 0.7526495456695557, -0.381409615278244, -0.8736507296562195, -0.23834723234176636, -0.9046099185943604, 0.47413554787635803, -0.07169058918952942, -0.48446154594421387, -1.1449620723724365, 0.24583664536476135, 0.3217315971851349, -1.2176207304000854, 0.1773366928100586, -0.025293894112110138, -0.008835437707602978, -0.15678755939006805, -0.47725415229797363, -0.5830484628677368, -0.7120856046676636, 0.38097044825553894, 0.332116961479187, 0.39336687326431274, 0.5181106328964233, -0.2613392174243927, -1.7305495738983154, 0.007613829802721739, 0.3838345408439636, 0.7530720829963684, 0.9460878968238831, 1.1012349128723145, 1.8181476593017578, -0.3596686124801636, -0.06644479185342789, 0.07094915211200714, 0.46462497115135193, -0.5579137802124023, -0.3374016284942627, -0.8044589757919312, 0.2310771644115448, -0.18465988337993622], [-0.0028198231011629105, 1.1157760620117188, -2.6761505603790283, -0.12161114066839218, 0.2925264835357666, 0.060342781245708466, 0.8118197321891785, -0.4708710014820099, -0.2420579344034195, -1.160138487815857, -0.9245257377624512, 0.7093574404716492, -0.12817047536373138, 1.0145745277404785, 0.418422132730484, 0.7613595128059387, 1.1403826475143433, 0.09222514182329178, -0.390145480632782, 1.2222235202789307, 0.4993436336517334, -1.435502529144287, -0.17564626038074493, -0.1343943327665329, 0.7508305311203003, 0.6010035276412964, -0.8858675956726074, 0.0746752992272377, -0.6183923482894897, -0.04700920730829239, 1.710179090499878, -0.2568410038948059, 0.7438058853149414, 0.016916023567318916, -1.538124680519104, -0.2821969985961914, 0.870788037776947, 0.4755147397518158, 0.5470173954963684, -0.6616230010986328, 1.9672958850860596, 0.2848615050315857, -0.2644194960594177, -1.7524076700210571, 0.2502174973487854, -0.5354312062263489, 0.050339389592409134, -0.6523058414459229, -0.07926762104034424, -1.1009650230407715, 0.07809635996818542, -0.24319221079349518, -0.21397943794727325, 1.3493093252182007, 0.4660249352455139, -1.2998615503311157, 1.1731114387512207, 0.9341313242912292, -0.24618273973464966, 0.22709931433200836, 1.0640746355056763, -0.23142145574092865, 0.9127905964851379, -0.025662440806627274, 0.5933570265769958, -0.443400114774704, 0.27411985397338867, 0.14577995240688324, 0.22729381918907166, 0.5030996203422546, 0.658237099647522, 0.5554311871528625, -0.25102055072784424, 0.41312798857688904, -0.6611096858978271, 0.5351828932762146, 0.5901113748550415, 0.6536387801170349, -0.2550532817840576, 0.5419158339500427, -1.143075942993164, 0.5141410827636719, 0.9485878348350525, -0.3373399078845978, -0.6495373845100403, 0.22629167139530182, 0.46865734457969666, 0.45239728689193726, -0.6329783797264099, 1.7208062410354614, 0.42720356583595276, 1.0633888244628906, 0.4627108573913574, -0.1479702889919281, 0.23796416819095612, -0.046248871833086014, -0.5254949331283569, -1.2702387571334839, -0.08793525397777557, -0.17130620777606964, -0.4432830512523651, -0.8493014574050903, 0.19827909767627716, 0.7657646536827087, 0.40111348032951355, 1.566344141960144, -0.03895245119929314, -0.33295726776123047, 0.635768473148346, -0.19692149758338928, -1.2827130556106567, 0.19874098896980286, -0.6482741236686707, -0.46037137508392334, 0.2380535900592804, 0.9112987518310547, 1.1478989124298096, -0.2236083447933197, 0.4758196473121643, 0.601006031036377, -0.5819004774093628, -0.3467082381248474, -1.293899416923523, 0.1631423383951187, 1.3726943731307983, 0.045909538865089417, -0.9211134910583496, 0.30415773391723633, 0.31539076566696167, 0.7753563523292542, 0.8702660799026489, -0.1301635205745697, 0.08707867562770844, 1.5626566410064697, -0.7747340798377991, 0.413394033908844, -0.6659937500953674, -0.9110851287841797, 0.458238810300827, 0.2764366567134857, 0.2572380006313324, -0.30346429347991943, -0.008654935285449028, -0.563980221748352, 0.24796099960803986, -0.4502470791339874, 0.3688981831073761, -0.37146586179733276, -0.9054535627365112, -0.24525265395641327, -1.1467634439468384, 0.29475459456443787, 0.22534188628196716, 1.1007453203201294, 0.8013691902160645, -0.524314820766449, -0.5374968647956848, -0.010950874537229538, 0.06568481773138046, 0.4697558879852295, 0.5828031897544861, 0.11485987901687622, -1.077450156211853, 0.07325297594070435, 0.9491686224937439, -1.0488379001617432, 0.39411425590515137, 0.22541919350624084, -0.6320345401763916, 0.9231850504875183, -0.27206745743751526, -1.2196458578109741, -0.3484675884246826, 0.21552474796772003, 0.5047268271446228, -0.17728972434997559, 0.6183469295501709, 0.29691433906555176, -1.1876834630966187, -0.9235363006591797, 1.0034414529800415, -0.458035409450531, 1.0160150527954102, -0.6195885539054871, 0.010250010527670383, -0.18703719973564148, -0.29322534799575806, -0.1577744483947754, -0.7302697896957397, -0.7300114631652832, -0.6720514893531799, -0.2584899663925171, -1.101183533668518, 0.69924396276474, -0.706271231174469, -0.5029340386390686, 0.5475342273712158, -0.5885146260261536, -0.4109753668308258, -0.09631739556789398, 0.6996030211448669, -0.45010483264923096, -0.6464154124259949, -0.22610071301460266, -0.5631945133209229, 0.541634202003479, 0.03478074446320534, 0.5162914395332336, -0.5462692975997925, 0.4579017460346222, 0.44231894612312317, -0.649334192276001, -1.8228428363800049, -0.008696507662534714, 0.16497796773910522, -1.5723682641983032, 0.6200472712516785, -0.0004880521446466446, -0.06306532770395279, 0.31261157989501953, -0.09187930822372437, 0.04131140559911728, 0.782508373260498, -0.5959559082984924, 0.06064692139625549, -0.5739291906356812, -0.02101990394294262, -1.2950000762939453, -0.24914973974227905, -0.12530528008937836, -1.1721218824386597, -0.4822002649307251, 0.5899652242660522, 0.6259782910346985, -1.2402865886688232, 0.7870767116546631, -0.4369746446609497, 0.18998199701309204, -0.0720055028796196, 1.015255331993103, 0.706523060798645, 0.34110739827156067, -0.8286339640617371, -0.47342514991760254, -0.6729630827903748, 0.03684019669890404, 0.8202531933784485, -0.33393654227256775, 0.15830527245998383, 1.0594464540481567, 1.277459740638733, -0.7369261384010315, 0.5688251256942749, -0.4479668438434601, -0.12638626992702484, -1.8420854806900024, -0.3850608170032501, 0.32251492142677307, -0.915396511554718, 0.9311253428459167, 0.7299076318740845, -2.0059235095977783, 0.39228904247283936, -0.10560978949069977, -0.028906600549817085, -0.4947807490825653, -0.5115354061126709, -0.4544996917247772, 0.3694639205932617, -0.3088075816631317, -0.408904492855072, -0.36585932970046997, -0.19695739448070526, 0.7872363924980164, -0.6560291051864624, -0.5838624238967896, -0.12034448981285095, 0.7884225845336914, 0.14784692227840424, 1.117051124572754, -0.05796169862151146, -1.345478892326355, -0.7041246294975281, 0.08321095257997513, 0.529660701751709, 0.19697551429271698, -0.03227046877145767, 0.8056545257568359, 0.2869899272918701, 0.47274482250213623, 0.45184144377708435, -0.4889199435710907, 0.6223495006561279, 0.628815770149231, 0.31170254945755005, 0.18250177800655365, 0.7859780788421631, -0.938330352306366, -0.6232382655143738, -0.4422529339790344, 0.826309084892273, 1.2633147239685059, 0.03181355074048042, 0.9409759044647217, -0.43287476897239685, -0.03172934800386429, -1.2186462879180908, -0.2452152967453003, -0.650403618812561, -0.1339634209871292, -0.43965762853622437, -1.297868013381958, -0.13706129789352417, -0.4377107322216034, -0.34480077028274536, 0.4158632755279541, 0.20218303799629211, 0.8623424172401428, 0.15006335079669952, 0.0361722931265831, -1.4473973512649536, -0.5917639136314392, 0.0014616474509239197, -0.6014490723609924, 0.6389827728271484, 1.8451262712478638, -1.1522901058197021, 0.2790762484073639, 0.16619248688220978, 0.14315445721149445, 0.4390221834182739, 0.1333126425743103, 1.0373014211654663, -0.8618685603141785, -0.14229705929756165, 0.44340479373931885, 0.6496434211730957, 0.2471732497215271, -0.6984741687774658, -0.561532735824585, 0.8939107656478882, 0.18568098545074463, -0.053817931562662125, -0.28943005204200745, 0.6741330027580261, -0.7632603645324707, -0.9266805052757263, -0.1817457675933838, 0.43954500555992126, 0.19960151612758636, -1.0277429819107056, -1.265846848487854, -0.79292231798172, -0.048702746629714966, -0.4376675486564636, 0.27950915694236755, 0.4873412847518921, 0.3759476840496063, -0.10220973938703537, -0.20588867366313934, 0.6738074421882629, 0.1067139059305191, 0.4503036439418793, -0.8200979828834534, 0.17916478216648102, 1.1860380172729492, 1.8373132944107056, 0.5353924036026001, 0.36343640089035034, 0.5088455677032471, -0.8362889885902405, 0.1021401658654213, 0.0762859657406807, 0.34834203124046326, 0.12846381962299347, -0.3110567033290863, -0.17123202979564667, -0.7173298001289368, 0.08934736996889114, 0.21027086675167084, -0.04310140758752823, 0.41818782687187195, -0.5920736193656921, -0.8199197053909302, 0.5127832889556885, 0.8509542346000671, -0.2269086092710495, 0.23345819115638733, -0.6827638745307922, 0.7931607961654663, -0.7388885021209717, 0.24690905213356018, -0.526452898979187, -0.3004627525806427, 0.67826247215271, -1.162887454032898, -0.3607190251350403, -0.21430206298828125, 0.470994770526886, 0.9541324973106384, -1.388878345489502, -0.29374420642852783, -0.6122921109199524, 0.648681640625, 1.0683081150054932, 0.6999523639678955, 0.47633033990859985, 0.4716246426105499, -0.5760011672973633, 0.3465891480445862, 0.6919347047805786, 1.667285680770874, -0.1787552535533905, -0.04806780070066452, 0.3573518693447113, -0.8329241275787354, -0.27790001034736633, -0.7066339254379272, 0.15276402235031128, 0.23236623406410217, -0.07978778332471848, 0.31970804929733276, 0.0675094798207283, -0.17835408449172974, 2.2376174926757812, 0.30049407482147217, 0.4388484060764313, 0.17439678311347961, 0.3712727129459381, -0.6561214923858643, -0.46220073103904724, 0.4113943874835968, -0.444498747587204, -0.3799828886985779, 0.11938337981700897, 0.03025214374065399, 0.4271557033061981, 0.29046630859375, -0.005061892792582512, 0.6177522540092468, 0.7318719029426575, 0.056950222700834274, -0.19368702173233032, 0.859557032585144, 1.256103754043579, 0.2939263582229614, 1.386722445487976, -0.9619196057319641, -0.620182454586029, 1.2754573822021484, -0.3608682155609131, 0.893416702747345, 0.5324523448944092, 0.5365183353424072, 1.2257977724075317, -1.2856359481811523, -0.1043260395526886, 0.7757651209831238, 0.020057927817106247, 1.077824354171753, -0.1759367734193802, 0.19966846704483032, -0.3002748489379883, -0.39894577860832214, -0.20554940402507782, -9.427405893802643e-05, 0.46471503376960754, -0.08061165362596512, 0.22854536771774292, 0.9607108235359192, -0.8562830090522766, -0.33067235350608826, -0.3707670569419861, -0.625816285610199, -1.182539939880371, -0.47465425729751587, 0.5623898506164551, 0.4340505003929138, 1.2304645776748657, 1.310883641242981, 0.5866408348083496, -1.028008222579956, 0.1678091585636139, -0.897739589214325, 0.49246543645858765, -0.24797073006629944, 0.06301112473011017, -0.5787336826324463, -0.5266452431678772, 0.4607309103012085, -0.28544747829437256, -0.5343177318572998, -0.05716030299663544, -0.3662998080253601, -1.0232843160629272, 0.7196400761604309, 0.597989559173584, 0.8838070034980774, 0.5020440220832825, 0.499743789434433, 0.5399678945541382, 0.23989371955394745, -0.4378305673599243, 0.12107902020215988, 0.01291186735033989, 0.5087525844573975, -0.17489409446716309, -0.43630561232566833, -1.0120984315872192, 0.19508887827396393, 0.6876407265663147, -0.23949329555034637, 0.5630353093147278, 1.2969380617141724, 1.673221230506897, -0.11194619536399841, -0.695122241973877, 0.7635161280632019, -0.49916529655456543, 1.1228200197219849, 0.5394834876060486, -0.38936835527420044, 0.40760698914527893, -0.11160560697317123, -1.7343989610671997, 1.4849907159805298, -0.6531360745429993, 0.0855613499879837, 0.7652040123939514, 1.0779019594192505, 0.4791003167629242, 1.0358569622039795, -0.6255294680595398, -0.004006918519735336, -0.36610308289527893, -0.7891416549682617, -0.32717815041542053, 0.9827044606208801, 0.39684224128723145, -0.4556652903556824, -0.7127521634101868, -0.3000662624835968, -0.5802121758460999, 0.816472589969635, -1.0703712701797485, 0.5682137608528137, 0.5245531797409058, -0.4251790940761566, 0.002630474977195263, -0.514298141002655, 0.35963767766952515, -1.2959758043289185, 0.15135709941387177, -0.10165213793516159, 1.2180907726287842, 0.7867202162742615, 0.08677104115486145, 0.8752498626708984, -0.5462058782577515, -0.24960856139659882, -0.526009202003479, -0.7983767986297607, 1.0706521272659302, 0.5694261789321899, 0.5870237350463867, 0.2986200749874115, -0.5765105485916138, -0.4859859049320221, -0.8990329504013062, 0.012598699890077114, 1.7227187156677246, -1.1810388565063477, -0.6886604428291321, -0.44475212693214417, -0.39014336466789246, 0.3462126553058624, -0.10762009024620056, 0.7050513625144958, -0.6946259140968323, -0.9771180748939514, -0.4237552583217621, -0.1306001842021942, 0.9881629347801208, -0.3630749583244324, 0.3611970543861389, 0.6170797348022461, -0.9244623780250549, 0.5148497819900513, 0.3642709255218506, -1.4424418210983276, 0.13240019977092743, -1.3992254734039307, 0.8392981290817261, 0.4802493453025818, -0.3977796733379364, 0.4642927348613739, 1.2060232162475586, -1.8536428213119507, -0.8435739874839783, -0.7037032246589661, -0.29580816626548767, 0.12784965336322784, 1.209036946296692, -1.678646206855774, 1.052708625793457, 0.13217684626579285, -0.39849916100502014, -0.3153071701526642, 0.031508225947618484, -1.0722649097442627, -0.08725936710834503, -0.40003472566604614, 0.42892029881477356, 0.5693300366401672, 0.9040549397468567, 0.46791478991508484, 0.7820925116539001, 0.10034490376710892, 0.8428748846054077, -1.0689072608947754, -0.8427324295043945, 0.15474437177181244, 0.5276548862457275, -0.4971717894077301, -1.16468346118927, 0.3282600939273834, -0.3584335148334503, -1.025078296661377, 0.011163618415594101, 1.0429447889328003, -0.45006951689720154, 0.37852540612220764, -0.5271130800247192, -0.5660040974617004, -0.31400376558303833, 0.4965716004371643, 0.6247528791427612, -1.0087132453918457, -0.2708636522293091, -0.6848442554473877, 0.33574748039245605, -0.7479097247123718, -0.22932401299476624, 0.7229143381118774, -0.07173464447259903, -0.8252002000808716, 0.5585306882858276, 0.029506783932447433, 0.6417175531387329, -0.6078155040740967, 1.4569860696792603, 0.6805092096328735, -0.7063013315200806, 0.9273843765258789, 0.11732058227062225, -0.17685146629810333, -0.779891312122345, -0.8938720226287842, -0.802925705909729, -0.24713736772537231, 0.5429551005363464, 0.576684296131134, -0.09773509949445724, -0.64961838722229, -0.038219500333070755, 0.446614146232605, 0.2510811686515808, 1.0375629663467407, -0.7974434494972229, -0.7707885503768921, 0.5093766450881958, 0.4196317493915558, -0.7914115190505981, -0.4376845061779022, 0.3970837891101837, -0.16765563189983368, -0.30183470249176025, 0.07028558850288391, 1.0252766609191895, -0.6809148192405701, 0.5956704020500183, 0.6262147426605225, -0.44824591279029846, -0.5948882102966309, 0.09394185245037079, -1.6411901712417603, -0.5207894444465637, -0.7713719606399536, -0.5641973614692688, 0.6844007968902588, -0.9554260969161987, -0.7917714715003967, 0.3647232949733734, -0.13774748146533966, -0.39790165424346924, -0.23719081282615662, 0.08098206669092178, 0.35349026322364807, -0.42258477210998535, 1.3369272947311401, -0.25992733240127563, 1.586531162261963, -0.3861117959022522, -0.2868979573249817, -0.32137343287467957, -0.5664754509925842, -0.2880096733570099, -0.4364742338657379, 0.32826724648475647, -0.23139327764511108, -0.16762802004814148, -0.5833325982093811, -0.47595059871673584, 0.029585065320134163, -0.2147521823644638, 0.3438867926597595, -0.036901846528053284, -1.3156384229660034, 0.4918944835662842, 1.0064059495925903, 0.09388060122728348, -0.5245935916900635, -1.0307624340057373, -0.4180513918399811, 0.48694321513175964, -0.45539969205856323, 0.5881503820419312, -0.5792208909988403, 1.0266368389129639, -0.04796529933810234, -0.5791592597961426, -0.3091413378715515, -1.0096112489700317, 0.8719939589500427, -0.4438443183898926, 0.1338626742362976, -0.3352045714855194, 0.07668221741914749, 0.2886281907558441, -1.1258742809295654, -0.03647088259458542, -0.06138520687818527, -0.045728567987680435, 0.3238079845905304, -0.6887767910957336, 0.06716417521238327, -0.5281164050102234, -0.23870444297790527, 0.30119603872299194, 0.5802748799324036, 0.6053229570388794, 0.24588648974895477, -1.686085820198059, 0.1323104053735733, 0.3425111770629883, -0.08099321275949478, 0.8341683745384216, 1.2401199340820312, 0.8586206436157227, 0.43998801708221436, -0.32623952627182007, 0.3365526795387268, 0.18510647118091583, -1.0701125860214233, 0.3291851580142975, -0.5710307955741882, -0.451533704996109, -0.21794696152210236], [0.3681657612323761, -0.031838156282901764, -2.459928035736084, -0.7651617527008057, -0.056081224232912064, -0.24489091336727142, 1.8173691034317017, -0.1901022344827652, -0.06255776435136795, -1.5353097915649414, -0.7312269806861877, 0.33043909072875977, 0.8767998218536377, 0.4073050916194916, 0.4780791699886322, 0.17301952838897705, 1.3521459102630615, 0.24465115368366241, 0.08144480735063553, 0.7331534624099731, -0.5450794696807861, -1.1047978401184082, -0.04312922805547714, -0.5034513473510742, -0.0127370934933424, 0.2758917212486267, -1.1418653726577759, 0.28946632146835327, -0.9896581172943115, -0.03583644703030586, 0.7203236222267151, -1.0428407192230225, 0.2603321671485901, 0.16507208347320557, -0.8462052941322327, 0.015049264766275883, 1.6641037464141846, 0.7172606587409973, 0.7927606701850891, 0.3347488045692444, 2.052597761154175, 0.31745707988739014, 1.1500251293182373, -0.8387081623077393, 0.008944448083639145, -0.7304919362068176, 1.367149829864502, -0.7231833338737488, -0.5010404586791992, -0.08842021226882935, 1.4349461793899536, -0.19263555109500885, -0.5319409966468811, 0.8959218859672546, 0.5745543241500854, -0.7387271523475647, 0.5179842114448547, -1.447225570678711, 0.0411655530333519, -0.6377593874931335, 0.8693774342536926, 0.12981896102428436, 0.06794513016939163, 1.1880813837051392, 0.1602543294429779, -1.183005928993225, -0.3743632137775421, 0.42580223083496094, -0.06753750145435333, -0.6264793276786804, 0.18462041020393372, 0.1264413595199585, -0.023844370618462563, 0.6135680079460144, -1.5296242237091064, 0.1633738875389099, 0.9211129546165466, 0.7883664965629578, 0.21564805507659912, 1.0153018236160278, -0.7113806009292603, 0.17026250064373016, 0.9724332690238953, -0.4124482274055481, 0.46375077962875366, -0.016275877133011818, 0.5405431985855103, -0.4101465940475464, -0.8867979049682617, 1.438563346862793, -0.29768720269203186, 0.19527554512023926, 0.24087484180927277, 0.08884960412979126, -0.40764275193214417, -0.33415937423706055, 0.3053407669067383, -0.21059244871139526, -0.08167419582605362, -0.18191632628440857, -0.9445763230323792, -1.1580032110214233, 0.1946353316307068, -0.1737082451581955, 1.0898771286010742, 1.7407798767089844, 0.4279560446739197, -0.6301180720329285, -0.4525262713432312, 0.1581990271806717, -1.0175833702087402, 0.1142222210764885, -0.5883414149284363, -1.072426676750183, -0.4927627146244049, 0.8121412992477417, 1.0668087005615234, -0.20522810518741608, 1.0351439714431763, 1.0236202478408813, -0.2002328485250473, -0.11087842285633087, 0.015616814605891705, 0.04906172677874565, 0.39606761932373047, -0.19421999156475067, -0.2657209038734436, -0.21873007714748383, 0.6636607646942139, 0.6264691948890686, 0.6828615069389343, -0.01027217973023653, 0.11125892400741577, 1.538573980331421, -0.3809579014778137, 0.1862897425889969, -0.0478726327419281, -0.9878835678100586, -0.23543605208396912, 0.17438967525959015, 0.8558505773544312, -0.9745966196060181, -0.3974047303199768, -0.012892399914562702, -0.32781434059143066, -0.7271813154220581, 0.5183209776878357, -0.21655242145061493, -0.31500980257987976, -0.7822337746620178, -0.9239712357521057, -0.45142337679862976, 0.28552865982055664, 0.8037049174308777, 0.8084412217140198, -0.7321837544441223, -0.6440605521202087, 0.45688462257385254, 0.20775999128818512, -0.22325026988983154, 0.7194863557815552, -0.23095254600048065, -0.5000853538513184, 0.4286063015460968, 0.3953326344490051, -0.6948782801628113, -0.4724065065383911, 0.9975688457489014, 0.5690299868583679, 0.1364593654870987, -0.5240446329116821, 0.16345062851905823, -1.3678842782974243, -1.140981912612915, 0.4561753273010254, -0.0820605605840683, 1.4842464923858643, -0.308335542678833, -1.5958333015441895, -1.2657440900802612, 1.244641900062561, -0.4829949736595154, 0.42515379190444946, -0.40285223722457886, 0.258015513420105, -0.6733631491661072, 0.12711173295974731, 0.16520443558692932, -0.6796994209289551, -0.26485443115234375, -0.4304712116718292, -0.10637831687927246, -0.6439041495323181, 0.5023093223571777, -0.5786958932876587, -0.4237849712371826, 0.5423569083213806, -0.6957409977912903, -1.0018223524093628, -0.4802326261997223, 0.14781199395656586, -0.24036848545074463, -1.7560460567474365, 0.6514887809753418, -0.671562671661377, 1.2401726245880127, -0.955608069896698, 0.443241149187088, -1.2090641260147095, -0.2255619466304779, 0.49843624234199524, 0.43378540873527527, -0.3674169182777405, 0.4693520665168762, -0.6669744253158569, -1.430066466331482, 0.44669589400291443, 0.09352952241897583, -0.2908910810947418, -0.0767882764339447, -0.2388361096382141, 0.8333168625831604, 0.7083380222320557, -0.673053503036499, 0.6324928998947144, -0.12940940260887146, 0.015592600218951702, -0.587775707244873, -0.2144167274236679, 0.822666347026825, -0.38964831829071045, -0.7648522853851318, 0.9324312806129456, 0.5248907804489136, -0.9452700614929199, 0.17051191627979279, -0.15189658105373383, 0.08391782641410828, -0.4012625217437744, 0.4019967019557953, 0.7600375413894653, 0.14069846272468567, 0.41088613867759705, -0.24379554390907288, -0.7266443967819214, 0.9905474185943604, 0.8396660685539246, -0.6011087894439697, 0.6113777756690979, 1.351919412612915, 1.1429295539855957, -0.14776982367038727, 0.6488644480705261, -0.018304914236068726, -0.6866177320480347, -0.6957728266716003, -0.9673004150390625, 0.4046081304550171, -1.10018789768219, 1.4038891792297363, 0.7951256632804871, -0.3262728452682495, -0.6286113262176514, -0.0042452155612409115, -0.2768602967262268, -0.5677655339241028, -0.4284367263317108, 0.46824824810028076, 0.008076192811131477, -0.48239752650260925, -0.24772793054580688, -0.09129958599805832, -0.0753851979970932, 0.1345071643590927, -0.428689181804657, 0.49295851588249207, 0.31196704506874084, 0.23589852452278137, 0.04926914721727371, 1.2331193685531616, 0.34552454948425293, -1.4949002265930176, -0.29194700717926025, 0.008132628165185452, -0.210911363363266, 0.002245369367301464, -0.4435167908668518, 0.6745705008506775, 0.07845913618803024, -0.4361952543258667, -0.10554368793964386, 0.9556537866592407, -0.3555890917778015, 0.5134099721908569, -0.35067620873451233, 0.13219614326953888, 1.4403355121612549, -0.4570268392562866, -0.5915398001670837, 0.14420263469219208, 0.4708945155143738, 0.8022081851959229, 0.19198118150234222, 0.9716382622718811, -0.025265252217650414, -0.36288949847221375, -0.40556877851486206, -0.187762051820755, -0.46341457962989807, -0.03901416435837746, -0.584956169128418, -1.179102897644043, -0.4538908302783966, -0.2335810512304306, 0.16958990693092346, 0.5029547214508057, 0.69893878698349, 0.4557676613330841, 0.8599614500999451, 0.09876225888729095, -0.08860227465629578, 0.5551764369010925, 0.23350226879119873, -0.7468759417533875, 0.4742756485939026, 0.5414488315582275, -1.3533309698104858, 0.12524493038654327, 0.1220628023147583, 0.1017616018652916, 0.5261750221252441, 0.039073362946510315, 0.14215509593486786, -1.2036052942276, -0.35184046626091003, 0.4244808852672577, 1.1583751440048218, -0.7664558291435242, 0.053037822246551514, -0.590160608291626, 0.5868862867355347, 0.8579103946685791, 0.8066418766975403, -0.41849833726882935, 1.1283178329467773, -0.642029881477356, -0.765142560005188, -0.4036860466003418, 0.20061342418193817, 0.7400676012039185, -0.43992894887924194, -0.7583969831466675, 0.2174205780029297, -0.332745760679245, -0.40252289175987244, 0.8914322853088379, -0.3163961172103882, 0.4573878049850464, -0.32262372970581055, 0.3313230276107788, 0.6927400231361389, -0.5335599184036255, 0.2338491976261139, -1.239630937576294, 0.6617880463600159, 1.0732554197311401, 1.751615047454834, 0.14799083769321442, 0.3651745319366455, 0.4373592436313629, -0.12027833610773087, 0.21426819264888763, 0.14651192724704742, 1.0430017709732056, -0.1791083812713623, -0.15366068482398987, -0.36925438046455383, -0.6110462546348572, -0.085926353931427, 0.05045847222208977, 0.45127996802330017, 0.3635088801383972, -1.1861063241958618, -0.14492271840572357, 1.209093689918518, 1.0153462886810303, -0.7758303880691528, -0.26502352952957153, 0.20864738523960114, 0.031939540058374405, -0.2661663293838501, 0.025165973231196404, -0.3057243227958679, -0.1301119178533554, 0.5018800497055054, -1.5185610055923462, 0.7413727045059204, 0.9549863338470459, -0.218706414103508, 0.45242637395858765, -1.4297373294830322, 0.41839733719825745, -1.0048856735229492, 0.7241331338882446, 0.5231839418411255, 0.040715981274843216, 0.4100794196128845, 0.1835457682609558, 0.2638531029224396, 0.23748788237571716, -0.015644829720258713, 1.2207469940185547, -0.5235627293586731, 0.14415961503982544, 0.009221120737493038, -0.613422691822052, 0.6897541880607605, -0.24573275446891785, -0.6381076574325562, -0.1498836725950241, 0.059421781450510025, 0.168848916888237, 0.15577638149261475, -0.05465254560112953, 2.3256595134735107, 0.3618350923061371, 0.13411182165145874, -0.03816773742437363, -0.32496216893196106, -1.3314783573150635, -0.1418556571006775, -0.025136923417448997, 0.236083522439003, -1.085587739944458, -0.2197723239660263, 0.49137282371520996, 0.2651158273220062, 0.2931915521621704, 0.22525526583194733, 0.06872902810573578, 0.5352818369865417, 0.3854880928993225, 0.7648630142211914, 0.6445133090019226, 1.4795469045639038, -0.13100354373455048, 0.6734827756881714, -0.5633068680763245, -0.3999882936477661, 0.19519735872745514, -0.7830716371536255, 0.2462255358695984, 0.5523865818977356, 0.15209755301475525, 0.930730402469635, -1.660893440246582, -0.20873600244522095, 1.310314655303955, 0.22187228500843048, 1.0798531770706177, 0.8212985992431641, 0.23377981781959534, 0.029316283762454987, 0.07851091027259827, 0.27261999249458313, -0.11087249964475632, 0.8037967681884766, 0.6096410751342773, -0.1995197981595993, 1.0132055282592773, -0.8141394257545471, 0.003448547562584281, -0.7906668782234192, -0.4031030237674713, -0.11491671204566956, -1.2708255052566528, 0.40340670943260193, 0.9067167639732361, 0.7400898933410645, 1.216482400894165, 0.21274083852767944, -1.7791099548339844, 0.69969242811203, -0.6235780715942383, -0.1835537850856781, -0.8467634916305542, -0.8377035856246948, -0.6982970833778381, -0.2660283148288727, 0.0366964191198349, 0.02089635841548443, -0.08773303031921387, -0.5493305325508118, 0.2558816075325012, -0.7425603270530701, 1.1302422285079956, 0.7559885382652283, 1.258395791053772, 0.2148919403553009, 0.26492780447006226, -0.009882916696369648, 0.8583818078041077, -0.6474348902702332, 0.036018334329128265, 0.6351751089096069, -0.618404746055603, -0.7539142966270447, -1.7294331789016724, -0.8617345094680786, 1.4227828979492188, 0.8685662746429443, -0.44240328669548035, -0.43093809485435486, 1.0128997564315796, 1.166511058807373, -0.28986793756484985, -0.35273611545562744, 0.26302391290664673, -0.9891103506088257, 0.43405547738075256, 0.6225698590278625, -0.6426807045936584, -0.5444246530532837, -0.9704039096832275, -1.5007988214492798, 0.5698083639144897, 0.20292910933494568, -0.2593689560890198, 0.42868107557296753, 1.0110116004943848, 0.4327407777309418, 0.26048803329467773, -0.31285449862480164, 0.5159377455711365, -0.531110942363739, 0.6910595297813416, -0.8793213367462158, 0.659443736076355, -0.20664361119270325, 0.18519775569438934, -0.5638743042945862, 0.6126536726951599, -0.21523542702198029, 0.015631860122084618, -0.5261462926864624, -0.06970831006765366, 0.29701414704322815, 0.7492117881774902, -0.47667840123176575, -0.3815670311450958, 0.2793501317501068, -0.4931916892528534, -0.1122409850358963, -0.6692039966583252, 0.7434548139572144, 0.05670485273003578, -1.4182847738265991, -0.239610955119133, -0.3656897246837616, -0.037159040570259094, 0.04526432603597641, -0.6218516230583191, 1.6926321983337402, 0.8193944692611694, 0.5750724673271179, 0.6535367965698242, -0.44726383686065674, 0.3050444722175598, -0.34907078742980957, 0.7035507559776306, 1.3553466796875, -0.6802181005477905, 0.22086846828460693, -0.1956057846546173, -0.7225221395492554, 0.24491015076637268, -0.22608056664466858, 0.06199515610933304, -0.8001269698143005, -0.8255493640899658, -0.6825212836265564, -0.33477985858917236, 0.5869776606559753, -0.010148223489522934, -0.48326295614242554, 0.5859284996986389, -1.1809139251708984, -0.35647961497306824, 0.43735530972480774, -1.0291956663131714, -0.4109179675579071, -1.383960485458374, 0.551770031452179, 0.14771725237369537, 1.1624627113342285, 0.05340156704187393, 0.4784069061279297, -1.145229458808899, -1.0364638566970825, -0.8134616613388062, -0.055544883012771606, 0.8293038606643677, 0.42592859268188477, -1.0878868103027344, 0.7246264219284058, 0.36601021885871887, -0.26461365818977356, -0.7266992330551147, 0.06236466392874718, -0.29225873947143555, 0.28085756301879883, -0.2601448893547058, 0.4483984708786011, 0.16714833676815033, 1.1176140308380127, 0.7130688428878784, 1.1518473625183105, 0.8370899558067322, 1.0776070356369019, -1.056018352508545, -0.32137417793273926, -0.3426746428012848, 0.8414547443389893, -1.2028146982192993, -0.6385138630867004, -0.5335033535957336, -0.9964515566825867, -0.4217670261859894, 0.5292300581932068, 0.519156813621521, -0.8695055842399597, -0.5715409517288208, -1.515110731124878, 0.5597087740898132, -0.8888206481933594, -0.1337786465883255, 0.007842754013836384, -0.553290605545044, 0.48116734623908997, 0.12915778160095215, -0.4632242023944855, -1.1909403800964355, -0.9069709181785583, 0.4205273389816284, 0.44002002477645874, -0.9175572395324707, 0.5626019835472107, 0.20327796041965485, -0.164287731051445, -0.7628527283668518, 1.3838320970535278, 1.6761441230773926, -0.009465521201491356, 0.2838335931301117, -0.47884079813957214, 0.6364989280700684, 0.40589460730552673, -0.7978194952011108, 0.06713628023862839, -0.6246308088302612, 0.7259085178375244, 0.09332015365362167, -0.2596748173236847, 0.0750102698802948, 0.28080517053604126, -0.3388994634151459, 0.14474545419216156, 0.7700204849243164, -0.10224289447069168, -0.8952184915542603, 1.380150318145752, 0.7865402698516846, -0.3821813762187958, -0.2736569344997406, 0.7183178067207336, 0.38542693853378296, 0.1432507187128067, 0.5172150135040283, 0.844612181186676, -1.237534999847412, 0.4259948432445526, 0.09873069822788239, -0.054306644946336746, 0.03728248551487923, -0.7247014045715332, -1.5630282163619995, -0.41176533699035645, -0.560477077960968, -1.2089101076126099, 0.029981564730405807, -1.0414714813232422, -0.17830371856689453, 0.11440415680408478, -0.03213290125131607, 0.4831271767616272, -0.8973010182380676, 0.030270757153630257, -0.9963438510894775, -0.003104392671957612, 0.4200747013092041, -0.5212502479553223, 0.5941575169563293, -0.29284170269966125, -0.3826773762702942, -1.102800726890564, -0.023585904389619827, 0.03222241625189781, 0.42149242758750916, 0.12133333086967468, -0.44582515954971313, -0.13272720575332642, -0.7060645222663879, -0.5496354699134827, 0.4876587986946106, -1.2204357385635376, 0.1157526969909668, -0.0606808103621006, -1.2134448289871216, 0.36538493633270264, 0.9572460055351257, -0.2913050949573517, -0.12831003963947296, -0.6839431524276733, -0.31761616468429565, 0.35073232650756836, 0.08236084133386612, 0.07052401453256607, -0.3502925932407379, 0.8803417086601257, -0.02001572586596012, -0.4914458990097046, 0.25837117433547974, -0.46902862191200256, 0.7937739491462708, -0.48136982321739197, 0.4783448278903961, 0.8051706552505493, -0.1792004555463791, 1.0510282516479492, -0.914286732673645, 0.1560809314250946, 0.25225532054901123, -0.14049167931079865, 0.1589011698961258, -0.5282823443412781, -1.313554286956787, 0.24646563827991486, 0.06469665467739105, 0.5612870454788208, 0.36976417899131775, 0.10667701810598373, -0.006996444426476955, -0.9605422019958496, 0.5277560353279114, 0.2108311653137207, -0.6221827268600464, 0.25590816140174866, 1.7750520706176758, 1.858909249305725, 0.3573552966117859, 0.5614404678344727, 0.227325901389122, 0.44523921608924866, -1.2467213869094849, -0.6457891464233398, -0.929860532283783, -0.03990095108747482, -0.8577861785888672], [0.07677395641803741, 1.3806259632110596, -1.2699363231658936, -1.5356322526931763, 0.28784123063087463, -0.6600820422172546, 0.3808666467666626, 0.09548139572143555, -0.11653673648834229, -0.943620502948761, -1.2869826555252075, 0.2603827714920044, 0.7064964771270752, 1.3548978567123413, 1.1988393068313599, 0.18649962544441223, 0.47548431158065796, -1.0430010557174683, 0.1967732459306717, 0.7167782187461853, 0.6623823642730713, 0.2816668748855591, -0.3298620581626892, -0.712647557258606, 0.3337882161140442, 0.26225709915161133, -1.3182188272476196, -0.12607836723327637, -1.2256340980529785, -0.5030423998832703, 1.0629892349243164, -0.8521609902381897, 0.6328336596488953, -0.5084280967712402, -2.006047248840332, -0.8524157404899597, 1.0501313209533691, 0.7970028519630432, -0.39185667037963867, 0.23745490610599518, 1.163370966911316, 0.8688482642173767, 0.07946927100419998, -1.2634555101394653, 0.8793937563896179, -0.7095260620117188, 0.3003305494785309, -0.6453291177749634, 0.21897484362125397, -1.2830053567886353, 0.9315306544303894, -0.9804143309593201, -0.1349584311246872, 0.6443076133728027, 0.6426131129264832, 0.45295456051826477, -0.47361186146736145, 0.3182075619697571, 0.5347548127174377, 0.0762651264667511, 1.2109607458114624, 0.5530859231948853, -1.133271336555481, 0.6734282374382019, 0.1683398187160492, -0.02213137410581112, -0.21751420199871063, 0.34552910923957825, -0.7009471654891968, -0.19861863553524017, 0.048688288778066635, 0.4266055226325989, -0.7008364200592041, 0.18486183881759644, -1.34322988986969, 0.7325365543365479, 0.2292095571756363, 0.3040083050727844, 0.430677592754364, 0.9410544037818909, -0.9943044781684875, -0.6342321634292603, 0.3019806146621704, -0.7355782389640808, 0.5559640526771545, 0.17867693305015564, 0.4085918068885803, -0.7705969214439392, -0.39057350158691406, 1.7995176315307617, -0.4921817481517792, 0.34358084201812744, -0.122661292552948, -0.15047724545001984, -0.2145165205001831, -0.31304284930229187, 0.40370622277259827, -0.542175829410553, 0.13593944907188416, -0.16933231055736542, -0.7189620733261108, -0.31108638644218445, 0.41670727729797363, -0.08561930805444717, 0.81560879945755, 1.351537823677063, 0.42163193225860596, -0.9785571098327637, -0.48656484484672546, -0.1423010230064392, 0.4801396131515503, -0.4237585961818695, -1.172247290611267, -1.4889798164367676, -0.6606987714767456, 0.5740432739257812, 0.9610428810119629, 0.03470531478524208, 0.9044538736343384, 1.309261679649353, -0.8128468990325928, -0.2621709406375885, -0.15001904964447021, 0.5778190493583679, 0.9277558326721191, 0.26243653893470764, -0.5886715650558472, -0.058925922960042953, -0.04187340661883354, -0.23356039822101593, -0.18212147057056427, 0.31275075674057007, -0.5020715594291687, 0.8131093382835388, -0.2330971360206604, 0.829891562461853, -0.45073482394218445, -0.6139722466468811, 0.5421504378318787, -0.5819083452224731, 0.2945268452167511, -0.7967106103897095, -0.8748414516448975, -0.9362154006958008, 0.3065093159675598, -0.6610477566719055, 0.09301811456680298, -0.1657586246728897, -0.6893379092216492, 0.5363911390304565, -0.5183603167533875, 0.6062725186347961, -0.16856464743614197, 1.358058214187622, -0.15808986127376556, 0.060468029230833054, 0.6049166321754456, -0.1453263759613037, -0.30961480736732483, -0.3202655613422394, 0.7158974409103394, 0.47444602847099304, -0.8426102995872498, 0.8267077803611755, -0.06057871878147125, -0.21555764973163605, 0.6185052990913391, 0.16059890389442444, -0.5764971375465393, 0.7836573719978333, -0.6300258636474609, -0.03356556221842766, -0.336588978767395, 0.18668901920318604, 0.5999709367752075, -0.13327720761299133, 1.1702325344085693, -0.7807235717773438, -0.19164608418941498, -0.8150057792663574, 0.6520563960075378, -0.8523508906364441, 0.17207194864749908, 0.13949546217918396, 0.347182035446167, -0.30826592445373535, -0.22873236238956451, -0.6627998948097229, 0.3976166546344757, -0.48923248052597046, -0.837409257888794, 0.01728380285203457, -1.0773849487304688, 0.2311161905527115, -0.19557271897792816, -0.9966260194778442, 0.9091746211051941, -1.1049385070800781, -0.38074779510498047, 0.5220676064491272, -0.22319923341274261, 0.03329313173890114, -0.9423344731330872, 0.396999329328537, -0.874788761138916, 0.9802021384239197, -0.10028577595949173, 0.09327081590890884, -0.4843990206718445, -0.032881058752536774, 1.0841795206069946, -0.23211826384067535, -0.41474974155426025, 0.8798545598983765, 0.31414005160331726, -0.7258337140083313, -0.09912698715925217, 0.4129366874694824, -0.012055560946464539, -0.044803619384765625, 0.8503963947296143, 0.0005677081644535065, 1.241368293762207, 0.9740049242973328, 0.09024330973625183, 0.09999401122331619, -0.9174879193305969, -0.2298884391784668, -1.0496505498886108, 0.2580782175064087, -0.6691705584526062, -1.1030375957489014, 0.6451396942138672, 0.7325820922851562, 0.19750022888183594, 0.9518560171127319, -0.3246753215789795, 0.809966504573822, 0.8839257955551147, 0.8911351561546326, 0.378470778465271, -0.328023761510849, -0.5228123068809509, -0.09553094953298569, -0.2057301104068756, 0.32259050011634827, 0.9379257559776306, -0.013096507638692856, -0.7358396649360657, 1.2085250616073608, -0.3378508388996124, -0.16680823266506195, 0.6601868271827698, -0.03360723704099655, -0.11990771442651749, -0.8607083559036255, 0.023753192275762558, 0.22966264188289642, -0.7933010458946228, 1.1439464092254639, 0.8388224840164185, -1.2664599418640137, -0.32092586159706116, -0.2074742317199707, -0.5341672301292419, -0.5014175772666931, -0.45322224497795105, -0.9018877148628235, 0.21845240890979767, -0.0757814422249794, 0.08929818123579025, -0.026647543534636497, 0.10307558625936508, 0.9529176354408264, -0.0035988306626677513, -0.05710273236036301, -0.3997691571712494, 0.3708120882511139, 0.5552378296852112, 0.7013579607009888, 0.3442513942718506, -1.7392083406448364, -0.48397621512413025, -0.06709574908018112, 0.2580215036869049, 0.3122435212135315, -0.49801307916641235, 0.5791497826576233, 0.45479488372802734, -0.8046103715896606, 0.3223384618759155, 0.06951528042554855, -0.3217509686946869, -0.47366780042648315, 0.1352577656507492, 0.3997054100036621, 0.3202735483646393, -0.6104236245155334, -0.891555666923523, -0.4419594705104828, 0.26130592823028564, 1.1269536018371582, 0.6493079662322998, 0.9161345362663269, 0.48089855909347534, -0.17252230644226074, -0.3969975709915161, -0.25686514377593994, -0.2886400818824768, 0.19382351636886597, 0.07124646753072739, -0.545630156993866, -0.2362951785326004, -0.21415407955646515, 0.057872410863637924, 1.60462486743927, 0.2937034070491791, 1.1085001230239868, 0.616168200969696, -0.14651483297348022, -0.7783207297325134, -0.5816746950149536, 0.5759197473526001, -1.052229642868042, -0.002659915015101433, 1.1434717178344727, -0.6389883160591125, -0.03269163519144058, -0.5278652310371399, -0.24851027131080627, 1.0929487943649292, 0.12289006263017654, 0.20727598667144775, -0.7444596290588379, -0.2144932746887207, -0.5034123063087463, 1.2480567693710327, 0.004542395938187838, 0.36008894443511963, 0.006451457738876343, -0.29231998324394226, 0.4241555631160736, 0.8982851505279541, -0.26882490515708923, 0.6584389209747314, -0.12912389636039734, -0.3083720803260803, -0.7276343107223511, 0.5432356595993042, 1.0483380556106567, -0.23921829462051392, -0.0661541223526001, -0.7357192039489746, -0.1704714447259903, -0.7258622646331787, 0.6096521615982056, 0.5895826816558838, 1.1225143671035767, 0.18101397156715393, 0.4686220586299896, 0.6326187252998352, -0.13210873305797577, 0.022387726232409477, -0.5591018795967102, 0.8971781134605408, 0.4096233546733856, 1.2036272287368774, 0.058178387582302094, -0.5088319182395935, 0.4270830750465393, -0.7456441521644592, -0.15033145248889923, 0.259827196598053, 0.5951660871505737, -0.5921875238418579, -0.6611849665641785, -1.067111611366272, 0.10493308305740356, 0.13352075219154358, -0.31967440247535706, 0.27178800106048584, 0.1823800653219223, -0.5125186443328857, -0.7436568140983582, 0.7173309922218323, 0.27253809571266174, -0.23074352741241455, -0.36237362027168274, 0.18888568878173828, 0.29103586077690125, 0.0079725980758667, -0.20175319910049438, -0.5132974982261658, 0.1045583188533783, -0.07576772570610046, -0.44578227400779724, -0.7607650756835938, -0.020222440361976624, -0.0974377766251564, 0.18571016192436218, -0.5206632614135742, -0.1202344074845314, -0.25559866428375244, -0.38780614733695984, 0.9081661701202393, 0.29545891284942627, 0.3104698061943054, -0.03160027787089348, -0.744675874710083, -0.15091195702552795, 0.28390854597091675, 0.6200782060623169, 0.0964110866189003, 0.7609161734580994, -0.5780855417251587, -0.4238855838775635, 0.27341678738594055, -0.5212638974189758, -0.35722091794013977, -0.12736453115940094, -1.1084481477737427, 0.3737258017063141, -0.2365940511226654, -0.3500305116176605, 1.5649844408035278, -0.2843477427959442, 0.25674188137054443, 0.7082337737083435, -0.40497130155563354, -1.0971463918685913, 0.3312560021877289, 0.5651206374168396, 0.6428191661834717, -0.42487746477127075, 0.6661490201950073, 0.11274012178182602, -0.36083313822746277, 1.1911230087280273, -0.5230044722557068, 0.7252320051193237, 0.3486858308315277, -1.3880549669265747, 0.09366907924413681, 0.4326212704181671, 0.9352934956550598, 0.7396877408027649, 0.2833280563354492, -0.19006019830703735, -1.2919390201568604, 0.7980775237083435, -0.44194120168685913, 0.730673611164093, 0.7631547451019287, -0.07725837081670761, 1.5956802368164062, -1.1789462566375732, -0.7006160020828247, 0.6847208142280579, 0.5323665142059326, 0.3379839360713959, 0.8768864274024963, 0.06324831396341324, -0.8279657959938049, 0.08402083069086075, 0.7857793569564819, -0.11285524070262909, 0.5985491275787354, -0.4420994818210602, -0.4452437162399292, 0.4258463680744171, -0.22881484031677246, 0.3422882556915283, -0.1778225600719452, -0.3183348476886749, -0.2191949039697647, 0.025645582005381584, 0.3065781891345978, 0.41716232895851135, 0.4557121694087982, 1.5496201515197754, -0.8877393007278442, -1.5756070613861084, 0.2399551272392273, -0.6641305685043335, 0.22716374695301056, 0.8130924105644226, -0.641526997089386, -0.43324699997901917, -0.8688603043556213, -0.40343207120895386, 0.2255474179983139, -0.7950252890586853, -0.2795006036758423, 0.036226462572813034, -1.5510789155960083, 0.05888598412275314, 0.16077403724193573, 1.5132378339767456, 0.9455281496047974, 0.2767052948474884, 0.13431093096733093, 0.3379494845867157, -0.0667891651391983, 0.30335167050361633, -0.029513690620660782, -0.8096449971199036, 0.868901789188385, -0.9498786330223083, -0.6156595945358276, 0.8785766959190369, 1.0949335098266602, 0.3215770721435547, -0.26678037643432617, 0.4775385856628418, 1.346093773841858, -0.36143413186073303, -0.4660737216472626, 0.11159200966358185, -0.9312162399291992, 0.8688282370567322, 0.3134683072566986, -0.8811243772506714, -0.4928604066371918, -0.15748059749603271, -1.908845067024231, 0.929354190826416, -0.538619339466095, -0.9004946947097778, 0.12061671912670135, 0.1754385530948639, 0.5971811413764954, 0.44589802622795105, -0.6867509484291077, 0.19522801041603088, 0.5713384747505188, -0.578320324420929, -0.9203327298164368, -0.020842308178544044, 0.5815801024436951, 0.05561407282948494, -0.29661107063293457, 0.550616443157196, 0.5506563782691956, 0.4861295819282532, 0.5607157349586487, 0.16276758909225464, 0.7191662192344666, 0.6269069910049438, 0.49483972787857056, -1.7959730625152588, -0.05693226680159569, -0.9808796644210815, 0.22775311768054962, -0.3470669388771057, 1.0499666929244995, -0.3290523588657379, -1.1209434270858765, -0.008448265492916107, 0.4484178125858307, -0.5815371870994568, -0.5077971816062927, -0.5145175457000732, 0.4334772825241089, 0.6245616674423218, -0.9602362513542175, 0.10073895752429962, -0.2579309940338135, -0.8000388145446777, -0.5235157608985901, 0.5557928085327148, 0.8035745024681091, -1.172700047492981, -0.13555078208446503, 0.3886544704437256, 0.14246851205825806, 0.07037915289402008, -0.10416383296251297, -0.05367007479071617, -0.9977031946182251, -0.9110884666442871, -0.21748588979244232, 0.0929533913731575, 0.5551129579544067, -0.34759992361068726, 0.018439941108226776, 0.14802969992160797, -1.6698623895645142, 0.5637828707695007, 0.16440066695213318, -1.184288501739502, -0.40341007709503174, -1.1307461261749268, 0.834144651889801, 0.6086521148681641, -0.1953401416540146, 0.2487819492816925, 0.7998754978179932, -0.506863534450531, -0.6897277235984802, -1.4294092655181885, 0.010800709947943687, 0.7598833441734314, 1.183397650718689, -0.834864616394043, 0.4853964149951935, 0.585618793964386, -0.25289568305015564, 0.22920653223991394, 0.18972837924957275, -1.3923678398132324, -0.5434566140174866, 0.3747464716434479, 0.5102306008338928, 0.5031461715698242, 0.9333145022392273, -0.0062044532969594, 0.2667692005634308, 0.18640179932117462, 0.451277494430542, -0.14275723695755005, -0.026061540469527245, -0.5534740090370178, 0.1552751660346985, -1.0083777904510498, -0.7735018730163574, 0.8361942172050476, -0.303524911403656, -0.4120694696903229, 0.642204761505127, 0.9817479848861694, -0.28353151679039, -0.20404116809368134, 0.005872579291462898, 0.6107168793678284, -0.446209192276001, 0.9331203699111938, -0.06275397539138794, -0.7416232824325562, -0.25580549240112305, -0.17144939303398132, 0.3710358440876007, -0.598864734172821, 0.3688177466392517, 0.35131141543388367, 0.03695237636566162, -0.4252743721008301, 0.6982394456863403, 0.428684800863266, -0.051401782780885696, -0.40762782096862793, 1.1867016553878784, 1.4739235639572144, -0.3987923264503479, 0.10511352866888046, 0.0917266309261322, 0.08420447260141373, 0.3073676526546478, -0.27444493770599365, -0.7230938673019409, -0.5136095881462097, 0.9412675499916077, 0.25601473450660706, -0.24044929444789886, -0.8557400107383728, 0.1756233274936676, -0.13141801953315735, -0.08104298263788223, 0.9796038269996643, -0.09278750419616699, -0.42163050174713135, 0.8281049132347107, -0.03720657154917717, -0.27082523703575134, 0.2495735138654709, 0.381132572889328, 0.4663940668106079, 0.18828947842121124, 0.3468914330005646, 0.4162493348121643, -0.11815428733825684, 1.0734953880310059, 0.5507495999336243, -0.3650485575199127, -0.521422803401947, -0.7849568724632263, -1.5338629484176636, -0.13090185821056366, -0.3194580376148224, -0.8435891270637512, 0.25848227739334106, -0.5081692934036255, -0.17257514595985413, 0.4420216977596283, -0.13005298376083374, 0.34449660778045654, -0.7162193059921265, 0.002079254947602749, 0.41401979327201843, 0.22765688598155975, 1.2774194478988647, -0.20293031632900238, 0.9105727672576904, 0.47310206294059753, 0.28167977929115295, -0.1058100014925003, -0.04701106250286102, -0.04849773645401001, 0.6158990263938904, -0.6271253228187561, -0.9315049052238464, -0.017217809334397316, -0.44522199034690857, -0.5182167887687683, 0.42193347215652466, 0.31086456775665283, 0.7137261033058167, 0.056439775973558426, -1.1453378200531006, -0.6624892950057983, 0.42977187037467957, 0.4649963676929474, -0.7050033211708069, -0.22242037951946259, -0.3356916308403015, 0.28504976630210876, -0.3140261173248291, 0.8836768865585327, -0.2769641876220703, 0.510994553565979, 0.8934174180030823, 0.06513644754886627, -1.179043173789978, -0.32954010367393494, 1.0783615112304688, -0.5624997615814209, 0.5850046277046204, -1.0615414381027222, -0.038976531475782394, -0.4773730933666229, -0.43601498007774353, -0.07759978622198105, -0.03612527996301651, -0.8314492106437683, -0.08014488965272903, -0.4907747507095337, -1.0464671850204468, -0.7646406888961792, 0.32006576657295227, 1.1116158962249756, -0.8605642914772034, 0.29647326469421387, 0.30594244599342346, -1.0659517049789429, 0.8152735233306885, 0.38615065813064575, -0.019138673320412636, 0.14671479165554047, 1.4974867105484009, 1.5170304775238037, -0.0737675279378891, -0.3280562162399292, -0.44858065247535706, 0.5113017559051514, -0.6719384789466858, -0.0006050984375178814, -0.5500922203063965, 0.24620871245861053, -0.45770585536956787], [0.32628145813941956, 1.921994924545288, -1.8438161611557007, -1.6716302633285522, 0.20231404900550842, -0.015833202749490738, -0.13701274991035461, 0.4930061399936676, -0.5480270385742188, -0.8625169396400452, -1.2527518272399902, 1.0902810096740723, 1.3410555124282837, 1.4350016117095947, 0.6010682582855225, 0.4681169092655182, 0.7468911409378052, -0.43957144021987915, 0.2608230412006378, 0.988936722278595, 0.6037111282348633, -0.4545603394508362, -0.5417208671569824, -0.8849959373474121, 0.376421183347702, 0.5439892411231995, -1.7898749113082886, -0.5557032823562622, -0.9383565783500671, -1.163804054260254, 0.9228030443191528, -0.5239741802215576, -0.45720118284225464, -0.3194696307182312, -1.9668363332748413, -1.1137357950210571, 0.30314627289772034, 0.5314669013023376, -0.09669595211744308, 0.9851673245429993, 0.7203163504600525, 0.6611511707305908, -0.027006305754184723, -1.3035968542099, 1.0258238315582275, -0.35567882657051086, -0.42483001947402954, -0.9469076991081238, 0.03579145297408104, -1.30118989944458, 0.5728465914726257, -0.6417860984802246, 0.27525773644447327, 0.24963942170143127, 0.4898563623428345, 0.9237989783287048, -0.017878353595733643, 1.0143877267837524, 0.17540761828422546, 0.05254814773797989, 1.374118447303772, 0.061194583773612976, -0.8162965774536133, -0.14761880040168762, 0.5750535726547241, 0.09022631496191025, 0.5517956018447876, 0.9095413684844971, -0.6485456228256226, 0.39853715896606445, 0.48608890175819397, 0.3136425316333771, -0.6566770672798157, 0.16952066123485565, -1.2922732830047607, 0.07957404106855392, 0.02910531498491764, -0.15570993721485138, -0.10089302062988281, 1.1618151664733887, -1.013416051864624, -0.42471519112586975, 0.15214252471923828, -0.30506572127342224, 0.5836457014083862, 0.37861981987953186, -0.264467716217041, -0.6653295159339905, -0.09602612257003784, 1.2638189792633057, -0.3510333001613617, 0.37358978390693665, 0.06856510043144226, 0.010496617294847965, -0.5739095211029053, -0.8061501979827881, 0.5518168210983276, -0.7401300072669983, 0.09525644779205322, -0.8716109991073608, -0.4627341628074646, -0.7348576784133911, 0.9255443215370178, 0.6875876188278198, 1.0488221645355225, 1.4501607418060303, 0.5332505702972412, -0.8640580773353577, -0.749352753162384, 0.5414978265762329, 0.357870489358902, 0.05776806175708771, -1.3973170518875122, -1.0774434804916382, -0.5060680508613586, 0.6095068454742432, 0.672960102558136, -0.7220097184181213, 1.0778712034225464, 0.9914866089820862, -0.3939964771270752, -0.9294272661209106, -0.9683211445808411, 1.0144442319869995, 1.2311354875564575, 0.38691309094429016, -0.5197381973266602, 0.1069340929389, 0.06860335916280746, -0.654815137386322, 0.18378053605556488, 0.15978489816188812, -0.7340490818023682, 0.5831504464149475, 0.2264251559972763, 1.0997834205627441, -0.23438136279582977, -0.767601728439331, 0.9034432172775269, -0.6586472988128662, -0.025968117639422417, -0.832632839679718, -0.8011084794998169, -0.8466947674751282, -0.2215806245803833, -0.007217132020741701, -0.2500390112400055, 0.06975405663251877, -1.3568999767303467, 0.208119735121727, -1.2241454124450684, 0.5093085169792175, -0.013803769834339619, 1.605486512184143, -0.368936151266098, 0.5774706602096558, 0.7968924045562744, -0.10582393407821655, -0.5603663325309753, 0.6197933554649353, 0.697787344455719, 0.17120002210140228, -1.189841389656067, 1.0047580003738403, 0.2608114778995514, -1.233959674835205, 1.5259195566177368, 0.0665464848279953, -0.1791219264268875, 0.9268644452095032, -0.9688248634338379, -0.07550641894340515, -0.4406132102012634, 0.3646884858608246, 0.5037547945976257, -0.4684503972530365, 0.7340047955513, -0.588437020778656, 0.03339190408587456, -0.6586658954620361, -0.11519312858581543, -0.6598106622695923, 0.26612234115600586, 0.10100862383842468, 0.3869819939136505, 0.07626812160015106, -0.1792334020137787, -0.5374497771263123, -0.6062873005867004, -0.18344494700431824, -1.4539765119552612, 0.22566714882850647, -1.5918716192245483, -0.23589195311069489, -0.2521922290325165, -0.9430881142616272, 0.5307716131210327, -0.056691478937864304, -0.061659932136535645, 0.39255619049072266, -0.47626376152038574, -0.4151713252067566, -1.4469114542007446, -0.2323208749294281, -1.1352373361587524, 0.8214721083641052, -0.26324713230133057, 0.5368818044662476, -0.5719915628433228, 0.2939355671405792, 1.3041318655014038, 0.19142763316631317, -1.115421175956726, 0.5656251311302185, 0.14131957292556763, -1.0933688879013062, -0.510585367679596, -0.03082440234720707, 0.2770423889160156, 0.7134939432144165, 0.8184497356414795, -0.04501519352197647, 0.5049569010734558, 0.6663867235183716, 0.0326785147190094, 0.15279550850391388, -1.190064787864685, -0.2662827968597412, -1.259790301322937, 0.16163946688175201, -0.6679757833480835, -0.3478807806968689, 1.2690485715866089, 1.0751953125, -0.5624279379844666, 0.8082947731018066, -0.2392202615737915, 0.6055549383163452, 1.0276012420654297, 0.8687385320663452, 0.26377296447753906, 0.5113332271575928, -0.8912036418914795, -0.31505292654037476, -0.3970082402229309, -0.22788240015506744, 1.3154546022415161, -0.020423606038093567, -0.21163073182106018, 1.1457171440124512, -0.4072229564189911, -0.3712880313396454, 0.24524709582328796, 0.33339792490005493, 0.2602875828742981, -0.743812620639801, 0.496398001909256, -0.2963584065437317, -0.7750941514968872, 1.1495059728622437, 0.4616168141365051, -1.7530144453048706, -0.8398271203041077, -0.31427711248397827, 0.19254624843597412, -0.3674203157424927, -0.20587724447250366, -0.9680440425872803, 0.8115509748458862, -0.12438299506902695, -0.06318913400173187, 0.28651291131973267, 0.1525839865207672, 0.6435204148292542, -0.24160441756248474, 0.017664644867181778, -0.27045726776123047, 0.5982337594032288, 0.24926769733428955, 0.5567165613174438, -0.4826154112815857, -2.1075241565704346, -0.40297025442123413, -0.3394581079483032, 0.5485498905181885, 0.4245069622993469, 0.23126542568206787, 0.562647819519043, 0.7647535800933838, -0.7552887201309204, 0.19237573444843292, -0.32801276445388794, -0.059713710099458694, -0.3571797311306, 0.3822251558303833, 0.419647753238678, 0.444487988948822, -0.29399603605270386, -0.9007295966148376, -0.5202773213386536, 0.03646309673786163, 1.0049872398376465, 0.5848501324653625, 1.090376615524292, -0.8205570578575134, -0.32100656628608704, -0.5141026973724365, -0.11904411762952805, -0.38543203473091125, 0.040820252150297165, -0.7569805979728699, -0.6316142678260803, -0.0896049216389656, -0.31751877069473267, -0.27875816822052, 0.9595367312431335, 0.05806224048137665, 1.755568265914917, 0.9431763887405396, 0.028942424803972244, -1.3298413753509521, -0.9544206857681274, 0.1322891116142273, -1.5635044574737549, 0.7143761515617371, 0.7062350511550903, -0.4286474585533142, 0.5969552397727966, -0.49471864104270935, -0.4685184359550476, 0.34855008125305176, -0.35567933320999146, 0.4157079756259918, -0.8248999714851379, -0.6629984378814697, -0.2084028422832489, 0.8815548419952393, 0.33322766423225403, -0.11069443076848984, -0.8767024874687195, -0.17720316350460052, -0.07595599442720413, -0.023650670424103737, -0.4701460301876068, 0.6491262912750244, 0.39567285776138306, -0.43569815158843994, -0.8240566849708557, 0.8203206062316895, 1.5768378973007202, -0.4325883388519287, 0.45622754096984863, -0.9315774440765381, 0.08635024726390839, -0.3813677728176117, 0.2583676278591156, 0.8617459535598755, 0.8048073053359985, 0.2933904230594635, -0.20629693567752838, 0.5075393915176392, -0.2671978771686554, 0.37372300028800964, -0.7517489194869995, 0.5076594948768616, 0.3063996136188507, 1.3463307619094849, 0.540214478969574, -0.12579475343227386, 0.5157300233840942, -0.665781557559967, -0.1305118203163147, 0.26297974586486816, 0.10400483012199402, 0.12097002565860748, -0.7570230960845947, -0.7166616320610046, 0.3823951482772827, -0.19890251755714417, -0.29629257321357727, -0.7919244170188904, -0.07655724883079529, 0.22896379232406616, -0.27073410153388977, 0.6169727444648743, -0.7015929818153381, -0.4822019636631012, 0.2645951807498932, 0.01374020054936409, 0.49269455671310425, -0.3579406440258026, -0.5238772630691528, -0.3082645833492279, 0.1684679239988327, -0.053362198173999786, -0.4853450357913971, -0.8702687621116638, -0.13819098472595215, 0.29169517755508423, 0.2661742866039276, -1.129875659942627, -0.5948014855384827, -0.03521718084812164, 0.0874939113855362, 0.0747426375746727, 0.7236540913581848, 0.8609139323234558, -0.5332314372062683, -0.08113593608140945, 0.23638123273849487, 0.509820282459259, 0.8381580114364624, 0.20922161638736725, 0.1690434217453003, -0.8833410739898682, -0.06413203477859497, 0.20596428215503693, -0.2733859717845917, -0.49117711186408997, -0.0970301404595375, -1.146910309791565, -0.2219427227973938, -0.3538982570171356, -0.40590420365333557, 1.4894709587097168, 0.2035006433725357, 0.3327224552631378, 1.1141564846038818, -0.3460330665111542, -0.7081987857818604, 0.4072197675704956, 0.4760606586933136, 0.3461824655532837, 0.20811259746551514, 0.8914614915847778, 0.6089432835578918, 0.4450323283672333, 0.6301257610321045, -0.607553243637085, 0.9468105435371399, 0.2939413785934448, -1.097240686416626, -0.324153333902359, 0.3885394036769867, 0.60442715883255, 0.5444966554641724, 0.5050492286682129, -0.15039299428462982, -1.4969936609268188, 1.2711853981018066, -0.19836977124214172, 0.9853341579437256, 0.5737542510032654, 0.8500818610191345, 1.6078319549560547, -1.0703760385513306, -0.34462302923202515, 0.3776947259902954, 0.43214473128318787, 0.4383682608604431, 0.2740427851676941, 0.4435046911239624, -1.2104065418243408, -0.002690340159460902, 0.5343762040138245, 0.1622038632631302, 0.7730218768119812, -0.6013630032539368, 0.026755886152386665, 0.388381689786911, -0.1389656364917755, 0.39500343799591064, -0.1651509702205658, -0.3874412775039673, 0.4807324707508087, -0.13056010007858276, 0.3164575397968292, 0.5604800581932068, 0.5937709808349609, 1.4995479583740234, -0.8690816164016724, -1.0902836322784424, 0.24272464215755463, -0.9049389958381653, 0.22798562049865723, 0.7292012572288513, -0.7249905467033386, -0.2775983214378357, -1.443016529083252, -0.2866688668727875, 0.11959762871265411, -0.4158547520637512, 0.06024222448468208, -0.017409900203347206, -0.810282289981842, -0.48075273633003235, -0.20853914320468903, 1.209523320198059, 1.2033406496047974, 0.8972777724266052, 0.6116865873336792, 0.3635473847389221, -0.3131341338157654, 0.5730659365653992, 0.11014824360609055, -0.43653520941734314, 0.27834340929985046, -0.8705494999885559, -1.1916322708129883, 0.7054147124290466, 1.222516655921936, 0.7093570232391357, 0.24029986560344696, 1.0502737760543823, 1.6712604761123657, -1.1749762296676636, -0.8926350474357605, 0.027996979653835297, -0.303139865398407, 0.8183532953262329, 0.1607932448387146, -0.766061007976532, -0.38317254185676575, 0.8560749888420105, -2.139199733734131, 1.2572312355041504, 0.023616008460521698, -1.177493929862976, -0.16642363369464874, -0.15061528980731964, 0.8394911885261536, 0.6331800818443298, -0.7193549275398254, 0.2059614062309265, 0.8520855903625488, -0.9469015002250671, -1.165853500366211, 0.5227713584899902, 0.12376154959201813, 0.6835066080093384, -0.3985799551010132, 0.6405400037765503, 0.5379164218902588, 0.15469014644622803, 0.7055099606513977, 0.687292754650116, 1.1010980606079102, 0.2541060149669647, 0.13413268327713013, -2.012146472930908, -0.44248631596565247, -0.9401341676712036, 0.21601149439811707, -0.018429363146424294, 1.4530588388442993, -0.00797165185213089, -0.5498302578926086, 0.5145759582519531, -0.10168828070163727, -0.4139029085636139, -0.7966955900192261, -0.5916980504989624, 0.9342043995857239, 0.3111436665058136, -0.5062512159347534, 0.029113883152604103, -0.19317716360092163, -0.3447759449481964, 0.031942371279001236, 0.27447211742401123, 0.7150377631187439, -1.6119859218597412, -0.5487121343612671, -0.018032655119895935, 0.12169229239225388, 0.10493858903646469, -0.07969033718109131, 0.2249501794576645, -0.9573458433151245, -1.399789571762085, -0.4323793053627014, -0.2197655737400055, 0.39912161231040955, -0.8846858739852905, -0.4661245346069336, -0.2308633029460907, -1.514255404472351, 1.0943628549575806, -0.15689167380332947, -1.2026069164276123, -0.543502688407898, -1.2641332149505615, 0.8812037706375122, 0.02996455691754818, -0.015667326748371124, 0.3930860459804535, 0.5968249440193176, -0.6094823479652405, 0.042818740010261536, -0.8341696858406067, 0.2027437835931778, 1.1029630899429321, 1.5576844215393066, -0.592064619064331, 0.09595954418182373, 0.26277032494544983, -0.13548073172569275, -0.252492755651474, 0.0018544960767030716, -1.1401474475860596, 0.476962685585022, 0.4002560079097748, 0.40213075280189514, 0.12061886489391327, 1.2865357398986816, 0.11374077945947647, 0.5577254891395569, -0.05327247828245163, 0.09392517805099487, -0.2099967896938324, -0.3024241030216217, -0.6886435747146606, 0.5080843567848206, -1.3149341344833374, -0.5191829204559326, 0.34016865491867065, -0.42769676446914673, -0.03928418084979057, 0.9438234567642212, 0.31547921895980835, -0.5457804799079895, -0.05009844899177551, 0.2320999801158905, 0.1584288775920868, -0.6565319299697876, 0.8080421686172485, 0.1547589898109436, -0.9842249751091003, -0.3773038387298584, 0.5442464351654053, 0.928969144821167, -0.9595156908035278, 0.35439613461494446, -0.07940296083688736, 0.5883737802505493, -0.24569754302501678, 0.7757411599159241, 0.44152697920799255, -0.400869756937027, -0.4765317738056183, 0.7872925400733948, 1.1573410034179688, 0.4301438629627228, 0.5114505887031555, 0.9462358951568604, -0.09942968189716339, 0.85714191198349, -0.28585517406463623, 0.07644322514533997, -1.2068402767181396, 0.3050263226032257, -0.19104769825935364, 0.012373348698019981, -0.6180023550987244, 0.5640604496002197, -0.002321343868970871, 0.08747400343418121, 0.6379756331443787, 0.3143670856952667, -0.343485027551651, 0.4043079614639282, 0.4278314411640167, -0.09134960174560547, 0.35973644256591797, 0.29796889424324036, 0.7806059718132019, -0.018494660034775734, 0.04020410403609276, 0.42041733860969543, 0.020128769800066948, -0.05504637584090233, 0.33908721804618835, -0.5320942401885986, -0.08824704587459564, -0.49916601181030273, -1.1825436353683472, 0.15439045429229736, 0.03934433311223984, -0.5795400738716125, 0.37233036756515503, -1.2862071990966797, -0.7325308918952942, -0.02168266661465168, -0.36025822162628174, -0.11701890826225281, -0.5725500583648682, -0.46781468391418457, 0.21520398557186127, 0.5981494188308716, 2.2312748432159424, 0.31078580021858215, 0.9591943025588989, 0.05696026608347893, 0.4245966970920563, 0.34365060925483704, -0.16864128410816193, 0.30956950783729553, 0.06860929727554321, -0.4056532680988312, -0.5579878687858582, -0.399827241897583, -0.5457080006599426, -0.3831396996974945, 0.9546093344688416, 0.10156671702861786, 0.43333005905151367, 0.10568835586309433, -1.4238373041152954, -1.0913137197494507, 0.835342288017273, 1.142175555229187, -1.4291720390319824, -0.21156786382198334, -0.04225519672036171, -0.19126658141613007, 0.18268823623657227, 1.2029647827148438, -0.6328698396682739, 0.8119885325431824, 0.2647917568683624, 0.09795812517404556, -1.0874240398406982, -0.3583873510360718, 0.3327762186527252, -0.6354967355728149, 0.420609712600708, -0.7771114706993103, -0.1082257553935051, -0.2797192335128784, -0.42594656348228455, -0.012362940236926079, 0.0016988329589366913, -0.23184140026569366, 0.36320674419403076, 0.3572237193584442, -0.8116267919540405, -0.5855244398117065, 0.9373539686203003, 0.31587743759155273, -0.3421449363231659, 0.6621325612068176, -0.5537499785423279, -0.9797406792640686, 0.7922824025154114, 0.6998917460441589, 0.2949279844760895, 0.5726812481880188, 1.9333553314208984, 1.531845211982727, -0.1836836040019989, -0.47384992241859436, -0.42108672857284546, 0.6684868335723877, -1.0128319263458252, -0.908044159412384, -0.2188391387462616, -0.08383277803659439, 0.3255707919597626], [0.5193480849266052, 1.7859516143798828, -1.7993453741073608, -1.3912668228149414, 0.1955994814634323, -0.11059939116239548, 0.6606051325798035, 0.5829099416732788, -0.5074655413627625, -0.8368289470672607, -0.7840495705604553, 0.6290220022201538, 0.8014944791793823, 1.6868261098861694, 1.1346769332885742, -0.34313899278640747, 0.6819494366645813, -0.8339492082595825, 0.85716313123703, 1.0355364084243774, 0.6186221837997437, 0.4631226062774658, -1.0007305145263672, -0.5786211490631104, 0.23049406707286835, 0.49928706884384155, -1.223922610282898, 0.21471847593784332, -1.7427558898925781, -1.0909901857376099, 0.9517908692359924, -0.4429440200328827, 0.13894255459308624, -0.8119634985923767, -2.0206048488616943, -1.4815655946731567, 1.425286889076233, 0.7472032904624939, -0.2214793711900711, 0.8999022245407104, 1.1890426874160767, 0.49301615357398987, -0.47199109196662903, -1.2587236166000366, 0.45145630836486816, 0.20563501119613647, 0.27356743812561035, -0.4688415825366974, -0.17449891567230225, -1.464880347251892, 0.5824679136276245, -0.4733082950115204, 0.6089394688606262, 0.6273667812347412, 0.9545872807502747, 0.4364170730113983, -0.31986483931541443, 0.7652508616447449, 0.20833691954612732, -0.2431047409772873, 1.0984054803848267, 0.2233646661043167, -0.8905618786811829, -0.22973015904426575, 0.05463726446032524, -0.213655486702919, 0.6292083859443665, 0.0687914788722992, -0.4710254967212677, 0.21853050589561462, 0.7765047550201416, 0.31460800766944885, -0.994964063167572, -0.10537492483854294, -1.644531488418579, -0.08845892548561096, -0.05870194733142853, 0.3247775435447693, 0.01799158565700054, 0.6232848167419434, -1.4117311239242554, 0.008343391120433807, 0.03298274427652359, -0.3769003748893738, 1.0129867792129517, 0.5928239822387695, 0.21269133687019348, -0.28940489888191223, 0.15972022712230682, 1.6724212169647217, -0.35887372493743896, 0.6646257638931274, 0.3096955418586731, -0.03700695186853409, -0.5354713797569275, -0.8766143321990967, 0.10406885296106339, 0.2679412364959717, 0.04902934283018112, -0.4515400230884552, -0.46221402287483215, -0.8591393232345581, 1.1956065893173218, 0.5062585473060608, 0.6593780517578125, 1.4426970481872559, 0.9645792245864868, -1.0037025213241577, -1.1442071199417114, -0.27280357480049133, 0.1617051512002945, -0.2863631546497345, -0.9372252225875854, -0.6930733919143677, -0.4377995729446411, -0.02099008858203888, 0.9584504961967468, 0.023118067532777786, 0.5204366445541382, 0.4811493456363678, -0.1014513447880745, -0.4911905825138092, -0.38058221340179443, 0.9675328135490417, 0.9740108251571655, -0.3465670943260193, -0.7883988618850708, -0.03357242792844772, 0.400234580039978, -0.8901227116584778, 0.12350883334875107, 0.3708838224411011, -0.3314967453479767, 0.8635138869285583, 0.11231624335050583, 0.6335203647613525, -0.17091555893421173, -0.2566530704498291, 0.42544829845428467, -0.9846084117889404, 0.056157294660806656, -0.9268414378166199, -0.5954148769378662, -0.824393630027771, 0.7612440586090088, -0.37275153398513794, 0.50630784034729, 0.20159770548343658, -1.1380540132522583, 0.405594140291214, -0.8111740946769714, 0.04819962754845619, 0.4156876504421234, 1.751101016998291, -0.2572847902774811, 0.25652238726615906, 0.9375028610229492, 0.2969514727592468, -0.5341964364051819, 0.7657194137573242, 0.7558263540267944, 0.2491227239370346, -1.471136450767517, 1.4291753768920898, 0.03201182559132576, -0.724635899066925, 1.4600753784179688, 0.16366344690322876, -0.06725581735372543, 0.7731029391288757, -0.9996261596679688, -0.10634621232748032, -0.6616307497024536, 0.48125872015953064, 0.11830821633338928, 0.3188090920448303, 1.2678658962249756, -0.7456645965576172, -0.7653156518936157, -0.5239382386207581, 0.2727971374988556, -0.13111089169979095, -0.2516029477119446, -0.5377378463745117, 0.3563210368156433, -0.5392113327980042, -0.21896734833717346, -0.7168830633163452, -0.14087693393230438, -0.47264039516448975, -1.1952475309371948, 0.6869494915008545, -1.765775442123413, -0.4020042419433594, -0.12387782335281372, -1.3577935695648193, 0.8886827230453491, -0.8590592741966248, -0.37035053968429565, 0.3420894742012024, -0.275333046913147, -0.09057123959064484, -0.980134904384613, 0.3122754693031311, -0.8932620286941528, 0.29374703764915466, -0.6928994655609131, 0.48448070883750916, -0.7248426079750061, 0.4254568815231323, 0.7750774621963501, 0.41645199060440063, -0.5094700455665588, 0.94403076171875, 0.20338965952396393, -1.29009211063385, -0.25742781162261963, 0.364517480134964, 0.5655887126922607, 0.721987247467041, 0.6175711154937744, -0.16081342101097107, 0.9840577840805054, 0.9161324501037598, 0.008998681791126728, 0.5420976877212524, -1.0854729413986206, -0.6197888851165771, -1.2693079710006714, 0.35471272468566895, -0.5247376561164856, -1.4891331195831299, 0.5619978308677673, 0.9843361973762512, -1.042291283607483, 0.24550189077854156, -0.34207403659820557, 0.3393198549747467, 0.9472107887268066, 1.1755715608596802, -0.24312081933021545, 0.2577071189880371, -0.26085591316223145, -0.4101385772228241, -0.5482375621795654, 0.5688050389289856, 1.5687625408172607, 0.3504275977611542, 0.2137308120727539, 1.5215041637420654, -0.6616315245628357, -0.34428051114082336, 0.44541600346565247, -0.10183797776699066, 0.273436963558197, -0.573299765586853, -0.058543816208839417, -0.7985246181488037, -1.4682389497756958, 1.4354205131530762, 0.6990247368812561, -1.7357362508773804, -0.572251558303833, -0.29880496859550476, 0.07263975590467453, -0.687491774559021, 0.1596325784921646, -0.3412320017814636, 0.35327476263046265, -0.1812170147895813, -0.2720208168029785, 0.15888670086860657, -0.3088493347167969, 0.6587729454040527, -0.021130641922354698, -0.07115179300308228, -0.23852065205574036, 0.18338385224342346, 0.8277117013931274, 0.5120276808738708, -0.14902140200138092, -1.9781694412231445, 0.08654291927814484, -0.25236591696739197, 0.8004918098449707, 0.18204903602600098, -0.16628940403461456, -0.1577802151441574, 0.7736806869506836, -0.4779304265975952, -0.3496286869049072, 0.044071607291698456, -0.6984631419181824, -0.2000410258769989, -0.5149655342102051, 0.6156690716743469, 0.13984182476997375, -0.5466985702514648, -0.8995656967163086, -0.44777676463127136, 0.07654811441898346, 1.1587094068527222, 0.43910926580429077, 1.4650722742080688, -0.4381992220878601, -0.477418452501297, -0.3219563066959381, -0.26432347297668457, -0.05926550179719925, 0.4040326476097107, -0.5436484813690186, -0.29132479429244995, -0.8522951006889343, -0.41323167085647583, -0.023703744634985924, 1.4383964538574219, -0.16348762810230255, 1.1627683639526367, 0.5700196027755737, -0.09194187819957733, -1.0234746932983398, -0.724425196647644, 0.3853370249271393, -1.4751591682434082, 0.827521800994873, 0.7445236444473267, -0.3342941105365753, 0.5057541728019714, -0.10825823247432709, -0.056981004774570465, 0.9716952443122864, 0.370715469121933, 0.35611873865127563, -0.6298778057098389, -0.3571292459964752, -0.14898884296417236, 0.6223989725112915, 0.0725899338722229, -0.011521072126924992, -1.071547031402588, 0.06927691400051117, 0.1998584270477295, -0.16255956888198853, -0.4078364372253418, 0.965665340423584, -0.450690895318985, -0.25762519240379333, -0.5962539911270142, 0.4334246814250946, 1.4826387166976929, 0.18484312295913696, 0.3305957317352295, -0.7069781422615051, -0.38575437664985657, -0.37975582480430603, 0.7853954434394836, 1.0420244932174683, 0.7642727494239807, -0.19345489144325256, 0.34337204694747925, 0.9118444919586182, 0.20790265500545502, -0.03964288905262947, -1.032914638519287, 1.0329951047897339, 0.2694509029388428, 1.1611878871917725, 0.5468913912773132, -0.18195655941963196, 0.03254270926117897, -0.05537259951233864, -0.21725493669509888, 0.062021780759096146, 0.11759260296821594, 0.29499125480651855, -0.5280197858810425, -0.520553708076477, 0.08222727477550507, -0.21720285713672638, -0.22942744195461273, 0.3833785951137543, 0.05394989252090454, 0.12565462291240692, -0.12512291967868805, 0.7665659785270691, -1.0027884244918823, -0.28040897846221924, -0.2894912660121918, -0.7476683855056763, 0.2867209017276764, -0.024670036509633064, -1.1200153827667236, -0.10589016228914261, 0.21239390969276428, 0.027820654213428497, -0.74410080909729, -0.9590764045715332, -0.4949905276298523, 0.30806463956832886, 0.7786392569541931, -1.1768288612365723, -0.022646663710474968, -0.2800322473049164, 0.2822081744670868, 0.26859328150749207, 0.04956101253628731, 0.5586400032043457, -0.18470433354377747, -0.07029121369123459, 0.470537930727005, 0.48344945907592773, 0.9621421694755554, 0.3237602412700653, -0.2810395061969757, -0.6927223801612854, -0.14956513047218323, 0.7559905648231506, -0.30221015214920044, -0.5699727535247803, 0.15734849870204926, -1.391878366470337, -0.040813859552145004, -0.8259053826332092, -0.4237261712551117, 1.1147133111953735, 0.010712350718677044, -0.3412685692310333, 1.1155805587768555, -0.2057335376739502, -1.447776198387146, 0.03750839829444885, 0.19320736825466156, 0.1727646142244339, -0.1755513697862625, 0.6774948835372925, 0.6615558862686157, -0.12523099780082703, 0.6199765205383301, -0.1177813708782196, 0.5732809901237488, -0.43197891116142273, -0.9766362309455872, 0.38596850633621216, 0.5082759857177734, 1.0769011974334717, 0.8251823782920837, 0.6464030146598816, -0.8705875277519226, -1.4599580764770508, 0.9395490288734436, -0.5762816667556763, 0.9111087322235107, 0.7165445685386658, 0.9706860184669495, 1.5875078439712524, -1.7860888242721558, -0.176711767911911, 0.7892964482307434, 0.4554746150970459, 0.8821069598197937, 0.38945308327674866, 0.24192969501018524, -0.7371686697006226, 0.12529803812503815, 0.4393424391746521, -0.01450119074434042, 0.32796990871429443, -0.26754000782966614, -0.5611038208007812, 0.5297099351882935, -0.698894739151001, -0.33483147621154785, 0.23802070319652557, -0.37058448791503906, 0.3746880888938904, -0.5010955929756165, 0.07178405672311783, 0.99283367395401, 0.8427188396453857, 1.249766230583191, -1.1508381366729736, -1.570353627204895, 0.4460562467575073, -0.44892042875289917, 0.011139526031911373, 0.6699689030647278, -0.9029281139373779, -0.3863792419433594, -1.2967665195465088, -0.2821268141269684, 0.6027872562408447, -0.3534564673900604, -0.20408698916435242, -0.4235520362854004, -0.7870963215827942, 0.2126058042049408, -0.008032413199543953, 1.4538942575454712, 1.1017324924468994, 0.6772112250328064, 0.5107054710388184, -0.4818325638771057, -0.5959444046020508, -0.014473016373813152, 0.0356704518198967, -0.6059489846229553, 0.3006620407104492, -0.8658905029296875, -0.9983261227607727, 1.1925157308578491, 1.227047085762024, 0.5645139217376709, 0.593419075012207, 1.1186528205871582, 1.893712043762207, -0.8537284731864929, -0.7745137214660645, -0.07370935380458832, -0.3308170437812805, 0.4721696972846985, 0.5615953803062439, -0.4063717722892761, -0.38949617743492126, 0.4157743453979492, -2.6056313514709473, 1.0043383836746216, 0.3861253261566162, -0.5072072744369507, -0.2078286111354828, -0.5337724685668945, 0.9241587519645691, 0.7920590043067932, -1.0557254552841187, 0.07003310322761536, 0.5135042071342468, -1.4143885374069214, -1.144117832183838, -0.28705650568008423, 0.4110807776451111, 0.7441458702087402, -0.8629262447357178, 0.7835168838500977, 0.20003686845302582, 0.489617258310318, 0.8057211637496948, 0.5339271426200867, 1.0128098726272583, 0.7649571895599365, -0.04681891202926636, -1.873822569847107, -0.1060902327299118, -0.7781344056129456, 0.2153978943824768, -0.33765795826911926, 1.4187045097351074, 0.46621423959732056, -0.649263858795166, 1.0697591304779053, -0.10211044549942017, -0.9470861554145813, -0.8563531637191772, -0.7192962765693665, 0.47532957792282104, 0.6175459027290344, -0.718001127243042, -0.17597469687461853, -0.7040005922317505, -0.1671663075685501, -0.36171674728393555, 0.271236777305603, 0.8557673692703247, -1.3044861555099487, -0.6543206572532654, 0.23654088377952576, -0.028566328808665276, 0.3450753390789032, -0.06472256779670715, 0.626688539981842, -0.658508837223053, -1.0942307710647583, -1.1759312152862549, 0.4079534709453583, 0.23996751010417938, -0.6809229254722595, -0.2879221737384796, 0.23005090653896332, -1.9900811910629272, 1.171910285949707, -0.4305958151817322, -1.1557484865188599, -0.27347588539123535, -0.77254718542099, 0.9877549409866333, -0.5173100829124451, 0.3365649878978729, 0.4656921625137329, 0.6974507570266724, -0.27796247601509094, -0.24059629440307617, -1.1890721321105957, 0.591027557849884, 1.3997375965118408, 0.8978816866874695, -0.6934682130813599, 0.7492884993553162, 0.10301363468170166, -0.6559833288192749, -0.08550361543893814, 0.032695140689611435, -1.8142409324645996, 0.45472609996795654, 0.5192579030990601, 0.6240037679672241, 0.6160475015640259, 1.1677912473678589, 0.6744846701622009, 0.9109872579574585, -0.36766302585601807, 0.1716138869524002, 0.21487519145011902, -0.24760939180850983, -0.6973125338554382, 0.42241743206977844, -1.4119926691055298, -0.8093987107276917, 0.6767822504043579, -0.7149267196655273, -0.27623969316482544, 0.9219108819961548, 0.05292040482163429, -0.036474570631980896, 0.017061632126569748, 0.06520219147205353, 0.18602675199508667, -0.6891626715660095, 1.0126140117645264, 0.21191559731960297, -1.0626696348190308, -0.36152321100234985, 0.582615315914154, 0.6296408772468567, -1.2899359464645386, 0.3086138665676117, -0.4257262349128723, 0.5642387270927429, 0.11019787192344666, 0.5551988482475281, 0.8757394552230835, -0.37168511748313904, -0.7461464405059814, 0.7606821656227112, 1.6087974309921265, -0.12565627694129944, -0.07049403339624405, 1.005842685699463, 0.14788605272769928, 0.2668799161911011, 0.1587291955947876, -0.463177889585495, -1.4011168479919434, 1.0153543949127197, -0.22792740166187286, -0.7035015225410461, -0.6163703203201294, 0.29231536388397217, -0.7633339166641235, -0.07059428840875626, 0.7589263319969177, 0.29867106676101685, -0.354458749294281, 0.7760723233222961, 0.3288755714893341, -0.14540702104568481, 0.46987617015838623, 0.3741964101791382, 0.5333572626113892, -0.38907739520072937, 0.46731191873550415, 0.06311012804508209, 0.007363041862845421, 0.055689360946416855, 0.14458557963371277, -0.0905189961194992, 0.4413492679595947, -0.6508772969245911, -1.9871207475662231, -0.16509880125522614, -0.6499739289283752, -0.10201883316040039, 0.7032983303070068, -0.9125736355781555, -0.3290926516056061, 0.19942902028560638, -0.10578639805316925, 0.009519878774881363, -1.1589696407318115, -0.5386360287666321, 0.0778437927365303, 0.5082961320877075, 1.4954010248184204, 0.350646048784256, 0.9144012331962585, 0.1859542578458786, 0.5034169554710388, 0.13760478794574738, -0.1939295083284378, -0.005503354128450155, 0.25907033681869507, 0.02589190937578678, -0.5312998294830322, 0.05000489950180054, -0.4360402524471283, -0.3999398648738861, 0.9644352197647095, -0.6028683185577393, 0.17757150530815125, -0.05039898678660393, -1.6414649486541748, -0.5789861083030701, -0.012078415602445602, 0.6762238144874573, -0.6325118541717529, -0.1554969698190689, -0.23607957363128662, 0.19260157644748688, -0.05495990067720413, 0.8181559443473816, 0.06491943448781967, 1.3778408765792847, 0.676440954208374, -0.1251082718372345, -1.2305402755737305, -0.45048075914382935, 0.6348522901535034, -0.3906988799571991, 0.22389085590839386, -0.8917437791824341, -0.06091396138072014, -0.30137935280799866, -0.7284929156303406, 0.2210829108953476, 0.21254689991474152, -0.3946245014667511, -0.17506837844848633, -0.05331439524888992, -0.7551557421684265, -1.1608291864395142, 0.6623319387435913, 1.0909428596496582, -0.24505387246608734, 0.11970584839582443, -0.341786652803421, -0.5373943448066711, 0.35932087898254395, 0.5516642928123474, 0.41438624262809753, 0.45617181062698364, 1.5153915882110596, 2.0122148990631104, -0.0007575768977403641, -0.18024367094039917, -0.09768415987491608, 0.557902455329895, -1.2017624378204346, -0.1796901822090149, -0.5314472317695618, -0.06701204925775528, -0.2711241841316223], [0.48334330320358276, 1.5124090909957886, -1.4560174942016602, -1.3149583339691162, 0.53092360496521, -0.7229890823364258, 0.5858429670333862, 0.7813279628753662, -0.6293761730194092, -1.2713872194290161, -1.228276014328003, 0.874670684337616, 0.5297130346298218, 0.7659842371940613, 1.0646103620529175, 0.22772669792175293, 1.2102043628692627, -0.6947996020317078, 0.14607533812522888, 0.9073978066444397, 0.6909390687942505, 0.13153280317783356, -0.2414659708738327, -0.9402483701705933, 0.7657018303871155, 0.12671443819999695, -1.3268200159072876, 0.8137428760528564, -1.3574645519256592, -1.5534119606018066, 1.3490560054779053, -0.9365476369857788, 0.35554835200309753, -0.5556647181510925, -1.6047074794769287, -0.901674747467041, 1.1282137632369995, 0.40121132135391235, -0.3977653384208679, 0.797925591468811, 1.500998616218567, 0.7940434813499451, -0.388313353061676, -1.018828272819519, 1.2008761167526245, -0.5341607332229614, 0.2619413435459137, -0.8886392712593079, -0.36802759766578674, -1.6219565868377686, 0.6367905139923096, -0.4076932966709137, -0.10243361443281174, 0.6370826959609985, 0.8160709142684937, 0.5170797109603882, -0.3060416281223297, 0.5520661473274231, -0.09220892190933228, -0.8850880861282349, 0.9286638498306274, 0.45615553855895996, -0.7533618211746216, 0.8041175603866577, -0.05273834615945816, -0.3248971402645111, -0.19230493903160095, 0.5445044636726379, -0.3371324837207794, -0.3694128692150116, 0.6426125764846802, 0.2928849458694458, -0.6206579208374023, 0.06339138001203537, -1.417046070098877, 0.22605641186237335, 0.2026747316122055, 0.2582281529903412, -0.18622513115406036, 1.3233662843704224, -0.4215999245643616, -0.6563271284103394, -0.463463693857193, -0.9905315041542053, 0.5305593013763428, -0.25652843713760376, 0.03165234625339508, -0.0029624514281749725, -0.40880832076072693, 1.9176852703094482, -0.11548809707164764, 0.06919555366039276, -0.2436271756887436, 0.5154539346694946, -0.5168254971504211, -0.7074613571166992, -0.025516383349895477, 0.24066868424415588, -0.16282328963279724, -0.467204749584198, -0.7882360219955444, -0.5143865346908569, 0.8012073040008545, 0.37180450558662415, 0.24810342490673065, 1.3280545473098755, 1.0241353511810303, -1.0840098857879639, -0.782650887966156, -0.22125017642974854, -0.2918529808521271, -0.2047978788614273, -0.6685206890106201, -0.7578142881393433, -1.3915550708770752, -0.059047553688287735, 0.9081129431724548, -0.00018780911341309547, 0.7892851233482361, 1.0066235065460205, -0.6065202951431274, -1.1858909130096436, -0.18655891716480255, 0.35701704025268555, 0.936279833316803, -0.2514718472957611, -0.9042997360229492, -0.18389007449150085, 0.7234559655189514, -0.4059368669986725, -0.03721456602215767, 0.27157479524612427, -0.27971363067626953, 1.0895476341247559, 0.36607763171195984, 0.9175659418106079, 0.18675115704536438, -0.717913031578064, 0.3933548033237457, -0.7012238502502441, -0.10016117990016937, -0.6439882516860962, -0.4953523278236389, -0.8971671462059021, 0.18022695183753967, -0.7718931436538696, -0.5508302450180054, 0.3315001428127289, -0.8434079885482788, 0.9576162695884705, -0.9486193060874939, 0.48432329297065735, -0.07156114280223846, 1.6393802165985107, -0.12140002846717834, 0.7371865510940552, 0.7433789968490601, 0.36406180262565613, -0.6957382559776306, 0.051748115569353104, 1.105031967163086, 0.2966386079788208, -1.3129780292510986, 0.9792352318763733, 0.3708422780036926, -0.49262431263923645, 0.6817227005958557, 0.5266921520233154, -0.5138969421386719, 0.8118484020233154, -1.1953414678573608, -0.2550944983959198, -0.670260488986969, 0.6335482597351074, -0.20181314647197723, 0.3278084695339203, 1.150070071220398, -1.151540756225586, -1.286281704902649, -1.0649603605270386, 0.32183438539505005, -0.5821604132652283, 0.12496335059404373, 0.14186754822731018, 0.09242565184831619, 0.2609426975250244, -0.10590406507253647, -0.8481811881065369, 0.2201840728521347, -0.7443735599517822, -0.8629354238510132, 0.1815875917673111, -1.1243298053741455, 0.10348399728536606, -0.21892227232456207, -0.9345365166664124, 0.6510105133056641, -1.1341700553894043, 0.24957819283008575, 0.35261231660842896, 0.06212877854704857, -0.4494125545024872, -1.3450170755386353, 0.03360667824745178, -0.5323390960693359, 0.6649784445762634, 0.08529738336801529, -0.0682426393032074, -0.5446248054504395, 0.6173002123832703, 1.2713335752487183, 0.026981418952345848, -0.3818730413913727, 0.5148479342460632, 0.7105885744094849, -1.016824722290039, -0.25720176100730896, 0.6573435664176941, 0.39883679151535034, 0.2996789216995239, 0.829353392124176, 0.010514296591281891, 0.7134179472923279, 0.613294243812561, 0.2075568288564682, -0.02027835324406624, -1.6167171001434326, 0.11676709353923798, -1.0446754693984985, -0.6907974481582642, -0.14022044837474823, -0.978874921798706, 0.6257860660552979, 0.724330484867096, -0.07777270674705505, 0.990475058555603, -0.12841156125068665, 0.4442325532436371, 0.3575799763202667, 1.4968957901000977, 0.5225791335105896, 0.15172195434570312, -0.656599223613739, 0.39179903268814087, -0.16738887131214142, 0.013844098895788193, 1.1853864192962646, -0.013841399922966957, -0.3126120865345001, 1.89449942111969, 0.06084166467189789, -0.16702499985694885, 0.7103089094161987, -0.08514430373907089, 0.05356423184275627, -0.5015965104103088, 0.14993201196193695, 0.0298320185393095, -1.051234483718872, 1.0615328550338745, 0.9030657410621643, -1.9230475425720215, -0.4394603669643402, -0.13959527015686035, -0.6130842566490173, -0.6114928722381592, -0.15079213678836823, -0.6700913906097412, 0.3394078016281128, -0.13492532074451447, -0.30747082829475403, 0.2579571306705475, 0.03909287974238396, 0.7704579830169678, -0.27843084931373596, -0.08446435630321503, 0.10972633212804794, 0.23385056853294373, 0.32452571392059326, 1.1188050508499146, -0.38975778222084045, -1.8809844255447388, -0.43649670481681824, -0.6521341800689697, 0.5385175347328186, 0.5753493309020996, -0.7886673212051392, 0.1259620487689972, 1.0432982444763184, -0.538062572479248, -0.09082116186618805, -0.04671400785446167, 0.14865481853485107, 0.14100144803524017, -0.6354559659957886, 1.1157509088516235, 0.28633633255958557, -0.5365705490112305, -0.5157297849655151, -0.7747673988342285, 0.139798104763031, 0.7812918424606323, 0.8823477625846863, 0.9595873355865479, 0.5013225078582764, 0.026491304859519005, -0.9057283997535706, -0.03540647402405739, -0.11200685054063797, 0.3117915689945221, -0.5444461703300476, -0.8471958041191101, -0.3657948076725006, -0.5476369857788086, -0.10953493416309357, 1.1746922731399536, -0.09668312966823578, 0.9956067800521851, 0.8955346941947937, 0.19342239201068878, -0.8288874626159668, -0.8412532806396484, 0.2115691602230072, -1.3859530687332153, 0.6446406841278076, 0.6895976662635803, -0.1464506834745407, 0.52989262342453, -0.09587980806827545, 0.2644481956958771, 0.7667312026023865, 0.42169004678726196, 0.1225278303027153, -0.8944647312164307, -0.14207576215267181, -0.08729307353496552, 1.1257692575454712, 0.12319584935903549, 0.0163510013371706, -0.12593358755111694, -0.5406284928321838, -0.37371230125427246, 0.7403380870819092, 0.1716257631778717, 0.6176930665969849, -0.19258463382720947, -0.23381634056568146, -0.49041587114334106, 0.925520122051239, 1.5019603967666626, -0.203485369682312, 0.8094407320022583, -0.7914735078811646, -0.2467762976884842, -0.6841509938240051, 0.9603711366653442, 0.5981417298316956, 1.1739516258239746, 0.6011718511581421, -0.06608449667692184, 1.1429808139801025, 0.0036788880825042725, 0.5093615055084229, -1.2436240911483765, 0.29271751642227173, 0.43379664421081543, 1.255142092704773, -0.06447680294513702, -0.06773661822080612, 0.4860093593597412, -0.01988997682929039, -0.8438672423362732, -0.1530395746231079, 0.6209047436714172, 0.08265314251184464, -0.468149334192276, -0.5983436107635498, -0.042367495596408844, -0.3049158751964569, -0.27562668919563293, 0.33112484216690063, -0.10832341760396957, -0.3341312110424042, -0.4760165810585022, 0.1960781067609787, -0.3651808798313141, -0.33703598380088806, -0.05928735062479973, 0.07110559940338135, 0.10790754109621048, -0.17404957115650177, -0.057433001697063446, 0.39057281613349915, -0.04578704759478569, 0.33927664160728455, -0.32034558057785034, -0.9157488942146301, -0.15434905886650085, -0.3969530165195465, 0.5611595511436462, -1.4843553304672241, -0.447642058134079, -0.43858519196510315, 0.44078725576400757, -0.33817583322525024, -0.06417211890220642, -0.06912403553724289, -0.11114072054624557, 0.3825731575489044, -0.40365713834762573, 0.6508499383926392, 1.1552002429962158, 0.06285158544778824, -0.1949406862258911, 0.22295349836349487, -0.39531034231185913, 0.5663830637931824, -0.6329490542411804, -0.45297956466674805, 0.165178582072258, -1.0584772825241089, 0.1449003666639328, 0.06806173920631409, -0.38483160734176636, 1.6634912490844727, -0.1431533694267273, -0.1449294537305832, 0.6523390412330627, 0.5148594975471497, -1.1917223930358887, 0.8542355298995972, 0.3994849920272827, 0.4486970603466034, -0.28064966201782227, 0.4595043659210205, 0.06220242753624916, -0.2566704750061035, 0.7051467299461365, -0.14420638978481293, 0.7388644218444824, 0.2456897348165512, -0.7788202166557312, 0.0018805647268891335, 0.6139256954193115, 0.984778881072998, 0.49681901931762695, 0.9679874777793884, -0.6627629995346069, -0.9806779623031616, 1.0804346799850464, -0.16048529744148254, 1.3758784532546997, 1.0898786783218384, 0.6422354578971863, 1.5304384231567383, -1.5152485370635986, -0.04956504702568054, 0.7567339539527893, 0.4579410254955292, 0.05214110389351845, 0.41043081879615784, 0.43408963084220886, -0.765720546245575, -0.07098497450351715, 0.7794910073280334, -0.3851009011268616, 1.0776537656784058, -0.6271846890449524, -0.2875177264213562, 0.11172207444906235, -1.090762734413147, 0.24756382405757904, -0.4455147385597229, -0.6278384923934937, 0.2043098658323288, -0.5024244785308838, 0.3633207678794861, 0.7694116234779358, 0.6749237179756165, 1.7330824136734009, -0.8534750938415527, -1.9106534719467163, 0.3247850835323334, -1.1273701190948486, -0.2712315022945404, 0.7185085415840149, -0.4905109107494354, -0.9788638949394226, -0.7883789539337158, -0.09180134534835815, 0.5240770578384399, 0.0024933628737926483, 0.14763756096363068, -0.22998666763305664, -1.0813716650009155, 0.17704781889915466, -0.24114571511745453, 1.002690315246582, 0.8742110729217529, 0.5253573060035706, 0.30458107590675354, 0.6718440651893616, 0.07550262659788132, -0.35404226183891296, -0.4212496876716614, -0.45701998472213745, 0.5869827270507812, -0.7074496746063232, -1.3534938097000122, 0.6559668183326721, 0.9349241852760315, 0.31555986404418945, -0.09915235638618469, 0.858574628829956, 1.5213873386383057, -0.8460241556167603, -0.859083354473114, 0.006229297257959843, -1.1479805707931519, 0.11044656485319138, 0.1172972247004509, -1.3343453407287598, -0.15312357246875763, -0.23879995942115784, -1.7289061546325684, 1.4941083192825317, -0.0036963969469070435, -0.8808702826499939, -0.26789721846580505, 0.3078826665878296, 0.23706664144992828, 0.5220023989677429, -0.348295658826828, 0.011040092445909977, 0.35698360204696655, -1.032547116279602, -1.1963781118392944, 0.19944141805171967, 0.35984495282173157, 0.24793191254138947, -0.18616798520088196, 0.6702951192855835, 0.15462203323841095, 0.5059248805046082, 0.5107313990592957, 0.4976089894771576, 0.9133033752441406, 0.4606287479400635, 0.12654522061347961, -1.847848892211914, 0.09161529690027237, -0.9702394008636475, 0.05699748918414116, -0.27920305728912354, 1.5677247047424316, 0.6876378059387207, -0.28038305044174194, 0.2124636471271515, 0.09408543258905411, -0.7662369012832642, -0.45709162950515747, -1.1672232151031494, 0.9593214392662048, 0.15117961168289185, -0.60824054479599, -0.0482354499399662, -0.553616464138031, -0.4761486351490021, -0.3885425329208374, 0.5059452652931213, 0.641997754573822, -1.1908107995986938, -0.7556341290473938, 0.3107708692550659, -0.2092134654521942, 0.0422530472278595, 0.4213278293609619, -0.03063609078526497, -0.7033678889274597, -1.0651636123657227, -0.6532014012336731, 0.09037644416093826, 0.48117050528526306, -0.6633765697479248, -0.5555694103240967, -0.026777775958180428, -1.7546207904815674, 0.6674804091453552, -0.28265106678009033, -1.003585696220398, -0.6723447442054749, -0.9551448822021484, 0.7741599082946777, 0.37218618392944336, 0.0977889820933342, 0.38749805092811584, 0.4193805754184723, -0.9060044884681702, -0.5829275250434875, -0.9827781915664673, -0.0516018383204937, 0.6648346185684204, 0.8922699093818665, -0.5878857970237732, 0.8579850196838379, 0.636772632598877, -0.7520997524261475, 0.7188552021980286, 0.00843833014369011, -1.3428013324737549, 0.6054381132125854, 0.5620010495185852, 0.4265614449977875, 0.530478298664093, 1.2015174627304077, 0.3680718243122101, 0.6713839173316956, 0.21476757526397705, 0.7352321147918701, -0.12265341728925705, -0.45020338892936707, -0.6814208626747131, 0.16048306226730347, -1.0051535367965698, -0.9289332628250122, 0.362419068813324, -0.20208334922790527, -0.3495650887489319, 0.5082305073738098, 0.14181479811668396, -0.393783301115036, -0.2329416573047638, -0.6565433740615845, 0.16985554993152618, -0.5740055441856384, 0.5415439605712891, 0.4518778920173645, -0.6762003302574158, -0.4108239710330963, 0.27729332447052, 0.665558397769928, -1.3085206747055054, 0.017170408740639687, 0.28752627968788147, 0.5489909052848816, -0.8114131093025208, 0.8299291133880615, 0.5143610835075378, -0.320320188999176, -0.2622169554233551, 1.6291450262069702, 1.6589853763580322, -0.11668440699577332, 0.5570585131645203, 0.5862647294998169, 0.23974160850048065, -0.003310857340693474, -0.43608880043029785, -0.7994334101676941, 0.012254534289240837, 1.0301295518875122, -0.2523457109928131, 0.3614351153373718, -0.8567031025886536, 0.9788732528686523, -0.48217034339904785, 0.1995202600955963, 0.7294568419456482, 0.4628271460533142, -0.6765085458755493, 0.7045953869819641, 0.501030683517456, -0.06482811272144318, -0.08461259305477142, 0.35738876461982727, 0.6991820931434631, -0.10431990772485733, 0.6566556096076965, 0.38451388478279114, -0.3179793357849121, 0.4109804928302765, 0.2924852669239044, -0.4913056194782257, 0.5552816390991211, -0.14949925243854523, -1.159897804260254, -0.3766302764415741, 0.06593269109725952, -0.8740301132202148, 0.09261208027601242, -0.440702348947525, 0.22367221117019653, 0.3435077667236328, -0.17324692010879517, 0.5958063006401062, -1.1742414236068726, -0.16660459339618683, -0.28460341691970825, 0.19562679529190063, 1.395342469215393, 0.0695134773850441, 1.1896347999572754, 0.024602919816970825, -0.013479482382535934, -0.3843015134334564, 0.058417126536369324, -0.3673783838748932, 0.38021770119667053, -0.22504524886608124, -0.395122766494751, -0.10041287541389465, -0.5319383144378662, -0.30805549025535583, 0.8668094873428345, 0.36274516582489014, 0.25069278478622437, -0.035572245717048645, -1.0516201257705688, -0.6886139512062073, 0.6221965551376343, 0.3151184916496277, -0.36558401584625244, -0.446973592042923, -0.27054572105407715, -0.06463460624217987, -0.016962382942438126, 1.1775017976760864, -0.6425945162773132, 0.4683365523815155, -0.31209033727645874, 0.31469398736953735, -0.9366633892059326, -0.3787270784378052, 0.8008769750595093, -0.5786105990409851, 0.60594642162323, -0.9626825451850891, -0.1464925855398178, -0.5010687112808228, -0.8261776566505432, -0.28592222929000854, -0.1454887092113495, -0.7716889381408691, 0.08899487555027008, 0.1571168452501297, -0.6394593715667725, -0.8593134880065918, 0.6643503904342651, 0.7877932786941528, -0.3434155583381653, 0.3718147277832031, -0.8479602932929993, -1.0936906337738037, 0.12598025798797607, 0.0962774008512497, 0.4690539836883545, 0.3877990245819092, 1.8644733428955078, 2.1510448455810547, 0.2440742552280426, -0.31250235438346863, -0.08002451062202454, 0.8036041259765625, -0.8463281393051147, -0.8349109292030334, -0.5145363211631775, -0.062259070575237274, 0.07673206180334091], [1.0899949073791504, 0.7509233355522156, -1.494874358177185, -0.9559431076049805, 1.0290119647979736, 0.5361577272415161, 0.869834840297699, 0.9159483909606934, -0.10586194694042206, -0.6210784316062927, -1.6175508499145508, 0.4901221990585327, -0.06465915590524673, 1.06734037399292, 0.5171496272087097, 0.21162164211273193, 1.300948977470398, 0.02250494435429573, -0.2478865534067154, 0.21007946133613586, 0.10043271631002426, -0.35542261600494385, 0.08697479218244553, -0.07724232971668243, 0.26408934593200684, 0.2957109212875366, -1.2531291246414185, -0.21682162582874298, -1.4455080032348633, -0.6089966297149658, 0.9693036079406738, -1.178305745124817, -0.5489514470100403, -0.2860060930252075, -1.7921626567840576, -0.2798708975315094, 0.6765385866165161, 0.7808229327201843, 0.5162895917892456, 1.0440444946289062, 2.061617851257324, -0.19540420174598694, -0.2904767692089081, -1.301134705543518, 0.23820936679840088, -0.5486639738082886, 0.7058125138282776, -0.9480266571044922, -0.4664456844329834, -1.5962063074111938, 1.2554819583892822, -0.23187780380249023, 0.5054449439048767, 1.0408935546875, 1.6362091302871704, -0.27580422163009644, -0.45254871249198914, -0.274738609790802, 0.9737206101417542, -0.16970115900039673, 1.5808179378509521, 0.29809218645095825, -0.5561549663543701, 1.2700749635696411, -0.064345583319664, -0.28525325655937195, -0.23124653100967407, 0.3472188413143158, -0.6336156129837036, 0.2837813198566437, 0.6212777495384216, 0.44236230850219727, -0.34437718987464905, 0.34104305505752563, -1.2806980609893799, 0.08961697667837143, 0.5365105271339417, 0.43778377771377563, 0.5114162564277649, 1.003418207168579, -1.032867193222046, 0.06564973294734955, -0.4835933744907379, -0.5154492855072021, 1.032397747039795, -0.33093613386154175, 0.2592030465602875, -0.2875957489013672, -1.0454697608947754, 2.310612916946411, 0.019612561911344528, -0.6334980726242065, -0.14084075391292572, -0.9186083078384399, -0.420263409614563, -0.5415054559707642, -0.379379540681839, -0.45786142349243164, -1.2056522369384766, -0.07035418599843979, -0.8630859851837158, -1.0184078216552734, 0.10056034475564957, 0.1434682011604309, 0.5086216926574707, 1.3580361604690552, 0.332491934299469, -0.9981326460838318, -0.17873147130012512, 0.07845094799995422, -0.13497090339660645, 0.4647570252418518, -1.0913548469543457, -1.2739598751068115, -0.590217649936676, 0.9653388261795044, 1.10643470287323, -0.3306652009487152, -0.15213654935359955, 0.4295400083065033, -0.6935776472091675, -0.1525712013244629, -0.8825258612632751, 0.29927492141723633, 0.7045629620552063, 0.5251876711845398, -0.26721665263175964, 0.1797017902135849, 0.5744091868400574, -0.1543918251991272, 0.0020492179319262505, -0.09455318003892899, 0.3901764750480652, 0.7091304659843445, -0.3290579915046692, 1.2201886177062988, -0.41691720485687256, -0.5980426669120789, -0.27980557084083557, -0.115179643034935, 0.1096530556678772, 0.035203829407691956, -0.7211288809776306, -0.5851032137870789, 1.072137475013733, -0.8512997031211853, 0.027406364679336548, -0.4149540066719055, -0.7899847030639648, -0.0631643757224083, -0.9099217057228088, 0.5393829345703125, -0.05873149633407593, 0.869513988494873, 0.5644525289535522, 0.7164792418479919, 0.1783294379711151, 0.6803874969482422, -0.10874233394861221, 0.2681485712528229, 1.3060840368270874, 0.05088585242629051, -0.40328821539878845, 1.145850419998169, 0.5730876922607422, -0.26685187220573425, -0.2593497931957245, 0.755768358707428, 0.16468161344528198, 0.3088034987449646, -0.6656063199043274, -0.2405858337879181, -0.3757811188697815, 0.7071635723114014, -0.23200620710849762, 0.22422733902931213, 0.6785671710968018, -0.7435188293457031, -0.8425109386444092, -0.09202162176370621, 0.5313181281089783, -0.1272970587015152, 0.7245228886604309, -0.5947278738021851, 0.6369777917861938, -0.114435113966465, 0.4867396950721741, -0.14141790568828583, -0.04719031974673271, -0.8381322026252747, -0.5726163387298584, -0.5871478915214539, -0.9460849761962891, 0.01926056668162346, -0.4954168498516083, -1.5918384790420532, 0.3110337555408478, -0.7261645197868347, 0.07666625827550888, 0.008480452932417393, -0.5880045294761658, -0.26900216937065125, -1.3022069931030273, 0.26858794689178467, -0.4641677439212799, 0.11882349848747253, -0.6358698010444641, 0.0874868705868721, -1.1727582216262817, 0.05488848686218262, 0.9300203919410706, 0.5766138434410095, -0.1752217561006546, 1.2691251039505005, -0.11539110541343689, -1.0110623836517334, -0.14717593789100647, 0.4398494064807892, 0.244759202003479, -0.055435001850128174, 0.24505680799484253, -0.2654699683189392, 0.5549740791320801, 0.32441800832748413, 0.5848062038421631, 0.16725802421569824, -1.1605786085128784, -0.23220233619213104, -0.9010010957717896, -0.6265136003494263, -0.44703570008277893, -1.1478455066680908, 0.9866000413894653, 0.7876211404800415, -0.7747789621353149, 1.1145873069763184, -0.5157098174095154, 0.05907266214489937, 0.06256982684135437, 0.8880363702774048, 0.05479740351438522, 0.5249205827713013, -0.4438687860965729, -0.1814327985048294, -0.2383790761232376, 0.4311739206314087, 0.9880825877189636, 0.007728365249931812, -0.03433055058121681, 1.1881494522094727, 0.11781270056962967, 0.40694886445999146, 0.6790400743484497, 0.25945526361465454, -0.16400402784347534, -0.4217691421508789, -0.1795891523361206, -0.680546224117279, -0.4202187657356262, 1.202072262763977, 1.4196968078613281, -1.3688373565673828, -0.5575072765350342, -0.27325525879859924, -0.38150614500045776, -0.20569713413715363, 0.3466675579547882, -0.2705131769180298, 0.7248174548149109, -0.004707593470811844, -0.10874543339014053, 0.24710723757743835, -0.18069572746753693, 0.3828892707824707, 0.05520469322800636, -0.2604234516620636, -0.31092745065689087, 0.06111074239015579, 0.24791841208934784, 0.6089916229248047, -0.7594075202941895, -1.0112054347991943, -0.3679315745830536, 0.3099328279495239, 0.40648552775382996, -0.18041805922985077, -1.3409870862960815, 0.5477344989776611, 0.6918084025382996, -0.4414382874965668, 0.06708353757858276, 0.7268375754356384, -0.4088904559612274, 0.3120899796485901, -0.1003303974866867, 0.6362255215644836, 0.3028450608253479, -0.5196684002876282, -1.0996495485305786, -0.8558611273765564, 0.504640519618988, 1.2711020708084106, 0.30516573786735535, 1.421650767326355, 0.4549518823623657, -0.3382059633731842, -0.14119014143943787, 0.07973909378051758, -1.096752643585205, -0.3821619153022766, -0.6776304244995117, -1.026107668876648, 0.29504790902137756, -0.38051003217697144, 0.2925468981266022, 1.5395143032073975, -0.024997228756546974, 1.0932596921920776, 0.6828879714012146, -0.4925990104675293, -0.9866980314254761, -0.14287519454956055, 0.6378663182258606, -1.091401219367981, 0.5917119979858398, 0.9982197880744934, -0.5295757055282593, -0.4822564125061035, 0.40979892015457153, 0.38382574915885925, 1.024817943572998, -0.8734779953956604, 0.4957978129386902, -1.0867788791656494, -0.11408217996358871, -0.4738748073577881, 1.0279134511947632, -0.24677792191505432, 0.05423495173454285, -0.9049584269523621, -0.01436435803771019, 0.7242281436920166, -0.2725313603878021, -0.14482080936431885, 0.5604716539382935, -0.7581015229225159, -0.463364839553833, -0.6021742224693298, 0.6902270317077637, 1.0996596813201904, -0.014191065914928913, 0.1630421131849289, -0.19327767193317413, -0.38627055287361145, -0.4066312611103058, 0.37594425678253174, -0.24385888874530792, 0.6513928771018982, -0.016737954691052437, 0.4162321090698242, 1.2126840353012085, -0.4187221825122833, 0.023514559492468834, -1.4850974082946777, 0.13515381515026093, 0.5985710024833679, 1.2369310855865479, -0.028476186096668243, 0.06988271325826645, 0.24375921487808228, -0.36485955119132996, 0.3331417441368103, 0.11904197931289673, 1.0953267812728882, -0.09456757456064224, -0.7689926624298096, -0.8275123834609985, -0.533573567867279, -0.0443384014070034, -0.48533082008361816, 0.2706223726272583, -0.15321744978427887, -0.5360719561576843, -0.972748339176178, 1.047960638999939, 0.32770344614982605, 0.10376518964767456, -0.7199926972389221, 0.33438077569007874, 0.06791606545448303, 0.012509765103459358, 0.5568132400512695, -0.5248838663101196, 0.09025280177593231, 0.5657995939254761, -0.8885124325752258, -0.9548236727714539, 1.071096420288086, 0.2805061638355255, 0.4659073054790497, -0.9136292934417725, 0.21484942734241486, -0.46455833315849304, 1.0689191818237305, 0.32151249051094055, -0.2152968794107437, 0.1516980677843094, 0.7308057546615601, -0.9317957162857056, -0.1102553978562355, 0.007900918833911419, 0.9143660664558411, -0.37890708446502686, -0.11743208020925522, -0.6894235610961914, -0.13384883105754852, 0.3126656711101532, 0.5837169885635376, -0.6161325573921204, -0.6264556646347046, -0.4453642666339874, 0.24310095608234406, 0.002990737557411194, 0.038370281457901, 1.7640119791030884, 0.07390603423118591, -0.45066335797309875, 0.8166974782943726, 0.3088007867336273, -1.2777429819107056, 0.4002995491027832, 0.32935237884521484, -0.1731557846069336, -0.4420018494129181, -0.15089580416679382, 0.11168770492076874, 0.015090162865817547, 0.8731406331062317, -0.1873323619365692, 0.3218270540237427, 0.10259629040956497, -0.2471373975276947, 0.09606630355119705, 0.6564711928367615, 1.1455475091934204, 0.6648083925247192, 1.3018386363983154, -0.5872259736061096, -0.9451276063919067, 1.171480655670166, -0.38340625166893005, 0.2550216615200043, 0.4115103483200073, -0.19354015588760376, 1.3653361797332764, -1.084282398223877, -0.2585986852645874, 0.5033338665962219, -0.4457396864891052, 0.5617784857749939, 0.09741012006998062, 0.10893162339925766, -0.5377691388130188, 0.541968822479248, 0.27114588022232056, -0.17016351222991943, 0.7219981551170349, -0.06318724900484085, -0.2998203635215759, 0.039477620273828506, -1.0111639499664307, 0.5699869394302368, -0.5718100070953369, -0.41806212067604065, 0.4299241900444031, -0.008128399029374123, 0.35683342814445496, 0.8628504872322083, 0.10858479142189026, 2.635101556777954, -0.2230287492275238, -1.6967978477478027, 0.2178323119878769, -0.4071250855922699, -0.10769066959619522, 0.19306734204292297, -0.0413239486515522, -0.8634107708930969, -0.7940466403961182, 0.09214290976524353, 0.7722923159599304, -0.3758394718170166, 0.07941988855600357, 0.08239294588565826, -1.2866252660751343, -0.1613815277814865, 0.5121865272521973, 1.3988691568374634, 1.166837453842163, 0.439474880695343, 0.3121001422405243, 0.4835515320301056, -0.07078203558921814, -0.6267488598823547, 0.22698292136192322, 0.2539827823638916, 0.13404399156570435, -0.6618649959564209, -0.5615576505661011, 0.7958593368530273, 0.8981786966323853, 0.08038844913244247, -0.0062330481596291065, 1.3455361127853394, 0.8984318375587463, 0.10345608741044998, -0.4985176622867584, 0.11793026328086853, -1.4122371673583984, 0.17813044786453247, 0.38736873865127563, -0.47655045986175537, -0.09496510028839111, -0.541425883769989, -1.5745435953140259, 0.6211282014846802, 0.016475534066557884, -0.7756680846214294, -0.016381990164518356, 1.1246256828308105, 0.418204128742218, 0.48020675778388977, -0.2606959640979767, -0.009422184899449348, 0.5226970911026001, -0.42314818501472473, -1.0961668491363525, 0.2142055630683899, 0.0890519991517067, 0.15430830419063568, -0.6228377223014832, 0.5674508213996887, 0.1537935882806778, 0.07605421543121338, -0.03036331571638584, 0.37536561489105225, 0.854557454586029, 0.6576260924339294, 0.7531024217605591, -1.691765546798706, 0.139678955078125, -0.1201818585395813, -0.09879874438047409, -0.43399733304977417, 0.9966339468955994, 0.5693304538726807, -0.04081825539469719, -0.36482712626457214, -0.14834646880626678, -0.8990360498428345, -0.1769089549779892, -1.2167668342590332, 1.1465812921524048, 0.4149961471557617, -0.7543209195137024, -0.45511049032211304, -0.640929102897644, -0.559980571269989, -0.8239620327949524, 0.8793855309486389, 0.5413584113121033, -0.7347427010536194, -0.7576485872268677, -0.09968970715999603, -0.18196777999401093, 0.7509267926216125, -0.33490100502967834, -0.2961289584636688, -1.1377142667770386, -1.5585261583328247, -0.4140923321247101, 0.41686221957206726, 1.0733195543289185, -0.363705039024353, 0.1924228072166443, -0.009713136591017246, -1.3867013454437256, 0.9046265482902527, 0.14117029309272766, -0.8785357475280762, -0.28160035610198975, -0.8085359930992126, 0.5336436033248901, 0.26647770404815674, 0.37404555082321167, -0.31416964530944824, 0.7740567326545715, -1.1029102802276611, -1.038061499595642, -0.9568594694137573, 0.09304915368556976, 0.2964020371437073, 0.3412996232509613, -0.4512137174606323, 1.1781203746795654, 0.10541525483131409, -0.7878287434577942, -0.0008023586124181747, -0.10119058936834335, -0.7154396772384644, -0.005736378952860832, 0.9185376167297363, 0.2972261607646942, 0.35532888770103455, 0.9536833167076111, 0.021884702146053314, 0.3670685291290283, 0.12042608112096786, 0.6671217083930969, -0.945544958114624, -0.2648354768753052, -0.025916114449501038, -0.16901801526546478, -0.7906678318977356, -0.8499509692192078, -0.1227467805147171, -0.15421907603740692, -1.071692705154419, 0.8445626497268677, 0.6691906452178955, -1.0604727268218994, 0.3061770498752594, -0.7287088632583618, 0.3216026723384857, 0.019178949296474457, 0.22721034288406372, 0.11320167034864426, -0.505702793598175, -0.4454502463340759, 0.15854603052139282, 0.3165908753871918, -0.9379745125770569, -0.22731554508209229, -0.09057691693305969, 0.0650855079293251, -0.7100082635879517, 0.7498055100440979, 0.4287741780281067, -0.4461284875869751, -0.7075940370559692, 1.3451358079910278, 1.5724574327468872, -0.26042479276657104, -0.15280592441558838, 0.28239455819129944, 0.20920835435390472, -0.13847388327121735, -0.5208309888839722, -0.7145273685455322, -0.029964199289679527, 0.8355987071990967, 0.49913281202316284, 0.5346706509590149, -0.13400185108184814, 0.6771014332771301, -0.22580167651176453, 0.07612265646457672, 0.018880493938922882, 0.07305416464805603, -0.6088389754295349, 0.6594595313072205, 0.4197886288166046, 0.0542105957865715, 0.4817032217979431, 0.4923158884048462, 0.021676955744624138, 0.05826099216938019, 1.0102133750915527, 0.2738780379295349, -0.21778514981269836, 0.661684513092041, 0.7522718906402588, -0.5236421823501587, 0.06097456440329552, -0.4541533589363098, -1.566522479057312, -0.19208472967147827, -0.3729613721370697, -1.0473212003707886, 0.6219092011451721, -0.8408010005950928, 0.03699561208486557, 0.598772406578064, 0.01180991716682911, 0.22618666291236877, -0.5599034428596497, 0.12469454854726791, -0.4045824110507965, 0.6488109230995178, 0.3994494676589966, -0.4979918897151947, 1.6725918054580688, 0.02273309975862503, -0.3735469579696655, -0.9265364408493042, 0.058022383600473404, 0.13111041486263275, 0.38058438897132874, -0.13610495626926422, 0.06059498339891434, 0.08148914575576782, -0.7907617092132568, -0.4688171148300171, -0.07244199514389038, -0.23588049411773682, 0.09358897060155869, -0.5444109439849854, -1.060682773590088, -0.3276025056838989, 0.28393951058387756, 0.3203982412815094, -0.2673056125640869, -0.7977970838546753, -0.3327096402645111, 0.6815717816352844, 0.036117587238550186, 1.1967145204544067, -0.6125324368476868, 0.7124963402748108, 0.42217880487442017, -0.0176980122923851, 0.06490333378314972, 0.12654463946819305, 0.6722924113273621, 0.1211479976773262, 0.8773038387298584, -0.19998902082443237, -0.258427232503891, 0.017799606546759605, -0.9766445755958557, -0.04031156003475189, 0.1531134396791458, -0.584483802318573, 0.04721399396657944, -0.5515251159667969, -0.7580823302268982, -0.6956192255020142, -0.4873460829257965, 0.130471333861351, -0.183668315410614, 0.31093937158584595, -0.9014307856559753, -0.3129805028438568, 0.460757315158844, 0.27152684330940247, -0.14238429069519043, 0.6229407787322998, 1.2474578619003296, 2.0623271465301514, 0.4083510935306549, -0.2839885354042053, -0.584843635559082, 0.6271197199821472, -1.218303918838501, -0.35857322812080383, -1.4578323364257812, 0.33615079522132874, -0.18110249936580658], [0.7497368454933167, 1.3498591184616089, -2.172292470932007, -1.5881892442703247, -0.03525746986269951, -0.10464414954185486, 1.1912555694580078, 0.6032661199569702, -0.380621075630188, -1.4927177429199219, -1.3969918489456177, 0.7670795321464539, 0.11303986608982086, 1.0515087842941284, 0.3797885477542877, 0.38102567195892334, 1.1876786947250366, 0.00770528893917799, 0.6376985311508179, 0.6411573886871338, -0.1884785145521164, 0.22717145085334778, -0.01520706806331873, -0.016385706141591072, 0.5978853106498718, 0.9304656982421875, -1.189231514930725, 0.2159116566181183, -1.737237811088562, -1.1558119058609009, 1.3987793922424316, -1.245409369468689, 0.11450057476758957, -0.9243862628936768, -1.476584792137146, -0.18051695823669434, 0.5841405987739563, 0.33336398005485535, -0.4835642874240875, 0.8766230940818787, 2.127882242202759, 0.28927093744277954, -0.9017784595489502, -0.6224992871284485, 0.4757022261619568, -0.831712007522583, 0.5473321676254272, -1.771068811416626, -0.5282933712005615, -1.5511577129364014, 0.7719354629516602, -0.7417307496070862, -0.21366047859191895, 0.9778196811676025, 1.0772573947906494, 0.057322949171066284, -0.3170028328895569, 0.4079764485359192, -0.09282511472702026, 0.11864513158798218, 1.6110358238220215, -0.15408897399902344, -0.03238635137677193, 1.2842930555343628, -0.1789000779390335, 0.10764221847057343, -0.24432320892810822, 0.026827828958630562, -0.6031993627548218, 0.5130684971809387, 0.8602616190910339, -0.2145054191350937, -0.6478827595710754, 0.2792970836162567, -2.0185468196868896, 0.27786821126937866, 0.42609313130378723, 0.201289564371109, 0.19135944545269012, 1.408045768737793, -0.44281643629074097, 0.3755761384963989, -0.7052471041679382, -0.9450652003288269, 0.1209627240896225, -0.5963158011436462, 0.3440763056278229, -0.7134822010993958, -1.2285163402557373, 1.3885304927825928, 0.4343456029891968, -0.05757014825940132, 0.5032264590263367, 0.04537351429462433, -0.2732878625392914, -0.4798540472984314, -0.10237323492765427, -0.03701406344771385, -0.25522077083587646, -1.0368727445602417, 0.02711852453649044, -0.8144035339355469, 0.6490422487258911, 0.6434070467948914, 0.617068350315094, 1.0660678148269653, 0.31515970826148987, -0.6883290410041809, -0.9829447269439697, -0.4538814425468445, -0.6986566185951233, -0.26704078912734985, -0.8573678731918335, -0.638031005859375, -0.9532942175865173, 0.9888944625854492, 1.2206674814224243, -0.8870853185653687, 0.2860361933708191, 1.2951059341430664, -0.4880262315273285, -1.0189619064331055, -0.17149750888347626, -0.20539195835590363, 1.3322657346725464, -0.3805159330368042, -0.6683109402656555, 0.20527392625808716, 0.1689125895500183, -0.34368622303009033, 0.6275997757911682, -0.32964012026786804, -0.18777599930763245, 0.860478401184082, 0.12283934652805328, 0.8689073920249939, -0.015075267292559147, -0.4894753396511078, 0.3499267101287842, -0.22807416319847107, -0.14596427977085114, -0.452095627784729, -0.5262007713317871, -0.37965595722198486, 0.7681388258934021, -0.367231547832489, -0.010688729584217072, 0.057114165276288986, -0.5848777294158936, 0.5033074617385864, -0.9849233627319336, 0.0016814526170492172, 0.2947312593460083, 1.6177301406860352, 0.39858299493789673, 0.05659942328929901, 0.4293455481529236, 0.326087087392807, -0.02056649513542652, 0.795266330242157, 0.9190932512283325, 0.017404919490218163, -0.6489474177360535, 0.8360152840614319, 1.0299816131591797, -0.6547256112098694, 0.3075418472290039, 0.3570508658885956, 0.03456401452422142, 0.6763147711753845, -0.9169993996620178, -0.7332804799079895, 0.015554605051875114, 0.5968160033226013, -0.3481476604938507, -0.43905574083328247, 1.1441112756729126, -0.9989149570465088, -1.1151360273361206, -0.7232507467269897, 0.6522575616836548, -0.9274588227272034, 1.012717843055725, -0.5068460702896118, 0.605755090713501, 0.3551595211029053, -0.40503016114234924, -0.33112791180610657, -0.13963335752487183, -0.9047116637229919, -1.1698188781738281, -0.32217928767204285, -0.8653867244720459, 0.19818685948848724, -0.7316752672195435, -1.1765758991241455, -0.011040693148970604, -1.3109034299850464, 0.19596882164478302, 0.050818633288145065, 0.14222954213619232, -0.02801935188472271, -1.345610499382019, -0.27120712399482727, -0.5844573378562927, 0.7685985565185547, -0.4058702886104584, 0.5056234002113342, -0.45478472113609314, 0.06034315377473831, 0.8484426140785217, -0.3226495683193207, -0.654642641544342, 0.9572309851646423, 0.5102941393852234, -1.2916702032089233, -0.27107539772987366, 0.3104858696460724, 0.1036379337310791, -0.20462895929813385, 0.8760085105895996, -0.08065517991781235, 0.5807107090950012, 0.4302847981452942, -0.005449168384075165, -0.01821484975516796, -1.5728065967559814, -0.11703478544950485, -0.6772109270095825, -0.24187235534191132, -0.7462785243988037, -0.34182876348495483, 1.0619640350341797, 0.8031489253044128, -0.5026435852050781, 1.1902517080307007, -0.3449864983558655, 0.09773795306682587, 0.2094869315624237, 0.4990690052509308, 1.128784418106079, -0.2022334337234497, -0.03116975910961628, 0.06625305861234665, -0.1846190094947815, -0.10167689621448517, 1.1420506238937378, -0.19570086896419525, 0.016812000423669815, 1.4323492050170898, 0.07784625887870789, -0.6178925037384033, 0.7492607235908508, 0.11093548685312271, 0.2030748426914215, -0.8352175354957581, -0.12578119337558746, 0.10771499574184418, -0.9433782696723938, 1.1691025495529175, 0.7769278883934021, -1.4559886455535889, -0.29740050435066223, -0.201022669672966, -0.3899967074394226, -0.28120386600494385, 0.33704036474227905, -0.46550360321998596, 0.5570310950279236, -0.03251083195209503, -0.09520186483860016, 0.2880485951900482, -0.07284781336784363, 0.5620551705360413, 0.12145739048719406, -0.0842440277338028, 0.02972196415066719, 0.6022840738296509, -0.018862633034586906, 0.9341028928756714, -0.12383092194795609, -1.7642523050308228, -0.6882904171943665, -1.1560386419296265, 0.7586441040039062, -0.18041928112506866, -0.3917165696620941, 0.7948985695838928, 1.1299947500228882, -0.2668938636779785, 0.5593478679656982, 0.4652692973613739, 0.14474281668663025, -0.1374322921037674, 0.5769934058189392, 1.0657535791397095, 0.7723239660263062, -1.0678592920303345, -0.43660327792167664, -0.6981118321418762, -0.2805282473564148, 1.0547016859054565, 0.3586045503616333, 1.3302475214004517, 0.09955252707004547, -0.1027831882238388, -1.2283287048339844, 0.181118443608284, -0.8512352108955383, -0.2838285565376282, -0.3785158097743988, -1.228786587715149, -0.00709433201700449, -0.8156706094741821, 0.05460210517048836, 1.0938800573349, 0.23325592279434204, 1.548574447631836, 1.0608679056167603, -0.28754723072052, -1.2999910116195679, -0.6600329875946045, 1.0175801515579224, -1.2253965139389038, 0.6431993246078491, 0.682637095451355, -0.2581844925880432, 0.04891616106033325, 0.021608486771583557, 0.47577619552612305, 1.2228337526321411, -0.06526545435190201, 0.5644844770431519, -0.605426549911499, -0.25483211874961853, 0.13480569422245026, 0.6656885147094727, -0.4590834975242615, -0.43883126974105835, -0.45856034755706787, 0.013369815424084663, -0.10281869024038315, 0.12119594216346741, -0.5996864438056946, 0.38157543540000916, -0.5044858455657959, -0.39881736040115356, -0.2195790559053421, 0.6408476829528809, 2.192129373550415, -0.16839773952960968, 0.07074964046478271, -0.3171652555465698, -0.4146893620491028, -0.46578994393348694, 0.4617418944835663, 0.025465214625000954, 0.6032674312591553, 0.08479473739862442, 0.02763814479112625, 1.262349009513855, -0.09025221318006516, 0.2540920078754425, -1.5442874431610107, -0.031951043754816055, 0.1604713797569275, 1.6829344034194946, 0.48930999636650085, 0.11400438845157623, 0.2633587419986725, -0.33637914061546326, 0.3437342643737793, -0.5026872158050537, 1.1594343185424805, 0.020704379305243492, -0.41739943623542786, -0.4445677101612091, -0.42253410816192627, 0.09881646931171417, -0.4549669325351715, -0.31379184126853943, 0.7316092848777771, -0.1496260166168213, -0.3129754066467285, 0.15054084360599518, 0.061475757509469986, -0.3189038038253784, 0.18093562126159668, 0.3886207938194275, -0.10897888988256454, 0.026526369154453278, -0.0394236221909523, -0.3395139276981354, -0.07830386608839035, 1.1648534536361694, -0.6939939856529236, -0.2678094506263733, 0.5007926821708679, 0.0798255130648613, 0.6733771562576294, -1.5653388500213623, 0.10127521306276321, -0.590256929397583, 0.7336430549621582, -0.3511071801185608, -0.6506603360176086, 0.23719079792499542, 0.23060205578804016, -0.3926742672920227, -0.1852095127105713, -0.054894305765628815, 1.2562001943588257, 0.292275995016098, -0.7846606969833374, 0.11751820147037506, -0.11708758026361465, 0.1899419128894806, 0.7076650261878967, -0.3578033447265625, -0.3032149076461792, -0.3290351629257202, 0.11143963038921356, -0.34028780460357666, -0.3818443715572357, 1.7331429719924927, 0.1579999327659607, -0.477054625749588, 0.6188092231750488, 0.13079647719860077, -0.5824834108352661, 0.41698718070983887, 0.279402494430542, 0.40051260590553284, 0.14229649305343628, 0.5195862054824829, 0.49253976345062256, -0.19240623712539673, 0.7237186431884766, 0.18846218287944794, -0.08894587308168411, 0.2558201253414154, -0.8896585702896118, 0.3539184033870697, 0.17733994126319885, 1.0644680261611938, 0.7709688544273376, 0.5130475759506226, -0.9180302023887634, -0.5739614963531494, 1.1808406114578247, 0.4711390435695648, 1.267928123474121, 0.670172393321991, 0.15423698723316193, 1.3985782861709595, -1.6073815822601318, -0.059059157967567444, 0.36953026056289673, 0.05806706100702286, 0.6267785429954529, 0.6674371361732483, 0.30914944410324097, -1.0720504522323608, -0.12951958179473877, -0.33934253454208374, -1.0314600467681885, 1.187355875968933, -0.17416909337043762, -0.12782621383666992, 1.0551644563674927, -0.27841079235076904, -0.1195220947265625, -0.38652464747428894, -1.2056924104690552, 0.5376530289649963, -0.5610280632972717, 0.218642458319664, 0.8701152205467224, 0.7078458070755005, 0.7691283226013184, -0.7045876383781433, -1.3962427377700806, 0.16239561140537262, -1.4171339273452759, -0.13764694333076477, 0.3014460504055023, -0.18863876163959503, -1.7022004127502441, -1.2703967094421387, -0.3285895586013794, 0.14561837911605835, -0.47411274909973145, -0.2114356905221939, 0.32339727878570557, -1.1968823671340942, -0.427918404340744, 0.2874075174331665, 1.535683035850525, 0.7248944044113159, -0.32483044266700745, 0.945258617401123, 0.3673074543476105, -0.12336275726556778, 0.13115592300891876, 0.0272198636084795, 0.5661038756370544, 0.23898819088935852, -0.998375415802002, -0.9997740387916565, 0.644108235836029, 0.767539918422699, 0.05152058228850365, -0.22017331421375275, 0.7643116116523743, 1.8919750452041626, -0.7840059995651245, -0.6953185796737671, 0.7482004761695862, -0.6981304287910461, 0.05312985181808472, 0.06218837574124336, -0.9078904986381531, 0.09976066648960114, -0.3117081820964813, -1.6514613628387451, 1.3624045848846436, -0.40128573775291443, -0.6961249709129333, 0.6484448313713074, 0.7775405645370483, -0.18749411404132843, 0.6101210117340088, -0.2896020710468292, -0.09061641991138458, 0.3571629524230957, -0.4600784182548523, -1.4832124710083008, 0.21017885208129883, 1.375265121459961, 0.28562548756599426, -0.672856867313385, 0.48267194628715515, -0.2874147593975067, 0.19585296511650085, -0.05377496778964996, 0.9330063462257385, 0.8081949949264526, 0.48970332741737366, 0.5693985819816589, -1.0715652704238892, 0.07986533641815186, -1.5791003704071045, 0.0704307109117508, -0.5669780373573303, 0.9659290313720703, 0.4852137267589569, -0.24490994215011597, 0.42415645718574524, 0.02932920679450035, -0.6840465068817139, -0.4434415102005005, -0.9207288026809692, 1.094016432762146, 0.5573188662528992, -0.7190935611724854, 0.14347226917743683, -0.5334513783454895, -0.07960668951272964, -0.321819007396698, 0.5038580298423767, 0.6035212278366089, -1.78287935256958, -0.8184314966201782, 0.23964422941207886, -0.3411097228527069, -0.8436015844345093, 0.5961167216300964, 0.042910136282444, -0.3916681408882141, -1.2322297096252441, -1.1307042837142944, 0.6123818755149841, 0.8599706292152405, -0.2859610915184021, -0.29512813687324524, 0.06552906334400177, -0.9470828771591187, -0.023704132065176964, -0.4958750307559967, -0.7610123157501221, -0.5341871380805969, -0.7658945918083191, 1.297717809677124, 0.5090906620025635, 1.0272266864776611, -0.46295246481895447, 0.9023258090019226, -0.7632737755775452, -0.14687655866146088, -0.9442318081855774, -0.02587631717324257, 0.9442312717437744, 0.9940779209136963, -0.9173881411552429, 0.991532564163208, 0.33633628487586975, -0.5843871235847473, -0.8155969977378845, -0.13795319199562073, -0.42642942070961, 0.18588361144065857, 0.49289003014564514, 0.007702012546360493, 0.676171064376831, 1.5491470098495483, -0.3026810884475708, 0.9681845903396606, 0.522533118724823, 0.8307088613510132, -0.3342699706554413, -0.7689548134803772, -0.6991788744926453, -0.4097643196582794, -0.5693212151527405, -0.7516419291496277, 0.6552410125732422, -0.8765504360198975, -0.7986929416656494, 0.2373291403055191, 0.8988913893699646, -0.7640868425369263, 0.4202530086040497, -0.9971375465393066, 0.22582285106182098, -0.8012135028839111, 0.8107532262802124, -0.08830974996089935, -0.8661852478981018, -1.3478785753250122, -0.0977979227900505, 0.13535885512828827, -0.6494157910346985, -0.41294366121292114, 0.32577553391456604, 0.5901281833648682, -0.6584653258323669, 0.9706502556800842, -0.2612444758415222, -0.1190272644162178, -0.0009085081983357668, 2.028658151626587, 1.7988239526748657, 0.2539386749267578, 0.4455139935016632, 0.3882642388343811, -0.29758524894714355, -0.3154047429561615, -0.827650249004364, -0.6549291610717773, 0.24187874794006348, 0.8120161890983582, 0.04943434149026871, 0.061784811317920685, -0.3997327387332916, 1.0177233219146729, -0.5714775323867798, -0.6105653047561646, 0.8109496235847473, 0.3438400626182556, -0.598405659198761, 0.7206992506980896, 0.39339005947113037, 0.28188467025756836, 0.7699061036109924, 0.2759529948234558, 0.7135456800460815, -0.9102778434753418, 0.8591049313545227, 0.3979339599609375, -0.40654879808425903, 0.9328677654266357, 0.18618135154247284, -0.9575427770614624, 0.553515613079071, -0.134647399187088, -1.4261507987976074, -0.5549536943435669, -0.19829879701137543, -0.698724627494812, 0.4069744944572449, -0.4364532232284546, 0.19843249022960663, 0.4746186137199402, -0.3001629710197449, 0.09652291238307953, -0.9107968211174011, 0.24784688651561737, -0.6221266388893127, 0.40726438164711, 0.8364746570587158, -0.27714115381240845, 1.5512443780899048, -0.2946521043777466, -0.7293006181716919, -0.1446237415075302, -0.4439963102340698, -0.2567424178123474, -0.0212150439620018, -0.3210917115211487, -0.5652949213981628, -0.1581871658563614, 0.07235211133956909, -0.45525404810905457, 0.5773187279701233, 0.577521800994873, 0.5126860737800598, -0.39811578392982483, -0.9130818843841553, -0.722255527973175, 0.9152210354804993, 0.2756298780441284, -0.403260737657547, -0.414504736661911, 0.27051496505737305, 0.6386077404022217, 0.13821566104888916, 0.956875741481781, -1.0872104167938232, 0.4658239781856537, 0.5838418006896973, 0.02606637217104435, -0.8608431816101074, -0.1785232275724411, 0.6980642080307007, -0.11109700798988342, 0.6267642378807068, -0.06440560519695282, -0.13076214492321014, -0.0066995322704315186, -0.9472395181655884, 0.27139461040496826, 0.21554571390151978, -0.14447177946567535, 0.32104170322418213, -0.7514855265617371, -0.5600653886795044, -1.0511435270309448, 0.29605698585510254, 0.4802379012107849, 0.04038356617093086, 0.6590381860733032, -0.45639458298683167, -1.2891095876693726, -0.22452318668365479, 0.5031581521034241, 0.5606600046157837, 0.8409788012504578, 1.6783344745635986, 2.175102710723877, 0.05687260627746582, -0.38943228125572205, -0.4549707770347595, 0.7025190591812134, -1.0866005420684814, -0.2058081477880478, -0.8925247192382812, 0.29317423701286316, -0.026898900046944618], [0.4175654947757721, 1.1076370477676392, -0.8686848878860474, -0.31670722365379333, 0.6700303554534912, 0.1857779324054718, 1.4144986867904663, 0.039431601762771606, 0.32513704895973206, -0.34178274869918823, -0.8103511929512024, -0.04314091429114342, 0.9073023200035095, 1.0382386445999146, 0.17342035472393036, 0.43932148814201355, 1.2018141746520996, -0.19438372552394867, 0.06324456632137299, 1.177187442779541, -0.20500406622886658, -0.48502498865127563, -0.3936218321323395, 0.46366822719573975, -0.46958959102630615, 0.62691330909729, -1.6320855617523193, -0.14471638202667236, -1.2199453115463257, -0.7330194711685181, 1.4256380796432495, -0.7838892936706543, -0.2974412441253662, 0.15485088527202606, -1.6922802925109863, -0.14423459768295288, 0.9322534203529358, 0.5491613149642944, 0.7861988544464111, 0.30539631843566895, 1.8858084678649902, -0.13029375672340393, -0.10280441492795944, -1.2981586456298828, 0.9277600646018982, -0.6415098309516907, 1.233984112739563, -1.6143600940704346, -0.06607773900032043, -0.4737853407859802, 0.6126260757446289, 0.04215867444872856, 0.24271509051322937, 1.035241961479187, 0.810572624206543, -1.0933760404586792, -0.17203757166862488, -0.14271478354930878, 0.241120383143425, 0.722758412361145, 0.9688540697097778, 0.6628650426864624, -0.0537450946867466, 0.7930533289909363, 0.6573354005813599, 0.31770798563957214, -0.016489343717694283, 0.3822340667247772, -1.162078857421875, 0.4776698350906372, 0.3716121315956116, 0.1945437341928482, -0.5639527440071106, 0.16578885912895203, -0.038918446749448776, 0.9192758798599243, 0.7843204140663147, 0.6330474019050598, 0.2726345658302307, 1.0320979356765747, -0.5828375816345215, 0.16480493545532227, 0.038848619908094406, -0.8598964214324951, 0.21265792846679688, -0.05378323420882225, -0.011237452737987041, -0.8246335387229919, -0.6385494470596313, 1.7039543390274048, 0.18507766723632812, 0.2424173206090927, 0.498071551322937, -0.6982290148735046, 0.015821631997823715, -0.8481962084770203, 0.6776198744773865, -0.6193865537643433, -0.9686539173126221, -0.07282711565494537, -0.9140639305114746, -0.9249046444892883, 0.38180437684059143, 0.5607761740684509, 1.100868821144104, 1.2152999639511108, -0.6993275880813599, -0.8547204732894897, -0.48287829756736755, 0.0856226310133934, -0.05752729997038841, 0.401979923248291, -0.7138481140136719, -0.22973483800888062, 0.4675045907497406, 1.3085473775863647, 1.3214819431304932, -0.11403678357601166, 0.4323035180568695, 0.7033257484436035, -0.22047725319862366, -0.2832215130329132, -0.810422956943512, 0.3918687701225281, 0.20903563499450684, 1.2286884784698486, -0.2989662289619446, -0.2501594126224518, 0.44459033012390137, 0.44753456115722656, 0.40074923634529114, 0.11744686216115952, -0.055248893797397614, 1.008682370185852, -0.286072701215744, 0.843859851360321, -0.5701661705970764, -1.3395500183105469, -0.013028251938521862, -0.3318619728088379, 0.8366624712944031, -0.4729281961917877, -0.7721909880638123, -0.2757374048233032, -0.0682339146733284, -0.27563369274139404, -0.46253716945648193, 0.007473666220903397, -0.4819176495075226, -0.26081690192222595, -1.2588717937469482, -0.08129781484603882, -0.3750113844871521, 0.7080538868904114, -0.31879138946533203, -0.24826103448867798, 0.13830819725990295, 0.6395281553268433, 0.3329326808452606, 0.1807154417037964, 1.1176968812942505, 0.2577856183052063, -0.6534621715545654, 1.1106071472167969, 0.5295169949531555, -0.1829490065574646, 0.7100266218185425, 0.015019233338534832, 0.06199377402663231, 0.4108545184135437, -0.35460925102233887, -0.8325937986373901, -0.08988851308822632, -0.17803791165351868, 0.4412958323955536, -0.21285127103328705, 1.5239241123199463, 0.01802576147019863, -1.113625168800354, -1.3677716255187988, 1.1088509559631348, -0.3475266993045807, 0.03370020166039467, -0.7814205288887024, 0.6175874471664429, -0.7371373772621155, 0.18789178133010864, 0.8420279026031494, -0.05314061790704727, -1.020450234413147, -0.6623467206954956, -0.24414394795894623, -0.9193558692932129, 0.4966588616371155, -0.8829782605171204, -0.7968816757202148, 0.5483164191246033, -0.752514660358429, -0.24439966678619385, -0.1738419085741043, -0.3322847783565521, -0.3783547878265381, -1.2715353965759277, 0.3261720538139343, -0.21647994220256805, 0.49499842524528503, -0.20426227152347565, 0.11096341162919998, -0.33392077684402466, -0.4299013018608093, 0.798760175704956, 1.0522569417953491, -1.0775463581085205, 0.6373053193092346, -0.6184424757957458, -0.6210764050483704, 0.06750239431858063, -0.11678609997034073, 0.09864183515310287, -0.2806858718395233, 0.15102049708366394, -0.3861066997051239, 0.6903775930404663, 0.18379166722297668, 0.6404000520706177, -0.22717970609664917, -1.1212875843048096, -0.7195385098457336, -0.7826631665229797, -0.18392236530780792, -0.8015263080596924, -0.786749005317688, 1.1933417320251465, 0.5818836092948914, -0.8645581007003784, 0.8197804689407349, -0.9448475241661072, 0.0077622029930353165, 0.39635169506073, 0.6912371516227722, 0.10494906455278397, 0.402424693107605, -0.25713515281677246, -0.41121187806129456, -0.5298791527748108, 0.4631474018096924, 0.6835426688194275, 0.17665740847587585, 0.4634036123752594, 1.0417948961257935, 1.299845576286316, -0.09488740563392639, 0.7554970979690552, 0.2474251538515091, -0.329819917678833, -1.4925233125686646, -0.04419628903269768, -0.1732005923986435, -0.6910645961761475, 1.3051902055740356, 0.3520154058933258, -1.1446263790130615, -0.9077672958374023, 0.19757455587387085, -0.1996781975030899, -0.25176799297332764, 0.217622771859169, -1.1363002061843872, 1.2939095497131348, 0.10661867260932922, 0.28678399324417114, 0.0356203131377697, -0.0789293423295021, 0.6053616404533386, -0.061238594353199005, -0.18047256767749786, -0.8449308276176453, -0.09511521458625793, 0.806327760219574, 0.5575022101402283, 0.7264428734779358, -1.2389726638793945, -0.43930718302726746, 0.046093832701444626, 0.10728982836008072, -0.5914789438247681, -0.23564524948596954, 1.3790942430496216, 0.16400381922721863, -0.405924528837204, -0.017709992825984955, 0.612910270690918, -0.5905670523643494, -0.6877666115760803, 0.41342443227767944, 0.9144115447998047, 0.793805718421936, -0.8908658623695374, -1.0704345703125, -0.26931628584861755, 0.6384009718894958, 0.725982129573822, 0.7888630032539368, 1.083817720413208, -0.4994613230228424, -0.38867971301078796, -0.44571778178215027, -0.20344707369804382, -0.9799846410751343, -0.5467895269393921, -0.24450837075710297, -0.99098801612854, -0.04616434499621391, 0.11120913177728653, -0.1670869141817093, 0.9124234914779663, -0.1300252377986908, 1.1033233404159546, 0.526495099067688, -0.41451922059059143, -0.30212172865867615, 0.14358486235141754, 0.4234364330768585, -0.6045193672180176, 0.6738994121551514, 0.9451583623886108, -0.5652377605438232, -0.4542589485645294, 0.48068392276763916, 0.1157279834151268, 0.2204963117837906, 0.06468132883310318, 0.1755504161119461, -1.2935599088668823, -0.3478386402130127, -0.2461903691291809, 0.8586094379425049, 0.32500749826431274, 0.21226008236408234, -0.699429452419281, 0.05501555651426315, 1.0336064100265503, -0.11058567464351654, -0.8509907722473145, 0.9918678998947144, -0.48159685730934143, -0.5227309465408325, 0.08247318863868713, 0.48521459102630615, 0.9968665838241577, -0.532020628452301, -0.34398534893989563, -0.19008852541446686, -0.3265170156955719, -0.07833681255578995, -0.3036828935146332, -0.5949552059173584, 0.6275882124900818, 0.32799431681632996, 0.12827323377132416, 0.6879814267158508, -1.1300921440124512, -0.13126254081726074, -1.1199493408203125, 0.6255267858505249, 0.571935772895813, 1.2632633447647095, -0.007740522734820843, -0.03915252909064293, 0.08069968223571777, -0.16212579607963562, 0.1274113953113556, 0.39601385593414307, 0.4700968563556671, -0.31888487935066223, -0.18680857121944427, -0.32100948691368103, 0.36803051829338074, -0.2971572279930115, -0.6301289796829224, -0.11617860943078995, 0.6903365850448608, -1.1623202562332153, -1.022371530532837, 0.6468603014945984, 0.19341857731342316, -0.5783531069755554, -0.6878153085708618, 0.08288081735372543, 1.0675318241119385, -0.30126073956489563, 0.7381209135055542, -0.4660661518573761, -0.3443242907524109, -0.05411115661263466, -0.8895983695983887, -0.9469146132469177, 0.01331295631825924, 0.3940645456314087, 0.9293098449707031, -1.2193471193313599, 0.14592856168746948, -0.940091609954834, 0.4904712438583374, 0.7018898129463196, -0.0249874796718359, 0.42276933789253235, 0.5531160235404968, -0.7379401326179504, -0.035110458731651306, 0.06678395718336105, 1.2689330577850342, 0.20214466750621796, 0.269055038690567, -0.11719809472560883, -0.1953437626361847, 0.06475727260112762, -0.31478720903396606, -0.09365277737379074, -0.4168172776699066, -0.26429006457328796, -0.2572630047798157, -0.18828193843364716, 0.4373572766780853, 1.761500358581543, -0.09497659653425217, -0.13055171072483063, 0.7150636911392212, -0.8520095348358154, -0.3195718824863434, -0.5891555547714233, 1.0110914707183838, -0.34094569087028503, -0.8586474061012268, 0.4539009630680084, 0.6048668026924133, 0.9308480024337769, 0.024471323937177658, -0.2065492570400238, 0.5104953050613403, 0.8362678289413452, -0.16325773298740387, -0.18540449440479279, 0.5905130505561829, 1.142163634300232, 0.526595950126648, 0.5282408595085144, -0.5597389340400696, -0.5899118781089783, 1.2241559028625488, -1.2465291023254395, 0.16456936299800873, 0.5551307201385498, 0.16046679019927979, 1.144640564918518, -1.3001998662948608, -0.582168459892273, 0.018154585734009743, -0.3130759596824646, 0.3827529549598694, 0.08224832266569138, 0.006949706003069878, -0.12304548174142838, 0.04561937600374222, 0.19211645424365997, 0.2134496569633484, 0.8530445694923401, -0.06342235952615738, -0.1490153968334198, 0.09819970279932022, -0.4903586208820343, 0.06966176629066467, -0.9639682769775391, -0.33042269945144653, -0.07561258226633072, -0.6344621181488037, -0.04395350441336632, 0.12727153301239014, 0.037676844745874405, 1.5512995719909668, -0.5938795804977417, -1.1365447044372559, 0.5666555166244507, -0.564628005027771, 0.5138370990753174, -0.9699444770812988, -0.42544907331466675, -0.7948916554450989, -0.6725316643714905, -0.08589527755975723, 0.43098902702331543, -0.32728004455566406, -0.5180179476737976, -0.600726842880249, -0.30331653356552124, 0.22672641277313232, 0.8200679421424866, 1.2030143737792969, 0.835111141204834, 0.39116567373275757, 0.09179452061653137, 0.27783846855163574, -0.4931781589984894, 0.24293631315231323, 0.4764416217803955, 0.2622087895870209, -0.4961337149143219, -1.1458326578140259, -0.5113202929496765, 1.18280827999115, 1.2287123203277588, -0.4014681279659271, -0.1887228637933731, 1.6691093444824219, 0.7751889824867249, 0.10379091650247574, -0.45346421003341675, 0.7284900546073914, -0.2324654459953308, 1.1509943008422852, 0.4525456428527832, -1.2774577140808105, 0.07461864501237869, -0.34235143661499023, -1.6283059120178223, 0.7386499643325806, -0.24101227521896362, -1.5897349119186401, 0.7811915278434753, 1.191827654838562, 0.27701476216316223, 0.9926680326461792, -0.08507685363292694, 0.5848726034164429, -0.29833441972732544, -0.10621482878923416, -1.6668572425842285, 0.6040905714035034, 0.8798165321350098, 0.0530240498483181, -1.0582735538482666, 0.27748903632164, 0.031701941043138504, 0.17536866664886475, 0.25802895426750183, 0.41103366017341614, 0.8919334411621094, 0.590207040309906, 0.1988135427236557, -0.8721904754638672, 0.05039256066083908, -0.23454883694648743, -0.1414032131433487, -0.3903355002403259, 1.3096387386322021, -0.01956523396074772, 0.01661008596420288, -0.5102691650390625, 0.8241902589797974, -0.6831910610198975, -0.857166588306427, -0.9545758366584778, 0.8641310334205627, 0.328961580991745, -0.22071944177150726, -0.3465445637702942, -0.27189257740974426, -0.8044634461402893, -0.8461595773696899, -0.4104146957397461, 1.4449645280838013, -1.0915435552597046, -0.17548048496246338, -0.27624770998954773, -0.08664675801992416, -0.16295437514781952, 0.1349882036447525, 0.23167653381824493, -1.4915225505828857, -1.6846919059753418, -0.7787802219390869, -0.062378011643886566, 1.0081852674484253, -0.24325445294380188, 0.39776721596717834, 0.08469275385141373, -1.6745256185531616, 0.6995202302932739, -0.356402188539505, -1.0301870107650757, -0.8706955909729004, -1.157412052154541, 0.9111830592155457, -0.47339561581611633, 0.1464470773935318, -0.03963788226246834, 1.278438687324524, -0.7486578822135925, -1.3859282732009888, -0.328919380903244, -0.2501199543476105, 0.8258238434791565, 0.2431512475013733, -0.03780103102326393, 0.9358522891998291, 0.26846224069595337, -0.6430750489234924, -0.6341462731361389, 1.2235389947891235, -1.2693979740142822, 0.1700543612241745, 0.32577547430992126, 0.9154601097106934, 0.49748843908309937, 1.1176142692565918, 0.4643378257751465, 0.656546950340271, 0.1836654543876648, 0.8371703028678894, -0.14904393255710602, -0.7173354029655457, 0.14041808247566223, -0.08297888189554214, -1.025296688079834, -1.535361409187317, 0.04202118515968323, -0.6191550493240356, -0.7609112858772278, 0.433884859085083, 1.4794646501541138, -1.1831259727478027, 0.09883210062980652, -0.3648586869239807, 1.220941185951233, -0.15567784011363983, 0.31355971097946167, 0.4177384078502655, -0.8594526052474976, 0.12636201083660126, -0.48330429196357727, -0.09520186483860016, -0.605914294719696, -0.2349119633436203, 0.3851109445095062, 0.13445943593978882, -0.26985132694244385, 0.5214061141014099, 0.44491714239120483, -0.6456178426742554, -0.7859262228012085, 1.6447771787643433, 1.1511551141738892, -0.282990962266922, 0.6087368726730347, 0.3397684693336487, 0.128363236784935, -0.00847243145108223, -0.5762879848480225, -0.1246298998594284, -0.11867286264896393, 0.7279196977615356, -0.030968403443694115, 0.29910194873809814, -0.5829150676727295, -0.3021691143512726, 0.889836847782135, 0.3674508333206177, 0.500426173210144, 0.43174412846565247, -0.3138929009437561, 0.6468903422355652, 0.4327588379383087, -0.49508771300315857, 0.14028143882751465, 0.3828134536743164, 0.028311695903539658, -0.5410025715827942, 0.4478023052215576, 0.4069467782974243, 0.07741513848304749, 0.38956961035728455, 0.1981126219034195, -0.14796403050422668, -0.5718412399291992, -0.9711602330207825, -1.7823703289031982, -0.6260014176368713, -0.20800907909870148, -0.5196224451065063, 1.2239116430282593, -1.4022517204284668, -0.41744139790534973, 0.01574878580868244, -0.3407423794269562, -0.3777138292789459, -0.46742475032806396, -0.23189683258533478, -0.5353155732154846, 0.4239497184753418, 1.4805364608764648, -0.5795149803161621, 1.1127079725265503, 0.25917792320251465, -0.6308309435844421, -0.3516840934753418, -0.3760315179824829, -0.48240169882774353, 0.33629918098449707, 0.02014012821018696, -0.2589186131954193, 0.13024838268756866, -0.5695700645446777, -0.13784007728099823, -0.30703189969062805, 0.13912059366703033, 0.7890332937240601, -0.6273014545440674, -0.7266086339950562, -0.466407835483551, 0.49774083495140076, -0.6992236375808716, -1.0685832500457764, -0.7569212317466736, -0.3764069974422455, 0.08067285269498825, -0.37493181228637695, 0.34319832921028137, -0.35420653223991394, 0.3620503842830658, 1.0215548276901245, -0.15616276860237122, -0.36561599373817444, -0.6791626811027527, 0.16248242557048798, -0.10925780236721039, 0.08459896594285965, -0.07763998955488205, -0.42200714349746704, 0.30115100741386414, -1.3708528280258179, 0.7612196803092957, 0.22977933287620544, -0.39770352840423584, 0.2512359917163849, -0.3541571795940399, -0.685298502445221, -0.46878430247306824, -0.7418652176856995, 0.894841730594635, -0.088199183344841, 0.20270627737045288, 0.29561281204223633, -1.0126765966415405, 0.4903644919395447, 0.6554880738258362, -0.130862757563591, 1.2025290727615356, 1.2531191110610962, 0.94356769323349, -0.22061020135879517, -0.3600175082683563, -0.2191305011510849, 0.9626439213752747, -0.9570536613464355, -0.2715488076210022, -1.087486743927002, 0.6086085438728333, 0.00935332104563713], [0.11202623695135117, 1.132148265838623, -2.399587631225586, -0.48053792119026184, 0.20819959044456482, -0.0177528765052557, 1.3860243558883667, 0.6474320292472839, -0.007369489409029484, -0.5364418029785156, -0.8268380761146545, -0.5656125545501709, 0.9651023745536804, 0.5545603632926941, -0.015825310721993446, -0.23413847386837006, 0.6174245476722717, -0.020079437643289566, 0.7530302405357361, 0.8850399255752563, -0.6405256986618042, 1.5601234436035156, 0.5393140912055969, 0.020052941516041756, 0.37494444847106934, 0.5745375156402588, -0.4837314188480377, 0.3333435654640198, -1.2122819423675537, -1.0568821430206299, 0.8219599723815918, -1.178237795829773, 0.20452772080898285, 0.8223569393157959, -0.5090976357460022, -0.020262861624360085, 1.2269929647445679, 1.282385230064392, 0.7944536209106445, 1.231442928314209, 2.494378089904785, -0.9746019244194031, -0.11593521386384964, -0.9392584562301636, 0.8562461733818054, -0.8982654809951782, 0.41878411173820496, -1.1833720207214355, -0.7880436182022095, -0.62808758020401, 0.13148000836372375, 0.7597866654396057, 0.8080139756202698, 1.239983320236206, 0.7935656905174255, -0.19120152294635773, 0.7449623346328735, -0.2782118022441864, 0.5127381086349487, 0.37956422567367554, 0.28075850009918213, -0.32643839716911316, -0.4929613173007965, 0.8118429780006409, 0.6999512314796448, 0.3688822388648987, -0.6607190370559692, 0.3802796006202698, 0.22631298005580902, -0.1844063103199005, 0.9732499122619629, 0.5339332222938538, -0.15015102922916412, 0.7977975010871887, -0.8994932770729065, 0.15233565866947174, 0.17839273810386658, 0.5176824331283569, 1.1059645414352417, 0.7783722281455994, -0.8814364671707153, -0.09174743294715881, 1.0968515872955322, -0.11805250495672226, 1.0209770202636719, 0.5268601179122925, 0.48899179697036743, -0.5979142189025879, -0.3476911783218384, 1.6707793474197388, -0.5728294849395752, -0.1849481761455536, 0.5841287970542908, 0.9555666446685791, -0.11191421002149582, -0.21569129824638367, -0.4248236119747162, 0.13819655776023865, 0.1771906614303589, -1.2386205196380615, -1.1972695589065552, -0.6313077211380005, 0.5245435237884521, 0.9414962530136108, -0.06490753591060638, 1.2862818241119385, 0.428937703371048, -0.4660032093524933, -1.101103663444519, -0.1648566573858261, -0.344953715801239, 0.4280104339122772, -0.4687153697013855, -0.591801643371582, -0.7831341028213501, 1.1498130559921265, 0.1600998193025589, 0.025862235575914383, 0.8578181862831116, 0.3223569095134735, -0.9940718412399292, 0.39067941904067993, 0.3274199068546295, 0.32601308822631836, 0.8410234451293945, 0.8578765392303467, -0.27236127853393555, 0.10783079266548157, 0.45132583379745483, 0.015829358249902725, 0.014298065565526485, -0.37584733963012695, 0.4912749230861664, 0.7475030422210693, -0.9929928183555603, 0.6808822154998779, -0.025425024330615997, -0.778753936290741, -0.32426977157592773, 0.0716886892914772, 0.7577229142189026, -0.35151252150535583, 0.5629280209541321, -1.015014886856079, -0.09425457566976547, -1.0529887676239014, 0.22878168523311615, -0.31326794624328613, -0.369610071182251, -0.0003637464251369238, -0.812625527381897, 0.7492383122444153, 0.19379587471485138, 0.7292624711990356, 0.7897395491600037, -0.6825189590454102, -0.18752074241638184, 0.4114890992641449, -0.15466056764125824, 0.8819400668144226, 0.4864276647567749, -0.293805330991745, -0.9180176258087158, 0.4949910044670105, 0.5212442874908447, -0.7909238934516907, -0.2767966389656067, 0.47975850105285645, -0.2103523164987564, 0.4981288015842438, -0.7762411832809448, -0.8199299573898315, -0.7418444752693176, 0.5911216139793396, 0.252143532037735, -0.9297513961791992, 0.6897858381271362, -0.6878165006637573, -0.6798053979873657, -1.6992231607437134, 0.8988386988639832, -0.3387101888656616, -0.07990794628858566, -0.15672458708286285, 0.626855731010437, -0.2452041059732437, -0.3502965569496155, -0.5546723008155823, -0.5311865210533142, -0.43336549401283264, -0.8433401584625244, -0.23796233534812927, -1.1246010065078735, 0.43761134147644043, 0.03988020494580269, -0.8821530342102051, 0.4442601501941681, -1.002152919769287, -0.8205069303512573, -0.4025171101093292, 0.22583156824111938, -0.5804014801979065, -0.7924793362617493, 0.17511044442653656, -0.6340295076370239, -0.0764261931180954, -1.336153268814087, 0.8263950347900391, -0.7122492790222168, 0.7310804724693298, 0.433301717042923, -0.029163094237446785, -0.7889946103096008, 1.414323329925537, -0.6614903211593628, -1.087765097618103, 0.21961617469787598, 0.29963311553001404, -0.21348202228546143, 0.27842217683792114, 0.8845083713531494, 0.257610946893692, 0.25377190113067627, 0.23436453938484192, 0.6245884895324707, -0.7246227264404297, -0.663489580154419, -0.5845686197280884, -1.0715949535369873, 0.5822107195854187, -1.0401688814163208, -1.1915788650512695, 1.0023270845413208, -0.08857803791761398, -0.3599417507648468, 0.3916272521018982, 0.39864128828048706, 0.14777952432632446, 0.8538467884063721, -0.006021205335855484, 0.3091776669025421, -0.7015035152435303, 0.5085723400115967, -0.9248998165130615, -0.685636579990387, 0.07280970364809036, 0.2433438003063202, -0.01938810758292675, 1.139755129814148, 0.7893649339675903, -0.6333211064338684, 0.07770630717277527, 0.7086034417152405, -0.22489343583583832, -0.07150591164827347, -1.0436642169952393, -0.9303921461105347, 0.2242281138896942, -0.3052780330181122, 1.9194624423980713, 1.0300383567810059, -1.333124041557312, -0.09350275248289108, 0.10321546345949173, 0.07630432397127151, -0.514448344707489, -0.33283039927482605, -0.6041536331176758, -0.0729951485991478, -0.19923599064350128, -0.3593132495880127, 0.979097306728363, -0.12418302148580551, 1.0154896974563599, -1.1556479930877686, 0.4007611572742462, -0.3802027702331543, 0.27846264839172363, 0.03915927931666374, 0.9989159107208252, 0.9275009036064148, -1.118237018585205, -0.8675150275230408, -0.11928257346153259, 0.5916181802749634, -0.644649088382721, 0.46849381923675537, 0.7190628051757812, 0.5045991539955139, -0.6313884854316711, 0.2893853187561035, 1.043735384941101, 0.014988874085247517, 0.35584619641304016, -0.4694533348083496, 0.3337636888027191, 0.7499540448188782, -1.3710293769836426, -0.7627076506614685, 0.17245833575725555, 0.8319786787033081, 0.6019086241722107, 1.0280014276504517, 1.1717493534088135, 0.6001115441322327, 0.42403802275657654, -0.07463818043470383, -1.1367138624191284, -0.3193778991699219, -0.6247544884681702, -0.46679234504699707, -0.6784830689430237, 0.22453349828720093, -0.03023601695895195, -0.7133111357688904, 0.49302616715431213, -0.5477923154830933, 0.8152191042900085, 0.6480957269668579, -0.45894286036491394, -0.08154191076755524, -0.031385164707899094, 0.13802345097064972, -0.3821381628513336, 0.3893238604068756, 0.9118360877037048, -0.4912065863609314, 0.5317896008491516, 0.283418208360672, 0.6051428318023682, 1.2249891757965088, 0.289992094039917, -0.22651909291744232, -1.0622174739837646, -0.5111973881721497, -0.05848041549324989, 0.19094447791576385, 0.05690382048487663, 0.19822748005390167, -1.632946491241455, 0.18904848396778107, 0.7936278581619263, 0.7661550045013428, -0.3579716980457306, 0.8556581139564514, -0.6997800469398499, -0.7281539440155029, -0.5249986052513123, -0.1358110010623932, 0.4600561857223511, -0.4683343470096588, -0.5468737483024597, -0.17249463498592377, -0.33673369884490967, 0.07457884401082993, 0.1637117713689804, 0.16941168904304504, 0.8776508569717407, -0.46124136447906494, -0.2968309223651886, 1.738667607307434, -0.08469662815332413, -0.08742848038673401, -1.4278528690338135, 0.9264481663703918, 0.26934903860092163, 0.732688844203949, 0.5561689734458923, 0.530795156955719, 0.41172391176223755, -0.34736761450767517, -0.03463298827409744, -0.014371257275342941, 1.2191520929336548, 0.193726047873497, -0.327829509973526, -0.6930184960365295, 0.2755751609802246, -0.43471968173980713, -0.5717342495918274, -0.6131902933120728, 0.29763662815093994, -0.5358553528785706, -0.16001345217227936, 0.15019038319587708, -0.19317150115966797, -0.4731995165348053, 0.02562675252556801, -0.2564433813095093, 0.478572279214859, 0.07720458507537842, -0.35887420177459717, -0.7205114364624023, -0.4749531149864197, -0.002157021313905716, -1.438946008682251, 0.2768809497356415, 0.2843784689903259, -0.05463054031133652, 0.5873602628707886, -0.8185912370681763, 0.14493806660175323, 0.5854743123054504, 0.5959216952323914, 0.3923572599887848, -0.3646039068698883, 0.31424954533576965, -0.08995267003774643, -0.22328612208366394, 0.24554131925106049, -0.1336144506931305, 1.930308222770691, 0.3125952482223511, 0.2675812840461731, 0.3381047546863556, 0.5954362750053406, 0.18569929897785187, -1.0619868040084839, -0.25093239545822144, 0.713863730430603, -0.3747234642505646, 0.18862071633338928, -0.7685800790786743, -0.3070678114891052, 1.5358591079711914, 0.4818285405635834, 0.36220744252204895, 1.016740083694458, -0.9447190165519714, -0.11798732727766037, -0.03862372785806656, 0.600409209728241, 0.8693141341209412, -1.0644220113754272, 0.47422677278518677, 0.004512373823672533, -0.8802805542945862, 0.4830544590950012, 0.5506243705749512, 0.38633978366851807, -0.47621938586235046, 0.0651715025305748, 0.9358088374137878, -0.20155201852321625, 0.8868131637573242, 0.6644569635391235, 0.5934548377990723, -0.8122308850288391, -0.10665930807590485, 0.6650477647781372, -0.07827677577733994, 0.9692967534065247, 0.5755065679550171, 0.3336760997772217, 1.4836937189102173, -0.6091750264167786, -0.162187397480011, 0.5273537635803223, 0.391940712928772, 0.993500828742981, 0.8157985210418701, 0.2829563021659851, -0.595920741558075, -0.021796002984046936, 0.6184610724449158, -1.1441056728363037, 0.7097493410110474, 0.5835834741592407, -0.3109108507633209, 0.04789157211780548, -0.13614162802696228, -0.4951946437358856, -0.2744276225566864, -0.9142912030220032, -0.7172549962997437, -0.8874263167381287, 0.20138044655323029, 1.051639437675476, -0.533223032951355, 0.429387629032135, -0.2690499722957611, -0.7348334193229675, 0.5163024067878723, -1.1738255023956299, -0.1528974026441574, -0.24976278841495514, -0.6080332398414612, -0.5328059792518616, -1.0764644145965576, -0.46142295002937317, 0.24839630722999573, -0.7077202200889587, -0.6887988448143005, 0.31574586033821106, -1.3648531436920166, 0.042662546038627625, 0.4132463335990906, 1.38588547706604, 0.3689296543598175, -0.24713139235973358, 0.17068010568618774, 0.26479941606521606, -0.7492250204086304, -0.03713947907090187, 1.063245415687561, -0.6368709802627563, 0.2728956639766693, -1.4457862377166748, -0.7301730513572693, 1.3517067432403564, 0.531787097454071, -0.5389312505722046, 0.018356522545218468, 0.15252354741096497, 1.1167608499526978, -0.21160762012004852, -0.5329179763793945, 0.11039993911981583, -0.19871382415294647, 0.9749115109443665, 0.14417923986911774, -0.6048415303230286, -0.7897987961769104, -0.32349684834480286, -2.0416204929351807, 0.9321791529655457, 0.2816484868526459, -1.8227463960647583, 0.4625157415866852, 0.36057281494140625, -0.2950321435928345, 0.5226060152053833, -0.5471645593643188, -0.5338478684425354, 0.029834086075425148, 0.012052265927195549, -1.3337372541427612, 0.11781950294971466, -0.3032073676586151, -0.010265611112117767, -0.14653290808200836, 0.0434054434299469, -0.005329053848981857, 1.015263319015503, -0.3285611867904663, 0.740810215473175, 0.425674170255661, 0.584251344203949, 0.10997641086578369, -0.06376004219055176, 0.15642675757408142, -1.1777491569519043, -0.303120493888855, -0.6896400451660156, 1.1849440336227417, -0.052071064710617065, -0.4988279640674591, -0.08056614547967911, -0.7151316404342651, -0.18819774687290192, -0.3906434178352356, -0.7034308910369873, 0.19646768271923065, 0.5768109560012817, 0.17500901222229004, -0.08459960669279099, -0.20936711132526398, 0.39077088236808777, -0.6385108232498169, -0.4380766451358795, 0.8537279367446899, -1.7742462158203125, 0.06191851571202278, -0.8839051723480225, -0.3474307954311371, -0.3377349078655243, -0.16046717762947083, 0.32839417457580566, -1.2529321908950806, -0.169994056224823, -1.3609641790390015, -0.18206000328063965, 1.2606076002120972, -0.5214066505432129, 0.1809668391942978, 0.7205485105514526, -1.4373302459716797, 0.5266152620315552, 0.012121081352233887, -1.4875547885894775, 0.10056690871715546, -1.139129638671875, 1.0699336528778076, -0.9850590229034424, 0.12238537520170212, -0.2625059485435486, 0.7626810669898987, -1.0801373720169067, -1.4182446002960205, -0.07122316211462021, -0.3536625802516937, 0.7572792768478394, 0.904663622379303, -0.24659085273742676, 1.3144572973251343, 0.8454247713088989, -0.5662325024604797, -0.3614242672920227, 0.36030805110931396, -0.7477600574493408, 0.07562211900949478, 0.777156412601471, 0.056284282356500626, 0.2601274847984314, 0.7150648832321167, -0.41610339283943176, 0.6901172399520874, 0.5435307621955872, 0.6778886914253235, -0.3919351398944855, -0.4952029287815094, -0.4980001747608185, 0.017695525661110878, -0.5670216679573059, -0.08856752514839172, -0.08939731866121292, -0.9865357279777527, -0.6899642944335938, 0.7652719616889954, 0.883561372756958, -0.5879665017127991, -0.47973042726516724, -0.7369384169578552, 0.566921591758728, -1.0495706796646118, 0.14397147297859192, -0.032077085226774216, -0.5174282789230347, 0.32330358028411865, -0.5303929448127747, -0.3116666078567505, -0.3159727454185486, -0.4160362780094147, 0.00831202045083046, 0.2661437392234802, -0.29699695110321045, 0.22158381342887878, 0.6552371978759766, -0.17079196870326996, -0.16213883459568024, 1.8979970216751099, 1.2126123905181885, -0.4868757426738739, 0.5301858186721802, -0.3654150068759918, -0.29828202724456787, 0.5667750239372253, -0.604620099067688, -0.08564551919698715, -0.6777462959289551, 0.314638614654541, 0.054160069674253464, -0.28708165884017944, -0.9697577357292175, -0.5312318801879883, -0.28394296765327454, 0.5858138203620911, 0.045278944075107574, -0.0024161338806152344, -0.33222275972366333, 1.3150973320007324, 0.2256777435541153, -0.39734286069869995, 0.22183476388454437, 0.08190680295228958, 0.3407299816608429, 0.18518640100955963, 0.7561233043670654, 0.10959012806415558, -0.07796254009008408, 0.48555704951286316, -0.14250071346759796, 0.2850480079650879, 0.37173765897750854, -0.7648383975028992, -1.614190697669983, -0.327671080827713, -0.670386791229248, -0.5472548604011536, 0.6783369183540344, -0.23710325360298157, 0.0269966721534729, 0.4607141315937042, 0.022864466533064842, -0.13570046424865723, -0.8023859262466431, -0.15552248060703278, -0.06889605522155762, 0.12937462329864502, 0.2784636616706848, -0.43978792428970337, 1.319138526916504, 0.31164154410362244, -0.004534682258963585, 0.044519610702991486, -0.6594595313072205, -0.45421546697616577, 0.22454895079135895, 0.029926929622888565, -0.3287758231163025, -0.004659026861190796, -0.03544017672538757, -0.5311082005500793, 0.4458995759487152, -0.16232579946517944, 0.3619050085544586, 0.003271050751209259, -0.9742931127548218, 0.02130657620728016, 1.1406059265136719, -0.11621969193220139, -0.7865350842475891, -0.489853173494339, -0.45626962184906006, 0.42740610241889954, 0.1927376091480255, 0.3568439781665802, -1.1531322002410889, 1.4675525426864624, 0.6299083232879639, -0.07269120216369629, 0.20514033734798431, -0.2923023998737335, 0.31420156359672546, -0.8303155303001404, 0.980499267578125, 0.05822622403502464, -0.11315440386533737, 0.15938131511211395, -0.5389386415481567, 0.018826112151145935, -0.2807879149913788, 0.3766089379787445, 0.899186372756958, -0.8001682162284851, -0.680718719959259, -0.3861953020095825, 0.1238226518034935, 0.9947250485420227, 0.04073430970311165, -0.07118771225214005, -0.02373863011598587, -1.2603973150253296, -0.16957531869411469, 0.025299392640590668, 0.04983771964907646, -0.050788916647434235, 1.0477466583251953, 2.1341419219970703, 0.41511258482933044, -0.27416735887527466, -0.16454418003559113, 0.7293832898139954, -0.6205145120620728, -0.11978030949831009, -0.7482923865318298, -0.28738701343536377, -0.6378082633018494], [0.1268572211265564, 1.8703793287277222, -2.107581853866577, 0.060935039073228836, -0.41868293285369873, 0.3765559792518616, 0.9806077480316162, 0.20548385381698608, -0.27270427346229553, -0.20133784413337708, -0.6034663915634155, 0.37304365634918213, 0.6658509969711304, 0.3585895299911499, 0.11082735657691956, 0.41304516792297363, -0.2174305021762848, 0.47289717197418213, 2.067333221435547, 0.8635741472244263, -0.27965062856674194, -1.0766334533691406, -0.4489867091178894, -0.045902155339717865, -0.6695761680603027, 0.7777286767959595, -0.46190452575683594, -0.11620746552944183, -1.2331717014312744, -1.4034063816070557, 0.7536184191703796, -0.4951134920120239, 0.018669236451387405, 0.11232320964336395, -1.7520263195037842, -0.8492259979248047, 2.074281692504883, 0.7776957154273987, 0.07920762151479721, 0.40651339292526245, 2.1632556915283203, 0.04928085207939148, -0.3586863577365875, -0.9805063009262085, 0.7873028516769409, 0.4232759475708008, 0.4749695658683777, -1.1186109781265259, 0.33504676818847656, -0.28357309103012085, 0.5867950320243835, 0.6177499294281006, 0.43555784225463867, 1.0626593828201294, 0.44595178961753845, -0.8393982648849487, -0.1703062355518341, 1.2384333610534668, -0.05714939534664154, 0.7580394744873047, 0.5393602848052979, 0.12799905240535736, 0.6261177062988281, 0.7366429567337036, 1.2606627941131592, 0.030875839293003082, 0.6103433966636658, 0.46662697196006775, -0.08497180044651031, -0.4633510708808899, 0.4917672574520111, -0.20213791728019714, -0.7068850994110107, -0.08023244142532349, -0.628792405128479, 0.6678952574729919, -0.2643741965293884, 0.8362327814102173, -0.37775370478630066, 0.6860806941986084, -0.6536315083503723, -0.20975230634212494, 0.8392248749732971, 0.07360299676656723, 0.37382563948631287, 0.4547048807144165, 0.37633436918258667, -0.580529510974884, 0.23756438493728638, 0.9664564728736877, 0.5029057860374451, 0.4862525463104248, 0.6043481230735779, -0.24803116917610168, -0.19076594710350037, -0.6300498247146606, -0.3153696060180664, -1.3822600841522217, -0.4307882785797119, -1.1438052654266357, -0.18073050677776337, -1.203027367591858, 0.11645984649658203, 0.794753909111023, 0.48543262481689453, 1.8156914710998535, -0.13448160886764526, -0.26104363799095154, -0.8396908044815063, 0.13149844110012054, -0.23636066913604736, 0.4349726438522339, 0.1315433531999588, -1.5362720489501953, 0.0392824150621891, 0.7104300260543823, 1.2995023727416992, -0.2219657301902771, 0.3106755018234253, 0.6911865472793579, -0.9297671318054199, 0.06658579409122467, -0.09060791879892349, 0.09784066677093506, 0.25503265857696533, 0.3615487813949585, -0.6762682199478149, -0.4027762711048126, -0.03686603158712387, 0.3099823594093323, 0.3622822165489197, -0.5444098114967346, -0.042353201657533646, 0.6854519844055176, -1.191306710243225, 1.1480965614318848, 0.1303318589925766, -0.6064194440841675, -0.11661718040704727, -0.47623103857040405, 0.48649561405181885, -0.4899638593196869, -0.9670252799987793, -0.6787395477294922, -0.2925594747066498, -0.7954709529876709, 0.47710418701171875, 0.5547515153884888, -0.9463990926742554, 0.19852226972579956, -0.9738671183586121, 0.5889869928359985, 0.2278544008731842, 0.7880642414093018, -0.039670541882514954, -0.22468741238117218, 1.1573623418807983, -0.01835968717932701, 0.08186303824186325, 0.890404224395752, 0.6497235894203186, 0.5142033696174622, -0.5055941343307495, 0.9633430242538452, 0.022753126919269562, -0.8617942333221436, 0.7688350677490234, 0.4050575792789459, -0.0631709173321724, 0.09446577727794647, -0.37501031160354614, -0.2606505751609802, -0.9574567675590515, 0.7902781963348389, 0.5084953904151917, -0.8448139429092407, 0.9254698753356934, -0.44920748472213745, -0.8506767749786377, -2.181602954864502, 0.15658676624298096, -0.014081870205700397, 0.5587061643600464, 0.6498340368270874, 0.9323612451553345, -0.6775221824645996, -0.02786404639482498, -0.2250491976737976, -0.32396718859672546, -1.0291008949279785, -1.118318796157837, 0.3320038318634033, -0.8118457794189453, 0.18191780149936676, -0.1633160561323166, -0.610985517501831, 0.9661996364593506, -0.21789517998695374, -0.4375372529029846, -0.0953022688627243, -0.4677840769290924, -0.6800801753997803, -1.1972566843032837, -0.12539581954479218, -0.34056803584098816, 0.6192260384559631, -1.2440769672393799, 0.31603288650512695, -0.7164427042007446, 0.38788339495658875, 0.9058900475502014, -0.3209199011325836, -1.1099073886871338, 0.7374986410140991, 0.21938253939151764, -1.5731010437011719, 0.40500086545944214, -0.005716340616345406, 0.43472787737846375, 0.1405288428068161, 0.24715980887413025, 0.9352480173110962, 0.8284248113632202, 0.36868637800216675, 1.0906699895858765, -0.3340713381767273, -1.0373268127441406, -0.9194537401199341, -0.6558816432952881, 0.2891736328601837, -0.8724023103713989, -1.0553209781646729, 0.4373946189880371, 0.7214877605438232, -0.36204907298088074, 1.2265580892562866, 0.3218018114566803, -0.2272781878709793, 0.4280833601951599, 0.6915909051895142, 0.22042883932590485, 1.1282111406326294, -1.131169080734253, -0.9504649639129639, -0.4027712941169739, -0.35798296332359314, 0.1262570470571518, -0.7242840528488159, 0.2494666576385498, 1.330280065536499, 1.5921499729156494, -0.37104088068008423, 0.4772568643093109, -0.438540518283844, 0.0881372019648552, -0.6649086475372314, 0.3074212074279785, -0.038401808589696884, -0.732650876045227, 0.9602015018463135, 0.7351862192153931, -1.2134822607040405, 0.5937576293945312, 0.04968739673495293, 0.46563616394996643, -0.43946748971939087, 0.02123287320137024, -0.45188310742378235, 0.6136930584907532, 0.2692343592643738, 0.009937804192304611, -0.05432150512933731, -0.5316502451896667, 0.5406227111816406, -0.13912582397460938, -0.18610486388206482, -0.3510957360267639, 0.2880439758300781, -0.04530344158411026, 0.2679968774318695, 0.26890116930007935, -1.4446051120758057, -1.2345305681228638, -0.2635790705680847, 0.4964194893836975, 0.36534711718559265, 0.680908739566803, 0.7329403758049011, 1.114140510559082, 0.07534565031528473, -0.1479901820421219, 0.1482832282781601, -0.6097645163536072, -0.25180336833000183, -0.2736859917640686, -0.6469003558158875, 0.4225422143936157, -0.27857017517089844, -0.3492293357849121, -0.040281299501657486, 0.4428470730781555, 0.5845521688461304, 1.4722740650177002, 1.313335657119751, -0.9357032775878906, -0.041604261845350266, -0.3274894058704376, -0.15191872417926788, -1.1390190124511719, -1.0962607860565186, 0.08787790685892105, -0.9236769676208496, -0.1614813357591629, -0.2647852301597595, -0.2401018738746643, 0.4843235909938812, 0.1268632411956787, 0.4106943905353546, 1.4331823587417603, -0.18427716195583344, -0.7748286128044128, -0.4443719983100891, -0.215695321559906, -0.9917992353439331, 0.6166297793388367, 0.6216299533843994, -0.9752886891365051, -0.7035373449325562, -0.10033786296844482, 0.31904280185699463, 0.5947057008743286, -0.23019173741340637, 0.5788267850875854, -0.7273997664451599, -0.8812326788902283, 0.5323869585990906, 1.0026400089263916, 0.7207235097885132, -0.15935875475406647, -0.8926715850830078, 0.1401222050189972, 0.6330030560493469, 0.38486531376838684, -0.7528924345970154, 0.36969882249832153, -0.08850501477718353, -0.38476699590682983, -0.2811230421066284, 0.13846059143543243, 0.8295807838439941, -0.6336060762405396, -0.5148838758468628, 0.21516817808151245, 0.14121469855308533, -1.3629565238952637, 0.6406465172767639, 0.07401677221059799, 1.1285474300384521, 0.2929767966270447, -0.2543456554412842, 1.1099154949188232, -0.34700632095336914, 0.023181870579719543, -1.9185110330581665, 0.6556581854820251, 0.9078885912895203, 1.2897634506225586, 0.8482829928398132, -0.14571380615234375, 0.020222142338752747, -0.4032997488975525, 0.5944397449493408, -0.12900111079216003, 0.6122068762779236, -0.25365880131721497, -0.28651875257492065, 0.019868992269039154, -0.5566695928573608, -0.0896911770105362, -0.5188730359077454, -0.3236842453479767, 0.6795058250427246, -0.16286993026733398, -0.058588266372680664, 0.47403448820114136, -0.1174878254532814, -0.8345886468887329, -0.8219759464263916, -0.13531261682510376, 0.24340218305587769, 0.28850695490837097, 0.322639524936676, -0.4286521077156067, -0.3246096968650818, 0.27052080631256104, -0.6186509132385254, 0.00044542551040649414, -0.5028886795043945, -0.20906749367713928, 1.02485191822052, -1.1040198802947998, -0.4996345043182373, -0.10115428268909454, -0.031842008233070374, 0.943913459777832, 0.2138231098651886, -0.22590941190719604, -0.056791964918375015, -0.32434338331222534, 0.1548653244972229, -0.24828481674194336, 1.1809799671173096, 0.781754732131958, -0.30736851692199707, -0.08409322053194046, 0.293517142534256, 0.5130143165588379, -0.7591971158981323, -0.47532111406326294, 0.3777257800102234, -1.302420735359192, -0.08172982931137085, -0.23371785879135132, -0.003377724438905716, 1.1184496879577637, -0.1682758927345276, 0.5888153910636902, 0.6713480949401855, -0.747346043586731, -0.11513392627239227, -0.045360442250967026, 0.7053586840629578, -0.9044190645217896, -0.2569226622581482, 0.3621536195278168, -0.006811417639255524, -0.3797016739845276, 0.2631751298904419, 0.3294251561164856, 0.47162753343582153, 0.10843956470489502, -0.49277710914611816, 0.5058729648590088, 0.4945492446422577, 0.445216566324234, 1.3824100494384766, 0.5188212394714355, -0.26112306118011475, -0.8682852983474731, 1.4130651950836182, -0.4411119520664215, 0.38483381271362305, 0.13507738709449768, 0.5002065300941467, 1.147169828414917, -1.2572736740112305, -0.6835076212882996, 0.6995674967765808, 0.32897546887397766, -0.19737647473812103, -0.26097628474235535, 0.3402576446533203, -1.355210781097412, -0.36825376749038696, 0.1632942408323288, 0.02704242244362831, 0.26756173372268677, -0.05008430778980255, -0.06925045698881149, 0.244961217045784, -0.0199180506169796, 0.050102557986974716, -0.7032996416091919, -0.129257470369339, 0.30187052488327026, -0.3930984139442444, 0.38196083903312683, 0.25182899832725525, 0.4219430387020111, 0.059676431119441986, -0.47364357113838196, -0.5938528180122375, 0.2182755023241043, -0.7949929237365723, 0.35182592272758484, -0.533760130405426, -0.5126999020576477, -0.47472846508026123, -0.7718427181243896, -0.9551326036453247, -0.269656240940094, -0.19635191559791565, 0.39558500051498413, 0.45759257674217224, -1.3512417078018188, 0.3896612524986267, 0.24302077293395996, 1.272841215133667, 0.8142163753509521, 0.21939370036125183, -0.3191685378551483, -0.012207895517349243, -0.4939430356025696, 0.4020702838897705, 0.23986712098121643, -0.13169628381729126, -0.23328953981399536, -1.209306240081787, -0.49021559953689575, 1.3497518301010132, 0.11272484064102173, 0.33874520659446716, 0.294067919254303, 0.3581587076187134, 1.8427456617355347, -0.42492127418518066, -0.5184842944145203, 0.8038516044616699, 0.12208405137062073, 0.706234335899353, 0.3057709336280823, -0.9033284187316895, -0.6216694116592407, -0.315015971660614, -1.218794345855713, 1.6506285667419434, 0.3389533758163452, -1.0985820293426514, 0.06423668563365936, 0.8097115755081177, 0.3929014205932617, 0.9568884372711182, -1.0243326425552368, -0.1550079584121704, 0.896294891834259, -0.37392133474349976, -1.050734043121338, 0.3324326276779175, 0.7619069814682007, 1.2318720817565918, -0.37670549750328064, 0.32809245586395264, -0.7321100234985352, 0.14679598808288574, -0.13120508193969727, -0.08739975839853287, 0.4796026349067688, 0.38932567834854126, 0.4315693974494934, -0.5784988403320312, 0.4607698917388916, -0.6922060251235962, 0.566338300704956, -0.12250245362520218, 1.6046500205993652, 0.35617825388908386, -0.7625311613082886, 0.3934793174266815, -0.6521955728530884, 0.01693597622215748, -0.48403075337409973, -0.5954133868217468, 0.5069305300712585, 1.1845966577529907, -0.19804245233535767, 0.5147759914398193, -0.05135681480169296, -0.5703723430633545, -0.606644868850708, -0.15968731045722961, 0.5300223231315613, -0.47330164909362793, 0.36953848600387573, -0.43260639905929565, 0.3045503795146942, -0.07205478847026825, -0.24550679326057434, 0.056733548641204834, -0.6112679243087769, -1.3903748989105225, -0.8812612891197205, -0.30682265758514404, 0.35656923055648804, -0.7428919672966003, 0.2118774652481079, 0.2715044319629669, -1.5038628578186035, 0.7442887425422668, -0.125564843416214, -2.048508644104004, -0.08445697277784348, -0.4884021282196045, 0.7394955158233643, -0.5784074068069458, 0.015741854906082153, 0.23505863547325134, 0.6837598085403442, -0.9390870332717896, -1.1487979888916016, -0.8828940391540527, -0.12013611197471619, 0.7218202352523804, 0.6576661467552185, -1.1477185487747192, 1.0702921152114868, -0.5129880309104919, -0.2833121716976166, -0.2714589238166809, -0.20735988020896912, -0.8740938901901245, -0.29893261194229126, 0.2927825450897217, -0.1882076859474182, 0.20786133408546448, 1.147108554840088, 0.8813896775245667, 0.6144607067108154, 0.11524355411529541, -0.17357036471366882, -1.3821241855621338, -0.3217769265174866, -0.21772021055221558, -0.5295605659484863, -0.9897778630256653, -0.48421406745910645, -0.07294531166553497, -0.5111439824104309, -0.7760598063468933, 1.0622022151947021, 1.4824490547180176, -1.176565408706665, 0.5028356909751892, 0.19790086150169373, 0.10339358448982239, -1.279529333114624, 0.4365151524543762, -0.4443846344947815, 0.11747489869594574, 0.7941370606422424, 0.20057925581932068, 0.4833531975746155, -0.9610621929168701, -0.2902086079120636, 0.2900692820549011, 0.2194218784570694, -0.39261049032211304, 0.3146599531173706, 0.522417426109314, 0.30336111783981323, -0.32228410243988037, 1.4205050468444824, 0.261442631483078, -0.3780457377433777, 0.3062293529510498, 0.1761489361524582, -0.4735541045665741, -0.3851308226585388, 0.07934801280498505, 0.431438148021698, -0.9555554389953613, 0.33530503511428833, 0.08067195117473602, 0.26968082785606384, -0.09751993417739868, 0.3026092052459717, -0.010314365848898888, 0.17203909158706665, 1.2942619323730469, 0.3893486261367798, -0.9084221124649048, 1.0669960975646973, 0.5525877475738525, -0.09251611679792404, 0.7973175644874573, -0.5338740348815918, 0.1896388828754425, 0.21478796005249023, 0.2979080080986023, 0.10445288568735123, -0.27829551696777344, 1.2171859741210938, 0.8033331036567688, -0.011230206117033958, -0.26793697476387024, -0.6673777103424072, -1.1594722270965576, -0.6728084087371826, 0.016470829024910927, 0.4258861839771271, 0.5108649134635925, -0.9421457648277283, -0.6746628284454346, -0.17963051795959473, 0.6245854496955872, -0.11707388609647751, -0.14690828323364258, 0.21276675164699554, -0.2083767056465149, -0.6280936002731323, 0.690666675567627, -0.6960327625274658, 1.0498313903808594, 0.5119492411613464, -0.05785498023033142, -1.0579771995544434, 0.10860052704811096, 0.5251073241233826, -0.1876171976327896, 0.39480412006378174, 0.1422964334487915, 0.2864511013031006, -0.9043405055999756, -0.06848487257957458, -0.09445424377918243, 0.2368396520614624, 0.5110592842102051, 0.23466148972511292, -1.558429479598999, 0.2672450840473175, 0.6146239042282104, -0.45883238315582275, -0.2801324725151062, -0.15653842687606812, -0.7931063175201416, 0.25812339782714844, 0.06840342283248901, 0.3078007996082306, -0.46100687980651855, 0.6263431310653687, 0.4133164882659912, 0.012179560959339142, -0.9717876315116882, -1.0678644180297852, 0.7754318714141846, -0.21498961746692657, 0.7037031650543213, -0.5033034682273865, 0.17163491249084473, 0.4088422656059265, -0.6405088901519775, -0.20665544271469116, -0.15364959836006165, -0.5110126733779907, -0.08846345543861389, -1.0743868350982666, -0.4014459550380707, -1.0383713245391846, -0.17848363518714905, 0.4680502116680145, 0.24731367826461792, -0.011729083955287933, 0.05843408405780792, -1.078185796737671, -0.32991623878479004, 0.7536776065826416, -0.04176284745335579, 0.14603032171726227, 1.4747785329818726, 1.7189509868621826, 0.307860404253006, 0.1514328420162201, -0.2846885621547699, 0.16990019381046295, -0.8526804447174072, 0.3162255585193634, -0.8575280904769897, -0.26155519485473633, -0.5733687877655029], [-0.5938746333122253, 1.7009835243225098, -2.1853394508361816, -0.24158231914043427, 0.5067654252052307, 0.14089654386043549, 1.293782114982605, -0.32601726055145264, -0.16637557744979858, -1.0364463329315186, -0.45878636837005615, 0.32243210077285767, 0.7095611095428467, 1.0833818912506104, 0.35414740443229675, 0.6736005544662476, 0.3401857912540436, -0.163908451795578, 0.6942148208618164, 1.2341996431350708, 0.34798628091812134, -1.2701044082641602, -0.2581457495689392, -0.19897721707820892, 0.08568504452705383, -0.3897830545902252, -0.43797263503074646, -0.0398775078356266, -0.6140038967132568, -0.6744182705879211, 0.9237887263298035, -0.21794600784778595, 0.37364494800567627, -0.27809271216392517, -1.0684117078781128, -1.1465619802474976, 0.44964325428009033, -0.359950989484787, -1.0826976299285889, 0.17031486332416534, 2.0379745960235596, -0.04039768502116203, -0.12718108296394348, -1.2595739364624023, 0.5434054732322693, -0.3113824129104614, 0.2765251100063324, -0.6045423746109009, -0.2256610095500946, -1.06777822971344, 0.44954603910446167, -0.4453229010105133, 0.5122482180595398, 0.9581810235977173, 0.42420145869255066, -0.44176238775253296, -0.02938961237668991, 0.9238321185112, -0.325227826833725, 0.4083385467529297, 0.9412536025047302, 0.42820775508880615, 0.3231278955936432, 1.1810681819915771, 0.4156431555747986, -0.4651270806789398, 0.5691156983375549, 0.21025224030017853, 0.5638522505760193, 0.44433310627937317, 0.6828102469444275, 0.35823044180870056, -0.3744560480117798, -0.22768400609493256, -0.4859974980354309, -0.03999566286802292, -0.46018746495246887, 0.39661306142807007, -0.21894079446792603, 0.3174584209918976, -0.30989348888397217, 0.800713300704956, -0.007087950594723225, -0.5348353385925293, 0.4511767327785492, -0.11991530656814575, 0.07794231921434402, -0.683448076248169, -0.704188883304596, 1.208247423171997, -0.09640452265739441, 0.012775547802448273, 0.905886709690094, -0.6379119157791138, -0.45091888308525085, -1.102596402168274, -0.211052805185318, -0.5088613033294678, 0.11642108857631683, -1.2027490139007568, -0.5522611737251282, -0.7790234088897705, 0.15355806052684784, 0.489681601524353, 0.37868115305900574, 1.6420848369598389, 0.7702323794364929, -0.285724937915802, -0.7152062654495239, 0.14446014165878296, 0.504176139831543, -0.2017875462770462, -0.9224060773849487, -0.4059564769268036, -0.1899007260799408, 0.678275465965271, 1.2619695663452148, -0.11649569123983383, 0.7539871335029602, 0.29525208473205566, -0.33032482862472534, -0.9598996639251709, -0.6936723589897156, 0.08280809223651886, 1.515468955039978, -0.19920532405376434, -0.7582783102989197, -0.05124397948384285, -0.43131163716316223, -0.25302380323410034, 0.47963255643844604, -0.10217534750699997, -0.1661132276058197, 0.6543874740600586, -0.40767714381217957, 1.1860392093658447, 0.06862073391675949, -0.9081641435623169, 0.1342039555311203, 0.40261906385421753, -0.16472728550434113, 0.3214060664176941, -0.6671748161315918, -0.7525513172149658, 1.089616060256958, -1.0375888347625732, 0.02152620255947113, -0.23728182911872864, -0.43231886625289917, 0.6724902391433716, -1.129516363143921, 0.03265134617686272, 0.011244475841522217, 1.9053630828857422, 0.21733352541923523, -0.10482367128133774, 0.5458182692527771, 0.13919179141521454, 0.1621864140033722, 0.4780479073524475, 1.5669931173324585, -0.38371598720550537, -0.9427812099456787, 1.3563790321350098, 0.15755538642406464, -0.7102497220039368, 0.6983957886695862, 0.2669369876384735, -0.6885591745376587, 0.44172611832618713, -0.15959309041500092, -0.21839703619480133, -1.299238681793213, 0.7711195945739746, -0.34471073746681213, 0.18363869190216064, 1.4871840476989746, 0.07048754394054413, -0.8092162013053894, -0.5451430082321167, 0.6487491726875305, -0.6564377546310425, 0.018007857725024223, 0.3495458662509918, 0.6621027588844299, -0.4524688422679901, -0.45440220832824707, -0.7745545506477356, 0.011794345453381538, -1.0707917213439941, -0.8445507884025574, -0.3764677345752716, -1.5039575099945068, 0.7500734925270081, -0.9356483221054077, -0.7116559743881226, 0.7180752158164978, -0.2309141606092453, -0.10266361385583878, -0.2948549687862396, -0.21051044762134552, -0.13047584891319275, -1.5256417989730835, 0.27612704038619995, -0.7836705446243286, 0.6570632457733154, -0.2483072429895401, 0.904909074306488, -0.2188732773065567, 0.47737571597099304, 1.0861883163452148, -0.6246727705001831, -1.1833959817886353, 0.4255085289478302, 0.09054487198591232, -1.1088494062423706, 0.2502420246601105, 0.11889612674713135, -0.0811186209321022, 0.42205289006233215, 0.3395840525627136, -0.057857125997543335, 0.37702545523643494, -0.013715543784201145, 0.6204662322998047, 0.08686292171478271, -0.7344498634338379, -0.25345900654792786, -0.4089919924736023, 0.27464184165000916, -0.9974384903907776, -0.7786960005760193, -0.03994038328528404, 0.041170381009578705, -1.2669914960861206, 1.254937767982483, -0.5147725939750671, 0.15021036565303802, 0.9181257486343384, 1.220845341682434, 0.6717270016670227, 0.1425231248140335, -0.13938374817371368, 0.5955314636230469, -0.7146826386451721, -0.40042340755462646, 0.9803747534751892, -0.1663827896118164, -0.10987680405378342, 1.496689796447754, 0.5672829151153564, -0.13845226168632507, 0.7892618775367737, -0.7519540786743164, 0.3518829047679901, -0.5787582993507385, 0.25492843985557556, -0.2585434317588806, -1.05055570602417, 0.8550530076026917, 0.13708147406578064, -0.6340544819831848, 0.21205675601959229, -0.13466113805770874, 0.5137747526168823, -0.37320876121520996, -0.1589004099369049, -0.2587202787399292, 0.21178090572357178, -0.4252718687057495, -0.4081408977508545, 0.14020445942878723, -0.7035978436470032, 1.0282843112945557, -0.028283942490816116, -0.2700507938861847, 0.2309429794549942, 1.5704859495162964, 0.4332694113254547, 1.2741895914077759, -0.0922318547964096, -1.5793733596801758, -0.7865507006645203, -0.06921867281198502, 0.7289533615112305, -0.31070277094841003, -0.3065413236618042, 0.22346509993076324, 0.9973517060279846, -0.3234096169471741, 1.3371281623840332, -0.13375677168369293, -0.09970979392528534, 0.2067522555589676, -0.23850888013839722, 0.4240926504135132, 0.10667318105697632, -0.6830182671546936, -0.6417882442474365, -0.06268216669559479, 0.7109038829803467, 1.1996303796768188, 1.2114615440368652, 0.8076050877571106, 0.11538314819335938, 0.5267949104309082, -0.4158174395561218, 0.2483772337436676, -0.37150147557258606, -0.6726650595664978, -0.3075541853904724, -0.3824811577796936, -0.8665175437927246, -0.15220791101455688, 0.0773148313164711, 0.9986861348152161, -0.28732824325561523, 1.0353333950042725, 0.12682728469371796, -1.2967851161956787, -1.5176092386245728, -0.0062205493450164795, -0.015524497255682945, -1.2485274076461792, 0.7300524711608887, 1.625989317893982, -1.1243832111358643, -0.04948127642273903, 0.5070598721504211, 0.12603285908699036, 0.3845760226249695, 0.7974684834480286, 0.24313880503177643, -0.987739086151123, -0.18998898565769196, -0.37867432832717896, 1.1633800268173218, -0.4557448923587799, 0.0732748880982399, -0.18870140612125397, 0.7975847721099854, 0.6993590593338013, 0.09837479889392853, 0.14575695991516113, 0.5290018916130066, -0.6928461790084839, -0.5311117172241211, -0.14725281298160553, 0.41827160120010376, 0.690747857093811, -0.0779692754149437, -1.1465392112731934, -0.6837747693061829, -0.14858384430408478, -0.5204073786735535, 0.7523475885391235, 0.4085516929626465, 1.0276594161987305, 0.06968383491039276, 0.08553649485111237, 1.1130263805389404, -0.11313224583864212, 0.3448021113872528, -1.4265069961547852, 0.8989978432655334, 0.8583579063415527, 1.1928352117538452, 0.2901725769042969, -0.005739610642194748, 0.27958300709724426, -0.6029396653175354, 0.020059939473867416, -0.27701300382614136, 0.5833548307418823, 0.2687655985355377, -0.651913583278656, -0.17295941710472107, -0.02117609977722168, 0.061683643609285355, -0.10269226133823395, 0.026168888434767723, 0.3254778981208801, -0.09234568476676941, -0.1255510002374649, 1.5359681844711304, 0.21656301617622375, -0.11219971626996994, -0.9217179417610168, 0.5179750919342041, 0.2426406443119049, -0.5497268438339233, -0.352607786655426, -0.03427981585264206, 0.11113478243350983, 0.6191396713256836, -0.19202233850955963, -0.15023477375507355, -0.555324137210846, 0.8155210018157959, 1.2749942541122437, -1.534912347793579, -0.24239343404769897, -0.9860202074050903, 0.7846634387969971, 0.9013646245002747, -0.2962718904018402, 0.97159343957901, 0.34013164043426514, -0.27513548731803894, 0.03671508654952049, 0.6724822521209717, 1.2354620695114136, -0.13029508292675018, 0.23275528848171234, 0.03863580524921417, -0.19763441383838654, 0.7025299668312073, -0.9242969155311584, -0.599534273147583, 0.06694955378770828, -0.6545402407646179, -0.02093678154051304, 0.35903993248939514, -0.41556915640830994, 1.1534483432769775, 0.492666631937027, 0.1257728487253189, 0.48737210035324097, 0.35669445991516113, -0.9321689009666443, 0.2553249001502991, -0.1337786763906479, -0.1006515845656395, -0.13946056365966797, 0.12074701488018036, -0.41823524236679077, 0.16221599280834198, 0.10571431368589401, 0.2557782530784607, 0.04120877385139465, -0.24816225469112396, -0.318440318107605, 0.17075982689857483, 0.3682788014411926, 0.6042187213897705, 1.2852803468704224, 1.5364961624145508, -0.2901856005191803, -0.600203812122345, 0.7161617279052734, 0.06425811350345612, 0.4333830773830414, 0.8994869589805603, 0.5454114079475403, 1.1342835426330566, -0.9644442796707153, 0.42281660437583923, 1.3563247919082642, -0.5342283248901367, 0.49765729904174805, -0.068075031042099, 0.21117202937602997, -1.4644184112548828, 0.2875519394874573, 0.2841624617576599, 0.04274487495422363, 0.7900580763816833, -0.05728905275464058, 0.25895726680755615, 0.45202142000198364, -0.27146831154823303, 0.46061959862709045, -0.2905142307281494, -0.11006040871143341, -0.1777406632900238, 0.02277008816599846, 1.030684232711792, 0.6923537850379944, 0.664958119392395, 0.9477069973945618, -0.5615395903587341, -1.6987543106079102, 0.5117691159248352, -0.7979394197463989, 0.21804878115653992, -0.21188129484653473, -0.1974261850118637, -0.39422374963760376, -0.9763217568397522, -0.3503307104110718, -0.3893093168735504, -0.4460713863372803, -0.9309197068214417, -0.30307573080062866, -0.9829122424125671, 0.0766320750117302, -0.5475688576698303, 1.0693374872207642, 0.515840470790863, 0.45793473720550537, 0.7373751997947693, 0.12374135106801987, -0.5258360505104065, 0.18713970482349396, -0.4428865909576416, -0.17499367892742157, -0.22265349328517914, -1.1704407930374146, -0.5901612043380737, 0.5456269383430481, 0.6941822171211243, 0.45246556401252747, 0.4812563359737396, 0.6869919300079346, 0.9752688407897949, -0.9668270945549011, -0.4511573016643524, 0.44905462861061096, -0.2118949443101883, 0.8208773136138916, 0.17977409064769745, -1.0162937641143799, -0.0620422437787056, -0.16789838671684265, -2.227416515350342, 1.1467362642288208, 0.1513756811618805, -0.3149532377719879, 0.5667961239814758, 0.5379419326782227, -0.002417993266135454, 1.3694286346435547, -0.5824409127235413, -0.00997666735202074, 0.1924293041229248, -0.8419045805931091, -1.4226936101913452, 1.0295097827911377, 0.737669050693512, 0.155255526304245, -1.4150723218917847, 0.03983812779188156, -0.43289268016815186, -0.7320353984832764, -0.3782888948917389, -0.46435773372650146, 0.5794650316238403, 0.6734387278556824, 0.10486210882663727, -0.9822748303413391, 0.07032755762338638, -0.6064445376396179, 0.7044041752815247, 0.6712051033973694, 0.3865344822406769, 0.9982378482818604, -0.4050574004650116, 0.9532471299171448, -0.6491085290908813, -0.34698620438575745, 0.3091142475605011, -0.37494131922721863, 0.44344890117645264, 0.472817063331604, 0.2376098334789276, 0.609367311000824, -0.06826512515544891, -0.5939094424247742, -0.5134033560752869, 0.11545303463935852, 0.7568651437759399, -0.7198031544685364, -0.3607352674007416, -0.3229178488254547, -0.4325924217700958, 0.16090106964111328, 0.6065806150436401, -0.020700804889202118, -1.0235356092453003, -0.5456609725952148, -0.47748997807502747, -0.41099146008491516, 0.6419628262519836, -0.36547932028770447, 0.3936183750629425, 0.14380614459514618, -1.3588995933532715, 0.6600341200828552, 0.1395753175020218, -2.216620683670044, -0.09884577244520187, -0.9597642421722412, 0.8746340870857239, 0.31612399220466614, 0.36829298734664917, 0.5859822630882263, 1.0105869770050049, -0.8880736827850342, -0.2708301246166229, -1.0098090171813965, -0.3696145713329315, 0.6218228340148926, 0.6914486289024353, -0.7205517292022705, 0.7916579246520996, 0.4503602683544159, -0.6388286352157593, -0.4727921187877655, 0.4638834595680237, -1.5279167890548706, -0.04649287089705467, 0.4414297342300415, 0.1718863546848297, 0.11425919085741043, 1.3356099128723145, 0.23706139624118805, 0.9317641854286194, -0.18208131194114685, 1.2528131008148193, -0.44140055775642395, -0.8377143740653992, -0.08983319997787476, 0.3537125289440155, -1.1085633039474487, -0.6641251444816589, 0.02922702394425869, -0.9194967746734619, -0.508021354675293, 0.28290313482284546, 0.940793514251709, -0.21044719219207764, 0.5764443874359131, -0.21011391282081604, -0.06268424540758133, -1.2856407165527344, 0.181965172290802, 0.4480275809764862, -1.3596298694610596, -0.574738621711731, -0.27009880542755127, 0.6912358403205872, -1.211273193359375, 0.4627833068370819, 1.376493215560913, 0.3940267264842987, -0.433640718460083, -0.03459080681204796, -0.0522601418197155, 0.5843615531921387, -1.1161504983901978, 0.6130434274673462, 0.3354455828666687, -0.16617915034294128, -0.12490666657686234, 0.8138637542724609, -0.1834181845188141, 0.2428494691848755, 0.0018467903137207031, -1.2383689880371094, -1.0042192935943604, 0.5143170952796936, 0.03456120193004608, 0.21840929985046387, 0.289169043302536, 0.7180418968200684, -0.41193896532058716, -0.1393134891986847, 1.579651117324829, -0.4910794794559479, -1.1106547117233276, 0.5936363339424133, 0.7569945454597473, -0.4720918834209442, 0.16119477152824402, 0.13252630829811096, 0.547301173210144, -0.0316879004240036, 0.8637607097625732, 0.2131066620349884, -0.8067994713783264, 0.2508494555950165, -0.06460665911436081, -0.9341630935668945, 0.27542462944984436, -0.21100522577762604, -1.0635697841644287, -0.47305822372436523, -0.5826793909072876, 0.03752071037888527, 0.5500637292861938, -1.3522043228149414, -1.1902891397476196, -0.007141639944165945, -0.0603279247879982, 0.038101546466350555, -0.7302168011665344, 0.16444970667362213, -0.8620937466621399, -0.2114013135433197, 0.9158480763435364, -0.4583677351474762, 1.3547015190124512, 0.1587178111076355, 0.05442476272583008, -0.01471959613263607, -0.13594874739646912, -0.0035579977557063103, -0.3915407955646515, -0.22400124371051788, -1.2716970443725586, -0.27730390429496765, -0.6360233426094055, -0.6135163307189941, 0.4631379246711731, -0.5769692659378052, 0.10926618427038193, -0.0827455073595047, -1.0695085525512695, 0.31274309754371643, -0.01000990904867649, 0.2872653603553772, -1.0230752229690552, -0.9359179735183716, -0.32498908042907715, 0.3521752953529358, 0.21829308569431305, 1.3333357572555542, -0.17892728745937347, 1.0128021240234375, 0.38916048407554626, -0.8635921478271484, -1.006186604499817, -0.0967082753777504, 1.5915734767913818, -0.6107531785964966, 0.5701251029968262, -0.34232860803604126, -0.5347778797149658, -0.17455053329467773, -1.2728705406188965, -0.132170170545578, 0.28105250000953674, -0.16154277324676514, -0.3654858469963074, -0.29656702280044556, -0.6450470685958862, -0.27155742049217224, 0.4453218877315521, -0.1564471572637558, 0.5638753771781921, 0.29507362842559814, -0.31954866647720337, -1.0390901565551758, -0.29340577125549316, 0.1836797446012497, -0.47743502259254456, 0.15188418328762054, 1.2322518825531006, 1.5357331037521362, -0.041044682264328, -0.42633095383644104, -0.2187291830778122, 0.7388021945953369, -1.140832781791687, -0.08919654041528702, -0.8692733645439148, -0.3944137394428253, 0.27502962946891785], [0.5222412347793579, 1.2732374668121338, -1.8672730922698975, -1.001229166984558, 1.4122461080551147, 0.6230877637863159, 0.47853487730026245, 0.5308550596237183, -0.08649026602506638, -0.4319004714488983, -0.4437362551689148, 0.5583253502845764, 1.2370043992996216, 1.8307600021362305, 0.6926263570785522, -0.5078340172767639, 0.9222701787948608, -0.33406543731689453, 0.222126767039299, 1.4628636837005615, -0.1314006745815277, -0.46628591418266296, -1.336051344871521, -0.09925210475921631, 0.0778493583202362, 0.5787363648414612, -1.4501593112945557, -0.7186765670776367, -1.2388603687286377, -0.4659549593925476, 0.545620322227478, -0.2637248635292053, -0.8794450163841248, -0.08553905040025711, -2.193638563156128, -0.34193506836891174, 0.6754105091094971, -0.5834181904792786, -0.7463638186454773, 0.6478387713432312, 2.0825634002685547, -0.198125958442688, 0.09577631205320358, -0.8245369791984558, 0.6303480267524719, -0.6899356245994568, -0.3852246105670929, -0.7348649501800537, -0.25951215624809265, -0.9539889693260193, 0.2050047665834427, -0.5556530952453613, 0.11634133756160736, 0.3031386733055115, 0.948630154132843, -0.18663443624973297, -0.8884410858154297, 0.6435648202896118, 0.051784757524728775, -0.35802632570266724, 0.7534526586532593, 0.5353298783302307, -1.340503454208374, 0.6674892902374268, 0.27238279581069946, 0.2951062023639679, -0.31928855180740356, 0.797358512878418, -0.38372498750686646, -0.012441636063158512, 0.4047257602214813, 0.09497381746768951, -0.12190291285514832, 0.6131507754325867, -0.6354085803031921, -0.337848037481308, 0.29362788796424866, -0.3440655767917633, 0.24954625964164734, 0.3233260214328766, -0.8534573912620544, 0.3689318597316742, 0.30452096462249756, -0.8955947756767273, 1.3610955476760864, -0.5645427107810974, 0.1071491539478302, -0.27167049050331116, -0.5561806559562683, 1.8935312032699585, 0.42860695719718933, -0.029797859489917755, 0.511036217212677, -0.951500654220581, -0.28174856305122375, -0.8435849547386169, -0.2690280079841614, -0.951259970664978, -0.9315392971038818, -0.8915695548057556, -0.8021833896636963, 0.031159164384007454, 0.41915419697761536, 0.8918635249137878, 0.6405419707298279, 0.9096044898033142, 0.6678819060325623, -0.37601497769355774, -0.34583231806755066, -0.05625538527965546, 0.9555829167366028, 0.35575464367866516, -0.6854560375213623, -0.9924258589744568, -0.3952030837535858, 1.0596950054168701, 1.1141424179077148, -0.3248702883720398, 0.7953193187713623, 0.23285537958145142, -0.17102493345737457, -0.04779977351427078, -1.0958261489868164, 0.3831707537174225, 1.0853760242462158, 0.45367172360420227, -0.1501990258693695, 0.025815404951572418, -0.2617771327495575, -0.0785192921757698, -0.15040798485279083, 0.03562329709529877, -0.11543535441160202, 0.26462647318840027, -0.37249934673309326, 1.8052443265914917, -0.5934536457061768, -0.9032726287841797, 0.3768143057823181, 0.0145264882594347, 1.0777884721755981, 0.5214566588401794, -0.8108222484588623, -0.8386138081550598, 0.42045509815216064, -0.28599268198013306, -0.08122219145298004, -0.2916356027126312, -0.29548001289367676, 0.5033225417137146, -0.743628978729248, 0.3018486201763153, -0.10965076833963394, 1.2416234016418457, -0.4244484603404999, 0.22316138446331024, 0.3879823088645935, 0.5734500885009766, 0.2794590890407562, 0.41680508852005005, 1.1748629808425903, 0.009800281375646591, -0.790628969669342, 1.4615411758422852, 0.12131007015705109, 0.049981143325567245, 0.4150344729423523, 0.07794103771448135, -0.03854634240269661, -0.12070581316947937, -0.7091560363769531, -0.2110103964805603, -0.33712926506996155, 0.45312902331352234, 0.13507527112960815, 0.0017171446233987808, 1.0734912157058716, -0.471102237701416, -0.911582350730896, -0.6799108386039734, -0.24555720388889313, -0.4154733717441559, 0.4575802981853485, -0.6742497086524963, 1.2335865497589111, -0.3670995235443115, -0.12417776882648468, 0.12516562640666962, 0.10750973969697952, -1.1406043767929077, -1.123464822769165, 0.5869605541229248, -1.3417223691940308, 0.6799910068511963, -0.4154886305332184, -0.9897521734237671, 0.8664910793304443, -0.13176999986171722, -0.04632740467786789, -0.29276591539382935, -0.44871747493743896, -0.5222934484481812, -1.0927101373672485, -0.11482483148574829, -1.124464750289917, 0.7513787746429443, -0.22138111293315887, 0.4059614837169647, -0.8062036037445068, -0.2692030668258667, 0.7432586550712585, -0.39821892976760864, -0.8826518654823303, 1.358184576034546, 0.24030879139900208, -0.175235316157341, -0.3432157039642334, -0.45208606123924255, 0.0587417334318161, 0.19447937607765198, 0.3126482665538788, -0.43597397208213806, 0.2244420051574707, 0.2546042501926422, -0.024010170251131058, -0.6353172659873962, -1.0065299272537231, -0.4063466787338257, -0.9704826474189758, 0.4789488613605499, -0.8756982088088989, -1.6210919618606567, 0.8018987774848938, 0.674143373966217, -1.076401948928833, 1.2779903411865234, -1.1185591220855713, 0.588847279548645, 0.47846388816833496, 0.4851965010166168, 0.2570776641368866, 0.72202068567276, -0.5680150985717773, 0.6180905103683472, -0.2184842824935913, -0.36534371972084045, 0.4305422902107239, -0.18093131482601166, -0.9781926274299622, 1.112406611442566, 0.265147864818573, -0.08918309211730957, 0.9056854248046875, 0.06048201769590378, 0.7476736903190613, -0.9215601086616516, 0.25828641653060913, -0.10059446841478348, -0.43316203355789185, 1.015960454940796, 0.43513616919517517, -1.1915075778961182, -0.6200114488601685, -0.524893045425415, -1.0469423532485962, -0.17109426856040955, -0.11299816519021988, -1.0999466180801392, 0.8116335868835449, -0.5153542757034302, 0.19159692525863647, -0.05518138408660889, -0.682590663433075, 1.0123258829116821, 0.011319148354232311, -0.4892452657222748, -0.4137718677520752, -0.08168105036020279, 0.9289670586585999, 0.42422914505004883, 0.4610106348991394, -0.5684159398078918, -0.29244285821914673, -0.5953384041786194, 1.1623128652572632, -0.8262650966644287, -0.5606383085250854, 0.29564738273620605, 0.7547739148139954, -0.8640111088752747, 0.6260117292404175, 0.16535241901874542, -0.5693945288658142, 0.09406346827745438, -0.22671183943748474, 0.31457680463790894, 0.07089118659496307, -0.8613123297691345, -0.6568910479545593, -0.5700086951255798, 0.7990249991416931, 1.054323673248291, 1.548592209815979, 0.97161865234375, 0.7881119251251221, -0.4555872082710266, 0.6640048027038574, 0.4752189815044403, 0.12669701874256134, -0.6086346507072449, -0.5565155148506165, -0.03191515803337097, -0.04434750974178314, -0.2919117212295532, -0.4063221514225006, 1.3839980363845825, 0.22040370106697083, 1.1595288515090942, 0.3484160304069519, -0.5071543455123901, -0.9205906391143799, -0.44860967993736267, 0.20192773640155792, -0.6035988330841064, 0.33204028010368347, 0.34214985370635986, -0.7481552362442017, 0.26871925592422485, 0.24301718175411224, 0.0987507775425911, 0.6868352293968201, -0.13344842195510864, 0.7376008033752441, -1.1209789514541626, -0.32627877593040466, -0.21219977736473083, 1.3504409790039062, 0.5850812196731567, 0.255344033241272, -0.5926393270492554, -0.21962876617908478, 0.5780003666877747, 0.1873798966407776, 0.06376048922538757, 0.8413222432136536, -0.3258468806743622, -0.6892415285110474, -0.3132249414920807, -0.0653415247797966, 1.0766395330429077, 0.1781829297542572, -0.06135212630033493, -0.03618001192808151, 0.029152952134609222, -0.20910030603408813, 0.3482653498649597, 0.5087555646896362, 0.8841610550880432, 0.3181922435760498, 0.0640367642045021, 0.8184351921081543, -0.19209685921669006, 0.5035051107406616, -0.777368426322937, 0.5232298970222473, 0.4012550711631775, 1.2727636098861694, -0.05751736834645271, -0.4135885536670685, 0.4836086332798004, -0.448696106672287, -0.0019437829032540321, -0.019392739981412888, 0.7461438179016113, 0.20829813182353973, -0.6035187840461731, -0.7380764484405518, 0.7121312022209167, -0.28859949111938477, -0.4497697353363037, 0.10880571603775024, 0.13354572653770447, -0.4837268888950348, -0.651160478591919, 1.075665831565857, 0.12084788084030151, 0.13108545541763306, -1.1357810497283936, -0.32433077692985535, 0.2734036445617676, -0.03452393040060997, -0.2214551419019699, -0.9306913614273071, 0.6386997103691101, -0.2431555688381195, -0.8905283212661743, -0.9003562927246094, 0.024526525288820267, 0.3996129035949707, 1.0388888120651245, -0.6488269567489624, -0.2743377387523651, -0.036055050790309906, -0.4265216290950775, 0.37604445219039917, 0.3671439588069916, -0.18825338780879974, 0.5081247091293335, -0.6600132584571838, -0.11404258012771606, 0.11994744837284088, 1.0913971662521362, -0.3517889976501465, -0.06672889739274979, 0.13255196809768677, 0.5935996174812317, 0.046687278896570206, -0.28825265169143677, -0.88358074426651, -0.9421825408935547, -0.9630908966064453, 0.17902061343193054, 0.22745965421199799, 0.05062289163470268, 0.5362399220466614, 0.1806652992963791, -0.12728236615657806, 1.1916251182556152, -0.4732970595359802, -0.6646952629089355, 0.6296190023422241, 0.3018700182437897, -0.04508126527070999, -0.19899117946624756, 0.7150894999504089, 0.6035483479499817, 0.40351197123527527, 0.821564793586731, -0.030312640592455864, 0.8597414493560791, 0.9398890733718872, -0.21870939433574677, -0.5058046579360962, 0.7063854336738586, 1.1621330976486206, 1.3823734521865845, 1.1589934825897217, -0.057999737560749054, -1.2113542556762695, 0.5801264643669128, -0.5307384133338928, 0.0753817930817604, 0.9947780966758728, 0.07568028569221497, 1.4086259603500366, -0.8620490431785583, -0.07218129932880402, 0.511236846446991, -0.19901695847511292, -0.25619029998779297, 0.14139088988304138, 0.5375183820724487, -0.4259292781352997, 0.01399151049554348, 0.6844476461410522, 0.23276126384735107, 0.7117116451263428, 0.1831618696451187, -0.0006161965429782867, -0.4030100107192993, -0.3491196036338806, -0.0813770741224289, -0.3808436691761017, -0.3285607397556305, 0.17609509825706482, 1.1514183282852173, -0.1615973263978958, -0.19752728939056396, 0.0567660853266716, 1.7785578966140747, -0.5526986122131348, -1.2093167304992676, 0.6828629970550537, -0.5524956583976746, -0.0634486973285675, -0.4636833667755127, -0.3610197603702545, -0.36126717925071716, -0.48118677735328674, 0.0023276647552847862, -0.00926988385617733, -0.5143764019012451, -0.6348066926002502, -0.2518284320831299, -0.7187083959579468, -0.4097108840942383, 0.27934205532073975, 0.8301138877868652, 0.9577833414077759, 0.8178202509880066, 0.3697315454483032, -0.28419268131256104, 0.5229368209838867, 0.43876415491104126, -0.22621330618858337, 0.13578368723392487, 0.583993673324585, -1.5868144035339355, -0.8953036069869995, 0.4059540331363678, 1.4109742641448975, 0.6410495042800903, 0.23844411969184875, 1.5111202001571655, 1.5386165380477905, -0.8587995171546936, -0.4118650257587433, 0.0054468195885419846, -0.3270631432533264, 0.7502854466438293, 0.4532749652862549, -1.1721750497817993, -0.14976854622364044, -0.29185426235198975, -1.8603931665420532, 0.6064040064811707, -0.41754019260406494, -0.9741061925888062, 0.18560130894184113, 0.6286459565162659, 0.244947612285614, 0.896294116973877, -1.5521719455718994, 0.5703085660934448, -0.2861892879009247, -0.3550068438053131, -1.0847305059432983, 0.592664897441864, 0.40247321128845215, 0.8196603059768677, -0.7683172225952148, 0.14900094270706177, 0.0181255042552948, -0.5910010933876038, 0.749059796333313, 1.1239176988601685, 0.6959511637687683, 0.37133875489234924, 0.22686229646205902, -1.4853078126907349, 0.06221042573451996, -0.9651877880096436, 0.1627219170331955, -0.1734127253293991, 0.837123453617096, -0.04124623164534569, -0.45100411772727966, -0.20437516272068024, 0.40073010325431824, -1.0364521741867065, -0.2854684591293335, -0.5965114235877991, 0.7735487818717957, 0.17955441772937775, 0.1703302264213562, -0.051923494786024094, -0.820670485496521, -0.8898358345031738, -0.5633115172386169, -0.49722564220428467, 0.8276143074035645, -0.5176734328269958, -0.6393781304359436, -0.39961689710617065, 0.06783194839954376, 0.4895733892917633, 0.21622063219547272, -0.3678543269634247, -1.309699296951294, -1.612352967262268, -0.6714199185371399, -0.0835309848189354, 0.4045919179916382, -1.018723964691162, 1.1553959846496582, -0.6250790357589722, -1.425347089767456, 0.8305545449256897, 0.014829069375991821, -1.156768798828125, -0.8097047805786133, -1.1733002662658691, 1.156724452972412, -0.05527977645397186, 0.22118300199508667, -0.07347045838832855, 0.8882049918174744, -0.4532565474510193, -0.51106196641922, -0.7807153463363647, 0.5072504281997681, 0.52672278881073, 0.8730340003967285, -0.8773818612098694, 0.6110727190971375, -0.07391492277383804, -0.09782332926988602, -0.3098531663417816, 0.1596081554889679, -0.9560025334358215, -0.01881684735417366, 1.0136613845825195, 0.7000775337219238, 0.44103482365608215, 1.1231262683868408, -0.3132938742637634, 0.7309688329696655, -0.5048704147338867, 0.3150961995124817, -0.5307364463806152, 0.3192112445831299, -0.173336461186409, 0.4306422472000122, -0.9281203150749207, -0.445438951253891, 0.6050914525985718, -0.6658200025558472, -0.8688288331031799, 0.26799094676971436, 1.1607824563980103, -0.3998906910419464, 0.0009242366068065166, -0.0591810867190361, 0.8129311203956604, -1.016806721687317, 0.5049417018890381, 0.6255496144294739, -0.3603302538394928, -0.17112115025520325, -0.31552067399024963, 0.9914746880531311, -0.6190219521522522, -0.052827950567007065, 0.3189350366592407, 0.255853533744812, -0.3843521475791931, 0.24458414316177368, 1.3209054470062256, -0.8918887972831726, -0.20119772851467133, 1.51374351978302, 1.325993299484253, -0.08116966485977173, -0.1440359503030777, 0.18690571188926697, 0.15817193686962128, 0.8138834834098816, -0.1998179405927658, -0.03702234849333763, -0.04450235888361931, 0.17458051443099976, -0.6074405312538147, -0.17841202020645142, -0.6545785665512085, 0.30145856738090515, 0.06429824978113174, -0.5098852515220642, 0.803581953048706, 0.5778899788856506, -0.3385534882545471, 0.607154369354248, -0.1064927726984024, -0.2191910445690155, 0.27381712198257446, -0.3100835084915161, 0.37303251028060913, 0.16011959314346313, 0.8568114638328552, 0.1802883893251419, 0.27168500423431396, 0.41873103380203247, 0.4278416335582733, -0.0581364780664444, -0.03770142048597336, -0.4774317741394043, -2.105203628540039, -0.29155728220939636, 0.05041716992855072, -0.6819749474525452, 0.6839185357093811, -1.068365454673767, -0.3950536847114563, -0.11581547558307648, 0.05388632416725159, -0.02492690458893776, -0.6328122615814209, -0.25763487815856934, -0.34465765953063965, 0.20818397402763367, 1.1685281991958618, 0.07075442373752594, 1.1458266973495483, -0.21388067305088043, -0.09390652179718018, 0.1559305489063263, -0.03407550975680351, -0.1368142068386078, 0.24033448100090027, 0.24181298911571503, -0.4458736479282379, 0.23562853038311005, -0.6017543077468872, -0.5782273411750793, -0.015986070036888123, 0.46881991624832153, 0.21664993464946747, 0.0018501360900700092, -1.2129251956939697, -0.24188917875289917, 0.38325247168540955, 0.6176571249961853, -0.9251811504364014, -0.9703301191329956, -0.5655838847160339, 0.3763303756713867, -0.20375777781009674, 1.6447045803070068, -0.6288201808929443, 0.8168241381645203, 0.992114245891571, -0.09643839299678802, -0.7416544556617737, -0.022852353751659393, 0.8684940338134766, -0.3711204528808594, 1.1815282106399536, 0.28691256046295166, 0.17520016431808472, 0.09844336658716202, -0.8480468392372131, -0.7626145482063293, 0.24230435490608215, -0.6981905698776245, 0.5627710819244385, -0.7307425737380981, -1.090057611465454, -0.7919809818267822, 0.4948740601539612, -0.3146984577178955, -0.32927650213241577, 0.7373319864273071, 0.03689400479197502, -1.0186256170272827, 0.2119341939687729, -0.14430710673332214, -0.6878464221954346, 0.5415525436401367, 1.5579074621200562, 1.06797194480896, -0.38085073232650757, -0.39541390538215637, -0.17733784019947052, 1.038881778717041, -1.579301118850708, -0.45703527331352234, -0.7750880122184753, -0.008561978116631508, -0.16065165400505066], [0.1695675551891327, 1.5944541692733765, -2.888674020767212, -0.6617189049720764, 0.41676878929138184, 0.28242167830467224, 1.5058305263519287, -0.30950507521629333, 0.7181710004806519, -0.21147365868091583, -0.9400073885917664, 0.15514229238033295, 1.4194347858428955, -0.04012482985854149, 0.22617067396640778, 0.3927910029888153, 0.44812700152397156, -0.0022498047910630703, 0.5978440046310425, 1.3434675931930542, -0.2760702669620514, -0.24618996679782867, -0.9702972173690796, -0.3011825680732727, -0.5083418488502502, 0.2392401546239853, -0.6817577481269836, -0.7285376191139221, -1.0554537773132324, -0.8372402191162109, 1.1466522216796875, -0.4287816882133484, -0.2728289067745209, -0.12235663086175919, -1.6354061365127563, -0.772980809211731, 0.9186621904373169, 0.20453369617462158, 0.28995752334594727, 0.2520400583744049, 2.1272904872894287, 1.224181056022644, 0.27290233969688416, -1.010733962059021, 0.5097242593765259, 0.544556200504303, 0.7450619339942932, -0.9980458617210388, 0.44258183240890503, -0.6212138533592224, 1.1449252367019653, -0.584234893321991, -0.474807471036911, 1.0104674100875854, 0.7348094582557678, 0.2549915015697479, 0.3514663279056549, 0.8400428891181946, 0.4100934565067291, -0.6601240038871765, 0.31743571162223816, 0.8707641959190369, -0.011230722069740295, 1.1460824012756348, 0.4448435306549072, -0.21239696443080902, 0.15066629648208618, 0.8688225150108337, -0.17837311327457428, -0.45623815059661865, 0.5828825235366821, 0.06748468428850174, -0.2334742546081543, 0.2175954431295395, -1.422085165977478, 1.0637840032577515, -0.09476649016141891, -0.07688869535923004, -0.11096178740262985, 0.45120033621788025, -0.7375524640083313, 0.5617783069610596, 0.7558122873306274, 0.24772943556308746, 0.7458564043045044, -0.2799488604068756, 0.1495330035686493, -0.6322683095932007, 0.05333187058568001, 1.8583526611328125, 0.04884260520339012, -0.3794788420200348, 0.24063093960285187, -0.8113816976547241, 0.3478533923625946, -0.28480401635169983, -0.15505439043045044, -0.7858749628067017, -0.6844231486320496, -0.5165552496910095, -0.8892032504081726, -0.7367367744445801, 0.5163414478302002, -0.1193707138299942, 0.2933445870876312, 0.5304381847381592, 0.22424890100955963, -0.3489201068878174, -0.5724084973335266, -0.5004444718360901, -0.42050790786743164, 1.0686259269714355, -1.0484641790390015, -0.3317791521549225, -0.45402735471725464, 0.7786250710487366, 0.9425089359283447, 0.4994291365146637, 0.9315835237503052, 1.393045425415039, -1.4137274026870728, -0.1653001308441162, -0.9839186668395996, 0.7498974800109863, 0.20262788236141205, 1.3841605186462402, -0.9178256392478943, -0.5388847589492798, 0.2501308023929596, -0.15573382377624512, 0.5281844139099121, -0.2354649156332016, -0.35593584179878235, 0.665189266204834, -0.1276838183403015, 0.9375208020210266, -0.6722901463508606, -0.4491680860519409, 0.7109089493751526, -0.07696360349655151, 0.9509592652320862, 0.2756398618221283, -0.6004862785339355, -0.36990687251091003, -0.5565305352210999, -0.53971928358078, 0.41594168543815613, -0.30929476022720337, -0.9329938888549805, -0.11192508041858673, -0.5882331132888794, 1.114530324935913, 0.08234567940235138, 1.5335100889205933, -0.4550248980522156, -0.04324732720851898, 0.5106722116470337, -0.07710152864456177, 0.568555474281311, 0.03098948486149311, 0.7556613087654114, 0.031419605016708374, -0.37287068367004395, 1.287513017654419, -0.09723532199859619, -0.5119696855545044, -0.2912137508392334, 0.20754720270633698, -1.2308114767074585, 0.25209978222846985, -0.38643878698349, -0.4044090211391449, -0.525351345539093, 0.22703582048416138, 0.5979557037353516, -0.5554645657539368, 1.4806069135665894, -0.7651109099388123, -1.2534422874450684, -1.3788058757781982, 0.2774779796600342, -0.8175619840621948, 0.1963684856891632, -0.3723907172679901, 0.19759134948253632, -0.6908310651779175, 0.23230774700641632, 0.22272321581840515, -0.35571566224098206, -1.3939361572265625, -0.2610325813293457, 0.43379953503608704, -1.0712170600891113, -0.03920607641339302, -1.0348517894744873, -1.2130513191223145, 1.2303578853607178, -0.2854926884174347, -0.4008677899837494, -0.4063049554824829, -1.1841959953308105, 0.08321157097816467, -0.9543261528015137, -0.32825300097465515, -0.8041872978210449, 1.3139197826385498, -0.5076474547386169, 0.23267045617103577, -0.6383023858070374, 0.5738459229469299, 1.5102298259735107, 0.2111639380455017, -1.0815964937210083, 0.7264207005500793, -0.15086787939071655, -0.28317761421203613, 0.4233078956604004, -0.08717619627714157, -0.19297590851783752, -0.04667969420552254, -0.15992270410060883, -0.04496022313833237, 0.6057575941085815, 0.08106973022222519, 0.7883168458938599, -0.6843807697296143, -0.1256021410226822, -0.9109671115875244, -0.24969500303268433, 0.2945781350135803, -0.11604536324739456, -1.341407299041748, -0.15073555707931519, 0.19801586866378784, -0.1334184855222702, 0.9733854532241821, 0.05289158225059509, 0.1840183585882187, 1.1637117862701416, 0.4366060793399811, 0.7936614751815796, 0.17252682149410248, -0.540625810623169, -0.5495553612709045, -0.5153584480285645, -0.31416231393814087, 0.907332181930542, -0.5794278383255005, 0.007668932434171438, 1.8432425260543823, 1.3764269351959229, -0.22645330429077148, 0.15221619606018066, 0.15957583487033844, 0.11980409175157547, -0.8324614763259888, -0.1506911665201187, 0.3547540605068207, -0.6494125127792358, 0.7835788726806641, 1.0793112516403198, -0.8587286472320557, 0.229900062084198, -0.1170690506696701, 0.24707920849323273, -0.44808587431907654, -0.5380411744117737, -0.20319819450378418, 0.043595775961875916, 0.043993983417749405, -0.13228583335876465, 0.06422918289899826, -0.7728288769721985, 0.7606436014175415, 0.25534117221832275, -0.5460507273674011, -0.7010690569877625, -0.08823644369840622, 0.08410118520259857, 0.6146352291107178, -0.4273990988731384, -1.9111225605010986, -0.33666086196899414, -0.2783258259296417, 0.09722676873207092, -0.17239955067634583, -0.4314008951187134, 0.48764410614967346, 0.5544789433479309, 0.1355811059474945, 0.0988825187087059, 0.6676223278045654, -0.48948192596435547, 0.16830015182495117, 0.5447670817375183, 0.6503681540489197, 0.362935334444046, 0.006678852718323469, -0.5471903681755066, -0.7114834785461426, 0.6636313796043396, 1.0711450576782227, 1.1462568044662476, 1.7171766757965088, 0.4819417893886566, -0.31927135586738586, -0.5287496447563171, -0.36995837092399597, 0.4585128128528595, -1.3348479270935059, -0.18772119283676147, -0.3279033899307251, -0.6757904887199402, -0.27509167790412903, -0.8725444674491882, 1.476377248764038, 0.477791428565979, 1.487912654876709, 0.8071301579475403, 0.1334569752216339, -0.18771295249462128, -0.03408708795905113, 0.9459157586097717, -0.8587403297424316, 0.5859373807907104, 1.0445653200149536, -0.8223653435707092, -0.27812740206718445, 0.003645650576800108, 0.413217157125473, 0.9785184860229492, 0.10882820188999176, 0.08535400032997131, -1.5878562927246094, -0.7414700984954834, -0.17943020164966583, 1.4429203271865845, 0.13705968856811523, -0.016516055911779404, -0.13082869350910187, 1.0265581607818604, 0.38204529881477356, 0.1051737368106842, -0.013313686475157738, 0.15467743575572968, -0.6091665625572205, -0.726714015007019, 0.44117435812950134, 0.7586207985877991, 0.9383135437965393, -0.11224012821912766, -0.3594939410686493, 0.03028690814971924, 0.3264416754245758, -0.18283189833164215, 0.9454077482223511, 0.08438056707382202, 0.8818616271018982, 0.004763833247125149, 0.6193910241127014, 1.0889767408370972, -0.6343435645103455, 0.49221426248550415, -1.011513113975525, 0.726924479007721, 0.8410319089889526, 0.6872808933258057, 0.23301683366298676, 0.07098694890737534, 0.11964872479438782, -1.0002758502960205, 0.15310963988304138, -0.05318857729434967, 0.5809357166290283, 0.06732475012540817, -0.00253984029404819, 0.20646509528160095, 0.2056821882724762, -0.6144672632217407, -0.13956645131111145, 0.44582509994506836, 0.1440797746181488, -0.8400096297264099, -1.138121485710144, 0.5813058614730835, -0.30083760619163513, -0.9729049205780029, -0.3893909752368927, -0.5660148859024048, 0.6334837079048157, 0.2945600152015686, 1.203710913658142, -0.17630305886268616, 0.24191561341285706, 0.49537643790245056, -1.9338765144348145, -0.16566528379917145, 0.27200257778167725, -0.05374366417527199, 0.09362906217575073, -0.7841362953186035, -1.0147480964660645, -0.14902812242507935, 0.02968212403357029, 0.5433886647224426, 0.24259540438652039, -0.04025522992014885, -0.035956479609012604, -0.1782585233449936, -0.9212244749069214, 0.04037518426775932, 0.5876778960227966, -0.6769093871116638, -0.2395719438791275, 0.42436283826828003, -0.12740835547447205, 0.39942699670791626, -0.1488761007785797, -0.635577380657196, -0.3848274350166321, -0.05854537710547447, -0.03457175940275192, -0.28660038113594055, -0.2967565357685089, 1.0142067670822144, 0.3712402582168579, 0.08902022987604141, 0.40137922763824463, -0.4083429276943207, -1.6850037574768066, 0.38850584626197815, 0.7066124677658081, -0.328605979681015, -0.0933346226811409, 1.0629199743270874, -0.10510028898715973, 0.3302750885486603, 0.2686789035797119, 0.02407877705991268, 1.0639309883117676, 0.5722811222076416, -0.09774430841207504, -0.6934739947319031, -0.21609750390052795, 0.5593973398208618, 1.3802040815353394, 0.2783925235271454, 0.2683829963207245, -0.3338589072227478, 0.31215861439704895, -0.48271074891090393, 0.3786156177520752, 1.2594776153564453, 0.19805192947387695, 1.5497304201126099, -2.15171480178833, 0.16463178396224976, -0.06182321533560753, -0.1633097380399704, 0.30913519859313965, -0.5664418935775757, 0.3072047531604767, -1.2848527431488037, 0.16627764701843262, 0.14336571097373962, 0.4043924808502197, 0.4784032106399536, -0.1823967695236206, -0.09044703096151352, 1.1303691864013672, -1.2705374956130981, 0.04074912518262863, -0.4742933213710785, 0.37643224000930786, -0.49664783477783203, 0.2767508327960968, 0.1557990461587906, -0.05299277976155281, 0.38876017928123474, 1.1640779972076416, -0.07344454526901245, -1.2663078308105469, 0.7037802338600159, -0.36971965432167053, 0.7289218306541443, -0.3973829746246338, 0.15038520097732544, -0.6684895753860474, -0.752475917339325, -0.10534566640853882, 0.7665531039237976, -0.5447542071342468, -0.47306719422340393, 0.04433276876807213, -1.1947211027145386, 0.08989416062831879, 0.48081710934638977, 1.003623604774475, 0.48599761724472046, 0.6532518863677979, 0.4011682868003845, 0.7422412633895874, 0.13862916827201843, -0.20210646092891693, 0.017491525039076805, -0.20893129706382751, 0.4111228287220001, -1.0395809412002563, -0.7030948996543884, 0.528656542301178, 0.5805584788322449, 0.29356276988983154, 0.4584028124809265, 1.2407258749008179, 2.206024646759033, 0.08944587409496307, -0.8875030875205994, 0.31720760464668274, -0.34469571709632874, 0.2565302848815918, 0.15635713934898376, -0.5442342162132263, -0.21368096768856049, -0.6495023965835571, -1.7087316513061523, 0.3507073223590851, -0.2126675397157669, -1.286864161491394, 0.9321357607841492, 0.2588666081428528, -0.05676213279366493, 0.7531515955924988, -0.7075090408325195, 0.3479454517364502, 0.2709367573261261, 0.07096146047115326, -1.4870339632034302, 0.40624281764030457, 1.1020629405975342, 0.8283472657203674, -1.1458806991577148, 0.3845062553882599, -0.13154801726341248, -0.16371876001358032, 0.40605998039245605, 0.3852671682834625, 0.5405439138412476, 0.7677827477455139, 0.4609878957271576, -1.1387079954147339, 0.009175513871014118, -0.9491146206855774, -0.5841947197914124, 0.33953872323036194, 0.35434845089912415, -0.3364236354827881, -0.1308239847421646, -0.043836746364831924, -0.31415146589279175, -0.7185704112052917, -0.49512529373168945, 0.016549570485949516, 0.8590365052223206, 0.4283115565776825, 0.018633075058460236, -0.021081196144223213, -0.05772583186626434, -0.48577073216438293, -0.3772694766521454, -0.15539045631885529, 0.7191939353942871, -1.1503517627716064, -0.30906954407691956, -0.27618730068206787, -0.17277976870536804, -0.5831419229507446, -0.1121828630566597, -0.5435357093811035, -1.1552484035491943, -1.2038732767105103, -0.46838438510894775, -0.6883593201637268, 1.133543848991394, -0.6257585883140564, 0.20530997216701508, -0.03704833984375, -1.0764542818069458, -0.12078368663787842, 0.10132786631584167, -1.0943493843078613, -0.548707127571106, -0.759041965007782, 1.2098878622055054, -0.47099170088768005, 0.11878671497106552, 0.32590657472610474, 0.8496298789978027, -0.8659087419509888, -0.9912183284759521, -0.5644464492797852, 0.06616714596748352, 0.8856185674667358, 1.2002249956130981, -1.2756166458129883, 0.9885098934173584, 0.08227690309286118, -1.1445797681808472, 0.09125329554080963, 0.9276734590530396, -0.734243631362915, -0.16891297698020935, 0.18550115823745728, 0.6670069694519043, 0.725628137588501, 1.646349549293518, -0.029706725850701332, 0.764512300491333, 0.5537168383598328, 0.6205834746360779, -0.3919709324836731, -0.08271283656358719, 0.05688714608550072, 0.3018200993537903, -1.074129581451416, -0.544705331325531, 0.2877778708934784, -1.2759569883346558, -0.8256831765174866, 0.9274412989616394, 1.012251615524292, -0.975014328956604, 0.12478991597890854, -0.5881841778755188, 0.2844720780849457, -0.9823344945907593, 0.045023974031209946, -1.376190423965454, -0.09811056405305862, 0.3119078278541565, -0.34774214029312134, 0.6304624676704407, -0.865943193435669, -0.07223350554704666, 0.5379338264465332, 0.35957401990890503, -0.6857492327690125, 0.7686964869499207, 0.6087849140167236, 0.2628495693206787, -0.5284656286239624, 1.4016120433807373, 1.277845025062561, -0.011682420037686825, -0.19795428216457367, 0.12755894660949707, 0.01929829642176628, 0.7632059454917908, -1.142083764076233, -0.4387657642364502, -0.3795875906944275, 0.3711443245410919, -0.06102302297949791, -0.18313829600811005, -0.02485533058643341, -0.03290635719895363, 0.23691490292549133, 0.33316776156425476, -0.17973865568637848, -0.22242707014083862, -0.23183950781822205, 0.6862861514091492, 0.4528275430202484, -0.10370247811079025, -0.2603631913661957, 0.7008001208305359, -0.4714019298553467, -0.5052270889282227, 0.7090473175048828, 0.11519132554531097, 0.006268427241593599, 0.6495590209960938, 0.5678787231445312, 0.09823296219110489, -0.3108646869659424, -0.37429407238960266, -1.261732816696167, -0.6211766600608826, -0.32317879796028137, -0.41820380091667175, 0.47213032841682434, -0.5204192399978638, -1.004379153251648, 0.31173866987228394, 0.5436895489692688, 0.26269015669822693, -0.11268103867769241, 0.5283454656600952, 0.21359920501708984, -0.5354686975479126, 1.0161786079406738, -0.16426584124565125, 1.3286672830581665, -0.3213099241256714, -0.6352643370628357, -0.739766538143158, -0.04646886885166168, -0.20890291035175323, -0.6746876835823059, 0.17236177623271942, -0.17382140457630157, -0.18326038122177124, 0.06916061043739319, 0.16469398140907288, -0.04104125499725342, 0.6891764998435974, 0.11150862276554108, -0.16399642825126648, -1.6006560325622559, 0.05973407253623009, 0.8635914921760559, -0.5993743538856506, -0.301129549741745, -0.5538713335990906, -0.8871066570281982, 0.6958526372909546, -0.4253688156604767, 0.7443413734436035, -0.7269054055213928, 0.12486107647418976, 0.39997586607933044, -0.29526740312576294, -0.9021367430686951, -0.6237759590148926, 1.4325124025344849, -0.41986361145973206, 1.0183387994766235, -0.15228918194770813, -0.16520768404006958, -0.6642246246337891, -1.2558029890060425, -0.9670363664627075, 0.7268689870834351, 0.128616601228714, 0.1548677384853363, -1.4847288131713867, -0.8882107734680176, -0.48824888467788696, 0.12362377345561981, -0.10689260810613632, 0.16262105107307434, 0.5741006731987, -0.6774056553840637, -1.093626618385315, -0.22947688400745392, 0.3278490900993347, -0.4392212927341461, 0.2880638837814331, 1.2606756687164307, 1.2554771900177002, 0.16962522268295288, -0.1850752830505371, 0.5221723318099976, 1.1890666484832764, -0.8232683539390564, 0.2669621706008911, -0.9815759658813477, -0.02683740295469761, 0.07144995033740997], [0.3367466926574707, 1.745367169380188, -2.727437973022461, -0.8687025904655457, 0.659944474697113, -0.1408555507659912, 0.8031864166259766, -0.15530087053775787, -0.2004619985818863, -0.024669064208865166, -0.956173837184906, 0.40356382727622986, 0.9493284225463867, 1.0792938470840454, 0.7682635188102722, -0.4369325637817383, 0.10352076590061188, 0.25361984968185425, 0.8935645818710327, 0.7406260967254639, -0.8241040706634521, -0.7462575435638428, -0.6361877918243408, -0.07477421313524246, 0.6189957857131958, 0.16984829306602478, -0.8673374056816101, 0.10378306359052658, -0.5839738845825195, -0.5696879625320435, 2.069430112838745, -0.630211591720581, 0.3309737741947174, 0.39492449164390564, -1.2946895360946655, 0.7909557819366455, 1.2202160358428955, 0.2519938349723816, 0.4257470965385437, 0.7476876974105835, 2.3805954456329346, 1.3703339099884033, -0.3393324315547943, -0.847084105014801, 0.06786390393972397, 0.0753273293375969, -0.038943395018577576, -1.043884515762329, 0.46924155950546265, -1.011743426322937, 0.5014305710792542, 0.5902186632156372, 0.2806634306907654, 1.497971773147583, -0.06802217662334442, -0.7963380813598633, 0.921220600605011, 0.7088530659675598, 0.10980760306119919, 1.2400389909744263, -0.11469458043575287, 1.162662148475647, 1.0643712282180786, 0.8002893328666687, 0.9340360164642334, -1.0656496286392212, 0.1832333505153656, 0.3968573212623596, -0.06549438834190369, 0.1702939122915268, 0.4133670926094055, -0.19959482550621033, -0.5685074329376221, 0.6705688238143921, -0.751528799533844, 0.7071642875671387, 0.23695920407772064, 0.6334116458892822, 0.05559636652469635, 0.10309164971113205, -0.9947774410247803, 0.19264496862888336, 0.5340871810913086, -0.23276779055595398, 0.3259664475917816, -0.0015688706189393997, 0.20666271448135376, -0.29838621616363525, -0.8223103880882263, 1.7481026649475098, -0.683929443359375, 0.06547853350639343, 0.54949951171875, 0.0819416344165802, 0.03542771562933922, -0.47475743293762207, -0.5043356418609619, -1.1751792430877686, -0.2850289046764374, -0.3039197027683258, -0.10066709667444229, -0.8352891802787781, -0.10254454612731934, 0.39544209837913513, 0.5965757966041565, 1.8173624277114868, -0.17516477406024933, -1.1205449104309082, 0.00018178741447627544, -0.14702416956424713, -0.8572846055030823, 0.4436642527580261, -0.2676646411418915, -1.4779701232910156, 0.09772300720214844, 1.016533374786377, 0.8723958730697632, 0.29484620690345764, 0.6937792301177979, 0.5814675688743591, -0.6691786646842957, -0.6548154354095459, -0.5448592305183411, -0.2655971050262451, 1.5936282873153687, -0.3957064151763916, -0.6165443658828735, -0.5232998728752136, 0.12078431993722916, 0.0836929902434349, 0.45265230536460876, -0.34680041670799255, 0.31804683804512024, 0.6093674302101135, -0.6058354377746582, 0.3513380289077759, -0.14519742131233215, -0.7974200248718262, 0.6449401378631592, 0.6242750287055969, 0.14938734471797943, -0.7700900435447693, 0.10095632076263428, -1.1256911754608154, 0.5607722997665405, -0.7607350945472717, 0.8468970060348511, -1.0060110092163086, -0.9133976697921753, 0.0053381482139229774, -1.172943353652954, 0.020565127953886986, 0.11067275702953339, 1.084980845451355, 0.34520184993743896, -0.5447975993156433, 0.7752910256385803, 0.2714497447013855, -0.25016072392463684, 0.5352773070335388, 0.4600572884082794, 0.0905432477593422, -0.06923869997262955, 1.157012701034546, 0.0662703588604927, -1.182586431503296, 0.7300495505332947, 0.6561977863311768, -1.0294163227081299, 1.3455942869186401, -0.3631250858306885, -0.33740848302841187, -0.9012040495872498, 0.07544110715389252, 0.25063860416412354, -0.5034614205360413, 0.8323842287063599, -0.14603370428085327, -0.7861727476119995, -1.163614273071289, 0.8030644655227661, 0.37233448028564453, 0.9557769298553467, 0.21171420812606812, 0.3584676682949066, 0.05270880088210106, -0.9375603795051575, 0.13709978759288788, -0.1432660073041916, -0.6591348052024841, -0.8119228482246399, -0.18294848501682281, -1.0889164209365845, 0.00027063116431236267, -0.08522236347198486, -0.7577471733093262, 0.31534940004348755, -0.11059165000915527, -0.8567895293235779, 0.13538126647472382, -0.04174164682626724, -0.5911686420440674, -1.1086376905441284, -0.328616738319397, -1.182915210723877, 0.4550246000289917, -0.5509699583053589, 0.2972007095813751, -0.280140221118927, 0.6497443318367004, 1.1938611268997192, -0.9608433842658997, -1.351930022239685, 0.6289898157119751, 0.04948798194527626, -1.1523925065994263, 0.7310590147972107, -0.4938846230506897, -0.16780610382556915, -0.05027289316058159, -0.9160873889923096, 0.1407824158668518, 0.7933614253997803, -0.43375566601753235, 1.1317375898361206, -0.1395934373140335, -0.2743780016899109, -0.8063997030258179, -0.13365104794502258, 0.3026515245437622, -0.7714465856552124, -0.9078161120414734, 0.9947120547294617, 0.28451085090637207, -1.3410612344741821, 1.0833208560943604, -0.16823925077915192, -0.28635814785957336, -0.2270624041557312, 0.6289164423942566, 0.7854308485984802, 0.4690125584602356, -0.9087312817573547, -0.20447349548339844, -0.9295573830604553, 0.3126351833343506, 0.6897483468055725, -0.4036441147327423, 0.18586672842502594, 1.814022183418274, 0.7203337550163269, -0.7830436825752258, 0.33761319518089294, -0.44665318727493286, 0.12490588426589966, -1.3092937469482422, -0.4043031930923462, 0.5569071173667908, -1.0552891492843628, 0.895429790019989, 0.12651821970939636, -1.6263644695281982, 0.15482644736766815, -0.4286704659461975, 0.13079124689102173, -0.11643798649311066, -0.22123180329799652, -0.9564083814620972, -0.100007064640522, -0.1806400865316391, -0.44935929775238037, -0.0846523568034172, -0.12453805655241013, 0.6971824765205383, -0.604137122631073, -0.9646855592727661, -0.3811919391155243, 0.7063561677932739, -0.20654787123203278, 0.7466951608657837, 0.004831151105463505, -1.0067942142486572, -1.2954368591308594, -0.09635178744792938, 0.5318923592567444, 0.4896461069583893, -0.13149824738502502, 0.6197654008865356, 0.925500214099884, 0.4267067611217499, -0.03710422292351723, 0.5585852265357971, 0.5261415839195251, 0.27524855732917786, 0.5674316883087158, -0.7794229388237, 1.073472023010254, -0.4734151065349579, -0.7133952379226685, -0.3913019299507141, 0.9008716940879822, 1.2400884628295898, 0.5480316281318665, 0.9991703033447266, 0.013895970769226551, -0.004357762169092894, -0.6524303555488586, 0.27416563034057617, -0.07146033644676208, -0.4600960910320282, 0.32622453570365906, -1.0753145217895508, 0.05165078863501549, -0.25015464425086975, -0.09769371151924133, 0.46071696281433105, 0.5562340617179871, 0.852528989315033, 0.0277545303106308, -0.40501856803894043, -0.8158940076828003, -0.9025605916976929, -0.2327904999256134, -0.7082115411758423, 0.8208271861076355, 1.3533591032028198, -1.3034467697143555, -0.04985983297228813, 0.35074955224990845, -0.6570946574211121, 0.8274803757667542, -0.04684557393193245, 1.0384546518325806, -0.7313903570175171, -0.07538711279630661, 0.013723200187087059, 0.7101081013679504, 0.1585886925458908, -0.6097146272659302, -0.4627472460269928, 0.43415841460227966, 0.6736263632774353, 0.14708873629570007, -0.5598552823066711, 0.18771809339523315, -0.6558336019515991, -0.7476145029067993, -0.18830490112304688, 0.2763049304485321, 0.5034998655319214, 0.14540457725524902, -1.0112996101379395, -0.5008217096328735, -0.08826158940792084, -0.43448856472969055, 0.38744404911994934, -0.039830464869737625, 0.8186743855476379, -0.01510148961097002, 0.2746467590332031, 1.2130393981933594, -0.29502081871032715, 0.24221062660217285, -0.923025906085968, 0.3980899751186371, 0.8830153346061707, 1.4877578020095825, 0.594822347164154, -0.4558566212654114, 0.04429753124713898, -1.3800098896026611, -0.29931262135505676, -0.7547680139541626, 0.6521161794662476, -0.13794639706611633, -0.4117718040943146, -0.3507247269153595, -0.23231573402881622, -0.11947844922542572, -0.02694583684206009, -0.1754886955022812, -0.1434284895658493, -0.11585839837789536, -0.21290993690490723, 0.7260125875473022, 1.0167510509490967, -0.7818929553031921, -0.8734380602836609, -0.6942471265792847, 0.936872661113739, -0.21519020199775696, 0.5632987022399902, -0.21237973868846893, -0.5039461255073547, 0.7169585227966309, -1.44945228099823, 0.2204243540763855, -0.3525720238685608, -0.5720753073692322, 0.672213077545166, -1.0233579874038696, -0.5878537893295288, 0.02510187029838562, -0.4821798503398895, 1.1543750762939453, 0.6891694068908691, 0.29188627004623413, 0.06018399819731712, 0.2962018847465515, -0.25020095705986023, -0.15826968848705292, 1.145850419998169, 0.010073893703520298, -0.5083593726158142, 0.05713703855872154, -0.5049046277999878, 0.5125398635864258, -0.6652097702026367, -0.3242582082748413, 0.0853966474533081, 1.0666242837905884, 0.22979584336280823, -0.04212595894932747, -0.40753382444381714, 1.5806270837783813, 0.18145743012428284, 0.08008076995611191, -0.09424802660942078, -0.17347106337547302, -0.853104293346405, 0.2359602451324463, 0.05560952425003052, -0.3378751575946808, -0.1931048184633255, 0.38975849747657776, -0.09635350853204727, -0.04218616709113121, 0.31324219703674316, 0.20285622775554657, 0.187333345413208, 0.5436577200889587, -0.7349933385848999, 0.3165612816810608, -0.3308260142803192, 0.9378288984298706, 1.0803606510162354, 1.3988093137741089, 0.15650799870491028, -0.9181262850761414, 1.5725741386413574, 0.1863657683134079, 0.6265187859535217, 1.354886770248413, 0.8186006546020508, 1.0434377193450928, -1.0786585807800293, -0.4172944128513336, 0.6210744976997375, 0.0030360582750290632, 0.8106878399848938, -0.1226424053311348, 0.06432732939720154, -1.168887734413147, -0.15827427804470062, 0.7778478860855103, -0.6741891503334045, 0.6022063493728638, 0.1803470253944397, 0.5457886457443237, 1.0134905576705933, -0.8571704626083374, -0.15029844641685486, -1.066975474357605, -0.5851998925209045, -0.8186284303665161, -0.479476660490036, 0.6247068643569946, 0.7183042168617249, 0.7653615474700928, 0.09533523768186569, 0.07927689701318741, -0.5639004707336426, 0.3257405757904053, -0.7185567021369934, 0.37433677911758423, 0.2840569317340851, -0.21904118359088898, -0.5654810070991516, -0.7662814855575562, -0.08849433064460754, -0.579075813293457, -0.7029700875282288, -0.12464027851819992, -0.37935933470726013, -1.1710292100906372, 0.1473756581544876, -0.0525524728000164, 0.9295275211334229, 0.7576196193695068, 1.366941213607788, 0.08625198155641556, 0.8637126684188843, -0.47185033559799194, 0.22742941975593567, 0.34782469272613525, -0.4748882055282593, 0.19967158138751984, -0.6574519276618958, -0.9354161024093628, 0.3032916784286499, 0.6651442646980286, -0.3528614938259125, 0.33043724298477173, 0.736792802810669, 1.3305809497833252, -0.5471038818359375, -0.42957526445388794, 0.5055550336837769, -0.3931792676448822, 0.6968532204627991, 0.5793069005012512, -1.2732222080230713, -0.10940626263618469, -0.24320557713508606, -1.4948116540908813, 1.479712963104248, 0.04295062646269798, -0.8870928883552551, 0.6271300911903381, 0.16142740845680237, 0.18762628734111786, 0.7007512450218201, -0.8392649292945862, -0.12823757529258728, 0.04045512154698372, 0.48920151591300964, -0.582050621509552, -0.004572439007461071, 0.5981011986732483, -0.218453511595726, -0.6864250302314758, -0.2708246111869812, -0.15833669900894165, 0.20167098939418793, -0.45332857966423035, 0.410658597946167, 0.9969295859336853, 0.09114956110715866, -0.29243403673171997, -1.0482161045074463, 0.5682460069656372, -0.506434440612793, 0.7151994109153748, 0.5085912346839905, 1.0176818370819092, 0.6300575137138367, -0.6476863026618958, 0.5544654726982117, -0.4924432635307312, 0.0332786999642849, -0.7326369881629944, -0.3840959370136261, 0.6158801913261414, 0.1423455774784088, 0.8686271905899048, 1.4947785139083862, 0.034653227776288986, -1.0792852640151978, -0.3192537724971771, -0.4738672971725464, 1.514309287071228, -0.6265375018119812, -0.575958788394928, -0.7175330519676208, -0.3043050467967987, 0.16774123907089233, 0.09742248803377151, 0.4960986077785492, -0.8646366596221924, -1.7840815782546997, -0.25984475016593933, -0.5422249436378479, 0.570206880569458, -0.3245331048965454, 0.38241633772850037, 0.6926447153091431, -1.2799988985061646, 0.488837331533432, 0.4293607771396637, -1.616483449935913, 0.6130666732788086, -0.7418121099472046, 0.6191960573196411, 0.25589361786842346, -0.23843857645988464, 0.3717573881149292, 0.5266862511634827, -0.7784631848335266, -0.7199558615684509, -1.1018836498260498, -0.3242529034614563, 0.3315865099430084, 1.0320433378219604, -1.221134901046753, 1.9086308479309082, -0.17738576233386993, -0.5466683506965637, -0.19185718894004822, 0.47843340039253235, -0.8145110011100769, -0.19912518560886383, -0.33433637022972107, -0.0022961788345128298, -0.20272071659564972, 1.12252938747406, 0.652726411819458, 0.9808343648910522, 0.14637590944766998, 1.3921095132827759, -0.9637690186500549, -0.7725879549980164, -0.9716424942016602, 0.20356416702270508, -0.6101729273796082, -0.38202404975891113, 0.12573949992656708, -0.3956944942474365, -0.7040084004402161, 0.13769981265068054, 1.2554645538330078, -0.3950783610343933, 0.6130684018135071, 0.4209119975566864, -0.15908262133598328, -0.7926846146583557, 0.4384862184524536, 0.18397009372711182, -0.4855585992336273, -0.10735484957695007, -0.9776932001113892, 0.9701806306838989, -0.5942983627319336, -0.025924842804670334, 0.7549536228179932, 0.7087736129760742, -0.27096399664878845, 0.5193200707435608, 0.25959086418151855, 0.34292834997177124, -0.5590569376945496, 0.8792223930358887, 1.146951675415039, -0.6943273544311523, 0.3171497583389282, 0.019739311188459396, -0.11007167398929596, -0.18744318187236786, -0.33068060874938965, -0.3985538184642792, -0.09716899693012238, -0.021946588531136513, 0.2543531358242035, -0.2904256582260132, -0.5273637175559998, 0.12917473912239075, -0.47733962535858154, 0.10893717408180237, 1.427870273590088, -0.43830573558807373, -1.0090140104293823, 1.2532238960266113, 0.22258321940898895, -0.40299761295318604, -0.21938905119895935, 0.06420569866895676, -0.16448892652988434, 0.3956456184387207, 0.7034064531326294, 0.23500367999076843, -0.6480138301849365, 0.7784838080406189, 1.12282133102417, 0.026928557083010674, -0.4519246518611908, -1.325101613998413, -1.640946626663208, -0.7107045650482178, -0.7603548765182495, -0.6284500360488892, 0.24625638127326965, -0.05943944305181503, -1.0707025527954102, 0.11621776223182678, 0.018475940451025963, 0.21697397530078888, -0.4103017747402191, -0.2294362485408783, -0.2793828547000885, -0.9644718766212463, 0.6701415181159973, -0.4774053990840912, 1.3941764831542969, 0.08133465051651001, 0.06010706350207329, -0.1721978634595871, -0.20147857069969177, -0.21697185933589935, 0.8470875024795532, -0.09599237889051437, -0.5460041761398315, -0.20385323464870453, -0.43934735655784607, -0.4262242317199707, 0.6784402132034302, 0.17368482053279877, 0.525252103805542, -0.3690861165523529, -1.4534716606140137, -0.04168742150068283, 1.2717623710632324, -0.1796402782201767, -0.5029948353767395, -0.7118792533874512, -0.6370792984962463, 0.8804455399513245, -0.03509703651070595, 0.8168154358863831, -0.9487463235855103, 0.8382511138916016, 0.8718401193618774, -1.028741717338562, -0.08299598842859268, -0.8689274787902832, 0.8780278563499451, -0.4590614140033722, 0.6913545727729797, -0.8890947699546814, 0.41550570726394653, 0.3681412637233734, -1.7381328344345093, -0.8906653523445129, -0.7716681361198425, -0.5083652138710022, -0.3480455279350281, -0.6372570395469666, -0.6942088603973389, -0.45619767904281616, 0.18329522013664246, 0.42710375785827637, -0.08074616640806198, 1.0989768505096436, -0.15199163556098938, -1.2334080934524536, 0.4354843199253082, 0.5321823358535767, 0.690203070640564, 0.6284448504447937, 1.10038161277771, 1.2379320859909058, -0.18081091344356537, -0.10696951299905777, -0.26428040862083435, 0.8381742238998413, -0.4297734498977661, 0.4799639582633972, -0.29047268629074097, -0.27933675050735474, -0.06043972074985504], [0.8450943827629089, 1.9337806701660156, -2.97733998298645, 0.11610313504934311, 0.9403656125068665, 0.05082640424370766, 0.6976273059844971, -0.32962432503700256, -0.2249482274055481, -0.7497565150260925, -0.8477506637573242, -0.06364519149065018, 1.082769513130188, 0.7511652708053589, 0.49986329674720764, -0.16488121449947357, -0.10892362147569656, -0.02520914375782013, 0.8004512190818787, 1.2463055849075317, 0.3620455265045166, -0.5270326137542725, -0.6829664707183838, 0.1642652004957199, -0.04341323673725128, 0.16700750589370728, -1.1024178266525269, -0.32662156224250793, -1.061662197113037, -0.6811010241508484, 1.5260664224624634, -0.3167397081851959, 0.7214042544364929, -0.6266542077064514, -2.0655057430267334, -1.000912070274353, 1.0292648077011108, -0.4144822657108307, -0.11255915462970734, -0.2154495120048523, 1.8010402917861938, 1.168929100036621, -0.22800537943840027, -1.4094774723052979, -0.8476971387863159, 0.10417730361223221, 1.1646831035614014, -0.2012997269630432, -0.2816782593727112, -0.7907166481018066, 0.7209141850471497, -0.2234029769897461, 0.2732838988304138, 1.9725353717803955, 0.20216359198093414, -0.04177544265985489, 0.6472927927970886, 0.9620842337608337, -0.48190850019454956, 0.6738826632499695, 0.8740978240966797, -0.6363419890403748, 0.7673813104629517, 0.5066123604774475, -0.07757038623094559, -0.2081567496061325, -0.00579855777323246, 0.41758421063423157, 0.5638405084609985, -0.04470929503440857, 0.9987841248512268, 0.38937655091285706, 0.17084455490112305, 0.19002650678157806, -0.5096645355224609, 0.5526094436645508, 0.31178948283195496, 0.33727413415908813, -0.014509767293930054, 0.3539230525493622, -1.1211867332458496, 0.5011233687400818, 1.1391997337341309, 0.6408106088638306, 0.3565317690372467, 0.738694965839386, 0.710719645023346, -1.0432554483413696, -0.5663349628448486, 1.1624971628189087, 0.09140442311763763, 0.6267003417015076, 1.1540639400482178, -0.2846481502056122, -0.6667328476905823, -0.6626110672950745, 0.1245916336774826, -1.6910208463668823, -0.4491462707519531, -0.3394731879234314, -0.4169805347919464, -0.41331470012664795, 0.3683297038078308, 1.3126320838928223, -0.09191927313804626, 1.088499665260315, -0.17630839347839355, -0.7331674695014954, 0.6981446743011475, -0.41193681955337524, -0.5604050159454346, 0.5553783774375916, 0.28861260414123535, -1.5368411540985107, -0.43417930603027344, 0.8220968246459961, 1.0457346439361572, 0.1505810022354126, 0.3904837667942047, 0.04444074258208275, -0.38443872332572937, -0.476322740316391, -1.3143749237060547, -0.22972002625465393, 0.987112283706665, -0.789290726184845, -0.6452450752258301, 0.17605510354042053, 0.43639448285102844, -0.29311004281044006, 0.4610505998134613, -0.5267753601074219, 0.14721539616584778, 0.712058961391449, -0.5107136964797974, 0.551689624786377, -0.03365836292505264, -0.8916141390800476, -0.47325193881988525, 1.2550605535507202, 0.35744476318359375, 0.13705594837665558, 0.18894675374031067, -0.36801889538764954, 0.47996869683265686, -0.656602144241333, 0.6716965436935425, -0.18614661693572998, -0.3368997871875763, 0.20611831545829773, -0.9724122881889343, 0.4150824248790741, -0.3874381184577942, 0.8176804780960083, 0.4316757619380951, -0.2341962605714798, 0.284974068403244, -0.5387235879898071, -0.04459284991025925, 0.7198988795280457, 0.4967460036277771, -0.02487603947520256, -0.3133886158466339, 0.4647597372531891, -0.021947789937257767, -0.36395788192749023, -0.4883785545825958, 0.3277074098587036, -0.8420222997665405, 1.13540780544281, -0.18760265409946442, -1.1433769464492798, -1.3927172422409058, 0.26111549139022827, 0.25568675994873047, -0.08686655759811401, 2.01450514793396, -0.27779844403266907, -0.3930851221084595, -0.608222484588623, 0.3935544192790985, -0.017510434612631798, 0.17639999091625214, 0.08730684965848923, 0.9106431007385254, -0.019002199172973633, -0.03299471363425255, -0.5130457282066345, -0.9326042532920837, -0.9874203205108643, -0.7320036888122559, 0.012170841917395592, -1.6128066778182983, 0.7923619151115417, -0.31666073203086853, -0.677560567855835, 0.9542128443717957, -0.30893585085868835, -0.960232138633728, -0.0836176797747612, -0.19902649521827698, -0.3462788760662079, -0.839509904384613, -0.349549263715744, -0.3535018265247345, 1.0389586687088013, -0.7906191349029541, 1.1911743879318237, -0.7116585373878479, 0.2751275897026062, 0.7291775941848755, -0.8536421060562134, -0.5460901260375977, 0.8495173454284668, -0.006435702089220285, -2.4916398525238037, 0.8466176986694336, 0.4997144937515259, 0.3435334861278534, -0.6530561447143555, 0.05696411803364754, 0.5157169699668884, 0.011500570923089981, -0.36219605803489685, 0.6821463704109192, -0.6904708743095398, -0.3426227569580078, -1.3176668882369995, -0.002824980765581131, -0.5483747124671936, -1.0192582607269287, -0.43155887722969055, -0.10290376842021942, 0.17031094431877136, -1.2113171815872192, -0.2672673761844635, 0.08051696419715881, 0.04578617587685585, 0.5754444003105164, 0.4452361464500427, 0.33240315318107605, 0.8017204403877258, -0.7389134764671326, -0.34353700280189514, -0.5707578063011169, 0.41583162546157837, 0.7165035605430603, -0.6808513402938843, -0.05755161494016647, 1.619871973991394, 0.14555083215236664, -0.8130474090576172, 1.0597718954086304, -0.5488685965538025, 0.3908342123031616, -0.7714079022407532, -0.6548983454704285, 0.07555128633975983, -0.7264310717582703, 1.107642650604248, 0.3284628391265869, -0.7927704453468323, 1.025253415107727, -0.3818429112434387, -0.04107397049665451, -0.6821574568748474, -0.8296362161636353, -0.7122156023979187, 0.13615810871124268, -0.7802268862724304, -0.0379040353000164, -1.0742682218551636, -0.3413253724575043, 0.8490669131278992, -0.048462290316820145, -0.7310328483581543, 0.10470449179410934, 1.0690172910690308, -0.4977235794067383, 0.9241893887519836, -0.42100778222084045, -0.721024751663208, -0.36429527401924133, 0.01568276807665825, 0.6327409744262695, 0.2649639844894409, 0.04730335623025894, 0.9415105581283569, 0.6766791939735413, 0.666138768196106, 0.28446176648139954, -0.013327628374099731, 0.14285694062709808, 0.20884691178798676, 0.4171483814716339, 0.16037596762180328, 0.28167641162872314, -0.5443587303161621, -0.8842498064041138, -0.44977566599845886, 0.45481982827186584, 1.4293625354766846, 0.8106591701507568, 2.001636028289795, -0.3538072109222412, 0.7315150499343872, -0.5685328245162964, -0.10514726489782333, -0.05593596771359444, -0.7590820789337158, -0.1254206895828247, -0.38496825098991394, -0.3162233531475067, -0.6483535170555115, -0.01464085839688778, 0.36350217461586, 1.0097633600234985, 0.797530472278595, 0.16599591076374054, -0.36963847279548645, -0.988966703414917, -0.6523037552833557, -0.009577635675668716, -0.7282416820526123, 0.14110998809337616, 0.8029180765151978, -1.3758198022842407, 0.3712455928325653, -0.32140663266181946, 0.08839975297451019, 0.7020217180252075, 0.10047955811023712, 0.6151776313781738, -0.9353819489479065, -0.42029818892478943, -0.2281905561685562, 1.006680965423584, 0.6938956379890442, 0.15015265345573425, -0.24751640856266022, 0.4224644601345062, 0.9573764801025391, 0.6116449236869812, -0.48504677414894104, 0.5474849939346313, -0.498453825712204, -0.7446210980415344, -0.07435029745101929, 0.8446359038352966, -0.12090948969125748, -0.2034073770046234, -1.3947088718414307, -0.33211013674736023, 0.00886352825909853, -0.7658243775367737, 0.9693548679351807, 0.28518950939178467, 0.14901335537433624, 0.03484001010656357, -0.0028582923114299774, 1.1068223714828491, -0.18626506626605988, 0.4190515875816345, -0.3178258538246155, 0.8866927623748779, 0.8639748692512512, 1.458834171295166, 0.8542578220367432, -0.05695407837629318, -0.27713513374328613, -1.0832215547561646, -0.029375417158007622, -0.28439509868621826, 0.6748085021972656, 0.27723628282546997, -0.2892736494541168, -0.27125489711761475, 0.07494194060564041, 0.30405011773109436, -0.2504567801952362, 0.6861040592193604, -0.013425055891275406, -0.8005465269088745, -0.3182516098022461, 0.5583019852638245, 0.8666993975639343, -0.86384516954422, -0.5245984792709351, -0.58216792345047, 0.28648465871810913, -0.812355101108551, 0.9446275234222412, -0.7629683613777161, -0.3643644154071808, 0.7829872369766235, -0.9267452955245972, -0.17661312222480774, -0.7425552606582642, -0.5139339566230774, 1.376595139503479, -0.7248768210411072, -0.31510215997695923, -0.34241780638694763, -0.10043132305145264, 1.2278681993484497, 0.5297071933746338, 0.2501112222671509, 0.6302008032798767, -0.34504425525665283, 0.623201310634613, 0.605421245098114, 1.423587679862976, -0.5590534806251526, -0.575392484664917, 0.7877249121665955, -0.16763247549533844, 0.36489808559417725, -1.38785719871521, 0.2886728048324585, -0.16242516040802002, 0.11797663569450378, -0.010274356231093407, 0.5052979588508606, -0.056055858731269836, 1.5636794567108154, 0.6081250309944153, -0.2682819962501526, -0.2887114882469177, -0.23199811577796936, -1.0661123991012573, 0.2559400200843811, 0.5934098958969116, -0.4218578338623047, 0.14268775284290314, 0.3606038987636566, 0.34754231572151184, 0.8449269533157349, 0.304715633392334, -0.026854991912841797, 0.37738317251205444, 0.5042102336883545, -0.49233487248420715, 0.00697360560297966, 0.3381381630897522, 1.6542012691497803, 0.5501418709754944, 0.7896491289138794, -0.5794979929924011, -1.2261531352996826, 0.9951075315475464, -0.28600651025772095, 0.7959651947021484, 0.6992180943489075, 0.36504194140434265, 0.9213886857032776, -1.2338597774505615, 0.19423554837703705, 0.7030105590820312, 0.246579110622406, 0.736757218837738, 0.380108118057251, 0.538990318775177, -1.145833134651184, 0.0152374766767025, 0.1549260914325714, -0.41534724831581116, 0.3948970437049866, 0.46165797114372253, 0.06576195359230042, 0.7639230489730835, -0.5764918327331543, 0.07710324227809906, -1.648314118385315, 0.20470547676086426, 0.0069653186947107315, 0.3475223183631897, 0.46145641803741455, 1.3042480945587158, 0.18034180998802185, 0.5378263592720032, 0.16010673344135284, -1.1927653551101685, 0.16347673535346985, -0.14838841557502747, 0.38440823554992676, 0.23670098185539246, -0.1634225994348526, -0.612572193145752, -0.18288306891918182, -0.18385860323905945, -0.032147713005542755, -0.17297382652759552, -0.35602059960365295, -0.3586941063404083, -0.9555804133415222, 0.4548393487930298, 0.40123575925827026, 0.09949726611375809, -0.10947661846876144, 0.7104361057281494, 0.25431114435195923, 0.4852292239665985, -0.2904488742351532, 0.3881293833255768, 0.3006752133369446, -0.16377699375152588, -0.3503667712211609, -0.6392337679862976, -1.2463122606277466, 0.28220102190971375, 0.6443015336990356, 0.17788401246070862, 0.2511175870895386, 0.5743221044540405, 1.5770220756530762, -1.0561753511428833, -0.7669622302055359, 0.24649040400981903, 0.14257396757602692, 1.0949034690856934, 0.3550463616847992, -0.52896648645401, -0.7276359796524048, -0.11897000670433044, -1.9064475297927856, 0.7034308910369873, 0.0015547946095466614, -0.9428233504295349, 0.42447054386138916, -0.43479642271995544, 0.3147047460079193, 0.5129379034042358, -0.2699089050292969, 0.8315537571907043, 0.048814840614795685, -0.2671114504337311, -0.25756508111953735, 0.4317026138305664, 0.935001790523529, 0.3097771406173706, -0.7839524745941162, 0.4319860637187958, -0.7316486239433289, 0.05506282299757004, 0.014232903718948364, 0.07846984267234802, 0.6054192185401917, -0.052303362637758255, -0.031011318787932396, -0.5403254628181458, 0.40050971508026123, -0.8118345141410828, -0.25468167662620544, -0.4465232789516449, 0.5747270584106445, -0.4501219093799591, -0.11937639117240906, 0.5593444108963013, -0.8740547895431519, 0.3530135452747345, -0.2672605514526367, -0.15408174693584442, 0.40733781456947327, 0.5964620113372803, 0.2581411600112915, 0.8754575848579407, -0.8113047480583191, 0.2040117233991623, -0.8970711827278137, -0.1879212111234665, 1.74175226688385, -0.23256486654281616, -0.14418376982212067, -0.5801430344581604, -0.6934810876846313, 0.1527245044708252, -0.0089262081310153, 0.829702615737915, -0.8098506331443787, -0.9986734986305237, -0.24409401416778564, 0.11246412992477417, 0.6424464583396912, -0.34238243103027344, 1.1921823024749756, 0.4276828169822693, -0.8346397876739502, 0.34232398867607117, -0.1921231597661972, -0.8080695271492004, 0.11406980454921722, -1.2075512409210205, 0.013330037705600262, -0.13568951189517975, -0.014742588624358177, 0.16585730016231537, 1.1036087274551392, -0.5058599710464478, -0.8108305335044861, -1.6427403688430786, -1.1226012706756592, 0.48652228713035583, 1.061918020248413, -1.486225962638855, 0.7746220827102661, -0.5454830527305603, -0.43539726734161377, 0.18818119168281555, -0.2039157599210739, -0.6423664689064026, -0.09775347262620926, -0.004207042045891285, 0.4923465847969055, -0.39338797330856323, 1.500666618347168, 0.6058023571968079, 0.755054771900177, 0.0837126299738884, 1.1730701923370361, -0.8810800909996033, 0.04944106191396713, -0.14365439116954803, 0.5491819977760315, -0.45610231161117554, 0.32048726081848145, 0.3793361783027649, -1.1378636360168457, -0.9400355219841003, 0.0038674166426062584, 0.8268068432807922, -0.7632372379302979, 0.33705252408981323, -0.5277586579322815, -0.8439235091209412, -0.7538160681724548, 0.5494505763053894, -0.6783473491668701, -0.45071354508399963, 0.31017985939979553, -0.8988228440284729, 0.11405280977487564, -0.7416696548461914, 0.13555780053138733, 0.8167011737823486, 0.6049496531486511, -0.8442674875259399, 0.17941021919250488, 0.6609086990356445, 0.5498105883598328, -0.660971462726593, 0.8113663792610168, 0.9814948439598083, -0.3750322759151459, 0.18869858980178833, -0.054408926516771317, -0.3337549567222595, 0.3409557044506073, 0.05108942463994026, -0.49416595697402954, -0.584251344203949, 0.6584997773170471, -0.28482314944267273, -0.3736802339553833, 0.24373821914196014, 0.45054706931114197, 0.2356242686510086, 0.8385589122772217, 1.2844572067260742, -0.8058011531829834, -0.8303534984588623, 0.4421747624874115, 0.2867754101753235, -0.6287636160850525, 0.36147359013557434, 0.11763325333595276, -0.20283326506614685, 0.6197633147239685, 0.7409870028495789, 0.9905840754508972, -0.877409040927887, 1.056943416595459, 0.8128563761711121, -0.09631402790546417, 0.013502966612577438, -0.7574455142021179, -1.5252158641815186, 0.025084298104047775, -0.8481396436691284, -0.3614942729473114, 0.5197179317474365, -0.6779927611351013, -1.155291199684143, 0.3612370789051056, 0.49787554144859314, -0.6118303537368774, 0.10368333011865616, 0.4439774751663208, -0.34319010376930237, -0.6656268239021301, 0.5345122814178467, 0.12548282742500305, 1.414842963218689, -0.24229590594768524, -0.1702704280614853, -0.10014896839857101, -0.1287151426076889, 0.8729179501533508, 0.0042151231318712234, 0.01046384871006012, -0.47255656123161316, 0.5049284100532532, -0.8247079849243164, -1.032953143119812, 0.08976466953754425, -0.6302922368049622, 0.2412123829126358, -0.39803412556648254, -1.1510887145996094, 0.6134921312332153, -0.25196608901023865, -0.24278533458709717, -0.5186403393745422, -1.0409001111984253, -0.4476330280303955, 0.518750786781311, -0.3476535379886627, 0.6172833442687988, 0.3928837776184082, 0.5753346681594849, 0.502104640007019, -1.187046766281128, -1.1124283075332642, -0.6023639440536499, 1.2799714803695679, 0.1297549605369568, 0.03862715885043144, -0.3976326584815979, -0.0070455027744174, -0.10566940903663635, -0.9645292162895203, -0.6689277291297913, -0.35885927081108093, -0.07316020131111145, -0.44424787163734436, -1.1838887929916382, -1.1710861921310425, -0.6496477723121643, 0.9373262524604797, 0.4661363959312439, 0.18193450570106506, 0.4354286789894104, 0.03277387097477913, -1.5379765033721924, -0.0834198072552681, 0.8541207909584045, 0.6543486714363098, 0.5701562762260437, 1.6008515357971191, 0.6572083830833435, -0.10496751219034195, 0.18071435391902924, -0.45644503831863403, 0.2580879330635071, -1.4758729934692383, -0.3804047405719757, -1.0733590126037598, -0.3598095178604126, 0.3436152935028076], [0.5236385464668274, 1.360308051109314, -2.1064836978912354, -0.6354657411575317, 2.2398056983947754, 0.35133498907089233, 0.8467134833335876, 0.02122628502547741, 0.022978205233812332, -0.46203693747520447, -0.5268329977989197, 0.7260488271713257, 0.07380736619234085, 1.027334451675415, 1.0709012746810913, -0.1918269246816635, 0.3144683241844177, 0.47410398721694946, -0.2208956480026245, 0.4054548144340515, -1.187605857849121, -0.25020545721054077, -0.8105477094650269, 0.07799021899700165, -0.09319761395454407, 0.44277942180633545, -0.6988920569419861, 0.011657781898975372, -0.6575709581375122, -0.8736495971679688, 0.8713124990463257, -0.7718655467033386, -0.2111641764640808, 0.7026090621948242, -2.818528652191162, 0.11492414772510529, 1.1540117263793945, -0.34991756081581116, -0.42205968499183655, 0.7654991745948792, 2.386561870574951, -0.07038954645395279, -0.2432853877544403, -1.6595721244812012, -0.41428259015083313, 0.46606776118278503, 0.8769480586051941, -0.7340298295021057, -0.3440254330635071, -0.6288967728614807, 0.337371826171875, -0.16848494112491608, 0.6079452633857727, 0.9441313743591309, 0.6113834381103516, -0.614506185054779, 0.7453787326812744, 0.69645756483078, 0.35643309354782104, 0.08834829926490784, 0.2770269811153412, -0.014469880610704422, -0.7093833684921265, 1.456139326095581, 0.12445637583732605, 0.08849728852510452, -0.6272972226142883, 1.1193214654922485, -0.01790096051990986, -0.26096203923225403, 0.5474594831466675, -0.14623600244522095, -0.5284869074821472, 0.31474512815475464, -0.5485039353370667, 0.585089385509491, 0.6665047407150269, -0.12670409679412842, 0.5460749864578247, 0.44100573658943176, -1.544500708580017, 0.27092474699020386, 0.759875476360321, -0.8746902346611023, 0.8155316114425659, 0.3041548728942871, 0.19297654926776886, -0.6014150977134705, -0.6858000159263611, 1.1492446660995483, 0.5162176489830017, 0.006282164715230465, 0.8524330854415894, -1.0852108001708984, -0.45329615473747253, -0.5068692564964294, -0.17010557651519775, -1.0004994869232178, -1.078535795211792, -0.5149333477020264, -0.7350547909736633, -0.07359989732503891, 0.4212900996208191, 0.5354727506637573, -0.070074163377285, 1.354651927947998, 0.00848774891346693, -0.038235265761613846, -0.1717745065689087, -0.3576394021511078, -0.619818389415741, 0.82734614610672, -0.5223347544670105, -1.2546446323394775, -0.09736451506614685, 0.16218610107898712, 0.9709392786026001, 0.27632540464401245, 0.4275873005390167, 0.9285415410995483, -0.04995773360133171, -0.08661419153213501, -0.7706277966499329, 0.3902297019958496, 0.5723848342895508, -0.10921585559844971, -0.8662375211715698, 0.06834019720554352, 0.4052484333515167, -0.22696621716022491, 0.18289107084274292, -0.20191343128681183, 0.3125187158584595, 1.201368808746338, -0.3001154065132141, 1.0163017511367798, -0.23520183563232422, -1.2383837699890137, 0.34697484970092773, -0.12815570831298828, 0.9484373927116394, -0.4665915369987488, 0.07492238283157349, -1.0673798322677612, 0.18370862305164337, -0.7535752654075623, 0.5314751863479614, -0.5986168384552002, -0.7071989178657532, 0.37156277894973755, -1.290352463722229, 0.5592761039733887, 0.06461955606937408, 1.0309100151062012, 0.46851128339767456, 0.04696503281593323, 0.6101589202880859, 0.27179715037345886, 0.5386374592781067, 0.4471491575241089, 0.5537781715393066, -0.480839341878891, -0.9452015161514282, 0.4750072956085205, 0.15168648958206177, -0.41910508275032043, 0.2588672637939453, 0.3891298770904541, -0.6151265501976013, 0.6066645383834839, -0.41888242959976196, -0.34370774030685425, -1.1381773948669434, 0.3198995590209961, 0.36552590131759644, 0.21749012172222137, 1.3010553121566772, -0.4821985065937042, -1.504940390586853, -0.3798481225967407, 0.667773425579071, 0.4713437557220459, 0.6380557417869568, -0.44403550028800964, 1.0688296556472778, 0.17851881682872772, 0.2537086009979248, 0.1816541701555252, 0.3355221450328827, -1.4656031131744385, -1.2022664546966553, -0.09369204193353653, -0.84006667137146, 0.2641906142234802, 0.2750962972640991, -0.7781802415847778, 0.8034839630126953, -1.0790350437164307, -0.433142751455307, -0.09274856001138687, -0.6307401657104492, -0.8149498105049133, -0.7184069752693176, -0.215783953666687, -0.404665470123291, 0.03040519915521145, -0.5745923519134521, 0.5164651274681091, -0.7850260138511658, -0.515014111995697, 0.7223575711250305, 0.3496658205986023, -0.7838386297225952, 0.7416968941688538, -0.7503350973129272, -0.815594494342804, -0.01913035660982132, 0.44099023938179016, 0.08726246654987335, -0.32793399691581726, 0.19512279331684113, -0.3714796304702759, -0.1436389982700348, -0.5442360639572144, 0.17752200365066528, -0.7555526494979858, -0.1523539125919342, -1.0727006196975708, -0.8913170099258423, -0.13397997617721558, -0.6133823394775391, -2.24301815032959, 0.1935979425907135, 0.37509632110595703, -1.2601635456085205, 0.5219172239303589, 0.23456481099128723, 0.7150493264198303, 0.40014198422431946, 0.7576999664306641, 0.3560519814491272, 1.2417633533477783, -1.029949426651001, 0.5332315564155579, -0.3613349199295044, 0.5942026376724243, 0.8676980137825012, -0.8055075407028198, -0.2839724123477936, 1.1173336505889893, 0.6168757081031799, 0.43739742040634155, 0.7952566742897034, -0.36568543314933777, 0.6553670167922974, -0.7382680177688599, -0.3973621726036072, -0.2664168179035187, -0.38717642426490784, 1.3672791719436646, 0.7693808078765869, -1.213979959487915, 0.08220391720533371, 0.20664972066879272, -0.4757888615131378, -1.329572319984436, 0.012343683280050755, -0.37319472432136536, 0.2378210723400116, -0.4311337172985077, 0.03005911596119404, 0.1538086235523224, 0.07065236568450928, 0.7110568284988403, -0.6758699417114258, -0.24245451390743256, -0.12178265303373337, -0.11798093467950821, 0.6713065505027771, 1.0604990720748901, 0.07491061836481094, -0.08534349501132965, -0.2951118052005768, -0.2290666699409485, 0.6799182295799255, -0.18695829808712006, -0.4601067304611206, 0.7957353591918945, 0.6661871075630188, 0.5448327660560608, -0.10545415431261063, -0.030851993709802628, -1.039777159690857, 0.7909572124481201, 0.13396424055099487, 0.07831670343875885, 0.7724056243896484, -0.7075972557067871, -0.538513720035553, -0.4785347878932953, 0.49176448583602905, 1.1422655582427979, 0.9072715044021606, 1.7582712173461914, 0.38743847608566284, 0.1320769041776657, -0.03850126639008522, -0.29387062788009644, -0.011571270413696766, -0.4104580581188202, -0.7698169946670532, -0.8745054006576538, -0.582543134689331, -0.5254709124565125, 0.5779154896736145, 1.1436830759048462, -0.21093951165676117, 1.0203696489334106, 0.19669322669506073, -0.5397098064422607, -0.7808748483657837, 0.24315237998962402, 0.29897958040237427, -0.538581371307373, -0.03511275723576546, 0.6742207407951355, -1.0565781593322754, 0.07102248817682266, -0.47406041622161865, -0.08387435972690582, 1.5110245943069458, -0.367572158575058, 0.6164736747741699, -1.2056199312210083, -0.5222097635269165, -0.3139193058013916, 1.8513882160186768, 0.5895909667015076, 0.03501307964324951, -0.08795972168445587, 0.3120216131210327, 0.459164559841156, -0.1234966292977333, -0.5149530172348022, 1.0148379802703857, -0.8701804280281067, -1.3400505781173706, -0.4653543531894684, -0.11893964558839798, 0.24650456011295319, -0.7609834671020508, -0.41362765431404114, -0.1296144723892212, -0.1533806174993515, -0.32605770230293274, 0.281502902507782, 0.4062277376651764, 0.1265224814414978, -0.14339853823184967, 0.33261820673942566, 1.4707010984420776, -0.20700019598007202, 0.03795685991644859, -1.1185803413391113, 0.2712724208831787, 0.9178495407104492, 1.391800045967102, 0.5370795130729675, -0.014415188692510128, 0.6769065260887146, 0.05055601894855499, -0.10273896157741547, 0.06155099347233772, 0.6876447200775146, 0.4173707067966461, -0.6238600015640259, -0.3266430199146271, -0.42979419231414795, 0.21972636878490448, 0.42651796340942383, 0.04107752442359924, 0.4207868278026581, -0.5276074409484863, -0.5078483819961548, 0.9750146269798279, 0.46608036756515503, -0.42750313878059387, -1.0317966938018799, -0.12280261516571045, 0.9332637190818787, -0.6617761254310608, 0.07298514246940613, -0.47099316120147705, -0.0009114723652601242, -0.05038733035326004, -0.8508402705192566, -0.5062193870544434, 0.2549193501472473, 0.1228121891617775, 1.3216369152069092, -0.24660691618919373, -0.5339013338088989, -0.020998340100049973, -0.09169432520866394, 0.14903460443019867, 0.26427188515663147, 0.368366539478302, 0.26931118965148926, -0.2562086880207062, -0.44586753845214844, 0.31519895792007446, 1.75105881690979, -0.44018858671188354, -0.30444273352622986, 0.33971625566482544, -0.3393597900867462, 0.19703030586242676, -0.24007022380828857, -0.6001814603805542, -1.1110663414001465, -1.0318522453308105, -0.12160630524158478, -0.148126021027565, -0.0070834169164299965, 1.1705527305603027, 0.346435010433197, 0.12336450070142746, 0.51004958152771, -0.3936198353767395, -0.7903154492378235, 0.3009532690048218, 0.29401248693466187, -0.0309244766831398, -0.10458432137966156, 0.03545863926410675, 0.04439312964677811, -0.32792776823043823, 0.033528655767440796, -0.03951350972056389, 0.564301609992981, 0.21099668741226196, -0.07333289086818695, 0.015082518570125103, 0.49045082926750183, 1.0003693103790283, 0.5908252000808716, 0.8241459727287292, -0.5947383046150208, -1.188289761543274, 0.47035783529281616, -0.590782105922699, 0.17906644940376282, 0.6212950348854065, 0.2456032633781433, 1.1107395887374878, -1.8446705341339111, -0.443183034658432, 0.9035957455635071, -0.17685867846012115, -0.008619315922260284, 0.08959602564573288, 0.6427713632583618, -0.51921546459198, 0.19182640314102173, 1.1746008396148682, 0.35981684923171997, 0.6434780955314636, 0.09194693714380264, 0.6864864230155945, -0.029752492904663086, -0.35230714082717896, -0.43368303775787354, -0.3129272162914276, -0.49327096343040466, 0.21307982504367828, -0.07182144373655319, 0.7487191557884216, 0.8112719058990479, 0.1774783879518509, 1.232588529586792, 0.17736555635929108, -1.3974039554595947, 0.6881212592124939, -0.03045070916414261, -0.3418896198272705, -0.29510053992271423, -0.3669140040874481, -0.5875505208969116, -0.09110986441373825, 0.45267799496650696, -0.09544818103313446, -0.6881634593009949, -0.8081533312797546, 0.013602197170257568, -0.9952343702316284, 0.7465187907218933, 0.3273584842681885, 0.6339572668075562, 0.18035250902175903, 0.677344024181366, 0.5031765699386597, 0.3773674964904785, -0.5015382170677185, -0.11211210489273071, -0.02342192456126213, 0.023241275921463966, -0.026485418900847435, -1.2459872961044312, -0.6617780327796936, -0.37250879406929016, 1.063386082649231, 0.3682079017162323, 0.6277008056640625, 1.4678325653076172, 1.5031228065490723, 0.19538764655590057, -0.5692099332809448, -0.007794308941811323, -0.819538414478302, 0.3759081959724426, 1.032297134399414, -0.3687949776649475, -0.1899193674325943, -1.2197626829147339, -1.3401603698730469, 1.098844289779663, 0.07739760726690292, -1.2922999858856201, 0.03351924568414688, 0.3508945405483246, -0.020059019327163696, 0.8015850186347961, -0.5672829747200012, 0.8114063739776611, -0.10853715240955353, -0.6198859214782715, -0.4922374188899994, 0.5782638788223267, 0.38437941670417786, 0.6488455533981323, -0.9606549739837646, 0.4222724437713623, -0.41760191321372986, -0.3610277473926544, 0.5342822074890137, 0.5803540349006653, 0.9014454483985901, 0.7038854956626892, 0.18855084478855133, 0.26141858100891113, 0.06712663173675537, -1.230820655822754, -0.12806378304958344, -0.8696253895759583, 0.8138936161994934, -0.04636964201927185, 0.19408096373081207, 0.4537937641143799, -0.3340767025947571, -0.599882960319519, -0.3931436538696289, -0.24214564263820648, 0.7694333791732788, 0.7177976369857788, -0.0414360910654068, -0.3270924687385559, -1.1343812942504883, -0.32303357124328613, -0.598696231842041, -0.645254373550415, 1.257407784461975, -0.04564766213297844, 0.054255206137895584, -0.1151890903711319, -0.33683067560195923, 0.6045895218849182, -0.3096936345100403, 0.19577950239181519, -1.5537583827972412, -1.41496741771698, -1.5992432832717896, -0.03046598844230175, 0.36903467774391174, -0.4524988532066345, 0.739200234413147, 0.4643208682537079, -1.1201667785644531, 0.5094641447067261, 0.46918973326683044, -0.9422160983085632, 0.07505287230014801, -1.6070071458816528, 0.5400099754333496, 0.24923181533813477, 0.3516674041748047, -0.06070702150464058, 0.8285034894943237, -1.3337856531143188, -1.665724754333496, -0.11253193765878677, 0.8061877489089966, 0.9338968396186829, 0.5949644446372986, -1.1014726161956787, 1.3011555671691895, 0.37904998660087585, -0.49958112835884094, -0.566996157169342, -0.7322869300842285, -1.1083112955093384, 0.5084869265556335, 0.2525518238544464, 1.4679646492004395, 0.1197291910648346, 1.212135910987854, 0.10129808634519577, 0.29904797673225403, -0.21253077685832977, -0.008436620235443115, -0.4526248276233673, -0.13020087778568268, -0.25569039583206177, 0.807242751121521, -0.7600657939910889, 0.10462763160467148, -0.4484196901321411, -0.9301833510398865, -1.8847217559814453, 0.15699255466461182, 1.1100529432296753, -0.1265123188495636, 0.6664758324623108, 0.2180912047624588, 0.20313340425491333, -1.2425529956817627, -0.00946742482483387, 0.5701170563697815, -0.5040192008018494, -0.23623397946357727, -0.31406518816947937, 0.3398417830467224, -0.20160862803459167, -0.13100673258304596, 0.2456652671098709, 0.2657380998134613, -0.9109857678413391, 0.561719536781311, 0.6558454632759094, -0.49358513951301575, -0.036934178322553635, 1.6420644521713257, 0.9012852907180786, 0.32158201932907104, 0.0036926837638020515, 0.06758607178926468, 0.09133893251419067, 0.42766284942626953, -0.20123116672039032, -0.16064582765102386, 0.172105610370636, 0.41277772188186646, -0.04610600695014, -0.06292254477739334, -0.7289516925811768, -0.20645670592784882, -0.581472635269165, -0.20128493010997772, 0.9572990536689758, -0.31534942984580994, -0.7704252600669861, 0.6215980648994446, -0.422518253326416, -0.20224951207637787, 0.2735438048839569, -0.08787627518177032, -1.196318507194519, 0.09328562021255493, 1.0431530475616455, 0.4897930920124054, -0.5433120131492615, 0.6255139708518982, 0.786110520362854, 0.49365803599357605, 0.07156852632761002, -0.0437922403216362, -2.467313766479492, -0.05075838416814804, -0.6250775456428528, -0.7315633296966553, 1.534791350364685, -0.618178129196167, -0.9448035359382629, 0.24634398519992828, 0.6884818077087402, 0.04620639607310295, 0.5114060044288635, -0.16992081701755524, 0.048910561949014664, -0.2362285703420639, 0.16984006762504578, -0.6589578986167908, 1.3012967109680176, 0.32469815015792847, -0.3490069508552551, -0.10663639008998871, -0.08989717066287994, -0.06482726335525513, 0.09542687982320786, 0.11700110882520676, -0.5447932481765747, 1.1077008247375488, -0.05542979761958122, -1.0799744129180908, 0.16689547896385193, 0.4819898009300232, -0.196913480758667, 0.18493349850177765, -1.2146886587142944, 0.5676136612892151, 0.41591185331344604, 0.3473275303840637, -0.5465077757835388, -0.7777706384658813, -0.9255702495574951, 0.5153918266296387, -1.4222146272659302, 1.3278107643127441, -0.18140438199043274, 1.010912537574768, 0.9282466173171997, -0.5978580117225647, -0.35229799151420593, -0.232144296169281, 0.3290882706642151, 0.254734605550766, 0.2853945791721344, -0.31952977180480957, 0.12779895961284637, 0.19337265193462372, -1.4653526544570923, -0.015508739277720451, -0.5680603384971619, 0.2720169425010681, 0.15964071452617645, -1.4194520711898804, -0.4586980938911438, -0.49348413944244385, -0.03593114763498306, 0.357468843460083, -0.17335891723632812, 0.6534013748168945, 0.13013237714767456, -0.7359965443611145, -0.1928049921989441, 0.3270789384841919, 0.10482560098171234, 0.19117708504199982, 1.6565815210342407, 1.36981201171875, 0.742885172367096, 0.12908843159675598, -0.4639330804347992, 0.5531821250915527, -0.7260738611221313, -0.04404420778155327, -0.5663886070251465, -0.0654616728425026, 0.03749900683760643], [1.0813614130020142, 1.0741063356399536, -2.1841719150543213, -1.4675272703170776, 0.8159412741661072, 0.3631075322628021, -0.19747591018676758, -0.20683521032333374, -0.587999701499939, -0.6780514717102051, -1.1567304134368896, 0.6464138627052307, 0.9291284084320068, 1.2380560636520386, 0.5421227812767029, -0.27281978726387024, 1.2723808288574219, -0.47969314455986023, 0.03784271702170372, 0.6725338697433472, 0.4166320562362671, 0.3202784061431885, -0.4903111755847931, 0.5837584137916565, 0.19369807839393616, 0.6139256358146667, -0.642582356929779, -0.06509296596050262, -0.7319162487983704, -1.6024199724197388, 1.975630283355713, -0.8594670295715332, 0.44709983468055725, 0.015263880603015423, -1.723929762840271, -1.0971615314483643, 0.8217827081680298, 0.4027734696865082, -0.4661429226398468, 1.0263301134109497, 1.1983901262283325, 1.0937302112579346, -0.31987711787223816, -0.9660235643386841, 0.13466601073741913, -0.15696972608566284, -0.4835818111896515, -1.1299059391021729, 0.7776118516921997, -0.4000823497772217, 0.9855343103408813, -0.17568336427211761, 0.1605207920074463, 1.194329857826233, 0.35029366612434387, 0.9189924597740173, -0.022129356861114502, -0.30275610089302063, 0.9836482405662537, -1.036887526512146, 0.9964567422866821, -0.038186654448509216, -0.25842753052711487, 0.5780508518218994, 0.4039110243320465, -0.10671402513980865, 0.0916372761130333, 0.919195830821991, 0.05837177485227585, -0.8575305342674255, 0.9733405113220215, -0.016110321506857872, -0.509006679058075, 1.0424199104309082, -2.040363073348999, 1.203174114227295, 0.2903693914413452, 0.026021631434559822, 0.33537808060646057, 0.715050995349884, -1.07379150390625, -0.06601575016975403, 1.0004304647445679, -0.30367735028266907, 0.4659534692764282, 0.128080353140831, 0.33408987522125244, -0.9839301109313965, -0.3551345765590668, 1.144508719444275, 0.08235950022935867, -0.19944585859775543, 0.6718859076499939, -0.36878702044487, -0.09205997735261917, 0.0107608987018466, 0.4180353581905365, -0.20533429086208344, -0.5773025751113892, -0.7187678217887878, -0.44883549213409424, -0.6344443559646606, 0.1252790093421936, 0.7311960458755493, 0.5453882813453674, 1.1365212202072144, 0.1699099987745285, -0.6595519781112671, -0.563640296459198, 0.1977291852235794, 0.1854156255722046, -0.11302580684423447, -0.2917689383029938, -0.756749153137207, -0.4688706398010254, 0.001314481720328331, 0.3355778753757477, -0.41977426409721375, 1.002120018005371, 1.0791990756988525, -1.0682222843170166, -0.20695345103740692, -0.9641738533973694, 0.018639901652932167, 0.5650526285171509, 0.2512795031070709, -0.17688053846359253, -0.4336300492286682, 0.051704373210668564, 0.0788666158914566, -0.5909593105316162, 0.23260889947414398, -0.14474421739578247, 0.8977960348129272, -0.4841286540031433, 0.7297704815864563, 0.12657694518566132, -0.21835559606552124, 0.7253500819206238, -0.4550948143005371, 0.19933173060417175, -0.08563903719186783, -0.230721116065979, -0.7454130053520203, 0.33470281958580017, 0.03649264946579933, 0.22547708451747894, -0.12635768949985504, -0.7469847202301025, 0.3974056541919708, -0.22758357226848602, 0.6973578333854675, 0.1946399211883545, 0.7898253798484802, -0.6726595759391785, 0.2176247537136078, 0.16620241105556488, 0.02316204272210598, -0.47183850407600403, 0.3506545126438141, 0.23015743494033813, 0.14120593667030334, -1.0498907566070557, 1.0494871139526367, -0.13439638912677765, -0.33706584572792053, 0.07678960263729095, -0.5959458947181702, -0.8597829937934875, 0.4636602997779846, -1.0572388172149658, -0.5284690856933594, -0.17853227257728577, 0.8907692432403564, -0.16179153323173523, 0.15817007422447205, 1.0602972507476807, -1.4805961847305298, -0.7384172677993774, -0.9856827855110168, 0.4047899842262268, -0.9824933409690857, 0.3558770418167114, 0.11795094609260559, 0.5716996788978577, -0.38359346985816956, -0.15488676726818085, -0.192435160279274, 0.04737544432282448, -0.6211857795715332, -1.1909736394882202, 0.15877334773540497, -1.0737746953964233, 0.2720203995704651, 0.20187067985534668, -0.9577038288116455, 0.3492175340652466, -0.5028788447380066, -0.8516145348548889, 0.6306553483009338, -1.0322954654693604, 0.006870364770293236, -0.8937716484069824, -0.39701932668685913, -0.9716134667396545, -0.012151670642197132, -0.3063916862010956, 0.17752620577812195, -0.930140495300293, 0.08647636324167252, 0.8700321316719055, -0.3826391398906708, -0.5450615882873535, 0.6451791524887085, 0.39239302277565, -0.8097158670425415, 0.010231252759695053, 0.9658254981040955, 0.3506411910057068, -0.1838955283164978, 0.831416130065918, 0.45480796694755554, 1.0683825016021729, 0.06836335361003876, 0.024680670350790024, 0.05335491895675659, -1.3405282497406006, -0.5546320080757141, -0.8474419116973877, -0.32934755086898804, -0.4415495693683624, -1.3021224737167358, 0.5718527436256409, 0.8082979917526245, -0.7893651723861694, 0.3964182138442993, -0.30456769466400146, -0.1057780310511589, 0.20203152298927307, 1.1070342063903809, 0.3145109713077545, 0.012166363187134266, -0.6751025915145874, -0.2642221748828888, -0.5824649930000305, 0.3680807948112488, 0.14475680887699127, -0.1753993034362793, -0.10025208443403244, 1.5829523801803589, 0.25835156440734863, -0.3146895170211792, 0.31012552976608276, 0.07542643696069717, 0.3396758437156677, -0.9497696757316589, -0.7071757316589355, 0.43091362714767456, -1.0912877321243286, 0.5262851715087891, 0.465921550989151, -1.7349268198013306, -0.2802334129810333, -0.3536323010921478, -0.17066062986850739, -1.0774505138397217, -0.584027111530304, 0.03667007014155388, 0.306011438369751, -0.5971218943595886, -0.2631906270980835, -0.16008485853672028, -0.06551232188940048, 0.6910786628723145, -0.5969478487968445, -0.3584210276603699, -0.09321989119052887, 0.167107492685318, -0.14737334847450256, 0.4107198417186737, -0.29176267981529236, -1.0246444940567017, -0.23374919593334198, 0.27535462379455566, 0.3367144465446472, -0.1581258326768875, -0.33842799067497253, 0.6036367416381836, 0.4864028990268707, -0.2502608001232147, -0.04586820304393768, 0.059108931571245193, -0.14343073964118958, 0.06884395331144333, 0.6542330384254456, 0.7495844960212708, 0.6178498268127441, 0.1411316841840744, -0.5232410430908203, -0.8497293591499329, 1.3338347673416138, 0.44941893219947815, 0.9053336977958679, 1.4192885160446167, 0.03960263356566429, 0.17308972775936127, -1.3267189264297485, -0.3095510005950928, -0.027507971972227097, -0.8009650707244873, -0.01929321140050888, -0.5199321508407593, 0.0054494584910571575, -0.3512580990791321, -0.014555512927472591, 1.4245193004608154, 0.5093806385993958, 0.6468501091003418, 0.47326138615608215, 0.16855891048908234, -1.2294894456863403, -0.6397153735160828, 0.6765874028205872, -1.1840697526931763, 0.6563746333122253, 0.9361791610717773, -1.0289682149887085, 0.4468483328819275, -1.0999705791473389, -0.11295420676469803, 0.922295331954956, -0.26069921255111694, 0.47554895281791687, -1.0913548469543457, -0.9754443764686584, 0.155738964676857, -0.03270484879612923, 0.43264687061309814, -0.14452214539051056, -0.5306427478790283, 0.39470374584198, 0.5959537029266357, 0.513817548751831, 0.20561055839061737, 0.8536243438720703, -0.3534833788871765, -0.8656007051467896, -0.27502572536468506, 0.7629597187042236, 0.710984468460083, -0.2025994211435318, -0.17984241247177124, -0.34973278641700745, 0.05076112598180771, -0.2694862186908722, 0.7479724884033203, 0.4575484097003937, 0.5143636465072632, 0.4662708640098572, -0.0692678913474083, 0.7169044017791748, -0.1760767549276352, 0.7955005764961243, -1.2322579622268677, 0.4612897038459778, -0.037373606115579605, 1.0534319877624512, 0.08408001810312271, -0.16143739223480225, 0.276845246553421, -0.9990934133529663, 0.4597824811935425, -0.23010586202144623, 0.44805455207824707, 0.02719867043197155, -0.7236944437026978, -0.6393250823020935, -0.17578470706939697, -0.607008695602417, 0.0076480433344841, 0.048773542046546936, -0.30693304538726807, -0.26892971992492676, -1.047514796257019, 1.2568669319152832, 0.2256249338388443, -0.5998278260231018, -0.0044365739449858665, -0.6561869382858276, 0.7138395309448242, -0.3743663728237152, -0.1141929179430008, -0.5055372714996338, -0.05206197872757912, 0.5423229932785034, -1.4535250663757324, -0.6657407879829407, 0.059467609971761703, 0.1174069195985794, -0.3199709951877594, -1.0843608379364014, -0.06733211874961853, 0.2711176574230194, 0.07707862555980682, 0.16739563643932343, 0.15539056062698364, 0.5946862101554871, 0.1787879914045334, 0.07765724509954453, -0.18732793629169464, 0.11349987983703613, 1.10682213306427, -0.4287584125995636, 0.010370587930083275, -0.5388678312301636, -0.5335487723350525, -0.04185974597930908, -0.5516353249549866, 0.31210780143737793, -0.004624612629413605, -0.4551680386066437, 0.10866626352071762, 0.19746184349060059, -0.35386645793914795, 0.8314235210418701, 1.1275944709777832, -0.2336329221725464, 1.2070462703704834, -0.3076385259628296, -0.9987184405326843, 0.7329217195510864, 0.040166135877370834, 0.586833119392395, 0.1984356939792633, 0.04313627630472183, 0.15625235438346863, 0.1547696739435196, 0.6680788397789001, -0.1776355803012848, 0.8295182585716248, 0.29838135838508606, -0.6346609592437744, 0.43684154748916626, 0.24368013441562653, 0.8906379342079163, 1.3114484548568726, 0.34372371435165405, -0.1081017479300499, -0.6161530017852783, 0.857986330986023, 0.06736402958631516, 0.5672180652618408, 0.5790196061134338, 0.4995622932910919, 1.634885311126709, -0.9756720662117004, -0.08811018615961075, 0.3425874710083008, 0.7874347567558289, 0.2916778326034546, 0.48445212841033936, 0.35200798511505127, -0.7221890091896057, 0.6639329791069031, 0.2955537438392639, -0.02918889746069908, 0.20322570204734802, -0.14006567001342773, 0.11328473687171936, 1.1374183893203735, -0.7540345191955566, 0.24061782658100128, 0.22477968037128448, -0.4793075621128082, -0.4162624180316925, 0.26760658621788025, -0.3267305791378021, 0.7393409013748169, -0.06172637641429901, 0.4750202000141144, -0.5454245805740356, -0.5412189364433289, 0.2589989900588989, -0.9903204441070557, 0.43715327978134155, 0.7335132956504822, -1.0199662446975708, -0.5013460516929626, -0.790751576423645, 0.2168796956539154, 0.14159992337226868, -0.4668946862220764, 0.3149414658546448, 0.1897895634174347, -1.1791391372680664, -0.7246169447898865, 0.25115346908569336, 0.29202088713645935, 0.014515450224280357, 0.7848364114761353, 0.8120538592338562, 0.4857115149497986, 0.11876481771469116, 0.5974854230880737, -0.5029386281967163, -0.5511078238487244, 0.38217639923095703, -1.010048747062683, -1.3324649333953857, 0.5570365190505981, 0.6946753263473511, 0.3456868529319763, -0.7698874473571777, 1.260128378868103, 1.796591877937317, -0.7464837431907654, -0.6243771910667419, 0.5204706192016602, -0.33475515246391296, 0.2457306981086731, 0.04396125674247742, -0.5149611234664917, -0.07007484138011932, 0.08581827580928802, -1.4236066341400146, 0.8543826341629028, -0.37206563353538513, -0.9211243391036987, 0.014622525312006474, 0.34571143984794617, 0.7104598879814148, 0.7538201808929443, -0.6455368399620056, 0.5373032689094543, 0.9251338839530945, -0.9453825950622559, -0.9009761810302734, -0.33225908875465393, 0.5550894737243652, 0.7945215702056885, -0.8264460563659668, -0.037114303559064865, -0.23280872404575348, 0.3881952464580536, 0.8001591563224792, 0.6474478244781494, 0.503263533115387, 0.7401400208473206, 0.542378842830658, -1.0879045724868774, -0.3066330552101135, -1.0839139223098755, -0.05915485695004463, 0.1470436155796051, 0.6009569764137268, -0.5775323510169983, -0.19295665621757507, 0.24928230047225952, -0.6350382566452026, -0.1260221153497696, -0.38561543822288513, -0.2763810157775879, 1.0442700386047363, 0.41743984818458557, -0.876121997833252, -0.09316282719373703, -0.1940286010503769, -0.5292131900787354, 0.28462982177734375, -0.46306002140045166, 1.242773175239563, -0.9187269806861877, -0.15822936594486237, 0.1040857657790184, 0.2522019147872925, 0.10817509144544601, 0.13666988909244537, 0.32024651765823364, -0.8330974578857422, -1.6347957849502563, -0.43290528655052185, 0.48647212982177734, 0.6661540865898132, -0.6550412178039551, 0.16953641176223755, 0.53469318151474, -1.5644536018371582, 0.12370231747627258, 0.32055947184562683, -1.0335259437561035, 0.5517011880874634, -0.8280289769172668, 0.5615845322608948, 1.0647259950637817, -0.2794307768344879, 0.15294364094734192, 0.3690865635871887, -0.7064782977104187, -0.4982229471206665, -0.7317252159118652, 0.2604093551635742, 0.7113211750984192, 1.3601619005203247, -0.7880261540412903, 0.8780643343925476, -0.5427061319351196, -0.009807745926082134, 0.5209366679191589, 0.2785959243774414, -0.8886798024177551, -0.16347822546958923, 0.8216776847839355, 0.2569761872291565, -0.12315564602613449, 1.3240946531295776, -0.46443459391593933, 0.7752653956413269, -0.13267500698566437, -0.7415505051612854, -0.1682075411081314, 0.414010226726532, -1.1462032794952393, -0.35164350271224976, -0.797003448009491, -0.6553479433059692, 0.03100016340613365, -0.5281221270561218, -0.6573691368103027, 0.30630257725715637, 0.6566860675811768, -0.5102803111076355, 0.2214348316192627, 0.2970084547996521, -0.5481704473495483, -0.43709418177604675, 0.7727190256118774, -0.47851791977882385, 0.16756638884544373, 0.15359258651733398, -0.660905659198761, 0.40732207894325256, -0.8744989633560181, 0.023588092997670174, 0.1606137901544571, -0.12304449826478958, -0.2538200914859772, 0.6153250932693481, 0.8034124374389648, -0.12115959078073502, -0.5225114226341248, 1.4935259819030762, 1.2491228580474854, -0.10663717240095139, 0.3078490197658539, 0.06873442232608795, -0.27081942558288574, 0.37711772322654724, -0.44475460052490234, -0.8676738739013672, -0.367876261472702, 1.0018415451049805, -0.20371009409427643, -0.08116047829389572, -0.29030510783195496, 0.05126534029841423, -0.41510435938835144, 0.3043607473373413, -0.05724112316966057, -0.10949564725160599, -0.10761695355176926, 0.6145375370979309, 0.10368804633617401, -0.5826621055603027, -0.17236469686031342, 0.11674421280622482, 0.44277530908584595, 0.4139416515827179, 0.018705526366829872, -0.11299854516983032, 0.028990011662244797, 0.7463400363922119, 0.2299705147743225, -0.4016343653202057, 0.28993669152259827, -0.41236749291419983, -1.3489282131195068, -0.003883674740791321, -0.7062160968780518, -0.9122022390365601, 0.5996055603027344, -0.926272451877594, -0.5935683846473694, 0.6197908520698547, -0.023318592458963394, 0.5238885879516602, -0.6311811804771423, 0.1867179572582245, 1.0644103288650513, 0.06051301956176758, 1.5966756343841553, 0.08302832394838333, 0.6307662129402161, 0.7206422686576843, -0.07853754609823227, -0.4048343300819397, -0.8572415709495544, 0.0810447633266449, 0.05995189771056175, 0.04916638135910034, -0.35418736934661865, 0.12588471174240112, -0.09162283688783646, -0.7866196036338806, 0.5175307989120483, 0.559604287147522, 0.2019050121307373, 0.030816011130809784, -1.2185744047164917, 0.32723408937454224, 0.5332979559898376, 0.20379705727100372, -0.868879497051239, -0.17256397008895874, -0.7193610072135925, 0.17695900797843933, 0.20336955785751343, 0.9804989099502563, -0.2934819459915161, 0.6885631680488586, -0.095285564661026, 0.2733718454837799, -0.4362742006778717, -0.4069138765335083, 0.5374575853347778, -0.1653146892786026, 0.26206082105636597, -0.5011754631996155, 0.1918250024318695, -0.41812416911125183, -1.1028636693954468, -0.3362465798854828, 0.42498451471328735, 0.3095274865627289, -0.35795024037361145, -0.4864918887615204, -1.0523381233215332, -0.5996405482292175, 0.7823271155357361, 0.08434851467609406, -0.1015748605132103, 0.8237066864967346, -0.5629622340202332, -0.8102506399154663, 0.7843004465103149, 0.039746079593896866, 0.21244026720523834, 0.29883909225463867, 1.2656272649765015, 1.557538390159607, -0.19318769872188568, 0.2088930606842041, 0.0942218154668808, 0.6467500329017639, -0.7583659887313843, -0.009740293957293034, -0.3740827739238739, 0.8573700785636902, 0.547469973564148], [-0.10803024470806122, 0.3472050130367279, -1.3867559432983398, -1.0013949871063232, 1.597456455230713, -0.9298052191734314, -0.07315647602081299, 0.670966625213623, -0.02409428358078003, 1.162136197090149, -0.25997188687324524, -0.428402304649353, 1.1951543092727661, 0.27344009280204773, 0.7517148852348328, 0.2237693965435028, 1.0960416793823242, 0.045416008681058884, 0.8402508497238159, 0.032512959092855453, -1.4627599716186523, -0.25145280361175537, 0.33117493987083435, 0.32764098048210144, 0.8005227446556091, 0.6139127016067505, -1.2237861156463623, -0.6302927732467651, -1.1066983938217163, -0.8774165511131287, 1.8914517164230347, 0.31684213876724243, -0.797657310962677, -0.9355025291442871, -0.18468111753463745, 0.4271642863750458, 0.7029919028282166, 0.9825591444969177, -0.7912851572036743, 0.8743581175804138, 1.2341363430023193, 1.087899923324585, -0.1871500313282013, -1.7027710676193237, 1.2393203973770142, -0.16143344342708588, 0.987328052520752, -0.4130585789680481, -0.1285114288330078, -0.21157395839691162, 0.12782572209835052, -0.677768886089325, 0.8478555679321289, 0.2959447503089905, 0.6093969941139221, 0.4559969902038574, -0.17566904425621033, -0.8530757427215576, -0.20257999002933502, 0.43130412697792053, 0.7510742545127869, -0.18099752068519592, -1.038081169128418, 0.5232135653495789, -0.6781173348426819, 0.3314359188079834, -0.12061654776334763, 0.38847675919532776, 0.6336339116096497, -0.03308701515197754, 0.8279466032981873, -0.19248992204666138, -0.23073026537895203, 0.8539828062057495, -0.5214794874191284, 0.29605498909950256, 0.4560015797615051, 0.2997639775276184, 0.3916066884994507, 0.2062450796365738, 0.04434359446167946, -0.10835348814725876, 1.119847059249878, -0.004892975091934204, 0.021995991468429565, 0.40838557481765747, 0.6405155658721924, 0.06745569407939911, -0.1323028802871704, 1.5190749168395996, 1.1403635740280151, 0.31906571984291077, 0.0850621908903122, -0.31419190764427185, 0.7196909189224243, 0.934873640537262, 0.23313365876674652, -0.3400534689426422, -0.4114414155483246, -0.7424763441085815, -1.087171196937561, 0.09090027213096619, 0.30901846289634705, -0.02343606948852539, 0.6793044209480286, 0.8344632983207703, 1.0579661130905151, 0.35417455434799194, -0.4751330614089966, -0.9962804913520813, -1.2223002910614014, 0.1255398690700531, -0.580774188041687, -1.1209951639175415, 0.5541894435882568, -0.10253670811653137, 1.1018993854522705, -0.8175908327102661, -0.8393580913543701, 1.0135090351104736, -1.041237235069275, 0.30930832028388977, 0.6970286965370178, 0.8312110900878906, -0.21631433069705963, 0.19453319907188416, -0.20531730353832245, -0.49589356780052185, -0.3795388340950012, -0.9301047325134277, -0.4772548973560333, 0.31446051597595215, 0.508152425289154, 0.13378335535526276, -0.4649444818496704, -0.09066445380449295, -0.5127943158149719, -0.9644066095352173, 0.18074935674667358, -0.004287809133529663, 0.2758325934410095, -0.10123162716627121, -0.32641950249671936, -0.19916968047618866, 0.5300227403640747, 0.20608378946781158, -0.7564029097557068, -0.32194003462791443, -0.29341816902160645, -0.12263057380914688, -0.3718603253364563, 0.1592249572277069, 0.004845976829528809, 1.048187494277954, -0.4284549653530121, -0.6035504341125488, 0.1439710259437561, -0.2281244546175003, -0.15008284151554108, 1.418912410736084, 0.061906810849905014, -0.13941870629787445, -1.5027809143066406, 1.227439522743225, -0.1446765959262848, -0.24108053743839264, 0.835880696773529, -0.0783153623342514, 0.8295822739601135, 0.8171297907829285, -0.8301950693130493, -0.7563303709030151, -0.2328103929758072, 0.5695480704307556, 0.49576178193092346, -0.7093603610992432, 0.7952898144721985, -0.4276755750179291, -0.11777149140834808, -0.41711148619651794, 0.11977604776620865, -0.3495883345603943, 0.577532172203064, 0.1645776480436325, 0.31180521845817566, -0.9853636622428894, 0.2787514626979828, -0.47743678092956543, -0.9081305861473083, -0.08306695520877838, -1.1159409284591675, 0.3445168435573578, -0.6131823658943176, -0.7001240253448486, -0.566990077495575, -0.13600283861160278, 0.7037816643714905, -0.2077304720878601, -0.1053411066532135, -0.5840564966201782, -0.8611083030700684, -0.22133010625839233, -0.5301491022109985, 0.4884866774082184, -0.37121158838272095, 0.4952692687511444, 0.4311913847923279, 0.10725952684879303, -0.6107922792434692, 0.0817239060997963, 0.20438000559806824, -0.1393672078847885, -0.5135073661804199, 0.2583111822605133, -0.062386274337768555, -0.13647353649139404, 0.6852321028709412, -0.16389989852905273, -0.6137983202934265, 0.6341509819030762, 1.0939406156539917, 1.6805838346481323, -0.04644421488046646, -0.344537615776062, -0.17365853488445282, -0.5476399660110474, -0.09951228648424149, -0.782417893409729, 0.5139321088790894, -0.2100631445646286, -0.0710923820734024, -1.5859142541885376, 1.669706106185913, 1.4387277364730835, -1.5188862085342407, -0.8924114108085632, 0.08964221924543381, -0.018279075622558594, -0.19009041786193848, 1.1682825088500977, 0.3288600444793701, 0.1601848006248474, -0.12376569956541061, -0.6145402789115906, -0.6880741715431213, 0.9324814081192017, 1.469198226928711, -0.4112758934497833, 0.37340256571769714, 0.9598979949951172, 0.5274423956871033, -0.15003298223018646, 1.1312400102615356, -0.09333601593971252, -0.12068314105272293, -0.03840792924165726, 0.2465018481016159, -0.20960062742233276, 0.2974281311035156, 0.5298264622688293, 0.5835583209991455, -0.9906521439552307, -0.9484879970550537, 0.21777822077274323, 0.0254561435431242, -0.75403892993927, 0.1018078476190567, -0.22791935503482819, -0.24258260428905487, 0.5588608384132385, 0.21585221588611603, 0.7124587893486023, -0.2448360174894333, 0.15188264846801758, -0.34520140290260315, 0.284130722284317, -0.5874291062355042, -0.30000990629196167, -0.937060534954071, 0.36757171154022217, -0.45807528495788574, -0.20937035977840424, 0.46456268429756165, 0.4449232220649719, 0.6422581672668457, 0.39152792096138, -0.18159794807434082, 0.8298996090888977, 0.8346670866012573, -0.7169370651245117, 0.18017007410526276, 0.7596414089202881, 0.2598196566104889, 0.39794689416885376, 0.5770818591117859, 0.5851110816001892, 0.9602938890457153, -0.8371198177337646, -0.8645694255828857, -0.14600561559200287, 0.5043753385543823, 0.6762139797210693, 0.7445847392082214, 1.5692627429962158, 0.14670535922050476, 0.4047843813896179, -0.29955318570137024, -0.09197773039340973, 1.0923916101455688, -0.5498515963554382, -1.36883544921875, -0.6297406554222107, -0.8030728101730347, -0.1632879674434662, 0.5927854776382446, 0.7269213199615479, -0.32691100239753723, -0.4764820337295532, 0.14436523616313934, -0.5516148209571838, 0.6247249245643616, -0.3464924395084381, -0.42349350452423096, -0.30280688405036926, -0.02068115770816803, 1.09135103225708, -0.7689036130905151, -0.5663332343101501, 0.25942811369895935, -0.5830487012863159, 0.42803776264190674, -0.13617528975009918, 1.901279330253601, -0.3088757395744324, -1.134390950202942, -0.5900744795799255, 0.007220372557640076, 0.8615641593933105, 0.1216689720749855, 0.2357373684644699, -0.018059812486171722, 0.009683946147561073, -0.4080376625061035, -0.7963724732398987, 0.660847544670105, -0.7014608383178711, -0.16184931993484497, -0.10381872951984406, -0.01162794791162014, -0.4838868975639343, -1.1347792148590088, -0.1396559476852417, -0.09749042987823486, -0.4805760085582733, 0.3536263704299927, 0.6989927887916565, -0.16909857094287872, 1.1401946544647217, 0.18073225021362305, -0.4693087339401245, -0.3614281415939331, -0.6893006563186646, -0.6359832286834717, -0.5466911196708679, 1.3625342845916748, 0.7433173060417175, 0.6102838516235352, 0.48529496788978577, 0.34583529829978943, 0.19923223555088043, -0.5845617055892944, -0.3508816957473755, 0.6784693002700806, -0.006585713475942612, -0.1406848132610321, -1.2645795345306396, -0.45277974009513855, -0.11556418240070343, -0.06510362029075623, 0.27387356758117676, 0.16908438503742218, 0.020812075585126877, -0.5640627145767212, 0.022693052887916565, 1.2461168766021729, 0.500819206237793, 0.2285609096288681, -0.4283369779586792, -0.33665144443511963, -0.1810532808303833, -0.34758260846138, 0.573769211769104, -0.5749596357345581, 0.16750460863113403, 0.38593217730522156, -0.02518557570874691, 0.041769180446863174, 0.8056637644767761, -0.2945050299167633, 0.3334181606769562, -1.4116766452789307, -1.1895209550857544, -0.16609348356723785, 0.8111449480056763, 0.019099289551377296, -0.34159716963768005, -0.17293289303779602, -0.4130823612213135, -0.10700157284736633, 0.22056472301483154, -0.16766734421253204, -0.29756227135658264, 0.5098986625671387, -0.23096773028373718, 0.10106872022151947, 1.4043045043945312, 0.4767838418483734, -0.31594058871269226, -0.18595068156719208, 0.3989467918872833, 0.8094147443771362, -1.0115687847137451, -0.2544604539871216, -0.31360602378845215, 0.8565862774848938, 0.23601314425468445, 0.3279257118701935, 0.7347729206085205, 0.6132856607437134, -0.6900837421417236, 0.8119152784347534, 0.6085273027420044, 0.36015966534614563, 0.48074325919151306, -0.20505790412425995, 0.18329574167728424, -0.5554497838020325, -0.11281408369541168, -0.4467746317386627, -0.6314408779144287, -0.23607119917869568, -0.26331520080566406, -1.0279309749603271, -0.25221943855285645, 0.5086572170257568, 0.8471421599388123, -0.08767980337142944, -0.32045501470565796, -0.9631993770599365, 0.5875962972640991, 0.4680434763431549, -0.5377574563026428, 0.2504006028175354, 0.7213531732559204, 1.5051029920578003, -0.45662081241607666, 0.12625201046466827, -0.44876301288604736, 0.07496130466461182, -0.18367940187454224, 0.5839053988456726, 0.360278457403183, -1.048757553100586, 0.351622611284256, -0.5274584293365479, -0.28545212745666504, 0.13164283335208893, 0.7956319451332092, 1.0031068325042725, 0.466185986995697, -0.5337311625480652, 0.13855229318141937, -0.5219939351081848, -0.8297187089920044, -0.7594203352928162, 0.10916180163621902, 0.10970363765954971, 0.33899372816085815, 0.004117108881473541, 1.5897804498672485, -0.6602464318275452, -0.42971935868263245, 0.2793000042438507, -1.254390001296997, 0.23390929400920868, -0.30011221766471863, 0.7180382013320923, -0.12662529945373535, -0.5441002249717712, 0.24227750301361084, -0.4176989197731018, 0.4496128261089325, 0.1916390210390091, 0.4658207893371582, -0.1689179390668869, -0.24575510621070862, 0.5418820977210999, 0.8739117383956909, -0.16664887964725494, -0.027964450418949127, 0.5665596723556519, 1.1837794780731201, -0.09069569408893585, -0.10395780950784683, 0.19623081386089325, 0.17178572714328766, 0.4461663067340851, 0.04133104532957077, -0.8000134825706482, -0.031742535531520844, -0.6163975596427917, -0.8058049082756042, 0.17490467429161072, 0.717471182346344, 0.7233355641365051, -0.4856531023979187, 0.632508397102356, 0.5897984504699707, -0.6401344537734985, 0.2410484105348587, 0.3017038404941559, -0.04607916623353958, 0.11550198495388031, -0.33801504969596863, -1.3354641199111938, 1.4978643655776978, -0.06191682070493698, -0.982734203338623, 0.5058057308197021, 0.30719244480133057, -0.6410292387008667, -0.043716058135032654, -0.8053435683250427, -0.442647248506546, 1.2412723302841187, -0.8722198009490967, -0.9928833842277527, 0.04996838793158531, -0.4664388597011566, 0.585377037525177, -0.7189899682998657, -0.7318633198738098, 0.10542716830968857, 0.6384883522987366, -1.7885401248931885, 0.052639249712228775, -0.09192822873592377, 0.19713804125785828, -0.29576823115348816, 0.2595024108886719, -0.6278185844421387, -0.4125734865665436, -0.4372769892215729, -0.4459678530693054, 0.5474146604537964, -1.0708118677139282, 0.8697524666786194, -0.20798033475875854, 0.023504897952079773, -0.5528010725975037, 0.7056105732917786, -0.26030027866363525, 0.5171338319778442, 0.6855929493904114, -1.3402472734451294, -0.0017471984028816223, 0.3290405869483948, -1.1069139242172241, 0.24133458733558655, 0.511512815952301, 0.2915850579738617, -2.298755645751953, -1.3598226308822632, -0.7677887082099915, 0.4114227890968323, 0.10521525889635086, -0.1108708381652832, 0.08725932985544205, -1.1668559312820435, -1.1268017292022705, -0.5264861583709717, -0.8325028419494629, 0.12818565964698792, 0.8102801442146301, -0.2851441502571106, -0.16373063623905182, -1.1708650588989258, 0.0057720765471458435, -0.0043027363717556, -0.5300033092498779, -0.27697303891181946, -0.8213955760002136, 0.9634449481964111, -0.27715325355529785, 0.9984115958213806, 0.25654736161231995, 0.9573509693145752, -0.18832166492938995, -1.783003330230713, 0.3052951693534851, -0.5018310546875, -0.16634772717952728, 0.36969688534736633, -1.5886564254760742, 0.6805827021598816, -0.35975757241249084, -0.8461042046546936, -0.47136980295181274, 0.5099180340766907, 0.10350655019283295, -0.30822500586509705, 0.1516025960445404, 0.0456978976726532, -0.276780366897583, 0.9917379021644592, 0.05157153308391571, 0.8071220517158508, 0.07118123024702072, 1.0369011163711548, -0.44194626808166504, 0.4902377426624298, -1.2149174213409424, 0.1666260063648224, -1.13372802734375, -0.732029378414154, -0.17003370821475983, -1.233503818511963, -0.1690937578678131, -0.39434051513671875, 0.5694332718849182, -0.21675308048725128, -0.03621402382850647, -0.5672090649604797, -1.2369126081466675, -0.38411441445350647, 0.13190169632434845, -0.3846810460090637, 0.3536974787712097, -0.14243756234645844, 0.042104944586753845, -0.36129042506217957, -0.9234910607337952, -0.3988179862499237, 0.39144983887672424, -0.34933996200561523, -0.7392917275428772, 1.0006052255630493, 0.5835909247398376, 0.2329438328742981, -0.5307384729385376, 0.765368640422821, 1.348490595817566, 0.43578729033470154, -0.09257323294878006, -0.10438999533653259, 0.47601422667503357, 0.6774281859397888, 0.03192742168903351, 0.4607701897621155, -0.14827267825603485, 0.8311569094657898, -0.4158247709274292, -0.7263569831848145, -0.6198006868362427, -0.9136744737625122, 0.48752471804618835, 0.3523443639278412, 0.168767511844635, -0.4492863714694977, 0.23201411962509155, 0.918898344039917, 0.4935806393623352, 0.4994943141937256, -0.03224553167819977, 0.33522164821624756, -0.10162080079317093, 0.338957816362381, 0.4597085416316986, 0.6562201380729675, -0.3718439042568207, 0.32924535870552063, 0.24204391241073608, 0.28452107310295105, -0.3704371154308319, -0.05397750437259674, -1.4487426280975342, -0.07088515907526016, -1.0959362983703613, 0.18680298328399658, 0.44731706380844116, -1.1950945854187012, -0.6476463079452515, -0.7034520506858826, -0.21060946583747864, 0.3325422704219818, 0.37415555119514465, -0.4448671042919159, 0.804550290107727, -0.10209913551807404, 0.36941659450531006, 0.08681356906890869, 0.5478684306144714, -0.15338967740535736, -0.17251597344875336, -0.0783483162522316, -1.170065999031067, 0.4873584508895874, -0.12334025651216507, 0.5293481945991516, -0.7621291279792786, -0.3377223312854767, -0.23052777349948883, -0.7775793671607971, 1.43929123878479, 1.7442326545715332, 0.45273178815841675, -0.5062747597694397, 0.23287178575992584, -0.07881148159503937, 0.8158915042877197, 1.6476668119430542, -0.4998853802680969, -0.3804246783256531, -1.17522394657135, 0.2981271743774414, -0.9635002017021179, 0.32361164689064026, -0.03217312693595886, 1.3228858709335327, -0.056430649012327194, 0.8136886954307556, -0.09308073669672012, -0.7304412722587585, -0.3456195592880249, -0.25690367817878723, 0.7528963088989258, -1.4077025651931763, -0.43597012758255005, 0.5651123523712158, -0.6947013735771179, 0.8877063393592834, -0.23391039669513702, 0.6159376502037048, 0.20393827557563782, -0.10710039734840393, -0.6595228910446167, -1.300212025642395, -0.6338443756103516, 0.37607112526893616, 0.1107223704457283, 0.6898693442344666, -0.9123657941818237, -0.48099485039711, 0.13577139377593994, -0.2159823179244995, 0.09535093605518341, 0.32347390055656433, 1.0419667959213257, 1.0428240299224854, 1.0116685628890991, 0.151570662856102, -0.9761862754821777, 1.0560622215270996, -0.0707591325044632, -0.13335853815078735, 0.06970356404781342, -0.5406243801116943, 0.5455614924430847]], node_map={'5aca51fd-22c4-45c3-b7b3-50ed488de038': Node(page_content='How to Do Great Work\\n\\nJuly 2023\\n\\nIf you collected lists of techniques for doing great work in a lot of different fields, what would the intersection look like? I decided to find out by making it.\\n\\nPartly my goal was to create a guide that could be used by someone working in any field. But I was also curious about the shape of the intersection. And one thing this exercise shows is that it does have a definite shape; it\\'s not just a point labelled \"work hard.\"\\n\\nThe following recipe assumes you\\'re very ambitious.\\n\\nThe first step is to decide what to work on. The work you choose needs to have three qualities: it has to be something you have a natural aptitude for, that you have a deep interest in, and that offers scope to do great work.\\n\\nIn practice you don\\'t have to worry much about the third criterion. Ambitious people are if anything already too conservative about it. So all you need to do is find something you have an aptitude for and great interest in. [1]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5aca51fd-22c4-45c3-b7b3-50ed488de038'), 'ea8d692d-2d93-41a6-b814-721f8a0eba80': Node(page_content='That sounds straightforward, but it\\'s often quite difficult. When you\\'re young you don\\'t know what you\\'re good at or what different kinds of work are like. Some kinds of work you end up doing may not even exist yet. So while some people know what they want to do at 14, most have to figure it out.\\n\\nThe way to figure out what to work on is by working. If you\\'re not sure what to work on, guess. But pick something and get going. You\\'ll probably guess wrong some of the time, but that\\'s fine. It\\'s good to know about multiple things; some of the biggest discoveries come from noticing connections between different fields.\\n\\nDevelop a habit of working on your own projects. Don\\'t let \"work\" mean something other people tell you to do. If you do manage to do great work one day, it will probably be on a project of your own. It may be within some bigger project, but you\\'ll be driving your part of it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ea8d692d-2d93-41a6-b814-721f8a0eba80', wins=1), 'defa86f2-201a-493b-9e51-4c52b6d22f82': Node(page_content=\"What should your projects be? Whatever seems to you excitingly ambitious. As you grow older and your taste in projects evolves, exciting and important will converge. At 7 it may seem excitingly ambitious to build huge things out of Lego, then at 14 to teach yourself calculus, till at 21 you're starting to explore unanswered questions in physics. But always preserve excitingness.\\n\\nThere's a kind of excited curiosity that's both the engine and the rudder of great work. It will not only drive you, but if you let it have its way, will also show you what to work on.\\n\\nWhat are you excessively curious about — curious to a degree that would bore most other people? That's what you're looking for.\\n\\nOnce you've found something you're excessively interested in, the next step is to learn enough about it to get you to one of the frontiers of knowledge. Knowledge expands fractally, and from a distance its edges look smooth, but once you learn enough to get close to one, they turn out to be full of gaps.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='defa86f2-201a-493b-9e51-4c52b6d22f82'), '7a41dd22-0f90-4920-9659-427308ab5374': Node(page_content=\"The next step is to notice them. This takes some skill, because your brain wants to ignore such gaps in order to make a simpler model of the world. Many discoveries have come from asking questions about things that everyone else took for granted. [2]\\n\\nIf the answers seem strange, so much the better. Great work often has a tincture of strangeness. You see this from painting to math. It would be affected to try to manufacture it, but if it appears, embrace it.\\n\\nBoldly chase outlier ideas, even if other people aren't interested in them — in fact, especially if they aren't. If you're excited about some possibility that everyone else ignores, and you have enough expertise to say precisely what they're all overlooking, that's as good a bet as you'll find. [3]\\n\\nFour steps: choose a field, learn enough to get to the frontier, notice gaps, explore promising ones. This is how practically everyone who's done great work has done it, from painters to physicists.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7a41dd22-0f90-4920-9659-427308ab5374'), 'fbe6561c-75ae-48bf-8f1e-285cae90085e': Node(page_content=\"Steps two and four will require hard work. It may not be possible to prove that you have to work hard to do great things, but the empirical evidence is on the scale of the evidence for mortality. That's why it's essential to work on something you're deeply interested in. Interest will drive you to work harder than mere diligence ever could.\\n\\nThe three most powerful motives are curiosity, delight, and the desire to do something impressive. Sometimes they converge, and that combination is the most powerful of all.\\n\\nThe big prize is to discover a new fractal bud. You notice a crack in the surface of knowledge, pry it open, and there's a whole world inside.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='fbe6561c-75ae-48bf-8f1e-285cae90085e'), 'e1a13047-9806-4639-a2a6-9404cfd2b86b': Node(page_content=\"Let's talk a little more about the complicated business of figuring out what to work on. The main reason it's hard is that you can't tell what most kinds of work are like except by doing them. Which means the four steps overlap: you may have to work at something for years before you know how much you like it or how good you are at it. And in the meantime you're not doing, and thus not learning about, most other kinds of work. So in the worst case you choose late based on very incomplete information. [4]\\n\\nThe nature of ambition exacerbates this problem. Ambition comes in two forms, one that precedes interest in the subject and one that grows out of it. Most people who do great work have a mix, and the more you have of the former, the harder it will be to decide what to do.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e1a13047-9806-4639-a2a6-9404cfd2b86b'), 'cd2f5b64-32e8-42f0-ba14-4f22a0d37803': Node(page_content=\"The educational systems in most countries pretend it's easy. They expect you to commit to a field long before you could know what it's really like. And as a result an ambitious person on an optimal trajectory will often read to the system as an instance of breakage.\\n\\nIt would be better if they at least admitted it — if they admitted that the system not only can't do much to help you figure out what to work on, but is designed on the assumption that you'll somehow magically guess as a teenager. They don't tell you, but I will: when it comes to figuring out what to work on, you're on your own. Some people get lucky and do guess correctly, but the rest will find themselves scrambling diagonally across tracks laid down on the assumption that everyone does.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd2f5b64-32e8-42f0-ba14-4f22a0d37803'), 'ed92cc5f-6350-4ac8-9097-605342ed58f1': Node(page_content=\"What should you do if you're young and ambitious but don't know what to work on? What you should not do is drift along passively, assuming the problem will solve itself. You need to take action. But there is no systematic procedure you can follow. When you read biographies of people who've done great work, it's remarkable how much luck is involved. They discover what to work on as a result of a chance meeting, or by reading a book they happen to pick up. So you need to make yourself a big target for luck, and the way to do that is to be curious. Try lots of things, meet lots of people, read lots of books, ask lots of questions. [5]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ed92cc5f-6350-4ac8-9097-605342ed58f1', wins=1), '9dbdc198-e1f6-446b-9b95-bbd6be77492e': Node(page_content=\"When in doubt, optimize for interestingness. Fields change as you learn more about them. What mathematicians do, for example, is very different from what you do in high school math classes. So you need to give different types of work a chance to show you what they're like. But a field should become increasingly interesting as you learn more about it. If it doesn't, it's probably not for you.\\n\\nDon't worry if you find you're interested in different things than other people. The stranger your tastes in interestingness, the better. Strange tastes are often strong ones, and a strong taste for work means you'll be productive. And you're more likely to find new things if you're looking where few have looked before.\\n\\nOne sign that you're suited for some kind of work is when you like even the parts that other people find tedious or frightening.\\n\\nBut fields aren't people; you don't owe them any loyalty. If in the course of working on one thing you discover another that's more exciting, don't be afraid to switch.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dbdc198-e1f6-446b-9b95-bbd6be77492e'), 'ebd76502-a324-4fe9-86db-58b4f1184052': Node(page_content=\"If you're making something for people, make sure it's something they actually want. The best way to do this is to make something you yourself want. Write the story you want to read; build the tool you want to use. Since your friends probably have similar interests, this will also get you your initial audience.\\n\\nThis should follow from the excitingness rule. Obviously the most exciting story to write will be the one you want to read. The reason I mention this case explicitly is that so many people get it wrong. Instead of making what they want, they try to make what some imaginary, more sophisticated audience wants. And once you go down that route, you're lost. [6]\\n\\nThere are a lot of forces that will lead you astray when you're trying to figure out what to work on. Pretentiousness, fashion, fear, money, politics, other people's wishes, eminent frauds. But if you stick to what you find genuinely interesting, you'll be proof against all of them. If you're interested, you're not astray.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebd76502-a324-4fe9-86db-58b4f1184052'), 'bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa': Node(page_content=\"Following your interests may sound like a rather passive strategy, but in practice it usually means following them past all sorts of obstacles. You usually have to risk rejection and failure. So it does take a good deal of boldness.\\n\\nBut while you need boldness, you don't usually need much planning. In most cases the recipe for doing great work is simply: work hard on excitingly ambitious projects, and something good will come of it. Instead of making a plan and then executing it, you just try to preserve certain invariants.\\n\\nThe trouble with planning is that it only works for achievements you can describe in advance. You can win a gold medal or get rich by deciding to as a child and then tenaciously pursuing that goal, but you can't discover natural selection that way.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='bb5e7dd5-75e8-408f-8552-cf5d06cb1dfa'), '2f6da706-f47d-4336-b3f6-78ff254eae9c': Node(page_content='I think for most people who want to do great work, the right strategy is not to plan too much. At each stage do whatever seems most interesting and gives you the best options for the future. I call this approach \"staying upwind.\" This is how most people who\\'ve done great work seem to have done it.\\n\\nEven when you\\'ve found something exciting to work on, working on it is not always straightforward. There will be times when some new idea makes you leap out of bed in the morning and get straight to work. But there will also be plenty of times when things aren\\'t like that.\\n\\nYou don\\'t just put out your sail and get blown forward by inspiration. There are headwinds and currents and hidden shoals. So there\\'s a technique to working, just as there is to sailing.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2f6da706-f47d-4336-b3f6-78ff254eae9c'), '29ad26ae-8a90-4634-aff2-b4f662e421e0': Node(page_content=\"For example, while you must work hard, it's possible to work too hard, and if you do that you'll find you get diminishing returns: fatigue will make you stupid, and eventually even damage your health. The point at which work yields diminishing returns depends on the type. Some of the hardest types you might only be able to do for four or five hours a day.\\n\\nIdeally those hours will be contiguous. To the extent you can, try to arrange your life so you have big blocks of time to work in. You'll shy away from hard tasks if you know you might be interrupted.\\n\\nIt will probably be harder to start working than to keep working. You'll often have to trick yourself to get over that initial threshold. Don't worry about this; it's the nature of work, not a flaw in your character. Work has a sort of activation energy, both per day and per project. And since this threshold is fake in the sense that it's higher than the energy required to keep going, it's ok to tell yourself a lie of corresponding magnitude to get over it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='29ad26ae-8a90-4634-aff2-b4f662e421e0'), 'cd668cf0-3881-44b4-ad84-628203f14f72': Node(page_content='It\\'s usually a mistake to lie to yourself if you want to do great work, but this is one of the rare cases where it isn\\'t. When I\\'m reluctant to start work in the morning, I often trick myself by saying \"I\\'ll just read over what I\\'ve got so far.\" Five minutes later I\\'ve found something that seems mistaken or incomplete, and I\\'m off.\\n\\nSimilar techniques work for starting new projects. It\\'s ok to lie to yourself about how much work a project will entail, for example. Lots of great things began with someone saying \"How hard could it be?\"\\n\\nThis is one case where the young have an advantage. They\\'re more optimistic, and even though one of the sources of their optimism is ignorance, in this case ignorance can sometimes beat knowledge.\\n\\nTry to finish what you start, though, even if it turns out to be more work than you expected. Finishing things is not just an exercise in tidiness or self-discipline. In many projects a lot of the best work happens in what was meant to be the final stage.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='cd668cf0-3881-44b4-ad84-628203f14f72'), '25f94528-87d2-4c1a-9f75-3670e66aefd6': Node(page_content=\"Another permissible lie is to exaggerate the importance of what you're working on, at least in your own mind. If that helps you discover something new, it may turn out not to have been a lie after all. [7]\\n\\nSince there are two senses of starting work — per day and per project — there are also two forms of procrastination. Per-project procrastination is far the more dangerous. You put off starting that ambitious project from year to year because the time isn't quite right. When you're procrastinating in units of years, you can get a lot not done. [8]\\n\\nOne reason per-project procrastination is so dangerous is that it usually camouflages itself as work. You're not just sitting around doing nothing; you're working industriously on something else. So per-project procrastination doesn't set off the alarms that per-day procrastination does. You're too busy to notice it.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='25f94528-87d2-4c1a-9f75-3670e66aefd6'), '7fae8eb9-3a0f-4651-9d30-3973508310f4': Node(page_content=\"The way to beat it is to stop occasionally and ask yourself: Am I working on what I most want to work on? When you're young it's ok if the answer is sometimes no, but this gets increasingly dangerous as you get older. [9]\\n\\nGreat work usually entails spending what would seem to most people an unreasonable amount of time on a problem. You can't think of this time as a cost, or it will seem too high. You have to find the work sufficiently engaging as it's happening.\\n\\nThere may be some jobs where you have to work diligently for years at things you hate before you get to the good part, but this is not how great work happens. Great work happens by focusing consistently on something you're genuinely interested in. When you pause to take stock, you're surprised how far you've come.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7fae8eb9-3a0f-4651-9d30-3973508310f4'), '1f84089c-1ae3-4652-9f00-ba02164c24d3': Node(page_content=\"The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='1f84089c-1ae3-4652-9f00-ba02164c24d3', wins=1), '857bbce1-c4c8-4095-b9ac-c988d50addfc': Node(page_content=\"Something that grows exponentially can become so valuable that it's worth making an extraordinary effort to get it started. But since we underrate exponential growth early on, this too is mostly done unconsciously: people push through the initial, unrewarding phase of learning something new because they know from experience that learning new things always takes an initial push, or they grow their audience one fan at a time because they have nothing better to do. If people consciously realized they could invest in exponential growth, many more would do it.\\n\\nWork doesn't just happen when you're trying to. There's a kind of undirected thinking you do when walking or taking a shower or lying in bed that can be very powerful. By letting your mind wander a little, you'll often solve problems you were unable to solve by frontal attack.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='857bbce1-c4c8-4095-b9ac-c988d50addfc'), 'f41b7677-9e6c-46e2-92fd-993606e5835e': Node(page_content=\"You have to be working hard in the normal way to benefit from this phenomenon, though. You can't just walk around daydreaming. The daydreaming has to be interleaved with deliberate work that feeds it questions. [10]\\n\\nEveryone knows to avoid distractions at work, but it's also important to avoid them in the other half of the cycle. When you let your mind wander, it wanders to whatever you care about most at that moment. So avoid the kind of distraction that pushes your work out of the top spot, or you'll waste this valuable type of thinking on the distraction instead. (Exception: Don't avoid love.)\\n\\nConsciously cultivate your taste in the work done in your field. Until you know which is the best and what makes it so, you don't know what you're aiming for.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f41b7677-9e6c-46e2-92fd-993606e5835e'), '4cb188bc-4106-4204-a6c7-ea3752f34543': Node(page_content=\"And that is what you're aiming for, because if you don't try to be the best, you won't even be good. This observation has been made by so many people in so many different fields that it might be worth thinking about why it's true. It could be because ambition is a phenomenon where almost all the error is in one direction — where almost all the shells that miss the target miss by falling short. Or it could be because ambition to be the best is a qualitatively different thing from ambition to be good. Or maybe being good is simply too vague a standard. Probably all three are true. [11]\\n\\nFortunately there's a kind of economy of scale here. Though it might seem like you'd be taking on a heavy burden by trying to be the best, in practice you often end up net ahead. It's exciting, and also strangely liberating. It simplifies things. In some ways it's easier to try to be the best than to try merely to be good.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cb188bc-4106-4204-a6c7-ea3752f34543', wins=1), 'b2c1b809-e821-452c-a352-4b82293e0d98': Node(page_content=\"One way to aim high is to try to make something that people will care about in a hundred years. Not because their opinions matter more than your contemporaries', but because something that still seems good in a hundred years is more likely to be genuinely good.\\n\\nDon't try to work in a distinctive style. Just try to do the best job you can; you won't be able to help doing it in a distinctive way.\\n\\nStyle is doing things in a distinctive way without trying to. Trying to is affectation.\\n\\nAffectation is in effect to pretend that someone other than you is doing the work. You adopt an impressive but fake persona, and while you're pleased with the impressiveness, the fakeness is what shows in the work. [12]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b2c1b809-e821-452c-a352-4b82293e0d98'), 'a49d877b-69b4-4171-880a-9931fd094a4d': Node(page_content='The temptation to be someone else is greatest for the young. They often feel like nobodies. But you never need to worry about that problem, because it\\'s self-solving if you work on sufficiently ambitious projects. If you succeed at an ambitious project, you\\'re not a nobody; you\\'re the person who did it. So just do the work and your identity will take care of itself.\\n\\n\"Avoid affectation\" is a useful rule so far as it goes, but how would you express this idea positively? How would you say what to be, instead of what not to be? The best answer is earnest. If you\\'re earnest you avoid not just affectation but a whole set of similar vices.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='a49d877b-69b4-4171-880a-9931fd094a4d'), '88e2775e-93a9-47b0-a512-2fb4080c590b': Node(page_content=\"The core of being earnest is being intellectually honest. We're taught as children to be honest as an unselfish virtue — as a kind of sacrifice. But in fact it's a source of power too. To see new ideas, you need an exceptionally sharp eye for the truth. You're trying to see more truth than others have seen so far. And how can you have a sharp eye for the truth if you're intellectually dishonest?\\n\\nOne way to avoid intellectual dishonesty is to maintain a slight positive pressure in the opposite direction. Be aggressively willing to admit that you're mistaken. Once you've admitted you were mistaken about something, you're free. Till then you have to carry it. [13]\\n\\nAnother more subtle component of earnestness is informality. Informality is much more important than its grammatically negative name implies. It's not merely the absence of something. It means focusing on what matters instead of what doesn't.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88e2775e-93a9-47b0-a512-2fb4080c590b', wins=2), '6546e3fd-326b-413e-a345-374e27163847': Node(page_content='What formality and affectation have in common is that as well as doing the work, you\\'re trying to seem a certain way as you\\'re doing it. But any energy that goes into how you seem comes out of being good. That\\'s one reason nerds have an advantage in doing great work: they expend little effort on seeming anything. In fact that\\'s basically the definition of a nerd.\\n\\nNerds have a kind of innocent boldness that\\'s exactly what you need in doing great work. It\\'s not learned; it\\'s preserved from childhood. So hold onto it. Be the one who puts things out there rather than the one who sits back and offers sophisticated-sounding criticisms of them. \"It\\'s easy to criticize\" is true in the most literal sense, and the route to great work is never easy.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6546e3fd-326b-413e-a345-374e27163847'), '531a5c72-e191-4563-863a-a797751b1fc6': Node(page_content=\"There may be some jobs where it's an advantage to be cynical and pessimistic, but if you want to do great work it's an advantage to be optimistic, even though that means you'll risk looking like a fool sometimes. There's an old tradition of doing the opposite. The Old Testament says it's better to keep quiet lest you look like a fool. But that's advice for seeming smart. If you actually want to discover new things, it's better to take the risk of telling people your ideas.\\n\\nSome people are naturally earnest, and with others it takes a conscious effort. Either kind of earnestness will suffice. But I doubt it would be possible to do great work without being earnest. It's so hard to do even if you are. You don't have enough margin for error to accommodate the distortions introduced by being affected, intellectually dishonest, orthodox, fashionable, or cool. [14]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='531a5c72-e191-4563-863a-a797751b1fc6', wins=2), 'c333306a-d7e5-4c78-b4ce-bebcee166ce5': Node(page_content=\"Great work is consistent not only with who did it, but with itself. It's usually all of a piece. So if you face a decision in the middle of working on something, ask which choice is more consistent.\\n\\nYou may have to throw things away and redo them. You won't necessarily have to, but you have to be willing to. And that can take some effort; when there's something you need to redo, status quo bias and laziness will combine to keep you in denial about it. To beat this ask: If I'd already made the change, would I want to revert to what I have now?\\n\\nHave the confidence to cut. Don't keep something that doesn't fit just because you're proud of it, or because it cost you a lot of effort.\\n\\nIndeed, in some kinds of work it's good to strip whatever you're doing to its essence. The result will be more concentrated; you'll understand it better; and you won't be able to lie to yourself about whether there's anything real there.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c333306a-d7e5-4c78-b4ce-bebcee166ce5'), 'c75308b1-0b08-4e09-a009-df856bef3945': Node(page_content='Mathematical elegance may sound like a mere metaphor, drawn from the arts. That\\'s what I thought when I first heard the term \"elegant\" applied to a proof. But now I suspect it\\'s conceptually prior — that the main ingredient in artistic elegance is mathematical elegance. At any rate it\\'s a useful standard well beyond math.\\n\\nElegance can be a long-term bet, though. Laborious solutions will often have more prestige in the short term. They cost a lot of effort and they\\'re hard to understand, both of which impress people, at least temporarily.\\n\\nWhereas some of the very best work will seem like it took comparatively little effort, because it was in a sense already there. It didn\\'t have to be built, just seen. It\\'s a very good sign when it\\'s hard to say whether you\\'re creating something or discovering it.\\n\\nWhen you\\'re doing work that could be seen as either creation or discovery, err on the side of discovery. Try thinking of yourself as a mere conduit through which the ideas take their natural shape.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c75308b1-0b08-4e09-a009-df856bef3945', wins=1), '4f2c5ade-5e17-4002-a1a4-2187f5d88171': Node(page_content=\"(Strangely enough, one exception is the problem of choosing a problem to work on. This is usually seen as search, but in the best case it's more like creating something. In the best case you create the field in the process of exploring it.)\\n\\nSimilarly, if you're trying to build a powerful tool, make it gratuitously unrestrictive. A powerful tool almost by definition will be used in ways you didn't expect, so err on the side of eliminating restrictions, even if you don't know what the benefit will be.\\n\\nGreat work will often be tool-like in the sense of being something others build on. So it's a good sign if you're creating ideas that others could use, or exposing questions that others could answer. The best ideas have implications in many different areas.\\n\\nIf you express your ideas in the most general form, they'll be truer than you intended.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4f2c5ade-5e17-4002-a1a4-2187f5d88171'), '599933be-8cc7-47b3-9079-771faeffc324': Node(page_content='True by itself is not enough, of course. Great ideas have to be true and new. And it takes a certain amount of ability to see new ideas even once you\\'ve learned enough to get to one of the frontiers of knowledge.\\n\\nIn English we give this ability names like originality, creativity, and imagination. And it seems reasonable to give it a separate name, because it does seem to some extent a separate skill. It\\'s possible to have a great deal of ability in other respects — to have a great deal of what\\'s often called \"technical ability\" — and yet not have much of this.\\n\\nI\\'ve never liked the term \"creative process.\" It seems misleading. Originality isn\\'t a process, but a habit of mind. Original thinkers throw off new ideas about whatever they focus on, like an angle grinder throwing off sparks. They can\\'t help it.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='599933be-8cc7-47b3-9079-771faeffc324'), 'df268d9c-bb83-4274-adec-131a05765453': Node(page_content=\"If the thing they're focused on is something they don't understand very well, these new ideas might not be good. One of the most original thinkers I know decided to focus on dating after he got divorced. He knew roughly as much about dating as the average 15 year old, and the results were spectacularly colorful. But to see originality separated from expertise like that made its nature all the more clear.\\n\\nI don't know if it's possible to cultivate originality, but there are definitely ways to make the most of however much you have. For example, you're much more likely to have original ideas when you're working on something. Original ideas don't come from trying to have original ideas. They come from trying to build or understand something slightly too difficult. [15]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='df268d9c-bb83-4274-adec-131a05765453'), '7390fd94-b307-468e-9888-4ba2fc15eb38': Node(page_content=\"Talking or writing about the things you're interested in is a good way to generate new ideas. When you try to put ideas into words, a missing idea creates a sort of vacuum that draws it out of you. Indeed, there's a kind of thinking that can only be done by writing.\\n\\nChanging your context can help. If you visit a new place, you'll often find you have new ideas there. The journey itself often dislodges them. But you may not have to go far to get this benefit. Sometimes it's enough just to go for a walk. [16]\\n\\nIt also helps to travel in topic space. You'll have more new ideas if you explore lots of different topics, partly because it gives the angle grinder more surface area to work on, and partly because analogies are an especially fruitful source of new ideas.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='7390fd94-b307-468e-9888-4ba2fc15eb38'), '9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b': Node(page_content=\"Don't divide your attention evenly between many topics though, or you'll spread yourself too thin. You want to distribute it according to something more like a power law. [17] Be professionally curious about a few topics and idly curious about many more.\\n\\nCuriosity and originality are closely related. Curiosity feeds originality by giving it new things to work on. But the relationship is closer than that. Curiosity is itself a kind of originality; it's roughly to questions what originality is to answers. And since questions at their best are a big component of answers, curiosity at its best is a creative force.\\n\\nHaving new ideas is a strange game, because it usually consists of seeing things that were right under your nose. Once you've seen a new idea, it tends to seem obvious. Why did no one think of this before?\\n\\nWhen an idea seems simultaneously novel and obvious, it's probably a good one.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9bc85ac1-2e33-4f32-a2b8-c66b4b7f217b'), '6f83f951-f81a-4afc-9dbc-91e43bbaea88': Node(page_content=\"Seeing something obvious sounds easy. And yet empirically having new ideas is hard. What's the source of this apparent contradiction? It's that seeing the new idea usually requires you to change the way you look at the world. We see the world through models that both help and constrain us. When you fix a broken model, new ideas become obvious. But noticing and fixing a broken model is hard. That's how new ideas can be both obvious and yet hard to discover: they're easy to see after you do something hard.\\n\\nOne way to discover broken models is to be stricter than other people. Broken models of the world leave a trail of clues where they bash against reality. Most people don't want to see these clues. It would be an understatement to say that they're attached to their current model; it's what they think in; so they'll tend to ignore the trail of clues left by its breakage, however conspicuous it may seem in retrospect.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6f83f951-f81a-4afc-9dbc-91e43bbaea88', wins=1), 'c9a8c206-a7da-456c-82a6-635ab33aa7b3': Node(page_content=\"To find new ideas you have to seize on signs of breakage instead of looking away. That's what Einstein did. He was able to see the wild implications of Maxwell's equations not so much because he was looking for new ideas as because he was stricter.\\n\\nThe other thing you need is a willingness to break rules. Paradoxical as it sounds, if you want to fix your model of the world, it helps to be the sort of person who's comfortable breaking rules. From the point of view of the old model, which everyone including you initially shares, the new model usually breaks at least implicit rules.\\n\\nFew understand the degree of rule-breaking required, because new ideas seem much more conservative once they succeed. They seem perfectly reasonable once you're using the new model of the world they brought with them. But they didn't at the time; it took the greater part of a century for the heliocentric model to be generally accepted, even among astronomers, because it felt so wrong.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c9a8c206-a7da-456c-82a6-635ab33aa7b3'), 'f5be2dd9-c85c-418c-a716-eb0b78880cae': Node(page_content=\"Indeed, if you think about it, a good new idea has to seem bad to most people, or someone would have already explored it. So what you're looking for is ideas that seem crazy, but the right kind of crazy. How do you recognize these? You can't with certainty. Often ideas that seem bad are bad. But ideas that are the right kind of crazy tend to be exciting; they're rich in implications; whereas ideas that are merely bad tend to be depressing.\\n\\nThere are two ways to be comfortable breaking rules: to enjoy breaking them, and to be indifferent to them. I call these two cases being aggressively and passively independent-minded.\\n\\nThe aggressively independent-minded are the naughty ones. Rules don't merely fail to stop them; breaking rules gives them additional energy. For this sort of person, delight at the sheer audacity of a project sometimes supplies enough activation energy to get it started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f5be2dd9-c85c-418c-a716-eb0b78880cae'), 'e2362524-ba22-4fb7-8c77-d289a352850b': Node(page_content=\"The other way to break rules is not to care about them, or perhaps even to know they exist. This is why novices and outsiders often make new discoveries; their ignorance of a field's assumptions acts as a source of temporary passive independent-mindedness. Aspies also seem to have a kind of immunity to conventional beliefs. Several I know say that this helps them to have new ideas.\\n\\nStrictness plus rule-breaking sounds like a strange combination. In popular culture they're opposed. But popular culture has a broken model in this respect. It implicitly assumes that issues are trivial ones, and in trivial matters strictness and rule-breaking are opposed. But in questions that really matter, only rule-breakers can be truly strict.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2362524-ba22-4fb7-8c77-d289a352850b'), '018ff54f-2f81-408b-8b62-20443ab66da9': Node(page_content=\"An overlooked idea often doesn't lose till the semifinals. You do see it, subconsciously, but then another part of your subconscious shoots it down because it would be too weird, too risky, too much work, too controversial. This suggests an exciting possibility: if you could turn off such filters, you could see more new ideas.\\n\\nOne way to do that is to ask what would be good ideas for someone else to explore. Then your subconscious won't shoot them down to protect you.\\n\\nYou could also discover overlooked ideas by working in the other direction: by starting from what's obscuring them. Every cherished but mistaken principle is surrounded by a dead zone of valuable ideas that are unexplored because they contradict it.\\n\\nReligions are collections of cherished but mistaken principles. So anything that can be described either literally or metaphorically as a religion will have valuable unexplored ideas in its shadow. Copernicus and Darwin both made discoveries of this type. [18]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='018ff54f-2f81-408b-8b62-20443ab66da9'), '88ff37b8-75c7-48aa-9441-f8cba80464b1': Node(page_content=\"What are people in your field religious about, in the sense of being too attached to some principle that might not be as self-evident as they think? What becomes possible if you discard it?\\n\\nPeople show much more originality in solving problems than in deciding which problems to solve. Even the smartest can be surprisingly conservative when deciding what to work on. People who'd never dream of being fashionable in any other way get sucked into working on fashionable problems.\\n\\nOne reason people are more conservative when choosing problems than solutions is that problems are bigger bets. A problem could occupy you for years, while exploring a solution might only take days. But even so I think most people are too conservative. They're not merely responding to risk, but to fashion as well. Unfashionable problems are undervalued.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='88ff37b8-75c7-48aa-9441-f8cba80464b1'), '963e48ca-37ea-4002-b0b2-78fa521f3597': Node(page_content=\"One of the most interesting kinds of unfashionable problem is the problem that people think has been fully explored, but hasn't. Great work often takes something that already exists and shows its latent potential. Durer and Watt both did this. So if you're interested in a field that others think is tapped out, don't let their skepticism deter you. People are often wrong about this.\\n\\nWorking on an unfashionable problem can be very pleasing. There's no hype or hurry. Opportunists and critics are both occupied elsewhere. The existing work often has an old-school solidity. And there's a satisfying sense of economy in cultivating ideas that would otherwise be wasted.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='963e48ca-37ea-4002-b0b2-78fa521f3597'), '263b1659-4c96-4db0-a5b9-6e766bc7a928': Node(page_content='But the most common type of overlooked problem is not explicitly unfashionable in the sense of being out of fashion. It just doesn\\'t seem to matter as much as it actually does. How do you find these? By being self-indulgent — by letting your curiosity have its way, and tuning out, at least temporarily, the little voice in your head that says you should only be working on \"important\" problems.\\n\\nYou do need to work on important problems, but almost everyone is too conservative about what counts as one. And if there\\'s an important but overlooked problem in your neighborhood, it\\'s probably already on your subconscious radar screen. So try asking yourself: if you were going to take a break from \"serious\" work to work on something just because it would be really interesting, what would you do? The answer is probably more important than it seems.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='263b1659-4c96-4db0-a5b9-6e766bc7a928', wins=2), 'f3a439f9-a726-4007-90d3-d7e4ac34c811': Node(page_content=\"Originality in choosing problems seems to matter even more than originality in solving them. That's what distinguishes the people who discover whole new fields. So what might seem to be merely the initial step — deciding what to work on — is in a sense the key to the whole game.\\n\\nFew grasp this. One of the biggest misconceptions about new ideas is about the ratio of question to answer in their composition. People think big ideas are answers, but often the real insight was in the question.\\n\\nPart of the reason we underrate questions is the way they're used in schools. In schools they tend to exist only briefly before being answered, like unstable particles. But a really good question can be much more than that. A really good question is a partial discovery. How do new species arise? Is the force that makes objects fall to earth the same as the one that keeps planets in their orbits? By even asking such questions you were already in excitingly novel territory.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f3a439f9-a726-4007-90d3-d7e4ac34c811'), 'ac0c284a-93cc-4f20-8f95-644471bc59e2': Node(page_content=\"Unanswered questions can be uncomfortable things to carry around with you. But the more you're carrying, the greater the chance of noticing a solution — or perhaps even more excitingly, noticing that two unanswered questions are the same.\\n\\nSometimes you carry a question for a long time. Great work often comes from returning to a question you first noticed years before — in your childhood, even — and couldn't stop thinking about. People talk a lot about the importance of keeping your youthful dreams alive, but it's just as important to keep your youthful questions alive. [19]\\n\\nThis is one of the places where actual expertise differs most from the popular picture of it. In the popular picture, experts are certain. But actually the more puzzled you are, the better, so long as (a) the things you're puzzled about matter, and (b) no one else understands them either.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ac0c284a-93cc-4f20-8f95-644471bc59e2'), '43d899d8-1f03-4594-89b0-c8d98a5b6feb': Node(page_content=\"Think about what's happening at the moment just before a new idea is discovered. Often someone with sufficient expertise is puzzled about something. Which means that originality consists partly of puzzlement — of confusion! You have to be comfortable enough with the world being full of puzzles that you're willing to see them, but not so comfortable that you don't want to solve them. [20]\\n\\nIt's a great thing to be rich in unanswered questions. And this is one of those situations where the rich get richer, because the best way to acquire new questions is to try answering existing ones. Questions don't just lead to answers, but also to more questions.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='43d899d8-1f03-4594-89b0-c8d98a5b6feb'), '36d31bd1-f966-4b1b-97de-447c6e1a6413': Node(page_content=\"The best questions grow in the answering. You notice a thread protruding from the current paradigm and try pulling on it, and it just gets longer and longer. So don't require a question to be obviously big before you try answering it. You can rarely predict that. It's hard enough even to notice the thread, let alone to predict how much will unravel if you pull on it.\\n\\nIt's better to be promiscuously curious — to pull a little bit on a lot of threads, and see what happens. Big things start small. The initial versions of big things were often just experiments, or side projects, or talks, which then grew into something bigger. So start lots of small things.\\n\\nBeing prolific is underrated. The more different things you try, the greater the chance of discovering something new. Understand, though, that trying lots of things will mean trying lots of things that don't work. You can't have a lot of good ideas without also having a lot of bad ones. [21]\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='36d31bd1-f966-4b1b-97de-447c6e1a6413'), '2351f0d2-96fe-4a21-845f-11bf4e69dbd6': Node(page_content=\"Though it sounds more responsible to begin by studying everything that's been done before, you'll learn faster and have more fun by trying stuff. And you'll understand previous work better when you do look at it. So err on the side of starting. Which is easier when starting means starting small; those two ideas fit together like two puzzle pieces.\\n\\nHow do you get from starting small to doing something great? By making successive versions. Great things are almost always made in successive versions. You start with something small and evolve it, and the final version is both cleverer and more ambitious than anything you could have planned.\\n\\nIt's particularly useful to make successive versions when you're making something for people — to get an initial version in front of them quickly, and then evolve it based on their response.\\n\\nBegin by trying the simplest thing that could possibly work. Surprisingly often, it does. If it doesn't, this will at least get you started.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2351f0d2-96fe-4a21-845f-11bf4e69dbd6'), '55306b2a-343d-4e44-8b24-25e471975cd3': Node(page_content='Don\\'t try to cram too much new stuff into any one version. There are names for doing this with the first version (taking too long to ship) and the second (the second system effect), but these are both merely instances of a more general principle.\\n\\nAn early version of a new project will sometimes be dismissed as a toy. It\\'s a good sign when people do this. That means it has everything a new idea needs except scale, and that tends to follow. [22]\\n\\nThe alternative to starting with something small and evolving it is to plan in advance what you\\'re going to do. And planning does usually seem the more responsible choice. It sounds more organized to say \"we\\'re going to do x and then y and then z\" than \"we\\'re going to try x and see what happens.\" And it is more organized; it just doesn\\'t work as well.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='55306b2a-343d-4e44-8b24-25e471975cd3'), '8776ddf1-1e65-458c-9cc2-63a7fe40f800': Node(page_content=\"Planning per se isn't good. It's sometimes necessary, but it's a necessary evil — a response to unforgiving conditions. It's something you have to do because you're working with inflexible media, or because you need to coordinate the efforts of a lot of people. If you keep projects small and use flexible media, you don't have to plan as much, and your designs can evolve instead.\\n\\nTake as much risk as you can afford. In an efficient market, risk is proportionate to reward, so don't look for certainty, but for a bet with high expected value. If you're not failing occasionally, you're probably being too conservative.\\n\\nThough conservatism is usually associated with the old, it's the young who tend to make this mistake. Inexperience makes them fear risk, but it's when you're young that you can afford the most.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8776ddf1-1e65-458c-9cc2-63a7fe40f800'), 'c325c260-d37e-4bb0-a8b8-7d2633f1c55e': Node(page_content=\"Even a project that fails can be valuable. In the process of working on it, you'll have crossed territory few others have seen, and encountered questions few others have asked. And there's probably no better source of questions than the ones you encounter in trying to do something slightly too hard.\\n\\nUse the advantages of youth when you have them, and the advantages of age once you have those. The advantages of youth are energy, time, optimism, and freedom. The advantages of age are knowledge, efficiency, money, and power. With effort you can acquire some of the latter when young and keep some of the former when old.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c325c260-d37e-4bb0-a8b8-7d2633f1c55e'), '9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62': Node(page_content='The old also have the advantage of knowing which advantages they have. The young often have them without realizing it. The biggest is probably time. The young have no idea how rich they are in time. The best way to turn this time to advantage is to use it in slightly frivolous ways: to learn about something you don\\'t need to know about, just out of curiosity, or to try building something just because it would be cool, or to become freakishly good at something.\\n\\nThat \"slightly\" is an important qualification. Spend time lavishly when you\\'re young, but don\\'t simply waste it. There\\'s a big difference between doing something you worry might be a waste of time and doing something you know for sure will be. The former is at least a bet, and possibly a better one than you think. [23]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9b3b2bae-02b6-4822-b9bb-ff78d3ec6b62'), '8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7': Node(page_content=\"The most subtle advantage of youth, or more precisely of inexperience, is that you're seeing everything with fresh eyes. When your brain embraces an idea for the first time, sometimes the two don't fit together perfectly. Usually the problem is with your brain, but occasionally it's with the idea. A piece of it sticks out awkwardly and jabs you when you think about it. People who are used to the idea have learned to ignore it, but you have the opportunity not to. [24]\\n\\nSo when you're learning about something for the first time, pay attention to things that seem wrong or missing. You'll be tempted to ignore them, since there's a 99% chance the problem is with you. And you may have to set aside your misgivings temporarily to keep progressing. But don't forget about them. When you've gotten further into the subject, come back and check if they're still there. If they're still viable in the light of your present knowledge, they probably represent an undiscovered idea.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='8cfa3463-ee76-4c3f-b3de-ab5db1bb31b7'), 'ebcb18af-82cb-4367-bb8f-60de302902d8': Node(page_content=\"One of the most valuable kinds of knowledge you get from experience is to know what you don't have to worry about. The young know all the things that could matter, but not their relative importance. So they worry equally about everything, when they should worry much more about a few things and hardly at all about the rest.\\n\\nBut what you don't know is only half the problem with inexperience. The other half is what you do know that ain't so. You arrive at adulthood with your head full of nonsense — bad habits you've acquired and false things you've been taught — and you won't be able to do great work till you clear away at least the nonsense in the way of whatever type of work you want to do.\\n\\nMuch of the nonsense left in your head is left there by schools. We're so used to schools that we unconsciously treat going to school as identical with learning, but in fact schools have all sorts of strange qualities that warp our ideas about learning and thinking.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='ebcb18af-82cb-4367-bb8f-60de302902d8'), '16440cdc-9b76-475c-bd3a-8e43dae9a434': Node(page_content=\"For example, schools induce passivity. Since you were a small child, there was an authority at the front of the class telling all of you what you had to learn and then measuring whether you did. But neither classes nor tests are intrinsic to learning; they're just artifacts of the way schools are usually designed.\\n\\nThe sooner you overcome this passivity, the better. If you're still in school, try thinking of your education as your project, and your teachers as working for you rather than vice versa. That may seem a stretch, but it's not merely some weird thought experiment. It's the truth, economically, and in the best case it's the truth intellectually as well. The best teachers don't want to be your bosses. They'd prefer it if you pushed ahead, using them as a source of advice, rather than being pulled by them through the material.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='16440cdc-9b76-475c-bd3a-8e43dae9a434'), '017c0f04-9f7c-4c8f-b6e9-23539e87f9a1': Node(page_content='Schools also give you a misleading impression of what work is like. In school they tell you what the problems are, and they\\'re almost always soluble using no more than you\\'ve been taught so far. In real life you have to figure out what the problems are, and you often don\\'t know if they\\'re soluble at all.\\n\\nBut perhaps the worst thing schools do to you is train you to win by hacking the test. You can\\'t do great work by doing that. You can\\'t trick God. So stop looking for that kind of shortcut. The way to beat the system is to focus on problems and solutions that others have overlooked, not to skimp on the work itself.\\n\\nDon\\'t think of yourself as dependent on some gatekeeper giving you a \"big break.\" Even if this were true, the best way to get it would be to focus on doing good work rather than chasing influential people.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c0f04-9f7c-4c8f-b6e9-23539e87f9a1'), 'c8acb19e-fb92-4e15-a633-895f474f5fd1': Node(page_content=\"And don't take rejection by committees to heart. The qualities that impress admissions officers and prize committees are quite different from those required to do great work. The decisions of selection committees are only meaningful to the extent that they're part of a feedback loop, and very few are.\\n\\nPeople new to a field will often copy existing work. There's nothing inherently bad about that. There's no better way to learn how something works than by trying to reproduce it. Nor does copying necessarily make your work unoriginal. Originality is the presence of new ideas, not the absence of old ones.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='c8acb19e-fb92-4e15-a633-895f474f5fd1'), '5358b733-dcf2-4681-99ff-dd89b89c6718': Node(page_content='There\\'s a good way to copy and a bad way. If you\\'re going to copy something, do it openly instead of furtively, or worse still, unconsciously. This is what\\'s meant by the famously misattributed phrase \"Great artists steal.\" The really dangerous kind of copying, the kind that gives copying a bad name, is the kind that\\'s done without realizing it, because you\\'re nothing more than a train running on tracks laid down by someone else. But at the other extreme, copying can be a sign of superiority rather than subordination. [25]', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5358b733-dcf2-4681-99ff-dd89b89c6718', wins=1), 'f087a707-515e-4c49-9772-187a7075ed75': Node(page_content=\"In many fields it's almost inevitable that your early work will be in some sense based on other people's. Projects rarely arise in a vacuum. They're usually a reaction to previous work. When you're first starting out, you don't have any previous work; if you're going to react to something, it has to be someone else's. Once you're established, you can react to your own. But while the former gets called derivative and the latter doesn't, structurally the two cases are more similar than they seem.\\n\\nOddly enough, the very novelty of the most novel ideas sometimes makes them seem at first to be more derivative than they are. New discoveries often have to be conceived initially as variations of existing things, even by their discoverers, because there isn't yet the conceptual vocabulary to express them.\\n\\nThere are definitely some dangers to copying, though. One is that you'll tend to copy old things — things that were in their day at the frontier of knowledge, but no longer are.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f087a707-515e-4c49-9772-187a7075ed75'), 'daf67766-a44c-4c3b-bd77-dc6d1045d490': Node(page_content=\"And when you do copy something, don't copy every feature of it. Some will make you ridiculous if you do. Don't copy the manner of an eminent 50 year old professor if you're 18, for example, or the idiom of a Renaissance poem hundreds of years later.\\n\\nSome of the features of things you admire are flaws they succeeded despite. Indeed, the features that are easiest to imitate are the most likely to be the flaws.\\n\\nThis is particularly true for behavior. Some talented people are jerks, and this sometimes makes it seem to the inexperienced that being a jerk is part of being talented. It isn't; being talented is merely how they get away with it.\\n\\nOne of the most powerful kinds of copying is to copy something from one field into another. History is so full of chance discoveries of this type that it's probably worth giving chance a hand by deliberately learning about other kinds of work. You can take ideas from quite distant fields if you let them be metaphors.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='daf67766-a44c-4c3b-bd77-dc6d1045d490'), '18f9beba-e410-4473-97ad-959d232cd009': Node(page_content=\"Negative examples can be as inspiring as positive ones. In fact you can sometimes learn more from things done badly than from things done well; sometimes it only becomes clear what's needed when it's missing.\\n\\nIf a lot of the best people in your field are collected in one place, it's usually a good idea to visit for a while. It will increase your ambition, and also, by showing you that these people are human, increase your self-confidence. [26]\\n\\nIf you're earnest you'll probably get a warmer welcome than you might expect. Most people who are very good at something are happy to talk about it with anyone who's genuinely interested. If they're really good at their work, then they probably have a hobbyist's interest in it, and hobbyists always want to talk about their hobbies.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='18f9beba-e410-4473-97ad-959d232cd009'), 'e4ed843d-1771-424a-91fc-5b74bcd2bc37': Node(page_content=\"It may take some effort to find the people who are really good, though. Doing great work has such prestige that in some places, particularly universities, there's a polite fiction that everyone is engaged in it. And that is far from true. People within universities can't say so openly, but the quality of the work being done in different departments varies immensely. Some departments have people doing great work; others have in the past; others never have.\\n\\nSeek out the best colleagues. There are a lot of projects that can't be done alone, and even if you're working on one that can be, it's good to have other people to encourage you and to bounce ideas off.\\n\\nColleagues don't just affect your work, though; they also affect you. So work with people you want to become like, because you will.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e4ed843d-1771-424a-91fc-5b74bcd2bc37'), '6c16f93b-75ea-4884-8959-b8d243716257': Node(page_content=\"Quality is more important than quantity in colleagues. It's better to have one or two great ones than a building full of pretty good ones. In fact it's not merely better, but necessary, judging from history: the degree to which great work happens in clusters suggests that one's colleagues often make the difference between doing great work and not.\\n\\nHow do you know when you have sufficiently good colleagues? In my experience, when you do, you know. Which means if you're unsure, you probably don't. But it may be possible to give a more concrete answer than that. Here's an attempt: sufficiently good colleagues offer surprising insights. They can see and do things that you can't. So if you have a handful of colleagues good enough to keep you on your toes in this sense, you're probably over the threshold.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6c16f93b-75ea-4884-8959-b8d243716257'), '41972435-555e-4d47-977a-b91de1f27a90': Node(page_content=\"Most of us can benefit from collaborating with colleagues, but some projects require people on a larger scale, and starting one of those is not for everyone. If you want to run a project like that, you'll have to become a manager, and managing well takes aptitude and interest like any other kind of work. If you don't have them, there is no middle path: you must either force yourself to learn management as a second language, or avoid such projects. [27]\\n\\nHusband your morale. It's the basis of everything when you're working on ambitious projects. You have to nurture and protect it like a living organism.\\n\\nMorale starts with your view of life. You're more likely to do great work if you're an optimist, and more likely to if you think of yourself as lucky than if you think of yourself as a victim.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='41972435-555e-4d47-977a-b91de1f27a90'), 'e2821136-b037-4332-bbbd-de2fcbeae316': Node(page_content=\"Indeed, work can to some extent protect you from your problems. If you choose work that's pure, its very difficulties will serve as a refuge from the difficulties of everyday life. If this is escapism, it's a very productive form of it, and one that has been used by some of the greatest minds in history.\\n\\nMorale compounds via work: high morale helps you do good work, which increases your morale and helps you do even better work. But this cycle also operates in the other direction: if you're not doing good work, that can demoralize you and make it even harder to. Since it matters so much for this cycle to be running in the right direction, it can be a good idea to switch to easier work when you're stuck, just so you start to get something done.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2821136-b037-4332-bbbd-de2fcbeae316', wins=1), '4593e897-c389-4639-98bd-7c159e1b3eae': Node(page_content='One of the biggest mistakes ambitious people make is to allow setbacks to destroy their morale all at once, like a balloon bursting. You can inoculate yourself against this by explicitly considering setbacks a part of your process. Solving hard problems always involves some backtracking.\\n\\nDoing great work is a depth-first search whose root node is the desire to. So \"If at first you don\\'t succeed, try, try again\" isn\\'t quite right. It should be: If at first you don\\'t succeed, either try again, or backtrack and then try again.\\n\\n\"Never give up\" is also not quite right. Obviously there are times when it\\'s the right choice to eject. A more precise version would be: Never let setbacks panic you into backtracking more than you need to. Corollary: Never abandon the root node.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4593e897-c389-4639-98bd-7c159e1b3eae'), 'b00c903d-199c-47b5-9884-f47a81649533': Node(page_content=\"It's not necessarily a bad sign if work is a struggle, any more than it's a bad sign to be out of breath while running. It depends how fast you're running. So learn to distinguish good pain from bad. Good pain is a sign of effort; bad pain is a sign of damage.\\n\\nAn audience is a critical component of morale. If you're a scholar, your audience may be your peers; in the arts, it may be an audience in the traditional sense. Either way it doesn't need to be big. The value of an audience doesn't grow anything like linearly with its size. Which is bad news if you're famous, but good news if you're just starting out, because it means a small but dedicated audience can be enough to sustain you. If a handful of people genuinely love what you're doing, that's enough.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='b00c903d-199c-47b5-9884-f47a81649533'), '53911edb-1d5b-42d8-8f83-00572631b56a': Node(page_content=\"To the extent you can, avoid letting intermediaries come between you and your audience. In some types of work this is inevitable, but it's so liberating to escape it that you might be better off switching to an adjacent type if that will let you go direct. [28]\\n\\nThe people you spend time with will also have a big effect on your morale. You'll find there are some who increase your energy and others who decrease it, and the effect someone has is not always what you'd expect. Seek out the people who increase your energy and avoid those who decrease it. Though of course if there's someone you need to take care of, that takes precedence.\\n\\nDon't marry someone who doesn't understand that you need to work, or sees your work as competition for your attention. If you're ambitious, you need to work; it's almost like a medical condition; so someone who won't let you work either doesn't understand you, or does and doesn't care.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='53911edb-1d5b-42d8-8f83-00572631b56a', wins=1), '4cc70f37-da0e-44f9-a413-70a2f96e884a': Node(page_content=\"Ultimately morale is physical. You think with your body, so it's important to take care of it. That means exercising regularly, eating and sleeping well, and avoiding the more dangerous kinds of drugs. Running and walking are particularly good forms of exercise because they're good for thinking. [29]\\n\\nPeople who do great work are not necessarily happier than everyone else, but they're happier than they'd be if they didn't. In fact, if you're smart and ambitious, it's dangerous not to be productive. People who are smart and ambitious but don't achieve much tend to become bitter.\\n\\nIt's ok to want to impress other people, but choose the right people. The opinion of people you respect is signal. Fame, which is the opinion of a much larger group you might or might not respect, just adds noise.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4cc70f37-da0e-44f9-a413-70a2f96e884a'), '017c6cc7-ee83-4bdb-a16f-fb64224418df': Node(page_content='The prestige of a type of work is at best a trailing indicator and sometimes completely mistaken. If you do anything well enough, you\\'ll make it prestigious. So the question to ask about a type of work is not how much prestige it has, but how well it could be done.\\n\\nCompetition can be an effective motivator, but don\\'t let it choose the problem for you; don\\'t let yourself get drawn into chasing something just because others are. In fact, don\\'t let competitors make you do anything much more specific than work harder.\\n\\nCuriosity is the best guide. Your curiosity never lies, and it knows more than you do about what\\'s worth paying attention to.\\n\\nNotice how often that word has come up. If you asked an oracle the secret to doing great work and the oracle replied with a single word, my bet would be on \"curiosity.\"\\n\\nThat doesn\\'t translate directly to advice. It\\'s not enough just to be curious, and you can\\'t command curiosity anyway. But you can nurture it and let it drive you.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='017c6cc7-ee83-4bdb-a16f-fb64224418df'), '518b39aa-59f8-4cb7-9c23-4ac7197f8250': Node(page_content=\"Curiosity is the key to all four steps in doing great work: it will choose the field for you, get you to the frontier, cause you to notice the gaps in it, and drive you to explore them. The whole process is a kind of dance with curiosity.\\n\\nBelieve it or not, I tried to make this essay as short as I could. But its length at least means it acts as a filter. If you made it this far, you must be interested in doing great work. And if so you're already further along than you might realize, because the set of people willing to want to is small.\\n\\nThe factors in doing great work are factors in the literal, mathematical sense, and they are: ability, interest, effort, and luck. Luck by definition you can't do anything about, so we can ignore that. And we can assume effort, if you do in fact want to do great work. So the problem boils down to ability and interest. Can you find a kind of work where your ability and interest will combine to yield an explosion of new ideas?\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='518b39aa-59f8-4cb7-9c23-4ac7197f8250', wins=1), '4bd8c91f-16e5-4aab-a361-b2e98eee6b10': Node(page_content=\"Here there are grounds for optimism. There are so many different ways to do great work, and even more that are still undiscovered. Out of all those different types of work, the one you're most suited for is probably a pretty close match. Probably a comically close match. It's just a question of finding it, and how far into it your ability and interest can take you. And you can only answer that by trying.\\n\\nMany more people could try to do great work than do. What holds them back is a combination of modesty and fear. It seems presumptuous to try to be Newton or Shakespeare. It also seems hard; surely if you tried something like that, you'd fail. Presumably the calculation is rarely explicit. Few people consciously decide not to try to do great work. But that's what's going on subconsciously; they shy away from the question.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='4bd8c91f-16e5-4aab-a361-b2e98eee6b10'), '5098c334-acd7-4051-8409-88ae99b130c4': Node(page_content=\"So I'm going to pull a sneaky trick on you. Do you want to do great work, or not? Now you have to decide consciously. Sorry about that. I wouldn't have done it to a general audience. But we already know you're interested.\\n\\nDon't worry about being presumptuous. You don't have to tell anyone. And if it's too hard and you fail, so what? Lots of people have worse problems than that. In fact you'll be lucky if it's the worst problem you have.\\n\\nYes, you'll have to work hard. But again, lots of people have to work hard. And if you're working on something you find very interesting, which you necessarily will if you're on the right path, the work will probably feel less burdensome than a lot of your peers'.\\n\\nThe discoveries are out there, waiting to be made. Why not by you?\\n\\nNotes\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='5098c334-acd7-4051-8409-88ae99b130c4'), '85fcc3b5-ead2-41ce-bd52-c45b5555894f': Node(page_content='Notes\\n\\n[1] I don\\'t think you could give a precise definition of what counts as great work. Doing great work means doing something important so well that you expand people\\'s ideas of what\\'s possible. But there\\'s no threshold for importance. It\\'s a matter of degree, and often hard to judge at the time anyway. So I\\'d rather people focused on developing their interests rather than worrying about whether they\\'re important or not. Just try to do something amazing, and leave it to future generations to say if you succeeded.\\n\\n[2] A lot of standup comedy is based on noticing anomalies in everyday life. \"Did you ever notice...?\" New ideas come from doing this about nontrivial things. Which may help explain why people\\'s reaction to a new idea is often the first half of laughing: Ha!\\n\\n[3] That second qualifier is critical. If you\\'re excited about something most authorities discount, but you can\\'t give a more precise explanation than \"they don\\'t get it,\" then you\\'re starting to drift into the territory of cranks.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='85fcc3b5-ead2-41ce-bd52-c45b5555894f'), '2e5f7714-e0a8-4be5-ab6f-433a316b1c41': Node(page_content=\"[4] Finding something to work on is not simply a matter of finding a match between the current version of you and a list of known problems. You'll often have to coevolve with the problem. That's why it can sometimes be so hard to figure out what to work on. The search space is huge. It's the cartesian product of all possible types of work, both known and yet to be discovered, and all possible future versions of you.\\n\\nThere's no way you could search this whole space, so you have to rely on heuristics to generate promising paths through it and hope the best matches will be clustered. Which they will not always be; different types of work have been collected together as much by accidents of history as by the intrinsic similarities between them.\\n\\n[5] There are many reasons curious people are more likely to do great work, but one of the more subtle is that, by casting a wide net, they're more likely to find the right thing to work on in the first place.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='2e5f7714-e0a8-4be5-ab6f-433a316b1c41'), 'f43e912a-048c-44f0-8a64-9b58b1fa4f58': Node(page_content=\"[6] It can also be dangerous to make things for an audience you feel is less sophisticated than you, if that causes you to talk down to them. You can make a lot of money doing that, if you do it in a sufficiently cynical way, but it's not the route to great work. Not that anyone using this m.o. would care.\\n\\n[7] This idea I learned from Hardy's A Mathematician's Apology, which I recommend to anyone ambitious to do great work, in any field.\\n\\n[8] Just as we overestimate what we can do in a day and underestimate what we can do over several years, we overestimate the damage done by procrastinating for a day and underestimate the damage done by procrastinating for several years.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='f43e912a-048c-44f0-8a64-9b58b1fa4f58'), 'af0eafcf-c1b7-46cd-b1b2-223f4aed0984': Node(page_content=\"[9] You can't usually get paid for doing exactly what you want, especially early on. There are two options: get paid for doing work close to what you want and hope to push it closer, or get paid for doing something else entirely and do your own projects on the side. Both can work, but both have drawbacks: in the first approach your work is compromised by default, and in the second you have to fight to get time to do it.\\n\\n[10] If you set your life up right, it will deliver the focus-relax cycle automatically. The perfect setup is an office you work in and that you walk to and from.\\n\\n[11] There may be some very unworldly people who do great work without consciously trying to. If you want to expand this rule to cover that case, it becomes: Don't try to be anything except the best.\\n\\n[12] This gets more complicated in work like acting, where the goal is to adopt a fake persona. But even here it's possible to be affected. Perhaps the rule in such fields should be to avoid unintentional affectation.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='af0eafcf-c1b7-46cd-b1b2-223f4aed0984'), '6afc67d5-0fd7-48a8-829f-201370a6be57': Node(page_content='[13] It\\'s safe to have beliefs that you treat as unquestionable if and only if they\\'re also unfalsifiable. For example, it\\'s safe to have the principle that everyone should be treated equally under the law, because a sentence with a \"should\" in it isn\\'t really a statement about the world and is therefore hard to disprove. And if there\\'s no evidence that could disprove one of your principles, there can\\'t be any facts you\\'d need to ignore in order to preserve it.\\n\\n[14] Affectation is easier to cure than intellectual dishonesty. Affectation is often a shortcoming of the young that burns off in time, while intellectual dishonesty is more of a character flaw.\\n\\n[15] Obviously you don\\'t have to be working at the exact moment you have the idea, but you\\'ll probably have been working fairly recently.\\n\\n[16] Some say psychoactive drugs have a similar effect. I\\'m skeptical, but also almost totally ignorant of their effects.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='6afc67d5-0fd7-48a8-829f-201370a6be57'), '875a91c1-a9d8-4c9b-a094-4e865ec91c81': Node(page_content=\"[17] For example you might give the nth most important topic (m-1)/m^n of your attention, for some m > 1. You couldn't allocate your attention so precisely, of course, but this at least gives an idea of a reasonable distribution.\\n\\n[18] The principles defining a religion have to be mistaken. Otherwise anyone might adopt them, and there would be nothing to distinguish the adherents of the religion from everyone else.\\n\\n[19] It might be a good exercise to try writing down a list of questions you wondered about in your youth. You might find you're now in a position to do something about some of them.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='875a91c1-a9d8-4c9b-a094-4e865ec91c81'), '9dc1d1d4-e75c-4e42-9567-9d7f2e048319': Node(page_content='[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they\\'re generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling\\'s \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you\\'re wasting time is to ask if you\\'re producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don\\'t.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='9dc1d1d4-e75c-4e42-9567-9d7f2e048319', wins=1), 'e2cbfecc-dc00-438a-ab59-b82bfd683a65': Node(page_content=\"[24] Another related advantage is that if you haven't said anything publicly yet, you won't be biased toward evidence that supports your earlier conclusions. With sufficient integrity you could achieve eternal youth in this respect, but few manage to. For most people, having previously published opinions has an effect similar to ideology, just in quantity 1.\\n\\n[25] In the early 1630s Daniel Mytens made a painting of Henrietta Maria handing a laurel wreath to Charles I. Van Dyck then painted his own version to show how much better he was.\\n\\n[26] I'm being deliberately vague about what a place is. As of this writing, being in the same physical place has advantages that are hard to duplicate, but that could change.\\n\\n[27] This is false when the work the other people have to do is very constrained, as with SETI@home or Bitcoin. It may be possible to expand the area in which it's false by defining similarly restricted protocols with more freedom of action in the nodes.\", metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='e2cbfecc-dc00-438a-ab59-b82bfd683a65'), 'd64ee58e-fa36-495b-8ef7-df70c6375e80': Node(page_content='[28] Corollary: Building something that enables people to go around intermediaries and engage directly with their audience is probably a good idea.\\n\\n[29] It may be helpful always to walk or run the same route, because that frees attention for thinking. It feels that way to me, and there is some historical evidence for it.\\n\\nThanks to Trevor Blackwell, Daniel Gackle, Pam Graham, Tom Howard, Patrick Hsu, Steve Huffman, Jessica Livingston, Henry Lloyd-Baker, Bob Metcalfe, Ben Miller, Robert Morris, Michael Nielsen, Courtenay Pipkin, Joris Poort, Mieke Roos, Rajat Suri, Harj Taggar, Garry Tan, and my younger son for suggestions and for reading drafts.', metadata={'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}, doc_id='d64ee58e-fa36-495b-8ef7-df70c6375e80'), '8941624d-30a5-4c1f-936b-72b3c0e8feb1': Node(page_content='What I Worked On\\n\\nFebruary 2021\\n\\nBefore college the two main things I worked on, outside of school, were writing and programming. I didn\\'t write essays. I wrote what beginning writers were supposed to write then, and probably still are: short stories. My stories were awful. They had hardly any plot, just characters with strong feelings, which I imagined made them deep.\\n\\nThe first programs I tried writing were on the IBM 1401 that our school district used for what was then called \"data processing.\" This was in 9th grade, so I was 13 or 14. The school district\\'s 1401 happened to be in the basement of our junior high school, and my friend Rich Draves and I got permission to use it. It was like a mini Bond villain\\'s lair down there, with all these alien-looking machines — CPU, disk drives, printer, card reader — sitting up on a raised floor under bright fluorescent lights.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8941624d-30a5-4c1f-936b-72b3c0e8feb1', wins=1), '2ddb6920-17bc-405e-9cbe-5b2852d92feb': Node(page_content='The language we used was an early version of Fortran. You had to type programs on punch cards, then stack them in the card reader and press a button to load the program into memory and run it. The result would ordinarily be to print something on the spectacularly loud printer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2ddb6920-17bc-405e-9cbe-5b2852d92feb'), '2cae8c4f-333e-4615-8808-6e9ab6f79097': Node(page_content=\"I was puzzled by the 1401. I couldn't figure out what to do with it. And in retrospect there's not much I could have done with it. The only form of input to programs was data stored on punched cards, and I didn't have any data stored on punched cards. The only other option was to do things that didn't rely on any input, like calculate approximations of pi, but I didn't know enough math to do anything interesting of that type. So I'm not surprised I can't remember any programs I wrote, because they can't have done much. My clearest memory is of the moment I learned it was possible for programs not to terminate, when one of mine didn't. On a machine without time-sharing, this was a social as well as a technical error, as the data center manager's expression made clear.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='2cae8c4f-333e-4615-8808-6e9ab6f79097', wins=1), 'd0f65811-4213-4ff8-bf54-07ee86007f73': Node(page_content='With microcomputers, everything changed. Now you could have a computer sitting right in front of you, on a desk, that could respond to your keystrokes as it was running instead of just churning through a stack of punch cards and then stopping. [1]\\n\\nThe first of my friends to get a microcomputer built it himself. It was sold as a kit by Heathkit. I remember vividly how impressed and envious I felt watching him sitting in front of it, typing programs right into the computer.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d0f65811-4213-4ff8-bf54-07ee86007f73'), '0cc36135-748a-47b8-9a05-cf6d0a8ea13b': Node(page_content=\"Computers were expensive in those days and it took me years of nagging before I convinced my father to buy one, a TRS-80, in about 1980. The gold standard then was the Apple II, but a TRS-80 was good enough. This was when I really started programming. I wrote simple games, a program to predict how high my model rockets would fly, and a word processor that my father used to write at least one book. There was only room in memory for about 2 pages of text, so he'd write 2 pages at a time and then print them out, but it was a lot better than a typewriter.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0cc36135-748a-47b8-9a05-cf6d0a8ea13b', wins=1), '8ced309b-74f2-4240-917b-e28b30dc433b': Node(page_content=\"Though I liked programming, I didn't plan to study it in college. In college I was going to study philosophy, which sounded much more powerful. It seemed, to my naive high school self, to be the study of the ultimate truths, compared to which the things studied in other fields would be mere domain knowledge. What I discovered when I got to college was that the other fields took up so much of the space of ideas that there wasn't much left for these supposed ultimate truths. All that seemed left for philosophy were edge cases that people in other fields felt could safely be ignored.\\n\\nI couldn't have put this into words when I was 18. All I knew at the time was that I kept taking philosophy courses and they kept being boring. So I decided to switch to AI.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8ced309b-74f2-4240-917b-e28b30dc433b'), '01436d32-d282-4de9-9b73-7faec7d1b772': Node(page_content=\"AI was in the air in the mid 1980s, but there were two things especially that made me want to work on it: a novel by Heinlein called The Moon is a Harsh Mistress, which featured an intelligent computer called Mike, and a PBS documentary that showed Terry Winograd using SHRDLU. I haven't tried rereading The Moon is a Harsh Mistress, so I don't know how well it has aged, but when I read it I was drawn entirely into its world. It seemed only a matter of time before we'd have Mike, and when I saw Winograd using SHRDLU, it seemed like that time would be a few years at most. All you had to do was teach SHRDLU more words.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01436d32-d282-4de9-9b73-7faec7d1b772'), 'c7dd7bbf-08ac-408f-b975-8274b58b91ca': Node(page_content=\"There weren't any classes in AI at Cornell then, not even graduate classes, so I started trying to teach myself. Which meant learning Lisp, since in those days Lisp was regarded as the language of AI. The commonly used programming languages then were pretty primitive, and programmers' ideas correspondingly so. The default language at Cornell was a Pascal-like language called PL/I, and the situation was similar elsewhere. Learning Lisp expanded my concept of a program so fast that it was years before I started to have a sense of where the new limits were. This was more like it; this was what I had expected college to do. It wasn't happening in a class, like it was supposed to, but that was ok. For the next couple years I was on a roll. I knew what I was going to do.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c7dd7bbf-08ac-408f-b975-8274b58b91ca'), 'd7d640a0-9b5e-4e18-a7fe-7655b8ae5979': Node(page_content='For my undergraduate thesis, I reverse-engineered SHRDLU. My God did I love working on that program. It was a pleasing bit of code, but what made it even more exciting was my belief — hard to imagine now, but not unique in 1985 — that it was already climbing the lower slopes of intelligence.\\n\\nI had gotten into a program at Cornell that didn\\'t make you choose a major. You could take whatever classes you liked, and choose whatever you liked to put on your degree. I of course chose \"Artificial Intelligence.\" When I got the actual physical diploma, I was dismayed to find that the quotes had been included, which made them read as scare-quotes. At the time this bothered me, but now it seems amusingly accurate, for reasons I was about to discover.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d7d640a0-9b5e-4e18-a7fe-7655b8ae5979'), '90c72e6c-8c79-4feb-86ae-f8f685cf5e7c': Node(page_content='I applied to 3 grad schools: MIT and Yale, which were renowned for AI at the time, and Harvard, which I\\'d visited because Rich Draves went there, and was also home to Bill Woods, who\\'d invented the type of parser I used in my SHRDLU clone. Only Harvard accepted me, so that was where I went.\\n\\nI don\\'t remember the moment it happened, or if there even was a specific moment, but during the first year of grad school I realized that AI, as practiced at the time, was a hoax. By which I mean the sort of AI in which a program that\\'s told \"the dog is sitting on the chair\" translates this into some formal representation and adds it to the list of things it knows.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='90c72e6c-8c79-4feb-86ae-f8f685cf5e7c'), 'd5b018a6-f262-4758-b059-4da34cd51a58': Node(page_content=\"What these programs really showed was that there's a subset of natural language that's a formal language. But a very proper subset. It was clear that there was an unbridgeable gap between what they could do and actually understanding natural language. It was not, in fact, simply a matter of teaching SHRDLU more words. That whole way of doing AI, with explicit data structures representing concepts, was not going to work. Its brokenness did, as so often happens, generate a lot of opportunities to write papers about various band-aids that could be applied to it, but it was never going to get us Mike.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d5b018a6-f262-4758-b059-4da34cd51a58'), 'd52b4a20-0c6f-455d-9362-e99f3f87f0b4': Node(page_content=\"So I looked around to see what I could salvage from the wreckage of my plans, and there was Lisp. I knew from experience that Lisp was interesting for its own sake and not just for its association with AI, even though that was the main reason people cared about it at the time. So I decided to focus on Lisp. In fact, I decided to write a book about Lisp hacking. It's scary to think how little I knew about Lisp hacking when I started writing that book. But there's nothing like writing a book about something to help you learn it. The book, On Lisp, wasn't published till 1993, but I wrote much of it in grad school.\\n\\nComputer Science is an uneasy alliance between two halves, theory and systems. The theory people prove things, and the systems people build things. I wanted to build things. I had plenty of respect for theory — indeed, a sneaking suspicion that it was the more admirable of the two halves — but building things seemed so much more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d52b4a20-0c6f-455d-9362-e99f3f87f0b4'), 'a7e3201d-8d1c-4f50-87cc-0674b17ce7c8': Node(page_content=\"The problem with systems work, though, was that it didn't last. Any program you wrote today, no matter how good, would be obsolete in a couple decades at best. People might mention your software in footnotes, but no one would actually use it. And indeed, it would seem very feeble work. Only people with a sense of the history of the field would even realize that, in its time, it had been good.\\n\\nThere were some surplus Xerox Dandelions floating around the computer lab at one point. Anyone who wanted one to play around with could have one. I was briefly tempted, but they were so slow by present standards; what was the point? No one else wanted one either, so off they went. That was what happened to systems work.\\n\\nI wanted not just to build things, but to build things that would last.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a7e3201d-8d1c-4f50-87cc-0674b17ce7c8'), '88ce0eef-afcd-4066-b99a-ab84ade3eb18': Node(page_content=\"In this dissatisfied state I went in 1988 to visit Rich Draves at CMU, where he was in grad school. One day I went to visit the Carnegie Institute, where I'd spent a lot of time as a kid. While looking at a painting there I realized something that might seem obvious, but was a big surprise to me. There, right on the wall, was something you could make that would last. Paintings didn't become obsolete. Some of the best ones were hundreds of years old.\\n\\nAnd moreover this was something you could make a living doing. Not as easily as you could by writing software, of course, but I thought if you were really industrious and lived really cheaply, it had to be possible to make enough to survive. And as an artist you could be truly independent. You wouldn't have a boss, or even need to get research funding.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='88ce0eef-afcd-4066-b99a-ab84ade3eb18'), '9f8eaf30-eedb-4747-97bb-c5c699392270': Node(page_content=\"I had always liked looking at paintings. Could I make them? I had no idea. I'd never imagined it was even possible. I knew intellectually that people made art — that it didn't just appear spontaneously — but it was as if the people who made it were a different species. They either lived long ago or were mysterious geniuses doing strange things in profiles in Life magazine. The idea of actually being able to make art, to put that verb before that noun, seemed almost miraculous.\\n\\nThat fall I started taking art classes at Harvard. Grad students could take classes in any department, and my advisor, Tom Cheatham, was very easy going. If he even knew about the strange classes I was taking, he never said anything.\\n\\nSo now I was in a PhD program in computer science, yet planning to be an artist, yet also genuinely in love with Lisp hacking and working away at On Lisp. In other words, like many a grad student, I was working energetically on multiple projects that were not my thesis.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f8eaf30-eedb-4747-97bb-c5c699392270'), 'c14d29a3-c37e-4821-ae34-c407c6676ee1': Node(page_content='I didn\\'t see a way out of this situation. I didn\\'t want to drop out of grad school, but how else was I going to get out? I remember when my friend Robert Morris got kicked out of Cornell for writing the internet worm of 1988, I was envious that he\\'d found such a spectacular way to get out of grad school.\\n\\nThen one day in April 1990 a crack appeared in the wall. I ran into professor Cheatham and he asked if I was far enough along to graduate that June. I didn\\'t have a word of my dissertation written, but in what must have been the quickest bit of thinking in my life, I decided to take a shot at writing one in the 5 weeks or so that remained before the deadline, reusing parts of On Lisp where I could, and I was able to respond, with no perceptible delay \"Yes, I think so. I\\'ll give you something to read in a few days.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c14d29a3-c37e-4821-ae34-c407c6676ee1'), '48b6ee95-ea42-4980-9ad5-1dd6a2062500': Node(page_content=\"I picked applications of continuations as the topic. In retrospect I should have written about macros and embedded languages. There's a whole world there that's barely been explored. But all I wanted was to get out of grad school, and my rapidly written dissertation sufficed, just barely.\\n\\nMeanwhile I was applying to art schools. I applied to two: RISD in the US, and the Accademia di Belli Arti in Florence, which, because it was the oldest art school, I imagined would be good. RISD accepted me, and I never heard back from the Accademia, so off to Providence I went.\\n\\nI'd applied for the BFA program at RISD, which meant in effect that I had to go to college again. This was not as strange as it sounds, because I was only 25, and art schools are full of people of different ages. RISD counted me as a transfer sophomore and said I had to do the foundation that summer. The foundation means the classes that everyone has to take in fundamental subjects like drawing, color, and design.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='48b6ee95-ea42-4980-9ad5-1dd6a2062500'), '92b5cdd8-6d6d-4d9c-9510-48a3096427b8': Node(page_content=\"Toward the end of the summer I got a big surprise: a letter from the Accademia, which had been delayed because they'd sent it to Cambridge England instead of Cambridge Massachusetts, inviting me to take the entrance exam in Florence that fall. This was now only weeks away. My nice landlady let me leave my stuff in her attic. I had some money saved from consulting work I'd done in grad school; there was probably enough to last a year if I lived cheaply. Now all I had to do was learn Italian.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='92b5cdd8-6d6d-4d9c-9510-48a3096427b8'), '01fdd3e3-243a-4e82-9c18-5d7492d029c1': Node(page_content=\"Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='01fdd3e3-243a-4e82-9c18-5d7492d029c1', wins=1), '0f488de3-2fec-444b-9cd1-58ffd491a687': Node(page_content=\"I'm only up to age 25 and already there are such conspicuous patterns. Here I was, yet again about to attend some august institution in the hopes of learning about some prestigious subject, and yet again about to be disappointed. The students and faculty in the painting department at the Accademia were the nicest people you could imagine, but they had long since arrived at an arrangement whereby the students wouldn't require the faculty to teach anything, and in return the faculty wouldn't require the students to learn anything. And at the same time all involved would adhere outwardly to the conventions of a 19th century atelier. We actually had one of those little stoves, fed with kindling, that you see in 19th century studio paintings, and a nude model sitting as close to it as possible without getting burned. Except hardly anyone else painted her besides me. The rest of the students spent their time chatting or occasionally trying to imitate things they'd seen in American art magazines.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f488de3-2fec-444b-9cd1-58ffd491a687'), 'e8486722-e708-4b69-a5ef-1469253415c8': Node(page_content=\"Our model turned out to live just down the street from me. She made a living from a combination of modelling and making fakes for a local antique dealer. She'd copy an obscure old painting out of a book, and then he'd take the copy and maltreat it to make it look old. [3]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e8486722-e708-4b69-a5ef-1469253415c8', wins=1), 'c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee': Node(page_content=\"While I was a student at the Accademia I started painting still lives in my bedroom at night. These paintings were tiny, because the room was, and because I painted them on leftover scraps of canvas, which was all I could afford at the time. Painting still lives is different from painting people, because the subject, as its name suggests, can't move. People can't sit for more than about 15 minutes at a time, and when they do they don't sit very still. So the traditional m.o. for painting people is to know how to paint a generic person, which you then modify to match the specific person you're painting. Whereas a still life you can, if you want, copy pixel by pixel from what you're seeing. You don't want to stop there, of course, or you get merely photographic accuracy, and what makes a still life interesting is that it's been through a head. You want to emphasize the visual cues that tell you, for example, that the reason the color changes suddenly at a certain point is that it's the edge of an object. By\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c092193f-c0cf-4f1f-b7f0-1cc8ea74d9ee', wins=1), '00ad760e-6fbb-43ca-a51c-519425b2aaff': Node(page_content='of an object. By subtly emphasizing such things you can make paintings that are more realistic than photographs not just in some metaphorical sense, but in the strict information-theoretic sense. [4]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='00ad760e-6fbb-43ca-a51c-519425b2aaff'), 'f7f0e91c-4312-46dc-b4d1-ff380e0f7227': Node(page_content='I liked painting still lives because I was curious about what I was seeing. In everyday life, we aren\\'t consciously aware of much we\\'re seeing. Most visual perception is handled by low-level processes that merely tell your brain \"that\\'s a water droplet\" without telling you details like where the lightest and darkest points are, or \"that\\'s a bush\" without telling you the shape and position of every leaf. This is a feature of brains, not a bug. In everyday life it would be distracting to notice every leaf on every bush. But when you have to paint something, you have to look more closely, and when you do there\\'s a lot to see. You can still be noticing new things after days of trying to paint something people usually take for granted, just as you can after days of trying to write an essay about something people usually take for granted.\\n\\nThis is not the only way to paint. I\\'m not 100% sure it\\'s even a good way to paint. But it seemed a good enough bet to be worth trying.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f7f0e91c-4312-46dc-b4d1-ff380e0f7227'), '395264d3-3625-46d0-8636-110e597f48b7': Node(page_content=\"Our teacher, professor Ulivi, was a nice guy. He could see I worked hard, and gave me a good grade, which he wrote down in a sort of passport each student had. But the Accademia wasn't teaching me anything except Italian, and my money was running out, so at the end of the first year I went back to the US.\\n\\nI wanted to go back to RISD, but I was now broke and RISD was very expensive, so I decided to get a job for a year and then return to RISD the next fall. I got one at a company called Interleaf, which made software for creating documents. You mean like Microsoft Word? Exactly. That was how I learned that low end software tends to eat high end software. But Interleaf still had a few years to live yet. [5]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='395264d3-3625-46d0-8636-110e597f48b7'), '32082230-290a-46db-a914-19f705defd46': Node(page_content=\"Interleaf had done something pretty bold. Inspired by Emacs, they'd added a scripting language, and even made the scripting language a dialect of Lisp. Now they wanted a Lisp hacker to write things in it. This was the closest thing I've had to a normal job, and I hereby apologize to my boss and coworkers, because I was a bad employee. Their Lisp was the thinnest icing on a giant C cake, and since I didn't know C and didn't want to learn it, I never understood most of the software. Plus I was terribly irresponsible. This was back when a programming job meant showing up every day during certain working hours. That seemed unnatural to me, and on this point the rest of the world is coming around to my way of thinking, but at the time it caused a lot of friction. Toward the end of the year I spent much of my time surreptitiously working on On Lisp, which I had by this time gotten a contract to publish.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='32082230-290a-46db-a914-19f705defd46'), 'b102bff3-51da-44e2-9679-ed6445de3808': Node(page_content='The good part was that I got paid huge amounts of money, especially by art student standards. In Florence, after paying my part of the rent, my budget for everything else had been $7 a day. Now I was getting paid more than 4 times that every hour, even when I was just sitting in a meeting. By living cheaply I not only managed to save enough to go back to RISD, but also paid off my college loans.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='b102bff3-51da-44e2-9679-ed6445de3808'), '17ed5227-f4f7-4c2b-a28e-4265a141653e': Node(page_content=\"I learned some useful things at Interleaf, though they were mostly about what not to do. I learned that it's better for technology companies to be run by product people than sales people (though sales is a real skill and people who are good at it are really good at it), that it leads to bugs when code is edited by too many people, that cheap office space is no bargain if it's depressing, that planned meetings are inferior to corridor conversations, that big, bureaucratic customers are a dangerous source of money, and that there's not much overlap between conventional office hours and the optimal time for hacking, or conventional offices and the optimal place for it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='17ed5227-f4f7-4c2b-a28e-4265a141653e'), '03c17beb-1dbd-4c5a-9445-4d4f0c57379f': Node(page_content='But the most important thing I learned, and which I used in both Viaweb and Y Combinator, is that the low end eats the high end: that it\\'s good to be the \"entry level\" option, even though that will be less prestigious, because if you\\'re not, someone else will be, and will squash you against the ceiling. Which in turn means that prestige is a danger sign.\\n\\nWhen I left to go back to RISD the next fall, I arranged to do freelance work for the group that did projects for customers, and this was how I survived for the next several years. When I came back to visit for a project later on, someone told me about a new thing called HTML, which was, as he described it, a derivative of SGML. Markup language enthusiasts were an occupational hazard at Interleaf and I ignored him, but this HTML thing later became a big part of my life.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='03c17beb-1dbd-4c5a-9445-4d4f0c57379f'), 'ad27e028-f220-4b7e-a914-a2c67860e511': Node(page_content='In the fall of 1992 I moved back to Providence to continue at RISD. The foundation had merely been intro stuff, and the Accademia had been a (very civilized) joke. Now I was going to see what real art school was like. But alas it was more like the Accademia than not. Better organized, certainly, and a lot more expensive, but it was now becoming clear that art school did not bear the same relationship to art that medical school bore to medicine. At least not the painting department. The textile department, which my next door neighbor belonged to, seemed to be pretty rigorous. No doubt illustration and architecture were too. But painting was post-rigorous. Painting students were supposed to express themselves, which to the more worldly ones meant to try to cook up some sort of distinctive signature style.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad27e028-f220-4b7e-a914-a2c67860e511'), 'd996dddb-ee2a-4347-b6ff-0adf7c382d19': Node(page_content='A signature style is the visual equivalent of what in show business is known as a \"schtick\": something that immediately identifies the work as yours and no one else\\'s. For example, when you see a painting that looks like a certain kind of cartoon, you know it\\'s by Roy Lichtenstein. So if you see a big painting of this type hanging in the apartment of a hedge fund manager, you know he paid millions of dollars for it. That\\'s not always why artists have a signature style, but it\\'s usually why buyers pay a lot for such work. [6]\\n\\nThere were plenty of earnest students too: kids who \"could draw\" in high school, and now had come to what was supposed to be the best art school in the country, to learn to draw even better. They tended to be confused and demoralized by what they found at RISD, but they kept going, because painting was what they did. I was not one of the kids who could draw in high school, but at RISD I was definitely closer to their tribe than the tribe of signature style seekers.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d996dddb-ee2a-4347-b6ff-0adf7c382d19'), 'e6849fc6-388f-4476-905f-c07b44d846ff': Node(page_content=\"I learned a lot in the color class I took at RISD, but otherwise I was basically teaching myself to paint, and I could do that for free. So in 1993 I dropped out. I hung around Providence for a bit, and then my college friend Nancy Parmet did me a big favor. A rent-controlled apartment in a building her mother owned in New York was becoming vacant. Did I want it? It wasn't much more than my current place, and New York was supposed to be where the artists were. So yes, I wanted it! [7]\\n\\nAsterix comics begin by zooming in on a tiny corner of Roman Gaul that turns out not to be controlled by the Romans. You can do something similar on a map of New York City: if you zoom in on the Upper East Side, there's a tiny corner that's not rich, or at least wasn't in 1993. It's called Yorkville, and that was my new home. Now I was a New York artist — in the strictly technical sense of making paintings and living in New York.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6849fc6-388f-4476-905f-c07b44d846ff'), 'dd3809f5-9bbd-440d-b993-2b25e729584d': Node(page_content=\"I was nervous about money, because I could sense that Interleaf was on the way down. Freelance Lisp hacking work was very rare, and I didn't want to have to program in another language, which in those days would have meant C++ if I was lucky. So with my unerring nose for financial opportunity, I decided to write another book on Lisp. This would be a popular book, the sort of book that could be used as a textbook. I imagined myself living frugally off the royalties and spending all my time painting. (The painting on the cover of this book, ANSI Common Lisp, is one that I painted around this time.)\\n\\nThe best thing about New York for me was the presence of Idelle and Julian Weber. Idelle Weber was a painter, one of the early photorealists, and I'd taken her painting class at Harvard. I've never known a teacher more beloved by her students. Large numbers of former students kept in touch with her, including me. After I moved to New York I became her de facto studio assistant.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='dd3809f5-9bbd-440d-b993-2b25e729584d'), '6097a0d7-807d-4820-9ecd-7e8e373cc23d': Node(page_content=\"She liked to paint on big, square canvases, 4 to 5 feet on a side. One day in late 1994 as I was stretching one of these monsters there was something on the radio about a famous fund manager. He wasn't that much older than me, and was super rich. The thought suddenly occurred to me: why don't I become rich? Then I'll be able to work on whatever I want.\\n\\nMeanwhile I'd been hearing more and more about this new thing called the World Wide Web. Robert Morris showed it to me when I visited him in Cambridge, where he was now in grad school at Harvard. It seemed to me that the web would be a big deal. I'd seen what graphical user interfaces had done for the popularity of microcomputers. It seemed like the web would do the same for the internet.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6097a0d7-807d-4820-9ecd-7e8e373cc23d'), '8821373c-c593-4754-bce4-07fdf2b9bed1': Node(page_content=\"If I wanted to get rich, here was the next train leaving the station. I was right about that part. What I got wrong was the idea. I decided we should start a company to put art galleries online. I can't honestly say, after reading so many Y Combinator applications, that this was the worst startup idea ever, but it was up there. Art galleries didn't want to be online, and still don't, not the fancy ones. That's not how they sell. I wrote some software to generate web sites for galleries, and Robert wrote some to resize images and set up an http server to serve the pages. Then we tried to sign up galleries. To call this a difficult sale would be an understatement. It was difficult to give away. A few galleries let us make sites for them for free, but none paid us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='8821373c-c593-4754-bce4-07fdf2b9bed1'), '5190c08b-1add-44df-a89c-71da5b21a81f': Node(page_content='Then some online stores started to appear, and I realized that except for the order buttons they were identical to the sites we\\'d been generating for galleries. This impressive-sounding thing called an \"internet storefront\" was something we already knew how to build.\\n\\nSo in the summer of 1995, after I submitted the camera-ready copy of ANSI Common Lisp to the publishers, we started trying to write software to build online stores. At first this was going to be normal desktop software, which in those days meant Windows software. That was an alarming prospect, because neither of us knew how to write Windows software or wanted to learn. We lived in the Unix world. But we decided we\\'d at least try writing a prototype store builder on Unix. Robert wrote a shopping cart, and I wrote a new site generator for stores — in Lisp, of course.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5190c08b-1add-44df-a89c-71da5b21a81f'), '0c153247-5ff8-48f7-bd31-5139f0fc7302': Node(page_content=\"We were working out of Robert's apartment in Cambridge. His roommate was away for big chunks of time, during which I got to sleep in his room. For some reason there was no bed frame or sheets, just a mattress on the floor. One morning as I was lying on this mattress I had an idea that made me sit up like a capital L. What if we ran the software on the server, and let users control it by clicking on links? Then we'd never have to write anything to run on users' computers. We could generate the sites on the same server we'd serve them from. Users wouldn't need anything more than a browser.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0c153247-5ff8-48f7-bd31-5139f0fc7302'), '4ed7e80d-dc07-49eb-8d99-cb33fb56d042': Node(page_content=\"This kind of software, known as a web app, is common now, but at the time it wasn't clear that it was even possible. To find out, we decided to try making a version of our store builder that you could control through the browser. A couple days later, on August 12, we had one that worked. The UI was horrible, but it proved you could build a whole store through the browser, without any client software or typing anything into the command line on the server.\\n\\nNow we felt like we were really onto something. I had visions of a whole new generation of software working this way. You wouldn't need versions, or ports, or any of that crap. At Interleaf there had been a whole group called Release Engineering that seemed to be at least as big as the group that actually wrote the software. Now you could just update the software right on the server.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='4ed7e80d-dc07-49eb-8d99-cb33fb56d042'), '1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e': Node(page_content=\"We started a new company we called Viaweb, after the fact that our software worked via the web, and we got $10,000 in seed funding from Idelle's husband Julian. In return for that and doing the initial legal work and giving us business advice, we gave him 10% of the company. Ten years later this deal became the model for Y Combinator's. We knew founders needed something like this, because we'd needed it ourselves.\\n\\nAt this stage I had a negative net worth, because the thousand dollars or so I had in the bank was more than counterbalanced by what I owed the government in taxes. (Had I diligently set aside the proper proportion of the money I'd made consulting for Interleaf? No, I had not.) So although Robert had his graduate student stipend, I needed that seed funding to live on.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1abb27c9-dcf5-4e0f-ad40-ff83dbc63c0e', wins=1), '1f39257d-0248-4959-b47d-f2447a171058': Node(page_content=\"We originally hoped to launch in September, but we got more ambitious about the software as we worked on it. Eventually we managed to build a WYSIWYG site builder, in the sense that as you were creating pages, they looked exactly like the static ones that would be generated later, except that instead of leading to static pages, the links all referred to closures stored in a hash table on the server.\\n\\nIt helped to have studied art, because the main goal of an online store builder is to make users look legit, and the key to looking legit is high production values. If you get page layouts and fonts and colors right, you can make a guy running a store out of his bedroom look more legit than a big company.\\n\\n(If you're curious why my site looks so old-fashioned, it's because it's still made with this software. It may look clunky today, but in 1996 it was the last word in slick.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1f39257d-0248-4959-b47d-f2447a171058', wins=1), 'a5d7623b-6552-4ca9-a712-8cb0986696fe': Node(page_content='In September, Robert rebelled. \"We\\'ve been working on this for a month,\" he said, \"and it\\'s still not done.\" This is funny in retrospect, because he would still be working on it almost 3 years later. But I decided it might be prudent to recruit more programmers, and I asked Robert who else in grad school with him was really good. He recommended Trevor Blackwell, which surprised me at first, because at that point I knew Trevor mainly for his plan to reduce everything in his life to a stack of notecards, which he carried around with him. But Rtm was right, as usual. Trevor turned out to be a frighteningly effective hacker.\\n\\nIt was a lot of fun working with Robert and Trevor. They\\'re the two most independent-minded people I know, and in completely different ways. If you could see inside Rtm\\'s brain it would look like a colonial New England church, and if you could see inside Trevor\\'s it would look like the worst excesses of Austrian Rococo.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a5d7623b-6552-4ca9-a712-8cb0986696fe'), '6e31fe4b-e85c-4ad7-a092-be367364b972': Node(page_content=\"We opened for business, with 6 stores, in January 1996. It was just as well we waited a few months, because although we worried we were late, we were actually almost fatally early. There was a lot of talk in the press then about ecommerce, but not many people actually wanted online stores. [8]\\n\\nThere were three main parts to the software: the editor, which people used to build sites and which I wrote, the shopping cart, which Robert wrote, and the manager, which kept track of orders and statistics, and which Trevor wrote. In its time, the editor was one of the best general-purpose site builders. I kept the code tight and didn't have to integrate with any other software except Robert's and Trevor's, so it was quite fun to work on. If all I'd had to do was work on this software, the next 3 years would have been the easiest of my life. Unfortunately I had to do a lot more, all of it stuff I was worse at than programming, and the next 3 years were instead the most stressful.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6e31fe4b-e85c-4ad7-a092-be367364b972', wins=1), '7a732a06-6878-41be-9947-1c07a23ea4a7': Node(page_content=\"There were a lot of startups making ecommerce software in the second half of the 90s. We were determined to be the Microsoft Word, not the Interleaf. Which meant being easy to use and inexpensive. It was lucky for us that we were poor, because that caused us to make Viaweb even more inexpensive than we realized. We charged $100 a month for a small store and $300 a month for a big one. This low price was a big attraction, and a constant thorn in the sides of competitors, but it wasn't because of some clever insight that we set the price low. We had no idea what businesses paid for things. $300 a month seemed like a lot of money to us.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7a732a06-6878-41be-9947-1c07a23ea4a7'), '9f865fd1-57c6-4f67-ac9d-4f0d17bd751b': Node(page_content='We did a lot of things right by accident like that. For example, we did what\\'s now called \"doing things that don\\'t scale,\" although at the time we would have described it as \"being so lame that we\\'re driven to the most desperate measures to get users.\" The most common of which was building stores for them. This seemed particularly humiliating, since the whole raison d\\'etre of our software was that people could use it to make their own stores. But anything to get users.\\n\\nWe learned a lot more about retail than we wanted to know. For example, that if you could only have a small image of a man\\'s shirt (and all images were small then by present standards), it was better to have a closeup of the collar than a picture of the whole shirt. The reason I remember learning this was that it meant I had to rescan about 30 images of men\\'s shirts. My first set of scans were so beautiful too.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9f865fd1-57c6-4f67-ac9d-4f0d17bd751b'), '0df392b3-eb59-4359-b340-6e211caa3aae': Node(page_content='Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we\\'d have so many users that I couldn\\'t scan their images for them, but in the meantime there was nothing more important to do.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0df392b3-eb59-4359-b340-6e211caa3aae', wins=1), 'd57da0e4-fee3-4442-aa88-7c461dc9c4b4': Node(page_content=\"Another thing I didn't get at the time is that growth rate is the ultimate test of a startup. Our growth rate was fine. We had about 70 stores at the end of 1996 and about 500 at the end of 1997. I mistakenly thought the thing that mattered was the absolute number of users. And that is the thing that matters in the sense that that's how much money you're making, and if you're not making enough, you might go out of business. But in the long term the growth rate takes care of the absolute number. If we'd been a startup I was advising at Y Combinator, I would have said: Stop being so stressed out, because you're doing fine. You're growing 7x a year. Just don't hire too many more people and you'll soon be profitable, and then you'll control your own destiny.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d57da0e4-fee3-4442-aa88-7c461dc9c4b4', wins=1), '9bc68607-b275-4e2e-877a-8b9f23e349c2': Node(page_content=\"Alas I hired lots more people, partly because our investors wanted me to, and partly because that's what startups did during the Internet Bubble. A company with just a handful of employees would have seemed amateurish. So we didn't reach breakeven until about when Yahoo bought us in the summer of 1998. Which in turn meant we were at the mercy of investors for the entire life of the company. And since both we and our investors were noobs at startups, the result was a mess even by startup standards.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9bc68607-b275-4e2e-877a-8b9f23e349c2'), '5d19d396-aa70-4bf0-992e-069c632de8ad': Node(page_content=\"It was a huge relief when Yahoo bought us. In principle our Viaweb stock was valuable. It was a share in a business that was profitable and growing rapidly. But it didn't feel very valuable to me; I had no idea how to value a business, but I was all too keenly aware of the near-death experiences we seemed to have every few months. Nor had I changed my grad student lifestyle significantly since we started. So when Yahoo bought us it felt like going from rags to riches. Since we were going to California, I bought a car, a yellow 1998 VW GTI. I remember thinking that its leather seats alone were by far the most luxurious thing I owned.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='5d19d396-aa70-4bf0-992e-069c632de8ad'), '56272a9f-8b83-4b82-a1a2-598765c2b068': Node(page_content=\"The next year, from the summer of 1998 to the summer of 1999, must have been the least productive of my life. I didn't realize it at the time, but I was worn out from the effort and stress of running Viaweb. For a while after I got to California I tried to continue my usual m.o. of programming till 3 in the morning, but fatigue combined with Yahoo's prematurely aged culture and grim cube farm in Santa Clara gradually dragged me down. After a few months it felt disconcertingly like working at Interleaf.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='56272a9f-8b83-4b82-a1a2-598765c2b068'), 'fd511710-4a0b-4af9-834f-8c2d984a6dd0': Node(page_content=\"Yahoo had given us a lot of options when they bought us. At the time I thought Yahoo was so overvalued that they'd never be worth anything, but to my astonishment the stock went up 5x in the next year. I hung on till the first chunk of options vested, then in the summer of 1999 I left. It had been so long since I'd painted anything that I'd half forgotten why I was doing this. My brain had been entirely full of software and men's shirts for 4 years. But I had done this to get rich so I could paint, I reminded myself, and now I was rich, so I should go paint.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='fd511710-4a0b-4af9-834f-8c2d984a6dd0'), 'e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8': Node(page_content='When I said I was leaving, my boss at Yahoo had a long conversation with me about my plans. I told him all about the kinds of pictures I wanted to paint. At the time I was touched that he took such an interest in me. Now I realize it was because he thought I was lying. My options at that point were worth about $2 million a month. If I was leaving that kind of money on the table, it could only be to go and start some new startup, and if I did, I might take people with me. This was the height of the Internet Bubble, and Yahoo was ground zero of it. My boss was at that moment a billionaire. Leaving then to start a new startup must have seemed to him an insanely, and yet also plausibly, ambitious plan.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e0657fd8-ad08-439c-9b7a-1ccbf04cb3d8'), '07e153a7-98c9-45f5-9873-0415175e5887': Node(page_content=\"But I really was quitting to paint, and I started immediately. There was no time to lose. I'd already burned 4 years getting rich. Now when I talk to founders who are leaving after selling their companies, my advice is always the same: take a vacation. That's what I should have done, just gone off somewhere and done nothing for a month or two, but the idea never occurred to me.\\n\\nSo I tried to paint, but I just didn't seem to have any energy or ambition. Part of the problem was that I didn't know many people in California. I'd compounded this problem by buying a house up in the Santa Cruz Mountains, with a beautiful view but miles from anywhere. I stuck it out for a few more months, then in desperation I went back to New York, where unless you understand about rent control you'll be surprised to hear I still had my apartment, sealed up like a tomb of my old life. Idelle was in New York at least, and there were other people trying to paint there, even though I didn't know any of them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='07e153a7-98c9-45f5-9873-0415175e5887'), 'e6f53cbc-6f54-4287-ad99-52473f5e3cfa': Node(page_content=\"When I got back to New York I resumed my old life, except now I was rich. It was as weird as it sounds. I resumed all my old patterns, except now there were doors where there hadn't been. Now when I was tired of walking, all I had to do was raise my hand, and (unless it was raining) a taxi would stop to pick me up. Now when I walked past charming little restaurants I could go in and order lunch. It was exciting for a while. Painting started to go better. I experimented with a new kind of still life where I'd paint one painting in the old way, then photograph it and print it, blown up, on canvas, and then use that as the underpainting for a second still life, painted from the same objects (which hopefully hadn't rotted yet).\\n\\nMeanwhile I looked for an apartment to buy. Now I could actually choose what neighborhood to live in. Where, I asked myself and various real estate agents, is the Cambridge of New York? Aided by occasional visits to actual Cambridge, I gradually realized there wasn't one. Huh.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e6f53cbc-6f54-4287-ad99-52473f5e3cfa'), '209c154b-eaa4-4d0c-9ee3-9de983548416': Node(page_content='Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='209c154b-eaa4-4d0c-9ee3-9de983548416', wins=1), '725c5f11-2423-4e18-bc97-752009c281de': Node(page_content=\"I got so excited about this idea that I couldn't think about anything else. It seemed obvious that this was the future. I didn't particularly want to start another company, but it was clear that this idea would have to be embodied as one, so I decided to move to Cambridge and start it. I hoped to lure Robert into working on it with me, but there I ran into a hitch. Robert was now a postdoc at MIT, and though he'd made a lot of money the last time I'd lured him into working on one of my schemes, it had also been a huge time sink. So while he agreed that it sounded like a plausible idea, he firmly refused to work on it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='725c5f11-2423-4e18-bc97-752009c281de'), '9b17eb54-1f33-4904-bc1a-b18254f2f85a': Node(page_content='Hmph. Well, I\\'d do it myself then. I recruited Dan Giffin, who had worked for Viaweb, and two undergrads who wanted summer jobs, and we got to work trying to build what it\\'s now clear is about twenty companies and several open source projects worth of software. The language for defining applications would of course be a dialect of Lisp. But I wasn\\'t so naive as to assume I could spring an overt Lisp on a general audience; we\\'d hide the parentheses, like Dylan did.\\n\\nBy then there was a name for the kind of company Viaweb was, an \"application service provider,\" or ASP. This name didn\\'t last long before it was replaced by \"software as a service,\" but it was current for long enough that I named this new company after it: it was going to be called Aspra.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='9b17eb54-1f33-4904-bc1a-b18254f2f85a', wins=1), '1185a7b9-b8da-441e-89b1-12b8a81c2502': Node(page_content=\"I started working on the application builder, Dan worked on network infrastructure, and the two undergrads worked on the first two services (images and phone calls). But about halfway through the summer I realized I really didn't want to run a company — especially not a big one, which it was looking like this would have to be. I'd only started Viaweb because I needed the money. Now that I didn't need money anymore, why was I doing this? If this vision had to be realized as a company, then screw the vision. I'd build a subset that could be done as an open source project.\\n\\nMuch to my surprise, the time I spent working on this stuff was not wasted after all. After we started Y Combinator, I would often encounter startups working on parts of this new architecture, and it was very useful to have spent so much time thinking about it and even trying to write some of it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='1185a7b9-b8da-441e-89b1-12b8a81c2502', wins=1), '33017a92-fecc-4bf1-ae08-cc414c62cbf7': Node(page_content=\"The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='33017a92-fecc-4bf1-ae08-cc414c62cbf7', wins=1), 'a746d02f-1466-434d-addd-04b936502bec': Node(page_content=\"Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a746d02f-1466-434d-addd-04b936502bec', wins=1), 'ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881': Node(page_content=\"In the print era, the channel for publishing essays had been vanishingly small. Except for a few officially anointed thinkers who went to the right parties in New York, the only people allowed to publish essays were specialists writing about their specialties. There were so many essays that had never been written, because there had been no way to publish them. Now they could be, and I was going to write them. [12]\\n\\nI've worked on several different things, but to the extent there was a turning point where I figured out what to work on, it was when I started publishing essays online. From then on I knew that whatever else I did, I'd always write essays too.\\n\\nI knew that online essays would be a marginal medium at first. Socially they'd seem more like rants posted by nutjobs on their GeoCities sites than the genteel and beautifully typeset compositions published in The New Yorker. But by this point I knew enough to find that encouraging instead of discouraging.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce71b1b9-fe7f-4dd5-bbfd-c07afaf1d881', wins=1), '836f9505-8112-4300-a484-655731655443': Node(page_content=\"One of the most conspicuous patterns I've noticed in my life is how well it has worked, for me at least, to work on things that weren't prestigious. Still life has always been the least prestigious form of painting. Viaweb and Y Combinator both seemed lame when we started them. I still get the glassy eye from strangers when they ask what I'm writing, and I explain that it's an essay I'm going to publish on my web site. Even Lisp, though prestigious intellectually in something like the way Latin is, also seems about as hip.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='836f9505-8112-4300-a484-655731655443', wins=1), 'ad36fb50-0350-45a4-925e-29f0980a9cba': Node(page_content=\"It's not that unprestigious types of work are good per se. But when you find yourself drawn to some kind of work despite its current lack of prestige, it's a sign both that there's something real to be discovered there, and that you have the right kind of motives. Impure motives are a big danger for the ambitious. If anything is going to lead you astray, it will be the desire to impress people. So while working on things that aren't prestigious doesn't guarantee you're on the right track, it at least guarantees you're not on the most common type of wrong one.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ad36fb50-0350-45a4-925e-29f0980a9cba', wins=2), '271b9209-34c1-4eb9-a7d4-5c8cb047c3a7': Node(page_content=\"Over the next several years I wrote lots of essays about all kinds of different topics. O'Reilly reprinted a collection of them as a book, called Hackers & Painters after one of the essays in it. I also worked on spam filters, and did some more painting. I used to have dinners for a group of friends every thursday night, which taught me how to cook for groups. And I bought another building in Cambridge, a former candy factory (and later, twas said, porn studio), to use as an office.\\n\\nOne night in October 2003 there was a big party at my house. It was a clever idea of my friend Maria Daniels, who was one of the thursday diners. Three separate hosts would all invite their friends to one party. So for every guest, two thirds of the other guests would be people they didn't know but would probably like. One of the guests was someone I didn't know but would turn out to like a lot: a woman called Jessica Livingston. A couple days later I asked her out.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='271b9209-34c1-4eb9-a7d4-5c8cb047c3a7'), '7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc': Node(page_content='Jessica was in charge of marketing at a Boston investment bank. This bank thought it understood startups, but over the next year, as she met friends of mine from the startup world, she was surprised how different reality was. And how colorful their stories were. So she decided to compile a book of interviews with startup founders.\\n\\nWhen the bank had financial problems and she had to fire half her staff, she started looking for a new job. In early 2005 she interviewed for a marketing job at a Boston VC firm. It took them weeks to make up their minds, and during this time I started telling her about all the things that needed to be fixed about venture capital. They should make a larger number of smaller investments instead of a handful of giant ones, they should be funding younger, more technical founders instead of MBAs, they should let the founders remain as CEO, and so on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7cd7c07c-fb7e-45d9-8e21-2439f9a4f7dc'), 'ce520b00-c87c-4bfe-a179-0fa11c9d5273': Node(page_content=\"One of my tricks for writing essays had always been to give talks. The prospect of having to stand up in front of a group of people and tell them something that won't waste their time is a great spur to the imagination. When the Harvard Computer Society, the undergrad computer club, asked me to give a talk, I decided I would tell them how to start a startup. Maybe they'd be able to avoid the worst of the mistakes we'd made.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ce520b00-c87c-4bfe-a179-0fa11c9d5273', wins=1), 'e9a82e89-0d8f-480b-9f26-1acfffaab9a1': Node(page_content='So I gave this talk, in the course of which I told them that the best sources of seed funding were successful startup founders, because then they\\'d be sources of advice too. Whereupon it seemed they were all looking expectantly at me. Horrified at the prospect of having my inbox flooded by business plans (if I\\'d only known), I blurted out \"But not me!\" and went on with the talk. But afterward it occurred to me that I should really stop procrastinating about angel investing. I\\'d been meaning to since Yahoo bought us, and now it was 7 years later and I still hadn\\'t done one angel investment.\\n\\nMeanwhile I had been scheming with Robert and Trevor about projects we could work on together. I missed working with them, and it seemed like there had to be something we could collaborate on.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e9a82e89-0d8f-480b-9f26-1acfffaab9a1'), '073bc744-8e07-42e7-8595-39496927fe88': Node(page_content=\"As Jessica and I were walking home from dinner on March 11, at the corner of Garden and Walker streets, these three threads converged. Screw the VCs who were taking so long to make up their minds. We'd start our own investment firm and actually implement the ideas we'd been talking about. I'd fund it, and Jessica could quit her job and work for it, and we'd get Robert and Trevor as partners too. [13]\\n\\nOnce again, ignorance worked in our favor. We had no idea how to be angel investors, and in Boston in 2005 there were no Ron Conways to learn from. So we just made what seemed like the obvious choices, and some of the things we did turned out to be novel.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='073bc744-8e07-42e7-8595-39496927fe88'), '7ffe9bfd-9225-407c-9048-5ae1b0f25fc6': Node(page_content=\"There are multiple components to Y Combinator, and we didn't figure them all out at once. The part we got first was to be an angel firm. In those days, those two words didn't go together. There were VC firms, which were organized companies with people whose job it was to make investments, but they only did big, million dollar investments. And there were angels, who did smaller investments, but these were individuals who were usually focused on other things and made investments on the side. And neither of them helped founders enough in the beginning. We knew how helpless founders were in some respects, because we remembered how helpless we'd been. For example, one thing Julian had done for us that seemed to us like magic was to get us set up as a company. We were fine writing fairly difficult software, but actually getting incorporated, with bylaws and stock and all that stuff, how on earth did you do that? Our plan was not only to make seed investments, but to do for startups everything Julian had done for\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='7ffe9bfd-9225-407c-9048-5ae1b0f25fc6'), '83ef6c3c-2575-48c1-bf79-8376e2afe2e1': Node(page_content='Julian had done for us.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='83ef6c3c-2575-48c1-bf79-8376e2afe2e1'), 'f4142432-6daa-4c6b-ad89-00e3712c373c': Node(page_content='YC was not organized as a fund. It was cheap enough to run that we funded it with our own money. That went right by 99% of readers, but professional investors are thinking \"Wow, that means they got all the returns.\" But once again, this was not due to any particular insight on our part. We didn\\'t know how VC firms were organized. It never occurred to us to try to raise a fund, and if it had, we wouldn\\'t have known where to start. [14]', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='f4142432-6daa-4c6b-ad89-00e3712c373c', wins=1), 'a4c983c2-a43c-49f6-9ca0-db73867728a9': Node(page_content=\"The most distinctive thing about YC is the batch model: to fund a bunch of startups all at once, twice a year, and then to spend three months focusing intensively on trying to help them. That part we discovered by accident, not merely implicitly but explicitly due to our ignorance about investing. We needed to get experience as investors. What better way, we thought, than to fund a whole bunch of startups at once? We knew undergrads got temporary jobs at tech companies during the summer. Why not organize a summer program where they'd start startups instead? We wouldn't feel guilty for being in a sense fake investors, because they would in a similar sense be fake founders. So while we probably wouldn't make much money out of it, we'd at least get to practice being investors on them, and they for their part would probably have a more interesting summer than they would working at Microsoft.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4c983c2-a43c-49f6-9ca0-db73867728a9', wins=1), '0198787d-a061-45f0-92d5-e45f6e7ae912': Node(page_content='We\\'d use the building I owned in Cambridge as our headquarters. We\\'d all have dinner there once a week — on tuesdays, since I was already cooking for the thursday diners on thursdays — and after dinner we\\'d bring in experts on startups to give talks.\\n\\nWe knew undergrads were deciding then about summer jobs, so in a matter of days we cooked up something we called the Summer Founders Program, and I posted an announcement on my site, inviting undergrads to apply. I had never imagined that writing essays would be a way to get \"deal flow,\" as investors call it, but it turned out to be the perfect source. [15] We got 225 applications for the Summer Founders Program, and we were surprised to find that a lot of them were from people who\\'d already graduated, or were about to that spring. Already this SFP thing was starting to feel more serious than we\\'d intended.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0198787d-a061-45f0-92d5-e45f6e7ae912'), '745dd18f-832f-4d1e-b688-319f7c617464': Node(page_content=\"We invited about 20 of the 225 groups to interview in person, and from those we picked 8 to fund. They were an impressive group. That first batch included reddit, Justin Kan and Emmett Shear, who went on to found Twitch, Aaron Swartz, who had already helped write the RSS spec and would a few years later become a martyr for open access, and Sam Altman, who would later become the second president of YC. I don't think it was entirely luck that the first batch was so good. You had to be pretty bold to sign up for a weird thing like the Summer Founders Program instead of a summer job at a legit place like Microsoft or Goldman Sachs.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='745dd18f-832f-4d1e-b688-319f7c617464'), 'bf8387d0-b094-4f59-8c13-ca1014ea67ac': Node(page_content='The deal for startups was based on a combination of the deal we did with Julian ($10k for 10%) and what Robert said MIT grad students got for the summer ($6k). We invested $6k per founder, which in the typical two-founder case was $12k, in return for 6%. That had to be fair, because it was twice as good as the deal we ourselves had taken. Plus that first summer, which was really hot, Jessica brought the founders free air conditioners. [16]\\n\\nFairly quickly I realized that we had stumbled upon the way to scale startup funding. Funding startups in batches was more convenient for us, because it meant we could do things for a lot of startups at once, but being part of a batch was better for the startups too. It solved one of the biggest problems faced by founders: the isolation. Now you not only had colleagues, but colleagues who understood the problems you were facing and could tell you how they were solving them.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='bf8387d0-b094-4f59-8c13-ca1014ea67ac'), '526ba90a-5223-4530-a966-baea4886bdc1': Node(page_content='As YC grew, we started to notice other advantages of scale. The alumni became a tight community, dedicated to helping one another, and especially the current batch, whose shoes they remembered being in. We also noticed that the startups were becoming one another\\'s customers. We used to refer jokingly to the \"YC GDP,\" but as YC grows this becomes less and less of a joke. Now lots of startups get their initial set of customers almost entirely from among their batchmates.\\n\\nI had not originally intended YC to be a full-time job. I was going to do three things: hack, write essays, and work on YC. As YC grew, and I grew more excited about it, it started to take up a lot more than a third of my attention. But for the first few years I was still able to work on other things.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='526ba90a-5223-4530-a966-baea4886bdc1', wins=1), 'aa1dfbc4-133a-4f2d-99fe-c0ebce320d09': Node(page_content=\"In the summer of 2006, Robert and I started working on a new version of Arc. This one was reasonably fast, because it was compiled into Scheme. To test this new Arc, I wrote Hacker News in it. It was originally meant to be a news aggregator for startup founders and was called Startup News, but after a few months I got tired of reading about nothing but startups. Plus it wasn't startup founders we wanted to reach. It was future startup founders. So I changed the name to Hacker News and the topic to whatever engaged one's intellectual curiosity.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='aa1dfbc4-133a-4f2d-99fe-c0ebce320d09'), 'c8505964-4597-440a-9044-033cf10ca40e': Node(page_content=\"HN was no doubt good for YC, but it was also by far the biggest source of stress for me. If all I'd had to do was select and help founders, life would have been so easy. And that implies that HN was a mistake. Surely the biggest source of stress in one's work should at least be something close to the core of the work. Whereas I was like someone who was in pain while running a marathon not from the exertion of running, but because I had a blister from an ill-fitting shoe. When I was dealing with some urgent problem during YC, there was about a 60% chance it had to do with HN, and a 40% chance it had do with everything else combined. [17]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='c8505964-4597-440a-9044-033cf10ca40e'), '251faa7a-72ec-4bd9-ad69-1af024efbbc4': Node(page_content=\"As well as HN, I wrote all of YC's internal software in Arc. But while I continued to work a good deal in Arc, I gradually stopped working on Arc, partly because I didn't have time to, and partly because it was a lot less attractive to mess around with the language now that we had all this infrastructure depending on it. So now my three projects were reduced to two: writing essays and working on YC.\\n\\nYC was different from other kinds of work I've done. Instead of deciding for myself what to work on, the problems came to me. Every 6 months there was a new batch of startups, and their problems, whatever they were, became our problems. It was very engaging work, because their problems were quite varied, and the good founders were very effective. If you were trying to learn the most you could about startups in the shortest possible time, you couldn't have picked a better way to do it.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='251faa7a-72ec-4bd9-ad69-1af024efbbc4'), '454a991d-29ac-4982-a8e5-72a02f0ef5a2': Node(page_content='There were parts of the job I didn\\'t like. Disputes between cofounders, figuring out when people were lying to us, fighting with people who maltreated the startups, and so on. But I worked hard even at the parts I didn\\'t like. I was haunted by something Kevin Hale once said about companies: \"No one works harder than the boss.\" He meant it both descriptively and prescriptively, and it was the second part that scared me. I wanted YC to be good, so if how hard I worked set the upper bound on how hard everyone else worked, I\\'d better work very hard.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='454a991d-29ac-4982-a8e5-72a02f0ef5a2'), 'edd1ff8d-62c3-4e10-95c6-6ef7b27a4531': Node(page_content='One day in 2010, when he was visiting California for interviews, Robert Morris did something astonishing: he offered me unsolicited advice. I can only remember him doing that once before. One day at Viaweb, when I was bent over double from a kidney stone, he suggested that it would be a good idea for him to take me to the hospital. That was what it took for Rtm to offer unsolicited advice. So I remember his exact words very clearly. \"You know,\" he said, \"you should make sure Y Combinator isn\\'t the last cool thing you do.\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edd1ff8d-62c3-4e10-95c6-6ef7b27a4531'), '71c27b46-b79b-48ef-ad7e-3a0400ece844': Node(page_content=\"At the time I didn't understand what he meant, but gradually it dawned on me that he was saying I should quit. This seemed strange advice, because YC was doing great. But if there was one thing rarer than Rtm offering advice, it was Rtm being wrong. So this set me thinking. It was true that on my current trajectory, YC would be the last thing I did, because it was only taking up more of my attention. It had already eaten Arc, and was in the process of eating essays too. Either YC was my life's work or I'd have to leave eventually. And it wasn't, so I would.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='71c27b46-b79b-48ef-ad7e-3a0400ece844'), '949a121e-1e69-45a4-98cd-e7f7c47c8bf9': Node(page_content=\"In the summer of 2012 my mother had a stroke, and the cause turned out to be a blood clot caused by colon cancer. The stroke destroyed her balance, and she was put in a nursing home, but she really wanted to get out of it and back to her house, and my sister and I were determined to help her do it. I used to fly up to Oregon to visit her regularly, and I had a lot of time to think on those flights. On one of them I realized I was ready to hand YC over to someone else.\\n\\nI asked Jessica if she wanted to be president, but she didn't, so we decided we'd try to recruit Sam Altman. We talked to Robert and Trevor and we agreed to make it a complete changing of the guard. Up till that point YC had been controlled by the original LLC we four had started. But we wanted YC to last for a long time, and to do that it couldn't be controlled by the founders. So if Sam said yes, we'd let him reorganize YC. Robert and I would retire, and Jessica and Trevor would become ordinary partners.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='949a121e-1e69-45a4-98cd-e7f7c47c8bf9'), 'ee41cd68-792e-4ebf-aa6c-672740604a7e': Node(page_content=\"When we asked Sam if he wanted to be president of YC, initially he said no. He wanted to start a startup to make nuclear reactors. But I kept at it, and in October 2013 he finally agreed. We decided he'd take over starting with the winter 2014 batch. For the rest of 2013 I left running YC more and more to Sam, partly so he could learn the job, and partly because I was focused on my mother, whose cancer had returned.\\n\\nShe died on January 15, 2014. We knew this was coming, but it was still hard when it did.\\n\\nI kept working on YC till March, to help get that batch of startups through Demo Day, then I checked out pretty completely. (I still talk to alumni and to new startups working on things I'm interested in, but that only takes a few hours a week.)\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ee41cd68-792e-4ebf-aa6c-672740604a7e'), '70bcf8a8-1e2c-4cbd-a93f-ade0c453e437': Node(page_content=\"What should I do next? Rtm's advice hadn't included anything about that. I wanted to do something completely different, so I decided I'd paint. I wanted to see how good I could get if I really focused on it. So the day after I stopped working on YC, I started painting. I was rusty and it took a while to get back into shape, but it was at least completely engaging. [18]\\n\\nI spent most of the rest of 2014 painting. I'd never been able to work so uninterruptedly before, and I got to be better than I had been. Not good enough, but better. Then in November, right in the middle of a painting, I ran out of steam. Up till that point I'd always been curious to see how the painting I was working on would turn out, but suddenly finishing this one seemed like a chore. So I stopped working on it and cleaned my brushes and haven't painted since. So far anyway.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='70bcf8a8-1e2c-4cbd-a93f-ade0c453e437'), 'de347d59-7d93-4174-b095-30666d86c163': Node(page_content=\"I realize that sounds rather wimpy. But attention is a zero sum game. If you can choose what to work on, and you choose a project that's not the best one (or at least a good one) for you, then it's getting in the way of another project that is. And at 50 there was some opportunity cost to screwing around.\\n\\nI started writing essays again, and wrote a bunch of new ones over the next few months. I even wrote a couple that weren't about startups. Then in March 2015 I started working on Lisp again.\\n\\nThe distinctive thing about Lisp is that its core is a language defined by writing an interpreter in itself. It wasn't originally intended as a programming language in the ordinary sense. It was meant to be a formal model of computation, an alternative to the Turing machine. If you want to write an interpreter for a language in itself, what's the minimum set of predefined operators you need? The Lisp that John McCarthy invented, or more accurately discovered, is an answer to that question. [19]\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='de347d59-7d93-4174-b095-30666d86c163'), 'd8717b54-2764-42ab-a7b9-7dc8f36ee9b4': Node(page_content=\"McCarthy didn't realize this Lisp could even be used to program computers till his grad student Steve Russell suggested it. Russell translated McCarthy's interpreter into IBM 704 machine language, and from that point Lisp started also to be a programming language in the ordinary sense. But its origins as a model of computation gave it a power and elegance that other languages couldn't match. It was this that attracted me in college, though I didn't understand why at the time.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='d8717b54-2764-42ab-a7b9-7dc8f36ee9b4'), 'ab5cf714-67cb-4e35-a7a5-cef31b3093c2': Node(page_content=\"McCarthy's 1960 Lisp did nothing more than interpret Lisp expressions. It was missing a lot of things you'd want in a programming language. So these had to be added, and when they were, they weren't defined using McCarthy's original axiomatic approach. That wouldn't have been feasible at the time. McCarthy tested his interpreter by hand-simulating the execution of programs. But it was already getting close to the limit of interpreters you could test that way — indeed, there was a bug in it that McCarthy had overlooked. To test a more complicated interpreter, you'd have had to run it, and computers then weren't powerful enough.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ab5cf714-67cb-4e35-a7a5-cef31b3093c2'), 'ccc691c6-2730-445f-a301-3e6d29614239': Node(page_content=\"Now they are, though. Now you could continue using McCarthy's axiomatic approach till you'd defined a complete programming language. And as long as every change you made to McCarthy's Lisp was a discoveredness-preserving transformation, you could, in principle, end up with a complete language that had this quality. Harder to do than to talk about, of course, but if it was possible in principle, why not try? So I decided to take a shot at it. It took 4 years, from March 26, 2015 to October 12, 2019. It was fortunate that I had a precisely defined goal, or it would have been hard to keep at it for so long.\\n\\nI wrote this new Lisp, called Bel, in itself in Arc. That may sound like a contradiction, but it's an indication of the sort of trickery I had to engage in to make this work. By means of an egregious collection of hacks I managed to make something close enough to an interpreter written in itself that could actually run. Not fast, but fast enough to test.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='ccc691c6-2730-445f-a301-3e6d29614239'), '6c6c1376-f7e2-4435-84ea-1324fd16912e': Node(page_content='I had to ban myself from writing essays during most of this time, or I\\'d never have finished. In late 2015 I spent 3 months writing essays, and when I went back to working on Bel I could barely understand the code. Not so much because it was badly written as because the problem is so convoluted. When you\\'re working on an interpreter written in itself, it\\'s hard to keep track of what\\'s happening at what level, and errors can be practically encrypted by the time you get them.\\n\\nSo I said no more essays till Bel was done. But I told few people about Bel while I was working on it. So for years it must have seemed that I was doing nothing, when in fact I was working harder than I\\'d ever worked on anything. Occasionally after wrestling for hours with some gruesome bug I\\'d check Twitter or HN and see someone asking \"Does Paul Graham still code?\"', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6c6c1376-f7e2-4435-84ea-1324fd16912e'), '0f927fda-431c-4163-9b61-6b3c9eff403b': Node(page_content=\"Working on Bel was hard but satisfying. I worked on it so intensively that at any given time I had a decent chunk of the code in my head and could write more there. I remember taking the boys to the coast on a sunny day in 2015 and figuring out how to deal with some problem involving continuations while I watched them play in the tide pools. It felt like I was doing life right. I remember that because I was slightly dismayed at how novel it felt. The good news is that I had more moments like this over the next few years.\\n\\nIn the summer of 2016 we moved to England. We wanted our kids to see what it was like living in another country, and since I was a British citizen by birth, that seemed the obvious choice. We only meant to stay for a year, but we liked it so much that we still live there. So most of Bel was written in England.\\n\\nIn the fall of 2019, Bel was finally finished. Like McCarthy's original Lisp, it's a spec rather than an implementation, although like McCarthy's Lisp it's a spec expressed as code.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='0f927fda-431c-4163-9b61-6b3c9eff403b'), '6af9ede9-1b89-44db-a81f-20ce45d1802a': Node(page_content=\"Now that I could write essays again, I wrote a bunch about topics I'd had stacked up. I kept writing essays through 2020, but I also started to think about other things I could work on. How should I choose what to do? Well, how had I chosen what to work on in the past? I wrote an essay for myself to answer that question, and I was surprised how long and messy the answer turned out to be. If this surprised me, who'd lived it, then I thought perhaps it would be interesting to other people, and encouraging to those with similarly messy lives. So I wrote a more detailed version for others to read, and this is the last sentence of it.\\n\\nNotes\\n\\n[1] My experience skipped a step in the evolution of computers: time-sharing machines with interactive OSes. I went straight from batch processing to microcomputers, which made microcomputers seem all the more exciting.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6af9ede9-1b89-44db-a81f-20ce45d1802a'), '67d6eed8-0267-4500-a3b2-8c7ed2ac83a6': Node(page_content=\"[2] Italian words for abstract concepts can nearly always be predicted from their English cognates (except for occasional traps like polluzione). It's the everyday words that differ. So if you string together a lot of abstract concepts with a few simple verbs, you can make a little Italian go a long way.\\n\\n[3] I lived at Piazza San Felice 4, so my walk to the Accademia went straight down the spine of old Florence: past the Pitti, across the bridge, past Orsanmichele, between the Duomo and the Baptistery, and then up Via Ricasoli to Piazza San Marco. I saw Florence at street level in every possible condition, from empty dark winter evenings to sweltering summer days when the streets were packed with tourists.\\n\\n[4] You can of course paint people like still lives if you want to, and they're willing. That sort of portrait is arguably the apex of still life painting, though the long sitting does tend to produce pained expressions in the sitters.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='67d6eed8-0267-4500-a3b2-8c7ed2ac83a6'), 'edacd5b2-60d6-434b-ac59-273dd42896e8': Node(page_content=\"[5] Interleaf was one of many companies that had smart people and built impressive technology, and yet got crushed by Moore's Law. In the 1990s the exponential growth in the power of commodity (i.e. Intel) processors rolled up high-end, special-purpose hardware and software companies like a bulldozer.\\n\\n[6] The signature style seekers at RISD weren't specifically mercenary. In the art world, money and coolness are tightly coupled. Anything expensive comes to be seen as cool, and anything seen as cool will soon become equally expensive.\\n\\n[7] Technically the apartment wasn't rent-controlled but rent-stabilized, but this is a refinement only New Yorkers would know or care about. The point is that it was really cheap, less than half market price.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edacd5b2-60d6-434b-ac59-273dd42896e8'), '46a2d3c9-dcd7-4d1d-a520-af1518532c01': Node(page_content=\"[8] Most software you can launch as soon as it's done. But when the software is an online store builder and you're hosting the stores, if you don't have any users yet, that fact will be painfully obvious. So before we could launch publicly we had to launch privately, in the sense of recruiting an initial set of users and making sure they had decent-looking stores.\\n\\n[9] We'd had a code editor in Viaweb for users to define their own page styles. They didn't know it, but they were editing Lisp expressions underneath. But this wasn't an app editor, because the code ran when the merchants' sites were generated, not when shoppers visited them.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='46a2d3c9-dcd7-4d1d-a520-af1518532c01'), 'a4bd607d-62be-4ee7-a34d-3bd5305da820': Node(page_content=\"[10] This was the first instance of what is now a familiar experience, and so was what happened next, when I read the comments and found they were full of angry people. How could I claim that Lisp was better than other languages? Weren't they all Turing complete? People who see the responses to essays I write sometimes tell me how sorry they feel for me, but I'm not exaggerating when I reply that it has always been like this, since the very beginning. It comes with the territory. An essay must tell readers things they don't already know, and some people dislike being told such things.\\n\\n[11] People put plenty of stuff on the internet in the 90s of course, but putting something online is not the same as publishing it online. Publishing online means you treat the online version as the (or at least a) primary version.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='a4bd607d-62be-4ee7-a34d-3bd5305da820', wins=1), '6d435c9f-7f32-4be9-931b-854ce5d29546': Node(page_content=\"[12] There is a general lesson here that our experience with Y Combinator also teaches: Customs continue to constrain you long after the restrictions that caused them have disappeared. Customary VC practice had once, like the customs about publishing essays, been based on real constraints. Startups had once been much more expensive to start, and proportionally rare. Now they could be cheap and common, but the VCs' customs still reflected the old world, just as customs about writing essays still reflected the constraints of the print era.\\n\\nWhich in turn implies that people who are independent-minded (i.e. less influenced by custom) will have an advantage in fields affected by rapid change (where customs are more likely to be obsolete).\\n\\nHere's an interesting point, though: you can't always predict which fields will be affected by rapid change. Obviously software and venture capital will be, but who would have predicted that essay writing would be?\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='6d435c9f-7f32-4be9-931b-854ce5d29546', wins=1), '522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e': Node(page_content=\"[13] Y Combinator was not the original name. At first we were called Cambridge Seed. But we didn't want a regional name, in case someone copied us in Silicon Valley, so we renamed ourselves after one of the coolest tricks in the lambda calculus, the Y combinator.\\n\\nI picked orange as our color partly because it's the warmest, and partly because no VC used it. In 2005 all the VCs used staid colors like maroon, navy blue, and forest green, because they were trying to appeal to LPs, not founders. The YC logo itself is an inside joke: the Viaweb logo had been a white V on a red circle, so I made the YC logo a white Y on an orange square.\\n\\n[14] YC did become a fund for a couple years starting in 2009, because it was getting so big I could no longer afford to fund it personally. But after Heroku got bought we had enough money to go back to being self-funded.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='522fa40f-3dc4-4ec4-93f3-3bf50cd03f2e', wins=1), '27b2bd1d-8de5-4424-ba1f-323592eaf441': Node(page_content='[15] I\\'ve never liked the term \"deal flow,\" because it implies that the number of new startups at any given time is fixed. This is not only false, but it\\'s the purpose of YC to falsify it, by causing startups to be founded that would not otherwise have existed.\\n\\n[16] She reports that they were all different shapes and sizes, because there was a run on air conditioners and she had to get whatever she could, but that they were all heavier than she could carry now.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='27b2bd1d-8de5-4424-ba1f-323592eaf441'), 'edabe432-0c59-4ba5-aa37-d5cddb072669': Node(page_content=\"[17] Another problem with HN was a bizarre edge case that occurs when you both write essays and run a forum. When you run a forum, you're assumed to see if not every conversation, at least every conversation involving you. And when you write essays, people post highly imaginative misinterpretations of them on forums. Individually these two phenomena are tedious but bearable, but the combination is disastrous. You actually have to respond to the misinterpretations, because the assumption that you're present in the conversation means that not responding to any sufficiently upvoted misinterpretation reads as a tacit admission that it's correct. But that in turn encourages more; anyone who wants to pick a fight with you senses that now is their chance.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='edabe432-0c59-4ba5-aa37-d5cddb072669'), 'e508308d-e2bf-46db-a3c4-c98d86a7d9d4': Node(page_content=\"[18] The worst thing about leaving YC was not working with Jessica anymore. We'd been working on YC almost the whole time we'd known each other, and we'd neither tried nor wanted to separate it from our personal lives, so leaving was like pulling up a deeply rooted tree.\\n\\n[19] One way to get more precise about the concept of invented vs discovered is to talk about space aliens. Any sufficiently advanced alien civilization would certainly know about the Pythagorean theorem, for example. I believe, though with less certainty, that they would also know about the Lisp in McCarthy's 1960 paper.\\n\\nBut if so there's no reason to suppose that this is the limit of the language that might be known to them. Presumably aliens need numbers and errors and I/O too. So it seems likely there exists at least one path out of McCarthy's Lisp along which discoveredness is preserved.\", metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='e508308d-e2bf-46db-a3c4-c98d86a7d9d4'), 'cf0b9256-68dd-4e82-86f0-7a7464e0d0fe': Node(page_content='Thanks to Trevor Blackwell, John Collison, Patrick Collison, Daniel Gackle, Ralph Hazell, Jessica Livingston, Robert Morris, and Harj Taggar for reading drafts of this.', metadata={'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, doc_id='cf0b9256-68dd-4e82-86f0-7a7464e0d0fe')}, run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), node_filter=NodeFilter(llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), threshold=1.5, context_scoring_prompt=Prompt(name='score_context', instruction='\\n Given a context, perform the following task and output the answer in VALID JSON format: Assess the provided context and assign a numerical score of 1 (Low), 2 (Medium), or 3 (High) for each of the following criteria in your JSON response:\\n\\nclarity: Evaluate the precision and understandability of the information presented. High scores (3) are reserved for contexts that are both precise in their information and easy to understand. Low scores (1) are for contexts where the information is vague or hard to comprehend.\\ndepth: Determine the level of detailed examination and the inclusion of innovative insights within the context. A high score indicates a comprehensive and insightful analysis, while a low score suggests a superficial treatment of the topic.\\nstructure: Assess how well the content is organized and whether it flows logically. High scores are awarded to contexts that demonstrate coherent organization and logical progression, whereas low scores indicate a lack of structure or clarity in progression.\\nrelevance: Judge the pertinence of the content to the main topic, awarding high scores to contexts tightly focused on the subject without unnecessary digressions, and low scores to those that are cluttered with irrelevant information.\\nStructure your JSON output to reflect these criteria as keys with their corresponding scores as values\\n ', output_format_instruction='The output should be a well-formatted JSON instance that conforms to the JSON schema below.\\n\\nAs an example, for the schema {\"properties\": {\"foo\": {\"title\": \"Foo\", \"description\": \"a list of strings\", \"type\": \"array\", \"items\": {\"type\": \"string\"}}}, \"required\": [\"foo\"]}\\nthe object {\"foo\": [\"bar\", \"baz\"]} is a well-formatted instance of the schema. The object {\"properties\": {\"foo\": [\"bar\", \"baz\"]}} is not well-formatted.\\n\\nHere is the output JSON schema:\\n```\\n{\"type\": \"object\", \"properties\": {\"clarity\": {\"title\": \"Clarity\", \"type\": \"integer\"}, \"depth\": {\"title\": \"Depth\", \"type\": \"integer\"}, \"structure\": {\"title\": \"Structure\", \"type\": \"integer\"}, \"relevance\": {\"title\": \"Relevance\", \"type\": \"integer\"}}, \"required\": [\"clarity\", \"depth\", \"structure\", \"relevance\"]}\\n```\\n\\nDo not return any preamble or explanations, return only a pure JSON string surrounded by triple backticks (```).', examples=[{'context': 'The Pythagorean theorem is a fundamental principle in geometry. It states that in a right-angled triangle, the square of the length of the hypotenuse (the side opposite the right angle) is equal to the sum of the squares of the lengths of the other two sides. This can be written as a^2 + b^2 = c^2 where c represents the length of the hypotenuse, and a and b represent the lengths of the other two sides.', 'output': {'clarity': 3, 'depth': 1, 'structure': 3, 'relevance': 3}}, {'context': 'Albert Einstein (14 March 1879 - 18 April 1955) was a German-born theoretical physicist who is widely held to be one of the greatest and most influential scientists of all time.', 'output': {'clarity': 3, 'depth': 2, 'structure': 3, 'relevance': 3}}, {'context': \"I love chocolate. It's really tasty. Oh, and by the way, the earth orbits the sun, not the other way around. Also, my favorite color is blue.\", 'output': {'clarity': 2, 'depth': 1, 'structure': 1, 'relevance': 1}}], input_keys=['context'], output_key='output', output_type='json', language='english')), question_filter=QuestionFilter(llm=LangchainLLMWrapper(run_config=RunConfig(timeout=60, max_retries=15, max_wait=90, max_workers=16, exception_types=)), filter_question_prompt=Prompt(name='filter_question', instruction='\\nAsses the given question for clarity and answerability given enough domain knowledge, consider the following criteria:\\n1.Independence: Can the question be understood and answered without needing additional context or access to external references not provided within the question itself? Questions should be self-contained, meaning they do not rely on specific documents, tables, or prior knowledge not shared within the question.\\n2.Clear Intent: Is it clear what type of answer or information the question seeks? The question should convey its purpose without ambiguity, allowing for a direct and relevant response.\\nBased on these criteria, assign a verdict of \"1\" if a question is specific, independent, and has a clear intent, making it understandable and answerable based on the details provided. Assign \"0\" if it fails to meet one or more of these criteria due to vagueness, reliance on external references, or ambiguity in intent.\\nProvide feedback and a verdict in JSON format, including suggestions for improvement if the question is deemed unclear. Highlight aspects of the question that contribute to its clarity or lack thereof, and offer advice on how it could be reframed or detailed for better understanding and answerability.\\n', output_format_instruction='The output should be a well-formatted JSON instance that conforms to the JSON schema below.\\n\\nAs an example, for the schema {\"properties\": {\"foo\": {\"title\": \"Foo\", \"description\": \"a list of strings\", \"type\": \"array\", \"items\": {\"type\": \"string\"}}}, \"required\": [\"foo\"]}\\nthe object {\"foo\": [\"bar\", \"baz\"]} is a well-formatted instance of the schema. The object {\"properties\": {\"foo\": [\"bar\", \"baz\"]}} is not well-formatted.\\n\\nHere is the output JSON schema:\\n```\\n{\"type\": \"object\", \"properties\": {\"feedback\": {\"title\": \"Feedback\", \"type\": \"string\"}, \"verdict\": {\"title\": \"Verdict\", \"type\": \"integer\"}}, \"required\": [\"feedback\", \"verdict\"]}\\n```\\n\\nDo not return any preamble or explanations, return only a pure JSON string surrounded by triple backticks (```).', examples=[{'question': 'What is the discovery about space?', 'output': {'feedback': \"The question is too vague and broad, asking for a 'discovery about space' without specifying any particular aspect, time frame, or context of interest. This could refer to a wide range of topics, from the discovery of new celestial bodies to advancements in space travel technology. To improve clarity and answerability, the question could specify the type of discovery (e.g., astronomical, technological), the time frame (e.g., recent, historical), or the context (e.g., within a specific research study or space mission).\", 'verdict': 0}}, {'question': \"How does ALMA-13B-R perform compared to other translation models in the WMT'23 study, based on the results in context1 and context2?\", 'output': {'feedback': \"This question asks for a comparison of the ALMA-13B-R model's performance against other translation models within the WMT'23 study, specifically referring to results in 'context1' and 'context2'. While it clearly specifies the model of interest (ALMA-13B-R) and the study (WMT'23), it assumes access to and understanding of 'context1' and 'context2' without explaining what these contexts entail. This makes the question unclear for those not familiar with the WMT'23 study or these specific contexts. To improve clarity and answerability for a broader audience, the question could benefit from defining or describing 'context1' and 'context2' or explaining the criteria used for comparison in these contexts.\", 'verdict': 0}}, {'question': 'How do KIWI-XXL and XCOMET compare to the gold standard references in Table 1 in terms of evaluation scores, translation model performance, and success rate in surpassing the references?', 'output': {'feedback': \"The question requests a comparison between KIWI-XXL and XCOMET models and gold standard references in 'Table 1', focusing on evaluation scores, translation model performance, and success rates in surpassing the references. It specifies the models and criteria for comparison, making the intent clear. However, the question assumes access to 'Table 1' without providing its content or context, making it unclear for those without direct access to the source material. To be clearer and more answerable for a general audience, the question could include a brief description of the content or key findings of 'Table 1', or alternatively, frame the question in a way that does not rely on specific, unpublished documents.\", 'verdict': 0}}, {'question': 'What is the configuration of UL2 training objective in OpenMoE and why is it a better choice for pre-training?', 'output': {'feedback': 'The question asks for the configuration of the UL2 training objective within the OpenMoE framework and the rationale behind its suitability for pre-training. It is clear in specifying the topic of interest (UL2 training objective, OpenMoE) and seeks detailed information on both the configuration and the reasons for its effectiveness in pre-training. However, the question might be challenging for those unfamiliar with the specific terminology or the context of OpenMoE and UL2. For broader clarity and answerability, it would be helpful if the question included a brief explanation or context about OpenMoE and the UL2 training objective, or clarified the aspects of pre-training effectiveness it refers to (e.g., efficiency, accuracy, generalization).', 'verdict': 1}}, {'question': 'What is the detailed configuration of the UL2 training objective in OpenMoE, based on the provided context?', 'output': {'feedback': \"The question seeks detailed information on the UL2 training objective's configuration within the OpenMoE framework, mentioning 'the provided context' without actually including or describing this context within the query. This makes the question unclear for those who do not have access to the unspecified context. For the question to be clear and answerable, it needs to either include the relevant context directly within the question or be framed in a way that does not require external information. Detailing the specific aspects of the configuration of interest (e.g., loss functions, data augmentation techniques) could also help clarify the query.\", 'verdict': 0}}], input_keys=['question'], output_key='output', output_type='json', language='english')), question_answer_prompt=Prompt(name='answer_formulate', instruction=\"Answer the question using the information from the given context. Output verdict as '1' if answer is present '-1' if answer is not present in the context.\", output_format_instruction='', examples=[{'context': 'Climate change is significantly influenced by human activities, notably the emission of greenhouse gases from burning fossil fuels. The increased greenhouse gas concentration in the atmosphere traps more heat, leading to global warming and changes in weather patterns.', 'question': 'How do human activities contribute to climate change?', 'answer': {'answer': 'Human activities contribute to climate change primarily through the emission of greenhouse gases from burning fossil fuels. These emissions increase the concentration of greenhouse gases in the atmosphere, which traps more heat and leads to global warming and altered weather patterns.', 'verdict': '1'}}, {'context': 'The concept of artificial intelligence (AI) has evolved over time, but it fundamentally refers to machines designed to mimic human cognitive functions. AI can learn, reason, perceive, and, in some instances, react like humans, making it pivotal in fields ranging from healthcare to autonomous vehicles.', 'question': 'What are the key capabilities of artificial intelligence?', 'answer': {'answer': 'Artificial intelligence is designed to mimic human cognitive functions, with key capabilities including learning, reasoning, perception, and reacting to the environment in a manner similar to humans. These capabilities make AI pivotal in various fields, including healthcare and autonomous driving.', 'verdict': '1'}}, {'context': 'The novel \"Pride and Prejudice\" by Jane Austen revolves around the character Elizabeth Bennet and her family. The story is set in the 19th century in rural England and deals with issues of marriage, morality, and misconceptions.', 'question': \"What year was 'Pride and Prejudice' published?\", 'answer': {'answer': 'The answer to given question is not present in context', 'verdict': '-1'}}], input_keys=['context', 'question'], output_key='answer', output_type='json', language='english'), find_relevant_context_prompt=Prompt(name='find_relevant_context', instruction='Given a question and set of contexts, find the most relevant contexts to answer the question.', output_format_instruction='', examples=[{'question': 'What is the capital of France?', 'contexts': ['1. France is a country in Western Europe. It has several cities, including Paris, Lyon, and Marseille. Paris is not only known for its cultural landmarks like the Eiffel Tower and the Louvre Museum but also as the administrative center.', '2. The capital of France is Paris. It is also the most populous city in France, with a population of over 2 million people. Paris is known for its cultural landmarks like the Eiffel Tower and the Louvre Museum.', '3. Paris is the capital of France. It is also the most populous city in France, with a population of over 2 million people. Paris is known for its cultural landmarks like the Eiffel Tower and the Louvre Museum.'], 'output': {'relevant_contexts': [1, 2]}}, {'question': 'How does caffeine affect the body and what are its common sources?', 'contexts': ['1. Caffeine is a central nervous system stimulant. It can temporarily ward off drowsiness and restore alertness. It primarily affects the brain, where it alters the function of neurotransmitters.', '2. Regular physical activity is essential for maintaining good health. It can help control weight, combat health conditions, boost energy, and promote better sleep.', '3. Common sources of caffeine include coffee, tea, cola, and energy drinks. These beverages are consumed worldwide and are known for providing a quick boost of energy.'], 'output': {'relevant_contexts': [1, 2]}}], input_keys=['question', 'contexts'], output_key='output', output_type='json', language='english'), rewrite_invalid_question_prompt=Prompt(name='rewrite_question', instruction='Given a context, question and feedback, rewrite the question to improve its clarity and answerability based on the feedback provided.', output_format_instruction='', examples=[{'context': \"The Eiffel Tower was constructed using iron and was originally intended as a temporary exhibit for the 1889 World's Fair held in Paris. Despite its initial temporary purpose, the Eiffel Tower quickly became a symbol of Parisian ingenuity and an iconic landmark of the city, attracting millions of visitors each year. The tower's design, created by Gustave Eiffel, was initially met with criticism from some French artists and intellectuals, but it has since been celebrated as a masterpiece of structural engineering and architectural design.\", 'question': 'Who created the design for the Tower?', 'feedback': \"The question asks about the creator of the design for 'the Tower', but it does not specify which tower it refers to. There are many towers worldwide, and without specifying the exact tower, the question is unclear and unanswerable. To improve the question, it should include the name or a clear description of the specific tower in question.\", 'output': 'Who created the design for the Eiffel Tower?'}, {'context': \"'Exploring Zero-Shot Learning in Neural Networks' was published by Smith and Lee in 2021, focusing on the application of zero-shot learning techniques in artificial intelligence.\", 'question': 'What datasets were used for the zero-shot evaluations in this study?', 'feedback': \"The question asks about the datasets used for zero-shot evaluations in 'this study', without specifying or providing any details about the study in question. This makes the question unclear for those who do not have access to or knowledge of the specific study. To improve clarity and answerability, the question should specify the study it refers to, or provide enough context about the study for the question to be understood and answered independently.\", 'output': 'What datasets were used for the zero-shot evaluations Exploring Zero-Shot Learning in Neural Networks paper?'}], input_keys=['context', 'question', 'feedback'], output_key='output', output_type='str', language='english'), max_tries=5, is_async=True, seed_question_prompt=Prompt(name='seed_question', instruction='Generate a question that can be fully answered from given context. The question should be formed using topic', output_format_instruction='', examples=[{'context': 'Photosynthesis in plants involves converting light energy into chemical energy, using chlorophyll and other pigments to absorb light. This process is crucial for plant growth and the production of oxygen.', 'keyphrase': 'Photosynthesis', 'question': 'What is the role of photosynthesis in plant growth?'}, {'context': 'The Industrial Revolution, starting in the 18th century, marked a major turning point in history as it led to the development of factories and urbanization.', 'keyphrase': 'Industrial Revolution', 'question': 'How did the Industrial Revolution mark a major turning point in history?'}, {'context': 'The process of evaporation plays a crucial role in the water cycle, converting water from liquid to vapor and allowing it to rise into the atmosphere.', 'keyphrase': 'Evaporation', 'question': 'Why is evaporation important in the water cycle?'}], input_keys=['context', 'keyphrase'], output_key='question', output_type='str', language='english'))\n" ] } ], "source": [ "generator = TestsetGenerator.from_langchain(\n", " generator_llm=generator_llm,\n", " critic_llm=critic_llm,\n", " embeddings=ollama_emb\n", ")\n", "\n", "# generate testset\n", "testset = generator.generate_with_langchain_docs(documents, test_size=10, distributions={simple: 0.5, reasoning: 0.25, multi_context: 0.25}, raise_exceptions=False)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Load testset as a dataframe" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
questioncontextsground_truthevolution_typemetadataepisode_done
0question: \"How did the advent of publishing content directly on the web change the way writers could reach an audience?[The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10], Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]]The advent of publishing content directly on the web significantly changed the way writers could reach an audience by allowing anyone to publish their work online, breaking down traditional barriers such as those imposed by editors in print media. This democratization meant that a writer no longer needed to go through conventional channels like books or newspapers to get their writing seen; instead, they could simply post it on the web and potentially reach a large audience instantly.simple[{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, {'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}]True
1What does the concept of \"passionate intensity\" in independent-minded individuals suggest about their approach to disputes, according to Linus Pauling?[[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they're generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling's \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you're wasting time is to ask if you're producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don't.]nansimple[{'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}]True
2What was the significance of the entrance exam for foreign students studying art in Florence during that time, and how did it potentially affect their chances of admission?\\n\\nThis question is formulated using the keyphrase \"Entrance exam\" from the given context. It addresses the historical aspect of exclusion through the entrance exam process while also considering the impact on foreign students' opportunities to study art in Florence, as mentioned in the provided text.[Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]]The entrance exam for foreign students studying art in Florence during that time may have been significant as a means of exclusion since it attracted many foreigners due to the allure of studying art there. The high number of foreign applicants could potentially affect their chances of admission, implying that passing this exam was crucial for securing a place at the institution despite limited vocabulary and resources.simple[{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}]True
3What impact did building stores for users have on our understanding of retail and software usage experience?\\n\\nThis question is formulated using the keyphrase \"Software usage experience\" from the given context, focusing specifically on how creating user-oriented environments (like stores) influenced the team's perspective on retail and their interaction with the software.[Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we'd have so many users that I couldn't scan their images for them, but in the meantime there was nothing more important to do.]Building stores for users had a significant impact on our understanding of retail by providing firsthand experience in managing a retail environment, which helped us learn about the intricacies of retail operations. It also enhanced our perspective on software usage experience as we were able to directly observe and interact with how users engaged with our software within these user-oriented environments. This direct engagement allowed us to better understand their needs and preferences, leading to a more empathetic approach in designing and improving the software.simple[{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}]True
4question: \"How does consistent work contribute to exponential growth and what are some examples of this phenomenon?[The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.]Consistent work contributes to exponential growth by building upon previous efforts, leading to significant results over time even if the daily progress seems small. This is because each day's effort compounds on top of the last, creating a cumulative effect that accelerates as more days pass. Examples of this phenomenon include learning, where understanding one concept makes it easier to learn additional concepts; and growing an audience, where existing fans can attract new ones, thus expanding the base at an increasing rate.simple[{'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}]True
\n", "
" ], "text/plain": [ " question \\\n", "0 question: \"How did the advent of publishing content directly on the web change the way writers could reach an audience? \n", "1 What does the concept of \"passionate intensity\" in independent-minded individuals suggest about their approach to disputes, according to Linus Pauling? \n", "2 What was the significance of the entrance exam for foreign students studying art in Florence during that time, and how did it potentially affect their chances of admission?\\n\\nThis question is formulated using the keyphrase \"Entrance exam\" from the given context. It addresses the historical aspect of exclusion through the entrance exam process while also considering the impact on foreign students' opportunities to study art in Florence, as mentioned in the provided text. \n", "3 What impact did building stores for users have on our understanding of retail and software usage experience?\\n\\nThis question is formulated using the keyphrase \"Software usage experience\" from the given context, focusing specifically on how creating user-oriented environments (like stores) influenced the team's perspective on retail and their interaction with the software. \n", "4 question: \"How does consistent work contribute to exponential growth and what are some examples of this phenomenon? \n", "\n", " contexts \\\n", "0 [The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10], Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]] \n", "1 [[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they're generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling's \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you're wasting time is to ask if you're producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don't.] \n", "2 [Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]] \n", "3 [Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we'd have so many users that I couldn't scan their images for them, but in the meantime there was nothing more important to do.] \n", "4 [The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.] \n", "\n", " ground_truth \\\n", "0 The advent of publishing content directly on the web significantly changed the way writers could reach an audience by allowing anyone to publish their work online, breaking down traditional barriers such as those imposed by editors in print media. This democratization meant that a writer no longer needed to go through conventional channels like books or newspapers to get their writing seen; instead, they could simply post it on the web and potentially reach a large audience instantly. \n", "1 nan \n", "2 The entrance exam for foreign students studying art in Florence during that time may have been significant as a means of exclusion since it attracted many foreigners due to the allure of studying art there. The high number of foreign applicants could potentially affect their chances of admission, implying that passing this exam was crucial for securing a place at the institution despite limited vocabulary and resources. \n", "3 Building stores for users had a significant impact on our understanding of retail by providing firsthand experience in managing a retail environment, which helped us learn about the intricacies of retail operations. It also enhanced our perspective on software usage experience as we were able to directly observe and interact with how users engaged with our software within these user-oriented environments. This direct engagement allowed us to better understand their needs and preferences, leading to a more empathetic approach in designing and improving the software. \n", "4 Consistent work contributes to exponential growth by building upon previous efforts, leading to significant results over time even if the daily progress seems small. This is because each day's effort compounds on top of the last, creating a cumulative effect that accelerates as more days pass. Examples of this phenomenon include learning, where understanding one concept makes it easier to learn additional concepts; and growing an audience, where existing fans can attract new ones, thus expanding the base at an increasing rate. \n", "\n", " evolution_type \\\n", "0 simple \n", "1 simple \n", "2 simple \n", "3 simple \n", "4 simple \n", "\n", " metadata \\\n", "0 [{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, {'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}] \n", "1 [{'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}] \n", "2 [{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}] \n", "3 [{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}] \n", "4 [{'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}] \n", "\n", " episode_done \n", "0 True \n", "1 True \n", "2 True \n", "3 True \n", "4 True " ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "test_df = testset.to_pandas().dropna()\n", "test_df.head()" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
questioncontextsground_truthevolution_typemetadataepisode_done
0question: \"How did the advent of publishing content directly on the web change the way writers could reach an audience?[The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10], Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]]The advent of publishing content directly on the web significantly changed the way writers could reach an audience by allowing anyone to publish their work online, breaking down traditional barriers such as those imposed by editors in print media. This democratization meant that a writer no longer needed to go through conventional channels like books or newspapers to get their writing seen; instead, they could simply post it on the web and potentially reach a large audience instantly.simple[{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, {'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}]True
1What does the concept of \"passionate intensity\" in independent-minded individuals suggest about their approach to disputes, according to Linus Pauling?[[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they're generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling's \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you're wasting time is to ask if you're producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don't.]nansimple[{'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}]True
2What was the significance of the entrance exam for foreign students studying art in Florence during that time, and how did it potentially affect their chances of admission?\\n\\nThis question is formulated using the keyphrase \"Entrance exam\" from the given context. It addresses the historical aspect of exclusion through the entrance exam process while also considering the impact on foreign students' opportunities to study art in Florence, as mentioned in the provided text.[Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]]The entrance exam for foreign students studying art in Florence during that time may have been significant as a means of exclusion since it attracted many foreigners due to the allure of studying art there. The high number of foreign applicants could potentially affect their chances of admission, implying that passing this exam was crucial for securing a place at the institution despite limited vocabulary and resources.simple[{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}]True
3What impact did building stores for users have on our understanding of retail and software usage experience?\\n\\nThis question is formulated using the keyphrase \"Software usage experience\" from the given context, focusing specifically on how creating user-oriented environments (like stores) influenced the team's perspective on retail and their interaction with the software.[Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we'd have so many users that I couldn't scan their images for them, but in the meantime there was nothing more important to do.]Building stores for users had a significant impact on our understanding of retail by providing firsthand experience in managing a retail environment, which helped us learn about the intricacies of retail operations. It also enhanced our perspective on software usage experience as we were able to directly observe and interact with how users engaged with our software within these user-oriented environments. This direct engagement allowed us to better understand their needs and preferences, leading to a more empathetic approach in designing and improving the software.simple[{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}]True
4question: \"How does consistent work contribute to exponential growth and what are some examples of this phenomenon?[The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.]Consistent work contributes to exponential growth by building upon previous efforts, leading to significant results over time even if the daily progress seems small. This is because each day's effort compounds on top of the last, creating a cumulative effect that accelerates as more days pass. Examples of this phenomenon include learning, where understanding one concept makes it easier to learn additional concepts; and growing an audience, where existing fans can attract new ones, thus expanding the base at an increasing rate.simple[{'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}]True
5How did the introduction of browser-based code editing contribute to advancements in web application development?[Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.]The context provided discusses an idea around the year 2000 about building a web app that allows people to edit code on the server through their browsers. This concept implies browser-based code editing, which would enable users to create and host applications with various services accessible via API calls for functionalities like phone calls, image manipulation, and credit card payments.simple[{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}]True
\n", "
" ], "text/plain": [ " question \\\n", "0 question: \"How did the advent of publishing content directly on the web change the way writers could reach an audience? \n", "1 What does the concept of \"passionate intensity\" in independent-minded individuals suggest about their approach to disputes, according to Linus Pauling? \n", "2 What was the significance of the entrance exam for foreign students studying art in Florence during that time, and how did it potentially affect their chances of admission?\\n\\nThis question is formulated using the keyphrase \"Entrance exam\" from the given context. It addresses the historical aspect of exclusion through the entrance exam process while also considering the impact on foreign students' opportunities to study art in Florence, as mentioned in the provided text. \n", "3 What impact did building stores for users have on our understanding of retail and software usage experience?\\n\\nThis question is formulated using the keyphrase \"Software usage experience\" from the given context, focusing specifically on how creating user-oriented environments (like stores) influenced the team's perspective on retail and their interaction with the software. \n", "4 question: \"How does consistent work contribute to exponential growth and what are some examples of this phenomenon? \n", "5 How did the introduction of browser-based code editing contribute to advancements in web application development? \n", "\n", " contexts \\\n", "0 [The subset I would build as an open source project was the new Lisp, whose parentheses I now wouldn't even have to hide. A lot of Lisp hackers dream of building a new Lisp, partly because one of the distinctive features of the language is that it has dialects, and partly, I think, because we have in our minds a Platonic form of Lisp that all existing dialects fall short of. I certainly did. So at the end of the summer Dan and I switched to working on this new dialect of Lisp, which I called Arc, in a house I bought in Cambridge.\\n\\nThe following spring, lightning struck. I was invited to give a talk at a Lisp conference, so I gave one about how we'd used Lisp at Viaweb. Afterward I put a postscript file of this talk online, on paulgraham.com, which I'd created years before using Viaweb but had never used for anything. In one day it got 30,000 page views. What on earth had happened? The referring urls showed that someone had posted it on Slashdot. [10], Wow, I thought, there's an audience. If I write something and put it on the web, anyone can read it. That may seem obvious now, but it was surprising then. In the print era there was a narrow channel to readers, guarded by fierce monsters known as editors. The only way to get an audience for anything you wrote was to get it published as a book, or in a newspaper or magazine. Now anyone could publish anything.\\n\\nThis had been possible in principle since 1993, but not many people had realized it yet. I had been intimately involved with building the infrastructure of the web for most of that time, and a writer as well, and it had taken me 8 years to realize it. Even then it took me several years to understand the implications. It meant there would be a whole new generation of essays. [11]] \n", "1 [[20] The connection between originality and uncertainty causes a strange phenomenon: because the conventional-minded are more certain than the independent-minded, this tends to give them the upper hand in disputes, even though they're generally stupider. The best lack all conviction, while the worst Are full of passionate intensity. [21] Derived from Linus Pauling's \"If you want to have good ideas, you must have many ideas.\"\\n\\n[22] Attacking a project as a \"toy\" is similar to attacking a statement as \"inappropriate.\" It means that no more substantial criticism can be made to stick.\\n\\n[23] One way to tell whether you're wasting time is to ask if you're producing or consuming. Writing computer games is less likely to be a waste of time than playing them, and playing games where you create something is less likely to be a waste of time than playing games where you don't.] \n", "2 [Only stranieri (foreigners) had to take this entrance exam. In retrospect it may well have been a way of excluding them, because there were so many stranieri attracted by the idea of studying art in Florence that the Italian students would otherwise have been outnumbered. I was in decent shape at painting and drawing from the RISD foundation that summer, but I still don't know how I managed to pass the written exam. I remember that I answered the essay question by writing about Cezanne, and that I cranked up the intellectual level as high as I could to make the most of my limited vocabulary. [2]] \n", "3 [Though this felt wrong, it was exactly the right thing to be doing. Building stores for users taught us about retail, and about how it felt to use our software. I was initially both mystified and repelled by \"business\" and thought we needed a \"business person\" to be in charge of it, but once we started to get users, I was converted, in much the same way I was converted to fatherhood once I had kids. Whatever users wanted, I was all theirs. Maybe one day we'd have so many users that I couldn't scan their images for them, but in the meantime there was nothing more important to do.] \n", "4 [The reason we're surprised is that we underestimate the cumulative effect of work. Writing a page a day doesn't sound like much, but if you do it every day you'll write a book a year. That's the key: consistency. People who do great things don't get a lot done every day. They get something done, rather than nothing.\\n\\nIf you do work that compounds, you'll get exponential growth. Most people who do this do it unconsciously, but it's worth stopping to think about. Learning, for example, is an instance of this phenomenon: the more you learn about something, the easier it is to learn more. Growing an audience is another: the more fans you have, the more new fans they'll bring you.\\n\\nThe trouble with exponential growth is that the curve feels flat in the beginning. It isn't; it's still a wonderful exponential curve. But we can't grasp that intuitively, so we underrate exponential growth in its early stages.] \n", "5 [Around this time, in the spring of 2000, I had an idea. It was clear from our experience with Viaweb that web apps were the future. Why not build a web app for making web apps? Why not let people edit code on our server through the browser, and then host the resulting applications for them? [9] You could run all sorts of services on the servers that these applications could use just by making an API call: making and receiving phone calls, manipulating images, taking credit card payments, etc.] \n", "\n", " ground_truth \\\n", "0 The advent of publishing content directly on the web significantly changed the way writers could reach an audience by allowing anyone to publish their work online, breaking down traditional barriers such as those imposed by editors in print media. This democratization meant that a writer no longer needed to go through conventional channels like books or newspapers to get their writing seen; instead, they could simply post it on the web and potentially reach a large audience instantly. \n", "1 nan \n", "2 The entrance exam for foreign students studying art in Florence during that time may have been significant as a means of exclusion since it attracted many foreigners due to the allure of studying art there. The high number of foreign applicants could potentially affect their chances of admission, implying that passing this exam was crucial for securing a place at the institution despite limited vocabulary and resources. \n", "3 Building stores for users had a significant impact on our understanding of retail by providing firsthand experience in managing a retail environment, which helped us learn about the intricacies of retail operations. It also enhanced our perspective on software usage experience as we were able to directly observe and interact with how users engaged with our software within these user-oriented environments. This direct engagement allowed us to better understand their needs and preferences, leading to a more empathetic approach in designing and improving the software. \n", "4 Consistent work contributes to exponential growth by building upon previous efforts, leading to significant results over time even if the daily progress seems small. This is because each day's effort compounds on top of the last, creating a cumulative effect that accelerates as more days pass. Examples of this phenomenon include learning, where understanding one concept makes it easier to learn additional concepts; and growing an audience, where existing fans can attract new ones, thus expanding the base at an increasing rate. \n", "5 The context provided discusses an idea around the year 2000 about building a web app that allows people to edit code on the server through their browsers. This concept implies browser-based code editing, which would enable users to create and host applications with various services accessible via API calls for functionalities like phone calls, image manipulation, and credit card payments. \n", "\n", " evolution_type \\\n", "0 simple \n", "1 simple \n", "2 simple \n", "3 simple \n", "4 simple \n", "5 simple \n", "\n", " metadata \\\n", "0 [{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}, {'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}] \n", "1 [{'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}] \n", "2 [{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}] \n", "3 [{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}] \n", "4 [{'source': 'paul_graham/how_to_do_great_things.txt', 'filename': 'paul_graham/how_to_do_great_things.txt'}] \n", "5 [{'source': 'paul_graham/what_i_worked_on.txt', 'filename': 'paul_graham/what_i_worked_on.txt'}] \n", "\n", " episode_done \n", "0 True \n", "1 True \n", "2 True \n", "3 True \n", "4 True \n", "5 True " ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "test_df.to_csv('test_data_ollama.csv')\n", "test_df" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "6" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(test_df)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "cloudspace", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.10" } }, "nbformat": 4, "nbformat_minor": 2 }